[
  {
    "path": ".editorconfig",
    "content": "# EditorConfig helps developers define and maintain consistent\n# coding styles between different editors and IDEs\n# editorconfig.org\n\nroot = true\n\n[*]\n\nindent_style = space\nindent_size = 2\n\nend_of_line = lf\ncharset = utf-8\ntrim_trailing_whitespace = true\ninsert_final_newline = true\n\n[*.md]\ntrim_trailing_whitespace = false\n"
  },
  {
    "path": ".eslintignore",
    "content": "##############\n# yeoman\n##############\n\n# Ignore the templates with <%= %> tags, we'll pickup the errors in the generated code\npackages/generator-react-native-vector-icons/src/app/templates/src/index.ts\n\n# Ignore yeomenan generated template\npackages/generator-react-native-vector-icons/generators\npackages/generator-react-native-vector-icons/src/app/templates\npackages/fontawesome-common/generators\n\n##############\n# packages\n##############\n\n# Ignore built code\npackages/*/lib\npackages/directory/build\n\n# Files we don't manage (react-native-test-app)\npackages/icon-explorer/metro.config.js\npackages/icon-explorer/react-native.config.js\n"
  },
  {
    "path": ".eslintrc.js",
    "content": "module.exports = {\n  extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:react/recommended'],\n  env: {\n    browser: true,\n    es2021: true,\n    jest: true,\n  },\n  overrides: [\n    {\n      files: ['*.ts', '*.js', '*.tsx', '*.jsx'],\n      extends: ['biome'],\n    },\n    {\n      files: ['.eslintrc.{js,cjs}', '*.config.js', 'react-native.config.js', 'configPlugin.js'],\n      env: {\n        node: true,\n      },\n      parserOptions: {\n        sourceType: 'script',\n      },\n    },\n    {\n      files: '*.test.js',\n      env: {\n        jest: true,\n      },\n      globals: {\n        device: false,\n        expect: false,\n        waitFor: false,\n        element: false,\n        by: false,\n      },\n    },\n  ],\n  parser: '@typescript-eslint/parser',\n  parserOptions: {\n    ecmaVersion: 'latest',\n    sourceType: 'module',\n  },\n  plugins: ['@typescript-eslint', 'react', 'import', 'jsx-a11y'],\n  settings: {\n    react: {\n      version: 'detect',\n    },\n    'import/resolver': {\n      node: {\n        extensions: ['.js', '.jsx', '.ts', '.tsx'],\n      },\n    },\n  },\n  rules: {\n    'import/extensions': ['error', { js: 'never', jsx: 'never', ts: 'never', tsx: 'never', json: 'always' }],\n    'react/require-default-props': 'off',\n    'react/prop-types': 'off',\n    'react/jsx-props-no-spreading': 'off',\n    'react/jsx-filename-extension': ['error', { extensions: ['.jsx', '.tsx'] }],\n    'react/function-component-definition': ['error', { namedComponents: 'arrow-function' }],\n    'import/prefer-default-export': 'off',\n    // Prefer the typescript unsed vars rule\n    'no-unused-vars': 'off',\n    '@typescript-eslint/no-unused-vars': ['error'],\n    'no-shadow': 'off',\n    '@typescript-eslint/no-shadow': ['error'],\n    'react/react-in-jsx-scope': 'off',\n  },\n};\n"
  },
  {
    "path": ".gitattributes",
    "content": "*.pbxproj -text\n# specific for windows script files\n*.bat text eol=crlf\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.yml",
    "content": "---\nname: \"\\U0001F41B Bug report\"\ndescription: Report a bug\nlabels: [\"bug\", \"triage\"]\nbody:\n  - type: markdown\n    attributes:\n      value: |\n        Thanks for taking the time to fill out this bug report!\n        Before filing a bug report:\n        - Review the documentation: https://github.com/react-native-vector-icons/react-native-vector-icons\n        - Search for existing issues (including closed issues): https://github.com/oblador/react-native-vector-icons/issues?q=is%3Aissue+\n\n  - type: dropdown\n    id: generation\n    attributes:\n      label: Which package are you using?\n      options:\n        - \"@react-native-vector-icons/*\"\n        - react-native-vector-icons\n    validations:\n      required: true\n\n  - type: dropdown\n    attributes:\n      label: What platform(s) does this occur on?\n      multiple: true\n      options:\n        - Android\n        - iOS\n        - web\n    validations:\n      required: true\n\n  - type: input\n    attributes:\n      label: Minimal reproducible example\n      description: |\n        A link to a GitHub repository containing a minimal reproducible example. This repository should include as little code as possible and not include extraneous dependencies.\n\n        Either provide a link to the repo that reproduces the bug or provide your version of the `App.tsx` file that reproduces the issue and that we can copy-paste and see the issue.\n\n        If a reproducible example is not provided, your issue is likely to be closed.\n        [Learn more about creating a minimal reproducible example](https://stackoverflow.com/help/mcve).\n    validations:\n      required: true\n\n  - type: textarea\n    id: what-happened\n    attributes:\n      label: What happened?\n      description: |\n        Explain the issue and the steps we need to take to reproduce the issue. Include a video or screenshots if you think it may help.\n        Clearly describe what the expected behavior is and what instead is actually happening.\n    validations:\n      required: true\n\n  - type: textarea\n    id: logs\n    attributes:\n      label: Relevant log output\n      description: Copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.\n      render: shell\n\n  - type: textarea\n    attributes:\n      render: text\n      label: Your computer environment\n      description: Run the `npx react-native info` command and paste its output in the field below.\n    validations:\n      required: true\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/config.yml",
    "content": "blank_issues_enabled: false\ncontact_links:\n  - name: Community Support\n    url: https://github.com/oblador/react-native-vector-icons/discussions\n    about: Please ask and answer questions here.\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.yml",
    "content": "---\nname: Feature request\ndescription: Suggest an idea for this project\nlabels: [\"feature request\", \"triage\"]\nbody:\n  - type: markdown\n    attributes:\n      value: |\n        Thanks for taking the time to suggest a new feature!\n        Before requesting:\n        - Search for existing issues (including closed issues): https://github.com/oblador/react-native-vector-icons/issues?q=is%3Aissue+\n\n  - type: textarea\n    id: problem\n    attributes:\n      label: Is your feature request related to a problem?\n      description: |\n        A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]\n\n  - type: textarea\n    id: solution\n    attributes:\n      label: Describe the solution you'd like\n      description: |\n        A clear and concise description of what you want to happen.\n    validations:\n      required: true\n\n  - type: textarea\n    id: alternatives\n    attributes:\n      label: Describe alternatives you've considered\n      description: |\n        A clear and concise description of any alternative solutions or features you've considered.\n\n  - type: textarea\n    id: context\n    attributes:\n      label: Additional context\n      description: |\n        Add any other context or screenshots about the feature request here.\n"
  },
  {
    "path": ".github/funding.yml",
    "content": "github: [oblador]\n"
  },
  {
    "path": ".github/workflows/codemod-tests.yaml",
    "content": "---\nname: Codemod Tests\n\non:\n  push:\n    branches:\n      - master\n    paths:\n      - \".github/workflows/codemod-tests.yaml\"\n      - \"packages/codemod/**\"\n  pull_request:\n    paths:\n      - \".github/workflows/codemod-tests.yaml\"\n      - \"packages/codemod/**\"\n\njobs:\n  test:\n    name: Unit Tests\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v6\n\n      - uses: pnpm/action-setup@v5\n        with:\n          run_install: false\n      - uses: actions/setup-node@v6\n        with:\n          node-version: lts/*\n          cache: pnpm\n\n      - run: pnpm install --ignore-scripts --filter @react-native-vector-icons/codemod\n      - run: pnpm run --filter @react-native-vector-icons/codemod test\n"
  },
  {
    "path": ".github/workflows/deploy.yaml",
    "content": "name: Publish to NPM and Website\n\non:\n  workflow_dispatch:\n    inputs:\n      dry_run:\n        description: Perform a dry run\n        type: boolean\n      action:\n        type: choice\n        description: What to publish\n        options:\n          - npm\n          - website\n          - npm-republish-failed\n      packages:\n        type: string\n        description: 'Space-separated list of package dirs to republish (e.g. \"codemod ionicons\"). Only used with npm-republish-failed.'\n      pre_release:\n        type: boolean\n        description: Create a pre-release\n\npermissions:\n  id-token: write # For NPM trusted publishing\n  contents: write # For git commits of Changelog\n\njobs:\n  npm:\n    name: NPM\n    runs-on: ubuntu-latest\n    if: github.event.inputs.action == 'npm'\n    steps:\n      - name: Checkout repository\n        uses: actions/checkout@v4\n        with:\n          fetch-depth: 0 # Needed for changelogs and tag comparison\n\n      # Remove once setup-node supports corepack https://github.com/actions/setup-node/pull/901 lands\n      - name: Set up PNPM\n        uses: pnpm/action-setup@v4\n        with:\n          run_install: false\n      - name: Set up Node.js\n        uses: actions/setup-node@v4\n        with:\n          node-version: lts/*\n          cache: pnpm\n\n      - name: Install dependencies\n        run: pnpm install\n\n      - name: Set commit author\n        run: |\n          git config --local user.name 'github-actions[bot]'\n          git config --local user.email 'github-actions[bot]@users.noreply.github.com'\n\n      # Ensure npm 11.5.1 or later is installed\n      - name: Update npm\n        run: |\n          echo 'BEFORE'\n          npm -v\n          npm install -g npm@latest\n          echo 'AFTER'\n          npm -v\n\n      - name: Publish to NPM\n        if: github.event.inputs.pre_release != 'true'\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n        run: |\n          if [ \"${{ github.event.inputs.dry_run }}\" == \"true\" ]; then\n            pnpm run release --dry-run\n          else\n            pnpm run release --yes\n          fi\n\n      - name: Publish pre-release to NPM\n        if: github.event.inputs.pre_release == 'true'\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n        run: |\n          if [ \"${{ github.event.inputs.dry_run }}\" == \"true\" ]; then\n            pnpm run prerelease --dry-run\n          else\n            pnpm run prerelease\n          fi\n\n  republish:\n    name: Republish failed packages\n    runs-on: ubuntu-latest\n    if: github.event.inputs.action == 'npm-republish-failed'\n    steps:\n      - name: Checkout repository\n        uses: actions/checkout@v4\n\n      - name: Set up PNPM\n        uses: pnpm/action-setup@v4\n        with:\n          run_install: false\n      - name: Set up Node.js\n        uses: actions/setup-node@v4\n        with:\n          node-version: lts/*\n          cache: pnpm\n\n      - name: Install dependencies\n        run: pnpm install\n\n      - name: Update npm\n        run: |\n          echo 'BEFORE'\n          npm -v\n          npm install -g npm@latest\n          echo 'AFTER'\n          npm -v\n\n      - name: Publish packages\n        env:\n          INPUT_PACKAGES: ${{ github.event.inputs.packages }}\n          DRY_RUN: ${{ github.event.inputs.dry_run }}\n        run: |\n          if [ -z \"$INPUT_PACKAGES\" ]; then\n            echo \"Error: 'packages' input is required for npm-republish-failed\"\n            exit 1\n          fi\n          FAILED=0\n          for pkg in $INPUT_PACKAGES; do\n            echo \"=========================================\"\n            echo \"Publishing packages/$pkg\"\n            echo \"=========================================\"\n            if [ \"$DRY_RUN\" == \"true\" ]; then\n              pnpm publish \"packages/$pkg\" --no-git-checks --dry-run || FAILED=1\n            else\n              pnpm publish \"packages/$pkg\" --no-git-checks || FAILED=1\n            fi\n            echo \"\"\n          done\n          exit $FAILED\n\n  website:\n    name: Directory website\n    runs-on: ubuntu-latest\n    if: github.event.inputs.action == 'website'\n    steps:\n      - name: Checkout repository\n        uses: actions/checkout@v4\n\n      # Remove once setup-node supports corepack https://github.com/actions/setup-node/pull/901 lands\n      - name: Set up PNPM\n        uses: pnpm/action-setup@v4\n        with:\n          run_install: false\n      - name: Set up Node.js\n        uses: actions/setup-node@v4\n        with:\n          node-version: lts/*\n          cache: pnpm\n\n      - name: Install dependencies\n        run: pnpm install\n        working-directory: packages/directory\n\n      - name: Build directory\n        working-directory: packages/directory\n        run: |\n          pnpm prepare\n          pnpm run build\n\n      - name: Publish static assets to GitHub Pages\n        uses: JamesIves/github-pages-deploy-action@v4\n        with:\n          branch: gh-pages\n          folder: packages/directory/build\n"
  },
  {
    "path": ".github/workflows/issue-handling.yml",
    "content": "name: 'Support requests'\n\non:\n  issues:\n    types: [labeled, unlabeled, reopened]\n\njobs:\n  support:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: dessant/support-requests@v4\n        with:\n          github-token: ${{ github.token }}\n          support-label: 'missing-repro'\n          issue-comment: >\n            :wave: @{issue-author}, sorry you're having an issue. As the issue template explains, it's required that you provide a runnable example that reproduces your issue (see the [issue template](https://github.com/oblador/react-native-vector-icons/blob/master/.github/ISSUE_TEMPLATE/bug_report.yml)).\n\n            The reason is that a bug report is not actionable without a reproducer. Try to minimize the superfluous code and focus only on reproducing the bug.\n\n            Please create a new issue with this and one of the maintainers will do their best to review it!\n          close-issue: true\n          lock-issue: true\n"
  },
  {
    "path": ".github/workflows/lint.yaml",
    "content": "name: Lint\n\non:\n  push:\n    branches:\n      - master\n  pull_request:\n\njobs:\n  eslint:\n    name: eslint\n    runs-on: ubuntu-latest\n\n    steps:\n      - uses: actions/checkout@v4\n      # Remove once setup-node supports corepack https://github.com/actions/setup-node/pull/901 lands\n      - uses: pnpm/action-setup@v4\n        with:\n          run_install: false\n      - uses: actions/setup-node@v4\n        with:\n          node-version: lts/*\n          cache: pnpm\n      - name: Build\n        run: pnpm install\n\n      - name: Lint files\n        run: pnpm run lint:eslint\n\n  biome:\n    name: biome\n    runs-on: ubuntu-latest\n\n    steps:\n      - uses: actions/checkout@v4\n      # Remove once setup-node supports corepack https://github.com/actions/setup-node/pull/901 lands\n      - uses: pnpm/action-setup@v4\n        with:\n          run_install: false\n      - uses: actions/setup-node@v4\n        with:\n          node-version: lts/*\n          cache: pnpm\n      - name: Build\n        run: pnpm install\n\n      - name: Lint files\n        run: pnpm run lint:biome\n\n  types:\n    name: types\n    runs-on: ubuntu-latest\n\n    steps:\n      - uses: actions/checkout@v4\n      # Remove once setup-node supports corepack https://github.com/actions/setup-node/pull/901 lands\n      - uses: pnpm/action-setup@v4\n        with:\n          run_install: false\n      - uses: actions/setup-node@v4\n        with:\n          node-version: lts/*\n          cache: pnpm\n\n      - name: Build\n        run: pnpm install\n\n      - name: Typecheck files\n        run: pnpm run lint:types\n\n  knip:\n    name: knip\n    runs-on: ubuntu-latest\n\n    steps:\n      - uses: actions/checkout@v4\n      # Remove once setup-node supports corepack https://github.com/actions/setup-node/pull/901 lands\n      - uses: pnpm/action-setup@v4\n        with:\n          run_install: false\n      - uses: actions/setup-node@v4\n        with:\n          node-version: lts/*\n          cache: pnpm\n      - name: Build\n        run: pnpm install\n\n      - name: Check for unused things\n        run: pnpm run lint:knip\n"
  },
  {
    "path": ".github/workflows/tests.yaml",
    "content": "---\nname: Tests\n\non:\n  push:\n    branches:\n      - master\n    paths:\n      - \".github/workflows/tests.yaml\"\n      - \"packages/**\"\n      - \"!packages/directory/**\"\n      - \"!packages/codemod/**\"\n      - \"scripts/**\"\n  pull_request:\n    paths:\n      - \".github/workflows/tests.yaml\"\n      - \"packages/**\"\n      - \"!packages/directory/**\"\n      - \"!packages/codemod/**\"\n      - \"scripts/**\"\n  workflow_dispatch:\n    inputs:\n      all_versions:\n        description: Run tests against all versions\n        type: boolean\n\npermissions:\n  # AWS\n  id-token: write\n  # test-reporter\n  contents: read\n  actions: read\n  checks: write\n\njobs:\n  android:\n    name: Android\n    runs-on: ubuntu-latest\n    strategy:\n      fail-fast: false\n      matrix:\n        api-level: [35]\n        rn-version: ${{ github.event.inputs.all_versions && fromJSON('[\"0.80\", \"0.79\", \"0.78\", \"0.77\", \"0.76\", \"0.75\", \"0.74\", \"0.73\"]') || fromJSON('[\"0.80\", \"0.79\", \"0.77\"]') }}\n        arch: [\"new\", \"old\"]\n\n    steps:\n      - uses: actions/checkout@v4\n\n      - uses: aws-actions/configure-aws-credentials@v4\n        if: always() # it fails for non maintainer PRs\n        with:\n          aws-region: us-east-2\n          role-to-assume: arn:aws:iam::119243932312:role/RNVI-S3-Buckert\n          role-skip-session-tagging: true\n\n      - name: Setup Java\n        uses: actions/setup-java@v4\n        with:\n          distribution: \"temurin\"\n          java-version: \"17\"\n\n      # Remove once setup-node supports corepack https://github.com/actions/setup-node/pull/901 lands\n      - uses: pnpm/action-setup@v4\n        with:\n          run_install: false\n      - uses: actions/setup-node@v4\n        with:\n          node-version: lts/*\n          cache: pnpm\n\n      - name: Gradle cache\n        uses: gradle/actions/setup-gradle@v4\n        with:\n          add-job-summary: on-failure\n          # TODO: Remove this after we merge\n          cache-read-only: ${{ github.ref != 'refs/heads/master' && github.ref != 'refs/heads/per-package-copy' }}\n\n      - name: AVD Deps\n        run: |\n          sudo apt update\n          sudo apt-get install -y libpulse0 libgl1\n\n      - name: AVD cache\n        uses: actions/cache@v4\n        id: avd-cache\n        with:\n          path: |\n            ~/.android/avd/*\n            ~/.android/adb*\n          key: avd-${{ matrix.api-level }}\n\n      - name: Enable KVM group perms\n        run: |\n          echo 'KERNEL==\"kvm\", GROUP=\"kvm\", MODE=\"0666\", OPTIONS+=\"static_node=kvm\"' | \\\n            sudo tee /etc/udev/rules.d/99-kvm4all.rules\n          sudo udevadm control --reload-rules\n          sudo udevadm trigger --name-match=kvm\n\n      - name: create AVD and generate snapshot for caching\n        if: steps.avd-cache.outputs.cache-hit != 'true'\n        uses: reactivecircus/android-emulator-runner@v2\n        with:\n          arch: x86_64\n          api-level: ${{ matrix.api-level }}\n          force-avd-creation: false\n          emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none\n          disable-animations: false\n          script: echo \"Created cachable AVD\"\n\n      - name: Build\n        run: |\n          pnpm install\n\n      - name: Set up RN version\n        run: |\n          cd packages/icon-explorer\n\n          ./set-rn-version.sh ${{ matrix.arch }} ${{ matrix.rn-version }}\n\n      - name: Build App\n        run: |\n          cd packages/icon-explorer\n          mv .owl/baseline-${{ matrix.arch }} .owl/baseline\n\n          # something strange where the owl build isn't generating the jni files\n          if [ \"${{ matrix.rn-version }}\" == \"0.80\" -a \"${{ matrix.arch }}\" == \"new\" ]; then\n            pnpm run android || true\n          fi\n\n          pnpm run test:android:build\n\n      - name: Run test\n        timeout-minutes: 3\n        id: tests\n        uses: reactivecircus/android-emulator-runner@v2\n        with:\n          arch: x86_64\n          api-level: ${{ matrix.api-level }}\n          force-avd-creation: false\n          emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none\n          disable-animations: true\n          script: adb shell settings put secure immersive_mode_confirmations confirmed && cd packages/icon-explorer && pnpm run test:android:run\n\n      - name: S3 Report\n        if: always()\n        run: |\n          cd packages/icon-explorer\n\n          sed -i.bak -e \"s/Report/Report (RN: ${{ matrix.arch }} Arch: ${{ matrix.rn-version }}) $(date)/\" .owl/report/index.html || true\n\n          ID=\"${{ github.run_id }}-${{ github.run_attempt }}-${{ github.job }}-${{ matrix.arch }}-${{ matrix.rn-version }}\"\n          aws --region us-east-2 s3 sync .owl \"s3://react-native-vector-icons/$ID\" || true\n\n          if [ \"${{ steps.tests.outcome }}\" == \"failure\" ]; then\n            echo -n \"* ❌ \" >> $GITHUB_STEP_SUMMARY\n          elif [ \"${{ steps.tests.outcome }}\" == \"success\" ]; then\n            echo -n \"*  ✅ \" >> $GITHUB_STEP_SUMMARY\n          else\n            exit 0\n          fi\n\n          echo \"[Report  ${{ matrix.arch }} ${{ matrix.rn-version }}](http://react-native-vector-icons.s3-website.us-east-2.amazonaws.com/$ID/report/index.html)\" >> $GITHUB_STEP_SUMMARY\n\n      - uses: dorny/test-reporter@v2\n        if: always()\n        with:\n          name: JEST Tests android - ${{ matrix.arch }} ${{ matrix.rn-version }}\n          path: packages/icon-explorer/.owl/report/*.xml\n          reporter: jest-junit\n\n  ios:\n    name: iOS\n    runs-on: macos-latest\n    strategy:\n      fail-fast: false\n      matrix:\n        rn-version: ${{ github.event.inputs.all_versions && fromJSON('[\"0.80\", \"0.79\", \"0.78\", \"0.77\", \"0.76\", \"0.75\", \"0.74\", \"0.73\"]') || fromJSON('[\"0.80\", \"0.79\", \"0.77\"]') }}\n        arch: [\"new\", \"old\"]\n\n    steps:\n      - uses: actions/checkout@v4\n\n      - uses: aws-actions/configure-aws-credentials@v4\n        if: always() # it fails for non maintainer PRs\n        with:\n          aws-region: us-east-2\n          role-to-assume: arn:aws:iam::119243932312:role/RNVI-S3-Buckert\n          role-skip-session-tagging: true\n\n      - uses: actions/setup-java@v4\n        with:\n          distribution: \"temurin\"\n          java-version: \"17\"\n\n      # Remove once setup-node supports corepack https://github.com/actions/setup-node/pull/901 lands\n      - uses: pnpm/action-setup@v4\n        with:\n          run_install: false\n      - uses: actions/setup-node@v4\n        with:\n          node-version: lts/*\n          cache: pnpm\n\n      - name: Build\n        run: |\n          pnpm install\n\n      - name: Set up RN version\n        run: |\n          cd packages/icon-explorer\n\n          ./set-rn-version.sh ${{ matrix.arch }} ${{ matrix.rn-version }}\n\n      - name: Build App\n        run: |\n          cd packages/icon-explorer\n\n          # Try and work around strange build bug\n          mkdir -p /Users/runner/work/react-native-vector-icons/react-native-vector-icons/packages/icon-explorer/ios/build/Build/Products/Debug-iphonesimulator/ReactTestApp.app\n          mkdir -p /Users/runner/work/react-native-vector-icons/react-native-vector-icons/packages/icon-explorer/ios/build/Build/Products/Release-iphonesimulator/ReactTestApp.app\n\n          mv .owl/baseline-${{ matrix.arch }} .owl/baseline\n          pnpm run test:ios:build\n\n      - name: Run simulator\n        id: simulator\n        uses: futureware-tech/simulator-action@v3\n        with:\n          os: \"iOS\"\n          model: \"iPhone 16\"\n\n      - name: Run tests\n        timeout-minutes: 5\n        id: tests\n        run: |\n          cd packages/icon-explorer\n          tmp=$(mktemp)\n          jq '.ios.device = \"${{ steps.simulator.outputs.udid }}\"' owl.config.json > \"$tmp\" && mv \"$tmp\" owl.config.json\n          pnpm run test:ios:run\n\n      - name: S3 Report\n        if: always()\n        run: |\n          cd packages/icon-explorer\n\n          sed -i.bak -e \"s/Report/Report (RN: ${{ matrix.arch }} Arch: ${{ matrix.rn-version }}) $(date)/\" .owl/report/index.html || true\n\n          ID=\"${{ github.run_id }}-${{ github.run_attempt }}-${{ github.job }}-${{ matrix.arch }}-${{ matrix.rn-version }}\"\n          aws --region us-east-2 s3 sync .owl \"s3://react-native-vector-icons/$ID\" || true\n\n          if [ \"${{ steps.tests.outcome }}\" == \"failure\" ]; then\n            echo -n \"* ❌ \" >> $GITHUB_STEP_SUMMARY\n          elif [ \"${{ steps.tests.outcome }}\" == \"success\" ]; then\n            echo -n \"*  ✅ \" >> $GITHUB_STEP_SUMMARY\n          else\n            exit 0\n          fi\n\n          echo \"[Report  ${{ matrix.arch }} ${{ matrix.rn-version }}](http://react-native-vector-icons.s3-website.us-east-2.amazonaws.com/$ID/report/index.html)\" >> $GITHUB_STEP_SUMMARY\n\n      - uses: dorny/test-reporter@v2\n        if: always()\n        with:\n          name: JEST Tests ios - ${{ matrix.arch }} ${{ matrix.rn-version }}\n          path: packages/icon-explorer/.owl/report/*.xml\n          reporter: jest-junit\n"
  },
  {
    "path": ".gitignore",
    "content": "# OSX\n.DS_Store\n\n# Xcode\nbuild/\n*.pbxuser\n!default.pbxuser\n*.mode1v3\n!default.mode1v3\n*.mode2v3\n!default.mode2v3\n*.perspectivev3\n!default.perspectivev3\nxcuserdata\n*.xccheckout\n*.moved-aside\nDerivedData\n*.hmap\n*.ipa\n*.xcuserstate\nproject.xcworkspace\n\n# Android/IJ\n.classpath\n.cxx\n.gradle\n.idea\n.project\n.settings\nlocal.properties\nandroid.iml\n\n# node.js\nnode_modules/\n\n# BUCK\nbuck-out/\n\\.buckd/\nandroid/app/libs\nandroid/keystores/debug.keystore\n\n# generated by bob\nlib/\n\n# Turborepo\n.turbo/\n\n# React Native Codegen\nios/generated\nandroid/generated\n\n# Nx\n.nx/cache\n.nx/workspace-data\n\n# Diffenator\ndiffenator\n"
  },
  {
    "path": ".knip.jsonc",
    "content": "{\n  \"$schema\": \"https://unpkg.com/knip@5/schema-jsonc.json\",\n  \"ignore\": [\"**/*.web.ts\"],\n  \"babel\": true,\n  \"workspaces\": {\n    \".\": {\n      \"ignoreDependencies\": [\n        \"yo\",\n        \"eslint-config-airbnb-typescript\",\n        \"generator-react-native-vector-icons\",\n        \"@commitlint/config-conventional\",\n        \"@nx/js\",\n        \"@evilmartians/lefthook\"\n      ],\n      \"ignoreBinaries\": [\"scripts/generate-fonts.sh\"]\n    },\n    \"packages/*\": {\n      \"entry\": [\n        \"{index,cli,main}.{js,mjs,cjs,jsx,ts,tsx,mts,cts}!\",\n        \"src/{index,cli,main}.{js,mjs,cjs,jsx,ts,tsx,mts,cts}!\"\n      ]\n    },\n    \"packages/common\": {\n      \"entry\": [\"src/index.ts\", \"src/scripts/{getFonts,updatePlist}.ts\"],\n      \"ignoreDependencies\": [\"@react-native/assets-registry\", \"@react-native-vector-icons/get-image\"]\n    },\n    \"packages/get-image\": {\n      \"entry\": [\"src/index.ts\"],\n      \"ignoreDependencies\": [\"turbo\"],\n      \"ignore\": [\"src/NativeVectorIcons.ts\", \"react-native.config.js\"]\n    },\n    \"packages/fontawesome-common\": {\n      \"entry\": [\"scripts/generate-fontawesome-metadata.js\", \"scripts/generate-fontawesome-glyphmap.mts\"],\n      \"ignore\": [\"generators/app/templates/src/*\"],\n      \"ignoreDependencies\": [\"@types/react\"]\n    },\n    \"packages/codemod\": {\n      \"entry\": [\"src/index.ts\", \"src/{11,12}.0/transform.ts\"]\n    },\n    \"packages/directory\": {\n      \"entry\": [\n        \"src/index.tsx\",\n        \"src/App.test.tsx\",\n        \"src/reportWebVitals.ts\",\n        \"src/setupTests.js\",\n        \"bin/generate-font-styles.mts\",\n        \"bin/generate-glyphmap-index.mts\"\n      ],\n      \"ignoreDependencies\": [\"@testing-library/user-event\"],\n      \"ignoreBinaries\": [\"bin/generate-font-styles.mts\", \"bin/generate-glyphmap-index.mts\"]\n    },\n    \"packages/icon-explorer\": {\n      \"entry\": [\"index.js\", \"react-native.config.js\", \"configPlugin.js\", \"src/Types.tsx\"],\n      \"ignore\": [\"metro.config.js\"],\n      \"ignoreDependencies\": [\n        \"@react-native-vector-icons/get-image\",\n        \"@babel/preset-env\",\n        \"@react-native/eslint-config\",\n        \"@rnx-kit/align-deps\",\n        \"react-test-renderer\",\n        \"@types/react-test-renderer\",\n        \"@react-native-community/cli\",\n        \"@react-native-community/cli-platform-android\",\n        \"@react-native-community/cli-platform-ios\"\n      ]\n    },\n    \"packages/generator-react-native-vector-icons\": {\n      \"entry\": [\"src/app/index.ts\"],\n      \"ignore\": [\"src/app/templates/**\", \"generators/app/templates/**\"],\n      \"ignoreDependencies\": [\"oslllo-svg-fixer\"]\n    },\n    \"packages/ant-design\": {\n      \"ignore\": [\"src/NativeVectorIconsAntDesign.ts\"],\n      \"ignoreDependencies\": [\"@ant-design/icons-svg\"]\n    },\n    \"packages/entypo\": {\n      \"ignore\": [\"src/NativeVectorIconsEntypo.ts\"],\n      \"ignoreDependencies\": [\"@entypo-icons/core\"]\n    },\n    \"packages/evil-icons\": {\n      \"ignore\": [\"src/NativeVectorIconsEvilIcons.ts\"],\n      \"ignoreDependencies\": [\"evil-icons\"]\n    },\n    \"packages/feather\": {\n      \"ignore\": [\"src/NativeVectorIconsFeather.ts\"],\n      \"ignoreDependencies\": [\"feather-icons\"]\n    },\n    \"packages/fontawesome\": {\n      \"ignore\": [\"src/NativeVectorIconsFontAwesome.ts\"],\n      \"ignoreDependencies\": [\"font-awesome\"]\n    },\n    \"packages/fontawesome-free-brands\": {\n      \"ignoreDependencies\": [\"@fortawesome/fontawesome-free\"]\n    },\n    \"packages/fontawesome-free-regular\": {\n      \"ignoreDependencies\": [\"@fortawesome/fontawesome-free\"]\n    },\n    \"packages/fontawesome-free-solid\": {\n      \"ignoreDependencies\": [\"@fortawesome/fontawesome-free\"]\n    },\n    \"packages/fontawesome5\": {\n      \"ignore\": [\"src/NativeVectorIconsFontAwesome5.ts\"],\n      \"ignoreDependencies\": [\"@fortawesome/fontawesome-free\"]\n    },\n    \"packages/fontawesome5-pro\": {\n      \"ignore\": [\"src/NativeVectorIconsFontAwesome5Pro.ts\"],\n      \"ignoreDependencies\": [\"@react-native-vector-icons/fontawesome-common\"]\n    },\n    \"packages/fontawesome6\": {\n      \"ignore\": [\"src/NativeVectorIconsFontAwesome6.ts\"],\n      \"ignoreDependencies\": [\"@fortawesome/fontawesome-free\"]\n    },\n    \"packages/fontawesome6-pro\": {\n      \"ignore\": [\"src/NativeVectorIconsFontAwesome6Pro.ts\"],\n      \"ignoreDependencies\": [\"@react-native-vector-icons/fontawesome-common\"]\n    },\n    \"packages/fontello\": {\n      \"ignore\": [\"src/NativeVectorIconsFontello.ts\"]\n    },\n    \"packages/fontisto\": {\n      \"ignore\": [\"src/NativeVectorIconsFontisto.ts\"],\n      \"ignoreDependencies\": [\"fontisto\"]\n    },\n    \"packages/foundation\": {\n      \"ignore\": [\"src/NativeVectorIconsFoundation.ts\"],\n      \"ignoreDependencies\": [\"foundation-icons\"]\n    },\n    \"packages/icomoon\": {\n      \"ignore\": [\"src/NativeVectorIconsIcomoon.ts\"]\n    },\n    \"packages/ionicons\": {\n      \"ignore\": [\"src/NativeVectorIconsIonicons.ts\"],\n      \"ignoreDependencies\": [\"ionicons\"]\n    },\n    \"packages/lucide\": {\n      \"ignore\": [\"src/NativeVectorIconsLucide.ts\"],\n      \"ignoreDependencies\": [\"lucide-static\"]\n    },\n    \"packages/material-design-icons\": {\n      \"ignore\": [\"src/NativeVectorIconsMaterialDesignIcons.ts\"],\n      \"ignoreDependencies\": [\"@mdi/font\"]\n    },\n    \"packages/material-icons\": {\n      \"ignore\": [\"src/NativeVectorIconsMaterialIcons.ts\"]\n    },\n    \"packages/simple-line-icons\": {\n      \"ignore\": [\"src/NativeVectorIconsSimpleLineIcons.ts\"],\n      \"ignoreDependencies\": [\"simple-line-icons\"]\n    },\n    \"packages/octicons\": {\n      \"ignore\": [\"src/NativeVectorIconsOcticons.ts\"],\n      \"ignoreDependencies\": [\"@primer/octicons\"]\n    },\n    \"packages/zocial\": {\n      \"ignore\": [\"src/NativeVectorIconsZocial.ts\"],\n      \"ignoreDependencies\": [\"css-social-buttons\"]\n    }\n  }\n}\n"
  },
  {
    "path": ".nxignore",
    "content": "# Files that shouldn't cause new versions to be created\npnpm-lock.yaml\nREADME.md\n"
  },
  {
    "path": "CODE_OF_CONDUCT.md",
    "content": "\n# Contributor Covenant Code of Conduct\n\n## Our Pledge\n\nWe as members, contributors, and leaders pledge to make participation in our\ncommunity a harassment-free experience for everyone, regardless of age, body\nsize, visible or invisible disability, ethnicity, sex characteristics, gender\nidentity and expression, level of experience, education, socio-economic status,\nnationality, personal appearance, race, caste, color, religion, or sexual\nidentity and orientation.\n\nWe pledge to act and interact in ways that contribute to an open, welcoming,\ndiverse, inclusive, and healthy community.\n\n## Our Standards\n\nExamples of behavior that contributes to a positive environment for our\ncommunity include:\n\n* Demonstrating empathy and kindness toward other people\n* Being respectful of differing opinions, viewpoints, and experiences\n* Giving and gracefully accepting constructive feedback\n* Accepting responsibility and apologizing to those affected by our mistakes,\n  and learning from the experience\n* Focusing on what is best not just for us as individuals, but for the overall\n  community\n\nExamples of unacceptable behavior include:\n\n* The use of sexualized language or imagery, and sexual attention or advances of\n  any kind\n* Trolling, insulting or derogatory comments, and personal or political attacks\n* Public or private harassment\n* Publishing others' private information, such as a physical or email address,\n  without their explicit permission\n* Other conduct which could reasonably be considered inappropriate in a\n  professional setting\n\n## Enforcement Responsibilities\n\nCommunity leaders are responsible for clarifying and enforcing our standards of\nacceptable behavior and will take appropriate and fair corrective action in\nresponse to any behavior that they deem inappropriate, threatening, offensive,\nor harmful.\n\nCommunity leaders have the right and responsibility to remove, edit, or reject\ncomments, commits, code, wiki edits, issues, and other contributions that are\nnot aligned to this Code of Conduct, and will communicate reasons for moderation\ndecisions when appropriate.\n\n## Scope\n\nThis Code of Conduct applies within all community spaces, and also applies when\nan individual is officially representing the community in public spaces.\nExamples of representing our community include using an official e-mail address,\nposting via an official social media account, or acting as an appointed\nrepresentative at an online or offline event.\n\n## Enforcement\n\nInstances of abusive, harassing, or otherwise unacceptable behavior may be\nreported to the community leaders responsible for enforcement at\n[INSERT CONTACT METHOD].\nAll complaints will be reviewed and investigated promptly and fairly.\n\nAll community leaders are obligated to respect the privacy and security of the\nreporter of any incident.\n\n## Enforcement Guidelines\n\nCommunity leaders will follow these Community Impact Guidelines in determining\nthe consequences for any action they deem in violation of this Code of Conduct:\n\n### 1. Correction\n\n**Community Impact**: Use of inappropriate language or other behavior deemed\nunprofessional or unwelcome in the community.\n\n**Consequence**: A private, written warning from community leaders, providing\nclarity around the nature of the violation and an explanation of why the\nbehavior was inappropriate. A public apology may be requested.\n\n### 2. Warning\n\n**Community Impact**: A violation through a single incident or series of\nactions.\n\n**Consequence**: A warning with consequences for continued behavior. No\ninteraction with the people involved, including unsolicited interaction with\nthose enforcing the Code of Conduct, for a specified period of time. This\nincludes avoiding interactions in community spaces as well as external channels\nlike social media. Violating these terms may lead to a temporary or permanent\nban.\n\n### 3. Temporary Ban\n\n**Community Impact**: A serious violation of community standards, including\nsustained inappropriate behavior.\n\n**Consequence**: A temporary ban from any sort of interaction or public\ncommunication with the community for a specified period of time. No public or\nprivate interaction with the people involved, including unsolicited interaction\nwith those enforcing the Code of Conduct, is allowed during this period.\nViolating these terms may lead to a permanent ban.\n\n### 4. Permanent Ban\n\n**Community Impact**: Demonstrating a pattern of violation of community\nstandards, including sustained inappropriate behavior, harassment of an\nindividual, or aggression toward or disparagement of classes of individuals.\n\n**Consequence**: A permanent ban from any sort of public interaction within the\ncommunity.\n\n## Attribution\n\nThis Code of Conduct is adapted from the [Contributor Covenant][homepage],\nversion 2.1, available at\n[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].\n\nCommunity Impact Guidelines were inspired by\n[Mozilla's code of conduct enforcement ladder][Mozilla CoC].\n\nFor answers to common questions about this code of conduct, see the FAQ at\n[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at\n[https://www.contributor-covenant.org/translations][translations].\n\n[homepage]: https://www.contributor-covenant.org\n[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html\n[Mozilla CoC]: https://github.com/mozilla/diversity\n[FAQ]: https://www.contributor-covenant.org/faq\n[translations]: https://www.contributor-covenant.org/translations\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# Contributing\n\nContributions are always welcome, no matter how large or small!\n\nWe want this community to be friendly and respectful to each other. Please follow it in all your interactions with the project. Before contributing, please read the [code of conduct](./CODE_OF_CONDUCT.md).\n\nIf you have found an issue or would like to request a new feature, simply create a new issue. Be sure to fill out as much information as possible.\n\n## Reporting Bugs & Feature Requests\n\nIf you would like to submit a feature request or report a bug, we encourage you to first look through the [issues](https://github.com/oblador/react-native-vector-icons/issues) and [pull requests](https://github.com/oblador/react-native-vector-icons/pulls) before filing a new issue.\n\n## Submitting a Pull Request\n\nIf you wish to submit a pull request for a new feature or issue, you should start by forking this repository first. This should get you setup on your local machine:\n\n## Development workflow\n\nThis project is a monorepo managed using [pnpm workspaces](https://pnpm.io/workspaces). It contains the following packages:\n\n- The library packages in `packages/common` and `packages/get-image`\n- Example apps in `packages/icon-explorer` and `packages/directory`\n- Fonts in `packages/fontname` e.g. `packages/fontawesome6`\n\nTo get started with the project, run `pnpm install` in the root directory to install the required dependencies for each package:\n\n```sh\npnpm install\n```\n\n> Since the project relies on pnpm workspaces, you cannot use [`npm`](https://github.com/npm/cli) for development.\n\n[IconExplorer](/packages/icon-explorer/) demonstrates usage of the library. You need to run it to test any changes you make.\n\nIt is configured to use the local version of the library, so any changes you make to the library's source code will be reflected in the example app. Changes to the library's JavaScript code will be reflected in the example app without a rebuild, but native code changes will require a rebuild of the example app.\n\nIf you want to use Android Studio or XCode to edit the native code, you can open the `packages/IconExplorer/android` or `packages/IconExplorer/ios` directories respectively in those editors. To edit the Objective-C or Swift files, open `packages/IconExplorer/ios/IconExplorer.xcworkspace` in XCode and find the source files at `Pods > Development Pods > @react-native-vector-icons/ant-design`.\n\nTo edit the Java or Kotlin files, open `packages/icon-explorer/android` in Android studio and find the source files at `react-native-vector-icons` under `Android`.\n\nYou can use various commands from the root directory to work with the project.\n\nTo start the packager:\n\n```sh\npnpm run example start\n```\n\nTo run the example app on Android:\n\n```sh\npnpm run example android\n```\n\nTo run the example app on iOS:\n\n```sh\npnpm run example ios\n```\n\nBy default, the example is configured to build with the old architecture. To run the example with the new architecture, you can do the following:\n\n1. For Android, run:\n\n   ```sh\n   ORG_GRADLE_PROJECT_newArchEnabled=true pnpm run example android\n   ```\n\n2. For iOS, run:\n\n   ```sh\n   RCT_NEW_ARCH_ENABLED=1 pod install example/ios\n   pnpm run example ios\n   ```\n\nIf you are building for a different architecture than your previous build, make sure to remove the build folders first. You can run the following command to cleanup all build folders:\n\n```sh\npnpm run clean\n```\n\nTo confirm that the app is running with the new architecture, you can check the Metro logs for a message like this:\n\n```sh\nRunning \"IconExplorer\" with {\"fabric\":true,\"initialProps\":{\"concurrentRoot\":true},\"rootTag\":1}\n```\n\nNote the `\"fabric\":true` and `\"concurrentRoot\":true` properties.\n\nMake sure your code passes all of our linting. Run the following to verify:\n\n```sh\npnpm run lint\n```\n\nTo fix formatting errors, run the following:\n\n```sh\npnpm run lint:biome --fix\n```\n\nRemember to add tests for your change if possible. Run the unit tests by:\n\n```sh\npnpm run test\n```\n\n### Tests\n\nWe run tests again `new` and `old` architecture against the last 3 versions of React Native automatically via CI.\n\nTo run the these tests manually you should create an avd called test which is based on the Pixel 6 Pro profile. This is essential for the screenshot diffs to work\n\n```sh\nsdkmanager --install 'system-images;android-31;default;x86_64' --channel=0\navdmanager create avd --force -n test --abi 'default/x86_64' --package 'system-images;android-31;default;x86_64' --device 'pixel_6_pro'\n```\n\nYou can then run the tests\n\n```\ncd packages/icon-explorer\npnpm run run test:android:build\npnpm run run test:android:run\npnpm run run test:ios:build\npnpm run run test:ios:run\n```\n\nYou can switch versions of react native before running the tests with\n\n```\ncd packages/icon-explorer\n# ./set-rn-version <arch> <version>\n./set-rn-version new 0.74\n./set-rn-version old 0.79\n```\n\n### Commit message convention\n\nWe follow the [conventional commits specification](https://www.conventionalcommits.org/en) for our commit messages:\n\n- `fix`: bug fixes, e.g. fix crash due to deprecated method.\n- `feat`: new features, e.g. add new method to the module.\n- `refactor`: code refactor, e.g. migrate from class components to hooks.\n- `docs`: changes into documentation, e.g. add usage example for the module..\n- `test`: adding or updating tests, e.g. add integration tests using detox.\n- `chore`: tooling changes, e.g. change CI config.\n\nOur pre-commit hooks verify that your commit message matches this format when committing.\n\n### Linting and tests\n\n[ESLint](https://eslint.org/), [Prettier](https://prettier.io/), [TypeScript](https://www.typescriptlang.org/)\n\nWe use [TypeScript](https://www.typescriptlang.org/) for type checking, [ESLint](https://eslint.org/) with [Prettier](https://prettier.io/) for linting and formatting the code, and [Jest](https://jestjs.io/) for testing.\n\nOur pre-commit hooks verify that the linter and tests pass when committing.\n\n### Publishing to npm\n\nWe use `nx` to make it easier to publish new versions. It handles common tasks like bumping version based on semver, creating tags and releases etc.\n\nTo publish new versions, use the github action [release.yml](.github/workflows/deploy.yml) which is triggered manually.\n\n### Scripts\n\nThe `package.json` file contains various scripts for common tasks:\n\n- `pnpm i`: setup project by installing dependencies.\n- `pnpm run lint:typecheck`: type-check files with TypeScript.\n- `pnpm run lint:eslint`: lint files with ESLint.\n- `pnpm run lint:biome`: lint files with Biome.\n\n### Sending a pull request\n\n> **Working on your first pull request?** You can learn how from this _free_ series: [How to Contribute to an Open Source Project on GitHub](https://app.egghead.io/playlists/how-to-contribute-to-an-open-source-project-on-github).\n\nWhen you're sending a pull request:\n\n- Prefer small pull requests focused on one change.\n- Verify that linters and tests are passing.\n- Review the documentation to make sure it looks good.\n- Follow the pull request template when opening a pull request.\n- For pull requests that change the API or implementation, discuss with maintainers first by opening an issue.\n\n### Font generation\n\nAll the font packages are automatically generated using a `yeoman` generator. This is driven by a `.yo-rc.json` file in the root of each font.\n\nTo make changes to common font files, edit the files in `packages/generator-react-native-vector-icons/src/app/templates/` and then at the root run:\n\n```sh\n# Generate all fonts\npnpm generate\n\n# Generate a single font\npnpm generate ant-design\n```\n\n### Font versioning\n\nFont package versions are now independent of upstream font versions, and we track the mapping in the README.md of each font\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2015 Joel Arvidsson\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 all\ncopies 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 THE\nSOFTWARE.\n"
  },
  {
    "path": "MIGRATION.md",
    "content": "# Major version migration instructions\n\nWe provide a `codemod` to help migrate your code and settings between major versions.\n\n> [!IMPORTANT]\n> Make sure your code is committed to git or backed up before executing the codemod and review all changes before committing them.\n\n```sh\nnpx @react-native-vector-icons/codemod\n```\n\n## Expo\n\nTo migrate from `@expo/vector-icons`, run the codemod in your Expo project. If you use `createIconSetFromIcoMoon` or `createIconSetFromFontello`, there may be some manual steps required after running the codemod:\n\n```diff\n-import createIconSetFromFontello from '@expo/vector-icons/createIconSetFromFontello';\n+import createIconSetFromFontello from '@react-native-vector-icons/fontello';\n\n-createIconSetFromFontello(fontelloConfig, 'fontello', require('path/to/fontello.ttf'));\n+createIconSetFromFontello(fontelloConfig, {\n+    fontSource: require('path/to/fontello.ttf')\n+});\n```\n\n## React Native CLI projects\n\nThe codemod attempts to execute many of the manual steps listed below. Thoroughly check each section below for any steps that aren't automatically handled.\n\n> [!NOTE]\n> The codemod is a best effort, read through all the manual steps to ensure they have been completed.\n\n## Migration from react-native-vector-icons to @react-native-vector-icons/\\* v12.0+\n\nIn v12, the library has been simplified to require very little setup and does not require the explicit installation of `@react-native-vector-icons/common` package.\n\n### package.json\n\nUnless you are using `createIconSet` directly with your own font, remove `@react-native-vector-icons/common` from your `package.json`. If it's not there, go to the next step.\n\n```sh\nnpm uninstall @react-native-vector-icons/common\n```\n\n### Move FontAwesome Pro, icomoon and fontello fonts\n\n> [!WARNING]\n> Only FontAwesome Pro fonts are supported by the codemod\n\nThese fonts should be in `rnvi-fonts` or a folder you defined in `package.json`\n\nThey need to be moved to a subfolder of `rnvi-fonts` with the name of the font package.\n\n- fontawesome5-pro\n- fontawesome6-pro\n- fontello\n- icomoon\n\n### package.json\n\nRemove `react-native-vector-icons` from your dependencies and replace with the fonts you intend to use, e.g. `@react-native-vector-icons/fontisto`.\n\n### imports\n\nUpdate your import statements to use the new library names\n\n```js\n// Old\nimport Fontisto from \"react-native-vector-icons\";\n\n// New\nimport { Fontisto } from \"@react-native-vector-icons/fontisto\";\n```\n\n### Move to new props for Fontawesome 5 and 6\n\nThe FontAwesome 5 and 6 fonts now take an `iconType` prop instead of a style name prop\n\n```jsx\n// Old\n<FontAwesome5 name=\"house\" solid />\n\n// New\n<FontAwesome5 name=\"house\" iconType=\"solid\" />\n```\n\nNote: The codemod assumes you used the naming from the old README for your component e.g. `FontAwesome5` or `Icon`\nIf you have imported the component with another name you will need to modify the codemod or make the changes yourself.\n\n### Remove unused fonts from Info.plist\n\nYou still need to add fonts in `Info.plist` - but only those which you have installed.\n\nCheck the [React Native Setup](./docs/SETUP-REACT-NATIVE.md) instructions for instructions on how to update it with our included script.\n\n### iOS\n\n> [!WARNING]\n> This is not supported by the codemod\n\nIf you aren't using any other fonts, remove the `Fonts` folder and any fonts you have added.\n\nSelect your project in the navigator, choose your app's target, go to the Build Phases tab, and under Copy Bundle Resources, remove any fonts.\n\nRemove any entries in `react-native.config.js`:\n\n```js\n// react-native.config.js;\nmodule.exports = {\n  dependencies: {\n    // Remove any entries like this\n    \"react-native-vector-icons\": {\n      platforms: {\n        ios: null,\n      },\n    },\n  },\n};\n```\n"
  },
  {
    "path": "README.md",
    "content": "![Vector Icons for React Native](https://cloud.githubusercontent.com/assets/378279/12009887/33f4ae1c-ac8d-11e5-8666-7a87458753ee.png)\n\n[![npm](https://img.shields.io/npm/v/@react-native-vector-icons/common.svg)](https://npmjs.com/package/@react-native-vector-icons/common) [![npm](https://img.shields.io/npm/dm/@react-native-vector-icons/common.svg)](https://npmjs.com/package/@react-native-vector-icons/common)\n\n# React Native Vector Icons\n\nElevate your React Native applications with the power of customizable vector\nicons. Ideal for embellishing buttons, logos, and navigation or tab bars, these\nicons seamlessly integrate into your projects. Their versatility makes\nextension and styling effortless.\n\nFor the integration of `.svg` files natively, you can explore [`react-native-vector-image`](https://github.com/oblador/react-native-vector-image).\n\n> [!TIP]\n> If you are still using the old single package `react-native-vector-icons` visit <https://github.com/oblador/react-native-vector-icons/tree/10.x>. To migrate to the package-per-icon-set approach, see [MIGRATION.md](MIGRATION.md).\n\n## Table of Contents\n\n- [Sponsorship](#sponsorship)\n- [Available Icon Sets](#available-icon-sets)\n- [Installation](#installation)\n- [Setup](#setup)\n- [Icon Component](#icon-component)\n- [Usage as PNG Image/Source Object](#usage-as-png-imagesource-object)\n- [Multi-Style Fonts](#multi-style-fonts)\n- [Custom Fonts](#custom-fonts)\n- [Animation](#animation)\n- [Dynamic icon font loading](#dynamic-icon-font-loading)\n- [Usage Examples](#usage-examples)\n- [Changelog](https://github.com/react-native-vector-icons/react-native-vector-icons/releases)\n- [License](#license)\n\n## Sponsorship\n\nShould you find this library beneficial, kindly contemplate the option of\n[sponsoring](https://github.com/sponsors/oblador).\n\n## Available Icon Sets\n\n[Explore all icons](https://oblador.github.io/react-native-vector-icons/).\n\nRNVI comes with the following supported icons. You can [search NPM](https://www.npmjs.com/search?q=keywords%3Areact-native-vector-icons-icon) for third party icons.\n\n### Actively maintained\n\n- [`AntDesign`](https://ant.design/components/icon) from Ant Group (v4.4.2 with _449_ icons)\n- [`Feather`](http://feathericons.com) created by Cole Bemis & Contributors (v4.29.2 featuring _287_ icons)\n- [`FontAwesome`](https://fontawesome.com/search) designed by Fonticons, Inc. (v7.2.0 featuring _2,806_ free and _75,767_ pro icons)\n- [`Foundation`](http://zurb.com/playground/foundation-icon-fonts-3) by ZURB, Inc. (v3.0 with _283_ icons)\n- [`Ionicons`](https://ionic.io/ionicons) crafted by Ionic (v8.0.9 containing _1,357_ icons)\n- [`MaterialDesignIcons`](https://pictogrammers.com/library/mdi/) from MaterialDesignIcons.com (v7.4.47 including _7448_ icons)\n- [`Octicons`](https://primer.style/foundations/icons) designed by GitHub, Inc. (v19.22.0 with _339_ icons)\n- [`Lucide`](https://lucide.dev/) designed by Lucide, (v0.576.0 with _1,639_ icons)\n\n### No longer maintained upstream\n\n- [`Entypo`](http://entypo.com) by Daniel Bruce (v1.0.1 with _411_ icons)\n- [`EvilIcons`](http://evil-icons.io) designed by Alexander Madyankin & Roman Shamin (v1.10.1 with _70_ icons)\n- [`FontAwesome 4`](https://fontawesome.com/v4/icons) by Fonticons, Inc. (v4.7.0 containing _785_ icons)\n- [`FontAwesome 5`](https://fontawesome.com/v5/search) from Fonticons, Inc. (v5.15.4 offering _1611_ free and _7869_ pro icons)\n- [`FontAwesome 6`](https://fontawesome.com/search) designed by Fonticons, Inc. (v6.7.2 featuring _2060_ free and _52663_ pro icons)\n- [`Fontisto`](https://github.com/kenangundogan/fontisto) created by Kenan Gündoğan (v3.0.4 featuring _617_ icons)\n- [`MaterialIcons`](https://fonts.google.com/icons?icon.set=Material+Icons) by Google, Inc. (v4.0.0 featuring _2234_ icons)\n- [`SimpleLineIcons`](https://simplelineicons.github.io/) crafted by Sabbir & Contributors (v2.5.5 with _189_ icons)\n- [`Zocial`](https://smcllns.github.io/css-social-buttons) by Sam Collins (v1.1.1 with _100_ icons)\n\n## Migration\n\nSee [MIGRATION.md](MIGRATION.md) if you are migrating from `react-native-vector-icons` to the package-per-icon-set approach or between major versions.\n\n## Installation\n\n1. Install the packages for the icons you want to use\n\n```sh\nnpm install @react-native-vector-icons/fontawesome-free-solid @react-native-vector-icons/evil-icons\n```\n\n2. Depending on the platform you're targeting (iOS/Android/Windows), follow the appropriate setup instructions below.\n3. If you are using one of the following fonts, refer to their guides for further instructions\n\n- [Fontello](packages/fontello/README.md)\n- [Icomoon](packages/icomoon/README.md)\n\n## Setup\n\nRefer to the guide for [Expo](./docs/SETUP-EXPO.md), [React Native](./docs/SETUP-REACT-NATIVE.md) or [Web](./docs/SETUP-WEB.md) for further instructions.\n\n### Font location customisation\n\nFor fonts like the FontAwesome Pro as well as Fontello and Icomoon where you provide the fonts, the default location for the font files is `rnvi-fonts` in the same directory as your package.json. This can be customized by setting the `fontDir` property in your `package.json` file.\n\n```json\n{\n  \"reactNativeVectorIcons\": {\n    \"fontDir\": \"src/rnvi-fonts\"\n  }\n}\n```\n\n## `Icon` Component\n\nYou can either use one of the bundled icons above or roll your own custom font.\n\n```js\nimport { FontAwesomeFreeSolid } from \"@react-native-vector-icons/fontawesome-free-solid\";\n// or use the static version if you don't need [dynamic font loading](#dynamic-icon-font-loading) to get a slightly smaller bundle size\nimport { FontAwesomeFreeSolid } from \"@react-native-vector-icons/fontawesome-free-solid/static\";\n\n<FontAwesomeFreeSolid name=\"rocket\" size={30} color=\"#900\" />;\n```\n\n### Props\n\nAny [Text props](https://reactnative.dev/docs/text.html#props) and the following:\n\n| Prop        | Description                                                             | Default     |\n| ----------- | ----------------------------------------------------------------------- | ----------- |\n| **`size`**  | Size of the icon, can also be passed as `fontSize` in the style object. | `12`        |\n| **`name`**  | What icon to show, see Icon Explorer app or one of the links above.     | _None_      |\n| **`color`** | Color of the icon.                                                      | _Inherited_ |\n\n### Styling\n\nSince `Icon` builds on top of the `Text` component, most [style properties](https://reactnative.dev/docs/style.html) will work as expected, you might find it useful to play around with these:\n\n- `backgroundColor`\n- `borderWidth`\n- `borderColor`\n- `borderRadius`\n- `padding`\n- `margin`\n- `color`\n- `fontSize`\n\nBy combining some of these you can create for example :\n\n![type](https://cloud.githubusercontent.com/assets/378279/7667570/33817554-fc0d-11e4-9ad7-4eb60139cfb7.png)\n![star](https://cloud.githubusercontent.com/assets/378279/7667569/3010dd7e-fc0d-11e4-9696-cb721fe8e98d.png)\n\n## Usage as PNG Image/Source Object\n\nConvenient way to plug this in into other components that rely on bitmap images rather than scalable vector icons. Takes the arguments `name`, `size` and `color` as described above.\n\nYou need to install `@react-native-vector-icons/get-image` to use this feature.\n\n```jsx\nconst source = Icon.getImageSourceSync('user', 20, 'red');\n\nreturn <Image source={source} />;\n```\n\nAlternatively you may use the async method `Icon.getImageSource`.\n\nKeep in mind that `Icon.getImageSourceSync` is blocking and might incur performance penalties. Subsequent calls will use cache however.\n\n### Static methods\n\nAll static methods from `Icon` are supported by multi-styled fonts.\n\n| Prop                     | Description                                                                                                                                                                               |\n| ------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| **`getImageSource`**     | Returns a promise that resolving to the source of a bitmap version of the icon for use with `Image` component et al. Usage: `const source = await Icon.getImageSource(name, size, color)` |\n| **`getImageSourceSync`** | Same as `getImageSource` but synchronous. Usage: `const source = Icon.getImageSourceSync(name, size, color)`                                                                              |\n\n## Custom Fonts\n\nThe best approach is to use our icon generator to create your own icon package.\n\nSee [CREATE_FONT_PACKAGE.md](./docs/CREATE_FONT_PACKAGE.md) to learn how to create your own font packages.\n\nYou can also use `createIconSet()` directly in your project. This\nreturns your own custom font based on the `glyphMap` where the key is the icon\nname and the value is either a UTF-8 character or its character code.\n`postScriptName` is the name of the postscript font. Open the font in <https://fontdrop.info/>,\nFont Book.app or similar to learn the name. Also pass the `fontFileName` argument for Android support.\n\n```js\nimport { createIconSet } from \"@react-native-vector-icons/common\";\nconst glyphMap = { \"icon-name\": 1234, test: \"∆\" };\n\n// use createIconSet() with object parameter\n// or use positional parameters for compatibility with version <= 10: `createIconSet(glyphMap, fontFamily[, fontFile])`\nconst Icon = createIconSet(glyphMap, {\n  postScriptName: \"FontName\",\n  fontFileName: \"font-name.ttf\",\n  fontSource: require(\"../fonts/font-name.ttf\"), // optional, for dynamic loading. Can also be a local file uri.\n});\n```\n\nIf you aren't using dynamic font loading you need to make sure your font is copied into your bundle.\n\n## Animation\n\nReact Native comes with an amazing animation library called\n[`Animated`](https://reactnative.dev/docs/animated.html). To use it with an\nicon, simply create an animated component with this line: `const AnimatedIcon =\nAnimated.createAnimatedComponent(Icon)`. You can also use the higher level\nanimation library\n[react-native-animatable](https://github.com/oblador/react-native-animatable).\n\n## Dynamic icon font loading\n\n> Dynamic loading is supported on all platforms if you use Expo ([Expo Go](https://expo.dev/go) or a [development build](https://docs.expo.dev/develop/development-builds/introduction/)). In the future, it should become available for all React Native projects via React Native core.\n\nFonts can be available in an app statically (since build time) or loaded dynamically at runtime. The latter can be useful e.g. for apps that use over-the-air updates and want to [load](https://docs.expo.dev/versions/latest/sdk/font/#loadasyncfontfamilyorfontmap-source) new fonts with an update, or when you need to use a font from a remote location. If you don't use dynamic loading, use the `/static` imports (e.g. `\"@react-native-vector-icons/ionicons/static\"`).\n\nDynamic loading in `@react-native-vector-icons` is currently limited to those fonts that are bundled within the provided packages: it doesn't support Pro fonts (such as FontAwesome Pro). However, loading of custom fonts is not difficult to implement: use `createIconSet` as seen in [custom fonts](#custom-fonts) paragraph to obtain a icon font family with dynamic font loading enabled. See any of the free font packages for reference.\n\nBy default, dynamic loading is enabled if you run Expo SDK >= 52. It doesn't change the way you work with the package: If rendering an icon requires a font that is not known to the app, it will be loaded automatically and icon will render as expected.\n\n`@react-native-vector-icons/common` exports several functions which you can use to control dynamic loading:\n\n- `isDynamicLoadingEnabled`: Returns whether dynamic loading is enabled.\n- `isDynamicLoadingSupported`: Returns whether dynamic loading is supported by your runtime (checks that necessary Expo features are present).\n- `setDynamicLoadingEnabled`: Enables or disables dynamic loading.\n- `setDynamicLoadingErrorCallback`: Sets a callback that is called (in the unlikely case) when an error occurs during dynamic loading. An example of when an error might happen is loading a misconfigured OTA update which doesn't include a necessary font file.\n\n## Usage Examples\n\n### Icon Explorer\n\nTry the `IconExplorer` project in `Examples/IconExplorer` folder, there you can also search for any icon.\n\n![Screenshot of IconExplorer](https://cloud.githubusercontent.com/assets/378279/8903470/a9fe6b46-3458-11e5-901f-98b7b676d0d3.png)\n\n### Basic Example\n\n```js\nimport { IonIcons } from \"@react-native-vector-icons/ionicons/static\";\n\nconst ExampleView = () => (\n  <IonIcons name=\"ios-person\" size={30} color=\"#4F8EF7\" />\n);\n```\n\n### Inline Icons\n\n```js\nimport { Text } from \"react-native\";\nimport { IonIcons } from \"@react-native-vector-icons/ionicons/static\";\n\nconst ExampleView = (props) => (\n  <Text>\n    Lorem <IonIcons name=\"ios-book\" color=\"#4F8EF7\" /> Ipsum\n  </Text>\n);\n```\n\n## Testing\n\nWhen running tests with `jest` you will need to mock out the native code loading to prevent errors.\n\nIn `jest.config.js` add\n\n```js\n// Mock out font loading\nmoduleNameMapper: {\n  '\\\\.(ttf)$': '<rootDir>/__mocks__/file-mock.js',\n}\n```\n\nCreate `__mocks__/file-mock.js`:\n\n```js\nmodule.exports = {};\n```\n\nCreate `__mocks__/@react-native-vector-icons/common.js`:\n\n```js\n// Mock the entire common library so there are no native module loading errors\nmodule.exports = {\n  createIconSet: () => \"icon\",\n};\n```\n\n## [Changelog](https://github.com/oblador/react-native-vector-icons/releases)\n\n## License\n\nThis project is licenced under the [MIT License](http://opensource.org/licenses/mit-license.html).\n\nAny bundled fonts are copyright to their respective authors and mostly under MIT or [SIL OFL](http://scripts.sil.org/OFL).\n"
  },
  {
    "path": "TODO.md",
    "content": "# TODO\n\n* Test the other targets\n  * macOS\n  * windows\n  * web\n* When we stop supporting 0.73 move to generating codegen artifcats and shipping them in libraries\n"
  },
  {
    "path": "biome.jsonc",
    "content": "{\n  \"$schema\": \"https://biomejs.dev/schemas/2.3.0/schema.json\",\n  \"files\": {\n    \"includes\": [\n      \"**\",\n      // pnpm keeps these formatted\n      \"!**/package.json\",\n      \"!**/packages/**/*/package.json\",\n\n      // nx keeps this formatted\n      \"!**/tsconfig.json\",\n      \"!**/packages/**/*/tsconfig.json\",\n      \"!nx.json\",\n\n      // Files auto generated by us\n      \"!**/packages/**/.yo-rc.json\",\n      \"!**/packages/**/*/lib\",\n      \"!**/packages/**/*/glyphmaps\",\n      \"!**/packages/generator-react-native-vector-icons/generators\",\n      \"!**/packages/**/*/.fontcustom-manifest.json\",\n      \"!**/packages/**/*/android/build\",\n      \"!**/packages/directory/src/generated\",\n      \"!**/packages/directory/build\",\n      \"!**/packages/icon-explorer/.owl\",\n      \"!**/.nx\",\n\n      // Templates that have ejs\n      \"!**/packages/fontawesome-common/generators/app/templates/src\",\n      \"!**/packages/generator-react-native-vector-icons/src/app/templates/src\",\n\n      // Upstream files\n      \"!**/packages/icon-explorer/src/configs/icomoon.config.json\",\n\n      // native files\n      \"!**/packages/icon-explorer/ios\",\n      \"!**/packages/icon-explorer/android\",\n      \"!**/packages/common/android\",\n      \"!**/packages/common/ios\"\n    ]\n  },\n  \"assist\": {\n    \"actions\": {\n      \"source\": {\n        \"organizeImports\": {\n          \"level\": \"on\",\n          \"options\": {\n            \"groups\": [\n              \":NODE:\",\n              \":BLANK_LINE:\",\n              [\"react\", \"react-native\", \"react-dom/client\"],\n              \":BLANK_LINE:\",\n              [\":PACKAGE:\"],\n              \":BLANK_LINE:\",\n              [\":PATH:\", \"!**/glyphmaps/*_meta.json\"],\n              \":BLANK_LINE:\",\n              [\"**/glyphmaps/*_meta.json\"]\n            ]\n          }\n        }\n      }\n    }\n  },\n  \"linter\": {\n    \"enabled\": true,\n    \"rules\": {\n      \"recommended\": true,\n      \"complexity\": {\n        \"noForEach\": \"off\"\n      }\n    }\n  },\n  \"formatter\": {\n    \"enabled\": true,\n    \"indentStyle\": \"space\",\n    \"lineWidth\": 120\n  },\n  \"javascript\": {\n    \"formatter\": {\n      \"quoteStyle\": \"single\"\n    }\n  }\n}\n"
  },
  {
    "path": "docs/CREATE_FONT_PACKAGE.md",
    "content": "# Creating a font package\n\nYou can create a new font package either via a PR to this repository or by publishing your own font package on NPM.\n\nWe use a yeoman generator to fully automate the generation the fonts from a configuration file.\n\nIn the future the idea is to automate this to automatically release new fonts in line with upstream.\n\nBelow we describe how to create a font in this monorepo, the process for creating your own package would be quite similar.\n\n> **Note**: Before contributing a new font package, please read our [Contributing Guidelines](../CONTRIBUTING.md) and follow the [development workflow](../CONTRIBUTING.md#development-workflow) described there.\n\n## Quick Start\n\n1. **Set up development environment** (see [CONTRIBUTING.md](../CONTRIBUTING.md#development-workflow)):\n   ```sh\n   pnpm install\n   ```\n\n2. **Create font package directory and config**:\n   ```sh\n   mkdir packages/my-font\n   vi packages/my-font/.yo-rc.json\n   git add packages/my-font/.yo-rc.json\n   ```\n\n3. **Generate the font package**:\n   ```sh\n   # Generate single font\n   pnpm generate my-font\n   \n   # Or generate all fonts\n   pnpm generate\n   ```\n\n## Configuration Reference\n\nThe `.yo-rc.json` file contains all configuration for the font package generation. Here's the complete structure:\n\nFor most fonts you should be able to set the packageName and most other variaables will be derived from them, but you can adjust with the optional propertires when necessary.\n\n### Required Properties\n\n#### packageName\n- **Type**: `string`\n- **Description**: The name of the node package and directory name\n- **Example**: `\"material-symbols\"`\n- **Note**: Currently assumes package will live in `@react-native-vector-icons` namespace\n\n### Optional Properties\n\n#### name\n- **Type**: `string`\n- **Description**: The name in capitalised sentence from\n- **Default**: Title Case of packageName\n- **Example**: `\"Material Symbols\"` (from `material-symbols`)\n\n#### className\n- **Type**: `string`\n- **Description**: Class name for generated components\n- **Default**: PascalCase of packageName\n- **Example**: `\"MaterialSymbols\"` (from `material-symbols`)\n\n#### postScriptName\n- **Type**: `string`\n- **Description**: PostScript name for the font\n- **Default**: Same as className\n- **Example**: `\"MaterialSymbols\"`\n\n#### fontFileName\n- **Type**: `string`\n- **Description**: Base filename for generated fonts\n- **Default**: Same as className\n- **Example**: `\"MaterialSymbols\"`\n\n#### upstreamFont\n- **Type**: `string | object`\n- **Description**: The upstream font package dependency where the font comes from a node module\n- **String format**: `\"package-name\"` - fetches latest version from npm\n- **Object format**:\n  ```json\n  {\n    \"packageName\": \"@fortawesome/fontawesome-free\",\n    \"versionRange\": \"^6\",\n    \"registry\": \"https://registry.npmjs.org\",\n    \"versionOnly\": false\n  }\n  ```\n\n#### customSrc\n- **Type**: `string | boolean`\n- **Description**: Path to custom source template or `true` to skip generation\n- **Example**: `\"../../../../fontawesome-common/generators/app/templates/src/index.tsx\"`\n\n#### customReadme\n- **Type**: `boolean`\n- **Description**: Skip README.md generation\n- **Default**: `false`\n\n#### copyCustomFonts\n- **Type**: `boolean`\n- **Description**: Copy custom font files instead of generating\n- **Default**: `false`\n\n#### commonPackage\n- **Type**: `string`\n- **Description**: Path to common package for shared functionality\n- **Default**: `\"common\"`\n- **Example**: `\"fontawesome-common/fontawesome6\"`\n\n#### meta\n- **Type**: `object`\n- **Description**: Metadata for multi-style fonts\n- **Example**:\n  ```json\n  {\n    \"defaultStyleName\": \"regular\",\n    \"styleNames\": [\"regular\", \"solid\", \"brand\"],\n    \"styles\": {\n      \"regular\": {\n        \"family\": \"FontAwesome6Free-Regular\",\n        \"name\": \"FontAwesome6_Regular.ttf\",\n        \"weight\": 400\n      }\n    }\n  }\n  ```\n\n#### versions\n- **Type**: `array`\n- **Description**: Version history tracking. Updated when a new upstream font version is released.\n- **Example**:\n  ```json\n  [\n    { \"rnvi\": \"12.0.0\", \"upstream\": \"4.29.2\" },\n    { \"rnvi\": \"12.0.1\", \"upstream\": \"4.30.0\" }\n  ]\n  ```\n\n### Build Steps\n\nThe `buildSteps` object defines the font generation pipeline. Steps are executed in this order:\n\n#### preScript\nExecute shell commands before font generation\n```json\n{\n  \"preScript\": {\n    \"script\": \"mkdir -p fonts\\ncurl https://example.com/font.ttf > fonts/font.ttf\"\n  }\n}\n```\n\n#### renameSVGs\nRename and filter SVG files\n```json\n{\n  \"renameSVGs\": {\n    \"location\": \"../../node_modules/@primer/octicons/build/svg\",\n    \"keepPostfix\": \"-16\"\n  }\n}\n```\n- **location**: Source directory containing SVGs\n- **keepPostfix**: Only keep files ending with this postfix, remove it from output\n\n#### fixSVGPaths\nFix SVG path issues using oslllo-svg-fixer\n```json\n{\n  \"fixSVGPaths\": {\n    \"location\": \"../../node_modules/ionicons/dist/svg\",\n    \"cleanup\": true\n  }\n}\n```\n- **location**: Source directory or `\"renamedSVGs\"` if after renameSVGs\n- **cleanup**: Remove source directory after processing\n\n#### fontCustom\nGenerate font TTF from SVGs using FontCustom\n```json\n{\n  \"fontCustom\": {\n    \"location\": \"fixedSvg\",\n    \"cleanup\": true\n  }\n}\n```\n- **location**: Directory containing SVG files\n- **cleanup**: Remove source directory after processing\n\n#### fontforgeScript\nRun FontForge script for font post-processing\n```json\n{\n  \"fontforgeScript\": {\n    \"script\": \"correct-direction.py\"\n  }\n}\n```\n- **script**: Script name in the generator's fontforge directory\n\n#### glyphmap\nGenerate icon mapping files\n```json\n{\n  \"glyphmap\": {\n    \"mode\": \"css\",\n    \"location\": \"FontAwesome.css\",\n    \"prefix\": \".fa-\",\n    \"cleanup\": true\n  }\n}\n```\n- **mode**: `\"css\"` or `\"codepoints\"`\n- **location**: Source file or array of `[source, output]` pairs\n- **prefix**: CSS class prefix (css mode only)\n- **cleanup**: Remove source files after processing\n\n#### copyFont\nCopy existing font files\n```json\n{\n  \"copyFont\": {\n    \"location\": \"../../node_modules/font-awesome/fonts/fontawesome-webfont.ttf\"\n  }\n}\n```\n- **location**: Source file path or array of `[source, output]` pairs\n\n#### postScript\nExecute shell commands after font generation\n```json\n{\n  \"postScript\": {\n    \"script\": \"node ../scripts/generate-metadata.js\"\n  }\n}\n```\n\n## Configuration Examples\n\n### SVG to Font Generation (Feather Icons)\n```json\n{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"feather\",\n    \"upstreamFont\": \"feather-icons\",\n    \"buildSteps\": {\n      \"fontCustom\": {\n        \"location\": \"node_modules/feather-icons/dist/icons\"\n      },\n      \"glyphmap\": {\n        \"mode\": \"css\",\n        \"cleanup\": true\n      }\n    },\n    \"versions\": [{ \"rnvi\": \"12.0.0\", \"upstream\": \"4.29.2\" }]\n  }\n}\n```\n\n### CSS-based Font (FontAwesome)\n```json\n{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontawesome\",\n    \"postScriptName\": \"FontAwesome\",\n    \"fontFileName\": \"FontAwesome\",\n    \"className\": \"FontAwesome\",\n    \"upstreamFont\": \"font-awesome\",\n    \"buildSteps\": {\n      \"glyphmap\": {\n        \"location\": \"../../node_modules/font-awesome/css/font-awesome.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fa-\"\n      },\n      \"copyFont\": {\n        \"location\": \"../../node_modules/font-awesome/fonts/fontawesome-webfont.ttf\"\n      }\n    },\n    \"versions\": [{ \"rnvi\": \"12.0.0\", \"upstream\": \"4.7.0\" }]\n  }\n}\n```\n\n### Codepoints-based Font (Material Icons)\n```json\n{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"material-icons\",\n    \"postScriptName\": \"MaterialIcons-Regular\",\n    \"buildSteps\": {\n      \"preScript\": {\n        \"script\": \"mkdir -p fonts\\nREF='f7bd4f25f3764883717c09a1fd867f560c9a9581'\\ncurl https://raw.githubusercontent.com/google/material-design-icons/$REF/font/MaterialIcons-Regular.codepoints -Ls > MaterialIcons-Regular.codepoints\\ncurl https://raw.githubusercontent.com/google/material-design-icons/$REF/font/MaterialIcons-Regular.ttf -Ls > fonts/MaterialIcons.ttf\"\n      },\n      \"glyphmap\": {\n        \"location\": \"MaterialIcons-Regular.codepoints\",\n        \"mode\": \"codepoints\",\n        \"prefix\": \".mdi-\",\n        \"cleanup\": true\n      }\n    },\n    \"versions\": [{ \"rnvi\": \"12.0.0\", \"upstream\": \"0.0.1\" }]\n  }\n}\n```\n\n### Multi-style Font (FontAwesome 6)\n```json\n{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontawesome6\",\n    \"className\": \"FontAwesome6\",\n    \"commonPackage\": \"fontawesome-common/fontawesome6\",\n    \"customSrc\": \"../../../../fontawesome-common/generators/app/templates/src/index.tsx\",\n    \"customReadme\": true,\n    \"upstreamFont\": {\n      \"packageName\": \"@fortawesome/fontawesome-free\",\n      \"versionRange\": \"^6\"\n    },\n    \"meta\": {\n      \"defaultStyleName\": \"regular\",\n      \"styleNames\": [\"regular\", \"solid\", \"brand\"],\n      \"styles\": {\n        \"regular\": {\n          \"family\": \"FontAwesome6Free-Regular\",\n          \"name\": \"FontAwesome6_Regular.ttf\",\n          \"weight\": 400\n        },\n        \"solid\": {\n          \"family\": \"FontAwesome6Free-Solid\",\n          \"name\": \"FontAwesome6_Solid.ttf\",\n          \"weight\": 900\n        },\n        \"brand\": {\n          \"family\": \"FontAwesome6Brands-Regular\",\n          \"name\": \"FontAwesome6_Brands.ttf\",\n          \"weight\": 400\n        }\n      }\n    },\n    \"buildSteps\": {\n      \"glyphmap\": {\n        \"location\": \"node_modules/@fortawesome/fontawesome-free/css/all.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fa-\"\n      },\n      \"copyFont\": {\n        \"location\": [\n          [\"node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf\", \"FontAwesome6_Brands\"],\n          [\"node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf\", \"FontAwesome6_Regular\"],\n          [\"node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf\", \"FontAwesome6_Solid\"]\n        ]\n      },\n      \"postScript\": {\n        \"script\": \"node ../fontawesome-common/scripts/generate-fontawesome-metadata --path node_modules/@fortawesome/fontawesome-free --output glyphmaps/FontAwesome6_meta.json\"\n      }\n    },\n    \"versions\": [{ \"rnvi\": \"12.0.0\", \"upstream\": \"6.7.2\" }]\n  }\n}\n```\n\n### SVG Processing with Fixes (Ionicons)\n```json\n{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"ionicons\",\n    \"upstreamFont\": \"ionicons\",\n    \"buildSteps\": {\n      \"fixSVGPaths\": {\n        \"location\": \"../../node_modules/ionicons/dist/svg\"\n      },\n      \"fontCustom\": {\n        \"location\": \"fixedSvg\",\n        \"cleanup\": true\n      },\n      \"fontforgeScript\": {\n        \"script\": \"correct-direction.py\"\n      },\n      \"glyphmap\": {\n        \"mode\": \"css\",\n        \"cleanup\": true\n      }\n    },\n    \"versions\": [{ \"rnvi\": \"12.0.0\", \"upstream\": \"7.4.0\" }, { \"rnvi\": \"12.0.1\", \"upstream\": \"8.0.8\" }]\n  }\n}\n```\n\n### Custom Font Package (Fontello)\n```json\n{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontello\",\n    \"customReadme\": true,\n    \"customSrc\": true,\n    \"copyCustomFonts\": true\n  }\n}\n```\n\n## Build Process\n\n1. **Install Dependencies**: The generator installs upstream font packages\n2. **Template Generation**: Creates package.json, TypeScript files, Android/iOS config\n3. **Build Steps Execution**: Runs configured build steps in order\n4. **Font Generation**: Uses FontCustom in Docker container if needed\n5. **Glyph Mapping**: Generates JSON mapping files for icons\n\n## Testing Your Font Package\n\nAfter generating your font package, test it in the example app:\n\n```sh\n# Start the example app (see CONTRIBUTING.md for details)\npnpm run example start\npnpm run example android  # or ios\n```\n\n## Development Workflow\n\nFor ongoing development and testing:\n\n1. **Make template changes** to `packages/generator-react-native-vector-icons/src/app/templates/`\n2. **Regenerate fonts**:\n   ```sh\n   pnpm generate my-font\n   ```\n3. **Test changes** in the IconExplorer app\n4. **Run linting and tests** (see [CONTRIBUTING.md](../CONTRIBUTING.md#linting-and-tests)):\n   ```sh\n   pnpm run lint\n   pnpm run test\n   ```\n\n## Submitting Your Font Package\n\nWhen ready to contribute your font package:\n\n1. **Follow commit conventions** described in [CONTRIBUTING.md](../CONTRIBUTING.md#commit-message-convention)\n2. **Create a pull request** following the [PR guidelines](../CONTRIBUTING.md#sending-a-pull-request)\n3. **Include documentation** updates if needed\n4. **Ensure all tests pass** in CI\n\n## Font Versioning\n\nFont package versions are independent of upstream font versions. We track the mapping in each font's README.md file as described in [CONTRIBUTING.md](../CONTRIBUTING.md#font-versioning).\n\n## Manual Generator Execution\n\nIf needed, you can run the generator manually:\n\n```sh\ncd packages/my-font\nnpx yo react-native-vector-icons --current-version=1.0.0\n```\n\n> **Note**: The `pnpm generate` command is the preferred method as it handles version management automatically.\n"
  },
  {
    "path": "docs/SETUP-EXPO.md",
    "content": "# Setup guide for Expo Apps\n\n> If you use React Native without Expo, please follow [this guide](./SETUP-REACT-NATIVE.md) instead. This guide applies to Expo apps only.\n\nIcon packages from `@react-native-vector-icons` work out of the box with Expo, across all platforms. No additional configuration is required.\n\n> [!WARNING]  \n> Avoid Manual Font Duplication: do not add fonts from `node_modules/@react-native-vector-icons/some-font` to `expo-font` plugin configuration unless you have a specific advanced use case.\n"
  },
  {
    "path": "docs/SETUP-REACT-NATIVE.md",
    "content": "# Setup guide for React Native Apps\n\n> If you use Expo, please follow [this guide](./SETUP-EXPO.md) instead. This guide applies to vanilla React Native apps only.\n\n\n### Android\n\n1. Rebuild your app. No extra steps needed for Android.\n\n### iOS\n\n> [!TIP]\n> You will need to follow these instructions any time you add a new font\n\n1. To use the icon packages you previously installed on iOS, run:\n\n```sh\nnpx rnvi-update-plist package.json ios/AppName/Info.plist\n```\n\n2. Open `ios/Info.plist` and verify that the property called **Fonts provided by application** (or **UIAppFonts** if opening the file in a text editor) is present and contains the expected entries. For example:\n\n<details>\n<summary>List of all available fonts that could be present in Info.plist</summary>\n\n```xml\n    <key>UIAppFonts</key>\n    <array>\n      <string>FontAwesome6_Brands.ttf</string>\n      <string>FontAwesome6_Regular.ttf</string>\n      <string>FontAwesome6_Solid.ttf</string>\n      <string>Octicons.ttf</string>\n    </array>\n```\n</details>\n\n\n3. Run `pod install` in the ios directory\n```sh\ncd ios && pod install\n```\n\n4. Rebuild your app\n\n### macOS\n\nThis needs more work, see details in [#1624](https://github.com/oblador/react-native-vector-icons/issues/1624)\n\n### Windows\n\n1. Copy the needed fonts from `node_modules/react-native-vector-icons/Fonts/*` to `windows/<Project>/Assets/*`\n2. Open your solution on Visual Studio, right click on Assets, add Add Assets, then select your fonts, save and quit Visual Studio.\n3. Rebuild your project\n"
  },
  {
    "path": "docs/SETUP-WEB.md",
    "content": "# Setup guide for Web Apps\n\n> This guide can probably be improved, please feel free to contribute.\n\n### React-native-web Setup\n\nTo port a react-native mobile app to web using `react-native-web` you just need to ensure the fonts are known on the web-app side.\n\nYou will need add the font-family for each font you use to your css.\n\nYou can debug missing font-families by looking in the Developer console in your web browser when debugging your web app.\n\nNOTE: if you're using webpack or similar you *may* need to configure webpack to handle loading of ttf fonts, using url-loader or file-loader. See [Web Setup](#web-setup) for more details.\n\nIn your `App.css` or similar add the font-family specifications:\n\n```css\n@font-face {\n  src: url(path/to/fonts/Ionicons.ttf);\n  font-family: \"Ionicons\";\n}\n\n@font-face {\n  src: url(path/to/fonts/FontAwesome.ttf);\n  font-family: \"FontAwesome\";\n}\n\n@font-face {\n  src: url(path/to/fonts/FontAwesome5_Brands.ttf);\n  font-family: \"FontAwesome5_Brands\";\n  font-weight: 400; /* Regular weight */\n  font-style: normal;\n}\n\n@font-face {\n  src: url(path/to/fonts/FontAwesome5_Regular.ttf);\n  font-family: \"FontAwesome5_Regular\";\n  font-weight: 400; /* Regular weight */\n  font-style: normal;\n}\n\n@font-face {\n  src: url(path/to/fonts/FontAwesome5_Solid.ttf);\n  font-family: \"FontAwesome5_Solid\";\n  font-weight: 900; /* Bold weight for solid */\n  font-style: normal;\n}\n\n@font-face {\n  src: url(path/to/fonts/MaterialIcons.ttf);\n  font-family: \"MaterialIcons\";\n}\n\n@font-face {\n  src: url(path/to/fonts/Feather.ttf);\n  font-family: \"Feather\";\n}\n\n@font-face {\n  src: url(path/to/fonts/MaterialCommunityIcons.ttf);\n  font-family: \"MaterialCommunityIcons\";\n}\n\n/* TODO: Add other icons fonts here */\n```\n\n### Web Setup\n\nTo integrate the library with your web project using [webpack](https://webpack.js.org/), follow these steps:\n\n1.  In your webpack configuration file, add a section to handle TTF files using `url-loader` or `file-loader`:\n\n    ```js\n    {\n      test: /\\.ttf$/,\n      loader: \"url-loader\", // or directly file-loader\n      include: path.resolve(__dirname, \"node_modules/react-native-vector-icons\"),\n    }\n    ```\n\n2.  In your JavaScript entry point, consume the font files and inject the necessary style tag:\n\n    ```js\n    import Icon from '@react-native-vector-icons/fontAwesome';\n\n    // Generate the required CSS\n    import iconFont from '@react-native-vector-icons/fontawesome/fonts/FontAwesome.ttf';\n    const iconFontStyles = `@font-face {\n      src: url(${iconFont});\n      font-family: FontAwesome;\n    }`;\n\n    // Create a stylesheet\n    const style = document.createElement('style');\n    style.type = 'text/css';\n\n    // Append the iconFontStyles to the stylesheet\n    if (style.styleSheet) {\n      style.styleSheet.cssText = iconFontStyles;\n    } else {\n      style.appendChild(document.createTextNode(iconFontStyles));\n    }\n\n    // Inject the stylesheet into the document head\n    document.head.appendChild(style);\n    ```\n\n    By following these steps, you will seamlessly integrate the vector icons\n    library into your web project using [webpack](https://webpack.js.org/),\n    enabling you to effortlessly use the icons within your web application.\n"
  },
  {
    "path": "lefthook.yml",
    "content": "pre-commit:\n  parallel: true\n  commands:\n    eslint:\n      run: pnpm run lint:eslint\n    biome:\n      run: pnpm run lint:biome\n    # NOTE: Disabled because it is too slow\n    # types:\n    #   glob: \"*.{json,js,ts,tsx}\"\n    #   run: npm run lint:types\ncommit-msg:\n  parallel: true\n  commands:\n    commitlint:\n      run: npx commitlint --edit\n"
  },
  {
    "path": "nx.json",
    "content": "{\n  \"$schema\": \"./node_modules/nx/schemas/nx-schema.json\",\n  \"targetDefaults\": {\n    \"clean\": {\n      \"dependsOn\": [\n        \"^clean\"\n      ]\n    },\n    \"prepare\": {\n      \"dependsOn\": [\n        \"^prepare\"\n      ]\n    },\n    \"prepack\": {\n      \"dependsOn\": [\n        \"^prepack\"\n      ]\n    },\n    \"postpack\": {\n      \"dependsOn\": [\n        \"^postpack\"\n      ]\n    }\n  },\n  \"defaultBase\": \"master\",\n  \"release\": {\n    \"projects\": [\n      \"*\",\n      \"!@react-native-vector-icons/icon-explorer\",\n      \"!@react-native-vector-icons/fontcustom-docker\",\n      \"!@react-native-vector-icons/directory\"\n    ],\n    \"projectsRelationship\": \"independent\",\n    \"changelog\": {\n      \"projectChangelogs\": {\n        \"createRelease\": \"github\"\n      },\n      \"workspaceChangelog\": {\n        \"createRelease\": \"github\"\n      }\n    },\n    \"version\": {\n      \"conventionalCommits\": true,\n      \"NOTE\": \"We want auto but it's overzealous for our purposes, see https://github.com/nrwl/nx/discussions/29135\",\n      \"updateDependents\": \"never\"\n    }\n  }\n}\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"private\": true,\n  \"version\": \"0.0.1\",\n  \"scripts\": {\n    \"generate\": \"scripts/generate-fonts.sh\",\n    \"clean\": \"nx run-many -t clean\",\n    \"prepare\": \"nx run-many -t prepare\",\n    \"test\": \"nx run-many -t test\",\n    \"lint:eslint\": \"eslint .\",\n    \"lint:biome\": \"biome check .\",\n    \"lint:knip\": \"knip\",\n    \"lint:types\": \"bash -c 'for i in packages/*; do if [ -f $i/tsconfig.json ]; then tsc --noEmit -p $i/tsconfig.json; fi; done'\",\n    \"lint\": \"pnpm run '/^lint:.*/'\",\n    \"release\": \"nx release\"\n  },\n  \"devDependencies\": {\n    \"@biomejs/biome\": \"^2.3.0\",\n    \"@commitlint/config-conventional\": \"^20.0.0\",\n    \"@evilmartians/lefthook\": \"^2.0.1\",\n    \"@nx/js\": \"^22.5.2\",\n    \"@types/eslint\": \"^8.56.12\",\n    \"@types/node\": \"^20.19.23\",\n    \"@typescript-eslint/eslint-plugin\": \"^8.46.2\",\n    \"@typescript-eslint/parser\": \"^8.46.2\",\n    \"commitlint\": \"^20.1.0\",\n    \"eslint\": \"^8.57.1\",\n    \"eslint-config-biome\": \"^1.9.4\",\n    \"eslint-plugin-import\": \"^2.32.0\",\n    \"eslint-plugin-jsx-a11y\": \"^6.10.2\",\n    \"eslint-plugin-react\": \"^7.37.5\",\n    \"eslint-plugin-react-hooks\": \"^5.1.0\",\n    \"generator-react-native-vector-icons\": \"workspace:*\",\n    \"knip\": \"^5.66.2\",\n    \"nx\": \"^22.5.2\",\n    \"typescript\": \"^5.9.3\",\n    \"yo\": \"^5.1.0\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"commitlint\": {\n    \"extends\": [\n      \"@commitlint/config-conventional\"\n    ]\n  },\n  \"repository\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons\",\n    \"type\": \"git\"\n  },\n  \"packageManager\": \"pnpm@10.7.0+sha512.6b865ad4b62a1d9842b61d674a393903b871d9244954f652b8842c2b553c72176b278f64c463e52d40fff8aba385c235c8c9ecf5cc7de4fd78b8bb6d49633ab6\"\n}\n"
  },
  {
    "path": "packages/ant-design/.fontcustom-manifest.json",
    "content": "{\n  \"checksum\": {\n    \"previous\": \"3a17bffd6a624425af737b4664e295508c3c5b8c76ebe37f1f393aa65105d542\",\n    \"current\": \"3a17bffd6a624425af737b4664e295508c3c5b8c76ebe37f1f393aa65105d542\"\n  },\n  \"fonts\": [\n    \"AntDesign/AntDesign.ttf\",\n    \"AntDesign/AntDesign.svg\",\n    \"AntDesign/AntDesign.woff\",\n    \"AntDesign/AntDesign.eot\",\n    \"AntDesign/AntDesign.woff2\"\n  ],\n  \"glyphs\": {\n    \"account-book\": {\n      \"codepoint\": 62454,\n      \"source\": \"fixedSvg/account-book.svg\"\n    },\n    \"aim\": {\n      \"codepoint\": 62455,\n      \"source\": \"fixedSvg/aim.svg\"\n    },\n    \"alert\": {\n      \"codepoint\": 62456,\n      \"source\": \"fixedSvg/alert.svg\"\n    },\n    \"alibaba\": {\n      \"codepoint\": 62457,\n      \"source\": \"fixedSvg/alibaba.svg\"\n    },\n    \"align-center\": {\n      \"codepoint\": 62458,\n      \"source\": \"fixedSvg/align-center.svg\"\n    },\n    \"align-left\": {\n      \"codepoint\": 61701,\n      \"source\": \"fixedSvg/align-left.svg\"\n    },\n    \"align-right\": {\n      \"codepoint\": 61702,\n      \"source\": \"fixedSvg/align-right.svg\"\n    },\n    \"alipay\": {\n      \"codepoint\": 62459,\n      \"source\": \"fixedSvg/alipay.svg\"\n    },\n    \"alipay-circle\": {\n      \"codepoint\": 62460,\n      \"source\": \"fixedSvg/alipay-circle.svg\"\n    },\n    \"aliwangwang\": {\n      \"codepoint\": 62461,\n      \"source\": \"fixedSvg/aliwangwang.svg\"\n    },\n    \"aliyun\": {\n      \"codepoint\": 62462,\n      \"source\": \"fixedSvg/aliyun.svg\"\n    },\n    \"amazon\": {\n      \"codepoint\": 62463,\n      \"source\": \"fixedSvg/amazon.svg\"\n    },\n    \"android\": {\n      \"codepoint\": 62464,\n      \"source\": \"fixedSvg/android.svg\"\n    },\n    \"ant-cloud\": {\n      \"codepoint\": 62465,\n      \"source\": \"fixedSvg/ant-cloud.svg\"\n    },\n    \"ant-design\": {\n      \"codepoint\": 62466,\n      \"source\": \"fixedSvg/ant-design.svg\"\n    },\n    \"apartment\": {\n      \"codepoint\": 62467,\n      \"source\": \"fixedSvg/apartment.svg\"\n    },\n    \"api\": {\n      \"codepoint\": 62468,\n      \"source\": \"fixedSvg/api.svg\"\n    },\n    \"apple\": {\n      \"codepoint\": 62469,\n      \"source\": \"fixedSvg/apple.svg\"\n    },\n    \"appstore\": {\n      \"codepoint\": 62470,\n      \"source\": \"fixedSvg/appstore.svg\"\n    },\n    \"appstore-add\": {\n      \"codepoint\": 62471,\n      \"source\": \"fixedSvg/appstore-add.svg\"\n    },\n    \"area-chart\": {\n      \"codepoint\": 62472,\n      \"source\": \"fixedSvg/area-chart.svg\"\n    },\n    \"arrow-down\": {\n      \"codepoint\": 61717,\n      \"source\": \"fixedSvg/arrow-down.svg\"\n    },\n    \"arrow-left\": {\n      \"codepoint\": 61718,\n      \"source\": \"fixedSvg/arrow-left.svg\"\n    },\n    \"arrow-right\": {\n      \"codepoint\": 61719,\n      \"source\": \"fixedSvg/arrow-right.svg\"\n    },\n    \"arrow-up\": {\n      \"codepoint\": 61720,\n      \"source\": \"fixedSvg/arrow-up.svg\"\n    },\n    \"arrows-alt\": {\n      \"codepoint\": 62473,\n      \"source\": \"fixedSvg/arrows-alt.svg\"\n    },\n    \"audio\": {\n      \"codepoint\": 62474,\n      \"source\": \"fixedSvg/audio.svg\"\n    },\n    \"audio-muted\": {\n      \"codepoint\": 62475,\n      \"source\": \"fixedSvg/audio-muted.svg\"\n    },\n    \"audit\": {\n      \"codepoint\": 62476,\n      \"source\": \"fixedSvg/audit.svg\"\n    },\n    \"backward\": {\n      \"codepoint\": 62477,\n      \"source\": \"fixedSvg/backward.svg\"\n    },\n    \"baidu\": {\n      \"codepoint\": 62801,\n      \"source\": \"fixedSvg/baidu.svg\"\n    },\n    \"bank\": {\n      \"codepoint\": 62478,\n      \"source\": \"fixedSvg/bank.svg\"\n    },\n    \"bar-chart\": {\n      \"codepoint\": 62479,\n      \"source\": \"fixedSvg/bar-chart.svg\"\n    },\n    \"barcode\": {\n      \"codepoint\": 62480,\n      \"source\": \"fixedSvg/barcode.svg\"\n    },\n    \"bars\": {\n      \"codepoint\": 62481,\n      \"source\": \"fixedSvg/bars.svg\"\n    },\n    \"behance\": {\n      \"codepoint\": 61730,\n      \"source\": \"fixedSvg/behance.svg\"\n    },\n    \"behance-square\": {\n      \"codepoint\": 62482,\n      \"source\": \"fixedSvg/behance-square.svg\"\n    },\n    \"bell\": {\n      \"codepoint\": 61732,\n      \"source\": \"fixedSvg/bell.svg\"\n    },\n    \"bg-colors\": {\n      \"codepoint\": 62483,\n      \"source\": \"fixedSvg/bg-colors.svg\"\n    },\n    \"bilibili\": {\n      \"codepoint\": 62802,\n      \"source\": \"fixedSvg/bilibili.svg\"\n    },\n    \"block\": {\n      \"codepoint\": 61734,\n      \"source\": \"fixedSvg/block.svg\"\n    },\n    \"bold\": {\n      \"codepoint\": 62484,\n      \"source\": \"fixedSvg/bold.svg\"\n    },\n    \"book\": {\n      \"codepoint\": 61736,\n      \"source\": \"fixedSvg/book.svg\"\n    },\n    \"border\": {\n      \"codepoint\": 62485,\n      \"source\": \"fixedSvg/border.svg\"\n    },\n    \"border-bottom\": {\n      \"codepoint\": 62486,\n      \"source\": \"fixedSvg/border-bottom.svg\"\n    },\n    \"border-horizontal\": {\n      \"codepoint\": 62487,\n      \"source\": \"fixedSvg/border-horizontal.svg\"\n    },\n    \"border-inner\": {\n      \"codepoint\": 62488,\n      \"source\": \"fixedSvg/border-inner.svg\"\n    },\n    \"border-left\": {\n      \"codepoint\": 62489,\n      \"source\": \"fixedSvg/border-left.svg\"\n    },\n    \"border-outer\": {\n      \"codepoint\": 62490,\n      \"source\": \"fixedSvg/border-outer.svg\"\n    },\n    \"border-right\": {\n      \"codepoint\": 62491,\n      \"source\": \"fixedSvg/border-right.svg\"\n    },\n    \"border-top\": {\n      \"codepoint\": 62492,\n      \"source\": \"fixedSvg/border-top.svg\"\n    },\n    \"border-verticle\": {\n      \"codepoint\": 62493,\n      \"source\": \"fixedSvg/border-verticle.svg\"\n    },\n    \"borderless-table\": {\n      \"codepoint\": 62494,\n      \"source\": \"fixedSvg/borderless-table.svg\"\n    },\n    \"box-plot\": {\n      \"codepoint\": 62495,\n      \"source\": \"fixedSvg/box-plot.svg\"\n    },\n    \"branches\": {\n      \"codepoint\": 62496,\n      \"source\": \"fixedSvg/branches.svg\"\n    },\n    \"bug\": {\n      \"codepoint\": 61749,\n      \"source\": \"fixedSvg/bug.svg\"\n    },\n    \"build\": {\n      \"codepoint\": 62497,\n      \"source\": \"fixedSvg/build.svg\"\n    },\n    \"bulb\": {\n      \"codepoint\": 62498,\n      \"source\": \"fixedSvg/bulb.svg\"\n    },\n    \"calculator\": {\n      \"codepoint\": 61752,\n      \"source\": \"fixedSvg/calculator.svg\"\n    },\n    \"calendar\": {\n      \"codepoint\": 61753,\n      \"source\": \"fixedSvg/calendar.svg\"\n    },\n    \"camera\": {\n      \"codepoint\": 61754,\n      \"source\": \"fixedSvg/camera.svg\"\n    },\n    \"car\": {\n      \"codepoint\": 62499,\n      \"source\": \"fixedSvg/car.svg\"\n    },\n    \"caret-down\": {\n      \"codepoint\": 62500,\n      \"source\": \"fixedSvg/caret-down.svg\"\n    },\n    \"caret-left\": {\n      \"codepoint\": 62501,\n      \"source\": \"fixedSvg/caret-left.svg\"\n    },\n    \"caret-right\": {\n      \"codepoint\": 62502,\n      \"source\": \"fixedSvg/caret-right.svg\"\n    },\n    \"caret-up\": {\n      \"codepoint\": 62503,\n      \"source\": \"fixedSvg/caret-up.svg\"\n    },\n    \"carry-out\": {\n      \"codepoint\": 62504,\n      \"source\": \"fixedSvg/carry-out.svg\"\n    },\n    \"check\": {\n      \"codepoint\": 61761,\n      \"source\": \"fixedSvg/check.svg\"\n    },\n    \"check-circle\": {\n      \"codepoint\": 62505,\n      \"source\": \"fixedSvg/check-circle.svg\"\n    },\n    \"check-square\": {\n      \"codepoint\": 62506,\n      \"source\": \"fixedSvg/check-square.svg\"\n    },\n    \"chrome\": {\n      \"codepoint\": 62507,\n      \"source\": \"fixedSvg/chrome.svg\"\n    },\n    \"ci\": {\n      \"codepoint\": 62508,\n      \"source\": \"fixedSvg/ci.svg\"\n    },\n    \"ci-circle\": {\n      \"codepoint\": 62509,\n      \"source\": \"fixedSvg/ci-circle.svg\"\n    },\n    \"clear\": {\n      \"codepoint\": 62510,\n      \"source\": \"fixedSvg/clear.svg\"\n    },\n    \"clock-circle\": {\n      \"codepoint\": 62511,\n      \"source\": \"fixedSvg/clock-circle.svg\"\n    },\n    \"close\": {\n      \"codepoint\": 62512,\n      \"source\": \"fixedSvg/close.svg\"\n    },\n    \"close-circle\": {\n      \"codepoint\": 62513,\n      \"source\": \"fixedSvg/close-circle.svg\"\n    },\n    \"close-square\": {\n      \"codepoint\": 62514,\n      \"source\": \"fixedSvg/close-square.svg\"\n    },\n    \"cloud\": {\n      \"codepoint\": 61772,\n      \"source\": \"fixedSvg/cloud.svg\"\n    },\n    \"cloud-download\": {\n      \"codepoint\": 62515,\n      \"source\": \"fixedSvg/cloud-download.svg\"\n    },\n    \"cloud-server\": {\n      \"codepoint\": 62516,\n      \"source\": \"fixedSvg/cloud-server.svg\"\n    },\n    \"cloud-sync\": {\n      \"codepoint\": 62517,\n      \"source\": \"fixedSvg/cloud-sync.svg\"\n    },\n    \"cloud-upload\": {\n      \"codepoint\": 62518,\n      \"source\": \"fixedSvg/cloud-upload.svg\"\n    },\n    \"cluster\": {\n      \"codepoint\": 62519,\n      \"source\": \"fixedSvg/cluster.svg\"\n    },\n    \"code\": {\n      \"codepoint\": 61778,\n      \"source\": \"fixedSvg/code.svg\"\n    },\n    \"code-sandbox\": {\n      \"codepoint\": 62520,\n      \"source\": \"fixedSvg/code-sandbox.svg\"\n    },\n    \"codepen\": {\n      \"codepoint\": 62521,\n      \"source\": \"fixedSvg/codepen.svg\"\n    },\n    \"codepen-circle\": {\n      \"codepoint\": 62522,\n      \"source\": \"fixedSvg/codepen-circle.svg\"\n    },\n    \"coffee\": {\n      \"codepoint\": 62523,\n      \"source\": \"fixedSvg/coffee.svg\"\n    },\n    \"column-height\": {\n      \"codepoint\": 62524,\n      \"source\": \"fixedSvg/column-height.svg\"\n    },\n    \"column-width\": {\n      \"codepoint\": 62525,\n      \"source\": \"fixedSvg/column-width.svg\"\n    },\n    \"comment\": {\n      \"codepoint\": 62526,\n      \"source\": \"fixedSvg/comment.svg\"\n    },\n    \"compass\": {\n      \"codepoint\": 61786,\n      \"source\": \"fixedSvg/compass.svg\"\n    },\n    \"compress\": {\n      \"codepoint\": 62527,\n      \"source\": \"fixedSvg/compress.svg\"\n    },\n    \"console-sql\": {\n      \"codepoint\": 62528,\n      \"source\": \"fixedSvg/console-sql.svg\"\n    },\n    \"contacts\": {\n      \"codepoint\": 62529,\n      \"source\": \"fixedSvg/contacts.svg\"\n    },\n    \"container\": {\n      \"codepoint\": 62530,\n      \"source\": \"fixedSvg/container.svg\"\n    },\n    \"control\": {\n      \"codepoint\": 62531,\n      \"source\": \"fixedSvg/control.svg\"\n    },\n    \"copy\": {\n      \"codepoint\": 61792,\n      \"source\": \"fixedSvg/copy.svg\"\n    },\n    \"copyright\": {\n      \"codepoint\": 62532,\n      \"source\": \"fixedSvg/copyright.svg\"\n    },\n    \"copyright-circle\": {\n      \"codepoint\": 62533,\n      \"source\": \"fixedSvg/copyright-circle.svg\"\n    },\n    \"credit-card\": {\n      \"codepoint\": 61795,\n      \"source\": \"fixedSvg/credit-card.svg\"\n    },\n    \"crown\": {\n      \"codepoint\": 62534,\n      \"source\": \"fixedSvg/crown.svg\"\n    },\n    \"customer-service\": {\n      \"codepoint\": 62535,\n      \"source\": \"fixedSvg/customer-service.svg\"\n    },\n    \"dash\": {\n      \"codepoint\": 62536,\n      \"source\": \"fixedSvg/dash.svg\"\n    },\n    \"dashboard\": {\n      \"codepoint\": 62537,\n      \"source\": \"fixedSvg/dashboard.svg\"\n    },\n    \"database\": {\n      \"codepoint\": 61800,\n      \"source\": \"fixedSvg/database.svg\"\n    },\n    \"delete\": {\n      \"codepoint\": 62538,\n      \"source\": \"fixedSvg/delete.svg\"\n    },\n    \"delete-column\": {\n      \"codepoint\": 62539,\n      \"source\": \"fixedSvg/delete-column.svg\"\n    },\n    \"delete-row\": {\n      \"codepoint\": 62540,\n      \"source\": \"fixedSvg/delete-row.svg\"\n    },\n    \"delivered-procedure\": {\n      \"codepoint\": 62541,\n      \"source\": \"fixedSvg/delivered-procedure.svg\"\n    },\n    \"deployment-unit\": {\n      \"codepoint\": 62542,\n      \"source\": \"fixedSvg/deployment-unit.svg\"\n    },\n    \"desktop\": {\n      \"codepoint\": 62543,\n      \"source\": \"fixedSvg/desktop.svg\"\n    },\n    \"diff\": {\n      \"codepoint\": 62544,\n      \"source\": \"fixedSvg/diff.svg\"\n    },\n    \"dingding\": {\n      \"codepoint\": 62545,\n      \"source\": \"fixedSvg/dingding.svg\"\n    },\n    \"dingtalk\": {\n      \"codepoint\": 62546,\n      \"source\": \"fixedSvg/dingtalk.svg\"\n    },\n    \"disconnect\": {\n      \"codepoint\": 62547,\n      \"source\": \"fixedSvg/disconnect.svg\"\n    },\n    \"discord\": {\n      \"codepoint\": 62803,\n      \"source\": \"fixedSvg/discord.svg\"\n    },\n    \"dislike\": {\n      \"codepoint\": 62548,\n      \"source\": \"fixedSvg/dislike.svg\"\n    },\n    \"docker\": {\n      \"codepoint\": 62804,\n      \"source\": \"fixedSvg/docker.svg\"\n    },\n    \"dollar\": {\n      \"codepoint\": 62549,\n      \"source\": \"fixedSvg/dollar.svg\"\n    },\n    \"dollar-circle\": {\n      \"codepoint\": 62550,\n      \"source\": \"fixedSvg/dollar-circle.svg\"\n    },\n    \"dot-chart\": {\n      \"codepoint\": 62551,\n      \"source\": \"fixedSvg/dot-chart.svg\"\n    },\n    \"dot-net\": {\n      \"codepoint\": 62805,\n      \"source\": \"fixedSvg/dot-net.svg\"\n    },\n    \"double-left\": {\n      \"codepoint\": 62552,\n      \"source\": \"fixedSvg/double-left.svg\"\n    },\n    \"double-right\": {\n      \"codepoint\": 62553,\n      \"source\": \"fixedSvg/double-right.svg\"\n    },\n    \"down\": {\n      \"codepoint\": 62554,\n      \"source\": \"fixedSvg/down.svg\"\n    },\n    \"down-circle\": {\n      \"codepoint\": 62555,\n      \"source\": \"fixedSvg/down-circle.svg\"\n    },\n    \"down-square\": {\n      \"codepoint\": 62556,\n      \"source\": \"fixedSvg/down-square.svg\"\n    },\n    \"download\": {\n      \"codepoint\": 61820,\n      \"source\": \"fixedSvg/download.svg\"\n    },\n    \"drag\": {\n      \"codepoint\": 62557,\n      \"source\": \"fixedSvg/drag.svg\"\n    },\n    \"dribbble\": {\n      \"codepoint\": 61822,\n      \"source\": \"fixedSvg/dribbble.svg\"\n    },\n    \"dribbble-square\": {\n      \"codepoint\": 62558,\n      \"source\": \"fixedSvg/dribbble-square.svg\"\n    },\n    \"dropbox\": {\n      \"codepoint\": 61824,\n      \"source\": \"fixedSvg/dropbox.svg\"\n    },\n    \"edit\": {\n      \"codepoint\": 61825,\n      \"source\": \"fixedSvg/edit.svg\"\n    },\n    \"ellipsis\": {\n      \"codepoint\": 62559,\n      \"source\": \"fixedSvg/ellipsis.svg\"\n    },\n    \"enter\": {\n      \"codepoint\": 62560,\n      \"source\": \"fixedSvg/enter.svg\"\n    },\n    \"environment\": {\n      \"codepoint\": 62561,\n      \"source\": \"fixedSvg/environment.svg\"\n    },\n    \"euro\": {\n      \"codepoint\": 62562,\n      \"source\": \"fixedSvg/euro.svg\"\n    },\n    \"euro-circle\": {\n      \"codepoint\": 62563,\n      \"source\": \"fixedSvg/euro-circle.svg\"\n    },\n    \"exception\": {\n      \"codepoint\": 62564,\n      \"source\": \"fixedSvg/exception.svg\"\n    },\n    \"exclamation\": {\n      \"codepoint\": 62565,\n      \"source\": \"fixedSvg/exclamation.svg\"\n    },\n    \"exclamation-circle\": {\n      \"codepoint\": 62566,\n      \"source\": \"fixedSvg/exclamation-circle.svg\"\n    },\n    \"expand\": {\n      \"codepoint\": 62567,\n      \"source\": \"fixedSvg/expand.svg\"\n    },\n    \"expand-alt\": {\n      \"codepoint\": 62568,\n      \"source\": \"fixedSvg/expand-alt.svg\"\n    },\n    \"experiment\": {\n      \"codepoint\": 62569,\n      \"source\": \"fixedSvg/experiment.svg\"\n    },\n    \"export\": {\n      \"codepoint\": 61837,\n      \"source\": \"fixedSvg/export.svg\"\n    },\n    \"eye\": {\n      \"codepoint\": 61838,\n      \"source\": \"fixedSvg/eye.svg\"\n    },\n    \"eye-invisible\": {\n      \"codepoint\": 62570,\n      \"source\": \"fixedSvg/eye-invisible.svg\"\n    },\n    \"facebook\": {\n      \"codepoint\": 61840,\n      \"source\": \"fixedSvg/facebook.svg\"\n    },\n    \"fall\": {\n      \"codepoint\": 62571,\n      \"source\": \"fixedSvg/fall.svg\"\n    },\n    \"fast-backward\": {\n      \"codepoint\": 62572,\n      \"source\": \"fixedSvg/fast-backward.svg\"\n    },\n    \"fast-forward\": {\n      \"codepoint\": 62573,\n      \"source\": \"fixedSvg/fast-forward.svg\"\n    },\n    \"field-binary\": {\n      \"codepoint\": 62574,\n      \"source\": \"fixedSvg/field-binary.svg\"\n    },\n    \"field-number\": {\n      \"codepoint\": 62575,\n      \"source\": \"fixedSvg/field-number.svg\"\n    },\n    \"field-string\": {\n      \"codepoint\": 62576,\n      \"source\": \"fixedSvg/field-string.svg\"\n    },\n    \"field-time\": {\n      \"codepoint\": 62577,\n      \"source\": \"fixedSvg/field-time.svg\"\n    },\n    \"file\": {\n      \"codepoint\": 62578,\n      \"source\": \"fixedSvg/file.svg\"\n    },\n    \"file-add\": {\n      \"codepoint\": 62579,\n      \"source\": \"fixedSvg/file-add.svg\"\n    },\n    \"file-done\": {\n      \"codepoint\": 62580,\n      \"source\": \"fixedSvg/file-done.svg\"\n    },\n    \"file-excel\": {\n      \"codepoint\": 62581,\n      \"source\": \"fixedSvg/file-excel.svg\"\n    },\n    \"file-exclamation\": {\n      \"codepoint\": 62582,\n      \"source\": \"fixedSvg/file-exclamation.svg\"\n    },\n    \"file-gif\": {\n      \"codepoint\": 62583,\n      \"source\": \"fixedSvg/file-gif.svg\"\n    },\n    \"file-image\": {\n      \"codepoint\": 62584,\n      \"source\": \"fixedSvg/file-image.svg\"\n    },\n    \"file-jpg\": {\n      \"codepoint\": 62585,\n      \"source\": \"fixedSvg/file-jpg.svg\"\n    },\n    \"file-markdown\": {\n      \"codepoint\": 62586,\n      \"source\": \"fixedSvg/file-markdown.svg\"\n    },\n    \"file-pdf\": {\n      \"codepoint\": 62587,\n      \"source\": \"fixedSvg/file-pdf.svg\"\n    },\n    \"file-ppt\": {\n      \"codepoint\": 62588,\n      \"source\": \"fixedSvg/file-ppt.svg\"\n    },\n    \"file-protect\": {\n      \"codepoint\": 62589,\n      \"source\": \"fixedSvg/file-protect.svg\"\n    },\n    \"file-search\": {\n      \"codepoint\": 62590,\n      \"source\": \"fixedSvg/file-search.svg\"\n    },\n    \"file-sync\": {\n      \"codepoint\": 62591,\n      \"source\": \"fixedSvg/file-sync.svg\"\n    },\n    \"file-text\": {\n      \"codepoint\": 62592,\n      \"source\": \"fixedSvg/file-text.svg\"\n    },\n    \"file-unknown\": {\n      \"codepoint\": 62593,\n      \"source\": \"fixedSvg/file-unknown.svg\"\n    },\n    \"file-word\": {\n      \"codepoint\": 62594,\n      \"source\": \"fixedSvg/file-word.svg\"\n    },\n    \"file-zip\": {\n      \"codepoint\": 62595,\n      \"source\": \"fixedSvg/file-zip.svg\"\n    },\n    \"filter\": {\n      \"codepoint\": 62596,\n      \"source\": \"fixedSvg/filter.svg\"\n    },\n    \"fire\": {\n      \"codepoint\": 62597,\n      \"source\": \"fixedSvg/fire.svg\"\n    },\n    \"flag\": {\n      \"codepoint\": 61868,\n      \"source\": \"fixedSvg/flag.svg\"\n    },\n    \"folder\": {\n      \"codepoint\": 61869,\n      \"source\": \"fixedSvg/folder.svg\"\n    },\n    \"folder-add\": {\n      \"codepoint\": 62598,\n      \"source\": \"fixedSvg/folder-add.svg\"\n    },\n    \"folder-open\": {\n      \"codepoint\": 62599,\n      \"source\": \"fixedSvg/folder-open.svg\"\n    },\n    \"folder-view\": {\n      \"codepoint\": 62600,\n      \"source\": \"fixedSvg/folder-view.svg\"\n    },\n    \"font-colors\": {\n      \"codepoint\": 62601,\n      \"source\": \"fixedSvg/font-colors.svg\"\n    },\n    \"font-size\": {\n      \"codepoint\": 62602,\n      \"source\": \"fixedSvg/font-size.svg\"\n    },\n    \"fork\": {\n      \"codepoint\": 62603,\n      \"source\": \"fixedSvg/fork.svg\"\n    },\n    \"form\": {\n      \"codepoint\": 62604,\n      \"source\": \"fixedSvg/form.svg\"\n    },\n    \"format-painter\": {\n      \"codepoint\": 62605,\n      \"source\": \"fixedSvg/format-painter.svg\"\n    },\n    \"forward\": {\n      \"codepoint\": 61878,\n      \"source\": \"fixedSvg/forward.svg\"\n    },\n    \"frown\": {\n      \"codepoint\": 62606,\n      \"source\": \"fixedSvg/frown.svg\"\n    },\n    \"fullscreen\": {\n      \"codepoint\": 62607,\n      \"source\": \"fixedSvg/fullscreen.svg\"\n    },\n    \"fullscreen-exit\": {\n      \"codepoint\": 62608,\n      \"source\": \"fixedSvg/fullscreen-exit.svg\"\n    },\n    \"function\": {\n      \"codepoint\": 62609,\n      \"source\": \"fixedSvg/function.svg\"\n    },\n    \"fund\": {\n      \"codepoint\": 62610,\n      \"source\": \"fixedSvg/fund.svg\"\n    },\n    \"fund-projection-screen\": {\n      \"codepoint\": 62611,\n      \"source\": \"fixedSvg/fund-projection-screen.svg\"\n    },\n    \"fund-view\": {\n      \"codepoint\": 62612,\n      \"source\": \"fixedSvg/fund-view.svg\"\n    },\n    \"funnel-plot\": {\n      \"codepoint\": 62613,\n      \"source\": \"fixedSvg/funnel-plot.svg\"\n    },\n    \"gateway\": {\n      \"codepoint\": 62614,\n      \"source\": \"fixedSvg/gateway.svg\"\n    },\n    \"gif\": {\n      \"codepoint\": 62615,\n      \"source\": \"fixedSvg/gif.svg\"\n    },\n    \"gift\": {\n      \"codepoint\": 62616,\n      \"source\": \"fixedSvg/gift.svg\"\n    },\n    \"github\": {\n      \"codepoint\": 61890,\n      \"source\": \"fixedSvg/github.svg\"\n    },\n    \"gitlab\": {\n      \"codepoint\": 62617,\n      \"source\": \"fixedSvg/gitlab.svg\"\n    },\n    \"global\": {\n      \"codepoint\": 62618,\n      \"source\": \"fixedSvg/global.svg\"\n    },\n    \"gold\": {\n      \"codepoint\": 62619,\n      \"source\": \"fixedSvg/gold.svg\"\n    },\n    \"google\": {\n      \"codepoint\": 62620,\n      \"source\": \"fixedSvg/google.svg\"\n    },\n    \"google-plus\": {\n      \"codepoint\": 62621,\n      \"source\": \"fixedSvg/google-plus.svg\"\n    },\n    \"group\": {\n      \"codepoint\": 62622,\n      \"source\": \"fixedSvg/group.svg\"\n    },\n    \"harmony-o-s\": {\n      \"codepoint\": 62806,\n      \"source\": \"fixedSvg/harmony-o-s.svg\"\n    },\n    \"harmony-os\": {\n      \"codepoint\": 62807,\n      \"source\": \"fixedSvg/harmony-os.svg\"\n    },\n    \"hdd\": {\n      \"codepoint\": 62623,\n      \"source\": \"fixedSvg/hdd.svg\"\n    },\n    \"heart\": {\n      \"codepoint\": 61898,\n      \"source\": \"fixedSvg/heart.svg\"\n    },\n    \"heat-map\": {\n      \"codepoint\": 62624,\n      \"source\": \"fixedSvg/heat-map.svg\"\n    },\n    \"highlight\": {\n      \"codepoint\": 62625,\n      \"source\": \"fixedSvg/highlight.svg\"\n    },\n    \"history\": {\n      \"codepoint\": 62626,\n      \"source\": \"fixedSvg/history.svg\"\n    },\n    \"holder\": {\n      \"codepoint\": 62627,\n      \"source\": \"fixedSvg/holder.svg\"\n    },\n    \"home\": {\n      \"codepoint\": 61903,\n      \"source\": \"fixedSvg/home.svg\"\n    },\n    \"hourglass\": {\n      \"codepoint\": 62628,\n      \"source\": \"fixedSvg/hourglass.svg\"\n    },\n    \"html5\": {\n      \"codepoint\": 62629,\n      \"source\": \"fixedSvg/html5.svg\"\n    },\n    \"idcard\": {\n      \"codepoint\": 62630,\n      \"source\": \"fixedSvg/idcard.svg\"\n    },\n    \"ie\": {\n      \"codepoint\": 62631,\n      \"source\": \"fixedSvg/ie.svg\"\n    },\n    \"import\": {\n      \"codepoint\": 62632,\n      \"source\": \"fixedSvg/import.svg\"\n    },\n    \"inbox\": {\n      \"codepoint\": 61909,\n      \"source\": \"fixedSvg/inbox.svg\"\n    },\n    \"info\": {\n      \"codepoint\": 61910,\n      \"source\": \"fixedSvg/info.svg\"\n    },\n    \"info-circle\": {\n      \"codepoint\": 62633,\n      \"source\": \"fixedSvg/info-circle.svg\"\n    },\n    \"insert-row-above\": {\n      \"codepoint\": 62634,\n      \"source\": \"fixedSvg/insert-row-above.svg\"\n    },\n    \"insert-row-below\": {\n      \"codepoint\": 62635,\n      \"source\": \"fixedSvg/insert-row-below.svg\"\n    },\n    \"insert-row-left\": {\n      \"codepoint\": 62636,\n      \"source\": \"fixedSvg/insert-row-left.svg\"\n    },\n    \"insert-row-right\": {\n      \"codepoint\": 62637,\n      \"source\": \"fixedSvg/insert-row-right.svg\"\n    },\n    \"instagram\": {\n      \"codepoint\": 61916,\n      \"source\": \"fixedSvg/instagram.svg\"\n    },\n    \"insurance\": {\n      \"codepoint\": 62638,\n      \"source\": \"fixedSvg/insurance.svg\"\n    },\n    \"interaction\": {\n      \"codepoint\": 62639,\n      \"source\": \"fixedSvg/interaction.svg\"\n    },\n    \"issues-close\": {\n      \"codepoint\": 62640,\n      \"source\": \"fixedSvg/issues-close.svg\"\n    },\n    \"italic\": {\n      \"codepoint\": 62641,\n      \"source\": \"fixedSvg/italic.svg\"\n    },\n    \"java\": {\n      \"codepoint\": 62808,\n      \"source\": \"fixedSvg/java.svg\"\n    },\n    \"java-script\": {\n      \"codepoint\": 62809,\n      \"source\": \"fixedSvg/java-script.svg\"\n    },\n    \"key\": {\n      \"codepoint\": 61921,\n      \"source\": \"fixedSvg/key.svg\"\n    },\n    \"kubernetes\": {\n      \"codepoint\": 62810,\n      \"source\": \"fixedSvg/kubernetes.svg\"\n    },\n    \"laptop\": {\n      \"codepoint\": 61922,\n      \"source\": \"fixedSvg/laptop.svg\"\n    },\n    \"layout\": {\n      \"codepoint\": 62642,\n      \"source\": \"fixedSvg/layout.svg\"\n    },\n    \"left\": {\n      \"codepoint\": 62643,\n      \"source\": \"fixedSvg/left.svg\"\n    },\n    \"left-circle\": {\n      \"codepoint\": 62644,\n      \"source\": \"fixedSvg/left-circle.svg\"\n    },\n    \"left-square\": {\n      \"codepoint\": 62645,\n      \"source\": \"fixedSvg/left-square.svg\"\n    },\n    \"like\": {\n      \"codepoint\": 62646,\n      \"source\": \"fixedSvg/like.svg\"\n    },\n    \"line\": {\n      \"codepoint\": 62647,\n      \"source\": \"fixedSvg/line.svg\"\n    },\n    \"line-chart\": {\n      \"codepoint\": 62648,\n      \"source\": \"fixedSvg/line-chart.svg\"\n    },\n    \"line-height\": {\n      \"codepoint\": 62649,\n      \"source\": \"fixedSvg/line-height.svg\"\n    },\n    \"link\": {\n      \"codepoint\": 61931,\n      \"source\": \"fixedSvg/link.svg\"\n    },\n    \"linkedin\": {\n      \"codepoint\": 61932,\n      \"source\": \"fixedSvg/linkedin.svg\"\n    },\n    \"linux\": {\n      \"codepoint\": 62811,\n      \"source\": \"fixedSvg/linux.svg\"\n    },\n    \"loading\": {\n      \"codepoint\": 62650,\n      \"source\": \"fixedSvg/loading.svg\"\n    },\n    \"loading-3-quarters\": {\n      \"codepoint\": 62651,\n      \"source\": \"fixedSvg/loading-3-quarters.svg\"\n    },\n    \"lock\": {\n      \"codepoint\": 61935,\n      \"source\": \"fixedSvg/lock.svg\"\n    },\n    \"login\": {\n      \"codepoint\": 61936,\n      \"source\": \"fixedSvg/login.svg\"\n    },\n    \"logout\": {\n      \"codepoint\": 62652,\n      \"source\": \"fixedSvg/logout.svg\"\n    },\n    \"mac-command\": {\n      \"codepoint\": 62653,\n      \"source\": \"fixedSvg/mac-command.svg\"\n    },\n    \"mail\": {\n      \"codepoint\": 61939,\n      \"source\": \"fixedSvg/mail.svg\"\n    },\n    \"man\": {\n      \"codepoint\": 61940,\n      \"source\": \"fixedSvg/man.svg\"\n    },\n    \"medicine-box\": {\n      \"codepoint\": 62654,\n      \"source\": \"fixedSvg/medicine-box.svg\"\n    },\n    \"medium\": {\n      \"codepoint\": 61942,\n      \"source\": \"fixedSvg/medium.svg\"\n    },\n    \"medium-workmark\": {\n      \"codepoint\": 62655,\n      \"source\": \"fixedSvg/medium-workmark.svg\"\n    },\n    \"meh\": {\n      \"codepoint\": 62656,\n      \"source\": \"fixedSvg/meh.svg\"\n    },\n    \"menu\": {\n      \"codepoint\": 61945,\n      \"source\": \"fixedSvg/menu.svg\"\n    },\n    \"menu-fold\": {\n      \"codepoint\": 62657,\n      \"source\": \"fixedSvg/menu-fold.svg\"\n    },\n    \"menu-unfold\": {\n      \"codepoint\": 62658,\n      \"source\": \"fixedSvg/menu-unfold.svg\"\n    },\n    \"merge\": {\n      \"codepoint\": 62812,\n      \"source\": \"fixedSvg/merge.svg\"\n    },\n    \"merge-cells\": {\n      \"codepoint\": 62659,\n      \"source\": \"fixedSvg/merge-cells.svg\"\n    },\n    \"message\": {\n      \"codepoint\": 61949,\n      \"source\": \"fixedSvg/message.svg\"\n    },\n    \"minus\": {\n      \"codepoint\": 61950,\n      \"source\": \"fixedSvg/minus.svg\"\n    },\n    \"minus-circle\": {\n      \"codepoint\": 62660,\n      \"source\": \"fixedSvg/minus-circle.svg\"\n    },\n    \"minus-square\": {\n      \"codepoint\": 62661,\n      \"source\": \"fixedSvg/minus-square.svg\"\n    },\n    \"mobile\": {\n      \"codepoint\": 61953,\n      \"source\": \"fixedSvg/mobile.svg\"\n    },\n    \"money-collect\": {\n      \"codepoint\": 62662,\n      \"source\": \"fixedSvg/money-collect.svg\"\n    },\n    \"monitor\": {\n      \"codepoint\": 62663,\n      \"source\": \"fixedSvg/monitor.svg\"\n    },\n    \"moon\": {\n      \"codepoint\": 62813,\n      \"source\": \"fixedSvg/moon.svg\"\n    },\n    \"more\": {\n      \"codepoint\": 62664,\n      \"source\": \"fixedSvg/more.svg\"\n    },\n    \"muted\": {\n      \"codepoint\": 62814,\n      \"source\": \"fixedSvg/muted.svg\"\n    },\n    \"node-collapse\": {\n      \"codepoint\": 62665,\n      \"source\": \"fixedSvg/node-collapse.svg\"\n    },\n    \"node-expand\": {\n      \"codepoint\": 62666,\n      \"source\": \"fixedSvg/node-expand.svg\"\n    },\n    \"node-index\": {\n      \"codepoint\": 62667,\n      \"source\": \"fixedSvg/node-index.svg\"\n    },\n    \"notification\": {\n      \"codepoint\": 61960,\n      \"source\": \"fixedSvg/notification.svg\"\n    },\n    \"number\": {\n      \"codepoint\": 62668,\n      \"source\": \"fixedSvg/number.svg\"\n    },\n    \"one-to-one\": {\n      \"codepoint\": 62669,\n      \"source\": \"fixedSvg/one-to-one.svg\"\n    },\n    \"open-a-i\": {\n      \"codepoint\": 62815,\n      \"source\": \"fixedSvg/open-a-i.svg\"\n    },\n    \"open-ai\": {\n      \"codepoint\": 62816,\n      \"source\": \"fixedSvg/open-ai.svg\"\n    },\n    \"ordered-list\": {\n      \"codepoint\": 62670,\n      \"source\": \"fixedSvg/ordered-list.svg\"\n    },\n    \"paper-clip\": {\n      \"codepoint\": 62671,\n      \"source\": \"fixedSvg/paper-clip.svg\"\n    },\n    \"partition\": {\n      \"codepoint\": 62672,\n      \"source\": \"fixedSvg/partition.svg\"\n    },\n    \"pause\": {\n      \"codepoint\": 62673,\n      \"source\": \"fixedSvg/pause.svg\"\n    },\n    \"pause-circle\": {\n      \"codepoint\": 62674,\n      \"source\": \"fixedSvg/pause-circle.svg\"\n    },\n    \"pay-circle\": {\n      \"codepoint\": 62675,\n      \"source\": \"fixedSvg/pay-circle.svg\"\n    },\n    \"percentage\": {\n      \"codepoint\": 62676,\n      \"source\": \"fixedSvg/percentage.svg\"\n    },\n    \"phone\": {\n      \"codepoint\": 61970,\n      \"source\": \"fixedSvg/phone.svg\"\n    },\n    \"pic-center\": {\n      \"codepoint\": 62677,\n      \"source\": \"fixedSvg/pic-center.svg\"\n    },\n    \"pic-left\": {\n      \"codepoint\": 62678,\n      \"source\": \"fixedSvg/pic-left.svg\"\n    },\n    \"pic-right\": {\n      \"codepoint\": 62679,\n      \"source\": \"fixedSvg/pic-right.svg\"\n    },\n    \"picture\": {\n      \"codepoint\": 62680,\n      \"source\": \"fixedSvg/picture.svg\"\n    },\n    \"pie-chart\": {\n      \"codepoint\": 61975,\n      \"source\": \"fixedSvg/pie-chart.svg\"\n    },\n    \"pinterest\": {\n      \"codepoint\": 62817,\n      \"source\": \"fixedSvg/pinterest.svg\"\n    },\n    \"play-circle\": {\n      \"codepoint\": 62681,\n      \"source\": \"fixedSvg/play-circle.svg\"\n    },\n    \"play-square\": {\n      \"codepoint\": 62682,\n      \"source\": \"fixedSvg/play-square.svg\"\n    },\n    \"plus\": {\n      \"codepoint\": 61978,\n      \"source\": \"fixedSvg/plus.svg\"\n    },\n    \"plus-circle\": {\n      \"codepoint\": 62683,\n      \"source\": \"fixedSvg/plus-circle.svg\"\n    },\n    \"plus-square\": {\n      \"codepoint\": 62684,\n      \"source\": \"fixedSvg/plus-square.svg\"\n    },\n    \"pound\": {\n      \"codepoint\": 62685,\n      \"source\": \"fixedSvg/pound.svg\"\n    },\n    \"pound-circle\": {\n      \"codepoint\": 62686,\n      \"source\": \"fixedSvg/pound-circle.svg\"\n    },\n    \"poweroff\": {\n      \"codepoint\": 62687,\n      \"source\": \"fixedSvg/poweroff.svg\"\n    },\n    \"printer\": {\n      \"codepoint\": 62688,\n      \"source\": \"fixedSvg/printer.svg\"\n    },\n    \"product\": {\n      \"codepoint\": 62818,\n      \"source\": \"fixedSvg/product.svg\"\n    },\n    \"profile\": {\n      \"codepoint\": 62689,\n      \"source\": \"fixedSvg/profile.svg\"\n    },\n    \"project\": {\n      \"codepoint\": 62690,\n      \"source\": \"fixedSvg/project.svg\"\n    },\n    \"property-safety\": {\n      \"codepoint\": 62691,\n      \"source\": \"fixedSvg/property-safety.svg\"\n    },\n    \"pull-request\": {\n      \"codepoint\": 62692,\n      \"source\": \"fixedSvg/pull-request.svg\"\n    },\n    \"pushpin\": {\n      \"codepoint\": 62693,\n      \"source\": \"fixedSvg/pushpin.svg\"\n    },\n    \"python\": {\n      \"codepoint\": 62819,\n      \"source\": \"fixedSvg/python.svg\"\n    },\n    \"qq\": {\n      \"codepoint\": 61990,\n      \"source\": \"fixedSvg/qq.svg\"\n    },\n    \"qrcode\": {\n      \"codepoint\": 62694,\n      \"source\": \"fixedSvg/qrcode.svg\"\n    },\n    \"question\": {\n      \"codepoint\": 62695,\n      \"source\": \"fixedSvg/question.svg\"\n    },\n    \"question-circle\": {\n      \"codepoint\": 62696,\n      \"source\": \"fixedSvg/question-circle.svg\"\n    },\n    \"radar-chart\": {\n      \"codepoint\": 62697,\n      \"source\": \"fixedSvg/radar-chart.svg\"\n    },\n    \"radius-bottomleft\": {\n      \"codepoint\": 62698,\n      \"source\": \"fixedSvg/radius-bottomleft.svg\"\n    },\n    \"radius-bottomright\": {\n      \"codepoint\": 62699,\n      \"source\": \"fixedSvg/radius-bottomright.svg\"\n    },\n    \"radius-setting\": {\n      \"codepoint\": 62700,\n      \"source\": \"fixedSvg/radius-setting.svg\"\n    },\n    \"radius-upleft\": {\n      \"codepoint\": 62701,\n      \"source\": \"fixedSvg/radius-upleft.svg\"\n    },\n    \"radius-upright\": {\n      \"codepoint\": 62702,\n      \"source\": \"fixedSvg/radius-upright.svg\"\n    },\n    \"read\": {\n      \"codepoint\": 62703,\n      \"source\": \"fixedSvg/read.svg\"\n    },\n    \"reconciliation\": {\n      \"codepoint\": 62704,\n      \"source\": \"fixedSvg/reconciliation.svg\"\n    },\n    \"red-envelope\": {\n      \"codepoint\": 62705,\n      \"source\": \"fixedSvg/red-envelope.svg\"\n    },\n    \"reddit\": {\n      \"codepoint\": 62706,\n      \"source\": \"fixedSvg/reddit.svg\"\n    },\n    \"redo\": {\n      \"codepoint\": 62707,\n      \"source\": \"fixedSvg/redo.svg\"\n    },\n    \"reload\": {\n      \"codepoint\": 62708,\n      \"source\": \"fixedSvg/reload.svg\"\n    },\n    \"rest\": {\n      \"codepoint\": 62709,\n      \"source\": \"fixedSvg/rest.svg\"\n    },\n    \"retweet\": {\n      \"codepoint\": 62007,\n      \"source\": \"fixedSvg/retweet.svg\"\n    },\n    \"right\": {\n      \"codepoint\": 62710,\n      \"source\": \"fixedSvg/right.svg\"\n    },\n    \"right-circle\": {\n      \"codepoint\": 62711,\n      \"source\": \"fixedSvg/right-circle.svg\"\n    },\n    \"right-square\": {\n      \"codepoint\": 62712,\n      \"source\": \"fixedSvg/right-square.svg\"\n    },\n    \"rise\": {\n      \"codepoint\": 62713,\n      \"source\": \"fixedSvg/rise.svg\"\n    },\n    \"robot\": {\n      \"codepoint\": 62714,\n      \"source\": \"fixedSvg/robot.svg\"\n    },\n    \"rocket\": {\n      \"codepoint\": 62013,\n      \"source\": \"fixedSvg/rocket.svg\"\n    },\n    \"rollback\": {\n      \"codepoint\": 62715,\n      \"source\": \"fixedSvg/rollback.svg\"\n    },\n    \"rotate-left\": {\n      \"codepoint\": 62716,\n      \"source\": \"fixedSvg/rotate-left.svg\"\n    },\n    \"rotate-right\": {\n      \"codepoint\": 62717,\n      \"source\": \"fixedSvg/rotate-right.svg\"\n    },\n    \"ruby\": {\n      \"codepoint\": 62820,\n      \"source\": \"fixedSvg/ruby.svg\"\n    },\n    \"safety\": {\n      \"codepoint\": 62718,\n      \"source\": \"fixedSvg/safety.svg\"\n    },\n    \"safety-certificate\": {\n      \"codepoint\": 62719,\n      \"source\": \"fixedSvg/safety-certificate.svg\"\n    },\n    \"save\": {\n      \"codepoint\": 62019,\n      \"source\": \"fixedSvg/save.svg\"\n    },\n    \"scan\": {\n      \"codepoint\": 62720,\n      \"source\": \"fixedSvg/scan.svg\"\n    },\n    \"schedule\": {\n      \"codepoint\": 62721,\n      \"source\": \"fixedSvg/schedule.svg\"\n    },\n    \"scissor\": {\n      \"codepoint\": 62722,\n      \"source\": \"fixedSvg/scissor.svg\"\n    },\n    \"search\": {\n      \"codepoint\": 62723,\n      \"source\": \"fixedSvg/search.svg\"\n    },\n    \"security-scan\": {\n      \"codepoint\": 62724,\n      \"source\": \"fixedSvg/security-scan.svg\"\n    },\n    \"select\": {\n      \"codepoint\": 62725,\n      \"source\": \"fixedSvg/select.svg\"\n    },\n    \"send\": {\n      \"codepoint\": 62726,\n      \"source\": \"fixedSvg/send.svg\"\n    },\n    \"setting\": {\n      \"codepoint\": 62727,\n      \"source\": \"fixedSvg/setting.svg\"\n    },\n    \"shake\": {\n      \"codepoint\": 62728,\n      \"source\": \"fixedSvg/shake.svg\"\n    },\n    \"share-alt\": {\n      \"codepoint\": 62729,\n      \"source\": \"fixedSvg/share-alt.svg\"\n    },\n    \"shop\": {\n      \"codepoint\": 62030,\n      \"source\": \"fixedSvg/shop.svg\"\n    },\n    \"shopping\": {\n      \"codepoint\": 62730,\n      \"source\": \"fixedSvg/shopping.svg\"\n    },\n    \"shopping-cart\": {\n      \"codepoint\": 62032,\n      \"source\": \"fixedSvg/shopping-cart.svg\"\n    },\n    \"shrink\": {\n      \"codepoint\": 62731,\n      \"source\": \"fixedSvg/shrink.svg\"\n    },\n    \"signature\": {\n      \"codepoint\": 62821,\n      \"source\": \"fixedSvg/signature.svg\"\n    },\n    \"sisternode\": {\n      \"codepoint\": 62732,\n      \"source\": \"fixedSvg/sisternode.svg\"\n    },\n    \"sketch\": {\n      \"codepoint\": 62733,\n      \"source\": \"fixedSvg/sketch.svg\"\n    },\n    \"skin\": {\n      \"codepoint\": 62734,\n      \"source\": \"fixedSvg/skin.svg\"\n    },\n    \"skype\": {\n      \"codepoint\": 62037,\n      \"source\": \"fixedSvg/skype.svg\"\n    },\n    \"slack\": {\n      \"codepoint\": 62735,\n      \"source\": \"fixedSvg/slack.svg\"\n    },\n    \"slack-square\": {\n      \"codepoint\": 62736,\n      \"source\": \"fixedSvg/slack-square.svg\"\n    },\n    \"sliders\": {\n      \"codepoint\": 62737,\n      \"source\": \"fixedSvg/sliders.svg\"\n    },\n    \"small-dash\": {\n      \"codepoint\": 62738,\n      \"source\": \"fixedSvg/small-dash.svg\"\n    },\n    \"smile\": {\n      \"codepoint\": 62739,\n      \"source\": \"fixedSvg/smile.svg\"\n    },\n    \"snippets\": {\n      \"codepoint\": 62740,\n      \"source\": \"fixedSvg/snippets.svg\"\n    },\n    \"solution\": {\n      \"codepoint\": 62741,\n      \"source\": \"fixedSvg/solution.svg\"\n    },\n    \"sort-ascending\": {\n      \"codepoint\": 62742,\n      \"source\": \"fixedSvg/sort-ascending.svg\"\n    },\n    \"sort-descending\": {\n      \"codepoint\": 62743,\n      \"source\": \"fixedSvg/sort-descending.svg\"\n    },\n    \"sound\": {\n      \"codepoint\": 62047,\n      \"source\": \"fixedSvg/sound.svg\"\n    },\n    \"split-cells\": {\n      \"codepoint\": 62744,\n      \"source\": \"fixedSvg/split-cells.svg\"\n    },\n    \"spotify\": {\n      \"codepoint\": 62822,\n      \"source\": \"fixedSvg/spotify.svg\"\n    },\n    \"star\": {\n      \"codepoint\": 62049,\n      \"source\": \"fixedSvg/star.svg\"\n    },\n    \"step-backward\": {\n      \"codepoint\": 62745,\n      \"source\": \"fixedSvg/step-backward.svg\"\n    },\n    \"step-forward\": {\n      \"codepoint\": 62746,\n      \"source\": \"fixedSvg/step-forward.svg\"\n    },\n    \"stock\": {\n      \"codepoint\": 62747,\n      \"source\": \"fixedSvg/stock.svg\"\n    },\n    \"stop\": {\n      \"codepoint\": 62748,\n      \"source\": \"fixedSvg/stop.svg\"\n    },\n    \"strikethrough\": {\n      \"codepoint\": 62749,\n      \"source\": \"fixedSvg/strikethrough.svg\"\n    },\n    \"subnode\": {\n      \"codepoint\": 62750,\n      \"source\": \"fixedSvg/subnode.svg\"\n    },\n    \"sun\": {\n      \"codepoint\": 62823,\n      \"source\": \"fixedSvg/sun.svg\"\n    },\n    \"swap\": {\n      \"codepoint\": 62056,\n      \"source\": \"fixedSvg/swap.svg\"\n    },\n    \"swap-left\": {\n      \"codepoint\": 62751,\n      \"source\": \"fixedSvg/swap-left.svg\"\n    },\n    \"swap-right\": {\n      \"codepoint\": 62752,\n      \"source\": \"fixedSvg/swap-right.svg\"\n    },\n    \"switcher\": {\n      \"codepoint\": 62753,\n      \"source\": \"fixedSvg/switcher.svg\"\n    },\n    \"sync\": {\n      \"codepoint\": 62754,\n      \"source\": \"fixedSvg/sync.svg\"\n    },\n    \"table\": {\n      \"codepoint\": 62755,\n      \"source\": \"fixedSvg/table.svg\"\n    },\n    \"tablet\": {\n      \"codepoint\": 62062,\n      \"source\": \"fixedSvg/tablet.svg\"\n    },\n    \"tag\": {\n      \"codepoint\": 62063,\n      \"source\": \"fixedSvg/tag.svg\"\n    },\n    \"tags\": {\n      \"codepoint\": 62756,\n      \"source\": \"fixedSvg/tags.svg\"\n    },\n    \"taobao\": {\n      \"codepoint\": 62757,\n      \"source\": \"fixedSvg/taobao.svg\"\n    },\n    \"taobao-circle\": {\n      \"codepoint\": 62758,\n      \"source\": \"fixedSvg/taobao-circle.svg\"\n    },\n    \"team\": {\n      \"codepoint\": 62759,\n      \"source\": \"fixedSvg/team.svg\"\n    },\n    \"thunderbolt\": {\n      \"codepoint\": 62760,\n      \"source\": \"fixedSvg/thunderbolt.svg\"\n    },\n    \"tik-tok\": {\n      \"codepoint\": 62824,\n      \"source\": \"fixedSvg/tik-tok.svg\"\n    },\n    \"to-top\": {\n      \"codepoint\": 62761,\n      \"source\": \"fixedSvg/to-top.svg\"\n    },\n    \"tool\": {\n      \"codepoint\": 62762,\n      \"source\": \"fixedSvg/tool.svg\"\n    },\n    \"trademark\": {\n      \"codepoint\": 62763,\n      \"source\": \"fixedSvg/trademark.svg\"\n    },\n    \"trademark-circle\": {\n      \"codepoint\": 62764,\n      \"source\": \"fixedSvg/trademark-circle.svg\"\n    },\n    \"transaction\": {\n      \"codepoint\": 62765,\n      \"source\": \"fixedSvg/transaction.svg\"\n    },\n    \"translation\": {\n      \"codepoint\": 62766,\n      \"source\": \"fixedSvg/translation.svg\"\n    },\n    \"trophy\": {\n      \"codepoint\": 62075,\n      \"source\": \"fixedSvg/trophy.svg\"\n    },\n    \"truck\": {\n      \"codepoint\": 62825,\n      \"source\": \"fixedSvg/truck.svg\"\n    },\n    \"twitch\": {\n      \"codepoint\": 62826,\n      \"source\": \"fixedSvg/twitch.svg\"\n    },\n    \"twitter\": {\n      \"codepoint\": 62076,\n      \"source\": \"fixedSvg/twitter.svg\"\n    },\n    \"underline\": {\n      \"codepoint\": 62767,\n      \"source\": \"fixedSvg/underline.svg\"\n    },\n    \"undo\": {\n      \"codepoint\": 62768,\n      \"source\": \"fixedSvg/undo.svg\"\n    },\n    \"ungroup\": {\n      \"codepoint\": 62769,\n      \"source\": \"fixedSvg/ungroup.svg\"\n    },\n    \"unlock\": {\n      \"codepoint\": 62770,\n      \"source\": \"fixedSvg/unlock.svg\"\n    },\n    \"unordered-list\": {\n      \"codepoint\": 62771,\n      \"source\": \"fixedSvg/unordered-list.svg\"\n    },\n    \"up\": {\n      \"codepoint\": 62772,\n      \"source\": \"fixedSvg/up.svg\"\n    },\n    \"up-circle\": {\n      \"codepoint\": 62773,\n      \"source\": \"fixedSvg/up-circle.svg\"\n    },\n    \"up-square\": {\n      \"codepoint\": 62774,\n      \"source\": \"fixedSvg/up-square.svg\"\n    },\n    \"upload\": {\n      \"codepoint\": 62085,\n      \"source\": \"fixedSvg/upload.svg\"\n    },\n    \"usb\": {\n      \"codepoint\": 62775,\n      \"source\": \"fixedSvg/usb.svg\"\n    },\n    \"user\": {\n      \"codepoint\": 62087,\n      \"source\": \"fixedSvg/user.svg\"\n    },\n    \"user-add\": {\n      \"codepoint\": 62776,\n      \"source\": \"fixedSvg/user-add.svg\"\n    },\n    \"user-delete\": {\n      \"codepoint\": 62777,\n      \"source\": \"fixedSvg/user-delete.svg\"\n    },\n    \"user-switch\": {\n      \"codepoint\": 62778,\n      \"source\": \"fixedSvg/user-switch.svg\"\n    },\n    \"usergroup-add\": {\n      \"codepoint\": 62779,\n      \"source\": \"fixedSvg/usergroup-add.svg\"\n    },\n    \"usergroup-delete\": {\n      \"codepoint\": 62780,\n      \"source\": \"fixedSvg/usergroup-delete.svg\"\n    },\n    \"verified\": {\n      \"codepoint\": 62781,\n      \"source\": \"fixedSvg/verified.svg\"\n    },\n    \"vertical-align-bottom\": {\n      \"codepoint\": 62782,\n      \"source\": \"fixedSvg/vertical-align-bottom.svg\"\n    },\n    \"vertical-align-middle\": {\n      \"codepoint\": 62783,\n      \"source\": \"fixedSvg/vertical-align-middle.svg\"\n    },\n    \"vertical-align-top\": {\n      \"codepoint\": 62784,\n      \"source\": \"fixedSvg/vertical-align-top.svg\"\n    },\n    \"vertical-left\": {\n      \"codepoint\": 62785,\n      \"source\": \"fixedSvg/vertical-left.svg\"\n    },\n    \"vertical-right\": {\n      \"codepoint\": 62786,\n      \"source\": \"fixedSvg/vertical-right.svg\"\n    },\n    \"video-camera\": {\n      \"codepoint\": 62099,\n      \"source\": \"fixedSvg/video-camera.svg\"\n    },\n    \"video-camera-add\": {\n      \"codepoint\": 62787,\n      \"source\": \"fixedSvg/video-camera-add.svg\"\n    },\n    \"wallet\": {\n      \"codepoint\": 62101,\n      \"source\": \"fixedSvg/wallet.svg\"\n    },\n    \"warning\": {\n      \"codepoint\": 62102,\n      \"source\": \"fixedSvg/warning.svg\"\n    },\n    \"wechat\": {\n      \"codepoint\": 62788,\n      \"source\": \"fixedSvg/wechat.svg\"\n    },\n    \"wechat-work\": {\n      \"codepoint\": 62827,\n      \"source\": \"fixedSvg/wechat-work.svg\"\n    },\n    \"weibo\": {\n      \"codepoint\": 62789,\n      \"source\": \"fixedSvg/weibo.svg\"\n    },\n    \"weibo-circle\": {\n      \"codepoint\": 62790,\n      \"source\": \"fixedSvg/weibo-circle.svg\"\n    },\n    \"weibo-square\": {\n      \"codepoint\": 62791,\n      \"source\": \"fixedSvg/weibo-square.svg\"\n    },\n    \"whats-app\": {\n      \"codepoint\": 62792,\n      \"source\": \"fixedSvg/whats-app.svg\"\n    },\n    \"wifi\": {\n      \"codepoint\": 62793,\n      \"source\": \"fixedSvg/wifi.svg\"\n    },\n    \"windows\": {\n      \"codepoint\": 62794,\n      \"source\": \"fixedSvg/windows.svg\"\n    },\n    \"woman\": {\n      \"codepoint\": 62795,\n      \"source\": \"fixedSvg/woman.svg\"\n    },\n    \"x\": {\n      \"codepoint\": 62828,\n      \"source\": \"fixedSvg/x.svg\"\n    },\n    \"yahoo\": {\n      \"codepoint\": 62796,\n      \"source\": \"fixedSvg/yahoo.svg\"\n    },\n    \"youtube\": {\n      \"codepoint\": 62112,\n      \"source\": \"fixedSvg/youtube.svg\"\n    },\n    \"yuque\": {\n      \"codepoint\": 62797,\n      \"source\": \"fixedSvg/yuque.svg\"\n    },\n    \"zhihu\": {\n      \"codepoint\": 62798,\n      \"source\": \"fixedSvg/zhihu.svg\"\n    },\n    \"zoom-in\": {\n      \"codepoint\": 62799,\n      \"source\": \"fixedSvg/zoom-in.svg\"\n    },\n    \"zoom-out\": {\n      \"codepoint\": 62800,\n      \"source\": \"fixedSvg/zoom-out.svg\"\n    }\n  },\n  \"options\": {\n    \"autowidth\": false,\n    \"config\": false,\n    \"copyright\": \"\",\n    \"css3\": false,\n    \"css_selector\": \".icon-{{glyph}}\",\n    \"debug\": false,\n    \"font_ascent\": 448,\n    \"font_descent\": 64,\n    \"font_design_size\": 16,\n    \"font_em\": 512,\n    \"font_name\": \"AntDesign\",\n    \"force\": true,\n    \"input\": {\n      \"templates\": \"fixedSvg\",\n      \"vectors\": \"fixedSvg\"\n    },\n    \"no_hash\": true,\n    \"output\": {\n      \"css\": \"AntDesign\",\n      \"fonts\": \"AntDesign\",\n      \"preview\": \"AntDesign\"\n    },\n    \"preprocessor_path\": null,\n    \"quiet\": false,\n    \"templates\": [\n      \"css\"\n    ]\n  },\n  \"templates\": [\n    \"AntDesign/AntDesign.css\"\n  ]\n}"
  },
  {
    "path": "packages/ant-design/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"ant-design\",\n    \"upstreamFont\": \"@ant-design/icons-svg\",\n    \"buildSteps\": {\n      \"fixSVGPaths\": {\n        \"location\": \"../../node_modules/@ant-design/icons-svg/inline-namespaced-svg/outlined\"\n      },\n      \"fontCustom\": {\n        \"location\": \"fixedSvg\",\n        \"cleanup\": true\n      },\n      \"glyphmap\": {\n        \"mode\": \"css\",\n        \"cleanup\": true\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"12.0.0\",\n        \"upstream\": \"4.4.2\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/ant-design/CHANGELOG.md",
    "content": "## 12.5.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.4.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 12.4.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.4.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 12.4.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.3.0 (2025-08-03)\n\n### 🚀 Features\n\n- export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.3.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.2.0 (2025-07-20)\n\n### 🚀 Features\n\n- add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.2.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.1.0 (2025-07-12)\n\n### 🚀 Features\n\n- export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.1.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.2 (2025-06-15)\n\n### 🩹 Fixes\n\n- new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.2\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.1 (2025-06-15)\n\n### 🩹 Fixes\n\n- try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745))\n- remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767))\n- convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765))\n- updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c))\n- **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.1\n\n### ❤️ Thank You\n\n- Alexander Kucheryavenko @Red1tum\n- John Ferlito @johnf\n- Md. Jayed Hasan @JayedHasan232\n\n# 12.0.0 (2025-05-04)\n\n### 🚀 Features\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n- add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702))\n\n### 🩹 Fixes\n\n- upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691))\n- upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690))\n- mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99))\n\n### ⚠️  Breaking Changes\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n\n### ❤️ Thank You\n\n- Chanphirom Sok @chanphiromsok\n- John Ferlito @johnf"
  },
  {
    "path": "packages/ant-design/README.md",
    "content": "# React Native Vector Icons - Ant Design\n\nAnt Design font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/ant-design\n```\n\n## Usage\n\n```jsx\nimport { AntDesign } from '@react-native-vector-icons/ant-design';\n\n// ...\n\n<AntDesign name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 12.0.0 | 4.4.2 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/ant-design/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.ant_design\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsAntDesign\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.ant_design\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-ant-design\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-ant-design/fonts\"\n  eachFile { println \"(RNVI:ant-design) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n"
  },
  {
    "path": "packages/ant-design/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.ant_design\">\n</manifest>\n"
  },
  {
    "path": "packages/ant-design/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/ant-design/android/src/main/java/VectorIconsAntDesignPackage.kt",
    "content": "package com.reactnativevectoricons.ant_design\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsAntDesignPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/ant-design/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/ant-design/glyphmaps/AntDesign.json",
    "content": "{\n  \"account-book\": 62454,\n  \"aim\": 62455,\n  \"alert\": 62456,\n  \"alibaba\": 62457,\n  \"align-center\": 62458,\n  \"align-left\": 61701,\n  \"align-right\": 61702,\n  \"alipay\": 62459,\n  \"alipay-circle\": 62460,\n  \"aliwangwang\": 62461,\n  \"aliyun\": 62462,\n  \"amazon\": 62463,\n  \"android\": 62464,\n  \"ant-cloud\": 62465,\n  \"ant-design\": 62466,\n  \"apartment\": 62467,\n  \"api\": 62468,\n  \"apple\": 62469,\n  \"appstore\": 62470,\n  \"appstore-add\": 62471,\n  \"area-chart\": 62472,\n  \"arrow-down\": 61717,\n  \"arrow-left\": 61718,\n  \"arrow-right\": 61719,\n  \"arrow-up\": 61720,\n  \"arrows-alt\": 62473,\n  \"audio\": 62474,\n  \"audio-muted\": 62475,\n  \"audit\": 62476,\n  \"backward\": 62477,\n  \"baidu\": 62801,\n  \"bank\": 62478,\n  \"bar-chart\": 62479,\n  \"barcode\": 62480,\n  \"bars\": 62481,\n  \"behance\": 61730,\n  \"behance-square\": 62482,\n  \"bell\": 61732,\n  \"bg-colors\": 62483,\n  \"bilibili\": 62802,\n  \"block\": 61734,\n  \"bold\": 62484,\n  \"book\": 61736,\n  \"border\": 62485,\n  \"border-bottom\": 62486,\n  \"border-horizontal\": 62487,\n  \"border-inner\": 62488,\n  \"border-left\": 62489,\n  \"border-outer\": 62490,\n  \"border-right\": 62491,\n  \"border-top\": 62492,\n  \"border-verticle\": 62493,\n  \"borderless-table\": 62494,\n  \"box-plot\": 62495,\n  \"branches\": 62496,\n  \"bug\": 61749,\n  \"build\": 62497,\n  \"bulb\": 62498,\n  \"calculator\": 61752,\n  \"calendar\": 61753,\n  \"camera\": 61754,\n  \"car\": 62499,\n  \"caret-down\": 62500,\n  \"caret-left\": 62501,\n  \"caret-right\": 62502,\n  \"caret-up\": 62503,\n  \"carry-out\": 62504,\n  \"check\": 61761,\n  \"check-circle\": 62505,\n  \"check-square\": 62506,\n  \"chrome\": 62507,\n  \"ci\": 62508,\n  \"ci-circle\": 62509,\n  \"clear\": 62510,\n  \"clock-circle\": 62511,\n  \"close\": 62512,\n  \"close-circle\": 62513,\n  \"close-square\": 62514,\n  \"cloud\": 61772,\n  \"cloud-download\": 62515,\n  \"cloud-server\": 62516,\n  \"cloud-sync\": 62517,\n  \"cloud-upload\": 62518,\n  \"cluster\": 62519,\n  \"code\": 61778,\n  \"code-sandbox\": 62520,\n  \"codepen\": 62521,\n  \"codepen-circle\": 62522,\n  \"coffee\": 62523,\n  \"column-height\": 62524,\n  \"column-width\": 62525,\n  \"comment\": 62526,\n  \"compass\": 61786,\n  \"compress\": 62527,\n  \"console-sql\": 62528,\n  \"contacts\": 62529,\n  \"container\": 62530,\n  \"control\": 62531,\n  \"copy\": 61792,\n  \"copyright\": 62532,\n  \"copyright-circle\": 62533,\n  \"credit-card\": 61795,\n  \"crown\": 62534,\n  \"customer-service\": 62535,\n  \"dash\": 62536,\n  \"dashboard\": 62537,\n  \"database\": 61800,\n  \"delete\": 62538,\n  \"delete-column\": 62539,\n  \"delete-row\": 62540,\n  \"delivered-procedure\": 62541,\n  \"deployment-unit\": 62542,\n  \"desktop\": 62543,\n  \"diff\": 62544,\n  \"dingding\": 62545,\n  \"dingtalk\": 62546,\n  \"disconnect\": 62547,\n  \"discord\": 62803,\n  \"dislike\": 62548,\n  \"docker\": 62804,\n  \"dollar\": 62549,\n  \"dollar-circle\": 62550,\n  \"dot-chart\": 62551,\n  \"dot-net\": 62805,\n  \"double-left\": 62552,\n  \"double-right\": 62553,\n  \"down\": 62554,\n  \"down-circle\": 62555,\n  \"down-square\": 62556,\n  \"download\": 61820,\n  \"drag\": 62557,\n  \"dribbble\": 61822,\n  \"dribbble-square\": 62558,\n  \"dropbox\": 61824,\n  \"edit\": 61825,\n  \"ellipsis\": 62559,\n  \"enter\": 62560,\n  \"environment\": 62561,\n  \"euro\": 62562,\n  \"euro-circle\": 62563,\n  \"exception\": 62564,\n  \"exclamation\": 62565,\n  \"exclamation-circle\": 62566,\n  \"expand\": 62567,\n  \"expand-alt\": 62568,\n  \"experiment\": 62569,\n  \"export\": 61837,\n  \"eye\": 61838,\n  \"eye-invisible\": 62570,\n  \"facebook\": 61840,\n  \"fall\": 62571,\n  \"fast-backward\": 62572,\n  \"fast-forward\": 62573,\n  \"field-binary\": 62574,\n  \"field-number\": 62575,\n  \"field-string\": 62576,\n  \"field-time\": 62577,\n  \"file\": 62578,\n  \"file-add\": 62579,\n  \"file-done\": 62580,\n  \"file-excel\": 62581,\n  \"file-exclamation\": 62582,\n  \"file-gif\": 62583,\n  \"file-image\": 62584,\n  \"file-jpg\": 62585,\n  \"file-markdown\": 62586,\n  \"file-pdf\": 62587,\n  \"file-ppt\": 62588,\n  \"file-protect\": 62589,\n  \"file-search\": 62590,\n  \"file-sync\": 62591,\n  \"file-text\": 62592,\n  \"file-unknown\": 62593,\n  \"file-word\": 62594,\n  \"file-zip\": 62595,\n  \"filter\": 62596,\n  \"fire\": 62597,\n  \"flag\": 61868,\n  \"folder\": 61869,\n  \"folder-add\": 62598,\n  \"folder-open\": 62599,\n  \"folder-view\": 62600,\n  \"font-colors\": 62601,\n  \"font-size\": 62602,\n  \"fork\": 62603,\n  \"form\": 62604,\n  \"format-painter\": 62605,\n  \"forward\": 61878,\n  \"frown\": 62606,\n  \"fullscreen\": 62607,\n  \"fullscreen-exit\": 62608,\n  \"function\": 62609,\n  \"fund\": 62610,\n  \"fund-projection-screen\": 62611,\n  \"fund-view\": 62612,\n  \"funnel-plot\": 62613,\n  \"gateway\": 62614,\n  \"gif\": 62615,\n  \"gift\": 62616,\n  \"github\": 61890,\n  \"gitlab\": 62617,\n  \"global\": 62618,\n  \"gold\": 62619,\n  \"google\": 62620,\n  \"google-plus\": 62621,\n  \"group\": 62622,\n  \"harmony-o-s\": 62806,\n  \"harmony-os\": 62807,\n  \"hdd\": 62623,\n  \"heart\": 61898,\n  \"heat-map\": 62624,\n  \"highlight\": 62625,\n  \"history\": 62626,\n  \"holder\": 62627,\n  \"home\": 61903,\n  \"hourglass\": 62628,\n  \"html5\": 62629,\n  \"idcard\": 62630,\n  \"ie\": 62631,\n  \"import\": 62632,\n  \"inbox\": 61909,\n  \"info\": 61910,\n  \"info-circle\": 62633,\n  \"insert-row-above\": 62634,\n  \"insert-row-below\": 62635,\n  \"insert-row-left\": 62636,\n  \"insert-row-right\": 62637,\n  \"instagram\": 61916,\n  \"insurance\": 62638,\n  \"interaction\": 62639,\n  \"issues-close\": 62640,\n  \"italic\": 62641,\n  \"java\": 62808,\n  \"java-script\": 62809,\n  \"key\": 61921,\n  \"kubernetes\": 62810,\n  \"laptop\": 61922,\n  \"layout\": 62642,\n  \"left\": 62643,\n  \"left-circle\": 62644,\n  \"left-square\": 62645,\n  \"like\": 62646,\n  \"line\": 62647,\n  \"line-chart\": 62648,\n  \"line-height\": 62649,\n  \"link\": 61931,\n  \"linkedin\": 61932,\n  \"linux\": 62811,\n  \"loading\": 62650,\n  \"loading-3-quarters\": 62651,\n  \"lock\": 61935,\n  \"login\": 61936,\n  \"logout\": 62652,\n  \"mac-command\": 62653,\n  \"mail\": 61939,\n  \"man\": 61940,\n  \"medicine-box\": 62654,\n  \"medium\": 61942,\n  \"medium-workmark\": 62655,\n  \"meh\": 62656,\n  \"menu\": 61945,\n  \"menu-fold\": 62657,\n  \"menu-unfold\": 62658,\n  \"merge\": 62812,\n  \"merge-cells\": 62659,\n  \"message\": 61949,\n  \"minus\": 61950,\n  \"minus-circle\": 62660,\n  \"minus-square\": 62661,\n  \"mobile\": 61953,\n  \"money-collect\": 62662,\n  \"monitor\": 62663,\n  \"moon\": 62813,\n  \"more\": 62664,\n  \"muted\": 62814,\n  \"node-collapse\": 62665,\n  \"node-expand\": 62666,\n  \"node-index\": 62667,\n  \"notification\": 61960,\n  \"number\": 62668,\n  \"one-to-one\": 62669,\n  \"open-a-i\": 62815,\n  \"open-ai\": 62816,\n  \"ordered-list\": 62670,\n  \"paper-clip\": 62671,\n  \"partition\": 62672,\n  \"pause\": 62673,\n  \"pause-circle\": 62674,\n  \"pay-circle\": 62675,\n  \"percentage\": 62676,\n  \"phone\": 61970,\n  \"pic-center\": 62677,\n  \"pic-left\": 62678,\n  \"pic-right\": 62679,\n  \"picture\": 62680,\n  \"pie-chart\": 61975,\n  \"pinterest\": 62817,\n  \"play-circle\": 62681,\n  \"play-square\": 62682,\n  \"plus\": 61978,\n  \"plus-circle\": 62683,\n  \"plus-square\": 62684,\n  \"pound\": 62685,\n  \"pound-circle\": 62686,\n  \"poweroff\": 62687,\n  \"printer\": 62688,\n  \"product\": 62818,\n  \"profile\": 62689,\n  \"project\": 62690,\n  \"property-safety\": 62691,\n  \"pull-request\": 62692,\n  \"pushpin\": 62693,\n  \"python\": 62819,\n  \"qq\": 61990,\n  \"qrcode\": 62694,\n  \"question\": 62695,\n  \"question-circle\": 62696,\n  \"radar-chart\": 62697,\n  \"radius-bottomleft\": 62698,\n  \"radius-bottomright\": 62699,\n  \"radius-setting\": 62700,\n  \"radius-upleft\": 62701,\n  \"radius-upright\": 62702,\n  \"read\": 62703,\n  \"reconciliation\": 62704,\n  \"red-envelope\": 62705,\n  \"reddit\": 62706,\n  \"redo\": 62707,\n  \"reload\": 62708,\n  \"rest\": 62709,\n  \"retweet\": 62007,\n  \"right\": 62710,\n  \"right-circle\": 62711,\n  \"right-square\": 62712,\n  \"rise\": 62713,\n  \"robot\": 62714,\n  \"rocket\": 62013,\n  \"rollback\": 62715,\n  \"rotate-left\": 62716,\n  \"rotate-right\": 62717,\n  \"ruby\": 62820,\n  \"safety\": 62718,\n  \"safety-certificate\": 62719,\n  \"save\": 62019,\n  \"scan\": 62720,\n  \"schedule\": 62721,\n  \"scissor\": 62722,\n  \"search\": 62723,\n  \"security-scan\": 62724,\n  \"select\": 62725,\n  \"send\": 62726,\n  \"setting\": 62727,\n  \"shake\": 62728,\n  \"share-alt\": 62729,\n  \"shop\": 62030,\n  \"shopping\": 62730,\n  \"shopping-cart\": 62032,\n  \"shrink\": 62731,\n  \"signature\": 62821,\n  \"sisternode\": 62732,\n  \"sketch\": 62733,\n  \"skin\": 62734,\n  \"skype\": 62037,\n  \"slack\": 62735,\n  \"slack-square\": 62736,\n  \"sliders\": 62737,\n  \"small-dash\": 62738,\n  \"smile\": 62739,\n  \"snippets\": 62740,\n  \"solution\": 62741,\n  \"sort-ascending\": 62742,\n  \"sort-descending\": 62743,\n  \"sound\": 62047,\n  \"split-cells\": 62744,\n  \"spotify\": 62822,\n  \"star\": 62049,\n  \"step-backward\": 62745,\n  \"step-forward\": 62746,\n  \"stock\": 62747,\n  \"stop\": 62748,\n  \"strikethrough\": 62749,\n  \"subnode\": 62750,\n  \"sun\": 62823,\n  \"swap\": 62056,\n  \"swap-left\": 62751,\n  \"swap-right\": 62752,\n  \"switcher\": 62753,\n  \"sync\": 62754,\n  \"table\": 62755,\n  \"tablet\": 62062,\n  \"tag\": 62063,\n  \"tags\": 62756,\n  \"taobao\": 62757,\n  \"taobao-circle\": 62758,\n  \"team\": 62759,\n  \"thunderbolt\": 62760,\n  \"tik-tok\": 62824,\n  \"to-top\": 62761,\n  \"tool\": 62762,\n  \"trademark\": 62763,\n  \"trademark-circle\": 62764,\n  \"transaction\": 62765,\n  \"translation\": 62766,\n  \"trophy\": 62075,\n  \"truck\": 62825,\n  \"twitch\": 62826,\n  \"twitter\": 62076,\n  \"underline\": 62767,\n  \"undo\": 62768,\n  \"ungroup\": 62769,\n  \"unlock\": 62770,\n  \"unordered-list\": 62771,\n  \"up\": 62772,\n  \"up-circle\": 62773,\n  \"up-square\": 62774,\n  \"upload\": 62085,\n  \"usb\": 62775,\n  \"user\": 62087,\n  \"user-add\": 62776,\n  \"user-delete\": 62777,\n  \"user-switch\": 62778,\n  \"usergroup-add\": 62779,\n  \"usergroup-delete\": 62780,\n  \"verified\": 62781,\n  \"vertical-align-bottom\": 62782,\n  \"vertical-align-middle\": 62783,\n  \"vertical-align-top\": 62784,\n  \"vertical-left\": 62785,\n  \"vertical-right\": 62786,\n  \"video-camera\": 62099,\n  \"video-camera-add\": 62787,\n  \"wallet\": 62101,\n  \"warning\": 62102,\n  \"wechat\": 62788,\n  \"wechat-work\": 62827,\n  \"weibo\": 62789,\n  \"weibo-circle\": 62790,\n  \"weibo-square\": 62791,\n  \"whats-app\": 62792,\n  \"wifi\": 62793,\n  \"windows\": 62794,\n  \"woman\": 62795,\n  \"x\": 62828,\n  \"yahoo\": 62796,\n  \"youtube\": 62112,\n  \"yuque\": 62797,\n  \"zhihu\": 62798,\n  \"zoom-in\": 62799,\n  \"zoom-out\": 62800\n}"
  },
  {
    "path": "packages/ant-design/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/ant-design\",\n  \"version\": \"12.5.0\",\n  \"description\": \"Ant Design font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\",\n    \"./fonts/*.ttf\": \"./fonts/*.ttf\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"ant-design\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/ant-design\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\",\n    \"@ant-design/icons-svg\": \"4.4.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/ant-design/react-native-vector-icons-ant-design.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-ant-design'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\nend\n"
  },
  {
    "path": "packages/ant-design/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * AntDesign icon set component.\n * Usage: <AntDesign name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/AntDesign.json';\n\nexport const AntDesign = createIconSet(glyphMap, {\n  postScriptName: 'AntDesign',\n  fontFileName: 'AntDesign.ttf',\n  fontSource: require('../fonts/AntDesign.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require\n});\n\nexport type AntDesignIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default AntDesign;\n"
  },
  {
    "path": "packages/ant-design/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * AntDesign icon set component.\n * Usage: <AntDesign name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/AntDesign.json';\n\nexport const AntDesign = createIconSet(glyphMap, {\n  postScriptName: 'AntDesign',\n  fontFileName: 'AntDesign.ttf',\n});\n\nexport type AntDesignIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default AntDesign;\n"
  },
  {
    "path": "packages/ant-design/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/ant-design/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/codemod/CHANGELOG.md",
    "content": "## 12.3.2 (2026-03-20)\n\n### 🚀 Features\n\n- **codemod:** support static imports ([#1884](https://github.com/oblador/react-native-vector-icons/pull/1884))\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n- Vojtech Novak @vonovak\n\n## 12.3.1 (2026-03-10)\n\n### 🩹 Fixes\n\n- **codemod:** update provenance details ([#1871](https://github.com/oblador/react-native-vector-icons/pull/1871))\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.3.0 (2025-11-01)\n\n### 🩹 Fixes\n\n- update codemod simple-line-icon repository name ([#1856](https://github.com/oblador/react-native-vector-icons/pull/1856))\n\n### ❤️ Thank You\n\n- Mark @feyst\n\n## 12.2.0 (2025-08-03)\n\n### 🚀 Features\n\n- **codemod:** add codemod for expo/vector-icons ([#1815](https://github.com/oblador/react-native-vector-icons/pull/1815))\n\n### 🩹 Fixes\n\n- **codemod:** add git status check, use npx expo install to add deps ([#1818](https://github.com/oblador/react-native-vector-icons/pull/1818))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.1.0 (2025-07-12)\n\nThis was a version bump only for @react-native-vector-icons/codemod to align it with other projects, there were no code changes.\n\n## 12.0.2 (2025-06-15)\n\n### 🩹 Fixes\n\n- new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774))\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.1 (2025-06-15)\n\n### 🩹 Fixes\n\n- remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767))\n- convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765))\n- updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c))\n- **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742))\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n- Md. Jayed Hasan @JayedHasan232\n\n# 12.0.0 (2025-05-04)\n\n### 🚀 Features\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n- add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702))\n\n### 🩹 Fixes\n\n- upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691))\n- upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690))\n\n### ⚠️  Breaking Changes\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n\n### ❤️ Thank You\n\n- Chanphirom Sok @chanphiromsok\n- John Ferlito @johnf"
  },
  {
    "path": "packages/codemod/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/codemod\",\n  \"version\": \"12.3.2\",\n  \"description\": \"Tool to help users migrate from react-native-vector-icons to @react-native-vector-icons/*\",\n  \"main\": \"lib/commonjs/index\",\n  \"module\": \"lib/module/index\",\n  \"types\": \"lib/typescript/src/index.d.ts\",\n  \"source\": \"src/index\",\n  \"bin\": {\n    \"react-native-vector-icons-codemod\": \"./lib/commonjs/index.js\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli lib\",\n    \"prepare\": \"bob build\",\n    \"test\": \"jest\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"jest\": {\n    \"preset\": \"ts-jest\",\n    \"testEnvironment\": \"node\",\n    \"transform\": {\n      \"^.+\\\\.tsx?$\": [\n        \"ts-jest\",\n        {\n          \"tsconfig\": {\n            \"verbatimModuleSyntax\": false\n          }\n        }\n      ]\n    }\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"migration\"\n  ],\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"homepage\": \"https://github.com/react-native-vector-icons/react-native-vector-icons\",\n  \"bugs\": {\n    \"url\": \"https://github.com/react-native-vector-icons/react-native-vector-icons/issues\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/codemod\"\n  },\n  \"license\": \"MIT\",\n  \"publishConfig\": {\n    \"access\": \"public\",\n    \"registry\": \"https://registry.npmjs.org/\"\n  },\n  \"dependencies\": {\n    \"jscodeshift\": \"^17.1.1\",\n    \"plist\": \"^3.1.0\",\n    \"resolve-from\": \"^5.0.0\",\n    \"semver\": \"^7.7.1\"\n  },\n  \"devDependencies\": {\n    \"@types/jest\": \"^30.0.0\",\n    \"@types/jscodeshift\": \"^0.12.0\",\n    \"@types/plist\": \"^3.0.5\",\n    \"@types/semver\": \"^7\",\n    \"del-cli\": \"^6.0.0\",\n    \"jest\": \"^29.7.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"ts-jest\": \"^29.2.5\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      \"commonjs\",\n      \"module\",\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.json\"\n        }\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/codemod/src/11.0/icon-style-transform.ts",
    "content": "import type { Collection, JSCodeshift, JSXAttribute } from 'jscodeshift';\n\nconst componentNames = ['FontAwesome5', 'FontAwesome6', 'FontAwesome5Pro', 'FontAwesome6Pro', 'Icon'];\nconst iconStyles = ['brand', 'solid', 'light', 'thin', 'duotone', 'sharp', 'sharpSolid', 'sharpLight'];\n\nexport default (j: JSCodeshift, root: Collection) =>\n  root\n    .find(j.JSXOpeningElement)\n    .forEach((path) => {\n      if (path.node.name.type !== 'JSXIdentifier') {\n        return;\n      }\n\n      if (!componentNames.includes(path.node.name.name)) {\n        return;\n      }\n\n      const { node } = path;\n      iconStyles.forEach((style) => {\n        const styleAttr = node.attributes?.find((attr) => attr.type === 'JSXAttribute' && attr.name.name === style) as\n          | JSXAttribute\n          | undefined;\n        if (!styleAttr) {\n          return;\n        }\n\n        styleAttr.name = j.jsxIdentifier('iconStyle');\n        styleAttr.value = j.stringLiteral(style);\n      });\n    })\n    .toSource();\n"
  },
  {
    "path": "packages/codemod/src/11.0/import-transform.ts",
    "content": "import type { Collection, JSCodeshift } from 'jscodeshift';\n\nconst imports: [string, string][] = [\n  ['react-native-vector-icons/AntDesign', '@react-native-vector-icons/ant-design/static'],\n  ['react-native-vector-icons/Entypo', '@react-native-vector-icons/entypo/static'],\n  ['react-native-vector-icons/EvilIcons', '@react-native-vector-icons/evil-icons/static'],\n  ['react-native-vector-icons/Feather', '@react-native-vector-icons/feather/static'],\n  ['react-native-vector-icons/FontAwesome5', '@react-native-vector-icons/fontawesome5/static'],\n  ['react-native-vector-icons/FontAwesome5Pro', '@react-native-vector-icons/fontawesome5-pro/static'],\n  ['react-native-vector-icons/FontAwesome6', '@react-native-vector-icons/fontawesome6/static'],\n  ['react-native-vector-icons/FontAwesome6Pro', '@react-native-vector-icons/fontawesome6-pro/static'],\n  ['react-native-vector-icons/FontAwesome', '@react-native-vector-icons/fontawesome/static'],\n  ['react-native-vector-icons/Fontisto', '@react-native-vector-icons/fontisto/static'],\n  ['react-native-vector-icons/Foundation', '@react-native-vector-icons/foundation/static'],\n  ['react-native-vector-icons/Ionicons', '@react-native-vector-icons/ionicons/static'],\n  ['react-native-vector-icons/MaterialCommunityIcons', '@react-native-vector-icons/material-design-icons/static'],\n  ['react-native-vector-icons/MaterialIcons', '@react-native-vector-icons/material-icons/static'],\n  ['react-native-vector-icons/Octicons', '@react-native-vector-icons/octicons/static'],\n  ['react-native-vector-icons/SimpleLineIcons', '@react-native-vector-icons/SimpleLineIcons/static'],\n  ['react-native-vector-icons/Zocial', '@react-native-vector-icons/zocial/static'],\n];\n\nexport default (j: JSCodeshift, root: Collection, r: (msg: string) => void) => {\n  const pkgs = new Set<string>();\n\n  root\n    .find(j.ImportDeclaration)\n    .forEach((path) => {\n      imports.forEach(([from, to]) => {\n        if (path.node.source.value === from) {\n          path.node.source.value = to;\n\n          pkgs.add(to);\n        }\n      });\n    })\n    .toSource();\n\n  // biome-ignore lint/suspicious/useIterableCallbackReturn: biome bug??\n  pkgs.forEach((pkg) => r(`DEP_FOUND: ${pkg}`));\n};\n"
  },
  {
    "path": "packages/codemod/src/11.0/index.ts",
    "content": "#!/usr/bin/env node\n\n/* eslint-disable no-console */\n\nimport { exec } from 'node:child_process';\nimport path from 'node:path';\n\nimport infoPlistTransform from './info-plist';\nimport packageJsonTransform from './package-json';\nimport removeFonts from './remove-fonts';\n\nconst dir = process.argv[2];\nif (!dir) {\n  console.error('Please specify a directory to transform');\n  process.exit(1);\n}\n\nconst transformFilePath = path.join(__dirname, 'transform.js');\nconst cmd = `jscodeshift --transform ${transformFilePath}  --extensions js,ts,jsx,tsx --parser tsx --ignore-pattern '**/node_modules/**' ${dir}`;\n\nconst proc = exec(cmd, { env: { ...process.env, FORCE_COLOR: 'true' } });\n\nconst pkgs = new Set<string>();\nproc.stdout?.on('data', (data: string) => {\n  console.log(data);\n\n  const lines = data.split('\\n');\n\n  lines.forEach((line) => {\n    if (line.match('DEP_FOUND: ')) {\n      pkgs.add(line.replace(/.*DEP_FOUND: /, '').trim());\n    }\n  });\n});\n\nproc.stderr?.on('data', (data) => {\n  console.error(data);\n});\n\nproc.on('exit', () => {\n  packageJsonTransform(pkgs);\n  infoPlistTransform();\n  removeFonts();\n});\n"
  },
  {
    "path": "packages/codemod/src/11.0/info-plist.ts",
    "content": "import { execSync } from 'node:child_process';\nimport fs from 'node:fs';\n\nimport plist from 'plist';\n\nconst fonts = [\n  'AntDesign.ttf',\n  'Entypo.ttf',\n  'EvilIcons.ttf',\n  'Feather.ttf',\n  'FontAwesome5_Brands.ttf',\n  'FontAwesome5_Regular.ttf',\n  'FontAwesome5_Solid.ttf',\n  'FontAwesome6_Brands.ttf',\n  'FontAwesome6_Regular.ttf',\n  'FontAwesome6_Solid.ttf',\n  'FontAwesome.ttf',\n  'Fontisto.ttf',\n  'Foundation.ttf',\n  'Ionicons.ttf',\n  'MaterialCommunityIcons.ttf',\n  'MaterialIcons.ttf',\n  'Octicons.ttf',\n  'SimpleLineIcons.ttf',\n  'Zocial.ttf',\n  'FontAwesome5_Pro_Light.ttf',\n  'FontAwesome5_Pro_Brands.ttf',\n  'FontAwesome5_Pro_Regular.ttf',\n  'FontAwesome5_Pro_Solid.ttf\"',\n  'FontAwesome6_Pro_Light.ttf',\n  'FontAwesome6_Pro_Brands.ttf',\n  'FontAwesome6_Pro_Regular.ttf',\n  'FontAwesome6_Pro_Solid.ttf',\n  'FontAwesome6_Pro_Duotone.ttf',\n  'FontAwesome6_Pro_Thin.ttf',\n  'FontAwesome6_Pro_Sharp_Solid.ttf',\n  'FontAwesome6_Pro_Sharp_Light.ttf',\n  'FontAwesome6_Pro_Sharp_Regular.ttf',\n];\n\nexport default () => {\n  const file = execSync('find ios -name Info.plist | grep -v Tests').toString().trim();\n  const obj = plist.parse(fs.readFileSync(file, 'utf8')) as { UIAppFonts: string[] };\n\n  // delete fonts that match list\n  obj.UIAppFonts = obj.UIAppFonts.filter((font) => !fonts.includes(font));\n\n  fs.writeFileSync(file, plist.build(obj));\n};\n"
  },
  {
    "path": "packages/codemod/src/11.0/package-json.ts",
    "content": "import fs from 'node:fs';\n\nimport { getVersion } from '../getVersion';\n\nexport default async (pkgs: Set<string>) => {\n  const packageJson = JSON.parse(fs.readFileSync('package.json', 'utf8'));\n  const { dependencies } = packageJson;\n\n  const versionPromises = Array.from(pkgs).map(async (pkg) => {\n    if (!dependencies[pkg]) {\n      dependencies[pkg] = await getVersion(pkg);\n    }\n  });\n\n  await Promise.all(versionPromises);\n\n  if (pkgs.size > 0 && dependencies['react-native-vector-icons']) {\n    dependencies['react-native-vector-icons'] = undefined;\n    dependencies['@react-native-vector-icons/common'] = await getVersion('@react-native-vector-icons/common');\n    fs.writeFileSync('package.json', JSON.stringify(packageJson, null, 2));\n  }\n};\n"
  },
  {
    "path": "packages/codemod/src/11.0/remove-fonts.ts",
    "content": "/* eslint-disable no-console */\n\nimport { execSync } from 'node:child_process';\nimport fs from 'node:fs';\n\nconst deletableFonts = [\n  'AntDesign.ttf',\n  'Entypo.ttf',\n  'EvilIcons.ttf',\n  'Feather.ttf',\n  'FontAwesome5_Brands.ttf',\n  'FontAwesome5_Regular.ttf',\n  'FontAwesome5_Solid.ttf',\n  'FontAwesome6_Brands.ttf',\n  'FontAwesome6_Regular.ttf',\n  'FontAwesome6_Solid.ttf',\n  'FontAwesome.ttf',\n  'Fontisto.ttf',\n  'Foundation.ttf',\n  'Ionicons.ttf',\n  'MaterialCommunityIcons.ttf',\n  'MaterialIcons.ttf',\n  'Octicons.ttf',\n  'SimpleLineIcons.ttf',\n  'Zocial.ttf',\n];\n\nconst moveableFonts = [\n  'FontAwesome5_Pro_Light.ttf',\n  'FontAwesome5_Pro_Brands.ttf',\n  'FontAwesome5Pro_Brands.ttf',\n  'FontAwesome5_Pro_Regular.ttf',\n  'FontAwesome5_Pro_Solid.ttf\"',\n  'FontAwesome6_Pro_Light.ttf',\n  'FontAwesome6_Pro_Brands.ttf',\n  'FontAwesome6_Pro_Regular.ttf',\n  'FontAwesome6_Pro_Solid.ttf',\n  'FontAwesome6_Pro_Duotone.ttf',\n  'FontAwesome6_Pro_Thin.ttf',\n  'FontAwesome6_Pro_Sharp_Solid.ttf',\n  'FontAwesome6_Pro_Sharp_Light.ttf',\n  'FontAwesome6_Pro_Sharp_Regular.ttf',\n];\n\nexport default () => {\n  const files = execSync('find android/app/src/main/assets/fonts -name \"*.ttf\"')\n    .toString()\n    .split('\\n')\n    .map((line) => line.trim());\n\n  console.log('Removing unused fonts');\n  const toDelete = files.filter((file) => deletableFonts.includes(file.replace(/.*\\//, '')));\n  toDelete.forEach((file) => {\n    console.log(` - Removing ${file}`);\n    fs.rmSync(file);\n  });\n\n  console.log('Moving Pro fonts');\n\n  const toMove = files.filter((file) => moveableFonts.includes(file.replace(/.*\\//, '')));\n  fs.mkdirSync('rnvi-fonts', { recursive: true });\n  toMove.forEach((file) => {\n    console.log(` - Removing ${file}`);\n    fs.renameSync(file, `rnvi-fonts/${file.replace(/.*\\//, '')}`);\n  });\n};\n"
  },
  {
    "path": "packages/codemod/src/11.0/transform.ts",
    "content": "import type { API, FileInfo } from 'jscodeshift';\n\nimport iconStyleTransform from './icon-style-transform';\nimport importTransform from './import-transform';\n\nexport default (file: FileInfo, api: API) => {\n  const j = api.jscodeshift;\n  const r = api.report;\n  const root = j(file.source);\n\n  // Apply each transform\n  importTransform(j, root, r);\n  iconStyleTransform(j, root);\n\n  return root.toSource();\n};\n"
  },
  {
    "path": "packages/codemod/src/12.0/index.ts",
    "content": "#!/usr/bin/env node\n\n/* eslint-disable no-console */\n\nimport { exec } from 'node:child_process';\nimport path from 'node:path';\n\nimport moveFonts from './move-fonts';\nimport packageJsonTransform from './package-json';\n\nconst dir = process.argv[2];\nif (!dir) {\n  console.error('Please specify a directory to transform');\n  process.exit(1);\n}\n\nconst transformFilePath = path.join(__dirname, 'transform.js');\nconst cmd = `jscodeshift --transform ${transformFilePath}  --extensions js,ts,jsx,tsx --parser tsx --ignore-pattern '**/node_modules/**' ${dir}`;\n\nconst proc = exec(cmd, { env: { ...process.env, FORCE_COLOR: 'true' } });\n\nproc.stdout?.on('data', (data: string) => {\n  console.log(data);\n});\n\nproc.stderr?.on('data', (data) => {\n  console.error(data);\n});\n\nproc.on('exit', () => {\n  packageJsonTransform();\n  moveFonts(dir);\n});\n"
  },
  {
    "path": "packages/codemod/src/12.0/move-fonts.ts",
    "content": "/* eslint-disable no-console */\n\nimport fs, { mkdirSync, readdirSync } from 'node:fs';\nimport path from 'node:path';\n\nconst moveableFonts: Record<string, string> = {\n  'FontAwesome5_Pro_Light.ttf': 'fontawesome5-pro',\n  'FontAwesome5_Pro_Brands.ttf': 'fontawesome5-pro',\n  'FontAwesome5Pro_Brands.ttf': 'fontawesome5-pro',\n  'FontAwesome5_Pro_Regular.ttf': 'fontawesome5-pro',\n  'FontAwesome5_Pro_Solid.ttf\"': 'fontawesome5-pro',\n  'FontAwesome6_Pro_Light.ttf': 'fontawesome5-pro',\n  'FontAwesome6_Pro_Brands.ttf': 'fontawesome6-pro',\n  'FontAwesome6_Pro_Regular.ttf': 'fontawesome6-pro',\n  'FontAwesome6_Pro_Solid.ttf': 'fontawesome6-pro',\n  'FontAwesome6_Pro_Duotone.ttf': 'fontawesome6-pro',\n  'FontAwesome6_Pro_Thin.ttf': 'fontawesome6-pro',\n  'FontAwesome6_Pro_Sharp_Solid.ttf': 'fontawesome6-pro',\n  'FontAwesome6_Pro_Sharp_Light.ttf': 'fontawesome6-pro',\n  'FontAwesome6_Pro_Sharp_Regular.ttf': 'fontawesome6-pro',\n};\n\nexport default (rootDir: string) => {\n  const packageJsonPath = path.join(rootDir, 'package.json');\n  const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf8'));\n\n  const rnviConfig = packageJson.reactNativeVectorIcons || { fontDir: 'rnvi-fonts' };\n  const fontDir = rnviConfig.fontDir || 'rnvi-fonts';\n\n  const files = readdirSync(fontDir);\n\n  console.log('Moving Pro fonts');\n\n  files.forEach((file) => {\n    const fontPath = path.join(fontDir, file);\n    const dir = moveableFonts[file];\n    if (!dir) {\n      console.log(` - Skipping ${file}`);\n\n      return;\n    }\n\n    console.log(` - Moving ${file} to ${dir}`);\n    mkdirSync(path.join(fontDir, dir), { recursive: true });\n    fs.renameSync(fontPath, `${fontDir}/${dir}/${file}`);\n  });\n};\n"
  },
  {
    "path": "packages/codemod/src/12.0/package-json.ts",
    "content": "import fs from 'node:fs';\n\nexport default () => {\n  const packageJson = JSON.parse(fs.readFileSync('package.json', 'utf8'));\n\n  const { dependencies } = packageJson;\n\n  if (dependencies['@react-native-vector-icons/common']) {\n    dependencies['@react-native-vector-icons/common'] = undefined;\n    fs.writeFileSync('package.json', JSON.stringify(packageJson, null, 2));\n  }\n};\n"
  },
  {
    "path": "packages/codemod/src/12.0/transform.ts",
    "content": "import type { API, FileInfo } from 'jscodeshift';\n\nexport default (file: FileInfo, api: API) => {\n  const j = api.jscodeshift;\n  // const r = api.report;\n  const root = j(file.source);\n\n  // Apply each transform\n\n  return root.toSource();\n};\n"
  },
  {
    "path": "packages/codemod/src/__tests__/11.0-transform.test.ts",
    "content": "import type { API, FileInfo } from 'jscodeshift';\nimport jscodeshift from 'jscodeshift';\n\nimport transform from '../11.0/transform';\n\nfunction applyTransform(source: string) {\n  const reported: string[] = [];\n  const fileInfo: FileInfo = { path: 'test.tsx', source };\n  const api: API = {\n    jscodeshift: jscodeshift.withParser('tsx'),\n    j: jscodeshift.withParser('tsx'),\n    stats: () => {},\n    report: (msg: string) => reported.push(msg),\n  };\n  const output = transform(fileInfo, api);\n  return { output, reported };\n}\n\ndescribe('11.0 transform', () => {\n  it('transforms an import and reports the dependency', () => {\n    const input = `import Ionicons from 'react-native-vector-icons/Ionicons';`;\n    const { output, reported } = applyTransform(input);\n    expect(output).toBe('import Ionicons from \"@react-native-vector-icons/ionicons/static\";');\n    expect(reported).toContain('DEP_FOUND: @react-native-vector-icons/ionicons/static');\n  });\n\n  it('transforms multiple imports from different icon sets', () => {\n    const input = [\n      `import Ionicons from 'react-native-vector-icons/Ionicons';`,\n      `import FontAwesome from 'react-native-vector-icons/FontAwesome';`,\n    ].join('\\n');\n    const { output, reported } = applyTransform(input);\n    expect(output).toContain('from \"@react-native-vector-icons/ionicons/static\"');\n    expect(output).toContain('from \"@react-native-vector-icons/fontawesome/static\"');\n    expect(reported).toHaveLength(2);\n  });\n\n  it('transforms renamed packages correctly', () => {\n    const cases: [string, string][] = [\n      ['MaterialCommunityIcons', 'material-design-icons'],\n      ['MaterialIcons', 'material-icons'],\n      ['AntDesign', 'ant-design'],\n      ['EvilIcons', 'evil-icons'],\n    ];\n    for (const [oldName, newName] of cases) {\n      const input = `import Icon from 'react-native-vector-icons/${oldName}';`;\n      const { output } = applyTransform(input);\n      expect(output).toContain(`from \"@react-native-vector-icons/${newName}/static\"`);\n    }\n  });\n\n  it('preserves the local import name', () => {\n    const input = `import MyIcons from 'react-native-vector-icons/Entypo';`;\n    const { output } = applyTransform(input);\n    expect(output).toContain('import MyIcons from');\n  });\n\n  it('does not transform unrelated imports', () => {\n    const input = `import React from 'react';`;\n    const { output, reported } = applyTransform(input);\n    expect(output).toBe(input);\n    expect(reported).toHaveLength(0);\n  });\n\n  it('converts FontAwesome icon style boolean props to iconStyle', () => {\n    const input = `\nimport FontAwesome5 from 'react-native-vector-icons/FontAwesome5';\nconst App = () => <FontAwesome5 name=\"heart\" solid />;\n`;\n    const { output } = applyTransform(input);\n    expect(output).toContain('iconStyle=\"solid\"');\n    expect(output).not.toContain(' solid />');\n  });\n\n  it('converts brand prop to iconStyle on FontAwesome6', () => {\n    const input = `\nimport FontAwesome6 from 'react-native-vector-icons/FontAwesome6';\nconst App = () => <FontAwesome6 name=\"github\" brand />;\n`;\n    const { output } = applyTransform(input);\n    expect(output).toContain('iconStyle=\"brand\"');\n    expect(output).toContain('from \"@react-native-vector-icons/fontawesome6/static\"');\n  });\n\n  it('converts pro icon styles (light, thin, duotone, sharp)', () => {\n    const styles = ['light', 'thin', 'duotone', 'sharp', 'sharpSolid', 'sharpLight'];\n    for (const style of styles) {\n      const input = `\nimport FontAwesome6Pro from 'react-native-vector-icons/FontAwesome6Pro';\nconst App = () => <FontAwesome6Pro name=\"star\" ${style} />;\n`;\n      const { output } = applyTransform(input);\n      expect(output).toContain(`iconStyle=\"${style}\"`);\n    }\n  });\n\n  it('does not convert icon style props on non-FontAwesome components', () => {\n    const input = `\nimport Ionicons from 'react-native-vector-icons/Ionicons';\nconst App = () => <Ionicons name=\"heart\" solid />;\n`;\n    const { output } = applyTransform(input);\n    // solid should remain untouched since Ionicons is not a FA component\n    expect(output).toContain('solid');\n    expect(output).not.toContain('iconStyle');\n  });\n\n  it('handles import transform and icon style transform together', () => {\n    const input = `\nimport FontAwesome5 from 'react-native-vector-icons/FontAwesome5';\nimport Ionicons from 'react-native-vector-icons/Ionicons';\n\nconst App = () => (\n  <>\n    <FontAwesome5 name=\"heart\" solid size={24} />\n    <Ionicons name=\"home\" size={24} />\n  </>\n);\n`;\n    const { output, reported } = applyTransform(input);\n    // imports transformed\n    expect(output).toContain('from \"@react-native-vector-icons/fontawesome5/static\"');\n    expect(output).toContain('from \"@react-native-vector-icons/ionicons/static\"');\n    // icon style transformed on FA5 only\n    expect(output).toContain('iconStyle=\"solid\"');\n    // deps reported\n    expect(reported).toHaveLength(2);\n  });\n});\n"
  },
  {
    "path": "packages/codemod/src/__tests__/expo-import-transform.test.ts",
    "content": "import type { API, FileInfo, Options } from 'jscodeshift';\nimport jscodeshift from 'jscodeshift';\n\nimport transform from '../expo/import-transform';\n\n// Mock newFontImports to avoid file system side effects\njest.mock('../expo/newFontImports', () => ({\n  addNewFontImport: jest.fn(),\n}));\n\nfunction applyTransform(source: string, options: Options = {}): string | undefined {\n  const fileInfo: FileInfo = {\n    path: 'test.tsx',\n    source,\n  };\n  const api: API = {\n    jscodeshift: jscodeshift.withParser('tsx'),\n    j: jscodeshift.withParser('tsx'),\n    stats: () => {},\n    report: () => {},\n  };\n  return transform(fileInfo, api, options);\n}\n\ndescribe('expo import-transform', () => {\n  describe('named imports from @expo/vector-icons', () => {\n    it('splits named imports into multiple default imports', () => {\n      const input = `import { Ionicons, MaterialIcons } from '@expo/vector-icons';`;\n      const output = applyTransform(input);\n      expect(output).toContain('import Ionicons from \"@react-native-vector-icons/ionicons\"');\n      expect(output).toContain('import MaterialIcons from \"@react-native-vector-icons/material-icons\"');\n    });\n\n    it('appends /static when useStatic is true', () => {\n      const input = `import { Ionicons, MaterialIcons } from '@expo/vector-icons';`;\n      const output = applyTransform(input, { useStatic: true });\n      expect(output).toContain('import Ionicons from \"@react-native-vector-icons/ionicons/static\"');\n      expect(output).toContain('import MaterialIcons from \"@react-native-vector-icons/material-icons/static\"');\n    });\n  });\n\n  describe('default imports from @expo/vector-icons/<Family>', () => {\n    it('transforms a default import from a specific family', () => {\n      const input = `import Ionicons from '@expo/vector-icons/Ionicons';`;\n      const output = applyTransform(input);\n      expect(output).toBe('import Ionicons from \"@react-native-vector-icons/ionicons\";');\n    });\n\n    it('transforms a default import with /static when useStatic is true', () => {\n      const input = `import Feather from '@expo/vector-icons/Feather';`;\n      const output = applyTransform(input, { useStatic: true });\n      expect(output).toBe('import Feather from \"@react-native-vector-icons/feather/static\";');\n    });\n\n    it('strips /build/ from import paths', () => {\n      const input = `import Ionicons from '@expo/vector-icons/build/Ionicons';`;\n      const output = applyTransform(input);\n      expect(output).toBe('import Ionicons from \"@react-native-vector-icons/ionicons\";');\n    });\n  });\n\n  describe('non-icon-family imports', () => {\n    it('transforms createIconSetFromIcoMoon', () => {\n      const input = `import createIconSetFromIcoMoon from '@expo/vector-icons/createIconSetFromIcoMoon';`;\n      const output = applyTransform(input);\n      expect(output).toBe('import createIconSetFromIcoMoon from \"@react-native-vector-icons/icomoon\";');\n    });\n\n    it('transforms createIconSetFromFontello', () => {\n      const input = `import createIconSetFromFontello from '@expo/vector-icons/createIconSetFromFontello';`;\n      const output = applyTransform(input);\n      expect(output).toBe('import createIconSetFromFontello from \"@react-native-vector-icons/fontello\";');\n    });\n  });\n\n  describe('edge cases', () => {\n    it('returns undefined when no @expo/vector-icons imports are found', () => {\n      const input = `import React from 'react';`;\n      const output = applyTransform(input);\n      expect(output).toBeUndefined();\n    });\n\n    it('preserves the local import name for default imports', () => {\n      const input = `import MyIcons from '@expo/vector-icons/Entypo';`;\n      const output = applyTransform(input);\n      expect(output).toBe('import MyIcons from \"@react-native-vector-icons/entypo\";');\n    });\n\n    it('transforms all supported icon families', () => {\n      const families = [\n        ['AntDesign', 'ant-design'],\n        ['Entypo', 'entypo'],\n        ['EvilIcons', 'evil-icons'],\n        ['Feather', 'feather'],\n        ['FontAwesome', 'fontawesome'],\n        ['FontAwesome5', 'fontawesome5'],\n        ['FontAwesome6', 'fontawesome6'],\n        ['Fontisto', 'fontisto'],\n        ['Foundation', 'foundation'],\n        ['Ionicons', 'ionicons'],\n        ['MaterialCommunityIcons', 'material-design-icons'],\n        ['MaterialIcons', 'material-icons'],\n        ['Octicons', 'octicons'],\n        ['SimpleLineIcons', 'simple-line-icons'],\n        ['Zocial', 'zocial'],\n      ];\n\n      for (const [oldName, newName] of families) {\n        const input = `import Icon from '@expo/vector-icons/${oldName}';`;\n        const output = applyTransform(input);\n        expect(output).toContain(`from \"@react-native-vector-icons/${newName}\"`);\n      }\n    });\n\n    it('throws for unknown icon family in named import', () => {\n      const input = `import { UnknownFont } from '@expo/vector-icons';`;\n      expect(() => applyTransform(input)).toThrow('No mapping found for @expo/vector-icons/UnknownFont');\n    });\n\n    it('throws for unknown icon family in default import', () => {\n      const input = `import UnknownFont from '@expo/vector-icons/UnknownFont';`;\n      expect(() => applyTransform(input)).toThrow('No mapping found for @expo/vector-icons/UnknownFont');\n    });\n  });\n});\n"
  },
  {
    "path": "packages/codemod/src/checkGitStatus.ts",
    "content": "/* eslint-disable no-console */\nimport { execSync } from 'node:child_process';\n\nexport function checkGitStatus(dir: string): void {\n  try {\n    // Check if the directory is a git repository\n    execSync('git rev-parse --git-dir', { cwd: dir, stdio: 'pipe' });\n\n    // Check if there are any uncommitted changes\n    const status = execSync('git status --porcelain', {\n      cwd: dir,\n      encoding: 'utf8',\n    });\n\n    if (status.trim()) {\n      console.error('❌ Git working directory not clean. Commit or stash your changes before running the codemod.');\n      console.error('Uncommitted changes:');\n      console.error(status);\n      process.exit(1);\n    }\n\n    console.log('✅ Git repository is clean');\n  } catch {\n    // If git rev-parse fails, the directory is not a git repository\n    console.log('!  Directory is not a git repository. Proceeding without git status check.');\n  }\n}\n"
  },
  {
    "path": "packages/codemod/src/expo/import-transform.ts",
    "content": "import type { API, FileInfo, Options } from 'jscodeshift';\n\nimport { addNewFontImport } from './newFontImports';\n\nconst importsMap: Record<string, string> = {\n  '@expo/vector-icons/AntDesign': '@react-native-vector-icons/ant-design',\n  '@expo/vector-icons/Entypo': '@react-native-vector-icons/entypo',\n  '@expo/vector-icons/EvilIcons': '@react-native-vector-icons/evil-icons',\n  '@expo/vector-icons/Feather': '@react-native-vector-icons/feather',\n  '@expo/vector-icons/FontAwesome5': '@react-native-vector-icons/fontawesome5',\n  '@expo/vector-icons/FontAwesome5Pro': '@react-native-vector-icons/fontawesome5-pro',\n  '@expo/vector-icons/FontAwesome6': '@react-native-vector-icons/fontawesome6',\n  '@expo/vector-icons/FontAwesome6Pro': '@react-native-vector-icons/fontawesome6-pro',\n  '@expo/vector-icons/FontAwesome': '@react-native-vector-icons/fontawesome',\n  '@expo/vector-icons/Fontisto': '@react-native-vector-icons/fontisto',\n  '@expo/vector-icons/Foundation': '@react-native-vector-icons/foundation',\n  '@expo/vector-icons/Ionicons': '@react-native-vector-icons/ionicons',\n  '@expo/vector-icons/MaterialCommunityIcons': '@react-native-vector-icons/material-design-icons',\n  '@expo/vector-icons/MaterialIcons': '@react-native-vector-icons/material-icons',\n  '@expo/vector-icons/Octicons': '@react-native-vector-icons/octicons',\n  '@expo/vector-icons/SimpleLineIcons': '@react-native-vector-icons/simple-line-icons',\n  '@expo/vector-icons/Zocial': '@react-native-vector-icons/zocial',\n  // non-icon-family imports\n  '@expo/vector-icons/createIconSetFromIcoMoon': '@react-native-vector-icons/icomoon',\n  '@expo/vector-icons/createIconSetFromFontello': '@react-native-vector-icons/fontello',\n};\n\n// prefer transforms to default imports as they are easier to get right than named imports\nexport default function transform(fileInfo: FileInfo, api: API, options: Options) {\n  const j = api.jscodeshift;\n  const root = j(fileInfo.source);\n  const useStatic = options.useStatic === true;\n\n  const newFontImports = new Set<string>();\n\n  const resolveImportPath = (basePath: string): string => {\n    return useStatic ? `${basePath}/static` : basePath;\n  };\n\n  // Transform import statements from @expo/vector-icons\n  root.find(j.ImportDeclaration).forEach((path) => {\n    const { source } = path.value;\n\n    // Handle named imports: import { Ionicons, MaterialIcons } from '@expo/vector-icons'\n    if (source.type === 'StringLiteral' && source.value === '@expo/vector-icons') {\n      const { specifiers } = path.value;\n\n      if (specifiers) {\n        const newImports = specifiers\n          .map((spec) => {\n            if (spec.type === 'ImportSpecifier') {\n              const fontName = spec.imported.name;\n\n              // Find the correct mapping for this font\n              const oldName = `@expo/vector-icons/${fontName}`;\n              const newFontPath = importsMap[oldName];\n              if (!newFontPath) {\n                throw new Error(`No mapping found for ${oldName}. Migrate this import manually.`);\n              }\n\n              newFontImports.add(newFontPath);\n\n              return j.importDeclaration(\n                [j.importDefaultSpecifier(j.identifier(fontName))],\n                j.literal(resolveImportPath(newFontPath)),\n              );\n            }\n            return null;\n          })\n          .filter(Boolean);\n\n        // Replace the original import with new imports\n        if (newImports.length > 0) {\n          j(path).replaceWith(newImports);\n        }\n      }\n    }\n\n    // Handle default imports: import Ionicons from '@expo/vector-icons/Ionicons'\n    // or 'import Ionicons from '@expo/vector-icons/build/Ionicons'\n    if (\n      source.type === 'StringLiteral' &&\n      typeof source.value === 'string' &&\n      source.value.startsWith('@expo/vector-icons/')\n    ) {\n      const importPath = source.value.replace('/build/', '/');\n      const newFontPath = importsMap[importPath];\n      if (!newFontPath) {\n        throw new Error(`No mapping found for ${source.value}. Migrate this import manually.`);\n      }\n      newFontImports.add(newFontPath);\n\n      // Replace with new import\n      source.value = resolveImportPath(newFontPath);\n    }\n  });\n\n  if (newFontImports.size > 0) {\n    addNewFontImport(Array.from(newFontImports));\n  }\n\n  return newFontImports.size > 0 ? root.toSource() : undefined;\n}\n"
  },
  {
    "path": "packages/codemod/src/expo/index.ts",
    "content": "/* eslint-disable no-console */\n\nimport { run as jscodeshift } from 'jscodeshift/src/Runner';\nimport resolveFrom from 'resolve-from';\n\nimport { updatePackageJson } from './package-json';\n\nasync function shouldUseStaticImports(dir: string): Promise<boolean> {\n  const hasExpoDevClient = resolveFrom.silent(dir, 'expo-dev-client/package.json') != null;\n\n  if (hasExpoDevClient) {\n    console.log(\n      '\\nDetected expo-dev-client. Defaulting to /static imports (e.g. @react-native-vector-icons/material-icons/static).',\n    );\n  } else {\n    console.log(\n      '\\nNo expo-dev-client detected (assuming Expo Go). Using default imports (e.g. @react-native-vector-icons/material-icons).',\n    );\n  }\n  return hasExpoDevClient;\n}\n\nexport async function runExpoMigration(dir: string) {\n  const transformPath = require.resolve('./import-transform');\n\n  process.chdir(dir);\n  console.log(`Running Expo codemod in directory: ${dir}`);\n\n  const useStatic = await shouldUseStaticImports(dir);\n\n  await jscodeshift(transformPath, ['.'], {\n    verbose: process.env.VERBOSE === 'true' || process.env.VERBOSE === '1',\n    extensions: 'js,jsx,ts,tsx',\n    parser: 'tsx',\n    ignorePattern: '**/node_modules/**',\n    useStatic,\n  });\n  await updatePackageJson(dir);\n}\n"
  },
  {
    "path": "packages/codemod/src/expo/newFontImports.ts",
    "content": "import fs from 'node:fs';\nimport os from 'node:os';\nimport path from 'node:path';\n\nconst tmpFile = path.join(os.tmpdir(), 'rnvi-codemod-new-imports.txt');\n\nexport function addNewFontImport(fontNames: string[]) {\n  // this should be atomic and safe to call from multiple processes\n  fs.appendFileSync(tmpFile, fontNames.join(os.EOL) + os.EOL);\n}\n\nexport function getNewFontImports(): string[] {\n  if (!fs.existsSync(tmpFile)) {\n    return [];\n  }\n  const content = fs.readFileSync(tmpFile, 'utf8');\n  fs.unlinkSync(tmpFile);\n  return Array.from(new Set(content.split(os.EOL).filter(Boolean)));\n}\n"
  },
  {
    "path": "packages/codemod/src/expo/package-json.ts",
    "content": "/* eslint-disable no-console */\n\nimport { execSync } from 'node:child_process';\nimport fs from 'node:fs';\nimport os from 'node:os';\nimport path from 'node:path';\n\nimport { getNewFontImports } from './newFontImports';\n\nexport async function updatePackageJson(dir: string) {\n  const packageJsonPath = path.join(dir, 'package.json');\n\n  if (!fs.existsSync(packageJsonPath)) {\n    console.error('package.json not found');\n    return;\n  }\n\n  const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf8'));\n  if (!packageJson) {\n    console.error('package.json is not valid');\n    return;\n  }\n\n  if (packageJson.dependencies?.['@expo/vector-icons']) {\n    delete packageJson.dependencies['@expo/vector-icons'];\n  }\n\n  if (!packageJson.dependencies) {\n    packageJson.dependencies = {};\n  }\n\n  const newFontImports = getNewFontImports();\n\n  fs.writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2) + os.EOL);\n\n  execSync(`npx expo install ${newFontImports.join(' ')}`, {\n    cwd: dir,\n    stdio: 'inherit',\n  });\n\n  console.log(\n    `@expo/vector-icons was removed from package.json. As a replacement, the following ${newFontImports.length} packages were added: ${newFontImports.join(', ')}.`,\n  );\n  console.log('If you need to, you can add @expo/vector-icons back by running `npx expo install @expo/vector-icons`');\n}\n"
  },
  {
    "path": "packages/codemod/src/getVersion.ts",
    "content": "export const getVersion = async (pkg: string) => {\n  const packageJson = await fetch(`https://registry.npmjs.org/${pkg}/latest`).then(\n    (res) => res.json() as unknown as { version: string },\n  );\n  return `^${packageJson.version}`;\n};\n"
  },
  {
    "path": "packages/codemod/src/index.ts",
    "content": "#!/usr/bin/env node\n\n/* eslint-disable no-console */\n\nimport path from 'node:path';\n\nimport semver from 'semver';\n\nimport { checkGitStatus } from './checkGitStatus';\nimport { runExpoMigration } from './expo';\nimport { readPackageDeps } from './readPackageDeps';\n\nasync function main() {\n  const dir = process.argv[2];\n  if (!dir) {\n    console.error('Specify a directory in which to run the codemod');\n    process.exit(1);\n  }\n\n  checkGitStatus(dir);\n\n  const { dependencies, error } = readPackageDeps(dir);\n\n  if (error) {\n    console.error(`Unable to read package.json in ${dir}: ${error.message}`);\n    process.exit(1);\n  }\n\n  let version: string | undefined;\n\n  const expoVectorIcons = dependencies['@expo/vector-icons'];\n\n  if (expoVectorIcons) {\n    await runExpoMigration(dir);\n  } else {\n    console.log('Running codemod in', dir);\n    if (dependencies['react-native-vector-icons']) {\n      version = '11.x';\n      await import('./11.0');\n    } else {\n      const currentVersion = dependencies['@react-native-vector-icons/common'];\n\n      if (currentVersion) {\n        if (semver.satisfies(currentVersion, '12.x')) {\n          version = '12.x';\n          await import('./12.0');\n        } else {\n          console.error('Unsupported version of react-native-vector-icons');\n          process.exit(1);\n        }\n      }\n    }\n\n    if (!version) {\n      console.error(\n        `Have not found anything to migrate. Do you have \"react-native-vector-icons\" or \"@expo/vector-icons\" at ${path.join(dir, 'package.json')}?`,\n      );\n      process.exit(1);\n    }\n\n    console.log(`\n  Transform complete!\n  \n  Upgraded to version ${version}\n  \n  NOTE: You may need to run again to upgrade to the next version.\n  NOTE: You may need to run 'npm install' to install new dependencies.\n  \n  Check https://github.com/react-native-vector-icons/react-native-vector-icons/blob/master/MIGRATION.md for any manual steps\n  `);\n  }\n}\n\nmain().catch((e) => {\n  console.error(e);\n  process.exit(1);\n});\n"
  },
  {
    "path": "packages/codemod/src/readPackageDeps.ts",
    "content": "import fs from 'node:fs';\nimport path from 'node:path';\n\ntype Result =\n  | {\n      dependencies: Record<string, string>;\n      error: null;\n    }\n  | {\n      dependencies: null;\n      error: Error;\n    };\n\nexport const readPackageDeps = (dir: string): Result => {\n  try {\n    const packageJsonPath = path.join(dir, 'package.json');\n    const { dependencies: pkgDependencies } = JSON.parse(fs.readFileSync(packageJsonPath, 'utf8')) as {\n      dependencies: Record<string, string>;\n    };\n\n    return {\n      dependencies: pkgDependencies || {},\n      error: null,\n    };\n  } catch (err) {\n    return { dependencies: null, error: err as Error };\n  }\n};\n"
  },
  {
    "path": "packages/codemod/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react\",\n    \"lib\": [\"esnext\"],\n    \"module\": \"esnext\",\n    \"moduleResolution\": \"node\",\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"esnext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/common/.watchmanconfig",
    "content": "{}\n"
  },
  {
    "path": "packages/common/CHANGELOG.md",
    "content": "## 12.4.2 (2026-03-17)\n\n### 🩹 Fixes\n\n- simplify createIconSourceCache and remove error caching ([#1883](https://github.com/oblador/react-native-vector-icons/pull/1883))\n\n### ❤️ Thank You\n\n- Vojtech Novak\n\n## 12.4.1 (2026-03-10)\n\n### 🩹 Fixes\n\n- make expo modules detection lazy ([#1867](https://github.com/oblador/react-native-vector-icons/pull/1867))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.4.0 (2025-11-01)\n\n### 🩹 Fixes\n\n- allow string values in glyphmap ([#1850](https://github.com/oblador/react-native-vector-icons/pull/1850))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/get-image to 12.3.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.3.1 (2025-10-21)\n\n### 🩹 Fixes\n\n- supported node version range ([#1840](https://github.com/oblador/react-native-vector-icons/pull/1840))\n- correct required node version ([#1837](https://github.com/oblador/react-native-vector-icons/pull/1837))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.3.0 (2025-08-03)\n\n### 🩹 Fixes\n\n- remove @react-native-commmunity/cli as a dependency ([#1812](https://github.com/oblador/react-native-vector-icons/pull/1812))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/get-image to 12.2.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.2.0 (2025-07-20)\n\n### 🚀 Features\n\n- allow dynamic font loading with expo on web ([#1807](https://github.com/oblador/react-native-vector-icons/pull/1807))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.1.0 (2025-07-12)\n\n### 🚀 Features\n\n- allow using expo font for getImageSource ([#1788](https://github.com/oblador/react-native-vector-icons/pull/1788))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/get-image to 12.1.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.0.2 (2025-06-15)\n\n### 🩹 Fixes\n\n- new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774))\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.1 (2025-06-15)\n\n### 🩹 Fixes\n\n- remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767))\n- convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765))\n- updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c))\n- **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742))\n- **common:** use postscript name for font family on the web #1737 ([#1740](https://github.com/oblador/react-native-vector-icons/pull/1740), [#1737](https://github.com/oblador/react-native-vector-icons/issues/1737))\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n- Md. Jayed Hasan @JayedHasan232\n\n# 12.0.0 (2025-05-04)\n\nWith v12.0 you can remove `@react-native-vector-icons/common` from your `package.json` - unless you use it directly.\n\n### 🚀 Features\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n- add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702))\n\n### 🩹 Fixes\n\n- make the extra font warning yellow ([#1707](https://github.com/oblador/react-native-vector-icons/pull/1707))\n- upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691))\n- upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690))\n\n### ⚠️  Breaking Changes\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n\n### ❤️ Thank You\n\n- Chanphirom Sok @chanphiromsok\n- John Ferlito @johnf\n"
  },
  {
    "path": "packages/common/babel.config.js",
    "content": "module.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/common/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/common\",\n  \"version\": \"12.4.2\",\n  \"description\": \"Customizable Icons for React Native with support for image source and full styling.\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    }\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli lib\",\n    \"prepare\": \"bob build && chmod +x lib/commonjs/scripts/updatePlist.js\",\n    \"prepack\": \"cp ../../README.md .\",\n    \"postpack\": \"rm README.md\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"bin\": {\n    \"rnvi-update-plist\": \"lib/commonjs/scripts/updatePlist.js\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/common\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\"\n  },\n  \"dependencies\": {\n    \"find-up\": \"^7.0.0\",\n    \"picocolors\": \"^1.1.1\",\n    \"plist\": \"^3.1.0\"\n  },\n  \"devDependencies\": {\n    \"@types/plist\": \"^3.0.5\",\n    \"@types/react\": \"^19.0.12\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"peerDependencies\": {\n    \"@react-native-vector-icons/get-image\": \"workspace:^\",\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"peerDependenciesMeta\": {\n    \"@react-native-vector-icons/get-image\": {\n      \"optional\": true\n    }\n  },\n  \"engines\": {\n    \"node\": \">=20.19.0 <21.0.0 || >=22.0.0\"\n  },\n  \"jest\": {\n    \"preset\": \"react-native\",\n    \"modulePathIgnorePatterns\": [\n      \"<rootDir>/example/node_modules\",\n      \"<rootDir>/lib/\"\n    ]\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  },\n  \"nx\": {\n    \"targets\": {\n      \"build\": {\n        \"dependsOn\": [\n          \"@react-native-vector-icons/get-image:build\"\n        ]\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "packages/common/src/create-icon-set.tsx",
    "content": "// eslint-disable-next-line import/no-extraneous-dependencies\nimport React, { forwardRef, type Ref, useEffect } from 'react';\n// eslint-disable-next-line import/no-extraneous-dependencies\nimport { Platform, Text, type TextProps, type TextStyle } from 'react-native';\n\nimport { createIconSourceCache } from './create-icon-source-cache';\nimport { DEFAULT_ICON_COLOR, DEFAULT_ICON_SIZE } from './defaults';\nimport { dynamicLoader } from './dynamicLoading/dynamic-font-loading';\nimport { isDynamicLoadingEnabled } from './dynamicLoading/dynamic-loading-setting';\nimport type { FontSource } from './dynamicLoading/types';\nimport { getImageSource as getImageSourceImpl, getImageSourceSync as getImageSourceSyncImpl } from './get-image-source';\n\ntype ValueData = { uri: string; scale: number };\ntype GetImageSourceSyncIconFunc<GM> = (name: GM, size?: number, color?: TextStyle['color']) => ValueData | undefined;\ntype GetImageSourceIconFunc<GM> = (\n  name: GM,\n  size?: number,\n  color?: TextStyle['color'],\n) => Promise<ValueData | undefined>;\n\nexport type IconProps<T> = TextProps & {\n  name: T;\n  size?: number;\n  color?: TextStyle['color'];\n  innerRef?: Ref<Text>;\n};\n\ntype GlyphMap = Record<string, number | string>;\n\nexport type IconComponent<GM extends GlyphMap> = React.FC<\n  TextProps & {\n    name: keyof GM;\n    size?: number;\n    color?: TextStyle['color'];\n    innerRef?: Ref<Text>;\n  } & React.RefAttributes<Text>\n> & {\n  getImageSource: GetImageSourceIconFunc<keyof GM>;\n  getImageSourceSync: GetImageSourceSyncIconFunc<keyof GM>;\n};\n\nexport type CreateIconSetOptions = {\n  postScriptName: string;\n  fontFileName: string;\n  fontSource?: FontSource;\n  fontStyle?: TextProps['style'];\n};\n\nexport function createIconSet<GM extends GlyphMap>(\n  glyphMap: GM,\n  postScriptName: string,\n  fontFileName: string,\n  fontStyle?: TextProps['style'],\n): IconComponent<GM>;\nexport function createIconSet<GM extends GlyphMap>(glyphMap: GM, options: CreateIconSetOptions): IconComponent<GM>;\nexport function createIconSet<GM extends GlyphMap>(\n  glyphMap: GM,\n  postScriptNameOrOptions: string | CreateIconSetOptions,\n  fontFileNameParam?: string,\n  fontStyleParam?: TextProps['style'],\n): IconComponent<GM> {\n  const { postScriptName, fontFileName, fontStyle } =\n    typeof postScriptNameOrOptions === 'string'\n      ? {\n          postScriptName: postScriptNameOrOptions,\n          fontFileName: fontFileNameParam,\n          fontStyle: fontStyleParam,\n        }\n      : postScriptNameOrOptions;\n\n  const fontBasename = fontFileName ? fontFileName.replace(/\\.(otf|ttf)$/, '') : postScriptName;\n\n  const fontReference = Platform.select({\n    windows: `/Assets/${fontFileName}#${postScriptName}`,\n    android: fontBasename,\n    default: postScriptName,\n  });\n\n  const styleOverrides: TextProps['style'] = {\n    fontFamily: fontReference,\n    fontWeight: 'normal',\n    fontStyle: 'normal',\n  };\n\n  const resolveGlyph = (name: keyof GM): string => {\n    const glyph = glyphMap[name] || '?';\n\n    if (typeof glyph === 'number') {\n      return String.fromCodePoint(glyph);\n    }\n\n    return glyph;\n  };\n\n  const Icon = ({\n    name,\n    size = DEFAULT_ICON_SIZE,\n    color = DEFAULT_ICON_COLOR,\n    style,\n    children,\n    allowFontScaling = false,\n    innerRef,\n    ...props\n  }: IconProps<keyof GM>) => {\n    const [isFontLoaded, setIsFontLoaded] = React.useState(\n      isDynamicLoadingEnabled() ? dynamicLoader.isLoaded(fontReference) : true,\n    );\n    const glyph = isFontLoaded && name ? resolveGlyph(name) : '';\n\n    // biome-ignore lint/correctness/useExhaustiveDependencies: the dependencies never change\n    useEffect(() => {\n      let isMounted = true;\n\n      if (\n        !isFontLoaded &&\n        typeof postScriptNameOrOptions === 'object' &&\n        typeof postScriptNameOrOptions.fontSource !== 'undefined'\n      ) {\n        dynamicLoader.loadFontAsync(fontReference, postScriptNameOrOptions.fontSource).finally(() => {\n          if (isMounted) {\n            setIsFontLoaded(true);\n          }\n        });\n      }\n      return () => {\n        isMounted = false;\n      };\n    }, []);\n\n    const styleDefaults = {\n      fontSize: size,\n      color,\n    };\n\n    const newProps: TextProps = {\n      ...props,\n      style: [styleDefaults, style, styleOverrides, fontStyle || {}],\n      allowFontScaling,\n    };\n\n    return (\n      <Text ref={innerRef} selectable={false} {...newProps}>\n        {glyph}\n        {children}\n      </Text>\n    );\n  };\n\n  const WrappedIcon = forwardRef<Text, IconProps<keyof typeof glyphMap>>((props, ref) => (\n    <Icon innerRef={ref} {...props} />\n  ));\n  WrappedIcon.displayName = `Icon(${postScriptName})`;\n\n  const imageSourceCache = createIconSourceCache();\n\n  const getImageSource: GetImageSourceIconFunc<keyof GM> = async (name, size, color) => {\n    if (typeof postScriptNameOrOptions === 'object' && typeof postScriptNameOrOptions.fontSource !== 'undefined') {\n      await dynamicLoader.loadFontAsync(fontReference, postScriptNameOrOptions.fontSource);\n    }\n    return getImageSourceImpl(imageSourceCache, fontReference, resolveGlyph(name), size, color);\n  };\n\n  const getImageSourceSync: GetImageSourceSyncIconFunc<keyof GM> = (name, size, color) =>\n    getImageSourceSyncImpl(imageSourceCache, fontReference, resolveGlyph(name), size, color);\n\n  const IconNamespace = Object.assign(WrappedIcon, {\n    getImageSource,\n    getImageSourceSync,\n  });\n\n  return IconNamespace;\n}\n"
  },
  {
    "path": "packages/common/src/create-icon-source-cache.ts",
    "content": "type ValueData = { uri: string; scale: number };\n\nexport function createIconSourceCache() {\n  const cache = new Map<string, ValueData>();\n\n  const setValue = (key: string, value: ValueData) => cache.set(key, value);\n\n  const get = (key: string) => cache.get(key);\n\n  return { setValue, get };\n}\n"
  },
  {
    "path": "packages/common/src/defaults.ts",
    "content": "export const DEFAULT_ICON_SIZE = 12;\nexport const DEFAULT_ICON_COLOR = 'black';\n"
  },
  {
    "path": "packages/common/src/dynamicLoading/dynamic-font-loading.ts",
    "content": "/*\n * The following imports are always present when react native is installed\n * in the future, more explicit apis will be exposed by the core, including typings\n * */\nimport { Image, Platform } from 'react-native';\n\n// @ts-expect-error missing types\n// eslint-disable-next-line import/no-extraneous-dependencies,import/no-unresolved\nimport { getAssetByID } from '@react-native/assets-registry/registry';\n\nimport { assertExpoModulesPresent, getErrorCallback, type LoadAsyncAsset } from './dynamic-loading-setting';\nimport type { DynamicLoader, FontSource } from './types';\n\nconst loadPromises: { [fontSource: string]: Promise<void> } = {};\n\nconst loadFontAsync = async (fontFamily: string, fontSource: FontSource): Promise<void> => {\n  const globalRef = globalThis;\n  assertExpoModulesPresent(globalRef);\n\n  const expoModules = globalRef.expo.modules;\n\n  if (loadPromises[fontFamily]) {\n    return loadPromises[fontFamily];\n  }\n\n  loadPromises[fontFamily] = (async function LoadFont() {\n    try {\n      const localUri = await (() => {\n        if (typeof fontSource === 'string') {\n          // a local filesystem uri\n          return fontSource;\n        }\n        // a module id\n        const { uri, type, hash } = getLocalFontUrl(fontSource, fontFamily);\n        return expoModules.ExpoAsset.downloadAsync(uri, hash, type);\n      })();\n\n      const asset = Platform.select<LoadAsyncAsset>({\n        web: { uri: localUri, display: 'auto' },\n        default: localUri,\n      });\n      await expoModules.ExpoFontLoader.loadAsync(fontFamily, asset);\n    } catch (error) {\n      console.error(`Failed to load font ${fontFamily}`, error); // eslint-disable-line no-console\n\n      getErrorCallback()?.({\n        error: error as Error,\n        fontFamily,\n        fontSource,\n      });\n    } finally {\n      delete loadPromises[fontFamily];\n    }\n  })();\n\n  return loadPromises[fontFamily];\n};\n\ntype AssetRegistryEntry = {\n  name: string;\n  httpServerLocation: string;\n  hash: string;\n  type: string; // file extension\n};\n\nconst getLocalFontUrl = (fontModuleId: number, fontFamily: string) => {\n  const assetMeta: AssetRegistryEntry = getAssetByID(fontModuleId);\n  if (!assetMeta) {\n    throw new Error(`no asset found for font family \"${fontFamily}\", moduleId: ${String(fontModuleId)}`);\n  }\n\n  const assetSource = Image.resolveAssetSource(fontModuleId);\n\n  return { ...assetMeta, ...assetSource };\n};\n\nconst loadedFontsCache: { [name: string]: boolean } = {};\n\nconst isLoadedNative = (fontFamily: string) => {\n  if (fontFamily in loadedFontsCache) {\n    return true;\n  }\n  const globalRef = globalThis;\n  assertExpoModulesPresent(globalRef);\n\n  const loadedNativeFonts = globalRef.expo.modules.ExpoFontLoader.getLoadedFonts();\n  loadedNativeFonts.forEach((font) => {\n    loadedFontsCache[font] = true;\n  });\n\n  return fontFamily in loadedFontsCache;\n};\n\nexport const dynamicLoader: DynamicLoader = {\n  isLoaded: isLoadedNative,\n  loadFontAsync,\n};\n"
  },
  {
    "path": "packages/common/src/dynamicLoading/dynamic-loading-setting.ts",
    "content": "import { Platform } from 'react-native';\n\nimport type { FontSource } from './types';\n\ntype ExpoAssetModule = {\n  // definition from\n  // https://github.com/expo/expo/blob/1f5a5991d14aad09282d1ce1612b44d30e7e7d3d/packages/expo-asset/ios/AssetModule.swift#L23\n  downloadAsync: (uri: string, hash: string | undefined, type: string) => Promise<string>;\n};\n\n// this is a file:// uri on native, or an object with uri and display on web\nexport type LoadAsyncAsset = string | { uri: string; display: string };\n\ntype ExpoFontLoaderModule = {\n  // definition from\n  // https://github.com/expo/expo/blob/1f5a5991d14aad09282d1ce1612b44d30e7e7d3d/packages/expo-font/ios/FontLoaderModule.swift#L18\n  getLoadedFonts: () => string[];\n  loadAsync: (fontFamilyAlias: string, asset: LoadAsyncAsset) => Promise<void>;\n};\n\n// RenderToImageResult needs to be usable as the `source` prop for image,\n// so it must stay compatible with ImageURISource type\ntype RenderToImageResult = {\n  /**\n   * The file uri to the image.\n   */\n  uri: string;\n  /**\n   * Image width in dp.\n   */\n  width: number;\n  /**\n   * Image height in dp.\n   */\n  height: number;\n\n  /**\n   * Scale factor of the image. Multiply the dp dimensions by this value to get the dimensions in pixels.\n   * */\n  scale: number;\n};\n\ntype ExpoFontUtilsModule = {\n  renderToImageAsync: (\n    glyph: string,\n    options: {\n      fontFamily?: string;\n      size?: number;\n      color?: number;\n    },\n  ) => Promise<RenderToImageResult>;\n};\n\ndeclare global {\n  interface ExpoGlobal {\n    modules: {\n      ExpoAsset?: ExpoAssetModule;\n      ExpoFontLoader?: ExpoFontLoaderModule;\n      ExpoFontUtils?: ExpoFontUtilsModule;\n    };\n  }\n\n  // eslint-disable-next-line vars-on-top\n  var expo: ExpoGlobal | undefined;\n}\n\ntype ExpoGlobalType = {\n  modules: {\n    ExpoAsset: ExpoAssetModule;\n    ExpoFontLoader: ExpoFontLoaderModule;\n  };\n};\n\n// biome-ignore lint/suspicious/noExplicitAny: this is used internally with globalThis\nfunction getIsDynamicLoadingSupported(globalObj: any): globalObj is {\n  expo: ExpoGlobalType;\n} {\n  return (\n    globalObj?.expo &&\n    (Platform.OS === 'web' || typeof globalObj.expo.modules?.ExpoAsset?.downloadAsync === 'function') &&\n    typeof globalObj.expo.modules?.ExpoFontLoader?.getLoadedFonts === 'function' &&\n    typeof globalObj.expo.modules?.ExpoFontLoader?.loadAsync === 'function'\n  );\n}\n\n// biome-ignore lint/suspicious/noExplicitAny: this is used internally with globalThis\nexport function getIsRenderToImageSupported(globalObj: any): globalObj is {\n  expo: {\n    modules: {\n      ExpoFontUtils: ExpoFontUtilsModule;\n    };\n  };\n} {\n  return globalObj?.expo && typeof globalObj.expo.modules?.ExpoFontUtils?.renderToImageAsync === 'function';\n}\n\nexport function assertExpoModulesPresent(globalObj: unknown): asserts globalObj is { expo: ExpoGlobalType } {\n  if (!getIsDynamicLoadingSupported(globalObj)) {\n    throw new Error('Dynamic font loading not supported. Upgrade to latest expo and expo-font.');\n  }\n}\n\n// Detection of Expo modules is deferred to first use so that import order\n// doesn't matter. By the time a component renders, all imports (including Expo)\n// have been evaluated and globalThis.expo is available.\n\nlet dynamicFontLoadingOverride: boolean | null = null;\n\nexport const isDynamicLoadingSupported = () => getIsDynamicLoadingSupported(globalThis);\n\n/**\n * Set whether dynamic loading of fonts is enabled.\n * Currently, the presence of Expo Asset and Font Loader modules is a prerequisite for enabling.\n * In the future, React Native core apis will be used for dynamic font loading.\n *\n * @param value - whether dynamic loading of fonts is enabled\n * @returns `true` if dynamic loading of fonts was successfully set. `false` otherwise.\n * */\nexport const setDynamicLoadingEnabled = (value: boolean): boolean => {\n  if (!getIsDynamicLoadingSupported(globalThis)) {\n    if (process.env.NODE_ENV !== 'production' && !!value) {\n      const hasNecessaryExpoModules =\n        (Platform.OS === 'web' || !!globalThis.expo?.modules?.ExpoAsset) && !!globalThis.expo?.modules?.ExpoFontLoader;\n      const message = hasNecessaryExpoModules\n        ? 'Expo is installed, but does not support dynamic font loading. Make sure to use Expo SDK 54 or newer.'\n        : 'Necessary Expo modules not found. Dynamic font loading is not available when necessary Expo modules are not present.';\n      console.error(message); // eslint-disable-line no-console\n    }\n    return false;\n  }\n\n  dynamicFontLoadingOverride = !!value;\n\n  return true;\n};\n\n/**\n * Whether dynamic loading of fonts is enabled.\n * */\nexport const isDynamicLoadingEnabled = (): boolean =>\n  dynamicFontLoadingOverride ?? getIsDynamicLoadingSupported(globalThis);\n\ntype ErrorCallback = (args: { error: Error; fontFamily: string; fontSource: FontSource }) => void;\n\nlet dynamicLoadingErrorCallback: undefined | ErrorCallback;\n\n/**\n * Set a callback to be called when an error occurs during dynamic font loading.\n * */\nexport const setDynamicLoadingErrorCallback = (callback: ErrorCallback) => {\n  dynamicLoadingErrorCallback = callback;\n};\n\nexport const getErrorCallback = () => dynamicLoadingErrorCallback;\n"
  },
  {
    "path": "packages/common/src/dynamicLoading/types.ts",
    "content": "// the result of calling require('path')\ntype ModuleId = number;\ntype LocalFileSystemUri = string;\n\nexport type FontSource = ModuleId | LocalFileSystemUri;\n\nexport type DynamicLoader = {\n  loadFontAsync: (fontFamily: string, fontSource: FontSource) => Promise<void>;\n  isLoaded: (fontFamily: string) => boolean;\n};\n"
  },
  {
    "path": "packages/common/src/get-image-library.ts",
    "content": "import { getIsRenderToImageSupported } from './dynamicLoading/dynamic-loading-setting';\n\n// eslint-disable-next-line import/no-mutable-exports\nlet NativeIconAPI: typeof import('@react-native-vector-icons/get-image') | null = null;\n\ntry {\n  // eslint-disable-next-line global-require,import/no-extraneous-dependencies,@typescript-eslint/no-require-imports\n  NativeIconAPI = require('@react-native-vector-icons/get-image');\n} catch {\n  // if this fails, it's likely due to:\n  // \"Invariant Violation: TurboModuleRegistry.getEnforcing(...): 'VectorIcons' could not be found. ...\"\n  // No warning at this stage.\n}\n\nconst globalRef = globalThis;\nconst hasExpoRenderToImage = getIsRenderToImageSupported(globalRef);\n\nexport const ensureGetImageAvailable = () => {\n  if (NativeIconAPI) {\n    NativeIconAPI.ensureNativeModuleAvailable();\n    return NativeIconAPI;\n  }\n  if (hasExpoRenderToImage) {\n    const { ExpoFontUtils } = globalRef.expo.modules;\n    return {\n      getImageForFont: async (fontReference: string, glyph: string, size: number, color: number) => {\n        const result = await ExpoFontUtils.renderToImageAsync(glyph, {\n          fontFamily: fontReference,\n          size,\n          color,\n        });\n        return result.uri;\n      },\n      getImageForFontSync: () => {\n        throw new Error(\n          'You attempted to call `getImageForFontSync`. Expo dev client with `@react-native-vector-icons/get-image` installed is required for this. Alternatively, call `getImageForFont` or generate the image yourself and bundle it with the app.',\n        );\n      },\n    };\n  }\n  throw new Error(\n    'Error in getImageSource / getImageSourceSync: You need to either (1) install `@react-native-vector-icons/get-image` or (2) use Expo SDK 54+ (Expo dev client or Expo Go). Check your setup and rebuild the app.',\n  );\n};\n"
  },
  {
    "path": "packages/common/src/get-image-source.ts",
    "content": "import type { TextStyle } from 'react-native';\nimport { PixelRatio, processColor } from 'react-native';\n\nimport type { createIconSourceCache } from './create-icon-source-cache';\nimport { DEFAULT_ICON_COLOR, DEFAULT_ICON_SIZE } from './defaults';\nimport { ensureGetImageAvailable } from './get-image-library';\n\nexport const getImageSourceSync = (\n  imageSourceCache: ReturnType<typeof createIconSourceCache>,\n  fontReference: string,\n  glyph: string,\n  size = DEFAULT_ICON_SIZE,\n  color: TextStyle['color'] = DEFAULT_ICON_COLOR,\n) => {\n  const NativeIconAPI = ensureGetImageAvailable();\n\n  const processedColor = processColor(color);\n  const cacheKey = `${glyph}:${size}:${String(processedColor)}`;\n\n  const maybeCachedValue = imageSourceCache.get(cacheKey);\n  if (maybeCachedValue !== undefined) {\n    return maybeCachedValue;\n  }\n\n  const imagePath = NativeIconAPI.getImageForFontSync(\n    fontReference,\n    glyph,\n    size,\n    processedColor as number, // FIXME what if a non existent colour was passed in?,\n  );\n  const value = { uri: imagePath, scale: PixelRatio.get() };\n  imageSourceCache.setValue(cacheKey, value);\n  return value;\n};\n\nexport const getImageSource = async (\n  imageSourceCache: ReturnType<typeof createIconSourceCache>,\n  fontReference: string,\n  glyph: string,\n  size = DEFAULT_ICON_SIZE,\n  color: TextStyle['color'] = DEFAULT_ICON_COLOR,\n) => {\n  const NativeIconAPI = ensureGetImageAvailable();\n\n  const processedColor = processColor(color);\n  const cacheKey = `${glyph}:${size}:${String(processedColor)}`;\n\n  const maybeCachedValue = imageSourceCache.get(cacheKey);\n  if (maybeCachedValue !== undefined) {\n    return maybeCachedValue;\n  }\n\n  const imagePath = await NativeIconAPI.getImageForFont(fontReference, glyph, size, processedColor as number);\n  const value = { uri: imagePath, scale: PixelRatio.get() };\n  imageSourceCache.setValue(cacheKey, value);\n  return value;\n};\n"
  },
  {
    "path": "packages/common/src/index.ts",
    "content": "export type { CreateIconSetOptions, IconComponent, IconProps } from './create-icon-set';\nexport { createIconSet } from './create-icon-set';\nexport { DEFAULT_ICON_COLOR, DEFAULT_ICON_SIZE } from './defaults';\nexport {\n  isDynamicLoadingEnabled,\n  isDynamicLoadingSupported,\n  setDynamicLoadingEnabled,\n  setDynamicLoadingErrorCallback,\n} from './dynamicLoading/dynamic-loading-setting';\n"
  },
  {
    "path": "packages/common/src/scripts/common.ts",
    "content": "import fs from 'node:fs';\nimport path from 'node:path';\n\nimport { findUpSync } from 'find-up';\n\n/**\n * Source vendored and simplified from @react-native-community/cli\n */\nconst resolveNodeModuleDir = (root: string, pkgName: string) => {\n  const packageDir = findUpSync(path.join('node_modules', pkgName), {\n    cwd: root,\n    type: 'directory',\n  });\n\n  return packageDir;\n};\n\nconst getPackageJson = (filename: string) => {\n  const packageData = fs.readFileSync(filename, 'utf-8');\n  const packageJson = JSON.parse(packageData);\n\n  return packageJson;\n};\n\nconst getPackageFontDirectories = (packageJsonFilename: string) => {\n  const rootPackageJson = getPackageJson(packageJsonFilename);\n  const dependencies = Object.keys(rootPackageJson.dependencies || {});\n\n  const packageDirs: string[] = [];\n  dependencies.forEach((dependency) => {\n    const dir = resolveNodeModuleDir(packageJsonFilename, dependency);\n    const packageJson = getPackageJson(`${dir}/package.json`);\n    if (packageJson.keywords?.includes?.('react-native-vector-icons-icon')) {\n      packageDirs.push(`${dir}/fonts`);\n    }\n  });\n\n  return packageDirs;\n};\n\nconst getLocalFontsDir = (packageJsonFilename: string) => {\n  const rootPackageJson = getPackageJson(packageJsonFilename);\n  const config = rootPackageJson.reactNativeVectorIcons || {};\n\n  return `${path.dirname(packageJsonFilename)}/${config.fontDir || 'rnvi-fonts'}`;\n};\n\nconst getFonts = (fontDir: string) => {\n  if (!fs.existsSync(fontDir)) {\n    return [];\n  }\n\n  const fonts = fs.readdirSync(fontDir);\n  const fontPaths = fonts.map((font) => `${fontDir}/${font}`);\n\n  return fontPaths;\n};\n\nexport const getFontPaths = (packageJsonFilename: string) => {\n  const packageDirs = getPackageFontDirectories(packageJsonFilename);\n  packageDirs.push(getLocalFontsDir(packageJsonFilename));\n  const fonts = packageDirs.map(getFonts);\n\n  return fonts.flat();\n};\n"
  },
  {
    "path": "packages/common/src/scripts/updatePlist.ts",
    "content": "#!/usr/bin/env node\n/* eslint-disable no-console */\n\nimport fs from 'node:fs';\nimport * as path from 'node:path';\n\nimport pc from 'picocolors';\nimport * as plist from 'plist';\n\nimport { getFontPaths } from './common';\n\nconst getFontName = (fontPath: string) => path.basename(fontPath);\n\nconst packageJsonFilename = process.argv[2];\nif (!packageJsonFilename) {\n  throw new Error('Need the path to the root package.json as the first argument');\n}\n\nconst infoPlistFilename = process.argv[3];\nif (!infoPlistFilename) {\n  throw new Error('Need the path to the Info.plist as the second argument');\n}\n\nconst fonts = getFontPaths(packageJsonFilename);\nconsole.log(`Found ${fonts.length} fonts`);\n\nconst infoPlistContent = fs.readFileSync(infoPlistFilename, 'utf8');\nconst infoPlist = plist.parse(infoPlistContent) as Record<string, string[]>;\n\nconst plistFonts = new Set(infoPlist.UIAppFonts || []);\nconst providedFonts = new Set(fonts.map(getFontName));\n\nlet hasChanges = false;\n\n// Check for missing fonts and add them\nprovidedFonts.forEach((font) => {\n  if (!plistFonts.has(font)) {\n    plistFonts.add(font);\n    console.log(pc.green(`Added ${font}`));\n    hasChanges = true;\n  } else {\n    console.log(`Existing ${font}`);\n  }\n});\n\n// Check for extra fonts in Info.plist\nplistFonts.forEach((font) => {\n  if (!providedFonts.has(font)) {\n    console.log(pc.yellow(`Extra ${font} (Please remove manually if not needed)`));\n  }\n});\n\n// Update Info.plist if there were changes\nif (hasChanges) {\n  infoPlist.UIAppFonts = Array.from(plistFonts);\n  const updatedInfoPlistContent = plist.build(infoPlist).replace(/^ {2}/gm, '').replace(/ {2}/gm, '\\t');\n\n  fs.writeFileSync(infoPlistFilename, updatedInfoPlistContent, 'utf8');\n}\n"
  },
  {
    "path": "packages/common/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/common/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/directory/.gitignore",
    "content": "# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.\n\n# dependencies\n/node_modules\n/.pnp\n.pnp.js\n\n# testing\n/coverage\n\n# production\n/build\n\n# misc\n.DS_Store\n.env.local\n.env.development.local\n.env.test.local\n.env.production.local\n\nnpm-debug.log*\n\ngenerated\n"
  },
  {
    "path": "packages/directory/CHANGELOG.md",
    "content": ""
  },
  {
    "path": "packages/directory/README.md",
    "content": "# Getting Started with Create React App\n\nThis project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).\n\n## Available Scripts\n\nIn the project directory, you can run:\n\n### `pnpm run start`\n\nRuns the app in the development mode.\\\nOpen [http://localhost:3000](http://localhost:3000) to view it in the browser.\n\nThe page will reload if you make edits.\\\nYou will also see any lint errors in the console.\n\n### `pnpm run test`\n\nLaunches the test runner in the interactive watch mode.\\\nSee the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.\n\n### `pnpm run build`\n\nBuilds the app for production to the `build` folder.\\\nIt correctly bundles React in production mode and optimizes the build for the best performance.\n\nThe build is minified and the filenames include the hashes.\\\nYour app is ready to be deployed!\n\nSee the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.\n\n### `pnpm run eject`\n\n**Note: this is a one-way operation. Once you `eject`, you can't go back!**\n\nIf you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.\n\nInstead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.\n\nYou don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.\n\n## Learn More\n\nYou can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).\n\nTo learn React, check out the [React documentation](https://reactjs.org/).\n"
  },
  {
    "path": "packages/directory/bin/generate-font-styles.mts",
    "content": "#!/usr/bin/env -S node --experimental-strip-types --disable-warning=ExperimentalWarning\n\nimport path from 'node:path';\n\nimport { globSync } from 'glob';\n\nconst customFontMap = {\n  'FontAwesome5_Solid.ttf': 'FontAwesome5',\n  'FontAwesome5_Brands.ttf': 'FontAwesome5Brands',\n  'FontAwesome6_Solid.ttf': 'FontAwesome6',\n  'FontAwesome6_Brands.ttf': 'FontAwesome6Brands',\n};\n\nconst fontFiles = globSync('src/generated/fonts/*.ttf');\n\nconst styles = fontFiles\n  .map((file) => path.basename(file))\n  .map((file) => ({\n    file,\n    fontFamily: customFontMap[file] || path.basename(file, '.ttf'),\n  }))\n  .map(\n    ({ file, fontFamily }) => `\n@font-face {\n  font-family: '${fontFamily}';\n  src: url('./fonts/${file}') format('truetype');\n}\n`,\n  )\n  .join('\\n');\n\nprocess.stdout.write(styles);\n"
  },
  {
    "path": "packages/directory/bin/generate-glyphmap-index.mts",
    "content": "#!/usr/bin/env -S node --experimental-strip-types --disable-warning=ExperimentalWarning\n\nimport path from 'node:path';\n\nimport { globSync } from 'glob';\n\nconst glyphMapFiles = globSync('../*/glyphmaps/*.json', { ignore: '../fontawesome[56]*/**' });\n\nconst fontAwesome5Glyphmap = (\n  await import(path.join(import.meta.dirname, '../../fontawesome5/glyphmaps/', 'FontAwesome5.json'), {\n    with: { type: 'json' },\n  })\n).default;\nconst fontAwesome5Meta = (\n  await import(path.join(import.meta.dirname, '../../fontawesome5/glyphmaps/', 'FontAwesome5_meta.json'), {\n    with: { type: 'json' },\n  })\n).default;\n\nconst fontAwesome6Glyphmap = (\n  await import(path.join(import.meta.dirname, '../../fontawesome6/glyphmaps/', 'FontAwesome6.json'), {\n    with: { type: 'json' },\n  })\n).default;\nconst fontAwesome6Meta = (\n  await import(path.join(import.meta.dirname, '../../fontawesome6/glyphmaps/', 'FontAwesome6_meta.json'), {\n    with: { type: 'json' },\n  })\n).default;\n\nconst pickGlyps = (glyps: string[], glyphmap: Record<string, string[]>) =>\n  // eslint-disable-next-line implicit-arrow-linebreak\n  glyps.reduce((acc, glyp) => {\n    acc[glyp] = glyphmap[glyp];\n    return acc;\n  }, {});\n\nconst index: Record<string, unknown> = {\n  FontAwesome5: pickGlyps(fontAwesome5Meta.solid, fontAwesome5Glyphmap),\n  FontAwesome5Brands: pickGlyps(fontAwesome5Meta.brand, fontAwesome5Glyphmap),\n  FontAwesome6: pickGlyps(fontAwesome6Meta.solid, fontAwesome6Glyphmap),\n  FontAwesome6Brands: pickGlyps(fontAwesome6Meta.brand, fontAwesome6Glyphmap),\n};\n\n// eslint-disable-next-line no-restricted-syntax\nfor (const file of glyphMapFiles) {\n  const name = path.basename(file, '.json');\n  // eslint-disable-next-line no-await-in-loop\n  const jsonModule = await import(path.join(import.meta.dirname, '..', file), {\n    with: { type: 'json' },\n  });\n\n  index[name] = jsonModule.default;\n}\n\nprocess.stdout.write(JSON.stringify(index, null, 2));\n"
  },
  {
    "path": "packages/directory/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/directory\",\n  \"version\": \"12.0.0-alpha.20\",\n  \"private\": true,\n  \"homepage\": \"https://oblador.github.io/react-native-vector-icons\",\n  \"dependencies\": {\n    \"@testing-library/dom\": \"^10.4.0\",\n    \"@testing-library/jest-dom\": \"^6.6.3\",\n    \"@testing-library/react\": \"^16.3.0\",\n    \"@testing-library/user-event\": \"^13.5.0\",\n    \"@types/jest\": \"^27.5.2\",\n    \"@types/node\": \"^20.17.11\",\n    \"@types/react\": \"^19.1.0\",\n    \"@types/react-dom\": \"^19.1.0\",\n    \"glob\": \"^11.0.0\",\n    \"react\": \"^19.1.0\",\n    \"react-dom\": \"^19.1.0\",\n    \"react-scripts\": \"5.0.1\",\n    \"typescript\": \"^5.7.2\",\n    \"web-vitals\": \"^4.2.4\"\n  },\n  \"scripts\": {\n    \"start\": \"FAST_REFRESH=false react-scripts start\",\n    \"build\": \"react-scripts build\",\n    \"test\": \"react-scripts test\",\n    \"eject\": \"react-scripts eject\",\n    \"generate-glyphmap-index\": \"mkdir -p src/generated &&  bin/generate-glyphmap-index.mts > src/generated/glyphmapIndex.json\",\n    \"generate-font-index\": \"mkdir -p src/generated/fonts && cp ../*/fonts/*.ttf src/generated/fonts && bin/generate-font-styles.mts > src/generated/fonts.css\",\n    \"prepare\": \"rm -rf src/generated && pnpm run generate-glyphmap-index && pnpm run generate-font-index\"\n  },\n  \"browserslist\": {\n    \"production\": [\n      \">0.2%\",\n      \"not dead\",\n      \"not op_mini all\"\n    ],\n    \"development\": [\n      \"last 1 chrome version\",\n      \"last 1 firefox version\",\n      \"last 1 safari version\"\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/directory/public/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"utf-8\" />\n    <link rel=\"icon\" href=\"%PUBLIC_URL%/favicon.ico\" />\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n    <meta name=\"description\" content=\"Discover thousands of vector icons for your React Native applications. Browse our extensive directory of icons and find the perfect one for your project. Download and use with ease using React Native Vector Icons.\">\n    <meta name=\"theme-color\" content=\"#000000\" />\n    <meta\n      name=\"description\"\n      content=\"react-native-vector-icons directory\"\n    />\n    <link rel=\"apple-touch-icon\" href=\"%PUBLIC_URL%/logo192.png\" />\n    <!--\n      manifest.json provides metadata used when your web app is installed on a\n      user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/\n    -->\n    <link rel=\"manifest\" href=\"%PUBLIC_URL%/manifest.json\" />\n    <!--\n      Notice the use of %PUBLIC_URL% in the tags above.\n      It will be replaced with the URL of the `public` folder during the build.\n      Only files inside the `public` folder can be referenced from the HTML.\n\n      Unlike \"/favicon.ico\" or \"favicon.ico\", \"%PUBLIC_URL%/favicon.ico\" will\n      work correctly both with client-side routing and a non-root public URL.\n      Learn how to configure a non-root public URL by running `npm run build`.\n    -->\n    <title>react-native-vector-icons directory</title>\n  </head>\n  <body>\n    <noscript>You need to enable JavaScript to run this app.</noscript>\n    <div id=\"root\"></div>\n    <!--\n      This HTML file is a template.\n      If you open it directly in the browser, you will see an empty page.\n\n      You can add webfonts, meta tags, or analytics to this file.\n      The build step will place the bundled scripts into the <body> tag.\n\n      To begin the development, run `npm start` or `yarn start`.\n      To create a production bundle, use `npm run build` or `yarn build`.\n    -->\n  </body>\n</html>\n"
  },
  {
    "path": "packages/directory/public/manifest.json",
    "content": "{\n  \"short_name\": \"Directory\",\n  \"name\": \"React Native Vector Icons Directory\",\n  \"icons\": [\n    {\n      \"src\": \"favicon.ico\",\n      \"sizes\": \"64x64 32x32 24x24 16x16\",\n      \"type\": \"image/x-icon\"\n    },\n    {\n      \"src\": \"logo192.png\",\n      \"type\": \"image/png\",\n      \"sizes\": \"192x192\"\n    },\n    {\n      \"src\": \"logo512.png\",\n      \"type\": \"image/png\",\n      \"sizes\": \"512x512\"\n    }\n  ],\n  \"start_url\": \".\",\n  \"display\": \"standalone\",\n  \"theme_color\": \"#000000\",\n  \"background_color\": \"#ffffff\"\n}\n"
  },
  {
    "path": "packages/directory/public/robots.txt",
    "content": "# https://www.robotstxt.org/robotstxt.html\nUser-agent: *\nDisallow:\n"
  },
  {
    "path": "packages/directory/src/App.css",
    "content": "@import url(./generated/fonts.css);\n\n* {\n  -webkit-box-sizing: border-box;\n  box-sizing: border-box;\n}\n\nbody {\n  overflow-x: hidden;\n  overflow-y: auto;\n}\n\n.App {\n  width: 100%;\n}\n\n.Header-Container {\n  padding: 20px 20px 0 20px;\n  background-color: #23527c;\n  color: #fff;\n}\n\n.Header-Content {\n  max-width: 1200px;\n  margin: 0 auto;\n}\n\n.Header-Title {\n  margin: 0;\n  font-size: 18px;\n  font-weight: normal;\n}\n\n.Search-Container {\n  padding: 20px;\n  background-color: #23527c;\n  color: #fff;\n}\n\n.Search-Content {\n  max-width: 1200px;\n  margin: 0 auto;\n}\n\n.Search-Form {\n  display: flex;\n  background-color: #fff;\n  color: #333;\n  border-radius: 3px;\n}\n\n.Search-Label {\n  padding: 10px;\n  border-right: 1px solid #eee;\n}\n\n.Search-Input {\n  flex-grow: 1;\n  padding: 10px;\n  border: 0;\n  border-radius: 0 3px 3px 0;\n  font-size: inherit;\n}\n\n.Search-Input:focus {\n  outline: none;\n}\n\n.Container {\n  max-width: 1200px;\n  margin: 0 auto;\n  padding-top: 60px;\n}\n\n.Result-Row {\n  margin-bottom: 60px;\n}\n\n.Result-Title {\n  position: sticky;\n  top: 0;\n  z-index: 1;\n  margin: 0;\n  padding: 1em 20px;\n  border-radius: 3px 3px 0 0;\n  font-size: 200%;\n  font-weight: normal;\n  color: #fff;\n  background-color: #f66;\n}\n\n.Result-Title > a,\n.Result-Title > a:link {\n  color: #fff;\n}\n\n.Result-List {\n  display: flex;\n  flex-wrap: wrap;\n}\n\n.Result-Icon-Container {\n  width: 50%;\n  padding: 20px;\n  text-align: center;\n  outline: 1px solid #eee;\n  background-color: #fff;\n}\n\n@media (min-width: 480px) {\n  .Result-Icon-Container {\n    width: 33%;\n  }\n}\n\n@media (min-width: 600px) {\n  .Result-Icon-Container {\n    width: 25%;\n  }\n}\n\n@media (min-width: 768px) {\n  .Result-Icon-Container {\n    width: 20%;\n  }\n}\n\n@media (min-width: 992px) {\n  .Result-Icon-Container {\n    width: 14.27%;\n  }\n}\n\n.Result-Icon {\n  font-size: 35px;\n}\n\n.Result-Icon-Name {\n  font-size: 14px;\n  font-weight: normal;\n  opacity: 0.8;\n  margin: 10px 0 0 0;\n}\n\n.Family-Links-Container {\n  padding: 10px 20px 20px 20px;\n  background-color: #23527c;\n}\n\n.Family-Links-Content {\n  max-width: 1200px;\n  margin: 0 auto;\n}\n\n.Family-Links-Title {\n  color: #fff;\n  font-size: 18px;\n  margin-top: 0;\n}\n\n.Family-Links-Link,\n.Family-Links-Link:link {\n  color: #fff;\n  font-size: 16px;\n}\n\n.Family-Links-List {\n  display: flex;\n  flex-wrap: wrap;\n  gap: 0.5rem;\n}\n"
  },
  {
    "path": "packages/directory/src/App.test.tsx",
    "content": "import { render, screen } from '@testing-library/react';\n\nimport App from './App';\n\ntest('renders directory link', () => {\n  render(<App />);\n  const linkElement = screen.getByText(/react-native-vector-icons directory/i);\n  expect(linkElement).toBeInTheDocument();\n});\n"
  },
  {
    "path": "packages/directory/src/App.tsx",
    "content": "import {\n  type ChangeEvent,\n  type FormEvent,\n  type HTMLProps,\n  memo,\n  useCallback,\n  useLayoutEffect,\n  useRef,\n  useState,\n} from 'react';\nimport './App.css';\n\nimport IconFamilies from './generated/glyphmapIndex.json'; // eslint-disable-line import/no-unresolved\n\nconst WAITING_INTERVAL = 300;\n\ntype Match = { family: string; names: string[] };\n\nconst Icon = memo(function Icon({\n  family,\n  name,\n  ...props\n}: { family: string; name: string } & HTMLProps<HTMLSpanElement>) {\n  return (\n    <span style={{ fontFamily: family }} {...props}>\n      {String.fromCodePoint(\n        IconFamilies[family as keyof typeof IconFamilies][\n          name as keyof (typeof IconFamilies)[keyof typeof IconFamilies]\n        ],\n      )}\n    </span>\n  );\n});\n\nconst FamiliesLinks = ({ matches = [] }: { matches: Match[] }) => (\n  <div className=\"Family-Links-Container\">\n    <div className=\"Family-Links-Content\">\n      <h2 className=\"Family-Links-Title\">Icon Families:</h2>\n      <div className=\"Family-Links-List\">\n        {matches.map((match) => {\n          const { family } = match;\n\n          return (\n            <a key={family} className=\"Family-Links-Link\" href={`#${family}`}>\n              {family}\n            </a>\n          );\n        })}\n      </div>\n    </div>\n  </div>\n);\n\nconst HeaderBar = () => (\n  <div className=\"Header-Container\">\n    <div className=\"Header-Content\">\n      <h1 className=\"Header-Title\">react-native-vector-icons directory</h1>\n    </div>\n  </div>\n);\n\nconst SearchBar = ({ onSubmit }: { onSubmit: (text?: string) => void }) => {\n  const inputRef = useRef<HTMLInputElement>(null);\n  const timerRef = useRef<ReturnType<typeof setTimeout> | null>(null);\n  const handleSubmit = useCallback(\n    (e: FormEvent<HTMLFormElement>) => {\n      e.preventDefault();\n\n      if (inputRef.current?.value) {\n        onSubmit(inputRef.current.value);\n      }\n    },\n    [onSubmit],\n  );\n\n  const handleChange = useCallback(\n    (e: ChangeEvent<HTMLInputElement>) => {\n      e.preventDefault();\n      if (timerRef.current) {\n        clearInterval(timerRef.current);\n      }\n\n      timerRef.current = setTimeout(() => onSubmit(inputRef.current?.value), WAITING_INTERVAL);\n    },\n    [onSubmit],\n  );\n\n  return (\n    <div className=\"Search-Container\">\n      <div className=\"Search-Content\">\n        <form className=\"Search-Form\" onSubmit={handleSubmit}>\n          {/* Clicking the Label focuses the cursor onto the form input */}\n          {/* eslint-disable-next-line jsx-a11y/label-has-associated-control */}\n          <label htmlFor=\"Search-Input\" className=\"Search-Label\">\n            <Icon family=\"FontAwesome\" name=\"search\" className=\"Search-Icon\" />\n          </label>\n          <input\n            type=\"text\"\n            id=\"Search-Input\"\n            className=\"Search-Input\"\n            ref={inputRef}\n            onChange={handleChange}\n            placeholder=\"Search for an icon...\"\n          />\n        </form>\n      </div>\n    </div>\n  );\n};\n\nconst renderIcon = (family: string, name: string) => (\n  <div className=\"Result-Icon-Container\" key={name}>\n    <Icon family={family} name={name} className=\"Result-Icon\" />\n    <h4 className=\"Result-Icon-Name\">{name}</h4>\n  </div>\n);\n\nconst renderMatch = ({ family, names }: Match) => (\n  <div className=\"Result-Row\" key={family}>\n    <h2 className=\"Result-Title\" id={family}>\n      {family}\n    </h2>\n\n    <div className=\"Result-List\">{names.map((name) => renderIcon(family, name))}</div>\n  </div>\n);\n\nconst renderNotFound = () => (\n  <div className=\"Result-Row\">\n    <h2 className=\"Result-Title\">Icon not found.</h2>\n  </div>\n);\n\nconst getMatches = (query: string) =>\n  Object.keys(IconFamilies)\n    .sort()\n    .map((family) => {\n      const icons = IconFamilies[family as keyof typeof IconFamilies];\n      const names = Object.keys(icons);\n      const results = names.filter((name) => name.indexOf(query) >= 0);\n      return { family, names: results };\n    })\n    .filter(({ names }) => names.length);\n\nconst App = () => {\n  const [matches, setMatches] = useState<Match[]>([]);\n  const handleSubmit = useCallback((text = '') => {\n    setMatches(getMatches(text));\n  }, []);\n  useLayoutEffect(() => handleSubmit(''), [handleSubmit]);\n\n  return (\n    <div className=\"App\">\n      <HeaderBar />\n      <SearchBar onSubmit={handleSubmit} />\n      <FamiliesLinks matches={matches} />\n      <div className=\"Container\">{matches.length === 0 ? renderNotFound() : matches.map(renderMatch)}</div>\n    </div>\n  );\n};\n\nexport default App;\n"
  },
  {
    "path": "packages/directory/src/index.css",
    "content": "body {\n  margin: 0;\n  font-family:\n    -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\",\n    \"Helvetica Neue\", sans-serif;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\ncode {\n  font-family: source-code-pro, Menlo, Monaco, Consolas, \"Courier New\", monospace;\n}\n"
  },
  {
    "path": "packages/directory/src/index.tsx",
    "content": "import React from 'react';\nimport ReactDOM from 'react-dom/client';\n\nimport App from './App';\nimport reportWebVitals from './reportWebVitals';\n\nimport './index.css';\n\nconst root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement);\nroot.render(\n  <React.StrictMode>\n    <App />\n  </React.StrictMode>,\n);\n\n// If you want to start measuring performance in your app, pass a function\n// to log results (for example: reportWebVitals(console.log))\n// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals\nreportWebVitals();\n"
  },
  {
    "path": "packages/directory/src/react-app-env.d.ts",
    "content": "/// <reference types=\"react-scripts\" />\n"
  },
  {
    "path": "packages/directory/src/reportWebVitals.ts",
    "content": "import type { MetricType } from 'web-vitals';\n\nconst reportWebVitals = (onPerfEntry?: (metric: MetricType) => void) => {\n  if (onPerfEntry && onPerfEntry instanceof Function) {\n    import('web-vitals').then(({ onCLS, onINP, onFCP, onLCP, onTTFB }) => {\n      onCLS(onPerfEntry);\n      onINP(onPerfEntry);\n      onFCP(onPerfEntry);\n      onLCP(onPerfEntry);\n      onTTFB(onPerfEntry);\n    });\n  }\n};\n\nexport default reportWebVitals;\n"
  },
  {
    "path": "packages/directory/src/setupTests.js",
    "content": "// jest-dom adds custom jest matchers for asserting on DOM nodes.\n// allows you to do things like:\n// expect(element).toHaveTextContent(/react/i)\n// learn more: https://github.com/testing-library/jest-dom\nimport '@testing-library/jest-dom';\n"
  },
  {
    "path": "packages/directory/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"target\": \"es5\",\n    \"lib\": [\"dom\", \"dom.iterable\", \"esnext\"],\n    \"allowJs\": true,\n    \"skipLibCheck\": true,\n    \"esModuleInterop\": true,\n    \"allowSyntheticDefaultImports\": true,\n    \"strict\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"module\": \"esnext\",\n    \"moduleResolution\": \"node\",\n    \"resolveJsonModule\": true,\n    \"isolatedModules\": true,\n    \"noEmit\": true,\n    \"jsx\": \"react-jsx\"\n  },\n  \"include\": [\"src\"]\n}\n"
  },
  {
    "path": "packages/entypo/.fontcustom-manifest.json",
    "content": "{\n  \"checksum\": {\n    \"previous\": \"dd613052d4c6a03cd2d91507156628cd6c0c4fb1c5a820ff7c6958c0fabdcef0\",\n    \"current\": \"dd613052d4c6a03cd2d91507156628cd6c0c4fb1c5a820ff7c6958c0fabdcef0\"\n  },\n  \"fonts\": [\n    \"Entypo/Entypo.ttf\",\n    \"Entypo/Entypo.svg\",\n    \"Entypo/Entypo.woff\",\n    \"Entypo/Entypo.eot\",\n    \"Entypo/Entypo.woff2\"\n  ],\n  \"glyphs\": {\n    \"500px\": {\n      \"codepoint\": 61696,\n      \"source\": \"node_modules/@entypo-icons/core/icons/500px.svg\"\n    },\n    \"500px-with-circle\": {\n      \"codepoint\": 61697,\n      \"source\": \"node_modules/@entypo-icons/core/icons/500px-with-circle.svg\"\n    },\n    \"add-to-list\": {\n      \"codepoint\": 61698,\n      \"source\": \"node_modules/@entypo-icons/core/icons/add-to-list.svg\"\n    },\n    \"add-user\": {\n      \"codepoint\": 61699,\n      \"source\": \"node_modules/@entypo-icons/core/icons/add-user.svg\"\n    },\n    \"address\": {\n      \"codepoint\": 61700,\n      \"source\": \"node_modules/@entypo-icons/core/icons/address.svg\"\n    },\n    \"adjust\": {\n      \"codepoint\": 61701,\n      \"source\": \"node_modules/@entypo-icons/core/icons/adjust.svg\"\n    },\n    \"air\": {\n      \"codepoint\": 61702,\n      \"source\": \"node_modules/@entypo-icons/core/icons/air.svg\"\n    },\n    \"aircraft\": {\n      \"codepoint\": 61703,\n      \"source\": \"node_modules/@entypo-icons/core/icons/aircraft.svg\"\n    },\n    \"aircraft-landing\": {\n      \"codepoint\": 61704,\n      \"source\": \"node_modules/@entypo-icons/core/icons/aircraft-landing.svg\"\n    },\n    \"aircraft-take-off\": {\n      \"codepoint\": 61705,\n      \"source\": \"node_modules/@entypo-icons/core/icons/aircraft-take-off.svg\"\n    },\n    \"align-bottom\": {\n      \"codepoint\": 61706,\n      \"source\": \"node_modules/@entypo-icons/core/icons/align-bottom.svg\"\n    },\n    \"align-horizontal-middle\": {\n      \"codepoint\": 61707,\n      \"source\": \"node_modules/@entypo-icons/core/icons/align-horizontal-middle.svg\"\n    },\n    \"align-left\": {\n      \"codepoint\": 61708,\n      \"source\": \"node_modules/@entypo-icons/core/icons/align-left.svg\"\n    },\n    \"align-right\": {\n      \"codepoint\": 61709,\n      \"source\": \"node_modules/@entypo-icons/core/icons/align-right.svg\"\n    },\n    \"align-top\": {\n      \"codepoint\": 61710,\n      \"source\": \"node_modules/@entypo-icons/core/icons/align-top.svg\"\n    },\n    \"align-vertical-middle\": {\n      \"codepoint\": 61711,\n      \"source\": \"node_modules/@entypo-icons/core/icons/align-vertical-middle.svg\"\n    },\n    \"app-store\": {\n      \"codepoint\": 61712,\n      \"source\": \"node_modules/@entypo-icons/core/icons/app-store.svg\"\n    },\n    \"archive\": {\n      \"codepoint\": 61713,\n      \"source\": \"node_modules/@entypo-icons/core/icons/archive.svg\"\n    },\n    \"area-graph\": {\n      \"codepoint\": 61714,\n      \"source\": \"node_modules/@entypo-icons/core/icons/area-graph.svg\"\n    },\n    \"arrow-bold-down\": {\n      \"codepoint\": 61715,\n      \"source\": \"node_modules/@entypo-icons/core/icons/arrow-bold-down.svg\"\n    },\n    \"arrow-bold-left\": {\n      \"codepoint\": 61716,\n      \"source\": \"node_modules/@entypo-icons/core/icons/arrow-bold-left.svg\"\n    },\n    \"arrow-bold-right\": {\n      \"codepoint\": 61717,\n      \"source\": \"node_modules/@entypo-icons/core/icons/arrow-bold-right.svg\"\n    },\n    \"arrow-bold-up\": {\n      \"codepoint\": 61718,\n      \"source\": \"node_modules/@entypo-icons/core/icons/arrow-bold-up.svg\"\n    },\n    \"arrow-down\": {\n      \"codepoint\": 61719,\n      \"source\": \"node_modules/@entypo-icons/core/icons/arrow-down.svg\"\n    },\n    \"arrow-left\": {\n      \"codepoint\": 61720,\n      \"source\": \"node_modules/@entypo-icons/core/icons/arrow-left.svg\"\n    },\n    \"arrow-long-down\": {\n      \"codepoint\": 61721,\n      \"source\": \"node_modules/@entypo-icons/core/icons/arrow-long-down.svg\"\n    },\n    \"arrow-long-left\": {\n      \"codepoint\": 61722,\n      \"source\": \"node_modules/@entypo-icons/core/icons/arrow-long-left.svg\"\n    },\n    \"arrow-long-right\": {\n      \"codepoint\": 61723,\n      \"source\": \"node_modules/@entypo-icons/core/icons/arrow-long-right.svg\"\n    },\n    \"arrow-long-up\": {\n      \"codepoint\": 61724,\n      \"source\": \"node_modules/@entypo-icons/core/icons/arrow-long-up.svg\"\n    },\n    \"arrow-right\": {\n      \"codepoint\": 61725,\n      \"source\": \"node_modules/@entypo-icons/core/icons/arrow-right.svg\"\n    },\n    \"arrow-up\": {\n      \"codepoint\": 61726,\n      \"source\": \"node_modules/@entypo-icons/core/icons/arrow-up.svg\"\n    },\n    \"arrow-with-circle-down\": {\n      \"codepoint\": 61727,\n      \"source\": \"node_modules/@entypo-icons/core/icons/arrow-with-circle-down.svg\"\n    },\n    \"arrow-with-circle-left\": {\n      \"codepoint\": 61728,\n      \"source\": \"node_modules/@entypo-icons/core/icons/arrow-with-circle-left.svg\"\n    },\n    \"arrow-with-circle-right\": {\n      \"codepoint\": 61729,\n      \"source\": \"node_modules/@entypo-icons/core/icons/arrow-with-circle-right.svg\"\n    },\n    \"arrow-with-circle-up\": {\n      \"codepoint\": 61730,\n      \"source\": \"node_modules/@entypo-icons/core/icons/arrow-with-circle-up.svg\"\n    },\n    \"attachment\": {\n      \"codepoint\": 61731,\n      \"source\": \"node_modules/@entypo-icons/core/icons/attachment.svg\"\n    },\n    \"awareness-ribbon\": {\n      \"codepoint\": 61732,\n      \"source\": \"node_modules/@entypo-icons/core/icons/awareness-ribbon.svg\"\n    },\n    \"back\": {\n      \"codepoint\": 61733,\n      \"source\": \"node_modules/@entypo-icons/core/icons/back.svg\"\n    },\n    \"back-in-time\": {\n      \"codepoint\": 61734,\n      \"source\": \"node_modules/@entypo-icons/core/icons/back-in-time.svg\"\n    },\n    \"baidu\": {\n      \"codepoint\": 61735,\n      \"source\": \"node_modules/@entypo-icons/core/icons/baidu.svg\"\n    },\n    \"bar-graph\": {\n      \"codepoint\": 61736,\n      \"source\": \"node_modules/@entypo-icons/core/icons/bar-graph.svg\"\n    },\n    \"basecamp\": {\n      \"codepoint\": 61737,\n      \"source\": \"node_modules/@entypo-icons/core/icons/basecamp.svg\"\n    },\n    \"battery\": {\n      \"codepoint\": 61738,\n      \"source\": \"node_modules/@entypo-icons/core/icons/battery.svg\"\n    },\n    \"beamed-note\": {\n      \"codepoint\": 61739,\n      \"source\": \"node_modules/@entypo-icons/core/icons/beamed-note.svg\"\n    },\n    \"behance\": {\n      \"codepoint\": 61740,\n      \"source\": \"node_modules/@entypo-icons/core/icons/behance.svg\"\n    },\n    \"bell\": {\n      \"codepoint\": 61741,\n      \"source\": \"node_modules/@entypo-icons/core/icons/bell.svg\"\n    },\n    \"blackboard\": {\n      \"codepoint\": 61742,\n      \"source\": \"node_modules/@entypo-icons/core/icons/blackboard.svg\"\n    },\n    \"block\": {\n      \"codepoint\": 61743,\n      \"source\": \"node_modules/@entypo-icons/core/icons/block.svg\"\n    },\n    \"book\": {\n      \"codepoint\": 61744,\n      \"source\": \"node_modules/@entypo-icons/core/icons/book.svg\"\n    },\n    \"bookmark\": {\n      \"codepoint\": 61745,\n      \"source\": \"node_modules/@entypo-icons/core/icons/bookmark.svg\"\n    },\n    \"bookmarks\": {\n      \"codepoint\": 61746,\n      \"source\": \"node_modules/@entypo-icons/core/icons/bookmarks.svg\"\n    },\n    \"bowl\": {\n      \"codepoint\": 61747,\n      \"source\": \"node_modules/@entypo-icons/core/icons/bowl.svg\"\n    },\n    \"box\": {\n      \"codepoint\": 61748,\n      \"source\": \"node_modules/@entypo-icons/core/icons/box.svg\"\n    },\n    \"briefcase\": {\n      \"codepoint\": 61749,\n      \"source\": \"node_modules/@entypo-icons/core/icons/briefcase.svg\"\n    },\n    \"browser\": {\n      \"codepoint\": 61750,\n      \"source\": \"node_modules/@entypo-icons/core/icons/browser.svg\"\n    },\n    \"brush\": {\n      \"codepoint\": 61751,\n      \"source\": \"node_modules/@entypo-icons/core/icons/brush.svg\"\n    },\n    \"bucket\": {\n      \"codepoint\": 61752,\n      \"source\": \"node_modules/@entypo-icons/core/icons/bucket.svg\"\n    },\n    \"bug\": {\n      \"codepoint\": 61753,\n      \"source\": \"node_modules/@entypo-icons/core/icons/bug.svg\"\n    },\n    \"cake\": {\n      \"codepoint\": 61754,\n      \"source\": \"node_modules/@entypo-icons/core/icons/cake.svg\"\n    },\n    \"calculator\": {\n      \"codepoint\": 61755,\n      \"source\": \"node_modules/@entypo-icons/core/icons/calculator.svg\"\n    },\n    \"calendar\": {\n      \"codepoint\": 61756,\n      \"source\": \"node_modules/@entypo-icons/core/icons/calendar.svg\"\n    },\n    \"camera\": {\n      \"codepoint\": 61757,\n      \"source\": \"node_modules/@entypo-icons/core/icons/camera.svg\"\n    },\n    \"ccw\": {\n      \"codepoint\": 61758,\n      \"source\": \"node_modules/@entypo-icons/core/icons/ccw.svg\"\n    },\n    \"chat\": {\n      \"codepoint\": 61759,\n      \"source\": \"node_modules/@entypo-icons/core/icons/chat.svg\"\n    },\n    \"check\": {\n      \"codepoint\": 61760,\n      \"source\": \"node_modules/@entypo-icons/core/icons/check.svg\"\n    },\n    \"chevron-down\": {\n      \"codepoint\": 61761,\n      \"source\": \"node_modules/@entypo-icons/core/icons/chevron-down.svg\"\n    },\n    \"chevron-left\": {\n      \"codepoint\": 61762,\n      \"source\": \"node_modules/@entypo-icons/core/icons/chevron-left.svg\"\n    },\n    \"chevron-right\": {\n      \"codepoint\": 61763,\n      \"source\": \"node_modules/@entypo-icons/core/icons/chevron-right.svg\"\n    },\n    \"chevron-small-down\": {\n      \"codepoint\": 61764,\n      \"source\": \"node_modules/@entypo-icons/core/icons/chevron-small-down.svg\"\n    },\n    \"chevron-small-left\": {\n      \"codepoint\": 61765,\n      \"source\": \"node_modules/@entypo-icons/core/icons/chevron-small-left.svg\"\n    },\n    \"chevron-small-right\": {\n      \"codepoint\": 61766,\n      \"source\": \"node_modules/@entypo-icons/core/icons/chevron-small-right.svg\"\n    },\n    \"chevron-small-up\": {\n      \"codepoint\": 61767,\n      \"source\": \"node_modules/@entypo-icons/core/icons/chevron-small-up.svg\"\n    },\n    \"chevron-thin-down\": {\n      \"codepoint\": 61768,\n      \"source\": \"node_modules/@entypo-icons/core/icons/chevron-thin-down.svg\"\n    },\n    \"chevron-thin-left\": {\n      \"codepoint\": 61769,\n      \"source\": \"node_modules/@entypo-icons/core/icons/chevron-thin-left.svg\"\n    },\n    \"chevron-thin-right\": {\n      \"codepoint\": 61770,\n      \"source\": \"node_modules/@entypo-icons/core/icons/chevron-thin-right.svg\"\n    },\n    \"chevron-thin-up\": {\n      \"codepoint\": 61771,\n      \"source\": \"node_modules/@entypo-icons/core/icons/chevron-thin-up.svg\"\n    },\n    \"chevron-up\": {\n      \"codepoint\": 61772,\n      \"source\": \"node_modules/@entypo-icons/core/icons/chevron-up.svg\"\n    },\n    \"chevron-with-circle-down\": {\n      \"codepoint\": 61773,\n      \"source\": \"node_modules/@entypo-icons/core/icons/chevron-with-circle-down.svg\"\n    },\n    \"chevron-with-circle-left\": {\n      \"codepoint\": 61774,\n      \"source\": \"node_modules/@entypo-icons/core/icons/chevron-with-circle-left.svg\"\n    },\n    \"chevron-with-circle-right\": {\n      \"codepoint\": 61775,\n      \"source\": \"node_modules/@entypo-icons/core/icons/chevron-with-circle-right.svg\"\n    },\n    \"chevron-with-circle-up\": {\n      \"codepoint\": 61776,\n      \"source\": \"node_modules/@entypo-icons/core/icons/chevron-with-circle-up.svg\"\n    },\n    \"circle\": {\n      \"codepoint\": 61777,\n      \"source\": \"node_modules/@entypo-icons/core/icons/circle.svg\"\n    },\n    \"circle-with-cross\": {\n      \"codepoint\": 61778,\n      \"source\": \"node_modules/@entypo-icons/core/icons/circle-with-cross.svg\"\n    },\n    \"circle-with-minus\": {\n      \"codepoint\": 61779,\n      \"source\": \"node_modules/@entypo-icons/core/icons/circle-with-minus.svg\"\n    },\n    \"circle-with-plus\": {\n      \"codepoint\": 61780,\n      \"source\": \"node_modules/@entypo-icons/core/icons/circle-with-plus.svg\"\n    },\n    \"circular-graph\": {\n      \"codepoint\": 61781,\n      \"source\": \"node_modules/@entypo-icons/core/icons/circular-graph.svg\"\n    },\n    \"clapperboard\": {\n      \"codepoint\": 61782,\n      \"source\": \"node_modules/@entypo-icons/core/icons/clapperboard.svg\"\n    },\n    \"classic-computer\": {\n      \"codepoint\": 61783,\n      \"source\": \"node_modules/@entypo-icons/core/icons/classic-computer.svg\"\n    },\n    \"clipboard\": {\n      \"codepoint\": 61784,\n      \"source\": \"node_modules/@entypo-icons/core/icons/clipboard.svg\"\n    },\n    \"clock\": {\n      \"codepoint\": 61785,\n      \"source\": \"node_modules/@entypo-icons/core/icons/clock.svg\"\n    },\n    \"cloud\": {\n      \"codepoint\": 61786,\n      \"source\": \"node_modules/@entypo-icons/core/icons/cloud.svg\"\n    },\n    \"code\": {\n      \"codepoint\": 61787,\n      \"source\": \"node_modules/@entypo-icons/core/icons/code.svg\"\n    },\n    \"cog\": {\n      \"codepoint\": 61788,\n      \"source\": \"node_modules/@entypo-icons/core/icons/cog.svg\"\n    },\n    \"colours\": {\n      \"codepoint\": 61789,\n      \"source\": \"node_modules/@entypo-icons/core/icons/colours.svg\"\n    },\n    \"compass\": {\n      \"codepoint\": 61790,\n      \"source\": \"node_modules/@entypo-icons/core/icons/compass.svg\"\n    },\n    \"controller-fast-backward\": {\n      \"codepoint\": 61791,\n      \"source\": \"node_modules/@entypo-icons/core/icons/controller-fast-backward.svg\"\n    },\n    \"controller-fast-forward\": {\n      \"codepoint\": 61792,\n      \"source\": \"node_modules/@entypo-icons/core/icons/controller-fast-forward.svg\"\n    },\n    \"controller-jump-to-start\": {\n      \"codepoint\": 61793,\n      \"source\": \"node_modules/@entypo-icons/core/icons/controller-jump-to-start.svg\"\n    },\n    \"controller-next\": {\n      \"codepoint\": 61794,\n      \"source\": \"node_modules/@entypo-icons/core/icons/controller-next.svg\"\n    },\n    \"controller-paus\": {\n      \"codepoint\": 61795,\n      \"source\": \"node_modules/@entypo-icons/core/icons/controller-paus.svg\"\n    },\n    \"controller-play\": {\n      \"codepoint\": 61796,\n      \"source\": \"node_modules/@entypo-icons/core/icons/controller-play.svg\"\n    },\n    \"controller-record\": {\n      \"codepoint\": 61797,\n      \"source\": \"node_modules/@entypo-icons/core/icons/controller-record.svg\"\n    },\n    \"controller-stop\": {\n      \"codepoint\": 61798,\n      \"source\": \"node_modules/@entypo-icons/core/icons/controller-stop.svg\"\n    },\n    \"controller-volume\": {\n      \"codepoint\": 61799,\n      \"source\": \"node_modules/@entypo-icons/core/icons/controller-volume.svg\"\n    },\n    \"copy\": {\n      \"codepoint\": 61800,\n      \"source\": \"node_modules/@entypo-icons/core/icons/copy.svg\"\n    },\n    \"creative-cloud\": {\n      \"codepoint\": 61801,\n      \"source\": \"node_modules/@entypo-icons/core/icons/creative-cloud.svg\"\n    },\n    \"creative-commons\": {\n      \"codepoint\": 61802,\n      \"source\": \"node_modules/@entypo-icons/core/icons/creative-commons.svg\"\n    },\n    \"creative-commons-attribution\": {\n      \"codepoint\": 61803,\n      \"source\": \"node_modules/@entypo-icons/core/icons/creative-commons-attribution.svg\"\n    },\n    \"creative-commons-noderivs\": {\n      \"codepoint\": 61804,\n      \"source\": \"node_modules/@entypo-icons/core/icons/creative-commons-noderivs.svg\"\n    },\n    \"creative-commons-noncommercial-eu\": {\n      \"codepoint\": 61805,\n      \"source\": \"node_modules/@entypo-icons/core/icons/creative-commons-noncommercial-eu.svg\"\n    },\n    \"creative-commons-noncommercial-us\": {\n      \"codepoint\": 61806,\n      \"source\": \"node_modules/@entypo-icons/core/icons/creative-commons-noncommercial-us.svg\"\n    },\n    \"creative-commons-public-domain\": {\n      \"codepoint\": 61807,\n      \"source\": \"node_modules/@entypo-icons/core/icons/creative-commons-public-domain.svg\"\n    },\n    \"creative-commons-remix\": {\n      \"codepoint\": 61808,\n      \"source\": \"node_modules/@entypo-icons/core/icons/creative-commons-remix.svg\"\n    },\n    \"creative-commons-share\": {\n      \"codepoint\": 61809,\n      \"source\": \"node_modules/@entypo-icons/core/icons/creative-commons-share.svg\"\n    },\n    \"creative-commons-sharealike\": {\n      \"codepoint\": 61810,\n      \"source\": \"node_modules/@entypo-icons/core/icons/creative-commons-sharealike.svg\"\n    },\n    \"credit\": {\n      \"codepoint\": 61811,\n      \"source\": \"node_modules/@entypo-icons/core/icons/credit.svg\"\n    },\n    \"credit-card\": {\n      \"codepoint\": 61812,\n      \"source\": \"node_modules/@entypo-icons/core/icons/credit-card.svg\"\n    },\n    \"crop\": {\n      \"codepoint\": 61813,\n      \"source\": \"node_modules/@entypo-icons/core/icons/crop.svg\"\n    },\n    \"cross\": {\n      \"codepoint\": 61814,\n      \"source\": \"node_modules/@entypo-icons/core/icons/cross.svg\"\n    },\n    \"cup\": {\n      \"codepoint\": 61815,\n      \"source\": \"node_modules/@entypo-icons/core/icons/cup.svg\"\n    },\n    \"cw\": {\n      \"codepoint\": 61816,\n      \"source\": \"node_modules/@entypo-icons/core/icons/cw.svg\"\n    },\n    \"cycle\": {\n      \"codepoint\": 61817,\n      \"source\": \"node_modules/@entypo-icons/core/icons/cycle.svg\"\n    },\n    \"database\": {\n      \"codepoint\": 61818,\n      \"source\": \"node_modules/@entypo-icons/core/icons/database.svg\"\n    },\n    \"dial-pad\": {\n      \"codepoint\": 61819,\n      \"source\": \"node_modules/@entypo-icons/core/icons/dial-pad.svg\"\n    },\n    \"direction\": {\n      \"codepoint\": 61820,\n      \"source\": \"node_modules/@entypo-icons/core/icons/direction.svg\"\n    },\n    \"document\": {\n      \"codepoint\": 61821,\n      \"source\": \"node_modules/@entypo-icons/core/icons/document.svg\"\n    },\n    \"document-landscape\": {\n      \"codepoint\": 61822,\n      \"source\": \"node_modules/@entypo-icons/core/icons/document-landscape.svg\"\n    },\n    \"documents\": {\n      \"codepoint\": 61823,\n      \"source\": \"node_modules/@entypo-icons/core/icons/documents.svg\"\n    },\n    \"dot-single\": {\n      \"codepoint\": 61824,\n      \"source\": \"node_modules/@entypo-icons/core/icons/dot-single.svg\"\n    },\n    \"dots-three-horizontal\": {\n      \"codepoint\": 61825,\n      \"source\": \"node_modules/@entypo-icons/core/icons/dots-three-horizontal.svg\"\n    },\n    \"dots-three-vertical\": {\n      \"codepoint\": 61826,\n      \"source\": \"node_modules/@entypo-icons/core/icons/dots-three-vertical.svg\"\n    },\n    \"dots-two-horizontal\": {\n      \"codepoint\": 61827,\n      \"source\": \"node_modules/@entypo-icons/core/icons/dots-two-horizontal.svg\"\n    },\n    \"dots-two-vertical\": {\n      \"codepoint\": 61828,\n      \"source\": \"node_modules/@entypo-icons/core/icons/dots-two-vertical.svg\"\n    },\n    \"download\": {\n      \"codepoint\": 61829,\n      \"source\": \"node_modules/@entypo-icons/core/icons/download.svg\"\n    },\n    \"dribbble\": {\n      \"codepoint\": 61830,\n      \"source\": \"node_modules/@entypo-icons/core/icons/dribbble.svg\"\n    },\n    \"dribbble-with-circle\": {\n      \"codepoint\": 61831,\n      \"source\": \"node_modules/@entypo-icons/core/icons/dribbble-with-circle.svg\"\n    },\n    \"drink\": {\n      \"codepoint\": 61832,\n      \"source\": \"node_modules/@entypo-icons/core/icons/drink.svg\"\n    },\n    \"drive\": {\n      \"codepoint\": 61833,\n      \"source\": \"node_modules/@entypo-icons/core/icons/drive.svg\"\n    },\n    \"drop\": {\n      \"codepoint\": 61834,\n      \"source\": \"node_modules/@entypo-icons/core/icons/drop.svg\"\n    },\n    \"dropbox\": {\n      \"codepoint\": 61835,\n      \"source\": \"node_modules/@entypo-icons/core/icons/dropbox.svg\"\n    },\n    \"edit\": {\n      \"codepoint\": 61836,\n      \"source\": \"node_modules/@entypo-icons/core/icons/edit.svg\"\n    },\n    \"email\": {\n      \"codepoint\": 61837,\n      \"source\": \"node_modules/@entypo-icons/core/icons/email.svg\"\n    },\n    \"emoji-flirt\": {\n      \"codepoint\": 61838,\n      \"source\": \"node_modules/@entypo-icons/core/icons/emoji-flirt.svg\"\n    },\n    \"emoji-happy\": {\n      \"codepoint\": 61839,\n      \"source\": \"node_modules/@entypo-icons/core/icons/emoji-happy.svg\"\n    },\n    \"emoji-neutral\": {\n      \"codepoint\": 61840,\n      \"source\": \"node_modules/@entypo-icons/core/icons/emoji-neutral.svg\"\n    },\n    \"emoji-sad\": {\n      \"codepoint\": 61841,\n      \"source\": \"node_modules/@entypo-icons/core/icons/emoji-sad.svg\"\n    },\n    \"erase\": {\n      \"codepoint\": 61842,\n      \"source\": \"node_modules/@entypo-icons/core/icons/erase.svg\"\n    },\n    \"eraser\": {\n      \"codepoint\": 61843,\n      \"source\": \"node_modules/@entypo-icons/core/icons/eraser.svg\"\n    },\n    \"evernote\": {\n      \"codepoint\": 61844,\n      \"source\": \"node_modules/@entypo-icons/core/icons/evernote.svg\"\n    },\n    \"export\": {\n      \"codepoint\": 61845,\n      \"source\": \"node_modules/@entypo-icons/core/icons/export.svg\"\n    },\n    \"eye\": {\n      \"codepoint\": 61846,\n      \"source\": \"node_modules/@entypo-icons/core/icons/eye.svg\"\n    },\n    \"eye-with-line\": {\n      \"codepoint\": 61847,\n      \"source\": \"node_modules/@entypo-icons/core/icons/eye-with-line.svg\"\n    },\n    \"facebook\": {\n      \"codepoint\": 61848,\n      \"source\": \"node_modules/@entypo-icons/core/icons/facebook.svg\"\n    },\n    \"facebook-with-circle\": {\n      \"codepoint\": 61849,\n      \"source\": \"node_modules/@entypo-icons/core/icons/facebook-with-circle.svg\"\n    },\n    \"feather\": {\n      \"codepoint\": 61850,\n      \"source\": \"node_modules/@entypo-icons/core/icons/feather.svg\"\n    },\n    \"fingerprint\": {\n      \"codepoint\": 61851,\n      \"source\": \"node_modules/@entypo-icons/core/icons/fingerprint.svg\"\n    },\n    \"flag\": {\n      \"codepoint\": 61852,\n      \"source\": \"node_modules/@entypo-icons/core/icons/flag.svg\"\n    },\n    \"flash\": {\n      \"codepoint\": 61853,\n      \"source\": \"node_modules/@entypo-icons/core/icons/flash.svg\"\n    },\n    \"flashlight\": {\n      \"codepoint\": 61854,\n      \"source\": \"node_modules/@entypo-icons/core/icons/flashlight.svg\"\n    },\n    \"flat-brush\": {\n      \"codepoint\": 61855,\n      \"source\": \"node_modules/@entypo-icons/core/icons/flat-brush.svg\"\n    },\n    \"flattr\": {\n      \"codepoint\": 61856,\n      \"source\": \"node_modules/@entypo-icons/core/icons/flattr.svg\"\n    },\n    \"flickr\": {\n      \"codepoint\": 61857,\n      \"source\": \"node_modules/@entypo-icons/core/icons/flickr.svg\"\n    },\n    \"flickr-with-circle\": {\n      \"codepoint\": 61858,\n      \"source\": \"node_modules/@entypo-icons/core/icons/flickr-with-circle.svg\"\n    },\n    \"flow-branch\": {\n      \"codepoint\": 61859,\n      \"source\": \"node_modules/@entypo-icons/core/icons/flow-branch.svg\"\n    },\n    \"flow-cascade\": {\n      \"codepoint\": 61860,\n      \"source\": \"node_modules/@entypo-icons/core/icons/flow-cascade.svg\"\n    },\n    \"flow-line\": {\n      \"codepoint\": 61861,\n      \"source\": \"node_modules/@entypo-icons/core/icons/flow-line.svg\"\n    },\n    \"flow-parallel\": {\n      \"codepoint\": 61862,\n      \"source\": \"node_modules/@entypo-icons/core/icons/flow-parallel.svg\"\n    },\n    \"flow-tree\": {\n      \"codepoint\": 61863,\n      \"source\": \"node_modules/@entypo-icons/core/icons/flow-tree.svg\"\n    },\n    \"flower\": {\n      \"codepoint\": 61864,\n      \"source\": \"node_modules/@entypo-icons/core/icons/flower.svg\"\n    },\n    \"folder\": {\n      \"codepoint\": 61865,\n      \"source\": \"node_modules/@entypo-icons/core/icons/folder.svg\"\n    },\n    \"folder-images\": {\n      \"codepoint\": 61866,\n      \"source\": \"node_modules/@entypo-icons/core/icons/folder-images.svg\"\n    },\n    \"folder-music\": {\n      \"codepoint\": 61867,\n      \"source\": \"node_modules/@entypo-icons/core/icons/folder-music.svg\"\n    },\n    \"folder-video\": {\n      \"codepoint\": 61868,\n      \"source\": \"node_modules/@entypo-icons/core/icons/folder-video.svg\"\n    },\n    \"forward\": {\n      \"codepoint\": 61869,\n      \"source\": \"node_modules/@entypo-icons/core/icons/forward.svg\"\n    },\n    \"foursquare\": {\n      \"codepoint\": 61870,\n      \"source\": \"node_modules/@entypo-icons/core/icons/foursquare.svg\"\n    },\n    \"funnel\": {\n      \"codepoint\": 61871,\n      \"source\": \"node_modules/@entypo-icons/core/icons/funnel.svg\"\n    },\n    \"game-controller\": {\n      \"codepoint\": 61872,\n      \"source\": \"node_modules/@entypo-icons/core/icons/game-controller.svg\"\n    },\n    \"gauge\": {\n      \"codepoint\": 61873,\n      \"source\": \"node_modules/@entypo-icons/core/icons/gauge.svg\"\n    },\n    \"github\": {\n      \"codepoint\": 61874,\n      \"source\": \"node_modules/@entypo-icons/core/icons/github.svg\"\n    },\n    \"github-with-circle\": {\n      \"codepoint\": 61875,\n      \"source\": \"node_modules/@entypo-icons/core/icons/github-with-circle.svg\"\n    },\n    \"globe\": {\n      \"codepoint\": 61876,\n      \"source\": \"node_modules/@entypo-icons/core/icons/globe.svg\"\n    },\n    \"google-\": {\n      \"codepoint\": 61877,\n      \"source\": \"node_modules/@entypo-icons/core/icons/google+.svg\"\n    },\n    \"google--with-circle\": {\n      \"codepoint\": 61878,\n      \"source\": \"node_modules/@entypo-icons/core/icons/google+-with-circle.svg\"\n    },\n    \"google-drive\": {\n      \"codepoint\": 61879,\n      \"source\": \"node_modules/@entypo-icons/core/icons/google-drive.svg\"\n    },\n    \"google-hangouts\": {\n      \"codepoint\": 61880,\n      \"source\": \"node_modules/@entypo-icons/core/icons/google-hangouts.svg\"\n    },\n    \"google-play\": {\n      \"codepoint\": 61881,\n      \"source\": \"node_modules/@entypo-icons/core/icons/google-play.svg\"\n    },\n    \"graduation-cap\": {\n      \"codepoint\": 61882,\n      \"source\": \"node_modules/@entypo-icons/core/icons/graduation-cap.svg\"\n    },\n    \"grid\": {\n      \"codepoint\": 61883,\n      \"source\": \"node_modules/@entypo-icons/core/icons/grid.svg\"\n    },\n    \"grooveshark\": {\n      \"codepoint\": 61884,\n      \"source\": \"node_modules/@entypo-icons/core/icons/grooveshark.svg\"\n    },\n    \"hair-cross\": {\n      \"codepoint\": 61885,\n      \"source\": \"node_modules/@entypo-icons/core/icons/hair-cross.svg\"\n    },\n    \"hand\": {\n      \"codepoint\": 61886,\n      \"source\": \"node_modules/@entypo-icons/core/icons/hand.svg\"\n    },\n    \"heart\": {\n      \"codepoint\": 61887,\n      \"source\": \"node_modules/@entypo-icons/core/icons/heart.svg\"\n    },\n    \"heart-outlined\": {\n      \"codepoint\": 61888,\n      \"source\": \"node_modules/@entypo-icons/core/icons/heart-outlined.svg\"\n    },\n    \"help\": {\n      \"codepoint\": 61889,\n      \"source\": \"node_modules/@entypo-icons/core/icons/help.svg\"\n    },\n    \"help-with-circle\": {\n      \"codepoint\": 61890,\n      \"source\": \"node_modules/@entypo-icons/core/icons/help-with-circle.svg\"\n    },\n    \"home\": {\n      \"codepoint\": 61891,\n      \"source\": \"node_modules/@entypo-icons/core/icons/home.svg\"\n    },\n    \"hour-glass\": {\n      \"codepoint\": 61892,\n      \"source\": \"node_modules/@entypo-icons/core/icons/hour-glass.svg\"\n    },\n    \"houzz\": {\n      \"codepoint\": 61893,\n      \"source\": \"node_modules/@entypo-icons/core/icons/houzz.svg\"\n    },\n    \"icloud\": {\n      \"codepoint\": 61894,\n      \"source\": \"node_modules/@entypo-icons/core/icons/icloud.svg\"\n    },\n    \"image\": {\n      \"codepoint\": 61895,\n      \"source\": \"node_modules/@entypo-icons/core/icons/image.svg\"\n    },\n    \"image-inverted\": {\n      \"codepoint\": 61896,\n      \"source\": \"node_modules/@entypo-icons/core/icons/image-inverted.svg\"\n    },\n    \"images\": {\n      \"codepoint\": 61897,\n      \"source\": \"node_modules/@entypo-icons/core/icons/images.svg\"\n    },\n    \"inbox\": {\n      \"codepoint\": 61898,\n      \"source\": \"node_modules/@entypo-icons/core/icons/inbox.svg\"\n    },\n    \"infinity\": {\n      \"codepoint\": 61899,\n      \"source\": \"node_modules/@entypo-icons/core/icons/infinity.svg\"\n    },\n    \"info\": {\n      \"codepoint\": 61900,\n      \"source\": \"node_modules/@entypo-icons/core/icons/info.svg\"\n    },\n    \"info-with-circle\": {\n      \"codepoint\": 61901,\n      \"source\": \"node_modules/@entypo-icons/core/icons/info-with-circle.svg\"\n    },\n    \"instagram\": {\n      \"codepoint\": 61902,\n      \"source\": \"node_modules/@entypo-icons/core/icons/instagram.svg\"\n    },\n    \"instagram-with-circle\": {\n      \"codepoint\": 61903,\n      \"source\": \"node_modules/@entypo-icons/core/icons/instagram-with-circle.svg\"\n    },\n    \"install\": {\n      \"codepoint\": 61904,\n      \"source\": \"node_modules/@entypo-icons/core/icons/install.svg\"\n    },\n    \"key\": {\n      \"codepoint\": 61905,\n      \"source\": \"node_modules/@entypo-icons/core/icons/key.svg\"\n    },\n    \"keyboard\": {\n      \"codepoint\": 61906,\n      \"source\": \"node_modules/@entypo-icons/core/icons/keyboard.svg\"\n    },\n    \"lab-flask\": {\n      \"codepoint\": 61907,\n      \"source\": \"node_modules/@entypo-icons/core/icons/lab-flask.svg\"\n    },\n    \"landline\": {\n      \"codepoint\": 61908,\n      \"source\": \"node_modules/@entypo-icons/core/icons/landline.svg\"\n    },\n    \"language\": {\n      \"codepoint\": 61909,\n      \"source\": \"node_modules/@entypo-icons/core/icons/language.svg\"\n    },\n    \"laptop\": {\n      \"codepoint\": 61910,\n      \"source\": \"node_modules/@entypo-icons/core/icons/laptop.svg\"\n    },\n    \"lastfm\": {\n      \"codepoint\": 61911,\n      \"source\": \"node_modules/@entypo-icons/core/icons/lastfm.svg\"\n    },\n    \"lastfm-with-circle\": {\n      \"codepoint\": 61912,\n      \"source\": \"node_modules/@entypo-icons/core/icons/lastfm-with-circle.svg\"\n    },\n    \"layers\": {\n      \"codepoint\": 61913,\n      \"source\": \"node_modules/@entypo-icons/core/icons/layers.svg\"\n    },\n    \"leaf\": {\n      \"codepoint\": 61914,\n      \"source\": \"node_modules/@entypo-icons/core/icons/leaf.svg\"\n    },\n    \"level-down\": {\n      \"codepoint\": 61915,\n      \"source\": \"node_modules/@entypo-icons/core/icons/level-down.svg\"\n    },\n    \"level-up\": {\n      \"codepoint\": 61916,\n      \"source\": \"node_modules/@entypo-icons/core/icons/level-up.svg\"\n    },\n    \"lifebuoy\": {\n      \"codepoint\": 61917,\n      \"source\": \"node_modules/@entypo-icons/core/icons/lifebuoy.svg\"\n    },\n    \"light-bulb\": {\n      \"codepoint\": 61918,\n      \"source\": \"node_modules/@entypo-icons/core/icons/light-bulb.svg\"\n    },\n    \"light-down\": {\n      \"codepoint\": 61919,\n      \"source\": \"node_modules/@entypo-icons/core/icons/light-down.svg\"\n    },\n    \"light-up\": {\n      \"codepoint\": 61920,\n      \"source\": \"node_modules/@entypo-icons/core/icons/light-up.svg\"\n    },\n    \"line-graph\": {\n      \"codepoint\": 61921,\n      \"source\": \"node_modules/@entypo-icons/core/icons/line-graph.svg\"\n    },\n    \"link\": {\n      \"codepoint\": 61922,\n      \"source\": \"node_modules/@entypo-icons/core/icons/link.svg\"\n    },\n    \"linkedin\": {\n      \"codepoint\": 61923,\n      \"source\": \"node_modules/@entypo-icons/core/icons/linkedin.svg\"\n    },\n    \"linkedin-with-circle\": {\n      \"codepoint\": 61924,\n      \"source\": \"node_modules/@entypo-icons/core/icons/linkedin-with-circle.svg\"\n    },\n    \"list\": {\n      \"codepoint\": 61925,\n      \"source\": \"node_modules/@entypo-icons/core/icons/list.svg\"\n    },\n    \"location\": {\n      \"codepoint\": 61926,\n      \"source\": \"node_modules/@entypo-icons/core/icons/location.svg\"\n    },\n    \"location-pin\": {\n      \"codepoint\": 61927,\n      \"source\": \"node_modules/@entypo-icons/core/icons/location-pin.svg\"\n    },\n    \"lock\": {\n      \"codepoint\": 61928,\n      \"source\": \"node_modules/@entypo-icons/core/icons/lock.svg\"\n    },\n    \"lock-open\": {\n      \"codepoint\": 61929,\n      \"source\": \"node_modules/@entypo-icons/core/icons/lock-open.svg\"\n    },\n    \"log-out\": {\n      \"codepoint\": 61930,\n      \"source\": \"node_modules/@entypo-icons/core/icons/log-out.svg\"\n    },\n    \"login\": {\n      \"codepoint\": 61931,\n      \"source\": \"node_modules/@entypo-icons/core/icons/login.svg\"\n    },\n    \"loop\": {\n      \"codepoint\": 61932,\n      \"source\": \"node_modules/@entypo-icons/core/icons/loop.svg\"\n    },\n    \"magnet\": {\n      \"codepoint\": 61933,\n      \"source\": \"node_modules/@entypo-icons/core/icons/magnet.svg\"\n    },\n    \"magnifying-glass\": {\n      \"codepoint\": 61934,\n      \"source\": \"node_modules/@entypo-icons/core/icons/magnifying-glass.svg\"\n    },\n    \"mail\": {\n      \"codepoint\": 61935,\n      \"source\": \"node_modules/@entypo-icons/core/icons/mail.svg\"\n    },\n    \"mail-with-circle\": {\n      \"codepoint\": 61936,\n      \"source\": \"node_modules/@entypo-icons/core/icons/mail-with-circle.svg\"\n    },\n    \"man\": {\n      \"codepoint\": 61937,\n      \"source\": \"node_modules/@entypo-icons/core/icons/man.svg\"\n    },\n    \"map\": {\n      \"codepoint\": 61938,\n      \"source\": \"node_modules/@entypo-icons/core/icons/map.svg\"\n    },\n    \"mask\": {\n      \"codepoint\": 61939,\n      \"source\": \"node_modules/@entypo-icons/core/icons/mask.svg\"\n    },\n    \"medal\": {\n      \"codepoint\": 61940,\n      \"source\": \"node_modules/@entypo-icons/core/icons/medal.svg\"\n    },\n    \"medium\": {\n      \"codepoint\": 61941,\n      \"source\": \"node_modules/@entypo-icons/core/icons/medium.svg\"\n    },\n    \"medium-with-circle\": {\n      \"codepoint\": 61942,\n      \"source\": \"node_modules/@entypo-icons/core/icons/medium-with-circle.svg\"\n    },\n    \"megaphone\": {\n      \"codepoint\": 61943,\n      \"source\": \"node_modules/@entypo-icons/core/icons/megaphone.svg\"\n    },\n    \"menu\": {\n      \"codepoint\": 61944,\n      \"source\": \"node_modules/@entypo-icons/core/icons/menu.svg\"\n    },\n    \"merge\": {\n      \"codepoint\": 61945,\n      \"source\": \"node_modules/@entypo-icons/core/icons/merge.svg\"\n    },\n    \"message\": {\n      \"codepoint\": 61946,\n      \"source\": \"node_modules/@entypo-icons/core/icons/message.svg\"\n    },\n    \"mic\": {\n      \"codepoint\": 61947,\n      \"source\": \"node_modules/@entypo-icons/core/icons/mic.svg\"\n    },\n    \"minus\": {\n      \"codepoint\": 61948,\n      \"source\": \"node_modules/@entypo-icons/core/icons/minus.svg\"\n    },\n    \"mixi\": {\n      \"codepoint\": 61949,\n      \"source\": \"node_modules/@entypo-icons/core/icons/mixi.svg\"\n    },\n    \"mobile\": {\n      \"codepoint\": 61950,\n      \"source\": \"node_modules/@entypo-icons/core/icons/mobile.svg\"\n    },\n    \"modern-mic\": {\n      \"codepoint\": 61951,\n      \"source\": \"node_modules/@entypo-icons/core/icons/modern-mic.svg\"\n    },\n    \"moon\": {\n      \"codepoint\": 61952,\n      \"source\": \"node_modules/@entypo-icons/core/icons/moon.svg\"\n    },\n    \"mouse\": {\n      \"codepoint\": 61953,\n      \"source\": \"node_modules/@entypo-icons/core/icons/mouse.svg\"\n    },\n    \"mouse-pointer\": {\n      \"codepoint\": 61954,\n      \"source\": \"node_modules/@entypo-icons/core/icons/mouse-pointer.svg\"\n    },\n    \"music\": {\n      \"codepoint\": 61955,\n      \"source\": \"node_modules/@entypo-icons/core/icons/music.svg\"\n    },\n    \"network\": {\n      \"codepoint\": 61956,\n      \"source\": \"node_modules/@entypo-icons/core/icons/network.svg\"\n    },\n    \"new\": {\n      \"codepoint\": 61957,\n      \"source\": \"node_modules/@entypo-icons/core/icons/new.svg\"\n    },\n    \"new-message\": {\n      \"codepoint\": 61958,\n      \"source\": \"node_modules/@entypo-icons/core/icons/new-message.svg\"\n    },\n    \"news\": {\n      \"codepoint\": 61959,\n      \"source\": \"node_modules/@entypo-icons/core/icons/news.svg\"\n    },\n    \"newsletter\": {\n      \"codepoint\": 61960,\n      \"source\": \"node_modules/@entypo-icons/core/icons/newsletter.svg\"\n    },\n    \"note\": {\n      \"codepoint\": 61961,\n      \"source\": \"node_modules/@entypo-icons/core/icons/note.svg\"\n    },\n    \"notification\": {\n      \"codepoint\": 61962,\n      \"source\": \"node_modules/@entypo-icons/core/icons/notification.svg\"\n    },\n    \"notifications-off\": {\n      \"codepoint\": 61963,\n      \"source\": \"node_modules/@entypo-icons/core/icons/notifications-off.svg\"\n    },\n    \"old-mobile\": {\n      \"codepoint\": 61964,\n      \"source\": \"node_modules/@entypo-icons/core/icons/old-mobile.svg\"\n    },\n    \"old-phone\": {\n      \"codepoint\": 61965,\n      \"source\": \"node_modules/@entypo-icons/core/icons/old-phone.svg\"\n    },\n    \"onedrive\": {\n      \"codepoint\": 61966,\n      \"source\": \"node_modules/@entypo-icons/core/icons/onedrive.svg\"\n    },\n    \"open-book\": {\n      \"codepoint\": 61967,\n      \"source\": \"node_modules/@entypo-icons/core/icons/open-book.svg\"\n    },\n    \"palette\": {\n      \"codepoint\": 61968,\n      \"source\": \"node_modules/@entypo-icons/core/icons/palette.svg\"\n    },\n    \"paper-plane\": {\n      \"codepoint\": 61969,\n      \"source\": \"node_modules/@entypo-icons/core/icons/paper-plane.svg\"\n    },\n    \"paypal\": {\n      \"codepoint\": 61970,\n      \"source\": \"node_modules/@entypo-icons/core/icons/paypal.svg\"\n    },\n    \"pencil\": {\n      \"codepoint\": 61971,\n      \"source\": \"node_modules/@entypo-icons/core/icons/pencil.svg\"\n    },\n    \"phone\": {\n      \"codepoint\": 61972,\n      \"source\": \"node_modules/@entypo-icons/core/icons/phone.svg\"\n    },\n    \"picasa\": {\n      \"codepoint\": 61973,\n      \"source\": \"node_modules/@entypo-icons/core/icons/picasa.svg\"\n    },\n    \"pie-chart\": {\n      \"codepoint\": 61974,\n      \"source\": \"node_modules/@entypo-icons/core/icons/pie-chart.svg\"\n    },\n    \"pin\": {\n      \"codepoint\": 61975,\n      \"source\": \"node_modules/@entypo-icons/core/icons/pin.svg\"\n    },\n    \"pinterest\": {\n      \"codepoint\": 61976,\n      \"source\": \"node_modules/@entypo-icons/core/icons/pinterest.svg\"\n    },\n    \"pinterest-with-circle\": {\n      \"codepoint\": 61977,\n      \"source\": \"node_modules/@entypo-icons/core/icons/pinterest-with-circle.svg\"\n    },\n    \"plus\": {\n      \"codepoint\": 61978,\n      \"source\": \"node_modules/@entypo-icons/core/icons/plus.svg\"\n    },\n    \"popup\": {\n      \"codepoint\": 61979,\n      \"source\": \"node_modules/@entypo-icons/core/icons/popup.svg\"\n    },\n    \"power-plug\": {\n      \"codepoint\": 61980,\n      \"source\": \"node_modules/@entypo-icons/core/icons/power-plug.svg\"\n    },\n    \"price-ribbon\": {\n      \"codepoint\": 61981,\n      \"source\": \"node_modules/@entypo-icons/core/icons/price-ribbon.svg\"\n    },\n    \"price-tag\": {\n      \"codepoint\": 61982,\n      \"source\": \"node_modules/@entypo-icons/core/icons/price-tag.svg\"\n    },\n    \"print\": {\n      \"codepoint\": 61983,\n      \"source\": \"node_modules/@entypo-icons/core/icons/print.svg\"\n    },\n    \"progress-empty\": {\n      \"codepoint\": 61984,\n      \"source\": \"node_modules/@entypo-icons/core/icons/progress-empty.svg\"\n    },\n    \"progress-full\": {\n      \"codepoint\": 61985,\n      \"source\": \"node_modules/@entypo-icons/core/icons/progress-full.svg\"\n    },\n    \"progress-one\": {\n      \"codepoint\": 61986,\n      \"source\": \"node_modules/@entypo-icons/core/icons/progress-one.svg\"\n    },\n    \"progress-two\": {\n      \"codepoint\": 61987,\n      \"source\": \"node_modules/@entypo-icons/core/icons/progress-two.svg\"\n    },\n    \"publish\": {\n      \"codepoint\": 61988,\n      \"source\": \"node_modules/@entypo-icons/core/icons/publish.svg\"\n    },\n    \"qq\": {\n      \"codepoint\": 61989,\n      \"source\": \"node_modules/@entypo-icons/core/icons/qq.svg\"\n    },\n    \"qq-with-circle\": {\n      \"codepoint\": 61990,\n      \"source\": \"node_modules/@entypo-icons/core/icons/qq-with-circle.svg\"\n    },\n    \"quote\": {\n      \"codepoint\": 61991,\n      \"source\": \"node_modules/@entypo-icons/core/icons/quote.svg\"\n    },\n    \"radio\": {\n      \"codepoint\": 61992,\n      \"source\": \"node_modules/@entypo-icons/core/icons/radio.svg\"\n    },\n    \"raft\": {\n      \"codepoint\": 61993,\n      \"source\": \"node_modules/@entypo-icons/core/icons/raft.svg\"\n    },\n    \"raft-with-circle\": {\n      \"codepoint\": 61994,\n      \"source\": \"node_modules/@entypo-icons/core/icons/raft-with-circle.svg\"\n    },\n    \"rainbow\": {\n      \"codepoint\": 61995,\n      \"source\": \"node_modules/@entypo-icons/core/icons/rainbow.svg\"\n    },\n    \"rdio\": {\n      \"codepoint\": 61996,\n      \"source\": \"node_modules/@entypo-icons/core/icons/rdio.svg\"\n    },\n    \"rdio-with-circle\": {\n      \"codepoint\": 61997,\n      \"source\": \"node_modules/@entypo-icons/core/icons/rdio-with-circle.svg\"\n    },\n    \"remove-user\": {\n      \"codepoint\": 61998,\n      \"source\": \"node_modules/@entypo-icons/core/icons/remove-user.svg\"\n    },\n    \"renren\": {\n      \"codepoint\": 61999,\n      \"source\": \"node_modules/@entypo-icons/core/icons/renren.svg\"\n    },\n    \"reply\": {\n      \"codepoint\": 62000,\n      \"source\": \"node_modules/@entypo-icons/core/icons/reply.svg\"\n    },\n    \"reply-all\": {\n      \"codepoint\": 62001,\n      \"source\": \"node_modules/@entypo-icons/core/icons/reply-all.svg\"\n    },\n    \"resize-100\": {\n      \"codepoint\": 62002,\n      \"source\": \"node_modules/@entypo-icons/core/icons/resize-100.svg\"\n    },\n    \"resize-full-screen\": {\n      \"codepoint\": 62003,\n      \"source\": \"node_modules/@entypo-icons/core/icons/resize-full-screen.svg\"\n    },\n    \"retweet\": {\n      \"codepoint\": 62004,\n      \"source\": \"node_modules/@entypo-icons/core/icons/retweet.svg\"\n    },\n    \"rocket\": {\n      \"codepoint\": 62005,\n      \"source\": \"node_modules/@entypo-icons/core/icons/rocket.svg\"\n    },\n    \"round-brush\": {\n      \"codepoint\": 62006,\n      \"source\": \"node_modules/@entypo-icons/core/icons/round-brush.svg\"\n    },\n    \"rss\": {\n      \"codepoint\": 62007,\n      \"source\": \"node_modules/@entypo-icons/core/icons/rss.svg\"\n    },\n    \"ruler\": {\n      \"codepoint\": 62008,\n      \"source\": \"node_modules/@entypo-icons/core/icons/ruler.svg\"\n    },\n    \"save\": {\n      \"codepoint\": 62009,\n      \"source\": \"node_modules/@entypo-icons/core/icons/save.svg\"\n    },\n    \"scissors\": {\n      \"codepoint\": 62010,\n      \"source\": \"node_modules/@entypo-icons/core/icons/scissors.svg\"\n    },\n    \"scribd\": {\n      \"codepoint\": 62011,\n      \"source\": \"node_modules/@entypo-icons/core/icons/scribd.svg\"\n    },\n    \"select-arrows\": {\n      \"codepoint\": 62012,\n      \"source\": \"node_modules/@entypo-icons/core/icons/select-arrows.svg\"\n    },\n    \"share\": {\n      \"codepoint\": 62013,\n      \"source\": \"node_modules/@entypo-icons/core/icons/share.svg\"\n    },\n    \"share-alternative\": {\n      \"codepoint\": 62014,\n      \"source\": \"node_modules/@entypo-icons/core/icons/share-alternative.svg\"\n    },\n    \"shareable\": {\n      \"codepoint\": 62015,\n      \"source\": \"node_modules/@entypo-icons/core/icons/shareable.svg\"\n    },\n    \"shield\": {\n      \"codepoint\": 62016,\n      \"source\": \"node_modules/@entypo-icons/core/icons/shield.svg\"\n    },\n    \"shop\": {\n      \"codepoint\": 62017,\n      \"source\": \"node_modules/@entypo-icons/core/icons/shop.svg\"\n    },\n    \"shopping-bag\": {\n      \"codepoint\": 62018,\n      \"source\": \"node_modules/@entypo-icons/core/icons/shopping-bag.svg\"\n    },\n    \"shopping-basket\": {\n      \"codepoint\": 62019,\n      \"source\": \"node_modules/@entypo-icons/core/icons/shopping-basket.svg\"\n    },\n    \"shopping-cart\": {\n      \"codepoint\": 62020,\n      \"source\": \"node_modules/@entypo-icons/core/icons/shopping-cart.svg\"\n    },\n    \"shuffle\": {\n      \"codepoint\": 62021,\n      \"source\": \"node_modules/@entypo-icons/core/icons/shuffle.svg\"\n    },\n    \"signal\": {\n      \"codepoint\": 62022,\n      \"source\": \"node_modules/@entypo-icons/core/icons/signal.svg\"\n    },\n    \"sina-weibo\": {\n      \"codepoint\": 62023,\n      \"source\": \"node_modules/@entypo-icons/core/icons/sina-weibo.svg\"\n    },\n    \"skype\": {\n      \"codepoint\": 62024,\n      \"source\": \"node_modules/@entypo-icons/core/icons/skype.svg\"\n    },\n    \"skype-with-circle\": {\n      \"codepoint\": 62025,\n      \"source\": \"node_modules/@entypo-icons/core/icons/skype-with-circle.svg\"\n    },\n    \"slideshare\": {\n      \"codepoint\": 62026,\n      \"source\": \"node_modules/@entypo-icons/core/icons/slideshare.svg\"\n    },\n    \"smashing\": {\n      \"codepoint\": 62027,\n      \"source\": \"node_modules/@entypo-icons/core/icons/smashing.svg\"\n    },\n    \"sound\": {\n      \"codepoint\": 62028,\n      \"source\": \"node_modules/@entypo-icons/core/icons/sound.svg\"\n    },\n    \"sound-mix\": {\n      \"codepoint\": 62029,\n      \"source\": \"node_modules/@entypo-icons/core/icons/sound-mix.svg\"\n    },\n    \"sound-mute\": {\n      \"codepoint\": 62030,\n      \"source\": \"node_modules/@entypo-icons/core/icons/sound-mute.svg\"\n    },\n    \"soundcloud\": {\n      \"codepoint\": 62031,\n      \"source\": \"node_modules/@entypo-icons/core/icons/soundcloud.svg\"\n    },\n    \"sports-club\": {\n      \"codepoint\": 62032,\n      \"source\": \"node_modules/@entypo-icons/core/icons/sports-club.svg\"\n    },\n    \"spotify\": {\n      \"codepoint\": 62033,\n      \"source\": \"node_modules/@entypo-icons/core/icons/spotify.svg\"\n    },\n    \"spotify-with-circle\": {\n      \"codepoint\": 62034,\n      \"source\": \"node_modules/@entypo-icons/core/icons/spotify-with-circle.svg\"\n    },\n    \"spreadsheet\": {\n      \"codepoint\": 62035,\n      \"source\": \"node_modules/@entypo-icons/core/icons/spreadsheet.svg\"\n    },\n    \"squared-cross\": {\n      \"codepoint\": 62036,\n      \"source\": \"node_modules/@entypo-icons/core/icons/squared-cross.svg\"\n    },\n    \"squared-minus\": {\n      \"codepoint\": 62037,\n      \"source\": \"node_modules/@entypo-icons/core/icons/squared-minus.svg\"\n    },\n    \"squared-plus\": {\n      \"codepoint\": 62038,\n      \"source\": \"node_modules/@entypo-icons/core/icons/squared-plus.svg\"\n    },\n    \"star\": {\n      \"codepoint\": 62039,\n      \"source\": \"node_modules/@entypo-icons/core/icons/star.svg\"\n    },\n    \"star-outlined\": {\n      \"codepoint\": 62040,\n      \"source\": \"node_modules/@entypo-icons/core/icons/star-outlined.svg\"\n    },\n    \"stopwatch\": {\n      \"codepoint\": 62041,\n      \"source\": \"node_modules/@entypo-icons/core/icons/stopwatch.svg\"\n    },\n    \"stumbleupon\": {\n      \"codepoint\": 62042,\n      \"source\": \"node_modules/@entypo-icons/core/icons/stumbleupon.svg\"\n    },\n    \"stumbleupon-with-circle\": {\n      \"codepoint\": 62043,\n      \"source\": \"node_modules/@entypo-icons/core/icons/stumbleupon-with-circle.svg\"\n    },\n    \"suitcase\": {\n      \"codepoint\": 62044,\n      \"source\": \"node_modules/@entypo-icons/core/icons/suitcase.svg\"\n    },\n    \"swap\": {\n      \"codepoint\": 62045,\n      \"source\": \"node_modules/@entypo-icons/core/icons/swap.svg\"\n    },\n    \"swarm\": {\n      \"codepoint\": 62046,\n      \"source\": \"node_modules/@entypo-icons/core/icons/swarm.svg\"\n    },\n    \"sweden\": {\n      \"codepoint\": 62047,\n      \"source\": \"node_modules/@entypo-icons/core/icons/sweden.svg\"\n    },\n    \"switch\": {\n      \"codepoint\": 62048,\n      \"source\": \"node_modules/@entypo-icons/core/icons/switch.svg\"\n    },\n    \"tablet\": {\n      \"codepoint\": 62049,\n      \"source\": \"node_modules/@entypo-icons/core/icons/tablet.svg\"\n    },\n    \"tablet-mobile-combo\": {\n      \"codepoint\": 62050,\n      \"source\": \"node_modules/@entypo-icons/core/icons/tablet-mobile-combo.svg\"\n    },\n    \"tag\": {\n      \"codepoint\": 62051,\n      \"source\": \"node_modules/@entypo-icons/core/icons/tag.svg\"\n    },\n    \"text\": {\n      \"codepoint\": 62052,\n      \"source\": \"node_modules/@entypo-icons/core/icons/text.svg\"\n    },\n    \"text-document\": {\n      \"codepoint\": 62053,\n      \"source\": \"node_modules/@entypo-icons/core/icons/text-document.svg\"\n    },\n    \"text-document-inverted\": {\n      \"codepoint\": 62054,\n      \"source\": \"node_modules/@entypo-icons/core/icons/text-document-inverted.svg\"\n    },\n    \"thermometer\": {\n      \"codepoint\": 62055,\n      \"source\": \"node_modules/@entypo-icons/core/icons/thermometer.svg\"\n    },\n    \"thumbs-down\": {\n      \"codepoint\": 62056,\n      \"source\": \"node_modules/@entypo-icons/core/icons/thumbs-down.svg\"\n    },\n    \"thumbs-up\": {\n      \"codepoint\": 62057,\n      \"source\": \"node_modules/@entypo-icons/core/icons/thumbs-up.svg\"\n    },\n    \"thunder-cloud\": {\n      \"codepoint\": 62058,\n      \"source\": \"node_modules/@entypo-icons/core/icons/thunder-cloud.svg\"\n    },\n    \"ticket\": {\n      \"codepoint\": 62059,\n      \"source\": \"node_modules/@entypo-icons/core/icons/ticket.svg\"\n    },\n    \"time-slot\": {\n      \"codepoint\": 62060,\n      \"source\": \"node_modules/@entypo-icons/core/icons/time-slot.svg\"\n    },\n    \"tools\": {\n      \"codepoint\": 62061,\n      \"source\": \"node_modules/@entypo-icons/core/icons/tools.svg\"\n    },\n    \"traffic-cone\": {\n      \"codepoint\": 62062,\n      \"source\": \"node_modules/@entypo-icons/core/icons/traffic-cone.svg\"\n    },\n    \"trash\": {\n      \"codepoint\": 62063,\n      \"source\": \"node_modules/@entypo-icons/core/icons/trash.svg\"\n    },\n    \"tree\": {\n      \"codepoint\": 62064,\n      \"source\": \"node_modules/@entypo-icons/core/icons/tree.svg\"\n    },\n    \"triangle-down\": {\n      \"codepoint\": 62065,\n      \"source\": \"node_modules/@entypo-icons/core/icons/triangle-down.svg\"\n    },\n    \"triangle-left\": {\n      \"codepoint\": 62066,\n      \"source\": \"node_modules/@entypo-icons/core/icons/triangle-left.svg\"\n    },\n    \"triangle-right\": {\n      \"codepoint\": 62067,\n      \"source\": \"node_modules/@entypo-icons/core/icons/triangle-right.svg\"\n    },\n    \"triangle-up\": {\n      \"codepoint\": 62068,\n      \"source\": \"node_modules/@entypo-icons/core/icons/triangle-up.svg\"\n    },\n    \"tripadvisor\": {\n      \"codepoint\": 62069,\n      \"source\": \"node_modules/@entypo-icons/core/icons/tripadvisor.svg\"\n    },\n    \"trophy\": {\n      \"codepoint\": 62070,\n      \"source\": \"node_modules/@entypo-icons/core/icons/trophy.svg\"\n    },\n    \"tumblr\": {\n      \"codepoint\": 62071,\n      \"source\": \"node_modules/@entypo-icons/core/icons/tumblr.svg\"\n    },\n    \"tumblr-with-circle\": {\n      \"codepoint\": 62072,\n      \"source\": \"node_modules/@entypo-icons/core/icons/tumblr-with-circle.svg\"\n    },\n    \"tv\": {\n      \"codepoint\": 62073,\n      \"source\": \"node_modules/@entypo-icons/core/icons/tv.svg\"\n    },\n    \"twitter\": {\n      \"codepoint\": 62074,\n      \"source\": \"node_modules/@entypo-icons/core/icons/twitter.svg\"\n    },\n    \"twitter-with-circle\": {\n      \"codepoint\": 62075,\n      \"source\": \"node_modules/@entypo-icons/core/icons/twitter-with-circle.svg\"\n    },\n    \"typing\": {\n      \"codepoint\": 62076,\n      \"source\": \"node_modules/@entypo-icons/core/icons/typing.svg\"\n    },\n    \"uninstall\": {\n      \"codepoint\": 62077,\n      \"source\": \"node_modules/@entypo-icons/core/icons/uninstall.svg\"\n    },\n    \"unread\": {\n      \"codepoint\": 62078,\n      \"source\": \"node_modules/@entypo-icons/core/icons/unread.svg\"\n    },\n    \"untag\": {\n      \"codepoint\": 62079,\n      \"source\": \"node_modules/@entypo-icons/core/icons/untag.svg\"\n    },\n    \"upload\": {\n      \"codepoint\": 62080,\n      \"source\": \"node_modules/@entypo-icons/core/icons/upload.svg\"\n    },\n    \"upload-to-cloud\": {\n      \"codepoint\": 62081,\n      \"source\": \"node_modules/@entypo-icons/core/icons/upload-to-cloud.svg\"\n    },\n    \"user\": {\n      \"codepoint\": 62082,\n      \"source\": \"node_modules/@entypo-icons/core/icons/user.svg\"\n    },\n    \"users\": {\n      \"codepoint\": 62083,\n      \"source\": \"node_modules/@entypo-icons/core/icons/users.svg\"\n    },\n    \"v-card\": {\n      \"codepoint\": 62084,\n      \"source\": \"node_modules/@entypo-icons/core/icons/v-card.svg\"\n    },\n    \"video\": {\n      \"codepoint\": 62085,\n      \"source\": \"node_modules/@entypo-icons/core/icons/video.svg\"\n    },\n    \"video-camera\": {\n      \"codepoint\": 62086,\n      \"source\": \"node_modules/@entypo-icons/core/icons/video-camera.svg\"\n    },\n    \"vimeo\": {\n      \"codepoint\": 62087,\n      \"source\": \"node_modules/@entypo-icons/core/icons/vimeo.svg\"\n    },\n    \"vimeo-with-circle\": {\n      \"codepoint\": 62088,\n      \"source\": \"node_modules/@entypo-icons/core/icons/vimeo-with-circle.svg\"\n    },\n    \"vine\": {\n      \"codepoint\": 62089,\n      \"source\": \"node_modules/@entypo-icons/core/icons/vine.svg\"\n    },\n    \"vine-with-circle\": {\n      \"codepoint\": 62090,\n      \"source\": \"node_modules/@entypo-icons/core/icons/vine-with-circle.svg\"\n    },\n    \"vinyl\": {\n      \"codepoint\": 62091,\n      \"source\": \"node_modules/@entypo-icons/core/icons/vinyl.svg\"\n    },\n    \"vk\": {\n      \"codepoint\": 62092,\n      \"source\": \"node_modules/@entypo-icons/core/icons/vk.svg\"\n    },\n    \"vk-alternitive\": {\n      \"codepoint\": 62093,\n      \"source\": \"node_modules/@entypo-icons/core/icons/vk-alternitive.svg\"\n    },\n    \"vk-with-circle\": {\n      \"codepoint\": 62094,\n      \"source\": \"node_modules/@entypo-icons/core/icons/vk-with-circle.svg\"\n    },\n    \"voicemail\": {\n      \"codepoint\": 62095,\n      \"source\": \"node_modules/@entypo-icons/core/icons/voicemail.svg\"\n    },\n    \"wallet\": {\n      \"codepoint\": 62096,\n      \"source\": \"node_modules/@entypo-icons/core/icons/wallet.svg\"\n    },\n    \"warning\": {\n      \"codepoint\": 62097,\n      \"source\": \"node_modules/@entypo-icons/core/icons/warning.svg\"\n    },\n    \"water\": {\n      \"codepoint\": 62098,\n      \"source\": \"node_modules/@entypo-icons/core/icons/water.svg\"\n    },\n    \"windows-store\": {\n      \"codepoint\": 62099,\n      \"source\": \"node_modules/@entypo-icons/core/icons/windows-store.svg\"\n    },\n    \"xing\": {\n      \"codepoint\": 62100,\n      \"source\": \"node_modules/@entypo-icons/core/icons/xing.svg\"\n    },\n    \"xing-with-circle\": {\n      \"codepoint\": 62101,\n      \"source\": \"node_modules/@entypo-icons/core/icons/xing-with-circle.svg\"\n    },\n    \"yelp\": {\n      \"codepoint\": 62102,\n      \"source\": \"node_modules/@entypo-icons/core/icons/yelp.svg\"\n    },\n    \"youko\": {\n      \"codepoint\": 62103,\n      \"source\": \"node_modules/@entypo-icons/core/icons/youko.svg\"\n    },\n    \"youko-with-circle\": {\n      \"codepoint\": 62104,\n      \"source\": \"node_modules/@entypo-icons/core/icons/youko-with-circle.svg\"\n    },\n    \"youtube\": {\n      \"codepoint\": 62105,\n      \"source\": \"node_modules/@entypo-icons/core/icons/youtube.svg\"\n    },\n    \"youtube-with-circle\": {\n      \"codepoint\": 62106,\n      \"source\": \"node_modules/@entypo-icons/core/icons/youtube-with-circle.svg\"\n    }\n  },\n  \"options\": {\n    \"autowidth\": false,\n    \"config\": false,\n    \"copyright\": \"\",\n    \"css3\": false,\n    \"css_selector\": \".icon-{{glyph}}\",\n    \"debug\": false,\n    \"font_ascent\": 448,\n    \"font_descent\": 64,\n    \"font_design_size\": 16,\n    \"font_em\": 512,\n    \"font_name\": \"Entypo\",\n    \"force\": true,\n    \"input\": {\n      \"templates\": \"node_modules/@entypo-icons/core/icons\",\n      \"vectors\": \"node_modules/@entypo-icons/core/icons\"\n    },\n    \"no_hash\": true,\n    \"output\": {\n      \"css\": \"Entypo\",\n      \"fonts\": \"Entypo\",\n      \"preview\": \"Entypo\"\n    },\n    \"preprocessor_path\": null,\n    \"quiet\": false,\n    \"templates\": [\n      \"css\"\n    ]\n  },\n  \"templates\": [\n    \"Entypo/Entypo.css\"\n  ]\n}"
  },
  {
    "path": "packages/entypo/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"entypo\",\n    \"upstreamFont\": \"@entypo-icons/core\",\n    \"buildSteps\": {\n      \"fontCustom\": {\n        \"location\": \"node_modules/@entypo-icons/core/icons\"\n      },\n      \"glyphmap\": {\n        \"mode\": \"css\",\n        \"cleanup\": true\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"12.0.0\",\n        \"upstream\": \"1.0.1\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/entypo/CHANGELOG.md",
    "content": "## 12.5.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.4.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 12.4.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.4.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 12.4.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.3.0 (2025-08-03)\n\n### 🚀 Features\n\n- export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.3.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.2.0 (2025-07-20)\n\n### 🚀 Features\n\n- add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.2.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.1.0 (2025-07-12)\n\n### 🚀 Features\n\n- export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.1.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.2 (2025-06-15)\n\n### 🩹 Fixes\n\n- new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.2\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.1 (2025-06-15)\n\n### 🩹 Fixes\n\n- try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745))\n- remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767))\n- convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765))\n- updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c))\n- **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.1\n\n### ❤️ Thank You\n\n- Alexander Kucheryavenko @Red1tum\n- John Ferlito @johnf\n- Md. Jayed Hasan @JayedHasan232\n\n# 12.0.0 (2025-05-04)\n\n### 🚀 Features\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n- add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702))\n\n### 🩹 Fixes\n\n- upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691))\n- upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690))\n- mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99))\n\n### ⚠️  Breaking Changes\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n\n### ❤️ Thank You\n\n- Chanphirom Sok @chanphiromsok\n- John Ferlito @johnf"
  },
  {
    "path": "packages/entypo/README.md",
    "content": "# React Native Vector Icons - Entypo\n\nEntypo font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/entypo\n```\n\n## Usage\n\n```jsx\nimport { Entypo } from '@react-native-vector-icons/entypo';\n\n// ...\n\n<Entypo name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 12.0.0 | 1.0.1 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/entypo/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.entypo\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsEntypo\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.entypo\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-entypo\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-entypo/fonts\"\n  eachFile { println \"(RNVI:entypo) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n"
  },
  {
    "path": "packages/entypo/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.entypo\">\n</manifest>\n"
  },
  {
    "path": "packages/entypo/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/entypo/android/src/main/java/VectorIconsEntypoPackage.kt",
    "content": "package com.reactnativevectoricons.entypo\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsEntypoPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/entypo/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/entypo/glyphmaps/Entypo.json",
    "content": "{\n  \"500px\": 61696,\n  \"500px-with-circle\": 61697,\n  \"add-to-list\": 61698,\n  \"add-user\": 61699,\n  \"address\": 61700,\n  \"adjust\": 61701,\n  \"air\": 61702,\n  \"aircraft\": 61703,\n  \"aircraft-landing\": 61704,\n  \"aircraft-take-off\": 61705,\n  \"align-bottom\": 61706,\n  \"align-horizontal-middle\": 61707,\n  \"align-left\": 61708,\n  \"align-right\": 61709,\n  \"align-top\": 61710,\n  \"align-vertical-middle\": 61711,\n  \"app-store\": 61712,\n  \"archive\": 61713,\n  \"area-graph\": 61714,\n  \"arrow-bold-down\": 61715,\n  \"arrow-bold-left\": 61716,\n  \"arrow-bold-right\": 61717,\n  \"arrow-bold-up\": 61718,\n  \"arrow-down\": 61719,\n  \"arrow-left\": 61720,\n  \"arrow-long-down\": 61721,\n  \"arrow-long-left\": 61722,\n  \"arrow-long-right\": 61723,\n  \"arrow-long-up\": 61724,\n  \"arrow-right\": 61725,\n  \"arrow-up\": 61726,\n  \"arrow-with-circle-down\": 61727,\n  \"arrow-with-circle-left\": 61728,\n  \"arrow-with-circle-right\": 61729,\n  \"arrow-with-circle-up\": 61730,\n  \"attachment\": 61731,\n  \"awareness-ribbon\": 61732,\n  \"back\": 61733,\n  \"back-in-time\": 61734,\n  \"baidu\": 61735,\n  \"bar-graph\": 61736,\n  \"basecamp\": 61737,\n  \"battery\": 61738,\n  \"beamed-note\": 61739,\n  \"behance\": 61740,\n  \"bell\": 61741,\n  \"blackboard\": 61742,\n  \"block\": 61743,\n  \"book\": 61744,\n  \"bookmark\": 61745,\n  \"bookmarks\": 61746,\n  \"bowl\": 61747,\n  \"box\": 61748,\n  \"briefcase\": 61749,\n  \"browser\": 61750,\n  \"brush\": 61751,\n  \"bucket\": 61752,\n  \"bug\": 61753,\n  \"cake\": 61754,\n  \"calculator\": 61755,\n  \"calendar\": 61756,\n  \"camera\": 61757,\n  \"ccw\": 61758,\n  \"chat\": 61759,\n  \"check\": 61760,\n  \"chevron-down\": 61761,\n  \"chevron-left\": 61762,\n  \"chevron-right\": 61763,\n  \"chevron-small-down\": 61764,\n  \"chevron-small-left\": 61765,\n  \"chevron-small-right\": 61766,\n  \"chevron-small-up\": 61767,\n  \"chevron-thin-down\": 61768,\n  \"chevron-thin-left\": 61769,\n  \"chevron-thin-right\": 61770,\n  \"chevron-thin-up\": 61771,\n  \"chevron-up\": 61772,\n  \"chevron-with-circle-down\": 61773,\n  \"chevron-with-circle-left\": 61774,\n  \"chevron-with-circle-right\": 61775,\n  \"chevron-with-circle-up\": 61776,\n  \"circle\": 61777,\n  \"circle-with-cross\": 61778,\n  \"circle-with-minus\": 61779,\n  \"circle-with-plus\": 61780,\n  \"circular-graph\": 61781,\n  \"clapperboard\": 61782,\n  \"classic-computer\": 61783,\n  \"clipboard\": 61784,\n  \"clock\": 61785,\n  \"cloud\": 61786,\n  \"code\": 61787,\n  \"cog\": 61788,\n  \"colours\": 61789,\n  \"compass\": 61790,\n  \"controller-fast-backward\": 61791,\n  \"controller-fast-forward\": 61792,\n  \"controller-jump-to-start\": 61793,\n  \"controller-next\": 61794,\n  \"controller-paus\": 61795,\n  \"controller-play\": 61796,\n  \"controller-record\": 61797,\n  \"controller-stop\": 61798,\n  \"controller-volume\": 61799,\n  \"copy\": 61800,\n  \"creative-cloud\": 61801,\n  \"creative-commons\": 61802,\n  \"creative-commons-attribution\": 61803,\n  \"creative-commons-noderivs\": 61804,\n  \"creative-commons-noncommercial-eu\": 61805,\n  \"creative-commons-noncommercial-us\": 61806,\n  \"creative-commons-public-domain\": 61807,\n  \"creative-commons-remix\": 61808,\n  \"creative-commons-share\": 61809,\n  \"creative-commons-sharealike\": 61810,\n  \"credit\": 61811,\n  \"credit-card\": 61812,\n  \"crop\": 61813,\n  \"cross\": 61814,\n  \"cup\": 61815,\n  \"cw\": 61816,\n  \"cycle\": 61817,\n  \"database\": 61818,\n  \"dial-pad\": 61819,\n  \"direction\": 61820,\n  \"document\": 61821,\n  \"document-landscape\": 61822,\n  \"documents\": 61823,\n  \"dot-single\": 61824,\n  \"dots-three-horizontal\": 61825,\n  \"dots-three-vertical\": 61826,\n  \"dots-two-horizontal\": 61827,\n  \"dots-two-vertical\": 61828,\n  \"download\": 61829,\n  \"dribbble\": 61830,\n  \"dribbble-with-circle\": 61831,\n  \"drink\": 61832,\n  \"drive\": 61833,\n  \"drop\": 61834,\n  \"dropbox\": 61835,\n  \"edit\": 61836,\n  \"email\": 61837,\n  \"emoji-flirt\": 61838,\n  \"emoji-happy\": 61839,\n  \"emoji-neutral\": 61840,\n  \"emoji-sad\": 61841,\n  \"erase\": 61842,\n  \"eraser\": 61843,\n  \"evernote\": 61844,\n  \"export\": 61845,\n  \"eye\": 61846,\n  \"eye-with-line\": 61847,\n  \"facebook\": 61848,\n  \"facebook-with-circle\": 61849,\n  \"feather\": 61850,\n  \"fingerprint\": 61851,\n  \"flag\": 61852,\n  \"flash\": 61853,\n  \"flashlight\": 61854,\n  \"flat-brush\": 61855,\n  \"flattr\": 61856,\n  \"flickr\": 61857,\n  \"flickr-with-circle\": 61858,\n  \"flow-branch\": 61859,\n  \"flow-cascade\": 61860,\n  \"flow-line\": 61861,\n  \"flow-parallel\": 61862,\n  \"flow-tree\": 61863,\n  \"flower\": 61864,\n  \"folder\": 61865,\n  \"folder-images\": 61866,\n  \"folder-music\": 61867,\n  \"folder-video\": 61868,\n  \"forward\": 61869,\n  \"foursquare\": 61870,\n  \"funnel\": 61871,\n  \"game-controller\": 61872,\n  \"gauge\": 61873,\n  \"github\": 61874,\n  \"github-with-circle\": 61875,\n  \"globe\": 61876,\n  \"google-\": 61877,\n  \"google--with-circle\": 61878,\n  \"google-drive\": 61879,\n  \"google-hangouts\": 61880,\n  \"google-play\": 61881,\n  \"graduation-cap\": 61882,\n  \"grid\": 61883,\n  \"grooveshark\": 61884,\n  \"hair-cross\": 61885,\n  \"hand\": 61886,\n  \"heart\": 61887,\n  \"heart-outlined\": 61888,\n  \"help\": 61889,\n  \"help-with-circle\": 61890,\n  \"home\": 61891,\n  \"hour-glass\": 61892,\n  \"houzz\": 61893,\n  \"icloud\": 61894,\n  \"image\": 61895,\n  \"image-inverted\": 61896,\n  \"images\": 61897,\n  \"inbox\": 61898,\n  \"infinity\": 61899,\n  \"info\": 61900,\n  \"info-with-circle\": 61901,\n  \"instagram\": 61902,\n  \"instagram-with-circle\": 61903,\n  \"install\": 61904,\n  \"key\": 61905,\n  \"keyboard\": 61906,\n  \"lab-flask\": 61907,\n  \"landline\": 61908,\n  \"language\": 61909,\n  \"laptop\": 61910,\n  \"lastfm\": 61911,\n  \"lastfm-with-circle\": 61912,\n  \"layers\": 61913,\n  \"leaf\": 61914,\n  \"level-down\": 61915,\n  \"level-up\": 61916,\n  \"lifebuoy\": 61917,\n  \"light-bulb\": 61918,\n  \"light-down\": 61919,\n  \"light-up\": 61920,\n  \"line-graph\": 61921,\n  \"link\": 61922,\n  \"linkedin\": 61923,\n  \"linkedin-with-circle\": 61924,\n  \"list\": 61925,\n  \"location\": 61926,\n  \"location-pin\": 61927,\n  \"lock\": 61928,\n  \"lock-open\": 61929,\n  \"log-out\": 61930,\n  \"login\": 61931,\n  \"loop\": 61932,\n  \"magnet\": 61933,\n  \"magnifying-glass\": 61934,\n  \"mail\": 61935,\n  \"mail-with-circle\": 61936,\n  \"man\": 61937,\n  \"map\": 61938,\n  \"mask\": 61939,\n  \"medal\": 61940,\n  \"medium\": 61941,\n  \"medium-with-circle\": 61942,\n  \"megaphone\": 61943,\n  \"menu\": 61944,\n  \"merge\": 61945,\n  \"message\": 61946,\n  \"mic\": 61947,\n  \"minus\": 61948,\n  \"mixi\": 61949,\n  \"mobile\": 61950,\n  \"modern-mic\": 61951,\n  \"moon\": 61952,\n  \"mouse\": 61953,\n  \"mouse-pointer\": 61954,\n  \"music\": 61955,\n  \"network\": 61956,\n  \"new\": 61957,\n  \"new-message\": 61958,\n  \"news\": 61959,\n  \"newsletter\": 61960,\n  \"note\": 61961,\n  \"notification\": 61962,\n  \"notifications-off\": 61963,\n  \"old-mobile\": 61964,\n  \"old-phone\": 61965,\n  \"onedrive\": 61966,\n  \"open-book\": 61967,\n  \"palette\": 61968,\n  \"paper-plane\": 61969,\n  \"paypal\": 61970,\n  \"pencil\": 61971,\n  \"phone\": 61972,\n  \"picasa\": 61973,\n  \"pie-chart\": 61974,\n  \"pin\": 61975,\n  \"pinterest\": 61976,\n  \"pinterest-with-circle\": 61977,\n  \"plus\": 61978,\n  \"popup\": 61979,\n  \"power-plug\": 61980,\n  \"price-ribbon\": 61981,\n  \"price-tag\": 61982,\n  \"print\": 61983,\n  \"progress-empty\": 61984,\n  \"progress-full\": 61985,\n  \"progress-one\": 61986,\n  \"progress-two\": 61987,\n  \"publish\": 61988,\n  \"qq\": 61989,\n  \"qq-with-circle\": 61990,\n  \"quote\": 61991,\n  \"radio\": 61992,\n  \"raft\": 61993,\n  \"raft-with-circle\": 61994,\n  \"rainbow\": 61995,\n  \"rdio\": 61996,\n  \"rdio-with-circle\": 61997,\n  \"remove-user\": 61998,\n  \"renren\": 61999,\n  \"reply\": 62000,\n  \"reply-all\": 62001,\n  \"resize-100\": 62002,\n  \"resize-full-screen\": 62003,\n  \"retweet\": 62004,\n  \"rocket\": 62005,\n  \"round-brush\": 62006,\n  \"rss\": 62007,\n  \"ruler\": 62008,\n  \"save\": 62009,\n  \"scissors\": 62010,\n  \"scribd\": 62011,\n  \"select-arrows\": 62012,\n  \"share\": 62013,\n  \"share-alternative\": 62014,\n  \"shareable\": 62015,\n  \"shield\": 62016,\n  \"shop\": 62017,\n  \"shopping-bag\": 62018,\n  \"shopping-basket\": 62019,\n  \"shopping-cart\": 62020,\n  \"shuffle\": 62021,\n  \"signal\": 62022,\n  \"sina-weibo\": 62023,\n  \"skype\": 62024,\n  \"skype-with-circle\": 62025,\n  \"slideshare\": 62026,\n  \"smashing\": 62027,\n  \"sound\": 62028,\n  \"sound-mix\": 62029,\n  \"sound-mute\": 62030,\n  \"soundcloud\": 62031,\n  \"sports-club\": 62032,\n  \"spotify\": 62033,\n  \"spotify-with-circle\": 62034,\n  \"spreadsheet\": 62035,\n  \"squared-cross\": 62036,\n  \"squared-minus\": 62037,\n  \"squared-plus\": 62038,\n  \"star\": 62039,\n  \"star-outlined\": 62040,\n  \"stopwatch\": 62041,\n  \"stumbleupon\": 62042,\n  \"stumbleupon-with-circle\": 62043,\n  \"suitcase\": 62044,\n  \"swap\": 62045,\n  \"swarm\": 62046,\n  \"sweden\": 62047,\n  \"switch\": 62048,\n  \"tablet\": 62049,\n  \"tablet-mobile-combo\": 62050,\n  \"tag\": 62051,\n  \"text\": 62052,\n  \"text-document\": 62053,\n  \"text-document-inverted\": 62054,\n  \"thermometer\": 62055,\n  \"thumbs-down\": 62056,\n  \"thumbs-up\": 62057,\n  \"thunder-cloud\": 62058,\n  \"ticket\": 62059,\n  \"time-slot\": 62060,\n  \"tools\": 62061,\n  \"traffic-cone\": 62062,\n  \"trash\": 62063,\n  \"tree\": 62064,\n  \"triangle-down\": 62065,\n  \"triangle-left\": 62066,\n  \"triangle-right\": 62067,\n  \"triangle-up\": 62068,\n  \"tripadvisor\": 62069,\n  \"trophy\": 62070,\n  \"tumblr\": 62071,\n  \"tumblr-with-circle\": 62072,\n  \"tv\": 62073,\n  \"twitter\": 62074,\n  \"twitter-with-circle\": 62075,\n  \"typing\": 62076,\n  \"uninstall\": 62077,\n  \"unread\": 62078,\n  \"untag\": 62079,\n  \"upload\": 62080,\n  \"upload-to-cloud\": 62081,\n  \"user\": 62082,\n  \"users\": 62083,\n  \"v-card\": 62084,\n  \"video\": 62085,\n  \"video-camera\": 62086,\n  \"vimeo\": 62087,\n  \"vimeo-with-circle\": 62088,\n  \"vine\": 62089,\n  \"vine-with-circle\": 62090,\n  \"vinyl\": 62091,\n  \"vk\": 62092,\n  \"vk-alternitive\": 62093,\n  \"vk-with-circle\": 62094,\n  \"voicemail\": 62095,\n  \"wallet\": 62096,\n  \"warning\": 62097,\n  \"water\": 62098,\n  \"windows-store\": 62099,\n  \"xing\": 62100,\n  \"xing-with-circle\": 62101,\n  \"yelp\": 62102,\n  \"youko\": 62103,\n  \"youko-with-circle\": 62104,\n  \"youtube\": 62105,\n  \"youtube-with-circle\": 62106\n}"
  },
  {
    "path": "packages/entypo/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/entypo\",\n  \"version\": \"12.5.0\",\n  \"description\": \"Entypo font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\",\n    \"./fonts/*.ttf\": \"./fonts/*.ttf\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"entypo\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/entypo\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\",\n    \"@entypo-icons/core\": \"1.0.1\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/entypo/react-native-vector-icons-entypo.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-entypo'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\nend\n"
  },
  {
    "path": "packages/entypo/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * Entypo icon set component.\n * Usage: <Entypo name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/Entypo.json';\n\nexport const Entypo = createIconSet(glyphMap, {\n  postScriptName: 'Entypo',\n  fontFileName: 'Entypo.ttf',\n  fontSource: require('../fonts/Entypo.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require\n});\n\nexport type EntypoIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default Entypo;\n"
  },
  {
    "path": "packages/entypo/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * Entypo icon set component.\n * Usage: <Entypo name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/Entypo.json';\n\nexport const Entypo = createIconSet(glyphMap, {\n  postScriptName: 'Entypo',\n  fontFileName: 'Entypo.ttf',\n});\n\nexport type EntypoIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default Entypo;\n"
  },
  {
    "path": "packages/entypo/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/entypo/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/evil-icons/.fontcustom-manifest.json",
    "content": "{\n  \"checksum\": {\n    \"previous\": \"79a1752fda5ce7dab8867765a9f1cfc076fddef04009d50daf870a670d42365d\",\n    \"current\": \"79a1752fda5ce7dab8867765a9f1cfc076fddef04009d50daf870a670d42365d\"\n  },\n  \"fonts\": [\n    \"EvilIcons/EvilIcons.ttf\",\n    \"EvilIcons/EvilIcons.svg\",\n    \"EvilIcons/EvilIcons.woff\",\n    \"EvilIcons/EvilIcons.eot\",\n    \"EvilIcons/EvilIcons.woff2\"\n  ],\n  \"glyphs\": {\n    \"ei-archive\": {\n      \"codepoint\": 61696,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-archive.svg\"\n    },\n    \"ei-arrow-down\": {\n      \"codepoint\": 61697,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-arrow-down.svg\"\n    },\n    \"ei-arrow-left\": {\n      \"codepoint\": 61698,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-arrow-left.svg\"\n    },\n    \"ei-arrow-right\": {\n      \"codepoint\": 61699,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-arrow-right.svg\"\n    },\n    \"ei-arrow-up\": {\n      \"codepoint\": 61700,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-arrow-up.svg\"\n    },\n    \"ei-bell\": {\n      \"codepoint\": 61701,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-bell.svg\"\n    },\n    \"ei-calendar\": {\n      \"codepoint\": 61702,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-calendar.svg\"\n    },\n    \"ei-camera\": {\n      \"codepoint\": 61703,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-camera.svg\"\n    },\n    \"ei-cart\": {\n      \"codepoint\": 61704,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-cart.svg\"\n    },\n    \"ei-chart\": {\n      \"codepoint\": 61705,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-chart.svg\"\n    },\n    \"ei-check\": {\n      \"codepoint\": 61706,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-check.svg\"\n    },\n    \"ei-chevron-down\": {\n      \"codepoint\": 61707,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-chevron-down.svg\"\n    },\n    \"ei-chevron-left\": {\n      \"codepoint\": 61708,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-chevron-left.svg\"\n    },\n    \"ei-chevron-right\": {\n      \"codepoint\": 61709,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-chevron-right.svg\"\n    },\n    \"ei-chevron-up\": {\n      \"codepoint\": 61710,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-chevron-up.svg\"\n    },\n    \"ei-clock\": {\n      \"codepoint\": 61711,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-clock.svg\"\n    },\n    \"ei-close\": {\n      \"codepoint\": 61712,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-close.svg\"\n    },\n    \"ei-close-o\": {\n      \"codepoint\": 61713,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-close-o.svg\"\n    },\n    \"ei-comment\": {\n      \"codepoint\": 61714,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-comment.svg\"\n    },\n    \"ei-credit-card\": {\n      \"codepoint\": 61715,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-credit-card.svg\"\n    },\n    \"ei-envelope\": {\n      \"codepoint\": 61716,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-envelope.svg\"\n    },\n    \"ei-exclamation\": {\n      \"codepoint\": 61717,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-exclamation.svg\"\n    },\n    \"ei-external-link\": {\n      \"codepoint\": 61718,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-external-link.svg\"\n    },\n    \"ei-eye\": {\n      \"codepoint\": 61719,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-eye.svg\"\n    },\n    \"ei-gear\": {\n      \"codepoint\": 61720,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-gear.svg\"\n    },\n    \"ei-heart\": {\n      \"codepoint\": 61721,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-heart.svg\"\n    },\n    \"ei-image\": {\n      \"codepoint\": 61722,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-image.svg\"\n    },\n    \"ei-like\": {\n      \"codepoint\": 61723,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-like.svg\"\n    },\n    \"ei-link\": {\n      \"codepoint\": 61724,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-link.svg\"\n    },\n    \"ei-location\": {\n      \"codepoint\": 61725,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-location.svg\"\n    },\n    \"ei-lock\": {\n      \"codepoint\": 61726,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-lock.svg\"\n    },\n    \"ei-minus\": {\n      \"codepoint\": 61727,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-minus.svg\"\n    },\n    \"ei-navicon\": {\n      \"codepoint\": 61728,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-navicon.svg\"\n    },\n    \"ei-paperclip\": {\n      \"codepoint\": 61729,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-paperclip.svg\"\n    },\n    \"ei-pencil\": {\n      \"codepoint\": 61730,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-pencil.svg\"\n    },\n    \"ei-play\": {\n      \"codepoint\": 61731,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-play.svg\"\n    },\n    \"ei-plus\": {\n      \"codepoint\": 61732,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-plus.svg\"\n    },\n    \"ei-pointer\": {\n      \"codepoint\": 61733,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-pointer.svg\"\n    },\n    \"ei-question\": {\n      \"codepoint\": 61734,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-question.svg\"\n    },\n    \"ei-redo\": {\n      \"codepoint\": 61735,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-redo.svg\"\n    },\n    \"ei-refresh\": {\n      \"codepoint\": 61736,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-refresh.svg\"\n    },\n    \"ei-retweet\": {\n      \"codepoint\": 61737,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-retweet.svg\"\n    },\n    \"ei-sc-facebook\": {\n      \"codepoint\": 61738,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-sc-facebook.svg\"\n    },\n    \"ei-sc-github\": {\n      \"codepoint\": 61739,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-sc-github.svg\"\n    },\n    \"ei-sc-google-plus\": {\n      \"codepoint\": 61740,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-sc-google-plus.svg\"\n    },\n    \"ei-sc-instagram\": {\n      \"codepoint\": 61741,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-sc-instagram.svg\"\n    },\n    \"ei-sc-linkedin\": {\n      \"codepoint\": 61742,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-sc-linkedin.svg\"\n    },\n    \"ei-sc-odnoklassniki\": {\n      \"codepoint\": 61743,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-sc-odnoklassniki.svg\"\n    },\n    \"ei-sc-pinterest\": {\n      \"codepoint\": 61744,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-sc-pinterest.svg\"\n    },\n    \"ei-sc-skype\": {\n      \"codepoint\": 61745,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-sc-skype.svg\"\n    },\n    \"ei-sc-soundcloud\": {\n      \"codepoint\": 61746,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-sc-soundcloud.svg\"\n    },\n    \"ei-sc-telegram\": {\n      \"codepoint\": 61747,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-sc-telegram.svg\"\n    },\n    \"ei-sc-tumblr\": {\n      \"codepoint\": 61748,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-sc-tumblr.svg\"\n    },\n    \"ei-sc-twitter\": {\n      \"codepoint\": 61749,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-sc-twitter.svg\"\n    },\n    \"ei-sc-vimeo\": {\n      \"codepoint\": 61750,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-sc-vimeo.svg\"\n    },\n    \"ei-sc-vk\": {\n      \"codepoint\": 61751,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-sc-vk.svg\"\n    },\n    \"ei-sc-youtube\": {\n      \"codepoint\": 61752,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-sc-youtube.svg\"\n    },\n    \"ei-search\": {\n      \"codepoint\": 61753,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-search.svg\"\n    },\n    \"ei-share-apple\": {\n      \"codepoint\": 61754,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-share-apple.svg\"\n    },\n    \"ei-share-google\": {\n      \"codepoint\": 61755,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-share-google.svg\"\n    },\n    \"ei-spinner\": {\n      \"codepoint\": 61756,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-spinner.svg\"\n    },\n    \"ei-spinner-2\": {\n      \"codepoint\": 61757,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-spinner-2.svg\"\n    },\n    \"ei-spinner-3\": {\n      \"codepoint\": 61758,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-spinner-3.svg\"\n    },\n    \"ei-star\": {\n      \"codepoint\": 61759,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-star.svg\"\n    },\n    \"ei-tag\": {\n      \"codepoint\": 61760,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-tag.svg\"\n    },\n    \"ei-trash\": {\n      \"codepoint\": 61761,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-trash.svg\"\n    },\n    \"ei-trophy\": {\n      \"codepoint\": 61762,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-trophy.svg\"\n    },\n    \"ei-undo\": {\n      \"codepoint\": 61763,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-undo.svg\"\n    },\n    \"ei-unlock\": {\n      \"codepoint\": 61764,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-unlock.svg\"\n    },\n    \"ei-user\": {\n      \"codepoint\": 61765,\n      \"source\": \"node_modules/evil-icons/assets/icons/ei-user.svg\"\n    }\n  },\n  \"options\": {\n    \"autowidth\": false,\n    \"config\": false,\n    \"copyright\": \"\",\n    \"css3\": false,\n    \"css_selector\": \".icon-{{glyph}}\",\n    \"debug\": false,\n    \"font_ascent\": 448,\n    \"font_descent\": 64,\n    \"font_design_size\": 16,\n    \"font_em\": 512,\n    \"font_name\": \"EvilIcons\",\n    \"force\": true,\n    \"input\": {\n      \"templates\": \"node_modules/evil-icons/assets/icons\",\n      \"vectors\": \"node_modules/evil-icons/assets/icons\"\n    },\n    \"no_hash\": true,\n    \"output\": {\n      \"css\": \"EvilIcons\",\n      \"fonts\": \"EvilIcons\",\n      \"preview\": \"EvilIcons\"\n    },\n    \"preprocessor_path\": null,\n    \"quiet\": false,\n    \"templates\": [\n      \"css\"\n    ]\n  },\n  \"templates\": [\n    \"EvilIcons/EvilIcons.css\"\n  ]\n}"
  },
  {
    "path": "packages/evil-icons/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"evil-icons\",\n    \"upstreamFont\": \"evil-icons\",\n    \"buildSteps\": {\n      \"fontCustom\": {\n        \"location\": \"node_modules/evil-icons/assets/icons\"\n      },\n      \"glyphmap\": {\n        \"mode\": \"css\",\n        \"prefix\": \"icon-ei-\",\n        \"cleanup\": true\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"12.0.0\",\n        \"upstream\": \"1.10.1\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/evil-icons/CHANGELOG.md",
    "content": "## 12.5.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.4.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 12.4.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.4.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 12.4.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.3.0 (2025-08-03)\n\n### 🚀 Features\n\n- export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.3.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.2.0 (2025-07-20)\n\n### 🚀 Features\n\n- add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.2.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.1.0 (2025-07-12)\n\n### 🚀 Features\n\n- export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.1.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.2 (2025-06-15)\n\n### 🩹 Fixes\n\n- new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.2\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.1 (2025-06-15)\n\n### 🩹 Fixes\n\n- try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745))\n- remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767))\n- convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765))\n- updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c))\n- **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.1\n\n### ❤️ Thank You\n\n- Alexander Kucheryavenko @Red1tum\n- John Ferlito @johnf\n- Md. Jayed Hasan @JayedHasan232\n\n# 12.0.0 (2025-05-04)\n\n### 🚀 Features\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n- add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702))\n\n### 🩹 Fixes\n\n- upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691))\n- upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690))\n- mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99))\n\n### ⚠️  Breaking Changes\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n\n### ❤️ Thank You\n\n- Chanphirom Sok @chanphiromsok\n- John Ferlito @johnf"
  },
  {
    "path": "packages/evil-icons/README.md",
    "content": "# React Native Vector Icons - Evil Icons\n\nEvil Icons font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/evil-icons\n```\n\n## Usage\n\n```jsx\nimport { EvilIcons } from '@react-native-vector-icons/evil-icons';\n\n// ...\n\n<EvilIcons name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 12.0.0 | 1.10.1 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/evil-icons/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.evil_icons\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsEvilIcons\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.evil_icons\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-evil-icons\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-evil-icons/fonts\"\n  eachFile { println \"(RNVI:evil-icons) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n"
  },
  {
    "path": "packages/evil-icons/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.evil_icons\">\n</manifest>\n"
  },
  {
    "path": "packages/evil-icons/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/evil-icons/android/src/main/java/VectorIconsEvilIconsPackage.kt",
    "content": "package com.reactnativevectoricons.evil_icons\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsEvilIconsPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/evil-icons/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/evil-icons/glyphmaps/EvilIcons.json",
    "content": "{\n  \"archive\": 61696,\n  \"arrow-down\": 61697,\n  \"arrow-left\": 61698,\n  \"arrow-right\": 61699,\n  \"arrow-up\": 61700,\n  \"bell\": 61701,\n  \"calendar\": 61702,\n  \"camera\": 61703,\n  \"cart\": 61704,\n  \"chart\": 61705,\n  \"check\": 61706,\n  \"chevron-down\": 61707,\n  \"chevron-left\": 61708,\n  \"chevron-right\": 61709,\n  \"chevron-up\": 61710,\n  \"clock\": 61711,\n  \"close\": 61712,\n  \"close-o\": 61713,\n  \"comment\": 61714,\n  \"credit-card\": 61715,\n  \"envelope\": 61716,\n  \"exclamation\": 61717,\n  \"external-link\": 61718,\n  \"eye\": 61719,\n  \"gear\": 61720,\n  \"heart\": 61721,\n  \"image\": 61722,\n  \"like\": 61723,\n  \"link\": 61724,\n  \"location\": 61725,\n  \"lock\": 61726,\n  \"minus\": 61727,\n  \"navicon\": 61728,\n  \"paperclip\": 61729,\n  \"pencil\": 61730,\n  \"play\": 61731,\n  \"plus\": 61732,\n  \"pointer\": 61733,\n  \"question\": 61734,\n  \"redo\": 61735,\n  \"refresh\": 61736,\n  \"retweet\": 61737,\n  \"sc-facebook\": 61738,\n  \"sc-github\": 61739,\n  \"sc-google-plus\": 61740,\n  \"sc-instagram\": 61741,\n  \"sc-linkedin\": 61742,\n  \"sc-odnoklassniki\": 61743,\n  \"sc-pinterest\": 61744,\n  \"sc-skype\": 61745,\n  \"sc-soundcloud\": 61746,\n  \"sc-telegram\": 61747,\n  \"sc-tumblr\": 61748,\n  \"sc-twitter\": 61749,\n  \"sc-vimeo\": 61750,\n  \"sc-vk\": 61751,\n  \"sc-youtube\": 61752,\n  \"search\": 61753,\n  \"share-apple\": 61754,\n  \"share-google\": 61755,\n  \"spinner\": 61756,\n  \"spinner-2\": 61757,\n  \"spinner-3\": 61758,\n  \"star\": 61759,\n  \"tag\": 61760,\n  \"trash\": 61761,\n  \"trophy\": 61762,\n  \"undo\": 61763,\n  \"unlock\": 61764,\n  \"user\": 61765\n}"
  },
  {
    "path": "packages/evil-icons/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/evil-icons\",\n  \"version\": \"12.5.0\",\n  \"description\": \"Evil Icons font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\",\n    \"./fonts/*.ttf\": \"./fonts/*.ttf\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"evil-icons\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/evil-icons\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\",\n    \"evil-icons\": \"1.10.1\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/evil-icons/react-native-vector-icons-evil-icons.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-evil-icons'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\nend\n"
  },
  {
    "path": "packages/evil-icons/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * EvilIcons icon set component.\n * Usage: <EvilIcons name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/EvilIcons.json';\n\nexport const EvilIcons = createIconSet(glyphMap, {\n  postScriptName: 'EvilIcons',\n  fontFileName: 'EvilIcons.ttf',\n  fontSource: require('../fonts/EvilIcons.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require\n});\n\nexport type EvilIconsIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default EvilIcons;\n"
  },
  {
    "path": "packages/evil-icons/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * EvilIcons icon set component.\n * Usage: <EvilIcons name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/EvilIcons.json';\n\nexport const EvilIcons = createIconSet(glyphMap, {\n  postScriptName: 'EvilIcons',\n  fontFileName: 'EvilIcons.ttf',\n});\n\nexport type EvilIconsIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default EvilIcons;\n"
  },
  {
    "path": "packages/evil-icons/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/evil-icons/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/feather/.fontcustom-manifest.json",
    "content": "{\n  \"checksum\": {\n    \"previous\": \"71368e9f15daab2497d403b7b2371a0faeeab18a78cbf670ea75ca1aa76bd38f\",\n    \"current\": \"71368e9f15daab2497d403b7b2371a0faeeab18a78cbf670ea75ca1aa76bd38f\"\n  },\n  \"fonts\": [\n    \"Feather/Feather.ttf\",\n    \"Feather/Feather.svg\",\n    \"Feather/Feather.woff\",\n    \"Feather/Feather.eot\",\n    \"Feather/Feather.woff2\"\n  ],\n  \"glyphs\": {\n    \"activity\": {\n      \"codepoint\": 61696,\n      \"source\": \"node_modules/feather-icons/dist/icons/activity.svg\"\n    },\n    \"airplay\": {\n      \"codepoint\": 61697,\n      \"source\": \"node_modules/feather-icons/dist/icons/airplay.svg\"\n    },\n    \"alert-circle\": {\n      \"codepoint\": 61698,\n      \"source\": \"node_modules/feather-icons/dist/icons/alert-circle.svg\"\n    },\n    \"alert-octagon\": {\n      \"codepoint\": 61699,\n      \"source\": \"node_modules/feather-icons/dist/icons/alert-octagon.svg\"\n    },\n    \"alert-triangle\": {\n      \"codepoint\": 61700,\n      \"source\": \"node_modules/feather-icons/dist/icons/alert-triangle.svg\"\n    },\n    \"align-center\": {\n      \"codepoint\": 61701,\n      \"source\": \"node_modules/feather-icons/dist/icons/align-center.svg\"\n    },\n    \"align-justify\": {\n      \"codepoint\": 61702,\n      \"source\": \"node_modules/feather-icons/dist/icons/align-justify.svg\"\n    },\n    \"align-left\": {\n      \"codepoint\": 61703,\n      \"source\": \"node_modules/feather-icons/dist/icons/align-left.svg\"\n    },\n    \"align-right\": {\n      \"codepoint\": 61704,\n      \"source\": \"node_modules/feather-icons/dist/icons/align-right.svg\"\n    },\n    \"anchor\": {\n      \"codepoint\": 61705,\n      \"source\": \"node_modules/feather-icons/dist/icons/anchor.svg\"\n    },\n    \"aperture\": {\n      \"codepoint\": 61706,\n      \"source\": \"node_modules/feather-icons/dist/icons/aperture.svg\"\n    },\n    \"archive\": {\n      \"codepoint\": 61707,\n      \"source\": \"node_modules/feather-icons/dist/icons/archive.svg\"\n    },\n    \"arrow-down\": {\n      \"codepoint\": 61708,\n      \"source\": \"node_modules/feather-icons/dist/icons/arrow-down.svg\"\n    },\n    \"arrow-down-circle\": {\n      \"codepoint\": 61709,\n      \"source\": \"node_modules/feather-icons/dist/icons/arrow-down-circle.svg\"\n    },\n    \"arrow-down-left\": {\n      \"codepoint\": 61710,\n      \"source\": \"node_modules/feather-icons/dist/icons/arrow-down-left.svg\"\n    },\n    \"arrow-down-right\": {\n      \"codepoint\": 61711,\n      \"source\": \"node_modules/feather-icons/dist/icons/arrow-down-right.svg\"\n    },\n    \"arrow-left\": {\n      \"codepoint\": 61712,\n      \"source\": \"node_modules/feather-icons/dist/icons/arrow-left.svg\"\n    },\n    \"arrow-left-circle\": {\n      \"codepoint\": 61713,\n      \"source\": \"node_modules/feather-icons/dist/icons/arrow-left-circle.svg\"\n    },\n    \"arrow-right\": {\n      \"codepoint\": 61714,\n      \"source\": \"node_modules/feather-icons/dist/icons/arrow-right.svg\"\n    },\n    \"arrow-right-circle\": {\n      \"codepoint\": 61715,\n      \"source\": \"node_modules/feather-icons/dist/icons/arrow-right-circle.svg\"\n    },\n    \"arrow-up\": {\n      \"codepoint\": 61716,\n      \"source\": \"node_modules/feather-icons/dist/icons/arrow-up.svg\"\n    },\n    \"arrow-up-circle\": {\n      \"codepoint\": 61717,\n      \"source\": \"node_modules/feather-icons/dist/icons/arrow-up-circle.svg\"\n    },\n    \"arrow-up-left\": {\n      \"codepoint\": 61718,\n      \"source\": \"node_modules/feather-icons/dist/icons/arrow-up-left.svg\"\n    },\n    \"arrow-up-right\": {\n      \"codepoint\": 61719,\n      \"source\": \"node_modules/feather-icons/dist/icons/arrow-up-right.svg\"\n    },\n    \"at-sign\": {\n      \"codepoint\": 61720,\n      \"source\": \"node_modules/feather-icons/dist/icons/at-sign.svg\"\n    },\n    \"award\": {\n      \"codepoint\": 61721,\n      \"source\": \"node_modules/feather-icons/dist/icons/award.svg\"\n    },\n    \"bar-chart\": {\n      \"codepoint\": 61722,\n      \"source\": \"node_modules/feather-icons/dist/icons/bar-chart.svg\"\n    },\n    \"bar-chart-2\": {\n      \"codepoint\": 61723,\n      \"source\": \"node_modules/feather-icons/dist/icons/bar-chart-2.svg\"\n    },\n    \"battery\": {\n      \"codepoint\": 61724,\n      \"source\": \"node_modules/feather-icons/dist/icons/battery.svg\"\n    },\n    \"battery-charging\": {\n      \"codepoint\": 61725,\n      \"source\": \"node_modules/feather-icons/dist/icons/battery-charging.svg\"\n    },\n    \"bell\": {\n      \"codepoint\": 61726,\n      \"source\": \"node_modules/feather-icons/dist/icons/bell.svg\"\n    },\n    \"bell-off\": {\n      \"codepoint\": 61727,\n      \"source\": \"node_modules/feather-icons/dist/icons/bell-off.svg\"\n    },\n    \"bluetooth\": {\n      \"codepoint\": 61728,\n      \"source\": \"node_modules/feather-icons/dist/icons/bluetooth.svg\"\n    },\n    \"bold\": {\n      \"codepoint\": 61729,\n      \"source\": \"node_modules/feather-icons/dist/icons/bold.svg\"\n    },\n    \"book\": {\n      \"codepoint\": 61730,\n      \"source\": \"node_modules/feather-icons/dist/icons/book.svg\"\n    },\n    \"book-open\": {\n      \"codepoint\": 61731,\n      \"source\": \"node_modules/feather-icons/dist/icons/book-open.svg\"\n    },\n    \"bookmark\": {\n      \"codepoint\": 61732,\n      \"source\": \"node_modules/feather-icons/dist/icons/bookmark.svg\"\n    },\n    \"box\": {\n      \"codepoint\": 61733,\n      \"source\": \"node_modules/feather-icons/dist/icons/box.svg\"\n    },\n    \"briefcase\": {\n      \"codepoint\": 61734,\n      \"source\": \"node_modules/feather-icons/dist/icons/briefcase.svg\"\n    },\n    \"calendar\": {\n      \"codepoint\": 61735,\n      \"source\": \"node_modules/feather-icons/dist/icons/calendar.svg\"\n    },\n    \"camera\": {\n      \"codepoint\": 61736,\n      \"source\": \"node_modules/feather-icons/dist/icons/camera.svg\"\n    },\n    \"camera-off\": {\n      \"codepoint\": 61737,\n      \"source\": \"node_modules/feather-icons/dist/icons/camera-off.svg\"\n    },\n    \"cast\": {\n      \"codepoint\": 61738,\n      \"source\": \"node_modules/feather-icons/dist/icons/cast.svg\"\n    },\n    \"check\": {\n      \"codepoint\": 61739,\n      \"source\": \"node_modules/feather-icons/dist/icons/check.svg\"\n    },\n    \"check-circle\": {\n      \"codepoint\": 61740,\n      \"source\": \"node_modules/feather-icons/dist/icons/check-circle.svg\"\n    },\n    \"check-square\": {\n      \"codepoint\": 61741,\n      \"source\": \"node_modules/feather-icons/dist/icons/check-square.svg\"\n    },\n    \"chevron-down\": {\n      \"codepoint\": 61742,\n      \"source\": \"node_modules/feather-icons/dist/icons/chevron-down.svg\"\n    },\n    \"chevron-left\": {\n      \"codepoint\": 61743,\n      \"source\": \"node_modules/feather-icons/dist/icons/chevron-left.svg\"\n    },\n    \"chevron-right\": {\n      \"codepoint\": 61744,\n      \"source\": \"node_modules/feather-icons/dist/icons/chevron-right.svg\"\n    },\n    \"chevron-up\": {\n      \"codepoint\": 61745,\n      \"source\": \"node_modules/feather-icons/dist/icons/chevron-up.svg\"\n    },\n    \"chevrons-down\": {\n      \"codepoint\": 61746,\n      \"source\": \"node_modules/feather-icons/dist/icons/chevrons-down.svg\"\n    },\n    \"chevrons-left\": {\n      \"codepoint\": 61747,\n      \"source\": \"node_modules/feather-icons/dist/icons/chevrons-left.svg\"\n    },\n    \"chevrons-right\": {\n      \"codepoint\": 61748,\n      \"source\": \"node_modules/feather-icons/dist/icons/chevrons-right.svg\"\n    },\n    \"chevrons-up\": {\n      \"codepoint\": 61749,\n      \"source\": \"node_modules/feather-icons/dist/icons/chevrons-up.svg\"\n    },\n    \"chrome\": {\n      \"codepoint\": 61750,\n      \"source\": \"node_modules/feather-icons/dist/icons/chrome.svg\"\n    },\n    \"circle\": {\n      \"codepoint\": 61751,\n      \"source\": \"node_modules/feather-icons/dist/icons/circle.svg\"\n    },\n    \"clipboard\": {\n      \"codepoint\": 61752,\n      \"source\": \"node_modules/feather-icons/dist/icons/clipboard.svg\"\n    },\n    \"clock\": {\n      \"codepoint\": 61753,\n      \"source\": \"node_modules/feather-icons/dist/icons/clock.svg\"\n    },\n    \"cloud\": {\n      \"codepoint\": 61754,\n      \"source\": \"node_modules/feather-icons/dist/icons/cloud.svg\"\n    },\n    \"cloud-drizzle\": {\n      \"codepoint\": 61755,\n      \"source\": \"node_modules/feather-icons/dist/icons/cloud-drizzle.svg\"\n    },\n    \"cloud-lightning\": {\n      \"codepoint\": 61756,\n      \"source\": \"node_modules/feather-icons/dist/icons/cloud-lightning.svg\"\n    },\n    \"cloud-off\": {\n      \"codepoint\": 61757,\n      \"source\": \"node_modules/feather-icons/dist/icons/cloud-off.svg\"\n    },\n    \"cloud-rain\": {\n      \"codepoint\": 61758,\n      \"source\": \"node_modules/feather-icons/dist/icons/cloud-rain.svg\"\n    },\n    \"cloud-snow\": {\n      \"codepoint\": 61759,\n      \"source\": \"node_modules/feather-icons/dist/icons/cloud-snow.svg\"\n    },\n    \"code\": {\n      \"codepoint\": 61760,\n      \"source\": \"node_modules/feather-icons/dist/icons/code.svg\"\n    },\n    \"codepen\": {\n      \"codepoint\": 61761,\n      \"source\": \"node_modules/feather-icons/dist/icons/codepen.svg\"\n    },\n    \"codesandbox\": {\n      \"codepoint\": 61762,\n      \"source\": \"node_modules/feather-icons/dist/icons/codesandbox.svg\"\n    },\n    \"coffee\": {\n      \"codepoint\": 61763,\n      \"source\": \"node_modules/feather-icons/dist/icons/coffee.svg\"\n    },\n    \"columns\": {\n      \"codepoint\": 61764,\n      \"source\": \"node_modules/feather-icons/dist/icons/columns.svg\"\n    },\n    \"command\": {\n      \"codepoint\": 61765,\n      \"source\": \"node_modules/feather-icons/dist/icons/command.svg\"\n    },\n    \"compass\": {\n      \"codepoint\": 61766,\n      \"source\": \"node_modules/feather-icons/dist/icons/compass.svg\"\n    },\n    \"copy\": {\n      \"codepoint\": 61767,\n      \"source\": \"node_modules/feather-icons/dist/icons/copy.svg\"\n    },\n    \"corner-down-left\": {\n      \"codepoint\": 61768,\n      \"source\": \"node_modules/feather-icons/dist/icons/corner-down-left.svg\"\n    },\n    \"corner-down-right\": {\n      \"codepoint\": 61769,\n      \"source\": \"node_modules/feather-icons/dist/icons/corner-down-right.svg\"\n    },\n    \"corner-left-down\": {\n      \"codepoint\": 61770,\n      \"source\": \"node_modules/feather-icons/dist/icons/corner-left-down.svg\"\n    },\n    \"corner-left-up\": {\n      \"codepoint\": 61771,\n      \"source\": \"node_modules/feather-icons/dist/icons/corner-left-up.svg\"\n    },\n    \"corner-right-down\": {\n      \"codepoint\": 61772,\n      \"source\": \"node_modules/feather-icons/dist/icons/corner-right-down.svg\"\n    },\n    \"corner-right-up\": {\n      \"codepoint\": 61773,\n      \"source\": \"node_modules/feather-icons/dist/icons/corner-right-up.svg\"\n    },\n    \"corner-up-left\": {\n      \"codepoint\": 61774,\n      \"source\": \"node_modules/feather-icons/dist/icons/corner-up-left.svg\"\n    },\n    \"corner-up-right\": {\n      \"codepoint\": 61775,\n      \"source\": \"node_modules/feather-icons/dist/icons/corner-up-right.svg\"\n    },\n    \"cpu\": {\n      \"codepoint\": 61776,\n      \"source\": \"node_modules/feather-icons/dist/icons/cpu.svg\"\n    },\n    \"credit-card\": {\n      \"codepoint\": 61777,\n      \"source\": \"node_modules/feather-icons/dist/icons/credit-card.svg\"\n    },\n    \"crop\": {\n      \"codepoint\": 61778,\n      \"source\": \"node_modules/feather-icons/dist/icons/crop.svg\"\n    },\n    \"crosshair\": {\n      \"codepoint\": 61779,\n      \"source\": \"node_modules/feather-icons/dist/icons/crosshair.svg\"\n    },\n    \"database\": {\n      \"codepoint\": 61780,\n      \"source\": \"node_modules/feather-icons/dist/icons/database.svg\"\n    },\n    \"delete\": {\n      \"codepoint\": 61781,\n      \"source\": \"node_modules/feather-icons/dist/icons/delete.svg\"\n    },\n    \"disc\": {\n      \"codepoint\": 61782,\n      \"source\": \"node_modules/feather-icons/dist/icons/disc.svg\"\n    },\n    \"divide\": {\n      \"codepoint\": 61783,\n      \"source\": \"node_modules/feather-icons/dist/icons/divide.svg\"\n    },\n    \"divide-circle\": {\n      \"codepoint\": 61784,\n      \"source\": \"node_modules/feather-icons/dist/icons/divide-circle.svg\"\n    },\n    \"divide-square\": {\n      \"codepoint\": 61785,\n      \"source\": \"node_modules/feather-icons/dist/icons/divide-square.svg\"\n    },\n    \"dollar-sign\": {\n      \"codepoint\": 61786,\n      \"source\": \"node_modules/feather-icons/dist/icons/dollar-sign.svg\"\n    },\n    \"download\": {\n      \"codepoint\": 61787,\n      \"source\": \"node_modules/feather-icons/dist/icons/download.svg\"\n    },\n    \"download-cloud\": {\n      \"codepoint\": 61788,\n      \"source\": \"node_modules/feather-icons/dist/icons/download-cloud.svg\"\n    },\n    \"dribbble\": {\n      \"codepoint\": 61789,\n      \"source\": \"node_modules/feather-icons/dist/icons/dribbble.svg\"\n    },\n    \"droplet\": {\n      \"codepoint\": 61790,\n      \"source\": \"node_modules/feather-icons/dist/icons/droplet.svg\"\n    },\n    \"edit\": {\n      \"codepoint\": 61791,\n      \"source\": \"node_modules/feather-icons/dist/icons/edit.svg\"\n    },\n    \"edit-2\": {\n      \"codepoint\": 61792,\n      \"source\": \"node_modules/feather-icons/dist/icons/edit-2.svg\"\n    },\n    \"edit-3\": {\n      \"codepoint\": 61793,\n      \"source\": \"node_modules/feather-icons/dist/icons/edit-3.svg\"\n    },\n    \"external-link\": {\n      \"codepoint\": 61794,\n      \"source\": \"node_modules/feather-icons/dist/icons/external-link.svg\"\n    },\n    \"eye\": {\n      \"codepoint\": 61795,\n      \"source\": \"node_modules/feather-icons/dist/icons/eye.svg\"\n    },\n    \"eye-off\": {\n      \"codepoint\": 61796,\n      \"source\": \"node_modules/feather-icons/dist/icons/eye-off.svg\"\n    },\n    \"facebook\": {\n      \"codepoint\": 61797,\n      \"source\": \"node_modules/feather-icons/dist/icons/facebook.svg\"\n    },\n    \"fast-forward\": {\n      \"codepoint\": 61798,\n      \"source\": \"node_modules/feather-icons/dist/icons/fast-forward.svg\"\n    },\n    \"feather\": {\n      \"codepoint\": 61799,\n      \"source\": \"node_modules/feather-icons/dist/icons/feather.svg\"\n    },\n    \"figma\": {\n      \"codepoint\": 61800,\n      \"source\": \"node_modules/feather-icons/dist/icons/figma.svg\"\n    },\n    \"file\": {\n      \"codepoint\": 61801,\n      \"source\": \"node_modules/feather-icons/dist/icons/file.svg\"\n    },\n    \"file-minus\": {\n      \"codepoint\": 61802,\n      \"source\": \"node_modules/feather-icons/dist/icons/file-minus.svg\"\n    },\n    \"file-plus\": {\n      \"codepoint\": 61803,\n      \"source\": \"node_modules/feather-icons/dist/icons/file-plus.svg\"\n    },\n    \"file-text\": {\n      \"codepoint\": 61804,\n      \"source\": \"node_modules/feather-icons/dist/icons/file-text.svg\"\n    },\n    \"film\": {\n      \"codepoint\": 61805,\n      \"source\": \"node_modules/feather-icons/dist/icons/film.svg\"\n    },\n    \"filter\": {\n      \"codepoint\": 61806,\n      \"source\": \"node_modules/feather-icons/dist/icons/filter.svg\"\n    },\n    \"flag\": {\n      \"codepoint\": 61807,\n      \"source\": \"node_modules/feather-icons/dist/icons/flag.svg\"\n    },\n    \"folder\": {\n      \"codepoint\": 61808,\n      \"source\": \"node_modules/feather-icons/dist/icons/folder.svg\"\n    },\n    \"folder-minus\": {\n      \"codepoint\": 61809,\n      \"source\": \"node_modules/feather-icons/dist/icons/folder-minus.svg\"\n    },\n    \"folder-plus\": {\n      \"codepoint\": 61810,\n      \"source\": \"node_modules/feather-icons/dist/icons/folder-plus.svg\"\n    },\n    \"framer\": {\n      \"codepoint\": 61811,\n      \"source\": \"node_modules/feather-icons/dist/icons/framer.svg\"\n    },\n    \"frown\": {\n      \"codepoint\": 61812,\n      \"source\": \"node_modules/feather-icons/dist/icons/frown.svg\"\n    },\n    \"gift\": {\n      \"codepoint\": 61813,\n      \"source\": \"node_modules/feather-icons/dist/icons/gift.svg\"\n    },\n    \"git-branch\": {\n      \"codepoint\": 61814,\n      \"source\": \"node_modules/feather-icons/dist/icons/git-branch.svg\"\n    },\n    \"git-commit\": {\n      \"codepoint\": 61815,\n      \"source\": \"node_modules/feather-icons/dist/icons/git-commit.svg\"\n    },\n    \"git-merge\": {\n      \"codepoint\": 61816,\n      \"source\": \"node_modules/feather-icons/dist/icons/git-merge.svg\"\n    },\n    \"git-pull-request\": {\n      \"codepoint\": 61817,\n      \"source\": \"node_modules/feather-icons/dist/icons/git-pull-request.svg\"\n    },\n    \"github\": {\n      \"codepoint\": 61818,\n      \"source\": \"node_modules/feather-icons/dist/icons/github.svg\"\n    },\n    \"gitlab\": {\n      \"codepoint\": 61819,\n      \"source\": \"node_modules/feather-icons/dist/icons/gitlab.svg\"\n    },\n    \"globe\": {\n      \"codepoint\": 61820,\n      \"source\": \"node_modules/feather-icons/dist/icons/globe.svg\"\n    },\n    \"grid\": {\n      \"codepoint\": 61821,\n      \"source\": \"node_modules/feather-icons/dist/icons/grid.svg\"\n    },\n    \"hard-drive\": {\n      \"codepoint\": 61822,\n      \"source\": \"node_modules/feather-icons/dist/icons/hard-drive.svg\"\n    },\n    \"hash\": {\n      \"codepoint\": 61823,\n      \"source\": \"node_modules/feather-icons/dist/icons/hash.svg\"\n    },\n    \"headphones\": {\n      \"codepoint\": 61824,\n      \"source\": \"node_modules/feather-icons/dist/icons/headphones.svg\"\n    },\n    \"heart\": {\n      \"codepoint\": 61825,\n      \"source\": \"node_modules/feather-icons/dist/icons/heart.svg\"\n    },\n    \"help-circle\": {\n      \"codepoint\": 61826,\n      \"source\": \"node_modules/feather-icons/dist/icons/help-circle.svg\"\n    },\n    \"hexagon\": {\n      \"codepoint\": 61827,\n      \"source\": \"node_modules/feather-icons/dist/icons/hexagon.svg\"\n    },\n    \"home\": {\n      \"codepoint\": 61828,\n      \"source\": \"node_modules/feather-icons/dist/icons/home.svg\"\n    },\n    \"image\": {\n      \"codepoint\": 61829,\n      \"source\": \"node_modules/feather-icons/dist/icons/image.svg\"\n    },\n    \"inbox\": {\n      \"codepoint\": 61830,\n      \"source\": \"node_modules/feather-icons/dist/icons/inbox.svg\"\n    },\n    \"info\": {\n      \"codepoint\": 61831,\n      \"source\": \"node_modules/feather-icons/dist/icons/info.svg\"\n    },\n    \"instagram\": {\n      \"codepoint\": 61832,\n      \"source\": \"node_modules/feather-icons/dist/icons/instagram.svg\"\n    },\n    \"italic\": {\n      \"codepoint\": 61833,\n      \"source\": \"node_modules/feather-icons/dist/icons/italic.svg\"\n    },\n    \"key\": {\n      \"codepoint\": 61834,\n      \"source\": \"node_modules/feather-icons/dist/icons/key.svg\"\n    },\n    \"layers\": {\n      \"codepoint\": 61835,\n      \"source\": \"node_modules/feather-icons/dist/icons/layers.svg\"\n    },\n    \"layout\": {\n      \"codepoint\": 61836,\n      \"source\": \"node_modules/feather-icons/dist/icons/layout.svg\"\n    },\n    \"life-buoy\": {\n      \"codepoint\": 61837,\n      \"source\": \"node_modules/feather-icons/dist/icons/life-buoy.svg\"\n    },\n    \"link\": {\n      \"codepoint\": 61838,\n      \"source\": \"node_modules/feather-icons/dist/icons/link.svg\"\n    },\n    \"link-2\": {\n      \"codepoint\": 61839,\n      \"source\": \"node_modules/feather-icons/dist/icons/link-2.svg\"\n    },\n    \"linkedin\": {\n      \"codepoint\": 61840,\n      \"source\": \"node_modules/feather-icons/dist/icons/linkedin.svg\"\n    },\n    \"list\": {\n      \"codepoint\": 61841,\n      \"source\": \"node_modules/feather-icons/dist/icons/list.svg\"\n    },\n    \"loader\": {\n      \"codepoint\": 61842,\n      \"source\": \"node_modules/feather-icons/dist/icons/loader.svg\"\n    },\n    \"lock\": {\n      \"codepoint\": 61843,\n      \"source\": \"node_modules/feather-icons/dist/icons/lock.svg\"\n    },\n    \"log-in\": {\n      \"codepoint\": 61844,\n      \"source\": \"node_modules/feather-icons/dist/icons/log-in.svg\"\n    },\n    \"log-out\": {\n      \"codepoint\": 61845,\n      \"source\": \"node_modules/feather-icons/dist/icons/log-out.svg\"\n    },\n    \"mail\": {\n      \"codepoint\": 61846,\n      \"source\": \"node_modules/feather-icons/dist/icons/mail.svg\"\n    },\n    \"map\": {\n      \"codepoint\": 61847,\n      \"source\": \"node_modules/feather-icons/dist/icons/map.svg\"\n    },\n    \"map-pin\": {\n      \"codepoint\": 61848,\n      \"source\": \"node_modules/feather-icons/dist/icons/map-pin.svg\"\n    },\n    \"maximize\": {\n      \"codepoint\": 61849,\n      \"source\": \"node_modules/feather-icons/dist/icons/maximize.svg\"\n    },\n    \"maximize-2\": {\n      \"codepoint\": 61850,\n      \"source\": \"node_modules/feather-icons/dist/icons/maximize-2.svg\"\n    },\n    \"meh\": {\n      \"codepoint\": 61851,\n      \"source\": \"node_modules/feather-icons/dist/icons/meh.svg\"\n    },\n    \"menu\": {\n      \"codepoint\": 61852,\n      \"source\": \"node_modules/feather-icons/dist/icons/menu.svg\"\n    },\n    \"message-circle\": {\n      \"codepoint\": 61853,\n      \"source\": \"node_modules/feather-icons/dist/icons/message-circle.svg\"\n    },\n    \"message-square\": {\n      \"codepoint\": 61854,\n      \"source\": \"node_modules/feather-icons/dist/icons/message-square.svg\"\n    },\n    \"mic\": {\n      \"codepoint\": 61855,\n      \"source\": \"node_modules/feather-icons/dist/icons/mic.svg\"\n    },\n    \"mic-off\": {\n      \"codepoint\": 61856,\n      \"source\": \"node_modules/feather-icons/dist/icons/mic-off.svg\"\n    },\n    \"minimize\": {\n      \"codepoint\": 61857,\n      \"source\": \"node_modules/feather-icons/dist/icons/minimize.svg\"\n    },\n    \"minimize-2\": {\n      \"codepoint\": 61858,\n      \"source\": \"node_modules/feather-icons/dist/icons/minimize-2.svg\"\n    },\n    \"minus\": {\n      \"codepoint\": 61859,\n      \"source\": \"node_modules/feather-icons/dist/icons/minus.svg\"\n    },\n    \"minus-circle\": {\n      \"codepoint\": 61860,\n      \"source\": \"node_modules/feather-icons/dist/icons/minus-circle.svg\"\n    },\n    \"minus-square\": {\n      \"codepoint\": 61861,\n      \"source\": \"node_modules/feather-icons/dist/icons/minus-square.svg\"\n    },\n    \"monitor\": {\n      \"codepoint\": 61862,\n      \"source\": \"node_modules/feather-icons/dist/icons/monitor.svg\"\n    },\n    \"moon\": {\n      \"codepoint\": 61863,\n      \"source\": \"node_modules/feather-icons/dist/icons/moon.svg\"\n    },\n    \"more-horizontal\": {\n      \"codepoint\": 61864,\n      \"source\": \"node_modules/feather-icons/dist/icons/more-horizontal.svg\"\n    },\n    \"more-vertical\": {\n      \"codepoint\": 61865,\n      \"source\": \"node_modules/feather-icons/dist/icons/more-vertical.svg\"\n    },\n    \"mouse-pointer\": {\n      \"codepoint\": 61866,\n      \"source\": \"node_modules/feather-icons/dist/icons/mouse-pointer.svg\"\n    },\n    \"move\": {\n      \"codepoint\": 61867,\n      \"source\": \"node_modules/feather-icons/dist/icons/move.svg\"\n    },\n    \"music\": {\n      \"codepoint\": 61868,\n      \"source\": \"node_modules/feather-icons/dist/icons/music.svg\"\n    },\n    \"navigation\": {\n      \"codepoint\": 61869,\n      \"source\": \"node_modules/feather-icons/dist/icons/navigation.svg\"\n    },\n    \"navigation-2\": {\n      \"codepoint\": 61870,\n      \"source\": \"node_modules/feather-icons/dist/icons/navigation-2.svg\"\n    },\n    \"octagon\": {\n      \"codepoint\": 61871,\n      \"source\": \"node_modules/feather-icons/dist/icons/octagon.svg\"\n    },\n    \"package\": {\n      \"codepoint\": 61872,\n      \"source\": \"node_modules/feather-icons/dist/icons/package.svg\"\n    },\n    \"paperclip\": {\n      \"codepoint\": 61873,\n      \"source\": \"node_modules/feather-icons/dist/icons/paperclip.svg\"\n    },\n    \"pause\": {\n      \"codepoint\": 61874,\n      \"source\": \"node_modules/feather-icons/dist/icons/pause.svg\"\n    },\n    \"pause-circle\": {\n      \"codepoint\": 61875,\n      \"source\": \"node_modules/feather-icons/dist/icons/pause-circle.svg\"\n    },\n    \"pen-tool\": {\n      \"codepoint\": 61876,\n      \"source\": \"node_modules/feather-icons/dist/icons/pen-tool.svg\"\n    },\n    \"percent\": {\n      \"codepoint\": 61877,\n      \"source\": \"node_modules/feather-icons/dist/icons/percent.svg\"\n    },\n    \"phone\": {\n      \"codepoint\": 61878,\n      \"source\": \"node_modules/feather-icons/dist/icons/phone.svg\"\n    },\n    \"phone-call\": {\n      \"codepoint\": 61879,\n      \"source\": \"node_modules/feather-icons/dist/icons/phone-call.svg\"\n    },\n    \"phone-forwarded\": {\n      \"codepoint\": 61880,\n      \"source\": \"node_modules/feather-icons/dist/icons/phone-forwarded.svg\"\n    },\n    \"phone-incoming\": {\n      \"codepoint\": 61881,\n      \"source\": \"node_modules/feather-icons/dist/icons/phone-incoming.svg\"\n    },\n    \"phone-missed\": {\n      \"codepoint\": 61882,\n      \"source\": \"node_modules/feather-icons/dist/icons/phone-missed.svg\"\n    },\n    \"phone-off\": {\n      \"codepoint\": 61883,\n      \"source\": \"node_modules/feather-icons/dist/icons/phone-off.svg\"\n    },\n    \"phone-outgoing\": {\n      \"codepoint\": 61884,\n      \"source\": \"node_modules/feather-icons/dist/icons/phone-outgoing.svg\"\n    },\n    \"pie-chart\": {\n      \"codepoint\": 61885,\n      \"source\": \"node_modules/feather-icons/dist/icons/pie-chart.svg\"\n    },\n    \"play\": {\n      \"codepoint\": 61886,\n      \"source\": \"node_modules/feather-icons/dist/icons/play.svg\"\n    },\n    \"play-circle\": {\n      \"codepoint\": 61887,\n      \"source\": \"node_modules/feather-icons/dist/icons/play-circle.svg\"\n    },\n    \"plus\": {\n      \"codepoint\": 61888,\n      \"source\": \"node_modules/feather-icons/dist/icons/plus.svg\"\n    },\n    \"plus-circle\": {\n      \"codepoint\": 61889,\n      \"source\": \"node_modules/feather-icons/dist/icons/plus-circle.svg\"\n    },\n    \"plus-square\": {\n      \"codepoint\": 61890,\n      \"source\": \"node_modules/feather-icons/dist/icons/plus-square.svg\"\n    },\n    \"pocket\": {\n      \"codepoint\": 61891,\n      \"source\": \"node_modules/feather-icons/dist/icons/pocket.svg\"\n    },\n    \"power\": {\n      \"codepoint\": 61892,\n      \"source\": \"node_modules/feather-icons/dist/icons/power.svg\"\n    },\n    \"printer\": {\n      \"codepoint\": 61893,\n      \"source\": \"node_modules/feather-icons/dist/icons/printer.svg\"\n    },\n    \"radio\": {\n      \"codepoint\": 61894,\n      \"source\": \"node_modules/feather-icons/dist/icons/radio.svg\"\n    },\n    \"refresh-ccw\": {\n      \"codepoint\": 61895,\n      \"source\": \"node_modules/feather-icons/dist/icons/refresh-ccw.svg\"\n    },\n    \"refresh-cw\": {\n      \"codepoint\": 61896,\n      \"source\": \"node_modules/feather-icons/dist/icons/refresh-cw.svg\"\n    },\n    \"repeat\": {\n      \"codepoint\": 61897,\n      \"source\": \"node_modules/feather-icons/dist/icons/repeat.svg\"\n    },\n    \"rewind\": {\n      \"codepoint\": 61898,\n      \"source\": \"node_modules/feather-icons/dist/icons/rewind.svg\"\n    },\n    \"rotate-ccw\": {\n      \"codepoint\": 61899,\n      \"source\": \"node_modules/feather-icons/dist/icons/rotate-ccw.svg\"\n    },\n    \"rotate-cw\": {\n      \"codepoint\": 61900,\n      \"source\": \"node_modules/feather-icons/dist/icons/rotate-cw.svg\"\n    },\n    \"rss\": {\n      \"codepoint\": 61901,\n      \"source\": \"node_modules/feather-icons/dist/icons/rss.svg\"\n    },\n    \"save\": {\n      \"codepoint\": 61902,\n      \"source\": \"node_modules/feather-icons/dist/icons/save.svg\"\n    },\n    \"scissors\": {\n      \"codepoint\": 61903,\n      \"source\": \"node_modules/feather-icons/dist/icons/scissors.svg\"\n    },\n    \"search\": {\n      \"codepoint\": 61904,\n      \"source\": \"node_modules/feather-icons/dist/icons/search.svg\"\n    },\n    \"send\": {\n      \"codepoint\": 61905,\n      \"source\": \"node_modules/feather-icons/dist/icons/send.svg\"\n    },\n    \"server\": {\n      \"codepoint\": 61906,\n      \"source\": \"node_modules/feather-icons/dist/icons/server.svg\"\n    },\n    \"settings\": {\n      \"codepoint\": 61907,\n      \"source\": \"node_modules/feather-icons/dist/icons/settings.svg\"\n    },\n    \"share\": {\n      \"codepoint\": 61908,\n      \"source\": \"node_modules/feather-icons/dist/icons/share.svg\"\n    },\n    \"share-2\": {\n      \"codepoint\": 61909,\n      \"source\": \"node_modules/feather-icons/dist/icons/share-2.svg\"\n    },\n    \"shield\": {\n      \"codepoint\": 61910,\n      \"source\": \"node_modules/feather-icons/dist/icons/shield.svg\"\n    },\n    \"shield-off\": {\n      \"codepoint\": 61911,\n      \"source\": \"node_modules/feather-icons/dist/icons/shield-off.svg\"\n    },\n    \"shopping-bag\": {\n      \"codepoint\": 61912,\n      \"source\": \"node_modules/feather-icons/dist/icons/shopping-bag.svg\"\n    },\n    \"shopping-cart\": {\n      \"codepoint\": 61913,\n      \"source\": \"node_modules/feather-icons/dist/icons/shopping-cart.svg\"\n    },\n    \"shuffle\": {\n      \"codepoint\": 61914,\n      \"source\": \"node_modules/feather-icons/dist/icons/shuffle.svg\"\n    },\n    \"sidebar\": {\n      \"codepoint\": 61915,\n      \"source\": \"node_modules/feather-icons/dist/icons/sidebar.svg\"\n    },\n    \"skip-back\": {\n      \"codepoint\": 61916,\n      \"source\": \"node_modules/feather-icons/dist/icons/skip-back.svg\"\n    },\n    \"skip-forward\": {\n      \"codepoint\": 61917,\n      \"source\": \"node_modules/feather-icons/dist/icons/skip-forward.svg\"\n    },\n    \"slack\": {\n      \"codepoint\": 61918,\n      \"source\": \"node_modules/feather-icons/dist/icons/slack.svg\"\n    },\n    \"slash\": {\n      \"codepoint\": 61919,\n      \"source\": \"node_modules/feather-icons/dist/icons/slash.svg\"\n    },\n    \"sliders\": {\n      \"codepoint\": 61920,\n      \"source\": \"node_modules/feather-icons/dist/icons/sliders.svg\"\n    },\n    \"smartphone\": {\n      \"codepoint\": 61921,\n      \"source\": \"node_modules/feather-icons/dist/icons/smartphone.svg\"\n    },\n    \"smile\": {\n      \"codepoint\": 61922,\n      \"source\": \"node_modules/feather-icons/dist/icons/smile.svg\"\n    },\n    \"speaker\": {\n      \"codepoint\": 61923,\n      \"source\": \"node_modules/feather-icons/dist/icons/speaker.svg\"\n    },\n    \"square\": {\n      \"codepoint\": 61924,\n      \"source\": \"node_modules/feather-icons/dist/icons/square.svg\"\n    },\n    \"star\": {\n      \"codepoint\": 61925,\n      \"source\": \"node_modules/feather-icons/dist/icons/star.svg\"\n    },\n    \"stop-circle\": {\n      \"codepoint\": 61926,\n      \"source\": \"node_modules/feather-icons/dist/icons/stop-circle.svg\"\n    },\n    \"sun\": {\n      \"codepoint\": 61927,\n      \"source\": \"node_modules/feather-icons/dist/icons/sun.svg\"\n    },\n    \"sunrise\": {\n      \"codepoint\": 61928,\n      \"source\": \"node_modules/feather-icons/dist/icons/sunrise.svg\"\n    },\n    \"sunset\": {\n      \"codepoint\": 61929,\n      \"source\": \"node_modules/feather-icons/dist/icons/sunset.svg\"\n    },\n    \"table\": {\n      \"codepoint\": 61930,\n      \"source\": \"node_modules/feather-icons/dist/icons/table.svg\"\n    },\n    \"tablet\": {\n      \"codepoint\": 61931,\n      \"source\": \"node_modules/feather-icons/dist/icons/tablet.svg\"\n    },\n    \"tag\": {\n      \"codepoint\": 61932,\n      \"source\": \"node_modules/feather-icons/dist/icons/tag.svg\"\n    },\n    \"target\": {\n      \"codepoint\": 61933,\n      \"source\": \"node_modules/feather-icons/dist/icons/target.svg\"\n    },\n    \"terminal\": {\n      \"codepoint\": 61934,\n      \"source\": \"node_modules/feather-icons/dist/icons/terminal.svg\"\n    },\n    \"thermometer\": {\n      \"codepoint\": 61935,\n      \"source\": \"node_modules/feather-icons/dist/icons/thermometer.svg\"\n    },\n    \"thumbs-down\": {\n      \"codepoint\": 61936,\n      \"source\": \"node_modules/feather-icons/dist/icons/thumbs-down.svg\"\n    },\n    \"thumbs-up\": {\n      \"codepoint\": 61937,\n      \"source\": \"node_modules/feather-icons/dist/icons/thumbs-up.svg\"\n    },\n    \"toggle-left\": {\n      \"codepoint\": 61938,\n      \"source\": \"node_modules/feather-icons/dist/icons/toggle-left.svg\"\n    },\n    \"toggle-right\": {\n      \"codepoint\": 61939,\n      \"source\": \"node_modules/feather-icons/dist/icons/toggle-right.svg\"\n    },\n    \"tool\": {\n      \"codepoint\": 61940,\n      \"source\": \"node_modules/feather-icons/dist/icons/tool.svg\"\n    },\n    \"trash\": {\n      \"codepoint\": 61941,\n      \"source\": \"node_modules/feather-icons/dist/icons/trash.svg\"\n    },\n    \"trash-2\": {\n      \"codepoint\": 61942,\n      \"source\": \"node_modules/feather-icons/dist/icons/trash-2.svg\"\n    },\n    \"trello\": {\n      \"codepoint\": 61943,\n      \"source\": \"node_modules/feather-icons/dist/icons/trello.svg\"\n    },\n    \"trending-down\": {\n      \"codepoint\": 61944,\n      \"source\": \"node_modules/feather-icons/dist/icons/trending-down.svg\"\n    },\n    \"trending-up\": {\n      \"codepoint\": 61945,\n      \"source\": \"node_modules/feather-icons/dist/icons/trending-up.svg\"\n    },\n    \"triangle\": {\n      \"codepoint\": 61946,\n      \"source\": \"node_modules/feather-icons/dist/icons/triangle.svg\"\n    },\n    \"truck\": {\n      \"codepoint\": 61947,\n      \"source\": \"node_modules/feather-icons/dist/icons/truck.svg\"\n    },\n    \"tv\": {\n      \"codepoint\": 61948,\n      \"source\": \"node_modules/feather-icons/dist/icons/tv.svg\"\n    },\n    \"twitch\": {\n      \"codepoint\": 61949,\n      \"source\": \"node_modules/feather-icons/dist/icons/twitch.svg\"\n    },\n    \"twitter\": {\n      \"codepoint\": 61950,\n      \"source\": \"node_modules/feather-icons/dist/icons/twitter.svg\"\n    },\n    \"type\": {\n      \"codepoint\": 61951,\n      \"source\": \"node_modules/feather-icons/dist/icons/type.svg\"\n    },\n    \"umbrella\": {\n      \"codepoint\": 61952,\n      \"source\": \"node_modules/feather-icons/dist/icons/umbrella.svg\"\n    },\n    \"underline\": {\n      \"codepoint\": 61953,\n      \"source\": \"node_modules/feather-icons/dist/icons/underline.svg\"\n    },\n    \"unlock\": {\n      \"codepoint\": 61954,\n      \"source\": \"node_modules/feather-icons/dist/icons/unlock.svg\"\n    },\n    \"upload\": {\n      \"codepoint\": 61955,\n      \"source\": \"node_modules/feather-icons/dist/icons/upload.svg\"\n    },\n    \"upload-cloud\": {\n      \"codepoint\": 61956,\n      \"source\": \"node_modules/feather-icons/dist/icons/upload-cloud.svg\"\n    },\n    \"user\": {\n      \"codepoint\": 61957,\n      \"source\": \"node_modules/feather-icons/dist/icons/user.svg\"\n    },\n    \"user-check\": {\n      \"codepoint\": 61958,\n      \"source\": \"node_modules/feather-icons/dist/icons/user-check.svg\"\n    },\n    \"user-minus\": {\n      \"codepoint\": 61959,\n      \"source\": \"node_modules/feather-icons/dist/icons/user-minus.svg\"\n    },\n    \"user-plus\": {\n      \"codepoint\": 61960,\n      \"source\": \"node_modules/feather-icons/dist/icons/user-plus.svg\"\n    },\n    \"user-x\": {\n      \"codepoint\": 61961,\n      \"source\": \"node_modules/feather-icons/dist/icons/user-x.svg\"\n    },\n    \"users\": {\n      \"codepoint\": 61962,\n      \"source\": \"node_modules/feather-icons/dist/icons/users.svg\"\n    },\n    \"video\": {\n      \"codepoint\": 61963,\n      \"source\": \"node_modules/feather-icons/dist/icons/video.svg\"\n    },\n    \"video-off\": {\n      \"codepoint\": 61964,\n      \"source\": \"node_modules/feather-icons/dist/icons/video-off.svg\"\n    },\n    \"voicemail\": {\n      \"codepoint\": 61965,\n      \"source\": \"node_modules/feather-icons/dist/icons/voicemail.svg\"\n    },\n    \"volume\": {\n      \"codepoint\": 61966,\n      \"source\": \"node_modules/feather-icons/dist/icons/volume.svg\"\n    },\n    \"volume-1\": {\n      \"codepoint\": 61967,\n      \"source\": \"node_modules/feather-icons/dist/icons/volume-1.svg\"\n    },\n    \"volume-2\": {\n      \"codepoint\": 61968,\n      \"source\": \"node_modules/feather-icons/dist/icons/volume-2.svg\"\n    },\n    \"volume-x\": {\n      \"codepoint\": 61969,\n      \"source\": \"node_modules/feather-icons/dist/icons/volume-x.svg\"\n    },\n    \"watch\": {\n      \"codepoint\": 61970,\n      \"source\": \"node_modules/feather-icons/dist/icons/watch.svg\"\n    },\n    \"wifi\": {\n      \"codepoint\": 61971,\n      \"source\": \"node_modules/feather-icons/dist/icons/wifi.svg\"\n    },\n    \"wifi-off\": {\n      \"codepoint\": 61972,\n      \"source\": \"node_modules/feather-icons/dist/icons/wifi-off.svg\"\n    },\n    \"wind\": {\n      \"codepoint\": 61973,\n      \"source\": \"node_modules/feather-icons/dist/icons/wind.svg\"\n    },\n    \"x\": {\n      \"codepoint\": 61974,\n      \"source\": \"node_modules/feather-icons/dist/icons/x.svg\"\n    },\n    \"x-circle\": {\n      \"codepoint\": 61975,\n      \"source\": \"node_modules/feather-icons/dist/icons/x-circle.svg\"\n    },\n    \"x-octagon\": {\n      \"codepoint\": 61976,\n      \"source\": \"node_modules/feather-icons/dist/icons/x-octagon.svg\"\n    },\n    \"x-square\": {\n      \"codepoint\": 61977,\n      \"source\": \"node_modules/feather-icons/dist/icons/x-square.svg\"\n    },\n    \"youtube\": {\n      \"codepoint\": 61978,\n      \"source\": \"node_modules/feather-icons/dist/icons/youtube.svg\"\n    },\n    \"zap\": {\n      \"codepoint\": 61979,\n      \"source\": \"node_modules/feather-icons/dist/icons/zap.svg\"\n    },\n    \"zap-off\": {\n      \"codepoint\": 61980,\n      \"source\": \"node_modules/feather-icons/dist/icons/zap-off.svg\"\n    },\n    \"zoom-in\": {\n      \"codepoint\": 61981,\n      \"source\": \"node_modules/feather-icons/dist/icons/zoom-in.svg\"\n    },\n    \"zoom-out\": {\n      \"codepoint\": 61982,\n      \"source\": \"node_modules/feather-icons/dist/icons/zoom-out.svg\"\n    }\n  },\n  \"options\": {\n    \"autowidth\": false,\n    \"config\": false,\n    \"copyright\": \"\",\n    \"css3\": false,\n    \"css_selector\": \".icon-{{glyph}}\",\n    \"debug\": false,\n    \"font_ascent\": 448,\n    \"font_descent\": 64,\n    \"font_design_size\": 16,\n    \"font_em\": 512,\n    \"font_name\": \"Feather\",\n    \"force\": true,\n    \"input\": {\n      \"templates\": \"node_modules/feather-icons/dist/icons\",\n      \"vectors\": \"node_modules/feather-icons/dist/icons\"\n    },\n    \"no_hash\": true,\n    \"output\": {\n      \"css\": \"Feather\",\n      \"fonts\": \"Feather\",\n      \"preview\": \"Feather\"\n    },\n    \"preprocessor_path\": null,\n    \"quiet\": false,\n    \"templates\": [\n      \"css\"\n    ]\n  },\n  \"templates\": [\n    \"Feather/Feather.css\"\n  ]\n}"
  },
  {
    "path": "packages/feather/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"feather\",\n    \"upstreamFont\": \"feather-icons\",\n    \"buildSteps\": {\n      \"fontCustom\": {\n        \"location\": \"node_modules/feather-icons/dist/icons\"\n      },\n      \"glyphmap\": {\n        \"mode\": \"css\",\n        \"cleanup\": true\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"12.0.0\",\n        \"upstream\": \"4.29.2\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/feather/CHANGELOG.md",
    "content": "## 12.5.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.4.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 12.4.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.4.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 12.4.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.3.0 (2025-08-03)\n\n### 🚀 Features\n\n- export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.3.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.2.0 (2025-07-20)\n\n### 🚀 Features\n\n- add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.2.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.1.0 (2025-07-12)\n\n### 🚀 Features\n\n- export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.1.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.2 (2025-06-15)\n\n### 🩹 Fixes\n\n- new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.2\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.1 (2025-06-15)\n\n### 🩹 Fixes\n\n- try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745))\n- remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767))\n- convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765))\n- updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c))\n- **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.1\n\n### ❤️ Thank You\n\n- Alexander Kucheryavenko @Red1tum\n- John Ferlito @johnf\n- Md. Jayed Hasan @JayedHasan232\n\n# 12.0.0 (2025-05-04)\n\n### 🚀 Features\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n- add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702))\n\n### 🩹 Fixes\n\n- removing fixSVGpaths from feather gives better results ([#1721](https://github.com/oblador/react-native-vector-icons/pull/1721))\n- upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691))\n- upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690))\n- mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99))\n\n### ⚠️  Breaking Changes\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n\n### ❤️ Thank You\n\n- Chanphirom Sok @chanphiromsok\n- John Ferlito @johnf"
  },
  {
    "path": "packages/feather/README.md",
    "content": "# React Native Vector Icons - Feather\n\nFeather font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/feather\n```\n\n## Usage\n\n```jsx\nimport { Feather } from '@react-native-vector-icons/feather';\n\n// ...\n\n<Feather name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 12.0.0 | 4.29.2 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/feather/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.feather\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFeather\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.feather\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-feather\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-feather/fonts\"\n  eachFile { println \"(RNVI:feather) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n"
  },
  {
    "path": "packages/feather/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.feather\">\n</manifest>\n"
  },
  {
    "path": "packages/feather/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/feather/android/src/main/java/VectorIconsFeatherPackage.kt",
    "content": "package com.reactnativevectoricons.feather\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFeatherPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/feather/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/feather/glyphmaps/Feather.json",
    "content": "{\n  \"activity\": 61696,\n  \"airplay\": 61697,\n  \"alert-circle\": 61698,\n  \"alert-octagon\": 61699,\n  \"alert-triangle\": 61700,\n  \"align-center\": 61701,\n  \"align-justify\": 61702,\n  \"align-left\": 61703,\n  \"align-right\": 61704,\n  \"anchor\": 61705,\n  \"aperture\": 61706,\n  \"archive\": 61707,\n  \"arrow-down\": 61708,\n  \"arrow-down-circle\": 61709,\n  \"arrow-down-left\": 61710,\n  \"arrow-down-right\": 61711,\n  \"arrow-left\": 61712,\n  \"arrow-left-circle\": 61713,\n  \"arrow-right\": 61714,\n  \"arrow-right-circle\": 61715,\n  \"arrow-up\": 61716,\n  \"arrow-up-circle\": 61717,\n  \"arrow-up-left\": 61718,\n  \"arrow-up-right\": 61719,\n  \"at-sign\": 61720,\n  \"award\": 61721,\n  \"bar-chart\": 61722,\n  \"bar-chart-2\": 61723,\n  \"battery\": 61724,\n  \"battery-charging\": 61725,\n  \"bell\": 61726,\n  \"bell-off\": 61727,\n  \"bluetooth\": 61728,\n  \"bold\": 61729,\n  \"book\": 61730,\n  \"book-open\": 61731,\n  \"bookmark\": 61732,\n  \"box\": 61733,\n  \"briefcase\": 61734,\n  \"calendar\": 61735,\n  \"camera\": 61736,\n  \"camera-off\": 61737,\n  \"cast\": 61738,\n  \"check\": 61739,\n  \"check-circle\": 61740,\n  \"check-square\": 61741,\n  \"chevron-down\": 61742,\n  \"chevron-left\": 61743,\n  \"chevron-right\": 61744,\n  \"chevron-up\": 61745,\n  \"chevrons-down\": 61746,\n  \"chevrons-left\": 61747,\n  \"chevrons-right\": 61748,\n  \"chevrons-up\": 61749,\n  \"chrome\": 61750,\n  \"circle\": 61751,\n  \"clipboard\": 61752,\n  \"clock\": 61753,\n  \"cloud\": 61754,\n  \"cloud-drizzle\": 61755,\n  \"cloud-lightning\": 61756,\n  \"cloud-off\": 61757,\n  \"cloud-rain\": 61758,\n  \"cloud-snow\": 61759,\n  \"code\": 61760,\n  \"codepen\": 61761,\n  \"codesandbox\": 61762,\n  \"coffee\": 61763,\n  \"columns\": 61764,\n  \"command\": 61765,\n  \"compass\": 61766,\n  \"copy\": 61767,\n  \"corner-down-left\": 61768,\n  \"corner-down-right\": 61769,\n  \"corner-left-down\": 61770,\n  \"corner-left-up\": 61771,\n  \"corner-right-down\": 61772,\n  \"corner-right-up\": 61773,\n  \"corner-up-left\": 61774,\n  \"corner-up-right\": 61775,\n  \"cpu\": 61776,\n  \"credit-card\": 61777,\n  \"crop\": 61778,\n  \"crosshair\": 61779,\n  \"database\": 61780,\n  \"delete\": 61781,\n  \"disc\": 61782,\n  \"divide\": 61783,\n  \"divide-circle\": 61784,\n  \"divide-square\": 61785,\n  \"dollar-sign\": 61786,\n  \"download\": 61787,\n  \"download-cloud\": 61788,\n  \"dribbble\": 61789,\n  \"droplet\": 61790,\n  \"edit\": 61791,\n  \"edit-2\": 61792,\n  \"edit-3\": 61793,\n  \"external-link\": 61794,\n  \"eye\": 61795,\n  \"eye-off\": 61796,\n  \"facebook\": 61797,\n  \"fast-forward\": 61798,\n  \"feather\": 61799,\n  \"figma\": 61800,\n  \"file\": 61801,\n  \"file-minus\": 61802,\n  \"file-plus\": 61803,\n  \"file-text\": 61804,\n  \"film\": 61805,\n  \"filter\": 61806,\n  \"flag\": 61807,\n  \"folder\": 61808,\n  \"folder-minus\": 61809,\n  \"folder-plus\": 61810,\n  \"framer\": 61811,\n  \"frown\": 61812,\n  \"gift\": 61813,\n  \"git-branch\": 61814,\n  \"git-commit\": 61815,\n  \"git-merge\": 61816,\n  \"git-pull-request\": 61817,\n  \"github\": 61818,\n  \"gitlab\": 61819,\n  \"globe\": 61820,\n  \"grid\": 61821,\n  \"hard-drive\": 61822,\n  \"hash\": 61823,\n  \"headphones\": 61824,\n  \"heart\": 61825,\n  \"help-circle\": 61826,\n  \"hexagon\": 61827,\n  \"home\": 61828,\n  \"image\": 61829,\n  \"inbox\": 61830,\n  \"info\": 61831,\n  \"instagram\": 61832,\n  \"italic\": 61833,\n  \"key\": 61834,\n  \"layers\": 61835,\n  \"layout\": 61836,\n  \"life-buoy\": 61837,\n  \"link\": 61838,\n  \"link-2\": 61839,\n  \"linkedin\": 61840,\n  \"list\": 61841,\n  \"loader\": 61842,\n  \"lock\": 61843,\n  \"log-in\": 61844,\n  \"log-out\": 61845,\n  \"mail\": 61846,\n  \"map\": 61847,\n  \"map-pin\": 61848,\n  \"maximize\": 61849,\n  \"maximize-2\": 61850,\n  \"meh\": 61851,\n  \"menu\": 61852,\n  \"message-circle\": 61853,\n  \"message-square\": 61854,\n  \"mic\": 61855,\n  \"mic-off\": 61856,\n  \"minimize\": 61857,\n  \"minimize-2\": 61858,\n  \"minus\": 61859,\n  \"minus-circle\": 61860,\n  \"minus-square\": 61861,\n  \"monitor\": 61862,\n  \"moon\": 61863,\n  \"more-horizontal\": 61864,\n  \"more-vertical\": 61865,\n  \"mouse-pointer\": 61866,\n  \"move\": 61867,\n  \"music\": 61868,\n  \"navigation\": 61869,\n  \"navigation-2\": 61870,\n  \"octagon\": 61871,\n  \"package\": 61872,\n  \"paperclip\": 61873,\n  \"pause\": 61874,\n  \"pause-circle\": 61875,\n  \"pen-tool\": 61876,\n  \"percent\": 61877,\n  \"phone\": 61878,\n  \"phone-call\": 61879,\n  \"phone-forwarded\": 61880,\n  \"phone-incoming\": 61881,\n  \"phone-missed\": 61882,\n  \"phone-off\": 61883,\n  \"phone-outgoing\": 61884,\n  \"pie-chart\": 61885,\n  \"play\": 61886,\n  \"play-circle\": 61887,\n  \"plus\": 61888,\n  \"plus-circle\": 61889,\n  \"plus-square\": 61890,\n  \"pocket\": 61891,\n  \"power\": 61892,\n  \"printer\": 61893,\n  \"radio\": 61894,\n  \"refresh-ccw\": 61895,\n  \"refresh-cw\": 61896,\n  \"repeat\": 61897,\n  \"rewind\": 61898,\n  \"rotate-ccw\": 61899,\n  \"rotate-cw\": 61900,\n  \"rss\": 61901,\n  \"save\": 61902,\n  \"scissors\": 61903,\n  \"search\": 61904,\n  \"send\": 61905,\n  \"server\": 61906,\n  \"settings\": 61907,\n  \"share\": 61908,\n  \"share-2\": 61909,\n  \"shield\": 61910,\n  \"shield-off\": 61911,\n  \"shopping-bag\": 61912,\n  \"shopping-cart\": 61913,\n  \"shuffle\": 61914,\n  \"sidebar\": 61915,\n  \"skip-back\": 61916,\n  \"skip-forward\": 61917,\n  \"slack\": 61918,\n  \"slash\": 61919,\n  \"sliders\": 61920,\n  \"smartphone\": 61921,\n  \"smile\": 61922,\n  \"speaker\": 61923,\n  \"square\": 61924,\n  \"star\": 61925,\n  \"stop-circle\": 61926,\n  \"sun\": 61927,\n  \"sunrise\": 61928,\n  \"sunset\": 61929,\n  \"table\": 61930,\n  \"tablet\": 61931,\n  \"tag\": 61932,\n  \"target\": 61933,\n  \"terminal\": 61934,\n  \"thermometer\": 61935,\n  \"thumbs-down\": 61936,\n  \"thumbs-up\": 61937,\n  \"toggle-left\": 61938,\n  \"toggle-right\": 61939,\n  \"tool\": 61940,\n  \"trash\": 61941,\n  \"trash-2\": 61942,\n  \"trello\": 61943,\n  \"trending-down\": 61944,\n  \"trending-up\": 61945,\n  \"triangle\": 61946,\n  \"truck\": 61947,\n  \"tv\": 61948,\n  \"twitch\": 61949,\n  \"twitter\": 61950,\n  \"type\": 61951,\n  \"umbrella\": 61952,\n  \"underline\": 61953,\n  \"unlock\": 61954,\n  \"upload\": 61955,\n  \"upload-cloud\": 61956,\n  \"user\": 61957,\n  \"user-check\": 61958,\n  \"user-minus\": 61959,\n  \"user-plus\": 61960,\n  \"user-x\": 61961,\n  \"users\": 61962,\n  \"video\": 61963,\n  \"video-off\": 61964,\n  \"voicemail\": 61965,\n  \"volume\": 61966,\n  \"volume-1\": 61967,\n  \"volume-2\": 61968,\n  \"volume-x\": 61969,\n  \"watch\": 61970,\n  \"wifi\": 61971,\n  \"wifi-off\": 61972,\n  \"wind\": 61973,\n  \"x\": 61974,\n  \"x-circle\": 61975,\n  \"x-octagon\": 61976,\n  \"x-square\": 61977,\n  \"youtube\": 61978,\n  \"zap\": 61979,\n  \"zap-off\": 61980,\n  \"zoom-in\": 61981,\n  \"zoom-out\": 61982\n}"
  },
  {
    "path": "packages/feather/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/feather\",\n  \"version\": \"12.5.0\",\n  \"description\": \"Feather font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\",\n    \"./fonts/*.ttf\": \"./fonts/*.ttf\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"feather\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/feather\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\",\n    \"feather-icons\": \"4.29.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/feather/react-native-vector-icons-feather.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-feather'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\nend\n"
  },
  {
    "path": "packages/feather/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * Feather icon set component.\n * Usage: <Feather name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/Feather.json';\n\nexport const Feather = createIconSet(glyphMap, {\n  postScriptName: 'Feather',\n  fontFileName: 'Feather.ttf',\n  fontSource: require('../fonts/Feather.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require\n});\n\nexport type FeatherIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default Feather;\n"
  },
  {
    "path": "packages/feather/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * Feather icon set component.\n * Usage: <Feather name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/Feather.json';\n\nexport const Feather = createIconSet(glyphMap, {\n  postScriptName: 'Feather',\n  fontFileName: 'Feather.ttf',\n});\n\nexport type FeatherIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default Feather;\n"
  },
  {
    "path": "packages/feather/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/feather/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontawesome\",\n    \"postScriptName\": \"FontAwesome\",\n    \"fontFileName\": \"FontAwesome\",\n    \"className\": \"FontAwesome\",\n    \"upstreamFont\": \"font-awesome\",\n    \"buildSteps\": {\n      \"glyphmap\": {\n        \"location\": \"../../node_modules/font-awesome/css/font-awesome.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fa-\"\n      },\n      \"copyFont\": {\n        \"location\": \"../../node_modules/font-awesome/fonts/fontawesome-webfont.ttf\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"12.0.0\",\n        \"upstream\": \"4.7.0\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome/CHANGELOG.md",
    "content": "## 12.5.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.4.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 12.4.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.4.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 12.4.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.3.0 (2025-08-03)\n\n### 🚀 Features\n\n- export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.3.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.2.0 (2025-07-20)\n\n### 🚀 Features\n\n- add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.2.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.1.0 (2025-07-12)\n\n### 🚀 Features\n\n- export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.1.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.2 (2025-06-15)\n\n### 🩹 Fixes\n\n- new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.2\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.1 (2025-06-15)\n\n### 🩹 Fixes\n\n- try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745))\n- remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767))\n- convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765))\n- updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c))\n- **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.1\n\n### ❤️ Thank You\n\n- Alexander Kucheryavenko @Red1tum\n- John Ferlito @johnf\n- Md. Jayed Hasan @JayedHasan232\n\n# 12.0.0 (2025-05-04)\n\n### 🚀 Features\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n- add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702))\n\n### 🩹 Fixes\n\n- upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691))\n- upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690))\n- mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99))\n\n### ⚠️  Breaking Changes\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n\n### ❤️ Thank You\n\n- Chanphirom Sok @chanphiromsok\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontawesome/README.md",
    "content": "# React Native Vector Icons - Fontawesome\n\nFontawesome font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/fontawesome\n```\n\n## Usage\n\n```jsx\nimport { FontAwesome } from '@react-native-vector-icons/fontawesome';\n\n// ...\n\n<FontAwesome name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 12.0.0 | 4.7.0 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/fontawesome/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.fontawesome\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFontAwesome\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.fontawesome\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-fontawesome\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome/fonts\"\n  eachFile { println \"(RNVI:fontawesome) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n"
  },
  {
    "path": "packages/fontawesome/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.fontawesome\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome/android/src/main/java/VectorIconsFontAwesomePackage.kt",
    "content": "package com.reactnativevectoricons.fontawesome\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFontAwesomePackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/fontawesome/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/fontawesome/glyphmaps/FontAwesome.json",
    "content": "{\n  \"glass\": 61440,\n  \"music\": 61441,\n  \"search\": 61442,\n  \"envelope-o\": 61443,\n  \"heart\": 61444,\n  \"star\": 61445,\n  \"star-o\": 61446,\n  \"user\": 61447,\n  \"film\": 61448,\n  \"th-large\": 61449,\n  \"th\": 61450,\n  \"th-list\": 61451,\n  \"check\": 61452,\n  \"remove\": 61453,\n  \"close\": 61453,\n  \"times\": 61453,\n  \"search-plus\": 61454,\n  \"search-minus\": 61456,\n  \"power-off\": 61457,\n  \"signal\": 61458,\n  \"gear\": 61459,\n  \"cog\": 61459,\n  \"trash-o\": 61460,\n  \"home\": 61461,\n  \"file-o\": 61462,\n  \"clock-o\": 61463,\n  \"road\": 61464,\n  \"download\": 61465,\n  \"arrow-circle-o-down\": 61466,\n  \"arrow-circle-o-up\": 61467,\n  \"inbox\": 61468,\n  \"play-circle-o\": 61469,\n  \"rotate-right\": 61470,\n  \"repeat\": 61470,\n  \"refresh\": 61473,\n  \"list-alt\": 61474,\n  \"lock\": 61475,\n  \"flag\": 61476,\n  \"headphones\": 61477,\n  \"volume-off\": 61478,\n  \"volume-down\": 61479,\n  \"volume-up\": 61480,\n  \"qrcode\": 61481,\n  \"barcode\": 61482,\n  \"tag\": 61483,\n  \"tags\": 61484,\n  \"book\": 61485,\n  \"bookmark\": 61486,\n  \"print\": 61487,\n  \"camera\": 61488,\n  \"font\": 61489,\n  \"bold\": 61490,\n  \"italic\": 61491,\n  \"text-height\": 61492,\n  \"text-width\": 61493,\n  \"align-left\": 61494,\n  \"align-center\": 61495,\n  \"align-right\": 61496,\n  \"align-justify\": 61497,\n  \"list\": 61498,\n  \"dedent\": 61499,\n  \"outdent\": 61499,\n  \"indent\": 61500,\n  \"video-camera\": 61501,\n  \"photo\": 61502,\n  \"image\": 61502,\n  \"picture-o\": 61502,\n  \"pencil\": 61504,\n  \"map-marker\": 61505,\n  \"adjust\": 61506,\n  \"tint\": 61507,\n  \"edit\": 61508,\n  \"pencil-square-o\": 61508,\n  \"share-square-o\": 61509,\n  \"check-square-o\": 61510,\n  \"arrows\": 61511,\n  \"step-backward\": 61512,\n  \"fast-backward\": 61513,\n  \"backward\": 61514,\n  \"play\": 61515,\n  \"pause\": 61516,\n  \"stop\": 61517,\n  \"forward\": 61518,\n  \"fast-forward\": 61520,\n  \"step-forward\": 61521,\n  \"eject\": 61522,\n  \"chevron-left\": 61523,\n  \"chevron-right\": 61524,\n  \"plus-circle\": 61525,\n  \"minus-circle\": 61526,\n  \"times-circle\": 61527,\n  \"check-circle\": 61528,\n  \"question-circle\": 61529,\n  \"info-circle\": 61530,\n  \"crosshairs\": 61531,\n  \"times-circle-o\": 61532,\n  \"check-circle-o\": 61533,\n  \"ban\": 61534,\n  \"arrow-left\": 61536,\n  \"arrow-right\": 61537,\n  \"arrow-up\": 61538,\n  \"arrow-down\": 61539,\n  \"mail-forward\": 61540,\n  \"share\": 61540,\n  \"expand\": 61541,\n  \"compress\": 61542,\n  \"plus\": 61543,\n  \"minus\": 61544,\n  \"asterisk\": 61545,\n  \"exclamation-circle\": 61546,\n  \"gift\": 61547,\n  \"leaf\": 61548,\n  \"fire\": 61549,\n  \"eye\": 61550,\n  \"eye-slash\": 61552,\n  \"warning\": 61553,\n  \"exclamation-triangle\": 61553,\n  \"plane\": 61554,\n  \"calendar\": 61555,\n  \"random\": 61556,\n  \"comment\": 61557,\n  \"magnet\": 61558,\n  \"chevron-up\": 61559,\n  \"chevron-down\": 61560,\n  \"retweet\": 61561,\n  \"shopping-cart\": 61562,\n  \"folder\": 61563,\n  \"folder-open\": 61564,\n  \"arrows-v\": 61565,\n  \"arrows-h\": 61566,\n  \"bar-chart-o\": 61568,\n  \"bar-chart\": 61568,\n  \"twitter-square\": 61569,\n  \"facebook-square\": 61570,\n  \"camera-retro\": 61571,\n  \"key\": 61572,\n  \"gears\": 61573,\n  \"cogs\": 61573,\n  \"comments\": 61574,\n  \"thumbs-o-up\": 61575,\n  \"thumbs-o-down\": 61576,\n  \"star-half\": 61577,\n  \"heart-o\": 61578,\n  \"sign-out\": 61579,\n  \"linkedin-square\": 61580,\n  \"thumb-tack\": 61581,\n  \"external-link\": 61582,\n  \"sign-in\": 61584,\n  \"trophy\": 61585,\n  \"github-square\": 61586,\n  \"upload\": 61587,\n  \"lemon-o\": 61588,\n  \"phone\": 61589,\n  \"square-o\": 61590,\n  \"bookmark-o\": 61591,\n  \"phone-square\": 61592,\n  \"twitter\": 61593,\n  \"facebook-f\": 61594,\n  \"facebook\": 61594,\n  \"github\": 61595,\n  \"unlock\": 61596,\n  \"credit-card\": 61597,\n  \"feed\": 61598,\n  \"rss\": 61598,\n  \"hdd-o\": 61600,\n  \"bullhorn\": 61601,\n  \"bell\": 61683,\n  \"certificate\": 61603,\n  \"hand-o-right\": 61604,\n  \"hand-o-left\": 61605,\n  \"hand-o-up\": 61606,\n  \"hand-o-down\": 61607,\n  \"arrow-circle-left\": 61608,\n  \"arrow-circle-right\": 61609,\n  \"arrow-circle-up\": 61610,\n  \"arrow-circle-down\": 61611,\n  \"globe\": 61612,\n  \"wrench\": 61613,\n  \"tasks\": 61614,\n  \"filter\": 61616,\n  \"briefcase\": 61617,\n  \"arrows-alt\": 61618,\n  \"group\": 61632,\n  \"users\": 61632,\n  \"chain\": 61633,\n  \"link\": 61633,\n  \"cloud\": 61634,\n  \"flask\": 61635,\n  \"cut\": 61636,\n  \"scissors\": 61636,\n  \"copy\": 61637,\n  \"files-o\": 61637,\n  \"paperclip\": 61638,\n  \"save\": 61639,\n  \"floppy-o\": 61639,\n  \"square\": 61640,\n  \"navicon\": 61641,\n  \"reorder\": 61641,\n  \"bars\": 61641,\n  \"list-ul\": 61642,\n  \"list-ol\": 61643,\n  \"strikethrough\": 61644,\n  \"underline\": 61645,\n  \"table\": 61646,\n  \"magic\": 61648,\n  \"truck\": 61649,\n  \"pinterest\": 61650,\n  \"pinterest-square\": 61651,\n  \"google-plus-square\": 61652,\n  \"google-plus\": 61653,\n  \"money\": 61654,\n  \"caret-down\": 61655,\n  \"caret-up\": 61656,\n  \"caret-left\": 61657,\n  \"caret-right\": 61658,\n  \"columns\": 61659,\n  \"unsorted\": 61660,\n  \"sort\": 61660,\n  \"sort-down\": 61661,\n  \"sort-desc\": 61661,\n  \"sort-up\": 61662,\n  \"sort-asc\": 61662,\n  \"envelope\": 61664,\n  \"linkedin\": 61665,\n  \"rotate-left\": 61666,\n  \"undo\": 61666,\n  \"legal\": 61667,\n  \"gavel\": 61667,\n  \"dashboard\": 61668,\n  \"tachometer\": 61668,\n  \"comment-o\": 61669,\n  \"comments-o\": 61670,\n  \"flash\": 61671,\n  \"bolt\": 61671,\n  \"sitemap\": 61672,\n  \"umbrella\": 61673,\n  \"paste\": 61674,\n  \"clipboard\": 61674,\n  \"lightbulb-o\": 61675,\n  \"exchange\": 61676,\n  \"cloud-download\": 61677,\n  \"cloud-upload\": 61678,\n  \"user-md\": 61680,\n  \"stethoscope\": 61681,\n  \"suitcase\": 61682,\n  \"bell-o\": 61602,\n  \"coffee\": 61684,\n  \"cutlery\": 61685,\n  \"file-text-o\": 61686,\n  \"building-o\": 61687,\n  \"hospital-o\": 61688,\n  \"ambulance\": 61689,\n  \"medkit\": 61690,\n  \"fighter-jet\": 61691,\n  \"beer\": 61692,\n  \"h-square\": 61693,\n  \"plus-square\": 61694,\n  \"angle-double-left\": 61696,\n  \"angle-double-right\": 61697,\n  \"angle-double-up\": 61698,\n  \"angle-double-down\": 61699,\n  \"angle-left\": 61700,\n  \"angle-right\": 61701,\n  \"angle-up\": 61702,\n  \"angle-down\": 61703,\n  \"desktop\": 61704,\n  \"laptop\": 61705,\n  \"tablet\": 61706,\n  \"mobile-phone\": 61707,\n  \"mobile\": 61707,\n  \"circle-o\": 61708,\n  \"quote-left\": 61709,\n  \"quote-right\": 61710,\n  \"spinner\": 61712,\n  \"circle\": 61713,\n  \"mail-reply\": 61714,\n  \"reply\": 61714,\n  \"github-alt\": 61715,\n  \"folder-o\": 61716,\n  \"folder-open-o\": 61717,\n  \"smile-o\": 61720,\n  \"frown-o\": 61721,\n  \"meh-o\": 61722,\n  \"gamepad\": 61723,\n  \"keyboard-o\": 61724,\n  \"flag-o\": 61725,\n  \"flag-checkered\": 61726,\n  \"terminal\": 61728,\n  \"code\": 61729,\n  \"mail-reply-all\": 61730,\n  \"reply-all\": 61730,\n  \"star-half-empty\": 61731,\n  \"star-half-full\": 61731,\n  \"star-half-o\": 61731,\n  \"location-arrow\": 61732,\n  \"crop\": 61733,\n  \"code-fork\": 61734,\n  \"unlink\": 61735,\n  \"chain-broken\": 61735,\n  \"question\": 61736,\n  \"info\": 61737,\n  \"exclamation\": 61738,\n  \"superscript\": 61739,\n  \"subscript\": 61740,\n  \"eraser\": 61741,\n  \"puzzle-piece\": 61742,\n  \"microphone\": 61744,\n  \"microphone-slash\": 61745,\n  \"shield\": 61746,\n  \"calendar-o\": 61747,\n  \"fire-extinguisher\": 61748,\n  \"rocket\": 61749,\n  \"maxcdn\": 61750,\n  \"chevron-circle-left\": 61751,\n  \"chevron-circle-right\": 61752,\n  \"chevron-circle-up\": 61753,\n  \"chevron-circle-down\": 61754,\n  \"html5\": 61755,\n  \"css3\": 61756,\n  \"anchor\": 61757,\n  \"unlock-alt\": 61758,\n  \"bullseye\": 61760,\n  \"ellipsis-h\": 61761,\n  \"ellipsis-v\": 61762,\n  \"rss-square\": 61763,\n  \"play-circle\": 61764,\n  \"ticket\": 61765,\n  \"minus-square\": 61766,\n  \"minus-square-o\": 61767,\n  \"level-up\": 61768,\n  \"level-down\": 61769,\n  \"check-square\": 61770,\n  \"pencil-square\": 61771,\n  \"external-link-square\": 61772,\n  \"share-square\": 61773,\n  \"compass\": 61774,\n  \"toggle-down\": 61776,\n  \"caret-square-o-down\": 61776,\n  \"toggle-up\": 61777,\n  \"caret-square-o-up\": 61777,\n  \"toggle-right\": 61778,\n  \"caret-square-o-right\": 61778,\n  \"euro\": 61779,\n  \"eur\": 61779,\n  \"gbp\": 61780,\n  \"dollar\": 61781,\n  \"usd\": 61781,\n  \"rupee\": 61782,\n  \"inr\": 61782,\n  \"cny\": 61783,\n  \"rmb\": 61783,\n  \"yen\": 61783,\n  \"jpy\": 61783,\n  \"ruble\": 61784,\n  \"rouble\": 61784,\n  \"rub\": 61784,\n  \"won\": 61785,\n  \"krw\": 61785,\n  \"bitcoin\": 61786,\n  \"btc\": 61786,\n  \"file\": 61787,\n  \"file-text\": 61788,\n  \"sort-alpha-asc\": 61789,\n  \"sort-alpha-desc\": 61790,\n  \"sort-amount-asc\": 61792,\n  \"sort-amount-desc\": 61793,\n  \"sort-numeric-asc\": 61794,\n  \"sort-numeric-desc\": 61795,\n  \"thumbs-up\": 61796,\n  \"thumbs-down\": 61797,\n  \"youtube-square\": 61798,\n  \"youtube\": 61799,\n  \"xing\": 61800,\n  \"xing-square\": 61801,\n  \"youtube-play\": 61802,\n  \"dropbox\": 61803,\n  \"stack-overflow\": 61804,\n  \"instagram\": 61805,\n  \"flickr\": 61806,\n  \"adn\": 61808,\n  \"bitbucket\": 61809,\n  \"bitbucket-square\": 61810,\n  \"tumblr\": 61811,\n  \"tumblr-square\": 61812,\n  \"long-arrow-down\": 61813,\n  \"long-arrow-up\": 61814,\n  \"long-arrow-left\": 61815,\n  \"long-arrow-right\": 61816,\n  \"apple\": 61817,\n  \"windows\": 61818,\n  \"android\": 61819,\n  \"linux\": 61820,\n  \"dribbble\": 61821,\n  \"skype\": 61822,\n  \"foursquare\": 61824,\n  \"trello\": 61825,\n  \"female\": 61826,\n  \"male\": 61827,\n  \"gittip\": 61828,\n  \"gratipay\": 61828,\n  \"sun-o\": 61829,\n  \"moon-o\": 61830,\n  \"archive\": 61831,\n  \"bug\": 61832,\n  \"vk\": 61833,\n  \"weibo\": 61834,\n  \"renren\": 61835,\n  \"pagelines\": 61836,\n  \"stack-exchange\": 61837,\n  \"arrow-circle-o-right\": 61838,\n  \"arrow-circle-o-left\": 61840,\n  \"toggle-left\": 61841,\n  \"caret-square-o-left\": 61841,\n  \"dot-circle-o\": 61842,\n  \"wheelchair\": 61843,\n  \"vimeo-square\": 61844,\n  \"turkish-lira\": 61845,\n  \"try\": 61845,\n  \"plus-square-o\": 61846,\n  \"space-shuttle\": 61847,\n  \"slack\": 61848,\n  \"envelope-square\": 61849,\n  \"wordpress\": 61850,\n  \"openid\": 61851,\n  \"institution\": 61852,\n  \"bank\": 61852,\n  \"university\": 61852,\n  \"mortar-board\": 61853,\n  \"graduation-cap\": 61853,\n  \"yahoo\": 61854,\n  \"google\": 61856,\n  \"reddit\": 61857,\n  \"reddit-square\": 61858,\n  \"stumbleupon-circle\": 61859,\n  \"stumbleupon\": 61860,\n  \"delicious\": 61861,\n  \"digg\": 61862,\n  \"pied-piper-pp\": 61863,\n  \"pied-piper-alt\": 61864,\n  \"drupal\": 61865,\n  \"joomla\": 61866,\n  \"language\": 61867,\n  \"fax\": 61868,\n  \"building\": 61869,\n  \"child\": 61870,\n  \"paw\": 61872,\n  \"spoon\": 61873,\n  \"cube\": 61874,\n  \"cubes\": 61875,\n  \"behance\": 61876,\n  \"behance-square\": 61877,\n  \"steam\": 61878,\n  \"steam-square\": 61879,\n  \"recycle\": 61880,\n  \"automobile\": 61881,\n  \"car\": 61881,\n  \"cab\": 61882,\n  \"taxi\": 61882,\n  \"tree\": 61883,\n  \"spotify\": 61884,\n  \"deviantart\": 61885,\n  \"soundcloud\": 61886,\n  \"database\": 61888,\n  \"file-pdf-o\": 61889,\n  \"file-word-o\": 61890,\n  \"file-excel-o\": 61891,\n  \"file-powerpoint-o\": 61892,\n  \"file-photo-o\": 61893,\n  \"file-picture-o\": 61893,\n  \"file-image-o\": 61893,\n  \"file-zip-o\": 61894,\n  \"file-archive-o\": 61894,\n  \"file-sound-o\": 61895,\n  \"file-audio-o\": 61895,\n  \"file-movie-o\": 61896,\n  \"file-video-o\": 61896,\n  \"file-code-o\": 61897,\n  \"vine\": 61898,\n  \"codepen\": 61899,\n  \"jsfiddle\": 61900,\n  \"life-bouy\": 61901,\n  \"life-buoy\": 61901,\n  \"life-saver\": 61901,\n  \"support\": 61901,\n  \"life-ring\": 61901,\n  \"circle-o-notch\": 61902,\n  \"ra\": 61904,\n  \"resistance\": 61904,\n  \"rebel\": 61904,\n  \"ge\": 61905,\n  \"empire\": 61905,\n  \"git-square\": 61906,\n  \"git\": 61907,\n  \"y-combinator-square\": 61908,\n  \"yc-square\": 61908,\n  \"hacker-news\": 61908,\n  \"tencent-weibo\": 61909,\n  \"qq\": 61910,\n  \"wechat\": 61911,\n  \"weixin\": 61911,\n  \"send\": 61912,\n  \"paper-plane\": 61912,\n  \"send-o\": 61913,\n  \"paper-plane-o\": 61913,\n  \"history\": 61914,\n  \"circle-thin\": 61915,\n  \"header\": 61916,\n  \"paragraph\": 61917,\n  \"sliders\": 61918,\n  \"share-alt\": 61920,\n  \"share-alt-square\": 61921,\n  \"bomb\": 61922,\n  \"soccer-ball-o\": 61923,\n  \"futbol-o\": 61923,\n  \"tty\": 61924,\n  \"binoculars\": 61925,\n  \"plug\": 61926,\n  \"slideshare\": 61927,\n  \"twitch\": 61928,\n  \"yelp\": 61929,\n  \"newspaper-o\": 61930,\n  \"wifi\": 61931,\n  \"calculator\": 61932,\n  \"paypal\": 61933,\n  \"google-wallet\": 61934,\n  \"cc-visa\": 61936,\n  \"cc-mastercard\": 61937,\n  \"cc-discover\": 61938,\n  \"cc-amex\": 61939,\n  \"cc-paypal\": 61940,\n  \"cc-stripe\": 61941,\n  \"bell-slash\": 61942,\n  \"bell-slash-o\": 61943,\n  \"trash\": 61944,\n  \"copyright\": 61945,\n  \"at\": 61946,\n  \"eyedropper\": 61947,\n  \"paint-brush\": 61948,\n  \"birthday-cake\": 61949,\n  \"area-chart\": 61950,\n  \"pie-chart\": 61952,\n  \"line-chart\": 61953,\n  \"lastfm\": 61954,\n  \"lastfm-square\": 61955,\n  \"toggle-off\": 61956,\n  \"toggle-on\": 61957,\n  \"bicycle\": 61958,\n  \"bus\": 61959,\n  \"ioxhost\": 61960,\n  \"angellist\": 61961,\n  \"cc\": 61962,\n  \"shekel\": 61963,\n  \"sheqel\": 61963,\n  \"ils\": 61963,\n  \"meanpath\": 61964,\n  \"buysellads\": 61965,\n  \"connectdevelop\": 61966,\n  \"dashcube\": 61968,\n  \"forumbee\": 61969,\n  \"leanpub\": 61970,\n  \"sellsy\": 61971,\n  \"shirtsinbulk\": 61972,\n  \"simplybuilt\": 61973,\n  \"skyatlas\": 61974,\n  \"cart-plus\": 61975,\n  \"cart-arrow-down\": 61976,\n  \"diamond\": 61977,\n  \"ship\": 61978,\n  \"user-secret\": 61979,\n  \"motorcycle\": 61980,\n  \"street-view\": 61981,\n  \"heartbeat\": 61982,\n  \"venus\": 61985,\n  \"mars\": 61986,\n  \"mercury\": 61987,\n  \"intersex\": 61988,\n  \"transgender\": 61988,\n  \"transgender-alt\": 61989,\n  \"venus-double\": 61990,\n  \"mars-double\": 61991,\n  \"venus-mars\": 61992,\n  \"mars-stroke\": 61993,\n  \"mars-stroke-v\": 61994,\n  \"mars-stroke-h\": 61995,\n  \"neuter\": 61996,\n  \"genderless\": 61997,\n  \"facebook-official\": 62000,\n  \"pinterest-p\": 62001,\n  \"whatsapp\": 62002,\n  \"server\": 62003,\n  \"user-plus\": 62004,\n  \"user-times\": 62005,\n  \"hotel\": 62006,\n  \"bed\": 62006,\n  \"viacoin\": 62007,\n  \"train\": 62008,\n  \"subway\": 62009,\n  \"medium\": 62010,\n  \"yc\": 62011,\n  \"y-combinator\": 62011,\n  \"optin-monster\": 62012,\n  \"opencart\": 62013,\n  \"expeditedssl\": 62014,\n  \"battery-4\": 62016,\n  \"battery\": 62016,\n  \"battery-full\": 62016,\n  \"battery-3\": 62017,\n  \"battery-three-quarters\": 62017,\n  \"battery-2\": 62018,\n  \"battery-half\": 62018,\n  \"battery-1\": 62019,\n  \"battery-quarter\": 62019,\n  \"battery-0\": 62020,\n  \"battery-empty\": 62020,\n  \"mouse-pointer\": 62021,\n  \"i-cursor\": 62022,\n  \"object-group\": 62023,\n  \"object-ungroup\": 62024,\n  \"sticky-note\": 62025,\n  \"sticky-note-o\": 62026,\n  \"cc-jcb\": 62027,\n  \"cc-diners-club\": 62028,\n  \"clone\": 62029,\n  \"balance-scale\": 62030,\n  \"hourglass-o\": 62032,\n  \"hourglass-1\": 62033,\n  \"hourglass-start\": 62033,\n  \"hourglass-2\": 62034,\n  \"hourglass-half\": 62034,\n  \"hourglass-3\": 62035,\n  \"hourglass-end\": 62035,\n  \"hourglass\": 62036,\n  \"hand-grab-o\": 62037,\n  \"hand-rock-o\": 62037,\n  \"hand-stop-o\": 62038,\n  \"hand-paper-o\": 62038,\n  \"hand-scissors-o\": 62039,\n  \"hand-lizard-o\": 62040,\n  \"hand-spock-o\": 62041,\n  \"hand-pointer-o\": 62042,\n  \"hand-peace-o\": 62043,\n  \"trademark\": 62044,\n  \"registered\": 62045,\n  \"creative-commons\": 62046,\n  \"gg\": 62048,\n  \"gg-circle\": 62049,\n  \"tripadvisor\": 62050,\n  \"odnoklassniki\": 62051,\n  \"odnoklassniki-square\": 62052,\n  \"get-pocket\": 62053,\n  \"wikipedia-w\": 62054,\n  \"safari\": 62055,\n  \"chrome\": 62056,\n  \"firefox\": 62057,\n  \"opera\": 62058,\n  \"internet-explorer\": 62059,\n  \"tv\": 62060,\n  \"television\": 62060,\n  \"contao\": 62061,\n  \"500px\": 62062,\n  \"amazon\": 62064,\n  \"calendar-plus-o\": 62065,\n  \"calendar-minus-o\": 62066,\n  \"calendar-times-o\": 62067,\n  \"calendar-check-o\": 62068,\n  \"industry\": 62069,\n  \"map-pin\": 62070,\n  \"map-signs\": 62071,\n  \"map-o\": 62072,\n  \"map\": 62073,\n  \"commenting\": 62074,\n  \"commenting-o\": 62075,\n  \"houzz\": 62076,\n  \"vimeo\": 62077,\n  \"black-tie\": 62078,\n  \"fonticons\": 62080,\n  \"reddit-alien\": 62081,\n  \"edge\": 62082,\n  \"credit-card-alt\": 62083,\n  \"codiepie\": 62084,\n  \"modx\": 62085,\n  \"fort-awesome\": 62086,\n  \"usb\": 62087,\n  \"product-hunt\": 62088,\n  \"mixcloud\": 62089,\n  \"scribd\": 62090,\n  \"pause-circle\": 62091,\n  \"pause-circle-o\": 62092,\n  \"stop-circle\": 62093,\n  \"stop-circle-o\": 62094,\n  \"shopping-bag\": 62096,\n  \"shopping-basket\": 62097,\n  \"hashtag\": 62098,\n  \"bluetooth\": 62099,\n  \"bluetooth-b\": 62100,\n  \"percent\": 62101,\n  \"gitlab\": 62102,\n  \"wpbeginner\": 62103,\n  \"wpforms\": 62104,\n  \"envira\": 62105,\n  \"universal-access\": 62106,\n  \"wheelchair-alt\": 62107,\n  \"question-circle-o\": 62108,\n  \"blind\": 62109,\n  \"audio-description\": 62110,\n  \"volume-control-phone\": 62112,\n  \"braille\": 62113,\n  \"assistive-listening-systems\": 62114,\n  \"asl-interpreting\": 62115,\n  \"american-sign-language-interpreting\": 62115,\n  \"deafness\": 62116,\n  \"hard-of-hearing\": 62116,\n  \"deaf\": 62116,\n  \"glide\": 62117,\n  \"glide-g\": 62118,\n  \"signing\": 62119,\n  \"sign-language\": 62119,\n  \"low-vision\": 62120,\n  \"viadeo\": 62121,\n  \"viadeo-square\": 62122,\n  \"snapchat\": 62123,\n  \"snapchat-ghost\": 62124,\n  \"snapchat-square\": 62125,\n  \"pied-piper\": 62126,\n  \"first-order\": 62128,\n  \"yoast\": 62129,\n  \"themeisle\": 62130,\n  \"google-plus-circle\": 62131,\n  \"google-plus-official\": 62131,\n  \"fa\": 62132,\n  \"font-awesome\": 62132,\n  \"handshake-o\": 62133,\n  \"envelope-open\": 62134,\n  \"envelope-open-o\": 62135,\n  \"linode\": 62136,\n  \"address-book\": 62137,\n  \"address-book-o\": 62138,\n  \"vcard\": 62139,\n  \"address-card\": 62139,\n  \"vcard-o\": 62140,\n  \"address-card-o\": 62140,\n  \"user-circle\": 62141,\n  \"user-circle-o\": 62142,\n  \"user-o\": 62144,\n  \"id-badge\": 62145,\n  \"drivers-license\": 62146,\n  \"id-card\": 62146,\n  \"drivers-license-o\": 62147,\n  \"id-card-o\": 62147,\n  \"quora\": 62148,\n  \"free-code-camp\": 62149,\n  \"telegram\": 62150,\n  \"thermometer-4\": 62151,\n  \"thermometer\": 62151,\n  \"thermometer-full\": 62151,\n  \"thermometer-3\": 62152,\n  \"thermometer-three-quarters\": 62152,\n  \"thermometer-2\": 62153,\n  \"thermometer-half\": 62153,\n  \"thermometer-1\": 62154,\n  \"thermometer-quarter\": 62154,\n  \"thermometer-0\": 62155,\n  \"thermometer-empty\": 62155,\n  \"shower\": 62156,\n  \"bathtub\": 62157,\n  \"s15\": 62157,\n  \"bath\": 62157,\n  \"podcast\": 62158,\n  \"window-maximize\": 62160,\n  \"window-minimize\": 62161,\n  \"window-restore\": 62162,\n  \"times-rectangle\": 62163,\n  \"window-close\": 62163,\n  \"times-rectangle-o\": 62164,\n  \"window-close-o\": 62164,\n  \"bandcamp\": 62165,\n  \"grav\": 62166,\n  \"etsy\": 62167,\n  \"imdb\": 62168,\n  \"ravelry\": 62169,\n  \"eercast\": 62170,\n  \"microchip\": 62171,\n  \"snowflake-o\": 62172,\n  \"superpowers\": 62173,\n  \"wpexplorer\": 62174,\n  \"meetup\": 62176\n}"
  },
  {
    "path": "packages/fontawesome/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontawesome\",\n  \"version\": \"12.5.0\",\n  \"description\": \"Fontawesome font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\",\n    \"./fonts/*.ttf\": \"./fonts/*.ttf\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"fontawesome\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/fontawesome\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\",\n    \"font-awesome\": \"4.7.0\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome/react-native-vector-icons-fontawesome.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-fontawesome'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\nend\n"
  },
  {
    "path": "packages/fontawesome/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesome icon set component.\n * Usage: <FontAwesome name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesome.json';\n\nexport const FontAwesome = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome',\n  fontFileName: 'FontAwesome.ttf',\n  fontSource: require('../fonts/FontAwesome.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require\n});\n\nexport type FontAwesomeIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesome;\n"
  },
  {
    "path": "packages/fontawesome/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesome icon set component.\n * Usage: <FontAwesome name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesome.json';\n\nexport const FontAwesome = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome',\n  fontFileName: 'FontAwesome.ttf',\n});\n\nexport type FontAwesomeIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesome;\n"
  },
  {
    "path": "packages/fontawesome/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/fontawesome/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-common/CHANGELOG.md",
    "content": "## 12.4.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.3.2 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 12.3.1 (2026-03-10)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n## 12.3.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.2.0 (2025-08-03)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.3.0\n\n## 12.1.0 (2025-07-12)\n\n### 🚀 Features\n\n- export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761))\n\n### 🩹 Fixes\n\n- put fontawesome pro fonts in the right path ([#1783](https://github.com/oblador/react-native-vector-icons/pull/1783))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.1.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n- Peter Lazar @peterlazar1993\n\n## 12.0.2 (2025-06-15)\n\n### 🩹 Fixes\n\n- new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774))\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.1 (2025-06-15)\n\n### 🩹 Fixes\n\n- update fontawesome fonts to new createIcon format so font loads in expo ([#1769](https://github.com/oblador/react-native-vector-icons/pull/1769))\n- remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767))\n- convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765))\n- updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c))\n- improve warning if glyph does not exist for default IconStyle in fontawesome fonts ([#1718](https://github.com/oblador/react-native-vector-icons/pull/1718))\n- **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742))\n- **fontawesome-common,fontawesome5-pro,fontawesome6-pro:** fix FA upgrade scripts (fixes: #1727) ([#1741](https://github.com/oblador/react-native-vector-icons/pull/1741), [#1727](https://github.com/oblador/react-native-vector-icons/issues/1727))\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n- Lukas @WookieFPV\n- Md. Jayed Hasan @JayedHasan232\n\n# 12.0.0 (2025-05-04)\n\n### 🚀 Features\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n- add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702))\n\n### 🩹 Fixes\n\n- upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691))\n- upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690))\n\n### ⚠️  Breaking Changes\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n\n### ❤️ Thank You\n\n- Chanphirom Sok @chanphiromsok\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontawesome-common/README.md",
    "content": "# FontAwesome Common\n"
  },
  {
    "path": "packages/fontawesome-common/bin/fa-upgrade",
    "content": "#!/bin/sh\n\nset -e\n\nTEMP_DIR_PATH=\"\"\nFONTAWESOME_PRO_DIR_NAME=\"\"\nVERSION=$1\nDEST_DIR_PATH=${2:-\"rnvi-fonts\"}\nif [ \"$VERSION\" = \"5\" ] || [ \"$VERSION\" = \"6\" ]; then\n  DEST_DIR_PATH=\"${DEST_DIR_PATH}/fontawesome${VERSION}-pro\"\nfi\nFONT_NAME=\"Font Awesome Pro ${VERSION}\"\n\nsetup_npm_config() {\n  # always returns successfull zero code\n  if [ \"$(npm config get @fortawesome:registry)\" = \"undefined\" ]; then\n    npm config set \"@fortawesome:registry\" https://npm.fontawesome.com/\n  fi\n\n  local npm_token=\"\"\n  echo \"Please enter your $FONT_NAME npm token:\"\n  read npm_token\n  npm config set \"//npm.fontawesome.com/:_authToken\" \"${npm_token}\"\n}\n\ncreate_tmp_directory() {\n  local tmp_dir=\"$(mktemp -d -t 'rnvi.XXXXXX')\"\n  retval=$?\n  if [ \"$retval\" != 0 ]; then\n    echo \"[FAIL] Can't create temporary directory\"\n    return 1\n  fi\n\n  if [ -z \"$tmp_dir\" ]; then\n    echo \"[FAIL] Generated temporary directory name is empty\"\n    return 1\n  fi\n\n  TEMP_DIR_PATH=\"$tmp_dir\"\n}\n\ndownload_and_unpack_fontawesome_pro() {\n  local archive_file_name=\"$(npm pack @fortawesome/fontawesome-pro@^${VERSION} --silent)\"\n  retval=$?\n  if [ \"$retval\" != 0 ]; then\n    echo \"[FAIL] Can't download [$archive_file_name] archive\"\n    return 1\n  fi\n\n  tar -xzf \"$archive_file_name\"\n  retval=$?\n  if [ \"$retval\" != 0 ]; then\n    echo \"[FAIL] Can't unpack [$archive_file_name] archive\"\n    return 1\n  fi\n\n  local font_dir_name=\"package\"\n  if [ ! -d \"$font_dir_name\" ]; then\n    echo \"[FAIL] Archive doesn't contain [$font_dir_name] required directory\"\n    return 1\n  fi\n\n  FONTAWESOME_PRO_DIR_NAME=\"$font_dir_name\"\n}\n\ncopy_ttf_fonts_to_dest_dir() {\n  mkdir -p \"$DEST_DIR_PATH\"\n  retval=$?\n  if [ \"$retval\" != 0 ]; then\n    echo \"[FAIL] Can't create [$DEST_DIR_PATH] directory\"\n    return 1\n  fi\n\n  local font_dir_path=\"$TEMP_DIR_PATH/$FONTAWESOME_PRO_DIR_NAME/webfonts\"\n\n  if [ \"$VERSION\" = \"5\" ]; then\n    cp \"$font_dir_path/fa-brands-400.ttf\" \"$DEST_DIR_PATH/FontAwesome5_Pro_Brands.ttf\" &&\n      cp \"$font_dir_path/fa-duotone-900.ttf\" \"$DEST_DIR_PATH/FontAwesome5_Pro_Duotone.ttf\" &&\n      cp \"$font_dir_path/fa-light-300.ttf\" \"$DEST_DIR_PATH/FontAwesome5_Pro_Light.ttf\" &&\n      cp \"$font_dir_path/fa-regular-400.ttf\" \"$DEST_DIR_PATH/FontAwesome5_Pro_Regular.ttf\" &&\n      cp \"$font_dir_path/fa-solid-900.ttf\" \"$DEST_DIR_PATH/FontAwesome5_Pro_Solid.ttf\"\n  elif [ \"$VERSION\" = \"6\" ]; then\n    cp \"$font_dir_path/fa-brands-400.ttf\" \"$DEST_DIR_PATH/FontAwesome6_Pro_Brands.ttf\" &&\n      cp \"$font_dir_path/fa-duotone-900.ttf\" \"$DEST_DIR_PATH/FontAwesome6_Pro_Duotone.ttf\" &&\n      cp \"$font_dir_path/fa-light-300.ttf\" \"$DEST_DIR_PATH/FontAwesome6_Pro_Light.ttf\" &&\n      cp \"$font_dir_path/fa-regular-400.ttf\" \"$DEST_DIR_PATH/FontAwesome6_Pro_Regular.ttf\" &&\n      cp \"$font_dir_path/fa-sharp-light-300.ttf\" \"$DEST_DIR_PATH/FontAwesome6_Pro_Sharp_Light.ttf\"\n    cp \"$font_dir_path/fa-sharp-regular-400.ttf\" \"$DEST_DIR_PATH/FontAwesome6_Pro_Sharp_Regular.ttf\"\n    cp \"$font_dir_path/fa-sharp-solid-900.ttf\" \"$DEST_DIR_PATH/FontAwesome6_Pro_Sharp_Solid.ttf\"\n    cp \"$font_dir_path/fa-sharp-thin-100.ttf\" \"$DEST_DIR_PATH/FontAwesome6_Pro_Sharp_Thin.ttf\"\n    cp \"$font_dir_path/fa-solid-900.ttf\" \"$DEST_DIR_PATH/FontAwesome6_Pro_Solid.ttf\" &&\n      cp \"$font_dir_path/fa-thin-100.ttf\" \"$DEST_DIR_PATH/FontAwesome6_Pro_Thin.ttf\"\n  else\n    echo \"[FAIL] Unsupported version [$VERSION]\"\n    exit 1\n  fi\n\n  retval=$?\n  if [ \"$retval\" != 0 ]; then\n    echo \"[FAIL] Can't copy ttf fonts to [$DEST_DIR_PATH] directory\"\n    return 1\n  fi\n}\n\nif create_tmp_directory; then\n  echo \"[SUCCESS] Temporary directory [$TEMP_DIR_PATH] was created\"\nelse\n  exit 1\nfi\n\ncd \"$TEMP_DIR_PATH\"\n\nif setup_npm_config; then\n  echo \"[SUCCESS] Set up npm config\"\nelse\n  exit 1\nfi\n\nif download_and_unpack_fontawesome_pro; then\n  echo \"[SUCCESS] $FONT_NAME was unpacked to [$TEMP_DIR_PATH/$FONTAWESOME_PRO_DIR_NAME] directory\"\nelse\n  exit 1\nfi\ncd - >/dev/null\n\nif copy_ttf_fonts_to_dest_dir; then\n  echo \"[SUCCESS] Copied $FONT_NAME to [$DEST_DIR_PATH] directory\"\nelse\n  exit 1\nfi\n\necho \"[SUCCESS] $FONT_NAME was successfully upgraded\"\necho \"Note: [$TEMP_DIR_PATH] was created. Delete it manually or it will be deleted automatically on next reboot\"\n"
  },
  {
    "path": "packages/fontawesome-common/bin/fa-upgrade5",
    "content": "#!/bin/sh\n\nset -e\n\nSCRIPT_DIR=\"$(cd \"$(dirname \"$0\")\" && pwd)\"\n\n\"${SCRIPT_DIR}\"/fa-upgrade 5 \"$@\"\n"
  },
  {
    "path": "packages/fontawesome-common/bin/fa-upgrade6",
    "content": "#!/bin/sh\n\nset -e\n\nSCRIPT_DIR=\"$(cd \"$(dirname \"$0\")\" && pwd)\"\n\n\"${SCRIPT_DIR}\"/fa-upgrade 6 \"$@\"\n"
  },
  {
    "path": "packages/fontawesome-common/generators/app/templates/src/index.tsx",
    "content": "/* eslint-disable react/jsx-pascal-case, no-console */\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * Instead, modify the template in `fontawesome-common/generator`.\n *\n * <%= className %> icon set component.\n * Usage: <<%= className %> name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport type { ComponentProps } from 'react';\nimport { Platform, type TextStyle } from 'react-native';\n\nimport { createIconSet, DEFAULT_ICON_COLOR, DEFAULT_ICON_SIZE } from '@react-native-vector-icons/common';\n\n<% upperDefaultStyleName = meta.defaultStyleName.charAt(0).toUpperCase() + meta.defaultStyleName.slice(1) -%>\n<% meta.styleNames.sort().forEach((styleName) => { -%>\nimport <%= styleName %>GM from '../glyphmaps/<%= className %>_<%= styleName %>.json';\n<% }) -%>\n\nimport metadata from '../glyphmaps/<%- className %>_meta.json';\n\nconst glyphValidator = (glyph: string, iconType: keyof typeof metadata) => metadata[iconType]?.includes(glyph);\n\nconst fontStyle = (fontWeight: TextStyle['fontWeight']) =>\n  Platform.select({\n    ios: {\n      fontWeight,\n    },\n    default: {},\n  });\n\n<% Object.entries(meta.styles).forEach(([styleName, { family, name, weight }]) => { -%>\n<% upperStyleName = styleName.charAt(0).toUpperCase() + styleName.slice(1) -%>\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst <%= upperStyleName %>Icon = createIconSet(<%= styleName %>GM, {\n  postScriptName: '<%= family %>',\n  fontFileName: '<%= name %>',\n<% if (!locals.isStatic && !packageName.endsWith('-pro')) { -%>\n  fontSource: require('../fonts/<%= name %>'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require\n<% } -%>\n  fontStyle: fontStyle('<%= weight %>')\n});\nexport type <%= className %><%= upperStyleName %>IconName = keyof typeof <%= styleName %>GM;\n<% }) -%>\ntype Props =\n<% Object.entries(meta.styles).forEach(([styleName, { family, name, weight }]) => { -%>\n<% upperStyleName = styleName.charAt(0).toUpperCase() + styleName.slice(1) -%>\n  | ({ iconStyle: '<%= styleName %>' } & ComponentProps<typeof <%= upperStyleName %>Icon>)\n<% }) -%>\n  | ({ iconStyle?: never } & ComponentProps<typeof <%= upperDefaultStyleName %>Icon>);\n\nexport const <%= className %> = (props: Props) => {\n  const { iconStyle, name } = props;\n  if (!iconStyle) {\n    if (!glyphValidator(name, 'regular')) {\n      console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for 'regular' icon type for <%= className %>`);\n    }\n    return <<%= upperDefaultStyleName %>Icon {...props} />;\n  }\n\n  if (!glyphValidator(name, iconStyle)) {\n    console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for '${iconStyle}' icon type for <%= className %>`);\n\n    return <<%= upperDefaultStyleName %>Icon {...(props as ComponentProps<typeof <%= upperDefaultStyleName %>Icon>)} />;\n  }\n\n  switch (iconStyle) {\n<% meta.styleNames.forEach((styleName) => { -%>\n<% upperStyleName = styleName.charAt(0).toUpperCase() + styleName.slice(1) -%>\n    case '<%= styleName %>':\n      return <<%= upperStyleName %>Icon {...props} />;\n<% }) -%>\n    default:\n      console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for <%= className %>`);\n      return <<%= upperDefaultStyleName %>Icon {...(props as ComponentProps<typeof <%= upperDefaultStyleName %>Icon>)} />;\n  }\n};\n\ntype GetImageSourceFunc = {\n<% meta.styleNames.forEach((styleName) => { -%>\n<% upperStyleName = styleName.charAt(0).toUpperCase() + styleName.slice(1) -%>\n  (\n    iconStyle: '<%= styleName %>',\n    name: ComponentProps<typeof <%= upperStyleName %>Icon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof <%= upperStyleName %>Icon)['getImageSource']>;\n<% }) -%>\n};\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst getImageSource: GetImageSourceFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => {\n  switch (iconStyle) {\n<% meta.styleNames.forEach((styleName) => { -%>\n<% upperStyleName = styleName.charAt(0).toUpperCase() + styleName.slice(1) -%>\n    case '<%= styleName %>':\n      return <%= upperStyleName %>Icon.getImageSource(name as keyof typeof <%= styleName %>GM, size, color);\n<% }) -%>\n    default:\n      console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for <%= className %>`);\n      return <%= upperDefaultStyleName %>Icon.getImageSource(name as keyof typeof <%= meta.defaultStyleName %>GM, size, color);\n  }\n};\n<%= className %>.getImageSource = getImageSource;\n\ntype GetImageSourceSyncFunc = {\n<% meta.styleNames.forEach((styleName) => { -%>\n<% upperStyleName = styleName.charAt(0).toUpperCase() + styleName.slice(1) -%>\n  (\n    iconStyle: '<%= styleName %>',\n    name: ComponentProps<typeof <%= upperStyleName %>Icon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof <%= upperStyleName %>Icon)['getImageSourceSync']>;\n<% }) -%>\n};\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst getImageSourceSync: GetImageSourceSyncFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => {\n  switch (iconStyle) {\n<% meta.styleNames.forEach((styleName) => { -%>\n<% upperStyleName = styleName.charAt(0).toUpperCase() + styleName.slice(1) -%>\n    case '<%= styleName %>':\n      return <%= upperStyleName %>Icon.getImageSourceSync(name as keyof typeof <%= styleName %>GM, size, color);\n<% }) -%>\n    default:\n      console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for <%= className %>`);\n      return <%= upperDefaultStyleName %>Icon.getImageSourceSync(name as keyof typeof <%= meta.defaultStyleName %>GM, size, color);\n  }\n};\n<%= className %>.getImageSourceSync = getImageSourceSync;\n\nexport type <%= className %>IconName = ComponentProps<typeof <%= className %>>['name'];\n\n/** @alias */\nexport default <%= className %>;\n"
  },
  {
    "path": "packages/fontawesome-common/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontawesome-common\",\n  \"version\": \"12.4.0\",\n  \"description\": \"Fontawesome 5 & 6 Pro Common library for react native vector icons\",\n  \"react-native\": \"src/index\",\n  \"source\": \"src/index\",\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"fontawesome\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/oblador/react-native-vector-icons.git\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"publishConfig\": {\n    \"access\": \"public\",\n    \"registry\": \"https://registry.npmjs.org/\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.0.12\",\n    \"typescript\": \"^5.7.2\",\n    \"yargs\": \"^17.7.2\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"bin\": {\n    \"fa-upgrade\": \"./bin/fa-upgrade\",\n    \"fa-upgrade5\": \"./bin/fa-upgrade5\",\n    \"fa-upgrade6\": \"./bin/fa-upgrade6\"\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-common/scripts/fetch-pro.sh",
    "content": "#!/usr/bin/env bash\n\nset -e\n\nVERSION=$1\nif [ -z \"$VERSION\" ]; then\n  echo \"Pass version as first argument\"\n  exit 1\nfi\n\nmkdir fa\ncd fa\n\n# So the npm commands work with workspaces\ntouch package.json\n\nnpm config set '@fortawesome:registry' https://npm.fontawesome.com/\nif [ -z \"$(npm config get | grep '//npm.fontawesome.com/:_authToken')\" ]; then\n  echo -n 'Please enter your FontAwesome npm token: '\n  read -r fa_token\n  npm config set '//npm.fontawesome.com/:_authToken' \"${fa_token}\"\nfi\n\nARCHIVE=$(npm pack \"@fortawesome/fontawesome-pro@^$VERSION\" --silent 2>/dev/null)\ntar -xzf \"$ARCHIVE\"\nmv package pro\n"
  },
  {
    "path": "packages/fontawesome-common/scripts/generate-fontawesome-glyphmap.mts",
    "content": "#!/usr/bin/env node\n\nimport fs from 'node:fs';\n\nconst css = process.argv[2];\nconst svgDir = process.argv[3];\n\nif (!css || !svgDir) {\n  console.error('Usage: generate-fontawesome-glyphmap <css-glyphmap-filename> <svg-directory>');\n\n  process.exit(1);\n}\n\nconst icons = fs\n  .readdirSync(svgDir)\n  .filter((file) => file.endsWith('.svg'))\n  .map((file) => file.replace('.svg', ''));\n\nconst mainMap = JSON.parse(fs.readFileSync(`glyphmaps/${css}`, 'utf8')) as Record<string, string>;\n\nconst glyphMap: Record<string, string> = {};\n\nicons.forEach((icon) => {\n  if (!mainMap[icon]) {\n    console.log(`Icon \"${icon}\" not found in main glyphmap for \"${css}\"`);\n    return;\n  }\n  glyphMap[icon] = mainMap[icon];\n});\n\nfs.writeFileSync(`glyphmaps/${css}`, JSON.stringify(glyphMap, null, 2), 'utf8');\n"
  },
  {
    "path": "packages/fontawesome-common/scripts/generate-fontawesome-metadata.js",
    "content": "#!/usr/bin/env node\n\n// TODO: Rewrite this script in TypeScript\n\nconst fs = require('node:fs'); // eslint-disable-line @typescript-eslint/no-require-imports\nconst yargs = require('yargs'); // eslint-disable-line @typescript-eslint/no-require-imports,import/no-extraneous-dependencies\n\nconst { argv } = yargs\n  .usage('')\n  .option('path', {\n    alias: 'p',\n    string: true,\n  })\n  .option('output', {\n    alias: 'o',\n    string: true,\n  })\n  .demandOption('path')\n  .demandOption('output');\n\nconst path = `${argv.path}/svgs/`;\n\nconst mapFamily = (family) => {\n  switch (family) {\n    case 'brands':\n      return 'brand';\n    case 'sharp-thin':\n      return 'sharpThin';\n    case 'sharp-light':\n      return 'sharpLight';\n    case 'sharp-regular':\n      return 'sharp';\n    case 'sharp-solid':\n      return 'sharpSolid';\n    default:\n      return family;\n  }\n};\n\nconst generatedJSON = {};\nfs.readdirSync(path)\n  .filter((file) => fs.statSync(path + file).isDirectory())\n  .forEach((file) => {\n    const icons = fs.readdirSync(path + file);\n    const name = mapFamily(file);\n\n    generatedJSON[name] = icons.map((icon) => icon.split('.')[0]);\n  });\n\nfs.writeFileSync(argv.output, `${JSON.stringify(generatedJSON, null, 2)}\\r\\n`, 'utf8');\n\nconst glyphMaps = {};\nconst iconTypes = Object.keys(generatedJSON);\nconst mainMapFilename = argv.output.replace('_meta', '');\nconst mainMap = JSON.parse(fs.readFileSync(mainMapFilename, 'utf8'));\n\niconTypes.forEach((iconType) => {\n  const glyphs = generatedJSON[iconType];\n  glyphMaps[iconType] = {};\n  glyphs.forEach((glyph) => {\n    glyphMaps[iconType][glyph] = mainMap[glyph];\n  });\n\n  fs.writeFileSync(argv.output.replace('_meta', `_${iconType}`), JSON.stringify(glyphMaps[iconType]), 'utf8');\n});\n"
  },
  {
    "path": "packages/fontawesome-free-brands/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontawesome-free-brands\",\n    \"upstreamFont\": \"@fortawesome/fontawesome-free\",\n    \"className\": \"FontAwesomeFreeBrands\",\n    \"postScriptName\": \"FontAwesome7Brands-Regular\",\n    \"fontFileName\": \"fa-brands-400\",\n    \"buildSteps\": {\n      \"glyphmap\": {\n        \"location\": \"../../node_modules/@fortawesome/fontawesome-free/css/brands.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fa-\"\n      },\n      \"copyFont\": {\n        \"location\": \"../../node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2\",\n        \"cleanup\": true\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"0.1.0\",\n        \"upstream\": \"7.1.0\"\n      },\n      {\n        \"rnvi\": \"0.1.1\",\n        \"upstream\": \"7.2.0\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-free-brands/CHANGELOG.md",
    "content": "## 0.2.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 0.1.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 0.1.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🩹 Fixes\n\n- upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 0.1.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 0.1.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontawesome-free-brands/README.md",
    "content": "# React Native Vector Icons - Fontawesome Free Brands\n\nFontawesome Free Brands font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/fontawesome-free-brands\n```\n\n## Usage\n\n```jsx\nimport { FontAwesomeFreeBrands } from '@react-native-vector-icons/fontawesome-free-brands';\n\n// ...\n\n<FontAwesomeFreeBrands name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 0.1.0 | 7.1.0 |\n| &gt; 0.1.1 | 7.2.0 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/fontawesome-free-brands/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.fontawesome_free_brands\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFontAwesomeFreeBrands\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.fontawesome_free_brands\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-fontawesome-free-brands\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-free-brands/fonts\"\n  eachFile { println \"(RNVI:fontawesome-free-brands) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n"
  },
  {
    "path": "packages/fontawesome-free-brands/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.fontawesome_free_brands\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-free-brands/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-free-brands/android/src/main/java/VectorIconsFontAwesomeFreeBrandsPackage.kt",
    "content": "package com.reactnativevectoricons.fontawesome_free_brands\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFontAwesomeFreeBrandsPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/fontawesome-free-brands/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/fontawesome-free-brands/glyphmaps/FontAwesomeFreeBrands.json",
    "content": "{\n  \"firefox-browser\": 57351,\n  \"ideal\": 57363,\n  \"microblog\": 57370,\n  \"square-pied-piper\": 57374,\n  \"pied-piper-square\": 57374,\n  \"unity\": 57417,\n  \"dailymotion\": 57426,\n  \"square-instagram\": 57429,\n  \"instagram-square\": 57429,\n  \"mixer\": 57430,\n  \"shopify\": 57431,\n  \"deezer\": 57463,\n  \"edge-legacy\": 57464,\n  \"google-pay\": 57465,\n  \"rust\": 57466,\n  \"tiktok\": 57467,\n  \"unsplash\": 57468,\n  \"cloudflare\": 57469,\n  \"guilded\": 57470,\n  \"hive\": 57471,\n  \"42-group\": 57472,\n  \"innosoft\": 57472,\n  \"instalod\": 57473,\n  \"octopus-deploy\": 57474,\n  \"perbyte\": 57475,\n  \"uncharted\": 57476,\n  \"watchman-monitoring\": 57479,\n  \"wodu\": 57480,\n  \"wirsindhandwerk\": 58064,\n  \"wsh\": 58064,\n  \"bots\": 58176,\n  \"cmplid\": 58208,\n  \"bilibili\": 58329,\n  \"golang\": 58383,\n  \"pix\": 58426,\n  \"sitrox\": 58442,\n  \"hashnode\": 58521,\n  \"meta\": 58523,\n  \"padlet\": 58528,\n  \"nfc-directional\": 58672,\n  \"nfc-symbol\": 58673,\n  \"screenpal\": 58736,\n  \"space-awesome\": 58796,\n  \"square-font-awesome\": 58797,\n  \"square-gitlab\": 58798,\n  \"gitlab-square\": 58798,\n  \"odysee\": 58822,\n  \"stubber\": 58823,\n  \"debian\": 58891,\n  \"shoelace\": 58892,\n  \"threads\": 58904,\n  \"square-threads\": 58905,\n  \"square-x-twitter\": 58906,\n  \"x-twitter\": 58907,\n  \"opensuse\": 58923,\n  \"letterboxd\": 58925,\n  \"square-letterboxd\": 58926,\n  \"mintbit\": 58927,\n  \"google-scholar\": 58939,\n  \"brave\": 58940,\n  \"brave-reverse\": 58941,\n  \"pixiv\": 58944,\n  \"upwork\": 58945,\n  \"webflow\": 58972,\n  \"signal-messenger\": 58979,\n  \"bluesky\": 58993,\n  \"jxl\": 59003,\n  \"square-upwork\": 59004,\n  \"web-awesome\": 59010,\n  \"square-web-awesome\": 59011,\n  \"square-web-awesome-stroke\": 59012,\n  \"dart-lang\": 59027,\n  \"flutter\": 59028,\n  \"files-pinwheel\": 59039,\n  \"css\": 59042,\n  \"square-bluesky\": 59043,\n  \"openai\": 59343,\n  \"square-linkedin\": 59344,\n  \"cash-app\": 59348,\n  \"disqus\": 59349,\n  \"eleventy\": 59350,\n  \"11ty\": 59350,\n  \"kakao-talk\": 59351,\n  \"linktree\": 59352,\n  \"notion\": 59353,\n  \"pandora\": 59354,\n  \"pixelfed\": 59355,\n  \"tidal\": 59356,\n  \"vsco\": 59357,\n  \"w3c\": 59358,\n  \"lumon\": 59362,\n  \"lumon-drop\": 59363,\n  \"square-figma\": 59364,\n  \"tex\": 59391,\n  \"duolingo\": 59410,\n  \"square-twitter\": 61569,\n  \"twitter-square\": 61569,\n  \"square-facebook\": 61570,\n  \"facebook-square\": 61570,\n  \"linkedin\": 61580,\n  \"square-github\": 61586,\n  \"github-square\": 61586,\n  \"twitter\": 61593,\n  \"facebook\": 61594,\n  \"github\": 61595,\n  \"pinterest\": 61650,\n  \"square-pinterest\": 61651,\n  \"pinterest-square\": 61651,\n  \"square-google-plus\": 61652,\n  \"google-plus-square\": 61652,\n  \"google-plus-g\": 61653,\n  \"linkedin-in\": 61665,\n  \"github-alt\": 61715,\n  \"maxcdn\": 61750,\n  \"html5\": 61755,\n  \"css3\": 61756,\n  \"btc\": 61786,\n  \"youtube\": 61799,\n  \"xing\": 61800,\n  \"square-xing\": 61801,\n  \"xing-square\": 61801,\n  \"dropbox\": 61803,\n  \"stack-overflow\": 61804,\n  \"instagram\": 61805,\n  \"flickr\": 61806,\n  \"adn\": 61808,\n  \"bitbucket\": 61809,\n  \"tumblr\": 61811,\n  \"square-tumblr\": 61812,\n  \"tumblr-square\": 61812,\n  \"apple\": 61817,\n  \"windows\": 61818,\n  \"android\": 61819,\n  \"linux\": 61820,\n  \"dribbble\": 61821,\n  \"skype\": 61822,\n  \"foursquare\": 61824,\n  \"trello\": 61825,\n  \"gratipay\": 61828,\n  \"vk\": 61833,\n  \"weibo\": 61834,\n  \"renren\": 61835,\n  \"pagelines\": 61836,\n  \"stack-exchange\": 61837,\n  \"square-vimeo\": 61844,\n  \"vimeo-square\": 61844,\n  \"slack\": 61848,\n  \"slack-hash\": 61848,\n  \"wordpress\": 61850,\n  \"openid\": 61851,\n  \"yahoo\": 61854,\n  \"google\": 61856,\n  \"reddit\": 61857,\n  \"square-reddit\": 61858,\n  \"reddit-square\": 61858,\n  \"stumbleupon-circle\": 61859,\n  \"stumbleupon\": 61860,\n  \"delicious\": 61861,\n  \"digg\": 61862,\n  \"pied-piper-pp\": 61863,\n  \"pied-piper-alt\": 61864,\n  \"drupal\": 61865,\n  \"joomla\": 61866,\n  \"behance\": 61876,\n  \"square-behance\": 61877,\n  \"behance-square\": 61877,\n  \"steam\": 61878,\n  \"square-steam\": 61879,\n  \"steam-square\": 61879,\n  \"spotify\": 61884,\n  \"deviantart\": 61885,\n  \"soundcloud\": 61886,\n  \"vine\": 61898,\n  \"codepen\": 61899,\n  \"jsfiddle\": 61900,\n  \"rebel\": 61904,\n  \"empire\": 61905,\n  \"square-git\": 61906,\n  \"git-square\": 61906,\n  \"git\": 61907,\n  \"hacker-news\": 61908,\n  \"tencent-weibo\": 61909,\n  \"qq\": 61910,\n  \"weixin\": 61911,\n  \"slideshare\": 61927,\n  \"twitch\": 61928,\n  \"yelp\": 61929,\n  \"paypal\": 61933,\n  \"google-wallet\": 61934,\n  \"cc-visa\": 61936,\n  \"cc-mastercard\": 61937,\n  \"cc-discover\": 61938,\n  \"cc-amex\": 61939,\n  \"cc-paypal\": 61940,\n  \"cc-stripe\": 61941,\n  \"lastfm\": 61954,\n  \"square-lastfm\": 61955,\n  \"lastfm-square\": 61955,\n  \"ioxhost\": 61960,\n  \"angellist\": 61961,\n  \"buysellads\": 61965,\n  \"connectdevelop\": 61966,\n  \"dashcube\": 61968,\n  \"forumbee\": 61969,\n  \"leanpub\": 61970,\n  \"sellsy\": 61971,\n  \"shirtsinbulk\": 61972,\n  \"simplybuilt\": 61973,\n  \"skyatlas\": 61974,\n  \"pinterest-p\": 62001,\n  \"whatsapp\": 62002,\n  \"viacoin\": 62007,\n  \"medium\": 62010,\n  \"medium-m\": 62010,\n  \"y-combinator\": 62011,\n  \"optin-monster\": 62012,\n  \"opencart\": 62013,\n  \"expeditedssl\": 62014,\n  \"cc-jcb\": 62027,\n  \"cc-diners-club\": 62028,\n  \"creative-commons\": 62046,\n  \"gg\": 62048,\n  \"gg-circle\": 62049,\n  \"odnoklassniki\": 62051,\n  \"square-odnoklassniki\": 62052,\n  \"odnoklassniki-square\": 62052,\n  \"get-pocket\": 62053,\n  \"wikipedia-w\": 62054,\n  \"safari\": 62055,\n  \"chrome\": 62056,\n  \"firefox\": 62057,\n  \"opera\": 62058,\n  \"internet-explorer\": 62059,\n  \"contao\": 62061,\n  \"500px\": 62062,\n  \"amazon\": 62064,\n  \"houzz\": 62076,\n  \"vimeo-v\": 62077,\n  \"black-tie\": 62078,\n  \"fonticons\": 62080,\n  \"reddit-alien\": 62081,\n  \"edge\": 62082,\n  \"codiepie\": 62084,\n  \"modx\": 62085,\n  \"fort-awesome\": 62086,\n  \"usb\": 62087,\n  \"product-hunt\": 62088,\n  \"mixcloud\": 62089,\n  \"scribd\": 62090,\n  \"bluetooth\": 62099,\n  \"bluetooth-b\": 62100,\n  \"gitlab\": 62102,\n  \"wpbeginner\": 62103,\n  \"wpforms\": 62104,\n  \"envira\": 62105,\n  \"glide\": 62117,\n  \"glide-g\": 62118,\n  \"viadeo\": 62121,\n  \"square-viadeo\": 62122,\n  \"viadeo-square\": 62122,\n  \"snapchat\": 62123,\n  \"snapchat-ghost\": 62123,\n  \"square-snapchat\": 62125,\n  \"snapchat-square\": 62125,\n  \"pied-piper\": 62126,\n  \"first-order\": 62128,\n  \"yoast\": 62129,\n  \"themeisle\": 62130,\n  \"google-plus\": 62131,\n  \"font-awesome\": 62132,\n  \"font-awesome-flag\": 62132,\n  \"font-awesome-logo-full\": 62132,\n  \"linode\": 62136,\n  \"quora\": 62148,\n  \"free-code-camp\": 62149,\n  \"telegram\": 62150,\n  \"telegram-plane\": 62150,\n  \"bandcamp\": 62165,\n  \"grav\": 62166,\n  \"etsy\": 62167,\n  \"imdb\": 62168,\n  \"ravelry\": 62169,\n  \"sellcast\": 62170,\n  \"superpowers\": 62173,\n  \"wpexplorer\": 62174,\n  \"meetup\": 62176,\n  \"square-font-awesome-stroke\": 62300,\n  \"font-awesome-alt\": 62300,\n  \"accessible-icon\": 62312,\n  \"accusoft\": 62313,\n  \"adversal\": 62314,\n  \"affiliatetheme\": 62315,\n  \"algolia\": 62316,\n  \"amilia\": 62317,\n  \"angrycreative\": 62318,\n  \"app-store\": 62319,\n  \"app-store-ios\": 62320,\n  \"apper\": 62321,\n  \"asymmetrik\": 62322,\n  \"audible\": 62323,\n  \"avianex\": 62324,\n  \"aws\": 62325,\n  \"bimobject\": 62328,\n  \"bitcoin\": 62329,\n  \"bity\": 62330,\n  \"blackberry\": 62331,\n  \"blogger\": 62332,\n  \"blogger-b\": 62333,\n  \"buromobelexperte\": 62335,\n  \"centercode\": 62336,\n  \"cloudscale\": 62339,\n  \"cloudsmith\": 62340,\n  \"cloudversify\": 62341,\n  \"cpanel\": 62344,\n  \"css3-alt\": 62347,\n  \"cuttlefish\": 62348,\n  \"d-and-d\": 62349,\n  \"deploydog\": 62350,\n  \"deskpro\": 62351,\n  \"digital-ocean\": 62353,\n  \"discord\": 62354,\n  \"discourse\": 62355,\n  \"dochub\": 62356,\n  \"docker\": 62357,\n  \"draft2digital\": 62358,\n  \"square-dribbble\": 62359,\n  \"dribbble-square\": 62359,\n  \"dyalog\": 62361,\n  \"earlybirds\": 62362,\n  \"erlang\": 62365,\n  \"facebook-f\": 62366,\n  \"facebook-messenger\": 62367,\n  \"firstdraft\": 62369,\n  \"fonticons-fi\": 62370,\n  \"fort-awesome-alt\": 62371,\n  \"freebsd\": 62372,\n  \"gitkraken\": 62374,\n  \"gofore\": 62375,\n  \"goodreads\": 62376,\n  \"goodreads-g\": 62377,\n  \"google-drive\": 62378,\n  \"google-play\": 62379,\n  \"gripfire\": 62380,\n  \"grunt\": 62381,\n  \"gulp\": 62382,\n  \"square-hacker-news\": 62383,\n  \"hacker-news-square\": 62383,\n  \"hire-a-helper\": 62384,\n  \"hotjar\": 62385,\n  \"hubspot\": 62386,\n  \"itunes\": 62388,\n  \"itunes-note\": 62389,\n  \"jenkins\": 62390,\n  \"joget\": 62391,\n  \"js\": 62392,\n  \"square-js\": 62393,\n  \"js-square\": 62393,\n  \"keycdn\": 62394,\n  \"kickstarter\": 62395,\n  \"square-kickstarter\": 62395,\n  \"kickstarter-k\": 62396,\n  \"laravel\": 62397,\n  \"line\": 62400,\n  \"lyft\": 62403,\n  \"magento\": 62404,\n  \"medapps\": 62406,\n  \"medrt\": 62408,\n  \"microsoft\": 62410,\n  \"mix\": 62411,\n  \"mizuni\": 62412,\n  \"monero\": 62416,\n  \"napster\": 62418,\n  \"node-js\": 62419,\n  \"npm\": 62420,\n  \"ns8\": 62421,\n  \"nutritionix\": 62422,\n  \"page4\": 62423,\n  \"palfed\": 62424,\n  \"patreon\": 62425,\n  \"periscope\": 62426,\n  \"phabricator\": 62427,\n  \"phoenix-framework\": 62428,\n  \"playstation\": 62431,\n  \"pushed\": 62433,\n  \"python\": 62434,\n  \"red-river\": 62435,\n  \"wpressr\": 62436,\n  \"rendact\": 62436,\n  \"replyd\": 62438,\n  \"resolving\": 62439,\n  \"rocketchat\": 62440,\n  \"rockrms\": 62441,\n  \"schlix\": 62442,\n  \"searchengin\": 62443,\n  \"servicestack\": 62444,\n  \"sistrix\": 62446,\n  \"speakap\": 62451,\n  \"staylinked\": 62453,\n  \"steam-symbol\": 62454,\n  \"sticker-mule\": 62455,\n  \"studiovinari\": 62456,\n  \"supple\": 62457,\n  \"uber\": 62466,\n  \"uikit\": 62467,\n  \"uniregistry\": 62468,\n  \"untappd\": 62469,\n  \"ussunnah\": 62471,\n  \"vaadin\": 62472,\n  \"viber\": 62473,\n  \"vimeo\": 62474,\n  \"vnv\": 62475,\n  \"square-whatsapp\": 62476,\n  \"whatsapp-square\": 62476,\n  \"whmcs\": 62477,\n  \"wordpress-simple\": 62481,\n  \"xbox\": 62482,\n  \"yandex\": 62483,\n  \"yandex-international\": 62484,\n  \"apple-pay\": 62485,\n  \"cc-apple-pay\": 62486,\n  \"fly\": 62487,\n  \"node\": 62489,\n  \"osi\": 62490,\n  \"react\": 62491,\n  \"autoprefixer\": 62492,\n  \"less\": 62493,\n  \"sass\": 62494,\n  \"vuejs\": 62495,\n  \"angular\": 62496,\n  \"aviato\": 62497,\n  \"ember\": 62499,\n  \"gitter\": 62502,\n  \"hooli\": 62503,\n  \"strava\": 62504,\n  \"stripe\": 62505,\n  \"stripe-s\": 62506,\n  \"typo3\": 62507,\n  \"amazon-pay\": 62508,\n  \"cc-amazon-pay\": 62509,\n  \"ethereum\": 62510,\n  \"korvue\": 62511,\n  \"elementor\": 62512,\n  \"square-youtube\": 62513,\n  \"youtube-square\": 62513,\n  \"flipboard\": 62541,\n  \"hips\": 62546,\n  \"php\": 62551,\n  \"quinscape\": 62553,\n  \"readme\": 62677,\n  \"java\": 62692,\n  \"pied-piper-hat\": 62693,\n  \"creative-commons-by\": 62695,\n  \"creative-commons-nc\": 62696,\n  \"creative-commons-nc-eu\": 62697,\n  \"creative-commons-nc-jp\": 62698,\n  \"creative-commons-nd\": 62699,\n  \"creative-commons-pd\": 62700,\n  \"creative-commons-pd-alt\": 62701,\n  \"creative-commons-remix\": 62702,\n  \"creative-commons-sa\": 62703,\n  \"creative-commons-sampling\": 62704,\n  \"creative-commons-sampling-plus\": 62705,\n  \"creative-commons-share\": 62706,\n  \"creative-commons-zero\": 62707,\n  \"ebay\": 62708,\n  \"keybase\": 62709,\n  \"mastodon\": 62710,\n  \"r-project\": 62711,\n  \"researchgate\": 62712,\n  \"teamspeak\": 62713,\n  \"first-order-alt\": 62730,\n  \"fulcrum\": 62731,\n  \"galactic-republic\": 62732,\n  \"galactic-senate\": 62733,\n  \"jedi-order\": 62734,\n  \"mandalorian\": 62735,\n  \"old-republic\": 62736,\n  \"phoenix-squadron\": 62737,\n  \"sith\": 62738,\n  \"trade-federation\": 62739,\n  \"wolf-pack-battalion\": 62740,\n  \"hornbill\": 62866,\n  \"mailchimp\": 62878,\n  \"megaport\": 62883,\n  \"nimblr\": 62888,\n  \"rev\": 62898,\n  \"shopware\": 62901,\n  \"squarespace\": 62910,\n  \"themeco\": 62918,\n  \"weebly\": 62924,\n  \"wix\": 62927,\n  \"ello\": 62961,\n  \"hackerrank\": 62967,\n  \"kaggle\": 62970,\n  \"markdown\": 62991,\n  \"neos\": 62994,\n  \"zhihu\": 63039,\n  \"alipay\": 63042,\n  \"the-red-yeti\": 63133,\n  \"critical-role\": 63177,\n  \"d-and-d-beyond\": 63178,\n  \"dev\": 63180,\n  \"fantasy-flight-games\": 63196,\n  \"wizards-of-the-coast\": 63280,\n  \"think-peaks\": 63281,\n  \"reacteurope\": 63325,\n  \"artstation\": 63354,\n  \"atlassian\": 63355,\n  \"canadian-maple-leaf\": 63365,\n  \"centos\": 63369,\n  \"confluence\": 63373,\n  \"dhl\": 63376,\n  \"diaspora\": 63377,\n  \"fedex\": 63383,\n  \"fedora\": 63384,\n  \"figma\": 63385,\n  \"intercom\": 63407,\n  \"invision\": 63408,\n  \"jira\": 63409,\n  \"mendeley\": 63411,\n  \"raspberry-pi\": 63419,\n  \"redhat\": 63420,\n  \"sketch\": 63430,\n  \"sourcetree\": 63443,\n  \"suse\": 63446,\n  \"ubuntu\": 63455,\n  \"ups\": 63456,\n  \"usps\": 63457,\n  \"yarn\": 63459,\n  \"airbnb\": 63540,\n  \"battle-net\": 63541,\n  \"bootstrap\": 63542,\n  \"buffer\": 63543,\n  \"chromecast\": 63544,\n  \"evernote\": 63545,\n  \"itch-io\": 63546,\n  \"salesforce\": 63547,\n  \"speaker-deck\": 63548,\n  \"symfony\": 63549,\n  \"waze\": 63551,\n  \"yammer\": 63552,\n  \"git-alt\": 63553,\n  \"stackpath\": 63554,\n  \"cotton-bureau\": 63646,\n  \"buy-n-large\": 63654,\n  \"mdb\": 63690,\n  \"orcid\": 63698,\n  \"swift\": 63713,\n  \"umbraco\": 63720\n}"
  },
  {
    "path": "packages/fontawesome-free-brands/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontawesome-free-brands\",\n  \"version\": \"0.2.0\",\n  \"description\": \"Fontawesome Free Brands font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\",\n    \"./fonts/*.ttf\": \"./fonts/*.ttf\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"fontawesome-free-brands\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/fontawesome-free-brands\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\",\n    \"@fortawesome/fontawesome-free\": \"7.2.0\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-free-brands/react-native-vector-icons-fontawesome-free-brands.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-fontawesome-free-brands'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\nend\n"
  },
  {
    "path": "packages/fontawesome-free-brands/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeFreeBrands icon set component.\n * Usage: <FontAwesomeFreeBrands name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeFreeBrands.json';\n\nexport const FontAwesomeFreeBrands = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Brands-Regular',\n  fontFileName: 'fa-brands-400.ttf',\n  fontSource: require('../fonts/fa-brands-400.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require\n});\n\nexport type FontAwesomeFreeBrandsIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeFreeBrands;\n"
  },
  {
    "path": "packages/fontawesome-free-brands/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeFreeBrands icon set component.\n * Usage: <FontAwesomeFreeBrands name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeFreeBrands.json';\n\nexport const FontAwesomeFreeBrands = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Brands-Regular',\n  fontFileName: 'fa-brands-400.ttf',\n});\n\nexport type FontAwesomeFreeBrandsIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeFreeBrands;\n"
  },
  {
    "path": "packages/fontawesome-free-brands/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/fontawesome-free-brands/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-free-regular/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontawesome-free-regular\",\n    \"upstreamFont\": \"@fortawesome/fontawesome-free\",\n    \"className\": \"FontAwesomeFreeRegular\",\n    \"postScriptName\": \"FontAwesome7Free-Regular\",\n    \"fontFileName\": \"fa-regular-400\",\n    \"buildSteps\": {\n      \"glyphmap\": {\n        \"location\": \"../../node_modules/@fortawesome/fontawesome-free/css/all.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fa-\"\n      },\n      \"copyFont\": {\n        \"location\": \"../../node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2\",\n        \"cleanup\": true\n      },\n      \"postScript\": {\n        \"script\": \"../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeFreeRegular.json ../../node_modules/@fortawesome/fontawesome-free/svgs/regular\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"0.1.0\",\n        \"upstream\": \"7.1.0\"\n      },\n      {\n        \"rnvi\": \"0.1.1\",\n        \"upstream\": \"7.2.0\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-free-regular/CHANGELOG.md",
    "content": "## 0.2.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 0.1.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 0.1.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🩹 Fixes\n\n- upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 0.1.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 0.1.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontawesome-free-regular/README.md",
    "content": "# React Native Vector Icons - Fontawesome Free Regular\n\nFontawesome Free Regular font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/fontawesome-free-regular\n```\n\n## Usage\n\n```jsx\nimport { FontAwesomeFreeRegular } from '@react-native-vector-icons/fontawesome-free-regular';\n\n// ...\n\n<FontAwesomeFreeRegular name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 0.1.0 | 7.1.0 |\n| &gt; 0.1.1 | 7.2.0 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/fontawesome-free-regular/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.fontawesome_free_regular\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFontAwesomeFreeRegular\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.fontawesome_free_regular\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-fontawesome-free-regular\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-free-regular/fonts\"\n  eachFile { println \"(RNVI:fontawesome-free-regular) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n"
  },
  {
    "path": "packages/fontawesome-free-regular/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.fontawesome_free_regular\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-free-regular/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-free-regular/android/src/main/java/VectorIconsFontAwesomeFreeRegularPackage.kt",
    "content": "package com.reactnativevectoricons.fontawesome_free_regular\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFontAwesomeFreeRegularPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/fontawesome-free-regular/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/fontawesome-free-regular/glyphmaps/FontAwesomeFreeRegular.json",
    "content": "{\n  \"address-book\": 62137,\n  \"address-card\": 62139,\n  \"alarm-clock\": 62286,\n  \"angry\": 62806,\n  \"arrow-alt-circle-down\": 62296,\n  \"arrow-alt-circle-left\": 62297,\n  \"arrow-alt-circle-right\": 62298,\n  \"arrow-alt-circle-up\": 62299,\n  \"bar-chart\": 61568,\n  \"bell-slash\": 61942,\n  \"bell\": 61683,\n  \"bookmark\": 61486,\n  \"building\": 61869,\n  \"calendar-alt\": 61555,\n  \"calendar-check\": 62068,\n  \"calendar-days\": 61555,\n  \"calendar-minus\": 62066,\n  \"calendar-plus\": 62065,\n  \"calendar-times\": 62067,\n  \"calendar-xmark\": 62067,\n  \"calendar\": 61747,\n  \"camera-alt\": 61488,\n  \"camera\": 61488,\n  \"caret-square-down\": 61776,\n  \"caret-square-left\": 61841,\n  \"caret-square-right\": 61778,\n  \"caret-square-up\": 61777,\n  \"chart-bar\": 61568,\n  \"check-circle\": 61528,\n  \"check-square\": 61770,\n  \"chess-bishop\": 62522,\n  \"chess-king\": 62527,\n  \"chess-knight\": 62529,\n  \"chess-pawn\": 62531,\n  \"chess-queen\": 62533,\n  \"chess-rook\": 62535,\n  \"circle-check\": 61528,\n  \"circle-dot\": 61842,\n  \"circle-down\": 62296,\n  \"circle-left\": 62297,\n  \"circle-pause\": 62091,\n  \"circle-play\": 61764,\n  \"circle-question\": 61529,\n  \"circle-right\": 62298,\n  \"circle-stop\": 62093,\n  \"circle-up\": 62299,\n  \"circle-user\": 62141,\n  \"circle-xmark\": 61527,\n  \"circle\": 61713,\n  \"clipboard\": 62248,\n  \"clock-four\": 61463,\n  \"clock\": 61463,\n  \"clone\": 62029,\n  \"closed-captioning\": 61962,\n  \"cloud\": 61634,\n  \"comment-alt\": 62074,\n  \"comment-dots\": 62637,\n  \"comment\": 61557,\n  \"commenting\": 62637,\n  \"comments\": 61574,\n  \"compass\": 61774,\n  \"contact-book\": 62137,\n  \"contact-card\": 62139,\n  \"copy\": 61637,\n  \"copyright\": 61945,\n  \"credit-card-alt\": 61597,\n  \"credit-card\": 61597,\n  \"dizzy\": 62823,\n  \"dot-circle\": 61842,\n  \"drivers-license\": 62146,\n  \"edit\": 61508,\n  \"envelope-open\": 62134,\n  \"envelope\": 61664,\n  \"eye-slash\": 61552,\n  \"eye\": 61550,\n  \"face-angry\": 62806,\n  \"face-dizzy\": 62823,\n  \"face-flushed\": 62841,\n  \"face-frown-open\": 62842,\n  \"face-frown\": 61721,\n  \"face-grimace\": 62847,\n  \"face-grin-beam-sweat\": 62851,\n  \"face-grin-beam\": 62850,\n  \"face-grin-hearts\": 62852,\n  \"face-grin-squint-tears\": 62854,\n  \"face-grin-squint\": 62853,\n  \"face-grin-stars\": 62855,\n  \"face-grin-tears\": 62856,\n  \"face-grin-tongue-squint\": 62858,\n  \"face-grin-tongue-wink\": 62859,\n  \"face-grin-tongue\": 62857,\n  \"face-grin-wide\": 62849,\n  \"face-grin-wink\": 62860,\n  \"face-grin\": 62848,\n  \"face-kiss-beam\": 62871,\n  \"face-kiss-wink-heart\": 62872,\n  \"face-kiss\": 62870,\n  \"face-laugh-beam\": 62874,\n  \"face-laugh-squint\": 62875,\n  \"face-laugh-wink\": 62876,\n  \"face-laugh\": 62873,\n  \"face-meh-blank\": 62884,\n  \"face-meh\": 61722,\n  \"face-rolling-eyes\": 62885,\n  \"face-sad-cry\": 62899,\n  \"face-sad-tear\": 62900,\n  \"face-smile-beam\": 62904,\n  \"face-smile-wink\": 62682,\n  \"face-smile\": 61720,\n  \"face-surprise\": 62914,\n  \"face-tired\": 62920,\n  \"file-alt\": 61788,\n  \"file-archive\": 61894,\n  \"file-audio\": 61895,\n  \"file-clipboard\": 61674,\n  \"file-code\": 61897,\n  \"file-excel\": 61891,\n  \"file-image\": 61893,\n  \"file-lines\": 61788,\n  \"file-pdf\": 61889,\n  \"file-powerpoint\": 61892,\n  \"file-text\": 61788,\n  \"file-video\": 61896,\n  \"file-word\": 61890,\n  \"file-zipper\": 61894,\n  \"file\": 61787,\n  \"flag\": 61476,\n  \"floppy-disk\": 61639,\n  \"flushed\": 62841,\n  \"folder-blank\": 61563,\n  \"folder-closed\": 57733,\n  \"folder-open\": 61564,\n  \"folder\": 61563,\n  \"font-awesome-flag\": 62132,\n  \"font-awesome-logo-full\": 62132,\n  \"font-awesome\": 62132,\n  \"frown-open\": 62842,\n  \"frown\": 61721,\n  \"futbol-ball\": 61923,\n  \"futbol\": 61923,\n  \"gem\": 62373,\n  \"grimace\": 62847,\n  \"grin-alt\": 62849,\n  \"grin-beam-sweat\": 62851,\n  \"grin-beam\": 62850,\n  \"grin-hearts\": 62852,\n  \"grin-squint-tears\": 62854,\n  \"grin-squint\": 62853,\n  \"grin-stars\": 62855,\n  \"grin-tears\": 62856,\n  \"grin-tongue-squint\": 62858,\n  \"grin-tongue-wink\": 62859,\n  \"grin-tongue\": 62857,\n  \"grin-wink\": 62860,\n  \"grin\": 62848,\n  \"hand-back-fist\": 62037,\n  \"hand-lizard\": 62040,\n  \"hand-paper\": 62038,\n  \"hand-peace\": 62043,\n  \"hand-point-down\": 61607,\n  \"hand-point-left\": 61605,\n  \"hand-point-right\": 61604,\n  \"hand-point-up\": 61606,\n  \"hand-pointer\": 62042,\n  \"hand-rock\": 62037,\n  \"hand-scissors\": 62039,\n  \"hand-spock\": 62041,\n  \"hand\": 62038,\n  \"handshake-alt\": 62133,\n  \"handshake-simple\": 62133,\n  \"handshake\": 62133,\n  \"hard-drive\": 61600,\n  \"hdd\": 61600,\n  \"headphones-alt\": 61477,\n  \"headphones-simple\": 61477,\n  \"headphones\": 61477,\n  \"heart\": 61444,\n  \"home-alt\": 61461,\n  \"home-lg-alt\": 61461,\n  \"home\": 61461,\n  \"hospital-alt\": 61688,\n  \"hospital-wide\": 61688,\n  \"hospital\": 61688,\n  \"hourglass-2\": 62034,\n  \"hourglass-empty\": 62036,\n  \"hourglass-half\": 62034,\n  \"hourglass\": 62036,\n  \"house\": 61461,\n  \"id-badge\": 62145,\n  \"id-card\": 62146,\n  \"image\": 61502,\n  \"images\": 62210,\n  \"keyboard\": 61724,\n  \"kiss-beam\": 62871,\n  \"kiss-wink-heart\": 62872,\n  \"kiss\": 62870,\n  \"laugh-beam\": 62874,\n  \"laugh-squint\": 62875,\n  \"laugh-wink\": 62876,\n  \"laugh\": 62873,\n  \"lemon\": 61588,\n  \"life-ring\": 61901,\n  \"lightbulb\": 61675,\n  \"list-alt\": 61474,\n  \"map\": 62073,\n  \"meh-blank\": 62884,\n  \"meh-rolling-eyes\": 62885,\n  \"meh\": 61722,\n  \"message\": 62074,\n  \"minus-square\": 61766,\n  \"money-bill-1\": 62417,\n  \"money-bill-alt\": 62417,\n  \"moon\": 61830,\n  \"newspaper\": 61930,\n  \"note-sticky\": 62025,\n  \"object-group\": 62023,\n  \"object-ungroup\": 62024,\n  \"paper-plane\": 61912,\n  \"paste\": 61674,\n  \"pause-circle\": 62091,\n  \"pen-to-square\": 61508,\n  \"play-circle\": 61764,\n  \"plus-square\": 61694,\n  \"question-circle\": 61529,\n  \"rectangle-list\": 61474,\n  \"rectangle-times\": 62480,\n  \"rectangle-xmark\": 62480,\n  \"registered\": 62045,\n  \"sad-cry\": 62899,\n  \"sad-tear\": 62900,\n  \"save\": 61639,\n  \"share-from-square\": 61773,\n  \"share-square\": 61773,\n  \"smile-beam\": 62904,\n  \"smile-wink\": 62682,\n  \"smile\": 61720,\n  \"snowflake\": 62172,\n  \"soccer-ball\": 61923,\n  \"square-caret-down\": 61776,\n  \"square-caret-left\": 61841,\n  \"square-caret-right\": 61778,\n  \"square-caret-up\": 61777,\n  \"square-check\": 61770,\n  \"square-full\": 62556,\n  \"square-minus\": 61766,\n  \"square-plus\": 61694,\n  \"square\": 61640,\n  \"star-half-alt\": 62912,\n  \"star-half-stroke\": 62912,\n  \"star-half\": 61577,\n  \"star\": 61445,\n  \"sticky-note\": 62025,\n  \"stop-circle\": 62093,\n  \"sun\": 61829,\n  \"surprise\": 62914,\n  \"thumbs-down\": 61797,\n  \"thumbs-up\": 61796,\n  \"times-circle\": 61527,\n  \"times-rectangle\": 62480,\n  \"tired\": 62920,\n  \"trash-alt\": 62189,\n  \"trash-can\": 62189,\n  \"truck\": 61649,\n  \"user-alt\": 61447,\n  \"user-circle\": 62141,\n  \"user-large\": 61447,\n  \"user\": 61447,\n  \"vcard\": 62139,\n  \"window-close\": 62480,\n  \"window-maximize\": 62160,\n  \"window-minimize\": 62161,\n  \"window-restore\": 62162,\n  \"xmark-circle\": 61527\n}"
  },
  {
    "path": "packages/fontawesome-free-regular/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontawesome-free-regular\",\n  \"version\": \"0.2.0\",\n  \"description\": \"Fontawesome Free Regular font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\",\n    \"./fonts/*.ttf\": \"./fonts/*.ttf\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"fontawesome-free-regular\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/fontawesome-free-regular\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\",\n    \"@fortawesome/fontawesome-free\": \"7.2.0\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-free-regular/react-native-vector-icons-fontawesome-free-regular.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-fontawesome-free-regular'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\nend\n"
  },
  {
    "path": "packages/fontawesome-free-regular/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeFreeRegular icon set component.\n * Usage: <FontAwesomeFreeRegular name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeFreeRegular.json';\n\nexport const FontAwesomeFreeRegular = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Free-Regular',\n  fontFileName: 'fa-regular-400.ttf',\n  fontSource: require('../fonts/fa-regular-400.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require\n});\n\nexport type FontAwesomeFreeRegularIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeFreeRegular;\n"
  },
  {
    "path": "packages/fontawesome-free-regular/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeFreeRegular icon set component.\n * Usage: <FontAwesomeFreeRegular name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeFreeRegular.json';\n\nexport const FontAwesomeFreeRegular = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Free-Regular',\n  fontFileName: 'fa-regular-400.ttf',\n});\n\nexport type FontAwesomeFreeRegularIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeFreeRegular;\n"
  },
  {
    "path": "packages/fontawesome-free-regular/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/fontawesome-free-regular/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-free-solid/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontawesome-free-solid\",\n    \"upstreamFont\": \"@fortawesome/fontawesome-free\",\n    \"className\": \"FontAwesomeFreeSolid\",\n    \"postScriptName\": \"FontAwesome7Free-Solid\",\n    \"fontFileName\": \"fa-solid-900\",\n    \"buildSteps\": {\n      \"glyphmap\": {\n        \"location\": \"../../node_modules/@fortawesome/fontawesome-free/css/all.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fa-\"\n      },\n      \"copyFont\": {\n        \"location\": \"../../node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2\",\n        \"cleanup\": true\n      },\n      \"postScript\": {\n        \"script\": \"../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeFreeSolid.json ../../node_modules/@fortawesome/fontawesome-free/svgs/solid\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"0.1.0\",\n        \"upstream\": \"7.1.0\"\n      },\n      {\n        \"rnvi\": \"0.1.1\",\n        \"upstream\": \"7.2.0\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-free-solid/CHANGELOG.md",
    "content": "## 0.2.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 0.1.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 0.1.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🩹 Fixes\n\n- upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 0.1.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 0.1.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontawesome-free-solid/README.md",
    "content": "# React Native Vector Icons - Fontawesome Free Solid\n\nFontawesome Free Solid font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/fontawesome-free-solid\n```\n\n## Usage\n\n```jsx\nimport { FontAwesomeFreeSolid } from '@react-native-vector-icons/fontawesome-free-solid';\n\n// ...\n\n<FontAwesomeFreeSolid name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 0.1.0 | 7.1.0 |\n| &gt; 0.1.1 | 7.2.0 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/fontawesome-free-solid/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.fontawesome_free_solid\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFontAwesomeFreeSolid\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.fontawesome_free_solid\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-fontawesome-free-solid\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-free-solid/fonts\"\n  eachFile { println \"(RNVI:fontawesome-free-solid) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n"
  },
  {
    "path": "packages/fontawesome-free-solid/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.fontawesome_free_solid\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-free-solid/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-free-solid/android/src/main/java/VectorIconsFontAwesomeFreeSolidPackage.kt",
    "content": "package com.reactnativevectoricons.fontawesome_free_solid\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFontAwesomeFreeSolidPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/fontawesome-free-solid/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/fontawesome-free-solid/glyphmaps/FontAwesomeFreeSolid.json",
    "content": "{\n  \"0\": 48,\n  \"1\": 49,\n  \"2\": 50,\n  \"3\": 51,\n  \"4\": 52,\n  \"5\": 53,\n  \"6\": 54,\n  \"7\": 55,\n  \"8\": 56,\n  \"9\": 57,\n  \"a\": 65,\n  \"ad\": 63041,\n  \"add\": 43,\n  \"address-book\": 62137,\n  \"address-card\": 62139,\n  \"adjust\": 61506,\n  \"air-freshener\": 62928,\n  \"alarm-clock\": 62286,\n  \"align-center\": 61495,\n  \"align-justify\": 61497,\n  \"align-left\": 61494,\n  \"align-right\": 61496,\n  \"allergies\": 62561,\n  \"ambulance\": 61689,\n  \"american-sign-language-interpreting\": 62115,\n  \"anchor-circle-check\": 58538,\n  \"anchor-circle-exclamation\": 58539,\n  \"anchor-circle-xmark\": 58540,\n  \"anchor-lock\": 58541,\n  \"anchor\": 61757,\n  \"angle-double-down\": 61699,\n  \"angle-double-left\": 61696,\n  \"angle-double-right\": 61697,\n  \"angle-double-up\": 61698,\n  \"angle-down\": 61703,\n  \"angle-left\": 61700,\n  \"angle-right\": 61701,\n  \"angle-up\": 61702,\n  \"angles-down\": 61699,\n  \"angles-left\": 61696,\n  \"angles-right\": 61697,\n  \"angles-up\": 61698,\n  \"angry\": 62806,\n  \"ankh\": 63044,\n  \"apple-alt\": 62929,\n  \"apple-whole\": 62929,\n  \"aquarius\": 59461,\n  \"archive\": 61831,\n  \"archway\": 62807,\n  \"area-chart\": 61950,\n  \"aries\": 59462,\n  \"arrow-alt-circle-down\": 62296,\n  \"arrow-alt-circle-left\": 62297,\n  \"arrow-alt-circle-right\": 62298,\n  \"arrow-alt-circle-up\": 62299,\n  \"arrow-circle-down\": 61611,\n  \"arrow-circle-left\": 61608,\n  \"arrow-circle-right\": 61609,\n  \"arrow-circle-up\": 61610,\n  \"arrow-down-1-9\": 61794,\n  \"arrow-down-9-1\": 63622,\n  \"arrow-down-a-z\": 61789,\n  \"arrow-down-long\": 61813,\n  \"arrow-down-short-wide\": 63620,\n  \"arrow-down-up-across-line\": 58543,\n  \"arrow-down-up-lock\": 58544,\n  \"arrow-down-wide-short\": 61792,\n  \"arrow-down-z-a\": 63617,\n  \"arrow-down\": 61539,\n  \"arrow-left-long\": 61815,\n  \"arrow-left-rotate\": 61666,\n  \"arrow-left\": 61536,\n  \"arrow-pointer\": 62021,\n  \"arrow-right-arrow-left\": 61676,\n  \"arrow-right-from-bracket\": 61579,\n  \"arrow-right-from-file\": 62830,\n  \"arrow-right-long\": 61816,\n  \"arrow-right-rotate\": 61470,\n  \"arrow-right-to-bracket\": 61584,\n  \"arrow-right-to-city\": 58547,\n  \"arrow-right-to-file\": 62831,\n  \"arrow-right\": 61537,\n  \"arrow-rotate-back\": 61666,\n  \"arrow-rotate-backward\": 61666,\n  \"arrow-rotate-forward\": 61470,\n  \"arrow-rotate-left\": 61666,\n  \"arrow-rotate-right\": 61470,\n  \"arrow-trend-down\": 57495,\n  \"arrow-trend-up\": 57496,\n  \"arrow-turn-down\": 61769,\n  \"arrow-turn-up\": 61768,\n  \"arrow-up-1-9\": 61795,\n  \"arrow-up-9-1\": 63623,\n  \"arrow-up-a-z\": 61790,\n  \"arrow-up-from-bracket\": 57498,\n  \"arrow-up-from-ground-water\": 58549,\n  \"arrow-up-from-water-pump\": 58550,\n  \"arrow-up-long\": 61814,\n  \"arrow-up-right-dots\": 58551,\n  \"arrow-up-right-from-square\": 61582,\n  \"arrow-up-short-wide\": 63621,\n  \"arrow-up-wide-short\": 61793,\n  \"arrow-up-z-a\": 63618,\n  \"arrow-up\": 61538,\n  \"arrows-alt-h\": 62263,\n  \"arrows-alt-v\": 62264,\n  \"arrows-alt\": 61618,\n  \"arrows-down-to-line\": 58552,\n  \"arrows-down-to-people\": 58553,\n  \"arrows-h\": 61566,\n  \"arrows-left-right-to-line\": 58554,\n  \"arrows-left-right\": 61566,\n  \"arrows-rotate\": 61473,\n  \"arrows-spin\": 58555,\n  \"arrows-split-up-and-left\": 58556,\n  \"arrows-to-circle\": 58557,\n  \"arrows-to-dot\": 58558,\n  \"arrows-to-eye\": 58559,\n  \"arrows-turn-right\": 58560,\n  \"arrows-turn-to-dots\": 58561,\n  \"arrows-up-down-left-right\": 61511,\n  \"arrows-up-down\": 61565,\n  \"arrows-up-to-line\": 58562,\n  \"arrows-v\": 61565,\n  \"arrows\": 61511,\n  \"asl-interpreting\": 62115,\n  \"assistive-listening-systems\": 62114,\n  \"asterisk\": 42,\n  \"at\": 64,\n  \"atlas\": 62808,\n  \"atom\": 62930,\n  \"audio-description\": 62110,\n  \"austral-sign\": 57513,\n  \"automobile\": 61881,\n  \"award\": 62809,\n  \"b\": 66,\n  \"baby-carriage\": 63357,\n  \"baby\": 63356,\n  \"backspace\": 62810,\n  \"backward-fast\": 61513,\n  \"backward-step\": 61512,\n  \"backward\": 61514,\n  \"bacon\": 63461,\n  \"bacteria\": 57433,\n  \"bacterium\": 57434,\n  \"bag-shopping\": 62096,\n  \"bahai\": 63078,\n  \"baht-sign\": 57516,\n  \"balance-scale-left\": 62741,\n  \"balance-scale-right\": 62742,\n  \"balance-scale\": 62030,\n  \"ban-smoking\": 62797,\n  \"ban\": 61534,\n  \"band-aid\": 62562,\n  \"bandage\": 62562,\n  \"bangladeshi-taka-sign\": 58086,\n  \"bank\": 61852,\n  \"bar-chart\": 61568,\n  \"barcode\": 61482,\n  \"bars-progress\": 63528,\n  \"bars-staggered\": 62800,\n  \"bars\": 61641,\n  \"baseball-ball\": 62515,\n  \"baseball-bat-ball\": 62514,\n  \"baseball\": 62515,\n  \"basket-shopping\": 62097,\n  \"basketball-ball\": 62516,\n  \"basketball\": 62516,\n  \"bath\": 62157,\n  \"bathtub\": 62157,\n  \"battery-0\": 62020,\n  \"battery-2\": 62019,\n  \"battery-3\": 62018,\n  \"battery-4\": 62017,\n  \"battery-5\": 62016,\n  \"battery-car\": 62943,\n  \"battery-empty\": 62020,\n  \"battery-full\": 62016,\n  \"battery-half\": 62018,\n  \"battery-quarter\": 62019,\n  \"battery-three-quarters\": 62017,\n  \"battery\": 62016,\n  \"bed-pulse\": 62599,\n  \"bed\": 62006,\n  \"beer-mug-empty\": 61692,\n  \"beer\": 61692,\n  \"bell-concierge\": 62818,\n  \"bell-slash\": 61942,\n  \"bell\": 61683,\n  \"bezier-curve\": 62811,\n  \"bible\": 63047,\n  \"bicycle\": 61958,\n  \"biking\": 63562,\n  \"binoculars\": 61925,\n  \"biohazard\": 63360,\n  \"birthday-cake\": 61949,\n  \"bitcoin-sign\": 57524,\n  \"blackboard\": 62747,\n  \"blender-phone\": 63158,\n  \"blender\": 62743,\n  \"blind\": 62109,\n  \"blog\": 63361,\n  \"bold\": 61490,\n  \"bolt-lightning\": 57527,\n  \"bolt\": 61671,\n  \"bomb\": 61922,\n  \"bone\": 62935,\n  \"bong\": 62812,\n  \"book-atlas\": 62808,\n  \"book-bible\": 63047,\n  \"book-bookmark\": 57531,\n  \"book-dead\": 63159,\n  \"book-journal-whills\": 63082,\n  \"book-medical\": 63462,\n  \"book-open-reader\": 62938,\n  \"book-open\": 62744,\n  \"book-quran\": 63111,\n  \"book-reader\": 62938,\n  \"book-skull\": 63159,\n  \"book-tanakh\": 63527,\n  \"book\": 61485,\n  \"bookmark\": 61486,\n  \"border-all\": 63564,\n  \"border-none\": 63568,\n  \"border-style\": 63571,\n  \"border-top-left\": 63571,\n  \"bore-hole\": 58563,\n  \"bottle-droplet\": 58564,\n  \"bottle-water\": 58565,\n  \"bowl-food\": 58566,\n  \"bowl-rice\": 58091,\n  \"bowling-ball\": 62518,\n  \"box-archive\": 61831,\n  \"box-open\": 62622,\n  \"box-tissue\": 57435,\n  \"box\": 62566,\n  \"boxes-alt\": 62568,\n  \"boxes-packing\": 58567,\n  \"boxes-stacked\": 62568,\n  \"boxes\": 62568,\n  \"braille\": 62113,\n  \"brain\": 62940,\n  \"brazilian-real-sign\": 58476,\n  \"bread-slice\": 63468,\n  \"bridge-circle-check\": 58569,\n  \"bridge-circle-exclamation\": 58570,\n  \"bridge-circle-xmark\": 58571,\n  \"bridge-lock\": 58572,\n  \"bridge-water\": 58574,\n  \"bridge\": 58568,\n  \"briefcase-clock\": 63050,\n  \"briefcase-medical\": 62569,\n  \"briefcase\": 61617,\n  \"broadcast-tower\": 62745,\n  \"broom-ball\": 62552,\n  \"broom\": 62746,\n  \"brush\": 62813,\n  \"bucket\": 58575,\n  \"bug-slash\": 58512,\n  \"bug\": 61832,\n  \"bugs\": 58576,\n  \"building-circle-arrow-right\": 58577,\n  \"building-circle-check\": 58578,\n  \"building-circle-exclamation\": 58579,\n  \"building-circle-xmark\": 58580,\n  \"building-columns\": 61852,\n  \"building-flag\": 58581,\n  \"building-lock\": 58582,\n  \"building-ngo\": 58583,\n  \"building-shield\": 58584,\n  \"building-un\": 58585,\n  \"building-user\": 58586,\n  \"building-wheat\": 58587,\n  \"building\": 61869,\n  \"bullhorn\": 61601,\n  \"bullseye\": 61760,\n  \"burger\": 63493,\n  \"burn\": 62570,\n  \"burst\": 58588,\n  \"bus-alt\": 62814,\n  \"bus-side\": 59421,\n  \"bus-simple\": 62814,\n  \"bus\": 61959,\n  \"business-time\": 63050,\n  \"c\": 67,\n  \"cab\": 61882,\n  \"cable-car\": 63450,\n  \"cake-candles\": 61949,\n  \"cake\": 61949,\n  \"calculator\": 61932,\n  \"calendar-alt\": 61555,\n  \"calendar-check\": 62068,\n  \"calendar-day\": 63363,\n  \"calendar-days\": 61555,\n  \"calendar-minus\": 62066,\n  \"calendar-plus\": 62065,\n  \"calendar-times\": 62067,\n  \"calendar-week\": 63364,\n  \"calendar-xmark\": 62067,\n  \"calendar\": 61747,\n  \"camera-alt\": 61488,\n  \"camera-retro\": 61571,\n  \"camera-rotate\": 57560,\n  \"camera\": 61488,\n  \"campground\": 63163,\n  \"cancel\": 61534,\n  \"cancer\": 59463,\n  \"candy-cane\": 63366,\n  \"cannabis\": 62815,\n  \"capricorn\": 59464,\n  \"capsules\": 62571,\n  \"car-alt\": 62942,\n  \"car-battery\": 62943,\n  \"car-burst\": 62945,\n  \"car-crash\": 62945,\n  \"car-on\": 58589,\n  \"car-rear\": 62942,\n  \"car-side\": 62948,\n  \"car-tunnel\": 58590,\n  \"car\": 61881,\n  \"caravan\": 63743,\n  \"caret-down\": 61655,\n  \"caret-left\": 61657,\n  \"caret-right\": 61658,\n  \"caret-square-down\": 61776,\n  \"caret-square-left\": 61841,\n  \"caret-square-right\": 61778,\n  \"caret-square-up\": 61777,\n  \"caret-up\": 61656,\n  \"carriage-baby\": 63357,\n  \"carrot\": 63367,\n  \"cart-arrow-down\": 61976,\n  \"cart-flatbed-suitcase\": 62877,\n  \"cart-flatbed\": 62580,\n  \"cart-plus\": 61975,\n  \"cart-shopping\": 61562,\n  \"cash-register\": 63368,\n  \"cat\": 63166,\n  \"cedi-sign\": 57567,\n  \"cent-sign\": 58357,\n  \"certificate\": 61603,\n  \"chain-broken\": 61735,\n  \"chain-slash\": 61735,\n  \"chain\": 61633,\n  \"chair\": 63168,\n  \"chalkboard-teacher\": 62748,\n  \"chalkboard-user\": 62748,\n  \"chalkboard\": 62747,\n  \"champagne-glasses\": 63391,\n  \"charging-station\": 62951,\n  \"chart-area\": 61950,\n  \"chart-bar\": 61568,\n  \"chart-column\": 57571,\n  \"chart-diagram\": 59029,\n  \"chart-gantt\": 57572,\n  \"chart-line\": 61953,\n  \"chart-pie\": 61952,\n  \"chart-simple\": 58483,\n  \"check-circle\": 61528,\n  \"check-double\": 62816,\n  \"check-square\": 61770,\n  \"check-to-slot\": 63346,\n  \"check\": 61452,\n  \"cheese\": 63471,\n  \"chess-bishop\": 62522,\n  \"chess-board\": 62524,\n  \"chess-king\": 62527,\n  \"chess-knight\": 62529,\n  \"chess-pawn\": 62531,\n  \"chess-queen\": 62533,\n  \"chess-rook\": 62535,\n  \"chess\": 62521,\n  \"chevron-circle-down\": 61754,\n  \"chevron-circle-left\": 61751,\n  \"chevron-circle-right\": 61752,\n  \"chevron-circle-up\": 61753,\n  \"chevron-down\": 61560,\n  \"chevron-left\": 61523,\n  \"chevron-right\": 61524,\n  \"chevron-up\": 61559,\n  \"child-combatant\": 58592,\n  \"child-dress\": 58780,\n  \"child-reaching\": 58781,\n  \"child-rifle\": 58592,\n  \"child\": 61870,\n  \"children\": 58593,\n  \"church\": 62749,\n  \"circle-arrow-down\": 61611,\n  \"circle-arrow-left\": 61608,\n  \"circle-arrow-right\": 61609,\n  \"circle-arrow-up\": 61610,\n  \"circle-check\": 61528,\n  \"circle-chevron-down\": 61754,\n  \"circle-chevron-left\": 61751,\n  \"circle-chevron-right\": 61752,\n  \"circle-chevron-up\": 61753,\n  \"circle-dollar-to-slot\": 62649,\n  \"circle-dot\": 61842,\n  \"circle-down\": 62296,\n  \"circle-exclamation\": 61546,\n  \"circle-h\": 62590,\n  \"circle-half-stroke\": 61506,\n  \"circle-info\": 61530,\n  \"circle-left\": 62297,\n  \"circle-minus\": 61526,\n  \"circle-nodes\": 58594,\n  \"circle-notch\": 61902,\n  \"circle-pause\": 62091,\n  \"circle-play\": 61764,\n  \"circle-plus\": 61525,\n  \"circle-question\": 61529,\n  \"circle-radiation\": 63418,\n  \"circle-right\": 62298,\n  \"circle-stop\": 62093,\n  \"circle-up\": 62299,\n  \"circle-user\": 62141,\n  \"circle-xmark\": 61527,\n  \"circle\": 61713,\n  \"city\": 63055,\n  \"clapperboard\": 57649,\n  \"clinic-medical\": 63474,\n  \"clipboard-check\": 62572,\n  \"clipboard-list\": 62573,\n  \"clipboard-question\": 58595,\n  \"clipboard-user\": 63475,\n  \"clipboard\": 62248,\n  \"clock-four\": 61463,\n  \"clock-rotate-left\": 61914,\n  \"clock\": 61463,\n  \"clone\": 62029,\n  \"close\": 61453,\n  \"closed-captioning-slash\": 57653,\n  \"closed-captioning\": 61962,\n  \"cloud-arrow-down\": 61677,\n  \"cloud-arrow-up\": 61678,\n  \"cloud-bolt\": 63340,\n  \"cloud-download-alt\": 61677,\n  \"cloud-download\": 61677,\n  \"cloud-meatball\": 63291,\n  \"cloud-moon-rain\": 63292,\n  \"cloud-moon\": 63171,\n  \"cloud-rain\": 63293,\n  \"cloud-showers-heavy\": 63296,\n  \"cloud-showers-water\": 58596,\n  \"cloud-sun-rain\": 63299,\n  \"cloud-sun\": 63172,\n  \"cloud-upload-alt\": 61678,\n  \"cloud-upload\": 61678,\n  \"cloud\": 61634,\n  \"clover\": 57657,\n  \"cny\": 61783,\n  \"cocktail\": 62817,\n  \"code-branch\": 61734,\n  \"code-commit\": 62342,\n  \"code-compare\": 57658,\n  \"code-fork\": 57659,\n  \"code-merge\": 62343,\n  \"code-pull-request\": 57660,\n  \"code\": 61729,\n  \"coffee\": 61684,\n  \"cog\": 61459,\n  \"cogs\": 61573,\n  \"coins\": 62750,\n  \"colon-sign\": 57664,\n  \"columns\": 61659,\n  \"comment-alt\": 62074,\n  \"comment-dollar\": 63057,\n  \"comment-dots\": 62637,\n  \"comment-medical\": 63477,\n  \"comment-nodes\": 59030,\n  \"comment-slash\": 62643,\n  \"comment-sms\": 63437,\n  \"comment\": 61557,\n  \"commenting\": 62637,\n  \"comments-dollar\": 63059,\n  \"comments\": 61574,\n  \"compact-disc\": 62751,\n  \"compass-drafting\": 62824,\n  \"compass\": 61774,\n  \"compress-alt\": 62498,\n  \"compress-arrows-alt\": 63372,\n  \"compress\": 61542,\n  \"computer-mouse\": 63692,\n  \"computer\": 58597,\n  \"concierge-bell\": 62818,\n  \"contact-book\": 62137,\n  \"contact-card\": 62139,\n  \"cookie-bite\": 62820,\n  \"cookie\": 62819,\n  \"copy\": 61637,\n  \"copyright\": 61945,\n  \"couch\": 62648,\n  \"cow\": 63176,\n  \"credit-card-alt\": 61597,\n  \"credit-card\": 61597,\n  \"crop-alt\": 62821,\n  \"crop-simple\": 62821,\n  \"crop\": 61733,\n  \"cross\": 63060,\n  \"crosshairs\": 61531,\n  \"crow\": 62752,\n  \"crown\": 62753,\n  \"crutch\": 63479,\n  \"cruzeiro-sign\": 57682,\n  \"cube\": 61874,\n  \"cubes-stacked\": 58598,\n  \"cubes\": 61875,\n  \"cut\": 61636,\n  \"cutlery\": 62183,\n  \"d\": 68,\n  \"dashboard\": 63012,\n  \"database\": 61888,\n  \"deaf\": 62116,\n  \"deafness\": 62116,\n  \"dedent\": 61499,\n  \"delete-left\": 62810,\n  \"democrat\": 63303,\n  \"desktop-alt\": 62352,\n  \"desktop\": 62352,\n  \"dharmachakra\": 63061,\n  \"diagnoses\": 62576,\n  \"diagram-next\": 58486,\n  \"diagram-predecessor\": 58487,\n  \"diagram-project\": 62786,\n  \"diagram-successor\": 58490,\n  \"diamond-turn-right\": 62955,\n  \"diamond\": 61977,\n  \"dice-d20\": 63183,\n  \"dice-d6\": 63185,\n  \"dice-five\": 62755,\n  \"dice-four\": 62756,\n  \"dice-one\": 62757,\n  \"dice-six\": 62758,\n  \"dice-three\": 62759,\n  \"dice-two\": 62760,\n  \"dice\": 62754,\n  \"digging\": 63582,\n  \"digital-tachograph\": 62822,\n  \"directions\": 62955,\n  \"disease\": 63482,\n  \"display\": 57699,\n  \"divide\": 62761,\n  \"dizzy\": 62823,\n  \"dna\": 62577,\n  \"dog\": 63187,\n  \"dollar-sign\": 36,\n  \"dollar\": 36,\n  \"dolly-box\": 62578,\n  \"dolly-flatbed\": 62580,\n  \"dolly\": 62578,\n  \"donate\": 62649,\n  \"dong-sign\": 57705,\n  \"door-closed\": 62762,\n  \"door-open\": 62763,\n  \"dot-circle\": 61842,\n  \"dove\": 62650,\n  \"down-left-and-up-right-to-center\": 62498,\n  \"down-long\": 62217,\n  \"download\": 61465,\n  \"drafting-compass\": 62824,\n  \"dragon\": 63189,\n  \"draw-polygon\": 62958,\n  \"drivers-license\": 62146,\n  \"droplet-slash\": 62919,\n  \"droplet\": 61507,\n  \"drum-steelpan\": 62826,\n  \"drum\": 62825,\n  \"drumstick-bite\": 63191,\n  \"dumbbell\": 62539,\n  \"dumpster-fire\": 63380,\n  \"dumpster\": 63379,\n  \"dungeon\": 63193,\n  \"e\": 69,\n  \"ear-deaf\": 62116,\n  \"ear-listen\": 62114,\n  \"earth-africa\": 62844,\n  \"earth-america\": 62845,\n  \"earth-americas\": 62845,\n  \"earth-asia\": 62846,\n  \"earth-europe\": 63394,\n  \"earth-oceania\": 58491,\n  \"earth\": 62845,\n  \"edit\": 61508,\n  \"egg\": 63483,\n  \"eject\": 61522,\n  \"elevator\": 57709,\n  \"ellipsis-h\": 61761,\n  \"ellipsis-v\": 61762,\n  \"ellipsis-vertical\": 61762,\n  \"ellipsis\": 61761,\n  \"envelope-circle-check\": 58600,\n  \"envelope-open-text\": 63064,\n  \"envelope-open\": 62134,\n  \"envelope-square\": 61849,\n  \"envelope\": 61664,\n  \"envelopes-bulk\": 63092,\n  \"equals\": 61,\n  \"eraser\": 61741,\n  \"ethernet\": 63382,\n  \"eur\": 61779,\n  \"euro-sign\": 61779,\n  \"euro\": 61779,\n  \"exchange-alt\": 62306,\n  \"exchange\": 61676,\n  \"exclamation-circle\": 61546,\n  \"exclamation-triangle\": 61553,\n  \"exclamation\": 33,\n  \"expand-alt\": 62500,\n  \"expand-arrows-alt\": 62238,\n  \"expand\": 61541,\n  \"explosion\": 58601,\n  \"external-link-alt\": 62301,\n  \"external-link-square-alt\": 62304,\n  \"external-link-square\": 61772,\n  \"external-link\": 61582,\n  \"eye-dropper-empty\": 61947,\n  \"eye-dropper\": 61947,\n  \"eye-low-vision\": 62120,\n  \"eye-slash\": 61552,\n  \"eye\": 61550,\n  \"eyedropper\": 61947,\n  \"f\": 70,\n  \"face-angry\": 62806,\n  \"face-dizzy\": 62823,\n  \"face-flushed\": 62841,\n  \"face-frown-open\": 62842,\n  \"face-frown\": 61721,\n  \"face-grimace\": 62847,\n  \"face-grin-beam-sweat\": 62851,\n  \"face-grin-beam\": 62850,\n  \"face-grin-hearts\": 62852,\n  \"face-grin-squint-tears\": 62854,\n  \"face-grin-squint\": 62853,\n  \"face-grin-stars\": 62855,\n  \"face-grin-tears\": 62856,\n  \"face-grin-tongue-squint\": 62858,\n  \"face-grin-tongue-wink\": 62859,\n  \"face-grin-tongue\": 62857,\n  \"face-grin-wide\": 62849,\n  \"face-grin-wink\": 62860,\n  \"face-grin\": 62848,\n  \"face-kiss-beam\": 62871,\n  \"face-kiss-wink-heart\": 62872,\n  \"face-kiss\": 62870,\n  \"face-laugh-beam\": 62874,\n  \"face-laugh-squint\": 62875,\n  \"face-laugh-wink\": 62876,\n  \"face-laugh\": 62873,\n  \"face-meh-blank\": 62884,\n  \"face-meh\": 61722,\n  \"face-rolling-eyes\": 62885,\n  \"face-sad-cry\": 62899,\n  \"face-sad-tear\": 62900,\n  \"face-smile-beam\": 62904,\n  \"face-smile-wink\": 62682,\n  \"face-smile\": 61720,\n  \"face-surprise\": 62914,\n  \"face-tired\": 62920,\n  \"fan\": 63587,\n  \"fast-backward\": 61513,\n  \"fast-forward\": 61520,\n  \"faucet-drip\": 57350,\n  \"faucet\": 57349,\n  \"fax\": 61868,\n  \"feather-alt\": 62827,\n  \"feather-pointed\": 62827,\n  \"feather\": 62765,\n  \"feed\": 61598,\n  \"female\": 61826,\n  \"ferry\": 58602,\n  \"fighter-jet\": 61691,\n  \"file-alt\": 61788,\n  \"file-archive\": 61894,\n  \"file-arrow-down\": 62829,\n  \"file-arrow-up\": 62836,\n  \"file-audio\": 61895,\n  \"file-circle-check\": 58784,\n  \"file-circle-exclamation\": 58603,\n  \"file-circle-minus\": 58605,\n  \"file-circle-plus\": 58516,\n  \"file-circle-question\": 58607,\n  \"file-circle-xmark\": 58785,\n  \"file-clipboard\": 61674,\n  \"file-code\": 61897,\n  \"file-contract\": 62828,\n  \"file-csv\": 63197,\n  \"file-download\": 62829,\n  \"file-edit\": 62236,\n  \"file-excel\": 61891,\n  \"file-export\": 62830,\n  \"file-fragment\": 59031,\n  \"file-half-dashed\": 59032,\n  \"file-image\": 61893,\n  \"file-import\": 62831,\n  \"file-invoice-dollar\": 62833,\n  \"file-invoice\": 62832,\n  \"file-lines\": 61788,\n  \"file-medical-alt\": 62584,\n  \"file-medical\": 62583,\n  \"file-pdf\": 61889,\n  \"file-pen\": 62236,\n  \"file-powerpoint\": 61892,\n  \"file-prescription\": 62834,\n  \"file-shield\": 58608,\n  \"file-signature\": 62835,\n  \"file-text\": 61788,\n  \"file-upload\": 62836,\n  \"file-video\": 61896,\n  \"file-waveform\": 62584,\n  \"file-word\": 61890,\n  \"file-zipper\": 61894,\n  \"file\": 61787,\n  \"fill-drip\": 62838,\n  \"fill\": 62837,\n  \"film-alt\": 61448,\n  \"film-simple\": 61448,\n  \"film\": 61448,\n  \"filter-circle-dollar\": 63074,\n  \"filter-circle-xmark\": 57723,\n  \"filter\": 61616,\n  \"fingerprint\": 62839,\n  \"fire-alt\": 63460,\n  \"fire-burner\": 58609,\n  \"fire-extinguisher\": 61748,\n  \"fire-flame-curved\": 63460,\n  \"fire-flame-simple\": 62570,\n  \"fire\": 61549,\n  \"first-aid\": 62585,\n  \"fish-fins\": 58610,\n  \"fish\": 62840,\n  \"fist-raised\": 63198,\n  \"flag-checkered\": 61726,\n  \"flag-usa\": 63309,\n  \"flag\": 61476,\n  \"flask-vial\": 58611,\n  \"flask\": 61635,\n  \"floppy-disk\": 61639,\n  \"florin-sign\": 57732,\n  \"flushed\": 62841,\n  \"folder-blank\": 61563,\n  \"folder-closed\": 57733,\n  \"folder-minus\": 63069,\n  \"folder-open\": 61564,\n  \"folder-plus\": 63070,\n  \"folder-tree\": 63490,\n  \"folder\": 61563,\n  \"font-awesome-flag\": 62132,\n  \"font-awesome-logo-full\": 62132,\n  \"font-awesome\": 62132,\n  \"font\": 61489,\n  \"football-ball\": 62542,\n  \"football\": 62542,\n  \"forward-fast\": 61520,\n  \"forward-step\": 61521,\n  \"forward\": 61518,\n  \"franc-sign\": 57743,\n  \"frog\": 62766,\n  \"frown-open\": 62842,\n  \"frown\": 61721,\n  \"funnel-dollar\": 63074,\n  \"futbol-ball\": 61923,\n  \"futbol\": 61923,\n  \"g\": 71,\n  \"gamepad\": 61723,\n  \"gas-pump\": 62767,\n  \"gauge-high\": 63013,\n  \"gauge-med\": 63012,\n  \"gauge-simple-high\": 63018,\n  \"gauge-simple-med\": 63017,\n  \"gauge-simple\": 63017,\n  \"gauge\": 63012,\n  \"gavel\": 61667,\n  \"gbp\": 61780,\n  \"gear\": 61459,\n  \"gears\": 61573,\n  \"gem\": 62373,\n  \"gemini\": 59465,\n  \"genderless\": 61997,\n  \"ghost\": 63202,\n  \"gift\": 61547,\n  \"gifts\": 63388,\n  \"glass-cheers\": 63391,\n  \"glass-martini-alt\": 62843,\n  \"glass-martini\": 61440,\n  \"glass-water-droplet\": 58613,\n  \"glass-water\": 58612,\n  \"glass-whiskey\": 63392,\n  \"glasses\": 62768,\n  \"globe-africa\": 62844,\n  \"globe-americas\": 62845,\n  \"globe-asia\": 62846,\n  \"globe-europe\": 63394,\n  \"globe-oceania\": 58491,\n  \"globe\": 61612,\n  \"golf-ball-tee\": 62544,\n  \"golf-ball\": 62544,\n  \"gopuram\": 63076,\n  \"graduation-cap\": 61853,\n  \"greater-than-equal\": 62770,\n  \"greater-than\": 62,\n  \"grid-horizontal\": 62861,\n  \"grid-vertical\": 62862,\n  \"grimace\": 62847,\n  \"grin-alt\": 62849,\n  \"grin-beam-sweat\": 62851,\n  \"grin-beam\": 62850,\n  \"grin-hearts\": 62852,\n  \"grin-squint-tears\": 62854,\n  \"grin-squint\": 62853,\n  \"grin-stars\": 62855,\n  \"grin-tears\": 62856,\n  \"grin-tongue-squint\": 62858,\n  \"grin-tongue-wink\": 62859,\n  \"grin-tongue\": 62857,\n  \"grin-wink\": 62860,\n  \"grin\": 62848,\n  \"grip-horizontal\": 62861,\n  \"grip-lines-vertical\": 63397,\n  \"grip-lines\": 63396,\n  \"grip-vertical\": 62862,\n  \"grip\": 62861,\n  \"group-arrows-rotate\": 58614,\n  \"guarani-sign\": 57754,\n  \"guitar\": 63398,\n  \"gun\": 57755,\n  \"h-square\": 61693,\n  \"h\": 72,\n  \"hamburger\": 63493,\n  \"hammer\": 63203,\n  \"hamsa\": 63077,\n  \"hand-back-fist\": 62037,\n  \"hand-dots\": 62561,\n  \"hand-fist\": 63198,\n  \"hand-holding-dollar\": 62656,\n  \"hand-holding-droplet\": 62657,\n  \"hand-holding-hand\": 58615,\n  \"hand-holding-heart\": 62654,\n  \"hand-holding-medical\": 57436,\n  \"hand-holding-usd\": 62656,\n  \"hand-holding-water\": 62657,\n  \"hand-holding\": 62653,\n  \"hand-lizard\": 62040,\n  \"hand-middle-finger\": 63494,\n  \"hand-paper\": 62038,\n  \"hand-peace\": 62043,\n  \"hand-point-down\": 61607,\n  \"hand-point-left\": 61605,\n  \"hand-point-right\": 61604,\n  \"hand-point-up\": 61606,\n  \"hand-pointer\": 62042,\n  \"hand-rock\": 62037,\n  \"hand-scissors\": 62039,\n  \"hand-sparkles\": 57437,\n  \"hand-spock\": 62041,\n  \"hand\": 62038,\n  \"handcuffs\": 58616,\n  \"hands-american-sign-language-interpreting\": 62115,\n  \"hands-asl-interpreting\": 62115,\n  \"hands-bound\": 58617,\n  \"hands-bubbles\": 57438,\n  \"hands-clapping\": 57768,\n  \"hands-helping\": 62660,\n  \"hands-holding-child\": 58618,\n  \"hands-holding-circle\": 58619,\n  \"hands-holding\": 62658,\n  \"hands-praying\": 63108,\n  \"hands-wash\": 57438,\n  \"hands\": 62119,\n  \"handshake-alt-slash\": 57440,\n  \"handshake-alt\": 62133,\n  \"handshake-angle\": 62660,\n  \"handshake-simple-slash\": 57440,\n  \"handshake-simple\": 62133,\n  \"handshake-slash\": 57440,\n  \"handshake\": 62133,\n  \"hanukiah\": 63206,\n  \"hard-drive\": 61600,\n  \"hard-hat\": 63495,\n  \"hard-of-hearing\": 62116,\n  \"hashtag\": 35,\n  \"hat-cowboy-side\": 63681,\n  \"hat-cowboy\": 63680,\n  \"hat-hard\": 63495,\n  \"hat-wizard\": 63208,\n  \"haykal\": 63078,\n  \"hdd\": 61600,\n  \"head-side-cough-slash\": 57442,\n  \"head-side-cough\": 57441,\n  \"head-side-mask\": 57443,\n  \"head-side-virus\": 57444,\n  \"header\": 61916,\n  \"heading\": 61916,\n  \"headphones-alt\": 61477,\n  \"headphones-simple\": 61477,\n  \"headphones\": 61477,\n  \"headset\": 62864,\n  \"heart-broken\": 63401,\n  \"heart-circle-bolt\": 58620,\n  \"heart-circle-check\": 58621,\n  \"heart-circle-exclamation\": 58622,\n  \"heart-circle-minus\": 58623,\n  \"heart-circle-plus\": 58624,\n  \"heart-circle-xmark\": 58625,\n  \"heart-crack\": 63401,\n  \"heart-music-camera-bolt\": 63597,\n  \"heart-pulse\": 61982,\n  \"heart\": 61444,\n  \"heartbeat\": 61982,\n  \"helicopter-symbol\": 58626,\n  \"helicopter\": 62771,\n  \"helmet-safety\": 63495,\n  \"helmet-un\": 58627,\n  \"heptagon\": 59424,\n  \"hexagon-nodes-bolt\": 59034,\n  \"hexagon-nodes\": 59033,\n  \"hexagon\": 62226,\n  \"highlighter\": 62865,\n  \"hiking\": 63212,\n  \"hill-avalanche\": 58631,\n  \"hill-rockslide\": 58632,\n  \"hippo\": 63213,\n  \"history\": 61914,\n  \"hockey-puck\": 62547,\n  \"holly-berry\": 63402,\n  \"home-alt\": 61461,\n  \"home-lg-alt\": 61461,\n  \"home-lg\": 58287,\n  \"home-user\": 57776,\n  \"home\": 61461,\n  \"horse-head\": 63403,\n  \"horse\": 63216,\n  \"hospital-alt\": 61688,\n  \"hospital-symbol\": 62590,\n  \"hospital-user\": 63501,\n  \"hospital-wide\": 61688,\n  \"hospital\": 61688,\n  \"hot-tub-person\": 62867,\n  \"hot-tub\": 62867,\n  \"hotdog\": 63503,\n  \"hotel\": 62868,\n  \"hourglass-1\": 62033,\n  \"hourglass-2\": 62034,\n  \"hourglass-3\": 62035,\n  \"hourglass-empty\": 62036,\n  \"hourglass-end\": 62035,\n  \"hourglass-half\": 62034,\n  \"hourglass-start\": 62033,\n  \"hourglass\": 62036,\n  \"house-chimney-crack\": 63217,\n  \"house-chimney-medical\": 63474,\n  \"house-chimney-user\": 57445,\n  \"house-chimney-window\": 57357,\n  \"house-chimney\": 58287,\n  \"house-circle-check\": 58633,\n  \"house-circle-exclamation\": 58634,\n  \"house-circle-xmark\": 58635,\n  \"house-crack\": 58289,\n  \"house-damage\": 63217,\n  \"house-fire\": 58636,\n  \"house-flag\": 58637,\n  \"house-flood-water-circle-arrow-right\": 58639,\n  \"house-flood-water\": 58638,\n  \"house-laptop\": 57446,\n  \"house-lock\": 58640,\n  \"house-medical-circle-check\": 58641,\n  \"house-medical-circle-exclamation\": 58642,\n  \"house-medical-circle-xmark\": 58643,\n  \"house-medical-flag\": 58644,\n  \"house-medical\": 58290,\n  \"house-signal\": 57362,\n  \"house-tsunami\": 58645,\n  \"house-user\": 57776,\n  \"house\": 61461,\n  \"hryvnia-sign\": 63218,\n  \"hryvnia\": 63218,\n  \"hurricane\": 63313,\n  \"i-cursor\": 62022,\n  \"i\": 73,\n  \"ice-cream\": 63504,\n  \"icicles\": 63405,\n  \"icons\": 63597,\n  \"id-badge\": 62145,\n  \"id-card-alt\": 62591,\n  \"id-card-clip\": 62591,\n  \"id-card\": 62146,\n  \"igloo\": 63406,\n  \"ils\": 61963,\n  \"image-portrait\": 62432,\n  \"image\": 61502,\n  \"images\": 62210,\n  \"inbox\": 61468,\n  \"indent\": 61500,\n  \"indian-rupee-sign\": 57788,\n  \"indian-rupee\": 57788,\n  \"industry\": 62069,\n  \"infinity\": 62772,\n  \"info-circle\": 61530,\n  \"info\": 61737,\n  \"inr\": 57788,\n  \"institution\": 61852,\n  \"italic\": 61491,\n  \"j\": 74,\n  \"jar-wheat\": 58647,\n  \"jar\": 58646,\n  \"jedi\": 63081,\n  \"jet-fighter-up\": 58648,\n  \"jet-fighter\": 61691,\n  \"joint\": 62869,\n  \"journal-whills\": 63082,\n  \"jpy\": 61783,\n  \"jug-detergent\": 58649,\n  \"k\": 75,\n  \"kaaba\": 63083,\n  \"key\": 61572,\n  \"keyboard\": 61724,\n  \"khanda\": 63085,\n  \"kip-sign\": 57796,\n  \"kiss-beam\": 62871,\n  \"kiss-wink-heart\": 62872,\n  \"kiss\": 62870,\n  \"kit-medical\": 62585,\n  \"kitchen-set\": 58650,\n  \"kiwi-bird\": 62773,\n  \"krw\": 61785,\n  \"l\": 76,\n  \"ladder-water\": 62917,\n  \"land-mine-on\": 58651,\n  \"landmark-alt\": 63314,\n  \"landmark-dome\": 63314,\n  \"landmark-flag\": 58652,\n  \"landmark\": 63087,\n  \"language\": 61867,\n  \"laptop-code\": 62972,\n  \"laptop-file\": 58653,\n  \"laptop-house\": 57446,\n  \"laptop-medical\": 63506,\n  \"laptop\": 61705,\n  \"lari-sign\": 57800,\n  \"laugh-beam\": 62874,\n  \"laugh-squint\": 62875,\n  \"laugh-wink\": 62876,\n  \"laugh\": 62873,\n  \"layer-group\": 62973,\n  \"leaf\": 61548,\n  \"left-long\": 62218,\n  \"left-right\": 62263,\n  \"legal\": 61667,\n  \"lemon\": 61588,\n  \"leo\": 59466,\n  \"less-than-equal\": 62775,\n  \"less-than\": 60,\n  \"level-down-alt\": 62398,\n  \"level-down\": 61769,\n  \"level-up-alt\": 62399,\n  \"level-up\": 61768,\n  \"libra\": 59467,\n  \"life-ring\": 61901,\n  \"lightbulb\": 61675,\n  \"line-chart\": 61953,\n  \"lines-leaning\": 58654,\n  \"link-slash\": 61735,\n  \"link\": 61633,\n  \"lira-sign\": 61845,\n  \"list-1-2\": 61643,\n  \"list-alt\": 61474,\n  \"list-check\": 61614,\n  \"list-dots\": 61642,\n  \"list-numeric\": 61643,\n  \"list-ol\": 61643,\n  \"list-squares\": 61498,\n  \"list-ul\": 61642,\n  \"list\": 61498,\n  \"litecoin-sign\": 57811,\n  \"location-arrow\": 61732,\n  \"location-crosshairs\": 62977,\n  \"location-dot\": 62405,\n  \"location-pin-lock\": 58655,\n  \"location-pin\": 61505,\n  \"location\": 62977,\n  \"lock-open\": 62401,\n  \"lock\": 61475,\n  \"locust\": 58656,\n  \"long-arrow-alt-down\": 62217,\n  \"long-arrow-alt-left\": 62218,\n  \"long-arrow-alt-right\": 62219,\n  \"long-arrow-alt-up\": 62220,\n  \"long-arrow-down\": 61813,\n  \"long-arrow-left\": 61815,\n  \"long-arrow-right\": 61816,\n  \"long-arrow-up\": 61814,\n  \"low-vision\": 62120,\n  \"luggage-cart\": 62877,\n  \"lungs-virus\": 57447,\n  \"lungs\": 62980,\n  \"m\": 77,\n  \"magic-wand-sparkles\": 58058,\n  \"magic\": 61648,\n  \"magnet\": 61558,\n  \"magnifying-glass-arrow-right\": 58657,\n  \"magnifying-glass-chart\": 58658,\n  \"magnifying-glass-dollar\": 63112,\n  \"magnifying-glass-location\": 63113,\n  \"magnifying-glass-minus\": 61456,\n  \"magnifying-glass-plus\": 61454,\n  \"magnifying-glass\": 61442,\n  \"mail-bulk\": 63092,\n  \"mail-forward\": 61540,\n  \"mail-reply-all\": 61730,\n  \"mail-reply\": 62437,\n  \"male\": 61827,\n  \"manat-sign\": 57813,\n  \"map-location-dot\": 62880,\n  \"map-location\": 62879,\n  \"map-marked-alt\": 62880,\n  \"map-marked\": 62879,\n  \"map-marker-alt\": 62405,\n  \"map-marker\": 61505,\n  \"map-pin\": 62070,\n  \"map-signs\": 62071,\n  \"map\": 62073,\n  \"marker\": 62881,\n  \"mars-and-venus-burst\": 58659,\n  \"mars-and-venus\": 61988,\n  \"mars-double\": 61991,\n  \"mars-stroke-h\": 61995,\n  \"mars-stroke-right\": 61995,\n  \"mars-stroke-up\": 61994,\n  \"mars-stroke-v\": 61994,\n  \"mars-stroke\": 61993,\n  \"mars\": 61986,\n  \"martini-glass-citrus\": 62817,\n  \"martini-glass-empty\": 61440,\n  \"martini-glass\": 62843,\n  \"mask-face\": 57815,\n  \"mask-ventilator\": 58660,\n  \"mask\": 63226,\n  \"masks-theater\": 63024,\n  \"mattress-pillow\": 58661,\n  \"maximize\": 62238,\n  \"medal\": 62882,\n  \"medkit\": 61690,\n  \"meh-blank\": 62884,\n  \"meh-rolling-eyes\": 62885,\n  \"meh\": 61722,\n  \"memory\": 62776,\n  \"menorah\": 63094,\n  \"mercury\": 61987,\n  \"message\": 62074,\n  \"meteor\": 63315,\n  \"microchip\": 62171,\n  \"microphone-alt-slash\": 62777,\n  \"microphone-alt\": 62409,\n  \"microphone-lines-slash\": 62777,\n  \"microphone-lines\": 62409,\n  \"microphone-slash\": 61745,\n  \"microphone\": 61744,\n  \"microscope\": 62992,\n  \"mill-sign\": 57837,\n  \"minimize\": 63372,\n  \"minus-circle\": 61526,\n  \"minus-square\": 61766,\n  \"minus\": 61544,\n  \"mitten\": 63413,\n  \"mobile-alt\": 62413,\n  \"mobile-android-alt\": 62415,\n  \"mobile-android\": 62414,\n  \"mobile-button\": 61707,\n  \"mobile-phone\": 62414,\n  \"mobile-retro\": 58663,\n  \"mobile-screen-button\": 62413,\n  \"mobile-screen\": 62415,\n  \"mobile-vibrate\": 59414,\n  \"mobile\": 62414,\n  \"money-bill-1-wave\": 62779,\n  \"money-bill-1\": 62417,\n  \"money-bill-alt\": 62417,\n  \"money-bill-transfer\": 58664,\n  \"money-bill-trend-up\": 58665,\n  \"money-bill-wave-alt\": 62779,\n  \"money-bill-wave\": 62778,\n  \"money-bill-wheat\": 58666,\n  \"money-bill\": 61654,\n  \"money-bills\": 57843,\n  \"money-check-alt\": 62781,\n  \"money-check-dollar\": 62781,\n  \"money-check\": 62780,\n  \"monument\": 62886,\n  \"moon\": 61830,\n  \"mortar-board\": 61853,\n  \"mortar-pestle\": 62887,\n  \"mosque\": 63096,\n  \"mosquito-net\": 58668,\n  \"mosquito\": 58667,\n  \"motorcycle\": 61980,\n  \"mound\": 58669,\n  \"mountain-city\": 58670,\n  \"mountain-sun\": 58671,\n  \"mountain\": 63228,\n  \"mouse-pointer\": 62021,\n  \"mouse\": 63692,\n  \"mug-hot\": 63414,\n  \"mug-saucer\": 61684,\n  \"multiply\": 61453,\n  \"museum\": 61852,\n  \"music\": 61441,\n  \"n\": 78,\n  \"naira-sign\": 57846,\n  \"navicon\": 61641,\n  \"network-wired\": 63231,\n  \"neuter\": 61996,\n  \"newspaper\": 61930,\n  \"non-binary\": 59399,\n  \"not-equal\": 62782,\n  \"notdef\": 57854,\n  \"note-sticky\": 62025,\n  \"notes-medical\": 62593,\n  \"o\": 79,\n  \"object-group\": 62023,\n  \"object-ungroup\": 62024,\n  \"octagon\": 62214,\n  \"oil-can\": 62995,\n  \"oil-well\": 58674,\n  \"om\": 63097,\n  \"otter\": 63232,\n  \"outdent\": 61499,\n  \"p\": 80,\n  \"pager\": 63509,\n  \"paint-brush\": 61948,\n  \"paint-roller\": 62890,\n  \"paintbrush\": 61948,\n  \"palette\": 62783,\n  \"pallet\": 62594,\n  \"panorama\": 57865,\n  \"paper-plane\": 61912,\n  \"paperclip\": 61638,\n  \"parachute-box\": 62669,\n  \"paragraph\": 61917,\n  \"parking\": 62784,\n  \"passport\": 62891,\n  \"pastafarianism\": 63099,\n  \"paste\": 61674,\n  \"pause-circle\": 62091,\n  \"pause\": 61516,\n  \"paw\": 61872,\n  \"peace\": 63100,\n  \"pen-alt\": 62213,\n  \"pen-clip\": 62213,\n  \"pen-fancy\": 62892,\n  \"pen-nib\": 62893,\n  \"pen-ruler\": 62894,\n  \"pen-square\": 61771,\n  \"pen-to-square\": 61508,\n  \"pen\": 62212,\n  \"pencil-alt\": 62211,\n  \"pencil-ruler\": 62894,\n  \"pencil-square\": 61771,\n  \"pencil\": 62211,\n  \"pentagon\": 59280,\n  \"people-arrows-left-right\": 57448,\n  \"people-arrows\": 57448,\n  \"people-carry-box\": 62670,\n  \"people-carry\": 62670,\n  \"people-group\": 58675,\n  \"people-line\": 58676,\n  \"people-pulling\": 58677,\n  \"people-robbery\": 58678,\n  \"people-roof\": 58679,\n  \"pepper-hot\": 63510,\n  \"percent\": 37,\n  \"percentage\": 37,\n  \"person-arrow-down-to-line\": 58680,\n  \"person-arrow-up-from-line\": 58681,\n  \"person-biking\": 63562,\n  \"person-booth\": 63318,\n  \"person-breastfeeding\": 58682,\n  \"person-burst\": 58683,\n  \"person-cane\": 58684,\n  \"person-chalkboard\": 58685,\n  \"person-circle-check\": 58686,\n  \"person-circle-exclamation\": 58687,\n  \"person-circle-minus\": 58688,\n  \"person-circle-plus\": 58689,\n  \"person-circle-question\": 58690,\n  \"person-circle-xmark\": 58691,\n  \"person-digging\": 63582,\n  \"person-dots-from-line\": 62576,\n  \"person-dress-burst\": 58692,\n  \"person-dress\": 61826,\n  \"person-drowning\": 58693,\n  \"person-falling-burst\": 58695,\n  \"person-falling\": 58694,\n  \"person-half-dress\": 58696,\n  \"person-harassing\": 58697,\n  \"person-hiking\": 63212,\n  \"person-military-pointing\": 58698,\n  \"person-military-rifle\": 58699,\n  \"person-military-to-person\": 58700,\n  \"person-praying\": 63107,\n  \"person-pregnant\": 58142,\n  \"person-rays\": 58701,\n  \"person-rifle\": 58702,\n  \"person-running\": 63244,\n  \"person-shelter\": 58703,\n  \"person-skating\": 63429,\n  \"person-skiing-nordic\": 63434,\n  \"person-skiing\": 63433,\n  \"person-snowboarding\": 63438,\n  \"person-swimming\": 62916,\n  \"person-through-window\": 58793,\n  \"person-walking-arrow-loop-left\": 58705,\n  \"person-walking-arrow-right\": 58706,\n  \"person-walking-dashed-line-arrow-right\": 58707,\n  \"person-walking-luggage\": 58708,\n  \"person-walking-with-cane\": 62109,\n  \"person-walking\": 62804,\n  \"person\": 61827,\n  \"peseta-sign\": 57889,\n  \"peso-sign\": 57890,\n  \"phone-alt\": 63609,\n  \"phone-flip\": 63609,\n  \"phone-slash\": 62429,\n  \"phone-square-alt\": 63611,\n  \"phone-square\": 61592,\n  \"phone-volume\": 62112,\n  \"phone\": 61589,\n  \"photo-film\": 63612,\n  \"photo-video\": 63612,\n  \"picture-in-picture\": 59403,\n  \"pie-chart\": 61952,\n  \"piggy-bank\": 62675,\n  \"pills\": 62596,\n  \"ping-pong-paddle-ball\": 62557,\n  \"pisces\": 59468,\n  \"pizza-slice\": 63512,\n  \"place-of-worship\": 63103,\n  \"plane-arrival\": 62895,\n  \"plane-circle-check\": 58709,\n  \"plane-circle-exclamation\": 58710,\n  \"plane-circle-xmark\": 58711,\n  \"plane-departure\": 62896,\n  \"plane-lock\": 58712,\n  \"plane-slash\": 57449,\n  \"plane-up\": 57901,\n  \"plane\": 61554,\n  \"plant-wilt\": 58794,\n  \"plate-wheat\": 58714,\n  \"play-circle\": 61764,\n  \"play\": 61515,\n  \"plug-circle-bolt\": 58715,\n  \"plug-circle-check\": 58716,\n  \"plug-circle-exclamation\": 58717,\n  \"plug-circle-minus\": 58718,\n  \"plug-circle-plus\": 58719,\n  \"plug-circle-xmark\": 58720,\n  \"plug\": 61926,\n  \"plus-circle\": 61525,\n  \"plus-minus\": 58428,\n  \"plus-square\": 61694,\n  \"plus\": 43,\n  \"podcast\": 62158,\n  \"poll-h\": 63106,\n  \"poll\": 63105,\n  \"poo-bolt\": 63322,\n  \"poo-storm\": 63322,\n  \"poo\": 62206,\n  \"poop\": 63001,\n  \"portrait\": 62432,\n  \"pound-sign\": 61780,\n  \"power-off\": 61457,\n  \"pray\": 63107,\n  \"praying-hands\": 63108,\n  \"prescription-bottle-alt\": 62598,\n  \"prescription-bottle-medical\": 62598,\n  \"prescription-bottle\": 62597,\n  \"prescription\": 62897,\n  \"print\": 61487,\n  \"procedures\": 62599,\n  \"project-diagram\": 62786,\n  \"pump-medical\": 57450,\n  \"pump-soap\": 57451,\n  \"puzzle-piece\": 61742,\n  \"q\": 81,\n  \"qrcode\": 61481,\n  \"question-circle\": 61529,\n  \"question\": 63,\n  \"quidditch-broom-ball\": 62552,\n  \"quidditch\": 62552,\n  \"quote-left-alt\": 61709,\n  \"quote-left\": 61709,\n  \"quote-right-alt\": 61710,\n  \"quote-right\": 61710,\n  \"quran\": 63111,\n  \"r\": 82,\n  \"radiation-alt\": 63418,\n  \"radiation\": 63417,\n  \"radio\": 63703,\n  \"rainbow\": 63323,\n  \"random\": 61556,\n  \"ranking-star\": 58721,\n  \"receipt\": 62787,\n  \"record-vinyl\": 63705,\n  \"rectangle-ad\": 63041,\n  \"rectangle-list\": 61474,\n  \"rectangle-times\": 62480,\n  \"rectangle-xmark\": 62480,\n  \"recycle\": 61880,\n  \"redo-alt\": 62201,\n  \"redo\": 61470,\n  \"refresh\": 61473,\n  \"registered\": 62045,\n  \"remove-format\": 63613,\n  \"remove\": 61453,\n  \"reorder\": 62800,\n  \"repeat\": 62307,\n  \"reply-all\": 61730,\n  \"reply\": 62437,\n  \"republican\": 63326,\n  \"restroom\": 63421,\n  \"retweet\": 61561,\n  \"ribbon\": 62678,\n  \"right-from-bracket\": 62197,\n  \"right-left\": 62306,\n  \"right-long\": 62219,\n  \"right-to-bracket\": 62198,\n  \"ring\": 63243,\n  \"rmb\": 61783,\n  \"road-barrier\": 58722,\n  \"road-bridge\": 58723,\n  \"road-circle-check\": 58724,\n  \"road-circle-exclamation\": 58725,\n  \"road-circle-xmark\": 58726,\n  \"road-lock\": 58727,\n  \"road-spikes\": 58728,\n  \"road\": 61464,\n  \"robot\": 62788,\n  \"rocket\": 61749,\n  \"rod-asclepius\": 58745,\n  \"rod-snake\": 58745,\n  \"rotate-back\": 62186,\n  \"rotate-backward\": 62186,\n  \"rotate-forward\": 62201,\n  \"rotate-left\": 62186,\n  \"rotate-right\": 62201,\n  \"rotate\": 62193,\n  \"rouble\": 61784,\n  \"route\": 62679,\n  \"rss-square\": 61763,\n  \"rss\": 61598,\n  \"rub\": 61784,\n  \"ruble-sign\": 61784,\n  \"ruble\": 61784,\n  \"rug\": 58729,\n  \"ruler-combined\": 62790,\n  \"ruler-horizontal\": 62791,\n  \"ruler-vertical\": 62792,\n  \"ruler\": 62789,\n  \"running\": 63244,\n  \"rupee-sign\": 61782,\n  \"rupee\": 61782,\n  \"rupiah-sign\": 57917,\n  \"s\": 83,\n  \"sack-dollar\": 63517,\n  \"sack-xmark\": 58730,\n  \"sad-cry\": 62899,\n  \"sad-tear\": 62900,\n  \"sagittarius\": 59469,\n  \"sailboat\": 58437,\n  \"satellite-dish\": 63424,\n  \"satellite\": 63423,\n  \"save\": 61639,\n  \"scale-balanced\": 62030,\n  \"scale-unbalanced-flip\": 62742,\n  \"scale-unbalanced\": 62741,\n  \"school-circle-check\": 58731,\n  \"school-circle-exclamation\": 58732,\n  \"school-circle-xmark\": 58733,\n  \"school-flag\": 58734,\n  \"school-lock\": 58735,\n  \"school\": 62793,\n  \"scissors\": 61636,\n  \"scorpio\": 59470,\n  \"screwdriver-wrench\": 63449,\n  \"screwdriver\": 62794,\n  \"scroll-torah\": 63136,\n  \"scroll\": 63246,\n  \"sd-card\": 63426,\n  \"search-dollar\": 63112,\n  \"search-location\": 63113,\n  \"search-minus\": 61456,\n  \"search-plus\": 61454,\n  \"search\": 61442,\n  \"section\": 58439,\n  \"seedling\": 62680,\n  \"septagon\": 59424,\n  \"server\": 62003,\n  \"shapes\": 63007,\n  \"share-alt-square\": 61921,\n  \"share-alt\": 61920,\n  \"share-from-square\": 61773,\n  \"share-nodes\": 61920,\n  \"share-square\": 61773,\n  \"share\": 61540,\n  \"sheet-plastic\": 58737,\n  \"shekel-sign\": 61963,\n  \"shekel\": 61963,\n  \"sheqel-sign\": 61963,\n  \"sheqel\": 61963,\n  \"shield-alt\": 62445,\n  \"shield-blank\": 61746,\n  \"shield-cat\": 58738,\n  \"shield-dog\": 58739,\n  \"shield-halved\": 62445,\n  \"shield-heart\": 58740,\n  \"shield-virus\": 57452,\n  \"shield\": 61746,\n  \"ship\": 61978,\n  \"shipping-fast\": 62603,\n  \"shirt\": 62803,\n  \"shoe-prints\": 62795,\n  \"shop-lock\": 58533,\n  \"shop-slash\": 57456,\n  \"shop\": 62799,\n  \"shopping-bag\": 62096,\n  \"shopping-basket\": 62097,\n  \"shopping-cart\": 61562,\n  \"shower\": 62156,\n  \"shrimp\": 58440,\n  \"shuffle\": 61556,\n  \"shuttle-space\": 61847,\n  \"shuttle-van\": 62902,\n  \"sign-hanging\": 62681,\n  \"sign-in-alt\": 62198,\n  \"sign-in\": 61584,\n  \"sign-language\": 62119,\n  \"sign-out-alt\": 62197,\n  \"sign-out\": 61579,\n  \"sign\": 62681,\n  \"signal-5\": 61458,\n  \"signal-perfect\": 61458,\n  \"signal\": 61458,\n  \"signature\": 62903,\n  \"signing\": 62119,\n  \"signs-post\": 62071,\n  \"sim-card\": 63428,\n  \"single-quote-left\": 59419,\n  \"single-quote-right\": 59420,\n  \"sink\": 57453,\n  \"sitemap\": 61672,\n  \"skating\": 63429,\n  \"skiing-nordic\": 63434,\n  \"skiing\": 63433,\n  \"skull-crossbones\": 63252,\n  \"skull\": 62796,\n  \"slash\": 63253,\n  \"sleigh\": 63436,\n  \"sliders-h\": 61918,\n  \"sliders\": 61918,\n  \"smile-beam\": 62904,\n  \"smile-wink\": 62682,\n  \"smile\": 61720,\n  \"smog\": 63327,\n  \"smoking-ban\": 62797,\n  \"smoking\": 62605,\n  \"sms\": 63437,\n  \"snowboarding\": 63438,\n  \"snowflake\": 62172,\n  \"snowman\": 63440,\n  \"snowplow\": 63442,\n  \"soap\": 57454,\n  \"soccer-ball\": 61923,\n  \"socks\": 63126,\n  \"solar-panel\": 62906,\n  \"sort-alpha-asc\": 61789,\n  \"sort-alpha-desc\": 63617,\n  \"sort-alpha-down-alt\": 63617,\n  \"sort-alpha-down\": 61789,\n  \"sort-alpha-up-alt\": 63618,\n  \"sort-alpha-up\": 61790,\n  \"sort-amount-asc\": 61792,\n  \"sort-amount-desc\": 63620,\n  \"sort-amount-down-alt\": 63620,\n  \"sort-amount-down\": 61792,\n  \"sort-amount-up-alt\": 63621,\n  \"sort-amount-up\": 61793,\n  \"sort-asc\": 61662,\n  \"sort-desc\": 61661,\n  \"sort-down\": 61661,\n  \"sort-numeric-asc\": 61794,\n  \"sort-numeric-desc\": 63622,\n  \"sort-numeric-down-alt\": 63622,\n  \"sort-numeric-down\": 61794,\n  \"sort-numeric-up-alt\": 63623,\n  \"sort-numeric-up\": 61795,\n  \"sort-up\": 61662,\n  \"sort\": 61660,\n  \"spa\": 62907,\n  \"space-shuttle\": 61847,\n  \"spaghetti-monster-flying\": 63099,\n  \"spell-check\": 63633,\n  \"spider\": 63255,\n  \"spinner\": 61712,\n  \"spiral\": 59402,\n  \"splotch\": 62908,\n  \"spoon\": 62181,\n  \"spray-can-sparkles\": 62928,\n  \"spray-can\": 62909,\n  \"sprout\": 62680,\n  \"square-arrow-up-right\": 61772,\n  \"square-binary\": 59035,\n  \"square-caret-down\": 61776,\n  \"square-caret-left\": 61841,\n  \"square-caret-right\": 61778,\n  \"square-caret-up\": 61777,\n  \"square-check\": 61770,\n  \"square-envelope\": 61849,\n  \"square-full\": 62556,\n  \"square-h\": 61693,\n  \"square-minus\": 61766,\n  \"square-nfi\": 58742,\n  \"square-parking\": 62784,\n  \"square-pen\": 61771,\n  \"square-person-confined\": 58743,\n  \"square-phone-flip\": 63611,\n  \"square-phone\": 61592,\n  \"square-plus\": 61694,\n  \"square-poll-horizontal\": 63106,\n  \"square-poll-vertical\": 63105,\n  \"square-root-alt\": 63128,\n  \"square-root-variable\": 63128,\n  \"square-rss\": 61763,\n  \"square-share-nodes\": 61921,\n  \"square-up-right\": 62304,\n  \"square-virus\": 58744,\n  \"square-xmark\": 62163,\n  \"square\": 61640,\n  \"staff-aesculapius\": 58745,\n  \"staff-snake\": 58745,\n  \"stairs\": 57993,\n  \"stamp\": 62911,\n  \"stapler\": 58799,\n  \"star-and-crescent\": 63129,\n  \"star-half-alt\": 62912,\n  \"star-half-stroke\": 62912,\n  \"star-half\": 61577,\n  \"star-of-david\": 63130,\n  \"star-of-life\": 63009,\n  \"star\": 61445,\n  \"step-backward\": 61512,\n  \"step-forward\": 61521,\n  \"sterling-sign\": 61780,\n  \"stethoscope\": 61681,\n  \"sticky-note\": 62025,\n  \"stop-circle\": 62093,\n  \"stop\": 61517,\n  \"stopwatch-20\": 57455,\n  \"stopwatch\": 62194,\n  \"store-alt-slash\": 57456,\n  \"store-alt\": 62799,\n  \"store-slash\": 57457,\n  \"store\": 62798,\n  \"stream\": 62800,\n  \"street-view\": 61981,\n  \"strikethrough\": 61644,\n  \"stroopwafel\": 62801,\n  \"subscript\": 61740,\n  \"subtract\": 61544,\n  \"subway\": 62009,\n  \"suitcase-medical\": 61690,\n  \"suitcase-rolling\": 62913,\n  \"suitcase\": 61682,\n  \"sun-plant-wilt\": 58746,\n  \"sun\": 61829,\n  \"superscript\": 61739,\n  \"surprise\": 62914,\n  \"swatchbook\": 62915,\n  \"swimmer\": 62916,\n  \"swimming-pool\": 62917,\n  \"synagogue\": 63131,\n  \"sync-alt\": 62193,\n  \"sync\": 61473,\n  \"syringe\": 62606,\n  \"t-shirt\": 62803,\n  \"t\": 84,\n  \"table-cells-column-lock\": 59000,\n  \"table-cells-large\": 61449,\n  \"table-cells-row-lock\": 59002,\n  \"table-cells-row-unlock\": 59025,\n  \"table-cells\": 61450,\n  \"table-columns\": 61659,\n  \"table-list\": 61451,\n  \"table-tennis-paddle-ball\": 62557,\n  \"table-tennis\": 62557,\n  \"table\": 61646,\n  \"tablet-alt\": 62458,\n  \"tablet-android\": 62459,\n  \"tablet-button\": 61706,\n  \"tablet-screen-button\": 62458,\n  \"tablet\": 62459,\n  \"tablets\": 62608,\n  \"tachograph-digital\": 62822,\n  \"tachometer-alt-average\": 63012,\n  \"tachometer-alt-fast\": 63013,\n  \"tachometer-alt\": 63013,\n  \"tachometer-average\": 63017,\n  \"tachometer-fast\": 63018,\n  \"tachometer\": 63018,\n  \"tag\": 61483,\n  \"tags\": 61484,\n  \"tanakh\": 63527,\n  \"tape\": 62683,\n  \"tarp-droplet\": 58748,\n  \"tarp\": 58747,\n  \"tasks-alt\": 63528,\n  \"tasks\": 61614,\n  \"taurus\": 59471,\n  \"taxi\": 61882,\n  \"teeth-open\": 63023,\n  \"teeth\": 63022,\n  \"teletype\": 61924,\n  \"television\": 62060,\n  \"temperature-0\": 62155,\n  \"temperature-1\": 62154,\n  \"temperature-2\": 62153,\n  \"temperature-3\": 62152,\n  \"temperature-4\": 62151,\n  \"temperature-arrow-down\": 57407,\n  \"temperature-arrow-up\": 57408,\n  \"temperature-down\": 57407,\n  \"temperature-empty\": 62155,\n  \"temperature-full\": 62151,\n  \"temperature-half\": 62153,\n  \"temperature-high\": 63337,\n  \"temperature-low\": 63339,\n  \"temperature-quarter\": 62154,\n  \"temperature-three-quarters\": 62152,\n  \"temperature-up\": 57408,\n  \"tenge-sign\": 63447,\n  \"tenge\": 63447,\n  \"tent-arrow-down-to-line\": 58750,\n  \"tent-arrow-left-right\": 58751,\n  \"tent-arrow-turn-left\": 58752,\n  \"tent-arrows-down\": 58753,\n  \"tent\": 58749,\n  \"tents\": 58754,\n  \"terminal\": 61728,\n  \"text-height\": 61492,\n  \"text-slash\": 63613,\n  \"text-width\": 61493,\n  \"th-large\": 61449,\n  \"th-list\": 61451,\n  \"th\": 61450,\n  \"theater-masks\": 63024,\n  \"thermometer-0\": 62155,\n  \"thermometer-1\": 62154,\n  \"thermometer-2\": 62153,\n  \"thermometer-3\": 62152,\n  \"thermometer-4\": 62151,\n  \"thermometer-empty\": 62155,\n  \"thermometer-full\": 62151,\n  \"thermometer-half\": 62153,\n  \"thermometer-quarter\": 62154,\n  \"thermometer-three-quarters\": 62152,\n  \"thermometer\": 62609,\n  \"thumb-tack-slash\": 59023,\n  \"thumb-tack\": 61581,\n  \"thumbs-down\": 61797,\n  \"thumbs-up\": 61796,\n  \"thumbtack-slash\": 59023,\n  \"thumbtack\": 61581,\n  \"thunderstorm\": 63340,\n  \"ticket-alt\": 62463,\n  \"ticket-simple\": 62463,\n  \"ticket\": 61765,\n  \"timeline\": 58012,\n  \"times-circle\": 61527,\n  \"times-rectangle\": 62480,\n  \"times-square\": 62163,\n  \"times\": 61453,\n  \"tint-slash\": 62919,\n  \"tint\": 61507,\n  \"tired\": 62920,\n  \"toggle-off\": 61956,\n  \"toggle-on\": 61957,\n  \"toilet-paper-alt\": 63262,\n  \"toilet-paper-blank\": 63262,\n  \"toilet-paper-slash\": 57458,\n  \"toilet-paper\": 63262,\n  \"toilet-portable\": 58755,\n  \"toilet\": 63448,\n  \"toilets-portable\": 58756,\n  \"toolbox\": 62802,\n  \"tools\": 63449,\n  \"tooth\": 62921,\n  \"torah\": 63136,\n  \"torii-gate\": 63137,\n  \"tornado\": 63343,\n  \"tower-broadcast\": 62745,\n  \"tower-cell\": 58757,\n  \"tower-observation\": 58758,\n  \"tractor\": 63266,\n  \"trademark\": 62044,\n  \"traffic-light\": 63031,\n  \"trailer\": 57409,\n  \"train-subway\": 62009,\n  \"train-tram\": 58804,\n  \"train\": 62008,\n  \"tram\": 63450,\n  \"transgender-alt\": 61989,\n  \"transgender\": 61989,\n  \"trash-alt\": 62189,\n  \"trash-arrow-up\": 63529,\n  \"trash-can-arrow-up\": 63530,\n  \"trash-can\": 62189,\n  \"trash-restore-alt\": 63530,\n  \"trash-restore\": 63529,\n  \"trash\": 61944,\n  \"tree-city\": 58759,\n  \"tree\": 61883,\n  \"triangle-circle-square\": 63007,\n  \"triangle-exclamation\": 61553,\n  \"trophy\": 61585,\n  \"trowel-bricks\": 58762,\n  \"trowel\": 58761,\n  \"truck-arrow-right\": 58763,\n  \"truck-droplet\": 58764,\n  \"truck-fast\": 62603,\n  \"truck-field-un\": 58766,\n  \"truck-field\": 58765,\n  \"truck-front\": 58039,\n  \"truck-loading\": 62686,\n  \"truck-medical\": 61689,\n  \"truck-monster\": 63035,\n  \"truck-moving\": 62687,\n  \"truck-pickup\": 63036,\n  \"truck-plane\": 58767,\n  \"truck-ramp-box\": 62686,\n  \"truck\": 61649,\n  \"try\": 58043,\n  \"tshirt\": 62803,\n  \"tty\": 61924,\n  \"turkish-lira-sign\": 58043,\n  \"turkish-lira\": 58043,\n  \"turn-down\": 62398,\n  \"turn-up\": 62399,\n  \"tv-alt\": 62060,\n  \"tv\": 62060,\n  \"u\": 85,\n  \"umbrella-beach\": 62922,\n  \"umbrella\": 61673,\n  \"underline\": 61645,\n  \"undo-alt\": 62186,\n  \"undo\": 61666,\n  \"universal-access\": 62106,\n  \"university\": 61852,\n  \"unlink\": 61735,\n  \"unlock-alt\": 61758,\n  \"unlock-keyhole\": 61758,\n  \"unlock\": 61596,\n  \"unsorted\": 61660,\n  \"up-down-left-right\": 61618,\n  \"up-down\": 62264,\n  \"up-long\": 62220,\n  \"up-right-and-down-left-from-center\": 62500,\n  \"up-right-from-square\": 62301,\n  \"upload\": 61587,\n  \"usd\": 36,\n  \"user-alt-slash\": 62726,\n  \"user-alt\": 61447,\n  \"user-astronaut\": 62715,\n  \"user-check\": 62716,\n  \"user-circle\": 62141,\n  \"user-clock\": 62717,\n  \"user-cog\": 62718,\n  \"user-doctor\": 61680,\n  \"user-edit\": 62719,\n  \"user-friends\": 62720,\n  \"user-gear\": 62718,\n  \"user-graduate\": 62721,\n  \"user-group\": 62720,\n  \"user-injured\": 63272,\n  \"user-large-slash\": 62726,\n  \"user-large\": 61447,\n  \"user-lock\": 62722,\n  \"user-md\": 61680,\n  \"user-minus\": 62723,\n  \"user-ninja\": 62724,\n  \"user-nurse\": 63535,\n  \"user-pen\": 62719,\n  \"user-plus\": 62004,\n  \"user-secret\": 61979,\n  \"user-shield\": 62725,\n  \"user-slash\": 62726,\n  \"user-tag\": 62727,\n  \"user-tie\": 62728,\n  \"user-times\": 62005,\n  \"user-xmark\": 62005,\n  \"user\": 61447,\n  \"users-between-lines\": 58769,\n  \"users-cog\": 62729,\n  \"users-gear\": 62729,\n  \"users-line\": 58770,\n  \"users-rays\": 58771,\n  \"users-rectangle\": 58772,\n  \"users-slash\": 57459,\n  \"users-viewfinder\": 58773,\n  \"users\": 61632,\n  \"utensil-spoon\": 62181,\n  \"utensils\": 62183,\n  \"v\": 86,\n  \"van-shuttle\": 62902,\n  \"vault\": 58053,\n  \"vcard\": 62139,\n  \"vector-polygon\": 62958,\n  \"venus-double\": 61990,\n  \"venus-mars\": 61992,\n  \"venus\": 61985,\n  \"vest-patches\": 57478,\n  \"vest\": 57477,\n  \"vial-circle-check\": 58774,\n  \"vial-virus\": 58775,\n  \"vial\": 62610,\n  \"vials\": 62611,\n  \"video-camera\": 61501,\n  \"video-slash\": 62690,\n  \"video\": 61501,\n  \"vihara\": 63143,\n  \"virgo\": 59472,\n  \"virus-covid-slash\": 58537,\n  \"virus-covid\": 58536,\n  \"virus-slash\": 57461,\n  \"virus\": 57460,\n  \"viruses\": 57462,\n  \"voicemail\": 63639,\n  \"volcano\": 63344,\n  \"volleyball-ball\": 62559,\n  \"volleyball\": 62559,\n  \"volume-control-phone\": 62112,\n  \"volume-down\": 61479,\n  \"volume-high\": 61480,\n  \"volume-low\": 61479,\n  \"volume-medium\": 63144,\n  \"volume-mute\": 63145,\n  \"volume-off\": 61478,\n  \"volume-times\": 63145,\n  \"volume-up\": 61480,\n  \"volume-xmark\": 63145,\n  \"volume\": 63144,\n  \"vote-yea\": 63346,\n  \"vr-cardboard\": 63273,\n  \"w\": 87,\n  \"walkie-talkie\": 63727,\n  \"walking\": 62804,\n  \"wallet\": 62805,\n  \"wand-magic-sparkles\": 58058,\n  \"wand-magic\": 61648,\n  \"wand-sparkles\": 63275,\n  \"warehouse\": 62612,\n  \"warning\": 61553,\n  \"water-ladder\": 62917,\n  \"water\": 63347,\n  \"wave-square\": 63550,\n  \"web-awesome\": 59010,\n  \"weight-hanging\": 62925,\n  \"weight-scale\": 62614,\n  \"weight\": 62614,\n  \"wheat-alt\": 58061,\n  \"wheat-awn-circle-exclamation\": 58776,\n  \"wheat-awn\": 58061,\n  \"wheelchair-alt\": 58062,\n  \"wheelchair-move\": 58062,\n  \"wheelchair\": 61843,\n  \"whiskey-glass\": 63392,\n  \"wifi-3\": 61931,\n  \"wifi-strong\": 61931,\n  \"wifi\": 61931,\n  \"wind\": 63278,\n  \"window-close\": 62480,\n  \"window-maximize\": 62160,\n  \"window-minimize\": 62161,\n  \"window-restore\": 62162,\n  \"wine-bottle\": 63279,\n  \"wine-glass-alt\": 62926,\n  \"wine-glass-empty\": 62926,\n  \"wine-glass\": 62691,\n  \"won-sign\": 61785,\n  \"won\": 61785,\n  \"worm\": 58777,\n  \"wrench\": 61613,\n  \"x-ray\": 62615,\n  \"x\": 88,\n  \"xmark-circle\": 61527,\n  \"xmark-square\": 62163,\n  \"xmark\": 61453,\n  \"xmarks-lines\": 58778,\n  \"y\": 89,\n  \"yen-sign\": 61783,\n  \"yen\": 61783,\n  \"yin-yang\": 63149,\n  \"z\": 90,\n  \"zap\": 61671\n}"
  },
  {
    "path": "packages/fontawesome-free-solid/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontawesome-free-solid\",\n  \"version\": \"0.2.0\",\n  \"description\": \"Fontawesome Free Solid font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\",\n    \"./fonts/*.ttf\": \"./fonts/*.ttf\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"fontawesome-free-solid\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/fontawesome-free-solid\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\",\n    \"@fortawesome/fontawesome-free\": \"7.2.0\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-free-solid/react-native-vector-icons-fontawesome-free-solid.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-fontawesome-free-solid'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\nend\n"
  },
  {
    "path": "packages/fontawesome-free-solid/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeFreeSolid icon set component.\n * Usage: <FontAwesomeFreeSolid name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeFreeSolid.json';\n\nexport const FontAwesomeFreeSolid = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Free-Solid',\n  fontFileName: 'fa-solid-900.ttf',\n  fontSource: require('../fonts/fa-solid-900.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require\n});\n\nexport type FontAwesomeFreeSolidIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeFreeSolid;\n"
  },
  {
    "path": "packages/fontawesome-free-solid/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeFreeSolid icon set component.\n * Usage: <FontAwesomeFreeSolid name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeFreeSolid.json';\n\nexport const FontAwesomeFreeSolid = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Free-Solid',\n  fontFileName: 'fa-solid-900.ttf',\n});\n\nexport type FontAwesomeFreeSolidIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeFreeSolid;\n"
  },
  {
    "path": "packages/fontawesome-free-solid/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/fontawesome-free-solid/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-brands/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontawesome-pro-brands\",\n    \"upstreamFont\": {\n      \"registry\": \"https://npm.fontawesome.com\",\n      \"packageName\": \"@fortawesome/fontawesome-pro\",\n      \"versionOnly\": true\n    },\n    \"copyCustomFonts\": true,\n    \"className\": \"FontAwesomeProBrands\",\n    \"postScriptName\": \"FontAwesome7Brands-Regular\",\n    \"fontFileName\": \"fa-brands-400\",\n    \"buildSteps\": {\n      \"preScript\": {\n        \"script\": \"../fontawesome-common/scripts/fetch-pro.sh 7\"\n      },\n      \"glyphmap\": {\n        \"location\": \"fa/pro/css/all.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fa-\"\n      },\n      \"postScript\": {\n        \"script\": \"../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProBrands.json fa/pro/svgs/brands\\nrm -rf fa\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"0.1.0\",\n        \"upstream\": \"7.1.0\"\n      },\n      {\n        \"rnvi\": \"0.1.1\",\n        \"upstream\": \"7.2.0\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-brands/CHANGELOG.md",
    "content": "## 0.2.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 0.1.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 0.1.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🩹 Fixes\n\n- upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 0.1.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 0.1.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontawesome-pro-brands/README.md",
    "content": "# React Native Vector Icons - Fontawesome Pro Brands\n\nFontawesome Pro Brands font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n> [!IMPORTANT]\n> This package does not include the fonts. You must provide them yourself.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/fontawesome-pro-brands\n```\n\n## Custom Fonts\n\nThis package requires you to provide the font files. Place your `.ttf` font\nfile in the following location:\n\n```\nrnvi-fonts/fontawesome-pro-brands/fa-brands-400.ttf\n```\n\nThe font will be automatically copied during the build process for both iOS and\nAndroid.\n\n## Usage\n\n```jsx\nimport { FontAwesomeProBrands } from '@react-native-vector-icons/fontawesome-pro-brands';\n\n// ...\n\n<FontAwesomeProBrands name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 0.1.0 | 7.1.0 |\n| &gt; 0.1.1 | 7.2.0 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/fontawesome-pro-brands/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.fontawesome_pro_brands\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFontAwesomeProBrands\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.fontawesome_pro_brands\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-fontawesome-pro-brands\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-brands/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-brands) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n\ntask copyExtraFonts(type: Copy) {\n  from \"${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-brands\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-brands/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-brands) Copying custom font: ${it.file}\" }\n}\n\npreBuild.dependsOn(copyExtraFonts)\n"
  },
  {
    "path": "packages/fontawesome-pro-brands/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.fontawesome_pro_brands\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-brands/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-brands/android/src/main/java/VectorIconsFontAwesomeProBrandsPackage.kt",
    "content": "package com.reactnativevectoricons.fontawesome_pro_brands\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFontAwesomeProBrandsPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-brands/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/fontawesome-pro-brands/glyphmaps/FontAwesomeProBrands.json",
    "content": "{\n  \"11ty\": 59350,\n  \"42-group\": 57472,\n  \"500px\": 62062,\n  \"accessible-icon\": 62312,\n  \"accusoft\": 62313,\n  \"adn\": 61808,\n  \"adversal\": 62314,\n  \"affiliatetheme\": 62315,\n  \"airbnb\": 63540,\n  \"algolia\": 62316,\n  \"alipay\": 63042,\n  \"amazon-pay\": 62508,\n  \"amazon\": 62064,\n  \"amilia\": 62317,\n  \"android\": 61819,\n  \"angellist\": 61961,\n  \"angrycreative\": 62318,\n  \"angular\": 62496,\n  \"app-store-ios\": 62320,\n  \"app-store\": 62319,\n  \"apper\": 62321,\n  \"apple-pay\": 62485,\n  \"apple\": 61817,\n  \"arch-linux\": 59495,\n  \"artstation\": 63354,\n  \"asymmetrik\": 62322,\n  \"atlassian\": 63355,\n  \"audible\": 62323,\n  \"autoprefixer\": 62492,\n  \"avianex\": 62324,\n  \"aviato\": 62497,\n  \"aws\": 62325,\n  \"bandcamp\": 62165,\n  \"battle-net\": 63541,\n  \"behance-square\": 61877,\n  \"behance\": 61876,\n  \"bgg\": 59477,\n  \"bilibili\": 58329,\n  \"bimobject\": 62328,\n  \"bitbucket\": 61809,\n  \"bitcoin\": 62329,\n  \"bity\": 62330,\n  \"black-tie\": 62078,\n  \"blackberry\": 62331,\n  \"blogger-b\": 62333,\n  \"blogger\": 62332,\n  \"bluesky\": 58993,\n  \"bluetooth-b\": 62100,\n  \"bluetooth\": 62099,\n  \"board-game-geek\": 59477,\n  \"bootstrap\": 63542,\n  \"bots\": 58176,\n  \"brave-reverse\": 58941,\n  \"brave\": 58940,\n  \"btc\": 61786,\n  \"buffer\": 63543,\n  \"buromobelexperte\": 62335,\n  \"buy-n-large\": 63654,\n  \"buysellads\": 61965,\n  \"canadian-maple-leaf\": 63365,\n  \"cash-app\": 59348,\n  \"cc-amazon-pay\": 62509,\n  \"cc-amex\": 61939,\n  \"cc-apple-pay\": 62486,\n  \"cc-diners-club\": 62028,\n  \"cc-discover\": 61938,\n  \"cc-jcb\": 62027,\n  \"cc-mastercard\": 61937,\n  \"cc-paypal\": 61940,\n  \"cc-stripe\": 61941,\n  \"cc-visa\": 61936,\n  \"centercode\": 62336,\n  \"centos\": 63369,\n  \"chrome\": 62056,\n  \"chromecast\": 63544,\n  \"circle-zulip\": 59473,\n  \"claude\": 59489,\n  \"cloudflare\": 57469,\n  \"cloudscale\": 62339,\n  \"cloudsmith\": 62340,\n  \"cloudversify\": 62341,\n  \"cmplid\": 58208,\n  \"codepen\": 61899,\n  \"codiepie\": 62084,\n  \"confluence\": 63373,\n  \"connectdevelop\": 61966,\n  \"contao\": 62061,\n  \"cotton-bureau\": 63646,\n  \"cpanel\": 62344,\n  \"creative-commons-by\": 62695,\n  \"creative-commons-nc-eu\": 62697,\n  \"creative-commons-nc-jp\": 62698,\n  \"creative-commons-nc\": 62696,\n  \"creative-commons-nd\": 62699,\n  \"creative-commons-pd-alt\": 62701,\n  \"creative-commons-pd\": 62700,\n  \"creative-commons-remix\": 62702,\n  \"creative-commons-sa\": 62703,\n  \"creative-commons-sampling-plus\": 62705,\n  \"creative-commons-sampling\": 62704,\n  \"creative-commons-share\": 62706,\n  \"creative-commons-zero\": 62707,\n  \"creative-commons\": 62046,\n  \"critical-role\": 63177,\n  \"css\": 59042,\n  \"css3-alt\": 62347,\n  \"css3\": 61756,\n  \"cuttlefish\": 62348,\n  \"d-and-d-beyond\": 63178,\n  \"d-and-d\": 62349,\n  \"dailymotion\": 57426,\n  \"dart-lang\": 59027,\n  \"dashcube\": 61968,\n  \"debian\": 58891,\n  \"deezer\": 57463,\n  \"delicious\": 61861,\n  \"deploydog\": 62350,\n  \"deskpro\": 62351,\n  \"dev\": 63180,\n  \"deviantart\": 61885,\n  \"dhl\": 63376,\n  \"diaspora\": 63377,\n  \"digg\": 61862,\n  \"digital-ocean\": 62353,\n  \"discord\": 62354,\n  \"discourse\": 62355,\n  \"disqus\": 59349,\n  \"dochub\": 62356,\n  \"docker\": 62357,\n  \"draft2digital\": 62358,\n  \"dribbble-square\": 62359,\n  \"dribbble\": 61821,\n  \"dropbox\": 61803,\n  \"drupal\": 61865,\n  \"duolingo\": 59410,\n  \"dyalog\": 62361,\n  \"earlybirds\": 62362,\n  \"ebay\": 62708,\n  \"edge-legacy\": 57464,\n  \"edge\": 62082,\n  \"elementor\": 62512,\n  \"eleventy\": 59350,\n  \"ello\": 62961,\n  \"ember\": 62499,\n  \"empire\": 61905,\n  \"envira\": 62105,\n  \"erlang\": 62365,\n  \"ethereum\": 62510,\n  \"etsy\": 62167,\n  \"evernote\": 63545,\n  \"expeditedssl\": 62014,\n  \"facebook-f\": 62366,\n  \"facebook-messenger\": 62367,\n  \"facebook-square\": 61570,\n  \"facebook\": 61594,\n  \"fantasy-flight-games\": 63196,\n  \"fedex\": 63383,\n  \"fediverse\": 59493,\n  \"fedora\": 63384,\n  \"figma\": 63385,\n  \"files-pinwheel\": 59039,\n  \"firefox-browser\": 57351,\n  \"firefox\": 62057,\n  \"first-order-alt\": 62730,\n  \"first-order\": 62128,\n  \"firstdraft\": 62369,\n  \"flickr\": 61806,\n  \"flipboard\": 62541,\n  \"flutter\": 59028,\n  \"fly\": 62487,\n  \"font-awesome-alt\": 62300,\n  \"font-awesome-flag\": 62132,\n  \"font-awesome-logo-full\": 62132,\n  \"font-awesome\": 62132,\n  \"fonticons-fi\": 62370,\n  \"fonticons\": 62080,\n  \"forgejo\": 59488,\n  \"fort-awesome-alt\": 62371,\n  \"fort-awesome\": 62086,\n  \"forumbee\": 61969,\n  \"foursquare\": 61824,\n  \"free-code-camp\": 62149,\n  \"freebsd\": 62372,\n  \"fulcrum\": 62731,\n  \"galactic-republic\": 62732,\n  \"galactic-senate\": 62733,\n  \"get-pocket\": 62053,\n  \"gg-circle\": 62049,\n  \"gg\": 62048,\n  \"git-alt\": 63553,\n  \"git-square\": 61906,\n  \"git\": 61907,\n  \"gitee\": 59491,\n  \"github-alt\": 61715,\n  \"github-square\": 61586,\n  \"github\": 61595,\n  \"gitkraken\": 62374,\n  \"gitlab-square\": 58798,\n  \"gitlab\": 62102,\n  \"gitter\": 62502,\n  \"glide-g\": 62118,\n  \"glide\": 62117,\n  \"globaleaks\": 59485,\n  \"gofore\": 62375,\n  \"golang\": 58383,\n  \"goodreads-g\": 62377,\n  \"goodreads\": 62376,\n  \"google-drive\": 62378,\n  \"google-pay\": 57465,\n  \"google-play\": 62379,\n  \"google-plus-g\": 61653,\n  \"google-plus-square\": 61652,\n  \"google-plus\": 62131,\n  \"google-scholar\": 58939,\n  \"google-wallet\": 61934,\n  \"google\": 61856,\n  \"gratipay\": 61828,\n  \"grav\": 62166,\n  \"gripfire\": 62380,\n  \"grunt\": 62381,\n  \"guilded\": 57470,\n  \"gulp\": 62382,\n  \"hacker-news-square\": 62383,\n  \"hacker-news\": 61908,\n  \"hackerrank\": 62967,\n  \"hashnode\": 58521,\n  \"hips\": 62546,\n  \"hire-a-helper\": 62384,\n  \"hive\": 57471,\n  \"hooli\": 62503,\n  \"hornbill\": 62866,\n  \"hotjar\": 62385,\n  \"houzz\": 62076,\n  \"html5\": 61755,\n  \"hubspot\": 62386,\n  \"hugging-face\": 59497,\n  \"ideal\": 57363,\n  \"imdb\": 62168,\n  \"innosoft\": 57472,\n  \"instagram-square\": 57429,\n  \"instagram\": 61805,\n  \"instalod\": 57473,\n  \"intercom\": 63407,\n  \"internet-explorer\": 62059,\n  \"invision\": 63408,\n  \"ioxhost\": 61960,\n  \"itch-io\": 63546,\n  \"itunes-note\": 62389,\n  \"itunes\": 62388,\n  \"java\": 62692,\n  \"jedi-order\": 62734,\n  \"jenkins\": 62390,\n  \"jira\": 63409,\n  \"joget\": 62391,\n  \"joomla\": 61866,\n  \"js-square\": 62393,\n  \"js\": 62392,\n  \"jsfiddle\": 61900,\n  \"julia\": 59474,\n  \"jxl\": 59003,\n  \"kaggle\": 62970,\n  \"kakao-talk\": 59351,\n  \"keybase\": 62709,\n  \"keycdn\": 62394,\n  \"kickstarter-k\": 62396,\n  \"kickstarter\": 62395,\n  \"ko-fi\": 59478,\n  \"korvue\": 62511,\n  \"kubernetes\": 59479,\n  \"laravel\": 62397,\n  \"lastfm-square\": 61955,\n  \"lastfm\": 61954,\n  \"leanpub\": 61970,\n  \"leetcode\": 59498,\n  \"less\": 62493,\n  \"letterboxd\": 58925,\n  \"line\": 62400,\n  \"linkedin-in\": 61665,\n  \"linkedin\": 61580,\n  \"linktree\": 59352,\n  \"linode\": 62136,\n  \"linux\": 61820,\n  \"lumon-drop\": 59363,\n  \"lumon\": 59362,\n  \"lyft\": 62403,\n  \"magento\": 62404,\n  \"mailchimp\": 62878,\n  \"mandalorian\": 62735,\n  \"markdown\": 62991,\n  \"mastodon\": 62710,\n  \"maxcdn\": 61750,\n  \"mdb\": 63690,\n  \"medapps\": 62406,\n  \"medium-m\": 62010,\n  \"medium\": 62010,\n  \"medrt\": 62408,\n  \"meetup\": 62176,\n  \"megaport\": 62883,\n  \"mendeley\": 63411,\n  \"meta\": 58523,\n  \"microblog\": 57370,\n  \"microsoft\": 62410,\n  \"mintbit\": 58927,\n  \"mix\": 62411,\n  \"mixcloud\": 62089,\n  \"mixer\": 57430,\n  \"mizuni\": 62412,\n  \"modx\": 62085,\n  \"monero\": 62416,\n  \"napster\": 62418,\n  \"neos\": 62994,\n  \"nfc-directional\": 58672,\n  \"nfc-symbol\": 58673,\n  \"nimblr\": 62888,\n  \"node-js\": 62419,\n  \"node\": 62489,\n  \"notion\": 59353,\n  \"npm\": 62420,\n  \"ns8\": 62421,\n  \"nutritionix\": 62422,\n  \"obsidian\": 59513,\n  \"octopus-deploy\": 57474,\n  \"odnoklassniki-square\": 62052,\n  \"odnoklassniki\": 62051,\n  \"odysee\": 58822,\n  \"old-republic\": 62736,\n  \"openai\": 59343,\n  \"opencart\": 62013,\n  \"openid\": 61851,\n  \"openstreetmap\": 59499,\n  \"opensuse\": 58923,\n  \"opera\": 62058,\n  \"optin-monster\": 62012,\n  \"orcid\": 63698,\n  \"osi\": 62490,\n  \"padlet\": 58528,\n  \"page4\": 62423,\n  \"pagelines\": 61836,\n  \"palfed\": 62424,\n  \"pandora\": 59354,\n  \"patreon\": 62425,\n  \"paypal\": 61933,\n  \"perbyte\": 57475,\n  \"periscope\": 62426,\n  \"phabricator\": 62427,\n  \"phoenix-framework\": 62428,\n  \"phoenix-squadron\": 62737,\n  \"php\": 62551,\n  \"pied-piper-alt\": 61864,\n  \"pied-piper-hat\": 62693,\n  \"pied-piper-pp\": 61863,\n  \"pied-piper-square\": 57374,\n  \"pied-piper\": 62126,\n  \"pinterest-p\": 62001,\n  \"pinterest-square\": 61651,\n  \"pinterest\": 61650,\n  \"pix\": 58426,\n  \"pixelfed\": 59355,\n  \"pixiv\": 58944,\n  \"playstation\": 62431,\n  \"postgresql\": 59480,\n  \"product-hunt\": 62088,\n  \"pushed\": 62433,\n  \"python\": 62434,\n  \"qq\": 61910,\n  \"quinscape\": 62553,\n  \"quora\": 62148,\n  \"r-project\": 62711,\n  \"raspberry-pi\": 63419,\n  \"ravelry\": 62169,\n  \"react\": 62491,\n  \"reacteurope\": 63325,\n  \"readme\": 62677,\n  \"rebel\": 61904,\n  \"red-river\": 62435,\n  \"reddit-alien\": 62081,\n  \"reddit-square\": 61858,\n  \"reddit\": 61857,\n  \"redhat\": 63420,\n  \"rendact\": 62436,\n  \"renren\": 61835,\n  \"replyd\": 62438,\n  \"researchgate\": 62712,\n  \"resolving\": 62439,\n  \"rev\": 62898,\n  \"rocketchat\": 62440,\n  \"rockrms\": 62441,\n  \"rust\": 57466,\n  \"safari\": 62055,\n  \"salesforce\": 63547,\n  \"sass\": 62494,\n  \"scaleway\": 59481,\n  \"schlix\": 62442,\n  \"screenpal\": 58736,\n  \"scribd\": 62090,\n  \"searchengin\": 62443,\n  \"sellcast\": 62170,\n  \"sellsy\": 61971,\n  \"servicestack\": 62444,\n  \"shirtsinbulk\": 61972,\n  \"shoelace\": 58892,\n  \"shopify\": 57431,\n  \"shopware\": 62901,\n  \"signal-messenger\": 58979,\n  \"simplybuilt\": 61973,\n  \"sistrix\": 62446,\n  \"sith\": 62738,\n  \"sitrox\": 58442,\n  \"sketch\": 63430,\n  \"skyatlas\": 61974,\n  \"skype\": 61822,\n  \"slack-hash\": 61848,\n  \"slack\": 61848,\n  \"slideshare\": 61927,\n  \"snapchat-ghost\": 62123,\n  \"snapchat-square\": 62125,\n  \"snapchat\": 62123,\n  \"solana\": 59486,\n  \"soundcloud\": 61886,\n  \"sourcetree\": 63443,\n  \"space-awesome\": 58796,\n  \"speakap\": 62451,\n  \"speaker-deck\": 63548,\n  \"spotify\": 61884,\n  \"square-behance\": 61877,\n  \"square-bluesky\": 59043,\n  \"square-deskpro\": 59460,\n  \"square-dribbble\": 62359,\n  \"square-facebook\": 61570,\n  \"square-figma\": 59364,\n  \"square-font-awesome-stroke\": 62300,\n  \"square-font-awesome\": 58797,\n  \"square-git\": 61906,\n  \"square-github\": 61586,\n  \"square-gitlab\": 58798,\n  \"square-google-plus\": 61652,\n  \"square-hacker-news\": 62383,\n  \"square-instagram\": 57429,\n  \"square-js\": 62393,\n  \"square-kickstarter\": 62395,\n  \"square-lastfm\": 61955,\n  \"square-letterboxd\": 58926,\n  \"square-linkedin\": 59344,\n  \"square-odnoklassniki\": 62052,\n  \"square-pied-piper\": 57374,\n  \"square-pinterest\": 61651,\n  \"square-reddit\": 61858,\n  \"square-snapchat\": 62125,\n  \"square-steam\": 61879,\n  \"square-threads\": 58905,\n  \"square-tumblr\": 61812,\n  \"square-twitter\": 61569,\n  \"square-upwork\": 59004,\n  \"square-viadeo\": 62122,\n  \"square-vimeo\": 61844,\n  \"square-web-awesome-stroke\": 59012,\n  \"square-web-awesome\": 59011,\n  \"square-whatsapp\": 62476,\n  \"square-x-twitter\": 58906,\n  \"square-xing\": 61801,\n  \"square-youtube\": 62513,\n  \"squarespace\": 62910,\n  \"stack-exchange\": 61837,\n  \"stack-overflow\": 61804,\n  \"stackpath\": 63554,\n  \"staylinked\": 62453,\n  \"steam-square\": 61879,\n  \"steam-symbol\": 62454,\n  \"steam\": 61878,\n  \"sticker-mule\": 62455,\n  \"strava\": 62504,\n  \"stripe-s\": 62506,\n  \"stripe\": 62505,\n  \"stubber\": 58823,\n  \"studiovinari\": 62456,\n  \"stumbleupon-circle\": 61859,\n  \"stumbleupon\": 61860,\n  \"superpowers\": 62173,\n  \"supple\": 62457,\n  \"supportnow\": 59443,\n  \"suse\": 63446,\n  \"svelte\": 59496,\n  \"swift\": 63713,\n  \"symfony\": 63549,\n  \"symfonycasts\": 59563,\n  \"tailwind-css\": 59494,\n  \"teamspeak\": 62713,\n  \"telegram-plane\": 62150,\n  \"telegram\": 62150,\n  \"tencent-weibo\": 61909,\n  \"tex\": 59391,\n  \"the-red-yeti\": 63133,\n  \"themeco\": 62918,\n  \"themeisle\": 62130,\n  \"think-peaks\": 63281,\n  \"threads\": 58904,\n  \"threema\": 59487,\n  \"tidal\": 59356,\n  \"tiktok\": 57467,\n  \"tor-browser\": 59448,\n  \"trade-federation\": 62739,\n  \"trello\": 61825,\n  \"tumblr-square\": 61812,\n  \"tumblr\": 61811,\n  \"twitch\": 61928,\n  \"twitter-square\": 61569,\n  \"twitter\": 61593,\n  \"typescript\": 59456,\n  \"typo3\": 62507,\n  \"uber\": 62466,\n  \"ubuntu\": 63455,\n  \"uikit\": 62467,\n  \"ultralytics-hub\": 59502,\n  \"ultralytics-yolo\": 59503,\n  \"ultralytics\": 59501,\n  \"umbraco\": 63720,\n  \"uncharted\": 57476,\n  \"uniregistry\": 62468,\n  \"unison\": 59476,\n  \"unity\": 57417,\n  \"unreal-engine\": 59484,\n  \"unsplash\": 57468,\n  \"untappd\": 62469,\n  \"ups\": 63456,\n  \"upwork\": 58945,\n  \"usb\": 62087,\n  \"usps\": 63457,\n  \"ussunnah\": 62471,\n  \"vaadin\": 62472,\n  \"venmo-v\": 59483,\n  \"venmo\": 59482,\n  \"viacoin\": 62007,\n  \"viadeo-square\": 62122,\n  \"viadeo\": 62121,\n  \"viber\": 62473,\n  \"vim\": 59530,\n  \"vimeo-square\": 61844,\n  \"vimeo-v\": 62077,\n  \"vimeo\": 62474,\n  \"vine\": 61898,\n  \"vk\": 61833,\n  \"vnv\": 62475,\n  \"vsco\": 59357,\n  \"vuejs\": 62495,\n  \"w3c\": 59358,\n  \"watchman-monitoring\": 57479,\n  \"waze\": 63551,\n  \"web-awesome\": 59010,\n  \"webflow\": 58972,\n  \"weebly\": 62924,\n  \"weibo\": 61834,\n  \"weixin\": 61911,\n  \"whatsapp-square\": 62476,\n  \"whatsapp\": 62002,\n  \"whmcs\": 62477,\n  \"wikipedia-w\": 62054,\n  \"windows\": 61818,\n  \"wirsindhandwerk\": 58064,\n  \"wix\": 62927,\n  \"wizards-of-the-coast\": 63280,\n  \"wodu\": 57480,\n  \"wolf-pack-battalion\": 62740,\n  \"wordpress-simple\": 62481,\n  \"wordpress\": 61850,\n  \"wpbeginner\": 62103,\n  \"wpexplorer\": 62174,\n  \"wpforms\": 62104,\n  \"wpressr\": 62436,\n  \"wsh\": 58064,\n  \"x-twitter\": 58907,\n  \"xbox\": 62482,\n  \"xing-square\": 61801,\n  \"xing\": 61800,\n  \"xmpp\": 59492,\n  \"y-combinator\": 62011,\n  \"yahoo\": 61854,\n  \"yammer\": 63552,\n  \"yandex-international\": 62484,\n  \"yandex\": 62483,\n  \"yarn\": 63459,\n  \"yelp\": 61929,\n  \"yoast\": 62129,\n  \"youtube-square\": 62513,\n  \"youtube\": 61799,\n  \"zhihu\": 63039,\n  \"zoom\": 59515,\n  \"zulip\": 59475\n}"
  },
  {
    "path": "packages/fontawesome-pro-brands/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontawesome-pro-brands\",\n  \"version\": \"0.2.0\",\n  \"description\": \"Fontawesome Pro Brands font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"fontawesome-pro-brands\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/fontawesome-pro-brands\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-brands/react-native-vector-icons-fontawesome-pro-brands.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-fontawesome-pro-brands'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\n\n  s.script_phase = {\n    name: 'Copy Custom Fonts',\n    execution_position: :after_compile,\n    script: <<~SCRIPT\n      set -e\n\n      HEAD=\"(RNVI-fontawesome-pro-brands)\"\n\n      echo \"${HEAD} START_COPY_FONTS\"\n\n      echo \"${HEAD} PWD: $(pwd)\"\n\n      #\n      # Find the custom font Directory\n      #\n\n      # Assume the project root is always two directories above the POD_ROOT\n      echo \"${HEAD} PODS_ROOT: $PODS_ROOT\"\n\n      PROJECT_ROOT=\"${PODS_ROOT}/../..\"\n      echo \"${HEAD} PROJECT_ROOT: $PROJECT_ROOT\"\n\n      cd $PROJECT_ROOT\n      FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/\"//g')\n      if [ -z \"$FONTS_DIR\" ]; then\n        FONTS_DIR=\"rnvi-fonts\"\n      fi\n      echo \"${HEAD} FONTS_DIR: $FONTS_DIR\"\n\n      FONTS_DIR=\"${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-brands\"\n      if [ ! -d \"$FONTS_DIR\" ]; then\n        echo \"${HEAD} $FONTS_DIR not found\"\n        exit 0\n      fi\n\n      #\n      # Find the destination we copy to\n      #\n\n      echo \"${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR\"\n      XCODE_DIR=$(ls -d \"$PODS_CONFIGURATION_BUILD_DIR\"/*.app)\n      echo \"${HEAD} XCODE_DIR: $XCODE_DIR\"\n      if [ -z \"$XCODE_DIR\" ]; then\n        echo \"Could not find XCODE_DIR to copy fonts to\"\n        exit 1\n      fi\n\n      DEST_DIR=\"${XCODE_DIR}\"\n      mkdir -p \"$DEST_DIR\"\n\n      #\n      # Copy the fonts\n      #\n\n      echo \"${HEAD} Copying the following files to $DEST_DIR\"\n      ls \"$FONTS_DIR\" | sed \"s/^/${HEAD} /\"\n\n      rsync -avr --copy-links --no-relative $FONTS_DIR/ \"$DEST_DIR\"\n\n      echo \"${HEAD} END:RNVI_COPY_FONTS\"\n    SCRIPT\n  }\nend\n"
  },
  {
    "path": "packages/fontawesome-pro-brands/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProBrands icon set component.\n * Usage: <FontAwesomeProBrands name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProBrands.json';\n\nexport const FontAwesomeProBrands = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Brands-Regular',\n  fontFileName: 'fa-brands-400.ttf',\n});\n\nexport type FontAwesomeProBrandsIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProBrands;\n"
  },
  {
    "path": "packages/fontawesome-pro-brands/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProBrands icon set component.\n * Usage: <FontAwesomeProBrands name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProBrands.json';\n\nexport const FontAwesomeProBrands = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Brands-Regular',\n  fontFileName: 'fa-brands-400.ttf',\n});\n\nexport type FontAwesomeProBrandsIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProBrands;\n"
  },
  {
    "path": "packages/fontawesome-pro-brands/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-brands/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-light/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontawesome-pro-duotone-light\",\n    \"upstreamFont\": {\n      \"registry\": \"https://npm.fontawesome.com\",\n      \"packageName\": \"@fortawesome/fontawesome-pro\",\n      \"versionOnly\": true\n    },\n    \"copyCustomFonts\": true,\n    \"className\": \"FontAwesomeProDuotoneLight\",\n    \"postScriptName\": \"FontAwesome7Duotone-Light\",\n    \"fontFileName\": \"fa-duotone-light-300\",\n    \"buildSteps\": {\n      \"preScript\": {\n        \"script\": \"../fontawesome-common/scripts/fetch-pro.sh 7\"\n      },\n      \"glyphmap\": {\n        \"location\": \"fa/pro/css/all.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fa-\"\n      },\n      \"postScript\": {\n        \"script\": \"../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProDuotoneLight.json fa/pro/svgs/duotone-light\\nrm -rf fa\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"0.1.0\",\n        \"upstream\": \"7.1.0\"\n      },\n      {\n        \"rnvi\": \"0.1.1\",\n        \"upstream\": \"7.2.0\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-light/CHANGELOG.md",
    "content": "## 0.2.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 0.1.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 0.1.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🩹 Fixes\n\n- upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 0.1.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 0.1.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontawesome-pro-duotone-light/README.md",
    "content": "# React Native Vector Icons - Fontawesome Pro Duotone Light\n\nFontawesome Pro Duotone Light font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n> [!IMPORTANT]\n> This package does not include the fonts. You must provide them yourself.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/fontawesome-pro-duotone-light\n```\n\n## Custom Fonts\n\nThis package requires you to provide the font files. Place your `.ttf` font\nfile in the following location:\n\n```\nrnvi-fonts/fontawesome-pro-duotone-light/fa-duotone-light-300.ttf\n```\n\nThe font will be automatically copied during the build process for both iOS and\nAndroid.\n\n## Usage\n\n```jsx\nimport { FontAwesomeProDuotoneLight } from '@react-native-vector-icons/fontawesome-pro-duotone-light';\n\n// ...\n\n<FontAwesomeProDuotoneLight name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 0.1.0 | 7.1.0 |\n| &gt; 0.1.1 | 7.2.0 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-light/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.fontawesome_pro_duotone_light\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFontAwesomeProDuotoneLight\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.fontawesome_pro_duotone_light\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-fontawesome-pro-duotone-light\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-duotone-light/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-duotone-light) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n\ntask copyExtraFonts(type: Copy) {\n  from \"${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-duotone-light\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-duotone-light/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-duotone-light) Copying custom font: ${it.file}\" }\n}\n\npreBuild.dependsOn(copyExtraFonts)\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-light/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.fontawesome_pro_duotone_light\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-light/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-light/android/src/main/java/VectorIconsFontAwesomeProDuotoneLightPackage.kt",
    "content": "package com.reactnativevectoricons.fontawesome_pro_duotone_light\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFontAwesomeProDuotoneLightPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-light/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-light/glyphmaps/FontAwesomeProDuotoneLight.json",
    "content": "{\n  \"0\": 48,\n  \"1\": 49,\n  \"2\": 50,\n  \"3\": 51,\n  \"4\": 52,\n  \"5\": 53,\n  \"6\": 54,\n  \"7\": 55,\n  \"8\": 56,\n  \"9\": 57,\n  \"100\": 58396,\n  \"00\": 58471,\n  \"360-degrees\": 58076,\n  \"a\": 65,\n  \"abacus\": 63040,\n  \"accent-grave\": 96,\n  \"acorn\": 63150,\n  \"ad\": 63041,\n  \"add\": 43,\n  \"address-book\": 62137,\n  \"address-card\": 62139,\n  \"adjust\": 61506,\n  \"aeropress\": 59435,\n  \"air-conditioner\": 63732,\n  \"air-freshener\": 62928,\n  \"airplay-audio\": 59259,\n  \"airplay\": 57481,\n  \"alarm-clock\": 62286,\n  \"alarm-exclamation\": 63555,\n  \"alarm-minus\": 59395,\n  \"alarm-plus\": 63556,\n  \"alarm-snooze\": 63557,\n  \"album-circle-plus\": 58508,\n  \"album-circle-user\": 58509,\n  \"album-collection-circle-plus\": 58510,\n  \"album-collection-circle-user\": 58511,\n  \"album-collection\": 63648,\n  \"album\": 63647,\n  \"alicorn\": 63152,\n  \"alien-8bit\": 63734,\n  \"alien-monster\": 63734,\n  \"alien\": 63733,\n  \"align-center\": 61495,\n  \"align-justify\": 61497,\n  \"align-left\": 61494,\n  \"align-right\": 61496,\n  \"align-slash\": 63558,\n  \"allergies\": 62561,\n  \"almost-equal-to\": 59416,\n  \"alt\": 57482,\n  \"ambulance\": 61689,\n  \"american-sign-language-interpreting\": 62115,\n  \"amp-guitar\": 63649,\n  \"ampersand\": 38,\n  \"analytics\": 63043,\n  \"anchor-circle-check\": 58538,\n  \"anchor-circle-exclamation\": 58539,\n  \"anchor-circle-xmark\": 58540,\n  \"anchor-lock\": 58541,\n  \"anchor\": 61757,\n  \"angel\": 63353,\n  \"angle-90\": 57485,\n  \"angle-double-down\": 61699,\n  \"angle-double-left\": 61696,\n  \"angle-double-right\": 61697,\n  \"angle-double-up\": 61698,\n  \"angle-down\": 61703,\n  \"angle-left\": 61700,\n  \"angle-right\": 61701,\n  \"angle-up\": 61702,\n  \"angle\": 57484,\n  \"angles-down\": 61699,\n  \"angles-left\": 61696,\n  \"angles-right\": 61697,\n  \"angles-up-down\": 58893,\n  \"angles-up\": 61698,\n  \"angry\": 62806,\n  \"ankh\": 63044,\n  \"ant\": 59008,\n  \"apartment\": 58472,\n  \"aperture\": 58079,\n  \"apostrophe\": 39,\n  \"apple-alt\": 62929,\n  \"apple-core\": 57487,\n  \"apple-crate\": 63153,\n  \"apple-whole\": 62929,\n  \"aquarius\": 59461,\n  \"archive\": 61831,\n  \"archway\": 62807,\n  \"area-chart\": 61950,\n  \"aries\": 59462,\n  \"arrow-alt-circle-down\": 62296,\n  \"arrow-alt-circle-left\": 62297,\n  \"arrow-alt-circle-right\": 62298,\n  \"arrow-alt-circle-up\": 62299,\n  \"arrow-alt-down\": 62292,\n  \"arrow-alt-from-bottom\": 62278,\n  \"arrow-alt-from-left\": 62279,\n  \"arrow-alt-from-right\": 62280,\n  \"arrow-alt-from-top\": 62281,\n  \"arrow-alt-left\": 62293,\n  \"arrow-alt-right\": 62294,\n  \"arrow-alt-square-down\": 62288,\n  \"arrow-alt-square-left\": 62289,\n  \"arrow-alt-square-right\": 62290,\n  \"arrow-alt-square-up\": 62291,\n  \"arrow-alt-to-bottom\": 62282,\n  \"arrow-alt-to-left\": 62283,\n  \"arrow-alt-to-right\": 62284,\n  \"arrow-alt-to-top\": 62285,\n  \"arrow-alt-up\": 62295,\n  \"arrow-archery\": 59449,\n  \"arrow-circle-down\": 61611,\n  \"arrow-circle-left\": 61608,\n  \"arrow-circle-right\": 61609,\n  \"arrow-circle-up\": 61610,\n  \"arrow-down-1-9\": 61794,\n  \"arrow-down-9-1\": 63622,\n  \"arrow-down-a-z\": 61789,\n  \"arrow-down-arrow-up\": 63619,\n  \"arrow-down-big-small\": 63628,\n  \"arrow-down-from-arc\": 58900,\n  \"arrow-down-from-bracket\": 58983,\n  \"arrow-down-from-dotted-line\": 57488,\n  \"arrow-down-from-line\": 62277,\n  \"arrow-down-left-and-arrow-up-right-to-center\": 57490,\n  \"arrow-down-left\": 57489,\n  \"arrow-down-long-to-line\": 59063,\n  \"arrow-down-long\": 61813,\n  \"arrow-down-right\": 57491,\n  \"arrow-down-short-wide\": 63620,\n  \"arrow-down-small-big\": 63629,\n  \"arrow-down-square-triangle\": 63625,\n  \"arrow-down-to-arc\": 58542,\n  \"arrow-down-to-bracket\": 57492,\n  \"arrow-down-to-dotted-line\": 57493,\n  \"arrow-down-to-line\": 62269,\n  \"arrow-down-to-square\": 57494,\n  \"arrow-down-triangle-square\": 63624,\n  \"arrow-down-up-across-line\": 58543,\n  \"arrow-down-up-lock\": 58544,\n  \"arrow-down-wide-short\": 61792,\n  \"arrow-down-z-a\": 63617,\n  \"arrow-down\": 61539,\n  \"arrow-from-bottom\": 62274,\n  \"arrow-from-left\": 62275,\n  \"arrow-from-right\": 62276,\n  \"arrow-from-top\": 62277,\n  \"arrow-left-arrow-right\": 59064,\n  \"arrow-left-from-arc\": 58901,\n  \"arrow-left-from-bracket\": 58984,\n  \"arrow-left-from-dotted-line\": 59065,\n  \"arrow-left-from-line\": 62276,\n  \"arrow-left-long-to-line\": 58324,\n  \"arrow-left-long\": 61815,\n  \"arrow-left-rotate\": 61666,\n  \"arrow-left-to-arc\": 58902,\n  \"arrow-left-to-bracket\": 58985,\n  \"arrow-left-to-dotted-line\": 59066,\n  \"arrow-left-to-line\": 62270,\n  \"arrow-left\": 61536,\n  \"arrow-pointer\": 62021,\n  \"arrow-progress\": 58847,\n  \"arrow-right-arrow-left\": 61676,\n  \"arrow-right-from-arc\": 58545,\n  \"arrow-right-from-bracket\": 61579,\n  \"arrow-right-from-dotted-line\": 59067,\n  \"arrow-right-from-file\": 62830,\n  \"arrow-right-from-line\": 62275,\n  \"arrow-right-long-to-line\": 58325,\n  \"arrow-right-long\": 61816,\n  \"arrow-right-rotate\": 61470,\n  \"arrow-right-to-arc\": 58546,\n  \"arrow-right-to-bracket\": 61584,\n  \"arrow-right-to-city\": 58547,\n  \"arrow-right-to-dotted-line\": 59068,\n  \"arrow-right-to-file\": 62831,\n  \"arrow-right-to-line\": 62272,\n  \"arrow-right\": 61537,\n  \"arrow-rotate-back\": 61666,\n  \"arrow-rotate-backward\": 61666,\n  \"arrow-rotate-forward\": 61470,\n  \"arrow-rotate-left-10\": 59446,\n  \"arrow-rotate-left-15\": 59526,\n  \"arrow-rotate-left-30\": 59527,\n  \"arrow-rotate-left\": 61666,\n  \"arrow-rotate-right-10\": 59447,\n  \"arrow-rotate-right-15\": 59528,\n  \"arrow-rotate-right-30\": 59529,\n  \"arrow-rotate-right\": 61470,\n  \"arrow-square-down\": 62265,\n  \"arrow-square-left\": 62266,\n  \"arrow-square-right\": 62267,\n  \"arrow-square-up\": 62268,\n  \"arrow-to-bottom\": 62269,\n  \"arrow-to-left\": 62270,\n  \"arrow-to-right\": 62272,\n  \"arrow-to-top\": 62273,\n  \"arrow-trend-down\": 57495,\n  \"arrow-trend-up\": 57496,\n  \"arrow-turn-down-left\": 58081,\n  \"arrow-turn-down-right\": 58326,\n  \"arrow-turn-down\": 61769,\n  \"arrow-turn-left-down\": 58931,\n  \"arrow-turn-left-up\": 58932,\n  \"arrow-turn-left\": 58930,\n  \"arrow-turn-right\": 58933,\n  \"arrow-turn-up\": 61768,\n  \"arrow-u-turn-down-left\": 59367,\n  \"arrow-u-turn-down-right\": 59368,\n  \"arrow-u-turn-left-down\": 59369,\n  \"arrow-u-turn-left-up\": 59370,\n  \"arrow-u-turn-right-down\": 59371,\n  \"arrow-u-turn-right-up\": 59372,\n  \"arrow-u-turn-up-left\": 59373,\n  \"arrow-u-turn-up-right\": 59374,\n  \"arrow-up-1-9\": 61795,\n  \"arrow-up-9-1\": 63623,\n  \"arrow-up-a-z\": 61790,\n  \"arrow-up-arrow-down\": 57497,\n  \"arrow-up-big-small\": 63630,\n  \"arrow-up-from-arc\": 58548,\n  \"arrow-up-from-bracket\": 57498,\n  \"arrow-up-from-dotted-line\": 57499,\n  \"arrow-up-from-ground-water\": 58549,\n  \"arrow-up-from-line\": 62274,\n  \"arrow-up-from-square\": 57500,\n  \"arrow-up-from-water-pump\": 58550,\n  \"arrow-up-left-from-circle\": 57502,\n  \"arrow-up-left\": 57501,\n  \"arrow-up-long-to-line\": 59069,\n  \"arrow-up-long\": 61814,\n  \"arrow-up-right-and-arrow-down-left-from-center\": 57504,\n  \"arrow-up-right-dots\": 58551,\n  \"arrow-up-right-from-square\": 61582,\n  \"arrow-up-right\": 57503,\n  \"arrow-up-short-wide\": 63621,\n  \"arrow-up-small-big\": 63631,\n  \"arrow-up-square-triangle\": 63627,\n  \"arrow-up-to-arc\": 58903,\n  \"arrow-up-to-bracket\": 58986,\n  \"arrow-up-to-dotted-line\": 57505,\n  \"arrow-up-to-line\": 62273,\n  \"arrow-up-triangle-square\": 63626,\n  \"arrow-up-wide-short\": 61793,\n  \"arrow-up-z-a\": 63618,\n  \"arrow-up\": 61538,\n  \"arrows-alt-h\": 62263,\n  \"arrows-alt-v\": 62264,\n  \"arrows-alt\": 61618,\n  \"arrows-cross\": 57506,\n  \"arrows-down-to-line\": 58552,\n  \"arrows-down-to-people\": 58553,\n  \"arrows-from-dotted-line\": 57507,\n  \"arrows-from-line\": 57508,\n  \"arrows-h\": 61566,\n  \"arrows-left-right-to-line\": 58554,\n  \"arrows-left-right\": 61566,\n  \"arrows-maximize\": 62237,\n  \"arrows-minimize\": 57509,\n  \"arrows-repeat-1\": 62310,\n  \"arrows-repeat\": 62308,\n  \"arrows-retweet\": 62305,\n  \"arrows-rotate-reverse\": 58928,\n  \"arrows-rotate\": 61473,\n  \"arrows-spin\": 58555,\n  \"arrows-split-up-and-left\": 58556,\n  \"arrows-to-circle\": 58557,\n  \"arrows-to-dot\": 58558,\n  \"arrows-to-dotted-line\": 57510,\n  \"arrows-to-eye\": 58559,\n  \"arrows-to-line\": 57511,\n  \"arrows-turn-right\": 58560,\n  \"arrows-turn-to-dots\": 58561,\n  \"arrows-up-down-left-right\": 61511,\n  \"arrows-up-down\": 61565,\n  \"arrows-up-to-line\": 58562,\n  \"arrows-v\": 61565,\n  \"arrows\": 61511,\n  \"asl-interpreting\": 62115,\n  \"assistive-listening-systems\": 62114,\n  \"asterisk\": 42,\n  \"at\": 64,\n  \"atlas\": 62808,\n  \"atom-alt\": 62931,\n  \"atom-simple\": 62931,\n  \"atom\": 62930,\n  \"audio-description-slash\": 57512,\n  \"audio-description\": 62110,\n  \"austral-sign\": 57513,\n  \"australian-dollar-sign\": 59134,\n  \"automobile\": 61881,\n  \"avocado\": 57514,\n  \"award-simple\": 57515,\n  \"award\": 62809,\n  \"axe-battle\": 63155,\n  \"axe\": 63154,\n  \"b\": 66,\n  \"baby-carriage\": 63357,\n  \"baby\": 63356,\n  \"backpack\": 62932,\n  \"backspace\": 62810,\n  \"backward-fast\": 61513,\n  \"backward-step\": 61512,\n  \"backward\": 61514,\n  \"bacon\": 63461,\n  \"bacteria\": 57433,\n  \"bacterium\": 57434,\n  \"badge-check\": 62262,\n  \"badge-dollar\": 63045,\n  \"badge-percent\": 63046,\n  \"badge-sheriff\": 63650,\n  \"badge\": 62261,\n  \"badger-honey\": 63156,\n  \"badminton\": 58170,\n  \"bag-seedling\": 58866,\n  \"bag-shopping-minus\": 58960,\n  \"bag-shopping-plus\": 58961,\n  \"bag-shopping\": 62096,\n  \"bagel\": 58327,\n  \"bags-shopping\": 63559,\n  \"baguette\": 58328,\n  \"bahai\": 63078,\n  \"baht-sign\": 57516,\n  \"balance-scale-left\": 62741,\n  \"balance-scale-right\": 62742,\n  \"balance-scale\": 62030,\n  \"ball-pile\": 63358,\n  \"ball-yarn\": 59086,\n  \"balloon\": 58083,\n  \"balloons\": 58084,\n  \"ballot-check\": 63283,\n  \"ballot\": 63282,\n  \"ban-bug\": 63481,\n  \"ban-parking\": 62998,\n  \"ban-smoking\": 62797,\n  \"ban\": 61534,\n  \"banana\": 58085,\n  \"band-aid\": 62562,\n  \"bandage\": 62562,\n  \"bangladeshi-taka-sign\": 58086,\n  \"banjo\": 63651,\n  \"bank\": 61852,\n  \"bar-chart\": 61568,\n  \"bar-progress-empty\": 59045,\n  \"bar-progress-full\": 59046,\n  \"bar-progress-half\": 59047,\n  \"bar-progress-quarter\": 59048,\n  \"bar-progress-three-quarters\": 59049,\n  \"bar-progress\": 59044,\n  \"barcode-alt\": 62563,\n  \"barcode-read\": 62564,\n  \"barcode-scan\": 62565,\n  \"barcode\": 61482,\n  \"barn-silo\": 63588,\n  \"barn\": 59079,\n  \"bars-filter\": 57517,\n  \"bars-progress\": 63528,\n  \"bars-sort\": 57518,\n  \"bars-staggered\": 62800,\n  \"bars\": 61641,\n  \"baseball-ball\": 62515,\n  \"baseball-bat-ball\": 62514,\n  \"baseball-bat\": 59365,\n  \"baseball\": 62515,\n  \"basket-shopping-minus\": 58962,\n  \"basket-shopping-plus\": 58963,\n  \"basket-shopping-simple\": 57519,\n  \"basket-shopping\": 62097,\n  \"basketball-ball\": 62516,\n  \"basketball-hoop\": 62517,\n  \"basketball\": 62516,\n  \"bat\": 63157,\n  \"bath\": 62157,\n  \"bathtub\": 62157,\n  \"battery-0\": 62020,\n  \"battery-1\": 57521,\n  \"battery-2\": 62019,\n  \"battery-3\": 62018,\n  \"battery-4\": 62017,\n  \"battery-5\": 62016,\n  \"battery-bolt\": 62326,\n  \"battery-car\": 62943,\n  \"battery-empty\": 62020,\n  \"battery-exclamation\": 57520,\n  \"battery-full\": 62016,\n  \"battery-half\": 62018,\n  \"battery-low\": 57521,\n  \"battery-quarter\": 62019,\n  \"battery-slash\": 62327,\n  \"battery-three-quarters\": 62017,\n  \"battery\": 62016,\n  \"bed-alt\": 63735,\n  \"bed-bunk\": 63736,\n  \"bed-empty\": 63737,\n  \"bed-front\": 63735,\n  \"bed-pulse\": 62599,\n  \"bed\": 62006,\n  \"bee\": 57522,\n  \"beer-foam\": 57523,\n  \"beer-mug-empty\": 61692,\n  \"beer-mug\": 57523,\n  \"beer\": 61692,\n  \"bell-concierge\": 62818,\n  \"bell-exclamation\": 63560,\n  \"bell-on\": 63738,\n  \"bell-plus\": 63561,\n  \"bell-ring\": 58924,\n  \"bell-school-slash\": 62934,\n  \"bell-school\": 62933,\n  \"bell-slash\": 61942,\n  \"bell\": 61683,\n  \"bells\": 63359,\n  \"bench-tree\": 58087,\n  \"betamax\": 63652,\n  \"bezier-curve\": 62811,\n  \"bible\": 63047,\n  \"bicep\": 59490,\n  \"bicycle\": 61958,\n  \"biking-mountain\": 63563,\n  \"biking\": 63562,\n  \"billboard\": 58829,\n  \"bin-bottles-recycle\": 58870,\n  \"bin-bottles\": 58869,\n  \"bin-recycle\": 58871,\n  \"bin\": 59235,\n  \"binary-circle-check\": 58172,\n  \"binary-lock\": 58173,\n  \"binary-slash\": 58174,\n  \"binary\": 58171,\n  \"binoculars\": 61925,\n  \"biohazard\": 63360,\n  \"bird\": 58473,\n  \"birthday-cake\": 61949,\n  \"bitcoin-sign\": 57524,\n  \"blackboard\": 62747,\n  \"blanket-fire\": 58330,\n  \"blanket\": 62616,\n  \"blender-phone\": 63158,\n  \"blender\": 62743,\n  \"blind\": 62109,\n  \"blinds-open\": 63740,\n  \"blinds-raised\": 63741,\n  \"blinds\": 63739,\n  \"block-brick-fire\": 58332,\n  \"block-brick\": 58331,\n  \"block-question\": 58333,\n  \"block-quote\": 57525,\n  \"block\": 58474,\n  \"blog\": 63361,\n  \"blueberries\": 58088,\n  \"bluetooth\": 62099,\n  \"bold\": 61490,\n  \"bolt-auto\": 57526,\n  \"bolt-lightning\": 57527,\n  \"bolt-slash\": 57528,\n  \"bolt\": 61671,\n  \"bomb\": 61922,\n  \"bone-break\": 62936,\n  \"bone\": 62935,\n  \"bong\": 62812,\n  \"book-alt\": 62937,\n  \"book-arrow-right\": 57529,\n  \"book-arrow-up\": 57530,\n  \"book-atlas\": 62808,\n  \"book-bible\": 63047,\n  \"book-blank\": 62937,\n  \"book-bookmark\": 57531,\n  \"book-circle-arrow-right\": 57532,\n  \"book-circle-arrow-up\": 57533,\n  \"book-circle\": 57599,\n  \"book-copy\": 57534,\n  \"book-dead\": 63159,\n  \"book-font\": 57535,\n  \"book-heart\": 62617,\n  \"book-journal-whills\": 63082,\n  \"book-law\": 57537,\n  \"book-medical\": 63462,\n  \"book-open-alt\": 57536,\n  \"book-open-cover\": 57536,\n  \"book-open-lines\": 59219,\n  \"book-open-reader\": 62938,\n  \"book-open\": 62744,\n  \"book-quran\": 63111,\n  \"book-reader\": 62938,\n  \"book-section\": 57537,\n  \"book-skull\": 63159,\n  \"book-sparkles\": 63160,\n  \"book-spells\": 63160,\n  \"book-spine\": 59220,\n  \"book-tanakh\": 63527,\n  \"book-user\": 63463,\n  \"book\": 61485,\n  \"bookmark-circle\": 57600,\n  \"bookmark-plus\": 59221,\n  \"bookmark-slash\": 57538,\n  \"bookmark\": 61486,\n  \"books-medical\": 63464,\n  \"books\": 62939,\n  \"boombox\": 63653,\n  \"boot-heeled\": 58175,\n  \"boot\": 63362,\n  \"booth-curtain\": 63284,\n  \"border-all\": 63564,\n  \"border-bottom-right\": 63572,\n  \"border-bottom\": 63565,\n  \"border-center-h\": 63644,\n  \"border-center-v\": 63645,\n  \"border-inner\": 63566,\n  \"border-left\": 63567,\n  \"border-none\": 63568,\n  \"border-outer\": 63569,\n  \"border-right\": 63570,\n  \"border-style-alt\": 63572,\n  \"border-style\": 63571,\n  \"border-top-left\": 63571,\n  \"border-top\": 63573,\n  \"bore-hole\": 58563,\n  \"bottle-baby\": 58995,\n  \"bottle-droplet\": 58564,\n  \"bottle-water\": 58565,\n  \"bow-archery\": 59450,\n  \"bow-arrow\": 63161,\n  \"bowl-chopsticks-noodles\": 58090,\n  \"bowl-chopsticks\": 58089,\n  \"bowl-food\": 58566,\n  \"bowl-hot\": 63523,\n  \"bowl-rice\": 58091,\n  \"bowl-salad\": 63518,\n  \"bowl-scoop\": 58334,\n  \"bowl-scoops\": 58335,\n  \"bowl-shaved-ice\": 58334,\n  \"bowl-soft-serve\": 58475,\n  \"bowl-spoon\": 58336,\n  \"bowling-ball-pin\": 57539,\n  \"bowling-ball\": 62518,\n  \"bowling-pins\": 62519,\n  \"box-alt\": 62618,\n  \"box-archive\": 61831,\n  \"box-arrow-down-arrow-up\": 59285,\n  \"box-arrow-down-magnifying-glass\": 59286,\n  \"box-arrow-down\": 59284,\n  \"box-arrow-up\": 59431,\n  \"box-ballot\": 63285,\n  \"box-check\": 62567,\n  \"box-circle-check\": 57540,\n  \"box-dollar\": 62624,\n  \"box-fragile\": 62619,\n  \"box-full\": 62620,\n  \"box-heart\": 62621,\n  \"box-isometric-tape\": 59288,\n  \"box-isometric\": 59287,\n  \"box-magnifying-glass\": 59432,\n  \"box-open-full\": 62620,\n  \"box-open\": 62622,\n  \"box-taped\": 62618,\n  \"box-tissue\": 57435,\n  \"box-up\": 62623,\n  \"box-usd\": 62624,\n  \"box\": 62566,\n  \"boxes-alt\": 62568,\n  \"boxes-packing\": 58567,\n  \"boxes-stacked\": 62568,\n  \"boxes\": 62568,\n  \"boxing-glove\": 62520,\n  \"bra\": 59087,\n  \"bracket-curly-left\": 123,\n  \"bracket-curly-right\": 125,\n  \"bracket-curly\": 123,\n  \"bracket-left\": 91,\n  \"bracket-round-right\": 41,\n  \"bracket-round\": 40,\n  \"bracket-square-right\": 93,\n  \"bracket-square\": 91,\n  \"bracket\": 91,\n  \"brackets-curly\": 63466,\n  \"brackets-round\": 57541,\n  \"brackets-square\": 63465,\n  \"brackets\": 63465,\n  \"braille\": 62113,\n  \"brain-arrow-curved-right\": 63095,\n  \"brain-circuit\": 57542,\n  \"brain\": 62940,\n  \"brake-warning\": 57543,\n  \"brazilian-real-sign\": 58476,\n  \"bread-loaf\": 63467,\n  \"bread-slice-butter\": 58337,\n  \"bread-slice\": 63468,\n  \"bridge-circle-check\": 58569,\n  \"bridge-circle-exclamation\": 58570,\n  \"bridge-circle-xmark\": 58571,\n  \"bridge-lock\": 58572,\n  \"bridge-suspension\": 58573,\n  \"bridge-water\": 58574,\n  \"bridge\": 58568,\n  \"briefcase-arrow-right\": 58098,\n  \"briefcase-blank\": 57544,\n  \"briefcase-clock\": 63050,\n  \"briefcase-medical\": 62569,\n  \"briefcase\": 61617,\n  \"briefs\": 59088,\n  \"brightness-low\": 57546,\n  \"brightness\": 57545,\n  \"bring-forward\": 63574,\n  \"bring-front\": 63575,\n  \"broadcast-tower\": 62745,\n  \"broccoli\": 58338,\n  \"broom-ball\": 62552,\n  \"broom-wide\": 58833,\n  \"broom\": 62746,\n  \"browser\": 62334,\n  \"browsers\": 57547,\n  \"brush\": 62813,\n  \"bucket\": 58575,\n  \"bug-slash\": 58512,\n  \"bug\": 61832,\n  \"bugs\": 58576,\n  \"building-circle-arrow-right\": 58577,\n  \"building-circle-check\": 58578,\n  \"building-circle-exclamation\": 58579,\n  \"building-circle-xmark\": 58580,\n  \"building-columns\": 61852,\n  \"building-flag\": 58581,\n  \"building-lock\": 58582,\n  \"building-magnifying-glass\": 58908,\n  \"building-memo\": 58910,\n  \"building-ngo\": 58583,\n  \"building-shield\": 58584,\n  \"building-un\": 58585,\n  \"building-user\": 58586,\n  \"building-wheat\": 58587,\n  \"building\": 61869,\n  \"buildings\": 57548,\n  \"bulldozer\": 58965,\n  \"bullhorn\": 61601,\n  \"bullseye-arrow\": 63048,\n  \"bullseye-pointer\": 63049,\n  \"bullseye\": 61760,\n  \"buoy-mooring\": 58806,\n  \"buoy\": 58805,\n  \"burger-cheese\": 63473,\n  \"burger-fries\": 57549,\n  \"burger-glass\": 57550,\n  \"burger-lettuce\": 58339,\n  \"burger-soda\": 63576,\n  \"burger\": 63493,\n  \"burn\": 62570,\n  \"burrito\": 63469,\n  \"burst-new\": 59512,\n  \"burst\": 58588,\n  \"bus-alt\": 62814,\n  \"bus-school\": 62941,\n  \"bus-side\": 59421,\n  \"bus-simple\": 62814,\n  \"bus-stop\": 59422,\n  \"bus\": 61959,\n  \"business-front\": 58460,\n  \"business-time\": 63050,\n  \"butter\": 58340,\n  \"butterfly\": 59409,\n  \"c\": 67,\n  \"cab\": 61882,\n  \"cabin\": 58477,\n  \"cabinet-filing\": 63051,\n  \"cable-car\": 63450,\n  \"cactus\": 63655,\n  \"caduceus\": 59009,\n  \"cake-candles\": 61949,\n  \"cake-slice\": 58341,\n  \"cake\": 61949,\n  \"calculator-alt\": 63052,\n  \"calculator-simple\": 63052,\n  \"calculator\": 61932,\n  \"calendar-alt\": 61555,\n  \"calendar-arrow-down\": 57552,\n  \"calendar-arrow-up\": 57553,\n  \"calendar-check\": 62068,\n  \"calendar-circle-exclamation\": 58478,\n  \"calendar-circle-minus\": 58479,\n  \"calendar-circle-plus\": 58480,\n  \"calendar-circle-user\": 58481,\n  \"calendar-circle\": 57602,\n  \"calendar-clock\": 57554,\n  \"calendar-day\": 63363,\n  \"calendar-days\": 61555,\n  \"calendar-download\": 57552,\n  \"calendar-edit\": 62259,\n  \"calendar-exclamation\": 62260,\n  \"calendar-heart\": 57555,\n  \"calendar-image\": 57556,\n  \"calendar-lines-pen\": 58482,\n  \"calendar-lines\": 57557,\n  \"calendar-minus\": 62066,\n  \"calendar-note\": 57557,\n  \"calendar-pen\": 62259,\n  \"calendar-plus\": 62065,\n  \"calendar-range\": 57558,\n  \"calendar-star\": 63286,\n  \"calendar-time\": 57554,\n  \"calendar-times\": 62067,\n  \"calendar-upload\": 57553,\n  \"calendar-users\": 58850,\n  \"calendar-week\": 63364,\n  \"calendar-xmark\": 62067,\n  \"calendar\": 61747,\n  \"calendars\": 57559,\n  \"camcorder\": 63656,\n  \"camera-alt\": 61488,\n  \"camera-cctv\": 63660,\n  \"camera-circle-ellipsis\": 59238,\n  \"camera-circle\": 57603,\n  \"camera-clock\": 59239,\n  \"camera-home\": 63742,\n  \"camera-movie\": 63657,\n  \"camera-polaroid\": 63658,\n  \"camera-retro\": 61571,\n  \"camera-rotate\": 57560,\n  \"camera-security\": 63742,\n  \"camera-shutter\": 59240,\n  \"camera-slash\": 57561,\n  \"camera-viewfinder\": 57562,\n  \"camera-web-slash\": 63539,\n  \"camera-web\": 63538,\n  \"camera\": 61488,\n  \"campfire\": 63162,\n  \"campground\": 63163,\n  \"can-food\": 58342,\n  \"cancel\": 61534,\n  \"cancer\": 59463,\n  \"candle-holder\": 63164,\n  \"candy-bar\": 58344,\n  \"candy-cane\": 63366,\n  \"candy-corn\": 63165,\n  \"candy\": 58343,\n  \"cannabis\": 62815,\n  \"cannon\": 58946,\n  \"canoe-person\": 59548,\n  \"capricorn\": 59464,\n  \"capsule\": 59226,\n  \"capsules\": 62571,\n  \"car-alt\": 62942,\n  \"car-battery\": 62943,\n  \"car-bolt\": 58177,\n  \"car-building\": 63577,\n  \"car-bump\": 62944,\n  \"car-burst\": 62945,\n  \"car-bus\": 63578,\n  \"car-circle-bolt\": 58178,\n  \"car-crash\": 62945,\n  \"car-garage\": 62946,\n  \"car-key\": 59328,\n  \"car-mechanic\": 62947,\n  \"car-mirrors\": 58179,\n  \"car-on\": 58589,\n  \"car-people\": 59036,\n  \"car-rear\": 62942,\n  \"car-side-bolt\": 58180,\n  \"car-side\": 62948,\n  \"car-siren-on\": 59330,\n  \"car-siren\": 59329,\n  \"car-tilt\": 62949,\n  \"car-tunnel\": 58590,\n  \"car-wash\": 62950,\n  \"car-wrench\": 62947,\n  \"car\": 61881,\n  \"caravan-alt\": 57344,\n  \"caravan-simple\": 57344,\n  \"caravan\": 63743,\n  \"card-club\": 58345,\n  \"card-diamond\": 58346,\n  \"card-heart\": 58347,\n  \"card-spade\": 58348,\n  \"cards-blank\": 58591,\n  \"cards\": 58349,\n  \"caret-circle-down\": 62253,\n  \"caret-circle-left\": 62254,\n  \"caret-circle-right\": 62256,\n  \"caret-circle-up\": 62257,\n  \"caret-down\": 61655,\n  \"caret-large-down\": 59436,\n  \"caret-large-left\": 59437,\n  \"caret-large-right\": 59438,\n  \"caret-large-up\": 59439,\n  \"caret-left\": 61657,\n  \"caret-right\": 61658,\n  \"caret-square-down\": 61776,\n  \"caret-square-left\": 61841,\n  \"caret-square-right\": 61778,\n  \"caret-square-up\": 61777,\n  \"caret-up\": 61656,\n  \"carpool\": 59036,\n  \"carriage-baby\": 63357,\n  \"carrot\": 63367,\n  \"cars\": 63579,\n  \"cart-arrow-down\": 61976,\n  \"cart-arrow-up\": 58350,\n  \"cart-circle-arrow-down\": 58351,\n  \"cart-circle-arrow-up\": 58352,\n  \"cart-circle-check\": 58353,\n  \"cart-circle-exclamation\": 58354,\n  \"cart-circle-plus\": 58355,\n  \"cart-circle-xmark\": 58356,\n  \"cart-flatbed-boxes\": 62581,\n  \"cart-flatbed-empty\": 62582,\n  \"cart-flatbed-suitcase\": 62877,\n  \"cart-flatbed\": 62580,\n  \"cart-minus\": 57563,\n  \"cart-plus\": 61975,\n  \"cart-shopping-fast\": 57564,\n  \"cart-shopping\": 61562,\n  \"cart-xmark\": 57565,\n  \"cash-register\": 63368,\n  \"cassette-betamax\": 63652,\n  \"cassette-tape\": 63659,\n  \"cassette-vhs\": 63724,\n  \"castle\": 57566,\n  \"cat-space\": 57345,\n  \"cat\": 63166,\n  \"cauldron\": 63167,\n  \"cctv\": 63660,\n  \"cedi-sign\": 57567,\n  \"cent-sign\": 58357,\n  \"certificate\": 61603,\n  \"chain-broken\": 61735,\n  \"chain-horizontal-slash\": 57804,\n  \"chain-horizontal\": 57803,\n  \"chain-slash\": 61735,\n  \"chain\": 61633,\n  \"chair-office\": 63169,\n  \"chair\": 63168,\n  \"chalkboard-teacher\": 62748,\n  \"chalkboard-user\": 62748,\n  \"chalkboard\": 62747,\n  \"champagne-glass\": 63390,\n  \"champagne-glasses\": 63391,\n  \"charging-station\": 62951,\n  \"chart-area\": 61950,\n  \"chart-bar\": 61568,\n  \"chart-bullet\": 57569,\n  \"chart-candlestick\": 57570,\n  \"chart-column\": 57571,\n  \"chart-diagram\": 59029,\n  \"chart-fft\": 59038,\n  \"chart-gantt\": 57572,\n  \"chart-kanban\": 58959,\n  \"chart-line-down\": 63053,\n  \"chart-line-up-down\": 58839,\n  \"chart-line-up\": 57573,\n  \"chart-line\": 61953,\n  \"chart-mixed-up-circle-currency\": 58840,\n  \"chart-mixed-up-circle-dollar\": 58841,\n  \"chart-mixed\": 63043,\n  \"chart-network\": 63370,\n  \"chart-pie-alt\": 63054,\n  \"chart-pie-simple-circle-currency\": 58884,\n  \"chart-pie-simple-circle-dollar\": 58885,\n  \"chart-pie-simple\": 63054,\n  \"chart-pie\": 61952,\n  \"chart-pyramid\": 57574,\n  \"chart-radar\": 57575,\n  \"chart-scatter-3d\": 57576,\n  \"chart-scatter-bubble\": 57577,\n  \"chart-scatter\": 63470,\n  \"chart-simple-horizontal\": 58484,\n  \"chart-simple\": 58483,\n  \"chart-sine\": 59037,\n  \"chart-tree-map\": 57578,\n  \"chart-user\": 63139,\n  \"chart-waterfall\": 57579,\n  \"check-circle\": 61528,\n  \"check-double\": 62816,\n  \"check-square\": 61770,\n  \"check-to-slot\": 63346,\n  \"check\": 61452,\n  \"cheese-swiss\": 63472,\n  \"cheese\": 63471,\n  \"cheeseburger\": 63473,\n  \"chemex\": 59440,\n  \"cherries\": 57580,\n  \"chess-bishop-alt\": 62523,\n  \"chess-bishop-piece\": 62523,\n  \"chess-bishop\": 62522,\n  \"chess-board\": 62524,\n  \"chess-clock-alt\": 62526,\n  \"chess-clock-flip\": 62526,\n  \"chess-clock\": 62525,\n  \"chess-king-alt\": 62528,\n  \"chess-king-piece\": 62528,\n  \"chess-king\": 62527,\n  \"chess-knight-alt\": 62530,\n  \"chess-knight-piece\": 62530,\n  \"chess-knight\": 62529,\n  \"chess-pawn-alt\": 62532,\n  \"chess-pawn-piece\": 62532,\n  \"chess-pawn\": 62531,\n  \"chess-queen-alt\": 62534,\n  \"chess-queen-piece\": 62534,\n  \"chess-queen\": 62533,\n  \"chess-rook-alt\": 62536,\n  \"chess-rook-piece\": 62536,\n  \"chess-rook\": 62535,\n  \"chess\": 62521,\n  \"chest-drawers\": 59523,\n  \"chestnut\": 58358,\n  \"chevron-circle-down\": 61754,\n  \"chevron-circle-left\": 61751,\n  \"chevron-circle-right\": 61752,\n  \"chevron-circle-up\": 61753,\n  \"chevron-double-down\": 62242,\n  \"chevron-double-left\": 62243,\n  \"chevron-double-right\": 62244,\n  \"chevron-double-up\": 62245,\n  \"chevron-down\": 61560,\n  \"chevron-left\": 61523,\n  \"chevron-right\": 61524,\n  \"chevron-square-down\": 62249,\n  \"chevron-square-left\": 62250,\n  \"chevron-square-right\": 62251,\n  \"chevron-square-up\": 62252,\n  \"chevron-up\": 61559,\n  \"chevrons-down\": 62242,\n  \"chevrons-left\": 62243,\n  \"chevrons-right\": 62244,\n  \"chevrons-up\": 62245,\n  \"chf-sign\": 58882,\n  \"child-combatant\": 58592,\n  \"child-dress\": 58780,\n  \"child-reaching\": 58781,\n  \"child-rifle\": 58592,\n  \"child\": 61870,\n  \"children\": 58593,\n  \"chimney\": 63371,\n  \"chocolate-bar\": 58344,\n  \"chopsticks\": 58359,\n  \"church\": 62749,\n  \"circle-0\": 57581,\n  \"circle-1\": 57582,\n  \"circle-2\": 57583,\n  \"circle-3\": 57584,\n  \"circle-4\": 57585,\n  \"circle-5\": 57586,\n  \"circle-6\": 57587,\n  \"circle-7\": 57588,\n  \"circle-8\": 57589,\n  \"circle-9\": 57590,\n  \"circle-a\": 57591,\n  \"circle-ampersand\": 57592,\n  \"circle-arrow-down-left\": 57593,\n  \"circle-arrow-down-right\": 57594,\n  \"circle-arrow-down\": 61611,\n  \"circle-arrow-left\": 61608,\n  \"circle-arrow-right\": 61609,\n  \"circle-arrow-up-left\": 57595,\n  \"circle-arrow-up-right\": 57596,\n  \"circle-arrow-up\": 61610,\n  \"circle-austral\": 59163,\n  \"circle-australian-dollar\": 59184,\n  \"circle-b\": 57597,\n  \"circle-baht\": 59181,\n  \"circle-bangladeshi-taka\": 59137,\n  \"circle-bitcoin\": 59191,\n  \"circle-bolt\": 57598,\n  \"circle-book-open\": 57599,\n  \"circle-bookmark\": 57600,\n  \"circle-brazilian-real\": 59115,\n  \"circle-c\": 57601,\n  \"circle-calendar\": 57602,\n  \"circle-camera\": 57603,\n  \"circle-caret-down\": 62253,\n  \"circle-caret-left\": 62254,\n  \"circle-caret-right\": 62256,\n  \"circle-caret-up\": 62257,\n  \"circle-cedi\": 59202,\n  \"circle-cent\": 59178,\n  \"circle-check\": 61528,\n  \"circle-chevron-down\": 61754,\n  \"circle-chevron-left\": 61751,\n  \"circle-chevron-right\": 61752,\n  \"circle-chevron-up\": 61753,\n  \"circle-chf\": 59180,\n  \"circle-colon\": 59132,\n  \"circle-cruzeiro\": 59170,\n  \"circle-currency\": 59118,\n  \"circle-d\": 57604,\n  \"circle-danish-krone\": 59206,\n  \"circle-dashed\": 57605,\n  \"circle-divide\": 57606,\n  \"circle-dollar-to-slot\": 62649,\n  \"circle-dollar\": 62184,\n  \"circle-dong\": 59171,\n  \"circle-dot\": 61842,\n  \"circle-down-left\": 57607,\n  \"circle-down-right\": 57608,\n  \"circle-down\": 62296,\n  \"circle-e\": 57609,\n  \"circle-ellipsis-vertical\": 57611,\n  \"circle-ellipsis\": 57610,\n  \"circle-envelope\": 57612,\n  \"circle-equals\": 59057,\n  \"circle-euro\": 58830,\n  \"circle-eurozone\": 59205,\n  \"circle-exclamation-check\": 57613,\n  \"circle-exclamation\": 61546,\n  \"circle-f\": 57614,\n  \"circle-florin\": 59108,\n  \"circle-franc\": 59169,\n  \"circle-g\": 57615,\n  \"circle-gf\": 59007,\n  \"circle-guarani\": 59195,\n  \"circle-h\": 62590,\n  \"circle-half-horizontal\": 59404,\n  \"circle-half-stroke-horizontal\": 59405,\n  \"circle-half-stroke\": 61506,\n  \"circle-half\": 57616,\n  \"circle-heart\": 62663,\n  \"circle-house\": 59080,\n  \"circle-hryvnia\": 59119,\n  \"circle-i\": 57617,\n  \"circle-indian-rupee\": 59188,\n  \"circle-info\": 61530,\n  \"circle-j\": 57618,\n  \"circle-k\": 57619,\n  \"circle-kip\": 59133,\n  \"circle-l\": 57620,\n  \"circle-lari\": 59165,\n  \"circle-left\": 62297,\n  \"circle-lira\": 59126,\n  \"circle-litecoin\": 59124,\n  \"circle-location-arrow\": 62978,\n  \"circle-m\": 57621,\n  \"circle-malaysian-ringgit\": 59129,\n  \"circle-manat\": 59131,\n  \"circle-microphone-lines\": 57623,\n  \"circle-microphone\": 57622,\n  \"circle-mill\": 59138,\n  \"circle-minus\": 61526,\n  \"circle-moon\": 59360,\n  \"circle-n\": 57624,\n  \"circle-naira\": 59209,\n  \"circle-nodes\": 58594,\n  \"circle-norwegian-krone\": 59192,\n  \"circle-notch\": 61902,\n  \"circle-o\": 57625,\n  \"circle-p\": 57626,\n  \"circle-parking\": 62997,\n  \"circle-pause\": 62091,\n  \"circle-peruvian-soles\": 59123,\n  \"circle-peseta\": 59201,\n  \"circle-peso\": 59135,\n  \"circle-phone-flip\": 57628,\n  \"circle-phone-hangup\": 57629,\n  \"circle-phone\": 57627,\n  \"circle-play\": 61764,\n  \"circle-plus\": 61525,\n  \"circle-polish-zloty\": 59136,\n  \"circle-q\": 57630,\n  \"circle-quarter-stroke\": 58835,\n  \"circle-quarter\": 57631,\n  \"circle-quarters\": 58360,\n  \"circle-question\": 61529,\n  \"circle-r\": 57632,\n  \"circle-radiation\": 63418,\n  \"circle-renminbi\": 59113,\n  \"circle-right\": 62298,\n  \"circle-ruble\": 59109,\n  \"circle-rupee\": 59156,\n  \"circle-rupiah\": 59142,\n  \"circle-s\": 57633,\n  \"circle-share-nodes\": 59099,\n  \"circle-shekel\": 59139,\n  \"circle-small\": 57634,\n  \"circle-sort-down\": 57393,\n  \"circle-sort-up\": 57394,\n  \"circle-sort\": 57392,\n  \"circle-star\": 57635,\n  \"circle-sterling\": 58831,\n  \"circle-stop\": 62093,\n  \"circle-swedish-krona\": 59203,\n  \"circle-t\": 57636,\n  \"circle-tenge\": 59173,\n  \"circle-three-quarters-stroke\": 58836,\n  \"circle-three-quarters\": 57637,\n  \"circle-trash\": 57638,\n  \"circle-tugrik\": 59153,\n  \"circle-turkish-lira\": 59193,\n  \"circle-u\": 57639,\n  \"circle-up-left\": 57640,\n  \"circle-up-right\": 57641,\n  \"circle-up\": 62299,\n  \"circle-user-circle-check\": 59295,\n  \"circle-user-circle-exclamation\": 59296,\n  \"circle-user-circle-minus\": 59297,\n  \"circle-user-circle-moon\": 59298,\n  \"circle-user-circle-plus\": 59299,\n  \"circle-user-circle-question\": 59300,\n  \"circle-user-circle-user\": 59301,\n  \"circle-user-circle-xmark\": 59302,\n  \"circle-user-clock\": 59303,\n  \"circle-user\": 62141,\n  \"circle-v\": 57642,\n  \"circle-video\": 57643,\n  \"circle-w\": 57644,\n  \"circle-waveform-lines\": 57645,\n  \"circle-wifi-circle-wifi\": 59006,\n  \"circle-wifi-group\": 59006,\n  \"circle-wifi\": 59005,\n  \"circle-won\": 59116,\n  \"circle-x\": 57646,\n  \"circle-xmark\": 61527,\n  \"circle-y\": 57647,\n  \"circle-yen\": 58832,\n  \"circle-z\": 57648,\n  \"circle\": 61713,\n  \"circleapore-dollar\": 59166,\n  \"circles-overlap-3\": 59041,\n  \"circles-overlap\": 58880,\n  \"citrus-slice\": 58101,\n  \"citrus\": 58100,\n  \"city\": 63055,\n  \"clapperboard-play\": 57650,\n  \"clapperboard\": 57649,\n  \"clarinet\": 63661,\n  \"claw-marks\": 63170,\n  \"clinic-medical\": 63474,\n  \"clipboard-check\": 62572,\n  \"clipboard-clock\": 59222,\n  \"clipboard-exclamation\": 59223,\n  \"clipboard-list-check\": 63287,\n  \"clipboard-list\": 62573,\n  \"clipboard-medical\": 57651,\n  \"clipboard-prescription\": 62952,\n  \"clipboard-question\": 58595,\n  \"clipboard-user\": 63475,\n  \"clipboard\": 62248,\n  \"clock-desk\": 57652,\n  \"clock-eight-thirty\": 58182,\n  \"clock-eight\": 58181,\n  \"clock-eleven-thirty\": 58184,\n  \"clock-eleven\": 58183,\n  \"clock-five-thirty\": 58186,\n  \"clock-five\": 58185,\n  \"clock-four-thirty\": 58187,\n  \"clock-four\": 61463,\n  \"clock-nine-thirty\": 58189,\n  \"clock-nine\": 58188,\n  \"clock-one-thirty\": 58191,\n  \"clock-one\": 58190,\n  \"clock-rotate-left\": 61914,\n  \"clock-seven-thirty\": 58193,\n  \"clock-seven\": 58192,\n  \"clock-six-thirty\": 58195,\n  \"clock-six\": 58194,\n  \"clock-ten-thirty\": 58197,\n  \"clock-ten\": 58196,\n  \"clock-three-thirty\": 58199,\n  \"clock-three\": 58198,\n  \"clock-twelve-thirty\": 58201,\n  \"clock-twelve\": 58200,\n  \"clock-two-thirty\": 58203,\n  \"clock-two\": 58202,\n  \"clock\": 61463,\n  \"clone-plus\": 59212,\n  \"clone\": 62029,\n  \"close\": 61453,\n  \"closed-captioning-slash\": 57653,\n  \"closed-captioning\": 61962,\n  \"clothes-hanger\": 57654,\n  \"cloud-arrow-down\": 61677,\n  \"cloud-arrow-up\": 61678,\n  \"cloud-binary\": 58881,\n  \"cloud-bolt-moon\": 63341,\n  \"cloud-bolt-sun\": 63342,\n  \"cloud-bolt\": 63340,\n  \"cloud-check\": 58204,\n  \"cloud-download-alt\": 61677,\n  \"cloud-download\": 61677,\n  \"cloud-drizzle\": 63288,\n  \"cloud-exclamation\": 58513,\n  \"cloud-fog\": 63310,\n  \"cloud-hail-mixed\": 63290,\n  \"cloud-hail\": 63289,\n  \"cloud-meatball\": 63291,\n  \"cloud-minus\": 58205,\n  \"cloud-moon-rain\": 63292,\n  \"cloud-moon\": 63171,\n  \"cloud-music\": 63662,\n  \"cloud-plus\": 58206,\n  \"cloud-question\": 58514,\n  \"cloud-rain\": 63293,\n  \"cloud-rainbow\": 63294,\n  \"cloud-showers-heavy\": 63296,\n  \"cloud-showers-water\": 58596,\n  \"cloud-showers\": 63295,\n  \"cloud-slash\": 57655,\n  \"cloud-sleet\": 63297,\n  \"cloud-snow\": 63298,\n  \"cloud-sun-rain\": 63299,\n  \"cloud-sun\": 63172,\n  \"cloud-upload-alt\": 61678,\n  \"cloud-upload\": 61678,\n  \"cloud-word\": 57656,\n  \"cloud-xmark\": 58207,\n  \"cloud\": 61634,\n  \"clouds-moon\": 63301,\n  \"clouds-sun\": 63302,\n  \"clouds\": 63300,\n  \"clover\": 57657,\n  \"club\": 62247,\n  \"cny\": 61783,\n  \"cocktail\": 62817,\n  \"coconut\": 58102,\n  \"code-branch\": 61734,\n  \"code-commit\": 62342,\n  \"code-compare\": 57658,\n  \"code-fork\": 57659,\n  \"code-merge\": 62343,\n  \"code-pull-request-closed\": 58361,\n  \"code-pull-request-draft\": 58362,\n  \"code-pull-request\": 57660,\n  \"code-simple\": 57661,\n  \"code\": 61729,\n  \"coffee-bean\": 57662,\n  \"coffee-beans\": 57663,\n  \"coffee-pot\": 57346,\n  \"coffee-togo\": 63173,\n  \"coffee\": 61684,\n  \"coffin-cross\": 57425,\n  \"coffin\": 63174,\n  \"cog\": 61459,\n  \"cogs\": 61573,\n  \"coin-blank\": 58363,\n  \"coin-front\": 58364,\n  \"coin-vertical\": 58365,\n  \"coin\": 63580,\n  \"coins\": 62750,\n  \"colon-sign\": 57664,\n  \"colon\": 58,\n  \"columns-3\": 58209,\n  \"columns\": 61659,\n  \"comet\": 57347,\n  \"comma\": 44,\n  \"command\": 57666,\n  \"comment-alt-arrow-down\": 57819,\n  \"comment-alt-arrow-up\": 57820,\n  \"comment-alt-captions\": 57822,\n  \"comment-alt-check\": 62626,\n  \"comment-alt-dollar\": 63056,\n  \"comment-alt-dots\": 62627,\n  \"comment-alt-edit\": 62628,\n  \"comment-alt-exclamation\": 62629,\n  \"comment-alt-image\": 57824,\n  \"comment-alt-lines\": 62630,\n  \"comment-alt-medical\": 63476,\n  \"comment-alt-minus\": 62631,\n  \"comment-alt-music\": 63663,\n  \"comment-alt-plus\": 62632,\n  \"comment-alt-quote\": 57828,\n  \"comment-alt-slash\": 62633,\n  \"comment-alt-smile\": 62634,\n  \"comment-alt-text\": 57830,\n  \"comment-alt-times\": 62635,\n  \"comment-alt\": 62074,\n  \"comment-arrow-down\": 57667,\n  \"comment-arrow-up-right\": 57669,\n  \"comment-arrow-up\": 57668,\n  \"comment-captions\": 57670,\n  \"comment-check\": 62636,\n  \"comment-code\": 57671,\n  \"comment-dollar\": 63057,\n  \"comment-dot\": 59100,\n  \"comment-dots\": 62637,\n  \"comment-edit\": 62638,\n  \"comment-exclamation\": 62639,\n  \"comment-heart\": 58824,\n  \"comment-image\": 57672,\n  \"comment-lines\": 62640,\n  \"comment-medical\": 63477,\n  \"comment-middle-alt\": 57825,\n  \"comment-middle-top-alt\": 57826,\n  \"comment-middle-top\": 57674,\n  \"comment-middle\": 57673,\n  \"comment-minus\": 62641,\n  \"comment-music\": 63664,\n  \"comment-nodes\": 59030,\n  \"comment-pen\": 62638,\n  \"comment-plus\": 62642,\n  \"comment-question\": 57675,\n  \"comment-quote\": 57676,\n  \"comment-slash\": 62643,\n  \"comment-smile\": 62644,\n  \"comment-sms\": 63437,\n  \"comment-text\": 57677,\n  \"comment-times\": 62645,\n  \"comment-waveform\": 59101,\n  \"comment-xmark\": 62645,\n  \"comment\": 61557,\n  \"commenting\": 62637,\n  \"comments-alt-dollar\": 63058,\n  \"comments-alt\": 62646,\n  \"comments-dollar\": 63059,\n  \"comments-question-check\": 57679,\n  \"comments-question\": 57678,\n  \"comments\": 61574,\n  \"compact-disc\": 62751,\n  \"compass-drafting\": 62824,\n  \"compass-slash\": 62953,\n  \"compass\": 61774,\n  \"compress-alt\": 62498,\n  \"compress-arrows-alt\": 63372,\n  \"compress-arrows\": 57509,\n  \"compress-wide\": 62246,\n  \"compress\": 61542,\n  \"computer-classic\": 63665,\n  \"computer-mouse-button-left\": 59341,\n  \"computer-mouse-button-right\": 59342,\n  \"computer-mouse-scrollwheel\": 63693,\n  \"computer-mouse\": 63692,\n  \"computer-speaker\": 63666,\n  \"computer\": 58597,\n  \"concierge-bell\": 62818,\n  \"construction\": 63581,\n  \"contact-book\": 62137,\n  \"contact-card\": 62139,\n  \"container-storage\": 62647,\n  \"conveyor-belt-alt\": 62575,\n  \"conveyor-belt-arm\": 58872,\n  \"conveyor-belt-boxes\": 62575,\n  \"conveyor-belt-empty\": 57680,\n  \"conveyor-belt\": 62574,\n  \"cookie-bite\": 62820,\n  \"cookie\": 62819,\n  \"copy\": 61637,\n  \"copyright\": 61945,\n  \"corn\": 63175,\n  \"corner\": 58366,\n  \"couch-small\": 62668,\n  \"couch\": 62648,\n  \"court-sport\": 58947,\n  \"cow\": 63176,\n  \"cowbell-circle-plus\": 63668,\n  \"cowbell-more\": 63668,\n  \"cowbell\": 63667,\n  \"crab\": 58367,\n  \"crate-apple\": 63153,\n  \"crate-empty\": 57681,\n  \"credit-card-alt\": 61597,\n  \"credit-card-blank\": 62345,\n  \"credit-card-front\": 62346,\n  \"credit-card\": 61597,\n  \"creemee\": 58368,\n  \"cricket-bat-ball\": 62537,\n  \"cricket\": 62537,\n  \"croissant\": 63478,\n  \"crop-alt\": 62821,\n  \"crop-simple\": 62821,\n  \"crop\": 61733,\n  \"cross\": 63060,\n  \"crosshairs-simple\": 58783,\n  \"crosshairs\": 61531,\n  \"crow\": 62752,\n  \"crown\": 62753,\n  \"crutch\": 63479,\n  \"crutches\": 63480,\n  \"cruzeiro-sign\": 57682,\n  \"crystal-ball\": 58210,\n  \"cube\": 61874,\n  \"cubes-stacked\": 58598,\n  \"cubes\": 61875,\n  \"cucumber\": 58369,\n  \"cup-straw-swoosh\": 58212,\n  \"cup-straw\": 58211,\n  \"cup-togo\": 63173,\n  \"cupcake\": 58370,\n  \"curling-stone\": 62538,\n  \"curling\": 62538,\n  \"currency-sign\": 59179,\n  \"custard\": 58371,\n  \"cut\": 61636,\n  \"cutlery\": 62183,\n  \"d\": 68,\n  \"dagger\": 63179,\n  \"danish-krone-sign\": 59168,\n  \"dash\": 58372,\n  \"dashboard\": 63012,\n  \"database\": 61888,\n  \"deaf\": 62116,\n  \"deafness\": 62116,\n  \"debug\": 63481,\n  \"dedent\": 61499,\n  \"deer-rudolph\": 63375,\n  \"deer\": 63374,\n  \"delete-left\": 62810,\n  \"delete-right\": 57684,\n  \"democrat\": 63303,\n  \"desk\": 59518,\n  \"desktop-alt\": 62352,\n  \"desktop-arrow-down\": 57685,\n  \"desktop-code\": 57701,\n  \"desktop-medical\": 57702,\n  \"desktop-slash\": 58106,\n  \"desktop\": 62352,\n  \"dewpoint\": 63304,\n  \"dharmachakra\": 63061,\n  \"diagnoses\": 62576,\n  \"diagram-cells\": 58485,\n  \"diagram-lean-canvas\": 57686,\n  \"diagram-nested\": 57687,\n  \"diagram-next\": 58486,\n  \"diagram-predecessor\": 58487,\n  \"diagram-previous\": 58488,\n  \"diagram-project\": 62786,\n  \"diagram-sankey\": 57688,\n  \"diagram-subtask\": 58489,\n  \"diagram-successor\": 58490,\n  \"diagram-venn\": 57690,\n  \"dial-high\": 57692,\n  \"dial-low\": 57693,\n  \"dial-max\": 57694,\n  \"dial-med-high\": 57691,\n  \"dial-med-low\": 57696,\n  \"dial-med\": 57695,\n  \"dial-min\": 57697,\n  \"dial-off\": 57698,\n  \"dial\": 57691,\n  \"dialpad\": 59340,\n  \"diamond-exclamation\": 58373,\n  \"diamond-half-stroke\": 58808,\n  \"diamond-half\": 58807,\n  \"diamond-turn-right\": 62955,\n  \"diamond\": 61977,\n  \"diamonds-4\": 59019,\n  \"dice-d10\": 63181,\n  \"dice-d12\": 63182,\n  \"dice-d20\": 63183,\n  \"dice-d4\": 63184,\n  \"dice-d6\": 63185,\n  \"dice-d8\": 63186,\n  \"dice-five\": 62755,\n  \"dice-four\": 62756,\n  \"dice-one\": 62757,\n  \"dice-six\": 62758,\n  \"dice-three\": 62759,\n  \"dice-two\": 62760,\n  \"dice\": 62754,\n  \"digging\": 63582,\n  \"digital-tachograph\": 62822,\n  \"dinosaur\": 58878,\n  \"diploma\": 62954,\n  \"direction-left-right\": 59070,\n  \"direction-up-down\": 59071,\n  \"directions\": 62955,\n  \"disc-drive\": 63669,\n  \"disease\": 63482,\n  \"display-arrow-down\": 57700,\n  \"display-chart-up-circle-currency\": 58853,\n  \"display-chart-up-circle-dollar\": 58854,\n  \"display-chart-up\": 58851,\n  \"display-code\": 57701,\n  \"display-medical\": 57702,\n  \"display-slash\": 58106,\n  \"display\": 57699,\n  \"distribute-spacing-horizontal\": 58213,\n  \"distribute-spacing-vertical\": 58214,\n  \"ditto\": 34,\n  \"divide\": 62761,\n  \"dizzy\": 62823,\n  \"dna\": 62577,\n  \"do-not-enter\": 62956,\n  \"dog-leashed\": 63188,\n  \"dog\": 63187,\n  \"dollar-circle\": 62184,\n  \"dollar-sign\": 36,\n  \"dollar-square\": 62185,\n  \"dollar\": 36,\n  \"dolly-box\": 62578,\n  \"dolly-empty\": 62579,\n  \"dolly-flatbed-alt\": 62581,\n  \"dolly-flatbed-empty\": 62582,\n  \"dolly-flatbed\": 62580,\n  \"dolly\": 62578,\n  \"dolphin\": 57704,\n  \"donate\": 62649,\n  \"dong-sign\": 57705,\n  \"donut\": 58374,\n  \"door-closed\": 62762,\n  \"door-open\": 62763,\n  \"dot-circle\": 61842,\n  \"dot\": 59345,\n  \"doughnut\": 58374,\n  \"dove\": 62650,\n  \"down-from-bracket\": 58987,\n  \"down-from-dotted-line\": 58375,\n  \"down-from-line\": 62281,\n  \"down-left-and-up-right-to-center\": 62498,\n  \"down-left\": 57706,\n  \"down-long-to-line\": 59072,\n  \"down-long\": 62217,\n  \"down-right\": 57707,\n  \"down-to-bracket\": 58599,\n  \"down-to-dotted-line\": 58376,\n  \"down-to-line\": 62282,\n  \"down-up\": 59073,\n  \"down\": 62292,\n  \"download\": 61465,\n  \"drafting-compass\": 62824,\n  \"dragon\": 63189,\n  \"draw-circle\": 62957,\n  \"draw-polygon\": 62958,\n  \"draw-square\": 62959,\n  \"dreidel\": 63378,\n  \"dress\": 59089,\n  \"dresser\": 59519,\n  \"drivers-license\": 62146,\n  \"drone-alt\": 63584,\n  \"drone-front\": 63584,\n  \"drone\": 63583,\n  \"droplet-degree\": 63304,\n  \"droplet-percent\": 63312,\n  \"droplet-plus\": 59392,\n  \"droplet-slash\": 62919,\n  \"droplet\": 61507,\n  \"drum-steelpan\": 62826,\n  \"drum\": 62825,\n  \"drumstick-bite\": 63191,\n  \"drumstick\": 63190,\n  \"dryer-alt\": 63586,\n  \"dryer-heat\": 63586,\n  \"dryer\": 63585,\n  \"duck\": 63192,\n  \"dumbbell\": 62539,\n  \"dumpster-fire\": 63380,\n  \"dumpster\": 63379,\n  \"dungeon\": 63193,\n  \"e\": 69,\n  \"ear-circle-checkmark\": 59227,\n  \"ear-deaf\": 62116,\n  \"ear-listen\": 62114,\n  \"ear-muffs\": 63381,\n  \"ear-triangle-exclamation\": 59228,\n  \"ear-waveform\": 59229,\n  \"ear\": 62960,\n  \"earth-africa\": 62844,\n  \"earth-america\": 62845,\n  \"earth-americas\": 62845,\n  \"earth-asia\": 62846,\n  \"earth-europe\": 63394,\n  \"earth-oceania\": 58491,\n  \"earth\": 62845,\n  \"eclipse-alt\": 63306,\n  \"eclipse\": 63305,\n  \"edit\": 61508,\n  \"egg-fried\": 63484,\n  \"egg\": 63483,\n  \"eggplant\": 57708,\n  \"eject\": 61522,\n  \"elephant\": 63194,\n  \"elevator\": 57709,\n  \"ellipsis-h-alt\": 62363,\n  \"ellipsis-h\": 61761,\n  \"ellipsis-stroke-vertical\": 62364,\n  \"ellipsis-stroke\": 62363,\n  \"ellipsis-v-alt\": 62364,\n  \"ellipsis-v\": 61762,\n  \"ellipsis-vertical\": 61762,\n  \"ellipsis\": 61761,\n  \"empty-set\": 63062,\n  \"engine-exclamation\": 62962,\n  \"engine-warning\": 62962,\n  \"engine\": 57710,\n  \"envelope-badge\": 57711,\n  \"envelope-certificate\": 59433,\n  \"envelope-circle-check\": 58600,\n  \"envelope-circle-user\": 59102,\n  \"envelope-circle\": 57612,\n  \"envelope-dot\": 57711,\n  \"envelope-open-dollar\": 63063,\n  \"envelope-open-text\": 63064,\n  \"envelope-open\": 62134,\n  \"envelope-ribbon\": 59433,\n  \"envelope-square\": 61849,\n  \"envelope\": 61664,\n  \"envelopes-bulk\": 63092,\n  \"envelopes\": 57712,\n  \"equals\": 61,\n  \"eraser\": 61741,\n  \"escalator\": 57713,\n  \"ethernet\": 63382,\n  \"eur\": 61779,\n  \"euro-sign\": 61779,\n  \"euro\": 61779,\n  \"eurozone-sign\": 59200,\n  \"excavator\": 58966,\n  \"exchange-alt\": 62306,\n  \"exchange\": 61676,\n  \"exclamation-circle\": 61546,\n  \"exclamation-square\": 62241,\n  \"exclamation-triangle\": 61553,\n  \"exclamation\": 33,\n  \"expand-alt\": 62500,\n  \"expand-arrows-alt\": 62238,\n  \"expand-arrows\": 62237,\n  \"expand-wide\": 62240,\n  \"expand\": 61541,\n  \"exploding-head\": 58110,\n  \"explosion\": 58601,\n  \"external-link-alt\": 62301,\n  \"external-link-square-alt\": 62304,\n  \"external-link-square\": 61772,\n  \"external-link\": 61582,\n  \"eye-closed\": 59451,\n  \"eye-dropper-empty\": 61947,\n  \"eye-dropper-full\": 57714,\n  \"eye-dropper-half\": 57715,\n  \"eye-dropper\": 61947,\n  \"eye-evil\": 63195,\n  \"eye-low-vision\": 62120,\n  \"eye-slash\": 61552,\n  \"eye\": 61550,\n  \"eyedropper\": 61947,\n  \"eyes\": 58215,\n  \"f\": 70,\n  \"face-angry-horns\": 58216,\n  \"face-angry\": 62806,\n  \"face-anguished\": 58217,\n  \"face-anxious-sweat\": 58218,\n  \"face-astonished\": 58219,\n  \"face-awesome\": 58377,\n  \"face-beam-hand-over-mouth\": 58492,\n  \"face-clouds\": 58493,\n  \"face-confounded\": 58220,\n  \"face-confused\": 58221,\n  \"face-cowboy-hat\": 58222,\n  \"face-diagonal-mouth\": 58494,\n  \"face-disappointed\": 58223,\n  \"face-disguise\": 58224,\n  \"face-dizzy\": 62823,\n  \"face-dotted\": 58495,\n  \"face-downcast-sweat\": 58225,\n  \"face-drooling\": 58226,\n  \"face-exhaling\": 58496,\n  \"face-explode\": 58110,\n  \"face-expressionless\": 58227,\n  \"face-eyes-xmarks\": 58228,\n  \"face-fearful\": 58229,\n  \"face-flushed\": 62841,\n  \"face-frown-open\": 62842,\n  \"face-frown-slight\": 58230,\n  \"face-frown\": 61721,\n  \"face-glasses\": 58231,\n  \"face-grimace\": 62847,\n  \"face-grin-beam-sweat\": 62851,\n  \"face-grin-beam\": 62850,\n  \"face-grin-hearts\": 62852,\n  \"face-grin-squint-tears\": 62854,\n  \"face-grin-squint\": 62853,\n  \"face-grin-stars\": 62855,\n  \"face-grin-tears\": 62856,\n  \"face-grin-tongue-squint\": 62858,\n  \"face-grin-tongue-wink\": 62859,\n  \"face-grin-tongue\": 62857,\n  \"face-grin-wide\": 62849,\n  \"face-grin-wink\": 62860,\n  \"face-grin\": 62848,\n  \"face-hand-over-mouth\": 58232,\n  \"face-hand-peeking\": 58497,\n  \"face-hand-yawn\": 58233,\n  \"face-head-bandage\": 58234,\n  \"face-holding-back-tears\": 58498,\n  \"face-hushed\": 58235,\n  \"face-icicles\": 58236,\n  \"face-kiss-beam\": 62871,\n  \"face-kiss-closed-eyes\": 58237,\n  \"face-kiss-wink-heart\": 62872,\n  \"face-kiss\": 62870,\n  \"face-laugh-beam\": 62874,\n  \"face-laugh-squint\": 62875,\n  \"face-laugh-wink\": 62876,\n  \"face-laugh\": 62873,\n  \"face-lying\": 58238,\n  \"face-mask\": 58239,\n  \"face-meh-blank\": 62884,\n  \"face-meh\": 61722,\n  \"face-melting\": 58499,\n  \"face-monocle\": 58240,\n  \"face-nauseated\": 58241,\n  \"face-nose-steam\": 58242,\n  \"face-party\": 58243,\n  \"face-pensive\": 58244,\n  \"face-persevering\": 58245,\n  \"face-pleading\": 58246,\n  \"face-pouting\": 58247,\n  \"face-raised-eyebrow\": 58248,\n  \"face-relieved\": 58249,\n  \"face-rolling-eyes\": 62885,\n  \"face-sad-cry\": 62899,\n  \"face-sad-sweat\": 58250,\n  \"face-sad-tear\": 62900,\n  \"face-saluting\": 58500,\n  \"face-scream\": 58251,\n  \"face-shaking-horizontal\": 59293,\n  \"face-shaking-vertical\": 59294,\n  \"face-shaking\": 59292,\n  \"face-shush\": 58252,\n  \"face-sleeping\": 58253,\n  \"face-sleepy\": 58254,\n  \"face-smile-beam\": 62904,\n  \"face-smile-halo\": 58255,\n  \"face-smile-hearts\": 58256,\n  \"face-smile-horns\": 58257,\n  \"face-smile-plus\": 62905,\n  \"face-smile-relaxed\": 58258,\n  \"face-smile-tear\": 58259,\n  \"face-smile-tongue\": 58260,\n  \"face-smile-upside-down\": 58261,\n  \"face-smile-wink\": 62682,\n  \"face-smile\": 61720,\n  \"face-smiling-hands\": 58262,\n  \"face-smirking\": 58263,\n  \"face-spiral-eyes\": 58501,\n  \"face-sunglasses\": 58264,\n  \"face-surprise\": 62914,\n  \"face-swear\": 58265,\n  \"face-thermometer\": 58266,\n  \"face-thinking\": 58267,\n  \"face-tired\": 62920,\n  \"face-tissue\": 58268,\n  \"face-tongue-money\": 58269,\n  \"face-tongue-sweat\": 58270,\n  \"face-unamused\": 58271,\n  \"face-viewfinder\": 58111,\n  \"face-vomit\": 58272,\n  \"face-weary\": 58273,\n  \"face-woozy\": 58274,\n  \"face-worried\": 58275,\n  \"face-zany\": 58276,\n  \"face-zipper\": 58277,\n  \"falafel\": 58378,\n  \"family-dress\": 58113,\n  \"family-pants\": 58114,\n  \"family\": 58112,\n  \"fan-table\": 57348,\n  \"fan\": 63587,\n  \"farm\": 63588,\n  \"fast-backward\": 61513,\n  \"fast-forward\": 61520,\n  \"faucet-drip\": 57350,\n  \"faucet\": 57349,\n  \"fax\": 61868,\n  \"feather-alt\": 62827,\n  \"feather-pointed\": 62827,\n  \"feather\": 62765,\n  \"feed\": 61598,\n  \"female\": 61826,\n  \"fence\": 58115,\n  \"ferris-wheel\": 57716,\n  \"ferry\": 58602,\n  \"field-hockey-stick-ball\": 62540,\n  \"field-hockey\": 62540,\n  \"fighter-jet\": 61691,\n  \"file-aiff\": 59387,\n  \"file-alt\": 61788,\n  \"file-archive\": 61894,\n  \"file-arrow-down\": 62829,\n  \"file-arrow-up\": 62836,\n  \"file-audio\": 61895,\n  \"file-award\": 62963,\n  \"file-ban\": 59224,\n  \"file-binary\": 57717,\n  \"file-brackets-curly\": 59396,\n  \"file-cad\": 58994,\n  \"file-caret-down\": 58409,\n  \"file-caret-up\": 58410,\n  \"file-certificate\": 62963,\n  \"file-chart-column\": 63065,\n  \"file-chart-line\": 63065,\n  \"file-chart-pie\": 63066,\n  \"file-check\": 62230,\n  \"file-circle-check\": 58784,\n  \"file-circle-exclamation\": 58603,\n  \"file-circle-info\": 58515,\n  \"file-circle-minus\": 58605,\n  \"file-circle-plus\": 58516,\n  \"file-circle-question\": 58607,\n  \"file-circle-xmark\": 58785,\n  \"file-clipboard\": 61674,\n  \"file-code\": 61897,\n  \"file-contract\": 62828,\n  \"file-css\": 59452,\n  \"file-csv\": 63197,\n  \"file-dashed-line\": 63607,\n  \"file-doc\": 58861,\n  \"file-download\": 62829,\n  \"file-edit\": 62236,\n  \"file-eps\": 58948,\n  \"file-excel\": 61891,\n  \"file-exclamation\": 62234,\n  \"file-export\": 62830,\n  \"file-fragment\": 59031,\n  \"file-gif\": 58949,\n  \"file-half-dashed\": 59032,\n  \"file-heart\": 57718,\n  \"file-html\": 59453,\n  \"file-icns\": 59457,\n  \"file-image\": 61893,\n  \"file-import\": 62831,\n  \"file-invoice-dollar\": 62833,\n  \"file-invoice\": 62832,\n  \"file-jpg\": 58950,\n  \"file-js\": 59454,\n  \"file-lines\": 61788,\n  \"file-lock\": 58278,\n  \"file-magnifying-glass\": 63589,\n  \"file-medical-alt\": 62584,\n  \"file-medical\": 62583,\n  \"file-midi\": 59397,\n  \"file-minus\": 62232,\n  \"file-mov\": 58951,\n  \"file-mp3\": 58952,\n  \"file-mp4\": 58953,\n  \"file-music\": 63670,\n  \"file-odf\": 59388,\n  \"file-pdf\": 61889,\n  \"file-pen\": 62236,\n  \"file-plus-minus\": 57719,\n  \"file-plus\": 62233,\n  \"file-png\": 58982,\n  \"file-powerpoint\": 61892,\n  \"file-ppt\": 58954,\n  \"file-prescription\": 62834,\n  \"file-search\": 63589,\n  \"file-shield\": 58608,\n  \"file-signature\": 62835,\n  \"file-slash\": 58279,\n  \"file-spreadsheet\": 63067,\n  \"file-svg\": 58955,\n  \"file-tex\": 59389,\n  \"file-text\": 61788,\n  \"file-times\": 62231,\n  \"file-upload\": 62836,\n  \"file-user\": 63068,\n  \"file-vector\": 58956,\n  \"file-video\": 61896,\n  \"file-wav\": 59390,\n  \"file-waveform\": 62584,\n  \"file-word\": 61890,\n  \"file-xls\": 58957,\n  \"file-xmark\": 62231,\n  \"file-xml\": 58964,\n  \"file-zip\": 58862,\n  \"file-zipper\": 61894,\n  \"file\": 61787,\n  \"files-medical\": 63485,\n  \"files\": 57720,\n  \"fill-drip\": 62838,\n  \"fill\": 62837,\n  \"film-alt\": 61448,\n  \"film-canister\": 63671,\n  \"film-cannister\": 63671,\n  \"film-music\": 59241,\n  \"film-simple\": 61448,\n  \"film-slash\": 57721,\n  \"film-stack\": 59243,\n  \"film\": 61448,\n  \"films\": 57722,\n  \"filter-circle-dollar\": 63074,\n  \"filter-circle-xmark\": 57723,\n  \"filter-list\": 57724,\n  \"filter-slash\": 57725,\n  \"filter\": 61616,\n  \"filters\": 57726,\n  \"fingerprint\": 62839,\n  \"fire-alt\": 63460,\n  \"fire-burner\": 58609,\n  \"fire-extinguisher\": 61748,\n  \"fire-flame-curved\": 63460,\n  \"fire-flame-simple\": 62570,\n  \"fire-flame\": 63199,\n  \"fire-hydrant\": 57727,\n  \"fire-smoke\": 63307,\n  \"fire\": 61549,\n  \"fireplace\": 63386,\n  \"firewall\": 58332,\n  \"first-aid\": 62585,\n  \"fish-bones\": 58116,\n  \"fish-cooked\": 63486,\n  \"fish-fins\": 58610,\n  \"fish\": 62840,\n  \"fishing-rod\": 58280,\n  \"fist-raised\": 63198,\n  \"flag-alt\": 63308,\n  \"flag-checkered\": 61726,\n  \"flag-pennant\": 62550,\n  \"flag-swallowtail\": 63308,\n  \"flag-usa\": 63309,\n  \"flag\": 61476,\n  \"flame\": 63199,\n  \"flashlight\": 63672,\n  \"flask-gear\": 58865,\n  \"flask-poison\": 63200,\n  \"flask-potion\": 63201,\n  \"flask-round-poison\": 63200,\n  \"flask-round-potion\": 63201,\n  \"flask-vial\": 58611,\n  \"flask\": 61635,\n  \"flatbread-stuffed\": 58380,\n  \"flatbread\": 58379,\n  \"floppy-disk-circle-arrow-right\": 57728,\n  \"floppy-disk-circle-xmark\": 57729,\n  \"floppy-disk-pen\": 57730,\n  \"floppy-disk-times\": 57729,\n  \"floppy-disk\": 61639,\n  \"floppy-disks\": 57731,\n  \"florin-sign\": 57732,\n  \"flower-daffodil\": 63488,\n  \"flower-tulip\": 63489,\n  \"flower\": 63487,\n  \"flushed\": 62841,\n  \"flute\": 63673,\n  \"flux-capacitor\": 63674,\n  \"flying-disc\": 58281,\n  \"fog\": 63310,\n  \"folder-arrow-down\": 57427,\n  \"folder-arrow-left\": 59346,\n  \"folder-arrow-right\": 59347,\n  \"folder-arrow-up\": 57428,\n  \"folder-blank\": 61563,\n  \"folder-bookmark\": 57734,\n  \"folder-check\": 58958,\n  \"folder-closed\": 57733,\n  \"folder-cog\": 57735,\n  \"folder-download\": 57427,\n  \"folder-gear\": 57735,\n  \"folder-grid\": 57736,\n  \"folder-heart\": 57737,\n  \"folder-image\": 57738,\n  \"folder-magnifying-glass\": 57739,\n  \"folder-medical\": 57740,\n  \"folder-minus\": 63069,\n  \"folder-music\": 57741,\n  \"folder-open\": 61564,\n  \"folder-plus\": 63070,\n  \"folder-search\": 57739,\n  \"folder-times\": 63071,\n  \"folder-tree\": 63490,\n  \"folder-upload\": 57428,\n  \"folder-user\": 57742,\n  \"folder-xmark\": 63071,\n  \"folder\": 61563,\n  \"folders\": 63072,\n  \"fondue-pot\": 58381,\n  \"font-awesome-flag\": 62132,\n  \"font-awesome-logo-full\": 62132,\n  \"font-awesome\": 62132,\n  \"font-case\": 63590,\n  \"font\": 61489,\n  \"foot-wing\": 59444,\n  \"football-ball\": 62542,\n  \"football-helmet\": 62543,\n  \"football\": 62542,\n  \"fork-knife\": 62182,\n  \"fork\": 62179,\n  \"forklift\": 62586,\n  \"fort\": 58502,\n  \"forward-fast\": 61520,\n  \"forward-step\": 61521,\n  \"forward\": 61518,\n  \"fragile\": 62651,\n  \"frame\": 58517,\n  \"franc-sign\": 57743,\n  \"french-fries\": 63491,\n  \"frog\": 62766,\n  \"frosty-head\": 63387,\n  \"frown-open\": 62842,\n  \"frown\": 61721,\n  \"function\": 63073,\n  \"funnel-dollar\": 63074,\n  \"futbol-ball\": 61923,\n  \"futbol\": 61923,\n  \"g\": 71,\n  \"galaxy\": 57352,\n  \"gallery-thumbnails\": 58282,\n  \"game-board-alt\": 63592,\n  \"game-board-simple\": 63592,\n  \"game-board\": 63591,\n  \"game-console-handheld-crank\": 58809,\n  \"game-console-handheld\": 63675,\n  \"gamepad-alt\": 58786,\n  \"gamepad-modern\": 58786,\n  \"gamepad\": 61723,\n  \"garage-car\": 57354,\n  \"garage-empty\": 59081,\n  \"garage-open\": 57355,\n  \"garage\": 57353,\n  \"garlic\": 58382,\n  \"gas-pump-left\": 59256,\n  \"gas-pump-right\": 59257,\n  \"gas-pump-slash\": 62964,\n  \"gas-pump\": 62767,\n  \"gauge-circle-bolt\": 58518,\n  \"gauge-circle-minus\": 58519,\n  \"gauge-circle-plus\": 58520,\n  \"gauge-high\": 63013,\n  \"gauge-low\": 63015,\n  \"gauge-max\": 63014,\n  \"gauge-med\": 63012,\n  \"gauge-min\": 63016,\n  \"gauge-simple-high\": 63018,\n  \"gauge-simple-low\": 63020,\n  \"gauge-simple-max\": 63019,\n  \"gauge-simple-med\": 63017,\n  \"gauge-simple-min\": 63021,\n  \"gauge-simple\": 63017,\n  \"gauge\": 63012,\n  \"gave-dandy\": 58377,\n  \"gavel\": 61667,\n  \"gbp\": 61780,\n  \"gear-api\": 59556,\n  \"gear-code\": 58856,\n  \"gear-complex-api\": 59557,\n  \"gear-complex-code\": 58859,\n  \"gear-complex\": 58857,\n  \"gear\": 61459,\n  \"gears\": 61573,\n  \"gem\": 62373,\n  \"gemini\": 59465,\n  \"genderless\": 61997,\n  \"ghost\": 63202,\n  \"gif\": 57744,\n  \"gift-card\": 63075,\n  \"gift\": 61547,\n  \"gifts\": 63388,\n  \"gingerbread-man\": 63389,\n  \"glass-champagne\": 63390,\n  \"glass-cheers\": 63391,\n  \"glass-citrus\": 63593,\n  \"glass-empty\": 57745,\n  \"glass-half-empty\": 57746,\n  \"glass-half-full\": 57746,\n  \"glass-half\": 57746,\n  \"glass-martini-alt\": 62843,\n  \"glass-martini\": 61440,\n  \"glass-water-droplet\": 58613,\n  \"glass-water\": 58612,\n  \"glass-whiskey-rocks\": 63393,\n  \"glass-whiskey\": 63392,\n  \"glass\": 63492,\n  \"glasses-alt\": 62965,\n  \"glasses-round\": 62965,\n  \"glasses\": 62768,\n  \"globe-africa\": 62844,\n  \"globe-americas\": 62845,\n  \"globe-asia\": 62846,\n  \"globe-europe\": 63394,\n  \"globe-oceania\": 58491,\n  \"globe-pointer\": 58894,\n  \"globe-snow\": 63395,\n  \"globe-stand\": 62966,\n  \"globe-wifi\": 59013,\n  \"globe-www\": 59558,\n  \"globe\": 61612,\n  \"glove-boxing\": 62520,\n  \"goal-net\": 58283,\n  \"golf-ball-tee\": 62544,\n  \"golf-ball\": 62544,\n  \"golf-club\": 62545,\n  \"golf-flag-hole\": 58284,\n  \"gopuram\": 63076,\n  \"gpu\": 59459,\n  \"graduation-cap\": 61853,\n  \"gramophone\": 63677,\n  \"grapes\": 58118,\n  \"grate-droplet\": 57748,\n  \"grate\": 57747,\n  \"greater-than-equal\": 62770,\n  \"greater-than\": 62,\n  \"grid-2-minus\": 59050,\n  \"grid-2-plus\": 57751,\n  \"grid-2\": 57750,\n  \"grid-3\": 57749,\n  \"grid-4\": 57752,\n  \"grid-5\": 57753,\n  \"grid-dividers\": 58285,\n  \"grid-horizontal\": 62861,\n  \"grid-round-2-minus\": 59051,\n  \"grid-round-2-plus\": 58844,\n  \"grid-round-2\": 58843,\n  \"grid-round-4\": 58845,\n  \"grid-round-5\": 58846,\n  \"grid-round\": 58842,\n  \"grid-vertical\": 62862,\n  \"grid\": 57749,\n  \"grill-fire\": 58788,\n  \"grill-hot\": 58789,\n  \"grill\": 58787,\n  \"grimace\": 62847,\n  \"grin-alt\": 62849,\n  \"grin-beam-sweat\": 62851,\n  \"grin-beam\": 62850,\n  \"grin-hearts\": 62852,\n  \"grin-squint-tears\": 62854,\n  \"grin-squint\": 62853,\n  \"grin-stars\": 62855,\n  \"grin-tears\": 62856,\n  \"grin-tongue-squint\": 62858,\n  \"grin-tongue-wink\": 62859,\n  \"grin-tongue\": 62857,\n  \"grin-wink\": 62860,\n  \"grin\": 62848,\n  \"grip-dots-vertical\": 58385,\n  \"grip-dots\": 58384,\n  \"grip-horizontal\": 62861,\n  \"grip-lines-vertical\": 63397,\n  \"grip-lines\": 63396,\n  \"grip-vertical\": 62862,\n  \"grip\": 62861,\n  \"group-arrows-rotate\": 58614,\n  \"guarani-sign\": 57754,\n  \"guitar-electric\": 63678,\n  \"guitar\": 63398,\n  \"guitars\": 63679,\n  \"gun-slash\": 57756,\n  \"gun-squirt\": 57757,\n  \"gun\": 57755,\n  \"h-square\": 61693,\n  \"h\": 72,\n  \"h1\": 62227,\n  \"h2\": 62228,\n  \"h3\": 62229,\n  \"h4\": 63594,\n  \"h5\": 58386,\n  \"h6\": 58387,\n  \"hamburger\": 63493,\n  \"hammer-brush\": 58912,\n  \"hammer-crash\": 58388,\n  \"hammer-war\": 63204,\n  \"hammer\": 63203,\n  \"hamsa\": 63077,\n  \"hand-back-fist\": 62037,\n  \"hand-back-point-down\": 57758,\n  \"hand-back-point-left\": 57759,\n  \"hand-back-point-ribbon\": 57760,\n  \"hand-back-point-right\": 57761,\n  \"hand-back-point-up\": 57762,\n  \"hand-dots\": 62561,\n  \"hand-fingers-crossed\": 57763,\n  \"hand-fist\": 63198,\n  \"hand-heart\": 62652,\n  \"hand-holding-box\": 62587,\n  \"hand-holding-circle-dollar\": 58913,\n  \"hand-holding-dollar\": 62656,\n  \"hand-holding-droplet\": 62657,\n  \"hand-holding-hand\": 58615,\n  \"hand-holding-heart\": 62654,\n  \"hand-holding-magic\": 63205,\n  \"hand-holding-medical\": 57436,\n  \"hand-holding-seedling\": 62655,\n  \"hand-holding-skull\": 57764,\n  \"hand-holding-star\": 59393,\n  \"hand-holding-usd\": 62656,\n  \"hand-holding-water\": 62657,\n  \"hand-holding\": 62653,\n  \"hand-horns\": 57769,\n  \"hand-lizard\": 62040,\n  \"hand-love\": 57765,\n  \"hand-middle-finger\": 63494,\n  \"hand-paper\": 62038,\n  \"hand-peace\": 62043,\n  \"hand-point-down\": 61607,\n  \"hand-point-left\": 61605,\n  \"hand-point-ribbon\": 57766,\n  \"hand-point-right\": 61604,\n  \"hand-point-up\": 61606,\n  \"hand-pointer\": 62042,\n  \"hand-receiving\": 62588,\n  \"hand-rock\": 62037,\n  \"hand-scissors\": 62039,\n  \"hand-shaka\": 59441,\n  \"hand-sparkles\": 57437,\n  \"hand-spock\": 62041,\n  \"hand-wave\": 57767,\n  \"hand\": 62038,\n  \"handcuffs\": 58616,\n  \"hands-american-sign-language-interpreting\": 62115,\n  \"hands-asl-interpreting\": 62115,\n  \"hands-bound\": 58617,\n  \"hands-bubbles\": 57438,\n  \"hands-clapping\": 57768,\n  \"hands-heart\": 62659,\n  \"hands-helping\": 62660,\n  \"hands-holding-child\": 58618,\n  \"hands-holding-circle\": 58619,\n  \"hands-holding-diamond\": 62588,\n  \"hands-holding-dollar\": 62661,\n  \"hands-holding-heart\": 62659,\n  \"hands-holding\": 62658,\n  \"hands-praying\": 63108,\n  \"hands-usd\": 62661,\n  \"hands-wash\": 57438,\n  \"hands\": 62119,\n  \"handshake-alt-slash\": 57440,\n  \"handshake-alt\": 62133,\n  \"handshake-angle\": 62660,\n  \"handshake-simple-slash\": 57440,\n  \"handshake-simple\": 62133,\n  \"handshake-slash\": 57440,\n  \"handshake\": 62133,\n  \"hanukiah\": 63206,\n  \"hard-drive\": 61600,\n  \"hard-hat\": 63495,\n  \"hard-of-hearing\": 62116,\n  \"hashtag-lock\": 58389,\n  \"hashtag\": 35,\n  \"hat-beach\": 58886,\n  \"hat-chef\": 63595,\n  \"hat-cowboy-side\": 63681,\n  \"hat-cowboy\": 63680,\n  \"hat-hard\": 63495,\n  \"hat-santa\": 63399,\n  \"hat-winter\": 63400,\n  \"hat-witch\": 63207,\n  \"hat-wizard\": 63208,\n  \"haykal\": 63078,\n  \"hdd\": 61600,\n  \"head-side-brain\": 63496,\n  \"head-side-circuit\": 59230,\n  \"head-side-cough-slash\": 57442,\n  \"head-side-cough\": 57441,\n  \"head-side-gear\": 58897,\n  \"head-side-goggles\": 63210,\n  \"head-side-headphones\": 63682,\n  \"head-side-heart\": 57770,\n  \"head-side-mask\": 57443,\n  \"head-side-medical\": 63497,\n  \"head-side-speak\": 59231,\n  \"head-side-virus\": 57444,\n  \"head-side\": 63209,\n  \"head-vr\": 63210,\n  \"header\": 61916,\n  \"heading\": 61916,\n  \"headphones-alt\": 61477,\n  \"headphones-simple\": 61477,\n  \"headphones-slash\": 59260,\n  \"headphones\": 61477,\n  \"headset\": 62864,\n  \"heart-broken\": 63401,\n  \"heart-circle-bolt\": 58620,\n  \"heart-circle-check\": 58621,\n  \"heart-circle-exclamation\": 58622,\n  \"heart-circle-minus\": 58623,\n  \"heart-circle-plus\": 58624,\n  \"heart-circle-xmark\": 58625,\n  \"heart-circle\": 62663,\n  \"heart-crack\": 63401,\n  \"heart-half-alt\": 57772,\n  \"heart-half-stroke\": 57772,\n  \"heart-half\": 57771,\n  \"heart-music-camera-bolt\": 63597,\n  \"heart-pulse\": 61982,\n  \"heart-rate\": 62968,\n  \"heart-slash\": 59278,\n  \"heart-square\": 62664,\n  \"heart\": 61444,\n  \"heartbeat\": 61982,\n  \"hearts\": 59279,\n  \"heat\": 57356,\n  \"helicopter-symbol\": 58626,\n  \"helicopter\": 62771,\n  \"helmet-battle\": 63211,\n  \"helmet-safety\": 63495,\n  \"helmet-un\": 58627,\n  \"heptagon\": 59424,\n  \"hexagon-check\": 58390,\n  \"hexagon-divide\": 57773,\n  \"hexagon-equals\": 59058,\n  \"hexagon-exclamation\": 58391,\n  \"hexagon-image\": 58628,\n  \"hexagon-minus\": 62215,\n  \"hexagon-nodes-bolt\": 59034,\n  \"hexagon-nodes\": 59033,\n  \"hexagon-plus\": 62208,\n  \"hexagon-vertical-nft-slanted\": 58629,\n  \"hexagon-vertical-nft\": 58629,\n  \"hexagon-xmark\": 62190,\n  \"hexagon\": 62226,\n  \"high-definition\": 57774,\n  \"highlighter-line\": 57775,\n  \"highlighter\": 62865,\n  \"hiking\": 63212,\n  \"hill-avalanche\": 58631,\n  \"hill-rockslide\": 58632,\n  \"hippo\": 63213,\n  \"history\": 61914,\n  \"hockey-mask\": 63214,\n  \"hockey-puck\": 62547,\n  \"hockey-stick-puck\": 58286,\n  \"hockey-stick\": 59366,\n  \"hockey-sticks\": 62548,\n  \"holly-berry\": 63402,\n  \"home-alt\": 61461,\n  \"home-blank\": 58503,\n  \"home-heart\": 62665,\n  \"home-lg-alt\": 61461,\n  \"home-lg\": 58287,\n  \"home-user\": 57776,\n  \"home\": 61461,\n  \"honey-pot\": 58392,\n  \"hood-cloak\": 63215,\n  \"horizontal-rule\": 63596,\n  \"horse-head\": 63403,\n  \"horse-saddle\": 63683,\n  \"horse\": 63216,\n  \"horseshoe\": 59418,\n  \"hose-reel\": 58394,\n  \"hose\": 58393,\n  \"hospital-alt\": 61688,\n  \"hospital-symbol\": 62590,\n  \"hospital-user\": 63501,\n  \"hospital-wide\": 61688,\n  \"hospital\": 61688,\n  \"hospitals\": 63502,\n  \"hot-tub-person\": 62867,\n  \"hot-tub\": 62867,\n  \"hotdog\": 63503,\n  \"hotel\": 62868,\n  \"hourglass-1\": 62033,\n  \"hourglass-2\": 62034,\n  \"hourglass-3\": 62035,\n  \"hourglass-clock\": 58395,\n  \"hourglass-empty\": 62036,\n  \"hourglass-end\": 62035,\n  \"hourglass-half\": 62034,\n  \"hourglass-start\": 62033,\n  \"hourglass\": 62036,\n  \"house-blank\": 58503,\n  \"house-building\": 57777,\n  \"house-chimney-blank\": 58288,\n  \"house-chimney-crack\": 63217,\n  \"house-chimney-heart\": 57778,\n  \"house-chimney-medical\": 63474,\n  \"house-chimney-user\": 57445,\n  \"house-chimney-window\": 57357,\n  \"house-chimney\": 58287,\n  \"house-circle-check\": 58633,\n  \"house-circle-exclamation\": 58634,\n  \"house-circle-xmark\": 58635,\n  \"house-crack\": 58289,\n  \"house-damage\": 63217,\n  \"house-day\": 57358,\n  \"house-fire\": 58636,\n  \"house-flag\": 58637,\n  \"house-flood-water-circle-arrow-right\": 58639,\n  \"house-flood-water\": 58638,\n  \"house-flood\": 63311,\n  \"house-heart\": 62665,\n  \"house-laptop\": 57446,\n  \"house-leave\": 57359,\n  \"house-lock\": 58640,\n  \"house-medical-circle-check\": 58641,\n  \"house-medical-circle-exclamation\": 58642,\n  \"house-medical-circle-xmark\": 58643,\n  \"house-medical-flag\": 58644,\n  \"house-medical\": 58290,\n  \"house-night\": 57360,\n  \"house-person-arrive\": 57361,\n  \"house-person-depart\": 57359,\n  \"house-person-leave\": 57359,\n  \"house-person-return\": 57361,\n  \"house-return\": 57361,\n  \"house-signal\": 57362,\n  \"house-tree\": 57779,\n  \"house-tsunami\": 58645,\n  \"house-turret\": 57780,\n  \"house-unlock\": 59082,\n  \"house-user\": 57776,\n  \"house-water\": 63311,\n  \"house-window\": 58291,\n  \"house\": 61461,\n  \"hryvnia-sign\": 63218,\n  \"hryvnia\": 63218,\n  \"humidity\": 63312,\n  \"hundred-points\": 58396,\n  \"hurricane\": 63313,\n  \"hydra\": 59014,\n  \"hyphen\": 45,\n  \"i-cursor\": 62022,\n  \"i\": 73,\n  \"ice-cream\": 63504,\n  \"ice-skate\": 63404,\n  \"icicles\": 63405,\n  \"icons-alt\": 63598,\n  \"icons\": 63597,\n  \"id-badge\": 62145,\n  \"id-card-alt\": 62591,\n  \"id-card-clip\": 62591,\n  \"id-card\": 62146,\n  \"igloo\": 63406,\n  \"ils\": 61963,\n  \"image-broken\": 59562,\n  \"image-circle-arrow-down\": 59244,\n  \"image-circle-check\": 59245,\n  \"image-circle-plus\": 59246,\n  \"image-circle-xmark\": 59247,\n  \"image-landscape\": 57781,\n  \"image-music\": 59248,\n  \"image-polaroid-user\": 57782,\n  \"image-polaroid\": 63684,\n  \"image-portrait\": 62432,\n  \"image-slash\": 57783,\n  \"image-stack\": 59249,\n  \"image-user\": 57784,\n  \"image\": 61502,\n  \"images-user\": 57785,\n  \"images\": 62210,\n  \"inbox-arrow-down\": 62224,\n  \"inbox-arrow-up\": 62225,\n  \"inbox-full\": 57786,\n  \"inbox-in\": 62224,\n  \"inbox-out\": 62225,\n  \"inbox\": 61468,\n  \"inboxes\": 57787,\n  \"indent\": 61500,\n  \"indian-rupee-sign\": 57788,\n  \"indian-rupee\": 57788,\n  \"industry-alt\": 62387,\n  \"industry-windows\": 62387,\n  \"industry\": 62069,\n  \"infinity\": 62772,\n  \"info-circle\": 61530,\n  \"info-square\": 62223,\n  \"info\": 61737,\n  \"inhaler\": 62969,\n  \"input-numeric\": 57789,\n  \"input-password\": 59517,\n  \"input-pipe\": 57790,\n  \"input-text\": 57791,\n  \"inr\": 57788,\n  \"institution\": 61852,\n  \"integral\": 63079,\n  \"interrobang\": 58810,\n  \"intersection\": 63080,\n  \"inventory\": 62592,\n  \"island-tree-palm\": 63505,\n  \"island-tropical\": 63505,\n  \"italic\": 61491,\n  \"j\": 74,\n  \"jack-o-lantern\": 62222,\n  \"jar-wheat\": 58647,\n  \"jar\": 58646,\n  \"jeans-straight\": 59091,\n  \"jeans\": 59090,\n  \"jedi\": 63081,\n  \"jet-fighter-up\": 58648,\n  \"jet-fighter\": 61691,\n  \"joint\": 62869,\n  \"journal-whills\": 63082,\n  \"joystick\": 63685,\n  \"jpy\": 61783,\n  \"jug-bottle\": 58875,\n  \"jug-detergent\": 58649,\n  \"jug\": 63686,\n  \"k\": 75,\n  \"kaaba\": 63083,\n  \"kayak\": 59547,\n  \"kazoo\": 63687,\n  \"kerning\": 63599,\n  \"kettlebell\": 59442,\n  \"key-skeleton-left-right\": 58292,\n  \"key-skeleton\": 63219,\n  \"key\": 61572,\n  \"keyboard-brightness-low\": 57793,\n  \"keyboard-brightness\": 57792,\n  \"keyboard-down\": 57794,\n  \"keyboard-left\": 57795,\n  \"keyboard\": 61724,\n  \"keynote\": 63084,\n  \"khanda\": 63085,\n  \"kidneys\": 62971,\n  \"kip-sign\": 57796,\n  \"kiss-beam\": 62871,\n  \"kiss-wink-heart\": 62872,\n  \"kiss\": 62870,\n  \"kit-medical\": 62585,\n  \"kitchen-set\": 58650,\n  \"kite\": 63220,\n  \"kiwi-bird\": 62773,\n  \"kiwi-fruit\": 58124,\n  \"knife-kitchen\": 63221,\n  \"knife\": 62180,\n  \"krw\": 61785,\n  \"l\": 76,\n  \"label\": 59559,\n  \"lacrosse-stick-ball\": 58294,\n  \"lacrosse-stick\": 58293,\n  \"ladder-water\": 62917,\n  \"lambda\": 63086,\n  \"lamp-desk\": 57364,\n  \"lamp-floor\": 57365,\n  \"lamp-street\": 57797,\n  \"lamp\": 62666,\n  \"land-mine-on\": 58651,\n  \"landmark-alt\": 63314,\n  \"landmark-dome\": 63314,\n  \"landmark-flag\": 58652,\n  \"landmark-magnifying-glass\": 58914,\n  \"landmark\": 63087,\n  \"landscape\": 57781,\n  \"language\": 61867,\n  \"laptop-arrow-down\": 57798,\n  \"laptop-binary\": 58855,\n  \"laptop-code\": 62972,\n  \"laptop-file\": 58653,\n  \"laptop-house\": 57446,\n  \"laptop-medical\": 63506,\n  \"laptop-mobile\": 63610,\n  \"laptop-slash\": 57799,\n  \"laptop\": 61705,\n  \"lari-sign\": 57800,\n  \"lasso-sparkles\": 57801,\n  \"lasso\": 63688,\n  \"laugh-beam\": 62874,\n  \"laugh-squint\": 62875,\n  \"laugh-wink\": 62876,\n  \"laugh\": 62873,\n  \"layer-group-minus\": 62974,\n  \"layer-group-plus\": 62975,\n  \"layer-group\": 62973,\n  \"layer-minus\": 62974,\n  \"layer-plus\": 62975,\n  \"layer\": 59455,\n  \"leaf-heart\": 62667,\n  \"leaf-maple\": 63222,\n  \"leaf-oak\": 63223,\n  \"leaf\": 61548,\n  \"leafy-green\": 58397,\n  \"left-from-bracket\": 58988,\n  \"left-from-dotted-line\": 59074,\n  \"left-from-line\": 62280,\n  \"left-long-to-line\": 58398,\n  \"left-long\": 62218,\n  \"left-right\": 62263,\n  \"left-to-bracket\": 58989,\n  \"left-to-dotted-line\": 59075,\n  \"left-to-line\": 62283,\n  \"left\": 62293,\n  \"legal\": 61667,\n  \"lemon\": 61588,\n  \"leo\": 59466,\n  \"less-than-equal\": 62775,\n  \"less-than\": 60,\n  \"level-down-alt\": 62398,\n  \"level-down\": 61769,\n  \"level-up-alt\": 62399,\n  \"level-up\": 61768,\n  \"libra\": 59467,\n  \"life-ring\": 61901,\n  \"light-ceiling\": 57366,\n  \"light-emergency-on\": 58400,\n  \"light-emergency\": 58399,\n  \"light-switch-off\": 57368,\n  \"light-switch-on\": 57369,\n  \"light-switch\": 57367,\n  \"lightbulb-cfl-on\": 58791,\n  \"lightbulb-cfl\": 58790,\n  \"lightbulb-dollar\": 63088,\n  \"lightbulb-exclamation-on\": 57802,\n  \"lightbulb-exclamation\": 63089,\n  \"lightbulb-gear\": 58877,\n  \"lightbulb-message\": 59015,\n  \"lightbulb-on\": 63090,\n  \"lightbulb-slash\": 63091,\n  \"lightbulb\": 61675,\n  \"lighthouse\": 58898,\n  \"lights-holiday\": 63410,\n  \"line-chart\": 61953,\n  \"line-columns\": 63600,\n  \"line-height\": 63601,\n  \"lines-leaning\": 58654,\n  \"link-broken\": 59458,\n  \"link-horizontal-slash\": 57804,\n  \"link-horizontal\": 57803,\n  \"link-simple-slash\": 57806,\n  \"link-simple\": 57805,\n  \"link-slash\": 61735,\n  \"link\": 61633,\n  \"lips\": 62976,\n  \"lira-sign\": 61845,\n  \"list-1-2\": 61643,\n  \"list-alt\": 61474,\n  \"list-check\": 61614,\n  \"list-dots\": 61642,\n  \"list-dropdown\": 57807,\n  \"list-music\": 63689,\n  \"list-numeric\": 61643,\n  \"list-ol\": 61643,\n  \"list-radio\": 57808,\n  \"list-squares\": 61498,\n  \"list-timeline\": 57809,\n  \"list-tree\": 57810,\n  \"list-ul\": 61642,\n  \"list\": 61498,\n  \"litecoin-sign\": 57811,\n  \"loader\": 57812,\n  \"lobster\": 58401,\n  \"location-arrow-slash\": 59258,\n  \"location-arrow-up\": 58938,\n  \"location-arrow\": 61732,\n  \"location-check\": 62982,\n  \"location-circle\": 62978,\n  \"location-crosshairs-slash\": 62979,\n  \"location-crosshairs\": 62977,\n  \"location-dot-slash\": 62981,\n  \"location-dot\": 62405,\n  \"location-exclamation\": 62984,\n  \"location-minus\": 62985,\n  \"location-pen\": 62983,\n  \"location-pin-lock\": 58655,\n  \"location-pin-slash\": 62988,\n  \"location-pin\": 61505,\n  \"location-plus\": 62986,\n  \"location-question\": 62987,\n  \"location-slash\": 62979,\n  \"location-smile\": 62989,\n  \"location-xmark\": 62990,\n  \"location\": 62977,\n  \"lock-a\": 58402,\n  \"lock-alt\": 62221,\n  \"lock-hashtag\": 58403,\n  \"lock-keyhole-open\": 62402,\n  \"lock-keyhole\": 62221,\n  \"lock-open-alt\": 62402,\n  \"lock-open\": 62401,\n  \"lock\": 61475,\n  \"locust\": 58656,\n  \"lollipop\": 58404,\n  \"lollypop\": 58404,\n  \"long-arrow-alt-down\": 62217,\n  \"long-arrow-alt-left\": 62218,\n  \"long-arrow-alt-right\": 62219,\n  \"long-arrow-alt-up\": 62220,\n  \"long-arrow-down\": 61813,\n  \"long-arrow-left\": 61815,\n  \"long-arrow-right\": 61816,\n  \"long-arrow-up\": 61814,\n  \"loveseat\": 62668,\n  \"low-vision\": 62120,\n  \"luchador-mask\": 62549,\n  \"luchador\": 62549,\n  \"luggage-cart\": 62877,\n  \"lungs-virus\": 57447,\n  \"lungs\": 62980,\n  \"lychee\": 59428,\n  \"m\": 77,\n  \"mace\": 63224,\n  \"magic-wand-sparkles\": 58058,\n  \"magic\": 61648,\n  \"magnet\": 61558,\n  \"magnifying-glass-arrow-right\": 58657,\n  \"magnifying-glass-arrows-rotate\": 58974,\n  \"magnifying-glass-chart\": 58658,\n  \"magnifying-glass-dollar\": 63112,\n  \"magnifying-glass-location\": 63113,\n  \"magnifying-glass-minus\": 61456,\n  \"magnifying-glass-music\": 58975,\n  \"magnifying-glass-play\": 58976,\n  \"magnifying-glass-plus\": 61454,\n  \"magnifying-glass-waveform\": 58977,\n  \"magnifying-glass\": 61442,\n  \"mail-bulk\": 63092,\n  \"mail-forward\": 61540,\n  \"mail-reply-all\": 61730,\n  \"mail-reply\": 62437,\n  \"mailbox-flag-up\": 58811,\n  \"mailbox-open-empty\": 59425,\n  \"mailbox-open-letter\": 59427,\n  \"mailbox\": 63507,\n  \"maki-roll\": 58507,\n  \"makizushi\": 58507,\n  \"malaysian-ringgit-sign\": 59130,\n  \"male\": 61827,\n  \"manat-sign\": 57813,\n  \"mandolin\": 63225,\n  \"mango\": 58127,\n  \"manhole\": 57814,\n  \"map-location-dot\": 62880,\n  \"map-location\": 62879,\n  \"map-marked-alt\": 62880,\n  \"map-marked\": 62879,\n  \"map-marker-alt-slash\": 62981,\n  \"map-marker-alt\": 62405,\n  \"map-marker-check\": 62982,\n  \"map-marker-edit\": 62983,\n  \"map-marker-exclamation\": 62984,\n  \"map-marker-minus\": 62985,\n  \"map-marker-plus\": 62986,\n  \"map-marker-question\": 62987,\n  \"map-marker-slash\": 62988,\n  \"map-marker-smile\": 62989,\n  \"map-marker-times\": 62990,\n  \"map-marker-xmark\": 62990,\n  \"map-marker\": 61505,\n  \"map-pin\": 62070,\n  \"map-signs\": 62071,\n  \"map\": 62073,\n  \"marker\": 62881,\n  \"mars-and-venus-burst\": 58659,\n  \"mars-and-venus\": 61988,\n  \"mars-double\": 61991,\n  \"mars-stroke-h\": 61995,\n  \"mars-stroke-right\": 61995,\n  \"mars-stroke-up\": 61994,\n  \"mars-stroke-v\": 61994,\n  \"mars-stroke\": 61993,\n  \"mars\": 61986,\n  \"martini-glass-citrus\": 62817,\n  \"martini-glass-empty\": 61440,\n  \"martini-glass\": 62843,\n  \"mask-face\": 57815,\n  \"mask-luchador\": 62549,\n  \"mask-snorkel\": 58295,\n  \"mask-ventilator\": 58660,\n  \"mask\": 63226,\n  \"masks-theater\": 63024,\n  \"mattress-pillow\": 58661,\n  \"maximize\": 62238,\n  \"meat\": 63508,\n  \"medal\": 62882,\n  \"medkit\": 61690,\n  \"megaphone\": 63093,\n  \"meh-blank\": 62884,\n  \"meh-rolling-eyes\": 62885,\n  \"meh\": 61722,\n  \"melon-slice\": 58129,\n  \"melon\": 58128,\n  \"memo-circle-check\": 57817,\n  \"memo-circle-info\": 58522,\n  \"memo-pad\": 57818,\n  \"memo\": 57816,\n  \"memory\": 62776,\n  \"menorah\": 63094,\n  \"mercury\": 61987,\n  \"merge\": 58662,\n  \"message-arrow-down\": 57819,\n  \"message-arrow-up-right\": 57821,\n  \"message-arrow-up\": 57820,\n  \"message-bot\": 58296,\n  \"message-captions\": 57822,\n  \"message-check\": 62626,\n  \"message-code\": 57823,\n  \"message-dollar\": 63056,\n  \"message-dot\": 59103,\n  \"message-dots\": 62627,\n  \"message-edit\": 62628,\n  \"message-exclamation\": 62629,\n  \"message-heart\": 58825,\n  \"message-image\": 57824,\n  \"message-lines\": 62630,\n  \"message-medical\": 63476,\n  \"message-middle-top\": 57826,\n  \"message-middle\": 57825,\n  \"message-minus\": 62631,\n  \"message-music\": 63663,\n  \"message-pen\": 62628,\n  \"message-plus\": 62632,\n  \"message-question\": 57827,\n  \"message-quote\": 57828,\n  \"message-slash\": 62633,\n  \"message-smile\": 62634,\n  \"message-sms\": 57829,\n  \"message-text\": 57830,\n  \"message-times\": 62635,\n  \"message-waveform\": 59104,\n  \"message-xmark\": 62635,\n  \"message\": 62074,\n  \"messages-dollar\": 63058,\n  \"messages-question\": 57831,\n  \"messages\": 62646,\n  \"messaging\": 62627,\n  \"meteor\": 63315,\n  \"meter-bolt\": 57833,\n  \"meter-droplet\": 57834,\n  \"meter-fire\": 57835,\n  \"meter\": 57832,\n  \"microchip-ai\": 57836,\n  \"microchip\": 62171,\n  \"microphone-alt-slash\": 62777,\n  \"microphone-alt\": 62409,\n  \"microphone-circle-alt\": 57623,\n  \"microphone-circle-plus\": 59261,\n  \"microphone-circle-xmark\": 59262,\n  \"microphone-circle\": 57622,\n  \"microphone-lines-slash\": 62777,\n  \"microphone-lines\": 62409,\n  \"microphone-signal-meter\": 59232,\n  \"microphone-slash\": 61745,\n  \"microphone-stand\": 63691,\n  \"microphone\": 61744,\n  \"microscope\": 62992,\n  \"microwave\": 57371,\n  \"midi\": 59398,\n  \"mill-sign\": 57837,\n  \"mind-share\": 63095,\n  \"minimize\": 63372,\n  \"minus-circle\": 61526,\n  \"minus-hexagon\": 62215,\n  \"minus-large\": 58372,\n  \"minus-octagon\": 62216,\n  \"minus-square\": 61766,\n  \"minus\": 61544,\n  \"mistletoe\": 63412,\n  \"mitten\": 63413,\n  \"mobile-alt\": 62413,\n  \"mobile-android-alt\": 62415,\n  \"mobile-android\": 62414,\n  \"mobile-arrow-down\": 59211,\n  \"mobile-button\": 61707,\n  \"mobile-iphone\": 57838,\n  \"mobile-notch\": 57838,\n  \"mobile-phone\": 62414,\n  \"mobile-retro\": 58663,\n  \"mobile-rotate-reverse\": 59412,\n  \"mobile-rotate\": 59411,\n  \"mobile-screen-button\": 62413,\n  \"mobile-screen\": 62415,\n  \"mobile-signal-out\": 57840,\n  \"mobile-signal\": 57839,\n  \"mobile-slash\": 59413,\n  \"mobile-vibrate-slash\": 59415,\n  \"mobile-vibrate\": 59414,\n  \"mobile\": 62414,\n  \"money-bill-1-wave\": 62779,\n  \"money-bill-1\": 62417,\n  \"money-bill-alt\": 62417,\n  \"money-bill-simple-wave\": 57842,\n  \"money-bill-simple\": 57841,\n  \"money-bill-transfer\": 58664,\n  \"money-bill-trend-up\": 58665,\n  \"money-bill-wave-alt\": 62779,\n  \"money-bill-wave\": 62778,\n  \"money-bill-wheat\": 58666,\n  \"money-bill\": 61654,\n  \"money-bills-alt\": 57844,\n  \"money-bills-simple\": 57844,\n  \"money-bills\": 57843,\n  \"money-check-alt\": 62781,\n  \"money-check-dollar-pen\": 63603,\n  \"money-check-dollar\": 62781,\n  \"money-check-edit-alt\": 63603,\n  \"money-check-edit\": 63602,\n  \"money-check-pen\": 63602,\n  \"money-check\": 62780,\n  \"money-from-bracket\": 58130,\n  \"money-simple-from-bracket\": 58131,\n  \"monitor-heart-rate\": 62993,\n  \"monitor-waveform\": 62993,\n  \"monkey\": 63227,\n  \"monument\": 62886,\n  \"moon-cloud\": 63316,\n  \"moon-first-quarter-inverse\": 59506,\n  \"moon-first-quarter\": 59504,\n  \"moon-full-inverse\": 59507,\n  \"moon-full\": 59505,\n  \"moon-last-quarter-inverse\": 59504,\n  \"moon-last-quarter\": 59506,\n  \"moon-new-inverse\": 59505,\n  \"moon-new\": 59507,\n  \"moon-over-sun\": 63306,\n  \"moon-star\": 59337,\n  \"moon-stars\": 63317,\n  \"moon-waning-crescent-inverse\": 59511,\n  \"moon-waning-crescent\": 59508,\n  \"moon-waning-gibbous-inverse\": 59510,\n  \"moon-waning-gibbous\": 59509,\n  \"moon-waxing-crescent-inverse\": 59509,\n  \"moon-waxing-crescent\": 59510,\n  \"moon-waxing-gibbous-inverse\": 59508,\n  \"moon-waxing-gibbous\": 59511,\n  \"moon\": 61830,\n  \"moped\": 58297,\n  \"mortar-board\": 61853,\n  \"mortar-pestle\": 62887,\n  \"mosque\": 63096,\n  \"mosquito-net\": 58668,\n  \"mosquito\": 58667,\n  \"motorcycle\": 61980,\n  \"mound\": 58669,\n  \"mountain-city\": 58670,\n  \"mountain-sun\": 58671,\n  \"mountain\": 63228,\n  \"mountains\": 63229,\n  \"mouse-alt\": 63693,\n  \"mouse-field\": 58792,\n  \"mouse-pointer\": 62021,\n  \"mouse\": 63692,\n  \"mp3-player\": 63694,\n  \"mug-hot\": 63414,\n  \"mug-marshmallows\": 63415,\n  \"mug-saucer\": 61684,\n  \"mug-tea-saucer\": 57845,\n  \"mug-tea\": 63605,\n  \"mug\": 63604,\n  \"multiply\": 61453,\n  \"museum\": 61852,\n  \"mushroom\": 58405,\n  \"music-alt-slash\": 63696,\n  \"music-alt\": 63695,\n  \"music-magnifying-glass\": 58978,\n  \"music-note-slash\": 63696,\n  \"music-note\": 63695,\n  \"music-slash\": 63697,\n  \"music\": 61441,\n  \"mustache\": 58812,\n  \"n\": 78,\n  \"naira-sign\": 57846,\n  \"narwhal\": 63230,\n  \"nas\": 59553,\n  \"navicon\": 61641,\n  \"nesting-dolls\": 58298,\n  \"network-wired\": 63231,\n  \"neuter\": 61996,\n  \"newspaper\": 61930,\n  \"nfc-lock\": 57848,\n  \"nfc-magnifying-glass\": 57849,\n  \"nfc-pen\": 57850,\n  \"nfc-signal\": 57851,\n  \"nfc-slash\": 57852,\n  \"nfc-symbol\": 58673,\n  \"nfc-trash\": 57853,\n  \"nfc\": 57847,\n  \"nigiri\": 58506,\n  \"non-binary\": 59399,\n  \"norwegian-krone-sign\": 59112,\n  \"nose\": 58813,\n  \"not-equal\": 62782,\n  \"notdef\": 57854,\n  \"note-medical\": 57856,\n  \"note-sticky\": 62025,\n  \"note\": 57855,\n  \"notebook\": 57857,\n  \"notes-medical\": 62593,\n  \"notes-sticky\": 59225,\n  \"notes\": 57858,\n  \"numpad\": 59340,\n  \"o\": 79,\n  \"oar\": 59524,\n  \"oars\": 59525,\n  \"object-exclude\": 58524,\n  \"object-group\": 62023,\n  \"object-intersect\": 58525,\n  \"object-subtract\": 58526,\n  \"object-ungroup\": 62024,\n  \"object-union\": 58527,\n  \"objects-align-bottom\": 58299,\n  \"objects-align-center-horizontal\": 58300,\n  \"objects-align-center-vertical\": 58301,\n  \"objects-align-left\": 58302,\n  \"objects-align-right\": 58303,\n  \"objects-align-top\": 58304,\n  \"objects-column\": 58305,\n  \"octagon-check\": 58406,\n  \"octagon-divide\": 57859,\n  \"octagon-equals\": 59059,\n  \"octagon-exclamation\": 57860,\n  \"octagon-minus\": 62216,\n  \"octagon-plus\": 62209,\n  \"octagon-xmark\": 62192,\n  \"octagon\": 62214,\n  \"octopus\": 59016,\n  \"oil-can-drip\": 57861,\n  \"oil-can\": 62995,\n  \"oil-temp\": 62996,\n  \"oil-temperature\": 62996,\n  \"oil-well\": 58674,\n  \"olive-branch\": 58135,\n  \"olive\": 58134,\n  \"om\": 63097,\n  \"omega\": 63098,\n  \"onion\": 58407,\n  \"open-captioning\": 59263,\n  \"opossum\": 59516,\n  \"option\": 58136,\n  \"ornament\": 63416,\n  \"otter\": 63232,\n  \"outdent\": 61499,\n  \"outlet\": 57372,\n  \"oven\": 57373,\n  \"overline\": 63606,\n  \"owl\": 59551,\n  \"p\": 80,\n  \"page-break\": 63607,\n  \"page-caret-down\": 58409,\n  \"page-caret-up\": 58410,\n  \"page\": 58408,\n  \"pager\": 63509,\n  \"paint-brush-alt\": 62889,\n  \"paint-brush-fine\": 62889,\n  \"paint-brush\": 61948,\n  \"paint-roller\": 62890,\n  \"paintbrush-alt\": 62889,\n  \"paintbrush-fine-slash\": 59213,\n  \"paintbrush-fine\": 62889,\n  \"paintbrush-pencil\": 57862,\n  \"paintbrush-slash\": 59214,\n  \"paintbrush\": 61948,\n  \"palette-boxes\": 62595,\n  \"palette\": 62783,\n  \"pallet-alt\": 62595,\n  \"pallet-box\": 57864,\n  \"pallet-boxes\": 62595,\n  \"pallet\": 62594,\n  \"pan-food\": 58411,\n  \"pan-frying\": 58412,\n  \"pancakes\": 58413,\n  \"panel-ews\": 58414,\n  \"panel-fire\": 58415,\n  \"panorama\": 57865,\n  \"panties\": 59092,\n  \"pants-straight\": 59094,\n  \"pants\": 59093,\n  \"paper-plane-alt\": 57866,\n  \"paper-plane-top\": 57866,\n  \"paper-plane\": 61912,\n  \"paperclip-vertical\": 58306,\n  \"paperclip\": 61638,\n  \"parachute-box\": 62669,\n  \"paragraph-left\": 63608,\n  \"paragraph-rtl\": 63608,\n  \"paragraph\": 61917,\n  \"parentheses\": 57541,\n  \"parenthesis\": 40,\n  \"parking-circle-slash\": 62998,\n  \"parking-circle\": 62997,\n  \"parking-slash\": 62999,\n  \"parking\": 62784,\n  \"party-back\": 58460,\n  \"party-bell\": 58138,\n  \"party-horn\": 58139,\n  \"passport\": 62891,\n  \"pastafarianism\": 63099,\n  \"paste\": 61674,\n  \"pause-circle\": 62091,\n  \"pause\": 61516,\n  \"paw-alt\": 63233,\n  \"paw-claws\": 63234,\n  \"paw-simple\": 63233,\n  \"paw\": 61872,\n  \"peace\": 63100,\n  \"peach\": 57867,\n  \"peanut\": 58416,\n  \"peanuts\": 58417,\n  \"peapod\": 58140,\n  \"pear\": 57868,\n  \"pedestal\": 57869,\n  \"pegasus\": 63235,\n  \"pen-alt-slash\": 57871,\n  \"pen-alt\": 62213,\n  \"pen-circle\": 57870,\n  \"pen-clip-slash\": 57871,\n  \"pen-clip\": 62213,\n  \"pen-fancy-slash\": 57872,\n  \"pen-fancy\": 62892,\n  \"pen-field\": 57873,\n  \"pen-line\": 57874,\n  \"pen-nib-slash\": 58529,\n  \"pen-nib\": 62893,\n  \"pen-paintbrush\": 63000,\n  \"pen-ruler\": 62894,\n  \"pen-slash\": 57875,\n  \"pen-square\": 61771,\n  \"pen-swirl\": 57876,\n  \"pen-to-square\": 61508,\n  \"pen\": 62212,\n  \"pencil-alt\": 62211,\n  \"pencil-line\": 59215,\n  \"pencil-mechanical\": 58826,\n  \"pencil-paintbrush\": 63000,\n  \"pencil-ruler\": 62894,\n  \"pencil-slash\": 57877,\n  \"pencil-square\": 61771,\n  \"pencil\": 62211,\n  \"pennant\": 62550,\n  \"pentagon\": 59280,\n  \"people-arrows-left-right\": 57448,\n  \"people-arrows\": 57448,\n  \"people-carry-box\": 62670,\n  \"people-carry\": 62670,\n  \"people-dress-simple\": 57880,\n  \"people-dress\": 57879,\n  \"people-group\": 58675,\n  \"people-line\": 58676,\n  \"people-pants-simple\": 57882,\n  \"people-pants\": 57881,\n  \"people-pulling\": 58677,\n  \"people-robbery\": 58678,\n  \"people-roof\": 58679,\n  \"people-simple\": 57883,\n  \"people\": 57878,\n  \"pepper-hot\": 63510,\n  \"pepper\": 58418,\n  \"percent\": 37,\n  \"percentage\": 37,\n  \"period\": 46,\n  \"person-arms-raised\": 59267,\n  \"person-arrow-down-to-line\": 58680,\n  \"person-arrow-up-from-line\": 58681,\n  \"person-basketball\": 59268,\n  \"person-biking-mountain\": 63563,\n  \"person-biking\": 63562,\n  \"person-booth\": 63318,\n  \"person-breastfeeding\": 58682,\n  \"person-burst\": 58683,\n  \"person-cane\": 58684,\n  \"person-carry-box\": 62671,\n  \"person-carry-empty\": 59269,\n  \"person-carry\": 62671,\n  \"person-chalkboard\": 58685,\n  \"person-circle-check\": 58686,\n  \"person-circle-exclamation\": 58687,\n  \"person-circle-minus\": 58688,\n  \"person-circle-plus\": 58689,\n  \"person-circle-question\": 58690,\n  \"person-circle-xmark\": 58691,\n  \"person-digging\": 63582,\n  \"person-dolly-empty\": 62673,\n  \"person-dolly\": 62672,\n  \"person-dots-from-line\": 62576,\n  \"person-dress-burst\": 58692,\n  \"person-dress-fairy\": 58887,\n  \"person-dress-simple\": 57884,\n  \"person-dress\": 61826,\n  \"person-drowning\": 58693,\n  \"person-fairy\": 58888,\n  \"person-falling-burst\": 58695,\n  \"person-falling\": 58694,\n  \"person-from-portal\": 57379,\n  \"person-golfing\": 59270,\n  \"person-half-dress\": 58696,\n  \"person-harassing\": 58697,\n  \"person-hiking\": 63212,\n  \"person-limbs-wide\": 59271,\n  \"person-meditating\": 59361,\n  \"person-military-pointing\": 58698,\n  \"person-military-rifle\": 58699,\n  \"person-military-to-person\": 58700,\n  \"person-pinball\": 57885,\n  \"person-praying\": 63107,\n  \"person-pregnant\": 58142,\n  \"person-rays\": 58701,\n  \"person-rifle\": 58702,\n  \"person-running-fast\": 58879,\n  \"person-running\": 63244,\n  \"person-seat-reclined\": 57887,\n  \"person-seat-window\": 59272,\n  \"person-seat\": 57886,\n  \"person-shelter\": 58703,\n  \"person-sign\": 63319,\n  \"person-simple\": 57888,\n  \"person-skating\": 63429,\n  \"person-ski-jumping\": 63431,\n  \"person-ski-lift\": 63432,\n  \"person-skiing-nordic\": 63434,\n  \"person-skiing\": 63433,\n  \"person-sledding\": 63435,\n  \"person-snowboarding\": 63438,\n  \"person-snowmobiling\": 63441,\n  \"person-soccer\": 59273,\n  \"person-swimming-pool\": 59274,\n  \"person-swimming-water\": 59275,\n  \"person-swimming\": 62916,\n  \"person-through-window\": 58793,\n  \"person-to-door\": 58419,\n  \"person-to-portal\": 57378,\n  \"person-walking-arrow-loop-left\": 58705,\n  \"person-walking-arrow-right\": 58706,\n  \"person-walking-dashed-line-arrow-right\": 58707,\n  \"person-walking-luggage\": 58708,\n  \"person-walking-with-cane\": 62109,\n  \"person-walking\": 62804,\n  \"person-water-arms-raised\": 59276,\n  \"person-waving\": 59277,\n  \"person\": 61827,\n  \"peruvian-soles-sign\": 59141,\n  \"peseta-sign\": 57889,\n  \"peso-sign\": 57890,\n  \"phone-alt\": 63609,\n  \"phone-arrow-down-left\": 57891,\n  \"phone-arrow-down\": 57891,\n  \"phone-arrow-right\": 58814,\n  \"phone-arrow-up-right\": 57892,\n  \"phone-arrow-up\": 57892,\n  \"phone-circle-alt\": 57628,\n  \"phone-circle-down\": 57629,\n  \"phone-circle\": 57627,\n  \"phone-connection\": 59105,\n  \"phone-flip\": 63609,\n  \"phone-hangup\": 57893,\n  \"phone-incoming\": 57891,\n  \"phone-intercom\": 58420,\n  \"phone-laptop\": 63610,\n  \"phone-missed\": 57894,\n  \"phone-office\": 63101,\n  \"phone-outgoing\": 57892,\n  \"phone-plus\": 62674,\n  \"phone-rotary\": 63699,\n  \"phone-slash\": 62429,\n  \"phone-square-alt\": 63611,\n  \"phone-square-down\": 57978,\n  \"phone-square\": 61592,\n  \"phone-volume\": 62112,\n  \"phone-waveform\": 59106,\n  \"phone-xmark\": 57895,\n  \"phone\": 61589,\n  \"photo-film-music\": 57896,\n  \"photo-film\": 63612,\n  \"photo-video\": 63612,\n  \"pi\": 63102,\n  \"piano-keyboard\": 63701,\n  \"piano\": 63700,\n  \"pickaxe\": 58815,\n  \"pickleball\": 58421,\n  \"picture-in-picture\": 59403,\n  \"pie-chart\": 61952,\n  \"pie\": 63237,\n  \"pig\": 63238,\n  \"piggy-bank\": 62675,\n  \"pills\": 62596,\n  \"pinata\": 58307,\n  \"pinball\": 57897,\n  \"pineapple\": 58143,\n  \"ping-pong-paddle-ball\": 62557,\n  \"pipe-circle-check\": 58422,\n  \"pipe-collar\": 58423,\n  \"pipe-section\": 58424,\n  \"pipe-smoking\": 58308,\n  \"pipe-valve\": 58425,\n  \"pipe\": 124,\n  \"pisces\": 59468,\n  \"pizza-slice\": 63512,\n  \"pizza\": 63511,\n  \"place-of-worship\": 63103,\n  \"plane-alt\": 62430,\n  \"plane-arrival\": 62895,\n  \"plane-circle-check\": 58709,\n  \"plane-circle-exclamation\": 58710,\n  \"plane-circle-xmark\": 58711,\n  \"plane-departure\": 62896,\n  \"plane-engines\": 62430,\n  \"plane-flying\": 59323,\n  \"plane-landing-gear\": 59324,\n  \"plane-lock\": 58712,\n  \"plane-prop\": 57899,\n  \"plane-slash\": 57449,\n  \"plane-tail\": 57900,\n  \"plane-up-slash\": 57902,\n  \"plane-up\": 57901,\n  \"plane\": 61554,\n  \"planet-moon\": 57375,\n  \"planet-ringed\": 57376,\n  \"plant-wilt\": 58794,\n  \"plate-utensils\": 58427,\n  \"plate-wheat\": 58714,\n  \"play-circle\": 61764,\n  \"play-flip\": 59264,\n  \"play-pause\": 57903,\n  \"play\": 61515,\n  \"plug-circle-bolt\": 58715,\n  \"plug-circle-check\": 58716,\n  \"plug-circle-exclamation\": 58717,\n  \"plug-circle-minus\": 58718,\n  \"plug-circle-plus\": 58719,\n  \"plug-circle-xmark\": 58720,\n  \"plug\": 61926,\n  \"plus-circle\": 61525,\n  \"plus-hexagon\": 62208,\n  \"plus-large\": 58782,\n  \"plus-minus\": 58428,\n  \"plus-octagon\": 62209,\n  \"plus-square\": 61694,\n  \"plus\": 43,\n  \"podcast\": 62158,\n  \"podium-star\": 63320,\n  \"podium\": 63104,\n  \"poker-chip\": 59554,\n  \"police-box\": 57377,\n  \"polish-zloty-sign\": 59147,\n  \"poll-h\": 63106,\n  \"poll-people\": 63321,\n  \"poll\": 63105,\n  \"pompebled\": 58429,\n  \"poo-bolt\": 63322,\n  \"poo-storm\": 63322,\n  \"poo\": 62206,\n  \"pool-8-ball\": 58309,\n  \"poop\": 63001,\n  \"popcorn\": 63513,\n  \"popsicle\": 58430,\n  \"portal-enter\": 57378,\n  \"portal-exit\": 57379,\n  \"portrait\": 62432,\n  \"possum\": 59516,\n  \"postage-stamp\": 59107,\n  \"pot-food\": 58431,\n  \"potato\": 58432,\n  \"pound-sign\": 61780,\n  \"power-off\": 61457,\n  \"pray\": 63107,\n  \"praying-hands\": 63108,\n  \"prescription-bottle-alt\": 62598,\n  \"prescription-bottle-medical\": 62598,\n  \"prescription-bottle-pill\": 58816,\n  \"prescription-bottle\": 62597,\n  \"prescription\": 62897,\n  \"presentation-screen\": 63109,\n  \"presentation\": 63109,\n  \"pretzel\": 58433,\n  \"print-magnifying-glass\": 63514,\n  \"print-search\": 63514,\n  \"print-slash\": 63110,\n  \"print\": 61487,\n  \"pro\": 57909,\n  \"procedures\": 62599,\n  \"project-diagram\": 62786,\n  \"projector\": 63702,\n  \"pronoun\": 59041,\n  \"pump-impeller\": 59445,\n  \"pump-medical\": 57450,\n  \"pump-soap\": 57451,\n  \"pump\": 58434,\n  \"pumpkin\": 63239,\n  \"puzzle-piece-alt\": 57905,\n  \"puzzle-piece-simple\": 57905,\n  \"puzzle-piece\": 61742,\n  \"puzzle\": 58435,\n  \"q\": 81,\n  \"qrcode-read\": 59289,\n  \"qrcode\": 61481,\n  \"question-circle\": 61529,\n  \"question-square\": 62205,\n  \"question\": 63,\n  \"quidditch-broom-ball\": 62552,\n  \"quidditch\": 62552,\n  \"quote-left-alt\": 61709,\n  \"quote-left\": 61709,\n  \"quote-right-alt\": 61710,\n  \"quote-right\": 61710,\n  \"quotes\": 57908,\n  \"quran\": 63111,\n  \"r\": 82,\n  \"rabbit-fast\": 63241,\n  \"rabbit-running\": 63241,\n  \"rabbit\": 63240,\n  \"raccoon\": 58899,\n  \"racquet\": 62554,\n  \"radar\": 57380,\n  \"radiation-alt\": 63418,\n  \"radiation\": 63417,\n  \"radio-alt\": 63704,\n  \"radio-tuner\": 63704,\n  \"radio\": 63703,\n  \"rainbow-half\": 59338,\n  \"rainbow\": 63323,\n  \"raindrops\": 63324,\n  \"ram\": 63242,\n  \"ramp-loading\": 62676,\n  \"random\": 61556,\n  \"ranking-star\": 58721,\n  \"raygun\": 57381,\n  \"receipt\": 62787,\n  \"record-vinyl\": 63705,\n  \"rectangle-4k\": 59250,\n  \"rectangle-ad\": 63041,\n  \"rectangle-api\": 59552,\n  \"rectangle-barcode\": 62563,\n  \"rectangle-beta\": 59400,\n  \"rectangle-code\": 58146,\n  \"rectangle-hd\": 57774,\n  \"rectangle-hdr\": 59251,\n  \"rectangle-high-dynamic-range\": 59251,\n  \"rectangle-history-circle-plus\": 58531,\n  \"rectangle-history-circle-user\": 58532,\n  \"rectangle-history\": 58530,\n  \"rectangle-irc\": 59500,\n  \"rectangle-landscape\": 62202,\n  \"rectangle-list\": 61474,\n  \"rectangle-minus\": 59060,\n  \"rectangle-n-a\": 59560,\n  \"rectangle-new\": 59514,\n  \"rectangle-plus\": 59061,\n  \"rectangle-portrait\": 62203,\n  \"rectangle-pro\": 57909,\n  \"rectangle-sd\": 57994,\n  \"rectangle-tall\": 59281,\n  \"rectangle-terminal\": 57910,\n  \"rectangle-times\": 62480,\n  \"rectangle-vertical-history\": 57911,\n  \"rectangle-vertical\": 62203,\n  \"rectangle-video-on-demand\": 59252,\n  \"rectangle-wide\": 62204,\n  \"rectangle-xmark\": 62480,\n  \"rectangle\": 62202,\n  \"rectangles-mixed\": 58147,\n  \"recycle\": 61880,\n  \"redo-alt\": 62201,\n  \"redo\": 61470,\n  \"reel\": 57912,\n  \"reflect-both\": 58991,\n  \"reflect-horizontal\": 58980,\n  \"reflect-vertical\": 58981,\n  \"refresh\": 61473,\n  \"refrigerator\": 57382,\n  \"registered\": 62045,\n  \"remote\": 59561,\n  \"remove-format\": 63613,\n  \"remove\": 61453,\n  \"renminbi-sign\": 59196,\n  \"reorder\": 62800,\n  \"repeat-1-alt\": 62310,\n  \"repeat-1\": 62309,\n  \"repeat-alt\": 62308,\n  \"repeat\": 62307,\n  \"reply-all\": 61730,\n  \"reply-clock\": 57913,\n  \"reply-time\": 57913,\n  \"reply\": 62437,\n  \"republican\": 63326,\n  \"restroom-simple\": 57914,\n  \"restroom\": 63421,\n  \"retweet-alt\": 62305,\n  \"retweet\": 61561,\n  \"rhombus\": 57915,\n  \"ribbon\": 62678,\n  \"right-from-bracket\": 62197,\n  \"right-from-dotted-line\": 59076,\n  \"right-from-line\": 62279,\n  \"right-left-large\": 58849,\n  \"right-left\": 62306,\n  \"right-long-to-line\": 58436,\n  \"right-long\": 62219,\n  \"right-to-bracket\": 62198,\n  \"right-to-dotted-line\": 59077,\n  \"right-to-line\": 62284,\n  \"right\": 62294,\n  \"ring-diamond\": 58795,\n  \"ring\": 63243,\n  \"rings-wedding\": 63515,\n  \"rmb\": 61783,\n  \"road-barrier\": 58722,\n  \"road-bridge\": 58723,\n  \"road-circle-check\": 58724,\n  \"road-circle-exclamation\": 58725,\n  \"road-circle-xmark\": 58726,\n  \"road-lock\": 58727,\n  \"road-spikes\": 58728,\n  \"road\": 61464,\n  \"robot-astromech\": 58066,\n  \"robot\": 62788,\n  \"rocket-launch\": 57383,\n  \"rocket-vertical\": 59325,\n  \"rocket\": 61749,\n  \"rod-asclepius\": 58745,\n  \"rod-snake\": 58745,\n  \"roller-coaster\": 58148,\n  \"rotate-back\": 62186,\n  \"rotate-backward\": 62186,\n  \"rotate-exclamation\": 57916,\n  \"rotate-forward\": 62201,\n  \"rotate-left\": 62186,\n  \"rotate-reverse\": 58929,\n  \"rotate-right\": 62201,\n  \"rotate\": 62193,\n  \"rouble\": 61784,\n  \"route-highway\": 63002,\n  \"route-interstate\": 63003,\n  \"route\": 62679,\n  \"router\": 63706,\n  \"rows-3\": 59531,\n  \"rows\": 58002,\n  \"rss-square\": 61763,\n  \"rss\": 61598,\n  \"rub\": 61784,\n  \"ruble-sign\": 61784,\n  \"ruble\": 61784,\n  \"rug\": 58729,\n  \"rugby-ball\": 58310,\n  \"ruler-combined\": 62790,\n  \"ruler-horizontal\": 62791,\n  \"ruler-triangle\": 63004,\n  \"ruler-vertical\": 62792,\n  \"ruler\": 62789,\n  \"running\": 63244,\n  \"rupee-sign\": 61782,\n  \"rupee\": 61782,\n  \"rupiah-sign\": 57917,\n  \"rv\": 63422,\n  \"s\": 83,\n  \"sack-dollar\": 63517,\n  \"sack-xmark\": 58730,\n  \"sack\": 63516,\n  \"sad-cry\": 62899,\n  \"sad-tear\": 62900,\n  \"sagittarius\": 59469,\n  \"sailboat\": 58437,\n  \"salad\": 63518,\n  \"salt-shaker\": 58438,\n  \"sandwich\": 63519,\n  \"satellite-dish\": 63424,\n  \"satellite\": 63423,\n  \"sausage\": 63520,\n  \"save-circle-arrow-right\": 57728,\n  \"save-circle-xmark\": 57729,\n  \"save-times\": 57729,\n  \"save\": 61639,\n  \"sax-hot\": 63707,\n  \"saxophone-fire\": 63707,\n  \"saxophone\": 63708,\n  \"scale-balanced\": 62030,\n  \"scale-unbalanced-flip\": 62742,\n  \"scale-unbalanced\": 62741,\n  \"scalpel-line-dashed\": 63006,\n  \"scalpel-path\": 63006,\n  \"scalpel\": 63005,\n  \"scanner-gun\": 62600,\n  \"scanner-image\": 63731,\n  \"scanner-keyboard\": 62601,\n  \"scanner-touchscreen\": 62602,\n  \"scanner\": 62600,\n  \"scarecrow\": 63245,\n  \"scarf\": 63425,\n  \"school-circle-check\": 58731,\n  \"school-circle-exclamation\": 58732,\n  \"school-circle-xmark\": 58733,\n  \"school-flag\": 58734,\n  \"school-lock\": 58735,\n  \"school-unlock\": 59083,\n  \"school\": 62793,\n  \"scissors\": 61636,\n  \"scooter\": 59331,\n  \"scorpio\": 59470,\n  \"screen-users\": 63037,\n  \"screencast\": 57918,\n  \"screenshot\": 57562,\n  \"screwdriver-wrench\": 63449,\n  \"screwdriver\": 62794,\n  \"scribble\": 57919,\n  \"scroll-old\": 63247,\n  \"scroll-ribbon\": 62954,\n  \"scroll-torah\": 63136,\n  \"scroll\": 63246,\n  \"scrubber\": 62200,\n  \"scythe\": 63248,\n  \"sd-card\": 63426,\n  \"sd-cards\": 57920,\n  \"seal-exclamation\": 57922,\n  \"seal-question\": 57923,\n  \"seal\": 57921,\n  \"search-dollar\": 63112,\n  \"search-location\": 63113,\n  \"search-minus\": 61456,\n  \"search-plus\": 61454,\n  \"search\": 61442,\n  \"seat-airline-window\": 59326,\n  \"seat-airline\": 57924,\n  \"seat\": 59236,\n  \"seats\": 59237,\n  \"section\": 58439,\n  \"seedling\": 62680,\n  \"semicolon\": 59,\n  \"send-back\": 63614,\n  \"send-backward\": 63615,\n  \"send\": 57866,\n  \"sensor-alert\": 57385,\n  \"sensor-cloud\": 57388,\n  \"sensor-fire\": 57386,\n  \"sensor-on\": 57387,\n  \"sensor-smoke\": 57388,\n  \"sensor-triangle-exclamation\": 57385,\n  \"sensor\": 57384,\n  \"septagon\": 59424,\n  \"server\": 62003,\n  \"shapes\": 63007,\n  \"share-all\": 62311,\n  \"share-alt-square\": 61921,\n  \"share-alt\": 61920,\n  \"share-from-square\": 61773,\n  \"share-nodes\": 61920,\n  \"share-square\": 61773,\n  \"share\": 61540,\n  \"sheep\": 63249,\n  \"sheet-plastic\": 58737,\n  \"shekel-sign\": 61963,\n  \"shekel\": 61963,\n  \"shelves-empty\": 57926,\n  \"shelves\": 62592,\n  \"sheqel-sign\": 61963,\n  \"sheqel\": 61963,\n  \"shield-alt\": 62445,\n  \"shield-blank\": 61746,\n  \"shield-cat\": 58738,\n  \"shield-check\": 62199,\n  \"shield-cross\": 63250,\n  \"shield-dog\": 58739,\n  \"shield-exclamation\": 57927,\n  \"shield-halved\": 62445,\n  \"shield-heart\": 58740,\n  \"shield-keyhole\": 57928,\n  \"shield-minus\": 57929,\n  \"shield-plus\": 57930,\n  \"shield-quartered\": 58741,\n  \"shield-slash\": 57931,\n  \"shield-times\": 57932,\n  \"shield-user\": 59401,\n  \"shield-virus\": 57452,\n  \"shield-xmark\": 57932,\n  \"shield\": 61746,\n  \"ship-large\": 59408,\n  \"ship\": 61978,\n  \"shipping-fast\": 62603,\n  \"shipping-timed\": 62604,\n  \"shirt-jersey\": 59095,\n  \"shirt-long-sleeve\": 58311,\n  \"shirt-running\": 58312,\n  \"shirt-tank-top\": 58313,\n  \"shirt\": 62803,\n  \"shish-kebab\": 63521,\n  \"shoe-prints\": 62795,\n  \"shoe\": 59096,\n  \"shop-24\": 59290,\n  \"shop-lock\": 58533,\n  \"shop-slash\": 57456,\n  \"shop\": 62799,\n  \"shopping-bag\": 62096,\n  \"shopping-basket-alt\": 57519,\n  \"shopping-basket\": 62097,\n  \"shopping-cart\": 61562,\n  \"shortcake\": 58341,\n  \"shorts\": 59097,\n  \"shovel-snow\": 63427,\n  \"shovel\": 63251,\n  \"shower-alt\": 57933,\n  \"shower-down\": 57933,\n  \"shower\": 62156,\n  \"shredder\": 63114,\n  \"shrimp\": 58440,\n  \"shuffle\": 61556,\n  \"shutters\": 58441,\n  \"shuttle-space-vertical\": 59327,\n  \"shuttle-space\": 61847,\n  \"shuttle-van\": 62902,\n  \"shuttlecock\": 62555,\n  \"sickle\": 63522,\n  \"sidebar-flip\": 57935,\n  \"sidebar\": 57934,\n  \"sigma\": 63115,\n  \"sign-hanging\": 62681,\n  \"sign-in-alt\": 62198,\n  \"sign-in\": 61584,\n  \"sign-language\": 62119,\n  \"sign-out-alt\": 62197,\n  \"sign-out\": 61579,\n  \"sign-post\": 58916,\n  \"sign-posts-wrench\": 58918,\n  \"sign-posts\": 58917,\n  \"sign\": 62681,\n  \"signal-1\": 63116,\n  \"signal-2\": 63117,\n  \"signal-3\": 63118,\n  \"signal-4\": 63119,\n  \"signal-5\": 61458,\n  \"signal-alt-1\": 63121,\n  \"signal-alt-2\": 63122,\n  \"signal-alt-3\": 63123,\n  \"signal-alt-4\": 63120,\n  \"signal-alt-slash\": 63124,\n  \"signal-alt\": 63120,\n  \"signal-bars-fair\": 63122,\n  \"signal-bars-good\": 63123,\n  \"signal-bars-slash\": 63124,\n  \"signal-bars-strong\": 63120,\n  \"signal-bars-weak\": 63121,\n  \"signal-bars\": 63120,\n  \"signal-fair\": 63117,\n  \"signal-good\": 63118,\n  \"signal-perfect\": 61458,\n  \"signal-slash\": 63125,\n  \"signal-stream-slash\": 57936,\n  \"signal-stream\": 63709,\n  \"signal-strong\": 63119,\n  \"signal-weak\": 63116,\n  \"signal\": 61458,\n  \"signapore-dollar-sign\": 59182,\n  \"signature-lock\": 58314,\n  \"signature-slash\": 58315,\n  \"signature\": 62903,\n  \"signing\": 62119,\n  \"signs-post\": 62071,\n  \"sim-card\": 63428,\n  \"sim-cards\": 57937,\n  \"single-quote-left\": 59419,\n  \"single-quote-right\": 59420,\n  \"sink\": 57453,\n  \"siren-on\": 57390,\n  \"siren\": 57389,\n  \"sitemap\": 61672,\n  \"skating\": 63429,\n  \"skeleton-ribs\": 58827,\n  \"skeleton\": 63008,\n  \"ski-boot-ski\": 58317,\n  \"ski-boot\": 58316,\n  \"ski-jump\": 63431,\n  \"ski-lift\": 63432,\n  \"skiing-nordic\": 63434,\n  \"skiing\": 63433,\n  \"skull-cow\": 63710,\n  \"skull-crossbones\": 63252,\n  \"skull\": 62796,\n  \"slash-back\": 92,\n  \"slash-forward\": 47,\n  \"slash\": 63253,\n  \"sledding\": 63435,\n  \"sleigh\": 63436,\n  \"slider-circle\": 59216,\n  \"slider\": 57938,\n  \"sliders-h-square\": 62448,\n  \"sliders-h\": 61918,\n  \"sliders-simple\": 57939,\n  \"sliders-up\": 62449,\n  \"sliders-v-square\": 62450,\n  \"sliders-v\": 62449,\n  \"sliders\": 61918,\n  \"slot-machine\": 58318,\n  \"smile-beam\": 62904,\n  \"smile-plus\": 62905,\n  \"smile-wink\": 62682,\n  \"smile\": 61720,\n  \"smog\": 63327,\n  \"smoke\": 63328,\n  \"smoking-ban\": 62797,\n  \"smoking\": 62605,\n  \"sms\": 63437,\n  \"snake\": 63254,\n  \"sneaker-running\": 59417,\n  \"sneaker\": 59098,\n  \"snooze\": 63616,\n  \"snow-blowing\": 63329,\n  \"snowboarding\": 63438,\n  \"snowflake-droplets\": 58817,\n  \"snowflake\": 62172,\n  \"snowflakes\": 63439,\n  \"snowman-head\": 63387,\n  \"snowman\": 63440,\n  \"snowmobile-blank\": 59332,\n  \"snowmobile\": 63441,\n  \"snowplow\": 63442,\n  \"soap\": 57454,\n  \"soccer-ball\": 61923,\n  \"socks\": 63126,\n  \"soft-serve\": 58368,\n  \"solar-panel\": 62906,\n  \"solar-system\": 57391,\n  \"sort-alpha-asc\": 61789,\n  \"sort-alpha-desc\": 63617,\n  \"sort-alpha-down-alt\": 63617,\n  \"sort-alpha-down\": 61789,\n  \"sort-alpha-up-alt\": 63618,\n  \"sort-alpha-up\": 61790,\n  \"sort-alt\": 63619,\n  \"sort-amount-asc\": 61792,\n  \"sort-amount-desc\": 63620,\n  \"sort-amount-down-alt\": 63620,\n  \"sort-amount-down\": 61792,\n  \"sort-amount-up-alt\": 63621,\n  \"sort-amount-up\": 61793,\n  \"sort-asc\": 61662,\n  \"sort-circle-down\": 57393,\n  \"sort-circle-up\": 57394,\n  \"sort-circle\": 57392,\n  \"sort-desc\": 61661,\n  \"sort-down\": 61661,\n  \"sort-numeric-asc\": 61794,\n  \"sort-numeric-desc\": 63622,\n  \"sort-numeric-down-alt\": 63622,\n  \"sort-numeric-down\": 61794,\n  \"sort-numeric-up-alt\": 63623,\n  \"sort-numeric-up\": 61795,\n  \"sort-shapes-down-alt\": 63625,\n  \"sort-shapes-down\": 63624,\n  \"sort-shapes-up-alt\": 63627,\n  \"sort-shapes-up\": 63626,\n  \"sort-size-down-alt\": 63629,\n  \"sort-size-down\": 63628,\n  \"sort-size-up-alt\": 63631,\n  \"sort-size-up\": 63630,\n  \"sort-up-down\": 57497,\n  \"sort-up\": 61662,\n  \"sort\": 61660,\n  \"soup\": 63523,\n  \"spa\": 62907,\n  \"space-shuttle\": 61847,\n  \"space-station-moon-alt\": 57396,\n  \"space-station-moon-construction\": 57396,\n  \"space-station-moon\": 57395,\n  \"spade\": 62196,\n  \"spaghetti-monster-flying\": 63099,\n  \"sparkle\": 58838,\n  \"sparkles\": 63632,\n  \"speaker\": 63711,\n  \"speakers\": 63712,\n  \"spell-check\": 63633,\n  \"spider-black-widow\": 63256,\n  \"spider-web\": 63257,\n  \"spider\": 63255,\n  \"spine\": 59233,\n  \"spinner-scale\": 58922,\n  \"spinner-third\": 62452,\n  \"spinner\": 61712,\n  \"spiral\": 59402,\n  \"split\": 57940,\n  \"splotch\": 62908,\n  \"spoon\": 62181,\n  \"sportsball\": 58443,\n  \"spray-can-sparkles\": 62928,\n  \"spray-can\": 62909,\n  \"sprinkler-ceiling\": 58444,\n  \"sprinkler\": 57397,\n  \"sprout\": 62680,\n  \"square-0\": 57941,\n  \"square-1\": 57942,\n  \"square-2\": 57943,\n  \"square-3\": 57944,\n  \"square-4\": 57945,\n  \"square-5\": 57946,\n  \"square-6\": 57947,\n  \"square-7\": 57948,\n  \"square-8\": 57949,\n  \"square-9\": 57950,\n  \"square-a-lock\": 58445,\n  \"square-a\": 57951,\n  \"square-ampersand\": 57952,\n  \"square-arrow-down-left\": 57953,\n  \"square-arrow-down-right\": 57954,\n  \"square-arrow-down\": 62265,\n  \"square-arrow-left\": 62266,\n  \"square-arrow-right\": 62267,\n  \"square-arrow-up-left\": 57955,\n  \"square-arrow-up-right\": 61772,\n  \"square-arrow-up\": 62268,\n  \"square-austral\": 59174,\n  \"square-australian-dollar\": 59160,\n  \"square-b\": 57956,\n  \"square-baht\": 59161,\n  \"square-bangladeshi-taka\": 59204,\n  \"square-binary\": 59035,\n  \"square-bitcoin\": 59122,\n  \"square-bolt\": 57957,\n  \"square-brazilian-real\": 59121,\n  \"square-c\": 57958,\n  \"square-caret-down\": 61776,\n  \"square-caret-left\": 61841,\n  \"square-caret-right\": 61778,\n  \"square-caret-up\": 61777,\n  \"square-cedi\": 59177,\n  \"square-cent\": 59120,\n  \"square-check\": 61770,\n  \"square-chevron-down\": 62249,\n  \"square-chevron-left\": 62250,\n  \"square-chevron-right\": 62251,\n  \"square-chevron-up\": 62252,\n  \"square-chf\": 59110,\n  \"square-code\": 57959,\n  \"square-colon\": 59194,\n  \"square-cruzeiro\": 59117,\n  \"square-currency\": 59148,\n  \"square-d\": 57960,\n  \"square-danish-krone\": 59207,\n  \"square-dashed-circle-plus\": 58818,\n  \"square-dashed\": 57961,\n  \"square-divide\": 57962,\n  \"square-dollar\": 62185,\n  \"square-dong\": 59151,\n  \"square-down-left\": 57963,\n  \"square-down-right\": 57964,\n  \"square-down\": 62288,\n  \"square-e\": 57965,\n  \"square-ellipsis-vertical\": 57967,\n  \"square-ellipsis\": 57966,\n  \"square-envelope\": 61849,\n  \"square-equals\": 59062,\n  \"square-euro\": 59186,\n  \"square-eurozone\": 59175,\n  \"square-exclamation\": 62241,\n  \"square-f\": 57968,\n  \"square-florin\": 59159,\n  \"square-fragile\": 62619,\n  \"square-franc\": 59183,\n  \"square-full\": 62556,\n  \"square-g\": 57969,\n  \"square-guarani\": 59150,\n  \"square-h\": 61693,\n  \"square-half-horizontal\": 59406,\n  \"square-half-stroke-horizontal\": 59407,\n  \"square-half-stroke\": 59283,\n  \"square-half\": 59282,\n  \"square-heart\": 62664,\n  \"square-hryvnia\": 59152,\n  \"square-i\": 57970,\n  \"square-indian-rupee\": 59125,\n  \"square-info\": 62223,\n  \"square-j\": 57971,\n  \"square-k\": 57972,\n  \"square-kanban\": 58504,\n  \"square-kip\": 59149,\n  \"square-l\": 57973,\n  \"square-lari\": 59199,\n  \"square-left\": 62289,\n  \"square-lira\": 59111,\n  \"square-list\": 58505,\n  \"square-litecoin\": 59127,\n  \"square-m\": 57974,\n  \"square-malaysian-ringgit\": 59208,\n  \"square-manat\": 59140,\n  \"square-microphone\": 59265,\n  \"square-mill\": 59146,\n  \"square-minus\": 61766,\n  \"square-n\": 57975,\n  \"square-naira\": 59144,\n  \"square-nfi\": 58742,\n  \"square-norwegian-krone\": 59143,\n  \"square-o\": 57976,\n  \"square-p\": 57977,\n  \"square-parking-slash\": 62999,\n  \"square-parking\": 62784,\n  \"square-pen\": 61771,\n  \"square-person-confined\": 58743,\n  \"square-peruvian-soles\": 59158,\n  \"square-peseta\": 59114,\n  \"square-peso\": 59162,\n  \"square-phone-flip\": 63611,\n  \"square-phone-hangup\": 57978,\n  \"square-phone\": 61592,\n  \"square-plus\": 61694,\n  \"square-polish-zloty\": 59190,\n  \"square-poll-horizontal\": 63106,\n  \"square-poll-vertical\": 63105,\n  \"square-q\": 57979,\n  \"square-quarters\": 58446,\n  \"square-question\": 62205,\n  \"square-quote\": 58153,\n  \"square-r\": 57980,\n  \"square-renminbi\": 59197,\n  \"square-right\": 62290,\n  \"square-ring\": 58447,\n  \"square-root-alt\": 63128,\n  \"square-root-variable\": 63128,\n  \"square-root\": 63127,\n  \"square-rss\": 61763,\n  \"square-ruble\": 59128,\n  \"square-rupee\": 59157,\n  \"square-rupiah\": 59154,\n  \"square-s\": 57981,\n  \"square-share-nodes\": 61921,\n  \"square-shekel\": 59189,\n  \"square-sliders-vertical\": 62450,\n  \"square-sliders\": 62448,\n  \"square-small\": 57982,\n  \"square-star\": 57983,\n  \"square-sterling\": 59155,\n  \"square-swedish-krona\": 59164,\n  \"square-t\": 57984,\n  \"square-tenge\": 59185,\n  \"square-terminal\": 58154,\n  \"square-this-way-up\": 62623,\n  \"square-tugrik\": 59176,\n  \"square-turkish-lira\": 59167,\n  \"square-u\": 57985,\n  \"square-up-left\": 57986,\n  \"square-up-right\": 62304,\n  \"square-up\": 62291,\n  \"square-user\": 57987,\n  \"square-v\": 57988,\n  \"square-virus\": 58744,\n  \"square-w\": 57989,\n  \"square-wine-glass-crack\": 62619,\n  \"square-won\": 59145,\n  \"square-x\": 57990,\n  \"square-xmark\": 62163,\n  \"square-y\": 57991,\n  \"square-yen\": 59172,\n  \"square-z\": 57992,\n  \"square\": 61640,\n  \"squareapore-dollar\": 59187,\n  \"squid\": 58448,\n  \"squirrel\": 63258,\n  \"stadium\": 59084,\n  \"staff-aesculapius\": 58745,\n  \"staff-snake\": 58745,\n  \"staff\": 63259,\n  \"stair-car\": 59333,\n  \"stairs\": 57993,\n  \"stamp\": 62911,\n  \"standard-definition\": 57994,\n  \"stapler\": 58799,\n  \"star-and-crescent\": 63129,\n  \"star-christmas\": 63444,\n  \"star-circle\": 57635,\n  \"star-exclamation\": 62195,\n  \"star-half-alt\": 62912,\n  \"star-half-stroke\": 62912,\n  \"star-half\": 61577,\n  \"star-of-david\": 63130,\n  \"star-of-life\": 63009,\n  \"star-sharp-half-alt\": 57997,\n  \"star-sharp-half-stroke\": 57997,\n  \"star-sharp-half\": 57996,\n  \"star-sharp\": 57995,\n  \"star-shooting\": 57398,\n  \"star\": 61445,\n  \"starfighter-alt-advanced\": 57998,\n  \"starfighter-alt\": 57400,\n  \"starfighter-twin-ion-engine-advanced\": 57998,\n  \"starfighter-twin-ion-engine\": 57400,\n  \"starfighter\": 57399,\n  \"stars\": 63330,\n  \"starship-freighter\": 57402,\n  \"starship\": 57401,\n  \"steak\": 63524,\n  \"steering-wheel\": 63010,\n  \"step-backward\": 61512,\n  \"step-forward\": 61521,\n  \"sterling-sign\": 61780,\n  \"stethoscope\": 61681,\n  \"sticky-note\": 62025,\n  \"stocking\": 63445,\n  \"stomach\": 63011,\n  \"stool\": 59520,\n  \"stop-circle\": 62093,\n  \"stop\": 61517,\n  \"stopwatch-20\": 57455,\n  \"stopwatch\": 62194,\n  \"store-24\": 59291,\n  \"store-alt-slash\": 57456,\n  \"store-alt\": 62799,\n  \"store-lock\": 58534,\n  \"store-slash\": 57457,\n  \"store\": 62798,\n  \"strawberry\": 58155,\n  \"stream\": 62800,\n  \"street-view\": 61981,\n  \"stretcher\": 63525,\n  \"strikethrough\": 61644,\n  \"stroopwafel\": 62801,\n  \"subscript\": 61740,\n  \"subtitles-slash\": 58896,\n  \"subtitles\": 58895,\n  \"subtract\": 61544,\n  \"subway-tunnel\": 58019,\n  \"subway\": 62009,\n  \"suitcase-medical\": 61690,\n  \"suitcase-rolling\": 62913,\n  \"suitcase\": 61682,\n  \"sun-alt\": 57999,\n  \"sun-bright\": 57999,\n  \"sun-cloud\": 63331,\n  \"sun-dust\": 63332,\n  \"sun-haze\": 63333,\n  \"sun-plant-wilt\": 58746,\n  \"sun\": 61829,\n  \"sunglasses\": 63634,\n  \"sunrise\": 63334,\n  \"sunset\": 63335,\n  \"superscript\": 61739,\n  \"surprise\": 62914,\n  \"sushi-roll\": 58507,\n  \"sushi\": 58506,\n  \"swap-arrows\": 58890,\n  \"swap\": 58889,\n  \"swatchbook\": 62915,\n  \"swedish-krona-sign\": 59198,\n  \"swimmer\": 62916,\n  \"swimming-pool\": 62917,\n  \"sword-laser-alt\": 57404,\n  \"sword-laser\": 57403,\n  \"sword\": 63260,\n  \"swords-laser\": 57405,\n  \"swords\": 63261,\n  \"symbols\": 63598,\n  \"synagogue\": 63131,\n  \"sync-alt\": 62193,\n  \"sync\": 61473,\n  \"syringe\": 62606,\n  \"t-rex\": 58921,\n  \"t-shirt\": 62803,\n  \"t\": 84,\n  \"table-bar\": 59550,\n  \"table-cells-column-lock\": 59000,\n  \"table-cells-column-unlock\": 59024,\n  \"table-cells-columns\": 59052,\n  \"table-cells-header-lock\": 59054,\n  \"table-cells-header-unlock\": 59055,\n  \"table-cells-header\": 59053,\n  \"table-cells-large\": 61449,\n  \"table-cells-lock\": 59001,\n  \"table-cells-merge\": 59532,\n  \"table-cells-row-lock\": 59002,\n  \"table-cells-row-unlock\": 59025,\n  \"table-cells-rows\": 59056,\n  \"table-cells-split\": 59533,\n  \"table-cells-unlock\": 59026,\n  \"table-cells\": 61450,\n  \"table-columns-add-after\": 59534,\n  \"table-columns-add-before\": 59535,\n  \"table-columns-merge-next\": 59536,\n  \"table-columns-merge-previous\": 59537,\n  \"table-columns-remove-after\": 59538,\n  \"table-columns-remove-before\": 59539,\n  \"table-columns\": 61659,\n  \"table-dining\": 59522,\n  \"table-layout\": 58000,\n  \"table-list\": 61451,\n  \"table-picnic\": 58157,\n  \"table-pivot\": 58001,\n  \"table-rows-add-above\": 59540,\n  \"table-rows-add-below\": 59541,\n  \"table-rows-merge-next\": 59542,\n  \"table-rows-merge-previous\": 59543,\n  \"table-rows-remove-above\": 59544,\n  \"table-rows-remove-below\": 59545,\n  \"table-rows\": 58002,\n  \"table-slash\": 59546,\n  \"table-tennis-paddle-ball\": 62557,\n  \"table-tennis\": 62557,\n  \"table-tree\": 58003,\n  \"table\": 61646,\n  \"tablet-alt\": 62458,\n  \"tablet-android-alt\": 62460,\n  \"tablet-android\": 62459,\n  \"tablet-button\": 61706,\n  \"tablet-rugged\": 62607,\n  \"tablet-screen-button\": 62458,\n  \"tablet-screen\": 62460,\n  \"tablet\": 62459,\n  \"tablets\": 62608,\n  \"tachograph-digital\": 62822,\n  \"tachometer-alt-average\": 63012,\n  \"tachometer-alt-fast\": 63013,\n  \"tachometer-alt-fastest\": 63014,\n  \"tachometer-alt-slow\": 63015,\n  \"tachometer-alt-slowest\": 63016,\n  \"tachometer-alt\": 63013,\n  \"tachometer-average\": 63017,\n  \"tachometer-fast\": 63018,\n  \"tachometer-fastest\": 63019,\n  \"tachometer-slow\": 63020,\n  \"tachometer-slowest\": 63021,\n  \"tachometer\": 63018,\n  \"taco\": 63526,\n  \"tag\": 61483,\n  \"tags\": 61484,\n  \"tally-1\": 58004,\n  \"tally-2\": 58005,\n  \"tally-3\": 58006,\n  \"tally-4\": 58007,\n  \"tally-5\": 63132,\n  \"tally\": 63132,\n  \"tamale\": 58449,\n  \"tanakh\": 63527,\n  \"tank-recovery\": 59429,\n  \"tank-water\": 58450,\n  \"tape\": 62683,\n  \"tarp-droplet\": 58748,\n  \"tarp\": 58747,\n  \"tasks-alt\": 63528,\n  \"tasks\": 61614,\n  \"taurus\": 59471,\n  \"taxi-bus\": 58008,\n  \"taxi\": 61882,\n  \"teddy-bear\": 58319,\n  \"teeth-open\": 63023,\n  \"teeth\": 63022,\n  \"telescope\": 57406,\n  \"teletype-answer\": 58041,\n  \"teletype\": 61924,\n  \"television\": 62060,\n  \"temperature-0\": 62155,\n  \"temperature-1\": 62154,\n  \"temperature-2\": 62153,\n  \"temperature-3\": 62152,\n  \"temperature-4\": 62151,\n  \"temperature-arrow-down\": 57407,\n  \"temperature-arrow-up\": 57408,\n  \"temperature-down\": 57407,\n  \"temperature-empty\": 62155,\n  \"temperature-frigid\": 63336,\n  \"temperature-full\": 62151,\n  \"temperature-half\": 62153,\n  \"temperature-high\": 63337,\n  \"temperature-hot\": 63338,\n  \"temperature-list\": 58009,\n  \"temperature-low\": 63339,\n  \"temperature-quarter\": 62154,\n  \"temperature-slash\": 59339,\n  \"temperature-snow\": 63336,\n  \"temperature-sun\": 63338,\n  \"temperature-three-quarters\": 62152,\n  \"temperature-up\": 57408,\n  \"tenge-sign\": 63447,\n  \"tenge\": 63447,\n  \"tennis-ball\": 62558,\n  \"tent-arrow-down-to-line\": 58750,\n  \"tent-arrow-left-right\": 58751,\n  \"tent-arrow-turn-left\": 58752,\n  \"tent-arrows-down\": 58753,\n  \"tent-circus\": 59085,\n  \"tent-double-peak\": 58919,\n  \"tent\": 58749,\n  \"tents\": 58754,\n  \"terminal\": 61728,\n  \"text-height\": 61492,\n  \"text-size\": 63636,\n  \"text-slash\": 63613,\n  \"text-width\": 61493,\n  \"text\": 63635,\n  \"th-large\": 61449,\n  \"th-list\": 61451,\n  \"th\": 61450,\n  \"theater-masks\": 63024,\n  \"thermometer-0\": 62155,\n  \"thermometer-1\": 62154,\n  \"thermometer-2\": 62153,\n  \"thermometer-3\": 62152,\n  \"thermometer-4\": 62151,\n  \"thermometer-empty\": 62155,\n  \"thermometer-full\": 62151,\n  \"thermometer-half\": 62153,\n  \"thermometer-quarter\": 62154,\n  \"thermometer-three-quarters\": 62152,\n  \"thermometer\": 62609,\n  \"theta\": 63134,\n  \"thought-bubble\": 58158,\n  \"thumb-tack-slash\": 59023,\n  \"thumb-tack\": 61581,\n  \"thumbs-down\": 61797,\n  \"thumbs-up\": 61796,\n  \"thumbtack-angle-slash\": 59218,\n  \"thumbtack-angle\": 59217,\n  \"thumbtack-slash\": 59023,\n  \"thumbtack\": 61581,\n  \"thunderstorm-moon\": 63341,\n  \"thunderstorm-sun\": 63342,\n  \"thunderstorm\": 63340,\n  \"tick\": 58159,\n  \"ticket-airline\": 58010,\n  \"ticket-alt\": 62463,\n  \"ticket-perforated-plane\": 58010,\n  \"ticket-perforated\": 58942,\n  \"ticket-plane\": 58010,\n  \"ticket-simple\": 62463,\n  \"ticket\": 61765,\n  \"tickets-airline\": 58011,\n  \"tickets-perforated-plane\": 58011,\n  \"tickets-perforated\": 58943,\n  \"tickets-plane\": 58011,\n  \"tickets-simple\": 58969,\n  \"tickets\": 58968,\n  \"tilde\": 126,\n  \"timeline-arrow\": 58013,\n  \"timeline\": 58012,\n  \"timer\": 58014,\n  \"times-circle\": 61527,\n  \"times-hexagon\": 62190,\n  \"times-octagon\": 62192,\n  \"times-rectangle\": 62480,\n  \"times-square\": 62163,\n  \"times-to-slot\": 63345,\n  \"times\": 61453,\n  \"tint-slash\": 62919,\n  \"tint\": 61507,\n  \"tire-flat\": 63026,\n  \"tire-pressure-warning\": 63027,\n  \"tire-rugged\": 63028,\n  \"tire\": 63025,\n  \"tired\": 62920,\n  \"toggle-large-off\": 58800,\n  \"toggle-large-on\": 58801,\n  \"toggle-off\": 61956,\n  \"toggle-on\": 61957,\n  \"toilet-paper-alt\": 63262,\n  \"toilet-paper-blank-under\": 58016,\n  \"toilet-paper-blank\": 63262,\n  \"toilet-paper-check\": 58802,\n  \"toilet-paper-reverse-alt\": 58016,\n  \"toilet-paper-reverse-slash\": 58017,\n  \"toilet-paper-reverse\": 58016,\n  \"toilet-paper-slash\": 57458,\n  \"toilet-paper-under-slash\": 58017,\n  \"toilet-paper-under\": 58016,\n  \"toilet-paper-xmark\": 58803,\n  \"toilet-paper\": 63262,\n  \"toilet-portable\": 58755,\n  \"toilet\": 63448,\n  \"toilets-portable\": 58756,\n  \"tomato\": 58160,\n  \"tombstone-alt\": 63265,\n  \"tombstone-blank\": 63265,\n  \"tombstone\": 63264,\n  \"toolbox\": 62802,\n  \"tools\": 63449,\n  \"tooth\": 62921,\n  \"toothbrush\": 63029,\n  \"torah\": 63136,\n  \"torii-gate\": 63137,\n  \"tornado\": 63343,\n  \"tower-broadcast\": 62745,\n  \"tower-cell\": 58757,\n  \"tower-control\": 58018,\n  \"tower-observation\": 58758,\n  \"tower-receive\": 59555,\n  \"tractor\": 63266,\n  \"trademark\": 62044,\n  \"traffic-cone\": 63030,\n  \"traffic-light-go\": 63032,\n  \"traffic-light-slow\": 63033,\n  \"traffic-light-stop\": 63034,\n  \"traffic-light\": 63031,\n  \"trailer\": 57409,\n  \"train-stop\": 59423,\n  \"train-subway-tunnel\": 58019,\n  \"train-subway\": 62009,\n  \"train-track\": 58451,\n  \"train-tram\": 58804,\n  \"train-tunnel\": 58452,\n  \"train\": 62008,\n  \"tram\": 63450,\n  \"transducer\": 59430,\n  \"transformer-bolt\": 58020,\n  \"transgender-alt\": 61989,\n  \"transgender\": 61989,\n  \"transmission\": 59394,\n  \"transporter-1\": 57411,\n  \"transporter-2\": 57412,\n  \"transporter-3\": 57413,\n  \"transporter-4\": 58021,\n  \"transporter-5\": 58022,\n  \"transporter-6\": 58023,\n  \"transporter-7\": 58024,\n  \"transporter-empty\": 57414,\n  \"transporter\": 57410,\n  \"trash-alt-slash\": 58029,\n  \"trash-alt\": 62189,\n  \"trash-arrow-turn-left\": 63637,\n  \"trash-arrow-up\": 63529,\n  \"trash-can-arrow-turn-left\": 63638,\n  \"trash-can-arrow-up\": 63530,\n  \"trash-can-check\": 58025,\n  \"trash-can-clock\": 58026,\n  \"trash-can-list\": 58027,\n  \"trash-can-plus\": 58028,\n  \"trash-can-slash\": 58029,\n  \"trash-can-undo\": 63638,\n  \"trash-can-xmark\": 58030,\n  \"trash-can\": 62189,\n  \"trash-check\": 58031,\n  \"trash-circle\": 57638,\n  \"trash-clock\": 58032,\n  \"trash-list\": 58033,\n  \"trash-plus\": 58034,\n  \"trash-restore-alt\": 63530,\n  \"trash-restore\": 63529,\n  \"trash-slash\": 58035,\n  \"trash-undo-alt\": 63638,\n  \"trash-undo\": 63637,\n  \"trash-xmark\": 58036,\n  \"trash\": 61944,\n  \"treasure-chest\": 63267,\n  \"tree-alt\": 62464,\n  \"tree-christmas\": 63451,\n  \"tree-city\": 58759,\n  \"tree-deciduous\": 62464,\n  \"tree-decorated\": 63452,\n  \"tree-large\": 63453,\n  \"tree-palm\": 63531,\n  \"tree\": 61883,\n  \"trees\": 63268,\n  \"trian-balbot\": 58460,\n  \"triangle-circle-square\": 63007,\n  \"triangle-exclamation\": 61553,\n  \"triangle-instrument\": 63714,\n  \"triangle-music\": 63714,\n  \"triangle-person-digging\": 63581,\n  \"triangle\": 62188,\n  \"tricycle-adult\": 58820,\n  \"tricycle\": 58819,\n  \"trillium\": 58760,\n  \"triple-chevrons-down\": 59383,\n  \"triple-chevrons-left\": 59384,\n  \"triple-chevrons-right\": 59385,\n  \"triple-chevrons-up\": 59386,\n  \"trombone\": 59266,\n  \"trophy-alt\": 62187,\n  \"trophy-star\": 62187,\n  \"trophy\": 61585,\n  \"trowel-bricks\": 58762,\n  \"trowel\": 58761,\n  \"truck-arrow-right\": 58763,\n  \"truck-bolt\": 58320,\n  \"truck-clock\": 62604,\n  \"truck-container-empty\": 58037,\n  \"truck-container\": 62684,\n  \"truck-couch\": 62685,\n  \"truck-droplet\": 58764,\n  \"truck-fast\": 62603,\n  \"truck-field-un\": 58766,\n  \"truck-field\": 58765,\n  \"truck-fire\": 58970,\n  \"truck-flatbed\": 58038,\n  \"truck-front\": 58039,\n  \"truck-ladder\": 58967,\n  \"truck-loading\": 62686,\n  \"truck-medical\": 61689,\n  \"truck-monster\": 63035,\n  \"truck-moving\": 62687,\n  \"truck-pickup\": 63036,\n  \"truck-plane\": 58767,\n  \"truck-plow\": 63454,\n  \"truck-ramp-box\": 62686,\n  \"truck-ramp-couch\": 62685,\n  \"truck-ramp\": 62688,\n  \"truck-suv\": 59334,\n  \"truck-tow\": 58040,\n  \"truck-utensils\": 58920,\n  \"truck\": 61649,\n  \"trumpet\": 63715,\n  \"try\": 58043,\n  \"tshirt\": 62803,\n  \"tty-answer\": 58041,\n  \"tty\": 61924,\n  \"tugrik-sign\": 58042,\n  \"turkey\": 63269,\n  \"turkish-lira-sign\": 58043,\n  \"turkish-lira\": 58043,\n  \"turn-down-left\": 58161,\n  \"turn-down-right\": 58453,\n  \"turn-down\": 62398,\n  \"turn-left-down\": 58935,\n  \"turn-left-up\": 58936,\n  \"turn-left\": 58934,\n  \"turn-right\": 58937,\n  \"turn-up\": 62399,\n  \"turntable\": 63716,\n  \"turtle\": 63270,\n  \"tv-alt\": 62060,\n  \"tv-music\": 63718,\n  \"tv-retro\": 62465,\n  \"tv\": 62060,\n  \"typewriter\": 63719,\n  \"u-turn-down-left\": 59375,\n  \"u-turn-down-right\": 59376,\n  \"u-turn-left-down\": 59377,\n  \"u-turn-left-up\": 59378,\n  \"u-turn-right-down\": 59379,\n  \"u-turn-right-up\": 59380,\n  \"u-turn-up-left\": 59381,\n  \"u-turn-up-right\": 59382,\n  \"u-turn\": 59377,\n  \"u\": 85,\n  \"ufo-beam\": 57416,\n  \"ufo\": 57415,\n  \"umbrella-alt\": 58044,\n  \"umbrella-beach\": 62922,\n  \"umbrella-simple\": 58044,\n  \"umbrella\": 61673,\n  \"underline\": 61645,\n  \"undo-alt\": 62186,\n  \"undo\": 61666,\n  \"unicorn\": 63271,\n  \"unicycle\": 59335,\n  \"uniform-martial-arts\": 58321,\n  \"union\": 63138,\n  \"universal-access\": 62106,\n  \"university\": 61852,\n  \"unlink\": 61735,\n  \"unlock-alt\": 61758,\n  \"unlock-keyhole\": 61758,\n  \"unlock\": 61596,\n  \"unsorted\": 61660,\n  \"up-down-left-right\": 61618,\n  \"up-down\": 62264,\n  \"up-from-bracket\": 58768,\n  \"up-from-dotted-line\": 58454,\n  \"up-from-line\": 62278,\n  \"up-left\": 58045,\n  \"up-long-to-line\": 59078,\n  \"up-long\": 62220,\n  \"up-right-and-down-left-from-center\": 62500,\n  \"up-right-from-square\": 62301,\n  \"up-right\": 58046,\n  \"up-to-bracket\": 58990,\n  \"up-to-dotted-line\": 58455,\n  \"up-to-line\": 62285,\n  \"up\": 62295,\n  \"upload\": 61587,\n  \"usb-drive\": 63721,\n  \"usd-circle\": 62184,\n  \"usd-square\": 62185,\n  \"usd\": 36,\n  \"user-alien\": 57418,\n  \"user-alt-slash\": 62726,\n  \"user-alt\": 61447,\n  \"user-astronaut\": 62715,\n  \"user-beard-bolt\": 59017,\n  \"user-beard\": 59304,\n  \"user-bounty-hunter\": 58047,\n  \"user-chart\": 63139,\n  \"user-check\": 62716,\n  \"user-chef-hair-long\": 59305,\n  \"user-chef\": 58322,\n  \"user-circle-minus\": 59306,\n  \"user-circle-plus\": 59307,\n  \"user-circle\": 62141,\n  \"user-clock\": 62717,\n  \"user-cog\": 62718,\n  \"user-construction\": 63532,\n  \"user-cowboy\": 63722,\n  \"user-crown\": 63140,\n  \"user-dashed\": 59308,\n  \"user-doctor-hair-long\": 58457,\n  \"user-doctor-hair-mullet\": 59309,\n  \"user-doctor-hair\": 58456,\n  \"user-doctor-message\": 63534,\n  \"user-doctor\": 61680,\n  \"user-edit\": 62719,\n  \"user-friends\": 62720,\n  \"user-gear\": 62718,\n  \"user-graduate\": 62721,\n  \"user-group-crown\": 63141,\n  \"user-group-simple\": 58883,\n  \"user-group\": 62720,\n  \"user-hair-buns\": 58323,\n  \"user-hair-long\": 58459,\n  \"user-hair-mullet\": 58460,\n  \"user-hair\": 58458,\n  \"user-hard-hat\": 63532,\n  \"user-hat-tie-magnifying-glass\": 59311,\n  \"user-hat-tie\": 59310,\n  \"user-headset\": 63533,\n  \"user-helmet-safety\": 63532,\n  \"user-hoodie\": 59018,\n  \"user-injured\": 63272,\n  \"user-key\": 59312,\n  \"user-large-slash\": 62726,\n  \"user-large\": 61447,\n  \"user-lock\": 62722,\n  \"user-magnifying-glass\": 58821,\n  \"user-md-chat\": 63534,\n  \"user-md\": 61680,\n  \"user-message\": 59313,\n  \"user-microphone\": 59314,\n  \"user-minus\": 62723,\n  \"user-music\": 63723,\n  \"user-ninja\": 62724,\n  \"user-nurse-hair-long\": 58462,\n  \"user-nurse-hair\": 58461,\n  \"user-nurse\": 63535,\n  \"user-pen\": 62719,\n  \"user-pilot-hair-long\": 59315,\n  \"user-pilot-tie-hair-long\": 59316,\n  \"user-pilot-tie\": 58049,\n  \"user-pilot\": 58048,\n  \"user-plus\": 62004,\n  \"user-police-hair-long\": 59317,\n  \"user-police-tie-hair-long\": 59318,\n  \"user-police-tie\": 58164,\n  \"user-police\": 58163,\n  \"user-question\": 59319,\n  \"user-robot-xmarks\": 58535,\n  \"user-robot\": 57419,\n  \"user-secret\": 61979,\n  \"user-shakespeare\": 58050,\n  \"user-shield\": 62725,\n  \"user-sith\": 59320,\n  \"user-slash\": 62726,\n  \"user-tag\": 62727,\n  \"user-tie-hair-long\": 58464,\n  \"user-tie-hair-mullet\": 59321,\n  \"user-tie-hair\": 58463,\n  \"user-tie\": 62728,\n  \"user-times\": 62005,\n  \"user-unlock\": 57432,\n  \"user-viewfinder\": 59253,\n  \"user-visor\": 57420,\n  \"user-vneck-hair-long\": 58467,\n  \"user-vneck-hair-mullet\": 59322,\n  \"user-vneck-hair\": 58466,\n  \"user-vneck\": 58465,\n  \"user-xmark\": 62005,\n  \"user\": 61447,\n  \"users-between-lines\": 58769,\n  \"users-class\": 63037,\n  \"users-cog\": 62729,\n  \"users-crown\": 63141,\n  \"users-gear\": 62729,\n  \"users-line\": 58770,\n  \"users-medical\": 63536,\n  \"users-rays\": 58771,\n  \"users-rectangle\": 58772,\n  \"users-slash\": 57459,\n  \"users-viewfinder\": 58773,\n  \"users\": 61632,\n  \"utensil-fork\": 62179,\n  \"utensil-knife\": 62180,\n  \"utensil-spoon\": 62181,\n  \"utensils-alt\": 62182,\n  \"utensils-slash\": 58468,\n  \"utensils\": 62183,\n  \"utility-can\": 59549,\n  \"utility-pole-double\": 58052,\n  \"utility-pole\": 58051,\n  \"v\": 86,\n  \"vacuum-robot\": 57422,\n  \"vacuum\": 57421,\n  \"value-absolute\": 63142,\n  \"van-shuttle\": 62902,\n  \"van\": 59336,\n  \"vault\": 58053,\n  \"vcard\": 62139,\n  \"vector-circle\": 62957,\n  \"vector-polygon\": 62958,\n  \"vector-square\": 62959,\n  \"vent-damper\": 58469,\n  \"venus-double\": 61990,\n  \"venus-mars\": 61992,\n  \"venus\": 61985,\n  \"vest-patches\": 57478,\n  \"vest\": 57477,\n  \"vhs\": 63724,\n  \"vial-circle-check\": 58774,\n  \"vial-vertical\": 59234,\n  \"vial-virus\": 58775,\n  \"vial\": 62610,\n  \"vials\": 62611,\n  \"video-arrow-down-left\": 58056,\n  \"video-arrow-up-right\": 58057,\n  \"video-camera\": 61501,\n  \"video-circle\": 57643,\n  \"video-down-to-line\": 59254,\n  \"video-handheld\": 63656,\n  \"video-plus\": 62689,\n  \"video-question\": 59255,\n  \"video-slash\": 62690,\n  \"video\": 61501,\n  \"vihara\": 63143,\n  \"violin\": 63725,\n  \"virgo\": 59472,\n  \"virus-covid-slash\": 58537,\n  \"virus-covid\": 58536,\n  \"virus-slash\": 57461,\n  \"virus\": 57460,\n  \"viruses\": 57462,\n  \"voicemail\": 63639,\n  \"volcano\": 63344,\n  \"volleyball-ball\": 62559,\n  \"volleyball\": 62559,\n  \"volume-control-phone\": 62112,\n  \"volume-down\": 61479,\n  \"volume-high\": 61480,\n  \"volume-low\": 61479,\n  \"volume-medium\": 63144,\n  \"volume-mute\": 63145,\n  \"volume-off\": 61478,\n  \"volume-slash\": 62178,\n  \"volume-times\": 63145,\n  \"volume-up\": 61480,\n  \"volume-xmark\": 63145,\n  \"volume\": 63144,\n  \"vote-nay\": 63345,\n  \"vote-yea\": 63346,\n  \"vr-cardboard\": 63273,\n  \"w\": 87,\n  \"waffle\": 58470,\n  \"wagon-covered\": 63726,\n  \"walker\": 63537,\n  \"walkie-talkie\": 63727,\n  \"walking\": 62804,\n  \"wall-brick\": 58331,\n  \"wallet\": 62805,\n  \"wand-magic-sparkles\": 58058,\n  \"wand-magic\": 61648,\n  \"wand-sparkles\": 63275,\n  \"wand\": 63274,\n  \"wardrobe\": 59521,\n  \"warehouse-alt\": 62613,\n  \"warehouse-full\": 62613,\n  \"warehouse\": 62612,\n  \"warning\": 61553,\n  \"washer\": 63640,\n  \"washing-machine\": 63640,\n  \"watch-apple\": 58059,\n  \"watch-calculator\": 63728,\n  \"watch-fitness\": 63038,\n  \"watch-smart\": 58060,\n  \"watch\": 62177,\n  \"water-arrow-down\": 63348,\n  \"water-arrow-up\": 63349,\n  \"water-ladder\": 62917,\n  \"water-lower\": 63348,\n  \"water-rise\": 63349,\n  \"water-temp\": 59434,\n  \"water-temperature\": 59434,\n  \"water\": 63347,\n  \"watermelon-slice\": 58167,\n  \"wave-pulse\": 62968,\n  \"wave-sine\": 63641,\n  \"wave-square\": 63550,\n  \"wave-triangle\": 63642,\n  \"wave\": 58971,\n  \"waveform-circle\": 57645,\n  \"waveform-lines\": 63730,\n  \"waveform-path\": 63730,\n  \"waveform\": 63729,\n  \"waves-sine\": 58973,\n  \"web-awesome\": 59010,\n  \"webcam-slash\": 63539,\n  \"webcam\": 63538,\n  \"webhook\": 58837,\n  \"weight-hanging\": 62925,\n  \"weight-scale\": 62614,\n  \"weight\": 62614,\n  \"whale\": 63276,\n  \"wheat-alt\": 58061,\n  \"wheat-awn-circle-exclamation\": 58776,\n  \"wheat-awn-slash\": 58168,\n  \"wheat-awn\": 58061,\n  \"wheat-slash\": 58169,\n  \"wheat\": 63277,\n  \"wheelchair-alt\": 58062,\n  \"wheelchair-move\": 58062,\n  \"wheelchair\": 61843,\n  \"whiskey-glass-ice\": 63393,\n  \"whiskey-glass\": 63392,\n  \"whistle\": 62560,\n  \"wifi-1\": 63146,\n  \"wifi-2\": 63147,\n  \"wifi-3\": 61931,\n  \"wifi-exclamation\": 58063,\n  \"wifi-fair\": 63147,\n  \"wifi-slash\": 63148,\n  \"wifi-strong\": 61931,\n  \"wifi-weak\": 63146,\n  \"wifi\": 61931,\n  \"wind-circle-exclamation\": 63350,\n  \"wind-turbine\": 63643,\n  \"wind-warning\": 63350,\n  \"wind\": 63278,\n  \"window-alt\": 62479,\n  \"window-close\": 62480,\n  \"window-flip\": 62479,\n  \"window-frame-open\": 57424,\n  \"window-frame\": 57423,\n  \"window-maximize\": 62160,\n  \"window-minimize\": 62161,\n  \"window-restore\": 62162,\n  \"window\": 62478,\n  \"windsock\": 63351,\n  \"wine-bottle\": 63279,\n  \"wine-glass-alt\": 62926,\n  \"wine-glass-crack\": 62651,\n  \"wine-glass-empty\": 62926,\n  \"wine-glass\": 62691,\n  \"wireless\": 59359,\n  \"won-sign\": 61785,\n  \"won\": 61785,\n  \"worm\": 58777,\n  \"wreath-laurel\": 58834,\n  \"wreath\": 63458,\n  \"wrench-simple\": 58065,\n  \"wrench\": 61613,\n  \"x-ray\": 62615,\n  \"x\": 88,\n  \"xmark-circle\": 61527,\n  \"xmark-hexagon\": 62190,\n  \"xmark-large\": 58779,\n  \"xmark-octagon\": 62192,\n  \"xmark-square\": 62163,\n  \"xmark-to-slot\": 63345,\n  \"xmark\": 61453,\n  \"xmarks-lines\": 58778,\n  \"y\": 89,\n  \"yen-sign\": 61783,\n  \"yen\": 61783,\n  \"yin-yang\": 63149,\n  \"z\": 90,\n  \"zap\": 61671,\n  \"zzz\": 63616\n}"
  },
  {
    "path": "packages/fontawesome-pro-duotone-light/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontawesome-pro-duotone-light\",\n  \"version\": \"0.2.0\",\n  \"description\": \"Fontawesome Pro Duotone Light font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"fontawesome-pro-duotone-light\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/fontawesome-pro-duotone-light\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-light/react-native-vector-icons-fontawesome-pro-duotone-light.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-fontawesome-pro-duotone-light'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\n\n  s.script_phase = {\n    name: 'Copy Custom Fonts',\n    execution_position: :after_compile,\n    script: <<~SCRIPT\n      set -e\n\n      HEAD=\"(RNVI-fontawesome-pro-duotone-light)\"\n\n      echo \"${HEAD} START_COPY_FONTS\"\n\n      echo \"${HEAD} PWD: $(pwd)\"\n\n      #\n      # Find the custom font Directory\n      #\n\n      # Assume the project root is always two directories above the POD_ROOT\n      echo \"${HEAD} PODS_ROOT: $PODS_ROOT\"\n\n      PROJECT_ROOT=\"${PODS_ROOT}/../..\"\n      echo \"${HEAD} PROJECT_ROOT: $PROJECT_ROOT\"\n\n      cd $PROJECT_ROOT\n      FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/\"//g')\n      if [ -z \"$FONTS_DIR\" ]; then\n        FONTS_DIR=\"rnvi-fonts\"\n      fi\n      echo \"${HEAD} FONTS_DIR: $FONTS_DIR\"\n\n      FONTS_DIR=\"${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-duotone-light\"\n      if [ ! -d \"$FONTS_DIR\" ]; then\n        echo \"${HEAD} $FONTS_DIR not found\"\n        exit 0\n      fi\n\n      #\n      # Find the destination we copy to\n      #\n\n      echo \"${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR\"\n      XCODE_DIR=$(ls -d \"$PODS_CONFIGURATION_BUILD_DIR\"/*.app)\n      echo \"${HEAD} XCODE_DIR: $XCODE_DIR\"\n      if [ -z \"$XCODE_DIR\" ]; then\n        echo \"Could not find XCODE_DIR to copy fonts to\"\n        exit 1\n      fi\n\n      DEST_DIR=\"${XCODE_DIR}\"\n      mkdir -p \"$DEST_DIR\"\n\n      #\n      # Copy the fonts\n      #\n\n      echo \"${HEAD} Copying the following files to $DEST_DIR\"\n      ls \"$FONTS_DIR\" | sed \"s/^/${HEAD} /\"\n\n      rsync -avr --copy-links --no-relative $FONTS_DIR/ \"$DEST_DIR\"\n\n      echo \"${HEAD} END:RNVI_COPY_FONTS\"\n    SCRIPT\n  }\nend\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-light/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProDuotoneLight icon set component.\n * Usage: <FontAwesomeProDuotoneLight name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProDuotoneLight.json';\n\nexport const FontAwesomeProDuotoneLight = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Duotone-Light',\n  fontFileName: 'fa-duotone-light-300.ttf',\n});\n\nexport type FontAwesomeProDuotoneLightIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProDuotoneLight;\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-light/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProDuotoneLight icon set component.\n * Usage: <FontAwesomeProDuotoneLight name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProDuotoneLight.json';\n\nexport const FontAwesomeProDuotoneLight = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Duotone-Light',\n  fontFileName: 'fa-duotone-light-300.ttf',\n});\n\nexport type FontAwesomeProDuotoneLightIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProDuotoneLight;\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-light/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-light/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-regular/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontawesome-pro-duotone-regular\",\n    \"upstreamFont\": {\n      \"registry\": \"https://npm.fontawesome.com\",\n      \"packageName\": \"@fortawesome/fontawesome-pro\",\n      \"versionOnly\": true\n    },\n    \"copyCustomFonts\": true,\n    \"className\": \"FontAwesomeProDuotoneRegular\",\n    \"postScriptName\": \"FontAwesome7Duotone-Regular\",\n    \"fontFileName\": \"fa-duotone-regular-400\",\n    \"buildSteps\": {\n      \"preScript\": {\n        \"script\": \"../fontawesome-common/scripts/fetch-pro.sh 7\"\n      },\n      \"glyphmap\": {\n        \"location\": \"fa/pro/css/all.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fa-\"\n      },\n      \"postScript\": {\n        \"script\": \"../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProDuotoneRegular.json fa/pro/svgs/duotone-regular\\nrm -rf fa\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"0.1.0\",\n        \"upstream\": \"7.1.0\"\n      },\n      {\n        \"rnvi\": \"0.1.1\",\n        \"upstream\": \"7.2.0\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-regular/CHANGELOG.md",
    "content": "## 0.2.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 0.1.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 0.1.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🩹 Fixes\n\n- upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 0.1.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 0.1.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontawesome-pro-duotone-regular/README.md",
    "content": "# React Native Vector Icons - Fontawesome Pro Duotone Regular\n\nFontawesome Pro Duotone Regular font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n> [!IMPORTANT]\n> This package does not include the fonts. You must provide them yourself.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/fontawesome-pro-duotone-regular\n```\n\n## Custom Fonts\n\nThis package requires you to provide the font files. Place your `.ttf` font\nfile in the following location:\n\n```\nrnvi-fonts/fontawesome-pro-duotone-regular/fa-duotone-regular-400.ttf\n```\n\nThe font will be automatically copied during the build process for both iOS and\nAndroid.\n\n## Usage\n\n```jsx\nimport { FontAwesomeProDuotoneRegular } from '@react-native-vector-icons/fontawesome-pro-duotone-regular';\n\n// ...\n\n<FontAwesomeProDuotoneRegular name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 0.1.0 | 7.1.0 |\n| &gt; 0.1.1 | 7.2.0 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-regular/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.fontawesome_pro_duotone_regular\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFontAwesomeProDuotoneRegular\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.fontawesome_pro_duotone_regular\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-fontawesome-pro-duotone-regular\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-duotone-regular/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-duotone-regular) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n\ntask copyExtraFonts(type: Copy) {\n  from \"${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-duotone-regular\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-duotone-regular/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-duotone-regular) Copying custom font: ${it.file}\" }\n}\n\npreBuild.dependsOn(copyExtraFonts)\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-regular/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.fontawesome_pro_duotone_regular\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-regular/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-regular/android/src/main/java/VectorIconsFontAwesomeProDuotoneRegularPackage.kt",
    "content": "package com.reactnativevectoricons.fontawesome_pro_duotone_regular\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFontAwesomeProDuotoneRegularPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-regular/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-regular/glyphmaps/FontAwesomeProDuotoneRegular.json",
    "content": "{\n  \"0\": 48,\n  \"1\": 49,\n  \"2\": 50,\n  \"3\": 51,\n  \"4\": 52,\n  \"5\": 53,\n  \"6\": 54,\n  \"7\": 55,\n  \"8\": 56,\n  \"9\": 57,\n  \"100\": 58396,\n  \"00\": 58471,\n  \"360-degrees\": 58076,\n  \"a\": 65,\n  \"abacus\": 63040,\n  \"accent-grave\": 96,\n  \"acorn\": 63150,\n  \"ad\": 63041,\n  \"add\": 43,\n  \"address-book\": 62137,\n  \"address-card\": 62139,\n  \"adjust\": 61506,\n  \"aeropress\": 59435,\n  \"air-conditioner\": 63732,\n  \"air-freshener\": 62928,\n  \"airplay-audio\": 59259,\n  \"airplay\": 57481,\n  \"alarm-clock\": 62286,\n  \"alarm-exclamation\": 63555,\n  \"alarm-minus\": 59395,\n  \"alarm-plus\": 63556,\n  \"alarm-snooze\": 63557,\n  \"album-circle-plus\": 58508,\n  \"album-circle-user\": 58509,\n  \"album-collection-circle-plus\": 58510,\n  \"album-collection-circle-user\": 58511,\n  \"album-collection\": 63648,\n  \"album\": 63647,\n  \"alicorn\": 63152,\n  \"alien-8bit\": 63734,\n  \"alien-monster\": 63734,\n  \"alien\": 63733,\n  \"align-center\": 61495,\n  \"align-justify\": 61497,\n  \"align-left\": 61494,\n  \"align-right\": 61496,\n  \"align-slash\": 63558,\n  \"allergies\": 62561,\n  \"almost-equal-to\": 59416,\n  \"alt\": 57482,\n  \"ambulance\": 61689,\n  \"american-sign-language-interpreting\": 62115,\n  \"amp-guitar\": 63649,\n  \"ampersand\": 38,\n  \"analytics\": 63043,\n  \"anchor-circle-check\": 58538,\n  \"anchor-circle-exclamation\": 58539,\n  \"anchor-circle-xmark\": 58540,\n  \"anchor-lock\": 58541,\n  \"anchor\": 61757,\n  \"angel\": 63353,\n  \"angle-90\": 57485,\n  \"angle-double-down\": 61699,\n  \"angle-double-left\": 61696,\n  \"angle-double-right\": 61697,\n  \"angle-double-up\": 61698,\n  \"angle-down\": 61703,\n  \"angle-left\": 61700,\n  \"angle-right\": 61701,\n  \"angle-up\": 61702,\n  \"angle\": 57484,\n  \"angles-down\": 61699,\n  \"angles-left\": 61696,\n  \"angles-right\": 61697,\n  \"angles-up-down\": 58893,\n  \"angles-up\": 61698,\n  \"angry\": 62806,\n  \"ankh\": 63044,\n  \"ant\": 59008,\n  \"apartment\": 58472,\n  \"aperture\": 58079,\n  \"apostrophe\": 39,\n  \"apple-alt\": 62929,\n  \"apple-core\": 57487,\n  \"apple-crate\": 63153,\n  \"apple-whole\": 62929,\n  \"aquarius\": 59461,\n  \"archive\": 61831,\n  \"archway\": 62807,\n  \"area-chart\": 61950,\n  \"aries\": 59462,\n  \"arrow-alt-circle-down\": 62296,\n  \"arrow-alt-circle-left\": 62297,\n  \"arrow-alt-circle-right\": 62298,\n  \"arrow-alt-circle-up\": 62299,\n  \"arrow-alt-down\": 62292,\n  \"arrow-alt-from-bottom\": 62278,\n  \"arrow-alt-from-left\": 62279,\n  \"arrow-alt-from-right\": 62280,\n  \"arrow-alt-from-top\": 62281,\n  \"arrow-alt-left\": 62293,\n  \"arrow-alt-right\": 62294,\n  \"arrow-alt-square-down\": 62288,\n  \"arrow-alt-square-left\": 62289,\n  \"arrow-alt-square-right\": 62290,\n  \"arrow-alt-square-up\": 62291,\n  \"arrow-alt-to-bottom\": 62282,\n  \"arrow-alt-to-left\": 62283,\n  \"arrow-alt-to-right\": 62284,\n  \"arrow-alt-to-top\": 62285,\n  \"arrow-alt-up\": 62295,\n  \"arrow-archery\": 59449,\n  \"arrow-circle-down\": 61611,\n  \"arrow-circle-left\": 61608,\n  \"arrow-circle-right\": 61609,\n  \"arrow-circle-up\": 61610,\n  \"arrow-down-1-9\": 61794,\n  \"arrow-down-9-1\": 63622,\n  \"arrow-down-a-z\": 61789,\n  \"arrow-down-arrow-up\": 63619,\n  \"arrow-down-big-small\": 63628,\n  \"arrow-down-from-arc\": 58900,\n  \"arrow-down-from-bracket\": 58983,\n  \"arrow-down-from-dotted-line\": 57488,\n  \"arrow-down-from-line\": 62277,\n  \"arrow-down-left-and-arrow-up-right-to-center\": 57490,\n  \"arrow-down-left\": 57489,\n  \"arrow-down-long-to-line\": 59063,\n  \"arrow-down-long\": 61813,\n  \"arrow-down-right\": 57491,\n  \"arrow-down-short-wide\": 63620,\n  \"arrow-down-small-big\": 63629,\n  \"arrow-down-square-triangle\": 63625,\n  \"arrow-down-to-arc\": 58542,\n  \"arrow-down-to-bracket\": 57492,\n  \"arrow-down-to-dotted-line\": 57493,\n  \"arrow-down-to-line\": 62269,\n  \"arrow-down-to-square\": 57494,\n  \"arrow-down-triangle-square\": 63624,\n  \"arrow-down-up-across-line\": 58543,\n  \"arrow-down-up-lock\": 58544,\n  \"arrow-down-wide-short\": 61792,\n  \"arrow-down-z-a\": 63617,\n  \"arrow-down\": 61539,\n  \"arrow-from-bottom\": 62274,\n  \"arrow-from-left\": 62275,\n  \"arrow-from-right\": 62276,\n  \"arrow-from-top\": 62277,\n  \"arrow-left-arrow-right\": 59064,\n  \"arrow-left-from-arc\": 58901,\n  \"arrow-left-from-bracket\": 58984,\n  \"arrow-left-from-dotted-line\": 59065,\n  \"arrow-left-from-line\": 62276,\n  \"arrow-left-long-to-line\": 58324,\n  \"arrow-left-long\": 61815,\n  \"arrow-left-rotate\": 61666,\n  \"arrow-left-to-arc\": 58902,\n  \"arrow-left-to-bracket\": 58985,\n  \"arrow-left-to-dotted-line\": 59066,\n  \"arrow-left-to-line\": 62270,\n  \"arrow-left\": 61536,\n  \"arrow-pointer\": 62021,\n  \"arrow-progress\": 58847,\n  \"arrow-right-arrow-left\": 61676,\n  \"arrow-right-from-arc\": 58545,\n  \"arrow-right-from-bracket\": 61579,\n  \"arrow-right-from-dotted-line\": 59067,\n  \"arrow-right-from-file\": 62830,\n  \"arrow-right-from-line\": 62275,\n  \"arrow-right-long-to-line\": 58325,\n  \"arrow-right-long\": 61816,\n  \"arrow-right-rotate\": 61470,\n  \"arrow-right-to-arc\": 58546,\n  \"arrow-right-to-bracket\": 61584,\n  \"arrow-right-to-city\": 58547,\n  \"arrow-right-to-dotted-line\": 59068,\n  \"arrow-right-to-file\": 62831,\n  \"arrow-right-to-line\": 62272,\n  \"arrow-right\": 61537,\n  \"arrow-rotate-back\": 61666,\n  \"arrow-rotate-backward\": 61666,\n  \"arrow-rotate-forward\": 61470,\n  \"arrow-rotate-left-10\": 59446,\n  \"arrow-rotate-left-15\": 59526,\n  \"arrow-rotate-left-30\": 59527,\n  \"arrow-rotate-left\": 61666,\n  \"arrow-rotate-right-10\": 59447,\n  \"arrow-rotate-right-15\": 59528,\n  \"arrow-rotate-right-30\": 59529,\n  \"arrow-rotate-right\": 61470,\n  \"arrow-square-down\": 62265,\n  \"arrow-square-left\": 62266,\n  \"arrow-square-right\": 62267,\n  \"arrow-square-up\": 62268,\n  \"arrow-to-bottom\": 62269,\n  \"arrow-to-left\": 62270,\n  \"arrow-to-right\": 62272,\n  \"arrow-to-top\": 62273,\n  \"arrow-trend-down\": 57495,\n  \"arrow-trend-up\": 57496,\n  \"arrow-turn-down-left\": 58081,\n  \"arrow-turn-down-right\": 58326,\n  \"arrow-turn-down\": 61769,\n  \"arrow-turn-left-down\": 58931,\n  \"arrow-turn-left-up\": 58932,\n  \"arrow-turn-left\": 58930,\n  \"arrow-turn-right\": 58933,\n  \"arrow-turn-up\": 61768,\n  \"arrow-u-turn-down-left\": 59367,\n  \"arrow-u-turn-down-right\": 59368,\n  \"arrow-u-turn-left-down\": 59369,\n  \"arrow-u-turn-left-up\": 59370,\n  \"arrow-u-turn-right-down\": 59371,\n  \"arrow-u-turn-right-up\": 59372,\n  \"arrow-u-turn-up-left\": 59373,\n  \"arrow-u-turn-up-right\": 59374,\n  \"arrow-up-1-9\": 61795,\n  \"arrow-up-9-1\": 63623,\n  \"arrow-up-a-z\": 61790,\n  \"arrow-up-arrow-down\": 57497,\n  \"arrow-up-big-small\": 63630,\n  \"arrow-up-from-arc\": 58548,\n  \"arrow-up-from-bracket\": 57498,\n  \"arrow-up-from-dotted-line\": 57499,\n  \"arrow-up-from-ground-water\": 58549,\n  \"arrow-up-from-line\": 62274,\n  \"arrow-up-from-square\": 57500,\n  \"arrow-up-from-water-pump\": 58550,\n  \"arrow-up-left-from-circle\": 57502,\n  \"arrow-up-left\": 57501,\n  \"arrow-up-long-to-line\": 59069,\n  \"arrow-up-long\": 61814,\n  \"arrow-up-right-and-arrow-down-left-from-center\": 57504,\n  \"arrow-up-right-dots\": 58551,\n  \"arrow-up-right-from-square\": 61582,\n  \"arrow-up-right\": 57503,\n  \"arrow-up-short-wide\": 63621,\n  \"arrow-up-small-big\": 63631,\n  \"arrow-up-square-triangle\": 63627,\n  \"arrow-up-to-arc\": 58903,\n  \"arrow-up-to-bracket\": 58986,\n  \"arrow-up-to-dotted-line\": 57505,\n  \"arrow-up-to-line\": 62273,\n  \"arrow-up-triangle-square\": 63626,\n  \"arrow-up-wide-short\": 61793,\n  \"arrow-up-z-a\": 63618,\n  \"arrow-up\": 61538,\n  \"arrows-alt-h\": 62263,\n  \"arrows-alt-v\": 62264,\n  \"arrows-alt\": 61618,\n  \"arrows-cross\": 57506,\n  \"arrows-down-to-line\": 58552,\n  \"arrows-down-to-people\": 58553,\n  \"arrows-from-dotted-line\": 57507,\n  \"arrows-from-line\": 57508,\n  \"arrows-h\": 61566,\n  \"arrows-left-right-to-line\": 58554,\n  \"arrows-left-right\": 61566,\n  \"arrows-maximize\": 62237,\n  \"arrows-minimize\": 57509,\n  \"arrows-repeat-1\": 62310,\n  \"arrows-repeat\": 62308,\n  \"arrows-retweet\": 62305,\n  \"arrows-rotate-reverse\": 58928,\n  \"arrows-rotate\": 61473,\n  \"arrows-spin\": 58555,\n  \"arrows-split-up-and-left\": 58556,\n  \"arrows-to-circle\": 58557,\n  \"arrows-to-dot\": 58558,\n  \"arrows-to-dotted-line\": 57510,\n  \"arrows-to-eye\": 58559,\n  \"arrows-to-line\": 57511,\n  \"arrows-turn-right\": 58560,\n  \"arrows-turn-to-dots\": 58561,\n  \"arrows-up-down-left-right\": 61511,\n  \"arrows-up-down\": 61565,\n  \"arrows-up-to-line\": 58562,\n  \"arrows-v\": 61565,\n  \"arrows\": 61511,\n  \"asl-interpreting\": 62115,\n  \"assistive-listening-systems\": 62114,\n  \"asterisk\": 42,\n  \"at\": 64,\n  \"atlas\": 62808,\n  \"atom-alt\": 62931,\n  \"atom-simple\": 62931,\n  \"atom\": 62930,\n  \"audio-description-slash\": 57512,\n  \"audio-description\": 62110,\n  \"austral-sign\": 57513,\n  \"australian-dollar-sign\": 59134,\n  \"automobile\": 61881,\n  \"avocado\": 57514,\n  \"award-simple\": 57515,\n  \"award\": 62809,\n  \"axe-battle\": 63155,\n  \"axe\": 63154,\n  \"b\": 66,\n  \"baby-carriage\": 63357,\n  \"baby\": 63356,\n  \"backpack\": 62932,\n  \"backspace\": 62810,\n  \"backward-fast\": 61513,\n  \"backward-step\": 61512,\n  \"backward\": 61514,\n  \"bacon\": 63461,\n  \"bacteria\": 57433,\n  \"bacterium\": 57434,\n  \"badge-check\": 62262,\n  \"badge-dollar\": 63045,\n  \"badge-percent\": 63046,\n  \"badge-sheriff\": 63650,\n  \"badge\": 62261,\n  \"badger-honey\": 63156,\n  \"badminton\": 58170,\n  \"bag-seedling\": 58866,\n  \"bag-shopping-minus\": 58960,\n  \"bag-shopping-plus\": 58961,\n  \"bag-shopping\": 62096,\n  \"bagel\": 58327,\n  \"bags-shopping\": 63559,\n  \"baguette\": 58328,\n  \"bahai\": 63078,\n  \"baht-sign\": 57516,\n  \"balance-scale-left\": 62741,\n  \"balance-scale-right\": 62742,\n  \"balance-scale\": 62030,\n  \"ball-pile\": 63358,\n  \"ball-yarn\": 59086,\n  \"balloon\": 58083,\n  \"balloons\": 58084,\n  \"ballot-check\": 63283,\n  \"ballot\": 63282,\n  \"ban-bug\": 63481,\n  \"ban-parking\": 62998,\n  \"ban-smoking\": 62797,\n  \"ban\": 61534,\n  \"banana\": 58085,\n  \"band-aid\": 62562,\n  \"bandage\": 62562,\n  \"bangladeshi-taka-sign\": 58086,\n  \"banjo\": 63651,\n  \"bank\": 61852,\n  \"bar-chart\": 61568,\n  \"bar-progress-empty\": 59045,\n  \"bar-progress-full\": 59046,\n  \"bar-progress-half\": 59047,\n  \"bar-progress-quarter\": 59048,\n  \"bar-progress-three-quarters\": 59049,\n  \"bar-progress\": 59044,\n  \"barcode-alt\": 62563,\n  \"barcode-read\": 62564,\n  \"barcode-scan\": 62565,\n  \"barcode\": 61482,\n  \"barn-silo\": 63588,\n  \"barn\": 59079,\n  \"bars-filter\": 57517,\n  \"bars-progress\": 63528,\n  \"bars-sort\": 57518,\n  \"bars-staggered\": 62800,\n  \"bars\": 61641,\n  \"baseball-ball\": 62515,\n  \"baseball-bat-ball\": 62514,\n  \"baseball-bat\": 59365,\n  \"baseball\": 62515,\n  \"basket-shopping-minus\": 58962,\n  \"basket-shopping-plus\": 58963,\n  \"basket-shopping-simple\": 57519,\n  \"basket-shopping\": 62097,\n  \"basketball-ball\": 62516,\n  \"basketball-hoop\": 62517,\n  \"basketball\": 62516,\n  \"bat\": 63157,\n  \"bath\": 62157,\n  \"bathtub\": 62157,\n  \"battery-0\": 62020,\n  \"battery-1\": 57521,\n  \"battery-2\": 62019,\n  \"battery-3\": 62018,\n  \"battery-4\": 62017,\n  \"battery-5\": 62016,\n  \"battery-bolt\": 62326,\n  \"battery-car\": 62943,\n  \"battery-empty\": 62020,\n  \"battery-exclamation\": 57520,\n  \"battery-full\": 62016,\n  \"battery-half\": 62018,\n  \"battery-low\": 57521,\n  \"battery-quarter\": 62019,\n  \"battery-slash\": 62327,\n  \"battery-three-quarters\": 62017,\n  \"battery\": 62016,\n  \"bed-alt\": 63735,\n  \"bed-bunk\": 63736,\n  \"bed-empty\": 63737,\n  \"bed-front\": 63735,\n  \"bed-pulse\": 62599,\n  \"bed\": 62006,\n  \"bee\": 57522,\n  \"beer-foam\": 57523,\n  \"beer-mug-empty\": 61692,\n  \"beer-mug\": 57523,\n  \"beer\": 61692,\n  \"bell-concierge\": 62818,\n  \"bell-exclamation\": 63560,\n  \"bell-on\": 63738,\n  \"bell-plus\": 63561,\n  \"bell-ring\": 58924,\n  \"bell-school-slash\": 62934,\n  \"bell-school\": 62933,\n  \"bell-slash\": 61942,\n  \"bell\": 61683,\n  \"bells\": 63359,\n  \"bench-tree\": 58087,\n  \"betamax\": 63652,\n  \"bezier-curve\": 62811,\n  \"bible\": 63047,\n  \"bicep\": 59490,\n  \"bicycle\": 61958,\n  \"biking-mountain\": 63563,\n  \"biking\": 63562,\n  \"billboard\": 58829,\n  \"bin-bottles-recycle\": 58870,\n  \"bin-bottles\": 58869,\n  \"bin-recycle\": 58871,\n  \"bin\": 59235,\n  \"binary-circle-check\": 58172,\n  \"binary-lock\": 58173,\n  \"binary-slash\": 58174,\n  \"binary\": 58171,\n  \"binoculars\": 61925,\n  \"biohazard\": 63360,\n  \"bird\": 58473,\n  \"birthday-cake\": 61949,\n  \"bitcoin-sign\": 57524,\n  \"blackboard\": 62747,\n  \"blanket-fire\": 58330,\n  \"blanket\": 62616,\n  \"blender-phone\": 63158,\n  \"blender\": 62743,\n  \"blind\": 62109,\n  \"blinds-open\": 63740,\n  \"blinds-raised\": 63741,\n  \"blinds\": 63739,\n  \"block-brick-fire\": 58332,\n  \"block-brick\": 58331,\n  \"block-question\": 58333,\n  \"block-quote\": 57525,\n  \"block\": 58474,\n  \"blog\": 63361,\n  \"blueberries\": 58088,\n  \"bluetooth\": 62099,\n  \"bold\": 61490,\n  \"bolt-auto\": 57526,\n  \"bolt-lightning\": 57527,\n  \"bolt-slash\": 57528,\n  \"bolt\": 61671,\n  \"bomb\": 61922,\n  \"bone-break\": 62936,\n  \"bone\": 62935,\n  \"bong\": 62812,\n  \"book-alt\": 62937,\n  \"book-arrow-right\": 57529,\n  \"book-arrow-up\": 57530,\n  \"book-atlas\": 62808,\n  \"book-bible\": 63047,\n  \"book-blank\": 62937,\n  \"book-bookmark\": 57531,\n  \"book-circle-arrow-right\": 57532,\n  \"book-circle-arrow-up\": 57533,\n  \"book-circle\": 57599,\n  \"book-copy\": 57534,\n  \"book-dead\": 63159,\n  \"book-font\": 57535,\n  \"book-heart\": 62617,\n  \"book-journal-whills\": 63082,\n  \"book-law\": 57537,\n  \"book-medical\": 63462,\n  \"book-open-alt\": 57536,\n  \"book-open-cover\": 57536,\n  \"book-open-lines\": 59219,\n  \"book-open-reader\": 62938,\n  \"book-open\": 62744,\n  \"book-quran\": 63111,\n  \"book-reader\": 62938,\n  \"book-section\": 57537,\n  \"book-skull\": 63159,\n  \"book-sparkles\": 63160,\n  \"book-spells\": 63160,\n  \"book-spine\": 59220,\n  \"book-tanakh\": 63527,\n  \"book-user\": 63463,\n  \"book\": 61485,\n  \"bookmark-circle\": 57600,\n  \"bookmark-plus\": 59221,\n  \"bookmark-slash\": 57538,\n  \"bookmark\": 61486,\n  \"books-medical\": 63464,\n  \"books\": 62939,\n  \"boombox\": 63653,\n  \"boot-heeled\": 58175,\n  \"boot\": 63362,\n  \"booth-curtain\": 63284,\n  \"border-all\": 63564,\n  \"border-bottom-right\": 63572,\n  \"border-bottom\": 63565,\n  \"border-center-h\": 63644,\n  \"border-center-v\": 63645,\n  \"border-inner\": 63566,\n  \"border-left\": 63567,\n  \"border-none\": 63568,\n  \"border-outer\": 63569,\n  \"border-right\": 63570,\n  \"border-style-alt\": 63572,\n  \"border-style\": 63571,\n  \"border-top-left\": 63571,\n  \"border-top\": 63573,\n  \"bore-hole\": 58563,\n  \"bottle-baby\": 58995,\n  \"bottle-droplet\": 58564,\n  \"bottle-water\": 58565,\n  \"bow-archery\": 59450,\n  \"bow-arrow\": 63161,\n  \"bowl-chopsticks-noodles\": 58090,\n  \"bowl-chopsticks\": 58089,\n  \"bowl-food\": 58566,\n  \"bowl-hot\": 63523,\n  \"bowl-rice\": 58091,\n  \"bowl-salad\": 63518,\n  \"bowl-scoop\": 58334,\n  \"bowl-scoops\": 58335,\n  \"bowl-shaved-ice\": 58334,\n  \"bowl-soft-serve\": 58475,\n  \"bowl-spoon\": 58336,\n  \"bowling-ball-pin\": 57539,\n  \"bowling-ball\": 62518,\n  \"bowling-pins\": 62519,\n  \"box-alt\": 62618,\n  \"box-archive\": 61831,\n  \"box-arrow-down-arrow-up\": 59285,\n  \"box-arrow-down-magnifying-glass\": 59286,\n  \"box-arrow-down\": 59284,\n  \"box-arrow-up\": 59431,\n  \"box-ballot\": 63285,\n  \"box-check\": 62567,\n  \"box-circle-check\": 57540,\n  \"box-dollar\": 62624,\n  \"box-fragile\": 62619,\n  \"box-full\": 62620,\n  \"box-heart\": 62621,\n  \"box-isometric-tape\": 59288,\n  \"box-isometric\": 59287,\n  \"box-magnifying-glass\": 59432,\n  \"box-open-full\": 62620,\n  \"box-open\": 62622,\n  \"box-taped\": 62618,\n  \"box-tissue\": 57435,\n  \"box-up\": 62623,\n  \"box-usd\": 62624,\n  \"box\": 62566,\n  \"boxes-alt\": 62568,\n  \"boxes-packing\": 58567,\n  \"boxes-stacked\": 62568,\n  \"boxes\": 62568,\n  \"boxing-glove\": 62520,\n  \"bra\": 59087,\n  \"bracket-curly-left\": 123,\n  \"bracket-curly-right\": 125,\n  \"bracket-curly\": 123,\n  \"bracket-left\": 91,\n  \"bracket-round-right\": 41,\n  \"bracket-round\": 40,\n  \"bracket-square-right\": 93,\n  \"bracket-square\": 91,\n  \"bracket\": 91,\n  \"brackets-curly\": 63466,\n  \"brackets-round\": 57541,\n  \"brackets-square\": 63465,\n  \"brackets\": 63465,\n  \"braille\": 62113,\n  \"brain-arrow-curved-right\": 63095,\n  \"brain-circuit\": 57542,\n  \"brain\": 62940,\n  \"brake-warning\": 57543,\n  \"brazilian-real-sign\": 58476,\n  \"bread-loaf\": 63467,\n  \"bread-slice-butter\": 58337,\n  \"bread-slice\": 63468,\n  \"bridge-circle-check\": 58569,\n  \"bridge-circle-exclamation\": 58570,\n  \"bridge-circle-xmark\": 58571,\n  \"bridge-lock\": 58572,\n  \"bridge-suspension\": 58573,\n  \"bridge-water\": 58574,\n  \"bridge\": 58568,\n  \"briefcase-arrow-right\": 58098,\n  \"briefcase-blank\": 57544,\n  \"briefcase-clock\": 63050,\n  \"briefcase-medical\": 62569,\n  \"briefcase\": 61617,\n  \"briefs\": 59088,\n  \"brightness-low\": 57546,\n  \"brightness\": 57545,\n  \"bring-forward\": 63574,\n  \"bring-front\": 63575,\n  \"broadcast-tower\": 62745,\n  \"broccoli\": 58338,\n  \"broom-ball\": 62552,\n  \"broom-wide\": 58833,\n  \"broom\": 62746,\n  \"browser\": 62334,\n  \"browsers\": 57547,\n  \"brush\": 62813,\n  \"bucket\": 58575,\n  \"bug-slash\": 58512,\n  \"bug\": 61832,\n  \"bugs\": 58576,\n  \"building-circle-arrow-right\": 58577,\n  \"building-circle-check\": 58578,\n  \"building-circle-exclamation\": 58579,\n  \"building-circle-xmark\": 58580,\n  \"building-columns\": 61852,\n  \"building-flag\": 58581,\n  \"building-lock\": 58582,\n  \"building-magnifying-glass\": 58908,\n  \"building-memo\": 58910,\n  \"building-ngo\": 58583,\n  \"building-shield\": 58584,\n  \"building-un\": 58585,\n  \"building-user\": 58586,\n  \"building-wheat\": 58587,\n  \"building\": 61869,\n  \"buildings\": 57548,\n  \"bulldozer\": 58965,\n  \"bullhorn\": 61601,\n  \"bullseye-arrow\": 63048,\n  \"bullseye-pointer\": 63049,\n  \"bullseye\": 61760,\n  \"buoy-mooring\": 58806,\n  \"buoy\": 58805,\n  \"burger-cheese\": 63473,\n  \"burger-fries\": 57549,\n  \"burger-glass\": 57550,\n  \"burger-lettuce\": 58339,\n  \"burger-soda\": 63576,\n  \"burger\": 63493,\n  \"burn\": 62570,\n  \"burrito\": 63469,\n  \"burst-new\": 59512,\n  \"burst\": 58588,\n  \"bus-alt\": 62814,\n  \"bus-school\": 62941,\n  \"bus-side\": 59421,\n  \"bus-simple\": 62814,\n  \"bus-stop\": 59422,\n  \"bus\": 61959,\n  \"business-front\": 58460,\n  \"business-time\": 63050,\n  \"butter\": 58340,\n  \"butterfly\": 59409,\n  \"c\": 67,\n  \"cab\": 61882,\n  \"cabin\": 58477,\n  \"cabinet-filing\": 63051,\n  \"cable-car\": 63450,\n  \"cactus\": 63655,\n  \"caduceus\": 59009,\n  \"cake-candles\": 61949,\n  \"cake-slice\": 58341,\n  \"cake\": 61949,\n  \"calculator-alt\": 63052,\n  \"calculator-simple\": 63052,\n  \"calculator\": 61932,\n  \"calendar-alt\": 61555,\n  \"calendar-arrow-down\": 57552,\n  \"calendar-arrow-up\": 57553,\n  \"calendar-check\": 62068,\n  \"calendar-circle-exclamation\": 58478,\n  \"calendar-circle-minus\": 58479,\n  \"calendar-circle-plus\": 58480,\n  \"calendar-circle-user\": 58481,\n  \"calendar-circle\": 57602,\n  \"calendar-clock\": 57554,\n  \"calendar-day\": 63363,\n  \"calendar-days\": 61555,\n  \"calendar-download\": 57552,\n  \"calendar-edit\": 62259,\n  \"calendar-exclamation\": 62260,\n  \"calendar-heart\": 57555,\n  \"calendar-image\": 57556,\n  \"calendar-lines-pen\": 58482,\n  \"calendar-lines\": 57557,\n  \"calendar-minus\": 62066,\n  \"calendar-note\": 57557,\n  \"calendar-pen\": 62259,\n  \"calendar-plus\": 62065,\n  \"calendar-range\": 57558,\n  \"calendar-star\": 63286,\n  \"calendar-time\": 57554,\n  \"calendar-times\": 62067,\n  \"calendar-upload\": 57553,\n  \"calendar-users\": 58850,\n  \"calendar-week\": 63364,\n  \"calendar-xmark\": 62067,\n  \"calendar\": 61747,\n  \"calendars\": 57559,\n  \"camcorder\": 63656,\n  \"camera-alt\": 61488,\n  \"camera-cctv\": 63660,\n  \"camera-circle-ellipsis\": 59238,\n  \"camera-circle\": 57603,\n  \"camera-clock\": 59239,\n  \"camera-home\": 63742,\n  \"camera-movie\": 63657,\n  \"camera-polaroid\": 63658,\n  \"camera-retro\": 61571,\n  \"camera-rotate\": 57560,\n  \"camera-security\": 63742,\n  \"camera-shutter\": 59240,\n  \"camera-slash\": 57561,\n  \"camera-viewfinder\": 57562,\n  \"camera-web-slash\": 63539,\n  \"camera-web\": 63538,\n  \"camera\": 61488,\n  \"campfire\": 63162,\n  \"campground\": 63163,\n  \"can-food\": 58342,\n  \"cancel\": 61534,\n  \"cancer\": 59463,\n  \"candle-holder\": 63164,\n  \"candy-bar\": 58344,\n  \"candy-cane\": 63366,\n  \"candy-corn\": 63165,\n  \"candy\": 58343,\n  \"cannabis\": 62815,\n  \"cannon\": 58946,\n  \"canoe-person\": 59548,\n  \"capricorn\": 59464,\n  \"capsule\": 59226,\n  \"capsules\": 62571,\n  \"car-alt\": 62942,\n  \"car-battery\": 62943,\n  \"car-bolt\": 58177,\n  \"car-building\": 63577,\n  \"car-bump\": 62944,\n  \"car-burst\": 62945,\n  \"car-bus\": 63578,\n  \"car-circle-bolt\": 58178,\n  \"car-crash\": 62945,\n  \"car-garage\": 62946,\n  \"car-key\": 59328,\n  \"car-mechanic\": 62947,\n  \"car-mirrors\": 58179,\n  \"car-on\": 58589,\n  \"car-people\": 59036,\n  \"car-rear\": 62942,\n  \"car-side-bolt\": 58180,\n  \"car-side\": 62948,\n  \"car-siren-on\": 59330,\n  \"car-siren\": 59329,\n  \"car-tilt\": 62949,\n  \"car-tunnel\": 58590,\n  \"car-wash\": 62950,\n  \"car-wrench\": 62947,\n  \"car\": 61881,\n  \"caravan-alt\": 57344,\n  \"caravan-simple\": 57344,\n  \"caravan\": 63743,\n  \"card-club\": 58345,\n  \"card-diamond\": 58346,\n  \"card-heart\": 58347,\n  \"card-spade\": 58348,\n  \"cards-blank\": 58591,\n  \"cards\": 58349,\n  \"caret-circle-down\": 62253,\n  \"caret-circle-left\": 62254,\n  \"caret-circle-right\": 62256,\n  \"caret-circle-up\": 62257,\n  \"caret-down\": 61655,\n  \"caret-large-down\": 59436,\n  \"caret-large-left\": 59437,\n  \"caret-large-right\": 59438,\n  \"caret-large-up\": 59439,\n  \"caret-left\": 61657,\n  \"caret-right\": 61658,\n  \"caret-square-down\": 61776,\n  \"caret-square-left\": 61841,\n  \"caret-square-right\": 61778,\n  \"caret-square-up\": 61777,\n  \"caret-up\": 61656,\n  \"carpool\": 59036,\n  \"carriage-baby\": 63357,\n  \"carrot\": 63367,\n  \"cars\": 63579,\n  \"cart-arrow-down\": 61976,\n  \"cart-arrow-up\": 58350,\n  \"cart-circle-arrow-down\": 58351,\n  \"cart-circle-arrow-up\": 58352,\n  \"cart-circle-check\": 58353,\n  \"cart-circle-exclamation\": 58354,\n  \"cart-circle-plus\": 58355,\n  \"cart-circle-xmark\": 58356,\n  \"cart-flatbed-boxes\": 62581,\n  \"cart-flatbed-empty\": 62582,\n  \"cart-flatbed-suitcase\": 62877,\n  \"cart-flatbed\": 62580,\n  \"cart-minus\": 57563,\n  \"cart-plus\": 61975,\n  \"cart-shopping-fast\": 57564,\n  \"cart-shopping\": 61562,\n  \"cart-xmark\": 57565,\n  \"cash-register\": 63368,\n  \"cassette-betamax\": 63652,\n  \"cassette-tape\": 63659,\n  \"cassette-vhs\": 63724,\n  \"castle\": 57566,\n  \"cat-space\": 57345,\n  \"cat\": 63166,\n  \"cauldron\": 63167,\n  \"cctv\": 63660,\n  \"cedi-sign\": 57567,\n  \"cent-sign\": 58357,\n  \"certificate\": 61603,\n  \"chain-broken\": 61735,\n  \"chain-horizontal-slash\": 57804,\n  \"chain-horizontal\": 57803,\n  \"chain-slash\": 61735,\n  \"chain\": 61633,\n  \"chair-office\": 63169,\n  \"chair\": 63168,\n  \"chalkboard-teacher\": 62748,\n  \"chalkboard-user\": 62748,\n  \"chalkboard\": 62747,\n  \"champagne-glass\": 63390,\n  \"champagne-glasses\": 63391,\n  \"charging-station\": 62951,\n  \"chart-area\": 61950,\n  \"chart-bar\": 61568,\n  \"chart-bullet\": 57569,\n  \"chart-candlestick\": 57570,\n  \"chart-column\": 57571,\n  \"chart-diagram\": 59029,\n  \"chart-fft\": 59038,\n  \"chart-gantt\": 57572,\n  \"chart-kanban\": 58959,\n  \"chart-line-down\": 63053,\n  \"chart-line-up-down\": 58839,\n  \"chart-line-up\": 57573,\n  \"chart-line\": 61953,\n  \"chart-mixed-up-circle-currency\": 58840,\n  \"chart-mixed-up-circle-dollar\": 58841,\n  \"chart-mixed\": 63043,\n  \"chart-network\": 63370,\n  \"chart-pie-alt\": 63054,\n  \"chart-pie-simple-circle-currency\": 58884,\n  \"chart-pie-simple-circle-dollar\": 58885,\n  \"chart-pie-simple\": 63054,\n  \"chart-pie\": 61952,\n  \"chart-pyramid\": 57574,\n  \"chart-radar\": 57575,\n  \"chart-scatter-3d\": 57576,\n  \"chart-scatter-bubble\": 57577,\n  \"chart-scatter\": 63470,\n  \"chart-simple-horizontal\": 58484,\n  \"chart-simple\": 58483,\n  \"chart-sine\": 59037,\n  \"chart-tree-map\": 57578,\n  \"chart-user\": 63139,\n  \"chart-waterfall\": 57579,\n  \"check-circle\": 61528,\n  \"check-double\": 62816,\n  \"check-square\": 61770,\n  \"check-to-slot\": 63346,\n  \"check\": 61452,\n  \"cheese-swiss\": 63472,\n  \"cheese\": 63471,\n  \"cheeseburger\": 63473,\n  \"chemex\": 59440,\n  \"cherries\": 57580,\n  \"chess-bishop-alt\": 62523,\n  \"chess-bishop-piece\": 62523,\n  \"chess-bishop\": 62522,\n  \"chess-board\": 62524,\n  \"chess-clock-alt\": 62526,\n  \"chess-clock-flip\": 62526,\n  \"chess-clock\": 62525,\n  \"chess-king-alt\": 62528,\n  \"chess-king-piece\": 62528,\n  \"chess-king\": 62527,\n  \"chess-knight-alt\": 62530,\n  \"chess-knight-piece\": 62530,\n  \"chess-knight\": 62529,\n  \"chess-pawn-alt\": 62532,\n  \"chess-pawn-piece\": 62532,\n  \"chess-pawn\": 62531,\n  \"chess-queen-alt\": 62534,\n  \"chess-queen-piece\": 62534,\n  \"chess-queen\": 62533,\n  \"chess-rook-alt\": 62536,\n  \"chess-rook-piece\": 62536,\n  \"chess-rook\": 62535,\n  \"chess\": 62521,\n  \"chest-drawers\": 59523,\n  \"chestnut\": 58358,\n  \"chevron-circle-down\": 61754,\n  \"chevron-circle-left\": 61751,\n  \"chevron-circle-right\": 61752,\n  \"chevron-circle-up\": 61753,\n  \"chevron-double-down\": 62242,\n  \"chevron-double-left\": 62243,\n  \"chevron-double-right\": 62244,\n  \"chevron-double-up\": 62245,\n  \"chevron-down\": 61560,\n  \"chevron-left\": 61523,\n  \"chevron-right\": 61524,\n  \"chevron-square-down\": 62249,\n  \"chevron-square-left\": 62250,\n  \"chevron-square-right\": 62251,\n  \"chevron-square-up\": 62252,\n  \"chevron-up\": 61559,\n  \"chevrons-down\": 62242,\n  \"chevrons-left\": 62243,\n  \"chevrons-right\": 62244,\n  \"chevrons-up\": 62245,\n  \"chf-sign\": 58882,\n  \"child-combatant\": 58592,\n  \"child-dress\": 58780,\n  \"child-reaching\": 58781,\n  \"child-rifle\": 58592,\n  \"child\": 61870,\n  \"children\": 58593,\n  \"chimney\": 63371,\n  \"chocolate-bar\": 58344,\n  \"chopsticks\": 58359,\n  \"church\": 62749,\n  \"circle-0\": 57581,\n  \"circle-1\": 57582,\n  \"circle-2\": 57583,\n  \"circle-3\": 57584,\n  \"circle-4\": 57585,\n  \"circle-5\": 57586,\n  \"circle-6\": 57587,\n  \"circle-7\": 57588,\n  \"circle-8\": 57589,\n  \"circle-9\": 57590,\n  \"circle-a\": 57591,\n  \"circle-ampersand\": 57592,\n  \"circle-arrow-down-left\": 57593,\n  \"circle-arrow-down-right\": 57594,\n  \"circle-arrow-down\": 61611,\n  \"circle-arrow-left\": 61608,\n  \"circle-arrow-right\": 61609,\n  \"circle-arrow-up-left\": 57595,\n  \"circle-arrow-up-right\": 57596,\n  \"circle-arrow-up\": 61610,\n  \"circle-austral\": 59163,\n  \"circle-australian-dollar\": 59184,\n  \"circle-b\": 57597,\n  \"circle-baht\": 59181,\n  \"circle-bangladeshi-taka\": 59137,\n  \"circle-bitcoin\": 59191,\n  \"circle-bolt\": 57598,\n  \"circle-book-open\": 57599,\n  \"circle-bookmark\": 57600,\n  \"circle-brazilian-real\": 59115,\n  \"circle-c\": 57601,\n  \"circle-calendar\": 57602,\n  \"circle-camera\": 57603,\n  \"circle-caret-down\": 62253,\n  \"circle-caret-left\": 62254,\n  \"circle-caret-right\": 62256,\n  \"circle-caret-up\": 62257,\n  \"circle-cedi\": 59202,\n  \"circle-cent\": 59178,\n  \"circle-check\": 61528,\n  \"circle-chevron-down\": 61754,\n  \"circle-chevron-left\": 61751,\n  \"circle-chevron-right\": 61752,\n  \"circle-chevron-up\": 61753,\n  \"circle-chf\": 59180,\n  \"circle-colon\": 59132,\n  \"circle-cruzeiro\": 59170,\n  \"circle-currency\": 59118,\n  \"circle-d\": 57604,\n  \"circle-danish-krone\": 59206,\n  \"circle-dashed\": 57605,\n  \"circle-divide\": 57606,\n  \"circle-dollar-to-slot\": 62649,\n  \"circle-dollar\": 62184,\n  \"circle-dong\": 59171,\n  \"circle-dot\": 61842,\n  \"circle-down-left\": 57607,\n  \"circle-down-right\": 57608,\n  \"circle-down\": 62296,\n  \"circle-e\": 57609,\n  \"circle-ellipsis-vertical\": 57611,\n  \"circle-ellipsis\": 57610,\n  \"circle-envelope\": 57612,\n  \"circle-equals\": 59057,\n  \"circle-euro\": 58830,\n  \"circle-eurozone\": 59205,\n  \"circle-exclamation-check\": 57613,\n  \"circle-exclamation\": 61546,\n  \"circle-f\": 57614,\n  \"circle-florin\": 59108,\n  \"circle-franc\": 59169,\n  \"circle-g\": 57615,\n  \"circle-gf\": 59007,\n  \"circle-guarani\": 59195,\n  \"circle-h\": 62590,\n  \"circle-half-horizontal\": 59404,\n  \"circle-half-stroke-horizontal\": 59405,\n  \"circle-half-stroke\": 61506,\n  \"circle-half\": 57616,\n  \"circle-heart\": 62663,\n  \"circle-house\": 59080,\n  \"circle-hryvnia\": 59119,\n  \"circle-i\": 57617,\n  \"circle-indian-rupee\": 59188,\n  \"circle-info\": 61530,\n  \"circle-j\": 57618,\n  \"circle-k\": 57619,\n  \"circle-kip\": 59133,\n  \"circle-l\": 57620,\n  \"circle-lari\": 59165,\n  \"circle-left\": 62297,\n  \"circle-lira\": 59126,\n  \"circle-litecoin\": 59124,\n  \"circle-location-arrow\": 62978,\n  \"circle-m\": 57621,\n  \"circle-malaysian-ringgit\": 59129,\n  \"circle-manat\": 59131,\n  \"circle-microphone-lines\": 57623,\n  \"circle-microphone\": 57622,\n  \"circle-mill\": 59138,\n  \"circle-minus\": 61526,\n  \"circle-moon\": 59360,\n  \"circle-n\": 57624,\n  \"circle-naira\": 59209,\n  \"circle-nodes\": 58594,\n  \"circle-norwegian-krone\": 59192,\n  \"circle-notch\": 61902,\n  \"circle-o\": 57625,\n  \"circle-p\": 57626,\n  \"circle-parking\": 62997,\n  \"circle-pause\": 62091,\n  \"circle-peruvian-soles\": 59123,\n  \"circle-peseta\": 59201,\n  \"circle-peso\": 59135,\n  \"circle-phone-flip\": 57628,\n  \"circle-phone-hangup\": 57629,\n  \"circle-phone\": 57627,\n  \"circle-play\": 61764,\n  \"circle-plus\": 61525,\n  \"circle-polish-zloty\": 59136,\n  \"circle-q\": 57630,\n  \"circle-quarter-stroke\": 58835,\n  \"circle-quarter\": 57631,\n  \"circle-quarters\": 58360,\n  \"circle-question\": 61529,\n  \"circle-r\": 57632,\n  \"circle-radiation\": 63418,\n  \"circle-renminbi\": 59113,\n  \"circle-right\": 62298,\n  \"circle-ruble\": 59109,\n  \"circle-rupee\": 59156,\n  \"circle-rupiah\": 59142,\n  \"circle-s\": 57633,\n  \"circle-share-nodes\": 59099,\n  \"circle-shekel\": 59139,\n  \"circle-small\": 57634,\n  \"circle-sort-down\": 57393,\n  \"circle-sort-up\": 57394,\n  \"circle-sort\": 57392,\n  \"circle-star\": 57635,\n  \"circle-sterling\": 58831,\n  \"circle-stop\": 62093,\n  \"circle-swedish-krona\": 59203,\n  \"circle-t\": 57636,\n  \"circle-tenge\": 59173,\n  \"circle-three-quarters-stroke\": 58836,\n  \"circle-three-quarters\": 57637,\n  \"circle-trash\": 57638,\n  \"circle-tugrik\": 59153,\n  \"circle-turkish-lira\": 59193,\n  \"circle-u\": 57639,\n  \"circle-up-left\": 57640,\n  \"circle-up-right\": 57641,\n  \"circle-up\": 62299,\n  \"circle-user-circle-check\": 59295,\n  \"circle-user-circle-exclamation\": 59296,\n  \"circle-user-circle-minus\": 59297,\n  \"circle-user-circle-moon\": 59298,\n  \"circle-user-circle-plus\": 59299,\n  \"circle-user-circle-question\": 59300,\n  \"circle-user-circle-user\": 59301,\n  \"circle-user-circle-xmark\": 59302,\n  \"circle-user-clock\": 59303,\n  \"circle-user\": 62141,\n  \"circle-v\": 57642,\n  \"circle-video\": 57643,\n  \"circle-w\": 57644,\n  \"circle-waveform-lines\": 57645,\n  \"circle-wifi-circle-wifi\": 59006,\n  \"circle-wifi-group\": 59006,\n  \"circle-wifi\": 59005,\n  \"circle-won\": 59116,\n  \"circle-x\": 57646,\n  \"circle-xmark\": 61527,\n  \"circle-y\": 57647,\n  \"circle-yen\": 58832,\n  \"circle-z\": 57648,\n  \"circle\": 61713,\n  \"circleapore-dollar\": 59166,\n  \"circles-overlap-3\": 59041,\n  \"circles-overlap\": 58880,\n  \"citrus-slice\": 58101,\n  \"citrus\": 58100,\n  \"city\": 63055,\n  \"clapperboard-play\": 57650,\n  \"clapperboard\": 57649,\n  \"clarinet\": 63661,\n  \"claw-marks\": 63170,\n  \"clinic-medical\": 63474,\n  \"clipboard-check\": 62572,\n  \"clipboard-clock\": 59222,\n  \"clipboard-exclamation\": 59223,\n  \"clipboard-list-check\": 63287,\n  \"clipboard-list\": 62573,\n  \"clipboard-medical\": 57651,\n  \"clipboard-prescription\": 62952,\n  \"clipboard-question\": 58595,\n  \"clipboard-user\": 63475,\n  \"clipboard\": 62248,\n  \"clock-desk\": 57652,\n  \"clock-eight-thirty\": 58182,\n  \"clock-eight\": 58181,\n  \"clock-eleven-thirty\": 58184,\n  \"clock-eleven\": 58183,\n  \"clock-five-thirty\": 58186,\n  \"clock-five\": 58185,\n  \"clock-four-thirty\": 58187,\n  \"clock-four\": 61463,\n  \"clock-nine-thirty\": 58189,\n  \"clock-nine\": 58188,\n  \"clock-one-thirty\": 58191,\n  \"clock-one\": 58190,\n  \"clock-rotate-left\": 61914,\n  \"clock-seven-thirty\": 58193,\n  \"clock-seven\": 58192,\n  \"clock-six-thirty\": 58195,\n  \"clock-six\": 58194,\n  \"clock-ten-thirty\": 58197,\n  \"clock-ten\": 58196,\n  \"clock-three-thirty\": 58199,\n  \"clock-three\": 58198,\n  \"clock-twelve-thirty\": 58201,\n  \"clock-twelve\": 58200,\n  \"clock-two-thirty\": 58203,\n  \"clock-two\": 58202,\n  \"clock\": 61463,\n  \"clone-plus\": 59212,\n  \"clone\": 62029,\n  \"close\": 61453,\n  \"closed-captioning-slash\": 57653,\n  \"closed-captioning\": 61962,\n  \"clothes-hanger\": 57654,\n  \"cloud-arrow-down\": 61677,\n  \"cloud-arrow-up\": 61678,\n  \"cloud-binary\": 58881,\n  \"cloud-bolt-moon\": 63341,\n  \"cloud-bolt-sun\": 63342,\n  \"cloud-bolt\": 63340,\n  \"cloud-check\": 58204,\n  \"cloud-download-alt\": 61677,\n  \"cloud-download\": 61677,\n  \"cloud-drizzle\": 63288,\n  \"cloud-exclamation\": 58513,\n  \"cloud-fog\": 63310,\n  \"cloud-hail-mixed\": 63290,\n  \"cloud-hail\": 63289,\n  \"cloud-meatball\": 63291,\n  \"cloud-minus\": 58205,\n  \"cloud-moon-rain\": 63292,\n  \"cloud-moon\": 63171,\n  \"cloud-music\": 63662,\n  \"cloud-plus\": 58206,\n  \"cloud-question\": 58514,\n  \"cloud-rain\": 63293,\n  \"cloud-rainbow\": 63294,\n  \"cloud-showers-heavy\": 63296,\n  \"cloud-showers-water\": 58596,\n  \"cloud-showers\": 63295,\n  \"cloud-slash\": 57655,\n  \"cloud-sleet\": 63297,\n  \"cloud-snow\": 63298,\n  \"cloud-sun-rain\": 63299,\n  \"cloud-sun\": 63172,\n  \"cloud-upload-alt\": 61678,\n  \"cloud-upload\": 61678,\n  \"cloud-word\": 57656,\n  \"cloud-xmark\": 58207,\n  \"cloud\": 61634,\n  \"clouds-moon\": 63301,\n  \"clouds-sun\": 63302,\n  \"clouds\": 63300,\n  \"clover\": 57657,\n  \"club\": 62247,\n  \"cny\": 61783,\n  \"cocktail\": 62817,\n  \"coconut\": 58102,\n  \"code-branch\": 61734,\n  \"code-commit\": 62342,\n  \"code-compare\": 57658,\n  \"code-fork\": 57659,\n  \"code-merge\": 62343,\n  \"code-pull-request-closed\": 58361,\n  \"code-pull-request-draft\": 58362,\n  \"code-pull-request\": 57660,\n  \"code-simple\": 57661,\n  \"code\": 61729,\n  \"coffee-bean\": 57662,\n  \"coffee-beans\": 57663,\n  \"coffee-pot\": 57346,\n  \"coffee-togo\": 63173,\n  \"coffee\": 61684,\n  \"coffin-cross\": 57425,\n  \"coffin\": 63174,\n  \"cog\": 61459,\n  \"cogs\": 61573,\n  \"coin-blank\": 58363,\n  \"coin-front\": 58364,\n  \"coin-vertical\": 58365,\n  \"coin\": 63580,\n  \"coins\": 62750,\n  \"colon-sign\": 57664,\n  \"colon\": 58,\n  \"columns-3\": 58209,\n  \"columns\": 61659,\n  \"comet\": 57347,\n  \"comma\": 44,\n  \"command\": 57666,\n  \"comment-alt-arrow-down\": 57819,\n  \"comment-alt-arrow-up\": 57820,\n  \"comment-alt-captions\": 57822,\n  \"comment-alt-check\": 62626,\n  \"comment-alt-dollar\": 63056,\n  \"comment-alt-dots\": 62627,\n  \"comment-alt-edit\": 62628,\n  \"comment-alt-exclamation\": 62629,\n  \"comment-alt-image\": 57824,\n  \"comment-alt-lines\": 62630,\n  \"comment-alt-medical\": 63476,\n  \"comment-alt-minus\": 62631,\n  \"comment-alt-music\": 63663,\n  \"comment-alt-plus\": 62632,\n  \"comment-alt-quote\": 57828,\n  \"comment-alt-slash\": 62633,\n  \"comment-alt-smile\": 62634,\n  \"comment-alt-text\": 57830,\n  \"comment-alt-times\": 62635,\n  \"comment-alt\": 62074,\n  \"comment-arrow-down\": 57667,\n  \"comment-arrow-up-right\": 57669,\n  \"comment-arrow-up\": 57668,\n  \"comment-captions\": 57670,\n  \"comment-check\": 62636,\n  \"comment-code\": 57671,\n  \"comment-dollar\": 63057,\n  \"comment-dot\": 59100,\n  \"comment-dots\": 62637,\n  \"comment-edit\": 62638,\n  \"comment-exclamation\": 62639,\n  \"comment-heart\": 58824,\n  \"comment-image\": 57672,\n  \"comment-lines\": 62640,\n  \"comment-medical\": 63477,\n  \"comment-middle-alt\": 57825,\n  \"comment-middle-top-alt\": 57826,\n  \"comment-middle-top\": 57674,\n  \"comment-middle\": 57673,\n  \"comment-minus\": 62641,\n  \"comment-music\": 63664,\n  \"comment-nodes\": 59030,\n  \"comment-pen\": 62638,\n  \"comment-plus\": 62642,\n  \"comment-question\": 57675,\n  \"comment-quote\": 57676,\n  \"comment-slash\": 62643,\n  \"comment-smile\": 62644,\n  \"comment-sms\": 63437,\n  \"comment-text\": 57677,\n  \"comment-times\": 62645,\n  \"comment-waveform\": 59101,\n  \"comment-xmark\": 62645,\n  \"comment\": 61557,\n  \"commenting\": 62637,\n  \"comments-alt-dollar\": 63058,\n  \"comments-alt\": 62646,\n  \"comments-dollar\": 63059,\n  \"comments-question-check\": 57679,\n  \"comments-question\": 57678,\n  \"comments\": 61574,\n  \"compact-disc\": 62751,\n  \"compass-drafting\": 62824,\n  \"compass-slash\": 62953,\n  \"compass\": 61774,\n  \"compress-alt\": 62498,\n  \"compress-arrows-alt\": 63372,\n  \"compress-arrows\": 57509,\n  \"compress-wide\": 62246,\n  \"compress\": 61542,\n  \"computer-classic\": 63665,\n  \"computer-mouse-button-left\": 59341,\n  \"computer-mouse-button-right\": 59342,\n  \"computer-mouse-scrollwheel\": 63693,\n  \"computer-mouse\": 63692,\n  \"computer-speaker\": 63666,\n  \"computer\": 58597,\n  \"concierge-bell\": 62818,\n  \"construction\": 63581,\n  \"contact-book\": 62137,\n  \"contact-card\": 62139,\n  \"container-storage\": 62647,\n  \"conveyor-belt-alt\": 62575,\n  \"conveyor-belt-arm\": 58872,\n  \"conveyor-belt-boxes\": 62575,\n  \"conveyor-belt-empty\": 57680,\n  \"conveyor-belt\": 62574,\n  \"cookie-bite\": 62820,\n  \"cookie\": 62819,\n  \"copy\": 61637,\n  \"copyright\": 61945,\n  \"corn\": 63175,\n  \"corner\": 58366,\n  \"couch-small\": 62668,\n  \"couch\": 62648,\n  \"court-sport\": 58947,\n  \"cow\": 63176,\n  \"cowbell-circle-plus\": 63668,\n  \"cowbell-more\": 63668,\n  \"cowbell\": 63667,\n  \"crab\": 58367,\n  \"crate-apple\": 63153,\n  \"crate-empty\": 57681,\n  \"credit-card-alt\": 61597,\n  \"credit-card-blank\": 62345,\n  \"credit-card-front\": 62346,\n  \"credit-card\": 61597,\n  \"creemee\": 58368,\n  \"cricket-bat-ball\": 62537,\n  \"cricket\": 62537,\n  \"croissant\": 63478,\n  \"crop-alt\": 62821,\n  \"crop-simple\": 62821,\n  \"crop\": 61733,\n  \"cross\": 63060,\n  \"crosshairs-simple\": 58783,\n  \"crosshairs\": 61531,\n  \"crow\": 62752,\n  \"crown\": 62753,\n  \"crutch\": 63479,\n  \"crutches\": 63480,\n  \"cruzeiro-sign\": 57682,\n  \"crystal-ball\": 58210,\n  \"cube\": 61874,\n  \"cubes-stacked\": 58598,\n  \"cubes\": 61875,\n  \"cucumber\": 58369,\n  \"cup-straw-swoosh\": 58212,\n  \"cup-straw\": 58211,\n  \"cup-togo\": 63173,\n  \"cupcake\": 58370,\n  \"curling-stone\": 62538,\n  \"curling\": 62538,\n  \"currency-sign\": 59179,\n  \"custard\": 58371,\n  \"cut\": 61636,\n  \"cutlery\": 62183,\n  \"d\": 68,\n  \"dagger\": 63179,\n  \"danish-krone-sign\": 59168,\n  \"dash\": 58372,\n  \"dashboard\": 63012,\n  \"database\": 61888,\n  \"deaf\": 62116,\n  \"deafness\": 62116,\n  \"debug\": 63481,\n  \"dedent\": 61499,\n  \"deer-rudolph\": 63375,\n  \"deer\": 63374,\n  \"delete-left\": 62810,\n  \"delete-right\": 57684,\n  \"democrat\": 63303,\n  \"desk\": 59518,\n  \"desktop-alt\": 62352,\n  \"desktop-arrow-down\": 57685,\n  \"desktop-code\": 57701,\n  \"desktop-medical\": 57702,\n  \"desktop-slash\": 58106,\n  \"desktop\": 62352,\n  \"dewpoint\": 63304,\n  \"dharmachakra\": 63061,\n  \"diagnoses\": 62576,\n  \"diagram-cells\": 58485,\n  \"diagram-lean-canvas\": 57686,\n  \"diagram-nested\": 57687,\n  \"diagram-next\": 58486,\n  \"diagram-predecessor\": 58487,\n  \"diagram-previous\": 58488,\n  \"diagram-project\": 62786,\n  \"diagram-sankey\": 57688,\n  \"diagram-subtask\": 58489,\n  \"diagram-successor\": 58490,\n  \"diagram-venn\": 57690,\n  \"dial-high\": 57692,\n  \"dial-low\": 57693,\n  \"dial-max\": 57694,\n  \"dial-med-high\": 57691,\n  \"dial-med-low\": 57696,\n  \"dial-med\": 57695,\n  \"dial-min\": 57697,\n  \"dial-off\": 57698,\n  \"dial\": 57691,\n  \"dialpad\": 59340,\n  \"diamond-exclamation\": 58373,\n  \"diamond-half-stroke\": 58808,\n  \"diamond-half\": 58807,\n  \"diamond-turn-right\": 62955,\n  \"diamond\": 61977,\n  \"diamonds-4\": 59019,\n  \"dice-d10\": 63181,\n  \"dice-d12\": 63182,\n  \"dice-d20\": 63183,\n  \"dice-d4\": 63184,\n  \"dice-d6\": 63185,\n  \"dice-d8\": 63186,\n  \"dice-five\": 62755,\n  \"dice-four\": 62756,\n  \"dice-one\": 62757,\n  \"dice-six\": 62758,\n  \"dice-three\": 62759,\n  \"dice-two\": 62760,\n  \"dice\": 62754,\n  \"digging\": 63582,\n  \"digital-tachograph\": 62822,\n  \"dinosaur\": 58878,\n  \"diploma\": 62954,\n  \"direction-left-right\": 59070,\n  \"direction-up-down\": 59071,\n  \"directions\": 62955,\n  \"disc-drive\": 63669,\n  \"disease\": 63482,\n  \"display-arrow-down\": 57700,\n  \"display-chart-up-circle-currency\": 58853,\n  \"display-chart-up-circle-dollar\": 58854,\n  \"display-chart-up\": 58851,\n  \"display-code\": 57701,\n  \"display-medical\": 57702,\n  \"display-slash\": 58106,\n  \"display\": 57699,\n  \"distribute-spacing-horizontal\": 58213,\n  \"distribute-spacing-vertical\": 58214,\n  \"ditto\": 34,\n  \"divide\": 62761,\n  \"dizzy\": 62823,\n  \"dna\": 62577,\n  \"do-not-enter\": 62956,\n  \"dog-leashed\": 63188,\n  \"dog\": 63187,\n  \"dollar-circle\": 62184,\n  \"dollar-sign\": 36,\n  \"dollar-square\": 62185,\n  \"dollar\": 36,\n  \"dolly-box\": 62578,\n  \"dolly-empty\": 62579,\n  \"dolly-flatbed-alt\": 62581,\n  \"dolly-flatbed-empty\": 62582,\n  \"dolly-flatbed\": 62580,\n  \"dolly\": 62578,\n  \"dolphin\": 57704,\n  \"donate\": 62649,\n  \"dong-sign\": 57705,\n  \"donut\": 58374,\n  \"door-closed\": 62762,\n  \"door-open\": 62763,\n  \"dot-circle\": 61842,\n  \"dot\": 59345,\n  \"doughnut\": 58374,\n  \"dove\": 62650,\n  \"down-from-bracket\": 58987,\n  \"down-from-dotted-line\": 58375,\n  \"down-from-line\": 62281,\n  \"down-left-and-up-right-to-center\": 62498,\n  \"down-left\": 57706,\n  \"down-long-to-line\": 59072,\n  \"down-long\": 62217,\n  \"down-right\": 57707,\n  \"down-to-bracket\": 58599,\n  \"down-to-dotted-line\": 58376,\n  \"down-to-line\": 62282,\n  \"down-up\": 59073,\n  \"down\": 62292,\n  \"download\": 61465,\n  \"drafting-compass\": 62824,\n  \"dragon\": 63189,\n  \"draw-circle\": 62957,\n  \"draw-polygon\": 62958,\n  \"draw-square\": 62959,\n  \"dreidel\": 63378,\n  \"dress\": 59089,\n  \"dresser\": 59519,\n  \"drivers-license\": 62146,\n  \"drone-alt\": 63584,\n  \"drone-front\": 63584,\n  \"drone\": 63583,\n  \"droplet-degree\": 63304,\n  \"droplet-percent\": 63312,\n  \"droplet-plus\": 59392,\n  \"droplet-slash\": 62919,\n  \"droplet\": 61507,\n  \"drum-steelpan\": 62826,\n  \"drum\": 62825,\n  \"drumstick-bite\": 63191,\n  \"drumstick\": 63190,\n  \"dryer-alt\": 63586,\n  \"dryer-heat\": 63586,\n  \"dryer\": 63585,\n  \"duck\": 63192,\n  \"dumbbell\": 62539,\n  \"dumpster-fire\": 63380,\n  \"dumpster\": 63379,\n  \"dungeon\": 63193,\n  \"e\": 69,\n  \"ear-circle-checkmark\": 59227,\n  \"ear-deaf\": 62116,\n  \"ear-listen\": 62114,\n  \"ear-muffs\": 63381,\n  \"ear-triangle-exclamation\": 59228,\n  \"ear-waveform\": 59229,\n  \"ear\": 62960,\n  \"earth-africa\": 62844,\n  \"earth-america\": 62845,\n  \"earth-americas\": 62845,\n  \"earth-asia\": 62846,\n  \"earth-europe\": 63394,\n  \"earth-oceania\": 58491,\n  \"earth\": 62845,\n  \"eclipse-alt\": 63306,\n  \"eclipse\": 63305,\n  \"edit\": 61508,\n  \"egg-fried\": 63484,\n  \"egg\": 63483,\n  \"eggplant\": 57708,\n  \"eject\": 61522,\n  \"elephant\": 63194,\n  \"elevator\": 57709,\n  \"ellipsis-h-alt\": 62363,\n  \"ellipsis-h\": 61761,\n  \"ellipsis-stroke-vertical\": 62364,\n  \"ellipsis-stroke\": 62363,\n  \"ellipsis-v-alt\": 62364,\n  \"ellipsis-v\": 61762,\n  \"ellipsis-vertical\": 61762,\n  \"ellipsis\": 61761,\n  \"empty-set\": 63062,\n  \"engine-exclamation\": 62962,\n  \"engine-warning\": 62962,\n  \"engine\": 57710,\n  \"envelope-badge\": 57711,\n  \"envelope-certificate\": 59433,\n  \"envelope-circle-check\": 58600,\n  \"envelope-circle-user\": 59102,\n  \"envelope-circle\": 57612,\n  \"envelope-dot\": 57711,\n  \"envelope-open-dollar\": 63063,\n  \"envelope-open-text\": 63064,\n  \"envelope-open\": 62134,\n  \"envelope-ribbon\": 59433,\n  \"envelope-square\": 61849,\n  \"envelope\": 61664,\n  \"envelopes-bulk\": 63092,\n  \"envelopes\": 57712,\n  \"equals\": 61,\n  \"eraser\": 61741,\n  \"escalator\": 57713,\n  \"ethernet\": 63382,\n  \"eur\": 61779,\n  \"euro-sign\": 61779,\n  \"euro\": 61779,\n  \"eurozone-sign\": 59200,\n  \"excavator\": 58966,\n  \"exchange-alt\": 62306,\n  \"exchange\": 61676,\n  \"exclamation-circle\": 61546,\n  \"exclamation-square\": 62241,\n  \"exclamation-triangle\": 61553,\n  \"exclamation\": 33,\n  \"expand-alt\": 62500,\n  \"expand-arrows-alt\": 62238,\n  \"expand-arrows\": 62237,\n  \"expand-wide\": 62240,\n  \"expand\": 61541,\n  \"exploding-head\": 58110,\n  \"explosion\": 58601,\n  \"external-link-alt\": 62301,\n  \"external-link-square-alt\": 62304,\n  \"external-link-square\": 61772,\n  \"external-link\": 61582,\n  \"eye-closed\": 59451,\n  \"eye-dropper-empty\": 61947,\n  \"eye-dropper-full\": 57714,\n  \"eye-dropper-half\": 57715,\n  \"eye-dropper\": 61947,\n  \"eye-evil\": 63195,\n  \"eye-low-vision\": 62120,\n  \"eye-slash\": 61552,\n  \"eye\": 61550,\n  \"eyedropper\": 61947,\n  \"eyes\": 58215,\n  \"f\": 70,\n  \"face-angry-horns\": 58216,\n  \"face-angry\": 62806,\n  \"face-anguished\": 58217,\n  \"face-anxious-sweat\": 58218,\n  \"face-astonished\": 58219,\n  \"face-awesome\": 58377,\n  \"face-beam-hand-over-mouth\": 58492,\n  \"face-clouds\": 58493,\n  \"face-confounded\": 58220,\n  \"face-confused\": 58221,\n  \"face-cowboy-hat\": 58222,\n  \"face-diagonal-mouth\": 58494,\n  \"face-disappointed\": 58223,\n  \"face-disguise\": 58224,\n  \"face-dizzy\": 62823,\n  \"face-dotted\": 58495,\n  \"face-downcast-sweat\": 58225,\n  \"face-drooling\": 58226,\n  \"face-exhaling\": 58496,\n  \"face-explode\": 58110,\n  \"face-expressionless\": 58227,\n  \"face-eyes-xmarks\": 58228,\n  \"face-fearful\": 58229,\n  \"face-flushed\": 62841,\n  \"face-frown-open\": 62842,\n  \"face-frown-slight\": 58230,\n  \"face-frown\": 61721,\n  \"face-glasses\": 58231,\n  \"face-grimace\": 62847,\n  \"face-grin-beam-sweat\": 62851,\n  \"face-grin-beam\": 62850,\n  \"face-grin-hearts\": 62852,\n  \"face-grin-squint-tears\": 62854,\n  \"face-grin-squint\": 62853,\n  \"face-grin-stars\": 62855,\n  \"face-grin-tears\": 62856,\n  \"face-grin-tongue-squint\": 62858,\n  \"face-grin-tongue-wink\": 62859,\n  \"face-grin-tongue\": 62857,\n  \"face-grin-wide\": 62849,\n  \"face-grin-wink\": 62860,\n  \"face-grin\": 62848,\n  \"face-hand-over-mouth\": 58232,\n  \"face-hand-peeking\": 58497,\n  \"face-hand-yawn\": 58233,\n  \"face-head-bandage\": 58234,\n  \"face-holding-back-tears\": 58498,\n  \"face-hushed\": 58235,\n  \"face-icicles\": 58236,\n  \"face-kiss-beam\": 62871,\n  \"face-kiss-closed-eyes\": 58237,\n  \"face-kiss-wink-heart\": 62872,\n  \"face-kiss\": 62870,\n  \"face-laugh-beam\": 62874,\n  \"face-laugh-squint\": 62875,\n  \"face-laugh-wink\": 62876,\n  \"face-laugh\": 62873,\n  \"face-lying\": 58238,\n  \"face-mask\": 58239,\n  \"face-meh-blank\": 62884,\n  \"face-meh\": 61722,\n  \"face-melting\": 58499,\n  \"face-monocle\": 58240,\n  \"face-nauseated\": 58241,\n  \"face-nose-steam\": 58242,\n  \"face-party\": 58243,\n  \"face-pensive\": 58244,\n  \"face-persevering\": 58245,\n  \"face-pleading\": 58246,\n  \"face-pouting\": 58247,\n  \"face-raised-eyebrow\": 58248,\n  \"face-relieved\": 58249,\n  \"face-rolling-eyes\": 62885,\n  \"face-sad-cry\": 62899,\n  \"face-sad-sweat\": 58250,\n  \"face-sad-tear\": 62900,\n  \"face-saluting\": 58500,\n  \"face-scream\": 58251,\n  \"face-shaking-horizontal\": 59293,\n  \"face-shaking-vertical\": 59294,\n  \"face-shaking\": 59292,\n  \"face-shush\": 58252,\n  \"face-sleeping\": 58253,\n  \"face-sleepy\": 58254,\n  \"face-smile-beam\": 62904,\n  \"face-smile-halo\": 58255,\n  \"face-smile-hearts\": 58256,\n  \"face-smile-horns\": 58257,\n  \"face-smile-plus\": 62905,\n  \"face-smile-relaxed\": 58258,\n  \"face-smile-tear\": 58259,\n  \"face-smile-tongue\": 58260,\n  \"face-smile-upside-down\": 58261,\n  \"face-smile-wink\": 62682,\n  \"face-smile\": 61720,\n  \"face-smiling-hands\": 58262,\n  \"face-smirking\": 58263,\n  \"face-spiral-eyes\": 58501,\n  \"face-sunglasses\": 58264,\n  \"face-surprise\": 62914,\n  \"face-swear\": 58265,\n  \"face-thermometer\": 58266,\n  \"face-thinking\": 58267,\n  \"face-tired\": 62920,\n  \"face-tissue\": 58268,\n  \"face-tongue-money\": 58269,\n  \"face-tongue-sweat\": 58270,\n  \"face-unamused\": 58271,\n  \"face-viewfinder\": 58111,\n  \"face-vomit\": 58272,\n  \"face-weary\": 58273,\n  \"face-woozy\": 58274,\n  \"face-worried\": 58275,\n  \"face-zany\": 58276,\n  \"face-zipper\": 58277,\n  \"falafel\": 58378,\n  \"family-dress\": 58113,\n  \"family-pants\": 58114,\n  \"family\": 58112,\n  \"fan-table\": 57348,\n  \"fan\": 63587,\n  \"farm\": 63588,\n  \"fast-backward\": 61513,\n  \"fast-forward\": 61520,\n  \"faucet-drip\": 57350,\n  \"faucet\": 57349,\n  \"fax\": 61868,\n  \"feather-alt\": 62827,\n  \"feather-pointed\": 62827,\n  \"feather\": 62765,\n  \"feed\": 61598,\n  \"female\": 61826,\n  \"fence\": 58115,\n  \"ferris-wheel\": 57716,\n  \"ferry\": 58602,\n  \"field-hockey-stick-ball\": 62540,\n  \"field-hockey\": 62540,\n  \"fighter-jet\": 61691,\n  \"file-aiff\": 59387,\n  \"file-alt\": 61788,\n  \"file-archive\": 61894,\n  \"file-arrow-down\": 62829,\n  \"file-arrow-up\": 62836,\n  \"file-audio\": 61895,\n  \"file-award\": 62963,\n  \"file-ban\": 59224,\n  \"file-binary\": 57717,\n  \"file-brackets-curly\": 59396,\n  \"file-cad\": 58994,\n  \"file-caret-down\": 58409,\n  \"file-caret-up\": 58410,\n  \"file-certificate\": 62963,\n  \"file-chart-column\": 63065,\n  \"file-chart-line\": 63065,\n  \"file-chart-pie\": 63066,\n  \"file-check\": 62230,\n  \"file-circle-check\": 58784,\n  \"file-circle-exclamation\": 58603,\n  \"file-circle-info\": 58515,\n  \"file-circle-minus\": 58605,\n  \"file-circle-plus\": 58516,\n  \"file-circle-question\": 58607,\n  \"file-circle-xmark\": 58785,\n  \"file-clipboard\": 61674,\n  \"file-code\": 61897,\n  \"file-contract\": 62828,\n  \"file-css\": 59452,\n  \"file-csv\": 63197,\n  \"file-dashed-line\": 63607,\n  \"file-doc\": 58861,\n  \"file-download\": 62829,\n  \"file-edit\": 62236,\n  \"file-eps\": 58948,\n  \"file-excel\": 61891,\n  \"file-exclamation\": 62234,\n  \"file-export\": 62830,\n  \"file-fragment\": 59031,\n  \"file-gif\": 58949,\n  \"file-half-dashed\": 59032,\n  \"file-heart\": 57718,\n  \"file-html\": 59453,\n  \"file-icns\": 59457,\n  \"file-image\": 61893,\n  \"file-import\": 62831,\n  \"file-invoice-dollar\": 62833,\n  \"file-invoice\": 62832,\n  \"file-jpg\": 58950,\n  \"file-js\": 59454,\n  \"file-lines\": 61788,\n  \"file-lock\": 58278,\n  \"file-magnifying-glass\": 63589,\n  \"file-medical-alt\": 62584,\n  \"file-medical\": 62583,\n  \"file-midi\": 59397,\n  \"file-minus\": 62232,\n  \"file-mov\": 58951,\n  \"file-mp3\": 58952,\n  \"file-mp4\": 58953,\n  \"file-music\": 63670,\n  \"file-odf\": 59388,\n  \"file-pdf\": 61889,\n  \"file-pen\": 62236,\n  \"file-plus-minus\": 57719,\n  \"file-plus\": 62233,\n  \"file-png\": 58982,\n  \"file-powerpoint\": 61892,\n  \"file-ppt\": 58954,\n  \"file-prescription\": 62834,\n  \"file-search\": 63589,\n  \"file-shield\": 58608,\n  \"file-signature\": 62835,\n  \"file-slash\": 58279,\n  \"file-spreadsheet\": 63067,\n  \"file-svg\": 58955,\n  \"file-tex\": 59389,\n  \"file-text\": 61788,\n  \"file-times\": 62231,\n  \"file-upload\": 62836,\n  \"file-user\": 63068,\n  \"file-vector\": 58956,\n  \"file-video\": 61896,\n  \"file-wav\": 59390,\n  \"file-waveform\": 62584,\n  \"file-word\": 61890,\n  \"file-xls\": 58957,\n  \"file-xmark\": 62231,\n  \"file-xml\": 58964,\n  \"file-zip\": 58862,\n  \"file-zipper\": 61894,\n  \"file\": 61787,\n  \"files-medical\": 63485,\n  \"files\": 57720,\n  \"fill-drip\": 62838,\n  \"fill\": 62837,\n  \"film-alt\": 61448,\n  \"film-canister\": 63671,\n  \"film-cannister\": 63671,\n  \"film-music\": 59241,\n  \"film-simple\": 61448,\n  \"film-slash\": 57721,\n  \"film-stack\": 59243,\n  \"film\": 61448,\n  \"films\": 57722,\n  \"filter-circle-dollar\": 63074,\n  \"filter-circle-xmark\": 57723,\n  \"filter-list\": 57724,\n  \"filter-slash\": 57725,\n  \"filter\": 61616,\n  \"filters\": 57726,\n  \"fingerprint\": 62839,\n  \"fire-alt\": 63460,\n  \"fire-burner\": 58609,\n  \"fire-extinguisher\": 61748,\n  \"fire-flame-curved\": 63460,\n  \"fire-flame-simple\": 62570,\n  \"fire-flame\": 63199,\n  \"fire-hydrant\": 57727,\n  \"fire-smoke\": 63307,\n  \"fire\": 61549,\n  \"fireplace\": 63386,\n  \"firewall\": 58332,\n  \"first-aid\": 62585,\n  \"fish-bones\": 58116,\n  \"fish-cooked\": 63486,\n  \"fish-fins\": 58610,\n  \"fish\": 62840,\n  \"fishing-rod\": 58280,\n  \"fist-raised\": 63198,\n  \"flag-alt\": 63308,\n  \"flag-checkered\": 61726,\n  \"flag-pennant\": 62550,\n  \"flag-swallowtail\": 63308,\n  \"flag-usa\": 63309,\n  \"flag\": 61476,\n  \"flame\": 63199,\n  \"flashlight\": 63672,\n  \"flask-gear\": 58865,\n  \"flask-poison\": 63200,\n  \"flask-potion\": 63201,\n  \"flask-round-poison\": 63200,\n  \"flask-round-potion\": 63201,\n  \"flask-vial\": 58611,\n  \"flask\": 61635,\n  \"flatbread-stuffed\": 58380,\n  \"flatbread\": 58379,\n  \"floppy-disk-circle-arrow-right\": 57728,\n  \"floppy-disk-circle-xmark\": 57729,\n  \"floppy-disk-pen\": 57730,\n  \"floppy-disk-times\": 57729,\n  \"floppy-disk\": 61639,\n  \"floppy-disks\": 57731,\n  \"florin-sign\": 57732,\n  \"flower-daffodil\": 63488,\n  \"flower-tulip\": 63489,\n  \"flower\": 63487,\n  \"flushed\": 62841,\n  \"flute\": 63673,\n  \"flux-capacitor\": 63674,\n  \"flying-disc\": 58281,\n  \"fog\": 63310,\n  \"folder-arrow-down\": 57427,\n  \"folder-arrow-left\": 59346,\n  \"folder-arrow-right\": 59347,\n  \"folder-arrow-up\": 57428,\n  \"folder-blank\": 61563,\n  \"folder-bookmark\": 57734,\n  \"folder-check\": 58958,\n  \"folder-closed\": 57733,\n  \"folder-cog\": 57735,\n  \"folder-download\": 57427,\n  \"folder-gear\": 57735,\n  \"folder-grid\": 57736,\n  \"folder-heart\": 57737,\n  \"folder-image\": 57738,\n  \"folder-magnifying-glass\": 57739,\n  \"folder-medical\": 57740,\n  \"folder-minus\": 63069,\n  \"folder-music\": 57741,\n  \"folder-open\": 61564,\n  \"folder-plus\": 63070,\n  \"folder-search\": 57739,\n  \"folder-times\": 63071,\n  \"folder-tree\": 63490,\n  \"folder-upload\": 57428,\n  \"folder-user\": 57742,\n  \"folder-xmark\": 63071,\n  \"folder\": 61563,\n  \"folders\": 63072,\n  \"fondue-pot\": 58381,\n  \"font-awesome-flag\": 62132,\n  \"font-awesome-logo-full\": 62132,\n  \"font-awesome\": 62132,\n  \"font-case\": 63590,\n  \"font\": 61489,\n  \"foot-wing\": 59444,\n  \"football-ball\": 62542,\n  \"football-helmet\": 62543,\n  \"football\": 62542,\n  \"fork-knife\": 62182,\n  \"fork\": 62179,\n  \"forklift\": 62586,\n  \"fort\": 58502,\n  \"forward-fast\": 61520,\n  \"forward-step\": 61521,\n  \"forward\": 61518,\n  \"fragile\": 62651,\n  \"frame\": 58517,\n  \"franc-sign\": 57743,\n  \"french-fries\": 63491,\n  \"frog\": 62766,\n  \"frosty-head\": 63387,\n  \"frown-open\": 62842,\n  \"frown\": 61721,\n  \"function\": 63073,\n  \"funnel-dollar\": 63074,\n  \"futbol-ball\": 61923,\n  \"futbol\": 61923,\n  \"g\": 71,\n  \"galaxy\": 57352,\n  \"gallery-thumbnails\": 58282,\n  \"game-board-alt\": 63592,\n  \"game-board-simple\": 63592,\n  \"game-board\": 63591,\n  \"game-console-handheld-crank\": 58809,\n  \"game-console-handheld\": 63675,\n  \"gamepad-alt\": 58786,\n  \"gamepad-modern\": 58786,\n  \"gamepad\": 61723,\n  \"garage-car\": 57354,\n  \"garage-empty\": 59081,\n  \"garage-open\": 57355,\n  \"garage\": 57353,\n  \"garlic\": 58382,\n  \"gas-pump-left\": 59256,\n  \"gas-pump-right\": 59257,\n  \"gas-pump-slash\": 62964,\n  \"gas-pump\": 62767,\n  \"gauge-circle-bolt\": 58518,\n  \"gauge-circle-minus\": 58519,\n  \"gauge-circle-plus\": 58520,\n  \"gauge-high\": 63013,\n  \"gauge-low\": 63015,\n  \"gauge-max\": 63014,\n  \"gauge-med\": 63012,\n  \"gauge-min\": 63016,\n  \"gauge-simple-high\": 63018,\n  \"gauge-simple-low\": 63020,\n  \"gauge-simple-max\": 63019,\n  \"gauge-simple-med\": 63017,\n  \"gauge-simple-min\": 63021,\n  \"gauge-simple\": 63017,\n  \"gauge\": 63012,\n  \"gave-dandy\": 58377,\n  \"gavel\": 61667,\n  \"gbp\": 61780,\n  \"gear-api\": 59556,\n  \"gear-code\": 58856,\n  \"gear-complex-api\": 59557,\n  \"gear-complex-code\": 58859,\n  \"gear-complex\": 58857,\n  \"gear\": 61459,\n  \"gears\": 61573,\n  \"gem\": 62373,\n  \"gemini\": 59465,\n  \"genderless\": 61997,\n  \"ghost\": 63202,\n  \"gif\": 57744,\n  \"gift-card\": 63075,\n  \"gift\": 61547,\n  \"gifts\": 63388,\n  \"gingerbread-man\": 63389,\n  \"glass-champagne\": 63390,\n  \"glass-cheers\": 63391,\n  \"glass-citrus\": 63593,\n  \"glass-empty\": 57745,\n  \"glass-half-empty\": 57746,\n  \"glass-half-full\": 57746,\n  \"glass-half\": 57746,\n  \"glass-martini-alt\": 62843,\n  \"glass-martini\": 61440,\n  \"glass-water-droplet\": 58613,\n  \"glass-water\": 58612,\n  \"glass-whiskey-rocks\": 63393,\n  \"glass-whiskey\": 63392,\n  \"glass\": 63492,\n  \"glasses-alt\": 62965,\n  \"glasses-round\": 62965,\n  \"glasses\": 62768,\n  \"globe-africa\": 62844,\n  \"globe-americas\": 62845,\n  \"globe-asia\": 62846,\n  \"globe-europe\": 63394,\n  \"globe-oceania\": 58491,\n  \"globe-pointer\": 58894,\n  \"globe-snow\": 63395,\n  \"globe-stand\": 62966,\n  \"globe-wifi\": 59013,\n  \"globe-www\": 59558,\n  \"globe\": 61612,\n  \"glove-boxing\": 62520,\n  \"goal-net\": 58283,\n  \"golf-ball-tee\": 62544,\n  \"golf-ball\": 62544,\n  \"golf-club\": 62545,\n  \"golf-flag-hole\": 58284,\n  \"gopuram\": 63076,\n  \"gpu\": 59459,\n  \"graduation-cap\": 61853,\n  \"gramophone\": 63677,\n  \"grapes\": 58118,\n  \"grate-droplet\": 57748,\n  \"grate\": 57747,\n  \"greater-than-equal\": 62770,\n  \"greater-than\": 62,\n  \"grid-2-minus\": 59050,\n  \"grid-2-plus\": 57751,\n  \"grid-2\": 57750,\n  \"grid-3\": 57749,\n  \"grid-4\": 57752,\n  \"grid-5\": 57753,\n  \"grid-dividers\": 58285,\n  \"grid-horizontal\": 62861,\n  \"grid-round-2-minus\": 59051,\n  \"grid-round-2-plus\": 58844,\n  \"grid-round-2\": 58843,\n  \"grid-round-4\": 58845,\n  \"grid-round-5\": 58846,\n  \"grid-round\": 58842,\n  \"grid-vertical\": 62862,\n  \"grid\": 57749,\n  \"grill-fire\": 58788,\n  \"grill-hot\": 58789,\n  \"grill\": 58787,\n  \"grimace\": 62847,\n  \"grin-alt\": 62849,\n  \"grin-beam-sweat\": 62851,\n  \"grin-beam\": 62850,\n  \"grin-hearts\": 62852,\n  \"grin-squint-tears\": 62854,\n  \"grin-squint\": 62853,\n  \"grin-stars\": 62855,\n  \"grin-tears\": 62856,\n  \"grin-tongue-squint\": 62858,\n  \"grin-tongue-wink\": 62859,\n  \"grin-tongue\": 62857,\n  \"grin-wink\": 62860,\n  \"grin\": 62848,\n  \"grip-dots-vertical\": 58385,\n  \"grip-dots\": 58384,\n  \"grip-horizontal\": 62861,\n  \"grip-lines-vertical\": 63397,\n  \"grip-lines\": 63396,\n  \"grip-vertical\": 62862,\n  \"grip\": 62861,\n  \"group-arrows-rotate\": 58614,\n  \"guarani-sign\": 57754,\n  \"guitar-electric\": 63678,\n  \"guitar\": 63398,\n  \"guitars\": 63679,\n  \"gun-slash\": 57756,\n  \"gun-squirt\": 57757,\n  \"gun\": 57755,\n  \"h-square\": 61693,\n  \"h\": 72,\n  \"h1\": 62227,\n  \"h2\": 62228,\n  \"h3\": 62229,\n  \"h4\": 63594,\n  \"h5\": 58386,\n  \"h6\": 58387,\n  \"hamburger\": 63493,\n  \"hammer-brush\": 58912,\n  \"hammer-crash\": 58388,\n  \"hammer-war\": 63204,\n  \"hammer\": 63203,\n  \"hamsa\": 63077,\n  \"hand-back-fist\": 62037,\n  \"hand-back-point-down\": 57758,\n  \"hand-back-point-left\": 57759,\n  \"hand-back-point-ribbon\": 57760,\n  \"hand-back-point-right\": 57761,\n  \"hand-back-point-up\": 57762,\n  \"hand-dots\": 62561,\n  \"hand-fingers-crossed\": 57763,\n  \"hand-fist\": 63198,\n  \"hand-heart\": 62652,\n  \"hand-holding-box\": 62587,\n  \"hand-holding-circle-dollar\": 58913,\n  \"hand-holding-dollar\": 62656,\n  \"hand-holding-droplet\": 62657,\n  \"hand-holding-hand\": 58615,\n  \"hand-holding-heart\": 62654,\n  \"hand-holding-magic\": 63205,\n  \"hand-holding-medical\": 57436,\n  \"hand-holding-seedling\": 62655,\n  \"hand-holding-skull\": 57764,\n  \"hand-holding-star\": 59393,\n  \"hand-holding-usd\": 62656,\n  \"hand-holding-water\": 62657,\n  \"hand-holding\": 62653,\n  \"hand-horns\": 57769,\n  \"hand-lizard\": 62040,\n  \"hand-love\": 57765,\n  \"hand-middle-finger\": 63494,\n  \"hand-paper\": 62038,\n  \"hand-peace\": 62043,\n  \"hand-point-down\": 61607,\n  \"hand-point-left\": 61605,\n  \"hand-point-ribbon\": 57766,\n  \"hand-point-right\": 61604,\n  \"hand-point-up\": 61606,\n  \"hand-pointer\": 62042,\n  \"hand-receiving\": 62588,\n  \"hand-rock\": 62037,\n  \"hand-scissors\": 62039,\n  \"hand-shaka\": 59441,\n  \"hand-sparkles\": 57437,\n  \"hand-spock\": 62041,\n  \"hand-wave\": 57767,\n  \"hand\": 62038,\n  \"handcuffs\": 58616,\n  \"hands-american-sign-language-interpreting\": 62115,\n  \"hands-asl-interpreting\": 62115,\n  \"hands-bound\": 58617,\n  \"hands-bubbles\": 57438,\n  \"hands-clapping\": 57768,\n  \"hands-heart\": 62659,\n  \"hands-helping\": 62660,\n  \"hands-holding-child\": 58618,\n  \"hands-holding-circle\": 58619,\n  \"hands-holding-diamond\": 62588,\n  \"hands-holding-dollar\": 62661,\n  \"hands-holding-heart\": 62659,\n  \"hands-holding\": 62658,\n  \"hands-praying\": 63108,\n  \"hands-usd\": 62661,\n  \"hands-wash\": 57438,\n  \"hands\": 62119,\n  \"handshake-alt-slash\": 57440,\n  \"handshake-alt\": 62133,\n  \"handshake-angle\": 62660,\n  \"handshake-simple-slash\": 57440,\n  \"handshake-simple\": 62133,\n  \"handshake-slash\": 57440,\n  \"handshake\": 62133,\n  \"hanukiah\": 63206,\n  \"hard-drive\": 61600,\n  \"hard-hat\": 63495,\n  \"hard-of-hearing\": 62116,\n  \"hashtag-lock\": 58389,\n  \"hashtag\": 35,\n  \"hat-beach\": 58886,\n  \"hat-chef\": 63595,\n  \"hat-cowboy-side\": 63681,\n  \"hat-cowboy\": 63680,\n  \"hat-hard\": 63495,\n  \"hat-santa\": 63399,\n  \"hat-winter\": 63400,\n  \"hat-witch\": 63207,\n  \"hat-wizard\": 63208,\n  \"haykal\": 63078,\n  \"hdd\": 61600,\n  \"head-side-brain\": 63496,\n  \"head-side-circuit\": 59230,\n  \"head-side-cough-slash\": 57442,\n  \"head-side-cough\": 57441,\n  \"head-side-gear\": 58897,\n  \"head-side-goggles\": 63210,\n  \"head-side-headphones\": 63682,\n  \"head-side-heart\": 57770,\n  \"head-side-mask\": 57443,\n  \"head-side-medical\": 63497,\n  \"head-side-speak\": 59231,\n  \"head-side-virus\": 57444,\n  \"head-side\": 63209,\n  \"head-vr\": 63210,\n  \"header\": 61916,\n  \"heading\": 61916,\n  \"headphones-alt\": 61477,\n  \"headphones-simple\": 61477,\n  \"headphones-slash\": 59260,\n  \"headphones\": 61477,\n  \"headset\": 62864,\n  \"heart-broken\": 63401,\n  \"heart-circle-bolt\": 58620,\n  \"heart-circle-check\": 58621,\n  \"heart-circle-exclamation\": 58622,\n  \"heart-circle-minus\": 58623,\n  \"heart-circle-plus\": 58624,\n  \"heart-circle-xmark\": 58625,\n  \"heart-circle\": 62663,\n  \"heart-crack\": 63401,\n  \"heart-half-alt\": 57772,\n  \"heart-half-stroke\": 57772,\n  \"heart-half\": 57771,\n  \"heart-music-camera-bolt\": 63597,\n  \"heart-pulse\": 61982,\n  \"heart-rate\": 62968,\n  \"heart-slash\": 59278,\n  \"heart-square\": 62664,\n  \"heart\": 61444,\n  \"heartbeat\": 61982,\n  \"hearts\": 59279,\n  \"heat\": 57356,\n  \"helicopter-symbol\": 58626,\n  \"helicopter\": 62771,\n  \"helmet-battle\": 63211,\n  \"helmet-safety\": 63495,\n  \"helmet-un\": 58627,\n  \"heptagon\": 59424,\n  \"hexagon-check\": 58390,\n  \"hexagon-divide\": 57773,\n  \"hexagon-equals\": 59058,\n  \"hexagon-exclamation\": 58391,\n  \"hexagon-image\": 58628,\n  \"hexagon-minus\": 62215,\n  \"hexagon-nodes-bolt\": 59034,\n  \"hexagon-nodes\": 59033,\n  \"hexagon-plus\": 62208,\n  \"hexagon-vertical-nft-slanted\": 58629,\n  \"hexagon-vertical-nft\": 58629,\n  \"hexagon-xmark\": 62190,\n  \"hexagon\": 62226,\n  \"high-definition\": 57774,\n  \"highlighter-line\": 57775,\n  \"highlighter\": 62865,\n  \"hiking\": 63212,\n  \"hill-avalanche\": 58631,\n  \"hill-rockslide\": 58632,\n  \"hippo\": 63213,\n  \"history\": 61914,\n  \"hockey-mask\": 63214,\n  \"hockey-puck\": 62547,\n  \"hockey-stick-puck\": 58286,\n  \"hockey-stick\": 59366,\n  \"hockey-sticks\": 62548,\n  \"holly-berry\": 63402,\n  \"home-alt\": 61461,\n  \"home-blank\": 58503,\n  \"home-heart\": 62665,\n  \"home-lg-alt\": 61461,\n  \"home-lg\": 58287,\n  \"home-user\": 57776,\n  \"home\": 61461,\n  \"honey-pot\": 58392,\n  \"hood-cloak\": 63215,\n  \"horizontal-rule\": 63596,\n  \"horse-head\": 63403,\n  \"horse-saddle\": 63683,\n  \"horse\": 63216,\n  \"horseshoe\": 59418,\n  \"hose-reel\": 58394,\n  \"hose\": 58393,\n  \"hospital-alt\": 61688,\n  \"hospital-symbol\": 62590,\n  \"hospital-user\": 63501,\n  \"hospital-wide\": 61688,\n  \"hospital\": 61688,\n  \"hospitals\": 63502,\n  \"hot-tub-person\": 62867,\n  \"hot-tub\": 62867,\n  \"hotdog\": 63503,\n  \"hotel\": 62868,\n  \"hourglass-1\": 62033,\n  \"hourglass-2\": 62034,\n  \"hourglass-3\": 62035,\n  \"hourglass-clock\": 58395,\n  \"hourglass-empty\": 62036,\n  \"hourglass-end\": 62035,\n  \"hourglass-half\": 62034,\n  \"hourglass-start\": 62033,\n  \"hourglass\": 62036,\n  \"house-blank\": 58503,\n  \"house-building\": 57777,\n  \"house-chimney-blank\": 58288,\n  \"house-chimney-crack\": 63217,\n  \"house-chimney-heart\": 57778,\n  \"house-chimney-medical\": 63474,\n  \"house-chimney-user\": 57445,\n  \"house-chimney-window\": 57357,\n  \"house-chimney\": 58287,\n  \"house-circle-check\": 58633,\n  \"house-circle-exclamation\": 58634,\n  \"house-circle-xmark\": 58635,\n  \"house-crack\": 58289,\n  \"house-damage\": 63217,\n  \"house-day\": 57358,\n  \"house-fire\": 58636,\n  \"house-flag\": 58637,\n  \"house-flood-water-circle-arrow-right\": 58639,\n  \"house-flood-water\": 58638,\n  \"house-flood\": 63311,\n  \"house-heart\": 62665,\n  \"house-laptop\": 57446,\n  \"house-leave\": 57359,\n  \"house-lock\": 58640,\n  \"house-medical-circle-check\": 58641,\n  \"house-medical-circle-exclamation\": 58642,\n  \"house-medical-circle-xmark\": 58643,\n  \"house-medical-flag\": 58644,\n  \"house-medical\": 58290,\n  \"house-night\": 57360,\n  \"house-person-arrive\": 57361,\n  \"house-person-depart\": 57359,\n  \"house-person-leave\": 57359,\n  \"house-person-return\": 57361,\n  \"house-return\": 57361,\n  \"house-signal\": 57362,\n  \"house-tree\": 57779,\n  \"house-tsunami\": 58645,\n  \"house-turret\": 57780,\n  \"house-unlock\": 59082,\n  \"house-user\": 57776,\n  \"house-water\": 63311,\n  \"house-window\": 58291,\n  \"house\": 61461,\n  \"hryvnia-sign\": 63218,\n  \"hryvnia\": 63218,\n  \"humidity\": 63312,\n  \"hundred-points\": 58396,\n  \"hurricane\": 63313,\n  \"hydra\": 59014,\n  \"hyphen\": 45,\n  \"i-cursor\": 62022,\n  \"i\": 73,\n  \"ice-cream\": 63504,\n  \"ice-skate\": 63404,\n  \"icicles\": 63405,\n  \"icons-alt\": 63598,\n  \"icons\": 63597,\n  \"id-badge\": 62145,\n  \"id-card-alt\": 62591,\n  \"id-card-clip\": 62591,\n  \"id-card\": 62146,\n  \"igloo\": 63406,\n  \"ils\": 61963,\n  \"image-broken\": 59562,\n  \"image-circle-arrow-down\": 59244,\n  \"image-circle-check\": 59245,\n  \"image-circle-plus\": 59246,\n  \"image-circle-xmark\": 59247,\n  \"image-landscape\": 57781,\n  \"image-music\": 59248,\n  \"image-polaroid-user\": 57782,\n  \"image-polaroid\": 63684,\n  \"image-portrait\": 62432,\n  \"image-slash\": 57783,\n  \"image-stack\": 59249,\n  \"image-user\": 57784,\n  \"image\": 61502,\n  \"images-user\": 57785,\n  \"images\": 62210,\n  \"inbox-arrow-down\": 62224,\n  \"inbox-arrow-up\": 62225,\n  \"inbox-full\": 57786,\n  \"inbox-in\": 62224,\n  \"inbox-out\": 62225,\n  \"inbox\": 61468,\n  \"inboxes\": 57787,\n  \"indent\": 61500,\n  \"indian-rupee-sign\": 57788,\n  \"indian-rupee\": 57788,\n  \"industry-alt\": 62387,\n  \"industry-windows\": 62387,\n  \"industry\": 62069,\n  \"infinity\": 62772,\n  \"info-circle\": 61530,\n  \"info-square\": 62223,\n  \"info\": 61737,\n  \"inhaler\": 62969,\n  \"input-numeric\": 57789,\n  \"input-password\": 59517,\n  \"input-pipe\": 57790,\n  \"input-text\": 57791,\n  \"inr\": 57788,\n  \"institution\": 61852,\n  \"integral\": 63079,\n  \"interrobang\": 58810,\n  \"intersection\": 63080,\n  \"inventory\": 62592,\n  \"island-tree-palm\": 63505,\n  \"island-tropical\": 63505,\n  \"italic\": 61491,\n  \"j\": 74,\n  \"jack-o-lantern\": 62222,\n  \"jar-wheat\": 58647,\n  \"jar\": 58646,\n  \"jeans-straight\": 59091,\n  \"jeans\": 59090,\n  \"jedi\": 63081,\n  \"jet-fighter-up\": 58648,\n  \"jet-fighter\": 61691,\n  \"joint\": 62869,\n  \"journal-whills\": 63082,\n  \"joystick\": 63685,\n  \"jpy\": 61783,\n  \"jug-bottle\": 58875,\n  \"jug-detergent\": 58649,\n  \"jug\": 63686,\n  \"k\": 75,\n  \"kaaba\": 63083,\n  \"kayak\": 59547,\n  \"kazoo\": 63687,\n  \"kerning\": 63599,\n  \"kettlebell\": 59442,\n  \"key-skeleton-left-right\": 58292,\n  \"key-skeleton\": 63219,\n  \"key\": 61572,\n  \"keyboard-brightness-low\": 57793,\n  \"keyboard-brightness\": 57792,\n  \"keyboard-down\": 57794,\n  \"keyboard-left\": 57795,\n  \"keyboard\": 61724,\n  \"keynote\": 63084,\n  \"khanda\": 63085,\n  \"kidneys\": 62971,\n  \"kip-sign\": 57796,\n  \"kiss-beam\": 62871,\n  \"kiss-wink-heart\": 62872,\n  \"kiss\": 62870,\n  \"kit-medical\": 62585,\n  \"kitchen-set\": 58650,\n  \"kite\": 63220,\n  \"kiwi-bird\": 62773,\n  \"kiwi-fruit\": 58124,\n  \"knife-kitchen\": 63221,\n  \"knife\": 62180,\n  \"krw\": 61785,\n  \"l\": 76,\n  \"label\": 59559,\n  \"lacrosse-stick-ball\": 58294,\n  \"lacrosse-stick\": 58293,\n  \"ladder-water\": 62917,\n  \"lambda\": 63086,\n  \"lamp-desk\": 57364,\n  \"lamp-floor\": 57365,\n  \"lamp-street\": 57797,\n  \"lamp\": 62666,\n  \"land-mine-on\": 58651,\n  \"landmark-alt\": 63314,\n  \"landmark-dome\": 63314,\n  \"landmark-flag\": 58652,\n  \"landmark-magnifying-glass\": 58914,\n  \"landmark\": 63087,\n  \"landscape\": 57781,\n  \"language\": 61867,\n  \"laptop-arrow-down\": 57798,\n  \"laptop-binary\": 58855,\n  \"laptop-code\": 62972,\n  \"laptop-file\": 58653,\n  \"laptop-house\": 57446,\n  \"laptop-medical\": 63506,\n  \"laptop-mobile\": 63610,\n  \"laptop-slash\": 57799,\n  \"laptop\": 61705,\n  \"lari-sign\": 57800,\n  \"lasso-sparkles\": 57801,\n  \"lasso\": 63688,\n  \"laugh-beam\": 62874,\n  \"laugh-squint\": 62875,\n  \"laugh-wink\": 62876,\n  \"laugh\": 62873,\n  \"layer-group-minus\": 62974,\n  \"layer-group-plus\": 62975,\n  \"layer-group\": 62973,\n  \"layer-minus\": 62974,\n  \"layer-plus\": 62975,\n  \"layer\": 59455,\n  \"leaf-heart\": 62667,\n  \"leaf-maple\": 63222,\n  \"leaf-oak\": 63223,\n  \"leaf\": 61548,\n  \"leafy-green\": 58397,\n  \"left-from-bracket\": 58988,\n  \"left-from-dotted-line\": 59074,\n  \"left-from-line\": 62280,\n  \"left-long-to-line\": 58398,\n  \"left-long\": 62218,\n  \"left-right\": 62263,\n  \"left-to-bracket\": 58989,\n  \"left-to-dotted-line\": 59075,\n  \"left-to-line\": 62283,\n  \"left\": 62293,\n  \"legal\": 61667,\n  \"lemon\": 61588,\n  \"leo\": 59466,\n  \"less-than-equal\": 62775,\n  \"less-than\": 60,\n  \"level-down-alt\": 62398,\n  \"level-down\": 61769,\n  \"level-up-alt\": 62399,\n  \"level-up\": 61768,\n  \"libra\": 59467,\n  \"life-ring\": 61901,\n  \"light-ceiling\": 57366,\n  \"light-emergency-on\": 58400,\n  \"light-emergency\": 58399,\n  \"light-switch-off\": 57368,\n  \"light-switch-on\": 57369,\n  \"light-switch\": 57367,\n  \"lightbulb-cfl-on\": 58791,\n  \"lightbulb-cfl\": 58790,\n  \"lightbulb-dollar\": 63088,\n  \"lightbulb-exclamation-on\": 57802,\n  \"lightbulb-exclamation\": 63089,\n  \"lightbulb-gear\": 58877,\n  \"lightbulb-message\": 59015,\n  \"lightbulb-on\": 63090,\n  \"lightbulb-slash\": 63091,\n  \"lightbulb\": 61675,\n  \"lighthouse\": 58898,\n  \"lights-holiday\": 63410,\n  \"line-chart\": 61953,\n  \"line-columns\": 63600,\n  \"line-height\": 63601,\n  \"lines-leaning\": 58654,\n  \"link-broken\": 59458,\n  \"link-horizontal-slash\": 57804,\n  \"link-horizontal\": 57803,\n  \"link-simple-slash\": 57806,\n  \"link-simple\": 57805,\n  \"link-slash\": 61735,\n  \"link\": 61633,\n  \"lips\": 62976,\n  \"lira-sign\": 61845,\n  \"list-1-2\": 61643,\n  \"list-alt\": 61474,\n  \"list-check\": 61614,\n  \"list-dots\": 61642,\n  \"list-dropdown\": 57807,\n  \"list-music\": 63689,\n  \"list-numeric\": 61643,\n  \"list-ol\": 61643,\n  \"list-radio\": 57808,\n  \"list-squares\": 61498,\n  \"list-timeline\": 57809,\n  \"list-tree\": 57810,\n  \"list-ul\": 61642,\n  \"list\": 61498,\n  \"litecoin-sign\": 57811,\n  \"loader\": 57812,\n  \"lobster\": 58401,\n  \"location-arrow-slash\": 59258,\n  \"location-arrow-up\": 58938,\n  \"location-arrow\": 61732,\n  \"location-check\": 62982,\n  \"location-circle\": 62978,\n  \"location-crosshairs-slash\": 62979,\n  \"location-crosshairs\": 62977,\n  \"location-dot-slash\": 62981,\n  \"location-dot\": 62405,\n  \"location-exclamation\": 62984,\n  \"location-minus\": 62985,\n  \"location-pen\": 62983,\n  \"location-pin-lock\": 58655,\n  \"location-pin-slash\": 62988,\n  \"location-pin\": 61505,\n  \"location-plus\": 62986,\n  \"location-question\": 62987,\n  \"location-slash\": 62979,\n  \"location-smile\": 62989,\n  \"location-xmark\": 62990,\n  \"location\": 62977,\n  \"lock-a\": 58402,\n  \"lock-alt\": 62221,\n  \"lock-hashtag\": 58403,\n  \"lock-keyhole-open\": 62402,\n  \"lock-keyhole\": 62221,\n  \"lock-open-alt\": 62402,\n  \"lock-open\": 62401,\n  \"lock\": 61475,\n  \"locust\": 58656,\n  \"lollipop\": 58404,\n  \"lollypop\": 58404,\n  \"long-arrow-alt-down\": 62217,\n  \"long-arrow-alt-left\": 62218,\n  \"long-arrow-alt-right\": 62219,\n  \"long-arrow-alt-up\": 62220,\n  \"long-arrow-down\": 61813,\n  \"long-arrow-left\": 61815,\n  \"long-arrow-right\": 61816,\n  \"long-arrow-up\": 61814,\n  \"loveseat\": 62668,\n  \"low-vision\": 62120,\n  \"luchador-mask\": 62549,\n  \"luchador\": 62549,\n  \"luggage-cart\": 62877,\n  \"lungs-virus\": 57447,\n  \"lungs\": 62980,\n  \"lychee\": 59428,\n  \"m\": 77,\n  \"mace\": 63224,\n  \"magic-wand-sparkles\": 58058,\n  \"magic\": 61648,\n  \"magnet\": 61558,\n  \"magnifying-glass-arrow-right\": 58657,\n  \"magnifying-glass-arrows-rotate\": 58974,\n  \"magnifying-glass-chart\": 58658,\n  \"magnifying-glass-dollar\": 63112,\n  \"magnifying-glass-location\": 63113,\n  \"magnifying-glass-minus\": 61456,\n  \"magnifying-glass-music\": 58975,\n  \"magnifying-glass-play\": 58976,\n  \"magnifying-glass-plus\": 61454,\n  \"magnifying-glass-waveform\": 58977,\n  \"magnifying-glass\": 61442,\n  \"mail-bulk\": 63092,\n  \"mail-forward\": 61540,\n  \"mail-reply-all\": 61730,\n  \"mail-reply\": 62437,\n  \"mailbox-flag-up\": 58811,\n  \"mailbox-open-empty\": 59425,\n  \"mailbox-open-letter\": 59427,\n  \"mailbox\": 63507,\n  \"maki-roll\": 58507,\n  \"makizushi\": 58507,\n  \"malaysian-ringgit-sign\": 59130,\n  \"male\": 61827,\n  \"manat-sign\": 57813,\n  \"mandolin\": 63225,\n  \"mango\": 58127,\n  \"manhole\": 57814,\n  \"map-location-dot\": 62880,\n  \"map-location\": 62879,\n  \"map-marked-alt\": 62880,\n  \"map-marked\": 62879,\n  \"map-marker-alt-slash\": 62981,\n  \"map-marker-alt\": 62405,\n  \"map-marker-check\": 62982,\n  \"map-marker-edit\": 62983,\n  \"map-marker-exclamation\": 62984,\n  \"map-marker-minus\": 62985,\n  \"map-marker-plus\": 62986,\n  \"map-marker-question\": 62987,\n  \"map-marker-slash\": 62988,\n  \"map-marker-smile\": 62989,\n  \"map-marker-times\": 62990,\n  \"map-marker-xmark\": 62990,\n  \"map-marker\": 61505,\n  \"map-pin\": 62070,\n  \"map-signs\": 62071,\n  \"map\": 62073,\n  \"marker\": 62881,\n  \"mars-and-venus-burst\": 58659,\n  \"mars-and-venus\": 61988,\n  \"mars-double\": 61991,\n  \"mars-stroke-h\": 61995,\n  \"mars-stroke-right\": 61995,\n  \"mars-stroke-up\": 61994,\n  \"mars-stroke-v\": 61994,\n  \"mars-stroke\": 61993,\n  \"mars\": 61986,\n  \"martini-glass-citrus\": 62817,\n  \"martini-glass-empty\": 61440,\n  \"martini-glass\": 62843,\n  \"mask-face\": 57815,\n  \"mask-luchador\": 62549,\n  \"mask-snorkel\": 58295,\n  \"mask-ventilator\": 58660,\n  \"mask\": 63226,\n  \"masks-theater\": 63024,\n  \"mattress-pillow\": 58661,\n  \"maximize\": 62238,\n  \"meat\": 63508,\n  \"medal\": 62882,\n  \"medkit\": 61690,\n  \"megaphone\": 63093,\n  \"meh-blank\": 62884,\n  \"meh-rolling-eyes\": 62885,\n  \"meh\": 61722,\n  \"melon-slice\": 58129,\n  \"melon\": 58128,\n  \"memo-circle-check\": 57817,\n  \"memo-circle-info\": 58522,\n  \"memo-pad\": 57818,\n  \"memo\": 57816,\n  \"memory\": 62776,\n  \"menorah\": 63094,\n  \"mercury\": 61987,\n  \"merge\": 58662,\n  \"message-arrow-down\": 57819,\n  \"message-arrow-up-right\": 57821,\n  \"message-arrow-up\": 57820,\n  \"message-bot\": 58296,\n  \"message-captions\": 57822,\n  \"message-check\": 62626,\n  \"message-code\": 57823,\n  \"message-dollar\": 63056,\n  \"message-dot\": 59103,\n  \"message-dots\": 62627,\n  \"message-edit\": 62628,\n  \"message-exclamation\": 62629,\n  \"message-heart\": 58825,\n  \"message-image\": 57824,\n  \"message-lines\": 62630,\n  \"message-medical\": 63476,\n  \"message-middle-top\": 57826,\n  \"message-middle\": 57825,\n  \"message-minus\": 62631,\n  \"message-music\": 63663,\n  \"message-pen\": 62628,\n  \"message-plus\": 62632,\n  \"message-question\": 57827,\n  \"message-quote\": 57828,\n  \"message-slash\": 62633,\n  \"message-smile\": 62634,\n  \"message-sms\": 57829,\n  \"message-text\": 57830,\n  \"message-times\": 62635,\n  \"message-waveform\": 59104,\n  \"message-xmark\": 62635,\n  \"message\": 62074,\n  \"messages-dollar\": 63058,\n  \"messages-question\": 57831,\n  \"messages\": 62646,\n  \"messaging\": 62627,\n  \"meteor\": 63315,\n  \"meter-bolt\": 57833,\n  \"meter-droplet\": 57834,\n  \"meter-fire\": 57835,\n  \"meter\": 57832,\n  \"microchip-ai\": 57836,\n  \"microchip\": 62171,\n  \"microphone-alt-slash\": 62777,\n  \"microphone-alt\": 62409,\n  \"microphone-circle-alt\": 57623,\n  \"microphone-circle-plus\": 59261,\n  \"microphone-circle-xmark\": 59262,\n  \"microphone-circle\": 57622,\n  \"microphone-lines-slash\": 62777,\n  \"microphone-lines\": 62409,\n  \"microphone-signal-meter\": 59232,\n  \"microphone-slash\": 61745,\n  \"microphone-stand\": 63691,\n  \"microphone\": 61744,\n  \"microscope\": 62992,\n  \"microwave\": 57371,\n  \"midi\": 59398,\n  \"mill-sign\": 57837,\n  \"mind-share\": 63095,\n  \"minimize\": 63372,\n  \"minus-circle\": 61526,\n  \"minus-hexagon\": 62215,\n  \"minus-large\": 58372,\n  \"minus-octagon\": 62216,\n  \"minus-square\": 61766,\n  \"minus\": 61544,\n  \"mistletoe\": 63412,\n  \"mitten\": 63413,\n  \"mobile-alt\": 62413,\n  \"mobile-android-alt\": 62415,\n  \"mobile-android\": 62414,\n  \"mobile-arrow-down\": 59211,\n  \"mobile-button\": 61707,\n  \"mobile-iphone\": 57838,\n  \"mobile-notch\": 57838,\n  \"mobile-phone\": 62414,\n  \"mobile-retro\": 58663,\n  \"mobile-rotate-reverse\": 59412,\n  \"mobile-rotate\": 59411,\n  \"mobile-screen-button\": 62413,\n  \"mobile-screen\": 62415,\n  \"mobile-signal-out\": 57840,\n  \"mobile-signal\": 57839,\n  \"mobile-slash\": 59413,\n  \"mobile-vibrate-slash\": 59415,\n  \"mobile-vibrate\": 59414,\n  \"mobile\": 62414,\n  \"money-bill-1-wave\": 62779,\n  \"money-bill-1\": 62417,\n  \"money-bill-alt\": 62417,\n  \"money-bill-simple-wave\": 57842,\n  \"money-bill-simple\": 57841,\n  \"money-bill-transfer\": 58664,\n  \"money-bill-trend-up\": 58665,\n  \"money-bill-wave-alt\": 62779,\n  \"money-bill-wave\": 62778,\n  \"money-bill-wheat\": 58666,\n  \"money-bill\": 61654,\n  \"money-bills-alt\": 57844,\n  \"money-bills-simple\": 57844,\n  \"money-bills\": 57843,\n  \"money-check-alt\": 62781,\n  \"money-check-dollar-pen\": 63603,\n  \"money-check-dollar\": 62781,\n  \"money-check-edit-alt\": 63603,\n  \"money-check-edit\": 63602,\n  \"money-check-pen\": 63602,\n  \"money-check\": 62780,\n  \"money-from-bracket\": 58130,\n  \"money-simple-from-bracket\": 58131,\n  \"monitor-heart-rate\": 62993,\n  \"monitor-waveform\": 62993,\n  \"monkey\": 63227,\n  \"monument\": 62886,\n  \"moon-cloud\": 63316,\n  \"moon-first-quarter-inverse\": 59506,\n  \"moon-first-quarter\": 59504,\n  \"moon-full-inverse\": 59507,\n  \"moon-full\": 59505,\n  \"moon-last-quarter-inverse\": 59504,\n  \"moon-last-quarter\": 59506,\n  \"moon-new-inverse\": 59505,\n  \"moon-new\": 59507,\n  \"moon-over-sun\": 63306,\n  \"moon-star\": 59337,\n  \"moon-stars\": 63317,\n  \"moon-waning-crescent-inverse\": 59511,\n  \"moon-waning-crescent\": 59508,\n  \"moon-waning-gibbous-inverse\": 59510,\n  \"moon-waning-gibbous\": 59509,\n  \"moon-waxing-crescent-inverse\": 59509,\n  \"moon-waxing-crescent\": 59510,\n  \"moon-waxing-gibbous-inverse\": 59508,\n  \"moon-waxing-gibbous\": 59511,\n  \"moon\": 61830,\n  \"moped\": 58297,\n  \"mortar-board\": 61853,\n  \"mortar-pestle\": 62887,\n  \"mosque\": 63096,\n  \"mosquito-net\": 58668,\n  \"mosquito\": 58667,\n  \"motorcycle\": 61980,\n  \"mound\": 58669,\n  \"mountain-city\": 58670,\n  \"mountain-sun\": 58671,\n  \"mountain\": 63228,\n  \"mountains\": 63229,\n  \"mouse-alt\": 63693,\n  \"mouse-field\": 58792,\n  \"mouse-pointer\": 62021,\n  \"mouse\": 63692,\n  \"mp3-player\": 63694,\n  \"mug-hot\": 63414,\n  \"mug-marshmallows\": 63415,\n  \"mug-saucer\": 61684,\n  \"mug-tea-saucer\": 57845,\n  \"mug-tea\": 63605,\n  \"mug\": 63604,\n  \"multiply\": 61453,\n  \"museum\": 61852,\n  \"mushroom\": 58405,\n  \"music-alt-slash\": 63696,\n  \"music-alt\": 63695,\n  \"music-magnifying-glass\": 58978,\n  \"music-note-slash\": 63696,\n  \"music-note\": 63695,\n  \"music-slash\": 63697,\n  \"music\": 61441,\n  \"mustache\": 58812,\n  \"n\": 78,\n  \"naira-sign\": 57846,\n  \"narwhal\": 63230,\n  \"nas\": 59553,\n  \"navicon\": 61641,\n  \"nesting-dolls\": 58298,\n  \"network-wired\": 63231,\n  \"neuter\": 61996,\n  \"newspaper\": 61930,\n  \"nfc-lock\": 57848,\n  \"nfc-magnifying-glass\": 57849,\n  \"nfc-pen\": 57850,\n  \"nfc-signal\": 57851,\n  \"nfc-slash\": 57852,\n  \"nfc-symbol\": 58673,\n  \"nfc-trash\": 57853,\n  \"nfc\": 57847,\n  \"nigiri\": 58506,\n  \"non-binary\": 59399,\n  \"norwegian-krone-sign\": 59112,\n  \"nose\": 58813,\n  \"not-equal\": 62782,\n  \"notdef\": 57854,\n  \"note-medical\": 57856,\n  \"note-sticky\": 62025,\n  \"note\": 57855,\n  \"notebook\": 57857,\n  \"notes-medical\": 62593,\n  \"notes-sticky\": 59225,\n  \"notes\": 57858,\n  \"numpad\": 59340,\n  \"o\": 79,\n  \"oar\": 59524,\n  \"oars\": 59525,\n  \"object-exclude\": 58524,\n  \"object-group\": 62023,\n  \"object-intersect\": 58525,\n  \"object-subtract\": 58526,\n  \"object-ungroup\": 62024,\n  \"object-union\": 58527,\n  \"objects-align-bottom\": 58299,\n  \"objects-align-center-horizontal\": 58300,\n  \"objects-align-center-vertical\": 58301,\n  \"objects-align-left\": 58302,\n  \"objects-align-right\": 58303,\n  \"objects-align-top\": 58304,\n  \"objects-column\": 58305,\n  \"octagon-check\": 58406,\n  \"octagon-divide\": 57859,\n  \"octagon-equals\": 59059,\n  \"octagon-exclamation\": 57860,\n  \"octagon-minus\": 62216,\n  \"octagon-plus\": 62209,\n  \"octagon-xmark\": 62192,\n  \"octagon\": 62214,\n  \"octopus\": 59016,\n  \"oil-can-drip\": 57861,\n  \"oil-can\": 62995,\n  \"oil-temp\": 62996,\n  \"oil-temperature\": 62996,\n  \"oil-well\": 58674,\n  \"olive-branch\": 58135,\n  \"olive\": 58134,\n  \"om\": 63097,\n  \"omega\": 63098,\n  \"onion\": 58407,\n  \"open-captioning\": 59263,\n  \"opossum\": 59516,\n  \"option\": 58136,\n  \"ornament\": 63416,\n  \"otter\": 63232,\n  \"outdent\": 61499,\n  \"outlet\": 57372,\n  \"oven\": 57373,\n  \"overline\": 63606,\n  \"owl\": 59551,\n  \"p\": 80,\n  \"page-break\": 63607,\n  \"page-caret-down\": 58409,\n  \"page-caret-up\": 58410,\n  \"page\": 58408,\n  \"pager\": 63509,\n  \"paint-brush-alt\": 62889,\n  \"paint-brush-fine\": 62889,\n  \"paint-brush\": 61948,\n  \"paint-roller\": 62890,\n  \"paintbrush-alt\": 62889,\n  \"paintbrush-fine-slash\": 59213,\n  \"paintbrush-fine\": 62889,\n  \"paintbrush-pencil\": 57862,\n  \"paintbrush-slash\": 59214,\n  \"paintbrush\": 61948,\n  \"palette-boxes\": 62595,\n  \"palette\": 62783,\n  \"pallet-alt\": 62595,\n  \"pallet-box\": 57864,\n  \"pallet-boxes\": 62595,\n  \"pallet\": 62594,\n  \"pan-food\": 58411,\n  \"pan-frying\": 58412,\n  \"pancakes\": 58413,\n  \"panel-ews\": 58414,\n  \"panel-fire\": 58415,\n  \"panorama\": 57865,\n  \"panties\": 59092,\n  \"pants-straight\": 59094,\n  \"pants\": 59093,\n  \"paper-plane-alt\": 57866,\n  \"paper-plane-top\": 57866,\n  \"paper-plane\": 61912,\n  \"paperclip-vertical\": 58306,\n  \"paperclip\": 61638,\n  \"parachute-box\": 62669,\n  \"paragraph-left\": 63608,\n  \"paragraph-rtl\": 63608,\n  \"paragraph\": 61917,\n  \"parentheses\": 57541,\n  \"parenthesis\": 40,\n  \"parking-circle-slash\": 62998,\n  \"parking-circle\": 62997,\n  \"parking-slash\": 62999,\n  \"parking\": 62784,\n  \"party-back\": 58460,\n  \"party-bell\": 58138,\n  \"party-horn\": 58139,\n  \"passport\": 62891,\n  \"pastafarianism\": 63099,\n  \"paste\": 61674,\n  \"pause-circle\": 62091,\n  \"pause\": 61516,\n  \"paw-alt\": 63233,\n  \"paw-claws\": 63234,\n  \"paw-simple\": 63233,\n  \"paw\": 61872,\n  \"peace\": 63100,\n  \"peach\": 57867,\n  \"peanut\": 58416,\n  \"peanuts\": 58417,\n  \"peapod\": 58140,\n  \"pear\": 57868,\n  \"pedestal\": 57869,\n  \"pegasus\": 63235,\n  \"pen-alt-slash\": 57871,\n  \"pen-alt\": 62213,\n  \"pen-circle\": 57870,\n  \"pen-clip-slash\": 57871,\n  \"pen-clip\": 62213,\n  \"pen-fancy-slash\": 57872,\n  \"pen-fancy\": 62892,\n  \"pen-field\": 57873,\n  \"pen-line\": 57874,\n  \"pen-nib-slash\": 58529,\n  \"pen-nib\": 62893,\n  \"pen-paintbrush\": 63000,\n  \"pen-ruler\": 62894,\n  \"pen-slash\": 57875,\n  \"pen-square\": 61771,\n  \"pen-swirl\": 57876,\n  \"pen-to-square\": 61508,\n  \"pen\": 62212,\n  \"pencil-alt\": 62211,\n  \"pencil-line\": 59215,\n  \"pencil-mechanical\": 58826,\n  \"pencil-paintbrush\": 63000,\n  \"pencil-ruler\": 62894,\n  \"pencil-slash\": 57877,\n  \"pencil-square\": 61771,\n  \"pencil\": 62211,\n  \"pennant\": 62550,\n  \"pentagon\": 59280,\n  \"people-arrows-left-right\": 57448,\n  \"people-arrows\": 57448,\n  \"people-carry-box\": 62670,\n  \"people-carry\": 62670,\n  \"people-dress-simple\": 57880,\n  \"people-dress\": 57879,\n  \"people-group\": 58675,\n  \"people-line\": 58676,\n  \"people-pants-simple\": 57882,\n  \"people-pants\": 57881,\n  \"people-pulling\": 58677,\n  \"people-robbery\": 58678,\n  \"people-roof\": 58679,\n  \"people-simple\": 57883,\n  \"people\": 57878,\n  \"pepper-hot\": 63510,\n  \"pepper\": 58418,\n  \"percent\": 37,\n  \"percentage\": 37,\n  \"period\": 46,\n  \"person-arms-raised\": 59267,\n  \"person-arrow-down-to-line\": 58680,\n  \"person-arrow-up-from-line\": 58681,\n  \"person-basketball\": 59268,\n  \"person-biking-mountain\": 63563,\n  \"person-biking\": 63562,\n  \"person-booth\": 63318,\n  \"person-breastfeeding\": 58682,\n  \"person-burst\": 58683,\n  \"person-cane\": 58684,\n  \"person-carry-box\": 62671,\n  \"person-carry-empty\": 59269,\n  \"person-carry\": 62671,\n  \"person-chalkboard\": 58685,\n  \"person-circle-check\": 58686,\n  \"person-circle-exclamation\": 58687,\n  \"person-circle-minus\": 58688,\n  \"person-circle-plus\": 58689,\n  \"person-circle-question\": 58690,\n  \"person-circle-xmark\": 58691,\n  \"person-digging\": 63582,\n  \"person-dolly-empty\": 62673,\n  \"person-dolly\": 62672,\n  \"person-dots-from-line\": 62576,\n  \"person-dress-burst\": 58692,\n  \"person-dress-fairy\": 58887,\n  \"person-dress-simple\": 57884,\n  \"person-dress\": 61826,\n  \"person-drowning\": 58693,\n  \"person-fairy\": 58888,\n  \"person-falling-burst\": 58695,\n  \"person-falling\": 58694,\n  \"person-from-portal\": 57379,\n  \"person-golfing\": 59270,\n  \"person-half-dress\": 58696,\n  \"person-harassing\": 58697,\n  \"person-hiking\": 63212,\n  \"person-limbs-wide\": 59271,\n  \"person-meditating\": 59361,\n  \"person-military-pointing\": 58698,\n  \"person-military-rifle\": 58699,\n  \"person-military-to-person\": 58700,\n  \"person-pinball\": 57885,\n  \"person-praying\": 63107,\n  \"person-pregnant\": 58142,\n  \"person-rays\": 58701,\n  \"person-rifle\": 58702,\n  \"person-running-fast\": 58879,\n  \"person-running\": 63244,\n  \"person-seat-reclined\": 57887,\n  \"person-seat-window\": 59272,\n  \"person-seat\": 57886,\n  \"person-shelter\": 58703,\n  \"person-sign\": 63319,\n  \"person-simple\": 57888,\n  \"person-skating\": 63429,\n  \"person-ski-jumping\": 63431,\n  \"person-ski-lift\": 63432,\n  \"person-skiing-nordic\": 63434,\n  \"person-skiing\": 63433,\n  \"person-sledding\": 63435,\n  \"person-snowboarding\": 63438,\n  \"person-snowmobiling\": 63441,\n  \"person-soccer\": 59273,\n  \"person-swimming-pool\": 59274,\n  \"person-swimming-water\": 59275,\n  \"person-swimming\": 62916,\n  \"person-through-window\": 58793,\n  \"person-to-door\": 58419,\n  \"person-to-portal\": 57378,\n  \"person-walking-arrow-loop-left\": 58705,\n  \"person-walking-arrow-right\": 58706,\n  \"person-walking-dashed-line-arrow-right\": 58707,\n  \"person-walking-luggage\": 58708,\n  \"person-walking-with-cane\": 62109,\n  \"person-walking\": 62804,\n  \"person-water-arms-raised\": 59276,\n  \"person-waving\": 59277,\n  \"person\": 61827,\n  \"peruvian-soles-sign\": 59141,\n  \"peseta-sign\": 57889,\n  \"peso-sign\": 57890,\n  \"phone-alt\": 63609,\n  \"phone-arrow-down-left\": 57891,\n  \"phone-arrow-down\": 57891,\n  \"phone-arrow-right\": 58814,\n  \"phone-arrow-up-right\": 57892,\n  \"phone-arrow-up\": 57892,\n  \"phone-circle-alt\": 57628,\n  \"phone-circle-down\": 57629,\n  \"phone-circle\": 57627,\n  \"phone-connection\": 59105,\n  \"phone-flip\": 63609,\n  \"phone-hangup\": 57893,\n  \"phone-incoming\": 57891,\n  \"phone-intercom\": 58420,\n  \"phone-laptop\": 63610,\n  \"phone-missed\": 57894,\n  \"phone-office\": 63101,\n  \"phone-outgoing\": 57892,\n  \"phone-plus\": 62674,\n  \"phone-rotary\": 63699,\n  \"phone-slash\": 62429,\n  \"phone-square-alt\": 63611,\n  \"phone-square-down\": 57978,\n  \"phone-square\": 61592,\n  \"phone-volume\": 62112,\n  \"phone-waveform\": 59106,\n  \"phone-xmark\": 57895,\n  \"phone\": 61589,\n  \"photo-film-music\": 57896,\n  \"photo-film\": 63612,\n  \"photo-video\": 63612,\n  \"pi\": 63102,\n  \"piano-keyboard\": 63701,\n  \"piano\": 63700,\n  \"pickaxe\": 58815,\n  \"pickleball\": 58421,\n  \"picture-in-picture\": 59403,\n  \"pie-chart\": 61952,\n  \"pie\": 63237,\n  \"pig\": 63238,\n  \"piggy-bank\": 62675,\n  \"pills\": 62596,\n  \"pinata\": 58307,\n  \"pinball\": 57897,\n  \"pineapple\": 58143,\n  \"ping-pong-paddle-ball\": 62557,\n  \"pipe-circle-check\": 58422,\n  \"pipe-collar\": 58423,\n  \"pipe-section\": 58424,\n  \"pipe-smoking\": 58308,\n  \"pipe-valve\": 58425,\n  \"pipe\": 124,\n  \"pisces\": 59468,\n  \"pizza-slice\": 63512,\n  \"pizza\": 63511,\n  \"place-of-worship\": 63103,\n  \"plane-alt\": 62430,\n  \"plane-arrival\": 62895,\n  \"plane-circle-check\": 58709,\n  \"plane-circle-exclamation\": 58710,\n  \"plane-circle-xmark\": 58711,\n  \"plane-departure\": 62896,\n  \"plane-engines\": 62430,\n  \"plane-flying\": 59323,\n  \"plane-landing-gear\": 59324,\n  \"plane-lock\": 58712,\n  \"plane-prop\": 57899,\n  \"plane-slash\": 57449,\n  \"plane-tail\": 57900,\n  \"plane-up-slash\": 57902,\n  \"plane-up\": 57901,\n  \"plane\": 61554,\n  \"planet-moon\": 57375,\n  \"planet-ringed\": 57376,\n  \"plant-wilt\": 58794,\n  \"plate-utensils\": 58427,\n  \"plate-wheat\": 58714,\n  \"play-circle\": 61764,\n  \"play-flip\": 59264,\n  \"play-pause\": 57903,\n  \"play\": 61515,\n  \"plug-circle-bolt\": 58715,\n  \"plug-circle-check\": 58716,\n  \"plug-circle-exclamation\": 58717,\n  \"plug-circle-minus\": 58718,\n  \"plug-circle-plus\": 58719,\n  \"plug-circle-xmark\": 58720,\n  \"plug\": 61926,\n  \"plus-circle\": 61525,\n  \"plus-hexagon\": 62208,\n  \"plus-large\": 58782,\n  \"plus-minus\": 58428,\n  \"plus-octagon\": 62209,\n  \"plus-square\": 61694,\n  \"plus\": 43,\n  \"podcast\": 62158,\n  \"podium-star\": 63320,\n  \"podium\": 63104,\n  \"poker-chip\": 59554,\n  \"police-box\": 57377,\n  \"polish-zloty-sign\": 59147,\n  \"poll-h\": 63106,\n  \"poll-people\": 63321,\n  \"poll\": 63105,\n  \"pompebled\": 58429,\n  \"poo-bolt\": 63322,\n  \"poo-storm\": 63322,\n  \"poo\": 62206,\n  \"pool-8-ball\": 58309,\n  \"poop\": 63001,\n  \"popcorn\": 63513,\n  \"popsicle\": 58430,\n  \"portal-enter\": 57378,\n  \"portal-exit\": 57379,\n  \"portrait\": 62432,\n  \"possum\": 59516,\n  \"postage-stamp\": 59107,\n  \"pot-food\": 58431,\n  \"potato\": 58432,\n  \"pound-sign\": 61780,\n  \"power-off\": 61457,\n  \"pray\": 63107,\n  \"praying-hands\": 63108,\n  \"prescription-bottle-alt\": 62598,\n  \"prescription-bottle-medical\": 62598,\n  \"prescription-bottle-pill\": 58816,\n  \"prescription-bottle\": 62597,\n  \"prescription\": 62897,\n  \"presentation-screen\": 63109,\n  \"presentation\": 63109,\n  \"pretzel\": 58433,\n  \"print-magnifying-glass\": 63514,\n  \"print-search\": 63514,\n  \"print-slash\": 63110,\n  \"print\": 61487,\n  \"pro\": 57909,\n  \"procedures\": 62599,\n  \"project-diagram\": 62786,\n  \"projector\": 63702,\n  \"pronoun\": 59041,\n  \"pump-impeller\": 59445,\n  \"pump-medical\": 57450,\n  \"pump-soap\": 57451,\n  \"pump\": 58434,\n  \"pumpkin\": 63239,\n  \"puzzle-piece-alt\": 57905,\n  \"puzzle-piece-simple\": 57905,\n  \"puzzle-piece\": 61742,\n  \"puzzle\": 58435,\n  \"q\": 81,\n  \"qrcode-read\": 59289,\n  \"qrcode\": 61481,\n  \"question-circle\": 61529,\n  \"question-square\": 62205,\n  \"question\": 63,\n  \"quidditch-broom-ball\": 62552,\n  \"quidditch\": 62552,\n  \"quote-left-alt\": 61709,\n  \"quote-left\": 61709,\n  \"quote-right-alt\": 61710,\n  \"quote-right\": 61710,\n  \"quotes\": 57908,\n  \"quran\": 63111,\n  \"r\": 82,\n  \"rabbit-fast\": 63241,\n  \"rabbit-running\": 63241,\n  \"rabbit\": 63240,\n  \"raccoon\": 58899,\n  \"racquet\": 62554,\n  \"radar\": 57380,\n  \"radiation-alt\": 63418,\n  \"radiation\": 63417,\n  \"radio-alt\": 63704,\n  \"radio-tuner\": 63704,\n  \"radio\": 63703,\n  \"rainbow-half\": 59338,\n  \"rainbow\": 63323,\n  \"raindrops\": 63324,\n  \"ram\": 63242,\n  \"ramp-loading\": 62676,\n  \"random\": 61556,\n  \"ranking-star\": 58721,\n  \"raygun\": 57381,\n  \"receipt\": 62787,\n  \"record-vinyl\": 63705,\n  \"rectangle-4k\": 59250,\n  \"rectangle-ad\": 63041,\n  \"rectangle-api\": 59552,\n  \"rectangle-barcode\": 62563,\n  \"rectangle-beta\": 59400,\n  \"rectangle-code\": 58146,\n  \"rectangle-hd\": 57774,\n  \"rectangle-hdr\": 59251,\n  \"rectangle-high-dynamic-range\": 59251,\n  \"rectangle-history-circle-plus\": 58531,\n  \"rectangle-history-circle-user\": 58532,\n  \"rectangle-history\": 58530,\n  \"rectangle-irc\": 59500,\n  \"rectangle-landscape\": 62202,\n  \"rectangle-list\": 61474,\n  \"rectangle-minus\": 59060,\n  \"rectangle-n-a\": 59560,\n  \"rectangle-new\": 59514,\n  \"rectangle-plus\": 59061,\n  \"rectangle-portrait\": 62203,\n  \"rectangle-pro\": 57909,\n  \"rectangle-sd\": 57994,\n  \"rectangle-tall\": 59281,\n  \"rectangle-terminal\": 57910,\n  \"rectangle-times\": 62480,\n  \"rectangle-vertical-history\": 57911,\n  \"rectangle-vertical\": 62203,\n  \"rectangle-video-on-demand\": 59252,\n  \"rectangle-wide\": 62204,\n  \"rectangle-xmark\": 62480,\n  \"rectangle\": 62202,\n  \"rectangles-mixed\": 58147,\n  \"recycle\": 61880,\n  \"redo-alt\": 62201,\n  \"redo\": 61470,\n  \"reel\": 57912,\n  \"reflect-both\": 58991,\n  \"reflect-horizontal\": 58980,\n  \"reflect-vertical\": 58981,\n  \"refresh\": 61473,\n  \"refrigerator\": 57382,\n  \"registered\": 62045,\n  \"remote\": 59561,\n  \"remove-format\": 63613,\n  \"remove\": 61453,\n  \"renminbi-sign\": 59196,\n  \"reorder\": 62800,\n  \"repeat-1-alt\": 62310,\n  \"repeat-1\": 62309,\n  \"repeat-alt\": 62308,\n  \"repeat\": 62307,\n  \"reply-all\": 61730,\n  \"reply-clock\": 57913,\n  \"reply-time\": 57913,\n  \"reply\": 62437,\n  \"republican\": 63326,\n  \"restroom-simple\": 57914,\n  \"restroom\": 63421,\n  \"retweet-alt\": 62305,\n  \"retweet\": 61561,\n  \"rhombus\": 57915,\n  \"ribbon\": 62678,\n  \"right-from-bracket\": 62197,\n  \"right-from-dotted-line\": 59076,\n  \"right-from-line\": 62279,\n  \"right-left-large\": 58849,\n  \"right-left\": 62306,\n  \"right-long-to-line\": 58436,\n  \"right-long\": 62219,\n  \"right-to-bracket\": 62198,\n  \"right-to-dotted-line\": 59077,\n  \"right-to-line\": 62284,\n  \"right\": 62294,\n  \"ring-diamond\": 58795,\n  \"ring\": 63243,\n  \"rings-wedding\": 63515,\n  \"rmb\": 61783,\n  \"road-barrier\": 58722,\n  \"road-bridge\": 58723,\n  \"road-circle-check\": 58724,\n  \"road-circle-exclamation\": 58725,\n  \"road-circle-xmark\": 58726,\n  \"road-lock\": 58727,\n  \"road-spikes\": 58728,\n  \"road\": 61464,\n  \"robot-astromech\": 58066,\n  \"robot\": 62788,\n  \"rocket-launch\": 57383,\n  \"rocket-vertical\": 59325,\n  \"rocket\": 61749,\n  \"rod-asclepius\": 58745,\n  \"rod-snake\": 58745,\n  \"roller-coaster\": 58148,\n  \"rotate-back\": 62186,\n  \"rotate-backward\": 62186,\n  \"rotate-exclamation\": 57916,\n  \"rotate-forward\": 62201,\n  \"rotate-left\": 62186,\n  \"rotate-reverse\": 58929,\n  \"rotate-right\": 62201,\n  \"rotate\": 62193,\n  \"rouble\": 61784,\n  \"route-highway\": 63002,\n  \"route-interstate\": 63003,\n  \"route\": 62679,\n  \"router\": 63706,\n  \"rows-3\": 59531,\n  \"rows\": 58002,\n  \"rss-square\": 61763,\n  \"rss\": 61598,\n  \"rub\": 61784,\n  \"ruble-sign\": 61784,\n  \"ruble\": 61784,\n  \"rug\": 58729,\n  \"rugby-ball\": 58310,\n  \"ruler-combined\": 62790,\n  \"ruler-horizontal\": 62791,\n  \"ruler-triangle\": 63004,\n  \"ruler-vertical\": 62792,\n  \"ruler\": 62789,\n  \"running\": 63244,\n  \"rupee-sign\": 61782,\n  \"rupee\": 61782,\n  \"rupiah-sign\": 57917,\n  \"rv\": 63422,\n  \"s\": 83,\n  \"sack-dollar\": 63517,\n  \"sack-xmark\": 58730,\n  \"sack\": 63516,\n  \"sad-cry\": 62899,\n  \"sad-tear\": 62900,\n  \"sagittarius\": 59469,\n  \"sailboat\": 58437,\n  \"salad\": 63518,\n  \"salt-shaker\": 58438,\n  \"sandwich\": 63519,\n  \"satellite-dish\": 63424,\n  \"satellite\": 63423,\n  \"sausage\": 63520,\n  \"save-circle-arrow-right\": 57728,\n  \"save-circle-xmark\": 57729,\n  \"save-times\": 57729,\n  \"save\": 61639,\n  \"sax-hot\": 63707,\n  \"saxophone-fire\": 63707,\n  \"saxophone\": 63708,\n  \"scale-balanced\": 62030,\n  \"scale-unbalanced-flip\": 62742,\n  \"scale-unbalanced\": 62741,\n  \"scalpel-line-dashed\": 63006,\n  \"scalpel-path\": 63006,\n  \"scalpel\": 63005,\n  \"scanner-gun\": 62600,\n  \"scanner-image\": 63731,\n  \"scanner-keyboard\": 62601,\n  \"scanner-touchscreen\": 62602,\n  \"scanner\": 62600,\n  \"scarecrow\": 63245,\n  \"scarf\": 63425,\n  \"school-circle-check\": 58731,\n  \"school-circle-exclamation\": 58732,\n  \"school-circle-xmark\": 58733,\n  \"school-flag\": 58734,\n  \"school-lock\": 58735,\n  \"school-unlock\": 59083,\n  \"school\": 62793,\n  \"scissors\": 61636,\n  \"scooter\": 59331,\n  \"scorpio\": 59470,\n  \"screen-users\": 63037,\n  \"screencast\": 57918,\n  \"screenshot\": 57562,\n  \"screwdriver-wrench\": 63449,\n  \"screwdriver\": 62794,\n  \"scribble\": 57919,\n  \"scroll-old\": 63247,\n  \"scroll-ribbon\": 62954,\n  \"scroll-torah\": 63136,\n  \"scroll\": 63246,\n  \"scrubber\": 62200,\n  \"scythe\": 63248,\n  \"sd-card\": 63426,\n  \"sd-cards\": 57920,\n  \"seal-exclamation\": 57922,\n  \"seal-question\": 57923,\n  \"seal\": 57921,\n  \"search-dollar\": 63112,\n  \"search-location\": 63113,\n  \"search-minus\": 61456,\n  \"search-plus\": 61454,\n  \"search\": 61442,\n  \"seat-airline-window\": 59326,\n  \"seat-airline\": 57924,\n  \"seat\": 59236,\n  \"seats\": 59237,\n  \"section\": 58439,\n  \"seedling\": 62680,\n  \"semicolon\": 59,\n  \"send-back\": 63614,\n  \"send-backward\": 63615,\n  \"send\": 57866,\n  \"sensor-alert\": 57385,\n  \"sensor-cloud\": 57388,\n  \"sensor-fire\": 57386,\n  \"sensor-on\": 57387,\n  \"sensor-smoke\": 57388,\n  \"sensor-triangle-exclamation\": 57385,\n  \"sensor\": 57384,\n  \"septagon\": 59424,\n  \"server\": 62003,\n  \"shapes\": 63007,\n  \"share-all\": 62311,\n  \"share-alt-square\": 61921,\n  \"share-alt\": 61920,\n  \"share-from-square\": 61773,\n  \"share-nodes\": 61920,\n  \"share-square\": 61773,\n  \"share\": 61540,\n  \"sheep\": 63249,\n  \"sheet-plastic\": 58737,\n  \"shekel-sign\": 61963,\n  \"shekel\": 61963,\n  \"shelves-empty\": 57926,\n  \"shelves\": 62592,\n  \"sheqel-sign\": 61963,\n  \"sheqel\": 61963,\n  \"shield-alt\": 62445,\n  \"shield-blank\": 61746,\n  \"shield-cat\": 58738,\n  \"shield-check\": 62199,\n  \"shield-cross\": 63250,\n  \"shield-dog\": 58739,\n  \"shield-exclamation\": 57927,\n  \"shield-halved\": 62445,\n  \"shield-heart\": 58740,\n  \"shield-keyhole\": 57928,\n  \"shield-minus\": 57929,\n  \"shield-plus\": 57930,\n  \"shield-quartered\": 58741,\n  \"shield-slash\": 57931,\n  \"shield-times\": 57932,\n  \"shield-user\": 59401,\n  \"shield-virus\": 57452,\n  \"shield-xmark\": 57932,\n  \"shield\": 61746,\n  \"ship-large\": 59408,\n  \"ship\": 61978,\n  \"shipping-fast\": 62603,\n  \"shipping-timed\": 62604,\n  \"shirt-jersey\": 59095,\n  \"shirt-long-sleeve\": 58311,\n  \"shirt-running\": 58312,\n  \"shirt-tank-top\": 58313,\n  \"shirt\": 62803,\n  \"shish-kebab\": 63521,\n  \"shoe-prints\": 62795,\n  \"shoe\": 59096,\n  \"shop-24\": 59290,\n  \"shop-lock\": 58533,\n  \"shop-slash\": 57456,\n  \"shop\": 62799,\n  \"shopping-bag\": 62096,\n  \"shopping-basket-alt\": 57519,\n  \"shopping-basket\": 62097,\n  \"shopping-cart\": 61562,\n  \"shortcake\": 58341,\n  \"shorts\": 59097,\n  \"shovel-snow\": 63427,\n  \"shovel\": 63251,\n  \"shower-alt\": 57933,\n  \"shower-down\": 57933,\n  \"shower\": 62156,\n  \"shredder\": 63114,\n  \"shrimp\": 58440,\n  \"shuffle\": 61556,\n  \"shutters\": 58441,\n  \"shuttle-space-vertical\": 59327,\n  \"shuttle-space\": 61847,\n  \"shuttle-van\": 62902,\n  \"shuttlecock\": 62555,\n  \"sickle\": 63522,\n  \"sidebar-flip\": 57935,\n  \"sidebar\": 57934,\n  \"sigma\": 63115,\n  \"sign-hanging\": 62681,\n  \"sign-in-alt\": 62198,\n  \"sign-in\": 61584,\n  \"sign-language\": 62119,\n  \"sign-out-alt\": 62197,\n  \"sign-out\": 61579,\n  \"sign-post\": 58916,\n  \"sign-posts-wrench\": 58918,\n  \"sign-posts\": 58917,\n  \"sign\": 62681,\n  \"signal-1\": 63116,\n  \"signal-2\": 63117,\n  \"signal-3\": 63118,\n  \"signal-4\": 63119,\n  \"signal-5\": 61458,\n  \"signal-alt-1\": 63121,\n  \"signal-alt-2\": 63122,\n  \"signal-alt-3\": 63123,\n  \"signal-alt-4\": 63120,\n  \"signal-alt-slash\": 63124,\n  \"signal-alt\": 63120,\n  \"signal-bars-fair\": 63122,\n  \"signal-bars-good\": 63123,\n  \"signal-bars-slash\": 63124,\n  \"signal-bars-strong\": 63120,\n  \"signal-bars-weak\": 63121,\n  \"signal-bars\": 63120,\n  \"signal-fair\": 63117,\n  \"signal-good\": 63118,\n  \"signal-perfect\": 61458,\n  \"signal-slash\": 63125,\n  \"signal-stream-slash\": 57936,\n  \"signal-stream\": 63709,\n  \"signal-strong\": 63119,\n  \"signal-weak\": 63116,\n  \"signal\": 61458,\n  \"signapore-dollar-sign\": 59182,\n  \"signature-lock\": 58314,\n  \"signature-slash\": 58315,\n  \"signature\": 62903,\n  \"signing\": 62119,\n  \"signs-post\": 62071,\n  \"sim-card\": 63428,\n  \"sim-cards\": 57937,\n  \"single-quote-left\": 59419,\n  \"single-quote-right\": 59420,\n  \"sink\": 57453,\n  \"siren-on\": 57390,\n  \"siren\": 57389,\n  \"sitemap\": 61672,\n  \"skating\": 63429,\n  \"skeleton-ribs\": 58827,\n  \"skeleton\": 63008,\n  \"ski-boot-ski\": 58317,\n  \"ski-boot\": 58316,\n  \"ski-jump\": 63431,\n  \"ski-lift\": 63432,\n  \"skiing-nordic\": 63434,\n  \"skiing\": 63433,\n  \"skull-cow\": 63710,\n  \"skull-crossbones\": 63252,\n  \"skull\": 62796,\n  \"slash-back\": 92,\n  \"slash-forward\": 47,\n  \"slash\": 63253,\n  \"sledding\": 63435,\n  \"sleigh\": 63436,\n  \"slider-circle\": 59216,\n  \"slider\": 57938,\n  \"sliders-h-square\": 62448,\n  \"sliders-h\": 61918,\n  \"sliders-simple\": 57939,\n  \"sliders-up\": 62449,\n  \"sliders-v-square\": 62450,\n  \"sliders-v\": 62449,\n  \"sliders\": 61918,\n  \"slot-machine\": 58318,\n  \"smile-beam\": 62904,\n  \"smile-plus\": 62905,\n  \"smile-wink\": 62682,\n  \"smile\": 61720,\n  \"smog\": 63327,\n  \"smoke\": 63328,\n  \"smoking-ban\": 62797,\n  \"smoking\": 62605,\n  \"sms\": 63437,\n  \"snake\": 63254,\n  \"sneaker-running\": 59417,\n  \"sneaker\": 59098,\n  \"snooze\": 63616,\n  \"snow-blowing\": 63329,\n  \"snowboarding\": 63438,\n  \"snowflake-droplets\": 58817,\n  \"snowflake\": 62172,\n  \"snowflakes\": 63439,\n  \"snowman-head\": 63387,\n  \"snowman\": 63440,\n  \"snowmobile-blank\": 59332,\n  \"snowmobile\": 63441,\n  \"snowplow\": 63442,\n  \"soap\": 57454,\n  \"soccer-ball\": 61923,\n  \"socks\": 63126,\n  \"soft-serve\": 58368,\n  \"solar-panel\": 62906,\n  \"solar-system\": 57391,\n  \"sort-alpha-asc\": 61789,\n  \"sort-alpha-desc\": 63617,\n  \"sort-alpha-down-alt\": 63617,\n  \"sort-alpha-down\": 61789,\n  \"sort-alpha-up-alt\": 63618,\n  \"sort-alpha-up\": 61790,\n  \"sort-alt\": 63619,\n  \"sort-amount-asc\": 61792,\n  \"sort-amount-desc\": 63620,\n  \"sort-amount-down-alt\": 63620,\n  \"sort-amount-down\": 61792,\n  \"sort-amount-up-alt\": 63621,\n  \"sort-amount-up\": 61793,\n  \"sort-asc\": 61662,\n  \"sort-circle-down\": 57393,\n  \"sort-circle-up\": 57394,\n  \"sort-circle\": 57392,\n  \"sort-desc\": 61661,\n  \"sort-down\": 61661,\n  \"sort-numeric-asc\": 61794,\n  \"sort-numeric-desc\": 63622,\n  \"sort-numeric-down-alt\": 63622,\n  \"sort-numeric-down\": 61794,\n  \"sort-numeric-up-alt\": 63623,\n  \"sort-numeric-up\": 61795,\n  \"sort-shapes-down-alt\": 63625,\n  \"sort-shapes-down\": 63624,\n  \"sort-shapes-up-alt\": 63627,\n  \"sort-shapes-up\": 63626,\n  \"sort-size-down-alt\": 63629,\n  \"sort-size-down\": 63628,\n  \"sort-size-up-alt\": 63631,\n  \"sort-size-up\": 63630,\n  \"sort-up-down\": 57497,\n  \"sort-up\": 61662,\n  \"sort\": 61660,\n  \"soup\": 63523,\n  \"spa\": 62907,\n  \"space-shuttle\": 61847,\n  \"space-station-moon-alt\": 57396,\n  \"space-station-moon-construction\": 57396,\n  \"space-station-moon\": 57395,\n  \"spade\": 62196,\n  \"spaghetti-monster-flying\": 63099,\n  \"sparkle\": 58838,\n  \"sparkles\": 63632,\n  \"speaker\": 63711,\n  \"speakers\": 63712,\n  \"spell-check\": 63633,\n  \"spider-black-widow\": 63256,\n  \"spider-web\": 63257,\n  \"spider\": 63255,\n  \"spine\": 59233,\n  \"spinner-scale\": 58922,\n  \"spinner-third\": 62452,\n  \"spinner\": 61712,\n  \"spiral\": 59402,\n  \"split\": 57940,\n  \"splotch\": 62908,\n  \"spoon\": 62181,\n  \"sportsball\": 58443,\n  \"spray-can-sparkles\": 62928,\n  \"spray-can\": 62909,\n  \"sprinkler-ceiling\": 58444,\n  \"sprinkler\": 57397,\n  \"sprout\": 62680,\n  \"square-0\": 57941,\n  \"square-1\": 57942,\n  \"square-2\": 57943,\n  \"square-3\": 57944,\n  \"square-4\": 57945,\n  \"square-5\": 57946,\n  \"square-6\": 57947,\n  \"square-7\": 57948,\n  \"square-8\": 57949,\n  \"square-9\": 57950,\n  \"square-a-lock\": 58445,\n  \"square-a\": 57951,\n  \"square-ampersand\": 57952,\n  \"square-arrow-down-left\": 57953,\n  \"square-arrow-down-right\": 57954,\n  \"square-arrow-down\": 62265,\n  \"square-arrow-left\": 62266,\n  \"square-arrow-right\": 62267,\n  \"square-arrow-up-left\": 57955,\n  \"square-arrow-up-right\": 61772,\n  \"square-arrow-up\": 62268,\n  \"square-austral\": 59174,\n  \"square-australian-dollar\": 59160,\n  \"square-b\": 57956,\n  \"square-baht\": 59161,\n  \"square-bangladeshi-taka\": 59204,\n  \"square-binary\": 59035,\n  \"square-bitcoin\": 59122,\n  \"square-bolt\": 57957,\n  \"square-brazilian-real\": 59121,\n  \"square-c\": 57958,\n  \"square-caret-down\": 61776,\n  \"square-caret-left\": 61841,\n  \"square-caret-right\": 61778,\n  \"square-caret-up\": 61777,\n  \"square-cedi\": 59177,\n  \"square-cent\": 59120,\n  \"square-check\": 61770,\n  \"square-chevron-down\": 62249,\n  \"square-chevron-left\": 62250,\n  \"square-chevron-right\": 62251,\n  \"square-chevron-up\": 62252,\n  \"square-chf\": 59110,\n  \"square-code\": 57959,\n  \"square-colon\": 59194,\n  \"square-cruzeiro\": 59117,\n  \"square-currency\": 59148,\n  \"square-d\": 57960,\n  \"square-danish-krone\": 59207,\n  \"square-dashed-circle-plus\": 58818,\n  \"square-dashed\": 57961,\n  \"square-divide\": 57962,\n  \"square-dollar\": 62185,\n  \"square-dong\": 59151,\n  \"square-down-left\": 57963,\n  \"square-down-right\": 57964,\n  \"square-down\": 62288,\n  \"square-e\": 57965,\n  \"square-ellipsis-vertical\": 57967,\n  \"square-ellipsis\": 57966,\n  \"square-envelope\": 61849,\n  \"square-equals\": 59062,\n  \"square-euro\": 59186,\n  \"square-eurozone\": 59175,\n  \"square-exclamation\": 62241,\n  \"square-f\": 57968,\n  \"square-florin\": 59159,\n  \"square-fragile\": 62619,\n  \"square-franc\": 59183,\n  \"square-full\": 62556,\n  \"square-g\": 57969,\n  \"square-guarani\": 59150,\n  \"square-h\": 61693,\n  \"square-half-horizontal\": 59406,\n  \"square-half-stroke-horizontal\": 59407,\n  \"square-half-stroke\": 59283,\n  \"square-half\": 59282,\n  \"square-heart\": 62664,\n  \"square-hryvnia\": 59152,\n  \"square-i\": 57970,\n  \"square-indian-rupee\": 59125,\n  \"square-info\": 62223,\n  \"square-j\": 57971,\n  \"square-k\": 57972,\n  \"square-kanban\": 58504,\n  \"square-kip\": 59149,\n  \"square-l\": 57973,\n  \"square-lari\": 59199,\n  \"square-left\": 62289,\n  \"square-lira\": 59111,\n  \"square-list\": 58505,\n  \"square-litecoin\": 59127,\n  \"square-m\": 57974,\n  \"square-malaysian-ringgit\": 59208,\n  \"square-manat\": 59140,\n  \"square-microphone\": 59265,\n  \"square-mill\": 59146,\n  \"square-minus\": 61766,\n  \"square-n\": 57975,\n  \"square-naira\": 59144,\n  \"square-nfi\": 58742,\n  \"square-norwegian-krone\": 59143,\n  \"square-o\": 57976,\n  \"square-p\": 57977,\n  \"square-parking-slash\": 62999,\n  \"square-parking\": 62784,\n  \"square-pen\": 61771,\n  \"square-person-confined\": 58743,\n  \"square-peruvian-soles\": 59158,\n  \"square-peseta\": 59114,\n  \"square-peso\": 59162,\n  \"square-phone-flip\": 63611,\n  \"square-phone-hangup\": 57978,\n  \"square-phone\": 61592,\n  \"square-plus\": 61694,\n  \"square-polish-zloty\": 59190,\n  \"square-poll-horizontal\": 63106,\n  \"square-poll-vertical\": 63105,\n  \"square-q\": 57979,\n  \"square-quarters\": 58446,\n  \"square-question\": 62205,\n  \"square-quote\": 58153,\n  \"square-r\": 57980,\n  \"square-renminbi\": 59197,\n  \"square-right\": 62290,\n  \"square-ring\": 58447,\n  \"square-root-alt\": 63128,\n  \"square-root-variable\": 63128,\n  \"square-root\": 63127,\n  \"square-rss\": 61763,\n  \"square-ruble\": 59128,\n  \"square-rupee\": 59157,\n  \"square-rupiah\": 59154,\n  \"square-s\": 57981,\n  \"square-share-nodes\": 61921,\n  \"square-shekel\": 59189,\n  \"square-sliders-vertical\": 62450,\n  \"square-sliders\": 62448,\n  \"square-small\": 57982,\n  \"square-star\": 57983,\n  \"square-sterling\": 59155,\n  \"square-swedish-krona\": 59164,\n  \"square-t\": 57984,\n  \"square-tenge\": 59185,\n  \"square-terminal\": 58154,\n  \"square-this-way-up\": 62623,\n  \"square-tugrik\": 59176,\n  \"square-turkish-lira\": 59167,\n  \"square-u\": 57985,\n  \"square-up-left\": 57986,\n  \"square-up-right\": 62304,\n  \"square-up\": 62291,\n  \"square-user\": 57987,\n  \"square-v\": 57988,\n  \"square-virus\": 58744,\n  \"square-w\": 57989,\n  \"square-wine-glass-crack\": 62619,\n  \"square-won\": 59145,\n  \"square-x\": 57990,\n  \"square-xmark\": 62163,\n  \"square-y\": 57991,\n  \"square-yen\": 59172,\n  \"square-z\": 57992,\n  \"square\": 61640,\n  \"squareapore-dollar\": 59187,\n  \"squid\": 58448,\n  \"squirrel\": 63258,\n  \"stadium\": 59084,\n  \"staff-aesculapius\": 58745,\n  \"staff-snake\": 58745,\n  \"staff\": 63259,\n  \"stair-car\": 59333,\n  \"stairs\": 57993,\n  \"stamp\": 62911,\n  \"standard-definition\": 57994,\n  \"stapler\": 58799,\n  \"star-and-crescent\": 63129,\n  \"star-christmas\": 63444,\n  \"star-circle\": 57635,\n  \"star-exclamation\": 62195,\n  \"star-half-alt\": 62912,\n  \"star-half-stroke\": 62912,\n  \"star-half\": 61577,\n  \"star-of-david\": 63130,\n  \"star-of-life\": 63009,\n  \"star-sharp-half-alt\": 57997,\n  \"star-sharp-half-stroke\": 57997,\n  \"star-sharp-half\": 57996,\n  \"star-sharp\": 57995,\n  \"star-shooting\": 57398,\n  \"star\": 61445,\n  \"starfighter-alt-advanced\": 57998,\n  \"starfighter-alt\": 57400,\n  \"starfighter-twin-ion-engine-advanced\": 57998,\n  \"starfighter-twin-ion-engine\": 57400,\n  \"starfighter\": 57399,\n  \"stars\": 63330,\n  \"starship-freighter\": 57402,\n  \"starship\": 57401,\n  \"steak\": 63524,\n  \"steering-wheel\": 63010,\n  \"step-backward\": 61512,\n  \"step-forward\": 61521,\n  \"sterling-sign\": 61780,\n  \"stethoscope\": 61681,\n  \"sticky-note\": 62025,\n  \"stocking\": 63445,\n  \"stomach\": 63011,\n  \"stool\": 59520,\n  \"stop-circle\": 62093,\n  \"stop\": 61517,\n  \"stopwatch-20\": 57455,\n  \"stopwatch\": 62194,\n  \"store-24\": 59291,\n  \"store-alt-slash\": 57456,\n  \"store-alt\": 62799,\n  \"store-lock\": 58534,\n  \"store-slash\": 57457,\n  \"store\": 62798,\n  \"strawberry\": 58155,\n  \"stream\": 62800,\n  \"street-view\": 61981,\n  \"stretcher\": 63525,\n  \"strikethrough\": 61644,\n  \"stroopwafel\": 62801,\n  \"subscript\": 61740,\n  \"subtitles-slash\": 58896,\n  \"subtitles\": 58895,\n  \"subtract\": 61544,\n  \"subway-tunnel\": 58019,\n  \"subway\": 62009,\n  \"suitcase-medical\": 61690,\n  \"suitcase-rolling\": 62913,\n  \"suitcase\": 61682,\n  \"sun-alt\": 57999,\n  \"sun-bright\": 57999,\n  \"sun-cloud\": 63331,\n  \"sun-dust\": 63332,\n  \"sun-haze\": 63333,\n  \"sun-plant-wilt\": 58746,\n  \"sun\": 61829,\n  \"sunglasses\": 63634,\n  \"sunrise\": 63334,\n  \"sunset\": 63335,\n  \"superscript\": 61739,\n  \"surprise\": 62914,\n  \"sushi-roll\": 58507,\n  \"sushi\": 58506,\n  \"swap-arrows\": 58890,\n  \"swap\": 58889,\n  \"swatchbook\": 62915,\n  \"swedish-krona-sign\": 59198,\n  \"swimmer\": 62916,\n  \"swimming-pool\": 62917,\n  \"sword-laser-alt\": 57404,\n  \"sword-laser\": 57403,\n  \"sword\": 63260,\n  \"swords-laser\": 57405,\n  \"swords\": 63261,\n  \"symbols\": 63598,\n  \"synagogue\": 63131,\n  \"sync-alt\": 62193,\n  \"sync\": 61473,\n  \"syringe\": 62606,\n  \"t-rex\": 58921,\n  \"t-shirt\": 62803,\n  \"t\": 84,\n  \"table-bar\": 59550,\n  \"table-cells-column-lock\": 59000,\n  \"table-cells-column-unlock\": 59024,\n  \"table-cells-columns\": 59052,\n  \"table-cells-header-lock\": 59054,\n  \"table-cells-header-unlock\": 59055,\n  \"table-cells-header\": 59053,\n  \"table-cells-large\": 61449,\n  \"table-cells-lock\": 59001,\n  \"table-cells-merge\": 59532,\n  \"table-cells-row-lock\": 59002,\n  \"table-cells-row-unlock\": 59025,\n  \"table-cells-rows\": 59056,\n  \"table-cells-split\": 59533,\n  \"table-cells-unlock\": 59026,\n  \"table-cells\": 61450,\n  \"table-columns-add-after\": 59534,\n  \"table-columns-add-before\": 59535,\n  \"table-columns-merge-next\": 59536,\n  \"table-columns-merge-previous\": 59537,\n  \"table-columns-remove-after\": 59538,\n  \"table-columns-remove-before\": 59539,\n  \"table-columns\": 61659,\n  \"table-dining\": 59522,\n  \"table-layout\": 58000,\n  \"table-list\": 61451,\n  \"table-picnic\": 58157,\n  \"table-pivot\": 58001,\n  \"table-rows-add-above\": 59540,\n  \"table-rows-add-below\": 59541,\n  \"table-rows-merge-next\": 59542,\n  \"table-rows-merge-previous\": 59543,\n  \"table-rows-remove-above\": 59544,\n  \"table-rows-remove-below\": 59545,\n  \"table-rows\": 58002,\n  \"table-slash\": 59546,\n  \"table-tennis-paddle-ball\": 62557,\n  \"table-tennis\": 62557,\n  \"table-tree\": 58003,\n  \"table\": 61646,\n  \"tablet-alt\": 62458,\n  \"tablet-android-alt\": 62460,\n  \"tablet-android\": 62459,\n  \"tablet-button\": 61706,\n  \"tablet-rugged\": 62607,\n  \"tablet-screen-button\": 62458,\n  \"tablet-screen\": 62460,\n  \"tablet\": 62459,\n  \"tablets\": 62608,\n  \"tachograph-digital\": 62822,\n  \"tachometer-alt-average\": 63012,\n  \"tachometer-alt-fast\": 63013,\n  \"tachometer-alt-fastest\": 63014,\n  \"tachometer-alt-slow\": 63015,\n  \"tachometer-alt-slowest\": 63016,\n  \"tachometer-alt\": 63013,\n  \"tachometer-average\": 63017,\n  \"tachometer-fast\": 63018,\n  \"tachometer-fastest\": 63019,\n  \"tachometer-slow\": 63020,\n  \"tachometer-slowest\": 63021,\n  \"tachometer\": 63018,\n  \"taco\": 63526,\n  \"tag\": 61483,\n  \"tags\": 61484,\n  \"tally-1\": 58004,\n  \"tally-2\": 58005,\n  \"tally-3\": 58006,\n  \"tally-4\": 58007,\n  \"tally-5\": 63132,\n  \"tally\": 63132,\n  \"tamale\": 58449,\n  \"tanakh\": 63527,\n  \"tank-recovery\": 59429,\n  \"tank-water\": 58450,\n  \"tape\": 62683,\n  \"tarp-droplet\": 58748,\n  \"tarp\": 58747,\n  \"tasks-alt\": 63528,\n  \"tasks\": 61614,\n  \"taurus\": 59471,\n  \"taxi-bus\": 58008,\n  \"taxi\": 61882,\n  \"teddy-bear\": 58319,\n  \"teeth-open\": 63023,\n  \"teeth\": 63022,\n  \"telescope\": 57406,\n  \"teletype-answer\": 58041,\n  \"teletype\": 61924,\n  \"television\": 62060,\n  \"temperature-0\": 62155,\n  \"temperature-1\": 62154,\n  \"temperature-2\": 62153,\n  \"temperature-3\": 62152,\n  \"temperature-4\": 62151,\n  \"temperature-arrow-down\": 57407,\n  \"temperature-arrow-up\": 57408,\n  \"temperature-down\": 57407,\n  \"temperature-empty\": 62155,\n  \"temperature-frigid\": 63336,\n  \"temperature-full\": 62151,\n  \"temperature-half\": 62153,\n  \"temperature-high\": 63337,\n  \"temperature-hot\": 63338,\n  \"temperature-list\": 58009,\n  \"temperature-low\": 63339,\n  \"temperature-quarter\": 62154,\n  \"temperature-slash\": 59339,\n  \"temperature-snow\": 63336,\n  \"temperature-sun\": 63338,\n  \"temperature-three-quarters\": 62152,\n  \"temperature-up\": 57408,\n  \"tenge-sign\": 63447,\n  \"tenge\": 63447,\n  \"tennis-ball\": 62558,\n  \"tent-arrow-down-to-line\": 58750,\n  \"tent-arrow-left-right\": 58751,\n  \"tent-arrow-turn-left\": 58752,\n  \"tent-arrows-down\": 58753,\n  \"tent-circus\": 59085,\n  \"tent-double-peak\": 58919,\n  \"tent\": 58749,\n  \"tents\": 58754,\n  \"terminal\": 61728,\n  \"text-height\": 61492,\n  \"text-size\": 63636,\n  \"text-slash\": 63613,\n  \"text-width\": 61493,\n  \"text\": 63635,\n  \"th-large\": 61449,\n  \"th-list\": 61451,\n  \"th\": 61450,\n  \"theater-masks\": 63024,\n  \"thermometer-0\": 62155,\n  \"thermometer-1\": 62154,\n  \"thermometer-2\": 62153,\n  \"thermometer-3\": 62152,\n  \"thermometer-4\": 62151,\n  \"thermometer-empty\": 62155,\n  \"thermometer-full\": 62151,\n  \"thermometer-half\": 62153,\n  \"thermometer-quarter\": 62154,\n  \"thermometer-three-quarters\": 62152,\n  \"thermometer\": 62609,\n  \"theta\": 63134,\n  \"thought-bubble\": 58158,\n  \"thumb-tack-slash\": 59023,\n  \"thumb-tack\": 61581,\n  \"thumbs-down\": 61797,\n  \"thumbs-up\": 61796,\n  \"thumbtack-angle-slash\": 59218,\n  \"thumbtack-angle\": 59217,\n  \"thumbtack-slash\": 59023,\n  \"thumbtack\": 61581,\n  \"thunderstorm-moon\": 63341,\n  \"thunderstorm-sun\": 63342,\n  \"thunderstorm\": 63340,\n  \"tick\": 58159,\n  \"ticket-airline\": 58010,\n  \"ticket-alt\": 62463,\n  \"ticket-perforated-plane\": 58010,\n  \"ticket-perforated\": 58942,\n  \"ticket-plane\": 58010,\n  \"ticket-simple\": 62463,\n  \"ticket\": 61765,\n  \"tickets-airline\": 58011,\n  \"tickets-perforated-plane\": 58011,\n  \"tickets-perforated\": 58943,\n  \"tickets-plane\": 58011,\n  \"tickets-simple\": 58969,\n  \"tickets\": 58968,\n  \"tilde\": 126,\n  \"timeline-arrow\": 58013,\n  \"timeline\": 58012,\n  \"timer\": 58014,\n  \"times-circle\": 61527,\n  \"times-hexagon\": 62190,\n  \"times-octagon\": 62192,\n  \"times-rectangle\": 62480,\n  \"times-square\": 62163,\n  \"times-to-slot\": 63345,\n  \"times\": 61453,\n  \"tint-slash\": 62919,\n  \"tint\": 61507,\n  \"tire-flat\": 63026,\n  \"tire-pressure-warning\": 63027,\n  \"tire-rugged\": 63028,\n  \"tire\": 63025,\n  \"tired\": 62920,\n  \"toggle-large-off\": 58800,\n  \"toggle-large-on\": 58801,\n  \"toggle-off\": 61956,\n  \"toggle-on\": 61957,\n  \"toilet-paper-alt\": 63262,\n  \"toilet-paper-blank-under\": 58016,\n  \"toilet-paper-blank\": 63262,\n  \"toilet-paper-check\": 58802,\n  \"toilet-paper-reverse-alt\": 58016,\n  \"toilet-paper-reverse-slash\": 58017,\n  \"toilet-paper-reverse\": 58016,\n  \"toilet-paper-slash\": 57458,\n  \"toilet-paper-under-slash\": 58017,\n  \"toilet-paper-under\": 58016,\n  \"toilet-paper-xmark\": 58803,\n  \"toilet-paper\": 63262,\n  \"toilet-portable\": 58755,\n  \"toilet\": 63448,\n  \"toilets-portable\": 58756,\n  \"tomato\": 58160,\n  \"tombstone-alt\": 63265,\n  \"tombstone-blank\": 63265,\n  \"tombstone\": 63264,\n  \"toolbox\": 62802,\n  \"tools\": 63449,\n  \"tooth\": 62921,\n  \"toothbrush\": 63029,\n  \"torah\": 63136,\n  \"torii-gate\": 63137,\n  \"tornado\": 63343,\n  \"tower-broadcast\": 62745,\n  \"tower-cell\": 58757,\n  \"tower-control\": 58018,\n  \"tower-observation\": 58758,\n  \"tower-receive\": 59555,\n  \"tractor\": 63266,\n  \"trademark\": 62044,\n  \"traffic-cone\": 63030,\n  \"traffic-light-go\": 63032,\n  \"traffic-light-slow\": 63033,\n  \"traffic-light-stop\": 63034,\n  \"traffic-light\": 63031,\n  \"trailer\": 57409,\n  \"train-stop\": 59423,\n  \"train-subway-tunnel\": 58019,\n  \"train-subway\": 62009,\n  \"train-track\": 58451,\n  \"train-tram\": 58804,\n  \"train-tunnel\": 58452,\n  \"train\": 62008,\n  \"tram\": 63450,\n  \"transducer\": 59430,\n  \"transformer-bolt\": 58020,\n  \"transgender-alt\": 61989,\n  \"transgender\": 61989,\n  \"transmission\": 59394,\n  \"transporter-1\": 57411,\n  \"transporter-2\": 57412,\n  \"transporter-3\": 57413,\n  \"transporter-4\": 58021,\n  \"transporter-5\": 58022,\n  \"transporter-6\": 58023,\n  \"transporter-7\": 58024,\n  \"transporter-empty\": 57414,\n  \"transporter\": 57410,\n  \"trash-alt-slash\": 58029,\n  \"trash-alt\": 62189,\n  \"trash-arrow-turn-left\": 63637,\n  \"trash-arrow-up\": 63529,\n  \"trash-can-arrow-turn-left\": 63638,\n  \"trash-can-arrow-up\": 63530,\n  \"trash-can-check\": 58025,\n  \"trash-can-clock\": 58026,\n  \"trash-can-list\": 58027,\n  \"trash-can-plus\": 58028,\n  \"trash-can-slash\": 58029,\n  \"trash-can-undo\": 63638,\n  \"trash-can-xmark\": 58030,\n  \"trash-can\": 62189,\n  \"trash-check\": 58031,\n  \"trash-circle\": 57638,\n  \"trash-clock\": 58032,\n  \"trash-list\": 58033,\n  \"trash-plus\": 58034,\n  \"trash-restore-alt\": 63530,\n  \"trash-restore\": 63529,\n  \"trash-slash\": 58035,\n  \"trash-undo-alt\": 63638,\n  \"trash-undo\": 63637,\n  \"trash-xmark\": 58036,\n  \"trash\": 61944,\n  \"treasure-chest\": 63267,\n  \"tree-alt\": 62464,\n  \"tree-christmas\": 63451,\n  \"tree-city\": 58759,\n  \"tree-deciduous\": 62464,\n  \"tree-decorated\": 63452,\n  \"tree-large\": 63453,\n  \"tree-palm\": 63531,\n  \"tree\": 61883,\n  \"trees\": 63268,\n  \"trian-balbot\": 58460,\n  \"triangle-circle-square\": 63007,\n  \"triangle-exclamation\": 61553,\n  \"triangle-instrument\": 63714,\n  \"triangle-music\": 63714,\n  \"triangle-person-digging\": 63581,\n  \"triangle\": 62188,\n  \"tricycle-adult\": 58820,\n  \"tricycle\": 58819,\n  \"trillium\": 58760,\n  \"triple-chevrons-down\": 59383,\n  \"triple-chevrons-left\": 59384,\n  \"triple-chevrons-right\": 59385,\n  \"triple-chevrons-up\": 59386,\n  \"trombone\": 59266,\n  \"trophy-alt\": 62187,\n  \"trophy-star\": 62187,\n  \"trophy\": 61585,\n  \"trowel-bricks\": 58762,\n  \"trowel\": 58761,\n  \"truck-arrow-right\": 58763,\n  \"truck-bolt\": 58320,\n  \"truck-clock\": 62604,\n  \"truck-container-empty\": 58037,\n  \"truck-container\": 62684,\n  \"truck-couch\": 62685,\n  \"truck-droplet\": 58764,\n  \"truck-fast\": 62603,\n  \"truck-field-un\": 58766,\n  \"truck-field\": 58765,\n  \"truck-fire\": 58970,\n  \"truck-flatbed\": 58038,\n  \"truck-front\": 58039,\n  \"truck-ladder\": 58967,\n  \"truck-loading\": 62686,\n  \"truck-medical\": 61689,\n  \"truck-monster\": 63035,\n  \"truck-moving\": 62687,\n  \"truck-pickup\": 63036,\n  \"truck-plane\": 58767,\n  \"truck-plow\": 63454,\n  \"truck-ramp-box\": 62686,\n  \"truck-ramp-couch\": 62685,\n  \"truck-ramp\": 62688,\n  \"truck-suv\": 59334,\n  \"truck-tow\": 58040,\n  \"truck-utensils\": 58920,\n  \"truck\": 61649,\n  \"trumpet\": 63715,\n  \"try\": 58043,\n  \"tshirt\": 62803,\n  \"tty-answer\": 58041,\n  \"tty\": 61924,\n  \"tugrik-sign\": 58042,\n  \"turkey\": 63269,\n  \"turkish-lira-sign\": 58043,\n  \"turkish-lira\": 58043,\n  \"turn-down-left\": 58161,\n  \"turn-down-right\": 58453,\n  \"turn-down\": 62398,\n  \"turn-left-down\": 58935,\n  \"turn-left-up\": 58936,\n  \"turn-left\": 58934,\n  \"turn-right\": 58937,\n  \"turn-up\": 62399,\n  \"turntable\": 63716,\n  \"turtle\": 63270,\n  \"tv-alt\": 62060,\n  \"tv-music\": 63718,\n  \"tv-retro\": 62465,\n  \"tv\": 62060,\n  \"typewriter\": 63719,\n  \"u-turn-down-left\": 59375,\n  \"u-turn-down-right\": 59376,\n  \"u-turn-left-down\": 59377,\n  \"u-turn-left-up\": 59378,\n  \"u-turn-right-down\": 59379,\n  \"u-turn-right-up\": 59380,\n  \"u-turn-up-left\": 59381,\n  \"u-turn-up-right\": 59382,\n  \"u-turn\": 59377,\n  \"u\": 85,\n  \"ufo-beam\": 57416,\n  \"ufo\": 57415,\n  \"umbrella-alt\": 58044,\n  \"umbrella-beach\": 62922,\n  \"umbrella-simple\": 58044,\n  \"umbrella\": 61673,\n  \"underline\": 61645,\n  \"undo-alt\": 62186,\n  \"undo\": 61666,\n  \"unicorn\": 63271,\n  \"unicycle\": 59335,\n  \"uniform-martial-arts\": 58321,\n  \"union\": 63138,\n  \"universal-access\": 62106,\n  \"university\": 61852,\n  \"unlink\": 61735,\n  \"unlock-alt\": 61758,\n  \"unlock-keyhole\": 61758,\n  \"unlock\": 61596,\n  \"unsorted\": 61660,\n  \"up-down-left-right\": 61618,\n  \"up-down\": 62264,\n  \"up-from-bracket\": 58768,\n  \"up-from-dotted-line\": 58454,\n  \"up-from-line\": 62278,\n  \"up-left\": 58045,\n  \"up-long-to-line\": 59078,\n  \"up-long\": 62220,\n  \"up-right-and-down-left-from-center\": 62500,\n  \"up-right-from-square\": 62301,\n  \"up-right\": 58046,\n  \"up-to-bracket\": 58990,\n  \"up-to-dotted-line\": 58455,\n  \"up-to-line\": 62285,\n  \"up\": 62295,\n  \"upload\": 61587,\n  \"usb-drive\": 63721,\n  \"usd-circle\": 62184,\n  \"usd-square\": 62185,\n  \"usd\": 36,\n  \"user-alien\": 57418,\n  \"user-alt-slash\": 62726,\n  \"user-alt\": 61447,\n  \"user-astronaut\": 62715,\n  \"user-beard-bolt\": 59017,\n  \"user-beard\": 59304,\n  \"user-bounty-hunter\": 58047,\n  \"user-chart\": 63139,\n  \"user-check\": 62716,\n  \"user-chef-hair-long\": 59305,\n  \"user-chef\": 58322,\n  \"user-circle-minus\": 59306,\n  \"user-circle-plus\": 59307,\n  \"user-circle\": 62141,\n  \"user-clock\": 62717,\n  \"user-cog\": 62718,\n  \"user-construction\": 63532,\n  \"user-cowboy\": 63722,\n  \"user-crown\": 63140,\n  \"user-dashed\": 59308,\n  \"user-doctor-hair-long\": 58457,\n  \"user-doctor-hair-mullet\": 59309,\n  \"user-doctor-hair\": 58456,\n  \"user-doctor-message\": 63534,\n  \"user-doctor\": 61680,\n  \"user-edit\": 62719,\n  \"user-friends\": 62720,\n  \"user-gear\": 62718,\n  \"user-graduate\": 62721,\n  \"user-group-crown\": 63141,\n  \"user-group-simple\": 58883,\n  \"user-group\": 62720,\n  \"user-hair-buns\": 58323,\n  \"user-hair-long\": 58459,\n  \"user-hair-mullet\": 58460,\n  \"user-hair\": 58458,\n  \"user-hard-hat\": 63532,\n  \"user-hat-tie-magnifying-glass\": 59311,\n  \"user-hat-tie\": 59310,\n  \"user-headset\": 63533,\n  \"user-helmet-safety\": 63532,\n  \"user-hoodie\": 59018,\n  \"user-injured\": 63272,\n  \"user-key\": 59312,\n  \"user-large-slash\": 62726,\n  \"user-large\": 61447,\n  \"user-lock\": 62722,\n  \"user-magnifying-glass\": 58821,\n  \"user-md-chat\": 63534,\n  \"user-md\": 61680,\n  \"user-message\": 59313,\n  \"user-microphone\": 59314,\n  \"user-minus\": 62723,\n  \"user-music\": 63723,\n  \"user-ninja\": 62724,\n  \"user-nurse-hair-long\": 58462,\n  \"user-nurse-hair\": 58461,\n  \"user-nurse\": 63535,\n  \"user-pen\": 62719,\n  \"user-pilot-hair-long\": 59315,\n  \"user-pilot-tie-hair-long\": 59316,\n  \"user-pilot-tie\": 58049,\n  \"user-pilot\": 58048,\n  \"user-plus\": 62004,\n  \"user-police-hair-long\": 59317,\n  \"user-police-tie-hair-long\": 59318,\n  \"user-police-tie\": 58164,\n  \"user-police\": 58163,\n  \"user-question\": 59319,\n  \"user-robot-xmarks\": 58535,\n  \"user-robot\": 57419,\n  \"user-secret\": 61979,\n  \"user-shakespeare\": 58050,\n  \"user-shield\": 62725,\n  \"user-sith\": 59320,\n  \"user-slash\": 62726,\n  \"user-tag\": 62727,\n  \"user-tie-hair-long\": 58464,\n  \"user-tie-hair-mullet\": 59321,\n  \"user-tie-hair\": 58463,\n  \"user-tie\": 62728,\n  \"user-times\": 62005,\n  \"user-unlock\": 57432,\n  \"user-viewfinder\": 59253,\n  \"user-visor\": 57420,\n  \"user-vneck-hair-long\": 58467,\n  \"user-vneck-hair-mullet\": 59322,\n  \"user-vneck-hair\": 58466,\n  \"user-vneck\": 58465,\n  \"user-xmark\": 62005,\n  \"user\": 61447,\n  \"users-between-lines\": 58769,\n  \"users-class\": 63037,\n  \"users-cog\": 62729,\n  \"users-crown\": 63141,\n  \"users-gear\": 62729,\n  \"users-line\": 58770,\n  \"users-medical\": 63536,\n  \"users-rays\": 58771,\n  \"users-rectangle\": 58772,\n  \"users-slash\": 57459,\n  \"users-viewfinder\": 58773,\n  \"users\": 61632,\n  \"utensil-fork\": 62179,\n  \"utensil-knife\": 62180,\n  \"utensil-spoon\": 62181,\n  \"utensils-alt\": 62182,\n  \"utensils-slash\": 58468,\n  \"utensils\": 62183,\n  \"utility-can\": 59549,\n  \"utility-pole-double\": 58052,\n  \"utility-pole\": 58051,\n  \"v\": 86,\n  \"vacuum-robot\": 57422,\n  \"vacuum\": 57421,\n  \"value-absolute\": 63142,\n  \"van-shuttle\": 62902,\n  \"van\": 59336,\n  \"vault\": 58053,\n  \"vcard\": 62139,\n  \"vector-circle\": 62957,\n  \"vector-polygon\": 62958,\n  \"vector-square\": 62959,\n  \"vent-damper\": 58469,\n  \"venus-double\": 61990,\n  \"venus-mars\": 61992,\n  \"venus\": 61985,\n  \"vest-patches\": 57478,\n  \"vest\": 57477,\n  \"vhs\": 63724,\n  \"vial-circle-check\": 58774,\n  \"vial-vertical\": 59234,\n  \"vial-virus\": 58775,\n  \"vial\": 62610,\n  \"vials\": 62611,\n  \"video-arrow-down-left\": 58056,\n  \"video-arrow-up-right\": 58057,\n  \"video-camera\": 61501,\n  \"video-circle\": 57643,\n  \"video-down-to-line\": 59254,\n  \"video-handheld\": 63656,\n  \"video-plus\": 62689,\n  \"video-question\": 59255,\n  \"video-slash\": 62690,\n  \"video\": 61501,\n  \"vihara\": 63143,\n  \"violin\": 63725,\n  \"virgo\": 59472,\n  \"virus-covid-slash\": 58537,\n  \"virus-covid\": 58536,\n  \"virus-slash\": 57461,\n  \"virus\": 57460,\n  \"viruses\": 57462,\n  \"voicemail\": 63639,\n  \"volcano\": 63344,\n  \"volleyball-ball\": 62559,\n  \"volleyball\": 62559,\n  \"volume-control-phone\": 62112,\n  \"volume-down\": 61479,\n  \"volume-high\": 61480,\n  \"volume-low\": 61479,\n  \"volume-medium\": 63144,\n  \"volume-mute\": 63145,\n  \"volume-off\": 61478,\n  \"volume-slash\": 62178,\n  \"volume-times\": 63145,\n  \"volume-up\": 61480,\n  \"volume-xmark\": 63145,\n  \"volume\": 63144,\n  \"vote-nay\": 63345,\n  \"vote-yea\": 63346,\n  \"vr-cardboard\": 63273,\n  \"w\": 87,\n  \"waffle\": 58470,\n  \"wagon-covered\": 63726,\n  \"walker\": 63537,\n  \"walkie-talkie\": 63727,\n  \"walking\": 62804,\n  \"wall-brick\": 58331,\n  \"wallet\": 62805,\n  \"wand-magic-sparkles\": 58058,\n  \"wand-magic\": 61648,\n  \"wand-sparkles\": 63275,\n  \"wand\": 63274,\n  \"wardrobe\": 59521,\n  \"warehouse-alt\": 62613,\n  \"warehouse-full\": 62613,\n  \"warehouse\": 62612,\n  \"warning\": 61553,\n  \"washer\": 63640,\n  \"washing-machine\": 63640,\n  \"watch-apple\": 58059,\n  \"watch-calculator\": 63728,\n  \"watch-fitness\": 63038,\n  \"watch-smart\": 58060,\n  \"watch\": 62177,\n  \"water-arrow-down\": 63348,\n  \"water-arrow-up\": 63349,\n  \"water-ladder\": 62917,\n  \"water-lower\": 63348,\n  \"water-rise\": 63349,\n  \"water-temp\": 59434,\n  \"water-temperature\": 59434,\n  \"water\": 63347,\n  \"watermelon-slice\": 58167,\n  \"wave-pulse\": 62968,\n  \"wave-sine\": 63641,\n  \"wave-square\": 63550,\n  \"wave-triangle\": 63642,\n  \"wave\": 58971,\n  \"waveform-circle\": 57645,\n  \"waveform-lines\": 63730,\n  \"waveform-path\": 63730,\n  \"waveform\": 63729,\n  \"waves-sine\": 58973,\n  \"web-awesome\": 59010,\n  \"webcam-slash\": 63539,\n  \"webcam\": 63538,\n  \"webhook\": 58837,\n  \"weight-hanging\": 62925,\n  \"weight-scale\": 62614,\n  \"weight\": 62614,\n  \"whale\": 63276,\n  \"wheat-alt\": 58061,\n  \"wheat-awn-circle-exclamation\": 58776,\n  \"wheat-awn-slash\": 58168,\n  \"wheat-awn\": 58061,\n  \"wheat-slash\": 58169,\n  \"wheat\": 63277,\n  \"wheelchair-alt\": 58062,\n  \"wheelchair-move\": 58062,\n  \"wheelchair\": 61843,\n  \"whiskey-glass-ice\": 63393,\n  \"whiskey-glass\": 63392,\n  \"whistle\": 62560,\n  \"wifi-1\": 63146,\n  \"wifi-2\": 63147,\n  \"wifi-3\": 61931,\n  \"wifi-exclamation\": 58063,\n  \"wifi-fair\": 63147,\n  \"wifi-slash\": 63148,\n  \"wifi-strong\": 61931,\n  \"wifi-weak\": 63146,\n  \"wifi\": 61931,\n  \"wind-circle-exclamation\": 63350,\n  \"wind-turbine\": 63643,\n  \"wind-warning\": 63350,\n  \"wind\": 63278,\n  \"window-alt\": 62479,\n  \"window-close\": 62480,\n  \"window-flip\": 62479,\n  \"window-frame-open\": 57424,\n  \"window-frame\": 57423,\n  \"window-maximize\": 62160,\n  \"window-minimize\": 62161,\n  \"window-restore\": 62162,\n  \"window\": 62478,\n  \"windsock\": 63351,\n  \"wine-bottle\": 63279,\n  \"wine-glass-alt\": 62926,\n  \"wine-glass-crack\": 62651,\n  \"wine-glass-empty\": 62926,\n  \"wine-glass\": 62691,\n  \"wireless\": 59359,\n  \"won-sign\": 61785,\n  \"won\": 61785,\n  \"worm\": 58777,\n  \"wreath-laurel\": 58834,\n  \"wreath\": 63458,\n  \"wrench-simple\": 58065,\n  \"wrench\": 61613,\n  \"x-ray\": 62615,\n  \"x\": 88,\n  \"xmark-circle\": 61527,\n  \"xmark-hexagon\": 62190,\n  \"xmark-large\": 58779,\n  \"xmark-octagon\": 62192,\n  \"xmark-square\": 62163,\n  \"xmark-to-slot\": 63345,\n  \"xmark\": 61453,\n  \"xmarks-lines\": 58778,\n  \"y\": 89,\n  \"yen-sign\": 61783,\n  \"yen\": 61783,\n  \"yin-yang\": 63149,\n  \"z\": 90,\n  \"zap\": 61671,\n  \"zzz\": 63616\n}"
  },
  {
    "path": "packages/fontawesome-pro-duotone-regular/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontawesome-pro-duotone-regular\",\n  \"version\": \"0.2.0\",\n  \"description\": \"Fontawesome Pro Duotone Regular font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"fontawesome-pro-duotone-regular\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/fontawesome-pro-duotone-regular\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-regular/react-native-vector-icons-fontawesome-pro-duotone-regular.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-fontawesome-pro-duotone-regular'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\n\n  s.script_phase = {\n    name: 'Copy Custom Fonts',\n    execution_position: :after_compile,\n    script: <<~SCRIPT\n      set -e\n\n      HEAD=\"(RNVI-fontawesome-pro-duotone-regular)\"\n\n      echo \"${HEAD} START_COPY_FONTS\"\n\n      echo \"${HEAD} PWD: $(pwd)\"\n\n      #\n      # Find the custom font Directory\n      #\n\n      # Assume the project root is always two directories above the POD_ROOT\n      echo \"${HEAD} PODS_ROOT: $PODS_ROOT\"\n\n      PROJECT_ROOT=\"${PODS_ROOT}/../..\"\n      echo \"${HEAD} PROJECT_ROOT: $PROJECT_ROOT\"\n\n      cd $PROJECT_ROOT\n      FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/\"//g')\n      if [ -z \"$FONTS_DIR\" ]; then\n        FONTS_DIR=\"rnvi-fonts\"\n      fi\n      echo \"${HEAD} FONTS_DIR: $FONTS_DIR\"\n\n      FONTS_DIR=\"${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-duotone-regular\"\n      if [ ! -d \"$FONTS_DIR\" ]; then\n        echo \"${HEAD} $FONTS_DIR not found\"\n        exit 0\n      fi\n\n      #\n      # Find the destination we copy to\n      #\n\n      echo \"${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR\"\n      XCODE_DIR=$(ls -d \"$PODS_CONFIGURATION_BUILD_DIR\"/*.app)\n      echo \"${HEAD} XCODE_DIR: $XCODE_DIR\"\n      if [ -z \"$XCODE_DIR\" ]; then\n        echo \"Could not find XCODE_DIR to copy fonts to\"\n        exit 1\n      fi\n\n      DEST_DIR=\"${XCODE_DIR}\"\n      mkdir -p \"$DEST_DIR\"\n\n      #\n      # Copy the fonts\n      #\n\n      echo \"${HEAD} Copying the following files to $DEST_DIR\"\n      ls \"$FONTS_DIR\" | sed \"s/^/${HEAD} /\"\n\n      rsync -avr --copy-links --no-relative $FONTS_DIR/ \"$DEST_DIR\"\n\n      echo \"${HEAD} END:RNVI_COPY_FONTS\"\n    SCRIPT\n  }\nend\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-regular/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProDuotoneRegular icon set component.\n * Usage: <FontAwesomeProDuotoneRegular name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProDuotoneRegular.json';\n\nexport const FontAwesomeProDuotoneRegular = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Duotone-Regular',\n  fontFileName: 'fa-duotone-regular-400.ttf',\n});\n\nexport type FontAwesomeProDuotoneRegularIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProDuotoneRegular;\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-regular/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProDuotoneRegular icon set component.\n * Usage: <FontAwesomeProDuotoneRegular name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProDuotoneRegular.json';\n\nexport const FontAwesomeProDuotoneRegular = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Duotone-Regular',\n  fontFileName: 'fa-duotone-regular-400.ttf',\n});\n\nexport type FontAwesomeProDuotoneRegularIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProDuotoneRegular;\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-regular/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-regular/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-solid/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontawesome-pro-duotone-solid\",\n    \"upstreamFont\": {\n      \"registry\": \"https://npm.fontawesome.com\",\n      \"packageName\": \"@fortawesome/fontawesome-pro\",\n      \"versionOnly\": true\n    },\n    \"copyCustomFonts\": true,\n    \"className\": \"FontAwesomeProDuotoneSolid\",\n    \"postScriptName\": \"FontAwesome7Duotone-Solid\",\n    \"fontFileName\": \"fa-duotone-900\",\n    \"buildSteps\": {\n      \"preScript\": {\n        \"script\": \"../fontawesome-common/scripts/fetch-pro.sh 7\"\n      },\n      \"glyphmap\": {\n        \"location\": \"fa/pro/css/all.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fa-\"\n      },\n      \"postScript\": {\n        \"script\": \"../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProDuotoneSolid.json fa/pro/svgs/duotone\\nrm -rf fa\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"0.1.0\",\n        \"upstream\": \"7.1.0\"\n      },\n      {\n        \"rnvi\": \"0.1.1\",\n        \"upstream\": \"7.2.0\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-solid/CHANGELOG.md",
    "content": "## 0.2.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 0.1.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 0.1.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🩹 Fixes\n\n- upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 0.1.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 0.1.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontawesome-pro-duotone-solid/README.md",
    "content": "# React Native Vector Icons - Fontawesome Pro Duotone Solid\n\nFontawesome Pro Duotone Solid font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n> [!IMPORTANT]\n> This package does not include the fonts. You must provide them yourself.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/fontawesome-pro-duotone-solid\n```\n\n## Custom Fonts\n\nThis package requires you to provide the font files. Place your `.ttf` font\nfile in the following location:\n\n```\nrnvi-fonts/fontawesome-pro-duotone-solid/fa-duotone-900.ttf\n```\n\nThe font will be automatically copied during the build process for both iOS and\nAndroid.\n\n## Usage\n\n```jsx\nimport { FontAwesomeProDuotoneSolid } from '@react-native-vector-icons/fontawesome-pro-duotone-solid';\n\n// ...\n\n<FontAwesomeProDuotoneSolid name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 0.1.0 | 7.1.0 |\n| &gt; 0.1.1 | 7.2.0 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-solid/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.fontawesome_pro_duotone_solid\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFontAwesomeProDuotoneSolid\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.fontawesome_pro_duotone_solid\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-fontawesome-pro-duotone-solid\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-duotone-solid/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-duotone-solid) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n\ntask copyExtraFonts(type: Copy) {\n  from \"${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-duotone-solid\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-duotone-solid/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-duotone-solid) Copying custom font: ${it.file}\" }\n}\n\npreBuild.dependsOn(copyExtraFonts)\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-solid/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.fontawesome_pro_duotone_solid\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-solid/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-solid/android/src/main/java/VectorIconsFontAwesomeProDuotoneSolidPackage.kt",
    "content": "package com.reactnativevectoricons.fontawesome_pro_duotone_solid\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFontAwesomeProDuotoneSolidPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-solid/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-solid/glyphmaps/FontAwesomeProDuotoneSolid.json",
    "content": "{\n  \"0\": 48,\n  \"1\": 49,\n  \"2\": 50,\n  \"3\": 51,\n  \"4\": 52,\n  \"5\": 53,\n  \"6\": 54,\n  \"7\": 55,\n  \"8\": 56,\n  \"9\": 57,\n  \"100\": 58396,\n  \"00\": 58471,\n  \"360-degrees\": 58076,\n  \"a\": 65,\n  \"abacus\": 63040,\n  \"accent-grave\": 96,\n  \"acorn\": 63150,\n  \"ad\": 63041,\n  \"add\": 43,\n  \"address-book\": 62137,\n  \"address-card\": 62139,\n  \"adjust\": 61506,\n  \"aeropress\": 59435,\n  \"air-conditioner\": 63732,\n  \"air-freshener\": 62928,\n  \"airplay-audio\": 59259,\n  \"airplay\": 57481,\n  \"alarm-clock\": 62286,\n  \"alarm-exclamation\": 63555,\n  \"alarm-minus\": 59395,\n  \"alarm-plus\": 63556,\n  \"alarm-snooze\": 63557,\n  \"album-circle-plus\": 58508,\n  \"album-circle-user\": 58509,\n  \"album-collection-circle-plus\": 58510,\n  \"album-collection-circle-user\": 58511,\n  \"album-collection\": 63648,\n  \"album\": 63647,\n  \"alicorn\": 63152,\n  \"alien-8bit\": 63734,\n  \"alien-monster\": 63734,\n  \"alien\": 63733,\n  \"align-center\": 61495,\n  \"align-justify\": 61497,\n  \"align-left\": 61494,\n  \"align-right\": 61496,\n  \"align-slash\": 63558,\n  \"allergies\": 62561,\n  \"almost-equal-to\": 59416,\n  \"alt\": 57482,\n  \"ambulance\": 61689,\n  \"american-sign-language-interpreting\": 62115,\n  \"amp-guitar\": 63649,\n  \"ampersand\": 38,\n  \"analytics\": 63043,\n  \"anchor-circle-check\": 58538,\n  \"anchor-circle-exclamation\": 58539,\n  \"anchor-circle-xmark\": 58540,\n  \"anchor-lock\": 58541,\n  \"anchor\": 61757,\n  \"angel\": 63353,\n  \"angle-90\": 57485,\n  \"angle-double-down\": 61699,\n  \"angle-double-left\": 61696,\n  \"angle-double-right\": 61697,\n  \"angle-double-up\": 61698,\n  \"angle-down\": 61703,\n  \"angle-left\": 61700,\n  \"angle-right\": 61701,\n  \"angle-up\": 61702,\n  \"angle\": 57484,\n  \"angles-down\": 61699,\n  \"angles-left\": 61696,\n  \"angles-right\": 61697,\n  \"angles-up-down\": 58893,\n  \"angles-up\": 61698,\n  \"angry\": 62806,\n  \"ankh\": 63044,\n  \"ant\": 59008,\n  \"apartment\": 58472,\n  \"aperture\": 58079,\n  \"apostrophe\": 39,\n  \"apple-alt\": 62929,\n  \"apple-core\": 57487,\n  \"apple-crate\": 63153,\n  \"apple-whole\": 62929,\n  \"aquarius\": 59461,\n  \"archive\": 61831,\n  \"archway\": 62807,\n  \"area-chart\": 61950,\n  \"aries\": 59462,\n  \"arrow-alt-circle-down\": 62296,\n  \"arrow-alt-circle-left\": 62297,\n  \"arrow-alt-circle-right\": 62298,\n  \"arrow-alt-circle-up\": 62299,\n  \"arrow-alt-down\": 62292,\n  \"arrow-alt-from-bottom\": 62278,\n  \"arrow-alt-from-left\": 62279,\n  \"arrow-alt-from-right\": 62280,\n  \"arrow-alt-from-top\": 62281,\n  \"arrow-alt-left\": 62293,\n  \"arrow-alt-right\": 62294,\n  \"arrow-alt-square-down\": 62288,\n  \"arrow-alt-square-left\": 62289,\n  \"arrow-alt-square-right\": 62290,\n  \"arrow-alt-square-up\": 62291,\n  \"arrow-alt-to-bottom\": 62282,\n  \"arrow-alt-to-left\": 62283,\n  \"arrow-alt-to-right\": 62284,\n  \"arrow-alt-to-top\": 62285,\n  \"arrow-alt-up\": 62295,\n  \"arrow-archery\": 59449,\n  \"arrow-circle-down\": 61611,\n  \"arrow-circle-left\": 61608,\n  \"arrow-circle-right\": 61609,\n  \"arrow-circle-up\": 61610,\n  \"arrow-down-1-9\": 61794,\n  \"arrow-down-9-1\": 63622,\n  \"arrow-down-a-z\": 61789,\n  \"arrow-down-arrow-up\": 63619,\n  \"arrow-down-big-small\": 63628,\n  \"arrow-down-from-arc\": 58900,\n  \"arrow-down-from-bracket\": 58983,\n  \"arrow-down-from-dotted-line\": 57488,\n  \"arrow-down-from-line\": 62277,\n  \"arrow-down-left-and-arrow-up-right-to-center\": 57490,\n  \"arrow-down-left\": 57489,\n  \"arrow-down-long-to-line\": 59063,\n  \"arrow-down-long\": 61813,\n  \"arrow-down-right\": 57491,\n  \"arrow-down-short-wide\": 63620,\n  \"arrow-down-small-big\": 63629,\n  \"arrow-down-square-triangle\": 63625,\n  \"arrow-down-to-arc\": 58542,\n  \"arrow-down-to-bracket\": 57492,\n  \"arrow-down-to-dotted-line\": 57493,\n  \"arrow-down-to-line\": 62269,\n  \"arrow-down-to-square\": 57494,\n  \"arrow-down-triangle-square\": 63624,\n  \"arrow-down-up-across-line\": 58543,\n  \"arrow-down-up-lock\": 58544,\n  \"arrow-down-wide-short\": 61792,\n  \"arrow-down-z-a\": 63617,\n  \"arrow-down\": 61539,\n  \"arrow-from-bottom\": 62274,\n  \"arrow-from-left\": 62275,\n  \"arrow-from-right\": 62276,\n  \"arrow-from-top\": 62277,\n  \"arrow-left-arrow-right\": 59064,\n  \"arrow-left-from-arc\": 58901,\n  \"arrow-left-from-bracket\": 58984,\n  \"arrow-left-from-dotted-line\": 59065,\n  \"arrow-left-from-line\": 62276,\n  \"arrow-left-long-to-line\": 58324,\n  \"arrow-left-long\": 61815,\n  \"arrow-left-rotate\": 61666,\n  \"arrow-left-to-arc\": 58902,\n  \"arrow-left-to-bracket\": 58985,\n  \"arrow-left-to-dotted-line\": 59066,\n  \"arrow-left-to-line\": 62270,\n  \"arrow-left\": 61536,\n  \"arrow-pointer\": 62021,\n  \"arrow-progress\": 58847,\n  \"arrow-right-arrow-left\": 61676,\n  \"arrow-right-from-arc\": 58545,\n  \"arrow-right-from-bracket\": 61579,\n  \"arrow-right-from-dotted-line\": 59067,\n  \"arrow-right-from-file\": 62830,\n  \"arrow-right-from-line\": 62275,\n  \"arrow-right-long-to-line\": 58325,\n  \"arrow-right-long\": 61816,\n  \"arrow-right-rotate\": 61470,\n  \"arrow-right-to-arc\": 58546,\n  \"arrow-right-to-bracket\": 61584,\n  \"arrow-right-to-city\": 58547,\n  \"arrow-right-to-dotted-line\": 59068,\n  \"arrow-right-to-file\": 62831,\n  \"arrow-right-to-line\": 62272,\n  \"arrow-right\": 61537,\n  \"arrow-rotate-back\": 61666,\n  \"arrow-rotate-backward\": 61666,\n  \"arrow-rotate-forward\": 61470,\n  \"arrow-rotate-left-10\": 59446,\n  \"arrow-rotate-left-15\": 59526,\n  \"arrow-rotate-left-30\": 59527,\n  \"arrow-rotate-left\": 61666,\n  \"arrow-rotate-right-10\": 59447,\n  \"arrow-rotate-right-15\": 59528,\n  \"arrow-rotate-right-30\": 59529,\n  \"arrow-rotate-right\": 61470,\n  \"arrow-square-down\": 62265,\n  \"arrow-square-left\": 62266,\n  \"arrow-square-right\": 62267,\n  \"arrow-square-up\": 62268,\n  \"arrow-to-bottom\": 62269,\n  \"arrow-to-left\": 62270,\n  \"arrow-to-right\": 62272,\n  \"arrow-to-top\": 62273,\n  \"arrow-trend-down\": 57495,\n  \"arrow-trend-up\": 57496,\n  \"arrow-turn-down-left\": 58081,\n  \"arrow-turn-down-right\": 58326,\n  \"arrow-turn-down\": 61769,\n  \"arrow-turn-left-down\": 58931,\n  \"arrow-turn-left-up\": 58932,\n  \"arrow-turn-left\": 58930,\n  \"arrow-turn-right\": 58933,\n  \"arrow-turn-up\": 61768,\n  \"arrow-u-turn-down-left\": 59367,\n  \"arrow-u-turn-down-right\": 59368,\n  \"arrow-u-turn-left-down\": 59369,\n  \"arrow-u-turn-left-up\": 59370,\n  \"arrow-u-turn-right-down\": 59371,\n  \"arrow-u-turn-right-up\": 59372,\n  \"arrow-u-turn-up-left\": 59373,\n  \"arrow-u-turn-up-right\": 59374,\n  \"arrow-up-1-9\": 61795,\n  \"arrow-up-9-1\": 63623,\n  \"arrow-up-a-z\": 61790,\n  \"arrow-up-arrow-down\": 57497,\n  \"arrow-up-big-small\": 63630,\n  \"arrow-up-from-arc\": 58548,\n  \"arrow-up-from-bracket\": 57498,\n  \"arrow-up-from-dotted-line\": 57499,\n  \"arrow-up-from-ground-water\": 58549,\n  \"arrow-up-from-line\": 62274,\n  \"arrow-up-from-square\": 57500,\n  \"arrow-up-from-water-pump\": 58550,\n  \"arrow-up-left-from-circle\": 57502,\n  \"arrow-up-left\": 57501,\n  \"arrow-up-long-to-line\": 59069,\n  \"arrow-up-long\": 61814,\n  \"arrow-up-right-and-arrow-down-left-from-center\": 57504,\n  \"arrow-up-right-dots\": 58551,\n  \"arrow-up-right-from-square\": 61582,\n  \"arrow-up-right\": 57503,\n  \"arrow-up-short-wide\": 63621,\n  \"arrow-up-small-big\": 63631,\n  \"arrow-up-square-triangle\": 63627,\n  \"arrow-up-to-arc\": 58903,\n  \"arrow-up-to-bracket\": 58986,\n  \"arrow-up-to-dotted-line\": 57505,\n  \"arrow-up-to-line\": 62273,\n  \"arrow-up-triangle-square\": 63626,\n  \"arrow-up-wide-short\": 61793,\n  \"arrow-up-z-a\": 63618,\n  \"arrow-up\": 61538,\n  \"arrows-alt-h\": 62263,\n  \"arrows-alt-v\": 62264,\n  \"arrows-alt\": 61618,\n  \"arrows-cross\": 57506,\n  \"arrows-down-to-line\": 58552,\n  \"arrows-down-to-people\": 58553,\n  \"arrows-from-dotted-line\": 57507,\n  \"arrows-from-line\": 57508,\n  \"arrows-h\": 61566,\n  \"arrows-left-right-to-line\": 58554,\n  \"arrows-left-right\": 61566,\n  \"arrows-maximize\": 62237,\n  \"arrows-minimize\": 57509,\n  \"arrows-repeat-1\": 62310,\n  \"arrows-repeat\": 62308,\n  \"arrows-retweet\": 62305,\n  \"arrows-rotate-reverse\": 58928,\n  \"arrows-rotate\": 61473,\n  \"arrows-spin\": 58555,\n  \"arrows-split-up-and-left\": 58556,\n  \"arrows-to-circle\": 58557,\n  \"arrows-to-dot\": 58558,\n  \"arrows-to-dotted-line\": 57510,\n  \"arrows-to-eye\": 58559,\n  \"arrows-to-line\": 57511,\n  \"arrows-turn-right\": 58560,\n  \"arrows-turn-to-dots\": 58561,\n  \"arrows-up-down-left-right\": 61511,\n  \"arrows-up-down\": 61565,\n  \"arrows-up-to-line\": 58562,\n  \"arrows-v\": 61565,\n  \"arrows\": 61511,\n  \"asl-interpreting\": 62115,\n  \"assistive-listening-systems\": 62114,\n  \"asterisk\": 42,\n  \"at\": 64,\n  \"atlas\": 62808,\n  \"atom-alt\": 62931,\n  \"atom-simple\": 62931,\n  \"atom\": 62930,\n  \"audio-description-slash\": 57512,\n  \"audio-description\": 62110,\n  \"austral-sign\": 57513,\n  \"australian-dollar-sign\": 59134,\n  \"automobile\": 61881,\n  \"avocado\": 57514,\n  \"award-simple\": 57515,\n  \"award\": 62809,\n  \"axe-battle\": 63155,\n  \"axe\": 63154,\n  \"b\": 66,\n  \"baby-carriage\": 63357,\n  \"baby\": 63356,\n  \"backpack\": 62932,\n  \"backspace\": 62810,\n  \"backward-fast\": 61513,\n  \"backward-step\": 61512,\n  \"backward\": 61514,\n  \"bacon\": 63461,\n  \"bacteria\": 57433,\n  \"bacterium\": 57434,\n  \"badge-check\": 62262,\n  \"badge-dollar\": 63045,\n  \"badge-percent\": 63046,\n  \"badge-sheriff\": 63650,\n  \"badge\": 62261,\n  \"badger-honey\": 63156,\n  \"badminton\": 58170,\n  \"bag-seedling\": 58866,\n  \"bag-shopping-minus\": 58960,\n  \"bag-shopping-plus\": 58961,\n  \"bag-shopping\": 62096,\n  \"bagel\": 58327,\n  \"bags-shopping\": 63559,\n  \"baguette\": 58328,\n  \"bahai\": 63078,\n  \"baht-sign\": 57516,\n  \"balance-scale-left\": 62741,\n  \"balance-scale-right\": 62742,\n  \"balance-scale\": 62030,\n  \"ball-pile\": 63358,\n  \"ball-yarn\": 59086,\n  \"balloon\": 58083,\n  \"balloons\": 58084,\n  \"ballot-check\": 63283,\n  \"ballot\": 63282,\n  \"ban-bug\": 63481,\n  \"ban-parking\": 62998,\n  \"ban-smoking\": 62797,\n  \"ban\": 61534,\n  \"banana\": 58085,\n  \"band-aid\": 62562,\n  \"bandage\": 62562,\n  \"bangladeshi-taka-sign\": 58086,\n  \"banjo\": 63651,\n  \"bank\": 61852,\n  \"bar-chart\": 61568,\n  \"bar-progress-empty\": 59045,\n  \"bar-progress-full\": 59046,\n  \"bar-progress-half\": 59047,\n  \"bar-progress-quarter\": 59048,\n  \"bar-progress-three-quarters\": 59049,\n  \"bar-progress\": 59044,\n  \"barcode-alt\": 62563,\n  \"barcode-read\": 62564,\n  \"barcode-scan\": 62565,\n  \"barcode\": 61482,\n  \"barn-silo\": 63588,\n  \"barn\": 59079,\n  \"bars-filter\": 57517,\n  \"bars-progress\": 63528,\n  \"bars-sort\": 57518,\n  \"bars-staggered\": 62800,\n  \"bars\": 61641,\n  \"baseball-ball\": 62515,\n  \"baseball-bat-ball\": 62514,\n  \"baseball-bat\": 59365,\n  \"baseball\": 62515,\n  \"basket-shopping-minus\": 58962,\n  \"basket-shopping-plus\": 58963,\n  \"basket-shopping-simple\": 57519,\n  \"basket-shopping\": 62097,\n  \"basketball-ball\": 62516,\n  \"basketball-hoop\": 62517,\n  \"basketball\": 62516,\n  \"bat\": 63157,\n  \"bath\": 62157,\n  \"bathtub\": 62157,\n  \"battery-0\": 62020,\n  \"battery-1\": 57521,\n  \"battery-2\": 62019,\n  \"battery-3\": 62018,\n  \"battery-4\": 62017,\n  \"battery-5\": 62016,\n  \"battery-bolt\": 62326,\n  \"battery-car\": 62943,\n  \"battery-empty\": 62020,\n  \"battery-exclamation\": 57520,\n  \"battery-full\": 62016,\n  \"battery-half\": 62018,\n  \"battery-low\": 57521,\n  \"battery-quarter\": 62019,\n  \"battery-slash\": 62327,\n  \"battery-three-quarters\": 62017,\n  \"battery\": 62016,\n  \"bed-alt\": 63735,\n  \"bed-bunk\": 63736,\n  \"bed-empty\": 63737,\n  \"bed-front\": 63735,\n  \"bed-pulse\": 62599,\n  \"bed\": 62006,\n  \"bee\": 57522,\n  \"beer-foam\": 57523,\n  \"beer-mug-empty\": 61692,\n  \"beer-mug\": 57523,\n  \"beer\": 61692,\n  \"bell-concierge\": 62818,\n  \"bell-exclamation\": 63560,\n  \"bell-on\": 63738,\n  \"bell-plus\": 63561,\n  \"bell-ring\": 58924,\n  \"bell-school-slash\": 62934,\n  \"bell-school\": 62933,\n  \"bell-slash\": 61942,\n  \"bell\": 61683,\n  \"bells\": 63359,\n  \"bench-tree\": 58087,\n  \"betamax\": 63652,\n  \"bezier-curve\": 62811,\n  \"bible\": 63047,\n  \"bicep\": 59490,\n  \"bicycle\": 61958,\n  \"biking-mountain\": 63563,\n  \"biking\": 63562,\n  \"billboard\": 58829,\n  \"bin-bottles-recycle\": 58870,\n  \"bin-bottles\": 58869,\n  \"bin-recycle\": 58871,\n  \"bin\": 59235,\n  \"binary-circle-check\": 58172,\n  \"binary-lock\": 58173,\n  \"binary-slash\": 58174,\n  \"binary\": 58171,\n  \"binoculars\": 61925,\n  \"biohazard\": 63360,\n  \"bird\": 58473,\n  \"birthday-cake\": 61949,\n  \"bitcoin-sign\": 57524,\n  \"blackboard\": 62747,\n  \"blanket-fire\": 58330,\n  \"blanket\": 62616,\n  \"blender-phone\": 63158,\n  \"blender\": 62743,\n  \"blind\": 62109,\n  \"blinds-open\": 63740,\n  \"blinds-raised\": 63741,\n  \"blinds\": 63739,\n  \"block-brick-fire\": 58332,\n  \"block-brick\": 58331,\n  \"block-question\": 58333,\n  \"block-quote\": 57525,\n  \"block\": 58474,\n  \"blog\": 63361,\n  \"blueberries\": 58088,\n  \"bluetooth\": 62099,\n  \"bold\": 61490,\n  \"bolt-auto\": 57526,\n  \"bolt-lightning\": 57527,\n  \"bolt-slash\": 57528,\n  \"bolt\": 61671,\n  \"bomb\": 61922,\n  \"bone-break\": 62936,\n  \"bone\": 62935,\n  \"bong\": 62812,\n  \"book-alt\": 62937,\n  \"book-arrow-right\": 57529,\n  \"book-arrow-up\": 57530,\n  \"book-atlas\": 62808,\n  \"book-bible\": 63047,\n  \"book-blank\": 62937,\n  \"book-bookmark\": 57531,\n  \"book-circle-arrow-right\": 57532,\n  \"book-circle-arrow-up\": 57533,\n  \"book-circle\": 57599,\n  \"book-copy\": 57534,\n  \"book-dead\": 63159,\n  \"book-font\": 57535,\n  \"book-heart\": 62617,\n  \"book-journal-whills\": 63082,\n  \"book-law\": 57537,\n  \"book-medical\": 63462,\n  \"book-open-alt\": 57536,\n  \"book-open-cover\": 57536,\n  \"book-open-lines\": 59219,\n  \"book-open-reader\": 62938,\n  \"book-open\": 62744,\n  \"book-quran\": 63111,\n  \"book-reader\": 62938,\n  \"book-section\": 57537,\n  \"book-skull\": 63159,\n  \"book-sparkles\": 63160,\n  \"book-spells\": 63160,\n  \"book-spine\": 59220,\n  \"book-tanakh\": 63527,\n  \"book-user\": 63463,\n  \"book\": 61485,\n  \"bookmark-circle\": 57600,\n  \"bookmark-plus\": 59221,\n  \"bookmark-slash\": 57538,\n  \"bookmark\": 61486,\n  \"books-medical\": 63464,\n  \"books\": 62939,\n  \"boombox\": 63653,\n  \"boot-heeled\": 58175,\n  \"boot\": 63362,\n  \"booth-curtain\": 63284,\n  \"border-all\": 63564,\n  \"border-bottom-right\": 63572,\n  \"border-bottom\": 63565,\n  \"border-center-h\": 63644,\n  \"border-center-v\": 63645,\n  \"border-inner\": 63566,\n  \"border-left\": 63567,\n  \"border-none\": 63568,\n  \"border-outer\": 63569,\n  \"border-right\": 63570,\n  \"border-style-alt\": 63572,\n  \"border-style\": 63571,\n  \"border-top-left\": 63571,\n  \"border-top\": 63573,\n  \"bore-hole\": 58563,\n  \"bottle-baby\": 58995,\n  \"bottle-droplet\": 58564,\n  \"bottle-water\": 58565,\n  \"bow-archery\": 59450,\n  \"bow-arrow\": 63161,\n  \"bowl-chopsticks-noodles\": 58090,\n  \"bowl-chopsticks\": 58089,\n  \"bowl-food\": 58566,\n  \"bowl-hot\": 63523,\n  \"bowl-rice\": 58091,\n  \"bowl-salad\": 63518,\n  \"bowl-scoop\": 58334,\n  \"bowl-scoops\": 58335,\n  \"bowl-shaved-ice\": 58334,\n  \"bowl-soft-serve\": 58475,\n  \"bowl-spoon\": 58336,\n  \"bowling-ball-pin\": 57539,\n  \"bowling-ball\": 62518,\n  \"bowling-pins\": 62519,\n  \"box-alt\": 62618,\n  \"box-archive\": 61831,\n  \"box-arrow-down-arrow-up\": 59285,\n  \"box-arrow-down-magnifying-glass\": 59286,\n  \"box-arrow-down\": 59284,\n  \"box-arrow-up\": 59431,\n  \"box-ballot\": 63285,\n  \"box-check\": 62567,\n  \"box-circle-check\": 57540,\n  \"box-dollar\": 62624,\n  \"box-fragile\": 62619,\n  \"box-full\": 62620,\n  \"box-heart\": 62621,\n  \"box-isometric-tape\": 59288,\n  \"box-isometric\": 59287,\n  \"box-magnifying-glass\": 59432,\n  \"box-open-full\": 62620,\n  \"box-open\": 62622,\n  \"box-taped\": 62618,\n  \"box-tissue\": 57435,\n  \"box-up\": 62623,\n  \"box-usd\": 62624,\n  \"box\": 62566,\n  \"boxes-alt\": 62568,\n  \"boxes-packing\": 58567,\n  \"boxes-stacked\": 62568,\n  \"boxes\": 62568,\n  \"boxing-glove\": 62520,\n  \"bra\": 59087,\n  \"bracket-curly-left\": 123,\n  \"bracket-curly-right\": 125,\n  \"bracket-curly\": 123,\n  \"bracket-left\": 91,\n  \"bracket-round-right\": 41,\n  \"bracket-round\": 40,\n  \"bracket-square-right\": 93,\n  \"bracket-square\": 91,\n  \"bracket\": 91,\n  \"brackets-curly\": 63466,\n  \"brackets-round\": 57541,\n  \"brackets-square\": 63465,\n  \"brackets\": 63465,\n  \"braille\": 62113,\n  \"brain-arrow-curved-right\": 63095,\n  \"brain-circuit\": 57542,\n  \"brain\": 62940,\n  \"brake-warning\": 57543,\n  \"brazilian-real-sign\": 58476,\n  \"bread-loaf\": 63467,\n  \"bread-slice-butter\": 58337,\n  \"bread-slice\": 63468,\n  \"bridge-circle-check\": 58569,\n  \"bridge-circle-exclamation\": 58570,\n  \"bridge-circle-xmark\": 58571,\n  \"bridge-lock\": 58572,\n  \"bridge-suspension\": 58573,\n  \"bridge-water\": 58574,\n  \"bridge\": 58568,\n  \"briefcase-arrow-right\": 58098,\n  \"briefcase-blank\": 57544,\n  \"briefcase-clock\": 63050,\n  \"briefcase-medical\": 62569,\n  \"briefcase\": 61617,\n  \"briefs\": 59088,\n  \"brightness-low\": 57546,\n  \"brightness\": 57545,\n  \"bring-forward\": 63574,\n  \"bring-front\": 63575,\n  \"broadcast-tower\": 62745,\n  \"broccoli\": 58338,\n  \"broom-ball\": 62552,\n  \"broom-wide\": 58833,\n  \"broom\": 62746,\n  \"browser\": 62334,\n  \"browsers\": 57547,\n  \"brush\": 62813,\n  \"bucket\": 58575,\n  \"bug-slash\": 58512,\n  \"bug\": 61832,\n  \"bugs\": 58576,\n  \"building-circle-arrow-right\": 58577,\n  \"building-circle-check\": 58578,\n  \"building-circle-exclamation\": 58579,\n  \"building-circle-xmark\": 58580,\n  \"building-columns\": 61852,\n  \"building-flag\": 58581,\n  \"building-lock\": 58582,\n  \"building-magnifying-glass\": 58908,\n  \"building-memo\": 58910,\n  \"building-ngo\": 58583,\n  \"building-shield\": 58584,\n  \"building-un\": 58585,\n  \"building-user\": 58586,\n  \"building-wheat\": 58587,\n  \"building\": 61869,\n  \"buildings\": 57548,\n  \"bulldozer\": 58965,\n  \"bullhorn\": 61601,\n  \"bullseye-arrow\": 63048,\n  \"bullseye-pointer\": 63049,\n  \"bullseye\": 61760,\n  \"buoy-mooring\": 58806,\n  \"buoy\": 58805,\n  \"burger-cheese\": 63473,\n  \"burger-fries\": 57549,\n  \"burger-glass\": 57550,\n  \"burger-lettuce\": 58339,\n  \"burger-soda\": 63576,\n  \"burger\": 63493,\n  \"burn\": 62570,\n  \"burrito\": 63469,\n  \"burst-new\": 59512,\n  \"burst\": 58588,\n  \"bus-alt\": 62814,\n  \"bus-school\": 62941,\n  \"bus-side\": 59421,\n  \"bus-simple\": 62814,\n  \"bus-stop\": 59422,\n  \"bus\": 61959,\n  \"business-front\": 58460,\n  \"business-time\": 63050,\n  \"butter\": 58340,\n  \"butterfly\": 59409,\n  \"c\": 67,\n  \"cab\": 61882,\n  \"cabin\": 58477,\n  \"cabinet-filing\": 63051,\n  \"cable-car\": 63450,\n  \"cactus\": 63655,\n  \"caduceus\": 59009,\n  \"cake-candles\": 61949,\n  \"cake-slice\": 58341,\n  \"cake\": 61949,\n  \"calculator-alt\": 63052,\n  \"calculator-simple\": 63052,\n  \"calculator\": 61932,\n  \"calendar-alt\": 61555,\n  \"calendar-arrow-down\": 57552,\n  \"calendar-arrow-up\": 57553,\n  \"calendar-check\": 62068,\n  \"calendar-circle-exclamation\": 58478,\n  \"calendar-circle-minus\": 58479,\n  \"calendar-circle-plus\": 58480,\n  \"calendar-circle-user\": 58481,\n  \"calendar-circle\": 57602,\n  \"calendar-clock\": 57554,\n  \"calendar-day\": 63363,\n  \"calendar-days\": 61555,\n  \"calendar-download\": 57552,\n  \"calendar-edit\": 62259,\n  \"calendar-exclamation\": 62260,\n  \"calendar-heart\": 57555,\n  \"calendar-image\": 57556,\n  \"calendar-lines-pen\": 58482,\n  \"calendar-lines\": 57557,\n  \"calendar-minus\": 62066,\n  \"calendar-note\": 57557,\n  \"calendar-pen\": 62259,\n  \"calendar-plus\": 62065,\n  \"calendar-range\": 57558,\n  \"calendar-star\": 63286,\n  \"calendar-time\": 57554,\n  \"calendar-times\": 62067,\n  \"calendar-upload\": 57553,\n  \"calendar-users\": 58850,\n  \"calendar-week\": 63364,\n  \"calendar-xmark\": 62067,\n  \"calendar\": 61747,\n  \"calendars\": 57559,\n  \"camcorder\": 63656,\n  \"camera-alt\": 61488,\n  \"camera-cctv\": 63660,\n  \"camera-circle-ellipsis\": 59238,\n  \"camera-circle\": 57603,\n  \"camera-clock\": 59239,\n  \"camera-home\": 63742,\n  \"camera-movie\": 63657,\n  \"camera-polaroid\": 63658,\n  \"camera-retro\": 61571,\n  \"camera-rotate\": 57560,\n  \"camera-security\": 63742,\n  \"camera-shutter\": 59240,\n  \"camera-slash\": 57561,\n  \"camera-viewfinder\": 57562,\n  \"camera-web-slash\": 63539,\n  \"camera-web\": 63538,\n  \"camera\": 61488,\n  \"campfire\": 63162,\n  \"campground\": 63163,\n  \"can-food\": 58342,\n  \"cancel\": 61534,\n  \"cancer\": 59463,\n  \"candle-holder\": 63164,\n  \"candy-bar\": 58344,\n  \"candy-cane\": 63366,\n  \"candy-corn\": 63165,\n  \"candy\": 58343,\n  \"cannabis\": 62815,\n  \"cannon\": 58946,\n  \"canoe-person\": 59548,\n  \"capricorn\": 59464,\n  \"capsule\": 59226,\n  \"capsules\": 62571,\n  \"car-alt\": 62942,\n  \"car-battery\": 62943,\n  \"car-bolt\": 58177,\n  \"car-building\": 63577,\n  \"car-bump\": 62944,\n  \"car-burst\": 62945,\n  \"car-bus\": 63578,\n  \"car-circle-bolt\": 58178,\n  \"car-crash\": 62945,\n  \"car-garage\": 62946,\n  \"car-key\": 59328,\n  \"car-mechanic\": 62947,\n  \"car-mirrors\": 58179,\n  \"car-on\": 58589,\n  \"car-people\": 59036,\n  \"car-rear\": 62942,\n  \"car-side-bolt\": 58180,\n  \"car-side\": 62948,\n  \"car-siren-on\": 59330,\n  \"car-siren\": 59329,\n  \"car-tilt\": 62949,\n  \"car-tunnel\": 58590,\n  \"car-wash\": 62950,\n  \"car-wrench\": 62947,\n  \"car\": 61881,\n  \"caravan-alt\": 57344,\n  \"caravan-simple\": 57344,\n  \"caravan\": 63743,\n  \"card-club\": 58345,\n  \"card-diamond\": 58346,\n  \"card-heart\": 58347,\n  \"card-spade\": 58348,\n  \"cards-blank\": 58591,\n  \"cards\": 58349,\n  \"caret-circle-down\": 62253,\n  \"caret-circle-left\": 62254,\n  \"caret-circle-right\": 62256,\n  \"caret-circle-up\": 62257,\n  \"caret-down\": 61655,\n  \"caret-large-down\": 59436,\n  \"caret-large-left\": 59437,\n  \"caret-large-right\": 59438,\n  \"caret-large-up\": 59439,\n  \"caret-left\": 61657,\n  \"caret-right\": 61658,\n  \"caret-square-down\": 61776,\n  \"caret-square-left\": 61841,\n  \"caret-square-right\": 61778,\n  \"caret-square-up\": 61777,\n  \"caret-up\": 61656,\n  \"carpool\": 59036,\n  \"carriage-baby\": 63357,\n  \"carrot\": 63367,\n  \"cars\": 63579,\n  \"cart-arrow-down\": 61976,\n  \"cart-arrow-up\": 58350,\n  \"cart-circle-arrow-down\": 58351,\n  \"cart-circle-arrow-up\": 58352,\n  \"cart-circle-check\": 58353,\n  \"cart-circle-exclamation\": 58354,\n  \"cart-circle-plus\": 58355,\n  \"cart-circle-xmark\": 58356,\n  \"cart-flatbed-boxes\": 62581,\n  \"cart-flatbed-empty\": 62582,\n  \"cart-flatbed-suitcase\": 62877,\n  \"cart-flatbed\": 62580,\n  \"cart-minus\": 57563,\n  \"cart-plus\": 61975,\n  \"cart-shopping-fast\": 57564,\n  \"cart-shopping\": 61562,\n  \"cart-xmark\": 57565,\n  \"cash-register\": 63368,\n  \"cassette-betamax\": 63652,\n  \"cassette-tape\": 63659,\n  \"cassette-vhs\": 63724,\n  \"castle\": 57566,\n  \"cat-space\": 57345,\n  \"cat\": 63166,\n  \"cauldron\": 63167,\n  \"cctv\": 63660,\n  \"cedi-sign\": 57567,\n  \"cent-sign\": 58357,\n  \"certificate\": 61603,\n  \"chain-broken\": 61735,\n  \"chain-horizontal-slash\": 57804,\n  \"chain-horizontal\": 57803,\n  \"chain-slash\": 61735,\n  \"chain\": 61633,\n  \"chair-office\": 63169,\n  \"chair\": 63168,\n  \"chalkboard-teacher\": 62748,\n  \"chalkboard-user\": 62748,\n  \"chalkboard\": 62747,\n  \"champagne-glass\": 63390,\n  \"champagne-glasses\": 63391,\n  \"charging-station\": 62951,\n  \"chart-area\": 61950,\n  \"chart-bar\": 61568,\n  \"chart-bullet\": 57569,\n  \"chart-candlestick\": 57570,\n  \"chart-column\": 57571,\n  \"chart-diagram\": 59029,\n  \"chart-fft\": 59038,\n  \"chart-gantt\": 57572,\n  \"chart-kanban\": 58959,\n  \"chart-line-down\": 63053,\n  \"chart-line-up-down\": 58839,\n  \"chart-line-up\": 57573,\n  \"chart-line\": 61953,\n  \"chart-mixed-up-circle-currency\": 58840,\n  \"chart-mixed-up-circle-dollar\": 58841,\n  \"chart-mixed\": 63043,\n  \"chart-network\": 63370,\n  \"chart-pie-alt\": 63054,\n  \"chart-pie-simple-circle-currency\": 58884,\n  \"chart-pie-simple-circle-dollar\": 58885,\n  \"chart-pie-simple\": 63054,\n  \"chart-pie\": 61952,\n  \"chart-pyramid\": 57574,\n  \"chart-radar\": 57575,\n  \"chart-scatter-3d\": 57576,\n  \"chart-scatter-bubble\": 57577,\n  \"chart-scatter\": 63470,\n  \"chart-simple-horizontal\": 58484,\n  \"chart-simple\": 58483,\n  \"chart-sine\": 59037,\n  \"chart-tree-map\": 57578,\n  \"chart-user\": 63139,\n  \"chart-waterfall\": 57579,\n  \"check-circle\": 61528,\n  \"check-double\": 62816,\n  \"check-square\": 61770,\n  \"check-to-slot\": 63346,\n  \"check\": 61452,\n  \"cheese-swiss\": 63472,\n  \"cheese\": 63471,\n  \"cheeseburger\": 63473,\n  \"chemex\": 59440,\n  \"cherries\": 57580,\n  \"chess-bishop-alt\": 62523,\n  \"chess-bishop-piece\": 62523,\n  \"chess-bishop\": 62522,\n  \"chess-board\": 62524,\n  \"chess-clock-alt\": 62526,\n  \"chess-clock-flip\": 62526,\n  \"chess-clock\": 62525,\n  \"chess-king-alt\": 62528,\n  \"chess-king-piece\": 62528,\n  \"chess-king\": 62527,\n  \"chess-knight-alt\": 62530,\n  \"chess-knight-piece\": 62530,\n  \"chess-knight\": 62529,\n  \"chess-pawn-alt\": 62532,\n  \"chess-pawn-piece\": 62532,\n  \"chess-pawn\": 62531,\n  \"chess-queen-alt\": 62534,\n  \"chess-queen-piece\": 62534,\n  \"chess-queen\": 62533,\n  \"chess-rook-alt\": 62536,\n  \"chess-rook-piece\": 62536,\n  \"chess-rook\": 62535,\n  \"chess\": 62521,\n  \"chest-drawers\": 59523,\n  \"chestnut\": 58358,\n  \"chevron-circle-down\": 61754,\n  \"chevron-circle-left\": 61751,\n  \"chevron-circle-right\": 61752,\n  \"chevron-circle-up\": 61753,\n  \"chevron-double-down\": 62242,\n  \"chevron-double-left\": 62243,\n  \"chevron-double-right\": 62244,\n  \"chevron-double-up\": 62245,\n  \"chevron-down\": 61560,\n  \"chevron-left\": 61523,\n  \"chevron-right\": 61524,\n  \"chevron-square-down\": 62249,\n  \"chevron-square-left\": 62250,\n  \"chevron-square-right\": 62251,\n  \"chevron-square-up\": 62252,\n  \"chevron-up\": 61559,\n  \"chevrons-down\": 62242,\n  \"chevrons-left\": 62243,\n  \"chevrons-right\": 62244,\n  \"chevrons-up\": 62245,\n  \"chf-sign\": 58882,\n  \"child-combatant\": 58592,\n  \"child-dress\": 58780,\n  \"child-reaching\": 58781,\n  \"child-rifle\": 58592,\n  \"child\": 61870,\n  \"children\": 58593,\n  \"chimney\": 63371,\n  \"chocolate-bar\": 58344,\n  \"chopsticks\": 58359,\n  \"church\": 62749,\n  \"circle-0\": 57581,\n  \"circle-1\": 57582,\n  \"circle-2\": 57583,\n  \"circle-3\": 57584,\n  \"circle-4\": 57585,\n  \"circle-5\": 57586,\n  \"circle-6\": 57587,\n  \"circle-7\": 57588,\n  \"circle-8\": 57589,\n  \"circle-9\": 57590,\n  \"circle-a\": 57591,\n  \"circle-ampersand\": 57592,\n  \"circle-arrow-down-left\": 57593,\n  \"circle-arrow-down-right\": 57594,\n  \"circle-arrow-down\": 61611,\n  \"circle-arrow-left\": 61608,\n  \"circle-arrow-right\": 61609,\n  \"circle-arrow-up-left\": 57595,\n  \"circle-arrow-up-right\": 57596,\n  \"circle-arrow-up\": 61610,\n  \"circle-austral\": 59163,\n  \"circle-australian-dollar\": 59184,\n  \"circle-b\": 57597,\n  \"circle-baht\": 59181,\n  \"circle-bangladeshi-taka\": 59137,\n  \"circle-bitcoin\": 59191,\n  \"circle-bolt\": 57598,\n  \"circle-book-open\": 57599,\n  \"circle-bookmark\": 57600,\n  \"circle-brazilian-real\": 59115,\n  \"circle-c\": 57601,\n  \"circle-calendar\": 57602,\n  \"circle-camera\": 57603,\n  \"circle-caret-down\": 62253,\n  \"circle-caret-left\": 62254,\n  \"circle-caret-right\": 62256,\n  \"circle-caret-up\": 62257,\n  \"circle-cedi\": 59202,\n  \"circle-cent\": 59178,\n  \"circle-check\": 61528,\n  \"circle-chevron-down\": 61754,\n  \"circle-chevron-left\": 61751,\n  \"circle-chevron-right\": 61752,\n  \"circle-chevron-up\": 61753,\n  \"circle-chf\": 59180,\n  \"circle-colon\": 59132,\n  \"circle-cruzeiro\": 59170,\n  \"circle-currency\": 59118,\n  \"circle-d\": 57604,\n  \"circle-danish-krone\": 59206,\n  \"circle-dashed\": 57605,\n  \"circle-divide\": 57606,\n  \"circle-dollar-to-slot\": 62649,\n  \"circle-dollar\": 62184,\n  \"circle-dong\": 59171,\n  \"circle-dot\": 61842,\n  \"circle-down-left\": 57607,\n  \"circle-down-right\": 57608,\n  \"circle-down\": 62296,\n  \"circle-e\": 57609,\n  \"circle-ellipsis-vertical\": 57611,\n  \"circle-ellipsis\": 57610,\n  \"circle-envelope\": 57612,\n  \"circle-equals\": 59057,\n  \"circle-euro\": 58830,\n  \"circle-eurozone\": 59205,\n  \"circle-exclamation-check\": 57613,\n  \"circle-exclamation\": 61546,\n  \"circle-f\": 57614,\n  \"circle-florin\": 59108,\n  \"circle-franc\": 59169,\n  \"circle-g\": 57615,\n  \"circle-gf\": 59007,\n  \"circle-guarani\": 59195,\n  \"circle-h\": 62590,\n  \"circle-half-horizontal\": 59404,\n  \"circle-half-stroke-horizontal\": 59405,\n  \"circle-half-stroke\": 61506,\n  \"circle-half\": 57616,\n  \"circle-heart\": 62663,\n  \"circle-house\": 59080,\n  \"circle-hryvnia\": 59119,\n  \"circle-i\": 57617,\n  \"circle-indian-rupee\": 59188,\n  \"circle-info\": 61530,\n  \"circle-j\": 57618,\n  \"circle-k\": 57619,\n  \"circle-kip\": 59133,\n  \"circle-l\": 57620,\n  \"circle-lari\": 59165,\n  \"circle-left\": 62297,\n  \"circle-lira\": 59126,\n  \"circle-litecoin\": 59124,\n  \"circle-location-arrow\": 62978,\n  \"circle-m\": 57621,\n  \"circle-malaysian-ringgit\": 59129,\n  \"circle-manat\": 59131,\n  \"circle-microphone-lines\": 57623,\n  \"circle-microphone\": 57622,\n  \"circle-mill\": 59138,\n  \"circle-minus\": 61526,\n  \"circle-moon\": 59360,\n  \"circle-n\": 57624,\n  \"circle-naira\": 59209,\n  \"circle-nodes\": 58594,\n  \"circle-norwegian-krone\": 59192,\n  \"circle-notch\": 61902,\n  \"circle-o\": 57625,\n  \"circle-p\": 57626,\n  \"circle-parking\": 62997,\n  \"circle-pause\": 62091,\n  \"circle-peruvian-soles\": 59123,\n  \"circle-peseta\": 59201,\n  \"circle-peso\": 59135,\n  \"circle-phone-flip\": 57628,\n  \"circle-phone-hangup\": 57629,\n  \"circle-phone\": 57627,\n  \"circle-play\": 61764,\n  \"circle-plus\": 61525,\n  \"circle-polish-zloty\": 59136,\n  \"circle-q\": 57630,\n  \"circle-quarter-stroke\": 58835,\n  \"circle-quarter\": 57631,\n  \"circle-quarters\": 58360,\n  \"circle-question\": 61529,\n  \"circle-r\": 57632,\n  \"circle-radiation\": 63418,\n  \"circle-renminbi\": 59113,\n  \"circle-right\": 62298,\n  \"circle-ruble\": 59109,\n  \"circle-rupee\": 59156,\n  \"circle-rupiah\": 59142,\n  \"circle-s\": 57633,\n  \"circle-share-nodes\": 59099,\n  \"circle-shekel\": 59139,\n  \"circle-small\": 57634,\n  \"circle-sort-down\": 57393,\n  \"circle-sort-up\": 57394,\n  \"circle-sort\": 57392,\n  \"circle-star\": 57635,\n  \"circle-sterling\": 58831,\n  \"circle-stop\": 62093,\n  \"circle-swedish-krona\": 59203,\n  \"circle-t\": 57636,\n  \"circle-tenge\": 59173,\n  \"circle-three-quarters-stroke\": 58836,\n  \"circle-three-quarters\": 57637,\n  \"circle-trash\": 57638,\n  \"circle-tugrik\": 59153,\n  \"circle-turkish-lira\": 59193,\n  \"circle-u\": 57639,\n  \"circle-up-left\": 57640,\n  \"circle-up-right\": 57641,\n  \"circle-up\": 62299,\n  \"circle-user-circle-check\": 59295,\n  \"circle-user-circle-exclamation\": 59296,\n  \"circle-user-circle-minus\": 59297,\n  \"circle-user-circle-moon\": 59298,\n  \"circle-user-circle-plus\": 59299,\n  \"circle-user-circle-question\": 59300,\n  \"circle-user-circle-user\": 59301,\n  \"circle-user-circle-xmark\": 59302,\n  \"circle-user-clock\": 59303,\n  \"circle-user\": 62141,\n  \"circle-v\": 57642,\n  \"circle-video\": 57643,\n  \"circle-w\": 57644,\n  \"circle-waveform-lines\": 57645,\n  \"circle-wifi-circle-wifi\": 59006,\n  \"circle-wifi-group\": 59006,\n  \"circle-wifi\": 59005,\n  \"circle-won\": 59116,\n  \"circle-x\": 57646,\n  \"circle-xmark\": 61527,\n  \"circle-y\": 57647,\n  \"circle-yen\": 58832,\n  \"circle-z\": 57648,\n  \"circle\": 61713,\n  \"circleapore-dollar\": 59166,\n  \"circles-overlap-3\": 59041,\n  \"circles-overlap\": 58880,\n  \"citrus-slice\": 58101,\n  \"citrus\": 58100,\n  \"city\": 63055,\n  \"clapperboard-play\": 57650,\n  \"clapperboard\": 57649,\n  \"clarinet\": 63661,\n  \"claw-marks\": 63170,\n  \"clinic-medical\": 63474,\n  \"clipboard-check\": 62572,\n  \"clipboard-clock\": 59222,\n  \"clipboard-exclamation\": 59223,\n  \"clipboard-list-check\": 63287,\n  \"clipboard-list\": 62573,\n  \"clipboard-medical\": 57651,\n  \"clipboard-prescription\": 62952,\n  \"clipboard-question\": 58595,\n  \"clipboard-user\": 63475,\n  \"clipboard\": 62248,\n  \"clock-desk\": 57652,\n  \"clock-eight-thirty\": 58182,\n  \"clock-eight\": 58181,\n  \"clock-eleven-thirty\": 58184,\n  \"clock-eleven\": 58183,\n  \"clock-five-thirty\": 58186,\n  \"clock-five\": 58185,\n  \"clock-four-thirty\": 58187,\n  \"clock-four\": 61463,\n  \"clock-nine-thirty\": 58189,\n  \"clock-nine\": 58188,\n  \"clock-one-thirty\": 58191,\n  \"clock-one\": 58190,\n  \"clock-rotate-left\": 61914,\n  \"clock-seven-thirty\": 58193,\n  \"clock-seven\": 58192,\n  \"clock-six-thirty\": 58195,\n  \"clock-six\": 58194,\n  \"clock-ten-thirty\": 58197,\n  \"clock-ten\": 58196,\n  \"clock-three-thirty\": 58199,\n  \"clock-three\": 58198,\n  \"clock-twelve-thirty\": 58201,\n  \"clock-twelve\": 58200,\n  \"clock-two-thirty\": 58203,\n  \"clock-two\": 58202,\n  \"clock\": 61463,\n  \"clone-plus\": 59212,\n  \"clone\": 62029,\n  \"close\": 61453,\n  \"closed-captioning-slash\": 57653,\n  \"closed-captioning\": 61962,\n  \"clothes-hanger\": 57654,\n  \"cloud-arrow-down\": 61677,\n  \"cloud-arrow-up\": 61678,\n  \"cloud-binary\": 58881,\n  \"cloud-bolt-moon\": 63341,\n  \"cloud-bolt-sun\": 63342,\n  \"cloud-bolt\": 63340,\n  \"cloud-check\": 58204,\n  \"cloud-download-alt\": 61677,\n  \"cloud-download\": 61677,\n  \"cloud-drizzle\": 63288,\n  \"cloud-exclamation\": 58513,\n  \"cloud-fog\": 63310,\n  \"cloud-hail-mixed\": 63290,\n  \"cloud-hail\": 63289,\n  \"cloud-meatball\": 63291,\n  \"cloud-minus\": 58205,\n  \"cloud-moon-rain\": 63292,\n  \"cloud-moon\": 63171,\n  \"cloud-music\": 63662,\n  \"cloud-plus\": 58206,\n  \"cloud-question\": 58514,\n  \"cloud-rain\": 63293,\n  \"cloud-rainbow\": 63294,\n  \"cloud-showers-heavy\": 63296,\n  \"cloud-showers-water\": 58596,\n  \"cloud-showers\": 63295,\n  \"cloud-slash\": 57655,\n  \"cloud-sleet\": 63297,\n  \"cloud-snow\": 63298,\n  \"cloud-sun-rain\": 63299,\n  \"cloud-sun\": 63172,\n  \"cloud-upload-alt\": 61678,\n  \"cloud-upload\": 61678,\n  \"cloud-word\": 57656,\n  \"cloud-xmark\": 58207,\n  \"cloud\": 61634,\n  \"clouds-moon\": 63301,\n  \"clouds-sun\": 63302,\n  \"clouds\": 63300,\n  \"clover\": 57657,\n  \"club\": 62247,\n  \"cny\": 61783,\n  \"cocktail\": 62817,\n  \"coconut\": 58102,\n  \"code-branch\": 61734,\n  \"code-commit\": 62342,\n  \"code-compare\": 57658,\n  \"code-fork\": 57659,\n  \"code-merge\": 62343,\n  \"code-pull-request-closed\": 58361,\n  \"code-pull-request-draft\": 58362,\n  \"code-pull-request\": 57660,\n  \"code-simple\": 57661,\n  \"code\": 61729,\n  \"coffee-bean\": 57662,\n  \"coffee-beans\": 57663,\n  \"coffee-pot\": 57346,\n  \"coffee-togo\": 63173,\n  \"coffee\": 61684,\n  \"coffin-cross\": 57425,\n  \"coffin\": 63174,\n  \"cog\": 61459,\n  \"cogs\": 61573,\n  \"coin-blank\": 58363,\n  \"coin-front\": 58364,\n  \"coin-vertical\": 58365,\n  \"coin\": 63580,\n  \"coins\": 62750,\n  \"colon-sign\": 57664,\n  \"colon\": 58,\n  \"columns-3\": 58209,\n  \"columns\": 61659,\n  \"comet\": 57347,\n  \"comma\": 44,\n  \"command\": 57666,\n  \"comment-alt-arrow-down\": 57819,\n  \"comment-alt-arrow-up\": 57820,\n  \"comment-alt-captions\": 57822,\n  \"comment-alt-check\": 62626,\n  \"comment-alt-dollar\": 63056,\n  \"comment-alt-dots\": 62627,\n  \"comment-alt-edit\": 62628,\n  \"comment-alt-exclamation\": 62629,\n  \"comment-alt-image\": 57824,\n  \"comment-alt-lines\": 62630,\n  \"comment-alt-medical\": 63476,\n  \"comment-alt-minus\": 62631,\n  \"comment-alt-music\": 63663,\n  \"comment-alt-plus\": 62632,\n  \"comment-alt-quote\": 57828,\n  \"comment-alt-slash\": 62633,\n  \"comment-alt-smile\": 62634,\n  \"comment-alt-text\": 57830,\n  \"comment-alt-times\": 62635,\n  \"comment-alt\": 62074,\n  \"comment-arrow-down\": 57667,\n  \"comment-arrow-up-right\": 57669,\n  \"comment-arrow-up\": 57668,\n  \"comment-captions\": 57670,\n  \"comment-check\": 62636,\n  \"comment-code\": 57671,\n  \"comment-dollar\": 63057,\n  \"comment-dot\": 59100,\n  \"comment-dots\": 62637,\n  \"comment-edit\": 62638,\n  \"comment-exclamation\": 62639,\n  \"comment-heart\": 58824,\n  \"comment-image\": 57672,\n  \"comment-lines\": 62640,\n  \"comment-medical\": 63477,\n  \"comment-middle-alt\": 57825,\n  \"comment-middle-top-alt\": 57826,\n  \"comment-middle-top\": 57674,\n  \"comment-middle\": 57673,\n  \"comment-minus\": 62641,\n  \"comment-music\": 63664,\n  \"comment-nodes\": 59030,\n  \"comment-pen\": 62638,\n  \"comment-plus\": 62642,\n  \"comment-question\": 57675,\n  \"comment-quote\": 57676,\n  \"comment-slash\": 62643,\n  \"comment-smile\": 62644,\n  \"comment-sms\": 63437,\n  \"comment-text\": 57677,\n  \"comment-times\": 62645,\n  \"comment-waveform\": 59101,\n  \"comment-xmark\": 62645,\n  \"comment\": 61557,\n  \"commenting\": 62637,\n  \"comments-alt-dollar\": 63058,\n  \"comments-alt\": 62646,\n  \"comments-dollar\": 63059,\n  \"comments-question-check\": 57679,\n  \"comments-question\": 57678,\n  \"comments\": 61574,\n  \"compact-disc\": 62751,\n  \"compass-drafting\": 62824,\n  \"compass-slash\": 62953,\n  \"compass\": 61774,\n  \"compress-alt\": 62498,\n  \"compress-arrows-alt\": 63372,\n  \"compress-arrows\": 57509,\n  \"compress-wide\": 62246,\n  \"compress\": 61542,\n  \"computer-classic\": 63665,\n  \"computer-mouse-button-left\": 59341,\n  \"computer-mouse-button-right\": 59342,\n  \"computer-mouse-scrollwheel\": 63693,\n  \"computer-mouse\": 63692,\n  \"computer-speaker\": 63666,\n  \"computer\": 58597,\n  \"concierge-bell\": 62818,\n  \"construction\": 63581,\n  \"contact-book\": 62137,\n  \"contact-card\": 62139,\n  \"container-storage\": 62647,\n  \"conveyor-belt-alt\": 62575,\n  \"conveyor-belt-arm\": 58872,\n  \"conveyor-belt-boxes\": 62575,\n  \"conveyor-belt-empty\": 57680,\n  \"conveyor-belt\": 62574,\n  \"cookie-bite\": 62820,\n  \"cookie\": 62819,\n  \"copy\": 61637,\n  \"copyright\": 61945,\n  \"corn\": 63175,\n  \"corner\": 58366,\n  \"couch-small\": 62668,\n  \"couch\": 62648,\n  \"court-sport\": 58947,\n  \"cow\": 63176,\n  \"cowbell-circle-plus\": 63668,\n  \"cowbell-more\": 63668,\n  \"cowbell\": 63667,\n  \"crab\": 58367,\n  \"crate-apple\": 63153,\n  \"crate-empty\": 57681,\n  \"credit-card-alt\": 61597,\n  \"credit-card-blank\": 62345,\n  \"credit-card-front\": 62346,\n  \"credit-card\": 61597,\n  \"creemee\": 58368,\n  \"cricket-bat-ball\": 62537,\n  \"cricket\": 62537,\n  \"croissant\": 63478,\n  \"crop-alt\": 62821,\n  \"crop-simple\": 62821,\n  \"crop\": 61733,\n  \"cross\": 63060,\n  \"crosshairs-simple\": 58783,\n  \"crosshairs\": 61531,\n  \"crow\": 62752,\n  \"crown\": 62753,\n  \"crutch\": 63479,\n  \"crutches\": 63480,\n  \"cruzeiro-sign\": 57682,\n  \"crystal-ball\": 58210,\n  \"cube\": 61874,\n  \"cubes-stacked\": 58598,\n  \"cubes\": 61875,\n  \"cucumber\": 58369,\n  \"cup-straw-swoosh\": 58212,\n  \"cup-straw\": 58211,\n  \"cup-togo\": 63173,\n  \"cupcake\": 58370,\n  \"curling-stone\": 62538,\n  \"curling\": 62538,\n  \"currency-sign\": 59179,\n  \"custard\": 58371,\n  \"cut\": 61636,\n  \"cutlery\": 62183,\n  \"d\": 68,\n  \"dagger\": 63179,\n  \"danish-krone-sign\": 59168,\n  \"dash\": 58372,\n  \"dashboard\": 63012,\n  \"database\": 61888,\n  \"deaf\": 62116,\n  \"deafness\": 62116,\n  \"debug\": 63481,\n  \"dedent\": 61499,\n  \"deer-rudolph\": 63375,\n  \"deer\": 63374,\n  \"delete-left\": 62810,\n  \"delete-right\": 57684,\n  \"democrat\": 63303,\n  \"desk\": 59518,\n  \"desktop-alt\": 62352,\n  \"desktop-arrow-down\": 57685,\n  \"desktop-code\": 57701,\n  \"desktop-medical\": 57702,\n  \"desktop-slash\": 58106,\n  \"desktop\": 62352,\n  \"dewpoint\": 63304,\n  \"dharmachakra\": 63061,\n  \"diagnoses\": 62576,\n  \"diagram-cells\": 58485,\n  \"diagram-lean-canvas\": 57686,\n  \"diagram-nested\": 57687,\n  \"diagram-next\": 58486,\n  \"diagram-predecessor\": 58487,\n  \"diagram-previous\": 58488,\n  \"diagram-project\": 62786,\n  \"diagram-sankey\": 57688,\n  \"diagram-subtask\": 58489,\n  \"diagram-successor\": 58490,\n  \"diagram-venn\": 57690,\n  \"dial-high\": 57692,\n  \"dial-low\": 57693,\n  \"dial-max\": 57694,\n  \"dial-med-high\": 57691,\n  \"dial-med-low\": 57696,\n  \"dial-med\": 57695,\n  \"dial-min\": 57697,\n  \"dial-off\": 57698,\n  \"dial\": 57691,\n  \"dialpad\": 59340,\n  \"diamond-exclamation\": 58373,\n  \"diamond-half-stroke\": 58808,\n  \"diamond-half\": 58807,\n  \"diamond-turn-right\": 62955,\n  \"diamond\": 61977,\n  \"diamonds-4\": 59019,\n  \"dice-d10\": 63181,\n  \"dice-d12\": 63182,\n  \"dice-d20\": 63183,\n  \"dice-d4\": 63184,\n  \"dice-d6\": 63185,\n  \"dice-d8\": 63186,\n  \"dice-five\": 62755,\n  \"dice-four\": 62756,\n  \"dice-one\": 62757,\n  \"dice-six\": 62758,\n  \"dice-three\": 62759,\n  \"dice-two\": 62760,\n  \"dice\": 62754,\n  \"digging\": 63582,\n  \"digital-tachograph\": 62822,\n  \"dinosaur\": 58878,\n  \"diploma\": 62954,\n  \"direction-left-right\": 59070,\n  \"direction-up-down\": 59071,\n  \"directions\": 62955,\n  \"disc-drive\": 63669,\n  \"disease\": 63482,\n  \"display-arrow-down\": 57700,\n  \"display-chart-up-circle-currency\": 58853,\n  \"display-chart-up-circle-dollar\": 58854,\n  \"display-chart-up\": 58851,\n  \"display-code\": 57701,\n  \"display-medical\": 57702,\n  \"display-slash\": 58106,\n  \"display\": 57699,\n  \"distribute-spacing-horizontal\": 58213,\n  \"distribute-spacing-vertical\": 58214,\n  \"ditto\": 34,\n  \"divide\": 62761,\n  \"dizzy\": 62823,\n  \"dna\": 62577,\n  \"do-not-enter\": 62956,\n  \"dog-leashed\": 63188,\n  \"dog\": 63187,\n  \"dollar-circle\": 62184,\n  \"dollar-sign\": 36,\n  \"dollar-square\": 62185,\n  \"dollar\": 36,\n  \"dolly-box\": 62578,\n  \"dolly-empty\": 62579,\n  \"dolly-flatbed-alt\": 62581,\n  \"dolly-flatbed-empty\": 62582,\n  \"dolly-flatbed\": 62580,\n  \"dolly\": 62578,\n  \"dolphin\": 57704,\n  \"donate\": 62649,\n  \"dong-sign\": 57705,\n  \"donut\": 58374,\n  \"door-closed\": 62762,\n  \"door-open\": 62763,\n  \"dot-circle\": 61842,\n  \"dot\": 59345,\n  \"doughnut\": 58374,\n  \"dove\": 62650,\n  \"down-from-bracket\": 58987,\n  \"down-from-dotted-line\": 58375,\n  \"down-from-line\": 62281,\n  \"down-left-and-up-right-to-center\": 62498,\n  \"down-left\": 57706,\n  \"down-long-to-line\": 59072,\n  \"down-long\": 62217,\n  \"down-right\": 57707,\n  \"down-to-bracket\": 58599,\n  \"down-to-dotted-line\": 58376,\n  \"down-to-line\": 62282,\n  \"down-up\": 59073,\n  \"down\": 62292,\n  \"download\": 61465,\n  \"drafting-compass\": 62824,\n  \"dragon\": 63189,\n  \"draw-circle\": 62957,\n  \"draw-polygon\": 62958,\n  \"draw-square\": 62959,\n  \"dreidel\": 63378,\n  \"dress\": 59089,\n  \"dresser\": 59519,\n  \"drivers-license\": 62146,\n  \"drone-alt\": 63584,\n  \"drone-front\": 63584,\n  \"drone\": 63583,\n  \"droplet-degree\": 63304,\n  \"droplet-percent\": 63312,\n  \"droplet-plus\": 59392,\n  \"droplet-slash\": 62919,\n  \"droplet\": 61507,\n  \"drum-steelpan\": 62826,\n  \"drum\": 62825,\n  \"drumstick-bite\": 63191,\n  \"drumstick\": 63190,\n  \"dryer-alt\": 63586,\n  \"dryer-heat\": 63586,\n  \"dryer\": 63585,\n  \"duck\": 63192,\n  \"dumbbell\": 62539,\n  \"dumpster-fire\": 63380,\n  \"dumpster\": 63379,\n  \"dungeon\": 63193,\n  \"e\": 69,\n  \"ear-circle-checkmark\": 59227,\n  \"ear-deaf\": 62116,\n  \"ear-listen\": 62114,\n  \"ear-muffs\": 63381,\n  \"ear-triangle-exclamation\": 59228,\n  \"ear-waveform\": 59229,\n  \"ear\": 62960,\n  \"earth-africa\": 62844,\n  \"earth-america\": 62845,\n  \"earth-americas\": 62845,\n  \"earth-asia\": 62846,\n  \"earth-europe\": 63394,\n  \"earth-oceania\": 58491,\n  \"earth\": 62845,\n  \"eclipse-alt\": 63306,\n  \"eclipse\": 63305,\n  \"edit\": 61508,\n  \"egg-fried\": 63484,\n  \"egg\": 63483,\n  \"eggplant\": 57708,\n  \"eject\": 61522,\n  \"elephant\": 63194,\n  \"elevator\": 57709,\n  \"ellipsis-h-alt\": 62363,\n  \"ellipsis-h\": 61761,\n  \"ellipsis-stroke-vertical\": 62364,\n  \"ellipsis-stroke\": 62363,\n  \"ellipsis-v-alt\": 62364,\n  \"ellipsis-v\": 61762,\n  \"ellipsis-vertical\": 61762,\n  \"ellipsis\": 61761,\n  \"empty-set\": 63062,\n  \"engine-exclamation\": 62962,\n  \"engine-warning\": 62962,\n  \"engine\": 57710,\n  \"envelope-badge\": 57711,\n  \"envelope-certificate\": 59433,\n  \"envelope-circle-check\": 58600,\n  \"envelope-circle-user\": 59102,\n  \"envelope-circle\": 57612,\n  \"envelope-dot\": 57711,\n  \"envelope-open-dollar\": 63063,\n  \"envelope-open-text\": 63064,\n  \"envelope-open\": 62134,\n  \"envelope-ribbon\": 59433,\n  \"envelope-square\": 61849,\n  \"envelope\": 61664,\n  \"envelopes-bulk\": 63092,\n  \"envelopes\": 57712,\n  \"equals\": 61,\n  \"eraser\": 61741,\n  \"escalator\": 57713,\n  \"ethernet\": 63382,\n  \"eur\": 61779,\n  \"euro-sign\": 61779,\n  \"euro\": 61779,\n  \"eurozone-sign\": 59200,\n  \"excavator\": 58966,\n  \"exchange-alt\": 62306,\n  \"exchange\": 61676,\n  \"exclamation-circle\": 61546,\n  \"exclamation-square\": 62241,\n  \"exclamation-triangle\": 61553,\n  \"exclamation\": 33,\n  \"expand-alt\": 62500,\n  \"expand-arrows-alt\": 62238,\n  \"expand-arrows\": 62237,\n  \"expand-wide\": 62240,\n  \"expand\": 61541,\n  \"exploding-head\": 58110,\n  \"explosion\": 58601,\n  \"external-link-alt\": 62301,\n  \"external-link-square-alt\": 62304,\n  \"external-link-square\": 61772,\n  \"external-link\": 61582,\n  \"eye-closed\": 59451,\n  \"eye-dropper-empty\": 61947,\n  \"eye-dropper-full\": 57714,\n  \"eye-dropper-half\": 57715,\n  \"eye-dropper\": 61947,\n  \"eye-evil\": 63195,\n  \"eye-low-vision\": 62120,\n  \"eye-slash\": 61552,\n  \"eye\": 61550,\n  \"eyedropper\": 61947,\n  \"eyes\": 58215,\n  \"f\": 70,\n  \"face-angry-horns\": 58216,\n  \"face-angry\": 62806,\n  \"face-anguished\": 58217,\n  \"face-anxious-sweat\": 58218,\n  \"face-astonished\": 58219,\n  \"face-awesome\": 58377,\n  \"face-beam-hand-over-mouth\": 58492,\n  \"face-clouds\": 58493,\n  \"face-confounded\": 58220,\n  \"face-confused\": 58221,\n  \"face-cowboy-hat\": 58222,\n  \"face-diagonal-mouth\": 58494,\n  \"face-disappointed\": 58223,\n  \"face-disguise\": 58224,\n  \"face-dizzy\": 62823,\n  \"face-dotted\": 58495,\n  \"face-downcast-sweat\": 58225,\n  \"face-drooling\": 58226,\n  \"face-exhaling\": 58496,\n  \"face-explode\": 58110,\n  \"face-expressionless\": 58227,\n  \"face-eyes-xmarks\": 58228,\n  \"face-fearful\": 58229,\n  \"face-flushed\": 62841,\n  \"face-frown-open\": 62842,\n  \"face-frown-slight\": 58230,\n  \"face-frown\": 61721,\n  \"face-glasses\": 58231,\n  \"face-grimace\": 62847,\n  \"face-grin-beam-sweat\": 62851,\n  \"face-grin-beam\": 62850,\n  \"face-grin-hearts\": 62852,\n  \"face-grin-squint-tears\": 62854,\n  \"face-grin-squint\": 62853,\n  \"face-grin-stars\": 62855,\n  \"face-grin-tears\": 62856,\n  \"face-grin-tongue-squint\": 62858,\n  \"face-grin-tongue-wink\": 62859,\n  \"face-grin-tongue\": 62857,\n  \"face-grin-wide\": 62849,\n  \"face-grin-wink\": 62860,\n  \"face-grin\": 62848,\n  \"face-hand-over-mouth\": 58232,\n  \"face-hand-peeking\": 58497,\n  \"face-hand-yawn\": 58233,\n  \"face-head-bandage\": 58234,\n  \"face-holding-back-tears\": 58498,\n  \"face-hushed\": 58235,\n  \"face-icicles\": 58236,\n  \"face-kiss-beam\": 62871,\n  \"face-kiss-closed-eyes\": 58237,\n  \"face-kiss-wink-heart\": 62872,\n  \"face-kiss\": 62870,\n  \"face-laugh-beam\": 62874,\n  \"face-laugh-squint\": 62875,\n  \"face-laugh-wink\": 62876,\n  \"face-laugh\": 62873,\n  \"face-lying\": 58238,\n  \"face-mask\": 58239,\n  \"face-meh-blank\": 62884,\n  \"face-meh\": 61722,\n  \"face-melting\": 58499,\n  \"face-monocle\": 58240,\n  \"face-nauseated\": 58241,\n  \"face-nose-steam\": 58242,\n  \"face-party\": 58243,\n  \"face-pensive\": 58244,\n  \"face-persevering\": 58245,\n  \"face-pleading\": 58246,\n  \"face-pouting\": 58247,\n  \"face-raised-eyebrow\": 58248,\n  \"face-relieved\": 58249,\n  \"face-rolling-eyes\": 62885,\n  \"face-sad-cry\": 62899,\n  \"face-sad-sweat\": 58250,\n  \"face-sad-tear\": 62900,\n  \"face-saluting\": 58500,\n  \"face-scream\": 58251,\n  \"face-shaking-horizontal\": 59293,\n  \"face-shaking-vertical\": 59294,\n  \"face-shaking\": 59292,\n  \"face-shush\": 58252,\n  \"face-sleeping\": 58253,\n  \"face-sleepy\": 58254,\n  \"face-smile-beam\": 62904,\n  \"face-smile-halo\": 58255,\n  \"face-smile-hearts\": 58256,\n  \"face-smile-horns\": 58257,\n  \"face-smile-plus\": 62905,\n  \"face-smile-relaxed\": 58258,\n  \"face-smile-tear\": 58259,\n  \"face-smile-tongue\": 58260,\n  \"face-smile-upside-down\": 58261,\n  \"face-smile-wink\": 62682,\n  \"face-smile\": 61720,\n  \"face-smiling-hands\": 58262,\n  \"face-smirking\": 58263,\n  \"face-spiral-eyes\": 58501,\n  \"face-sunglasses\": 58264,\n  \"face-surprise\": 62914,\n  \"face-swear\": 58265,\n  \"face-thermometer\": 58266,\n  \"face-thinking\": 58267,\n  \"face-tired\": 62920,\n  \"face-tissue\": 58268,\n  \"face-tongue-money\": 58269,\n  \"face-tongue-sweat\": 58270,\n  \"face-unamused\": 58271,\n  \"face-viewfinder\": 58111,\n  \"face-vomit\": 58272,\n  \"face-weary\": 58273,\n  \"face-woozy\": 58274,\n  \"face-worried\": 58275,\n  \"face-zany\": 58276,\n  \"face-zipper\": 58277,\n  \"falafel\": 58378,\n  \"family-dress\": 58113,\n  \"family-pants\": 58114,\n  \"family\": 58112,\n  \"fan-table\": 57348,\n  \"fan\": 63587,\n  \"farm\": 63588,\n  \"fast-backward\": 61513,\n  \"fast-forward\": 61520,\n  \"faucet-drip\": 57350,\n  \"faucet\": 57349,\n  \"fax\": 61868,\n  \"feather-alt\": 62827,\n  \"feather-pointed\": 62827,\n  \"feather\": 62765,\n  \"feed\": 61598,\n  \"female\": 61826,\n  \"fence\": 58115,\n  \"ferris-wheel\": 57716,\n  \"ferry\": 58602,\n  \"field-hockey-stick-ball\": 62540,\n  \"field-hockey\": 62540,\n  \"fighter-jet\": 61691,\n  \"file-aiff\": 59387,\n  \"file-alt\": 61788,\n  \"file-archive\": 61894,\n  \"file-arrow-down\": 62829,\n  \"file-arrow-up\": 62836,\n  \"file-audio\": 61895,\n  \"file-award\": 62963,\n  \"file-ban\": 59224,\n  \"file-binary\": 57717,\n  \"file-brackets-curly\": 59396,\n  \"file-cad\": 58994,\n  \"file-caret-down\": 58409,\n  \"file-caret-up\": 58410,\n  \"file-certificate\": 62963,\n  \"file-chart-column\": 63065,\n  \"file-chart-line\": 63065,\n  \"file-chart-pie\": 63066,\n  \"file-check\": 62230,\n  \"file-circle-check\": 58784,\n  \"file-circle-exclamation\": 58603,\n  \"file-circle-info\": 58515,\n  \"file-circle-minus\": 58605,\n  \"file-circle-plus\": 58516,\n  \"file-circle-question\": 58607,\n  \"file-circle-xmark\": 58785,\n  \"file-clipboard\": 61674,\n  \"file-code\": 61897,\n  \"file-contract\": 62828,\n  \"file-css\": 59452,\n  \"file-csv\": 63197,\n  \"file-dashed-line\": 63607,\n  \"file-doc\": 58861,\n  \"file-download\": 62829,\n  \"file-edit\": 62236,\n  \"file-eps\": 58948,\n  \"file-excel\": 61891,\n  \"file-exclamation\": 62234,\n  \"file-export\": 62830,\n  \"file-fragment\": 59031,\n  \"file-gif\": 58949,\n  \"file-half-dashed\": 59032,\n  \"file-heart\": 57718,\n  \"file-html\": 59453,\n  \"file-icns\": 59457,\n  \"file-image\": 61893,\n  \"file-import\": 62831,\n  \"file-invoice-dollar\": 62833,\n  \"file-invoice\": 62832,\n  \"file-jpg\": 58950,\n  \"file-js\": 59454,\n  \"file-lines\": 61788,\n  \"file-lock\": 58278,\n  \"file-magnifying-glass\": 63589,\n  \"file-medical-alt\": 62584,\n  \"file-medical\": 62583,\n  \"file-midi\": 59397,\n  \"file-minus\": 62232,\n  \"file-mov\": 58951,\n  \"file-mp3\": 58952,\n  \"file-mp4\": 58953,\n  \"file-music\": 63670,\n  \"file-odf\": 59388,\n  \"file-pdf\": 61889,\n  \"file-pen\": 62236,\n  \"file-plus-minus\": 57719,\n  \"file-plus\": 62233,\n  \"file-png\": 58982,\n  \"file-powerpoint\": 61892,\n  \"file-ppt\": 58954,\n  \"file-prescription\": 62834,\n  \"file-search\": 63589,\n  \"file-shield\": 58608,\n  \"file-signature\": 62835,\n  \"file-slash\": 58279,\n  \"file-spreadsheet\": 63067,\n  \"file-svg\": 58955,\n  \"file-tex\": 59389,\n  \"file-text\": 61788,\n  \"file-times\": 62231,\n  \"file-upload\": 62836,\n  \"file-user\": 63068,\n  \"file-vector\": 58956,\n  \"file-video\": 61896,\n  \"file-wav\": 59390,\n  \"file-waveform\": 62584,\n  \"file-word\": 61890,\n  \"file-xls\": 58957,\n  \"file-xmark\": 62231,\n  \"file-xml\": 58964,\n  \"file-zip\": 58862,\n  \"file-zipper\": 61894,\n  \"file\": 61787,\n  \"files-medical\": 63485,\n  \"files\": 57720,\n  \"fill-drip\": 62838,\n  \"fill\": 62837,\n  \"film-alt\": 61448,\n  \"film-canister\": 63671,\n  \"film-cannister\": 63671,\n  \"film-music\": 59241,\n  \"film-simple\": 61448,\n  \"film-slash\": 57721,\n  \"film-stack\": 59243,\n  \"film\": 61448,\n  \"films\": 57722,\n  \"filter-circle-dollar\": 63074,\n  \"filter-circle-xmark\": 57723,\n  \"filter-list\": 57724,\n  \"filter-slash\": 57725,\n  \"filter\": 61616,\n  \"filters\": 57726,\n  \"fingerprint\": 62839,\n  \"fire-alt\": 63460,\n  \"fire-burner\": 58609,\n  \"fire-extinguisher\": 61748,\n  \"fire-flame-curved\": 63460,\n  \"fire-flame-simple\": 62570,\n  \"fire-flame\": 63199,\n  \"fire-hydrant\": 57727,\n  \"fire-smoke\": 63307,\n  \"fire\": 61549,\n  \"fireplace\": 63386,\n  \"firewall\": 58332,\n  \"first-aid\": 62585,\n  \"fish-bones\": 58116,\n  \"fish-cooked\": 63486,\n  \"fish-fins\": 58610,\n  \"fish\": 62840,\n  \"fishing-rod\": 58280,\n  \"fist-raised\": 63198,\n  \"flag-alt\": 63308,\n  \"flag-checkered\": 61726,\n  \"flag-pennant\": 62550,\n  \"flag-swallowtail\": 63308,\n  \"flag-usa\": 63309,\n  \"flag\": 61476,\n  \"flame\": 63199,\n  \"flashlight\": 63672,\n  \"flask-gear\": 58865,\n  \"flask-poison\": 63200,\n  \"flask-potion\": 63201,\n  \"flask-round-poison\": 63200,\n  \"flask-round-potion\": 63201,\n  \"flask-vial\": 58611,\n  \"flask\": 61635,\n  \"flatbread-stuffed\": 58380,\n  \"flatbread\": 58379,\n  \"floppy-disk-circle-arrow-right\": 57728,\n  \"floppy-disk-circle-xmark\": 57729,\n  \"floppy-disk-pen\": 57730,\n  \"floppy-disk-times\": 57729,\n  \"floppy-disk\": 61639,\n  \"floppy-disks\": 57731,\n  \"florin-sign\": 57732,\n  \"flower-daffodil\": 63488,\n  \"flower-tulip\": 63489,\n  \"flower\": 63487,\n  \"flushed\": 62841,\n  \"flute\": 63673,\n  \"flux-capacitor\": 63674,\n  \"flying-disc\": 58281,\n  \"fog\": 63310,\n  \"folder-arrow-down\": 57427,\n  \"folder-arrow-left\": 59346,\n  \"folder-arrow-right\": 59347,\n  \"folder-arrow-up\": 57428,\n  \"folder-blank\": 61563,\n  \"folder-bookmark\": 57734,\n  \"folder-check\": 58958,\n  \"folder-closed\": 57733,\n  \"folder-cog\": 57735,\n  \"folder-download\": 57427,\n  \"folder-gear\": 57735,\n  \"folder-grid\": 57736,\n  \"folder-heart\": 57737,\n  \"folder-image\": 57738,\n  \"folder-magnifying-glass\": 57739,\n  \"folder-medical\": 57740,\n  \"folder-minus\": 63069,\n  \"folder-music\": 57741,\n  \"folder-open\": 61564,\n  \"folder-plus\": 63070,\n  \"folder-search\": 57739,\n  \"folder-times\": 63071,\n  \"folder-tree\": 63490,\n  \"folder-upload\": 57428,\n  \"folder-user\": 57742,\n  \"folder-xmark\": 63071,\n  \"folder\": 61563,\n  \"folders\": 63072,\n  \"fondue-pot\": 58381,\n  \"font-awesome-flag\": 62132,\n  \"font-awesome-logo-full\": 62132,\n  \"font-awesome\": 62132,\n  \"font-case\": 63590,\n  \"font\": 61489,\n  \"foot-wing\": 59444,\n  \"football-ball\": 62542,\n  \"football-helmet\": 62543,\n  \"football\": 62542,\n  \"fork-knife\": 62182,\n  \"fork\": 62179,\n  \"forklift\": 62586,\n  \"fort\": 58502,\n  \"forward-fast\": 61520,\n  \"forward-step\": 61521,\n  \"forward\": 61518,\n  \"fragile\": 62651,\n  \"frame\": 58517,\n  \"franc-sign\": 57743,\n  \"french-fries\": 63491,\n  \"frog\": 62766,\n  \"frosty-head\": 63387,\n  \"frown-open\": 62842,\n  \"frown\": 61721,\n  \"function\": 63073,\n  \"funnel-dollar\": 63074,\n  \"futbol-ball\": 61923,\n  \"futbol\": 61923,\n  \"g\": 71,\n  \"galaxy\": 57352,\n  \"gallery-thumbnails\": 58282,\n  \"game-board-alt\": 63592,\n  \"game-board-simple\": 63592,\n  \"game-board\": 63591,\n  \"game-console-handheld-crank\": 58809,\n  \"game-console-handheld\": 63675,\n  \"gamepad-alt\": 58786,\n  \"gamepad-modern\": 58786,\n  \"gamepad\": 61723,\n  \"garage-car\": 57354,\n  \"garage-empty\": 59081,\n  \"garage-open\": 57355,\n  \"garage\": 57353,\n  \"garlic\": 58382,\n  \"gas-pump-left\": 59256,\n  \"gas-pump-right\": 59257,\n  \"gas-pump-slash\": 62964,\n  \"gas-pump\": 62767,\n  \"gauge-circle-bolt\": 58518,\n  \"gauge-circle-minus\": 58519,\n  \"gauge-circle-plus\": 58520,\n  \"gauge-high\": 63013,\n  \"gauge-low\": 63015,\n  \"gauge-max\": 63014,\n  \"gauge-med\": 63012,\n  \"gauge-min\": 63016,\n  \"gauge-simple-high\": 63018,\n  \"gauge-simple-low\": 63020,\n  \"gauge-simple-max\": 63019,\n  \"gauge-simple-med\": 63017,\n  \"gauge-simple-min\": 63021,\n  \"gauge-simple\": 63017,\n  \"gauge\": 63012,\n  \"gave-dandy\": 58377,\n  \"gavel\": 61667,\n  \"gbp\": 61780,\n  \"gear-api\": 59556,\n  \"gear-code\": 58856,\n  \"gear-complex-api\": 59557,\n  \"gear-complex-code\": 58859,\n  \"gear-complex\": 58857,\n  \"gear\": 61459,\n  \"gears\": 61573,\n  \"gem\": 62373,\n  \"gemini\": 59465,\n  \"genderless\": 61997,\n  \"ghost\": 63202,\n  \"gif\": 57744,\n  \"gift-card\": 63075,\n  \"gift\": 61547,\n  \"gifts\": 63388,\n  \"gingerbread-man\": 63389,\n  \"glass-champagne\": 63390,\n  \"glass-cheers\": 63391,\n  \"glass-citrus\": 63593,\n  \"glass-empty\": 57745,\n  \"glass-half-empty\": 57746,\n  \"glass-half-full\": 57746,\n  \"glass-half\": 57746,\n  \"glass-martini-alt\": 62843,\n  \"glass-martini\": 61440,\n  \"glass-water-droplet\": 58613,\n  \"glass-water\": 58612,\n  \"glass-whiskey-rocks\": 63393,\n  \"glass-whiskey\": 63392,\n  \"glass\": 63492,\n  \"glasses-alt\": 62965,\n  \"glasses-round\": 62965,\n  \"glasses\": 62768,\n  \"globe-africa\": 62844,\n  \"globe-americas\": 62845,\n  \"globe-asia\": 62846,\n  \"globe-europe\": 63394,\n  \"globe-oceania\": 58491,\n  \"globe-pointer\": 58894,\n  \"globe-snow\": 63395,\n  \"globe-stand\": 62966,\n  \"globe-wifi\": 59013,\n  \"globe-www\": 59558,\n  \"globe\": 61612,\n  \"glove-boxing\": 62520,\n  \"goal-net\": 58283,\n  \"golf-ball-tee\": 62544,\n  \"golf-ball\": 62544,\n  \"golf-club\": 62545,\n  \"golf-flag-hole\": 58284,\n  \"gopuram\": 63076,\n  \"gpu\": 59459,\n  \"graduation-cap\": 61853,\n  \"gramophone\": 63677,\n  \"grapes\": 58118,\n  \"grate-droplet\": 57748,\n  \"grate\": 57747,\n  \"greater-than-equal\": 62770,\n  \"greater-than\": 62,\n  \"grid-2-minus\": 59050,\n  \"grid-2-plus\": 57751,\n  \"grid-2\": 57750,\n  \"grid-3\": 57749,\n  \"grid-4\": 57752,\n  \"grid-5\": 57753,\n  \"grid-dividers\": 58285,\n  \"grid-horizontal\": 62861,\n  \"grid-round-2-minus\": 59051,\n  \"grid-round-2-plus\": 58844,\n  \"grid-round-2\": 58843,\n  \"grid-round-4\": 58845,\n  \"grid-round-5\": 58846,\n  \"grid-round\": 58842,\n  \"grid-vertical\": 62862,\n  \"grid\": 57749,\n  \"grill-fire\": 58788,\n  \"grill-hot\": 58789,\n  \"grill\": 58787,\n  \"grimace\": 62847,\n  \"grin-alt\": 62849,\n  \"grin-beam-sweat\": 62851,\n  \"grin-beam\": 62850,\n  \"grin-hearts\": 62852,\n  \"grin-squint-tears\": 62854,\n  \"grin-squint\": 62853,\n  \"grin-stars\": 62855,\n  \"grin-tears\": 62856,\n  \"grin-tongue-squint\": 62858,\n  \"grin-tongue-wink\": 62859,\n  \"grin-tongue\": 62857,\n  \"grin-wink\": 62860,\n  \"grin\": 62848,\n  \"grip-dots-vertical\": 58385,\n  \"grip-dots\": 58384,\n  \"grip-horizontal\": 62861,\n  \"grip-lines-vertical\": 63397,\n  \"grip-lines\": 63396,\n  \"grip-vertical\": 62862,\n  \"grip\": 62861,\n  \"group-arrows-rotate\": 58614,\n  \"guarani-sign\": 57754,\n  \"guitar-electric\": 63678,\n  \"guitar\": 63398,\n  \"guitars\": 63679,\n  \"gun-slash\": 57756,\n  \"gun-squirt\": 57757,\n  \"gun\": 57755,\n  \"h-square\": 61693,\n  \"h\": 72,\n  \"h1\": 62227,\n  \"h2\": 62228,\n  \"h3\": 62229,\n  \"h4\": 63594,\n  \"h5\": 58386,\n  \"h6\": 58387,\n  \"hamburger\": 63493,\n  \"hammer-brush\": 58912,\n  \"hammer-crash\": 58388,\n  \"hammer-war\": 63204,\n  \"hammer\": 63203,\n  \"hamsa\": 63077,\n  \"hand-back-fist\": 62037,\n  \"hand-back-point-down\": 57758,\n  \"hand-back-point-left\": 57759,\n  \"hand-back-point-ribbon\": 57760,\n  \"hand-back-point-right\": 57761,\n  \"hand-back-point-up\": 57762,\n  \"hand-dots\": 62561,\n  \"hand-fingers-crossed\": 57763,\n  \"hand-fist\": 63198,\n  \"hand-heart\": 62652,\n  \"hand-holding-box\": 62587,\n  \"hand-holding-circle-dollar\": 58913,\n  \"hand-holding-dollar\": 62656,\n  \"hand-holding-droplet\": 62657,\n  \"hand-holding-hand\": 58615,\n  \"hand-holding-heart\": 62654,\n  \"hand-holding-magic\": 63205,\n  \"hand-holding-medical\": 57436,\n  \"hand-holding-seedling\": 62655,\n  \"hand-holding-skull\": 57764,\n  \"hand-holding-star\": 59393,\n  \"hand-holding-usd\": 62656,\n  \"hand-holding-water\": 62657,\n  \"hand-holding\": 62653,\n  \"hand-horns\": 57769,\n  \"hand-lizard\": 62040,\n  \"hand-love\": 57765,\n  \"hand-middle-finger\": 63494,\n  \"hand-paper\": 62038,\n  \"hand-peace\": 62043,\n  \"hand-point-down\": 61607,\n  \"hand-point-left\": 61605,\n  \"hand-point-ribbon\": 57766,\n  \"hand-point-right\": 61604,\n  \"hand-point-up\": 61606,\n  \"hand-pointer\": 62042,\n  \"hand-receiving\": 62588,\n  \"hand-rock\": 62037,\n  \"hand-scissors\": 62039,\n  \"hand-shaka\": 59441,\n  \"hand-sparkles\": 57437,\n  \"hand-spock\": 62041,\n  \"hand-wave\": 57767,\n  \"hand\": 62038,\n  \"handcuffs\": 58616,\n  \"hands-american-sign-language-interpreting\": 62115,\n  \"hands-asl-interpreting\": 62115,\n  \"hands-bound\": 58617,\n  \"hands-bubbles\": 57438,\n  \"hands-clapping\": 57768,\n  \"hands-heart\": 62659,\n  \"hands-helping\": 62660,\n  \"hands-holding-child\": 58618,\n  \"hands-holding-circle\": 58619,\n  \"hands-holding-diamond\": 62588,\n  \"hands-holding-dollar\": 62661,\n  \"hands-holding-heart\": 62659,\n  \"hands-holding\": 62658,\n  \"hands-praying\": 63108,\n  \"hands-usd\": 62661,\n  \"hands-wash\": 57438,\n  \"hands\": 62119,\n  \"handshake-alt-slash\": 57440,\n  \"handshake-alt\": 62133,\n  \"handshake-angle\": 62660,\n  \"handshake-simple-slash\": 57440,\n  \"handshake-simple\": 62133,\n  \"handshake-slash\": 57440,\n  \"handshake\": 62133,\n  \"hanukiah\": 63206,\n  \"hard-drive\": 61600,\n  \"hard-hat\": 63495,\n  \"hard-of-hearing\": 62116,\n  \"hashtag-lock\": 58389,\n  \"hashtag\": 35,\n  \"hat-beach\": 58886,\n  \"hat-chef\": 63595,\n  \"hat-cowboy-side\": 63681,\n  \"hat-cowboy\": 63680,\n  \"hat-hard\": 63495,\n  \"hat-santa\": 63399,\n  \"hat-winter\": 63400,\n  \"hat-witch\": 63207,\n  \"hat-wizard\": 63208,\n  \"haykal\": 63078,\n  \"hdd\": 61600,\n  \"head-side-brain\": 63496,\n  \"head-side-circuit\": 59230,\n  \"head-side-cough-slash\": 57442,\n  \"head-side-cough\": 57441,\n  \"head-side-gear\": 58897,\n  \"head-side-goggles\": 63210,\n  \"head-side-headphones\": 63682,\n  \"head-side-heart\": 57770,\n  \"head-side-mask\": 57443,\n  \"head-side-medical\": 63497,\n  \"head-side-speak\": 59231,\n  \"head-side-virus\": 57444,\n  \"head-side\": 63209,\n  \"head-vr\": 63210,\n  \"header\": 61916,\n  \"heading\": 61916,\n  \"headphones-alt\": 61477,\n  \"headphones-simple\": 61477,\n  \"headphones-slash\": 59260,\n  \"headphones\": 61477,\n  \"headset\": 62864,\n  \"heart-broken\": 63401,\n  \"heart-circle-bolt\": 58620,\n  \"heart-circle-check\": 58621,\n  \"heart-circle-exclamation\": 58622,\n  \"heart-circle-minus\": 58623,\n  \"heart-circle-plus\": 58624,\n  \"heart-circle-xmark\": 58625,\n  \"heart-circle\": 62663,\n  \"heart-crack\": 63401,\n  \"heart-half-alt\": 57772,\n  \"heart-half-stroke\": 57772,\n  \"heart-half\": 57771,\n  \"heart-music-camera-bolt\": 63597,\n  \"heart-pulse\": 61982,\n  \"heart-rate\": 62968,\n  \"heart-slash\": 59278,\n  \"heart-square\": 62664,\n  \"heart\": 61444,\n  \"heartbeat\": 61982,\n  \"hearts\": 59279,\n  \"heat\": 57356,\n  \"helicopter-symbol\": 58626,\n  \"helicopter\": 62771,\n  \"helmet-battle\": 63211,\n  \"helmet-safety\": 63495,\n  \"helmet-un\": 58627,\n  \"heptagon\": 59424,\n  \"hexagon-check\": 58390,\n  \"hexagon-divide\": 57773,\n  \"hexagon-equals\": 59058,\n  \"hexagon-exclamation\": 58391,\n  \"hexagon-image\": 58628,\n  \"hexagon-minus\": 62215,\n  \"hexagon-nodes-bolt\": 59034,\n  \"hexagon-nodes\": 59033,\n  \"hexagon-plus\": 62208,\n  \"hexagon-vertical-nft-slanted\": 58629,\n  \"hexagon-vertical-nft\": 58629,\n  \"hexagon-xmark\": 62190,\n  \"hexagon\": 62226,\n  \"high-definition\": 57774,\n  \"highlighter-line\": 57775,\n  \"highlighter\": 62865,\n  \"hiking\": 63212,\n  \"hill-avalanche\": 58631,\n  \"hill-rockslide\": 58632,\n  \"hippo\": 63213,\n  \"history\": 61914,\n  \"hockey-mask\": 63214,\n  \"hockey-puck\": 62547,\n  \"hockey-stick-puck\": 58286,\n  \"hockey-stick\": 59366,\n  \"hockey-sticks\": 62548,\n  \"holly-berry\": 63402,\n  \"home-alt\": 61461,\n  \"home-blank\": 58503,\n  \"home-heart\": 62665,\n  \"home-lg-alt\": 61461,\n  \"home-lg\": 58287,\n  \"home-user\": 57776,\n  \"home\": 61461,\n  \"honey-pot\": 58392,\n  \"hood-cloak\": 63215,\n  \"horizontal-rule\": 63596,\n  \"horse-head\": 63403,\n  \"horse-saddle\": 63683,\n  \"horse\": 63216,\n  \"horseshoe\": 59418,\n  \"hose-reel\": 58394,\n  \"hose\": 58393,\n  \"hospital-alt\": 61688,\n  \"hospital-symbol\": 62590,\n  \"hospital-user\": 63501,\n  \"hospital-wide\": 61688,\n  \"hospital\": 61688,\n  \"hospitals\": 63502,\n  \"hot-tub-person\": 62867,\n  \"hot-tub\": 62867,\n  \"hotdog\": 63503,\n  \"hotel\": 62868,\n  \"hourglass-1\": 62033,\n  \"hourglass-2\": 62034,\n  \"hourglass-3\": 62035,\n  \"hourglass-clock\": 58395,\n  \"hourglass-empty\": 62036,\n  \"hourglass-end\": 62035,\n  \"hourglass-half\": 62034,\n  \"hourglass-start\": 62033,\n  \"hourglass\": 62036,\n  \"house-blank\": 58503,\n  \"house-building\": 57777,\n  \"house-chimney-blank\": 58288,\n  \"house-chimney-crack\": 63217,\n  \"house-chimney-heart\": 57778,\n  \"house-chimney-medical\": 63474,\n  \"house-chimney-user\": 57445,\n  \"house-chimney-window\": 57357,\n  \"house-chimney\": 58287,\n  \"house-circle-check\": 58633,\n  \"house-circle-exclamation\": 58634,\n  \"house-circle-xmark\": 58635,\n  \"house-crack\": 58289,\n  \"house-damage\": 63217,\n  \"house-day\": 57358,\n  \"house-fire\": 58636,\n  \"house-flag\": 58637,\n  \"house-flood-water-circle-arrow-right\": 58639,\n  \"house-flood-water\": 58638,\n  \"house-flood\": 63311,\n  \"house-heart\": 62665,\n  \"house-laptop\": 57446,\n  \"house-leave\": 57359,\n  \"house-lock\": 58640,\n  \"house-medical-circle-check\": 58641,\n  \"house-medical-circle-exclamation\": 58642,\n  \"house-medical-circle-xmark\": 58643,\n  \"house-medical-flag\": 58644,\n  \"house-medical\": 58290,\n  \"house-night\": 57360,\n  \"house-person-arrive\": 57361,\n  \"house-person-depart\": 57359,\n  \"house-person-leave\": 57359,\n  \"house-person-return\": 57361,\n  \"house-return\": 57361,\n  \"house-signal\": 57362,\n  \"house-tree\": 57779,\n  \"house-tsunami\": 58645,\n  \"house-turret\": 57780,\n  \"house-unlock\": 59082,\n  \"house-user\": 57776,\n  \"house-water\": 63311,\n  \"house-window\": 58291,\n  \"house\": 61461,\n  \"hryvnia-sign\": 63218,\n  \"hryvnia\": 63218,\n  \"humidity\": 63312,\n  \"hundred-points\": 58396,\n  \"hurricane\": 63313,\n  \"hydra\": 59014,\n  \"hyphen\": 45,\n  \"i-cursor\": 62022,\n  \"i\": 73,\n  \"ice-cream\": 63504,\n  \"ice-skate\": 63404,\n  \"icicles\": 63405,\n  \"icons-alt\": 63598,\n  \"icons\": 63597,\n  \"id-badge\": 62145,\n  \"id-card-alt\": 62591,\n  \"id-card-clip\": 62591,\n  \"id-card\": 62146,\n  \"igloo\": 63406,\n  \"ils\": 61963,\n  \"image-broken\": 59562,\n  \"image-circle-arrow-down\": 59244,\n  \"image-circle-check\": 59245,\n  \"image-circle-plus\": 59246,\n  \"image-circle-xmark\": 59247,\n  \"image-landscape\": 57781,\n  \"image-music\": 59248,\n  \"image-polaroid-user\": 57782,\n  \"image-polaroid\": 63684,\n  \"image-portrait\": 62432,\n  \"image-slash\": 57783,\n  \"image-stack\": 59249,\n  \"image-user\": 57784,\n  \"image\": 61502,\n  \"images-user\": 57785,\n  \"images\": 62210,\n  \"inbox-arrow-down\": 62224,\n  \"inbox-arrow-up\": 62225,\n  \"inbox-full\": 57786,\n  \"inbox-in\": 62224,\n  \"inbox-out\": 62225,\n  \"inbox\": 61468,\n  \"inboxes\": 57787,\n  \"indent\": 61500,\n  \"indian-rupee-sign\": 57788,\n  \"indian-rupee\": 57788,\n  \"industry-alt\": 62387,\n  \"industry-windows\": 62387,\n  \"industry\": 62069,\n  \"infinity\": 62772,\n  \"info-circle\": 61530,\n  \"info-square\": 62223,\n  \"info\": 61737,\n  \"inhaler\": 62969,\n  \"input-numeric\": 57789,\n  \"input-password\": 59517,\n  \"input-pipe\": 57790,\n  \"input-text\": 57791,\n  \"inr\": 57788,\n  \"institution\": 61852,\n  \"integral\": 63079,\n  \"interrobang\": 58810,\n  \"intersection\": 63080,\n  \"inventory\": 62592,\n  \"island-tree-palm\": 63505,\n  \"island-tropical\": 63505,\n  \"italic\": 61491,\n  \"j\": 74,\n  \"jack-o-lantern\": 62222,\n  \"jar-wheat\": 58647,\n  \"jar\": 58646,\n  \"jeans-straight\": 59091,\n  \"jeans\": 59090,\n  \"jedi\": 63081,\n  \"jet-fighter-up\": 58648,\n  \"jet-fighter\": 61691,\n  \"joint\": 62869,\n  \"journal-whills\": 63082,\n  \"joystick\": 63685,\n  \"jpy\": 61783,\n  \"jug-bottle\": 58875,\n  \"jug-detergent\": 58649,\n  \"jug\": 63686,\n  \"k\": 75,\n  \"kaaba\": 63083,\n  \"kayak\": 59547,\n  \"kazoo\": 63687,\n  \"kerning\": 63599,\n  \"kettlebell\": 59442,\n  \"key-skeleton-left-right\": 58292,\n  \"key-skeleton\": 63219,\n  \"key\": 61572,\n  \"keyboard-brightness-low\": 57793,\n  \"keyboard-brightness\": 57792,\n  \"keyboard-down\": 57794,\n  \"keyboard-left\": 57795,\n  \"keyboard\": 61724,\n  \"keynote\": 63084,\n  \"khanda\": 63085,\n  \"kidneys\": 62971,\n  \"kip-sign\": 57796,\n  \"kiss-beam\": 62871,\n  \"kiss-wink-heart\": 62872,\n  \"kiss\": 62870,\n  \"kit-medical\": 62585,\n  \"kitchen-set\": 58650,\n  \"kite\": 63220,\n  \"kiwi-bird\": 62773,\n  \"kiwi-fruit\": 58124,\n  \"knife-kitchen\": 63221,\n  \"knife\": 62180,\n  \"krw\": 61785,\n  \"l\": 76,\n  \"label\": 59559,\n  \"lacrosse-stick-ball\": 58294,\n  \"lacrosse-stick\": 58293,\n  \"ladder-water\": 62917,\n  \"lambda\": 63086,\n  \"lamp-desk\": 57364,\n  \"lamp-floor\": 57365,\n  \"lamp-street\": 57797,\n  \"lamp\": 62666,\n  \"land-mine-on\": 58651,\n  \"landmark-alt\": 63314,\n  \"landmark-dome\": 63314,\n  \"landmark-flag\": 58652,\n  \"landmark-magnifying-glass\": 58914,\n  \"landmark\": 63087,\n  \"landscape\": 57781,\n  \"language\": 61867,\n  \"laptop-arrow-down\": 57798,\n  \"laptop-binary\": 58855,\n  \"laptop-code\": 62972,\n  \"laptop-file\": 58653,\n  \"laptop-house\": 57446,\n  \"laptop-medical\": 63506,\n  \"laptop-mobile\": 63610,\n  \"laptop-slash\": 57799,\n  \"laptop\": 61705,\n  \"lari-sign\": 57800,\n  \"lasso-sparkles\": 57801,\n  \"lasso\": 63688,\n  \"laugh-beam\": 62874,\n  \"laugh-squint\": 62875,\n  \"laugh-wink\": 62876,\n  \"laugh\": 62873,\n  \"layer-group-minus\": 62974,\n  \"layer-group-plus\": 62975,\n  \"layer-group\": 62973,\n  \"layer-minus\": 62974,\n  \"layer-plus\": 62975,\n  \"layer\": 59455,\n  \"leaf-heart\": 62667,\n  \"leaf-maple\": 63222,\n  \"leaf-oak\": 63223,\n  \"leaf\": 61548,\n  \"leafy-green\": 58397,\n  \"left-from-bracket\": 58988,\n  \"left-from-dotted-line\": 59074,\n  \"left-from-line\": 62280,\n  \"left-long-to-line\": 58398,\n  \"left-long\": 62218,\n  \"left-right\": 62263,\n  \"left-to-bracket\": 58989,\n  \"left-to-dotted-line\": 59075,\n  \"left-to-line\": 62283,\n  \"left\": 62293,\n  \"legal\": 61667,\n  \"lemon\": 61588,\n  \"leo\": 59466,\n  \"less-than-equal\": 62775,\n  \"less-than\": 60,\n  \"level-down-alt\": 62398,\n  \"level-down\": 61769,\n  \"level-up-alt\": 62399,\n  \"level-up\": 61768,\n  \"libra\": 59467,\n  \"life-ring\": 61901,\n  \"light-ceiling\": 57366,\n  \"light-emergency-on\": 58400,\n  \"light-emergency\": 58399,\n  \"light-switch-off\": 57368,\n  \"light-switch-on\": 57369,\n  \"light-switch\": 57367,\n  \"lightbulb-cfl-on\": 58791,\n  \"lightbulb-cfl\": 58790,\n  \"lightbulb-dollar\": 63088,\n  \"lightbulb-exclamation-on\": 57802,\n  \"lightbulb-exclamation\": 63089,\n  \"lightbulb-gear\": 58877,\n  \"lightbulb-message\": 59015,\n  \"lightbulb-on\": 63090,\n  \"lightbulb-slash\": 63091,\n  \"lightbulb\": 61675,\n  \"lighthouse\": 58898,\n  \"lights-holiday\": 63410,\n  \"line-chart\": 61953,\n  \"line-columns\": 63600,\n  \"line-height\": 63601,\n  \"lines-leaning\": 58654,\n  \"link-broken\": 59458,\n  \"link-horizontal-slash\": 57804,\n  \"link-horizontal\": 57803,\n  \"link-simple-slash\": 57806,\n  \"link-simple\": 57805,\n  \"link-slash\": 61735,\n  \"link\": 61633,\n  \"lips\": 62976,\n  \"lira-sign\": 61845,\n  \"list-1-2\": 61643,\n  \"list-alt\": 61474,\n  \"list-check\": 61614,\n  \"list-dots\": 61642,\n  \"list-dropdown\": 57807,\n  \"list-music\": 63689,\n  \"list-numeric\": 61643,\n  \"list-ol\": 61643,\n  \"list-radio\": 57808,\n  \"list-squares\": 61498,\n  \"list-timeline\": 57809,\n  \"list-tree\": 57810,\n  \"list-ul\": 61642,\n  \"list\": 61498,\n  \"litecoin-sign\": 57811,\n  \"loader\": 57812,\n  \"lobster\": 58401,\n  \"location-arrow-slash\": 59258,\n  \"location-arrow-up\": 58938,\n  \"location-arrow\": 61732,\n  \"location-check\": 62982,\n  \"location-circle\": 62978,\n  \"location-crosshairs-slash\": 62979,\n  \"location-crosshairs\": 62977,\n  \"location-dot-slash\": 62981,\n  \"location-dot\": 62405,\n  \"location-exclamation\": 62984,\n  \"location-minus\": 62985,\n  \"location-pen\": 62983,\n  \"location-pin-lock\": 58655,\n  \"location-pin-slash\": 62988,\n  \"location-pin\": 61505,\n  \"location-plus\": 62986,\n  \"location-question\": 62987,\n  \"location-slash\": 62979,\n  \"location-smile\": 62989,\n  \"location-xmark\": 62990,\n  \"location\": 62977,\n  \"lock-a\": 58402,\n  \"lock-alt\": 62221,\n  \"lock-hashtag\": 58403,\n  \"lock-keyhole-open\": 62402,\n  \"lock-keyhole\": 62221,\n  \"lock-open-alt\": 62402,\n  \"lock-open\": 62401,\n  \"lock\": 61475,\n  \"locust\": 58656,\n  \"lollipop\": 58404,\n  \"lollypop\": 58404,\n  \"long-arrow-alt-down\": 62217,\n  \"long-arrow-alt-left\": 62218,\n  \"long-arrow-alt-right\": 62219,\n  \"long-arrow-alt-up\": 62220,\n  \"long-arrow-down\": 61813,\n  \"long-arrow-left\": 61815,\n  \"long-arrow-right\": 61816,\n  \"long-arrow-up\": 61814,\n  \"loveseat\": 62668,\n  \"low-vision\": 62120,\n  \"luchador-mask\": 62549,\n  \"luchador\": 62549,\n  \"luggage-cart\": 62877,\n  \"lungs-virus\": 57447,\n  \"lungs\": 62980,\n  \"lychee\": 59428,\n  \"m\": 77,\n  \"mace\": 63224,\n  \"magic-wand-sparkles\": 58058,\n  \"magic\": 61648,\n  \"magnet\": 61558,\n  \"magnifying-glass-arrow-right\": 58657,\n  \"magnifying-glass-arrows-rotate\": 58974,\n  \"magnifying-glass-chart\": 58658,\n  \"magnifying-glass-dollar\": 63112,\n  \"magnifying-glass-location\": 63113,\n  \"magnifying-glass-minus\": 61456,\n  \"magnifying-glass-music\": 58975,\n  \"magnifying-glass-play\": 58976,\n  \"magnifying-glass-plus\": 61454,\n  \"magnifying-glass-waveform\": 58977,\n  \"magnifying-glass\": 61442,\n  \"mail-bulk\": 63092,\n  \"mail-forward\": 61540,\n  \"mail-reply-all\": 61730,\n  \"mail-reply\": 62437,\n  \"mailbox-flag-up\": 58811,\n  \"mailbox-open-empty\": 59425,\n  \"mailbox-open-letter\": 59427,\n  \"mailbox\": 63507,\n  \"maki-roll\": 58507,\n  \"makizushi\": 58507,\n  \"malaysian-ringgit-sign\": 59130,\n  \"male\": 61827,\n  \"manat-sign\": 57813,\n  \"mandolin\": 63225,\n  \"mango\": 58127,\n  \"manhole\": 57814,\n  \"map-location-dot\": 62880,\n  \"map-location\": 62879,\n  \"map-marked-alt\": 62880,\n  \"map-marked\": 62879,\n  \"map-marker-alt-slash\": 62981,\n  \"map-marker-alt\": 62405,\n  \"map-marker-check\": 62982,\n  \"map-marker-edit\": 62983,\n  \"map-marker-exclamation\": 62984,\n  \"map-marker-minus\": 62985,\n  \"map-marker-plus\": 62986,\n  \"map-marker-question\": 62987,\n  \"map-marker-slash\": 62988,\n  \"map-marker-smile\": 62989,\n  \"map-marker-times\": 62990,\n  \"map-marker-xmark\": 62990,\n  \"map-marker\": 61505,\n  \"map-pin\": 62070,\n  \"map-signs\": 62071,\n  \"map\": 62073,\n  \"marker\": 62881,\n  \"mars-and-venus-burst\": 58659,\n  \"mars-and-venus\": 61988,\n  \"mars-double\": 61991,\n  \"mars-stroke-h\": 61995,\n  \"mars-stroke-right\": 61995,\n  \"mars-stroke-up\": 61994,\n  \"mars-stroke-v\": 61994,\n  \"mars-stroke\": 61993,\n  \"mars\": 61986,\n  \"martini-glass-citrus\": 62817,\n  \"martini-glass-empty\": 61440,\n  \"martini-glass\": 62843,\n  \"mask-face\": 57815,\n  \"mask-luchador\": 62549,\n  \"mask-snorkel\": 58295,\n  \"mask-ventilator\": 58660,\n  \"mask\": 63226,\n  \"masks-theater\": 63024,\n  \"mattress-pillow\": 58661,\n  \"maximize\": 62238,\n  \"meat\": 63508,\n  \"medal\": 62882,\n  \"medkit\": 61690,\n  \"megaphone\": 63093,\n  \"meh-blank\": 62884,\n  \"meh-rolling-eyes\": 62885,\n  \"meh\": 61722,\n  \"melon-slice\": 58129,\n  \"melon\": 58128,\n  \"memo-circle-check\": 57817,\n  \"memo-circle-info\": 58522,\n  \"memo-pad\": 57818,\n  \"memo\": 57816,\n  \"memory\": 62776,\n  \"menorah\": 63094,\n  \"mercury\": 61987,\n  \"merge\": 58662,\n  \"message-arrow-down\": 57819,\n  \"message-arrow-up-right\": 57821,\n  \"message-arrow-up\": 57820,\n  \"message-bot\": 58296,\n  \"message-captions\": 57822,\n  \"message-check\": 62626,\n  \"message-code\": 57823,\n  \"message-dollar\": 63056,\n  \"message-dot\": 59103,\n  \"message-dots\": 62627,\n  \"message-edit\": 62628,\n  \"message-exclamation\": 62629,\n  \"message-heart\": 58825,\n  \"message-image\": 57824,\n  \"message-lines\": 62630,\n  \"message-medical\": 63476,\n  \"message-middle-top\": 57826,\n  \"message-middle\": 57825,\n  \"message-minus\": 62631,\n  \"message-music\": 63663,\n  \"message-pen\": 62628,\n  \"message-plus\": 62632,\n  \"message-question\": 57827,\n  \"message-quote\": 57828,\n  \"message-slash\": 62633,\n  \"message-smile\": 62634,\n  \"message-sms\": 57829,\n  \"message-text\": 57830,\n  \"message-times\": 62635,\n  \"message-waveform\": 59104,\n  \"message-xmark\": 62635,\n  \"message\": 62074,\n  \"messages-dollar\": 63058,\n  \"messages-question\": 57831,\n  \"messages\": 62646,\n  \"messaging\": 62627,\n  \"meteor\": 63315,\n  \"meter-bolt\": 57833,\n  \"meter-droplet\": 57834,\n  \"meter-fire\": 57835,\n  \"meter\": 57832,\n  \"microchip-ai\": 57836,\n  \"microchip\": 62171,\n  \"microphone-alt-slash\": 62777,\n  \"microphone-alt\": 62409,\n  \"microphone-circle-alt\": 57623,\n  \"microphone-circle-plus\": 59261,\n  \"microphone-circle-xmark\": 59262,\n  \"microphone-circle\": 57622,\n  \"microphone-lines-slash\": 62777,\n  \"microphone-lines\": 62409,\n  \"microphone-signal-meter\": 59232,\n  \"microphone-slash\": 61745,\n  \"microphone-stand\": 63691,\n  \"microphone\": 61744,\n  \"microscope\": 62992,\n  \"microwave\": 57371,\n  \"midi\": 59398,\n  \"mill-sign\": 57837,\n  \"mind-share\": 63095,\n  \"minimize\": 63372,\n  \"minus-circle\": 61526,\n  \"minus-hexagon\": 62215,\n  \"minus-large\": 58372,\n  \"minus-octagon\": 62216,\n  \"minus-square\": 61766,\n  \"minus\": 61544,\n  \"mistletoe\": 63412,\n  \"mitten\": 63413,\n  \"mobile-alt\": 62413,\n  \"mobile-android-alt\": 62415,\n  \"mobile-android\": 62414,\n  \"mobile-arrow-down\": 59211,\n  \"mobile-button\": 61707,\n  \"mobile-iphone\": 57838,\n  \"mobile-notch\": 57838,\n  \"mobile-phone\": 62414,\n  \"mobile-retro\": 58663,\n  \"mobile-rotate-reverse\": 59412,\n  \"mobile-rotate\": 59411,\n  \"mobile-screen-button\": 62413,\n  \"mobile-screen\": 62415,\n  \"mobile-signal-out\": 57840,\n  \"mobile-signal\": 57839,\n  \"mobile-slash\": 59413,\n  \"mobile-vibrate-slash\": 59415,\n  \"mobile-vibrate\": 59414,\n  \"mobile\": 62414,\n  \"money-bill-1-wave\": 62779,\n  \"money-bill-1\": 62417,\n  \"money-bill-alt\": 62417,\n  \"money-bill-simple-wave\": 57842,\n  \"money-bill-simple\": 57841,\n  \"money-bill-transfer\": 58664,\n  \"money-bill-trend-up\": 58665,\n  \"money-bill-wave-alt\": 62779,\n  \"money-bill-wave\": 62778,\n  \"money-bill-wheat\": 58666,\n  \"money-bill\": 61654,\n  \"money-bills-alt\": 57844,\n  \"money-bills-simple\": 57844,\n  \"money-bills\": 57843,\n  \"money-check-alt\": 62781,\n  \"money-check-dollar-pen\": 63603,\n  \"money-check-dollar\": 62781,\n  \"money-check-edit-alt\": 63603,\n  \"money-check-edit\": 63602,\n  \"money-check-pen\": 63602,\n  \"money-check\": 62780,\n  \"money-from-bracket\": 58130,\n  \"money-simple-from-bracket\": 58131,\n  \"monitor-heart-rate\": 62993,\n  \"monitor-waveform\": 62993,\n  \"monkey\": 63227,\n  \"monument\": 62886,\n  \"moon-cloud\": 63316,\n  \"moon-first-quarter-inverse\": 59506,\n  \"moon-first-quarter\": 59504,\n  \"moon-full-inverse\": 59507,\n  \"moon-full\": 59505,\n  \"moon-last-quarter-inverse\": 59504,\n  \"moon-last-quarter\": 59506,\n  \"moon-new-inverse\": 59505,\n  \"moon-new\": 59507,\n  \"moon-over-sun\": 63306,\n  \"moon-star\": 59337,\n  \"moon-stars\": 63317,\n  \"moon-waning-crescent-inverse\": 59511,\n  \"moon-waning-crescent\": 59508,\n  \"moon-waning-gibbous-inverse\": 59510,\n  \"moon-waning-gibbous\": 59509,\n  \"moon-waxing-crescent-inverse\": 59509,\n  \"moon-waxing-crescent\": 59510,\n  \"moon-waxing-gibbous-inverse\": 59508,\n  \"moon-waxing-gibbous\": 59511,\n  \"moon\": 61830,\n  \"moped\": 58297,\n  \"mortar-board\": 61853,\n  \"mortar-pestle\": 62887,\n  \"mosque\": 63096,\n  \"mosquito-net\": 58668,\n  \"mosquito\": 58667,\n  \"motorcycle\": 61980,\n  \"mound\": 58669,\n  \"mountain-city\": 58670,\n  \"mountain-sun\": 58671,\n  \"mountain\": 63228,\n  \"mountains\": 63229,\n  \"mouse-alt\": 63693,\n  \"mouse-field\": 58792,\n  \"mouse-pointer\": 62021,\n  \"mouse\": 63692,\n  \"mp3-player\": 63694,\n  \"mug-hot\": 63414,\n  \"mug-marshmallows\": 63415,\n  \"mug-saucer\": 61684,\n  \"mug-tea-saucer\": 57845,\n  \"mug-tea\": 63605,\n  \"mug\": 63604,\n  \"multiply\": 61453,\n  \"museum\": 61852,\n  \"mushroom\": 58405,\n  \"music-alt-slash\": 63696,\n  \"music-alt\": 63695,\n  \"music-magnifying-glass\": 58978,\n  \"music-note-slash\": 63696,\n  \"music-note\": 63695,\n  \"music-slash\": 63697,\n  \"music\": 61441,\n  \"mustache\": 58812,\n  \"n\": 78,\n  \"naira-sign\": 57846,\n  \"narwhal\": 63230,\n  \"nas\": 59553,\n  \"navicon\": 61641,\n  \"nesting-dolls\": 58298,\n  \"network-wired\": 63231,\n  \"neuter\": 61996,\n  \"newspaper\": 61930,\n  \"nfc-lock\": 57848,\n  \"nfc-magnifying-glass\": 57849,\n  \"nfc-pen\": 57850,\n  \"nfc-signal\": 57851,\n  \"nfc-slash\": 57852,\n  \"nfc-symbol\": 58673,\n  \"nfc-trash\": 57853,\n  \"nfc\": 57847,\n  \"nigiri\": 58506,\n  \"non-binary\": 59399,\n  \"norwegian-krone-sign\": 59112,\n  \"nose\": 58813,\n  \"not-equal\": 62782,\n  \"notdef\": 57854,\n  \"note-medical\": 57856,\n  \"note-sticky\": 62025,\n  \"note\": 57855,\n  \"notebook\": 57857,\n  \"notes-medical\": 62593,\n  \"notes-sticky\": 59225,\n  \"notes\": 57858,\n  \"numpad\": 59340,\n  \"o\": 79,\n  \"oar\": 59524,\n  \"oars\": 59525,\n  \"object-exclude\": 58524,\n  \"object-group\": 62023,\n  \"object-intersect\": 58525,\n  \"object-subtract\": 58526,\n  \"object-ungroup\": 62024,\n  \"object-union\": 58527,\n  \"objects-align-bottom\": 58299,\n  \"objects-align-center-horizontal\": 58300,\n  \"objects-align-center-vertical\": 58301,\n  \"objects-align-left\": 58302,\n  \"objects-align-right\": 58303,\n  \"objects-align-top\": 58304,\n  \"objects-column\": 58305,\n  \"octagon-check\": 58406,\n  \"octagon-divide\": 57859,\n  \"octagon-equals\": 59059,\n  \"octagon-exclamation\": 57860,\n  \"octagon-minus\": 62216,\n  \"octagon-plus\": 62209,\n  \"octagon-xmark\": 62192,\n  \"octagon\": 62214,\n  \"octopus\": 59016,\n  \"oil-can-drip\": 57861,\n  \"oil-can\": 62995,\n  \"oil-temp\": 62996,\n  \"oil-temperature\": 62996,\n  \"oil-well\": 58674,\n  \"olive-branch\": 58135,\n  \"olive\": 58134,\n  \"om\": 63097,\n  \"omega\": 63098,\n  \"onion\": 58407,\n  \"open-captioning\": 59263,\n  \"opossum\": 59516,\n  \"option\": 58136,\n  \"ornament\": 63416,\n  \"otter\": 63232,\n  \"outdent\": 61499,\n  \"outlet\": 57372,\n  \"oven\": 57373,\n  \"overline\": 63606,\n  \"owl\": 59551,\n  \"p\": 80,\n  \"page-break\": 63607,\n  \"page-caret-down\": 58409,\n  \"page-caret-up\": 58410,\n  \"page\": 58408,\n  \"pager\": 63509,\n  \"paint-brush-alt\": 62889,\n  \"paint-brush-fine\": 62889,\n  \"paint-brush\": 61948,\n  \"paint-roller\": 62890,\n  \"paintbrush-alt\": 62889,\n  \"paintbrush-fine-slash\": 59213,\n  \"paintbrush-fine\": 62889,\n  \"paintbrush-pencil\": 57862,\n  \"paintbrush-slash\": 59214,\n  \"paintbrush\": 61948,\n  \"palette-boxes\": 62595,\n  \"palette\": 62783,\n  \"pallet-alt\": 62595,\n  \"pallet-box\": 57864,\n  \"pallet-boxes\": 62595,\n  \"pallet\": 62594,\n  \"pan-food\": 58411,\n  \"pan-frying\": 58412,\n  \"pancakes\": 58413,\n  \"panel-ews\": 58414,\n  \"panel-fire\": 58415,\n  \"panorama\": 57865,\n  \"panties\": 59092,\n  \"pants-straight\": 59094,\n  \"pants\": 59093,\n  \"paper-plane-alt\": 57866,\n  \"paper-plane-top\": 57866,\n  \"paper-plane\": 61912,\n  \"paperclip-vertical\": 58306,\n  \"paperclip\": 61638,\n  \"parachute-box\": 62669,\n  \"paragraph-left\": 63608,\n  \"paragraph-rtl\": 63608,\n  \"paragraph\": 61917,\n  \"parentheses\": 57541,\n  \"parenthesis\": 40,\n  \"parking-circle-slash\": 62998,\n  \"parking-circle\": 62997,\n  \"parking-slash\": 62999,\n  \"parking\": 62784,\n  \"party-back\": 58460,\n  \"party-bell\": 58138,\n  \"party-horn\": 58139,\n  \"passport\": 62891,\n  \"pastafarianism\": 63099,\n  \"paste\": 61674,\n  \"pause-circle\": 62091,\n  \"pause\": 61516,\n  \"paw-alt\": 63233,\n  \"paw-claws\": 63234,\n  \"paw-simple\": 63233,\n  \"paw\": 61872,\n  \"peace\": 63100,\n  \"peach\": 57867,\n  \"peanut\": 58416,\n  \"peanuts\": 58417,\n  \"peapod\": 58140,\n  \"pear\": 57868,\n  \"pedestal\": 57869,\n  \"pegasus\": 63235,\n  \"pen-alt-slash\": 57871,\n  \"pen-alt\": 62213,\n  \"pen-circle\": 57870,\n  \"pen-clip-slash\": 57871,\n  \"pen-clip\": 62213,\n  \"pen-fancy-slash\": 57872,\n  \"pen-fancy\": 62892,\n  \"pen-field\": 57873,\n  \"pen-line\": 57874,\n  \"pen-nib-slash\": 58529,\n  \"pen-nib\": 62893,\n  \"pen-paintbrush\": 63000,\n  \"pen-ruler\": 62894,\n  \"pen-slash\": 57875,\n  \"pen-square\": 61771,\n  \"pen-swirl\": 57876,\n  \"pen-to-square\": 61508,\n  \"pen\": 62212,\n  \"pencil-alt\": 62211,\n  \"pencil-line\": 59215,\n  \"pencil-mechanical\": 58826,\n  \"pencil-paintbrush\": 63000,\n  \"pencil-ruler\": 62894,\n  \"pencil-slash\": 57877,\n  \"pencil-square\": 61771,\n  \"pencil\": 62211,\n  \"pennant\": 62550,\n  \"pentagon\": 59280,\n  \"people-arrows-left-right\": 57448,\n  \"people-arrows\": 57448,\n  \"people-carry-box\": 62670,\n  \"people-carry\": 62670,\n  \"people-dress-simple\": 57880,\n  \"people-dress\": 57879,\n  \"people-group\": 58675,\n  \"people-line\": 58676,\n  \"people-pants-simple\": 57882,\n  \"people-pants\": 57881,\n  \"people-pulling\": 58677,\n  \"people-robbery\": 58678,\n  \"people-roof\": 58679,\n  \"people-simple\": 57883,\n  \"people\": 57878,\n  \"pepper-hot\": 63510,\n  \"pepper\": 58418,\n  \"percent\": 37,\n  \"percentage\": 37,\n  \"period\": 46,\n  \"person-arms-raised\": 59267,\n  \"person-arrow-down-to-line\": 58680,\n  \"person-arrow-up-from-line\": 58681,\n  \"person-basketball\": 59268,\n  \"person-biking-mountain\": 63563,\n  \"person-biking\": 63562,\n  \"person-booth\": 63318,\n  \"person-breastfeeding\": 58682,\n  \"person-burst\": 58683,\n  \"person-cane\": 58684,\n  \"person-carry-box\": 62671,\n  \"person-carry-empty\": 59269,\n  \"person-carry\": 62671,\n  \"person-chalkboard\": 58685,\n  \"person-circle-check\": 58686,\n  \"person-circle-exclamation\": 58687,\n  \"person-circle-minus\": 58688,\n  \"person-circle-plus\": 58689,\n  \"person-circle-question\": 58690,\n  \"person-circle-xmark\": 58691,\n  \"person-digging\": 63582,\n  \"person-dolly-empty\": 62673,\n  \"person-dolly\": 62672,\n  \"person-dots-from-line\": 62576,\n  \"person-dress-burst\": 58692,\n  \"person-dress-fairy\": 58887,\n  \"person-dress-simple\": 57884,\n  \"person-dress\": 61826,\n  \"person-drowning\": 58693,\n  \"person-fairy\": 58888,\n  \"person-falling-burst\": 58695,\n  \"person-falling\": 58694,\n  \"person-from-portal\": 57379,\n  \"person-golfing\": 59270,\n  \"person-half-dress\": 58696,\n  \"person-harassing\": 58697,\n  \"person-hiking\": 63212,\n  \"person-limbs-wide\": 59271,\n  \"person-meditating\": 59361,\n  \"person-military-pointing\": 58698,\n  \"person-military-rifle\": 58699,\n  \"person-military-to-person\": 58700,\n  \"person-pinball\": 57885,\n  \"person-praying\": 63107,\n  \"person-pregnant\": 58142,\n  \"person-rays\": 58701,\n  \"person-rifle\": 58702,\n  \"person-running-fast\": 58879,\n  \"person-running\": 63244,\n  \"person-seat-reclined\": 57887,\n  \"person-seat-window\": 59272,\n  \"person-seat\": 57886,\n  \"person-shelter\": 58703,\n  \"person-sign\": 63319,\n  \"person-simple\": 57888,\n  \"person-skating\": 63429,\n  \"person-ski-jumping\": 63431,\n  \"person-ski-lift\": 63432,\n  \"person-skiing-nordic\": 63434,\n  \"person-skiing\": 63433,\n  \"person-sledding\": 63435,\n  \"person-snowboarding\": 63438,\n  \"person-snowmobiling\": 63441,\n  \"person-soccer\": 59273,\n  \"person-swimming-pool\": 59274,\n  \"person-swimming-water\": 59275,\n  \"person-swimming\": 62916,\n  \"person-through-window\": 58793,\n  \"person-to-door\": 58419,\n  \"person-to-portal\": 57378,\n  \"person-walking-arrow-loop-left\": 58705,\n  \"person-walking-arrow-right\": 58706,\n  \"person-walking-dashed-line-arrow-right\": 58707,\n  \"person-walking-luggage\": 58708,\n  \"person-walking-with-cane\": 62109,\n  \"person-walking\": 62804,\n  \"person-water-arms-raised\": 59276,\n  \"person-waving\": 59277,\n  \"person\": 61827,\n  \"peruvian-soles-sign\": 59141,\n  \"peseta-sign\": 57889,\n  \"peso-sign\": 57890,\n  \"phone-alt\": 63609,\n  \"phone-arrow-down-left\": 57891,\n  \"phone-arrow-down\": 57891,\n  \"phone-arrow-right\": 58814,\n  \"phone-arrow-up-right\": 57892,\n  \"phone-arrow-up\": 57892,\n  \"phone-circle-alt\": 57628,\n  \"phone-circle-down\": 57629,\n  \"phone-circle\": 57627,\n  \"phone-connection\": 59105,\n  \"phone-flip\": 63609,\n  \"phone-hangup\": 57893,\n  \"phone-incoming\": 57891,\n  \"phone-intercom\": 58420,\n  \"phone-laptop\": 63610,\n  \"phone-missed\": 57894,\n  \"phone-office\": 63101,\n  \"phone-outgoing\": 57892,\n  \"phone-plus\": 62674,\n  \"phone-rotary\": 63699,\n  \"phone-slash\": 62429,\n  \"phone-square-alt\": 63611,\n  \"phone-square-down\": 57978,\n  \"phone-square\": 61592,\n  \"phone-volume\": 62112,\n  \"phone-waveform\": 59106,\n  \"phone-xmark\": 57895,\n  \"phone\": 61589,\n  \"photo-film-music\": 57896,\n  \"photo-film\": 63612,\n  \"photo-video\": 63612,\n  \"pi\": 63102,\n  \"piano-keyboard\": 63701,\n  \"piano\": 63700,\n  \"pickaxe\": 58815,\n  \"pickleball\": 58421,\n  \"picture-in-picture\": 59403,\n  \"pie-chart\": 61952,\n  \"pie\": 63237,\n  \"pig\": 63238,\n  \"piggy-bank\": 62675,\n  \"pills\": 62596,\n  \"pinata\": 58307,\n  \"pinball\": 57897,\n  \"pineapple\": 58143,\n  \"ping-pong-paddle-ball\": 62557,\n  \"pipe-circle-check\": 58422,\n  \"pipe-collar\": 58423,\n  \"pipe-section\": 58424,\n  \"pipe-smoking\": 58308,\n  \"pipe-valve\": 58425,\n  \"pipe\": 124,\n  \"pisces\": 59468,\n  \"pizza-slice\": 63512,\n  \"pizza\": 63511,\n  \"place-of-worship\": 63103,\n  \"plane-alt\": 62430,\n  \"plane-arrival\": 62895,\n  \"plane-circle-check\": 58709,\n  \"plane-circle-exclamation\": 58710,\n  \"plane-circle-xmark\": 58711,\n  \"plane-departure\": 62896,\n  \"plane-engines\": 62430,\n  \"plane-flying\": 59323,\n  \"plane-landing-gear\": 59324,\n  \"plane-lock\": 58712,\n  \"plane-prop\": 57899,\n  \"plane-slash\": 57449,\n  \"plane-tail\": 57900,\n  \"plane-up-slash\": 57902,\n  \"plane-up\": 57901,\n  \"plane\": 61554,\n  \"planet-moon\": 57375,\n  \"planet-ringed\": 57376,\n  \"plant-wilt\": 58794,\n  \"plate-utensils\": 58427,\n  \"plate-wheat\": 58714,\n  \"play-circle\": 61764,\n  \"play-flip\": 59264,\n  \"play-pause\": 57903,\n  \"play\": 61515,\n  \"plug-circle-bolt\": 58715,\n  \"plug-circle-check\": 58716,\n  \"plug-circle-exclamation\": 58717,\n  \"plug-circle-minus\": 58718,\n  \"plug-circle-plus\": 58719,\n  \"plug-circle-xmark\": 58720,\n  \"plug\": 61926,\n  \"plus-circle\": 61525,\n  \"plus-hexagon\": 62208,\n  \"plus-large\": 58782,\n  \"plus-minus\": 58428,\n  \"plus-octagon\": 62209,\n  \"plus-square\": 61694,\n  \"plus\": 43,\n  \"podcast\": 62158,\n  \"podium-star\": 63320,\n  \"podium\": 63104,\n  \"poker-chip\": 59554,\n  \"police-box\": 57377,\n  \"polish-zloty-sign\": 59147,\n  \"poll-h\": 63106,\n  \"poll-people\": 63321,\n  \"poll\": 63105,\n  \"pompebled\": 58429,\n  \"poo-bolt\": 63322,\n  \"poo-storm\": 63322,\n  \"poo\": 62206,\n  \"pool-8-ball\": 58309,\n  \"poop\": 63001,\n  \"popcorn\": 63513,\n  \"popsicle\": 58430,\n  \"portal-enter\": 57378,\n  \"portal-exit\": 57379,\n  \"portrait\": 62432,\n  \"possum\": 59516,\n  \"postage-stamp\": 59107,\n  \"pot-food\": 58431,\n  \"potato\": 58432,\n  \"pound-sign\": 61780,\n  \"power-off\": 61457,\n  \"pray\": 63107,\n  \"praying-hands\": 63108,\n  \"prescription-bottle-alt\": 62598,\n  \"prescription-bottle-medical\": 62598,\n  \"prescription-bottle-pill\": 58816,\n  \"prescription-bottle\": 62597,\n  \"prescription\": 62897,\n  \"presentation-screen\": 63109,\n  \"presentation\": 63109,\n  \"pretzel\": 58433,\n  \"print-magnifying-glass\": 63514,\n  \"print-search\": 63514,\n  \"print-slash\": 63110,\n  \"print\": 61487,\n  \"pro\": 57909,\n  \"procedures\": 62599,\n  \"project-diagram\": 62786,\n  \"projector\": 63702,\n  \"pronoun\": 59041,\n  \"pump-impeller\": 59445,\n  \"pump-medical\": 57450,\n  \"pump-soap\": 57451,\n  \"pump\": 58434,\n  \"pumpkin\": 63239,\n  \"puzzle-piece-alt\": 57905,\n  \"puzzle-piece-simple\": 57905,\n  \"puzzle-piece\": 61742,\n  \"puzzle\": 58435,\n  \"q\": 81,\n  \"qrcode-read\": 59289,\n  \"qrcode\": 61481,\n  \"question-circle\": 61529,\n  \"question-square\": 62205,\n  \"question\": 63,\n  \"quidditch-broom-ball\": 62552,\n  \"quidditch\": 62552,\n  \"quote-left-alt\": 61709,\n  \"quote-left\": 61709,\n  \"quote-right-alt\": 61710,\n  \"quote-right\": 61710,\n  \"quotes\": 57908,\n  \"quran\": 63111,\n  \"r\": 82,\n  \"rabbit-fast\": 63241,\n  \"rabbit-running\": 63241,\n  \"rabbit\": 63240,\n  \"raccoon\": 58899,\n  \"racquet\": 62554,\n  \"radar\": 57380,\n  \"radiation-alt\": 63418,\n  \"radiation\": 63417,\n  \"radio-alt\": 63704,\n  \"radio-tuner\": 63704,\n  \"radio\": 63703,\n  \"rainbow-half\": 59338,\n  \"rainbow\": 63323,\n  \"raindrops\": 63324,\n  \"ram\": 63242,\n  \"ramp-loading\": 62676,\n  \"random\": 61556,\n  \"ranking-star\": 58721,\n  \"raygun\": 57381,\n  \"receipt\": 62787,\n  \"record-vinyl\": 63705,\n  \"rectangle-4k\": 59250,\n  \"rectangle-ad\": 63041,\n  \"rectangle-api\": 59552,\n  \"rectangle-barcode\": 62563,\n  \"rectangle-beta\": 59400,\n  \"rectangle-code\": 58146,\n  \"rectangle-hd\": 57774,\n  \"rectangle-hdr\": 59251,\n  \"rectangle-high-dynamic-range\": 59251,\n  \"rectangle-history-circle-plus\": 58531,\n  \"rectangle-history-circle-user\": 58532,\n  \"rectangle-history\": 58530,\n  \"rectangle-irc\": 59500,\n  \"rectangle-landscape\": 62202,\n  \"rectangle-list\": 61474,\n  \"rectangle-minus\": 59060,\n  \"rectangle-n-a\": 59560,\n  \"rectangle-new\": 59514,\n  \"rectangle-plus\": 59061,\n  \"rectangle-portrait\": 62203,\n  \"rectangle-pro\": 57909,\n  \"rectangle-sd\": 57994,\n  \"rectangle-tall\": 59281,\n  \"rectangle-terminal\": 57910,\n  \"rectangle-times\": 62480,\n  \"rectangle-vertical-history\": 57911,\n  \"rectangle-vertical\": 62203,\n  \"rectangle-video-on-demand\": 59252,\n  \"rectangle-wide\": 62204,\n  \"rectangle-xmark\": 62480,\n  \"rectangle\": 62202,\n  \"rectangles-mixed\": 58147,\n  \"recycle\": 61880,\n  \"redo-alt\": 62201,\n  \"redo\": 61470,\n  \"reel\": 57912,\n  \"reflect-both\": 58991,\n  \"reflect-horizontal\": 58980,\n  \"reflect-vertical\": 58981,\n  \"refresh\": 61473,\n  \"refrigerator\": 57382,\n  \"registered\": 62045,\n  \"remote\": 59561,\n  \"remove-format\": 63613,\n  \"remove\": 61453,\n  \"renminbi-sign\": 59196,\n  \"reorder\": 62800,\n  \"repeat-1-alt\": 62310,\n  \"repeat-1\": 62309,\n  \"repeat-alt\": 62308,\n  \"repeat\": 62307,\n  \"reply-all\": 61730,\n  \"reply-clock\": 57913,\n  \"reply-time\": 57913,\n  \"reply\": 62437,\n  \"republican\": 63326,\n  \"restroom-simple\": 57914,\n  \"restroom\": 63421,\n  \"retweet-alt\": 62305,\n  \"retweet\": 61561,\n  \"rhombus\": 57915,\n  \"ribbon\": 62678,\n  \"right-from-bracket\": 62197,\n  \"right-from-dotted-line\": 59076,\n  \"right-from-line\": 62279,\n  \"right-left-large\": 58849,\n  \"right-left\": 62306,\n  \"right-long-to-line\": 58436,\n  \"right-long\": 62219,\n  \"right-to-bracket\": 62198,\n  \"right-to-dotted-line\": 59077,\n  \"right-to-line\": 62284,\n  \"right\": 62294,\n  \"ring-diamond\": 58795,\n  \"ring\": 63243,\n  \"rings-wedding\": 63515,\n  \"rmb\": 61783,\n  \"road-barrier\": 58722,\n  \"road-bridge\": 58723,\n  \"road-circle-check\": 58724,\n  \"road-circle-exclamation\": 58725,\n  \"road-circle-xmark\": 58726,\n  \"road-lock\": 58727,\n  \"road-spikes\": 58728,\n  \"road\": 61464,\n  \"robot-astromech\": 58066,\n  \"robot\": 62788,\n  \"rocket-launch\": 57383,\n  \"rocket-vertical\": 59325,\n  \"rocket\": 61749,\n  \"rod-asclepius\": 58745,\n  \"rod-snake\": 58745,\n  \"roller-coaster\": 58148,\n  \"rotate-back\": 62186,\n  \"rotate-backward\": 62186,\n  \"rotate-exclamation\": 57916,\n  \"rotate-forward\": 62201,\n  \"rotate-left\": 62186,\n  \"rotate-reverse\": 58929,\n  \"rotate-right\": 62201,\n  \"rotate\": 62193,\n  \"rouble\": 61784,\n  \"route-highway\": 63002,\n  \"route-interstate\": 63003,\n  \"route\": 62679,\n  \"router\": 63706,\n  \"rows-3\": 59531,\n  \"rows\": 58002,\n  \"rss-square\": 61763,\n  \"rss\": 61598,\n  \"rub\": 61784,\n  \"ruble-sign\": 61784,\n  \"ruble\": 61784,\n  \"rug\": 58729,\n  \"rugby-ball\": 58310,\n  \"ruler-combined\": 62790,\n  \"ruler-horizontal\": 62791,\n  \"ruler-triangle\": 63004,\n  \"ruler-vertical\": 62792,\n  \"ruler\": 62789,\n  \"running\": 63244,\n  \"rupee-sign\": 61782,\n  \"rupee\": 61782,\n  \"rupiah-sign\": 57917,\n  \"rv\": 63422,\n  \"s\": 83,\n  \"sack-dollar\": 63517,\n  \"sack-xmark\": 58730,\n  \"sack\": 63516,\n  \"sad-cry\": 62899,\n  \"sad-tear\": 62900,\n  \"sagittarius\": 59469,\n  \"sailboat\": 58437,\n  \"salad\": 63518,\n  \"salt-shaker\": 58438,\n  \"sandwich\": 63519,\n  \"satellite-dish\": 63424,\n  \"satellite\": 63423,\n  \"sausage\": 63520,\n  \"save-circle-arrow-right\": 57728,\n  \"save-circle-xmark\": 57729,\n  \"save-times\": 57729,\n  \"save\": 61639,\n  \"sax-hot\": 63707,\n  \"saxophone-fire\": 63707,\n  \"saxophone\": 63708,\n  \"scale-balanced\": 62030,\n  \"scale-unbalanced-flip\": 62742,\n  \"scale-unbalanced\": 62741,\n  \"scalpel-line-dashed\": 63006,\n  \"scalpel-path\": 63006,\n  \"scalpel\": 63005,\n  \"scanner-gun\": 62600,\n  \"scanner-image\": 63731,\n  \"scanner-keyboard\": 62601,\n  \"scanner-touchscreen\": 62602,\n  \"scanner\": 62600,\n  \"scarecrow\": 63245,\n  \"scarf\": 63425,\n  \"school-circle-check\": 58731,\n  \"school-circle-exclamation\": 58732,\n  \"school-circle-xmark\": 58733,\n  \"school-flag\": 58734,\n  \"school-lock\": 58735,\n  \"school-unlock\": 59083,\n  \"school\": 62793,\n  \"scissors\": 61636,\n  \"scooter\": 59331,\n  \"scorpio\": 59470,\n  \"screen-users\": 63037,\n  \"screencast\": 57918,\n  \"screenshot\": 57562,\n  \"screwdriver-wrench\": 63449,\n  \"screwdriver\": 62794,\n  \"scribble\": 57919,\n  \"scroll-old\": 63247,\n  \"scroll-ribbon\": 62954,\n  \"scroll-torah\": 63136,\n  \"scroll\": 63246,\n  \"scrubber\": 62200,\n  \"scythe\": 63248,\n  \"sd-card\": 63426,\n  \"sd-cards\": 57920,\n  \"seal-exclamation\": 57922,\n  \"seal-question\": 57923,\n  \"seal\": 57921,\n  \"search-dollar\": 63112,\n  \"search-location\": 63113,\n  \"search-minus\": 61456,\n  \"search-plus\": 61454,\n  \"search\": 61442,\n  \"seat-airline-window\": 59326,\n  \"seat-airline\": 57924,\n  \"seat\": 59236,\n  \"seats\": 59237,\n  \"section\": 58439,\n  \"seedling\": 62680,\n  \"semicolon\": 59,\n  \"send-back\": 63614,\n  \"send-backward\": 63615,\n  \"send\": 57866,\n  \"sensor-alert\": 57385,\n  \"sensor-cloud\": 57388,\n  \"sensor-fire\": 57386,\n  \"sensor-on\": 57387,\n  \"sensor-smoke\": 57388,\n  \"sensor-triangle-exclamation\": 57385,\n  \"sensor\": 57384,\n  \"septagon\": 59424,\n  \"server\": 62003,\n  \"shapes\": 63007,\n  \"share-all\": 62311,\n  \"share-alt-square\": 61921,\n  \"share-alt\": 61920,\n  \"share-from-square\": 61773,\n  \"share-nodes\": 61920,\n  \"share-square\": 61773,\n  \"share\": 61540,\n  \"sheep\": 63249,\n  \"sheet-plastic\": 58737,\n  \"shekel-sign\": 61963,\n  \"shekel\": 61963,\n  \"shelves-empty\": 57926,\n  \"shelves\": 62592,\n  \"sheqel-sign\": 61963,\n  \"sheqel\": 61963,\n  \"shield-alt\": 62445,\n  \"shield-blank\": 61746,\n  \"shield-cat\": 58738,\n  \"shield-check\": 62199,\n  \"shield-cross\": 63250,\n  \"shield-dog\": 58739,\n  \"shield-exclamation\": 57927,\n  \"shield-halved\": 62445,\n  \"shield-heart\": 58740,\n  \"shield-keyhole\": 57928,\n  \"shield-minus\": 57929,\n  \"shield-plus\": 57930,\n  \"shield-quartered\": 58741,\n  \"shield-slash\": 57931,\n  \"shield-times\": 57932,\n  \"shield-user\": 59401,\n  \"shield-virus\": 57452,\n  \"shield-xmark\": 57932,\n  \"shield\": 61746,\n  \"ship-large\": 59408,\n  \"ship\": 61978,\n  \"shipping-fast\": 62603,\n  \"shipping-timed\": 62604,\n  \"shirt-jersey\": 59095,\n  \"shirt-long-sleeve\": 58311,\n  \"shirt-running\": 58312,\n  \"shirt-tank-top\": 58313,\n  \"shirt\": 62803,\n  \"shish-kebab\": 63521,\n  \"shoe-prints\": 62795,\n  \"shoe\": 59096,\n  \"shop-24\": 59290,\n  \"shop-lock\": 58533,\n  \"shop-slash\": 57456,\n  \"shop\": 62799,\n  \"shopping-bag\": 62096,\n  \"shopping-basket-alt\": 57519,\n  \"shopping-basket\": 62097,\n  \"shopping-cart\": 61562,\n  \"shortcake\": 58341,\n  \"shorts\": 59097,\n  \"shovel-snow\": 63427,\n  \"shovel\": 63251,\n  \"shower-alt\": 57933,\n  \"shower-down\": 57933,\n  \"shower\": 62156,\n  \"shredder\": 63114,\n  \"shrimp\": 58440,\n  \"shuffle\": 61556,\n  \"shutters\": 58441,\n  \"shuttle-space-vertical\": 59327,\n  \"shuttle-space\": 61847,\n  \"shuttle-van\": 62902,\n  \"shuttlecock\": 62555,\n  \"sickle\": 63522,\n  \"sidebar-flip\": 57935,\n  \"sidebar\": 57934,\n  \"sigma\": 63115,\n  \"sign-hanging\": 62681,\n  \"sign-in-alt\": 62198,\n  \"sign-in\": 61584,\n  \"sign-language\": 62119,\n  \"sign-out-alt\": 62197,\n  \"sign-out\": 61579,\n  \"sign-post\": 58916,\n  \"sign-posts-wrench\": 58918,\n  \"sign-posts\": 58917,\n  \"sign\": 62681,\n  \"signal-1\": 63116,\n  \"signal-2\": 63117,\n  \"signal-3\": 63118,\n  \"signal-4\": 63119,\n  \"signal-5\": 61458,\n  \"signal-alt-1\": 63121,\n  \"signal-alt-2\": 63122,\n  \"signal-alt-3\": 63123,\n  \"signal-alt-4\": 63120,\n  \"signal-alt-slash\": 63124,\n  \"signal-alt\": 63120,\n  \"signal-bars-fair\": 63122,\n  \"signal-bars-good\": 63123,\n  \"signal-bars-slash\": 63124,\n  \"signal-bars-strong\": 63120,\n  \"signal-bars-weak\": 63121,\n  \"signal-bars\": 63120,\n  \"signal-fair\": 63117,\n  \"signal-good\": 63118,\n  \"signal-perfect\": 61458,\n  \"signal-slash\": 63125,\n  \"signal-stream-slash\": 57936,\n  \"signal-stream\": 63709,\n  \"signal-strong\": 63119,\n  \"signal-weak\": 63116,\n  \"signal\": 61458,\n  \"signapore-dollar-sign\": 59182,\n  \"signature-lock\": 58314,\n  \"signature-slash\": 58315,\n  \"signature\": 62903,\n  \"signing\": 62119,\n  \"signs-post\": 62071,\n  \"sim-card\": 63428,\n  \"sim-cards\": 57937,\n  \"single-quote-left\": 59419,\n  \"single-quote-right\": 59420,\n  \"sink\": 57453,\n  \"siren-on\": 57390,\n  \"siren\": 57389,\n  \"sitemap\": 61672,\n  \"skating\": 63429,\n  \"skeleton-ribs\": 58827,\n  \"skeleton\": 63008,\n  \"ski-boot-ski\": 58317,\n  \"ski-boot\": 58316,\n  \"ski-jump\": 63431,\n  \"ski-lift\": 63432,\n  \"skiing-nordic\": 63434,\n  \"skiing\": 63433,\n  \"skull-cow\": 63710,\n  \"skull-crossbones\": 63252,\n  \"skull\": 62796,\n  \"slash-back\": 92,\n  \"slash-forward\": 47,\n  \"slash\": 63253,\n  \"sledding\": 63435,\n  \"sleigh\": 63436,\n  \"slider-circle\": 59216,\n  \"slider\": 57938,\n  \"sliders-h-square\": 62448,\n  \"sliders-h\": 61918,\n  \"sliders-simple\": 57939,\n  \"sliders-up\": 62449,\n  \"sliders-v-square\": 62450,\n  \"sliders-v\": 62449,\n  \"sliders\": 61918,\n  \"slot-machine\": 58318,\n  \"smile-beam\": 62904,\n  \"smile-plus\": 62905,\n  \"smile-wink\": 62682,\n  \"smile\": 61720,\n  \"smog\": 63327,\n  \"smoke\": 63328,\n  \"smoking-ban\": 62797,\n  \"smoking\": 62605,\n  \"sms\": 63437,\n  \"snake\": 63254,\n  \"sneaker-running\": 59417,\n  \"sneaker\": 59098,\n  \"snooze\": 63616,\n  \"snow-blowing\": 63329,\n  \"snowboarding\": 63438,\n  \"snowflake-droplets\": 58817,\n  \"snowflake\": 62172,\n  \"snowflakes\": 63439,\n  \"snowman-head\": 63387,\n  \"snowman\": 63440,\n  \"snowmobile-blank\": 59332,\n  \"snowmobile\": 63441,\n  \"snowplow\": 63442,\n  \"soap\": 57454,\n  \"soccer-ball\": 61923,\n  \"socks\": 63126,\n  \"soft-serve\": 58368,\n  \"solar-panel\": 62906,\n  \"solar-system\": 57391,\n  \"sort-alpha-asc\": 61789,\n  \"sort-alpha-desc\": 63617,\n  \"sort-alpha-down-alt\": 63617,\n  \"sort-alpha-down\": 61789,\n  \"sort-alpha-up-alt\": 63618,\n  \"sort-alpha-up\": 61790,\n  \"sort-alt\": 63619,\n  \"sort-amount-asc\": 61792,\n  \"sort-amount-desc\": 63620,\n  \"sort-amount-down-alt\": 63620,\n  \"sort-amount-down\": 61792,\n  \"sort-amount-up-alt\": 63621,\n  \"sort-amount-up\": 61793,\n  \"sort-asc\": 61662,\n  \"sort-circle-down\": 57393,\n  \"sort-circle-up\": 57394,\n  \"sort-circle\": 57392,\n  \"sort-desc\": 61661,\n  \"sort-down\": 61661,\n  \"sort-numeric-asc\": 61794,\n  \"sort-numeric-desc\": 63622,\n  \"sort-numeric-down-alt\": 63622,\n  \"sort-numeric-down\": 61794,\n  \"sort-numeric-up-alt\": 63623,\n  \"sort-numeric-up\": 61795,\n  \"sort-shapes-down-alt\": 63625,\n  \"sort-shapes-down\": 63624,\n  \"sort-shapes-up-alt\": 63627,\n  \"sort-shapes-up\": 63626,\n  \"sort-size-down-alt\": 63629,\n  \"sort-size-down\": 63628,\n  \"sort-size-up-alt\": 63631,\n  \"sort-size-up\": 63630,\n  \"sort-up-down\": 57497,\n  \"sort-up\": 61662,\n  \"sort\": 61660,\n  \"soup\": 63523,\n  \"spa\": 62907,\n  \"space-shuttle\": 61847,\n  \"space-station-moon-alt\": 57396,\n  \"space-station-moon-construction\": 57396,\n  \"space-station-moon\": 57395,\n  \"spade\": 62196,\n  \"spaghetti-monster-flying\": 63099,\n  \"sparkle\": 58838,\n  \"sparkles\": 63632,\n  \"speaker\": 63711,\n  \"speakers\": 63712,\n  \"spell-check\": 63633,\n  \"spider-black-widow\": 63256,\n  \"spider-web\": 63257,\n  \"spider\": 63255,\n  \"spine\": 59233,\n  \"spinner-scale\": 58922,\n  \"spinner-third\": 62452,\n  \"spinner\": 61712,\n  \"spiral\": 59402,\n  \"split\": 57940,\n  \"splotch\": 62908,\n  \"spoon\": 62181,\n  \"sportsball\": 58443,\n  \"spray-can-sparkles\": 62928,\n  \"spray-can\": 62909,\n  \"sprinkler-ceiling\": 58444,\n  \"sprinkler\": 57397,\n  \"sprout\": 62680,\n  \"square-0\": 57941,\n  \"square-1\": 57942,\n  \"square-2\": 57943,\n  \"square-3\": 57944,\n  \"square-4\": 57945,\n  \"square-5\": 57946,\n  \"square-6\": 57947,\n  \"square-7\": 57948,\n  \"square-8\": 57949,\n  \"square-9\": 57950,\n  \"square-a-lock\": 58445,\n  \"square-a\": 57951,\n  \"square-ampersand\": 57952,\n  \"square-arrow-down-left\": 57953,\n  \"square-arrow-down-right\": 57954,\n  \"square-arrow-down\": 62265,\n  \"square-arrow-left\": 62266,\n  \"square-arrow-right\": 62267,\n  \"square-arrow-up-left\": 57955,\n  \"square-arrow-up-right\": 61772,\n  \"square-arrow-up\": 62268,\n  \"square-austral\": 59174,\n  \"square-australian-dollar\": 59160,\n  \"square-b\": 57956,\n  \"square-baht\": 59161,\n  \"square-bangladeshi-taka\": 59204,\n  \"square-binary\": 59035,\n  \"square-bitcoin\": 59122,\n  \"square-bolt\": 57957,\n  \"square-brazilian-real\": 59121,\n  \"square-c\": 57958,\n  \"square-caret-down\": 61776,\n  \"square-caret-left\": 61841,\n  \"square-caret-right\": 61778,\n  \"square-caret-up\": 61777,\n  \"square-cedi\": 59177,\n  \"square-cent\": 59120,\n  \"square-check\": 61770,\n  \"square-chevron-down\": 62249,\n  \"square-chevron-left\": 62250,\n  \"square-chevron-right\": 62251,\n  \"square-chevron-up\": 62252,\n  \"square-chf\": 59110,\n  \"square-code\": 57959,\n  \"square-colon\": 59194,\n  \"square-cruzeiro\": 59117,\n  \"square-currency\": 59148,\n  \"square-d\": 57960,\n  \"square-danish-krone\": 59207,\n  \"square-dashed-circle-plus\": 58818,\n  \"square-dashed\": 57961,\n  \"square-divide\": 57962,\n  \"square-dollar\": 62185,\n  \"square-dong\": 59151,\n  \"square-down-left\": 57963,\n  \"square-down-right\": 57964,\n  \"square-down\": 62288,\n  \"square-e\": 57965,\n  \"square-ellipsis-vertical\": 57967,\n  \"square-ellipsis\": 57966,\n  \"square-envelope\": 61849,\n  \"square-equals\": 59062,\n  \"square-euro\": 59186,\n  \"square-eurozone\": 59175,\n  \"square-exclamation\": 62241,\n  \"square-f\": 57968,\n  \"square-florin\": 59159,\n  \"square-fragile\": 62619,\n  \"square-franc\": 59183,\n  \"square-full\": 62556,\n  \"square-g\": 57969,\n  \"square-guarani\": 59150,\n  \"square-h\": 61693,\n  \"square-half-horizontal\": 59406,\n  \"square-half-stroke-horizontal\": 59407,\n  \"square-half-stroke\": 59283,\n  \"square-half\": 59282,\n  \"square-heart\": 62664,\n  \"square-hryvnia\": 59152,\n  \"square-i\": 57970,\n  \"square-indian-rupee\": 59125,\n  \"square-info\": 62223,\n  \"square-j\": 57971,\n  \"square-k\": 57972,\n  \"square-kanban\": 58504,\n  \"square-kip\": 59149,\n  \"square-l\": 57973,\n  \"square-lari\": 59199,\n  \"square-left\": 62289,\n  \"square-lira\": 59111,\n  \"square-list\": 58505,\n  \"square-litecoin\": 59127,\n  \"square-m\": 57974,\n  \"square-malaysian-ringgit\": 59208,\n  \"square-manat\": 59140,\n  \"square-microphone\": 59265,\n  \"square-mill\": 59146,\n  \"square-minus\": 61766,\n  \"square-n\": 57975,\n  \"square-naira\": 59144,\n  \"square-nfi\": 58742,\n  \"square-norwegian-krone\": 59143,\n  \"square-o\": 57976,\n  \"square-p\": 57977,\n  \"square-parking-slash\": 62999,\n  \"square-parking\": 62784,\n  \"square-pen\": 61771,\n  \"square-person-confined\": 58743,\n  \"square-peruvian-soles\": 59158,\n  \"square-peseta\": 59114,\n  \"square-peso\": 59162,\n  \"square-phone-flip\": 63611,\n  \"square-phone-hangup\": 57978,\n  \"square-phone\": 61592,\n  \"square-plus\": 61694,\n  \"square-polish-zloty\": 59190,\n  \"square-poll-horizontal\": 63106,\n  \"square-poll-vertical\": 63105,\n  \"square-q\": 57979,\n  \"square-quarters\": 58446,\n  \"square-question\": 62205,\n  \"square-quote\": 58153,\n  \"square-r\": 57980,\n  \"square-renminbi\": 59197,\n  \"square-right\": 62290,\n  \"square-ring\": 58447,\n  \"square-root-alt\": 63128,\n  \"square-root-variable\": 63128,\n  \"square-root\": 63127,\n  \"square-rss\": 61763,\n  \"square-ruble\": 59128,\n  \"square-rupee\": 59157,\n  \"square-rupiah\": 59154,\n  \"square-s\": 57981,\n  \"square-share-nodes\": 61921,\n  \"square-shekel\": 59189,\n  \"square-sliders-vertical\": 62450,\n  \"square-sliders\": 62448,\n  \"square-small\": 57982,\n  \"square-star\": 57983,\n  \"square-sterling\": 59155,\n  \"square-swedish-krona\": 59164,\n  \"square-t\": 57984,\n  \"square-tenge\": 59185,\n  \"square-terminal\": 58154,\n  \"square-this-way-up\": 62623,\n  \"square-tugrik\": 59176,\n  \"square-turkish-lira\": 59167,\n  \"square-u\": 57985,\n  \"square-up-left\": 57986,\n  \"square-up-right\": 62304,\n  \"square-up\": 62291,\n  \"square-user\": 57987,\n  \"square-v\": 57988,\n  \"square-virus\": 58744,\n  \"square-w\": 57989,\n  \"square-wine-glass-crack\": 62619,\n  \"square-won\": 59145,\n  \"square-x\": 57990,\n  \"square-xmark\": 62163,\n  \"square-y\": 57991,\n  \"square-yen\": 59172,\n  \"square-z\": 57992,\n  \"square\": 61640,\n  \"squareapore-dollar\": 59187,\n  \"squid\": 58448,\n  \"squirrel\": 63258,\n  \"stadium\": 59084,\n  \"staff-aesculapius\": 58745,\n  \"staff-snake\": 58745,\n  \"staff\": 63259,\n  \"stair-car\": 59333,\n  \"stairs\": 57993,\n  \"stamp\": 62911,\n  \"standard-definition\": 57994,\n  \"stapler\": 58799,\n  \"star-and-crescent\": 63129,\n  \"star-christmas\": 63444,\n  \"star-circle\": 57635,\n  \"star-exclamation\": 62195,\n  \"star-half-alt\": 62912,\n  \"star-half-stroke\": 62912,\n  \"star-half\": 61577,\n  \"star-of-david\": 63130,\n  \"star-of-life\": 63009,\n  \"star-sharp-half-alt\": 57997,\n  \"star-sharp-half-stroke\": 57997,\n  \"star-sharp-half\": 57996,\n  \"star-sharp\": 57995,\n  \"star-shooting\": 57398,\n  \"star\": 61445,\n  \"starfighter-alt-advanced\": 57998,\n  \"starfighter-alt\": 57400,\n  \"starfighter-twin-ion-engine-advanced\": 57998,\n  \"starfighter-twin-ion-engine\": 57400,\n  \"starfighter\": 57399,\n  \"stars\": 63330,\n  \"starship-freighter\": 57402,\n  \"starship\": 57401,\n  \"steak\": 63524,\n  \"steering-wheel\": 63010,\n  \"step-backward\": 61512,\n  \"step-forward\": 61521,\n  \"sterling-sign\": 61780,\n  \"stethoscope\": 61681,\n  \"sticky-note\": 62025,\n  \"stocking\": 63445,\n  \"stomach\": 63011,\n  \"stool\": 59520,\n  \"stop-circle\": 62093,\n  \"stop\": 61517,\n  \"stopwatch-20\": 57455,\n  \"stopwatch\": 62194,\n  \"store-24\": 59291,\n  \"store-alt-slash\": 57456,\n  \"store-alt\": 62799,\n  \"store-lock\": 58534,\n  \"store-slash\": 57457,\n  \"store\": 62798,\n  \"strawberry\": 58155,\n  \"stream\": 62800,\n  \"street-view\": 61981,\n  \"stretcher\": 63525,\n  \"strikethrough\": 61644,\n  \"stroopwafel\": 62801,\n  \"subscript\": 61740,\n  \"subtitles-slash\": 58896,\n  \"subtitles\": 58895,\n  \"subtract\": 61544,\n  \"subway-tunnel\": 58019,\n  \"subway\": 62009,\n  \"suitcase-medical\": 61690,\n  \"suitcase-rolling\": 62913,\n  \"suitcase\": 61682,\n  \"sun-alt\": 57999,\n  \"sun-bright\": 57999,\n  \"sun-cloud\": 63331,\n  \"sun-dust\": 63332,\n  \"sun-haze\": 63333,\n  \"sun-plant-wilt\": 58746,\n  \"sun\": 61829,\n  \"sunglasses\": 63634,\n  \"sunrise\": 63334,\n  \"sunset\": 63335,\n  \"superscript\": 61739,\n  \"surprise\": 62914,\n  \"sushi-roll\": 58507,\n  \"sushi\": 58506,\n  \"swap-arrows\": 58890,\n  \"swap\": 58889,\n  \"swatchbook\": 62915,\n  \"swedish-krona-sign\": 59198,\n  \"swimmer\": 62916,\n  \"swimming-pool\": 62917,\n  \"sword-laser-alt\": 57404,\n  \"sword-laser\": 57403,\n  \"sword\": 63260,\n  \"swords-laser\": 57405,\n  \"swords\": 63261,\n  \"symbols\": 63598,\n  \"synagogue\": 63131,\n  \"sync-alt\": 62193,\n  \"sync\": 61473,\n  \"syringe\": 62606,\n  \"t-rex\": 58921,\n  \"t-shirt\": 62803,\n  \"t\": 84,\n  \"table-bar\": 59550,\n  \"table-cells-column-lock\": 59000,\n  \"table-cells-column-unlock\": 59024,\n  \"table-cells-columns\": 59052,\n  \"table-cells-header-lock\": 59054,\n  \"table-cells-header-unlock\": 59055,\n  \"table-cells-header\": 59053,\n  \"table-cells-large\": 61449,\n  \"table-cells-lock\": 59001,\n  \"table-cells-merge\": 59532,\n  \"table-cells-row-lock\": 59002,\n  \"table-cells-row-unlock\": 59025,\n  \"table-cells-rows\": 59056,\n  \"table-cells-split\": 59533,\n  \"table-cells-unlock\": 59026,\n  \"table-cells\": 61450,\n  \"table-columns-add-after\": 59534,\n  \"table-columns-add-before\": 59535,\n  \"table-columns-merge-next\": 59536,\n  \"table-columns-merge-previous\": 59537,\n  \"table-columns-remove-after\": 59538,\n  \"table-columns-remove-before\": 59539,\n  \"table-columns\": 61659,\n  \"table-dining\": 59522,\n  \"table-layout\": 58000,\n  \"table-list\": 61451,\n  \"table-picnic\": 58157,\n  \"table-pivot\": 58001,\n  \"table-rows-add-above\": 59540,\n  \"table-rows-add-below\": 59541,\n  \"table-rows-merge-next\": 59542,\n  \"table-rows-merge-previous\": 59543,\n  \"table-rows-remove-above\": 59544,\n  \"table-rows-remove-below\": 59545,\n  \"table-rows\": 58002,\n  \"table-slash\": 59546,\n  \"table-tennis-paddle-ball\": 62557,\n  \"table-tennis\": 62557,\n  \"table-tree\": 58003,\n  \"table\": 61646,\n  \"tablet-alt\": 62458,\n  \"tablet-android-alt\": 62460,\n  \"tablet-android\": 62459,\n  \"tablet-button\": 61706,\n  \"tablet-rugged\": 62607,\n  \"tablet-screen-button\": 62458,\n  \"tablet-screen\": 62460,\n  \"tablet\": 62459,\n  \"tablets\": 62608,\n  \"tachograph-digital\": 62822,\n  \"tachometer-alt-average\": 63012,\n  \"tachometer-alt-fast\": 63013,\n  \"tachometer-alt-fastest\": 63014,\n  \"tachometer-alt-slow\": 63015,\n  \"tachometer-alt-slowest\": 63016,\n  \"tachometer-alt\": 63013,\n  \"tachometer-average\": 63017,\n  \"tachometer-fast\": 63018,\n  \"tachometer-fastest\": 63019,\n  \"tachometer-slow\": 63020,\n  \"tachometer-slowest\": 63021,\n  \"tachometer\": 63018,\n  \"taco\": 63526,\n  \"tag\": 61483,\n  \"tags\": 61484,\n  \"tally-1\": 58004,\n  \"tally-2\": 58005,\n  \"tally-3\": 58006,\n  \"tally-4\": 58007,\n  \"tally-5\": 63132,\n  \"tally\": 63132,\n  \"tamale\": 58449,\n  \"tanakh\": 63527,\n  \"tank-recovery\": 59429,\n  \"tank-water\": 58450,\n  \"tape\": 62683,\n  \"tarp-droplet\": 58748,\n  \"tarp\": 58747,\n  \"tasks-alt\": 63528,\n  \"tasks\": 61614,\n  \"taurus\": 59471,\n  \"taxi-bus\": 58008,\n  \"taxi\": 61882,\n  \"teddy-bear\": 58319,\n  \"teeth-open\": 63023,\n  \"teeth\": 63022,\n  \"telescope\": 57406,\n  \"teletype-answer\": 58041,\n  \"teletype\": 61924,\n  \"television\": 62060,\n  \"temperature-0\": 62155,\n  \"temperature-1\": 62154,\n  \"temperature-2\": 62153,\n  \"temperature-3\": 62152,\n  \"temperature-4\": 62151,\n  \"temperature-arrow-down\": 57407,\n  \"temperature-arrow-up\": 57408,\n  \"temperature-down\": 57407,\n  \"temperature-empty\": 62155,\n  \"temperature-frigid\": 63336,\n  \"temperature-full\": 62151,\n  \"temperature-half\": 62153,\n  \"temperature-high\": 63337,\n  \"temperature-hot\": 63338,\n  \"temperature-list\": 58009,\n  \"temperature-low\": 63339,\n  \"temperature-quarter\": 62154,\n  \"temperature-slash\": 59339,\n  \"temperature-snow\": 63336,\n  \"temperature-sun\": 63338,\n  \"temperature-three-quarters\": 62152,\n  \"temperature-up\": 57408,\n  \"tenge-sign\": 63447,\n  \"tenge\": 63447,\n  \"tennis-ball\": 62558,\n  \"tent-arrow-down-to-line\": 58750,\n  \"tent-arrow-left-right\": 58751,\n  \"tent-arrow-turn-left\": 58752,\n  \"tent-arrows-down\": 58753,\n  \"tent-circus\": 59085,\n  \"tent-double-peak\": 58919,\n  \"tent\": 58749,\n  \"tents\": 58754,\n  \"terminal\": 61728,\n  \"text-height\": 61492,\n  \"text-size\": 63636,\n  \"text-slash\": 63613,\n  \"text-width\": 61493,\n  \"text\": 63635,\n  \"th-large\": 61449,\n  \"th-list\": 61451,\n  \"th\": 61450,\n  \"theater-masks\": 63024,\n  \"thermometer-0\": 62155,\n  \"thermometer-1\": 62154,\n  \"thermometer-2\": 62153,\n  \"thermometer-3\": 62152,\n  \"thermometer-4\": 62151,\n  \"thermometer-empty\": 62155,\n  \"thermometer-full\": 62151,\n  \"thermometer-half\": 62153,\n  \"thermometer-quarter\": 62154,\n  \"thermometer-three-quarters\": 62152,\n  \"thermometer\": 62609,\n  \"theta\": 63134,\n  \"thought-bubble\": 58158,\n  \"thumb-tack-slash\": 59023,\n  \"thumb-tack\": 61581,\n  \"thumbs-down\": 61797,\n  \"thumbs-up\": 61796,\n  \"thumbtack-angle-slash\": 59218,\n  \"thumbtack-angle\": 59217,\n  \"thumbtack-slash\": 59023,\n  \"thumbtack\": 61581,\n  \"thunderstorm-moon\": 63341,\n  \"thunderstorm-sun\": 63342,\n  \"thunderstorm\": 63340,\n  \"tick\": 58159,\n  \"ticket-airline\": 58010,\n  \"ticket-alt\": 62463,\n  \"ticket-perforated-plane\": 58010,\n  \"ticket-perforated\": 58942,\n  \"ticket-plane\": 58010,\n  \"ticket-simple\": 62463,\n  \"ticket\": 61765,\n  \"tickets-airline\": 58011,\n  \"tickets-perforated-plane\": 58011,\n  \"tickets-perforated\": 58943,\n  \"tickets-plane\": 58011,\n  \"tickets-simple\": 58969,\n  \"tickets\": 58968,\n  \"tilde\": 126,\n  \"timeline-arrow\": 58013,\n  \"timeline\": 58012,\n  \"timer\": 58014,\n  \"times-circle\": 61527,\n  \"times-hexagon\": 62190,\n  \"times-octagon\": 62192,\n  \"times-rectangle\": 62480,\n  \"times-square\": 62163,\n  \"times-to-slot\": 63345,\n  \"times\": 61453,\n  \"tint-slash\": 62919,\n  \"tint\": 61507,\n  \"tire-flat\": 63026,\n  \"tire-pressure-warning\": 63027,\n  \"tire-rugged\": 63028,\n  \"tire\": 63025,\n  \"tired\": 62920,\n  \"toggle-large-off\": 58800,\n  \"toggle-large-on\": 58801,\n  \"toggle-off\": 61956,\n  \"toggle-on\": 61957,\n  \"toilet-paper-alt\": 63262,\n  \"toilet-paper-blank-under\": 58016,\n  \"toilet-paper-blank\": 63262,\n  \"toilet-paper-check\": 58802,\n  \"toilet-paper-reverse-alt\": 58016,\n  \"toilet-paper-reverse-slash\": 58017,\n  \"toilet-paper-reverse\": 58016,\n  \"toilet-paper-slash\": 57458,\n  \"toilet-paper-under-slash\": 58017,\n  \"toilet-paper-under\": 58016,\n  \"toilet-paper-xmark\": 58803,\n  \"toilet-paper\": 63262,\n  \"toilet-portable\": 58755,\n  \"toilet\": 63448,\n  \"toilets-portable\": 58756,\n  \"tomato\": 58160,\n  \"tombstone-alt\": 63265,\n  \"tombstone-blank\": 63265,\n  \"tombstone\": 63264,\n  \"toolbox\": 62802,\n  \"tools\": 63449,\n  \"tooth\": 62921,\n  \"toothbrush\": 63029,\n  \"torah\": 63136,\n  \"torii-gate\": 63137,\n  \"tornado\": 63343,\n  \"tower-broadcast\": 62745,\n  \"tower-cell\": 58757,\n  \"tower-control\": 58018,\n  \"tower-observation\": 58758,\n  \"tower-receive\": 59555,\n  \"tractor\": 63266,\n  \"trademark\": 62044,\n  \"traffic-cone\": 63030,\n  \"traffic-light-go\": 63032,\n  \"traffic-light-slow\": 63033,\n  \"traffic-light-stop\": 63034,\n  \"traffic-light\": 63031,\n  \"trailer\": 57409,\n  \"train-stop\": 59423,\n  \"train-subway-tunnel\": 58019,\n  \"train-subway\": 62009,\n  \"train-track\": 58451,\n  \"train-tram\": 58804,\n  \"train-tunnel\": 58452,\n  \"train\": 62008,\n  \"tram\": 63450,\n  \"transducer\": 59430,\n  \"transformer-bolt\": 58020,\n  \"transgender-alt\": 61989,\n  \"transgender\": 61989,\n  \"transmission\": 59394,\n  \"transporter-1\": 57411,\n  \"transporter-2\": 57412,\n  \"transporter-3\": 57413,\n  \"transporter-4\": 58021,\n  \"transporter-5\": 58022,\n  \"transporter-6\": 58023,\n  \"transporter-7\": 58024,\n  \"transporter-empty\": 57414,\n  \"transporter\": 57410,\n  \"trash-alt-slash\": 58029,\n  \"trash-alt\": 62189,\n  \"trash-arrow-turn-left\": 63637,\n  \"trash-arrow-up\": 63529,\n  \"trash-can-arrow-turn-left\": 63638,\n  \"trash-can-arrow-up\": 63530,\n  \"trash-can-check\": 58025,\n  \"trash-can-clock\": 58026,\n  \"trash-can-list\": 58027,\n  \"trash-can-plus\": 58028,\n  \"trash-can-slash\": 58029,\n  \"trash-can-undo\": 63638,\n  \"trash-can-xmark\": 58030,\n  \"trash-can\": 62189,\n  \"trash-check\": 58031,\n  \"trash-circle\": 57638,\n  \"trash-clock\": 58032,\n  \"trash-list\": 58033,\n  \"trash-plus\": 58034,\n  \"trash-restore-alt\": 63530,\n  \"trash-restore\": 63529,\n  \"trash-slash\": 58035,\n  \"trash-undo-alt\": 63638,\n  \"trash-undo\": 63637,\n  \"trash-xmark\": 58036,\n  \"trash\": 61944,\n  \"treasure-chest\": 63267,\n  \"tree-alt\": 62464,\n  \"tree-christmas\": 63451,\n  \"tree-city\": 58759,\n  \"tree-deciduous\": 62464,\n  \"tree-decorated\": 63452,\n  \"tree-large\": 63453,\n  \"tree-palm\": 63531,\n  \"tree\": 61883,\n  \"trees\": 63268,\n  \"trian-balbot\": 58460,\n  \"triangle-circle-square\": 63007,\n  \"triangle-exclamation\": 61553,\n  \"triangle-instrument\": 63714,\n  \"triangle-music\": 63714,\n  \"triangle-person-digging\": 63581,\n  \"triangle\": 62188,\n  \"tricycle-adult\": 58820,\n  \"tricycle\": 58819,\n  \"trillium\": 58760,\n  \"triple-chevrons-down\": 59383,\n  \"triple-chevrons-left\": 59384,\n  \"triple-chevrons-right\": 59385,\n  \"triple-chevrons-up\": 59386,\n  \"trombone\": 59266,\n  \"trophy-alt\": 62187,\n  \"trophy-star\": 62187,\n  \"trophy\": 61585,\n  \"trowel-bricks\": 58762,\n  \"trowel\": 58761,\n  \"truck-arrow-right\": 58763,\n  \"truck-bolt\": 58320,\n  \"truck-clock\": 62604,\n  \"truck-container-empty\": 58037,\n  \"truck-container\": 62684,\n  \"truck-couch\": 62685,\n  \"truck-droplet\": 58764,\n  \"truck-fast\": 62603,\n  \"truck-field-un\": 58766,\n  \"truck-field\": 58765,\n  \"truck-fire\": 58970,\n  \"truck-flatbed\": 58038,\n  \"truck-front\": 58039,\n  \"truck-ladder\": 58967,\n  \"truck-loading\": 62686,\n  \"truck-medical\": 61689,\n  \"truck-monster\": 63035,\n  \"truck-moving\": 62687,\n  \"truck-pickup\": 63036,\n  \"truck-plane\": 58767,\n  \"truck-plow\": 63454,\n  \"truck-ramp-box\": 62686,\n  \"truck-ramp-couch\": 62685,\n  \"truck-ramp\": 62688,\n  \"truck-suv\": 59334,\n  \"truck-tow\": 58040,\n  \"truck-utensils\": 58920,\n  \"truck\": 61649,\n  \"trumpet\": 63715,\n  \"try\": 58043,\n  \"tshirt\": 62803,\n  \"tty-answer\": 58041,\n  \"tty\": 61924,\n  \"tugrik-sign\": 58042,\n  \"turkey\": 63269,\n  \"turkish-lira-sign\": 58043,\n  \"turkish-lira\": 58043,\n  \"turn-down-left\": 58161,\n  \"turn-down-right\": 58453,\n  \"turn-down\": 62398,\n  \"turn-left-down\": 58935,\n  \"turn-left-up\": 58936,\n  \"turn-left\": 58934,\n  \"turn-right\": 58937,\n  \"turn-up\": 62399,\n  \"turntable\": 63716,\n  \"turtle\": 63270,\n  \"tv-alt\": 62060,\n  \"tv-music\": 63718,\n  \"tv-retro\": 62465,\n  \"tv\": 62060,\n  \"typewriter\": 63719,\n  \"u-turn-down-left\": 59375,\n  \"u-turn-down-right\": 59376,\n  \"u-turn-left-down\": 59377,\n  \"u-turn-left-up\": 59378,\n  \"u-turn-right-down\": 59379,\n  \"u-turn-right-up\": 59380,\n  \"u-turn-up-left\": 59381,\n  \"u-turn-up-right\": 59382,\n  \"u-turn\": 59377,\n  \"u\": 85,\n  \"ufo-beam\": 57416,\n  \"ufo\": 57415,\n  \"umbrella-alt\": 58044,\n  \"umbrella-beach\": 62922,\n  \"umbrella-simple\": 58044,\n  \"umbrella\": 61673,\n  \"underline\": 61645,\n  \"undo-alt\": 62186,\n  \"undo\": 61666,\n  \"unicorn\": 63271,\n  \"unicycle\": 59335,\n  \"uniform-martial-arts\": 58321,\n  \"union\": 63138,\n  \"universal-access\": 62106,\n  \"university\": 61852,\n  \"unlink\": 61735,\n  \"unlock-alt\": 61758,\n  \"unlock-keyhole\": 61758,\n  \"unlock\": 61596,\n  \"unsorted\": 61660,\n  \"up-down-left-right\": 61618,\n  \"up-down\": 62264,\n  \"up-from-bracket\": 58768,\n  \"up-from-dotted-line\": 58454,\n  \"up-from-line\": 62278,\n  \"up-left\": 58045,\n  \"up-long-to-line\": 59078,\n  \"up-long\": 62220,\n  \"up-right-and-down-left-from-center\": 62500,\n  \"up-right-from-square\": 62301,\n  \"up-right\": 58046,\n  \"up-to-bracket\": 58990,\n  \"up-to-dotted-line\": 58455,\n  \"up-to-line\": 62285,\n  \"up\": 62295,\n  \"upload\": 61587,\n  \"usb-drive\": 63721,\n  \"usd-circle\": 62184,\n  \"usd-square\": 62185,\n  \"usd\": 36,\n  \"user-alien\": 57418,\n  \"user-alt-slash\": 62726,\n  \"user-alt\": 61447,\n  \"user-astronaut\": 62715,\n  \"user-beard-bolt\": 59017,\n  \"user-beard\": 59304,\n  \"user-bounty-hunter\": 58047,\n  \"user-chart\": 63139,\n  \"user-check\": 62716,\n  \"user-chef-hair-long\": 59305,\n  \"user-chef\": 58322,\n  \"user-circle-minus\": 59306,\n  \"user-circle-plus\": 59307,\n  \"user-circle\": 62141,\n  \"user-clock\": 62717,\n  \"user-cog\": 62718,\n  \"user-construction\": 63532,\n  \"user-cowboy\": 63722,\n  \"user-crown\": 63140,\n  \"user-dashed\": 59308,\n  \"user-doctor-hair-long\": 58457,\n  \"user-doctor-hair-mullet\": 59309,\n  \"user-doctor-hair\": 58456,\n  \"user-doctor-message\": 63534,\n  \"user-doctor\": 61680,\n  \"user-edit\": 62719,\n  \"user-friends\": 62720,\n  \"user-gear\": 62718,\n  \"user-graduate\": 62721,\n  \"user-group-crown\": 63141,\n  \"user-group-simple\": 58883,\n  \"user-group\": 62720,\n  \"user-hair-buns\": 58323,\n  \"user-hair-long\": 58459,\n  \"user-hair-mullet\": 58460,\n  \"user-hair\": 58458,\n  \"user-hard-hat\": 63532,\n  \"user-hat-tie-magnifying-glass\": 59311,\n  \"user-hat-tie\": 59310,\n  \"user-headset\": 63533,\n  \"user-helmet-safety\": 63532,\n  \"user-hoodie\": 59018,\n  \"user-injured\": 63272,\n  \"user-key\": 59312,\n  \"user-large-slash\": 62726,\n  \"user-large\": 61447,\n  \"user-lock\": 62722,\n  \"user-magnifying-glass\": 58821,\n  \"user-md-chat\": 63534,\n  \"user-md\": 61680,\n  \"user-message\": 59313,\n  \"user-microphone\": 59314,\n  \"user-minus\": 62723,\n  \"user-music\": 63723,\n  \"user-ninja\": 62724,\n  \"user-nurse-hair-long\": 58462,\n  \"user-nurse-hair\": 58461,\n  \"user-nurse\": 63535,\n  \"user-pen\": 62719,\n  \"user-pilot-hair-long\": 59315,\n  \"user-pilot-tie-hair-long\": 59316,\n  \"user-pilot-tie\": 58049,\n  \"user-pilot\": 58048,\n  \"user-plus\": 62004,\n  \"user-police-hair-long\": 59317,\n  \"user-police-tie-hair-long\": 59318,\n  \"user-police-tie\": 58164,\n  \"user-police\": 58163,\n  \"user-question\": 59319,\n  \"user-robot-xmarks\": 58535,\n  \"user-robot\": 57419,\n  \"user-secret\": 61979,\n  \"user-shakespeare\": 58050,\n  \"user-shield\": 62725,\n  \"user-sith\": 59320,\n  \"user-slash\": 62726,\n  \"user-tag\": 62727,\n  \"user-tie-hair-long\": 58464,\n  \"user-tie-hair-mullet\": 59321,\n  \"user-tie-hair\": 58463,\n  \"user-tie\": 62728,\n  \"user-times\": 62005,\n  \"user-unlock\": 57432,\n  \"user-viewfinder\": 59253,\n  \"user-visor\": 57420,\n  \"user-vneck-hair-long\": 58467,\n  \"user-vneck-hair-mullet\": 59322,\n  \"user-vneck-hair\": 58466,\n  \"user-vneck\": 58465,\n  \"user-xmark\": 62005,\n  \"user\": 61447,\n  \"users-between-lines\": 58769,\n  \"users-class\": 63037,\n  \"users-cog\": 62729,\n  \"users-crown\": 63141,\n  \"users-gear\": 62729,\n  \"users-line\": 58770,\n  \"users-medical\": 63536,\n  \"users-rays\": 58771,\n  \"users-rectangle\": 58772,\n  \"users-slash\": 57459,\n  \"users-viewfinder\": 58773,\n  \"users\": 61632,\n  \"utensil-fork\": 62179,\n  \"utensil-knife\": 62180,\n  \"utensil-spoon\": 62181,\n  \"utensils-alt\": 62182,\n  \"utensils-slash\": 58468,\n  \"utensils\": 62183,\n  \"utility-can\": 59549,\n  \"utility-pole-double\": 58052,\n  \"utility-pole\": 58051,\n  \"v\": 86,\n  \"vacuum-robot\": 57422,\n  \"vacuum\": 57421,\n  \"value-absolute\": 63142,\n  \"van-shuttle\": 62902,\n  \"van\": 59336,\n  \"vault\": 58053,\n  \"vcard\": 62139,\n  \"vector-circle\": 62957,\n  \"vector-polygon\": 62958,\n  \"vector-square\": 62959,\n  \"vent-damper\": 58469,\n  \"venus-double\": 61990,\n  \"venus-mars\": 61992,\n  \"venus\": 61985,\n  \"vest-patches\": 57478,\n  \"vest\": 57477,\n  \"vhs\": 63724,\n  \"vial-circle-check\": 58774,\n  \"vial-vertical\": 59234,\n  \"vial-virus\": 58775,\n  \"vial\": 62610,\n  \"vials\": 62611,\n  \"video-arrow-down-left\": 58056,\n  \"video-arrow-up-right\": 58057,\n  \"video-camera\": 61501,\n  \"video-circle\": 57643,\n  \"video-down-to-line\": 59254,\n  \"video-handheld\": 63656,\n  \"video-plus\": 62689,\n  \"video-question\": 59255,\n  \"video-slash\": 62690,\n  \"video\": 61501,\n  \"vihara\": 63143,\n  \"violin\": 63725,\n  \"virgo\": 59472,\n  \"virus-covid-slash\": 58537,\n  \"virus-covid\": 58536,\n  \"virus-slash\": 57461,\n  \"virus\": 57460,\n  \"viruses\": 57462,\n  \"voicemail\": 63639,\n  \"volcano\": 63344,\n  \"volleyball-ball\": 62559,\n  \"volleyball\": 62559,\n  \"volume-control-phone\": 62112,\n  \"volume-down\": 61479,\n  \"volume-high\": 61480,\n  \"volume-low\": 61479,\n  \"volume-medium\": 63144,\n  \"volume-mute\": 63145,\n  \"volume-off\": 61478,\n  \"volume-slash\": 62178,\n  \"volume-times\": 63145,\n  \"volume-up\": 61480,\n  \"volume-xmark\": 63145,\n  \"volume\": 63144,\n  \"vote-nay\": 63345,\n  \"vote-yea\": 63346,\n  \"vr-cardboard\": 63273,\n  \"w\": 87,\n  \"waffle\": 58470,\n  \"wagon-covered\": 63726,\n  \"walker\": 63537,\n  \"walkie-talkie\": 63727,\n  \"walking\": 62804,\n  \"wall-brick\": 58331,\n  \"wallet\": 62805,\n  \"wand-magic-sparkles\": 58058,\n  \"wand-magic\": 61648,\n  \"wand-sparkles\": 63275,\n  \"wand\": 63274,\n  \"wardrobe\": 59521,\n  \"warehouse-alt\": 62613,\n  \"warehouse-full\": 62613,\n  \"warehouse\": 62612,\n  \"warning\": 61553,\n  \"washer\": 63640,\n  \"washing-machine\": 63640,\n  \"watch-apple\": 58059,\n  \"watch-calculator\": 63728,\n  \"watch-fitness\": 63038,\n  \"watch-smart\": 58060,\n  \"watch\": 62177,\n  \"water-arrow-down\": 63348,\n  \"water-arrow-up\": 63349,\n  \"water-ladder\": 62917,\n  \"water-lower\": 63348,\n  \"water-rise\": 63349,\n  \"water-temp\": 59434,\n  \"water-temperature\": 59434,\n  \"water\": 63347,\n  \"watermelon-slice\": 58167,\n  \"wave-pulse\": 62968,\n  \"wave-sine\": 63641,\n  \"wave-square\": 63550,\n  \"wave-triangle\": 63642,\n  \"wave\": 58971,\n  \"waveform-circle\": 57645,\n  \"waveform-lines\": 63730,\n  \"waveform-path\": 63730,\n  \"waveform\": 63729,\n  \"waves-sine\": 58973,\n  \"web-awesome\": 59010,\n  \"webcam-slash\": 63539,\n  \"webcam\": 63538,\n  \"webhook\": 58837,\n  \"weight-hanging\": 62925,\n  \"weight-scale\": 62614,\n  \"weight\": 62614,\n  \"whale\": 63276,\n  \"wheat-alt\": 58061,\n  \"wheat-awn-circle-exclamation\": 58776,\n  \"wheat-awn-slash\": 58168,\n  \"wheat-awn\": 58061,\n  \"wheat-slash\": 58169,\n  \"wheat\": 63277,\n  \"wheelchair-alt\": 58062,\n  \"wheelchair-move\": 58062,\n  \"wheelchair\": 61843,\n  \"whiskey-glass-ice\": 63393,\n  \"whiskey-glass\": 63392,\n  \"whistle\": 62560,\n  \"wifi-1\": 63146,\n  \"wifi-2\": 63147,\n  \"wifi-3\": 61931,\n  \"wifi-exclamation\": 58063,\n  \"wifi-fair\": 63147,\n  \"wifi-slash\": 63148,\n  \"wifi-strong\": 61931,\n  \"wifi-weak\": 63146,\n  \"wifi\": 61931,\n  \"wind-circle-exclamation\": 63350,\n  \"wind-turbine\": 63643,\n  \"wind-warning\": 63350,\n  \"wind\": 63278,\n  \"window-alt\": 62479,\n  \"window-close\": 62480,\n  \"window-flip\": 62479,\n  \"window-frame-open\": 57424,\n  \"window-frame\": 57423,\n  \"window-maximize\": 62160,\n  \"window-minimize\": 62161,\n  \"window-restore\": 62162,\n  \"window\": 62478,\n  \"windsock\": 63351,\n  \"wine-bottle\": 63279,\n  \"wine-glass-alt\": 62926,\n  \"wine-glass-crack\": 62651,\n  \"wine-glass-empty\": 62926,\n  \"wine-glass\": 62691,\n  \"wireless\": 59359,\n  \"won-sign\": 61785,\n  \"won\": 61785,\n  \"worm\": 58777,\n  \"wreath-laurel\": 58834,\n  \"wreath\": 63458,\n  \"wrench-simple\": 58065,\n  \"wrench\": 61613,\n  \"x-ray\": 62615,\n  \"x\": 88,\n  \"xmark-circle\": 61527,\n  \"xmark-hexagon\": 62190,\n  \"xmark-large\": 58779,\n  \"xmark-octagon\": 62192,\n  \"xmark-square\": 62163,\n  \"xmark-to-slot\": 63345,\n  \"xmark\": 61453,\n  \"xmarks-lines\": 58778,\n  \"y\": 89,\n  \"yen-sign\": 61783,\n  \"yen\": 61783,\n  \"yin-yang\": 63149,\n  \"z\": 90,\n  \"zap\": 61671,\n  \"zzz\": 63616\n}"
  },
  {
    "path": "packages/fontawesome-pro-duotone-solid/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontawesome-pro-duotone-solid\",\n  \"version\": \"0.2.0\",\n  \"description\": \"Fontawesome Pro Duotone Solid font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"fontawesome-pro-duotone-solid\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/fontawesome-pro-duotone-solid\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-solid/react-native-vector-icons-fontawesome-pro-duotone-solid.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-fontawesome-pro-duotone-solid'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\n\n  s.script_phase = {\n    name: 'Copy Custom Fonts',\n    execution_position: :after_compile,\n    script: <<~SCRIPT\n      set -e\n\n      HEAD=\"(RNVI-fontawesome-pro-duotone-solid)\"\n\n      echo \"${HEAD} START_COPY_FONTS\"\n\n      echo \"${HEAD} PWD: $(pwd)\"\n\n      #\n      # Find the custom font Directory\n      #\n\n      # Assume the project root is always two directories above the POD_ROOT\n      echo \"${HEAD} PODS_ROOT: $PODS_ROOT\"\n\n      PROJECT_ROOT=\"${PODS_ROOT}/../..\"\n      echo \"${HEAD} PROJECT_ROOT: $PROJECT_ROOT\"\n\n      cd $PROJECT_ROOT\n      FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/\"//g')\n      if [ -z \"$FONTS_DIR\" ]; then\n        FONTS_DIR=\"rnvi-fonts\"\n      fi\n      echo \"${HEAD} FONTS_DIR: $FONTS_DIR\"\n\n      FONTS_DIR=\"${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-duotone-solid\"\n      if [ ! -d \"$FONTS_DIR\" ]; then\n        echo \"${HEAD} $FONTS_DIR not found\"\n        exit 0\n      fi\n\n      #\n      # Find the destination we copy to\n      #\n\n      echo \"${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR\"\n      XCODE_DIR=$(ls -d \"$PODS_CONFIGURATION_BUILD_DIR\"/*.app)\n      echo \"${HEAD} XCODE_DIR: $XCODE_DIR\"\n      if [ -z \"$XCODE_DIR\" ]; then\n        echo \"Could not find XCODE_DIR to copy fonts to\"\n        exit 1\n      fi\n\n      DEST_DIR=\"${XCODE_DIR}\"\n      mkdir -p \"$DEST_DIR\"\n\n      #\n      # Copy the fonts\n      #\n\n      echo \"${HEAD} Copying the following files to $DEST_DIR\"\n      ls \"$FONTS_DIR\" | sed \"s/^/${HEAD} /\"\n\n      rsync -avr --copy-links --no-relative $FONTS_DIR/ \"$DEST_DIR\"\n\n      echo \"${HEAD} END:RNVI_COPY_FONTS\"\n    SCRIPT\n  }\nend\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-solid/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProDuotoneSolid icon set component.\n * Usage: <FontAwesomeProDuotoneSolid name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProDuotoneSolid.json';\n\nexport const FontAwesomeProDuotoneSolid = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Duotone-Solid',\n  fontFileName: 'fa-duotone-900.ttf',\n});\n\nexport type FontAwesomeProDuotoneSolidIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProDuotoneSolid;\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-solid/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProDuotoneSolid icon set component.\n * Usage: <FontAwesomeProDuotoneSolid name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProDuotoneSolid.json';\n\nexport const FontAwesomeProDuotoneSolid = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Duotone-Solid',\n  fontFileName: 'fa-duotone-900.ttf',\n});\n\nexport type FontAwesomeProDuotoneSolidIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProDuotoneSolid;\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-solid/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-solid/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-thin/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontawesome-pro-duotone-thin\",\n    \"upstreamFont\": {\n      \"registry\": \"https://npm.fontawesome.com\",\n      \"packageName\": \"@fortawesome/fontawesome-pro\",\n      \"versionOnly\": true\n    },\n    \"copyCustomFonts\": true,\n    \"className\": \"FontAwesomeProDuotoneThin\",\n    \"postScriptName\": \"FontAwesome7Duotone-Thin\",\n    \"fontFileName\": \"fa-duotone-thin-100\",\n    \"buildSteps\": {\n      \"preScript\": {\n        \"script\": \"../fontawesome-common/scripts/fetch-pro.sh 7\"\n      },\n      \"glyphmap\": {\n        \"location\": \"fa/pro/css/all.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fa-\"\n      },\n      \"postScript\": {\n        \"script\": \"../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProDuotoneThin.json fa/pro/svgs/duotone-thin\\nrm -rf fa\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"0.1.0\",\n        \"upstream\": \"7.1.0\"\n      },\n      {\n        \"rnvi\": \"0.1.1\",\n        \"upstream\": \"7.2.0\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-thin/CHANGELOG.md",
    "content": "## 0.2.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 0.1.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 0.1.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🩹 Fixes\n\n- upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 0.1.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 0.1.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontawesome-pro-duotone-thin/README.md",
    "content": "# React Native Vector Icons - Fontawesome Pro Duotone Thin\n\nFontawesome Pro Duotone Thin font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n> [!IMPORTANT]\n> This package does not include the fonts. You must provide them yourself.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/fontawesome-pro-duotone-thin\n```\n\n## Custom Fonts\n\nThis package requires you to provide the font files. Place your `.ttf` font\nfile in the following location:\n\n```\nrnvi-fonts/fontawesome-pro-duotone-thin/fa-duotone-thin-100.ttf\n```\n\nThe font will be automatically copied during the build process for both iOS and\nAndroid.\n\n## Usage\n\n```jsx\nimport { FontAwesomeProDuotoneThin } from '@react-native-vector-icons/fontawesome-pro-duotone-thin';\n\n// ...\n\n<FontAwesomeProDuotoneThin name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 0.1.0 | 7.1.0 |\n| &gt; 0.1.1 | 7.2.0 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-thin/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.fontawesome_pro_duotone_thin\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFontAwesomeProDuotoneThin\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.fontawesome_pro_duotone_thin\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-fontawesome-pro-duotone-thin\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-duotone-thin/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-duotone-thin) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n\ntask copyExtraFonts(type: Copy) {\n  from \"${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-duotone-thin\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-duotone-thin/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-duotone-thin) Copying custom font: ${it.file}\" }\n}\n\npreBuild.dependsOn(copyExtraFonts)\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-thin/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.fontawesome_pro_duotone_thin\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-thin/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-thin/android/src/main/java/VectorIconsFontAwesomeProDuotoneThinPackage.kt",
    "content": "package com.reactnativevectoricons.fontawesome_pro_duotone_thin\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFontAwesomeProDuotoneThinPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-thin/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-thin/glyphmaps/FontAwesomeProDuotoneThin.json",
    "content": "{\n  \"0\": 48,\n  \"1\": 49,\n  \"2\": 50,\n  \"3\": 51,\n  \"4\": 52,\n  \"5\": 53,\n  \"6\": 54,\n  \"7\": 55,\n  \"8\": 56,\n  \"9\": 57,\n  \"100\": 58396,\n  \"00\": 58471,\n  \"360-degrees\": 58076,\n  \"a\": 65,\n  \"abacus\": 63040,\n  \"accent-grave\": 96,\n  \"acorn\": 63150,\n  \"ad\": 63041,\n  \"add\": 43,\n  \"address-book\": 62137,\n  \"address-card\": 62139,\n  \"adjust\": 61506,\n  \"aeropress\": 59435,\n  \"air-conditioner\": 63732,\n  \"air-freshener\": 62928,\n  \"airplay-audio\": 59259,\n  \"airplay\": 57481,\n  \"alarm-clock\": 62286,\n  \"alarm-exclamation\": 63555,\n  \"alarm-minus\": 59395,\n  \"alarm-plus\": 63556,\n  \"alarm-snooze\": 63557,\n  \"album-circle-plus\": 58508,\n  \"album-circle-user\": 58509,\n  \"album-collection-circle-plus\": 58510,\n  \"album-collection-circle-user\": 58511,\n  \"album-collection\": 63648,\n  \"album\": 63647,\n  \"alicorn\": 63152,\n  \"alien-8bit\": 63734,\n  \"alien-monster\": 63734,\n  \"alien\": 63733,\n  \"align-center\": 61495,\n  \"align-justify\": 61497,\n  \"align-left\": 61494,\n  \"align-right\": 61496,\n  \"align-slash\": 63558,\n  \"allergies\": 62561,\n  \"almost-equal-to\": 59416,\n  \"alt\": 57482,\n  \"ambulance\": 61689,\n  \"american-sign-language-interpreting\": 62115,\n  \"amp-guitar\": 63649,\n  \"ampersand\": 38,\n  \"analytics\": 63043,\n  \"anchor-circle-check\": 58538,\n  \"anchor-circle-exclamation\": 58539,\n  \"anchor-circle-xmark\": 58540,\n  \"anchor-lock\": 58541,\n  \"anchor\": 61757,\n  \"angel\": 63353,\n  \"angle-90\": 57485,\n  \"angle-double-down\": 61699,\n  \"angle-double-left\": 61696,\n  \"angle-double-right\": 61697,\n  \"angle-double-up\": 61698,\n  \"angle-down\": 61703,\n  \"angle-left\": 61700,\n  \"angle-right\": 61701,\n  \"angle-up\": 61702,\n  \"angle\": 57484,\n  \"angles-down\": 61699,\n  \"angles-left\": 61696,\n  \"angles-right\": 61697,\n  \"angles-up-down\": 58893,\n  \"angles-up\": 61698,\n  \"angry\": 62806,\n  \"ankh\": 63044,\n  \"ant\": 59008,\n  \"apartment\": 58472,\n  \"aperture\": 58079,\n  \"apostrophe\": 39,\n  \"apple-alt\": 62929,\n  \"apple-core\": 57487,\n  \"apple-crate\": 63153,\n  \"apple-whole\": 62929,\n  \"aquarius\": 59461,\n  \"archive\": 61831,\n  \"archway\": 62807,\n  \"area-chart\": 61950,\n  \"aries\": 59462,\n  \"arrow-alt-circle-down\": 62296,\n  \"arrow-alt-circle-left\": 62297,\n  \"arrow-alt-circle-right\": 62298,\n  \"arrow-alt-circle-up\": 62299,\n  \"arrow-alt-down\": 62292,\n  \"arrow-alt-from-bottom\": 62278,\n  \"arrow-alt-from-left\": 62279,\n  \"arrow-alt-from-right\": 62280,\n  \"arrow-alt-from-top\": 62281,\n  \"arrow-alt-left\": 62293,\n  \"arrow-alt-right\": 62294,\n  \"arrow-alt-square-down\": 62288,\n  \"arrow-alt-square-left\": 62289,\n  \"arrow-alt-square-right\": 62290,\n  \"arrow-alt-square-up\": 62291,\n  \"arrow-alt-to-bottom\": 62282,\n  \"arrow-alt-to-left\": 62283,\n  \"arrow-alt-to-right\": 62284,\n  \"arrow-alt-to-top\": 62285,\n  \"arrow-alt-up\": 62295,\n  \"arrow-archery\": 59449,\n  \"arrow-circle-down\": 61611,\n  \"arrow-circle-left\": 61608,\n  \"arrow-circle-right\": 61609,\n  \"arrow-circle-up\": 61610,\n  \"arrow-down-1-9\": 61794,\n  \"arrow-down-9-1\": 63622,\n  \"arrow-down-a-z\": 61789,\n  \"arrow-down-arrow-up\": 63619,\n  \"arrow-down-big-small\": 63628,\n  \"arrow-down-from-arc\": 58900,\n  \"arrow-down-from-bracket\": 58983,\n  \"arrow-down-from-dotted-line\": 57488,\n  \"arrow-down-from-line\": 62277,\n  \"arrow-down-left-and-arrow-up-right-to-center\": 57490,\n  \"arrow-down-left\": 57489,\n  \"arrow-down-long-to-line\": 59063,\n  \"arrow-down-long\": 61813,\n  \"arrow-down-right\": 57491,\n  \"arrow-down-short-wide\": 63620,\n  \"arrow-down-small-big\": 63629,\n  \"arrow-down-square-triangle\": 63625,\n  \"arrow-down-to-arc\": 58542,\n  \"arrow-down-to-bracket\": 57492,\n  \"arrow-down-to-dotted-line\": 57493,\n  \"arrow-down-to-line\": 62269,\n  \"arrow-down-to-square\": 57494,\n  \"arrow-down-triangle-square\": 63624,\n  \"arrow-down-up-across-line\": 58543,\n  \"arrow-down-up-lock\": 58544,\n  \"arrow-down-wide-short\": 61792,\n  \"arrow-down-z-a\": 63617,\n  \"arrow-down\": 61539,\n  \"arrow-from-bottom\": 62274,\n  \"arrow-from-left\": 62275,\n  \"arrow-from-right\": 62276,\n  \"arrow-from-top\": 62277,\n  \"arrow-left-arrow-right\": 59064,\n  \"arrow-left-from-arc\": 58901,\n  \"arrow-left-from-bracket\": 58984,\n  \"arrow-left-from-dotted-line\": 59065,\n  \"arrow-left-from-line\": 62276,\n  \"arrow-left-long-to-line\": 58324,\n  \"arrow-left-long\": 61815,\n  \"arrow-left-rotate\": 61666,\n  \"arrow-left-to-arc\": 58902,\n  \"arrow-left-to-bracket\": 58985,\n  \"arrow-left-to-dotted-line\": 59066,\n  \"arrow-left-to-line\": 62270,\n  \"arrow-left\": 61536,\n  \"arrow-pointer\": 62021,\n  \"arrow-progress\": 58847,\n  \"arrow-right-arrow-left\": 61676,\n  \"arrow-right-from-arc\": 58545,\n  \"arrow-right-from-bracket\": 61579,\n  \"arrow-right-from-dotted-line\": 59067,\n  \"arrow-right-from-file\": 62830,\n  \"arrow-right-from-line\": 62275,\n  \"arrow-right-long-to-line\": 58325,\n  \"arrow-right-long\": 61816,\n  \"arrow-right-rotate\": 61470,\n  \"arrow-right-to-arc\": 58546,\n  \"arrow-right-to-bracket\": 61584,\n  \"arrow-right-to-city\": 58547,\n  \"arrow-right-to-dotted-line\": 59068,\n  \"arrow-right-to-file\": 62831,\n  \"arrow-right-to-line\": 62272,\n  \"arrow-right\": 61537,\n  \"arrow-rotate-back\": 61666,\n  \"arrow-rotate-backward\": 61666,\n  \"arrow-rotate-forward\": 61470,\n  \"arrow-rotate-left-10\": 59446,\n  \"arrow-rotate-left-15\": 59526,\n  \"arrow-rotate-left-30\": 59527,\n  \"arrow-rotate-left\": 61666,\n  \"arrow-rotate-right-10\": 59447,\n  \"arrow-rotate-right-15\": 59528,\n  \"arrow-rotate-right-30\": 59529,\n  \"arrow-rotate-right\": 61470,\n  \"arrow-square-down\": 62265,\n  \"arrow-square-left\": 62266,\n  \"arrow-square-right\": 62267,\n  \"arrow-square-up\": 62268,\n  \"arrow-to-bottom\": 62269,\n  \"arrow-to-left\": 62270,\n  \"arrow-to-right\": 62272,\n  \"arrow-to-top\": 62273,\n  \"arrow-trend-down\": 57495,\n  \"arrow-trend-up\": 57496,\n  \"arrow-turn-down-left\": 58081,\n  \"arrow-turn-down-right\": 58326,\n  \"arrow-turn-down\": 61769,\n  \"arrow-turn-left-down\": 58931,\n  \"arrow-turn-left-up\": 58932,\n  \"arrow-turn-left\": 58930,\n  \"arrow-turn-right\": 58933,\n  \"arrow-turn-up\": 61768,\n  \"arrow-u-turn-down-left\": 59367,\n  \"arrow-u-turn-down-right\": 59368,\n  \"arrow-u-turn-left-down\": 59369,\n  \"arrow-u-turn-left-up\": 59370,\n  \"arrow-u-turn-right-down\": 59371,\n  \"arrow-u-turn-right-up\": 59372,\n  \"arrow-u-turn-up-left\": 59373,\n  \"arrow-u-turn-up-right\": 59374,\n  \"arrow-up-1-9\": 61795,\n  \"arrow-up-9-1\": 63623,\n  \"arrow-up-a-z\": 61790,\n  \"arrow-up-arrow-down\": 57497,\n  \"arrow-up-big-small\": 63630,\n  \"arrow-up-from-arc\": 58548,\n  \"arrow-up-from-bracket\": 57498,\n  \"arrow-up-from-dotted-line\": 57499,\n  \"arrow-up-from-ground-water\": 58549,\n  \"arrow-up-from-line\": 62274,\n  \"arrow-up-from-square\": 57500,\n  \"arrow-up-from-water-pump\": 58550,\n  \"arrow-up-left-from-circle\": 57502,\n  \"arrow-up-left\": 57501,\n  \"arrow-up-long-to-line\": 59069,\n  \"arrow-up-long\": 61814,\n  \"arrow-up-right-and-arrow-down-left-from-center\": 57504,\n  \"arrow-up-right-dots\": 58551,\n  \"arrow-up-right-from-square\": 61582,\n  \"arrow-up-right\": 57503,\n  \"arrow-up-short-wide\": 63621,\n  \"arrow-up-small-big\": 63631,\n  \"arrow-up-square-triangle\": 63627,\n  \"arrow-up-to-arc\": 58903,\n  \"arrow-up-to-bracket\": 58986,\n  \"arrow-up-to-dotted-line\": 57505,\n  \"arrow-up-to-line\": 62273,\n  \"arrow-up-triangle-square\": 63626,\n  \"arrow-up-wide-short\": 61793,\n  \"arrow-up-z-a\": 63618,\n  \"arrow-up\": 61538,\n  \"arrows-alt-h\": 62263,\n  \"arrows-alt-v\": 62264,\n  \"arrows-alt\": 61618,\n  \"arrows-cross\": 57506,\n  \"arrows-down-to-line\": 58552,\n  \"arrows-down-to-people\": 58553,\n  \"arrows-from-dotted-line\": 57507,\n  \"arrows-from-line\": 57508,\n  \"arrows-h\": 61566,\n  \"arrows-left-right-to-line\": 58554,\n  \"arrows-left-right\": 61566,\n  \"arrows-maximize\": 62237,\n  \"arrows-minimize\": 57509,\n  \"arrows-repeat-1\": 62310,\n  \"arrows-repeat\": 62308,\n  \"arrows-retweet\": 62305,\n  \"arrows-rotate-reverse\": 58928,\n  \"arrows-rotate\": 61473,\n  \"arrows-spin\": 58555,\n  \"arrows-split-up-and-left\": 58556,\n  \"arrows-to-circle\": 58557,\n  \"arrows-to-dot\": 58558,\n  \"arrows-to-dotted-line\": 57510,\n  \"arrows-to-eye\": 58559,\n  \"arrows-to-line\": 57511,\n  \"arrows-turn-right\": 58560,\n  \"arrows-turn-to-dots\": 58561,\n  \"arrows-up-down-left-right\": 61511,\n  \"arrows-up-down\": 61565,\n  \"arrows-up-to-line\": 58562,\n  \"arrows-v\": 61565,\n  \"arrows\": 61511,\n  \"asl-interpreting\": 62115,\n  \"assistive-listening-systems\": 62114,\n  \"asterisk\": 42,\n  \"at\": 64,\n  \"atlas\": 62808,\n  \"atom-alt\": 62931,\n  \"atom-simple\": 62931,\n  \"atom\": 62930,\n  \"audio-description-slash\": 57512,\n  \"audio-description\": 62110,\n  \"austral-sign\": 57513,\n  \"australian-dollar-sign\": 59134,\n  \"automobile\": 61881,\n  \"avocado\": 57514,\n  \"award-simple\": 57515,\n  \"award\": 62809,\n  \"axe-battle\": 63155,\n  \"axe\": 63154,\n  \"b\": 66,\n  \"baby-carriage\": 63357,\n  \"baby\": 63356,\n  \"backpack\": 62932,\n  \"backspace\": 62810,\n  \"backward-fast\": 61513,\n  \"backward-step\": 61512,\n  \"backward\": 61514,\n  \"bacon\": 63461,\n  \"bacteria\": 57433,\n  \"bacterium\": 57434,\n  \"badge-check\": 62262,\n  \"badge-dollar\": 63045,\n  \"badge-percent\": 63046,\n  \"badge-sheriff\": 63650,\n  \"badge\": 62261,\n  \"badger-honey\": 63156,\n  \"badminton\": 58170,\n  \"bag-seedling\": 58866,\n  \"bag-shopping-minus\": 58960,\n  \"bag-shopping-plus\": 58961,\n  \"bag-shopping\": 62096,\n  \"bagel\": 58327,\n  \"bags-shopping\": 63559,\n  \"baguette\": 58328,\n  \"bahai\": 63078,\n  \"baht-sign\": 57516,\n  \"balance-scale-left\": 62741,\n  \"balance-scale-right\": 62742,\n  \"balance-scale\": 62030,\n  \"ball-pile\": 63358,\n  \"ball-yarn\": 59086,\n  \"balloon\": 58083,\n  \"balloons\": 58084,\n  \"ballot-check\": 63283,\n  \"ballot\": 63282,\n  \"ban-bug\": 63481,\n  \"ban-parking\": 62998,\n  \"ban-smoking\": 62797,\n  \"ban\": 61534,\n  \"banana\": 58085,\n  \"band-aid\": 62562,\n  \"bandage\": 62562,\n  \"bangladeshi-taka-sign\": 58086,\n  \"banjo\": 63651,\n  \"bank\": 61852,\n  \"bar-chart\": 61568,\n  \"bar-progress-empty\": 59045,\n  \"bar-progress-full\": 59046,\n  \"bar-progress-half\": 59047,\n  \"bar-progress-quarter\": 59048,\n  \"bar-progress-three-quarters\": 59049,\n  \"bar-progress\": 59044,\n  \"barcode-alt\": 62563,\n  \"barcode-read\": 62564,\n  \"barcode-scan\": 62565,\n  \"barcode\": 61482,\n  \"barn-silo\": 63588,\n  \"barn\": 59079,\n  \"bars-filter\": 57517,\n  \"bars-progress\": 63528,\n  \"bars-sort\": 57518,\n  \"bars-staggered\": 62800,\n  \"bars\": 61641,\n  \"baseball-ball\": 62515,\n  \"baseball-bat-ball\": 62514,\n  \"baseball-bat\": 59365,\n  \"baseball\": 62515,\n  \"basket-shopping-minus\": 58962,\n  \"basket-shopping-plus\": 58963,\n  \"basket-shopping-simple\": 57519,\n  \"basket-shopping\": 62097,\n  \"basketball-ball\": 62516,\n  \"basketball-hoop\": 62517,\n  \"basketball\": 62516,\n  \"bat\": 63157,\n  \"bath\": 62157,\n  \"bathtub\": 62157,\n  \"battery-0\": 62020,\n  \"battery-1\": 57521,\n  \"battery-2\": 62019,\n  \"battery-3\": 62018,\n  \"battery-4\": 62017,\n  \"battery-5\": 62016,\n  \"battery-bolt\": 62326,\n  \"battery-car\": 62943,\n  \"battery-empty\": 62020,\n  \"battery-exclamation\": 57520,\n  \"battery-full\": 62016,\n  \"battery-half\": 62018,\n  \"battery-low\": 57521,\n  \"battery-quarter\": 62019,\n  \"battery-slash\": 62327,\n  \"battery-three-quarters\": 62017,\n  \"battery\": 62016,\n  \"bed-alt\": 63735,\n  \"bed-bunk\": 63736,\n  \"bed-empty\": 63737,\n  \"bed-front\": 63735,\n  \"bed-pulse\": 62599,\n  \"bed\": 62006,\n  \"bee\": 57522,\n  \"beer-foam\": 57523,\n  \"beer-mug-empty\": 61692,\n  \"beer-mug\": 57523,\n  \"beer\": 61692,\n  \"bell-concierge\": 62818,\n  \"bell-exclamation\": 63560,\n  \"bell-on\": 63738,\n  \"bell-plus\": 63561,\n  \"bell-ring\": 58924,\n  \"bell-school-slash\": 62934,\n  \"bell-school\": 62933,\n  \"bell-slash\": 61942,\n  \"bell\": 61683,\n  \"bells\": 63359,\n  \"bench-tree\": 58087,\n  \"betamax\": 63652,\n  \"bezier-curve\": 62811,\n  \"bible\": 63047,\n  \"bicep\": 59490,\n  \"bicycle\": 61958,\n  \"biking-mountain\": 63563,\n  \"biking\": 63562,\n  \"billboard\": 58829,\n  \"bin-bottles-recycle\": 58870,\n  \"bin-bottles\": 58869,\n  \"bin-recycle\": 58871,\n  \"bin\": 59235,\n  \"binary-circle-check\": 58172,\n  \"binary-lock\": 58173,\n  \"binary-slash\": 58174,\n  \"binary\": 58171,\n  \"binoculars\": 61925,\n  \"biohazard\": 63360,\n  \"bird\": 58473,\n  \"birthday-cake\": 61949,\n  \"bitcoin-sign\": 57524,\n  \"blackboard\": 62747,\n  \"blanket-fire\": 58330,\n  \"blanket\": 62616,\n  \"blender-phone\": 63158,\n  \"blender\": 62743,\n  \"blind\": 62109,\n  \"blinds-open\": 63740,\n  \"blinds-raised\": 63741,\n  \"blinds\": 63739,\n  \"block-brick-fire\": 58332,\n  \"block-brick\": 58331,\n  \"block-question\": 58333,\n  \"block-quote\": 57525,\n  \"block\": 58474,\n  \"blog\": 63361,\n  \"blueberries\": 58088,\n  \"bluetooth\": 62099,\n  \"bold\": 61490,\n  \"bolt-auto\": 57526,\n  \"bolt-lightning\": 57527,\n  \"bolt-slash\": 57528,\n  \"bolt\": 61671,\n  \"bomb\": 61922,\n  \"bone-break\": 62936,\n  \"bone\": 62935,\n  \"bong\": 62812,\n  \"book-alt\": 62937,\n  \"book-arrow-right\": 57529,\n  \"book-arrow-up\": 57530,\n  \"book-atlas\": 62808,\n  \"book-bible\": 63047,\n  \"book-blank\": 62937,\n  \"book-bookmark\": 57531,\n  \"book-circle-arrow-right\": 57532,\n  \"book-circle-arrow-up\": 57533,\n  \"book-circle\": 57599,\n  \"book-copy\": 57534,\n  \"book-dead\": 63159,\n  \"book-font\": 57535,\n  \"book-heart\": 62617,\n  \"book-journal-whills\": 63082,\n  \"book-law\": 57537,\n  \"book-medical\": 63462,\n  \"book-open-alt\": 57536,\n  \"book-open-cover\": 57536,\n  \"book-open-lines\": 59219,\n  \"book-open-reader\": 62938,\n  \"book-open\": 62744,\n  \"book-quran\": 63111,\n  \"book-reader\": 62938,\n  \"book-section\": 57537,\n  \"book-skull\": 63159,\n  \"book-sparkles\": 63160,\n  \"book-spells\": 63160,\n  \"book-spine\": 59220,\n  \"book-tanakh\": 63527,\n  \"book-user\": 63463,\n  \"book\": 61485,\n  \"bookmark-circle\": 57600,\n  \"bookmark-plus\": 59221,\n  \"bookmark-slash\": 57538,\n  \"bookmark\": 61486,\n  \"books-medical\": 63464,\n  \"books\": 62939,\n  \"boombox\": 63653,\n  \"boot-heeled\": 58175,\n  \"boot\": 63362,\n  \"booth-curtain\": 63284,\n  \"border-all\": 63564,\n  \"border-bottom-right\": 63572,\n  \"border-bottom\": 63565,\n  \"border-center-h\": 63644,\n  \"border-center-v\": 63645,\n  \"border-inner\": 63566,\n  \"border-left\": 63567,\n  \"border-none\": 63568,\n  \"border-outer\": 63569,\n  \"border-right\": 63570,\n  \"border-style-alt\": 63572,\n  \"border-style\": 63571,\n  \"border-top-left\": 63571,\n  \"border-top\": 63573,\n  \"bore-hole\": 58563,\n  \"bottle-baby\": 58995,\n  \"bottle-droplet\": 58564,\n  \"bottle-water\": 58565,\n  \"bow-archery\": 59450,\n  \"bow-arrow\": 63161,\n  \"bowl-chopsticks-noodles\": 58090,\n  \"bowl-chopsticks\": 58089,\n  \"bowl-food\": 58566,\n  \"bowl-hot\": 63523,\n  \"bowl-rice\": 58091,\n  \"bowl-salad\": 63518,\n  \"bowl-scoop\": 58334,\n  \"bowl-scoops\": 58335,\n  \"bowl-shaved-ice\": 58334,\n  \"bowl-soft-serve\": 58475,\n  \"bowl-spoon\": 58336,\n  \"bowling-ball-pin\": 57539,\n  \"bowling-ball\": 62518,\n  \"bowling-pins\": 62519,\n  \"box-alt\": 62618,\n  \"box-archive\": 61831,\n  \"box-arrow-down-arrow-up\": 59285,\n  \"box-arrow-down-magnifying-glass\": 59286,\n  \"box-arrow-down\": 59284,\n  \"box-arrow-up\": 59431,\n  \"box-ballot\": 63285,\n  \"box-check\": 62567,\n  \"box-circle-check\": 57540,\n  \"box-dollar\": 62624,\n  \"box-fragile\": 62619,\n  \"box-full\": 62620,\n  \"box-heart\": 62621,\n  \"box-isometric-tape\": 59288,\n  \"box-isometric\": 59287,\n  \"box-magnifying-glass\": 59432,\n  \"box-open-full\": 62620,\n  \"box-open\": 62622,\n  \"box-taped\": 62618,\n  \"box-tissue\": 57435,\n  \"box-up\": 62623,\n  \"box-usd\": 62624,\n  \"box\": 62566,\n  \"boxes-alt\": 62568,\n  \"boxes-packing\": 58567,\n  \"boxes-stacked\": 62568,\n  \"boxes\": 62568,\n  \"boxing-glove\": 62520,\n  \"bra\": 59087,\n  \"bracket-curly-left\": 123,\n  \"bracket-curly-right\": 125,\n  \"bracket-curly\": 123,\n  \"bracket-left\": 91,\n  \"bracket-round-right\": 41,\n  \"bracket-round\": 40,\n  \"bracket-square-right\": 93,\n  \"bracket-square\": 91,\n  \"bracket\": 91,\n  \"brackets-curly\": 63466,\n  \"brackets-round\": 57541,\n  \"brackets-square\": 63465,\n  \"brackets\": 63465,\n  \"braille\": 62113,\n  \"brain-arrow-curved-right\": 63095,\n  \"brain-circuit\": 57542,\n  \"brain\": 62940,\n  \"brake-warning\": 57543,\n  \"brazilian-real-sign\": 58476,\n  \"bread-loaf\": 63467,\n  \"bread-slice-butter\": 58337,\n  \"bread-slice\": 63468,\n  \"bridge-circle-check\": 58569,\n  \"bridge-circle-exclamation\": 58570,\n  \"bridge-circle-xmark\": 58571,\n  \"bridge-lock\": 58572,\n  \"bridge-suspension\": 58573,\n  \"bridge-water\": 58574,\n  \"bridge\": 58568,\n  \"briefcase-arrow-right\": 58098,\n  \"briefcase-blank\": 57544,\n  \"briefcase-clock\": 63050,\n  \"briefcase-medical\": 62569,\n  \"briefcase\": 61617,\n  \"briefs\": 59088,\n  \"brightness-low\": 57546,\n  \"brightness\": 57545,\n  \"bring-forward\": 63574,\n  \"bring-front\": 63575,\n  \"broadcast-tower\": 62745,\n  \"broccoli\": 58338,\n  \"broom-ball\": 62552,\n  \"broom-wide\": 58833,\n  \"broom\": 62746,\n  \"browser\": 62334,\n  \"browsers\": 57547,\n  \"brush\": 62813,\n  \"bucket\": 58575,\n  \"bug-slash\": 58512,\n  \"bug\": 61832,\n  \"bugs\": 58576,\n  \"building-circle-arrow-right\": 58577,\n  \"building-circle-check\": 58578,\n  \"building-circle-exclamation\": 58579,\n  \"building-circle-xmark\": 58580,\n  \"building-columns\": 61852,\n  \"building-flag\": 58581,\n  \"building-lock\": 58582,\n  \"building-magnifying-glass\": 58908,\n  \"building-memo\": 58910,\n  \"building-ngo\": 58583,\n  \"building-shield\": 58584,\n  \"building-un\": 58585,\n  \"building-user\": 58586,\n  \"building-wheat\": 58587,\n  \"building\": 61869,\n  \"buildings\": 57548,\n  \"bulldozer\": 58965,\n  \"bullhorn\": 61601,\n  \"bullseye-arrow\": 63048,\n  \"bullseye-pointer\": 63049,\n  \"bullseye\": 61760,\n  \"buoy-mooring\": 58806,\n  \"buoy\": 58805,\n  \"burger-cheese\": 63473,\n  \"burger-fries\": 57549,\n  \"burger-glass\": 57550,\n  \"burger-lettuce\": 58339,\n  \"burger-soda\": 63576,\n  \"burger\": 63493,\n  \"burn\": 62570,\n  \"burrito\": 63469,\n  \"burst-new\": 59512,\n  \"burst\": 58588,\n  \"bus-alt\": 62814,\n  \"bus-school\": 62941,\n  \"bus-side\": 59421,\n  \"bus-simple\": 62814,\n  \"bus-stop\": 59422,\n  \"bus\": 61959,\n  \"business-front\": 58460,\n  \"business-time\": 63050,\n  \"butter\": 58340,\n  \"butterfly\": 59409,\n  \"c\": 67,\n  \"cab\": 61882,\n  \"cabin\": 58477,\n  \"cabinet-filing\": 63051,\n  \"cable-car\": 63450,\n  \"cactus\": 63655,\n  \"caduceus\": 59009,\n  \"cake-candles\": 61949,\n  \"cake-slice\": 58341,\n  \"cake\": 61949,\n  \"calculator-alt\": 63052,\n  \"calculator-simple\": 63052,\n  \"calculator\": 61932,\n  \"calendar-alt\": 61555,\n  \"calendar-arrow-down\": 57552,\n  \"calendar-arrow-up\": 57553,\n  \"calendar-check\": 62068,\n  \"calendar-circle-exclamation\": 58478,\n  \"calendar-circle-minus\": 58479,\n  \"calendar-circle-plus\": 58480,\n  \"calendar-circle-user\": 58481,\n  \"calendar-circle\": 57602,\n  \"calendar-clock\": 57554,\n  \"calendar-day\": 63363,\n  \"calendar-days\": 61555,\n  \"calendar-download\": 57552,\n  \"calendar-edit\": 62259,\n  \"calendar-exclamation\": 62260,\n  \"calendar-heart\": 57555,\n  \"calendar-image\": 57556,\n  \"calendar-lines-pen\": 58482,\n  \"calendar-lines\": 57557,\n  \"calendar-minus\": 62066,\n  \"calendar-note\": 57557,\n  \"calendar-pen\": 62259,\n  \"calendar-plus\": 62065,\n  \"calendar-range\": 57558,\n  \"calendar-star\": 63286,\n  \"calendar-time\": 57554,\n  \"calendar-times\": 62067,\n  \"calendar-upload\": 57553,\n  \"calendar-users\": 58850,\n  \"calendar-week\": 63364,\n  \"calendar-xmark\": 62067,\n  \"calendar\": 61747,\n  \"calendars\": 57559,\n  \"camcorder\": 63656,\n  \"camera-alt\": 61488,\n  \"camera-cctv\": 63660,\n  \"camera-circle-ellipsis\": 59238,\n  \"camera-circle\": 57603,\n  \"camera-clock\": 59239,\n  \"camera-home\": 63742,\n  \"camera-movie\": 63657,\n  \"camera-polaroid\": 63658,\n  \"camera-retro\": 61571,\n  \"camera-rotate\": 57560,\n  \"camera-security\": 63742,\n  \"camera-shutter\": 59240,\n  \"camera-slash\": 57561,\n  \"camera-viewfinder\": 57562,\n  \"camera-web-slash\": 63539,\n  \"camera-web\": 63538,\n  \"camera\": 61488,\n  \"campfire\": 63162,\n  \"campground\": 63163,\n  \"can-food\": 58342,\n  \"cancel\": 61534,\n  \"cancer\": 59463,\n  \"candle-holder\": 63164,\n  \"candy-bar\": 58344,\n  \"candy-cane\": 63366,\n  \"candy-corn\": 63165,\n  \"candy\": 58343,\n  \"cannabis\": 62815,\n  \"cannon\": 58946,\n  \"canoe-person\": 59548,\n  \"capricorn\": 59464,\n  \"capsule\": 59226,\n  \"capsules\": 62571,\n  \"car-alt\": 62942,\n  \"car-battery\": 62943,\n  \"car-bolt\": 58177,\n  \"car-building\": 63577,\n  \"car-bump\": 62944,\n  \"car-burst\": 62945,\n  \"car-bus\": 63578,\n  \"car-circle-bolt\": 58178,\n  \"car-crash\": 62945,\n  \"car-garage\": 62946,\n  \"car-key\": 59328,\n  \"car-mechanic\": 62947,\n  \"car-mirrors\": 58179,\n  \"car-on\": 58589,\n  \"car-people\": 59036,\n  \"car-rear\": 62942,\n  \"car-side-bolt\": 58180,\n  \"car-side\": 62948,\n  \"car-siren-on\": 59330,\n  \"car-siren\": 59329,\n  \"car-tilt\": 62949,\n  \"car-tunnel\": 58590,\n  \"car-wash\": 62950,\n  \"car-wrench\": 62947,\n  \"car\": 61881,\n  \"caravan-alt\": 57344,\n  \"caravan-simple\": 57344,\n  \"caravan\": 63743,\n  \"card-club\": 58345,\n  \"card-diamond\": 58346,\n  \"card-heart\": 58347,\n  \"card-spade\": 58348,\n  \"cards-blank\": 58591,\n  \"cards\": 58349,\n  \"caret-circle-down\": 62253,\n  \"caret-circle-left\": 62254,\n  \"caret-circle-right\": 62256,\n  \"caret-circle-up\": 62257,\n  \"caret-down\": 61655,\n  \"caret-large-down\": 59436,\n  \"caret-large-left\": 59437,\n  \"caret-large-right\": 59438,\n  \"caret-large-up\": 59439,\n  \"caret-left\": 61657,\n  \"caret-right\": 61658,\n  \"caret-square-down\": 61776,\n  \"caret-square-left\": 61841,\n  \"caret-square-right\": 61778,\n  \"caret-square-up\": 61777,\n  \"caret-up\": 61656,\n  \"carpool\": 59036,\n  \"carriage-baby\": 63357,\n  \"carrot\": 63367,\n  \"cars\": 63579,\n  \"cart-arrow-down\": 61976,\n  \"cart-arrow-up\": 58350,\n  \"cart-circle-arrow-down\": 58351,\n  \"cart-circle-arrow-up\": 58352,\n  \"cart-circle-check\": 58353,\n  \"cart-circle-exclamation\": 58354,\n  \"cart-circle-plus\": 58355,\n  \"cart-circle-xmark\": 58356,\n  \"cart-flatbed-boxes\": 62581,\n  \"cart-flatbed-empty\": 62582,\n  \"cart-flatbed-suitcase\": 62877,\n  \"cart-flatbed\": 62580,\n  \"cart-minus\": 57563,\n  \"cart-plus\": 61975,\n  \"cart-shopping-fast\": 57564,\n  \"cart-shopping\": 61562,\n  \"cart-xmark\": 57565,\n  \"cash-register\": 63368,\n  \"cassette-betamax\": 63652,\n  \"cassette-tape\": 63659,\n  \"cassette-vhs\": 63724,\n  \"castle\": 57566,\n  \"cat-space\": 57345,\n  \"cat\": 63166,\n  \"cauldron\": 63167,\n  \"cctv\": 63660,\n  \"cedi-sign\": 57567,\n  \"cent-sign\": 58357,\n  \"certificate\": 61603,\n  \"chain-broken\": 61735,\n  \"chain-horizontal-slash\": 57804,\n  \"chain-horizontal\": 57803,\n  \"chain-slash\": 61735,\n  \"chain\": 61633,\n  \"chair-office\": 63169,\n  \"chair\": 63168,\n  \"chalkboard-teacher\": 62748,\n  \"chalkboard-user\": 62748,\n  \"chalkboard\": 62747,\n  \"champagne-glass\": 63390,\n  \"champagne-glasses\": 63391,\n  \"charging-station\": 62951,\n  \"chart-area\": 61950,\n  \"chart-bar\": 61568,\n  \"chart-bullet\": 57569,\n  \"chart-candlestick\": 57570,\n  \"chart-column\": 57571,\n  \"chart-diagram\": 59029,\n  \"chart-fft\": 59038,\n  \"chart-gantt\": 57572,\n  \"chart-kanban\": 58959,\n  \"chart-line-down\": 63053,\n  \"chart-line-up-down\": 58839,\n  \"chart-line-up\": 57573,\n  \"chart-line\": 61953,\n  \"chart-mixed-up-circle-currency\": 58840,\n  \"chart-mixed-up-circle-dollar\": 58841,\n  \"chart-mixed\": 63043,\n  \"chart-network\": 63370,\n  \"chart-pie-alt\": 63054,\n  \"chart-pie-simple-circle-currency\": 58884,\n  \"chart-pie-simple-circle-dollar\": 58885,\n  \"chart-pie-simple\": 63054,\n  \"chart-pie\": 61952,\n  \"chart-pyramid\": 57574,\n  \"chart-radar\": 57575,\n  \"chart-scatter-3d\": 57576,\n  \"chart-scatter-bubble\": 57577,\n  \"chart-scatter\": 63470,\n  \"chart-simple-horizontal\": 58484,\n  \"chart-simple\": 58483,\n  \"chart-sine\": 59037,\n  \"chart-tree-map\": 57578,\n  \"chart-user\": 63139,\n  \"chart-waterfall\": 57579,\n  \"check-circle\": 61528,\n  \"check-double\": 62816,\n  \"check-square\": 61770,\n  \"check-to-slot\": 63346,\n  \"check\": 61452,\n  \"cheese-swiss\": 63472,\n  \"cheese\": 63471,\n  \"cheeseburger\": 63473,\n  \"chemex\": 59440,\n  \"cherries\": 57580,\n  \"chess-bishop-alt\": 62523,\n  \"chess-bishop-piece\": 62523,\n  \"chess-bishop\": 62522,\n  \"chess-board\": 62524,\n  \"chess-clock-alt\": 62526,\n  \"chess-clock-flip\": 62526,\n  \"chess-clock\": 62525,\n  \"chess-king-alt\": 62528,\n  \"chess-king-piece\": 62528,\n  \"chess-king\": 62527,\n  \"chess-knight-alt\": 62530,\n  \"chess-knight-piece\": 62530,\n  \"chess-knight\": 62529,\n  \"chess-pawn-alt\": 62532,\n  \"chess-pawn-piece\": 62532,\n  \"chess-pawn\": 62531,\n  \"chess-queen-alt\": 62534,\n  \"chess-queen-piece\": 62534,\n  \"chess-queen\": 62533,\n  \"chess-rook-alt\": 62536,\n  \"chess-rook-piece\": 62536,\n  \"chess-rook\": 62535,\n  \"chess\": 62521,\n  \"chest-drawers\": 59523,\n  \"chestnut\": 58358,\n  \"chevron-circle-down\": 61754,\n  \"chevron-circle-left\": 61751,\n  \"chevron-circle-right\": 61752,\n  \"chevron-circle-up\": 61753,\n  \"chevron-double-down\": 62242,\n  \"chevron-double-left\": 62243,\n  \"chevron-double-right\": 62244,\n  \"chevron-double-up\": 62245,\n  \"chevron-down\": 61560,\n  \"chevron-left\": 61523,\n  \"chevron-right\": 61524,\n  \"chevron-square-down\": 62249,\n  \"chevron-square-left\": 62250,\n  \"chevron-square-right\": 62251,\n  \"chevron-square-up\": 62252,\n  \"chevron-up\": 61559,\n  \"chevrons-down\": 62242,\n  \"chevrons-left\": 62243,\n  \"chevrons-right\": 62244,\n  \"chevrons-up\": 62245,\n  \"chf-sign\": 58882,\n  \"child-combatant\": 58592,\n  \"child-dress\": 58780,\n  \"child-reaching\": 58781,\n  \"child-rifle\": 58592,\n  \"child\": 61870,\n  \"children\": 58593,\n  \"chimney\": 63371,\n  \"chocolate-bar\": 58344,\n  \"chopsticks\": 58359,\n  \"church\": 62749,\n  \"circle-0\": 57581,\n  \"circle-1\": 57582,\n  \"circle-2\": 57583,\n  \"circle-3\": 57584,\n  \"circle-4\": 57585,\n  \"circle-5\": 57586,\n  \"circle-6\": 57587,\n  \"circle-7\": 57588,\n  \"circle-8\": 57589,\n  \"circle-9\": 57590,\n  \"circle-a\": 57591,\n  \"circle-ampersand\": 57592,\n  \"circle-arrow-down-left\": 57593,\n  \"circle-arrow-down-right\": 57594,\n  \"circle-arrow-down\": 61611,\n  \"circle-arrow-left\": 61608,\n  \"circle-arrow-right\": 61609,\n  \"circle-arrow-up-left\": 57595,\n  \"circle-arrow-up-right\": 57596,\n  \"circle-arrow-up\": 61610,\n  \"circle-austral\": 59163,\n  \"circle-australian-dollar\": 59184,\n  \"circle-b\": 57597,\n  \"circle-baht\": 59181,\n  \"circle-bangladeshi-taka\": 59137,\n  \"circle-bitcoin\": 59191,\n  \"circle-bolt\": 57598,\n  \"circle-book-open\": 57599,\n  \"circle-bookmark\": 57600,\n  \"circle-brazilian-real\": 59115,\n  \"circle-c\": 57601,\n  \"circle-calendar\": 57602,\n  \"circle-camera\": 57603,\n  \"circle-caret-down\": 62253,\n  \"circle-caret-left\": 62254,\n  \"circle-caret-right\": 62256,\n  \"circle-caret-up\": 62257,\n  \"circle-cedi\": 59202,\n  \"circle-cent\": 59178,\n  \"circle-check\": 61528,\n  \"circle-chevron-down\": 61754,\n  \"circle-chevron-left\": 61751,\n  \"circle-chevron-right\": 61752,\n  \"circle-chevron-up\": 61753,\n  \"circle-chf\": 59180,\n  \"circle-colon\": 59132,\n  \"circle-cruzeiro\": 59170,\n  \"circle-currency\": 59118,\n  \"circle-d\": 57604,\n  \"circle-danish-krone\": 59206,\n  \"circle-dashed\": 57605,\n  \"circle-divide\": 57606,\n  \"circle-dollar-to-slot\": 62649,\n  \"circle-dollar\": 62184,\n  \"circle-dong\": 59171,\n  \"circle-dot\": 61842,\n  \"circle-down-left\": 57607,\n  \"circle-down-right\": 57608,\n  \"circle-down\": 62296,\n  \"circle-e\": 57609,\n  \"circle-ellipsis-vertical\": 57611,\n  \"circle-ellipsis\": 57610,\n  \"circle-envelope\": 57612,\n  \"circle-equals\": 59057,\n  \"circle-euro\": 58830,\n  \"circle-eurozone\": 59205,\n  \"circle-exclamation-check\": 57613,\n  \"circle-exclamation\": 61546,\n  \"circle-f\": 57614,\n  \"circle-florin\": 59108,\n  \"circle-franc\": 59169,\n  \"circle-g\": 57615,\n  \"circle-gf\": 59007,\n  \"circle-guarani\": 59195,\n  \"circle-h\": 62590,\n  \"circle-half-horizontal\": 59404,\n  \"circle-half-stroke-horizontal\": 59405,\n  \"circle-half-stroke\": 61506,\n  \"circle-half\": 57616,\n  \"circle-heart\": 62663,\n  \"circle-house\": 59080,\n  \"circle-hryvnia\": 59119,\n  \"circle-i\": 57617,\n  \"circle-indian-rupee\": 59188,\n  \"circle-info\": 61530,\n  \"circle-j\": 57618,\n  \"circle-k\": 57619,\n  \"circle-kip\": 59133,\n  \"circle-l\": 57620,\n  \"circle-lari\": 59165,\n  \"circle-left\": 62297,\n  \"circle-lira\": 59126,\n  \"circle-litecoin\": 59124,\n  \"circle-location-arrow\": 62978,\n  \"circle-m\": 57621,\n  \"circle-malaysian-ringgit\": 59129,\n  \"circle-manat\": 59131,\n  \"circle-microphone-lines\": 57623,\n  \"circle-microphone\": 57622,\n  \"circle-mill\": 59138,\n  \"circle-minus\": 61526,\n  \"circle-moon\": 59360,\n  \"circle-n\": 57624,\n  \"circle-naira\": 59209,\n  \"circle-nodes\": 58594,\n  \"circle-norwegian-krone\": 59192,\n  \"circle-notch\": 61902,\n  \"circle-o\": 57625,\n  \"circle-p\": 57626,\n  \"circle-parking\": 62997,\n  \"circle-pause\": 62091,\n  \"circle-peruvian-soles\": 59123,\n  \"circle-peseta\": 59201,\n  \"circle-peso\": 59135,\n  \"circle-phone-flip\": 57628,\n  \"circle-phone-hangup\": 57629,\n  \"circle-phone\": 57627,\n  \"circle-play\": 61764,\n  \"circle-plus\": 61525,\n  \"circle-polish-zloty\": 59136,\n  \"circle-q\": 57630,\n  \"circle-quarter-stroke\": 58835,\n  \"circle-quarter\": 57631,\n  \"circle-quarters\": 58360,\n  \"circle-question\": 61529,\n  \"circle-r\": 57632,\n  \"circle-radiation\": 63418,\n  \"circle-renminbi\": 59113,\n  \"circle-right\": 62298,\n  \"circle-ruble\": 59109,\n  \"circle-rupee\": 59156,\n  \"circle-rupiah\": 59142,\n  \"circle-s\": 57633,\n  \"circle-share-nodes\": 59099,\n  \"circle-shekel\": 59139,\n  \"circle-small\": 57634,\n  \"circle-sort-down\": 57393,\n  \"circle-sort-up\": 57394,\n  \"circle-sort\": 57392,\n  \"circle-star\": 57635,\n  \"circle-sterling\": 58831,\n  \"circle-stop\": 62093,\n  \"circle-swedish-krona\": 59203,\n  \"circle-t\": 57636,\n  \"circle-tenge\": 59173,\n  \"circle-three-quarters-stroke\": 58836,\n  \"circle-three-quarters\": 57637,\n  \"circle-trash\": 57638,\n  \"circle-tugrik\": 59153,\n  \"circle-turkish-lira\": 59193,\n  \"circle-u\": 57639,\n  \"circle-up-left\": 57640,\n  \"circle-up-right\": 57641,\n  \"circle-up\": 62299,\n  \"circle-user-circle-check\": 59295,\n  \"circle-user-circle-exclamation\": 59296,\n  \"circle-user-circle-minus\": 59297,\n  \"circle-user-circle-moon\": 59298,\n  \"circle-user-circle-plus\": 59299,\n  \"circle-user-circle-question\": 59300,\n  \"circle-user-circle-user\": 59301,\n  \"circle-user-circle-xmark\": 59302,\n  \"circle-user-clock\": 59303,\n  \"circle-user\": 62141,\n  \"circle-v\": 57642,\n  \"circle-video\": 57643,\n  \"circle-w\": 57644,\n  \"circle-waveform-lines\": 57645,\n  \"circle-wifi-circle-wifi\": 59006,\n  \"circle-wifi-group\": 59006,\n  \"circle-wifi\": 59005,\n  \"circle-won\": 59116,\n  \"circle-x\": 57646,\n  \"circle-xmark\": 61527,\n  \"circle-y\": 57647,\n  \"circle-yen\": 58832,\n  \"circle-z\": 57648,\n  \"circle\": 61713,\n  \"circleapore-dollar\": 59166,\n  \"circles-overlap-3\": 59041,\n  \"circles-overlap\": 58880,\n  \"citrus-slice\": 58101,\n  \"citrus\": 58100,\n  \"city\": 63055,\n  \"clapperboard-play\": 57650,\n  \"clapperboard\": 57649,\n  \"clarinet\": 63661,\n  \"claw-marks\": 63170,\n  \"clinic-medical\": 63474,\n  \"clipboard-check\": 62572,\n  \"clipboard-clock\": 59222,\n  \"clipboard-exclamation\": 59223,\n  \"clipboard-list-check\": 63287,\n  \"clipboard-list\": 62573,\n  \"clipboard-medical\": 57651,\n  \"clipboard-prescription\": 62952,\n  \"clipboard-question\": 58595,\n  \"clipboard-user\": 63475,\n  \"clipboard\": 62248,\n  \"clock-desk\": 57652,\n  \"clock-eight-thirty\": 58182,\n  \"clock-eight\": 58181,\n  \"clock-eleven-thirty\": 58184,\n  \"clock-eleven\": 58183,\n  \"clock-five-thirty\": 58186,\n  \"clock-five\": 58185,\n  \"clock-four-thirty\": 58187,\n  \"clock-four\": 61463,\n  \"clock-nine-thirty\": 58189,\n  \"clock-nine\": 58188,\n  \"clock-one-thirty\": 58191,\n  \"clock-one\": 58190,\n  \"clock-rotate-left\": 61914,\n  \"clock-seven-thirty\": 58193,\n  \"clock-seven\": 58192,\n  \"clock-six-thirty\": 58195,\n  \"clock-six\": 58194,\n  \"clock-ten-thirty\": 58197,\n  \"clock-ten\": 58196,\n  \"clock-three-thirty\": 58199,\n  \"clock-three\": 58198,\n  \"clock-twelve-thirty\": 58201,\n  \"clock-twelve\": 58200,\n  \"clock-two-thirty\": 58203,\n  \"clock-two\": 58202,\n  \"clock\": 61463,\n  \"clone-plus\": 59212,\n  \"clone\": 62029,\n  \"close\": 61453,\n  \"closed-captioning-slash\": 57653,\n  \"closed-captioning\": 61962,\n  \"clothes-hanger\": 57654,\n  \"cloud-arrow-down\": 61677,\n  \"cloud-arrow-up\": 61678,\n  \"cloud-binary\": 58881,\n  \"cloud-bolt-moon\": 63341,\n  \"cloud-bolt-sun\": 63342,\n  \"cloud-bolt\": 63340,\n  \"cloud-check\": 58204,\n  \"cloud-download-alt\": 61677,\n  \"cloud-download\": 61677,\n  \"cloud-drizzle\": 63288,\n  \"cloud-exclamation\": 58513,\n  \"cloud-fog\": 63310,\n  \"cloud-hail-mixed\": 63290,\n  \"cloud-hail\": 63289,\n  \"cloud-meatball\": 63291,\n  \"cloud-minus\": 58205,\n  \"cloud-moon-rain\": 63292,\n  \"cloud-moon\": 63171,\n  \"cloud-music\": 63662,\n  \"cloud-plus\": 58206,\n  \"cloud-question\": 58514,\n  \"cloud-rain\": 63293,\n  \"cloud-rainbow\": 63294,\n  \"cloud-showers-heavy\": 63296,\n  \"cloud-showers-water\": 58596,\n  \"cloud-showers\": 63295,\n  \"cloud-slash\": 57655,\n  \"cloud-sleet\": 63297,\n  \"cloud-snow\": 63298,\n  \"cloud-sun-rain\": 63299,\n  \"cloud-sun\": 63172,\n  \"cloud-upload-alt\": 61678,\n  \"cloud-upload\": 61678,\n  \"cloud-word\": 57656,\n  \"cloud-xmark\": 58207,\n  \"cloud\": 61634,\n  \"clouds-moon\": 63301,\n  \"clouds-sun\": 63302,\n  \"clouds\": 63300,\n  \"clover\": 57657,\n  \"club\": 62247,\n  \"cny\": 61783,\n  \"cocktail\": 62817,\n  \"coconut\": 58102,\n  \"code-branch\": 61734,\n  \"code-commit\": 62342,\n  \"code-compare\": 57658,\n  \"code-fork\": 57659,\n  \"code-merge\": 62343,\n  \"code-pull-request-closed\": 58361,\n  \"code-pull-request-draft\": 58362,\n  \"code-pull-request\": 57660,\n  \"code-simple\": 57661,\n  \"code\": 61729,\n  \"coffee-bean\": 57662,\n  \"coffee-beans\": 57663,\n  \"coffee-pot\": 57346,\n  \"coffee-togo\": 63173,\n  \"coffee\": 61684,\n  \"coffin-cross\": 57425,\n  \"coffin\": 63174,\n  \"cog\": 61459,\n  \"cogs\": 61573,\n  \"coin-blank\": 58363,\n  \"coin-front\": 58364,\n  \"coin-vertical\": 58365,\n  \"coin\": 63580,\n  \"coins\": 62750,\n  \"colon-sign\": 57664,\n  \"colon\": 58,\n  \"columns-3\": 58209,\n  \"columns\": 61659,\n  \"comet\": 57347,\n  \"comma\": 44,\n  \"command\": 57666,\n  \"comment-alt-arrow-down\": 57819,\n  \"comment-alt-arrow-up\": 57820,\n  \"comment-alt-captions\": 57822,\n  \"comment-alt-check\": 62626,\n  \"comment-alt-dollar\": 63056,\n  \"comment-alt-dots\": 62627,\n  \"comment-alt-edit\": 62628,\n  \"comment-alt-exclamation\": 62629,\n  \"comment-alt-image\": 57824,\n  \"comment-alt-lines\": 62630,\n  \"comment-alt-medical\": 63476,\n  \"comment-alt-minus\": 62631,\n  \"comment-alt-music\": 63663,\n  \"comment-alt-plus\": 62632,\n  \"comment-alt-quote\": 57828,\n  \"comment-alt-slash\": 62633,\n  \"comment-alt-smile\": 62634,\n  \"comment-alt-text\": 57830,\n  \"comment-alt-times\": 62635,\n  \"comment-alt\": 62074,\n  \"comment-arrow-down\": 57667,\n  \"comment-arrow-up-right\": 57669,\n  \"comment-arrow-up\": 57668,\n  \"comment-captions\": 57670,\n  \"comment-check\": 62636,\n  \"comment-code\": 57671,\n  \"comment-dollar\": 63057,\n  \"comment-dot\": 59100,\n  \"comment-dots\": 62637,\n  \"comment-edit\": 62638,\n  \"comment-exclamation\": 62639,\n  \"comment-heart\": 58824,\n  \"comment-image\": 57672,\n  \"comment-lines\": 62640,\n  \"comment-medical\": 63477,\n  \"comment-middle-alt\": 57825,\n  \"comment-middle-top-alt\": 57826,\n  \"comment-middle-top\": 57674,\n  \"comment-middle\": 57673,\n  \"comment-minus\": 62641,\n  \"comment-music\": 63664,\n  \"comment-nodes\": 59030,\n  \"comment-pen\": 62638,\n  \"comment-plus\": 62642,\n  \"comment-question\": 57675,\n  \"comment-quote\": 57676,\n  \"comment-slash\": 62643,\n  \"comment-smile\": 62644,\n  \"comment-sms\": 63437,\n  \"comment-text\": 57677,\n  \"comment-times\": 62645,\n  \"comment-waveform\": 59101,\n  \"comment-xmark\": 62645,\n  \"comment\": 61557,\n  \"commenting\": 62637,\n  \"comments-alt-dollar\": 63058,\n  \"comments-alt\": 62646,\n  \"comments-dollar\": 63059,\n  \"comments-question-check\": 57679,\n  \"comments-question\": 57678,\n  \"comments\": 61574,\n  \"compact-disc\": 62751,\n  \"compass-drafting\": 62824,\n  \"compass-slash\": 62953,\n  \"compass\": 61774,\n  \"compress-alt\": 62498,\n  \"compress-arrows-alt\": 63372,\n  \"compress-arrows\": 57509,\n  \"compress-wide\": 62246,\n  \"compress\": 61542,\n  \"computer-classic\": 63665,\n  \"computer-mouse-button-left\": 59341,\n  \"computer-mouse-button-right\": 59342,\n  \"computer-mouse-scrollwheel\": 63693,\n  \"computer-mouse\": 63692,\n  \"computer-speaker\": 63666,\n  \"computer\": 58597,\n  \"concierge-bell\": 62818,\n  \"construction\": 63581,\n  \"contact-book\": 62137,\n  \"contact-card\": 62139,\n  \"container-storage\": 62647,\n  \"conveyor-belt-alt\": 62575,\n  \"conveyor-belt-arm\": 58872,\n  \"conveyor-belt-boxes\": 62575,\n  \"conveyor-belt-empty\": 57680,\n  \"conveyor-belt\": 62574,\n  \"cookie-bite\": 62820,\n  \"cookie\": 62819,\n  \"copy\": 61637,\n  \"copyright\": 61945,\n  \"corn\": 63175,\n  \"corner\": 58366,\n  \"couch-small\": 62668,\n  \"couch\": 62648,\n  \"court-sport\": 58947,\n  \"cow\": 63176,\n  \"cowbell-circle-plus\": 63668,\n  \"cowbell-more\": 63668,\n  \"cowbell\": 63667,\n  \"crab\": 58367,\n  \"crate-apple\": 63153,\n  \"crate-empty\": 57681,\n  \"credit-card-alt\": 61597,\n  \"credit-card-blank\": 62345,\n  \"credit-card-front\": 62346,\n  \"credit-card\": 61597,\n  \"creemee\": 58368,\n  \"cricket-bat-ball\": 62537,\n  \"cricket\": 62537,\n  \"croissant\": 63478,\n  \"crop-alt\": 62821,\n  \"crop-simple\": 62821,\n  \"crop\": 61733,\n  \"cross\": 63060,\n  \"crosshairs-simple\": 58783,\n  \"crosshairs\": 61531,\n  \"crow\": 62752,\n  \"crown\": 62753,\n  \"crutch\": 63479,\n  \"crutches\": 63480,\n  \"cruzeiro-sign\": 57682,\n  \"crystal-ball\": 58210,\n  \"cube\": 61874,\n  \"cubes-stacked\": 58598,\n  \"cubes\": 61875,\n  \"cucumber\": 58369,\n  \"cup-straw-swoosh\": 58212,\n  \"cup-straw\": 58211,\n  \"cup-togo\": 63173,\n  \"cupcake\": 58370,\n  \"curling-stone\": 62538,\n  \"curling\": 62538,\n  \"currency-sign\": 59179,\n  \"custard\": 58371,\n  \"cut\": 61636,\n  \"cutlery\": 62183,\n  \"d\": 68,\n  \"dagger\": 63179,\n  \"danish-krone-sign\": 59168,\n  \"dash\": 58372,\n  \"dashboard\": 63012,\n  \"database\": 61888,\n  \"deaf\": 62116,\n  \"deafness\": 62116,\n  \"debug\": 63481,\n  \"dedent\": 61499,\n  \"deer-rudolph\": 63375,\n  \"deer\": 63374,\n  \"delete-left\": 62810,\n  \"delete-right\": 57684,\n  \"democrat\": 63303,\n  \"desk\": 59518,\n  \"desktop-alt\": 62352,\n  \"desktop-arrow-down\": 57685,\n  \"desktop-code\": 57701,\n  \"desktop-medical\": 57702,\n  \"desktop-slash\": 58106,\n  \"desktop\": 62352,\n  \"dewpoint\": 63304,\n  \"dharmachakra\": 63061,\n  \"diagnoses\": 62576,\n  \"diagram-cells\": 58485,\n  \"diagram-lean-canvas\": 57686,\n  \"diagram-nested\": 57687,\n  \"diagram-next\": 58486,\n  \"diagram-predecessor\": 58487,\n  \"diagram-previous\": 58488,\n  \"diagram-project\": 62786,\n  \"diagram-sankey\": 57688,\n  \"diagram-subtask\": 58489,\n  \"diagram-successor\": 58490,\n  \"diagram-venn\": 57690,\n  \"dial-high\": 57692,\n  \"dial-low\": 57693,\n  \"dial-max\": 57694,\n  \"dial-med-high\": 57691,\n  \"dial-med-low\": 57696,\n  \"dial-med\": 57695,\n  \"dial-min\": 57697,\n  \"dial-off\": 57698,\n  \"dial\": 57691,\n  \"dialpad\": 59340,\n  \"diamond-exclamation\": 58373,\n  \"diamond-half-stroke\": 58808,\n  \"diamond-half\": 58807,\n  \"diamond-turn-right\": 62955,\n  \"diamond\": 61977,\n  \"diamonds-4\": 59019,\n  \"dice-d10\": 63181,\n  \"dice-d12\": 63182,\n  \"dice-d20\": 63183,\n  \"dice-d4\": 63184,\n  \"dice-d6\": 63185,\n  \"dice-d8\": 63186,\n  \"dice-five\": 62755,\n  \"dice-four\": 62756,\n  \"dice-one\": 62757,\n  \"dice-six\": 62758,\n  \"dice-three\": 62759,\n  \"dice-two\": 62760,\n  \"dice\": 62754,\n  \"digging\": 63582,\n  \"digital-tachograph\": 62822,\n  \"dinosaur\": 58878,\n  \"diploma\": 62954,\n  \"direction-left-right\": 59070,\n  \"direction-up-down\": 59071,\n  \"directions\": 62955,\n  \"disc-drive\": 63669,\n  \"disease\": 63482,\n  \"display-arrow-down\": 57700,\n  \"display-chart-up-circle-currency\": 58853,\n  \"display-chart-up-circle-dollar\": 58854,\n  \"display-chart-up\": 58851,\n  \"display-code\": 57701,\n  \"display-medical\": 57702,\n  \"display-slash\": 58106,\n  \"display\": 57699,\n  \"distribute-spacing-horizontal\": 58213,\n  \"distribute-spacing-vertical\": 58214,\n  \"ditto\": 34,\n  \"divide\": 62761,\n  \"dizzy\": 62823,\n  \"dna\": 62577,\n  \"do-not-enter\": 62956,\n  \"dog-leashed\": 63188,\n  \"dog\": 63187,\n  \"dollar-circle\": 62184,\n  \"dollar-sign\": 36,\n  \"dollar-square\": 62185,\n  \"dollar\": 36,\n  \"dolly-box\": 62578,\n  \"dolly-empty\": 62579,\n  \"dolly-flatbed-alt\": 62581,\n  \"dolly-flatbed-empty\": 62582,\n  \"dolly-flatbed\": 62580,\n  \"dolly\": 62578,\n  \"dolphin\": 57704,\n  \"donate\": 62649,\n  \"dong-sign\": 57705,\n  \"donut\": 58374,\n  \"door-closed\": 62762,\n  \"door-open\": 62763,\n  \"dot-circle\": 61842,\n  \"dot\": 59345,\n  \"doughnut\": 58374,\n  \"dove\": 62650,\n  \"down-from-bracket\": 58987,\n  \"down-from-dotted-line\": 58375,\n  \"down-from-line\": 62281,\n  \"down-left-and-up-right-to-center\": 62498,\n  \"down-left\": 57706,\n  \"down-long-to-line\": 59072,\n  \"down-long\": 62217,\n  \"down-right\": 57707,\n  \"down-to-bracket\": 58599,\n  \"down-to-dotted-line\": 58376,\n  \"down-to-line\": 62282,\n  \"down-up\": 59073,\n  \"down\": 62292,\n  \"download\": 61465,\n  \"drafting-compass\": 62824,\n  \"dragon\": 63189,\n  \"draw-circle\": 62957,\n  \"draw-polygon\": 62958,\n  \"draw-square\": 62959,\n  \"dreidel\": 63378,\n  \"dress\": 59089,\n  \"dresser\": 59519,\n  \"drivers-license\": 62146,\n  \"drone-alt\": 63584,\n  \"drone-front\": 63584,\n  \"drone\": 63583,\n  \"droplet-degree\": 63304,\n  \"droplet-percent\": 63312,\n  \"droplet-plus\": 59392,\n  \"droplet-slash\": 62919,\n  \"droplet\": 61507,\n  \"drum-steelpan\": 62826,\n  \"drum\": 62825,\n  \"drumstick-bite\": 63191,\n  \"drumstick\": 63190,\n  \"dryer-alt\": 63586,\n  \"dryer-heat\": 63586,\n  \"dryer\": 63585,\n  \"duck\": 63192,\n  \"dumbbell\": 62539,\n  \"dumpster-fire\": 63380,\n  \"dumpster\": 63379,\n  \"dungeon\": 63193,\n  \"e\": 69,\n  \"ear-circle-checkmark\": 59227,\n  \"ear-deaf\": 62116,\n  \"ear-listen\": 62114,\n  \"ear-muffs\": 63381,\n  \"ear-triangle-exclamation\": 59228,\n  \"ear-waveform\": 59229,\n  \"ear\": 62960,\n  \"earth-africa\": 62844,\n  \"earth-america\": 62845,\n  \"earth-americas\": 62845,\n  \"earth-asia\": 62846,\n  \"earth-europe\": 63394,\n  \"earth-oceania\": 58491,\n  \"earth\": 62845,\n  \"eclipse-alt\": 63306,\n  \"eclipse\": 63305,\n  \"edit\": 61508,\n  \"egg-fried\": 63484,\n  \"egg\": 63483,\n  \"eggplant\": 57708,\n  \"eject\": 61522,\n  \"elephant\": 63194,\n  \"elevator\": 57709,\n  \"ellipsis-h-alt\": 62363,\n  \"ellipsis-h\": 61761,\n  \"ellipsis-stroke-vertical\": 62364,\n  \"ellipsis-stroke\": 62363,\n  \"ellipsis-v-alt\": 62364,\n  \"ellipsis-v\": 61762,\n  \"ellipsis-vertical\": 61762,\n  \"ellipsis\": 61761,\n  \"empty-set\": 63062,\n  \"engine-exclamation\": 62962,\n  \"engine-warning\": 62962,\n  \"engine\": 57710,\n  \"envelope-badge\": 57711,\n  \"envelope-certificate\": 59433,\n  \"envelope-circle-check\": 58600,\n  \"envelope-circle-user\": 59102,\n  \"envelope-circle\": 57612,\n  \"envelope-dot\": 57711,\n  \"envelope-open-dollar\": 63063,\n  \"envelope-open-text\": 63064,\n  \"envelope-open\": 62134,\n  \"envelope-ribbon\": 59433,\n  \"envelope-square\": 61849,\n  \"envelope\": 61664,\n  \"envelopes-bulk\": 63092,\n  \"envelopes\": 57712,\n  \"equals\": 61,\n  \"eraser\": 61741,\n  \"escalator\": 57713,\n  \"ethernet\": 63382,\n  \"eur\": 61779,\n  \"euro-sign\": 61779,\n  \"euro\": 61779,\n  \"eurozone-sign\": 59200,\n  \"excavator\": 58966,\n  \"exchange-alt\": 62306,\n  \"exchange\": 61676,\n  \"exclamation-circle\": 61546,\n  \"exclamation-square\": 62241,\n  \"exclamation-triangle\": 61553,\n  \"exclamation\": 33,\n  \"expand-alt\": 62500,\n  \"expand-arrows-alt\": 62238,\n  \"expand-arrows\": 62237,\n  \"expand-wide\": 62240,\n  \"expand\": 61541,\n  \"exploding-head\": 58110,\n  \"explosion\": 58601,\n  \"external-link-alt\": 62301,\n  \"external-link-square-alt\": 62304,\n  \"external-link-square\": 61772,\n  \"external-link\": 61582,\n  \"eye-closed\": 59451,\n  \"eye-dropper-empty\": 61947,\n  \"eye-dropper-full\": 57714,\n  \"eye-dropper-half\": 57715,\n  \"eye-dropper\": 61947,\n  \"eye-evil\": 63195,\n  \"eye-low-vision\": 62120,\n  \"eye-slash\": 61552,\n  \"eye\": 61550,\n  \"eyedropper\": 61947,\n  \"eyes\": 58215,\n  \"f\": 70,\n  \"face-angry-horns\": 58216,\n  \"face-angry\": 62806,\n  \"face-anguished\": 58217,\n  \"face-anxious-sweat\": 58218,\n  \"face-astonished\": 58219,\n  \"face-awesome\": 58377,\n  \"face-beam-hand-over-mouth\": 58492,\n  \"face-clouds\": 58493,\n  \"face-confounded\": 58220,\n  \"face-confused\": 58221,\n  \"face-cowboy-hat\": 58222,\n  \"face-diagonal-mouth\": 58494,\n  \"face-disappointed\": 58223,\n  \"face-disguise\": 58224,\n  \"face-dizzy\": 62823,\n  \"face-dotted\": 58495,\n  \"face-downcast-sweat\": 58225,\n  \"face-drooling\": 58226,\n  \"face-exhaling\": 58496,\n  \"face-explode\": 58110,\n  \"face-expressionless\": 58227,\n  \"face-eyes-xmarks\": 58228,\n  \"face-fearful\": 58229,\n  \"face-flushed\": 62841,\n  \"face-frown-open\": 62842,\n  \"face-frown-slight\": 58230,\n  \"face-frown\": 61721,\n  \"face-glasses\": 58231,\n  \"face-grimace\": 62847,\n  \"face-grin-beam-sweat\": 62851,\n  \"face-grin-beam\": 62850,\n  \"face-grin-hearts\": 62852,\n  \"face-grin-squint-tears\": 62854,\n  \"face-grin-squint\": 62853,\n  \"face-grin-stars\": 62855,\n  \"face-grin-tears\": 62856,\n  \"face-grin-tongue-squint\": 62858,\n  \"face-grin-tongue-wink\": 62859,\n  \"face-grin-tongue\": 62857,\n  \"face-grin-wide\": 62849,\n  \"face-grin-wink\": 62860,\n  \"face-grin\": 62848,\n  \"face-hand-over-mouth\": 58232,\n  \"face-hand-peeking\": 58497,\n  \"face-hand-yawn\": 58233,\n  \"face-head-bandage\": 58234,\n  \"face-holding-back-tears\": 58498,\n  \"face-hushed\": 58235,\n  \"face-icicles\": 58236,\n  \"face-kiss-beam\": 62871,\n  \"face-kiss-closed-eyes\": 58237,\n  \"face-kiss-wink-heart\": 62872,\n  \"face-kiss\": 62870,\n  \"face-laugh-beam\": 62874,\n  \"face-laugh-squint\": 62875,\n  \"face-laugh-wink\": 62876,\n  \"face-laugh\": 62873,\n  \"face-lying\": 58238,\n  \"face-mask\": 58239,\n  \"face-meh-blank\": 62884,\n  \"face-meh\": 61722,\n  \"face-melting\": 58499,\n  \"face-monocle\": 58240,\n  \"face-nauseated\": 58241,\n  \"face-nose-steam\": 58242,\n  \"face-party\": 58243,\n  \"face-pensive\": 58244,\n  \"face-persevering\": 58245,\n  \"face-pleading\": 58246,\n  \"face-pouting\": 58247,\n  \"face-raised-eyebrow\": 58248,\n  \"face-relieved\": 58249,\n  \"face-rolling-eyes\": 62885,\n  \"face-sad-cry\": 62899,\n  \"face-sad-sweat\": 58250,\n  \"face-sad-tear\": 62900,\n  \"face-saluting\": 58500,\n  \"face-scream\": 58251,\n  \"face-shaking-horizontal\": 59293,\n  \"face-shaking-vertical\": 59294,\n  \"face-shaking\": 59292,\n  \"face-shush\": 58252,\n  \"face-sleeping\": 58253,\n  \"face-sleepy\": 58254,\n  \"face-smile-beam\": 62904,\n  \"face-smile-halo\": 58255,\n  \"face-smile-hearts\": 58256,\n  \"face-smile-horns\": 58257,\n  \"face-smile-plus\": 62905,\n  \"face-smile-relaxed\": 58258,\n  \"face-smile-tear\": 58259,\n  \"face-smile-tongue\": 58260,\n  \"face-smile-upside-down\": 58261,\n  \"face-smile-wink\": 62682,\n  \"face-smile\": 61720,\n  \"face-smiling-hands\": 58262,\n  \"face-smirking\": 58263,\n  \"face-spiral-eyes\": 58501,\n  \"face-sunglasses\": 58264,\n  \"face-surprise\": 62914,\n  \"face-swear\": 58265,\n  \"face-thermometer\": 58266,\n  \"face-thinking\": 58267,\n  \"face-tired\": 62920,\n  \"face-tissue\": 58268,\n  \"face-tongue-money\": 58269,\n  \"face-tongue-sweat\": 58270,\n  \"face-unamused\": 58271,\n  \"face-viewfinder\": 58111,\n  \"face-vomit\": 58272,\n  \"face-weary\": 58273,\n  \"face-woozy\": 58274,\n  \"face-worried\": 58275,\n  \"face-zany\": 58276,\n  \"face-zipper\": 58277,\n  \"falafel\": 58378,\n  \"family-dress\": 58113,\n  \"family-pants\": 58114,\n  \"family\": 58112,\n  \"fan-table\": 57348,\n  \"fan\": 63587,\n  \"farm\": 63588,\n  \"fast-backward\": 61513,\n  \"fast-forward\": 61520,\n  \"faucet-drip\": 57350,\n  \"faucet\": 57349,\n  \"fax\": 61868,\n  \"feather-alt\": 62827,\n  \"feather-pointed\": 62827,\n  \"feather\": 62765,\n  \"feed\": 61598,\n  \"female\": 61826,\n  \"fence\": 58115,\n  \"ferris-wheel\": 57716,\n  \"ferry\": 58602,\n  \"field-hockey-stick-ball\": 62540,\n  \"field-hockey\": 62540,\n  \"fighter-jet\": 61691,\n  \"file-aiff\": 59387,\n  \"file-alt\": 61788,\n  \"file-archive\": 61894,\n  \"file-arrow-down\": 62829,\n  \"file-arrow-up\": 62836,\n  \"file-audio\": 61895,\n  \"file-award\": 62963,\n  \"file-ban\": 59224,\n  \"file-binary\": 57717,\n  \"file-brackets-curly\": 59396,\n  \"file-cad\": 58994,\n  \"file-caret-down\": 58409,\n  \"file-caret-up\": 58410,\n  \"file-certificate\": 62963,\n  \"file-chart-column\": 63065,\n  \"file-chart-line\": 63065,\n  \"file-chart-pie\": 63066,\n  \"file-check\": 62230,\n  \"file-circle-check\": 58784,\n  \"file-circle-exclamation\": 58603,\n  \"file-circle-info\": 58515,\n  \"file-circle-minus\": 58605,\n  \"file-circle-plus\": 58516,\n  \"file-circle-question\": 58607,\n  \"file-circle-xmark\": 58785,\n  \"file-clipboard\": 61674,\n  \"file-code\": 61897,\n  \"file-contract\": 62828,\n  \"file-css\": 59452,\n  \"file-csv\": 63197,\n  \"file-dashed-line\": 63607,\n  \"file-doc\": 58861,\n  \"file-download\": 62829,\n  \"file-edit\": 62236,\n  \"file-eps\": 58948,\n  \"file-excel\": 61891,\n  \"file-exclamation\": 62234,\n  \"file-export\": 62830,\n  \"file-fragment\": 59031,\n  \"file-gif\": 58949,\n  \"file-half-dashed\": 59032,\n  \"file-heart\": 57718,\n  \"file-html\": 59453,\n  \"file-icns\": 59457,\n  \"file-image\": 61893,\n  \"file-import\": 62831,\n  \"file-invoice-dollar\": 62833,\n  \"file-invoice\": 62832,\n  \"file-jpg\": 58950,\n  \"file-js\": 59454,\n  \"file-lines\": 61788,\n  \"file-lock\": 58278,\n  \"file-magnifying-glass\": 63589,\n  \"file-medical-alt\": 62584,\n  \"file-medical\": 62583,\n  \"file-midi\": 59397,\n  \"file-minus\": 62232,\n  \"file-mov\": 58951,\n  \"file-mp3\": 58952,\n  \"file-mp4\": 58953,\n  \"file-music\": 63670,\n  \"file-odf\": 59388,\n  \"file-pdf\": 61889,\n  \"file-pen\": 62236,\n  \"file-plus-minus\": 57719,\n  \"file-plus\": 62233,\n  \"file-png\": 58982,\n  \"file-powerpoint\": 61892,\n  \"file-ppt\": 58954,\n  \"file-prescription\": 62834,\n  \"file-search\": 63589,\n  \"file-shield\": 58608,\n  \"file-signature\": 62835,\n  \"file-slash\": 58279,\n  \"file-spreadsheet\": 63067,\n  \"file-svg\": 58955,\n  \"file-tex\": 59389,\n  \"file-text\": 61788,\n  \"file-times\": 62231,\n  \"file-upload\": 62836,\n  \"file-user\": 63068,\n  \"file-vector\": 58956,\n  \"file-video\": 61896,\n  \"file-wav\": 59390,\n  \"file-waveform\": 62584,\n  \"file-word\": 61890,\n  \"file-xls\": 58957,\n  \"file-xmark\": 62231,\n  \"file-xml\": 58964,\n  \"file-zip\": 58862,\n  \"file-zipper\": 61894,\n  \"file\": 61787,\n  \"files-medical\": 63485,\n  \"files\": 57720,\n  \"fill-drip\": 62838,\n  \"fill\": 62837,\n  \"film-alt\": 61448,\n  \"film-canister\": 63671,\n  \"film-cannister\": 63671,\n  \"film-music\": 59241,\n  \"film-simple\": 61448,\n  \"film-slash\": 57721,\n  \"film-stack\": 59243,\n  \"film\": 61448,\n  \"films\": 57722,\n  \"filter-circle-dollar\": 63074,\n  \"filter-circle-xmark\": 57723,\n  \"filter-list\": 57724,\n  \"filter-slash\": 57725,\n  \"filter\": 61616,\n  \"filters\": 57726,\n  \"fingerprint\": 62839,\n  \"fire-alt\": 63460,\n  \"fire-burner\": 58609,\n  \"fire-extinguisher\": 61748,\n  \"fire-flame-curved\": 63460,\n  \"fire-flame-simple\": 62570,\n  \"fire-flame\": 63199,\n  \"fire-hydrant\": 57727,\n  \"fire-smoke\": 63307,\n  \"fire\": 61549,\n  \"fireplace\": 63386,\n  \"firewall\": 58332,\n  \"first-aid\": 62585,\n  \"fish-bones\": 58116,\n  \"fish-cooked\": 63486,\n  \"fish-fins\": 58610,\n  \"fish\": 62840,\n  \"fishing-rod\": 58280,\n  \"fist-raised\": 63198,\n  \"flag-alt\": 63308,\n  \"flag-checkered\": 61726,\n  \"flag-pennant\": 62550,\n  \"flag-swallowtail\": 63308,\n  \"flag-usa\": 63309,\n  \"flag\": 61476,\n  \"flame\": 63199,\n  \"flashlight\": 63672,\n  \"flask-gear\": 58865,\n  \"flask-poison\": 63200,\n  \"flask-potion\": 63201,\n  \"flask-round-poison\": 63200,\n  \"flask-round-potion\": 63201,\n  \"flask-vial\": 58611,\n  \"flask\": 61635,\n  \"flatbread-stuffed\": 58380,\n  \"flatbread\": 58379,\n  \"floppy-disk-circle-arrow-right\": 57728,\n  \"floppy-disk-circle-xmark\": 57729,\n  \"floppy-disk-pen\": 57730,\n  \"floppy-disk-times\": 57729,\n  \"floppy-disk\": 61639,\n  \"floppy-disks\": 57731,\n  \"florin-sign\": 57732,\n  \"flower-daffodil\": 63488,\n  \"flower-tulip\": 63489,\n  \"flower\": 63487,\n  \"flushed\": 62841,\n  \"flute\": 63673,\n  \"flux-capacitor\": 63674,\n  \"flying-disc\": 58281,\n  \"fog\": 63310,\n  \"folder-arrow-down\": 57427,\n  \"folder-arrow-left\": 59346,\n  \"folder-arrow-right\": 59347,\n  \"folder-arrow-up\": 57428,\n  \"folder-blank\": 61563,\n  \"folder-bookmark\": 57734,\n  \"folder-check\": 58958,\n  \"folder-closed\": 57733,\n  \"folder-cog\": 57735,\n  \"folder-download\": 57427,\n  \"folder-gear\": 57735,\n  \"folder-grid\": 57736,\n  \"folder-heart\": 57737,\n  \"folder-image\": 57738,\n  \"folder-magnifying-glass\": 57739,\n  \"folder-medical\": 57740,\n  \"folder-minus\": 63069,\n  \"folder-music\": 57741,\n  \"folder-open\": 61564,\n  \"folder-plus\": 63070,\n  \"folder-search\": 57739,\n  \"folder-times\": 63071,\n  \"folder-tree\": 63490,\n  \"folder-upload\": 57428,\n  \"folder-user\": 57742,\n  \"folder-xmark\": 63071,\n  \"folder\": 61563,\n  \"folders\": 63072,\n  \"fondue-pot\": 58381,\n  \"font-awesome-flag\": 62132,\n  \"font-awesome-logo-full\": 62132,\n  \"font-awesome\": 62132,\n  \"font-case\": 63590,\n  \"font\": 61489,\n  \"foot-wing\": 59444,\n  \"football-ball\": 62542,\n  \"football-helmet\": 62543,\n  \"football\": 62542,\n  \"fork-knife\": 62182,\n  \"fork\": 62179,\n  \"forklift\": 62586,\n  \"fort\": 58502,\n  \"forward-fast\": 61520,\n  \"forward-step\": 61521,\n  \"forward\": 61518,\n  \"fragile\": 62651,\n  \"frame\": 58517,\n  \"franc-sign\": 57743,\n  \"french-fries\": 63491,\n  \"frog\": 62766,\n  \"frosty-head\": 63387,\n  \"frown-open\": 62842,\n  \"frown\": 61721,\n  \"function\": 63073,\n  \"funnel-dollar\": 63074,\n  \"futbol-ball\": 61923,\n  \"futbol\": 61923,\n  \"g\": 71,\n  \"galaxy\": 57352,\n  \"gallery-thumbnails\": 58282,\n  \"game-board-alt\": 63592,\n  \"game-board-simple\": 63592,\n  \"game-board\": 63591,\n  \"game-console-handheld-crank\": 58809,\n  \"game-console-handheld\": 63675,\n  \"gamepad-alt\": 58786,\n  \"gamepad-modern\": 58786,\n  \"gamepad\": 61723,\n  \"garage-car\": 57354,\n  \"garage-empty\": 59081,\n  \"garage-open\": 57355,\n  \"garage\": 57353,\n  \"garlic\": 58382,\n  \"gas-pump-left\": 59256,\n  \"gas-pump-right\": 59257,\n  \"gas-pump-slash\": 62964,\n  \"gas-pump\": 62767,\n  \"gauge-circle-bolt\": 58518,\n  \"gauge-circle-minus\": 58519,\n  \"gauge-circle-plus\": 58520,\n  \"gauge-high\": 63013,\n  \"gauge-low\": 63015,\n  \"gauge-max\": 63014,\n  \"gauge-med\": 63012,\n  \"gauge-min\": 63016,\n  \"gauge-simple-high\": 63018,\n  \"gauge-simple-low\": 63020,\n  \"gauge-simple-max\": 63019,\n  \"gauge-simple-med\": 63017,\n  \"gauge-simple-min\": 63021,\n  \"gauge-simple\": 63017,\n  \"gauge\": 63012,\n  \"gave-dandy\": 58377,\n  \"gavel\": 61667,\n  \"gbp\": 61780,\n  \"gear-api\": 59556,\n  \"gear-code\": 58856,\n  \"gear-complex-api\": 59557,\n  \"gear-complex-code\": 58859,\n  \"gear-complex\": 58857,\n  \"gear\": 61459,\n  \"gears\": 61573,\n  \"gem\": 62373,\n  \"gemini\": 59465,\n  \"genderless\": 61997,\n  \"ghost\": 63202,\n  \"gif\": 57744,\n  \"gift-card\": 63075,\n  \"gift\": 61547,\n  \"gifts\": 63388,\n  \"gingerbread-man\": 63389,\n  \"glass-champagne\": 63390,\n  \"glass-cheers\": 63391,\n  \"glass-citrus\": 63593,\n  \"glass-empty\": 57745,\n  \"glass-half-empty\": 57746,\n  \"glass-half-full\": 57746,\n  \"glass-half\": 57746,\n  \"glass-martini-alt\": 62843,\n  \"glass-martini\": 61440,\n  \"glass-water-droplet\": 58613,\n  \"glass-water\": 58612,\n  \"glass-whiskey-rocks\": 63393,\n  \"glass-whiskey\": 63392,\n  \"glass\": 63492,\n  \"glasses-alt\": 62965,\n  \"glasses-round\": 62965,\n  \"glasses\": 62768,\n  \"globe-africa\": 62844,\n  \"globe-americas\": 62845,\n  \"globe-asia\": 62846,\n  \"globe-europe\": 63394,\n  \"globe-oceania\": 58491,\n  \"globe-pointer\": 58894,\n  \"globe-snow\": 63395,\n  \"globe-stand\": 62966,\n  \"globe-wifi\": 59013,\n  \"globe-www\": 59558,\n  \"globe\": 61612,\n  \"glove-boxing\": 62520,\n  \"goal-net\": 58283,\n  \"golf-ball-tee\": 62544,\n  \"golf-ball\": 62544,\n  \"golf-club\": 62545,\n  \"golf-flag-hole\": 58284,\n  \"gopuram\": 63076,\n  \"gpu\": 59459,\n  \"graduation-cap\": 61853,\n  \"gramophone\": 63677,\n  \"grapes\": 58118,\n  \"grate-droplet\": 57748,\n  \"grate\": 57747,\n  \"greater-than-equal\": 62770,\n  \"greater-than\": 62,\n  \"grid-2-minus\": 59050,\n  \"grid-2-plus\": 57751,\n  \"grid-2\": 57750,\n  \"grid-3\": 57749,\n  \"grid-4\": 57752,\n  \"grid-5\": 57753,\n  \"grid-dividers\": 58285,\n  \"grid-horizontal\": 62861,\n  \"grid-round-2-minus\": 59051,\n  \"grid-round-2-plus\": 58844,\n  \"grid-round-2\": 58843,\n  \"grid-round-4\": 58845,\n  \"grid-round-5\": 58846,\n  \"grid-round\": 58842,\n  \"grid-vertical\": 62862,\n  \"grid\": 57749,\n  \"grill-fire\": 58788,\n  \"grill-hot\": 58789,\n  \"grill\": 58787,\n  \"grimace\": 62847,\n  \"grin-alt\": 62849,\n  \"grin-beam-sweat\": 62851,\n  \"grin-beam\": 62850,\n  \"grin-hearts\": 62852,\n  \"grin-squint-tears\": 62854,\n  \"grin-squint\": 62853,\n  \"grin-stars\": 62855,\n  \"grin-tears\": 62856,\n  \"grin-tongue-squint\": 62858,\n  \"grin-tongue-wink\": 62859,\n  \"grin-tongue\": 62857,\n  \"grin-wink\": 62860,\n  \"grin\": 62848,\n  \"grip-dots-vertical\": 58385,\n  \"grip-dots\": 58384,\n  \"grip-horizontal\": 62861,\n  \"grip-lines-vertical\": 63397,\n  \"grip-lines\": 63396,\n  \"grip-vertical\": 62862,\n  \"grip\": 62861,\n  \"group-arrows-rotate\": 58614,\n  \"guarani-sign\": 57754,\n  \"guitar-electric\": 63678,\n  \"guitar\": 63398,\n  \"guitars\": 63679,\n  \"gun-slash\": 57756,\n  \"gun-squirt\": 57757,\n  \"gun\": 57755,\n  \"h-square\": 61693,\n  \"h\": 72,\n  \"h1\": 62227,\n  \"h2\": 62228,\n  \"h3\": 62229,\n  \"h4\": 63594,\n  \"h5\": 58386,\n  \"h6\": 58387,\n  \"hamburger\": 63493,\n  \"hammer-brush\": 58912,\n  \"hammer-crash\": 58388,\n  \"hammer-war\": 63204,\n  \"hammer\": 63203,\n  \"hamsa\": 63077,\n  \"hand-back-fist\": 62037,\n  \"hand-back-point-down\": 57758,\n  \"hand-back-point-left\": 57759,\n  \"hand-back-point-ribbon\": 57760,\n  \"hand-back-point-right\": 57761,\n  \"hand-back-point-up\": 57762,\n  \"hand-dots\": 62561,\n  \"hand-fingers-crossed\": 57763,\n  \"hand-fist\": 63198,\n  \"hand-heart\": 62652,\n  \"hand-holding-box\": 62587,\n  \"hand-holding-circle-dollar\": 58913,\n  \"hand-holding-dollar\": 62656,\n  \"hand-holding-droplet\": 62657,\n  \"hand-holding-hand\": 58615,\n  \"hand-holding-heart\": 62654,\n  \"hand-holding-magic\": 63205,\n  \"hand-holding-medical\": 57436,\n  \"hand-holding-seedling\": 62655,\n  \"hand-holding-skull\": 57764,\n  \"hand-holding-star\": 59393,\n  \"hand-holding-usd\": 62656,\n  \"hand-holding-water\": 62657,\n  \"hand-holding\": 62653,\n  \"hand-horns\": 57769,\n  \"hand-lizard\": 62040,\n  \"hand-love\": 57765,\n  \"hand-middle-finger\": 63494,\n  \"hand-paper\": 62038,\n  \"hand-peace\": 62043,\n  \"hand-point-down\": 61607,\n  \"hand-point-left\": 61605,\n  \"hand-point-ribbon\": 57766,\n  \"hand-point-right\": 61604,\n  \"hand-point-up\": 61606,\n  \"hand-pointer\": 62042,\n  \"hand-receiving\": 62588,\n  \"hand-rock\": 62037,\n  \"hand-scissors\": 62039,\n  \"hand-shaka\": 59441,\n  \"hand-sparkles\": 57437,\n  \"hand-spock\": 62041,\n  \"hand-wave\": 57767,\n  \"hand\": 62038,\n  \"handcuffs\": 58616,\n  \"hands-american-sign-language-interpreting\": 62115,\n  \"hands-asl-interpreting\": 62115,\n  \"hands-bound\": 58617,\n  \"hands-bubbles\": 57438,\n  \"hands-clapping\": 57768,\n  \"hands-heart\": 62659,\n  \"hands-helping\": 62660,\n  \"hands-holding-child\": 58618,\n  \"hands-holding-circle\": 58619,\n  \"hands-holding-diamond\": 62588,\n  \"hands-holding-dollar\": 62661,\n  \"hands-holding-heart\": 62659,\n  \"hands-holding\": 62658,\n  \"hands-praying\": 63108,\n  \"hands-usd\": 62661,\n  \"hands-wash\": 57438,\n  \"hands\": 62119,\n  \"handshake-alt-slash\": 57440,\n  \"handshake-alt\": 62133,\n  \"handshake-angle\": 62660,\n  \"handshake-simple-slash\": 57440,\n  \"handshake-simple\": 62133,\n  \"handshake-slash\": 57440,\n  \"handshake\": 62133,\n  \"hanukiah\": 63206,\n  \"hard-drive\": 61600,\n  \"hard-hat\": 63495,\n  \"hard-of-hearing\": 62116,\n  \"hashtag-lock\": 58389,\n  \"hashtag\": 35,\n  \"hat-beach\": 58886,\n  \"hat-chef\": 63595,\n  \"hat-cowboy-side\": 63681,\n  \"hat-cowboy\": 63680,\n  \"hat-hard\": 63495,\n  \"hat-santa\": 63399,\n  \"hat-winter\": 63400,\n  \"hat-witch\": 63207,\n  \"hat-wizard\": 63208,\n  \"haykal\": 63078,\n  \"hdd\": 61600,\n  \"head-side-brain\": 63496,\n  \"head-side-circuit\": 59230,\n  \"head-side-cough-slash\": 57442,\n  \"head-side-cough\": 57441,\n  \"head-side-gear\": 58897,\n  \"head-side-goggles\": 63210,\n  \"head-side-headphones\": 63682,\n  \"head-side-heart\": 57770,\n  \"head-side-mask\": 57443,\n  \"head-side-medical\": 63497,\n  \"head-side-speak\": 59231,\n  \"head-side-virus\": 57444,\n  \"head-side\": 63209,\n  \"head-vr\": 63210,\n  \"header\": 61916,\n  \"heading\": 61916,\n  \"headphones-alt\": 61477,\n  \"headphones-simple\": 61477,\n  \"headphones-slash\": 59260,\n  \"headphones\": 61477,\n  \"headset\": 62864,\n  \"heart-broken\": 63401,\n  \"heart-circle-bolt\": 58620,\n  \"heart-circle-check\": 58621,\n  \"heart-circle-exclamation\": 58622,\n  \"heart-circle-minus\": 58623,\n  \"heart-circle-plus\": 58624,\n  \"heart-circle-xmark\": 58625,\n  \"heart-circle\": 62663,\n  \"heart-crack\": 63401,\n  \"heart-half-alt\": 57772,\n  \"heart-half-stroke\": 57772,\n  \"heart-half\": 57771,\n  \"heart-music-camera-bolt\": 63597,\n  \"heart-pulse\": 61982,\n  \"heart-rate\": 62968,\n  \"heart-slash\": 59278,\n  \"heart-square\": 62664,\n  \"heart\": 61444,\n  \"heartbeat\": 61982,\n  \"hearts\": 59279,\n  \"heat\": 57356,\n  \"helicopter-symbol\": 58626,\n  \"helicopter\": 62771,\n  \"helmet-battle\": 63211,\n  \"helmet-safety\": 63495,\n  \"helmet-un\": 58627,\n  \"heptagon\": 59424,\n  \"hexagon-check\": 58390,\n  \"hexagon-divide\": 57773,\n  \"hexagon-equals\": 59058,\n  \"hexagon-exclamation\": 58391,\n  \"hexagon-image\": 58628,\n  \"hexagon-minus\": 62215,\n  \"hexagon-nodes-bolt\": 59034,\n  \"hexagon-nodes\": 59033,\n  \"hexagon-plus\": 62208,\n  \"hexagon-vertical-nft-slanted\": 58629,\n  \"hexagon-vertical-nft\": 58629,\n  \"hexagon-xmark\": 62190,\n  \"hexagon\": 62226,\n  \"high-definition\": 57774,\n  \"highlighter-line\": 57775,\n  \"highlighter\": 62865,\n  \"hiking\": 63212,\n  \"hill-avalanche\": 58631,\n  \"hill-rockslide\": 58632,\n  \"hippo\": 63213,\n  \"history\": 61914,\n  \"hockey-mask\": 63214,\n  \"hockey-puck\": 62547,\n  \"hockey-stick-puck\": 58286,\n  \"hockey-stick\": 59366,\n  \"hockey-sticks\": 62548,\n  \"holly-berry\": 63402,\n  \"home-alt\": 61461,\n  \"home-blank\": 58503,\n  \"home-heart\": 62665,\n  \"home-lg-alt\": 61461,\n  \"home-lg\": 58287,\n  \"home-user\": 57776,\n  \"home\": 61461,\n  \"honey-pot\": 58392,\n  \"hood-cloak\": 63215,\n  \"horizontal-rule\": 63596,\n  \"horse-head\": 63403,\n  \"horse-saddle\": 63683,\n  \"horse\": 63216,\n  \"horseshoe\": 59418,\n  \"hose-reel\": 58394,\n  \"hose\": 58393,\n  \"hospital-alt\": 61688,\n  \"hospital-symbol\": 62590,\n  \"hospital-user\": 63501,\n  \"hospital-wide\": 61688,\n  \"hospital\": 61688,\n  \"hospitals\": 63502,\n  \"hot-tub-person\": 62867,\n  \"hot-tub\": 62867,\n  \"hotdog\": 63503,\n  \"hotel\": 62868,\n  \"hourglass-1\": 62033,\n  \"hourglass-2\": 62034,\n  \"hourglass-3\": 62035,\n  \"hourglass-clock\": 58395,\n  \"hourglass-empty\": 62036,\n  \"hourglass-end\": 62035,\n  \"hourglass-half\": 62034,\n  \"hourglass-start\": 62033,\n  \"hourglass\": 62036,\n  \"house-blank\": 58503,\n  \"house-building\": 57777,\n  \"house-chimney-blank\": 58288,\n  \"house-chimney-crack\": 63217,\n  \"house-chimney-heart\": 57778,\n  \"house-chimney-medical\": 63474,\n  \"house-chimney-user\": 57445,\n  \"house-chimney-window\": 57357,\n  \"house-chimney\": 58287,\n  \"house-circle-check\": 58633,\n  \"house-circle-exclamation\": 58634,\n  \"house-circle-xmark\": 58635,\n  \"house-crack\": 58289,\n  \"house-damage\": 63217,\n  \"house-day\": 57358,\n  \"house-fire\": 58636,\n  \"house-flag\": 58637,\n  \"house-flood-water-circle-arrow-right\": 58639,\n  \"house-flood-water\": 58638,\n  \"house-flood\": 63311,\n  \"house-heart\": 62665,\n  \"house-laptop\": 57446,\n  \"house-leave\": 57359,\n  \"house-lock\": 58640,\n  \"house-medical-circle-check\": 58641,\n  \"house-medical-circle-exclamation\": 58642,\n  \"house-medical-circle-xmark\": 58643,\n  \"house-medical-flag\": 58644,\n  \"house-medical\": 58290,\n  \"house-night\": 57360,\n  \"house-person-arrive\": 57361,\n  \"house-person-depart\": 57359,\n  \"house-person-leave\": 57359,\n  \"house-person-return\": 57361,\n  \"house-return\": 57361,\n  \"house-signal\": 57362,\n  \"house-tree\": 57779,\n  \"house-tsunami\": 58645,\n  \"house-turret\": 57780,\n  \"house-unlock\": 59082,\n  \"house-user\": 57776,\n  \"house-water\": 63311,\n  \"house-window\": 58291,\n  \"house\": 61461,\n  \"hryvnia-sign\": 63218,\n  \"hryvnia\": 63218,\n  \"humidity\": 63312,\n  \"hundred-points\": 58396,\n  \"hurricane\": 63313,\n  \"hydra\": 59014,\n  \"hyphen\": 45,\n  \"i-cursor\": 62022,\n  \"i\": 73,\n  \"ice-cream\": 63504,\n  \"ice-skate\": 63404,\n  \"icicles\": 63405,\n  \"icons-alt\": 63598,\n  \"icons\": 63597,\n  \"id-badge\": 62145,\n  \"id-card-alt\": 62591,\n  \"id-card-clip\": 62591,\n  \"id-card\": 62146,\n  \"igloo\": 63406,\n  \"ils\": 61963,\n  \"image-broken\": 59562,\n  \"image-circle-arrow-down\": 59244,\n  \"image-circle-check\": 59245,\n  \"image-circle-plus\": 59246,\n  \"image-circle-xmark\": 59247,\n  \"image-landscape\": 57781,\n  \"image-music\": 59248,\n  \"image-polaroid-user\": 57782,\n  \"image-polaroid\": 63684,\n  \"image-portrait\": 62432,\n  \"image-slash\": 57783,\n  \"image-stack\": 59249,\n  \"image-user\": 57784,\n  \"image\": 61502,\n  \"images-user\": 57785,\n  \"images\": 62210,\n  \"inbox-arrow-down\": 62224,\n  \"inbox-arrow-up\": 62225,\n  \"inbox-full\": 57786,\n  \"inbox-in\": 62224,\n  \"inbox-out\": 62225,\n  \"inbox\": 61468,\n  \"inboxes\": 57787,\n  \"indent\": 61500,\n  \"indian-rupee-sign\": 57788,\n  \"indian-rupee\": 57788,\n  \"industry-alt\": 62387,\n  \"industry-windows\": 62387,\n  \"industry\": 62069,\n  \"infinity\": 62772,\n  \"info-circle\": 61530,\n  \"info-square\": 62223,\n  \"info\": 61737,\n  \"inhaler\": 62969,\n  \"input-numeric\": 57789,\n  \"input-password\": 59517,\n  \"input-pipe\": 57790,\n  \"input-text\": 57791,\n  \"inr\": 57788,\n  \"institution\": 61852,\n  \"integral\": 63079,\n  \"interrobang\": 58810,\n  \"intersection\": 63080,\n  \"inventory\": 62592,\n  \"island-tree-palm\": 63505,\n  \"island-tropical\": 63505,\n  \"italic\": 61491,\n  \"j\": 74,\n  \"jack-o-lantern\": 62222,\n  \"jar-wheat\": 58647,\n  \"jar\": 58646,\n  \"jeans-straight\": 59091,\n  \"jeans\": 59090,\n  \"jedi\": 63081,\n  \"jet-fighter-up\": 58648,\n  \"jet-fighter\": 61691,\n  \"joint\": 62869,\n  \"journal-whills\": 63082,\n  \"joystick\": 63685,\n  \"jpy\": 61783,\n  \"jug-bottle\": 58875,\n  \"jug-detergent\": 58649,\n  \"jug\": 63686,\n  \"k\": 75,\n  \"kaaba\": 63083,\n  \"kayak\": 59547,\n  \"kazoo\": 63687,\n  \"kerning\": 63599,\n  \"kettlebell\": 59442,\n  \"key-skeleton-left-right\": 58292,\n  \"key-skeleton\": 63219,\n  \"key\": 61572,\n  \"keyboard-brightness-low\": 57793,\n  \"keyboard-brightness\": 57792,\n  \"keyboard-down\": 57794,\n  \"keyboard-left\": 57795,\n  \"keyboard\": 61724,\n  \"keynote\": 63084,\n  \"khanda\": 63085,\n  \"kidneys\": 62971,\n  \"kip-sign\": 57796,\n  \"kiss-beam\": 62871,\n  \"kiss-wink-heart\": 62872,\n  \"kiss\": 62870,\n  \"kit-medical\": 62585,\n  \"kitchen-set\": 58650,\n  \"kite\": 63220,\n  \"kiwi-bird\": 62773,\n  \"kiwi-fruit\": 58124,\n  \"knife-kitchen\": 63221,\n  \"knife\": 62180,\n  \"krw\": 61785,\n  \"l\": 76,\n  \"label\": 59559,\n  \"lacrosse-stick-ball\": 58294,\n  \"lacrosse-stick\": 58293,\n  \"ladder-water\": 62917,\n  \"lambda\": 63086,\n  \"lamp-desk\": 57364,\n  \"lamp-floor\": 57365,\n  \"lamp-street\": 57797,\n  \"lamp\": 62666,\n  \"land-mine-on\": 58651,\n  \"landmark-alt\": 63314,\n  \"landmark-dome\": 63314,\n  \"landmark-flag\": 58652,\n  \"landmark-magnifying-glass\": 58914,\n  \"landmark\": 63087,\n  \"landscape\": 57781,\n  \"language\": 61867,\n  \"laptop-arrow-down\": 57798,\n  \"laptop-binary\": 58855,\n  \"laptop-code\": 62972,\n  \"laptop-file\": 58653,\n  \"laptop-house\": 57446,\n  \"laptop-medical\": 63506,\n  \"laptop-mobile\": 63610,\n  \"laptop-slash\": 57799,\n  \"laptop\": 61705,\n  \"lari-sign\": 57800,\n  \"lasso-sparkles\": 57801,\n  \"lasso\": 63688,\n  \"laugh-beam\": 62874,\n  \"laugh-squint\": 62875,\n  \"laugh-wink\": 62876,\n  \"laugh\": 62873,\n  \"layer-group-minus\": 62974,\n  \"layer-group-plus\": 62975,\n  \"layer-group\": 62973,\n  \"layer-minus\": 62974,\n  \"layer-plus\": 62975,\n  \"layer\": 59455,\n  \"leaf-heart\": 62667,\n  \"leaf-maple\": 63222,\n  \"leaf-oak\": 63223,\n  \"leaf\": 61548,\n  \"leafy-green\": 58397,\n  \"left-from-bracket\": 58988,\n  \"left-from-dotted-line\": 59074,\n  \"left-from-line\": 62280,\n  \"left-long-to-line\": 58398,\n  \"left-long\": 62218,\n  \"left-right\": 62263,\n  \"left-to-bracket\": 58989,\n  \"left-to-dotted-line\": 59075,\n  \"left-to-line\": 62283,\n  \"left\": 62293,\n  \"legal\": 61667,\n  \"lemon\": 61588,\n  \"leo\": 59466,\n  \"less-than-equal\": 62775,\n  \"less-than\": 60,\n  \"level-down-alt\": 62398,\n  \"level-down\": 61769,\n  \"level-up-alt\": 62399,\n  \"level-up\": 61768,\n  \"libra\": 59467,\n  \"life-ring\": 61901,\n  \"light-ceiling\": 57366,\n  \"light-emergency-on\": 58400,\n  \"light-emergency\": 58399,\n  \"light-switch-off\": 57368,\n  \"light-switch-on\": 57369,\n  \"light-switch\": 57367,\n  \"lightbulb-cfl-on\": 58791,\n  \"lightbulb-cfl\": 58790,\n  \"lightbulb-dollar\": 63088,\n  \"lightbulb-exclamation-on\": 57802,\n  \"lightbulb-exclamation\": 63089,\n  \"lightbulb-gear\": 58877,\n  \"lightbulb-message\": 59015,\n  \"lightbulb-on\": 63090,\n  \"lightbulb-slash\": 63091,\n  \"lightbulb\": 61675,\n  \"lighthouse\": 58898,\n  \"lights-holiday\": 63410,\n  \"line-chart\": 61953,\n  \"line-columns\": 63600,\n  \"line-height\": 63601,\n  \"lines-leaning\": 58654,\n  \"link-broken\": 59458,\n  \"link-horizontal-slash\": 57804,\n  \"link-horizontal\": 57803,\n  \"link-simple-slash\": 57806,\n  \"link-simple\": 57805,\n  \"link-slash\": 61735,\n  \"link\": 61633,\n  \"lips\": 62976,\n  \"lira-sign\": 61845,\n  \"list-1-2\": 61643,\n  \"list-alt\": 61474,\n  \"list-check\": 61614,\n  \"list-dots\": 61642,\n  \"list-dropdown\": 57807,\n  \"list-music\": 63689,\n  \"list-numeric\": 61643,\n  \"list-ol\": 61643,\n  \"list-radio\": 57808,\n  \"list-squares\": 61498,\n  \"list-timeline\": 57809,\n  \"list-tree\": 57810,\n  \"list-ul\": 61642,\n  \"list\": 61498,\n  \"litecoin-sign\": 57811,\n  \"loader\": 57812,\n  \"lobster\": 58401,\n  \"location-arrow-slash\": 59258,\n  \"location-arrow-up\": 58938,\n  \"location-arrow\": 61732,\n  \"location-check\": 62982,\n  \"location-circle\": 62978,\n  \"location-crosshairs-slash\": 62979,\n  \"location-crosshairs\": 62977,\n  \"location-dot-slash\": 62981,\n  \"location-dot\": 62405,\n  \"location-exclamation\": 62984,\n  \"location-minus\": 62985,\n  \"location-pen\": 62983,\n  \"location-pin-lock\": 58655,\n  \"location-pin-slash\": 62988,\n  \"location-pin\": 61505,\n  \"location-plus\": 62986,\n  \"location-question\": 62987,\n  \"location-slash\": 62979,\n  \"location-smile\": 62989,\n  \"location-xmark\": 62990,\n  \"location\": 62977,\n  \"lock-a\": 58402,\n  \"lock-alt\": 62221,\n  \"lock-hashtag\": 58403,\n  \"lock-keyhole-open\": 62402,\n  \"lock-keyhole\": 62221,\n  \"lock-open-alt\": 62402,\n  \"lock-open\": 62401,\n  \"lock\": 61475,\n  \"locust\": 58656,\n  \"lollipop\": 58404,\n  \"lollypop\": 58404,\n  \"long-arrow-alt-down\": 62217,\n  \"long-arrow-alt-left\": 62218,\n  \"long-arrow-alt-right\": 62219,\n  \"long-arrow-alt-up\": 62220,\n  \"long-arrow-down\": 61813,\n  \"long-arrow-left\": 61815,\n  \"long-arrow-right\": 61816,\n  \"long-arrow-up\": 61814,\n  \"loveseat\": 62668,\n  \"low-vision\": 62120,\n  \"luchador-mask\": 62549,\n  \"luchador\": 62549,\n  \"luggage-cart\": 62877,\n  \"lungs-virus\": 57447,\n  \"lungs\": 62980,\n  \"lychee\": 59428,\n  \"m\": 77,\n  \"mace\": 63224,\n  \"magic-wand-sparkles\": 58058,\n  \"magic\": 61648,\n  \"magnet\": 61558,\n  \"magnifying-glass-arrow-right\": 58657,\n  \"magnifying-glass-arrows-rotate\": 58974,\n  \"magnifying-glass-chart\": 58658,\n  \"magnifying-glass-dollar\": 63112,\n  \"magnifying-glass-location\": 63113,\n  \"magnifying-glass-minus\": 61456,\n  \"magnifying-glass-music\": 58975,\n  \"magnifying-glass-play\": 58976,\n  \"magnifying-glass-plus\": 61454,\n  \"magnifying-glass-waveform\": 58977,\n  \"magnifying-glass\": 61442,\n  \"mail-bulk\": 63092,\n  \"mail-forward\": 61540,\n  \"mail-reply-all\": 61730,\n  \"mail-reply\": 62437,\n  \"mailbox-flag-up\": 58811,\n  \"mailbox-open-empty\": 59425,\n  \"mailbox-open-letter\": 59427,\n  \"mailbox\": 63507,\n  \"maki-roll\": 58507,\n  \"makizushi\": 58507,\n  \"malaysian-ringgit-sign\": 59130,\n  \"male\": 61827,\n  \"manat-sign\": 57813,\n  \"mandolin\": 63225,\n  \"mango\": 58127,\n  \"manhole\": 57814,\n  \"map-location-dot\": 62880,\n  \"map-location\": 62879,\n  \"map-marked-alt\": 62880,\n  \"map-marked\": 62879,\n  \"map-marker-alt-slash\": 62981,\n  \"map-marker-alt\": 62405,\n  \"map-marker-check\": 62982,\n  \"map-marker-edit\": 62983,\n  \"map-marker-exclamation\": 62984,\n  \"map-marker-minus\": 62985,\n  \"map-marker-plus\": 62986,\n  \"map-marker-question\": 62987,\n  \"map-marker-slash\": 62988,\n  \"map-marker-smile\": 62989,\n  \"map-marker-times\": 62990,\n  \"map-marker-xmark\": 62990,\n  \"map-marker\": 61505,\n  \"map-pin\": 62070,\n  \"map-signs\": 62071,\n  \"map\": 62073,\n  \"marker\": 62881,\n  \"mars-and-venus-burst\": 58659,\n  \"mars-and-venus\": 61988,\n  \"mars-double\": 61991,\n  \"mars-stroke-h\": 61995,\n  \"mars-stroke-right\": 61995,\n  \"mars-stroke-up\": 61994,\n  \"mars-stroke-v\": 61994,\n  \"mars-stroke\": 61993,\n  \"mars\": 61986,\n  \"martini-glass-citrus\": 62817,\n  \"martini-glass-empty\": 61440,\n  \"martini-glass\": 62843,\n  \"mask-face\": 57815,\n  \"mask-luchador\": 62549,\n  \"mask-snorkel\": 58295,\n  \"mask-ventilator\": 58660,\n  \"mask\": 63226,\n  \"masks-theater\": 63024,\n  \"mattress-pillow\": 58661,\n  \"maximize\": 62238,\n  \"meat\": 63508,\n  \"medal\": 62882,\n  \"medkit\": 61690,\n  \"megaphone\": 63093,\n  \"meh-blank\": 62884,\n  \"meh-rolling-eyes\": 62885,\n  \"meh\": 61722,\n  \"melon-slice\": 58129,\n  \"melon\": 58128,\n  \"memo-circle-check\": 57817,\n  \"memo-circle-info\": 58522,\n  \"memo-pad\": 57818,\n  \"memo\": 57816,\n  \"memory\": 62776,\n  \"menorah\": 63094,\n  \"mercury\": 61987,\n  \"merge\": 58662,\n  \"message-arrow-down\": 57819,\n  \"message-arrow-up-right\": 57821,\n  \"message-arrow-up\": 57820,\n  \"message-bot\": 58296,\n  \"message-captions\": 57822,\n  \"message-check\": 62626,\n  \"message-code\": 57823,\n  \"message-dollar\": 63056,\n  \"message-dot\": 59103,\n  \"message-dots\": 62627,\n  \"message-edit\": 62628,\n  \"message-exclamation\": 62629,\n  \"message-heart\": 58825,\n  \"message-image\": 57824,\n  \"message-lines\": 62630,\n  \"message-medical\": 63476,\n  \"message-middle-top\": 57826,\n  \"message-middle\": 57825,\n  \"message-minus\": 62631,\n  \"message-music\": 63663,\n  \"message-pen\": 62628,\n  \"message-plus\": 62632,\n  \"message-question\": 57827,\n  \"message-quote\": 57828,\n  \"message-slash\": 62633,\n  \"message-smile\": 62634,\n  \"message-sms\": 57829,\n  \"message-text\": 57830,\n  \"message-times\": 62635,\n  \"message-waveform\": 59104,\n  \"message-xmark\": 62635,\n  \"message\": 62074,\n  \"messages-dollar\": 63058,\n  \"messages-question\": 57831,\n  \"messages\": 62646,\n  \"messaging\": 62627,\n  \"meteor\": 63315,\n  \"meter-bolt\": 57833,\n  \"meter-droplet\": 57834,\n  \"meter-fire\": 57835,\n  \"meter\": 57832,\n  \"microchip-ai\": 57836,\n  \"microchip\": 62171,\n  \"microphone-alt-slash\": 62777,\n  \"microphone-alt\": 62409,\n  \"microphone-circle-alt\": 57623,\n  \"microphone-circle-plus\": 59261,\n  \"microphone-circle-xmark\": 59262,\n  \"microphone-circle\": 57622,\n  \"microphone-lines-slash\": 62777,\n  \"microphone-lines\": 62409,\n  \"microphone-signal-meter\": 59232,\n  \"microphone-slash\": 61745,\n  \"microphone-stand\": 63691,\n  \"microphone\": 61744,\n  \"microscope\": 62992,\n  \"microwave\": 57371,\n  \"midi\": 59398,\n  \"mill-sign\": 57837,\n  \"mind-share\": 63095,\n  \"minimize\": 63372,\n  \"minus-circle\": 61526,\n  \"minus-hexagon\": 62215,\n  \"minus-large\": 58372,\n  \"minus-octagon\": 62216,\n  \"minus-square\": 61766,\n  \"minus\": 61544,\n  \"mistletoe\": 63412,\n  \"mitten\": 63413,\n  \"mobile-alt\": 62413,\n  \"mobile-android-alt\": 62415,\n  \"mobile-android\": 62414,\n  \"mobile-arrow-down\": 59211,\n  \"mobile-button\": 61707,\n  \"mobile-iphone\": 57838,\n  \"mobile-notch\": 57838,\n  \"mobile-phone\": 62414,\n  \"mobile-retro\": 58663,\n  \"mobile-rotate-reverse\": 59412,\n  \"mobile-rotate\": 59411,\n  \"mobile-screen-button\": 62413,\n  \"mobile-screen\": 62415,\n  \"mobile-signal-out\": 57840,\n  \"mobile-signal\": 57839,\n  \"mobile-slash\": 59413,\n  \"mobile-vibrate-slash\": 59415,\n  \"mobile-vibrate\": 59414,\n  \"mobile\": 62414,\n  \"money-bill-1-wave\": 62779,\n  \"money-bill-1\": 62417,\n  \"money-bill-alt\": 62417,\n  \"money-bill-simple-wave\": 57842,\n  \"money-bill-simple\": 57841,\n  \"money-bill-transfer\": 58664,\n  \"money-bill-trend-up\": 58665,\n  \"money-bill-wave-alt\": 62779,\n  \"money-bill-wave\": 62778,\n  \"money-bill-wheat\": 58666,\n  \"money-bill\": 61654,\n  \"money-bills-alt\": 57844,\n  \"money-bills-simple\": 57844,\n  \"money-bills\": 57843,\n  \"money-check-alt\": 62781,\n  \"money-check-dollar-pen\": 63603,\n  \"money-check-dollar\": 62781,\n  \"money-check-edit-alt\": 63603,\n  \"money-check-edit\": 63602,\n  \"money-check-pen\": 63602,\n  \"money-check\": 62780,\n  \"money-from-bracket\": 58130,\n  \"money-simple-from-bracket\": 58131,\n  \"monitor-heart-rate\": 62993,\n  \"monitor-waveform\": 62993,\n  \"monkey\": 63227,\n  \"monument\": 62886,\n  \"moon-cloud\": 63316,\n  \"moon-first-quarter-inverse\": 59506,\n  \"moon-first-quarter\": 59504,\n  \"moon-full-inverse\": 59507,\n  \"moon-full\": 59505,\n  \"moon-last-quarter-inverse\": 59504,\n  \"moon-last-quarter\": 59506,\n  \"moon-new-inverse\": 59505,\n  \"moon-new\": 59507,\n  \"moon-over-sun\": 63306,\n  \"moon-star\": 59337,\n  \"moon-stars\": 63317,\n  \"moon-waning-crescent-inverse\": 59511,\n  \"moon-waning-crescent\": 59508,\n  \"moon-waning-gibbous-inverse\": 59510,\n  \"moon-waning-gibbous\": 59509,\n  \"moon-waxing-crescent-inverse\": 59509,\n  \"moon-waxing-crescent\": 59510,\n  \"moon-waxing-gibbous-inverse\": 59508,\n  \"moon-waxing-gibbous\": 59511,\n  \"moon\": 61830,\n  \"moped\": 58297,\n  \"mortar-board\": 61853,\n  \"mortar-pestle\": 62887,\n  \"mosque\": 63096,\n  \"mosquito-net\": 58668,\n  \"mosquito\": 58667,\n  \"motorcycle\": 61980,\n  \"mound\": 58669,\n  \"mountain-city\": 58670,\n  \"mountain-sun\": 58671,\n  \"mountain\": 63228,\n  \"mountains\": 63229,\n  \"mouse-alt\": 63693,\n  \"mouse-field\": 58792,\n  \"mouse-pointer\": 62021,\n  \"mouse\": 63692,\n  \"mp3-player\": 63694,\n  \"mug-hot\": 63414,\n  \"mug-marshmallows\": 63415,\n  \"mug-saucer\": 61684,\n  \"mug-tea-saucer\": 57845,\n  \"mug-tea\": 63605,\n  \"mug\": 63604,\n  \"multiply\": 61453,\n  \"museum\": 61852,\n  \"mushroom\": 58405,\n  \"music-alt-slash\": 63696,\n  \"music-alt\": 63695,\n  \"music-magnifying-glass\": 58978,\n  \"music-note-slash\": 63696,\n  \"music-note\": 63695,\n  \"music-slash\": 63697,\n  \"music\": 61441,\n  \"mustache\": 58812,\n  \"n\": 78,\n  \"naira-sign\": 57846,\n  \"narwhal\": 63230,\n  \"nas\": 59553,\n  \"navicon\": 61641,\n  \"nesting-dolls\": 58298,\n  \"network-wired\": 63231,\n  \"neuter\": 61996,\n  \"newspaper\": 61930,\n  \"nfc-lock\": 57848,\n  \"nfc-magnifying-glass\": 57849,\n  \"nfc-pen\": 57850,\n  \"nfc-signal\": 57851,\n  \"nfc-slash\": 57852,\n  \"nfc-symbol\": 58673,\n  \"nfc-trash\": 57853,\n  \"nfc\": 57847,\n  \"nigiri\": 58506,\n  \"non-binary\": 59399,\n  \"norwegian-krone-sign\": 59112,\n  \"nose\": 58813,\n  \"not-equal\": 62782,\n  \"notdef\": 57854,\n  \"note-medical\": 57856,\n  \"note-sticky\": 62025,\n  \"note\": 57855,\n  \"notebook\": 57857,\n  \"notes-medical\": 62593,\n  \"notes-sticky\": 59225,\n  \"notes\": 57858,\n  \"numpad\": 59340,\n  \"o\": 79,\n  \"oar\": 59524,\n  \"oars\": 59525,\n  \"object-exclude\": 58524,\n  \"object-group\": 62023,\n  \"object-intersect\": 58525,\n  \"object-subtract\": 58526,\n  \"object-ungroup\": 62024,\n  \"object-union\": 58527,\n  \"objects-align-bottom\": 58299,\n  \"objects-align-center-horizontal\": 58300,\n  \"objects-align-center-vertical\": 58301,\n  \"objects-align-left\": 58302,\n  \"objects-align-right\": 58303,\n  \"objects-align-top\": 58304,\n  \"objects-column\": 58305,\n  \"octagon-check\": 58406,\n  \"octagon-divide\": 57859,\n  \"octagon-equals\": 59059,\n  \"octagon-exclamation\": 57860,\n  \"octagon-minus\": 62216,\n  \"octagon-plus\": 62209,\n  \"octagon-xmark\": 62192,\n  \"octagon\": 62214,\n  \"octopus\": 59016,\n  \"oil-can-drip\": 57861,\n  \"oil-can\": 62995,\n  \"oil-temp\": 62996,\n  \"oil-temperature\": 62996,\n  \"oil-well\": 58674,\n  \"olive-branch\": 58135,\n  \"olive\": 58134,\n  \"om\": 63097,\n  \"omega\": 63098,\n  \"onion\": 58407,\n  \"open-captioning\": 59263,\n  \"opossum\": 59516,\n  \"option\": 58136,\n  \"ornament\": 63416,\n  \"otter\": 63232,\n  \"outdent\": 61499,\n  \"outlet\": 57372,\n  \"oven\": 57373,\n  \"overline\": 63606,\n  \"owl\": 59551,\n  \"p\": 80,\n  \"page-break\": 63607,\n  \"page-caret-down\": 58409,\n  \"page-caret-up\": 58410,\n  \"page\": 58408,\n  \"pager\": 63509,\n  \"paint-brush-alt\": 62889,\n  \"paint-brush-fine\": 62889,\n  \"paint-brush\": 61948,\n  \"paint-roller\": 62890,\n  \"paintbrush-alt\": 62889,\n  \"paintbrush-fine-slash\": 59213,\n  \"paintbrush-fine\": 62889,\n  \"paintbrush-pencil\": 57862,\n  \"paintbrush-slash\": 59214,\n  \"paintbrush\": 61948,\n  \"palette-boxes\": 62595,\n  \"palette\": 62783,\n  \"pallet-alt\": 62595,\n  \"pallet-box\": 57864,\n  \"pallet-boxes\": 62595,\n  \"pallet\": 62594,\n  \"pan-food\": 58411,\n  \"pan-frying\": 58412,\n  \"pancakes\": 58413,\n  \"panel-ews\": 58414,\n  \"panel-fire\": 58415,\n  \"panorama\": 57865,\n  \"panties\": 59092,\n  \"pants-straight\": 59094,\n  \"pants\": 59093,\n  \"paper-plane-alt\": 57866,\n  \"paper-plane-top\": 57866,\n  \"paper-plane\": 61912,\n  \"paperclip-vertical\": 58306,\n  \"paperclip\": 61638,\n  \"parachute-box\": 62669,\n  \"paragraph-left\": 63608,\n  \"paragraph-rtl\": 63608,\n  \"paragraph\": 61917,\n  \"parentheses\": 57541,\n  \"parenthesis\": 40,\n  \"parking-circle-slash\": 62998,\n  \"parking-circle\": 62997,\n  \"parking-slash\": 62999,\n  \"parking\": 62784,\n  \"party-back\": 58460,\n  \"party-bell\": 58138,\n  \"party-horn\": 58139,\n  \"passport\": 62891,\n  \"pastafarianism\": 63099,\n  \"paste\": 61674,\n  \"pause-circle\": 62091,\n  \"pause\": 61516,\n  \"paw-alt\": 63233,\n  \"paw-claws\": 63234,\n  \"paw-simple\": 63233,\n  \"paw\": 61872,\n  \"peace\": 63100,\n  \"peach\": 57867,\n  \"peanut\": 58416,\n  \"peanuts\": 58417,\n  \"peapod\": 58140,\n  \"pear\": 57868,\n  \"pedestal\": 57869,\n  \"pegasus\": 63235,\n  \"pen-alt-slash\": 57871,\n  \"pen-alt\": 62213,\n  \"pen-circle\": 57870,\n  \"pen-clip-slash\": 57871,\n  \"pen-clip\": 62213,\n  \"pen-fancy-slash\": 57872,\n  \"pen-fancy\": 62892,\n  \"pen-field\": 57873,\n  \"pen-line\": 57874,\n  \"pen-nib-slash\": 58529,\n  \"pen-nib\": 62893,\n  \"pen-paintbrush\": 63000,\n  \"pen-ruler\": 62894,\n  \"pen-slash\": 57875,\n  \"pen-square\": 61771,\n  \"pen-swirl\": 57876,\n  \"pen-to-square\": 61508,\n  \"pen\": 62212,\n  \"pencil-alt\": 62211,\n  \"pencil-line\": 59215,\n  \"pencil-mechanical\": 58826,\n  \"pencil-paintbrush\": 63000,\n  \"pencil-ruler\": 62894,\n  \"pencil-slash\": 57877,\n  \"pencil-square\": 61771,\n  \"pencil\": 62211,\n  \"pennant\": 62550,\n  \"pentagon\": 59280,\n  \"people-arrows-left-right\": 57448,\n  \"people-arrows\": 57448,\n  \"people-carry-box\": 62670,\n  \"people-carry\": 62670,\n  \"people-dress-simple\": 57880,\n  \"people-dress\": 57879,\n  \"people-group\": 58675,\n  \"people-line\": 58676,\n  \"people-pants-simple\": 57882,\n  \"people-pants\": 57881,\n  \"people-pulling\": 58677,\n  \"people-robbery\": 58678,\n  \"people-roof\": 58679,\n  \"people-simple\": 57883,\n  \"people\": 57878,\n  \"pepper-hot\": 63510,\n  \"pepper\": 58418,\n  \"percent\": 37,\n  \"percentage\": 37,\n  \"period\": 46,\n  \"person-arms-raised\": 59267,\n  \"person-arrow-down-to-line\": 58680,\n  \"person-arrow-up-from-line\": 58681,\n  \"person-basketball\": 59268,\n  \"person-biking-mountain\": 63563,\n  \"person-biking\": 63562,\n  \"person-booth\": 63318,\n  \"person-breastfeeding\": 58682,\n  \"person-burst\": 58683,\n  \"person-cane\": 58684,\n  \"person-carry-box\": 62671,\n  \"person-carry-empty\": 59269,\n  \"person-carry\": 62671,\n  \"person-chalkboard\": 58685,\n  \"person-circle-check\": 58686,\n  \"person-circle-exclamation\": 58687,\n  \"person-circle-minus\": 58688,\n  \"person-circle-plus\": 58689,\n  \"person-circle-question\": 58690,\n  \"person-circle-xmark\": 58691,\n  \"person-digging\": 63582,\n  \"person-dolly-empty\": 62673,\n  \"person-dolly\": 62672,\n  \"person-dots-from-line\": 62576,\n  \"person-dress-burst\": 58692,\n  \"person-dress-fairy\": 58887,\n  \"person-dress-simple\": 57884,\n  \"person-dress\": 61826,\n  \"person-drowning\": 58693,\n  \"person-fairy\": 58888,\n  \"person-falling-burst\": 58695,\n  \"person-falling\": 58694,\n  \"person-from-portal\": 57379,\n  \"person-golfing\": 59270,\n  \"person-half-dress\": 58696,\n  \"person-harassing\": 58697,\n  \"person-hiking\": 63212,\n  \"person-limbs-wide\": 59271,\n  \"person-meditating\": 59361,\n  \"person-military-pointing\": 58698,\n  \"person-military-rifle\": 58699,\n  \"person-military-to-person\": 58700,\n  \"person-pinball\": 57885,\n  \"person-praying\": 63107,\n  \"person-pregnant\": 58142,\n  \"person-rays\": 58701,\n  \"person-rifle\": 58702,\n  \"person-running-fast\": 58879,\n  \"person-running\": 63244,\n  \"person-seat-reclined\": 57887,\n  \"person-seat-window\": 59272,\n  \"person-seat\": 57886,\n  \"person-shelter\": 58703,\n  \"person-sign\": 63319,\n  \"person-simple\": 57888,\n  \"person-skating\": 63429,\n  \"person-ski-jumping\": 63431,\n  \"person-ski-lift\": 63432,\n  \"person-skiing-nordic\": 63434,\n  \"person-skiing\": 63433,\n  \"person-sledding\": 63435,\n  \"person-snowboarding\": 63438,\n  \"person-snowmobiling\": 63441,\n  \"person-soccer\": 59273,\n  \"person-swimming-pool\": 59274,\n  \"person-swimming-water\": 59275,\n  \"person-swimming\": 62916,\n  \"person-through-window\": 58793,\n  \"person-to-door\": 58419,\n  \"person-to-portal\": 57378,\n  \"person-walking-arrow-loop-left\": 58705,\n  \"person-walking-arrow-right\": 58706,\n  \"person-walking-dashed-line-arrow-right\": 58707,\n  \"person-walking-luggage\": 58708,\n  \"person-walking-with-cane\": 62109,\n  \"person-walking\": 62804,\n  \"person-water-arms-raised\": 59276,\n  \"person-waving\": 59277,\n  \"person\": 61827,\n  \"peruvian-soles-sign\": 59141,\n  \"peseta-sign\": 57889,\n  \"peso-sign\": 57890,\n  \"phone-alt\": 63609,\n  \"phone-arrow-down-left\": 57891,\n  \"phone-arrow-down\": 57891,\n  \"phone-arrow-right\": 58814,\n  \"phone-arrow-up-right\": 57892,\n  \"phone-arrow-up\": 57892,\n  \"phone-circle-alt\": 57628,\n  \"phone-circle-down\": 57629,\n  \"phone-circle\": 57627,\n  \"phone-connection\": 59105,\n  \"phone-flip\": 63609,\n  \"phone-hangup\": 57893,\n  \"phone-incoming\": 57891,\n  \"phone-intercom\": 58420,\n  \"phone-laptop\": 63610,\n  \"phone-missed\": 57894,\n  \"phone-office\": 63101,\n  \"phone-outgoing\": 57892,\n  \"phone-plus\": 62674,\n  \"phone-rotary\": 63699,\n  \"phone-slash\": 62429,\n  \"phone-square-alt\": 63611,\n  \"phone-square-down\": 57978,\n  \"phone-square\": 61592,\n  \"phone-volume\": 62112,\n  \"phone-waveform\": 59106,\n  \"phone-xmark\": 57895,\n  \"phone\": 61589,\n  \"photo-film-music\": 57896,\n  \"photo-film\": 63612,\n  \"photo-video\": 63612,\n  \"pi\": 63102,\n  \"piano-keyboard\": 63701,\n  \"piano\": 63700,\n  \"pickaxe\": 58815,\n  \"pickleball\": 58421,\n  \"picture-in-picture\": 59403,\n  \"pie-chart\": 61952,\n  \"pie\": 63237,\n  \"pig\": 63238,\n  \"piggy-bank\": 62675,\n  \"pills\": 62596,\n  \"pinata\": 58307,\n  \"pinball\": 57897,\n  \"pineapple\": 58143,\n  \"ping-pong-paddle-ball\": 62557,\n  \"pipe-circle-check\": 58422,\n  \"pipe-collar\": 58423,\n  \"pipe-section\": 58424,\n  \"pipe-smoking\": 58308,\n  \"pipe-valve\": 58425,\n  \"pipe\": 124,\n  \"pisces\": 59468,\n  \"pizza-slice\": 63512,\n  \"pizza\": 63511,\n  \"place-of-worship\": 63103,\n  \"plane-alt\": 62430,\n  \"plane-arrival\": 62895,\n  \"plane-circle-check\": 58709,\n  \"plane-circle-exclamation\": 58710,\n  \"plane-circle-xmark\": 58711,\n  \"plane-departure\": 62896,\n  \"plane-engines\": 62430,\n  \"plane-flying\": 59323,\n  \"plane-landing-gear\": 59324,\n  \"plane-lock\": 58712,\n  \"plane-prop\": 57899,\n  \"plane-slash\": 57449,\n  \"plane-tail\": 57900,\n  \"plane-up-slash\": 57902,\n  \"plane-up\": 57901,\n  \"plane\": 61554,\n  \"planet-moon\": 57375,\n  \"planet-ringed\": 57376,\n  \"plant-wilt\": 58794,\n  \"plate-utensils\": 58427,\n  \"plate-wheat\": 58714,\n  \"play-circle\": 61764,\n  \"play-flip\": 59264,\n  \"play-pause\": 57903,\n  \"play\": 61515,\n  \"plug-circle-bolt\": 58715,\n  \"plug-circle-check\": 58716,\n  \"plug-circle-exclamation\": 58717,\n  \"plug-circle-minus\": 58718,\n  \"plug-circle-plus\": 58719,\n  \"plug-circle-xmark\": 58720,\n  \"plug\": 61926,\n  \"plus-circle\": 61525,\n  \"plus-hexagon\": 62208,\n  \"plus-large\": 58782,\n  \"plus-minus\": 58428,\n  \"plus-octagon\": 62209,\n  \"plus-square\": 61694,\n  \"plus\": 43,\n  \"podcast\": 62158,\n  \"podium-star\": 63320,\n  \"podium\": 63104,\n  \"poker-chip\": 59554,\n  \"police-box\": 57377,\n  \"polish-zloty-sign\": 59147,\n  \"poll-h\": 63106,\n  \"poll-people\": 63321,\n  \"poll\": 63105,\n  \"pompebled\": 58429,\n  \"poo-bolt\": 63322,\n  \"poo-storm\": 63322,\n  \"poo\": 62206,\n  \"pool-8-ball\": 58309,\n  \"poop\": 63001,\n  \"popcorn\": 63513,\n  \"popsicle\": 58430,\n  \"portal-enter\": 57378,\n  \"portal-exit\": 57379,\n  \"portrait\": 62432,\n  \"possum\": 59516,\n  \"postage-stamp\": 59107,\n  \"pot-food\": 58431,\n  \"potato\": 58432,\n  \"pound-sign\": 61780,\n  \"power-off\": 61457,\n  \"pray\": 63107,\n  \"praying-hands\": 63108,\n  \"prescription-bottle-alt\": 62598,\n  \"prescription-bottle-medical\": 62598,\n  \"prescription-bottle-pill\": 58816,\n  \"prescription-bottle\": 62597,\n  \"prescription\": 62897,\n  \"presentation-screen\": 63109,\n  \"presentation\": 63109,\n  \"pretzel\": 58433,\n  \"print-magnifying-glass\": 63514,\n  \"print-search\": 63514,\n  \"print-slash\": 63110,\n  \"print\": 61487,\n  \"pro\": 57909,\n  \"procedures\": 62599,\n  \"project-diagram\": 62786,\n  \"projector\": 63702,\n  \"pronoun\": 59041,\n  \"pump-impeller\": 59445,\n  \"pump-medical\": 57450,\n  \"pump-soap\": 57451,\n  \"pump\": 58434,\n  \"pumpkin\": 63239,\n  \"puzzle-piece-alt\": 57905,\n  \"puzzle-piece-simple\": 57905,\n  \"puzzle-piece\": 61742,\n  \"puzzle\": 58435,\n  \"q\": 81,\n  \"qrcode-read\": 59289,\n  \"qrcode\": 61481,\n  \"question-circle\": 61529,\n  \"question-square\": 62205,\n  \"question\": 63,\n  \"quidditch-broom-ball\": 62552,\n  \"quidditch\": 62552,\n  \"quote-left-alt\": 61709,\n  \"quote-left\": 61709,\n  \"quote-right-alt\": 61710,\n  \"quote-right\": 61710,\n  \"quotes\": 57908,\n  \"quran\": 63111,\n  \"r\": 82,\n  \"rabbit-fast\": 63241,\n  \"rabbit-running\": 63241,\n  \"rabbit\": 63240,\n  \"raccoon\": 58899,\n  \"racquet\": 62554,\n  \"radar\": 57380,\n  \"radiation-alt\": 63418,\n  \"radiation\": 63417,\n  \"radio-alt\": 63704,\n  \"radio-tuner\": 63704,\n  \"radio\": 63703,\n  \"rainbow-half\": 59338,\n  \"rainbow\": 63323,\n  \"raindrops\": 63324,\n  \"ram\": 63242,\n  \"ramp-loading\": 62676,\n  \"random\": 61556,\n  \"ranking-star\": 58721,\n  \"raygun\": 57381,\n  \"receipt\": 62787,\n  \"record-vinyl\": 63705,\n  \"rectangle-4k\": 59250,\n  \"rectangle-ad\": 63041,\n  \"rectangle-api\": 59552,\n  \"rectangle-barcode\": 62563,\n  \"rectangle-beta\": 59400,\n  \"rectangle-code\": 58146,\n  \"rectangle-hd\": 57774,\n  \"rectangle-hdr\": 59251,\n  \"rectangle-high-dynamic-range\": 59251,\n  \"rectangle-history-circle-plus\": 58531,\n  \"rectangle-history-circle-user\": 58532,\n  \"rectangle-history\": 58530,\n  \"rectangle-irc\": 59500,\n  \"rectangle-landscape\": 62202,\n  \"rectangle-list\": 61474,\n  \"rectangle-minus\": 59060,\n  \"rectangle-n-a\": 59560,\n  \"rectangle-new\": 59514,\n  \"rectangle-plus\": 59061,\n  \"rectangle-portrait\": 62203,\n  \"rectangle-pro\": 57909,\n  \"rectangle-sd\": 57994,\n  \"rectangle-tall\": 59281,\n  \"rectangle-terminal\": 57910,\n  \"rectangle-times\": 62480,\n  \"rectangle-vertical-history\": 57911,\n  \"rectangle-vertical\": 62203,\n  \"rectangle-video-on-demand\": 59252,\n  \"rectangle-wide\": 62204,\n  \"rectangle-xmark\": 62480,\n  \"rectangle\": 62202,\n  \"rectangles-mixed\": 58147,\n  \"recycle\": 61880,\n  \"redo-alt\": 62201,\n  \"redo\": 61470,\n  \"reel\": 57912,\n  \"reflect-both\": 58991,\n  \"reflect-horizontal\": 58980,\n  \"reflect-vertical\": 58981,\n  \"refresh\": 61473,\n  \"refrigerator\": 57382,\n  \"registered\": 62045,\n  \"remote\": 59561,\n  \"remove-format\": 63613,\n  \"remove\": 61453,\n  \"renminbi-sign\": 59196,\n  \"reorder\": 62800,\n  \"repeat-1-alt\": 62310,\n  \"repeat-1\": 62309,\n  \"repeat-alt\": 62308,\n  \"repeat\": 62307,\n  \"reply-all\": 61730,\n  \"reply-clock\": 57913,\n  \"reply-time\": 57913,\n  \"reply\": 62437,\n  \"republican\": 63326,\n  \"restroom-simple\": 57914,\n  \"restroom\": 63421,\n  \"retweet-alt\": 62305,\n  \"retweet\": 61561,\n  \"rhombus\": 57915,\n  \"ribbon\": 62678,\n  \"right-from-bracket\": 62197,\n  \"right-from-dotted-line\": 59076,\n  \"right-from-line\": 62279,\n  \"right-left-large\": 58849,\n  \"right-left\": 62306,\n  \"right-long-to-line\": 58436,\n  \"right-long\": 62219,\n  \"right-to-bracket\": 62198,\n  \"right-to-dotted-line\": 59077,\n  \"right-to-line\": 62284,\n  \"right\": 62294,\n  \"ring-diamond\": 58795,\n  \"ring\": 63243,\n  \"rings-wedding\": 63515,\n  \"rmb\": 61783,\n  \"road-barrier\": 58722,\n  \"road-bridge\": 58723,\n  \"road-circle-check\": 58724,\n  \"road-circle-exclamation\": 58725,\n  \"road-circle-xmark\": 58726,\n  \"road-lock\": 58727,\n  \"road-spikes\": 58728,\n  \"road\": 61464,\n  \"robot-astromech\": 58066,\n  \"robot\": 62788,\n  \"rocket-launch\": 57383,\n  \"rocket-vertical\": 59325,\n  \"rocket\": 61749,\n  \"rod-asclepius\": 58745,\n  \"rod-snake\": 58745,\n  \"roller-coaster\": 58148,\n  \"rotate-back\": 62186,\n  \"rotate-backward\": 62186,\n  \"rotate-exclamation\": 57916,\n  \"rotate-forward\": 62201,\n  \"rotate-left\": 62186,\n  \"rotate-reverse\": 58929,\n  \"rotate-right\": 62201,\n  \"rotate\": 62193,\n  \"rouble\": 61784,\n  \"route-highway\": 63002,\n  \"route-interstate\": 63003,\n  \"route\": 62679,\n  \"router\": 63706,\n  \"rows-3\": 59531,\n  \"rows\": 58002,\n  \"rss-square\": 61763,\n  \"rss\": 61598,\n  \"rub\": 61784,\n  \"ruble-sign\": 61784,\n  \"ruble\": 61784,\n  \"rug\": 58729,\n  \"rugby-ball\": 58310,\n  \"ruler-combined\": 62790,\n  \"ruler-horizontal\": 62791,\n  \"ruler-triangle\": 63004,\n  \"ruler-vertical\": 62792,\n  \"ruler\": 62789,\n  \"running\": 63244,\n  \"rupee-sign\": 61782,\n  \"rupee\": 61782,\n  \"rupiah-sign\": 57917,\n  \"rv\": 63422,\n  \"s\": 83,\n  \"sack-dollar\": 63517,\n  \"sack-xmark\": 58730,\n  \"sack\": 63516,\n  \"sad-cry\": 62899,\n  \"sad-tear\": 62900,\n  \"sagittarius\": 59469,\n  \"sailboat\": 58437,\n  \"salad\": 63518,\n  \"salt-shaker\": 58438,\n  \"sandwich\": 63519,\n  \"satellite-dish\": 63424,\n  \"satellite\": 63423,\n  \"sausage\": 63520,\n  \"save-circle-arrow-right\": 57728,\n  \"save-circle-xmark\": 57729,\n  \"save-times\": 57729,\n  \"save\": 61639,\n  \"sax-hot\": 63707,\n  \"saxophone-fire\": 63707,\n  \"saxophone\": 63708,\n  \"scale-balanced\": 62030,\n  \"scale-unbalanced-flip\": 62742,\n  \"scale-unbalanced\": 62741,\n  \"scalpel-line-dashed\": 63006,\n  \"scalpel-path\": 63006,\n  \"scalpel\": 63005,\n  \"scanner-gun\": 62600,\n  \"scanner-image\": 63731,\n  \"scanner-keyboard\": 62601,\n  \"scanner-touchscreen\": 62602,\n  \"scanner\": 62600,\n  \"scarecrow\": 63245,\n  \"scarf\": 63425,\n  \"school-circle-check\": 58731,\n  \"school-circle-exclamation\": 58732,\n  \"school-circle-xmark\": 58733,\n  \"school-flag\": 58734,\n  \"school-lock\": 58735,\n  \"school-unlock\": 59083,\n  \"school\": 62793,\n  \"scissors\": 61636,\n  \"scooter\": 59331,\n  \"scorpio\": 59470,\n  \"screen-users\": 63037,\n  \"screencast\": 57918,\n  \"screenshot\": 57562,\n  \"screwdriver-wrench\": 63449,\n  \"screwdriver\": 62794,\n  \"scribble\": 57919,\n  \"scroll-old\": 63247,\n  \"scroll-ribbon\": 62954,\n  \"scroll-torah\": 63136,\n  \"scroll\": 63246,\n  \"scrubber\": 62200,\n  \"scythe\": 63248,\n  \"sd-card\": 63426,\n  \"sd-cards\": 57920,\n  \"seal-exclamation\": 57922,\n  \"seal-question\": 57923,\n  \"seal\": 57921,\n  \"search-dollar\": 63112,\n  \"search-location\": 63113,\n  \"search-minus\": 61456,\n  \"search-plus\": 61454,\n  \"search\": 61442,\n  \"seat-airline-window\": 59326,\n  \"seat-airline\": 57924,\n  \"seat\": 59236,\n  \"seats\": 59237,\n  \"section\": 58439,\n  \"seedling\": 62680,\n  \"semicolon\": 59,\n  \"send-back\": 63614,\n  \"send-backward\": 63615,\n  \"send\": 57866,\n  \"sensor-alert\": 57385,\n  \"sensor-cloud\": 57388,\n  \"sensor-fire\": 57386,\n  \"sensor-on\": 57387,\n  \"sensor-smoke\": 57388,\n  \"sensor-triangle-exclamation\": 57385,\n  \"sensor\": 57384,\n  \"septagon\": 59424,\n  \"server\": 62003,\n  \"shapes\": 63007,\n  \"share-all\": 62311,\n  \"share-alt-square\": 61921,\n  \"share-alt\": 61920,\n  \"share-from-square\": 61773,\n  \"share-nodes\": 61920,\n  \"share-square\": 61773,\n  \"share\": 61540,\n  \"sheep\": 63249,\n  \"sheet-plastic\": 58737,\n  \"shekel-sign\": 61963,\n  \"shekel\": 61963,\n  \"shelves-empty\": 57926,\n  \"shelves\": 62592,\n  \"sheqel-sign\": 61963,\n  \"sheqel\": 61963,\n  \"shield-alt\": 62445,\n  \"shield-blank\": 61746,\n  \"shield-cat\": 58738,\n  \"shield-check\": 62199,\n  \"shield-cross\": 63250,\n  \"shield-dog\": 58739,\n  \"shield-exclamation\": 57927,\n  \"shield-halved\": 62445,\n  \"shield-heart\": 58740,\n  \"shield-keyhole\": 57928,\n  \"shield-minus\": 57929,\n  \"shield-plus\": 57930,\n  \"shield-quartered\": 58741,\n  \"shield-slash\": 57931,\n  \"shield-times\": 57932,\n  \"shield-user\": 59401,\n  \"shield-virus\": 57452,\n  \"shield-xmark\": 57932,\n  \"shield\": 61746,\n  \"ship-large\": 59408,\n  \"ship\": 61978,\n  \"shipping-fast\": 62603,\n  \"shipping-timed\": 62604,\n  \"shirt-jersey\": 59095,\n  \"shirt-long-sleeve\": 58311,\n  \"shirt-running\": 58312,\n  \"shirt-tank-top\": 58313,\n  \"shirt\": 62803,\n  \"shish-kebab\": 63521,\n  \"shoe-prints\": 62795,\n  \"shoe\": 59096,\n  \"shop-24\": 59290,\n  \"shop-lock\": 58533,\n  \"shop-slash\": 57456,\n  \"shop\": 62799,\n  \"shopping-bag\": 62096,\n  \"shopping-basket-alt\": 57519,\n  \"shopping-basket\": 62097,\n  \"shopping-cart\": 61562,\n  \"shortcake\": 58341,\n  \"shorts\": 59097,\n  \"shovel-snow\": 63427,\n  \"shovel\": 63251,\n  \"shower-alt\": 57933,\n  \"shower-down\": 57933,\n  \"shower\": 62156,\n  \"shredder\": 63114,\n  \"shrimp\": 58440,\n  \"shuffle\": 61556,\n  \"shutters\": 58441,\n  \"shuttle-space-vertical\": 59327,\n  \"shuttle-space\": 61847,\n  \"shuttle-van\": 62902,\n  \"shuttlecock\": 62555,\n  \"sickle\": 63522,\n  \"sidebar-flip\": 57935,\n  \"sidebar\": 57934,\n  \"sigma\": 63115,\n  \"sign-hanging\": 62681,\n  \"sign-in-alt\": 62198,\n  \"sign-in\": 61584,\n  \"sign-language\": 62119,\n  \"sign-out-alt\": 62197,\n  \"sign-out\": 61579,\n  \"sign-post\": 58916,\n  \"sign-posts-wrench\": 58918,\n  \"sign-posts\": 58917,\n  \"sign\": 62681,\n  \"signal-1\": 63116,\n  \"signal-2\": 63117,\n  \"signal-3\": 63118,\n  \"signal-4\": 63119,\n  \"signal-5\": 61458,\n  \"signal-alt-1\": 63121,\n  \"signal-alt-2\": 63122,\n  \"signal-alt-3\": 63123,\n  \"signal-alt-4\": 63120,\n  \"signal-alt-slash\": 63124,\n  \"signal-alt\": 63120,\n  \"signal-bars-fair\": 63122,\n  \"signal-bars-good\": 63123,\n  \"signal-bars-slash\": 63124,\n  \"signal-bars-strong\": 63120,\n  \"signal-bars-weak\": 63121,\n  \"signal-bars\": 63120,\n  \"signal-fair\": 63117,\n  \"signal-good\": 63118,\n  \"signal-perfect\": 61458,\n  \"signal-slash\": 63125,\n  \"signal-stream-slash\": 57936,\n  \"signal-stream\": 63709,\n  \"signal-strong\": 63119,\n  \"signal-weak\": 63116,\n  \"signal\": 61458,\n  \"signapore-dollar-sign\": 59182,\n  \"signature-lock\": 58314,\n  \"signature-slash\": 58315,\n  \"signature\": 62903,\n  \"signing\": 62119,\n  \"signs-post\": 62071,\n  \"sim-card\": 63428,\n  \"sim-cards\": 57937,\n  \"single-quote-left\": 59419,\n  \"single-quote-right\": 59420,\n  \"sink\": 57453,\n  \"siren-on\": 57390,\n  \"siren\": 57389,\n  \"sitemap\": 61672,\n  \"skating\": 63429,\n  \"skeleton-ribs\": 58827,\n  \"skeleton\": 63008,\n  \"ski-boot-ski\": 58317,\n  \"ski-boot\": 58316,\n  \"ski-jump\": 63431,\n  \"ski-lift\": 63432,\n  \"skiing-nordic\": 63434,\n  \"skiing\": 63433,\n  \"skull-cow\": 63710,\n  \"skull-crossbones\": 63252,\n  \"skull\": 62796,\n  \"slash-back\": 92,\n  \"slash-forward\": 47,\n  \"slash\": 63253,\n  \"sledding\": 63435,\n  \"sleigh\": 63436,\n  \"slider-circle\": 59216,\n  \"slider\": 57938,\n  \"sliders-h-square\": 62448,\n  \"sliders-h\": 61918,\n  \"sliders-simple\": 57939,\n  \"sliders-up\": 62449,\n  \"sliders-v-square\": 62450,\n  \"sliders-v\": 62449,\n  \"sliders\": 61918,\n  \"slot-machine\": 58318,\n  \"smile-beam\": 62904,\n  \"smile-plus\": 62905,\n  \"smile-wink\": 62682,\n  \"smile\": 61720,\n  \"smog\": 63327,\n  \"smoke\": 63328,\n  \"smoking-ban\": 62797,\n  \"smoking\": 62605,\n  \"sms\": 63437,\n  \"snake\": 63254,\n  \"sneaker-running\": 59417,\n  \"sneaker\": 59098,\n  \"snooze\": 63616,\n  \"snow-blowing\": 63329,\n  \"snowboarding\": 63438,\n  \"snowflake-droplets\": 58817,\n  \"snowflake\": 62172,\n  \"snowflakes\": 63439,\n  \"snowman-head\": 63387,\n  \"snowman\": 63440,\n  \"snowmobile-blank\": 59332,\n  \"snowmobile\": 63441,\n  \"snowplow\": 63442,\n  \"soap\": 57454,\n  \"soccer-ball\": 61923,\n  \"socks\": 63126,\n  \"soft-serve\": 58368,\n  \"solar-panel\": 62906,\n  \"solar-system\": 57391,\n  \"sort-alpha-asc\": 61789,\n  \"sort-alpha-desc\": 63617,\n  \"sort-alpha-down-alt\": 63617,\n  \"sort-alpha-down\": 61789,\n  \"sort-alpha-up-alt\": 63618,\n  \"sort-alpha-up\": 61790,\n  \"sort-alt\": 63619,\n  \"sort-amount-asc\": 61792,\n  \"sort-amount-desc\": 63620,\n  \"sort-amount-down-alt\": 63620,\n  \"sort-amount-down\": 61792,\n  \"sort-amount-up-alt\": 63621,\n  \"sort-amount-up\": 61793,\n  \"sort-asc\": 61662,\n  \"sort-circle-down\": 57393,\n  \"sort-circle-up\": 57394,\n  \"sort-circle\": 57392,\n  \"sort-desc\": 61661,\n  \"sort-down\": 61661,\n  \"sort-numeric-asc\": 61794,\n  \"sort-numeric-desc\": 63622,\n  \"sort-numeric-down-alt\": 63622,\n  \"sort-numeric-down\": 61794,\n  \"sort-numeric-up-alt\": 63623,\n  \"sort-numeric-up\": 61795,\n  \"sort-shapes-down-alt\": 63625,\n  \"sort-shapes-down\": 63624,\n  \"sort-shapes-up-alt\": 63627,\n  \"sort-shapes-up\": 63626,\n  \"sort-size-down-alt\": 63629,\n  \"sort-size-down\": 63628,\n  \"sort-size-up-alt\": 63631,\n  \"sort-size-up\": 63630,\n  \"sort-up-down\": 57497,\n  \"sort-up\": 61662,\n  \"sort\": 61660,\n  \"soup\": 63523,\n  \"spa\": 62907,\n  \"space-shuttle\": 61847,\n  \"space-station-moon-alt\": 57396,\n  \"space-station-moon-construction\": 57396,\n  \"space-station-moon\": 57395,\n  \"spade\": 62196,\n  \"spaghetti-monster-flying\": 63099,\n  \"sparkle\": 58838,\n  \"sparkles\": 63632,\n  \"speaker\": 63711,\n  \"speakers\": 63712,\n  \"spell-check\": 63633,\n  \"spider-black-widow\": 63256,\n  \"spider-web\": 63257,\n  \"spider\": 63255,\n  \"spine\": 59233,\n  \"spinner-scale\": 58922,\n  \"spinner-third\": 62452,\n  \"spinner\": 61712,\n  \"spiral\": 59402,\n  \"split\": 57940,\n  \"splotch\": 62908,\n  \"spoon\": 62181,\n  \"sportsball\": 58443,\n  \"spray-can-sparkles\": 62928,\n  \"spray-can\": 62909,\n  \"sprinkler-ceiling\": 58444,\n  \"sprinkler\": 57397,\n  \"sprout\": 62680,\n  \"square-0\": 57941,\n  \"square-1\": 57942,\n  \"square-2\": 57943,\n  \"square-3\": 57944,\n  \"square-4\": 57945,\n  \"square-5\": 57946,\n  \"square-6\": 57947,\n  \"square-7\": 57948,\n  \"square-8\": 57949,\n  \"square-9\": 57950,\n  \"square-a-lock\": 58445,\n  \"square-a\": 57951,\n  \"square-ampersand\": 57952,\n  \"square-arrow-down-left\": 57953,\n  \"square-arrow-down-right\": 57954,\n  \"square-arrow-down\": 62265,\n  \"square-arrow-left\": 62266,\n  \"square-arrow-right\": 62267,\n  \"square-arrow-up-left\": 57955,\n  \"square-arrow-up-right\": 61772,\n  \"square-arrow-up\": 62268,\n  \"square-austral\": 59174,\n  \"square-australian-dollar\": 59160,\n  \"square-b\": 57956,\n  \"square-baht\": 59161,\n  \"square-bangladeshi-taka\": 59204,\n  \"square-binary\": 59035,\n  \"square-bitcoin\": 59122,\n  \"square-bolt\": 57957,\n  \"square-brazilian-real\": 59121,\n  \"square-c\": 57958,\n  \"square-caret-down\": 61776,\n  \"square-caret-left\": 61841,\n  \"square-caret-right\": 61778,\n  \"square-caret-up\": 61777,\n  \"square-cedi\": 59177,\n  \"square-cent\": 59120,\n  \"square-check\": 61770,\n  \"square-chevron-down\": 62249,\n  \"square-chevron-left\": 62250,\n  \"square-chevron-right\": 62251,\n  \"square-chevron-up\": 62252,\n  \"square-chf\": 59110,\n  \"square-code\": 57959,\n  \"square-colon\": 59194,\n  \"square-cruzeiro\": 59117,\n  \"square-currency\": 59148,\n  \"square-d\": 57960,\n  \"square-danish-krone\": 59207,\n  \"square-dashed-circle-plus\": 58818,\n  \"square-dashed\": 57961,\n  \"square-divide\": 57962,\n  \"square-dollar\": 62185,\n  \"square-dong\": 59151,\n  \"square-down-left\": 57963,\n  \"square-down-right\": 57964,\n  \"square-down\": 62288,\n  \"square-e\": 57965,\n  \"square-ellipsis-vertical\": 57967,\n  \"square-ellipsis\": 57966,\n  \"square-envelope\": 61849,\n  \"square-equals\": 59062,\n  \"square-euro\": 59186,\n  \"square-eurozone\": 59175,\n  \"square-exclamation\": 62241,\n  \"square-f\": 57968,\n  \"square-florin\": 59159,\n  \"square-fragile\": 62619,\n  \"square-franc\": 59183,\n  \"square-full\": 62556,\n  \"square-g\": 57969,\n  \"square-guarani\": 59150,\n  \"square-h\": 61693,\n  \"square-half-horizontal\": 59406,\n  \"square-half-stroke-horizontal\": 59407,\n  \"square-half-stroke\": 59283,\n  \"square-half\": 59282,\n  \"square-heart\": 62664,\n  \"square-hryvnia\": 59152,\n  \"square-i\": 57970,\n  \"square-indian-rupee\": 59125,\n  \"square-info\": 62223,\n  \"square-j\": 57971,\n  \"square-k\": 57972,\n  \"square-kanban\": 58504,\n  \"square-kip\": 59149,\n  \"square-l\": 57973,\n  \"square-lari\": 59199,\n  \"square-left\": 62289,\n  \"square-lira\": 59111,\n  \"square-list\": 58505,\n  \"square-litecoin\": 59127,\n  \"square-m\": 57974,\n  \"square-malaysian-ringgit\": 59208,\n  \"square-manat\": 59140,\n  \"square-microphone\": 59265,\n  \"square-mill\": 59146,\n  \"square-minus\": 61766,\n  \"square-n\": 57975,\n  \"square-naira\": 59144,\n  \"square-nfi\": 58742,\n  \"square-norwegian-krone\": 59143,\n  \"square-o\": 57976,\n  \"square-p\": 57977,\n  \"square-parking-slash\": 62999,\n  \"square-parking\": 62784,\n  \"square-pen\": 61771,\n  \"square-person-confined\": 58743,\n  \"square-peruvian-soles\": 59158,\n  \"square-peseta\": 59114,\n  \"square-peso\": 59162,\n  \"square-phone-flip\": 63611,\n  \"square-phone-hangup\": 57978,\n  \"square-phone\": 61592,\n  \"square-plus\": 61694,\n  \"square-polish-zloty\": 59190,\n  \"square-poll-horizontal\": 63106,\n  \"square-poll-vertical\": 63105,\n  \"square-q\": 57979,\n  \"square-quarters\": 58446,\n  \"square-question\": 62205,\n  \"square-quote\": 58153,\n  \"square-r\": 57980,\n  \"square-renminbi\": 59197,\n  \"square-right\": 62290,\n  \"square-ring\": 58447,\n  \"square-root-alt\": 63128,\n  \"square-root-variable\": 63128,\n  \"square-root\": 63127,\n  \"square-rss\": 61763,\n  \"square-ruble\": 59128,\n  \"square-rupee\": 59157,\n  \"square-rupiah\": 59154,\n  \"square-s\": 57981,\n  \"square-share-nodes\": 61921,\n  \"square-shekel\": 59189,\n  \"square-sliders-vertical\": 62450,\n  \"square-sliders\": 62448,\n  \"square-small\": 57982,\n  \"square-star\": 57983,\n  \"square-sterling\": 59155,\n  \"square-swedish-krona\": 59164,\n  \"square-t\": 57984,\n  \"square-tenge\": 59185,\n  \"square-terminal\": 58154,\n  \"square-this-way-up\": 62623,\n  \"square-tugrik\": 59176,\n  \"square-turkish-lira\": 59167,\n  \"square-u\": 57985,\n  \"square-up-left\": 57986,\n  \"square-up-right\": 62304,\n  \"square-up\": 62291,\n  \"square-user\": 57987,\n  \"square-v\": 57988,\n  \"square-virus\": 58744,\n  \"square-w\": 57989,\n  \"square-wine-glass-crack\": 62619,\n  \"square-won\": 59145,\n  \"square-x\": 57990,\n  \"square-xmark\": 62163,\n  \"square-y\": 57991,\n  \"square-yen\": 59172,\n  \"square-z\": 57992,\n  \"square\": 61640,\n  \"squareapore-dollar\": 59187,\n  \"squid\": 58448,\n  \"squirrel\": 63258,\n  \"stadium\": 59084,\n  \"staff-aesculapius\": 58745,\n  \"staff-snake\": 58745,\n  \"staff\": 63259,\n  \"stair-car\": 59333,\n  \"stairs\": 57993,\n  \"stamp\": 62911,\n  \"standard-definition\": 57994,\n  \"stapler\": 58799,\n  \"star-and-crescent\": 63129,\n  \"star-christmas\": 63444,\n  \"star-circle\": 57635,\n  \"star-exclamation\": 62195,\n  \"star-half-alt\": 62912,\n  \"star-half-stroke\": 62912,\n  \"star-half\": 61577,\n  \"star-of-david\": 63130,\n  \"star-of-life\": 63009,\n  \"star-sharp-half-alt\": 57997,\n  \"star-sharp-half-stroke\": 57997,\n  \"star-sharp-half\": 57996,\n  \"star-sharp\": 57995,\n  \"star-shooting\": 57398,\n  \"star\": 61445,\n  \"starfighter-alt-advanced\": 57998,\n  \"starfighter-alt\": 57400,\n  \"starfighter-twin-ion-engine-advanced\": 57998,\n  \"starfighter-twin-ion-engine\": 57400,\n  \"starfighter\": 57399,\n  \"stars\": 63330,\n  \"starship-freighter\": 57402,\n  \"starship\": 57401,\n  \"steak\": 63524,\n  \"steering-wheel\": 63010,\n  \"step-backward\": 61512,\n  \"step-forward\": 61521,\n  \"sterling-sign\": 61780,\n  \"stethoscope\": 61681,\n  \"sticky-note\": 62025,\n  \"stocking\": 63445,\n  \"stomach\": 63011,\n  \"stool\": 59520,\n  \"stop-circle\": 62093,\n  \"stop\": 61517,\n  \"stopwatch-20\": 57455,\n  \"stopwatch\": 62194,\n  \"store-24\": 59291,\n  \"store-alt-slash\": 57456,\n  \"store-alt\": 62799,\n  \"store-lock\": 58534,\n  \"store-slash\": 57457,\n  \"store\": 62798,\n  \"strawberry\": 58155,\n  \"stream\": 62800,\n  \"street-view\": 61981,\n  \"stretcher\": 63525,\n  \"strikethrough\": 61644,\n  \"stroopwafel\": 62801,\n  \"subscript\": 61740,\n  \"subtitles-slash\": 58896,\n  \"subtitles\": 58895,\n  \"subtract\": 61544,\n  \"subway-tunnel\": 58019,\n  \"subway\": 62009,\n  \"suitcase-medical\": 61690,\n  \"suitcase-rolling\": 62913,\n  \"suitcase\": 61682,\n  \"sun-alt\": 57999,\n  \"sun-bright\": 57999,\n  \"sun-cloud\": 63331,\n  \"sun-dust\": 63332,\n  \"sun-haze\": 63333,\n  \"sun-plant-wilt\": 58746,\n  \"sun\": 61829,\n  \"sunglasses\": 63634,\n  \"sunrise\": 63334,\n  \"sunset\": 63335,\n  \"superscript\": 61739,\n  \"surprise\": 62914,\n  \"sushi-roll\": 58507,\n  \"sushi\": 58506,\n  \"swap-arrows\": 58890,\n  \"swap\": 58889,\n  \"swatchbook\": 62915,\n  \"swedish-krona-sign\": 59198,\n  \"swimmer\": 62916,\n  \"swimming-pool\": 62917,\n  \"sword-laser-alt\": 57404,\n  \"sword-laser\": 57403,\n  \"sword\": 63260,\n  \"swords-laser\": 57405,\n  \"swords\": 63261,\n  \"symbols\": 63598,\n  \"synagogue\": 63131,\n  \"sync-alt\": 62193,\n  \"sync\": 61473,\n  \"syringe\": 62606,\n  \"t-rex\": 58921,\n  \"t-shirt\": 62803,\n  \"t\": 84,\n  \"table-bar\": 59550,\n  \"table-cells-column-lock\": 59000,\n  \"table-cells-column-unlock\": 59024,\n  \"table-cells-columns\": 59052,\n  \"table-cells-header-lock\": 59054,\n  \"table-cells-header-unlock\": 59055,\n  \"table-cells-header\": 59053,\n  \"table-cells-large\": 61449,\n  \"table-cells-lock\": 59001,\n  \"table-cells-merge\": 59532,\n  \"table-cells-row-lock\": 59002,\n  \"table-cells-row-unlock\": 59025,\n  \"table-cells-rows\": 59056,\n  \"table-cells-split\": 59533,\n  \"table-cells-unlock\": 59026,\n  \"table-cells\": 61450,\n  \"table-columns-add-after\": 59534,\n  \"table-columns-add-before\": 59535,\n  \"table-columns-merge-next\": 59536,\n  \"table-columns-merge-previous\": 59537,\n  \"table-columns-remove-after\": 59538,\n  \"table-columns-remove-before\": 59539,\n  \"table-columns\": 61659,\n  \"table-dining\": 59522,\n  \"table-layout\": 58000,\n  \"table-list\": 61451,\n  \"table-picnic\": 58157,\n  \"table-pivot\": 58001,\n  \"table-rows-add-above\": 59540,\n  \"table-rows-add-below\": 59541,\n  \"table-rows-merge-next\": 59542,\n  \"table-rows-merge-previous\": 59543,\n  \"table-rows-remove-above\": 59544,\n  \"table-rows-remove-below\": 59545,\n  \"table-rows\": 58002,\n  \"table-slash\": 59546,\n  \"table-tennis-paddle-ball\": 62557,\n  \"table-tennis\": 62557,\n  \"table-tree\": 58003,\n  \"table\": 61646,\n  \"tablet-alt\": 62458,\n  \"tablet-android-alt\": 62460,\n  \"tablet-android\": 62459,\n  \"tablet-button\": 61706,\n  \"tablet-rugged\": 62607,\n  \"tablet-screen-button\": 62458,\n  \"tablet-screen\": 62460,\n  \"tablet\": 62459,\n  \"tablets\": 62608,\n  \"tachograph-digital\": 62822,\n  \"tachometer-alt-average\": 63012,\n  \"tachometer-alt-fast\": 63013,\n  \"tachometer-alt-fastest\": 63014,\n  \"tachometer-alt-slow\": 63015,\n  \"tachometer-alt-slowest\": 63016,\n  \"tachometer-alt\": 63013,\n  \"tachometer-average\": 63017,\n  \"tachometer-fast\": 63018,\n  \"tachometer-fastest\": 63019,\n  \"tachometer-slow\": 63020,\n  \"tachometer-slowest\": 63021,\n  \"tachometer\": 63018,\n  \"taco\": 63526,\n  \"tag\": 61483,\n  \"tags\": 61484,\n  \"tally-1\": 58004,\n  \"tally-2\": 58005,\n  \"tally-3\": 58006,\n  \"tally-4\": 58007,\n  \"tally-5\": 63132,\n  \"tally\": 63132,\n  \"tamale\": 58449,\n  \"tanakh\": 63527,\n  \"tank-recovery\": 59429,\n  \"tank-water\": 58450,\n  \"tape\": 62683,\n  \"tarp-droplet\": 58748,\n  \"tarp\": 58747,\n  \"tasks-alt\": 63528,\n  \"tasks\": 61614,\n  \"taurus\": 59471,\n  \"taxi-bus\": 58008,\n  \"taxi\": 61882,\n  \"teddy-bear\": 58319,\n  \"teeth-open\": 63023,\n  \"teeth\": 63022,\n  \"telescope\": 57406,\n  \"teletype-answer\": 58041,\n  \"teletype\": 61924,\n  \"television\": 62060,\n  \"temperature-0\": 62155,\n  \"temperature-1\": 62154,\n  \"temperature-2\": 62153,\n  \"temperature-3\": 62152,\n  \"temperature-4\": 62151,\n  \"temperature-arrow-down\": 57407,\n  \"temperature-arrow-up\": 57408,\n  \"temperature-down\": 57407,\n  \"temperature-empty\": 62155,\n  \"temperature-frigid\": 63336,\n  \"temperature-full\": 62151,\n  \"temperature-half\": 62153,\n  \"temperature-high\": 63337,\n  \"temperature-hot\": 63338,\n  \"temperature-list\": 58009,\n  \"temperature-low\": 63339,\n  \"temperature-quarter\": 62154,\n  \"temperature-slash\": 59339,\n  \"temperature-snow\": 63336,\n  \"temperature-sun\": 63338,\n  \"temperature-three-quarters\": 62152,\n  \"temperature-up\": 57408,\n  \"tenge-sign\": 63447,\n  \"tenge\": 63447,\n  \"tennis-ball\": 62558,\n  \"tent-arrow-down-to-line\": 58750,\n  \"tent-arrow-left-right\": 58751,\n  \"tent-arrow-turn-left\": 58752,\n  \"tent-arrows-down\": 58753,\n  \"tent-circus\": 59085,\n  \"tent-double-peak\": 58919,\n  \"tent\": 58749,\n  \"tents\": 58754,\n  \"terminal\": 61728,\n  \"text-height\": 61492,\n  \"text-size\": 63636,\n  \"text-slash\": 63613,\n  \"text-width\": 61493,\n  \"text\": 63635,\n  \"th-large\": 61449,\n  \"th-list\": 61451,\n  \"th\": 61450,\n  \"theater-masks\": 63024,\n  \"thermometer-0\": 62155,\n  \"thermometer-1\": 62154,\n  \"thermometer-2\": 62153,\n  \"thermometer-3\": 62152,\n  \"thermometer-4\": 62151,\n  \"thermometer-empty\": 62155,\n  \"thermometer-full\": 62151,\n  \"thermometer-half\": 62153,\n  \"thermometer-quarter\": 62154,\n  \"thermometer-three-quarters\": 62152,\n  \"thermometer\": 62609,\n  \"theta\": 63134,\n  \"thought-bubble\": 58158,\n  \"thumb-tack-slash\": 59023,\n  \"thumb-tack\": 61581,\n  \"thumbs-down\": 61797,\n  \"thumbs-up\": 61796,\n  \"thumbtack-angle-slash\": 59218,\n  \"thumbtack-angle\": 59217,\n  \"thumbtack-slash\": 59023,\n  \"thumbtack\": 61581,\n  \"thunderstorm-moon\": 63341,\n  \"thunderstorm-sun\": 63342,\n  \"thunderstorm\": 63340,\n  \"tick\": 58159,\n  \"ticket-airline\": 58010,\n  \"ticket-alt\": 62463,\n  \"ticket-perforated-plane\": 58010,\n  \"ticket-perforated\": 58942,\n  \"ticket-plane\": 58010,\n  \"ticket-simple\": 62463,\n  \"ticket\": 61765,\n  \"tickets-airline\": 58011,\n  \"tickets-perforated-plane\": 58011,\n  \"tickets-perforated\": 58943,\n  \"tickets-plane\": 58011,\n  \"tickets-simple\": 58969,\n  \"tickets\": 58968,\n  \"tilde\": 126,\n  \"timeline-arrow\": 58013,\n  \"timeline\": 58012,\n  \"timer\": 58014,\n  \"times-circle\": 61527,\n  \"times-hexagon\": 62190,\n  \"times-octagon\": 62192,\n  \"times-rectangle\": 62480,\n  \"times-square\": 62163,\n  \"times-to-slot\": 63345,\n  \"times\": 61453,\n  \"tint-slash\": 62919,\n  \"tint\": 61507,\n  \"tire-flat\": 63026,\n  \"tire-pressure-warning\": 63027,\n  \"tire-rugged\": 63028,\n  \"tire\": 63025,\n  \"tired\": 62920,\n  \"toggle-large-off\": 58800,\n  \"toggle-large-on\": 58801,\n  \"toggle-off\": 61956,\n  \"toggle-on\": 61957,\n  \"toilet-paper-alt\": 63262,\n  \"toilet-paper-blank-under\": 58016,\n  \"toilet-paper-blank\": 63262,\n  \"toilet-paper-check\": 58802,\n  \"toilet-paper-reverse-alt\": 58016,\n  \"toilet-paper-reverse-slash\": 58017,\n  \"toilet-paper-reverse\": 58016,\n  \"toilet-paper-slash\": 57458,\n  \"toilet-paper-under-slash\": 58017,\n  \"toilet-paper-under\": 58016,\n  \"toilet-paper-xmark\": 58803,\n  \"toilet-paper\": 63262,\n  \"toilet-portable\": 58755,\n  \"toilet\": 63448,\n  \"toilets-portable\": 58756,\n  \"tomato\": 58160,\n  \"tombstone-alt\": 63265,\n  \"tombstone-blank\": 63265,\n  \"tombstone\": 63264,\n  \"toolbox\": 62802,\n  \"tools\": 63449,\n  \"tooth\": 62921,\n  \"toothbrush\": 63029,\n  \"torah\": 63136,\n  \"torii-gate\": 63137,\n  \"tornado\": 63343,\n  \"tower-broadcast\": 62745,\n  \"tower-cell\": 58757,\n  \"tower-control\": 58018,\n  \"tower-observation\": 58758,\n  \"tower-receive\": 59555,\n  \"tractor\": 63266,\n  \"trademark\": 62044,\n  \"traffic-cone\": 63030,\n  \"traffic-light-go\": 63032,\n  \"traffic-light-slow\": 63033,\n  \"traffic-light-stop\": 63034,\n  \"traffic-light\": 63031,\n  \"trailer\": 57409,\n  \"train-stop\": 59423,\n  \"train-subway-tunnel\": 58019,\n  \"train-subway\": 62009,\n  \"train-track\": 58451,\n  \"train-tram\": 58804,\n  \"train-tunnel\": 58452,\n  \"train\": 62008,\n  \"tram\": 63450,\n  \"transducer\": 59430,\n  \"transformer-bolt\": 58020,\n  \"transgender-alt\": 61989,\n  \"transgender\": 61989,\n  \"transmission\": 59394,\n  \"transporter-1\": 57411,\n  \"transporter-2\": 57412,\n  \"transporter-3\": 57413,\n  \"transporter-4\": 58021,\n  \"transporter-5\": 58022,\n  \"transporter-6\": 58023,\n  \"transporter-7\": 58024,\n  \"transporter-empty\": 57414,\n  \"transporter\": 57410,\n  \"trash-alt-slash\": 58029,\n  \"trash-alt\": 62189,\n  \"trash-arrow-turn-left\": 63637,\n  \"trash-arrow-up\": 63529,\n  \"trash-can-arrow-turn-left\": 63638,\n  \"trash-can-arrow-up\": 63530,\n  \"trash-can-check\": 58025,\n  \"trash-can-clock\": 58026,\n  \"trash-can-list\": 58027,\n  \"trash-can-plus\": 58028,\n  \"trash-can-slash\": 58029,\n  \"trash-can-undo\": 63638,\n  \"trash-can-xmark\": 58030,\n  \"trash-can\": 62189,\n  \"trash-check\": 58031,\n  \"trash-circle\": 57638,\n  \"trash-clock\": 58032,\n  \"trash-list\": 58033,\n  \"trash-plus\": 58034,\n  \"trash-restore-alt\": 63530,\n  \"trash-restore\": 63529,\n  \"trash-slash\": 58035,\n  \"trash-undo-alt\": 63638,\n  \"trash-undo\": 63637,\n  \"trash-xmark\": 58036,\n  \"trash\": 61944,\n  \"treasure-chest\": 63267,\n  \"tree-alt\": 62464,\n  \"tree-christmas\": 63451,\n  \"tree-city\": 58759,\n  \"tree-deciduous\": 62464,\n  \"tree-decorated\": 63452,\n  \"tree-large\": 63453,\n  \"tree-palm\": 63531,\n  \"tree\": 61883,\n  \"trees\": 63268,\n  \"trian-balbot\": 58460,\n  \"triangle-circle-square\": 63007,\n  \"triangle-exclamation\": 61553,\n  \"triangle-instrument\": 63714,\n  \"triangle-music\": 63714,\n  \"triangle-person-digging\": 63581,\n  \"triangle\": 62188,\n  \"tricycle-adult\": 58820,\n  \"tricycle\": 58819,\n  \"trillium\": 58760,\n  \"triple-chevrons-down\": 59383,\n  \"triple-chevrons-left\": 59384,\n  \"triple-chevrons-right\": 59385,\n  \"triple-chevrons-up\": 59386,\n  \"trombone\": 59266,\n  \"trophy-alt\": 62187,\n  \"trophy-star\": 62187,\n  \"trophy\": 61585,\n  \"trowel-bricks\": 58762,\n  \"trowel\": 58761,\n  \"truck-arrow-right\": 58763,\n  \"truck-bolt\": 58320,\n  \"truck-clock\": 62604,\n  \"truck-container-empty\": 58037,\n  \"truck-container\": 62684,\n  \"truck-couch\": 62685,\n  \"truck-droplet\": 58764,\n  \"truck-fast\": 62603,\n  \"truck-field-un\": 58766,\n  \"truck-field\": 58765,\n  \"truck-fire\": 58970,\n  \"truck-flatbed\": 58038,\n  \"truck-front\": 58039,\n  \"truck-ladder\": 58967,\n  \"truck-loading\": 62686,\n  \"truck-medical\": 61689,\n  \"truck-monster\": 63035,\n  \"truck-moving\": 62687,\n  \"truck-pickup\": 63036,\n  \"truck-plane\": 58767,\n  \"truck-plow\": 63454,\n  \"truck-ramp-box\": 62686,\n  \"truck-ramp-couch\": 62685,\n  \"truck-ramp\": 62688,\n  \"truck-suv\": 59334,\n  \"truck-tow\": 58040,\n  \"truck-utensils\": 58920,\n  \"truck\": 61649,\n  \"trumpet\": 63715,\n  \"try\": 58043,\n  \"tshirt\": 62803,\n  \"tty-answer\": 58041,\n  \"tty\": 61924,\n  \"tugrik-sign\": 58042,\n  \"turkey\": 63269,\n  \"turkish-lira-sign\": 58043,\n  \"turkish-lira\": 58043,\n  \"turn-down-left\": 58161,\n  \"turn-down-right\": 58453,\n  \"turn-down\": 62398,\n  \"turn-left-down\": 58935,\n  \"turn-left-up\": 58936,\n  \"turn-left\": 58934,\n  \"turn-right\": 58937,\n  \"turn-up\": 62399,\n  \"turntable\": 63716,\n  \"turtle\": 63270,\n  \"tv-alt\": 62060,\n  \"tv-music\": 63718,\n  \"tv-retro\": 62465,\n  \"tv\": 62060,\n  \"typewriter\": 63719,\n  \"u-turn-down-left\": 59375,\n  \"u-turn-down-right\": 59376,\n  \"u-turn-left-down\": 59377,\n  \"u-turn-left-up\": 59378,\n  \"u-turn-right-down\": 59379,\n  \"u-turn-right-up\": 59380,\n  \"u-turn-up-left\": 59381,\n  \"u-turn-up-right\": 59382,\n  \"u-turn\": 59377,\n  \"u\": 85,\n  \"ufo-beam\": 57416,\n  \"ufo\": 57415,\n  \"umbrella-alt\": 58044,\n  \"umbrella-beach\": 62922,\n  \"umbrella-simple\": 58044,\n  \"umbrella\": 61673,\n  \"underline\": 61645,\n  \"undo-alt\": 62186,\n  \"undo\": 61666,\n  \"unicorn\": 63271,\n  \"unicycle\": 59335,\n  \"uniform-martial-arts\": 58321,\n  \"union\": 63138,\n  \"universal-access\": 62106,\n  \"university\": 61852,\n  \"unlink\": 61735,\n  \"unlock-alt\": 61758,\n  \"unlock-keyhole\": 61758,\n  \"unlock\": 61596,\n  \"unsorted\": 61660,\n  \"up-down-left-right\": 61618,\n  \"up-down\": 62264,\n  \"up-from-bracket\": 58768,\n  \"up-from-dotted-line\": 58454,\n  \"up-from-line\": 62278,\n  \"up-left\": 58045,\n  \"up-long-to-line\": 59078,\n  \"up-long\": 62220,\n  \"up-right-and-down-left-from-center\": 62500,\n  \"up-right-from-square\": 62301,\n  \"up-right\": 58046,\n  \"up-to-bracket\": 58990,\n  \"up-to-dotted-line\": 58455,\n  \"up-to-line\": 62285,\n  \"up\": 62295,\n  \"upload\": 61587,\n  \"usb-drive\": 63721,\n  \"usd-circle\": 62184,\n  \"usd-square\": 62185,\n  \"usd\": 36,\n  \"user-alien\": 57418,\n  \"user-alt-slash\": 62726,\n  \"user-alt\": 61447,\n  \"user-astronaut\": 62715,\n  \"user-beard-bolt\": 59017,\n  \"user-beard\": 59304,\n  \"user-bounty-hunter\": 58047,\n  \"user-chart\": 63139,\n  \"user-check\": 62716,\n  \"user-chef-hair-long\": 59305,\n  \"user-chef\": 58322,\n  \"user-circle-minus\": 59306,\n  \"user-circle-plus\": 59307,\n  \"user-circle\": 62141,\n  \"user-clock\": 62717,\n  \"user-cog\": 62718,\n  \"user-construction\": 63532,\n  \"user-cowboy\": 63722,\n  \"user-crown\": 63140,\n  \"user-dashed\": 59308,\n  \"user-doctor-hair-long\": 58457,\n  \"user-doctor-hair-mullet\": 59309,\n  \"user-doctor-hair\": 58456,\n  \"user-doctor-message\": 63534,\n  \"user-doctor\": 61680,\n  \"user-edit\": 62719,\n  \"user-friends\": 62720,\n  \"user-gear\": 62718,\n  \"user-graduate\": 62721,\n  \"user-group-crown\": 63141,\n  \"user-group-simple\": 58883,\n  \"user-group\": 62720,\n  \"user-hair-buns\": 58323,\n  \"user-hair-long\": 58459,\n  \"user-hair-mullet\": 58460,\n  \"user-hair\": 58458,\n  \"user-hard-hat\": 63532,\n  \"user-hat-tie-magnifying-glass\": 59311,\n  \"user-hat-tie\": 59310,\n  \"user-headset\": 63533,\n  \"user-helmet-safety\": 63532,\n  \"user-hoodie\": 59018,\n  \"user-injured\": 63272,\n  \"user-key\": 59312,\n  \"user-large-slash\": 62726,\n  \"user-large\": 61447,\n  \"user-lock\": 62722,\n  \"user-magnifying-glass\": 58821,\n  \"user-md-chat\": 63534,\n  \"user-md\": 61680,\n  \"user-message\": 59313,\n  \"user-microphone\": 59314,\n  \"user-minus\": 62723,\n  \"user-music\": 63723,\n  \"user-ninja\": 62724,\n  \"user-nurse-hair-long\": 58462,\n  \"user-nurse-hair\": 58461,\n  \"user-nurse\": 63535,\n  \"user-pen\": 62719,\n  \"user-pilot-hair-long\": 59315,\n  \"user-pilot-tie-hair-long\": 59316,\n  \"user-pilot-tie\": 58049,\n  \"user-pilot\": 58048,\n  \"user-plus\": 62004,\n  \"user-police-hair-long\": 59317,\n  \"user-police-tie-hair-long\": 59318,\n  \"user-police-tie\": 58164,\n  \"user-police\": 58163,\n  \"user-question\": 59319,\n  \"user-robot-xmarks\": 58535,\n  \"user-robot\": 57419,\n  \"user-secret\": 61979,\n  \"user-shakespeare\": 58050,\n  \"user-shield\": 62725,\n  \"user-sith\": 59320,\n  \"user-slash\": 62726,\n  \"user-tag\": 62727,\n  \"user-tie-hair-long\": 58464,\n  \"user-tie-hair-mullet\": 59321,\n  \"user-tie-hair\": 58463,\n  \"user-tie\": 62728,\n  \"user-times\": 62005,\n  \"user-unlock\": 57432,\n  \"user-viewfinder\": 59253,\n  \"user-visor\": 57420,\n  \"user-vneck-hair-long\": 58467,\n  \"user-vneck-hair-mullet\": 59322,\n  \"user-vneck-hair\": 58466,\n  \"user-vneck\": 58465,\n  \"user-xmark\": 62005,\n  \"user\": 61447,\n  \"users-between-lines\": 58769,\n  \"users-class\": 63037,\n  \"users-cog\": 62729,\n  \"users-crown\": 63141,\n  \"users-gear\": 62729,\n  \"users-line\": 58770,\n  \"users-medical\": 63536,\n  \"users-rays\": 58771,\n  \"users-rectangle\": 58772,\n  \"users-slash\": 57459,\n  \"users-viewfinder\": 58773,\n  \"users\": 61632,\n  \"utensil-fork\": 62179,\n  \"utensil-knife\": 62180,\n  \"utensil-spoon\": 62181,\n  \"utensils-alt\": 62182,\n  \"utensils-slash\": 58468,\n  \"utensils\": 62183,\n  \"utility-can\": 59549,\n  \"utility-pole-double\": 58052,\n  \"utility-pole\": 58051,\n  \"v\": 86,\n  \"vacuum-robot\": 57422,\n  \"vacuum\": 57421,\n  \"value-absolute\": 63142,\n  \"van-shuttle\": 62902,\n  \"van\": 59336,\n  \"vault\": 58053,\n  \"vcard\": 62139,\n  \"vector-circle\": 62957,\n  \"vector-polygon\": 62958,\n  \"vector-square\": 62959,\n  \"vent-damper\": 58469,\n  \"venus-double\": 61990,\n  \"venus-mars\": 61992,\n  \"venus\": 61985,\n  \"vest-patches\": 57478,\n  \"vest\": 57477,\n  \"vhs\": 63724,\n  \"vial-circle-check\": 58774,\n  \"vial-vertical\": 59234,\n  \"vial-virus\": 58775,\n  \"vial\": 62610,\n  \"vials\": 62611,\n  \"video-arrow-down-left\": 58056,\n  \"video-arrow-up-right\": 58057,\n  \"video-camera\": 61501,\n  \"video-circle\": 57643,\n  \"video-down-to-line\": 59254,\n  \"video-handheld\": 63656,\n  \"video-plus\": 62689,\n  \"video-question\": 59255,\n  \"video-slash\": 62690,\n  \"video\": 61501,\n  \"vihara\": 63143,\n  \"violin\": 63725,\n  \"virgo\": 59472,\n  \"virus-covid-slash\": 58537,\n  \"virus-covid\": 58536,\n  \"virus-slash\": 57461,\n  \"virus\": 57460,\n  \"viruses\": 57462,\n  \"voicemail\": 63639,\n  \"volcano\": 63344,\n  \"volleyball-ball\": 62559,\n  \"volleyball\": 62559,\n  \"volume-control-phone\": 62112,\n  \"volume-down\": 61479,\n  \"volume-high\": 61480,\n  \"volume-low\": 61479,\n  \"volume-medium\": 63144,\n  \"volume-mute\": 63145,\n  \"volume-off\": 61478,\n  \"volume-slash\": 62178,\n  \"volume-times\": 63145,\n  \"volume-up\": 61480,\n  \"volume-xmark\": 63145,\n  \"volume\": 63144,\n  \"vote-nay\": 63345,\n  \"vote-yea\": 63346,\n  \"vr-cardboard\": 63273,\n  \"w\": 87,\n  \"waffle\": 58470,\n  \"wagon-covered\": 63726,\n  \"walker\": 63537,\n  \"walkie-talkie\": 63727,\n  \"walking\": 62804,\n  \"wall-brick\": 58331,\n  \"wallet\": 62805,\n  \"wand-magic-sparkles\": 58058,\n  \"wand-magic\": 61648,\n  \"wand-sparkles\": 63275,\n  \"wand\": 63274,\n  \"wardrobe\": 59521,\n  \"warehouse-alt\": 62613,\n  \"warehouse-full\": 62613,\n  \"warehouse\": 62612,\n  \"warning\": 61553,\n  \"washer\": 63640,\n  \"washing-machine\": 63640,\n  \"watch-apple\": 58059,\n  \"watch-calculator\": 63728,\n  \"watch-fitness\": 63038,\n  \"watch-smart\": 58060,\n  \"watch\": 62177,\n  \"water-arrow-down\": 63348,\n  \"water-arrow-up\": 63349,\n  \"water-ladder\": 62917,\n  \"water-lower\": 63348,\n  \"water-rise\": 63349,\n  \"water-temp\": 59434,\n  \"water-temperature\": 59434,\n  \"water\": 63347,\n  \"watermelon-slice\": 58167,\n  \"wave-pulse\": 62968,\n  \"wave-sine\": 63641,\n  \"wave-square\": 63550,\n  \"wave-triangle\": 63642,\n  \"wave\": 58971,\n  \"waveform-circle\": 57645,\n  \"waveform-lines\": 63730,\n  \"waveform-path\": 63730,\n  \"waveform\": 63729,\n  \"waves-sine\": 58973,\n  \"web-awesome\": 59010,\n  \"webcam-slash\": 63539,\n  \"webcam\": 63538,\n  \"webhook\": 58837,\n  \"weight-hanging\": 62925,\n  \"weight-scale\": 62614,\n  \"weight\": 62614,\n  \"whale\": 63276,\n  \"wheat-alt\": 58061,\n  \"wheat-awn-circle-exclamation\": 58776,\n  \"wheat-awn-slash\": 58168,\n  \"wheat-awn\": 58061,\n  \"wheat-slash\": 58169,\n  \"wheat\": 63277,\n  \"wheelchair-alt\": 58062,\n  \"wheelchair-move\": 58062,\n  \"wheelchair\": 61843,\n  \"whiskey-glass-ice\": 63393,\n  \"whiskey-glass\": 63392,\n  \"whistle\": 62560,\n  \"wifi-1\": 63146,\n  \"wifi-2\": 63147,\n  \"wifi-3\": 61931,\n  \"wifi-exclamation\": 58063,\n  \"wifi-fair\": 63147,\n  \"wifi-slash\": 63148,\n  \"wifi-strong\": 61931,\n  \"wifi-weak\": 63146,\n  \"wifi\": 61931,\n  \"wind-circle-exclamation\": 63350,\n  \"wind-turbine\": 63643,\n  \"wind-warning\": 63350,\n  \"wind\": 63278,\n  \"window-alt\": 62479,\n  \"window-close\": 62480,\n  \"window-flip\": 62479,\n  \"window-frame-open\": 57424,\n  \"window-frame\": 57423,\n  \"window-maximize\": 62160,\n  \"window-minimize\": 62161,\n  \"window-restore\": 62162,\n  \"window\": 62478,\n  \"windsock\": 63351,\n  \"wine-bottle\": 63279,\n  \"wine-glass-alt\": 62926,\n  \"wine-glass-crack\": 62651,\n  \"wine-glass-empty\": 62926,\n  \"wine-glass\": 62691,\n  \"wireless\": 59359,\n  \"won-sign\": 61785,\n  \"won\": 61785,\n  \"worm\": 58777,\n  \"wreath-laurel\": 58834,\n  \"wreath\": 63458,\n  \"wrench-simple\": 58065,\n  \"wrench\": 61613,\n  \"x-ray\": 62615,\n  \"x\": 88,\n  \"xmark-circle\": 61527,\n  \"xmark-hexagon\": 62190,\n  \"xmark-large\": 58779,\n  \"xmark-octagon\": 62192,\n  \"xmark-square\": 62163,\n  \"xmark-to-slot\": 63345,\n  \"xmark\": 61453,\n  \"xmarks-lines\": 58778,\n  \"y\": 89,\n  \"yen-sign\": 61783,\n  \"yen\": 61783,\n  \"yin-yang\": 63149,\n  \"z\": 90,\n  \"zap\": 61671,\n  \"zzz\": 63616\n}"
  },
  {
    "path": "packages/fontawesome-pro-duotone-thin/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontawesome-pro-duotone-thin\",\n  \"version\": \"0.2.0\",\n  \"description\": \"Fontawesome Pro Duotone Thin font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"fontawesome-pro-duotone-thin\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/fontawesome-pro-duotone-thin\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-thin/react-native-vector-icons-fontawesome-pro-duotone-thin.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-fontawesome-pro-duotone-thin'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\n\n  s.script_phase = {\n    name: 'Copy Custom Fonts',\n    execution_position: :after_compile,\n    script: <<~SCRIPT\n      set -e\n\n      HEAD=\"(RNVI-fontawesome-pro-duotone-thin)\"\n\n      echo \"${HEAD} START_COPY_FONTS\"\n\n      echo \"${HEAD} PWD: $(pwd)\"\n\n      #\n      # Find the custom font Directory\n      #\n\n      # Assume the project root is always two directories above the POD_ROOT\n      echo \"${HEAD} PODS_ROOT: $PODS_ROOT\"\n\n      PROJECT_ROOT=\"${PODS_ROOT}/../..\"\n      echo \"${HEAD} PROJECT_ROOT: $PROJECT_ROOT\"\n\n      cd $PROJECT_ROOT\n      FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/\"//g')\n      if [ -z \"$FONTS_DIR\" ]; then\n        FONTS_DIR=\"rnvi-fonts\"\n      fi\n      echo \"${HEAD} FONTS_DIR: $FONTS_DIR\"\n\n      FONTS_DIR=\"${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-duotone-thin\"\n      if [ ! -d \"$FONTS_DIR\" ]; then\n        echo \"${HEAD} $FONTS_DIR not found\"\n        exit 0\n      fi\n\n      #\n      # Find the destination we copy to\n      #\n\n      echo \"${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR\"\n      XCODE_DIR=$(ls -d \"$PODS_CONFIGURATION_BUILD_DIR\"/*.app)\n      echo \"${HEAD} XCODE_DIR: $XCODE_DIR\"\n      if [ -z \"$XCODE_DIR\" ]; then\n        echo \"Could not find XCODE_DIR to copy fonts to\"\n        exit 1\n      fi\n\n      DEST_DIR=\"${XCODE_DIR}\"\n      mkdir -p \"$DEST_DIR\"\n\n      #\n      # Copy the fonts\n      #\n\n      echo \"${HEAD} Copying the following files to $DEST_DIR\"\n      ls \"$FONTS_DIR\" | sed \"s/^/${HEAD} /\"\n\n      rsync -avr --copy-links --no-relative $FONTS_DIR/ \"$DEST_DIR\"\n\n      echo \"${HEAD} END:RNVI_COPY_FONTS\"\n    SCRIPT\n  }\nend\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-thin/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProDuotoneThin icon set component.\n * Usage: <FontAwesomeProDuotoneThin name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProDuotoneThin.json';\n\nexport const FontAwesomeProDuotoneThin = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Duotone-Thin',\n  fontFileName: 'fa-duotone-thin-100.ttf',\n});\n\nexport type FontAwesomeProDuotoneThinIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProDuotoneThin;\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-thin/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProDuotoneThin icon set component.\n * Usage: <FontAwesomeProDuotoneThin name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProDuotoneThin.json';\n\nexport const FontAwesomeProDuotoneThin = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Duotone-Thin',\n  fontFileName: 'fa-duotone-thin-100.ttf',\n});\n\nexport type FontAwesomeProDuotoneThinIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProDuotoneThin;\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-thin/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-duotone-thin/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-light/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontawesome-pro-light\",\n    \"upstreamFont\": {\n      \"registry\": \"https://npm.fontawesome.com\",\n      \"packageName\": \"@fortawesome/fontawesome-pro\",\n      \"versionOnly\": true\n    },\n    \"copyCustomFonts\": true,\n    \"className\": \"FontAwesomeProLight\",\n    \"postScriptName\": \"FontAwesome7Pro-Light\",\n    \"fontFileName\": \"fa-light-300\",\n    \"buildSteps\": {\n      \"preScript\": {\n        \"script\": \"../fontawesome-common/scripts/fetch-pro.sh 7\"\n      },\n      \"glyphmap\": {\n        \"location\": \"fa/pro/css/all.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fa-\"\n      },\n      \"postScript\": {\n        \"script\": \"../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProLight.json fa/pro/svgs/light\\nrm -rf fa\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"0.1.0\",\n        \"upstream\": \"7.1.0\"\n      },\n      {\n        \"rnvi\": \"0.1.1\",\n        \"upstream\": \"7.2.0\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-light/CHANGELOG.md",
    "content": "## 0.2.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 0.1.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 0.1.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🩹 Fixes\n\n- upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 0.1.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 0.1.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontawesome-pro-light/README.md",
    "content": "# React Native Vector Icons - Fontawesome Pro Light\n\nFontawesome Pro Light font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n> [!IMPORTANT]\n> This package does not include the fonts. You must provide them yourself.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/fontawesome-pro-light\n```\n\n## Custom Fonts\n\nThis package requires you to provide the font files. Place your `.ttf` font\nfile in the following location:\n\n```\nrnvi-fonts/fontawesome-pro-light/fa-light-300.ttf\n```\n\nThe font will be automatically copied during the build process for both iOS and\nAndroid.\n\n## Usage\n\n```jsx\nimport { FontAwesomeProLight } from '@react-native-vector-icons/fontawesome-pro-light';\n\n// ...\n\n<FontAwesomeProLight name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 0.1.0 | 7.1.0 |\n| &gt; 0.1.1 | 7.2.0 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/fontawesome-pro-light/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.fontawesome_pro_light\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFontAwesomeProLight\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.fontawesome_pro_light\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-fontawesome-pro-light\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-light/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-light) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n\ntask copyExtraFonts(type: Copy) {\n  from \"${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-light\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-light/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-light) Copying custom font: ${it.file}\" }\n}\n\npreBuild.dependsOn(copyExtraFonts)\n"
  },
  {
    "path": "packages/fontawesome-pro-light/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.fontawesome_pro_light\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-light/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-light/android/src/main/java/VectorIconsFontAwesomeProLightPackage.kt",
    "content": "package com.reactnativevectoricons.fontawesome_pro_light\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFontAwesomeProLightPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-light/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/fontawesome-pro-light/glyphmaps/FontAwesomeProLight.json",
    "content": "{\n  \"0\": 48,\n  \"1\": 49,\n  \"2\": 50,\n  \"3\": 51,\n  \"4\": 52,\n  \"5\": 53,\n  \"6\": 54,\n  \"7\": 55,\n  \"8\": 56,\n  \"9\": 57,\n  \"100\": 58396,\n  \"00\": 58471,\n  \"360-degrees\": 58076,\n  \"a\": 65,\n  \"abacus\": 63040,\n  \"accent-grave\": 96,\n  \"acorn\": 63150,\n  \"ad\": 63041,\n  \"add\": 43,\n  \"address-book\": 62137,\n  \"address-card\": 62139,\n  \"adjust\": 61506,\n  \"aeropress\": 59435,\n  \"air-conditioner\": 63732,\n  \"air-freshener\": 62928,\n  \"airplay-audio\": 59259,\n  \"airplay\": 57481,\n  \"alarm-clock\": 62286,\n  \"alarm-exclamation\": 63555,\n  \"alarm-minus\": 59395,\n  \"alarm-plus\": 63556,\n  \"alarm-snooze\": 63557,\n  \"album-circle-plus\": 58508,\n  \"album-circle-user\": 58509,\n  \"album-collection-circle-plus\": 58510,\n  \"album-collection-circle-user\": 58511,\n  \"album-collection\": 63648,\n  \"album\": 63647,\n  \"alicorn\": 63152,\n  \"alien-8bit\": 63734,\n  \"alien-monster\": 63734,\n  \"alien\": 63733,\n  \"align-center\": 61495,\n  \"align-justify\": 61497,\n  \"align-left\": 61494,\n  \"align-right\": 61496,\n  \"align-slash\": 63558,\n  \"allergies\": 62561,\n  \"almost-equal-to\": 59416,\n  \"alt\": 57482,\n  \"ambulance\": 61689,\n  \"american-sign-language-interpreting\": 62115,\n  \"amp-guitar\": 63649,\n  \"ampersand\": 38,\n  \"analytics\": 63043,\n  \"anchor-circle-check\": 58538,\n  \"anchor-circle-exclamation\": 58539,\n  \"anchor-circle-xmark\": 58540,\n  \"anchor-lock\": 58541,\n  \"anchor\": 61757,\n  \"angel\": 63353,\n  \"angle-90\": 57485,\n  \"angle-double-down\": 61699,\n  \"angle-double-left\": 61696,\n  \"angle-double-right\": 61697,\n  \"angle-double-up\": 61698,\n  \"angle-down\": 61703,\n  \"angle-left\": 61700,\n  \"angle-right\": 61701,\n  \"angle-up\": 61702,\n  \"angle\": 57484,\n  \"angles-down\": 61699,\n  \"angles-left\": 61696,\n  \"angles-right\": 61697,\n  \"angles-up-down\": 58893,\n  \"angles-up\": 61698,\n  \"angry\": 62806,\n  \"ankh\": 63044,\n  \"ant\": 59008,\n  \"apartment\": 58472,\n  \"aperture\": 58079,\n  \"apostrophe\": 39,\n  \"apple-alt\": 62929,\n  \"apple-core\": 57487,\n  \"apple-crate\": 63153,\n  \"apple-whole\": 62929,\n  \"aquarius\": 59461,\n  \"archive\": 61831,\n  \"archway\": 62807,\n  \"area-chart\": 61950,\n  \"aries\": 59462,\n  \"arrow-alt-circle-down\": 62296,\n  \"arrow-alt-circle-left\": 62297,\n  \"arrow-alt-circle-right\": 62298,\n  \"arrow-alt-circle-up\": 62299,\n  \"arrow-alt-down\": 62292,\n  \"arrow-alt-from-bottom\": 62278,\n  \"arrow-alt-from-left\": 62279,\n  \"arrow-alt-from-right\": 62280,\n  \"arrow-alt-from-top\": 62281,\n  \"arrow-alt-left\": 62293,\n  \"arrow-alt-right\": 62294,\n  \"arrow-alt-square-down\": 62288,\n  \"arrow-alt-square-left\": 62289,\n  \"arrow-alt-square-right\": 62290,\n  \"arrow-alt-square-up\": 62291,\n  \"arrow-alt-to-bottom\": 62282,\n  \"arrow-alt-to-left\": 62283,\n  \"arrow-alt-to-right\": 62284,\n  \"arrow-alt-to-top\": 62285,\n  \"arrow-alt-up\": 62295,\n  \"arrow-archery\": 59449,\n  \"arrow-circle-down\": 61611,\n  \"arrow-circle-left\": 61608,\n  \"arrow-circle-right\": 61609,\n  \"arrow-circle-up\": 61610,\n  \"arrow-down-1-9\": 61794,\n  \"arrow-down-9-1\": 63622,\n  \"arrow-down-a-z\": 61789,\n  \"arrow-down-arrow-up\": 63619,\n  \"arrow-down-big-small\": 63628,\n  \"arrow-down-from-arc\": 58900,\n  \"arrow-down-from-bracket\": 58983,\n  \"arrow-down-from-dotted-line\": 57488,\n  \"arrow-down-from-line\": 62277,\n  \"arrow-down-left-and-arrow-up-right-to-center\": 57490,\n  \"arrow-down-left\": 57489,\n  \"arrow-down-long-to-line\": 59063,\n  \"arrow-down-long\": 61813,\n  \"arrow-down-right\": 57491,\n  \"arrow-down-short-wide\": 63620,\n  \"arrow-down-small-big\": 63629,\n  \"arrow-down-square-triangle\": 63625,\n  \"arrow-down-to-arc\": 58542,\n  \"arrow-down-to-bracket\": 57492,\n  \"arrow-down-to-dotted-line\": 57493,\n  \"arrow-down-to-line\": 62269,\n  \"arrow-down-to-square\": 57494,\n  \"arrow-down-triangle-square\": 63624,\n  \"arrow-down-up-across-line\": 58543,\n  \"arrow-down-up-lock\": 58544,\n  \"arrow-down-wide-short\": 61792,\n  \"arrow-down-z-a\": 63617,\n  \"arrow-down\": 61539,\n  \"arrow-from-bottom\": 62274,\n  \"arrow-from-left\": 62275,\n  \"arrow-from-right\": 62276,\n  \"arrow-from-top\": 62277,\n  \"arrow-left-arrow-right\": 59064,\n  \"arrow-left-from-arc\": 58901,\n  \"arrow-left-from-bracket\": 58984,\n  \"arrow-left-from-dotted-line\": 59065,\n  \"arrow-left-from-line\": 62276,\n  \"arrow-left-long-to-line\": 58324,\n  \"arrow-left-long\": 61815,\n  \"arrow-left-rotate\": 61666,\n  \"arrow-left-to-arc\": 58902,\n  \"arrow-left-to-bracket\": 58985,\n  \"arrow-left-to-dotted-line\": 59066,\n  \"arrow-left-to-line\": 62270,\n  \"arrow-left\": 61536,\n  \"arrow-pointer\": 62021,\n  \"arrow-progress\": 58847,\n  \"arrow-right-arrow-left\": 61676,\n  \"arrow-right-from-arc\": 58545,\n  \"arrow-right-from-bracket\": 61579,\n  \"arrow-right-from-dotted-line\": 59067,\n  \"arrow-right-from-file\": 62830,\n  \"arrow-right-from-line\": 62275,\n  \"arrow-right-long-to-line\": 58325,\n  \"arrow-right-long\": 61816,\n  \"arrow-right-rotate\": 61470,\n  \"arrow-right-to-arc\": 58546,\n  \"arrow-right-to-bracket\": 61584,\n  \"arrow-right-to-city\": 58547,\n  \"arrow-right-to-dotted-line\": 59068,\n  \"arrow-right-to-file\": 62831,\n  \"arrow-right-to-line\": 62272,\n  \"arrow-right\": 61537,\n  \"arrow-rotate-back\": 61666,\n  \"arrow-rotate-backward\": 61666,\n  \"arrow-rotate-forward\": 61470,\n  \"arrow-rotate-left-10\": 59446,\n  \"arrow-rotate-left-15\": 59526,\n  \"arrow-rotate-left-30\": 59527,\n  \"arrow-rotate-left\": 61666,\n  \"arrow-rotate-right-10\": 59447,\n  \"arrow-rotate-right-15\": 59528,\n  \"arrow-rotate-right-30\": 59529,\n  \"arrow-rotate-right\": 61470,\n  \"arrow-square-down\": 62265,\n  \"arrow-square-left\": 62266,\n  \"arrow-square-right\": 62267,\n  \"arrow-square-up\": 62268,\n  \"arrow-to-bottom\": 62269,\n  \"arrow-to-left\": 62270,\n  \"arrow-to-right\": 62272,\n  \"arrow-to-top\": 62273,\n  \"arrow-trend-down\": 57495,\n  \"arrow-trend-up\": 57496,\n  \"arrow-turn-down-left\": 58081,\n  \"arrow-turn-down-right\": 58326,\n  \"arrow-turn-down\": 61769,\n  \"arrow-turn-left-down\": 58931,\n  \"arrow-turn-left-up\": 58932,\n  \"arrow-turn-left\": 58930,\n  \"arrow-turn-right\": 58933,\n  \"arrow-turn-up\": 61768,\n  \"arrow-u-turn-down-left\": 59367,\n  \"arrow-u-turn-down-right\": 59368,\n  \"arrow-u-turn-left-down\": 59369,\n  \"arrow-u-turn-left-up\": 59370,\n  \"arrow-u-turn-right-down\": 59371,\n  \"arrow-u-turn-right-up\": 59372,\n  \"arrow-u-turn-up-left\": 59373,\n  \"arrow-u-turn-up-right\": 59374,\n  \"arrow-up-1-9\": 61795,\n  \"arrow-up-9-1\": 63623,\n  \"arrow-up-a-z\": 61790,\n  \"arrow-up-arrow-down\": 57497,\n  \"arrow-up-big-small\": 63630,\n  \"arrow-up-from-arc\": 58548,\n  \"arrow-up-from-bracket\": 57498,\n  \"arrow-up-from-dotted-line\": 57499,\n  \"arrow-up-from-ground-water\": 58549,\n  \"arrow-up-from-line\": 62274,\n  \"arrow-up-from-square\": 57500,\n  \"arrow-up-from-water-pump\": 58550,\n  \"arrow-up-left-from-circle\": 57502,\n  \"arrow-up-left\": 57501,\n  \"arrow-up-long-to-line\": 59069,\n  \"arrow-up-long\": 61814,\n  \"arrow-up-right-and-arrow-down-left-from-center\": 57504,\n  \"arrow-up-right-dots\": 58551,\n  \"arrow-up-right-from-square\": 61582,\n  \"arrow-up-right\": 57503,\n  \"arrow-up-short-wide\": 63621,\n  \"arrow-up-small-big\": 63631,\n  \"arrow-up-square-triangle\": 63627,\n  \"arrow-up-to-arc\": 58903,\n  \"arrow-up-to-bracket\": 58986,\n  \"arrow-up-to-dotted-line\": 57505,\n  \"arrow-up-to-line\": 62273,\n  \"arrow-up-triangle-square\": 63626,\n  \"arrow-up-wide-short\": 61793,\n  \"arrow-up-z-a\": 63618,\n  \"arrow-up\": 61538,\n  \"arrows-alt-h\": 62263,\n  \"arrows-alt-v\": 62264,\n  \"arrows-alt\": 61618,\n  \"arrows-cross\": 57506,\n  \"arrows-down-to-line\": 58552,\n  \"arrows-down-to-people\": 58553,\n  \"arrows-from-dotted-line\": 57507,\n  \"arrows-from-line\": 57508,\n  \"arrows-h\": 61566,\n  \"arrows-left-right-to-line\": 58554,\n  \"arrows-left-right\": 61566,\n  \"arrows-maximize\": 62237,\n  \"arrows-minimize\": 57509,\n  \"arrows-repeat-1\": 62310,\n  \"arrows-repeat\": 62308,\n  \"arrows-retweet\": 62305,\n  \"arrows-rotate-reverse\": 58928,\n  \"arrows-rotate\": 61473,\n  \"arrows-spin\": 58555,\n  \"arrows-split-up-and-left\": 58556,\n  \"arrows-to-circle\": 58557,\n  \"arrows-to-dot\": 58558,\n  \"arrows-to-dotted-line\": 57510,\n  \"arrows-to-eye\": 58559,\n  \"arrows-to-line\": 57511,\n  \"arrows-turn-right\": 58560,\n  \"arrows-turn-to-dots\": 58561,\n  \"arrows-up-down-left-right\": 61511,\n  \"arrows-up-down\": 61565,\n  \"arrows-up-to-line\": 58562,\n  \"arrows-v\": 61565,\n  \"arrows\": 61511,\n  \"asl-interpreting\": 62115,\n  \"assistive-listening-systems\": 62114,\n  \"asterisk\": 42,\n  \"at\": 64,\n  \"atlas\": 62808,\n  \"atom-alt\": 62931,\n  \"atom-simple\": 62931,\n  \"atom\": 62930,\n  \"audio-description-slash\": 57512,\n  \"audio-description\": 62110,\n  \"austral-sign\": 57513,\n  \"australian-dollar-sign\": 59134,\n  \"automobile\": 61881,\n  \"avocado\": 57514,\n  \"award-simple\": 57515,\n  \"award\": 62809,\n  \"axe-battle\": 63155,\n  \"axe\": 63154,\n  \"b\": 66,\n  \"baby-carriage\": 63357,\n  \"baby\": 63356,\n  \"backpack\": 62932,\n  \"backspace\": 62810,\n  \"backward-fast\": 61513,\n  \"backward-step\": 61512,\n  \"backward\": 61514,\n  \"bacon\": 63461,\n  \"bacteria\": 57433,\n  \"bacterium\": 57434,\n  \"badge-check\": 62262,\n  \"badge-dollar\": 63045,\n  \"badge-percent\": 63046,\n  \"badge-sheriff\": 63650,\n  \"badge\": 62261,\n  \"badger-honey\": 63156,\n  \"badminton\": 58170,\n  \"bag-seedling\": 58866,\n  \"bag-shopping-minus\": 58960,\n  \"bag-shopping-plus\": 58961,\n  \"bag-shopping\": 62096,\n  \"bagel\": 58327,\n  \"bags-shopping\": 63559,\n  \"baguette\": 58328,\n  \"bahai\": 63078,\n  \"baht-sign\": 57516,\n  \"balance-scale-left\": 62741,\n  \"balance-scale-right\": 62742,\n  \"balance-scale\": 62030,\n  \"ball-pile\": 63358,\n  \"ball-yarn\": 59086,\n  \"balloon\": 58083,\n  \"balloons\": 58084,\n  \"ballot-check\": 63283,\n  \"ballot\": 63282,\n  \"ban-bug\": 63481,\n  \"ban-parking\": 62998,\n  \"ban-smoking\": 62797,\n  \"ban\": 61534,\n  \"banana\": 58085,\n  \"band-aid\": 62562,\n  \"bandage\": 62562,\n  \"bangladeshi-taka-sign\": 58086,\n  \"banjo\": 63651,\n  \"bank\": 61852,\n  \"bar-chart\": 61568,\n  \"bar-progress-empty\": 59045,\n  \"bar-progress-full\": 59046,\n  \"bar-progress-half\": 59047,\n  \"bar-progress-quarter\": 59048,\n  \"bar-progress-three-quarters\": 59049,\n  \"bar-progress\": 59044,\n  \"barcode-alt\": 62563,\n  \"barcode-read\": 62564,\n  \"barcode-scan\": 62565,\n  \"barcode\": 61482,\n  \"barn-silo\": 63588,\n  \"barn\": 59079,\n  \"bars-filter\": 57517,\n  \"bars-progress\": 63528,\n  \"bars-sort\": 57518,\n  \"bars-staggered\": 62800,\n  \"bars\": 61641,\n  \"baseball-ball\": 62515,\n  \"baseball-bat-ball\": 62514,\n  \"baseball-bat\": 59365,\n  \"baseball\": 62515,\n  \"basket-shopping-minus\": 58962,\n  \"basket-shopping-plus\": 58963,\n  \"basket-shopping-simple\": 57519,\n  \"basket-shopping\": 62097,\n  \"basketball-ball\": 62516,\n  \"basketball-hoop\": 62517,\n  \"basketball\": 62516,\n  \"bat\": 63157,\n  \"bath\": 62157,\n  \"bathtub\": 62157,\n  \"battery-0\": 62020,\n  \"battery-1\": 57521,\n  \"battery-2\": 62019,\n  \"battery-3\": 62018,\n  \"battery-4\": 62017,\n  \"battery-5\": 62016,\n  \"battery-bolt\": 62326,\n  \"battery-car\": 62943,\n  \"battery-empty\": 62020,\n  \"battery-exclamation\": 57520,\n  \"battery-full\": 62016,\n  \"battery-half\": 62018,\n  \"battery-low\": 57521,\n  \"battery-quarter\": 62019,\n  \"battery-slash\": 62327,\n  \"battery-three-quarters\": 62017,\n  \"battery\": 62016,\n  \"bed-alt\": 63735,\n  \"bed-bunk\": 63736,\n  \"bed-empty\": 63737,\n  \"bed-front\": 63735,\n  \"bed-pulse\": 62599,\n  \"bed\": 62006,\n  \"bee\": 57522,\n  \"beer-foam\": 57523,\n  \"beer-mug-empty\": 61692,\n  \"beer-mug\": 57523,\n  \"beer\": 61692,\n  \"bell-concierge\": 62818,\n  \"bell-exclamation\": 63560,\n  \"bell-on\": 63738,\n  \"bell-plus\": 63561,\n  \"bell-ring\": 58924,\n  \"bell-school-slash\": 62934,\n  \"bell-school\": 62933,\n  \"bell-slash\": 61942,\n  \"bell\": 61683,\n  \"bells\": 63359,\n  \"bench-tree\": 58087,\n  \"betamax\": 63652,\n  \"bezier-curve\": 62811,\n  \"bible\": 63047,\n  \"bicep\": 59490,\n  \"bicycle\": 61958,\n  \"biking-mountain\": 63563,\n  \"biking\": 63562,\n  \"billboard\": 58829,\n  \"bin-bottles-recycle\": 58870,\n  \"bin-bottles\": 58869,\n  \"bin-recycle\": 58871,\n  \"bin\": 59235,\n  \"binary-circle-check\": 58172,\n  \"binary-lock\": 58173,\n  \"binary-slash\": 58174,\n  \"binary\": 58171,\n  \"binoculars\": 61925,\n  \"biohazard\": 63360,\n  \"bird\": 58473,\n  \"birthday-cake\": 61949,\n  \"bitcoin-sign\": 57524,\n  \"blackboard\": 62747,\n  \"blanket-fire\": 58330,\n  \"blanket\": 62616,\n  \"blender-phone\": 63158,\n  \"blender\": 62743,\n  \"blind\": 62109,\n  \"blinds-open\": 63740,\n  \"blinds-raised\": 63741,\n  \"blinds\": 63739,\n  \"block-brick-fire\": 58332,\n  \"block-brick\": 58331,\n  \"block-question\": 58333,\n  \"block-quote\": 57525,\n  \"block\": 58474,\n  \"blog\": 63361,\n  \"blueberries\": 58088,\n  \"bluetooth\": 62099,\n  \"bold\": 61490,\n  \"bolt-auto\": 57526,\n  \"bolt-lightning\": 57527,\n  \"bolt-slash\": 57528,\n  \"bolt\": 61671,\n  \"bomb\": 61922,\n  \"bone-break\": 62936,\n  \"bone\": 62935,\n  \"bong\": 62812,\n  \"book-alt\": 62937,\n  \"book-arrow-right\": 57529,\n  \"book-arrow-up\": 57530,\n  \"book-atlas\": 62808,\n  \"book-bible\": 63047,\n  \"book-blank\": 62937,\n  \"book-bookmark\": 57531,\n  \"book-circle-arrow-right\": 57532,\n  \"book-circle-arrow-up\": 57533,\n  \"book-circle\": 57599,\n  \"book-copy\": 57534,\n  \"book-dead\": 63159,\n  \"book-font\": 57535,\n  \"book-heart\": 62617,\n  \"book-journal-whills\": 63082,\n  \"book-law\": 57537,\n  \"book-medical\": 63462,\n  \"book-open-alt\": 57536,\n  \"book-open-cover\": 57536,\n  \"book-open-lines\": 59219,\n  \"book-open-reader\": 62938,\n  \"book-open\": 62744,\n  \"book-quran\": 63111,\n  \"book-reader\": 62938,\n  \"book-section\": 57537,\n  \"book-skull\": 63159,\n  \"book-sparkles\": 63160,\n  \"book-spells\": 63160,\n  \"book-spine\": 59220,\n  \"book-tanakh\": 63527,\n  \"book-user\": 63463,\n  \"book\": 61485,\n  \"bookmark-circle\": 57600,\n  \"bookmark-plus\": 59221,\n  \"bookmark-slash\": 57538,\n  \"bookmark\": 61486,\n  \"books-medical\": 63464,\n  \"books\": 62939,\n  \"boombox\": 63653,\n  \"boot-heeled\": 58175,\n  \"boot\": 63362,\n  \"booth-curtain\": 63284,\n  \"border-all\": 63564,\n  \"border-bottom-right\": 63572,\n  \"border-bottom\": 63565,\n  \"border-center-h\": 63644,\n  \"border-center-v\": 63645,\n  \"border-inner\": 63566,\n  \"border-left\": 63567,\n  \"border-none\": 63568,\n  \"border-outer\": 63569,\n  \"border-right\": 63570,\n  \"border-style-alt\": 63572,\n  \"border-style\": 63571,\n  \"border-top-left\": 63571,\n  \"border-top\": 63573,\n  \"bore-hole\": 58563,\n  \"bottle-baby\": 58995,\n  \"bottle-droplet\": 58564,\n  \"bottle-water\": 58565,\n  \"bow-archery\": 59450,\n  \"bow-arrow\": 63161,\n  \"bowl-chopsticks-noodles\": 58090,\n  \"bowl-chopsticks\": 58089,\n  \"bowl-food\": 58566,\n  \"bowl-hot\": 63523,\n  \"bowl-rice\": 58091,\n  \"bowl-salad\": 63518,\n  \"bowl-scoop\": 58334,\n  \"bowl-scoops\": 58335,\n  \"bowl-shaved-ice\": 58334,\n  \"bowl-soft-serve\": 58475,\n  \"bowl-spoon\": 58336,\n  \"bowling-ball-pin\": 57539,\n  \"bowling-ball\": 62518,\n  \"bowling-pins\": 62519,\n  \"box-alt\": 62618,\n  \"box-archive\": 61831,\n  \"box-arrow-down-arrow-up\": 59285,\n  \"box-arrow-down-magnifying-glass\": 59286,\n  \"box-arrow-down\": 59284,\n  \"box-arrow-up\": 59431,\n  \"box-ballot\": 63285,\n  \"box-check\": 62567,\n  \"box-circle-check\": 57540,\n  \"box-dollar\": 62624,\n  \"box-fragile\": 62619,\n  \"box-full\": 62620,\n  \"box-heart\": 62621,\n  \"box-isometric-tape\": 59288,\n  \"box-isometric\": 59287,\n  \"box-magnifying-glass\": 59432,\n  \"box-open-full\": 62620,\n  \"box-open\": 62622,\n  \"box-taped\": 62618,\n  \"box-tissue\": 57435,\n  \"box-up\": 62623,\n  \"box-usd\": 62624,\n  \"box\": 62566,\n  \"boxes-alt\": 62568,\n  \"boxes-packing\": 58567,\n  \"boxes-stacked\": 62568,\n  \"boxes\": 62568,\n  \"boxing-glove\": 62520,\n  \"bra\": 59087,\n  \"bracket-curly-left\": 123,\n  \"bracket-curly-right\": 125,\n  \"bracket-curly\": 123,\n  \"bracket-left\": 91,\n  \"bracket-round-right\": 41,\n  \"bracket-round\": 40,\n  \"bracket-square-right\": 93,\n  \"bracket-square\": 91,\n  \"bracket\": 91,\n  \"brackets-curly\": 63466,\n  \"brackets-round\": 57541,\n  \"brackets-square\": 63465,\n  \"brackets\": 63465,\n  \"braille\": 62113,\n  \"brain-arrow-curved-right\": 63095,\n  \"brain-circuit\": 57542,\n  \"brain\": 62940,\n  \"brake-warning\": 57543,\n  \"brazilian-real-sign\": 58476,\n  \"bread-loaf\": 63467,\n  \"bread-slice-butter\": 58337,\n  \"bread-slice\": 63468,\n  \"bridge-circle-check\": 58569,\n  \"bridge-circle-exclamation\": 58570,\n  \"bridge-circle-xmark\": 58571,\n  \"bridge-lock\": 58572,\n  \"bridge-suspension\": 58573,\n  \"bridge-water\": 58574,\n  \"bridge\": 58568,\n  \"briefcase-arrow-right\": 58098,\n  \"briefcase-blank\": 57544,\n  \"briefcase-clock\": 63050,\n  \"briefcase-medical\": 62569,\n  \"briefcase\": 61617,\n  \"briefs\": 59088,\n  \"brightness-low\": 57546,\n  \"brightness\": 57545,\n  \"bring-forward\": 63574,\n  \"bring-front\": 63575,\n  \"broadcast-tower\": 62745,\n  \"broccoli\": 58338,\n  \"broom-ball\": 62552,\n  \"broom-wide\": 58833,\n  \"broom\": 62746,\n  \"browser\": 62334,\n  \"browsers\": 57547,\n  \"brush\": 62813,\n  \"bucket\": 58575,\n  \"bug-slash\": 58512,\n  \"bug\": 61832,\n  \"bugs\": 58576,\n  \"building-circle-arrow-right\": 58577,\n  \"building-circle-check\": 58578,\n  \"building-circle-exclamation\": 58579,\n  \"building-circle-xmark\": 58580,\n  \"building-columns\": 61852,\n  \"building-flag\": 58581,\n  \"building-lock\": 58582,\n  \"building-magnifying-glass\": 58908,\n  \"building-memo\": 58910,\n  \"building-ngo\": 58583,\n  \"building-shield\": 58584,\n  \"building-un\": 58585,\n  \"building-user\": 58586,\n  \"building-wheat\": 58587,\n  \"building\": 61869,\n  \"buildings\": 57548,\n  \"bulldozer\": 58965,\n  \"bullhorn\": 61601,\n  \"bullseye-arrow\": 63048,\n  \"bullseye-pointer\": 63049,\n  \"bullseye\": 61760,\n  \"buoy-mooring\": 58806,\n  \"buoy\": 58805,\n  \"burger-cheese\": 63473,\n  \"burger-fries\": 57549,\n  \"burger-glass\": 57550,\n  \"burger-lettuce\": 58339,\n  \"burger-soda\": 63576,\n  \"burger\": 63493,\n  \"burn\": 62570,\n  \"burrito\": 63469,\n  \"burst-new\": 59512,\n  \"burst\": 58588,\n  \"bus-alt\": 62814,\n  \"bus-school\": 62941,\n  \"bus-side\": 59421,\n  \"bus-simple\": 62814,\n  \"bus-stop\": 59422,\n  \"bus\": 61959,\n  \"business-front\": 58460,\n  \"business-time\": 63050,\n  \"butter\": 58340,\n  \"butterfly\": 59409,\n  \"c\": 67,\n  \"cab\": 61882,\n  \"cabin\": 58477,\n  \"cabinet-filing\": 63051,\n  \"cable-car\": 63450,\n  \"cactus\": 63655,\n  \"caduceus\": 59009,\n  \"cake-candles\": 61949,\n  \"cake-slice\": 58341,\n  \"cake\": 61949,\n  \"calculator-alt\": 63052,\n  \"calculator-simple\": 63052,\n  \"calculator\": 61932,\n  \"calendar-alt\": 61555,\n  \"calendar-arrow-down\": 57552,\n  \"calendar-arrow-up\": 57553,\n  \"calendar-check\": 62068,\n  \"calendar-circle-exclamation\": 58478,\n  \"calendar-circle-minus\": 58479,\n  \"calendar-circle-plus\": 58480,\n  \"calendar-circle-user\": 58481,\n  \"calendar-circle\": 57602,\n  \"calendar-clock\": 57554,\n  \"calendar-day\": 63363,\n  \"calendar-days\": 61555,\n  \"calendar-download\": 57552,\n  \"calendar-edit\": 62259,\n  \"calendar-exclamation\": 62260,\n  \"calendar-heart\": 57555,\n  \"calendar-image\": 57556,\n  \"calendar-lines-pen\": 58482,\n  \"calendar-lines\": 57557,\n  \"calendar-minus\": 62066,\n  \"calendar-note\": 57557,\n  \"calendar-pen\": 62259,\n  \"calendar-plus\": 62065,\n  \"calendar-range\": 57558,\n  \"calendar-star\": 63286,\n  \"calendar-time\": 57554,\n  \"calendar-times\": 62067,\n  \"calendar-upload\": 57553,\n  \"calendar-users\": 58850,\n  \"calendar-week\": 63364,\n  \"calendar-xmark\": 62067,\n  \"calendar\": 61747,\n  \"calendars\": 57559,\n  \"camcorder\": 63656,\n  \"camera-alt\": 61488,\n  \"camera-cctv\": 63660,\n  \"camera-circle-ellipsis\": 59238,\n  \"camera-circle\": 57603,\n  \"camera-clock\": 59239,\n  \"camera-home\": 63742,\n  \"camera-movie\": 63657,\n  \"camera-polaroid\": 63658,\n  \"camera-retro\": 61571,\n  \"camera-rotate\": 57560,\n  \"camera-security\": 63742,\n  \"camera-shutter\": 59240,\n  \"camera-slash\": 57561,\n  \"camera-viewfinder\": 57562,\n  \"camera-web-slash\": 63539,\n  \"camera-web\": 63538,\n  \"camera\": 61488,\n  \"campfire\": 63162,\n  \"campground\": 63163,\n  \"can-food\": 58342,\n  \"cancel\": 61534,\n  \"cancer\": 59463,\n  \"candle-holder\": 63164,\n  \"candy-bar\": 58344,\n  \"candy-cane\": 63366,\n  \"candy-corn\": 63165,\n  \"candy\": 58343,\n  \"cannabis\": 62815,\n  \"cannon\": 58946,\n  \"canoe-person\": 59548,\n  \"capricorn\": 59464,\n  \"capsule\": 59226,\n  \"capsules\": 62571,\n  \"car-alt\": 62942,\n  \"car-battery\": 62943,\n  \"car-bolt\": 58177,\n  \"car-building\": 63577,\n  \"car-bump\": 62944,\n  \"car-burst\": 62945,\n  \"car-bus\": 63578,\n  \"car-circle-bolt\": 58178,\n  \"car-crash\": 62945,\n  \"car-garage\": 62946,\n  \"car-key\": 59328,\n  \"car-mechanic\": 62947,\n  \"car-mirrors\": 58179,\n  \"car-on\": 58589,\n  \"car-people\": 59036,\n  \"car-rear\": 62942,\n  \"car-side-bolt\": 58180,\n  \"car-side\": 62948,\n  \"car-siren-on\": 59330,\n  \"car-siren\": 59329,\n  \"car-tilt\": 62949,\n  \"car-tunnel\": 58590,\n  \"car-wash\": 62950,\n  \"car-wrench\": 62947,\n  \"car\": 61881,\n  \"caravan-alt\": 57344,\n  \"caravan-simple\": 57344,\n  \"caravan\": 63743,\n  \"card-club\": 58345,\n  \"card-diamond\": 58346,\n  \"card-heart\": 58347,\n  \"card-spade\": 58348,\n  \"cards-blank\": 58591,\n  \"cards\": 58349,\n  \"caret-circle-down\": 62253,\n  \"caret-circle-left\": 62254,\n  \"caret-circle-right\": 62256,\n  \"caret-circle-up\": 62257,\n  \"caret-down\": 61655,\n  \"caret-large-down\": 59436,\n  \"caret-large-left\": 59437,\n  \"caret-large-right\": 59438,\n  \"caret-large-up\": 59439,\n  \"caret-left\": 61657,\n  \"caret-right\": 61658,\n  \"caret-square-down\": 61776,\n  \"caret-square-left\": 61841,\n  \"caret-square-right\": 61778,\n  \"caret-square-up\": 61777,\n  \"caret-up\": 61656,\n  \"carpool\": 59036,\n  \"carriage-baby\": 63357,\n  \"carrot\": 63367,\n  \"cars\": 63579,\n  \"cart-arrow-down\": 61976,\n  \"cart-arrow-up\": 58350,\n  \"cart-circle-arrow-down\": 58351,\n  \"cart-circle-arrow-up\": 58352,\n  \"cart-circle-check\": 58353,\n  \"cart-circle-exclamation\": 58354,\n  \"cart-circle-plus\": 58355,\n  \"cart-circle-xmark\": 58356,\n  \"cart-flatbed-boxes\": 62581,\n  \"cart-flatbed-empty\": 62582,\n  \"cart-flatbed-suitcase\": 62877,\n  \"cart-flatbed\": 62580,\n  \"cart-minus\": 57563,\n  \"cart-plus\": 61975,\n  \"cart-shopping-fast\": 57564,\n  \"cart-shopping\": 61562,\n  \"cart-xmark\": 57565,\n  \"cash-register\": 63368,\n  \"cassette-betamax\": 63652,\n  \"cassette-tape\": 63659,\n  \"cassette-vhs\": 63724,\n  \"castle\": 57566,\n  \"cat-space\": 57345,\n  \"cat\": 63166,\n  \"cauldron\": 63167,\n  \"cctv\": 63660,\n  \"cedi-sign\": 57567,\n  \"cent-sign\": 58357,\n  \"certificate\": 61603,\n  \"chain-broken\": 61735,\n  \"chain-horizontal-slash\": 57804,\n  \"chain-horizontal\": 57803,\n  \"chain-slash\": 61735,\n  \"chain\": 61633,\n  \"chair-office\": 63169,\n  \"chair\": 63168,\n  \"chalkboard-teacher\": 62748,\n  \"chalkboard-user\": 62748,\n  \"chalkboard\": 62747,\n  \"champagne-glass\": 63390,\n  \"champagne-glasses\": 63391,\n  \"charging-station\": 62951,\n  \"chart-area\": 61950,\n  \"chart-bar\": 61568,\n  \"chart-bullet\": 57569,\n  \"chart-candlestick\": 57570,\n  \"chart-column\": 57571,\n  \"chart-diagram\": 59029,\n  \"chart-fft\": 59038,\n  \"chart-gantt\": 57572,\n  \"chart-kanban\": 58959,\n  \"chart-line-down\": 63053,\n  \"chart-line-up-down\": 58839,\n  \"chart-line-up\": 57573,\n  \"chart-line\": 61953,\n  \"chart-mixed-up-circle-currency\": 58840,\n  \"chart-mixed-up-circle-dollar\": 58841,\n  \"chart-mixed\": 63043,\n  \"chart-network\": 63370,\n  \"chart-pie-alt\": 63054,\n  \"chart-pie-simple-circle-currency\": 58884,\n  \"chart-pie-simple-circle-dollar\": 58885,\n  \"chart-pie-simple\": 63054,\n  \"chart-pie\": 61952,\n  \"chart-pyramid\": 57574,\n  \"chart-radar\": 57575,\n  \"chart-scatter-3d\": 57576,\n  \"chart-scatter-bubble\": 57577,\n  \"chart-scatter\": 63470,\n  \"chart-simple-horizontal\": 58484,\n  \"chart-simple\": 58483,\n  \"chart-sine\": 59037,\n  \"chart-tree-map\": 57578,\n  \"chart-user\": 63139,\n  \"chart-waterfall\": 57579,\n  \"check-circle\": 61528,\n  \"check-double\": 62816,\n  \"check-square\": 61770,\n  \"check-to-slot\": 63346,\n  \"check\": 61452,\n  \"cheese-swiss\": 63472,\n  \"cheese\": 63471,\n  \"cheeseburger\": 63473,\n  \"chemex\": 59440,\n  \"cherries\": 57580,\n  \"chess-bishop-alt\": 62523,\n  \"chess-bishop-piece\": 62523,\n  \"chess-bishop\": 62522,\n  \"chess-board\": 62524,\n  \"chess-clock-alt\": 62526,\n  \"chess-clock-flip\": 62526,\n  \"chess-clock\": 62525,\n  \"chess-king-alt\": 62528,\n  \"chess-king-piece\": 62528,\n  \"chess-king\": 62527,\n  \"chess-knight-alt\": 62530,\n  \"chess-knight-piece\": 62530,\n  \"chess-knight\": 62529,\n  \"chess-pawn-alt\": 62532,\n  \"chess-pawn-piece\": 62532,\n  \"chess-pawn\": 62531,\n  \"chess-queen-alt\": 62534,\n  \"chess-queen-piece\": 62534,\n  \"chess-queen\": 62533,\n  \"chess-rook-alt\": 62536,\n  \"chess-rook-piece\": 62536,\n  \"chess-rook\": 62535,\n  \"chess\": 62521,\n  \"chest-drawers\": 59523,\n  \"chestnut\": 58358,\n  \"chevron-circle-down\": 61754,\n  \"chevron-circle-left\": 61751,\n  \"chevron-circle-right\": 61752,\n  \"chevron-circle-up\": 61753,\n  \"chevron-double-down\": 62242,\n  \"chevron-double-left\": 62243,\n  \"chevron-double-right\": 62244,\n  \"chevron-double-up\": 62245,\n  \"chevron-down\": 61560,\n  \"chevron-left\": 61523,\n  \"chevron-right\": 61524,\n  \"chevron-square-down\": 62249,\n  \"chevron-square-left\": 62250,\n  \"chevron-square-right\": 62251,\n  \"chevron-square-up\": 62252,\n  \"chevron-up\": 61559,\n  \"chevrons-down\": 62242,\n  \"chevrons-left\": 62243,\n  \"chevrons-right\": 62244,\n  \"chevrons-up\": 62245,\n  \"chf-sign\": 58882,\n  \"child-combatant\": 58592,\n  \"child-dress\": 58780,\n  \"child-reaching\": 58781,\n  \"child-rifle\": 58592,\n  \"child\": 61870,\n  \"children\": 58593,\n  \"chimney\": 63371,\n  \"chocolate-bar\": 58344,\n  \"chopsticks\": 58359,\n  \"church\": 62749,\n  \"circle-0\": 57581,\n  \"circle-1\": 57582,\n  \"circle-2\": 57583,\n  \"circle-3\": 57584,\n  \"circle-4\": 57585,\n  \"circle-5\": 57586,\n  \"circle-6\": 57587,\n  \"circle-7\": 57588,\n  \"circle-8\": 57589,\n  \"circle-9\": 57590,\n  \"circle-a\": 57591,\n  \"circle-ampersand\": 57592,\n  \"circle-arrow-down-left\": 57593,\n  \"circle-arrow-down-right\": 57594,\n  \"circle-arrow-down\": 61611,\n  \"circle-arrow-left\": 61608,\n  \"circle-arrow-right\": 61609,\n  \"circle-arrow-up-left\": 57595,\n  \"circle-arrow-up-right\": 57596,\n  \"circle-arrow-up\": 61610,\n  \"circle-austral\": 59163,\n  \"circle-australian-dollar\": 59184,\n  \"circle-b\": 57597,\n  \"circle-baht\": 59181,\n  \"circle-bangladeshi-taka\": 59137,\n  \"circle-bitcoin\": 59191,\n  \"circle-bolt\": 57598,\n  \"circle-book-open\": 57599,\n  \"circle-bookmark\": 57600,\n  \"circle-brazilian-real\": 59115,\n  \"circle-c\": 57601,\n  \"circle-calendar\": 57602,\n  \"circle-camera\": 57603,\n  \"circle-caret-down\": 62253,\n  \"circle-caret-left\": 62254,\n  \"circle-caret-right\": 62256,\n  \"circle-caret-up\": 62257,\n  \"circle-cedi\": 59202,\n  \"circle-cent\": 59178,\n  \"circle-check\": 61528,\n  \"circle-chevron-down\": 61754,\n  \"circle-chevron-left\": 61751,\n  \"circle-chevron-right\": 61752,\n  \"circle-chevron-up\": 61753,\n  \"circle-chf\": 59180,\n  \"circle-colon\": 59132,\n  \"circle-cruzeiro\": 59170,\n  \"circle-currency\": 59118,\n  \"circle-d\": 57604,\n  \"circle-danish-krone\": 59206,\n  \"circle-dashed\": 57605,\n  \"circle-divide\": 57606,\n  \"circle-dollar-to-slot\": 62649,\n  \"circle-dollar\": 62184,\n  \"circle-dong\": 59171,\n  \"circle-dot\": 61842,\n  \"circle-down-left\": 57607,\n  \"circle-down-right\": 57608,\n  \"circle-down\": 62296,\n  \"circle-e\": 57609,\n  \"circle-ellipsis-vertical\": 57611,\n  \"circle-ellipsis\": 57610,\n  \"circle-envelope\": 57612,\n  \"circle-equals\": 59057,\n  \"circle-euro\": 58830,\n  \"circle-eurozone\": 59205,\n  \"circle-exclamation-check\": 57613,\n  \"circle-exclamation\": 61546,\n  \"circle-f\": 57614,\n  \"circle-florin\": 59108,\n  \"circle-franc\": 59169,\n  \"circle-g\": 57615,\n  \"circle-gf\": 59007,\n  \"circle-guarani\": 59195,\n  \"circle-h\": 62590,\n  \"circle-half-horizontal\": 59404,\n  \"circle-half-stroke-horizontal\": 59405,\n  \"circle-half-stroke\": 61506,\n  \"circle-half\": 57616,\n  \"circle-heart\": 62663,\n  \"circle-house\": 59080,\n  \"circle-hryvnia\": 59119,\n  \"circle-i\": 57617,\n  \"circle-indian-rupee\": 59188,\n  \"circle-info\": 61530,\n  \"circle-j\": 57618,\n  \"circle-k\": 57619,\n  \"circle-kip\": 59133,\n  \"circle-l\": 57620,\n  \"circle-lari\": 59165,\n  \"circle-left\": 62297,\n  \"circle-lira\": 59126,\n  \"circle-litecoin\": 59124,\n  \"circle-location-arrow\": 62978,\n  \"circle-m\": 57621,\n  \"circle-malaysian-ringgit\": 59129,\n  \"circle-manat\": 59131,\n  \"circle-microphone-lines\": 57623,\n  \"circle-microphone\": 57622,\n  \"circle-mill\": 59138,\n  \"circle-minus\": 61526,\n  \"circle-moon\": 59360,\n  \"circle-n\": 57624,\n  \"circle-naira\": 59209,\n  \"circle-nodes\": 58594,\n  \"circle-norwegian-krone\": 59192,\n  \"circle-notch\": 61902,\n  \"circle-o\": 57625,\n  \"circle-p\": 57626,\n  \"circle-parking\": 62997,\n  \"circle-pause\": 62091,\n  \"circle-peruvian-soles\": 59123,\n  \"circle-peseta\": 59201,\n  \"circle-peso\": 59135,\n  \"circle-phone-flip\": 57628,\n  \"circle-phone-hangup\": 57629,\n  \"circle-phone\": 57627,\n  \"circle-play\": 61764,\n  \"circle-plus\": 61525,\n  \"circle-polish-zloty\": 59136,\n  \"circle-q\": 57630,\n  \"circle-quarter-stroke\": 58835,\n  \"circle-quarter\": 57631,\n  \"circle-quarters\": 58360,\n  \"circle-question\": 61529,\n  \"circle-r\": 57632,\n  \"circle-radiation\": 63418,\n  \"circle-renminbi\": 59113,\n  \"circle-right\": 62298,\n  \"circle-ruble\": 59109,\n  \"circle-rupee\": 59156,\n  \"circle-rupiah\": 59142,\n  \"circle-s\": 57633,\n  \"circle-share-nodes\": 59099,\n  \"circle-shekel\": 59139,\n  \"circle-small\": 57634,\n  \"circle-sort-down\": 57393,\n  \"circle-sort-up\": 57394,\n  \"circle-sort\": 57392,\n  \"circle-star\": 57635,\n  \"circle-sterling\": 58831,\n  \"circle-stop\": 62093,\n  \"circle-swedish-krona\": 59203,\n  \"circle-t\": 57636,\n  \"circle-tenge\": 59173,\n  \"circle-three-quarters-stroke\": 58836,\n  \"circle-three-quarters\": 57637,\n  \"circle-trash\": 57638,\n  \"circle-tugrik\": 59153,\n  \"circle-turkish-lira\": 59193,\n  \"circle-u\": 57639,\n  \"circle-up-left\": 57640,\n  \"circle-up-right\": 57641,\n  \"circle-up\": 62299,\n  \"circle-user-circle-check\": 59295,\n  \"circle-user-circle-exclamation\": 59296,\n  \"circle-user-circle-minus\": 59297,\n  \"circle-user-circle-moon\": 59298,\n  \"circle-user-circle-plus\": 59299,\n  \"circle-user-circle-question\": 59300,\n  \"circle-user-circle-user\": 59301,\n  \"circle-user-circle-xmark\": 59302,\n  \"circle-user-clock\": 59303,\n  \"circle-user\": 62141,\n  \"circle-v\": 57642,\n  \"circle-video\": 57643,\n  \"circle-w\": 57644,\n  \"circle-waveform-lines\": 57645,\n  \"circle-wifi-circle-wifi\": 59006,\n  \"circle-wifi-group\": 59006,\n  \"circle-wifi\": 59005,\n  \"circle-won\": 59116,\n  \"circle-x\": 57646,\n  \"circle-xmark\": 61527,\n  \"circle-y\": 57647,\n  \"circle-yen\": 58832,\n  \"circle-z\": 57648,\n  \"circle\": 61713,\n  \"circleapore-dollar\": 59166,\n  \"circles-overlap-3\": 59041,\n  \"circles-overlap\": 58880,\n  \"citrus-slice\": 58101,\n  \"citrus\": 58100,\n  \"city\": 63055,\n  \"clapperboard-play\": 57650,\n  \"clapperboard\": 57649,\n  \"clarinet\": 63661,\n  \"claw-marks\": 63170,\n  \"clinic-medical\": 63474,\n  \"clipboard-check\": 62572,\n  \"clipboard-clock\": 59222,\n  \"clipboard-exclamation\": 59223,\n  \"clipboard-list-check\": 63287,\n  \"clipboard-list\": 62573,\n  \"clipboard-medical\": 57651,\n  \"clipboard-prescription\": 62952,\n  \"clipboard-question\": 58595,\n  \"clipboard-user\": 63475,\n  \"clipboard\": 62248,\n  \"clock-desk\": 57652,\n  \"clock-eight-thirty\": 58182,\n  \"clock-eight\": 58181,\n  \"clock-eleven-thirty\": 58184,\n  \"clock-eleven\": 58183,\n  \"clock-five-thirty\": 58186,\n  \"clock-five\": 58185,\n  \"clock-four-thirty\": 58187,\n  \"clock-four\": 61463,\n  \"clock-nine-thirty\": 58189,\n  \"clock-nine\": 58188,\n  \"clock-one-thirty\": 58191,\n  \"clock-one\": 58190,\n  \"clock-rotate-left\": 61914,\n  \"clock-seven-thirty\": 58193,\n  \"clock-seven\": 58192,\n  \"clock-six-thirty\": 58195,\n  \"clock-six\": 58194,\n  \"clock-ten-thirty\": 58197,\n  \"clock-ten\": 58196,\n  \"clock-three-thirty\": 58199,\n  \"clock-three\": 58198,\n  \"clock-twelve-thirty\": 58201,\n  \"clock-twelve\": 58200,\n  \"clock-two-thirty\": 58203,\n  \"clock-two\": 58202,\n  \"clock\": 61463,\n  \"clone-plus\": 59212,\n  \"clone\": 62029,\n  \"close\": 61453,\n  \"closed-captioning-slash\": 57653,\n  \"closed-captioning\": 61962,\n  \"clothes-hanger\": 57654,\n  \"cloud-arrow-down\": 61677,\n  \"cloud-arrow-up\": 61678,\n  \"cloud-binary\": 58881,\n  \"cloud-bolt-moon\": 63341,\n  \"cloud-bolt-sun\": 63342,\n  \"cloud-bolt\": 63340,\n  \"cloud-check\": 58204,\n  \"cloud-download-alt\": 61677,\n  \"cloud-download\": 61677,\n  \"cloud-drizzle\": 63288,\n  \"cloud-exclamation\": 58513,\n  \"cloud-fog\": 63310,\n  \"cloud-hail-mixed\": 63290,\n  \"cloud-hail\": 63289,\n  \"cloud-meatball\": 63291,\n  \"cloud-minus\": 58205,\n  \"cloud-moon-rain\": 63292,\n  \"cloud-moon\": 63171,\n  \"cloud-music\": 63662,\n  \"cloud-plus\": 58206,\n  \"cloud-question\": 58514,\n  \"cloud-rain\": 63293,\n  \"cloud-rainbow\": 63294,\n  \"cloud-showers-heavy\": 63296,\n  \"cloud-showers-water\": 58596,\n  \"cloud-showers\": 63295,\n  \"cloud-slash\": 57655,\n  \"cloud-sleet\": 63297,\n  \"cloud-snow\": 63298,\n  \"cloud-sun-rain\": 63299,\n  \"cloud-sun\": 63172,\n  \"cloud-upload-alt\": 61678,\n  \"cloud-upload\": 61678,\n  \"cloud-word\": 57656,\n  \"cloud-xmark\": 58207,\n  \"cloud\": 61634,\n  \"clouds-moon\": 63301,\n  \"clouds-sun\": 63302,\n  \"clouds\": 63300,\n  \"clover\": 57657,\n  \"club\": 62247,\n  \"cny\": 61783,\n  \"cocktail\": 62817,\n  \"coconut\": 58102,\n  \"code-branch\": 61734,\n  \"code-commit\": 62342,\n  \"code-compare\": 57658,\n  \"code-fork\": 57659,\n  \"code-merge\": 62343,\n  \"code-pull-request-closed\": 58361,\n  \"code-pull-request-draft\": 58362,\n  \"code-pull-request\": 57660,\n  \"code-simple\": 57661,\n  \"code\": 61729,\n  \"coffee-bean\": 57662,\n  \"coffee-beans\": 57663,\n  \"coffee-pot\": 57346,\n  \"coffee-togo\": 63173,\n  \"coffee\": 61684,\n  \"coffin-cross\": 57425,\n  \"coffin\": 63174,\n  \"cog\": 61459,\n  \"cogs\": 61573,\n  \"coin-blank\": 58363,\n  \"coin-front\": 58364,\n  \"coin-vertical\": 58365,\n  \"coin\": 63580,\n  \"coins\": 62750,\n  \"colon-sign\": 57664,\n  \"colon\": 58,\n  \"columns-3\": 58209,\n  \"columns\": 61659,\n  \"comet\": 57347,\n  \"comma\": 44,\n  \"command\": 57666,\n  \"comment-alt-arrow-down\": 57819,\n  \"comment-alt-arrow-up\": 57820,\n  \"comment-alt-captions\": 57822,\n  \"comment-alt-check\": 62626,\n  \"comment-alt-dollar\": 63056,\n  \"comment-alt-dots\": 62627,\n  \"comment-alt-edit\": 62628,\n  \"comment-alt-exclamation\": 62629,\n  \"comment-alt-image\": 57824,\n  \"comment-alt-lines\": 62630,\n  \"comment-alt-medical\": 63476,\n  \"comment-alt-minus\": 62631,\n  \"comment-alt-music\": 63663,\n  \"comment-alt-plus\": 62632,\n  \"comment-alt-quote\": 57828,\n  \"comment-alt-slash\": 62633,\n  \"comment-alt-smile\": 62634,\n  \"comment-alt-text\": 57830,\n  \"comment-alt-times\": 62635,\n  \"comment-alt\": 62074,\n  \"comment-arrow-down\": 57667,\n  \"comment-arrow-up-right\": 57669,\n  \"comment-arrow-up\": 57668,\n  \"comment-captions\": 57670,\n  \"comment-check\": 62636,\n  \"comment-code\": 57671,\n  \"comment-dollar\": 63057,\n  \"comment-dot\": 59100,\n  \"comment-dots\": 62637,\n  \"comment-edit\": 62638,\n  \"comment-exclamation\": 62639,\n  \"comment-heart\": 58824,\n  \"comment-image\": 57672,\n  \"comment-lines\": 62640,\n  \"comment-medical\": 63477,\n  \"comment-middle-alt\": 57825,\n  \"comment-middle-top-alt\": 57826,\n  \"comment-middle-top\": 57674,\n  \"comment-middle\": 57673,\n  \"comment-minus\": 62641,\n  \"comment-music\": 63664,\n  \"comment-nodes\": 59030,\n  \"comment-pen\": 62638,\n  \"comment-plus\": 62642,\n  \"comment-question\": 57675,\n  \"comment-quote\": 57676,\n  \"comment-slash\": 62643,\n  \"comment-smile\": 62644,\n  \"comment-sms\": 63437,\n  \"comment-text\": 57677,\n  \"comment-times\": 62645,\n  \"comment-waveform\": 59101,\n  \"comment-xmark\": 62645,\n  \"comment\": 61557,\n  \"commenting\": 62637,\n  \"comments-alt-dollar\": 63058,\n  \"comments-alt\": 62646,\n  \"comments-dollar\": 63059,\n  \"comments-question-check\": 57679,\n  \"comments-question\": 57678,\n  \"comments\": 61574,\n  \"compact-disc\": 62751,\n  \"compass-drafting\": 62824,\n  \"compass-slash\": 62953,\n  \"compass\": 61774,\n  \"compress-alt\": 62498,\n  \"compress-arrows-alt\": 63372,\n  \"compress-arrows\": 57509,\n  \"compress-wide\": 62246,\n  \"compress\": 61542,\n  \"computer-classic\": 63665,\n  \"computer-mouse-button-left\": 59341,\n  \"computer-mouse-button-right\": 59342,\n  \"computer-mouse-scrollwheel\": 63693,\n  \"computer-mouse\": 63692,\n  \"computer-speaker\": 63666,\n  \"computer\": 58597,\n  \"concierge-bell\": 62818,\n  \"construction\": 63581,\n  \"contact-book\": 62137,\n  \"contact-card\": 62139,\n  \"container-storage\": 62647,\n  \"conveyor-belt-alt\": 62575,\n  \"conveyor-belt-arm\": 58872,\n  \"conveyor-belt-boxes\": 62575,\n  \"conveyor-belt-empty\": 57680,\n  \"conveyor-belt\": 62574,\n  \"cookie-bite\": 62820,\n  \"cookie\": 62819,\n  \"copy\": 61637,\n  \"copyright\": 61945,\n  \"corn\": 63175,\n  \"corner\": 58366,\n  \"couch-small\": 62668,\n  \"couch\": 62648,\n  \"court-sport\": 58947,\n  \"cow\": 63176,\n  \"cowbell-circle-plus\": 63668,\n  \"cowbell-more\": 63668,\n  \"cowbell\": 63667,\n  \"crab\": 58367,\n  \"crate-apple\": 63153,\n  \"crate-empty\": 57681,\n  \"credit-card-alt\": 61597,\n  \"credit-card-blank\": 62345,\n  \"credit-card-front\": 62346,\n  \"credit-card\": 61597,\n  \"creemee\": 58368,\n  \"cricket-bat-ball\": 62537,\n  \"cricket\": 62537,\n  \"croissant\": 63478,\n  \"crop-alt\": 62821,\n  \"crop-simple\": 62821,\n  \"crop\": 61733,\n  \"cross\": 63060,\n  \"crosshairs-simple\": 58783,\n  \"crosshairs\": 61531,\n  \"crow\": 62752,\n  \"crown\": 62753,\n  \"crutch\": 63479,\n  \"crutches\": 63480,\n  \"cruzeiro-sign\": 57682,\n  \"crystal-ball\": 58210,\n  \"cube\": 61874,\n  \"cubes-stacked\": 58598,\n  \"cubes\": 61875,\n  \"cucumber\": 58369,\n  \"cup-straw-swoosh\": 58212,\n  \"cup-straw\": 58211,\n  \"cup-togo\": 63173,\n  \"cupcake\": 58370,\n  \"curling-stone\": 62538,\n  \"curling\": 62538,\n  \"currency-sign\": 59179,\n  \"custard\": 58371,\n  \"cut\": 61636,\n  \"cutlery\": 62183,\n  \"d\": 68,\n  \"dagger\": 63179,\n  \"danish-krone-sign\": 59168,\n  \"dash\": 58372,\n  \"dashboard\": 63012,\n  \"database\": 61888,\n  \"deaf\": 62116,\n  \"deafness\": 62116,\n  \"debug\": 63481,\n  \"dedent\": 61499,\n  \"deer-rudolph\": 63375,\n  \"deer\": 63374,\n  \"delete-left\": 62810,\n  \"delete-right\": 57684,\n  \"democrat\": 63303,\n  \"desk\": 59518,\n  \"desktop-alt\": 62352,\n  \"desktop-arrow-down\": 57685,\n  \"desktop-code\": 57701,\n  \"desktop-medical\": 57702,\n  \"desktop-slash\": 58106,\n  \"desktop\": 62352,\n  \"dewpoint\": 63304,\n  \"dharmachakra\": 63061,\n  \"diagnoses\": 62576,\n  \"diagram-cells\": 58485,\n  \"diagram-lean-canvas\": 57686,\n  \"diagram-nested\": 57687,\n  \"diagram-next\": 58486,\n  \"diagram-predecessor\": 58487,\n  \"diagram-previous\": 58488,\n  \"diagram-project\": 62786,\n  \"diagram-sankey\": 57688,\n  \"diagram-subtask\": 58489,\n  \"diagram-successor\": 58490,\n  \"diagram-venn\": 57690,\n  \"dial-high\": 57692,\n  \"dial-low\": 57693,\n  \"dial-max\": 57694,\n  \"dial-med-high\": 57691,\n  \"dial-med-low\": 57696,\n  \"dial-med\": 57695,\n  \"dial-min\": 57697,\n  \"dial-off\": 57698,\n  \"dial\": 57691,\n  \"dialpad\": 59340,\n  \"diamond-exclamation\": 58373,\n  \"diamond-half-stroke\": 58808,\n  \"diamond-half\": 58807,\n  \"diamond-turn-right\": 62955,\n  \"diamond\": 61977,\n  \"diamonds-4\": 59019,\n  \"dice-d10\": 63181,\n  \"dice-d12\": 63182,\n  \"dice-d20\": 63183,\n  \"dice-d4\": 63184,\n  \"dice-d6\": 63185,\n  \"dice-d8\": 63186,\n  \"dice-five\": 62755,\n  \"dice-four\": 62756,\n  \"dice-one\": 62757,\n  \"dice-six\": 62758,\n  \"dice-three\": 62759,\n  \"dice-two\": 62760,\n  \"dice\": 62754,\n  \"digging\": 63582,\n  \"digital-tachograph\": 62822,\n  \"dinosaur\": 58878,\n  \"diploma\": 62954,\n  \"direction-left-right\": 59070,\n  \"direction-up-down\": 59071,\n  \"directions\": 62955,\n  \"disc-drive\": 63669,\n  \"disease\": 63482,\n  \"display-arrow-down\": 57700,\n  \"display-chart-up-circle-currency\": 58853,\n  \"display-chart-up-circle-dollar\": 58854,\n  \"display-chart-up\": 58851,\n  \"display-code\": 57701,\n  \"display-medical\": 57702,\n  \"display-slash\": 58106,\n  \"display\": 57699,\n  \"distribute-spacing-horizontal\": 58213,\n  \"distribute-spacing-vertical\": 58214,\n  \"ditto\": 34,\n  \"divide\": 62761,\n  \"dizzy\": 62823,\n  \"dna\": 62577,\n  \"do-not-enter\": 62956,\n  \"dog-leashed\": 63188,\n  \"dog\": 63187,\n  \"dollar-circle\": 62184,\n  \"dollar-sign\": 36,\n  \"dollar-square\": 62185,\n  \"dollar\": 36,\n  \"dolly-box\": 62578,\n  \"dolly-empty\": 62579,\n  \"dolly-flatbed-alt\": 62581,\n  \"dolly-flatbed-empty\": 62582,\n  \"dolly-flatbed\": 62580,\n  \"dolly\": 62578,\n  \"dolphin\": 57704,\n  \"donate\": 62649,\n  \"dong-sign\": 57705,\n  \"donut\": 58374,\n  \"door-closed\": 62762,\n  \"door-open\": 62763,\n  \"dot-circle\": 61842,\n  \"dot\": 59345,\n  \"doughnut\": 58374,\n  \"dove\": 62650,\n  \"down-from-bracket\": 58987,\n  \"down-from-dotted-line\": 58375,\n  \"down-from-line\": 62281,\n  \"down-left-and-up-right-to-center\": 62498,\n  \"down-left\": 57706,\n  \"down-long-to-line\": 59072,\n  \"down-long\": 62217,\n  \"down-right\": 57707,\n  \"down-to-bracket\": 58599,\n  \"down-to-dotted-line\": 58376,\n  \"down-to-line\": 62282,\n  \"down-up\": 59073,\n  \"down\": 62292,\n  \"download\": 61465,\n  \"drafting-compass\": 62824,\n  \"dragon\": 63189,\n  \"draw-circle\": 62957,\n  \"draw-polygon\": 62958,\n  \"draw-square\": 62959,\n  \"dreidel\": 63378,\n  \"dress\": 59089,\n  \"dresser\": 59519,\n  \"drivers-license\": 62146,\n  \"drone-alt\": 63584,\n  \"drone-front\": 63584,\n  \"drone\": 63583,\n  \"droplet-degree\": 63304,\n  \"droplet-percent\": 63312,\n  \"droplet-plus\": 59392,\n  \"droplet-slash\": 62919,\n  \"droplet\": 61507,\n  \"drum-steelpan\": 62826,\n  \"drum\": 62825,\n  \"drumstick-bite\": 63191,\n  \"drumstick\": 63190,\n  \"dryer-alt\": 63586,\n  \"dryer-heat\": 63586,\n  \"dryer\": 63585,\n  \"duck\": 63192,\n  \"dumbbell\": 62539,\n  \"dumpster-fire\": 63380,\n  \"dumpster\": 63379,\n  \"dungeon\": 63193,\n  \"e\": 69,\n  \"ear-circle-checkmark\": 59227,\n  \"ear-deaf\": 62116,\n  \"ear-listen\": 62114,\n  \"ear-muffs\": 63381,\n  \"ear-triangle-exclamation\": 59228,\n  \"ear-waveform\": 59229,\n  \"ear\": 62960,\n  \"earth-africa\": 62844,\n  \"earth-america\": 62845,\n  \"earth-americas\": 62845,\n  \"earth-asia\": 62846,\n  \"earth-europe\": 63394,\n  \"earth-oceania\": 58491,\n  \"earth\": 62845,\n  \"eclipse-alt\": 63306,\n  \"eclipse\": 63305,\n  \"edit\": 61508,\n  \"egg-fried\": 63484,\n  \"egg\": 63483,\n  \"eggplant\": 57708,\n  \"eject\": 61522,\n  \"elephant\": 63194,\n  \"elevator\": 57709,\n  \"ellipsis-h-alt\": 62363,\n  \"ellipsis-h\": 61761,\n  \"ellipsis-stroke-vertical\": 62364,\n  \"ellipsis-stroke\": 62363,\n  \"ellipsis-v-alt\": 62364,\n  \"ellipsis-v\": 61762,\n  \"ellipsis-vertical\": 61762,\n  \"ellipsis\": 61761,\n  \"empty-set\": 63062,\n  \"engine-exclamation\": 62962,\n  \"engine-warning\": 62962,\n  \"engine\": 57710,\n  \"envelope-badge\": 57711,\n  \"envelope-certificate\": 59433,\n  \"envelope-circle-check\": 58600,\n  \"envelope-circle-user\": 59102,\n  \"envelope-circle\": 57612,\n  \"envelope-dot\": 57711,\n  \"envelope-open-dollar\": 63063,\n  \"envelope-open-text\": 63064,\n  \"envelope-open\": 62134,\n  \"envelope-ribbon\": 59433,\n  \"envelope-square\": 61849,\n  \"envelope\": 61664,\n  \"envelopes-bulk\": 63092,\n  \"envelopes\": 57712,\n  \"equals\": 61,\n  \"eraser\": 61741,\n  \"escalator\": 57713,\n  \"ethernet\": 63382,\n  \"eur\": 61779,\n  \"euro-sign\": 61779,\n  \"euro\": 61779,\n  \"eurozone-sign\": 59200,\n  \"excavator\": 58966,\n  \"exchange-alt\": 62306,\n  \"exchange\": 61676,\n  \"exclamation-circle\": 61546,\n  \"exclamation-square\": 62241,\n  \"exclamation-triangle\": 61553,\n  \"exclamation\": 33,\n  \"expand-alt\": 62500,\n  \"expand-arrows-alt\": 62238,\n  \"expand-arrows\": 62237,\n  \"expand-wide\": 62240,\n  \"expand\": 61541,\n  \"exploding-head\": 58110,\n  \"explosion\": 58601,\n  \"external-link-alt\": 62301,\n  \"external-link-square-alt\": 62304,\n  \"external-link-square\": 61772,\n  \"external-link\": 61582,\n  \"eye-closed\": 59451,\n  \"eye-dropper-empty\": 61947,\n  \"eye-dropper-full\": 57714,\n  \"eye-dropper-half\": 57715,\n  \"eye-dropper\": 61947,\n  \"eye-evil\": 63195,\n  \"eye-low-vision\": 62120,\n  \"eye-slash\": 61552,\n  \"eye\": 61550,\n  \"eyedropper\": 61947,\n  \"eyes\": 58215,\n  \"f\": 70,\n  \"face-angry-horns\": 58216,\n  \"face-angry\": 62806,\n  \"face-anguished\": 58217,\n  \"face-anxious-sweat\": 58218,\n  \"face-astonished\": 58219,\n  \"face-awesome\": 58377,\n  \"face-beam-hand-over-mouth\": 58492,\n  \"face-clouds\": 58493,\n  \"face-confounded\": 58220,\n  \"face-confused\": 58221,\n  \"face-cowboy-hat\": 58222,\n  \"face-diagonal-mouth\": 58494,\n  \"face-disappointed\": 58223,\n  \"face-disguise\": 58224,\n  \"face-dizzy\": 62823,\n  \"face-dotted\": 58495,\n  \"face-downcast-sweat\": 58225,\n  \"face-drooling\": 58226,\n  \"face-exhaling\": 58496,\n  \"face-explode\": 58110,\n  \"face-expressionless\": 58227,\n  \"face-eyes-xmarks\": 58228,\n  \"face-fearful\": 58229,\n  \"face-flushed\": 62841,\n  \"face-frown-open\": 62842,\n  \"face-frown-slight\": 58230,\n  \"face-frown\": 61721,\n  \"face-glasses\": 58231,\n  \"face-grimace\": 62847,\n  \"face-grin-beam-sweat\": 62851,\n  \"face-grin-beam\": 62850,\n  \"face-grin-hearts\": 62852,\n  \"face-grin-squint-tears\": 62854,\n  \"face-grin-squint\": 62853,\n  \"face-grin-stars\": 62855,\n  \"face-grin-tears\": 62856,\n  \"face-grin-tongue-squint\": 62858,\n  \"face-grin-tongue-wink\": 62859,\n  \"face-grin-tongue\": 62857,\n  \"face-grin-wide\": 62849,\n  \"face-grin-wink\": 62860,\n  \"face-grin\": 62848,\n  \"face-hand-over-mouth\": 58232,\n  \"face-hand-peeking\": 58497,\n  \"face-hand-yawn\": 58233,\n  \"face-head-bandage\": 58234,\n  \"face-holding-back-tears\": 58498,\n  \"face-hushed\": 58235,\n  \"face-icicles\": 58236,\n  \"face-kiss-beam\": 62871,\n  \"face-kiss-closed-eyes\": 58237,\n  \"face-kiss-wink-heart\": 62872,\n  \"face-kiss\": 62870,\n  \"face-laugh-beam\": 62874,\n  \"face-laugh-squint\": 62875,\n  \"face-laugh-wink\": 62876,\n  \"face-laugh\": 62873,\n  \"face-lying\": 58238,\n  \"face-mask\": 58239,\n  \"face-meh-blank\": 62884,\n  \"face-meh\": 61722,\n  \"face-melting\": 58499,\n  \"face-monocle\": 58240,\n  \"face-nauseated\": 58241,\n  \"face-nose-steam\": 58242,\n  \"face-party\": 58243,\n  \"face-pensive\": 58244,\n  \"face-persevering\": 58245,\n  \"face-pleading\": 58246,\n  \"face-pouting\": 58247,\n  \"face-raised-eyebrow\": 58248,\n  \"face-relieved\": 58249,\n  \"face-rolling-eyes\": 62885,\n  \"face-sad-cry\": 62899,\n  \"face-sad-sweat\": 58250,\n  \"face-sad-tear\": 62900,\n  \"face-saluting\": 58500,\n  \"face-scream\": 58251,\n  \"face-shaking-horizontal\": 59293,\n  \"face-shaking-vertical\": 59294,\n  \"face-shaking\": 59292,\n  \"face-shush\": 58252,\n  \"face-sleeping\": 58253,\n  \"face-sleepy\": 58254,\n  \"face-smile-beam\": 62904,\n  \"face-smile-halo\": 58255,\n  \"face-smile-hearts\": 58256,\n  \"face-smile-horns\": 58257,\n  \"face-smile-plus\": 62905,\n  \"face-smile-relaxed\": 58258,\n  \"face-smile-tear\": 58259,\n  \"face-smile-tongue\": 58260,\n  \"face-smile-upside-down\": 58261,\n  \"face-smile-wink\": 62682,\n  \"face-smile\": 61720,\n  \"face-smiling-hands\": 58262,\n  \"face-smirking\": 58263,\n  \"face-spiral-eyes\": 58501,\n  \"face-sunglasses\": 58264,\n  \"face-surprise\": 62914,\n  \"face-swear\": 58265,\n  \"face-thermometer\": 58266,\n  \"face-thinking\": 58267,\n  \"face-tired\": 62920,\n  \"face-tissue\": 58268,\n  \"face-tongue-money\": 58269,\n  \"face-tongue-sweat\": 58270,\n  \"face-unamused\": 58271,\n  \"face-viewfinder\": 58111,\n  \"face-vomit\": 58272,\n  \"face-weary\": 58273,\n  \"face-woozy\": 58274,\n  \"face-worried\": 58275,\n  \"face-zany\": 58276,\n  \"face-zipper\": 58277,\n  \"falafel\": 58378,\n  \"family-dress\": 58113,\n  \"family-pants\": 58114,\n  \"family\": 58112,\n  \"fan-table\": 57348,\n  \"fan\": 63587,\n  \"farm\": 63588,\n  \"fast-backward\": 61513,\n  \"fast-forward\": 61520,\n  \"faucet-drip\": 57350,\n  \"faucet\": 57349,\n  \"fax\": 61868,\n  \"feather-alt\": 62827,\n  \"feather-pointed\": 62827,\n  \"feather\": 62765,\n  \"feed\": 61598,\n  \"female\": 61826,\n  \"fence\": 58115,\n  \"ferris-wheel\": 57716,\n  \"ferry\": 58602,\n  \"field-hockey-stick-ball\": 62540,\n  \"field-hockey\": 62540,\n  \"fighter-jet\": 61691,\n  \"file-aiff\": 59387,\n  \"file-alt\": 61788,\n  \"file-archive\": 61894,\n  \"file-arrow-down\": 62829,\n  \"file-arrow-up\": 62836,\n  \"file-audio\": 61895,\n  \"file-award\": 62963,\n  \"file-ban\": 59224,\n  \"file-binary\": 57717,\n  \"file-brackets-curly\": 59396,\n  \"file-cad\": 58994,\n  \"file-caret-down\": 58409,\n  \"file-caret-up\": 58410,\n  \"file-certificate\": 62963,\n  \"file-chart-column\": 63065,\n  \"file-chart-line\": 63065,\n  \"file-chart-pie\": 63066,\n  \"file-check\": 62230,\n  \"file-circle-check\": 58784,\n  \"file-circle-exclamation\": 58603,\n  \"file-circle-info\": 58515,\n  \"file-circle-minus\": 58605,\n  \"file-circle-plus\": 58516,\n  \"file-circle-question\": 58607,\n  \"file-circle-xmark\": 58785,\n  \"file-clipboard\": 61674,\n  \"file-code\": 61897,\n  \"file-contract\": 62828,\n  \"file-css\": 59452,\n  \"file-csv\": 63197,\n  \"file-dashed-line\": 63607,\n  \"file-doc\": 58861,\n  \"file-download\": 62829,\n  \"file-edit\": 62236,\n  \"file-eps\": 58948,\n  \"file-excel\": 61891,\n  \"file-exclamation\": 62234,\n  \"file-export\": 62830,\n  \"file-fragment\": 59031,\n  \"file-gif\": 58949,\n  \"file-half-dashed\": 59032,\n  \"file-heart\": 57718,\n  \"file-html\": 59453,\n  \"file-icns\": 59457,\n  \"file-image\": 61893,\n  \"file-import\": 62831,\n  \"file-invoice-dollar\": 62833,\n  \"file-invoice\": 62832,\n  \"file-jpg\": 58950,\n  \"file-js\": 59454,\n  \"file-lines\": 61788,\n  \"file-lock\": 58278,\n  \"file-magnifying-glass\": 63589,\n  \"file-medical-alt\": 62584,\n  \"file-medical\": 62583,\n  \"file-midi\": 59397,\n  \"file-minus\": 62232,\n  \"file-mov\": 58951,\n  \"file-mp3\": 58952,\n  \"file-mp4\": 58953,\n  \"file-music\": 63670,\n  \"file-odf\": 59388,\n  \"file-pdf\": 61889,\n  \"file-pen\": 62236,\n  \"file-plus-minus\": 57719,\n  \"file-plus\": 62233,\n  \"file-png\": 58982,\n  \"file-powerpoint\": 61892,\n  \"file-ppt\": 58954,\n  \"file-prescription\": 62834,\n  \"file-search\": 63589,\n  \"file-shield\": 58608,\n  \"file-signature\": 62835,\n  \"file-slash\": 58279,\n  \"file-spreadsheet\": 63067,\n  \"file-svg\": 58955,\n  \"file-tex\": 59389,\n  \"file-text\": 61788,\n  \"file-times\": 62231,\n  \"file-upload\": 62836,\n  \"file-user\": 63068,\n  \"file-vector\": 58956,\n  \"file-video\": 61896,\n  \"file-wav\": 59390,\n  \"file-waveform\": 62584,\n  \"file-word\": 61890,\n  \"file-xls\": 58957,\n  \"file-xmark\": 62231,\n  \"file-xml\": 58964,\n  \"file-zip\": 58862,\n  \"file-zipper\": 61894,\n  \"file\": 61787,\n  \"files-medical\": 63485,\n  \"files\": 57720,\n  \"fill-drip\": 62838,\n  \"fill\": 62837,\n  \"film-alt\": 61448,\n  \"film-canister\": 63671,\n  \"film-cannister\": 63671,\n  \"film-music\": 59241,\n  \"film-simple\": 61448,\n  \"film-slash\": 57721,\n  \"film-stack\": 59243,\n  \"film\": 61448,\n  \"films\": 57722,\n  \"filter-circle-dollar\": 63074,\n  \"filter-circle-xmark\": 57723,\n  \"filter-list\": 57724,\n  \"filter-slash\": 57725,\n  \"filter\": 61616,\n  \"filters\": 57726,\n  \"fingerprint\": 62839,\n  \"fire-alt\": 63460,\n  \"fire-burner\": 58609,\n  \"fire-extinguisher\": 61748,\n  \"fire-flame-curved\": 63460,\n  \"fire-flame-simple\": 62570,\n  \"fire-flame\": 63199,\n  \"fire-hydrant\": 57727,\n  \"fire-smoke\": 63307,\n  \"fire\": 61549,\n  \"fireplace\": 63386,\n  \"firewall\": 58332,\n  \"first-aid\": 62585,\n  \"fish-bones\": 58116,\n  \"fish-cooked\": 63486,\n  \"fish-fins\": 58610,\n  \"fish\": 62840,\n  \"fishing-rod\": 58280,\n  \"fist-raised\": 63198,\n  \"flag-alt\": 63308,\n  \"flag-checkered\": 61726,\n  \"flag-pennant\": 62550,\n  \"flag-swallowtail\": 63308,\n  \"flag-usa\": 63309,\n  \"flag\": 61476,\n  \"flame\": 63199,\n  \"flashlight\": 63672,\n  \"flask-gear\": 58865,\n  \"flask-poison\": 63200,\n  \"flask-potion\": 63201,\n  \"flask-round-poison\": 63200,\n  \"flask-round-potion\": 63201,\n  \"flask-vial\": 58611,\n  \"flask\": 61635,\n  \"flatbread-stuffed\": 58380,\n  \"flatbread\": 58379,\n  \"floppy-disk-circle-arrow-right\": 57728,\n  \"floppy-disk-circle-xmark\": 57729,\n  \"floppy-disk-pen\": 57730,\n  \"floppy-disk-times\": 57729,\n  \"floppy-disk\": 61639,\n  \"floppy-disks\": 57731,\n  \"florin-sign\": 57732,\n  \"flower-daffodil\": 63488,\n  \"flower-tulip\": 63489,\n  \"flower\": 63487,\n  \"flushed\": 62841,\n  \"flute\": 63673,\n  \"flux-capacitor\": 63674,\n  \"flying-disc\": 58281,\n  \"fog\": 63310,\n  \"folder-arrow-down\": 57427,\n  \"folder-arrow-left\": 59346,\n  \"folder-arrow-right\": 59347,\n  \"folder-arrow-up\": 57428,\n  \"folder-blank\": 61563,\n  \"folder-bookmark\": 57734,\n  \"folder-check\": 58958,\n  \"folder-closed\": 57733,\n  \"folder-cog\": 57735,\n  \"folder-download\": 57427,\n  \"folder-gear\": 57735,\n  \"folder-grid\": 57736,\n  \"folder-heart\": 57737,\n  \"folder-image\": 57738,\n  \"folder-magnifying-glass\": 57739,\n  \"folder-medical\": 57740,\n  \"folder-minus\": 63069,\n  \"folder-music\": 57741,\n  \"folder-open\": 61564,\n  \"folder-plus\": 63070,\n  \"folder-search\": 57739,\n  \"folder-times\": 63071,\n  \"folder-tree\": 63490,\n  \"folder-upload\": 57428,\n  \"folder-user\": 57742,\n  \"folder-xmark\": 63071,\n  \"folder\": 61563,\n  \"folders\": 63072,\n  \"fondue-pot\": 58381,\n  \"font-awesome-flag\": 62132,\n  \"font-awesome-logo-full\": 62132,\n  \"font-awesome\": 62132,\n  \"font-case\": 63590,\n  \"font\": 61489,\n  \"foot-wing\": 59444,\n  \"football-ball\": 62542,\n  \"football-helmet\": 62543,\n  \"football\": 62542,\n  \"fork-knife\": 62182,\n  \"fork\": 62179,\n  \"forklift\": 62586,\n  \"fort\": 58502,\n  \"forward-fast\": 61520,\n  \"forward-step\": 61521,\n  \"forward\": 61518,\n  \"fragile\": 62651,\n  \"frame\": 58517,\n  \"franc-sign\": 57743,\n  \"french-fries\": 63491,\n  \"frog\": 62766,\n  \"frosty-head\": 63387,\n  \"frown-open\": 62842,\n  \"frown\": 61721,\n  \"function\": 63073,\n  \"funnel-dollar\": 63074,\n  \"futbol-ball\": 61923,\n  \"futbol\": 61923,\n  \"g\": 71,\n  \"galaxy\": 57352,\n  \"gallery-thumbnails\": 58282,\n  \"game-board-alt\": 63592,\n  \"game-board-simple\": 63592,\n  \"game-board\": 63591,\n  \"game-console-handheld-crank\": 58809,\n  \"game-console-handheld\": 63675,\n  \"gamepad-alt\": 58786,\n  \"gamepad-modern\": 58786,\n  \"gamepad\": 61723,\n  \"garage-car\": 57354,\n  \"garage-empty\": 59081,\n  \"garage-open\": 57355,\n  \"garage\": 57353,\n  \"garlic\": 58382,\n  \"gas-pump-left\": 59256,\n  \"gas-pump-right\": 59257,\n  \"gas-pump-slash\": 62964,\n  \"gas-pump\": 62767,\n  \"gauge-circle-bolt\": 58518,\n  \"gauge-circle-minus\": 58519,\n  \"gauge-circle-plus\": 58520,\n  \"gauge-high\": 63013,\n  \"gauge-low\": 63015,\n  \"gauge-max\": 63014,\n  \"gauge-med\": 63012,\n  \"gauge-min\": 63016,\n  \"gauge-simple-high\": 63018,\n  \"gauge-simple-low\": 63020,\n  \"gauge-simple-max\": 63019,\n  \"gauge-simple-med\": 63017,\n  \"gauge-simple-min\": 63021,\n  \"gauge-simple\": 63017,\n  \"gauge\": 63012,\n  \"gave-dandy\": 58377,\n  \"gavel\": 61667,\n  \"gbp\": 61780,\n  \"gear-api\": 59556,\n  \"gear-code\": 58856,\n  \"gear-complex-api\": 59557,\n  \"gear-complex-code\": 58859,\n  \"gear-complex\": 58857,\n  \"gear\": 61459,\n  \"gears\": 61573,\n  \"gem\": 62373,\n  \"gemini\": 59465,\n  \"genderless\": 61997,\n  \"ghost\": 63202,\n  \"gif\": 57744,\n  \"gift-card\": 63075,\n  \"gift\": 61547,\n  \"gifts\": 63388,\n  \"gingerbread-man\": 63389,\n  \"glass-champagne\": 63390,\n  \"glass-cheers\": 63391,\n  \"glass-citrus\": 63593,\n  \"glass-empty\": 57745,\n  \"glass-half-empty\": 57746,\n  \"glass-half-full\": 57746,\n  \"glass-half\": 57746,\n  \"glass-martini-alt\": 62843,\n  \"glass-martini\": 61440,\n  \"glass-water-droplet\": 58613,\n  \"glass-water\": 58612,\n  \"glass-whiskey-rocks\": 63393,\n  \"glass-whiskey\": 63392,\n  \"glass\": 63492,\n  \"glasses-alt\": 62965,\n  \"glasses-round\": 62965,\n  \"glasses\": 62768,\n  \"globe-africa\": 62844,\n  \"globe-americas\": 62845,\n  \"globe-asia\": 62846,\n  \"globe-europe\": 63394,\n  \"globe-oceania\": 58491,\n  \"globe-pointer\": 58894,\n  \"globe-snow\": 63395,\n  \"globe-stand\": 62966,\n  \"globe-wifi\": 59013,\n  \"globe-www\": 59558,\n  \"globe\": 61612,\n  \"glove-boxing\": 62520,\n  \"goal-net\": 58283,\n  \"golf-ball-tee\": 62544,\n  \"golf-ball\": 62544,\n  \"golf-club\": 62545,\n  \"golf-flag-hole\": 58284,\n  \"gopuram\": 63076,\n  \"gpu\": 59459,\n  \"graduation-cap\": 61853,\n  \"gramophone\": 63677,\n  \"grapes\": 58118,\n  \"grate-droplet\": 57748,\n  \"grate\": 57747,\n  \"greater-than-equal\": 62770,\n  \"greater-than\": 62,\n  \"grid-2-minus\": 59050,\n  \"grid-2-plus\": 57751,\n  \"grid-2\": 57750,\n  \"grid-3\": 57749,\n  \"grid-4\": 57752,\n  \"grid-5\": 57753,\n  \"grid-dividers\": 58285,\n  \"grid-horizontal\": 62861,\n  \"grid-round-2-minus\": 59051,\n  \"grid-round-2-plus\": 58844,\n  \"grid-round-2\": 58843,\n  \"grid-round-4\": 58845,\n  \"grid-round-5\": 58846,\n  \"grid-round\": 58842,\n  \"grid-vertical\": 62862,\n  \"grid\": 57749,\n  \"grill-fire\": 58788,\n  \"grill-hot\": 58789,\n  \"grill\": 58787,\n  \"grimace\": 62847,\n  \"grin-alt\": 62849,\n  \"grin-beam-sweat\": 62851,\n  \"grin-beam\": 62850,\n  \"grin-hearts\": 62852,\n  \"grin-squint-tears\": 62854,\n  \"grin-squint\": 62853,\n  \"grin-stars\": 62855,\n  \"grin-tears\": 62856,\n  \"grin-tongue-squint\": 62858,\n  \"grin-tongue-wink\": 62859,\n  \"grin-tongue\": 62857,\n  \"grin-wink\": 62860,\n  \"grin\": 62848,\n  \"grip-dots-vertical\": 58385,\n  \"grip-dots\": 58384,\n  \"grip-horizontal\": 62861,\n  \"grip-lines-vertical\": 63397,\n  \"grip-lines\": 63396,\n  \"grip-vertical\": 62862,\n  \"grip\": 62861,\n  \"group-arrows-rotate\": 58614,\n  \"guarani-sign\": 57754,\n  \"guitar-electric\": 63678,\n  \"guitar\": 63398,\n  \"guitars\": 63679,\n  \"gun-slash\": 57756,\n  \"gun-squirt\": 57757,\n  \"gun\": 57755,\n  \"h-square\": 61693,\n  \"h\": 72,\n  \"h1\": 62227,\n  \"h2\": 62228,\n  \"h3\": 62229,\n  \"h4\": 63594,\n  \"h5\": 58386,\n  \"h6\": 58387,\n  \"hamburger\": 63493,\n  \"hammer-brush\": 58912,\n  \"hammer-crash\": 58388,\n  \"hammer-war\": 63204,\n  \"hammer\": 63203,\n  \"hamsa\": 63077,\n  \"hand-back-fist\": 62037,\n  \"hand-back-point-down\": 57758,\n  \"hand-back-point-left\": 57759,\n  \"hand-back-point-ribbon\": 57760,\n  \"hand-back-point-right\": 57761,\n  \"hand-back-point-up\": 57762,\n  \"hand-dots\": 62561,\n  \"hand-fingers-crossed\": 57763,\n  \"hand-fist\": 63198,\n  \"hand-heart\": 62652,\n  \"hand-holding-box\": 62587,\n  \"hand-holding-circle-dollar\": 58913,\n  \"hand-holding-dollar\": 62656,\n  \"hand-holding-droplet\": 62657,\n  \"hand-holding-hand\": 58615,\n  \"hand-holding-heart\": 62654,\n  \"hand-holding-magic\": 63205,\n  \"hand-holding-medical\": 57436,\n  \"hand-holding-seedling\": 62655,\n  \"hand-holding-skull\": 57764,\n  \"hand-holding-star\": 59393,\n  \"hand-holding-usd\": 62656,\n  \"hand-holding-water\": 62657,\n  \"hand-holding\": 62653,\n  \"hand-horns\": 57769,\n  \"hand-lizard\": 62040,\n  \"hand-love\": 57765,\n  \"hand-middle-finger\": 63494,\n  \"hand-paper\": 62038,\n  \"hand-peace\": 62043,\n  \"hand-point-down\": 61607,\n  \"hand-point-left\": 61605,\n  \"hand-point-ribbon\": 57766,\n  \"hand-point-right\": 61604,\n  \"hand-point-up\": 61606,\n  \"hand-pointer\": 62042,\n  \"hand-receiving\": 62588,\n  \"hand-rock\": 62037,\n  \"hand-scissors\": 62039,\n  \"hand-shaka\": 59441,\n  \"hand-sparkles\": 57437,\n  \"hand-spock\": 62041,\n  \"hand-wave\": 57767,\n  \"hand\": 62038,\n  \"handcuffs\": 58616,\n  \"hands-american-sign-language-interpreting\": 62115,\n  \"hands-asl-interpreting\": 62115,\n  \"hands-bound\": 58617,\n  \"hands-bubbles\": 57438,\n  \"hands-clapping\": 57768,\n  \"hands-heart\": 62659,\n  \"hands-helping\": 62660,\n  \"hands-holding-child\": 58618,\n  \"hands-holding-circle\": 58619,\n  \"hands-holding-diamond\": 62588,\n  \"hands-holding-dollar\": 62661,\n  \"hands-holding-heart\": 62659,\n  \"hands-holding\": 62658,\n  \"hands-praying\": 63108,\n  \"hands-usd\": 62661,\n  \"hands-wash\": 57438,\n  \"hands\": 62119,\n  \"handshake-alt-slash\": 57440,\n  \"handshake-alt\": 62133,\n  \"handshake-angle\": 62660,\n  \"handshake-simple-slash\": 57440,\n  \"handshake-simple\": 62133,\n  \"handshake-slash\": 57440,\n  \"handshake\": 62133,\n  \"hanukiah\": 63206,\n  \"hard-drive\": 61600,\n  \"hard-hat\": 63495,\n  \"hard-of-hearing\": 62116,\n  \"hashtag-lock\": 58389,\n  \"hashtag\": 35,\n  \"hat-beach\": 58886,\n  \"hat-chef\": 63595,\n  \"hat-cowboy-side\": 63681,\n  \"hat-cowboy\": 63680,\n  \"hat-hard\": 63495,\n  \"hat-santa\": 63399,\n  \"hat-winter\": 63400,\n  \"hat-witch\": 63207,\n  \"hat-wizard\": 63208,\n  \"haykal\": 63078,\n  \"hdd\": 61600,\n  \"head-side-brain\": 63496,\n  \"head-side-circuit\": 59230,\n  \"head-side-cough-slash\": 57442,\n  \"head-side-cough\": 57441,\n  \"head-side-gear\": 58897,\n  \"head-side-goggles\": 63210,\n  \"head-side-headphones\": 63682,\n  \"head-side-heart\": 57770,\n  \"head-side-mask\": 57443,\n  \"head-side-medical\": 63497,\n  \"head-side-speak\": 59231,\n  \"head-side-virus\": 57444,\n  \"head-side\": 63209,\n  \"head-vr\": 63210,\n  \"header\": 61916,\n  \"heading\": 61916,\n  \"headphones-alt\": 61477,\n  \"headphones-simple\": 61477,\n  \"headphones-slash\": 59260,\n  \"headphones\": 61477,\n  \"headset\": 62864,\n  \"heart-broken\": 63401,\n  \"heart-circle-bolt\": 58620,\n  \"heart-circle-check\": 58621,\n  \"heart-circle-exclamation\": 58622,\n  \"heart-circle-minus\": 58623,\n  \"heart-circle-plus\": 58624,\n  \"heart-circle-xmark\": 58625,\n  \"heart-circle\": 62663,\n  \"heart-crack\": 63401,\n  \"heart-half-alt\": 57772,\n  \"heart-half-stroke\": 57772,\n  \"heart-half\": 57771,\n  \"heart-music-camera-bolt\": 63597,\n  \"heart-pulse\": 61982,\n  \"heart-rate\": 62968,\n  \"heart-slash\": 59278,\n  \"heart-square\": 62664,\n  \"heart\": 61444,\n  \"heartbeat\": 61982,\n  \"hearts\": 59279,\n  \"heat\": 57356,\n  \"helicopter-symbol\": 58626,\n  \"helicopter\": 62771,\n  \"helmet-battle\": 63211,\n  \"helmet-safety\": 63495,\n  \"helmet-un\": 58627,\n  \"heptagon\": 59424,\n  \"hexagon-check\": 58390,\n  \"hexagon-divide\": 57773,\n  \"hexagon-equals\": 59058,\n  \"hexagon-exclamation\": 58391,\n  \"hexagon-image\": 58628,\n  \"hexagon-minus\": 62215,\n  \"hexagon-nodes-bolt\": 59034,\n  \"hexagon-nodes\": 59033,\n  \"hexagon-plus\": 62208,\n  \"hexagon-vertical-nft-slanted\": 58629,\n  \"hexagon-vertical-nft\": 58629,\n  \"hexagon-xmark\": 62190,\n  \"hexagon\": 62226,\n  \"high-definition\": 57774,\n  \"highlighter-line\": 57775,\n  \"highlighter\": 62865,\n  \"hiking\": 63212,\n  \"hill-avalanche\": 58631,\n  \"hill-rockslide\": 58632,\n  \"hippo\": 63213,\n  \"history\": 61914,\n  \"hockey-mask\": 63214,\n  \"hockey-puck\": 62547,\n  \"hockey-stick-puck\": 58286,\n  \"hockey-stick\": 59366,\n  \"hockey-sticks\": 62548,\n  \"holly-berry\": 63402,\n  \"home-alt\": 61461,\n  \"home-blank\": 58503,\n  \"home-heart\": 62665,\n  \"home-lg-alt\": 61461,\n  \"home-lg\": 58287,\n  \"home-user\": 57776,\n  \"home\": 61461,\n  \"honey-pot\": 58392,\n  \"hood-cloak\": 63215,\n  \"horizontal-rule\": 63596,\n  \"horse-head\": 63403,\n  \"horse-saddle\": 63683,\n  \"horse\": 63216,\n  \"horseshoe\": 59418,\n  \"hose-reel\": 58394,\n  \"hose\": 58393,\n  \"hospital-alt\": 61688,\n  \"hospital-symbol\": 62590,\n  \"hospital-user\": 63501,\n  \"hospital-wide\": 61688,\n  \"hospital\": 61688,\n  \"hospitals\": 63502,\n  \"hot-tub-person\": 62867,\n  \"hot-tub\": 62867,\n  \"hotdog\": 63503,\n  \"hotel\": 62868,\n  \"hourglass-1\": 62033,\n  \"hourglass-2\": 62034,\n  \"hourglass-3\": 62035,\n  \"hourglass-clock\": 58395,\n  \"hourglass-empty\": 62036,\n  \"hourglass-end\": 62035,\n  \"hourglass-half\": 62034,\n  \"hourglass-start\": 62033,\n  \"hourglass\": 62036,\n  \"house-blank\": 58503,\n  \"house-building\": 57777,\n  \"house-chimney-blank\": 58288,\n  \"house-chimney-crack\": 63217,\n  \"house-chimney-heart\": 57778,\n  \"house-chimney-medical\": 63474,\n  \"house-chimney-user\": 57445,\n  \"house-chimney-window\": 57357,\n  \"house-chimney\": 58287,\n  \"house-circle-check\": 58633,\n  \"house-circle-exclamation\": 58634,\n  \"house-circle-xmark\": 58635,\n  \"house-crack\": 58289,\n  \"house-damage\": 63217,\n  \"house-day\": 57358,\n  \"house-fire\": 58636,\n  \"house-flag\": 58637,\n  \"house-flood-water-circle-arrow-right\": 58639,\n  \"house-flood-water\": 58638,\n  \"house-flood\": 63311,\n  \"house-heart\": 62665,\n  \"house-laptop\": 57446,\n  \"house-leave\": 57359,\n  \"house-lock\": 58640,\n  \"house-medical-circle-check\": 58641,\n  \"house-medical-circle-exclamation\": 58642,\n  \"house-medical-circle-xmark\": 58643,\n  \"house-medical-flag\": 58644,\n  \"house-medical\": 58290,\n  \"house-night\": 57360,\n  \"house-person-arrive\": 57361,\n  \"house-person-depart\": 57359,\n  \"house-person-leave\": 57359,\n  \"house-person-return\": 57361,\n  \"house-return\": 57361,\n  \"house-signal\": 57362,\n  \"house-tree\": 57779,\n  \"house-tsunami\": 58645,\n  \"house-turret\": 57780,\n  \"house-unlock\": 59082,\n  \"house-user\": 57776,\n  \"house-water\": 63311,\n  \"house-window\": 58291,\n  \"house\": 61461,\n  \"hryvnia-sign\": 63218,\n  \"hryvnia\": 63218,\n  \"humidity\": 63312,\n  \"hundred-points\": 58396,\n  \"hurricane\": 63313,\n  \"hydra\": 59014,\n  \"hyphen\": 45,\n  \"i-cursor\": 62022,\n  \"i\": 73,\n  \"ice-cream\": 63504,\n  \"ice-skate\": 63404,\n  \"icicles\": 63405,\n  \"icons-alt\": 63598,\n  \"icons\": 63597,\n  \"id-badge\": 62145,\n  \"id-card-alt\": 62591,\n  \"id-card-clip\": 62591,\n  \"id-card\": 62146,\n  \"igloo\": 63406,\n  \"ils\": 61963,\n  \"image-broken\": 59562,\n  \"image-circle-arrow-down\": 59244,\n  \"image-circle-check\": 59245,\n  \"image-circle-plus\": 59246,\n  \"image-circle-xmark\": 59247,\n  \"image-landscape\": 57781,\n  \"image-music\": 59248,\n  \"image-polaroid-user\": 57782,\n  \"image-polaroid\": 63684,\n  \"image-portrait\": 62432,\n  \"image-slash\": 57783,\n  \"image-stack\": 59249,\n  \"image-user\": 57784,\n  \"image\": 61502,\n  \"images-user\": 57785,\n  \"images\": 62210,\n  \"inbox-arrow-down\": 62224,\n  \"inbox-arrow-up\": 62225,\n  \"inbox-full\": 57786,\n  \"inbox-in\": 62224,\n  \"inbox-out\": 62225,\n  \"inbox\": 61468,\n  \"inboxes\": 57787,\n  \"indent\": 61500,\n  \"indian-rupee-sign\": 57788,\n  \"indian-rupee\": 57788,\n  \"industry-alt\": 62387,\n  \"industry-windows\": 62387,\n  \"industry\": 62069,\n  \"infinity\": 62772,\n  \"info-circle\": 61530,\n  \"info-square\": 62223,\n  \"info\": 61737,\n  \"inhaler\": 62969,\n  \"input-numeric\": 57789,\n  \"input-password\": 59517,\n  \"input-pipe\": 57790,\n  \"input-text\": 57791,\n  \"inr\": 57788,\n  \"institution\": 61852,\n  \"integral\": 63079,\n  \"interrobang\": 58810,\n  \"intersection\": 63080,\n  \"inventory\": 62592,\n  \"island-tree-palm\": 63505,\n  \"island-tropical\": 63505,\n  \"italic\": 61491,\n  \"j\": 74,\n  \"jack-o-lantern\": 62222,\n  \"jar-wheat\": 58647,\n  \"jar\": 58646,\n  \"jeans-straight\": 59091,\n  \"jeans\": 59090,\n  \"jedi\": 63081,\n  \"jet-fighter-up\": 58648,\n  \"jet-fighter\": 61691,\n  \"joint\": 62869,\n  \"journal-whills\": 63082,\n  \"joystick\": 63685,\n  \"jpy\": 61783,\n  \"jug-bottle\": 58875,\n  \"jug-detergent\": 58649,\n  \"jug\": 63686,\n  \"k\": 75,\n  \"kaaba\": 63083,\n  \"kayak\": 59547,\n  \"kazoo\": 63687,\n  \"kerning\": 63599,\n  \"kettlebell\": 59442,\n  \"key-skeleton-left-right\": 58292,\n  \"key-skeleton\": 63219,\n  \"key\": 61572,\n  \"keyboard-brightness-low\": 57793,\n  \"keyboard-brightness\": 57792,\n  \"keyboard-down\": 57794,\n  \"keyboard-left\": 57795,\n  \"keyboard\": 61724,\n  \"keynote\": 63084,\n  \"khanda\": 63085,\n  \"kidneys\": 62971,\n  \"kip-sign\": 57796,\n  \"kiss-beam\": 62871,\n  \"kiss-wink-heart\": 62872,\n  \"kiss\": 62870,\n  \"kit-medical\": 62585,\n  \"kitchen-set\": 58650,\n  \"kite\": 63220,\n  \"kiwi-bird\": 62773,\n  \"kiwi-fruit\": 58124,\n  \"knife-kitchen\": 63221,\n  \"knife\": 62180,\n  \"krw\": 61785,\n  \"l\": 76,\n  \"label\": 59559,\n  \"lacrosse-stick-ball\": 58294,\n  \"lacrosse-stick\": 58293,\n  \"ladder-water\": 62917,\n  \"lambda\": 63086,\n  \"lamp-desk\": 57364,\n  \"lamp-floor\": 57365,\n  \"lamp-street\": 57797,\n  \"lamp\": 62666,\n  \"land-mine-on\": 58651,\n  \"landmark-alt\": 63314,\n  \"landmark-dome\": 63314,\n  \"landmark-flag\": 58652,\n  \"landmark-magnifying-glass\": 58914,\n  \"landmark\": 63087,\n  \"landscape\": 57781,\n  \"language\": 61867,\n  \"laptop-arrow-down\": 57798,\n  \"laptop-binary\": 58855,\n  \"laptop-code\": 62972,\n  \"laptop-file\": 58653,\n  \"laptop-house\": 57446,\n  \"laptop-medical\": 63506,\n  \"laptop-mobile\": 63610,\n  \"laptop-slash\": 57799,\n  \"laptop\": 61705,\n  \"lari-sign\": 57800,\n  \"lasso-sparkles\": 57801,\n  \"lasso\": 63688,\n  \"laugh-beam\": 62874,\n  \"laugh-squint\": 62875,\n  \"laugh-wink\": 62876,\n  \"laugh\": 62873,\n  \"layer-group-minus\": 62974,\n  \"layer-group-plus\": 62975,\n  \"layer-group\": 62973,\n  \"layer-minus\": 62974,\n  \"layer-plus\": 62975,\n  \"layer\": 59455,\n  \"leaf-heart\": 62667,\n  \"leaf-maple\": 63222,\n  \"leaf-oak\": 63223,\n  \"leaf\": 61548,\n  \"leafy-green\": 58397,\n  \"left-from-bracket\": 58988,\n  \"left-from-dotted-line\": 59074,\n  \"left-from-line\": 62280,\n  \"left-long-to-line\": 58398,\n  \"left-long\": 62218,\n  \"left-right\": 62263,\n  \"left-to-bracket\": 58989,\n  \"left-to-dotted-line\": 59075,\n  \"left-to-line\": 62283,\n  \"left\": 62293,\n  \"legal\": 61667,\n  \"lemon\": 61588,\n  \"leo\": 59466,\n  \"less-than-equal\": 62775,\n  \"less-than\": 60,\n  \"level-down-alt\": 62398,\n  \"level-down\": 61769,\n  \"level-up-alt\": 62399,\n  \"level-up\": 61768,\n  \"libra\": 59467,\n  \"life-ring\": 61901,\n  \"light-ceiling\": 57366,\n  \"light-emergency-on\": 58400,\n  \"light-emergency\": 58399,\n  \"light-switch-off\": 57368,\n  \"light-switch-on\": 57369,\n  \"light-switch\": 57367,\n  \"lightbulb-cfl-on\": 58791,\n  \"lightbulb-cfl\": 58790,\n  \"lightbulb-dollar\": 63088,\n  \"lightbulb-exclamation-on\": 57802,\n  \"lightbulb-exclamation\": 63089,\n  \"lightbulb-gear\": 58877,\n  \"lightbulb-message\": 59015,\n  \"lightbulb-on\": 63090,\n  \"lightbulb-slash\": 63091,\n  \"lightbulb\": 61675,\n  \"lighthouse\": 58898,\n  \"lights-holiday\": 63410,\n  \"line-chart\": 61953,\n  \"line-columns\": 63600,\n  \"line-height\": 63601,\n  \"lines-leaning\": 58654,\n  \"link-broken\": 59458,\n  \"link-horizontal-slash\": 57804,\n  \"link-horizontal\": 57803,\n  \"link-simple-slash\": 57806,\n  \"link-simple\": 57805,\n  \"link-slash\": 61735,\n  \"link\": 61633,\n  \"lips\": 62976,\n  \"lira-sign\": 61845,\n  \"list-1-2\": 61643,\n  \"list-alt\": 61474,\n  \"list-check\": 61614,\n  \"list-dots\": 61642,\n  \"list-dropdown\": 57807,\n  \"list-music\": 63689,\n  \"list-numeric\": 61643,\n  \"list-ol\": 61643,\n  \"list-radio\": 57808,\n  \"list-squares\": 61498,\n  \"list-timeline\": 57809,\n  \"list-tree\": 57810,\n  \"list-ul\": 61642,\n  \"list\": 61498,\n  \"litecoin-sign\": 57811,\n  \"loader\": 57812,\n  \"lobster\": 58401,\n  \"location-arrow-slash\": 59258,\n  \"location-arrow-up\": 58938,\n  \"location-arrow\": 61732,\n  \"location-check\": 62982,\n  \"location-circle\": 62978,\n  \"location-crosshairs-slash\": 62979,\n  \"location-crosshairs\": 62977,\n  \"location-dot-slash\": 62981,\n  \"location-dot\": 62405,\n  \"location-exclamation\": 62984,\n  \"location-minus\": 62985,\n  \"location-pen\": 62983,\n  \"location-pin-lock\": 58655,\n  \"location-pin-slash\": 62988,\n  \"location-pin\": 61505,\n  \"location-plus\": 62986,\n  \"location-question\": 62987,\n  \"location-slash\": 62979,\n  \"location-smile\": 62989,\n  \"location-xmark\": 62990,\n  \"location\": 62977,\n  \"lock-a\": 58402,\n  \"lock-alt\": 62221,\n  \"lock-hashtag\": 58403,\n  \"lock-keyhole-open\": 62402,\n  \"lock-keyhole\": 62221,\n  \"lock-open-alt\": 62402,\n  \"lock-open\": 62401,\n  \"lock\": 61475,\n  \"locust\": 58656,\n  \"lollipop\": 58404,\n  \"lollypop\": 58404,\n  \"long-arrow-alt-down\": 62217,\n  \"long-arrow-alt-left\": 62218,\n  \"long-arrow-alt-right\": 62219,\n  \"long-arrow-alt-up\": 62220,\n  \"long-arrow-down\": 61813,\n  \"long-arrow-left\": 61815,\n  \"long-arrow-right\": 61816,\n  \"long-arrow-up\": 61814,\n  \"loveseat\": 62668,\n  \"low-vision\": 62120,\n  \"luchador-mask\": 62549,\n  \"luchador\": 62549,\n  \"luggage-cart\": 62877,\n  \"lungs-virus\": 57447,\n  \"lungs\": 62980,\n  \"lychee\": 59428,\n  \"m\": 77,\n  \"mace\": 63224,\n  \"magic-wand-sparkles\": 58058,\n  \"magic\": 61648,\n  \"magnet\": 61558,\n  \"magnifying-glass-arrow-right\": 58657,\n  \"magnifying-glass-arrows-rotate\": 58974,\n  \"magnifying-glass-chart\": 58658,\n  \"magnifying-glass-dollar\": 63112,\n  \"magnifying-glass-location\": 63113,\n  \"magnifying-glass-minus\": 61456,\n  \"magnifying-glass-music\": 58975,\n  \"magnifying-glass-play\": 58976,\n  \"magnifying-glass-plus\": 61454,\n  \"magnifying-glass-waveform\": 58977,\n  \"magnifying-glass\": 61442,\n  \"mail-bulk\": 63092,\n  \"mail-forward\": 61540,\n  \"mail-reply-all\": 61730,\n  \"mail-reply\": 62437,\n  \"mailbox-flag-up\": 58811,\n  \"mailbox-open-empty\": 59425,\n  \"mailbox-open-letter\": 59427,\n  \"mailbox\": 63507,\n  \"maki-roll\": 58507,\n  \"makizushi\": 58507,\n  \"malaysian-ringgit-sign\": 59130,\n  \"male\": 61827,\n  \"manat-sign\": 57813,\n  \"mandolin\": 63225,\n  \"mango\": 58127,\n  \"manhole\": 57814,\n  \"map-location-dot\": 62880,\n  \"map-location\": 62879,\n  \"map-marked-alt\": 62880,\n  \"map-marked\": 62879,\n  \"map-marker-alt-slash\": 62981,\n  \"map-marker-alt\": 62405,\n  \"map-marker-check\": 62982,\n  \"map-marker-edit\": 62983,\n  \"map-marker-exclamation\": 62984,\n  \"map-marker-minus\": 62985,\n  \"map-marker-plus\": 62986,\n  \"map-marker-question\": 62987,\n  \"map-marker-slash\": 62988,\n  \"map-marker-smile\": 62989,\n  \"map-marker-times\": 62990,\n  \"map-marker-xmark\": 62990,\n  \"map-marker\": 61505,\n  \"map-pin\": 62070,\n  \"map-signs\": 62071,\n  \"map\": 62073,\n  \"marker\": 62881,\n  \"mars-and-venus-burst\": 58659,\n  \"mars-and-venus\": 61988,\n  \"mars-double\": 61991,\n  \"mars-stroke-h\": 61995,\n  \"mars-stroke-right\": 61995,\n  \"mars-stroke-up\": 61994,\n  \"mars-stroke-v\": 61994,\n  \"mars-stroke\": 61993,\n  \"mars\": 61986,\n  \"martini-glass-citrus\": 62817,\n  \"martini-glass-empty\": 61440,\n  \"martini-glass\": 62843,\n  \"mask-face\": 57815,\n  \"mask-luchador\": 62549,\n  \"mask-snorkel\": 58295,\n  \"mask-ventilator\": 58660,\n  \"mask\": 63226,\n  \"masks-theater\": 63024,\n  \"mattress-pillow\": 58661,\n  \"maximize\": 62238,\n  \"meat\": 63508,\n  \"medal\": 62882,\n  \"medkit\": 61690,\n  \"megaphone\": 63093,\n  \"meh-blank\": 62884,\n  \"meh-rolling-eyes\": 62885,\n  \"meh\": 61722,\n  \"melon-slice\": 58129,\n  \"melon\": 58128,\n  \"memo-circle-check\": 57817,\n  \"memo-circle-info\": 58522,\n  \"memo-pad\": 57818,\n  \"memo\": 57816,\n  \"memory\": 62776,\n  \"menorah\": 63094,\n  \"mercury\": 61987,\n  \"merge\": 58662,\n  \"message-arrow-down\": 57819,\n  \"message-arrow-up-right\": 57821,\n  \"message-arrow-up\": 57820,\n  \"message-bot\": 58296,\n  \"message-captions\": 57822,\n  \"message-check\": 62626,\n  \"message-code\": 57823,\n  \"message-dollar\": 63056,\n  \"message-dot\": 59103,\n  \"message-dots\": 62627,\n  \"message-edit\": 62628,\n  \"message-exclamation\": 62629,\n  \"message-heart\": 58825,\n  \"message-image\": 57824,\n  \"message-lines\": 62630,\n  \"message-medical\": 63476,\n  \"message-middle-top\": 57826,\n  \"message-middle\": 57825,\n  \"message-minus\": 62631,\n  \"message-music\": 63663,\n  \"message-pen\": 62628,\n  \"message-plus\": 62632,\n  \"message-question\": 57827,\n  \"message-quote\": 57828,\n  \"message-slash\": 62633,\n  \"message-smile\": 62634,\n  \"message-sms\": 57829,\n  \"message-text\": 57830,\n  \"message-times\": 62635,\n  \"message-waveform\": 59104,\n  \"message-xmark\": 62635,\n  \"message\": 62074,\n  \"messages-dollar\": 63058,\n  \"messages-question\": 57831,\n  \"messages\": 62646,\n  \"messaging\": 62627,\n  \"meteor\": 63315,\n  \"meter-bolt\": 57833,\n  \"meter-droplet\": 57834,\n  \"meter-fire\": 57835,\n  \"meter\": 57832,\n  \"microchip-ai\": 57836,\n  \"microchip\": 62171,\n  \"microphone-alt-slash\": 62777,\n  \"microphone-alt\": 62409,\n  \"microphone-circle-alt\": 57623,\n  \"microphone-circle-plus\": 59261,\n  \"microphone-circle-xmark\": 59262,\n  \"microphone-circle\": 57622,\n  \"microphone-lines-slash\": 62777,\n  \"microphone-lines\": 62409,\n  \"microphone-signal-meter\": 59232,\n  \"microphone-slash\": 61745,\n  \"microphone-stand\": 63691,\n  \"microphone\": 61744,\n  \"microscope\": 62992,\n  \"microwave\": 57371,\n  \"midi\": 59398,\n  \"mill-sign\": 57837,\n  \"mind-share\": 63095,\n  \"minimize\": 63372,\n  \"minus-circle\": 61526,\n  \"minus-hexagon\": 62215,\n  \"minus-large\": 58372,\n  \"minus-octagon\": 62216,\n  \"minus-square\": 61766,\n  \"minus\": 61544,\n  \"mistletoe\": 63412,\n  \"mitten\": 63413,\n  \"mobile-alt\": 62413,\n  \"mobile-android-alt\": 62415,\n  \"mobile-android\": 62414,\n  \"mobile-arrow-down\": 59211,\n  \"mobile-button\": 61707,\n  \"mobile-iphone\": 57838,\n  \"mobile-notch\": 57838,\n  \"mobile-phone\": 62414,\n  \"mobile-retro\": 58663,\n  \"mobile-rotate-reverse\": 59412,\n  \"mobile-rotate\": 59411,\n  \"mobile-screen-button\": 62413,\n  \"mobile-screen\": 62415,\n  \"mobile-signal-out\": 57840,\n  \"mobile-signal\": 57839,\n  \"mobile-slash\": 59413,\n  \"mobile-vibrate-slash\": 59415,\n  \"mobile-vibrate\": 59414,\n  \"mobile\": 62414,\n  \"money-bill-1-wave\": 62779,\n  \"money-bill-1\": 62417,\n  \"money-bill-alt\": 62417,\n  \"money-bill-simple-wave\": 57842,\n  \"money-bill-simple\": 57841,\n  \"money-bill-transfer\": 58664,\n  \"money-bill-trend-up\": 58665,\n  \"money-bill-wave-alt\": 62779,\n  \"money-bill-wave\": 62778,\n  \"money-bill-wheat\": 58666,\n  \"money-bill\": 61654,\n  \"money-bills-alt\": 57844,\n  \"money-bills-simple\": 57844,\n  \"money-bills\": 57843,\n  \"money-check-alt\": 62781,\n  \"money-check-dollar-pen\": 63603,\n  \"money-check-dollar\": 62781,\n  \"money-check-edit-alt\": 63603,\n  \"money-check-edit\": 63602,\n  \"money-check-pen\": 63602,\n  \"money-check\": 62780,\n  \"money-from-bracket\": 58130,\n  \"money-simple-from-bracket\": 58131,\n  \"monitor-heart-rate\": 62993,\n  \"monitor-waveform\": 62993,\n  \"monkey\": 63227,\n  \"monument\": 62886,\n  \"moon-cloud\": 63316,\n  \"moon-first-quarter-inverse\": 59506,\n  \"moon-first-quarter\": 59504,\n  \"moon-full-inverse\": 59507,\n  \"moon-full\": 59505,\n  \"moon-last-quarter-inverse\": 59504,\n  \"moon-last-quarter\": 59506,\n  \"moon-new-inverse\": 59505,\n  \"moon-new\": 59507,\n  \"moon-over-sun\": 63306,\n  \"moon-star\": 59337,\n  \"moon-stars\": 63317,\n  \"moon-waning-crescent-inverse\": 59511,\n  \"moon-waning-crescent\": 59508,\n  \"moon-waning-gibbous-inverse\": 59510,\n  \"moon-waning-gibbous\": 59509,\n  \"moon-waxing-crescent-inverse\": 59509,\n  \"moon-waxing-crescent\": 59510,\n  \"moon-waxing-gibbous-inverse\": 59508,\n  \"moon-waxing-gibbous\": 59511,\n  \"moon\": 61830,\n  \"moped\": 58297,\n  \"mortar-board\": 61853,\n  \"mortar-pestle\": 62887,\n  \"mosque\": 63096,\n  \"mosquito-net\": 58668,\n  \"mosquito\": 58667,\n  \"motorcycle\": 61980,\n  \"mound\": 58669,\n  \"mountain-city\": 58670,\n  \"mountain-sun\": 58671,\n  \"mountain\": 63228,\n  \"mountains\": 63229,\n  \"mouse-alt\": 63693,\n  \"mouse-field\": 58792,\n  \"mouse-pointer\": 62021,\n  \"mouse\": 63692,\n  \"mp3-player\": 63694,\n  \"mug-hot\": 63414,\n  \"mug-marshmallows\": 63415,\n  \"mug-saucer\": 61684,\n  \"mug-tea-saucer\": 57845,\n  \"mug-tea\": 63605,\n  \"mug\": 63604,\n  \"multiply\": 61453,\n  \"museum\": 61852,\n  \"mushroom\": 58405,\n  \"music-alt-slash\": 63696,\n  \"music-alt\": 63695,\n  \"music-magnifying-glass\": 58978,\n  \"music-note-slash\": 63696,\n  \"music-note\": 63695,\n  \"music-slash\": 63697,\n  \"music\": 61441,\n  \"mustache\": 58812,\n  \"n\": 78,\n  \"naira-sign\": 57846,\n  \"narwhal\": 63230,\n  \"nas\": 59553,\n  \"navicon\": 61641,\n  \"nesting-dolls\": 58298,\n  \"network-wired\": 63231,\n  \"neuter\": 61996,\n  \"newspaper\": 61930,\n  \"nfc-lock\": 57848,\n  \"nfc-magnifying-glass\": 57849,\n  \"nfc-pen\": 57850,\n  \"nfc-signal\": 57851,\n  \"nfc-slash\": 57852,\n  \"nfc-symbol\": 58673,\n  \"nfc-trash\": 57853,\n  \"nfc\": 57847,\n  \"nigiri\": 58506,\n  \"non-binary\": 59399,\n  \"norwegian-krone-sign\": 59112,\n  \"nose\": 58813,\n  \"not-equal\": 62782,\n  \"notdef\": 57854,\n  \"note-medical\": 57856,\n  \"note-sticky\": 62025,\n  \"note\": 57855,\n  \"notebook\": 57857,\n  \"notes-medical\": 62593,\n  \"notes-sticky\": 59225,\n  \"notes\": 57858,\n  \"numpad\": 59340,\n  \"o\": 79,\n  \"oar\": 59524,\n  \"oars\": 59525,\n  \"object-exclude\": 58524,\n  \"object-group\": 62023,\n  \"object-intersect\": 58525,\n  \"object-subtract\": 58526,\n  \"object-ungroup\": 62024,\n  \"object-union\": 58527,\n  \"objects-align-bottom\": 58299,\n  \"objects-align-center-horizontal\": 58300,\n  \"objects-align-center-vertical\": 58301,\n  \"objects-align-left\": 58302,\n  \"objects-align-right\": 58303,\n  \"objects-align-top\": 58304,\n  \"objects-column\": 58305,\n  \"octagon-check\": 58406,\n  \"octagon-divide\": 57859,\n  \"octagon-equals\": 59059,\n  \"octagon-exclamation\": 57860,\n  \"octagon-minus\": 62216,\n  \"octagon-plus\": 62209,\n  \"octagon-xmark\": 62192,\n  \"octagon\": 62214,\n  \"octopus\": 59016,\n  \"oil-can-drip\": 57861,\n  \"oil-can\": 62995,\n  \"oil-temp\": 62996,\n  \"oil-temperature\": 62996,\n  \"oil-well\": 58674,\n  \"olive-branch\": 58135,\n  \"olive\": 58134,\n  \"om\": 63097,\n  \"omega\": 63098,\n  \"onion\": 58407,\n  \"open-captioning\": 59263,\n  \"opossum\": 59516,\n  \"option\": 58136,\n  \"ornament\": 63416,\n  \"otter\": 63232,\n  \"outdent\": 61499,\n  \"outlet\": 57372,\n  \"oven\": 57373,\n  \"overline\": 63606,\n  \"owl\": 59551,\n  \"p\": 80,\n  \"page-break\": 63607,\n  \"page-caret-down\": 58409,\n  \"page-caret-up\": 58410,\n  \"page\": 58408,\n  \"pager\": 63509,\n  \"paint-brush-alt\": 62889,\n  \"paint-brush-fine\": 62889,\n  \"paint-brush\": 61948,\n  \"paint-roller\": 62890,\n  \"paintbrush-alt\": 62889,\n  \"paintbrush-fine-slash\": 59213,\n  \"paintbrush-fine\": 62889,\n  \"paintbrush-pencil\": 57862,\n  \"paintbrush-slash\": 59214,\n  \"paintbrush\": 61948,\n  \"palette-boxes\": 62595,\n  \"palette\": 62783,\n  \"pallet-alt\": 62595,\n  \"pallet-box\": 57864,\n  \"pallet-boxes\": 62595,\n  \"pallet\": 62594,\n  \"pan-food\": 58411,\n  \"pan-frying\": 58412,\n  \"pancakes\": 58413,\n  \"panel-ews\": 58414,\n  \"panel-fire\": 58415,\n  \"panorama\": 57865,\n  \"panties\": 59092,\n  \"pants-straight\": 59094,\n  \"pants\": 59093,\n  \"paper-plane-alt\": 57866,\n  \"paper-plane-top\": 57866,\n  \"paper-plane\": 61912,\n  \"paperclip-vertical\": 58306,\n  \"paperclip\": 61638,\n  \"parachute-box\": 62669,\n  \"paragraph-left\": 63608,\n  \"paragraph-rtl\": 63608,\n  \"paragraph\": 61917,\n  \"parentheses\": 57541,\n  \"parenthesis\": 40,\n  \"parking-circle-slash\": 62998,\n  \"parking-circle\": 62997,\n  \"parking-slash\": 62999,\n  \"parking\": 62784,\n  \"party-back\": 58460,\n  \"party-bell\": 58138,\n  \"party-horn\": 58139,\n  \"passport\": 62891,\n  \"pastafarianism\": 63099,\n  \"paste\": 61674,\n  \"pause-circle\": 62091,\n  \"pause\": 61516,\n  \"paw-alt\": 63233,\n  \"paw-claws\": 63234,\n  \"paw-simple\": 63233,\n  \"paw\": 61872,\n  \"peace\": 63100,\n  \"peach\": 57867,\n  \"peanut\": 58416,\n  \"peanuts\": 58417,\n  \"peapod\": 58140,\n  \"pear\": 57868,\n  \"pedestal\": 57869,\n  \"pegasus\": 63235,\n  \"pen-alt-slash\": 57871,\n  \"pen-alt\": 62213,\n  \"pen-circle\": 57870,\n  \"pen-clip-slash\": 57871,\n  \"pen-clip\": 62213,\n  \"pen-fancy-slash\": 57872,\n  \"pen-fancy\": 62892,\n  \"pen-field\": 57873,\n  \"pen-line\": 57874,\n  \"pen-nib-slash\": 58529,\n  \"pen-nib\": 62893,\n  \"pen-paintbrush\": 63000,\n  \"pen-ruler\": 62894,\n  \"pen-slash\": 57875,\n  \"pen-square\": 61771,\n  \"pen-swirl\": 57876,\n  \"pen-to-square\": 61508,\n  \"pen\": 62212,\n  \"pencil-alt\": 62211,\n  \"pencil-line\": 59215,\n  \"pencil-mechanical\": 58826,\n  \"pencil-paintbrush\": 63000,\n  \"pencil-ruler\": 62894,\n  \"pencil-slash\": 57877,\n  \"pencil-square\": 61771,\n  \"pencil\": 62211,\n  \"pennant\": 62550,\n  \"pentagon\": 59280,\n  \"people-arrows-left-right\": 57448,\n  \"people-arrows\": 57448,\n  \"people-carry-box\": 62670,\n  \"people-carry\": 62670,\n  \"people-dress-simple\": 57880,\n  \"people-dress\": 57879,\n  \"people-group\": 58675,\n  \"people-line\": 58676,\n  \"people-pants-simple\": 57882,\n  \"people-pants\": 57881,\n  \"people-pulling\": 58677,\n  \"people-robbery\": 58678,\n  \"people-roof\": 58679,\n  \"people-simple\": 57883,\n  \"people\": 57878,\n  \"pepper-hot\": 63510,\n  \"pepper\": 58418,\n  \"percent\": 37,\n  \"percentage\": 37,\n  \"period\": 46,\n  \"person-arms-raised\": 59267,\n  \"person-arrow-down-to-line\": 58680,\n  \"person-arrow-up-from-line\": 58681,\n  \"person-basketball\": 59268,\n  \"person-biking-mountain\": 63563,\n  \"person-biking\": 63562,\n  \"person-booth\": 63318,\n  \"person-breastfeeding\": 58682,\n  \"person-burst\": 58683,\n  \"person-cane\": 58684,\n  \"person-carry-box\": 62671,\n  \"person-carry-empty\": 59269,\n  \"person-carry\": 62671,\n  \"person-chalkboard\": 58685,\n  \"person-circle-check\": 58686,\n  \"person-circle-exclamation\": 58687,\n  \"person-circle-minus\": 58688,\n  \"person-circle-plus\": 58689,\n  \"person-circle-question\": 58690,\n  \"person-circle-xmark\": 58691,\n  \"person-digging\": 63582,\n  \"person-dolly-empty\": 62673,\n  \"person-dolly\": 62672,\n  \"person-dots-from-line\": 62576,\n  \"person-dress-burst\": 58692,\n  \"person-dress-fairy\": 58887,\n  \"person-dress-simple\": 57884,\n  \"person-dress\": 61826,\n  \"person-drowning\": 58693,\n  \"person-fairy\": 58888,\n  \"person-falling-burst\": 58695,\n  \"person-falling\": 58694,\n  \"person-from-portal\": 57379,\n  \"person-golfing\": 59270,\n  \"person-half-dress\": 58696,\n  \"person-harassing\": 58697,\n  \"person-hiking\": 63212,\n  \"person-limbs-wide\": 59271,\n  \"person-meditating\": 59361,\n  \"person-military-pointing\": 58698,\n  \"person-military-rifle\": 58699,\n  \"person-military-to-person\": 58700,\n  \"person-pinball\": 57885,\n  \"person-praying\": 63107,\n  \"person-pregnant\": 58142,\n  \"person-rays\": 58701,\n  \"person-rifle\": 58702,\n  \"person-running-fast\": 58879,\n  \"person-running\": 63244,\n  \"person-seat-reclined\": 57887,\n  \"person-seat-window\": 59272,\n  \"person-seat\": 57886,\n  \"person-shelter\": 58703,\n  \"person-sign\": 63319,\n  \"person-simple\": 57888,\n  \"person-skating\": 63429,\n  \"person-ski-jumping\": 63431,\n  \"person-ski-lift\": 63432,\n  \"person-skiing-nordic\": 63434,\n  \"person-skiing\": 63433,\n  \"person-sledding\": 63435,\n  \"person-snowboarding\": 63438,\n  \"person-snowmobiling\": 63441,\n  \"person-soccer\": 59273,\n  \"person-swimming-pool\": 59274,\n  \"person-swimming-water\": 59275,\n  \"person-swimming\": 62916,\n  \"person-through-window\": 58793,\n  \"person-to-door\": 58419,\n  \"person-to-portal\": 57378,\n  \"person-walking-arrow-loop-left\": 58705,\n  \"person-walking-arrow-right\": 58706,\n  \"person-walking-dashed-line-arrow-right\": 58707,\n  \"person-walking-luggage\": 58708,\n  \"person-walking-with-cane\": 62109,\n  \"person-walking\": 62804,\n  \"person-water-arms-raised\": 59276,\n  \"person-waving\": 59277,\n  \"person\": 61827,\n  \"peruvian-soles-sign\": 59141,\n  \"peseta-sign\": 57889,\n  \"peso-sign\": 57890,\n  \"phone-alt\": 63609,\n  \"phone-arrow-down-left\": 57891,\n  \"phone-arrow-down\": 57891,\n  \"phone-arrow-right\": 58814,\n  \"phone-arrow-up-right\": 57892,\n  \"phone-arrow-up\": 57892,\n  \"phone-circle-alt\": 57628,\n  \"phone-circle-down\": 57629,\n  \"phone-circle\": 57627,\n  \"phone-connection\": 59105,\n  \"phone-flip\": 63609,\n  \"phone-hangup\": 57893,\n  \"phone-incoming\": 57891,\n  \"phone-intercom\": 58420,\n  \"phone-laptop\": 63610,\n  \"phone-missed\": 57894,\n  \"phone-office\": 63101,\n  \"phone-outgoing\": 57892,\n  \"phone-plus\": 62674,\n  \"phone-rotary\": 63699,\n  \"phone-slash\": 62429,\n  \"phone-square-alt\": 63611,\n  \"phone-square-down\": 57978,\n  \"phone-square\": 61592,\n  \"phone-volume\": 62112,\n  \"phone-waveform\": 59106,\n  \"phone-xmark\": 57895,\n  \"phone\": 61589,\n  \"photo-film-music\": 57896,\n  \"photo-film\": 63612,\n  \"photo-video\": 63612,\n  \"pi\": 63102,\n  \"piano-keyboard\": 63701,\n  \"piano\": 63700,\n  \"pickaxe\": 58815,\n  \"pickleball\": 58421,\n  \"picture-in-picture\": 59403,\n  \"pie-chart\": 61952,\n  \"pie\": 63237,\n  \"pig\": 63238,\n  \"piggy-bank\": 62675,\n  \"pills\": 62596,\n  \"pinata\": 58307,\n  \"pinball\": 57897,\n  \"pineapple\": 58143,\n  \"ping-pong-paddle-ball\": 62557,\n  \"pipe-circle-check\": 58422,\n  \"pipe-collar\": 58423,\n  \"pipe-section\": 58424,\n  \"pipe-smoking\": 58308,\n  \"pipe-valve\": 58425,\n  \"pipe\": 124,\n  \"pisces\": 59468,\n  \"pizza-slice\": 63512,\n  \"pizza\": 63511,\n  \"place-of-worship\": 63103,\n  \"plane-alt\": 62430,\n  \"plane-arrival\": 62895,\n  \"plane-circle-check\": 58709,\n  \"plane-circle-exclamation\": 58710,\n  \"plane-circle-xmark\": 58711,\n  \"plane-departure\": 62896,\n  \"plane-engines\": 62430,\n  \"plane-flying\": 59323,\n  \"plane-landing-gear\": 59324,\n  \"plane-lock\": 58712,\n  \"plane-prop\": 57899,\n  \"plane-slash\": 57449,\n  \"plane-tail\": 57900,\n  \"plane-up-slash\": 57902,\n  \"plane-up\": 57901,\n  \"plane\": 61554,\n  \"planet-moon\": 57375,\n  \"planet-ringed\": 57376,\n  \"plant-wilt\": 58794,\n  \"plate-utensils\": 58427,\n  \"plate-wheat\": 58714,\n  \"play-circle\": 61764,\n  \"play-flip\": 59264,\n  \"play-pause\": 57903,\n  \"play\": 61515,\n  \"plug-circle-bolt\": 58715,\n  \"plug-circle-check\": 58716,\n  \"plug-circle-exclamation\": 58717,\n  \"plug-circle-minus\": 58718,\n  \"plug-circle-plus\": 58719,\n  \"plug-circle-xmark\": 58720,\n  \"plug\": 61926,\n  \"plus-circle\": 61525,\n  \"plus-hexagon\": 62208,\n  \"plus-large\": 58782,\n  \"plus-minus\": 58428,\n  \"plus-octagon\": 62209,\n  \"plus-square\": 61694,\n  \"plus\": 43,\n  \"podcast\": 62158,\n  \"podium-star\": 63320,\n  \"podium\": 63104,\n  \"poker-chip\": 59554,\n  \"police-box\": 57377,\n  \"polish-zloty-sign\": 59147,\n  \"poll-h\": 63106,\n  \"poll-people\": 63321,\n  \"poll\": 63105,\n  \"pompebled\": 58429,\n  \"poo-bolt\": 63322,\n  \"poo-storm\": 63322,\n  \"poo\": 62206,\n  \"pool-8-ball\": 58309,\n  \"poop\": 63001,\n  \"popcorn\": 63513,\n  \"popsicle\": 58430,\n  \"portal-enter\": 57378,\n  \"portal-exit\": 57379,\n  \"portrait\": 62432,\n  \"possum\": 59516,\n  \"postage-stamp\": 59107,\n  \"pot-food\": 58431,\n  \"potato\": 58432,\n  \"pound-sign\": 61780,\n  \"power-off\": 61457,\n  \"pray\": 63107,\n  \"praying-hands\": 63108,\n  \"prescription-bottle-alt\": 62598,\n  \"prescription-bottle-medical\": 62598,\n  \"prescription-bottle-pill\": 58816,\n  \"prescription-bottle\": 62597,\n  \"prescription\": 62897,\n  \"presentation-screen\": 63109,\n  \"presentation\": 63109,\n  \"pretzel\": 58433,\n  \"print-magnifying-glass\": 63514,\n  \"print-search\": 63514,\n  \"print-slash\": 63110,\n  \"print\": 61487,\n  \"pro\": 57909,\n  \"procedures\": 62599,\n  \"project-diagram\": 62786,\n  \"projector\": 63702,\n  \"pronoun\": 59041,\n  \"pump-impeller\": 59445,\n  \"pump-medical\": 57450,\n  \"pump-soap\": 57451,\n  \"pump\": 58434,\n  \"pumpkin\": 63239,\n  \"puzzle-piece-alt\": 57905,\n  \"puzzle-piece-simple\": 57905,\n  \"puzzle-piece\": 61742,\n  \"puzzle\": 58435,\n  \"q\": 81,\n  \"qrcode-read\": 59289,\n  \"qrcode\": 61481,\n  \"question-circle\": 61529,\n  \"question-square\": 62205,\n  \"question\": 63,\n  \"quidditch-broom-ball\": 62552,\n  \"quidditch\": 62552,\n  \"quote-left-alt\": 61709,\n  \"quote-left\": 61709,\n  \"quote-right-alt\": 61710,\n  \"quote-right\": 61710,\n  \"quotes\": 57908,\n  \"quran\": 63111,\n  \"r\": 82,\n  \"rabbit-fast\": 63241,\n  \"rabbit-running\": 63241,\n  \"rabbit\": 63240,\n  \"raccoon\": 58899,\n  \"racquet\": 62554,\n  \"radar\": 57380,\n  \"radiation-alt\": 63418,\n  \"radiation\": 63417,\n  \"radio-alt\": 63704,\n  \"radio-tuner\": 63704,\n  \"radio\": 63703,\n  \"rainbow-half\": 59338,\n  \"rainbow\": 63323,\n  \"raindrops\": 63324,\n  \"ram\": 63242,\n  \"ramp-loading\": 62676,\n  \"random\": 61556,\n  \"ranking-star\": 58721,\n  \"raygun\": 57381,\n  \"receipt\": 62787,\n  \"record-vinyl\": 63705,\n  \"rectangle-4k\": 59250,\n  \"rectangle-ad\": 63041,\n  \"rectangle-api\": 59552,\n  \"rectangle-barcode\": 62563,\n  \"rectangle-beta\": 59400,\n  \"rectangle-code\": 58146,\n  \"rectangle-hd\": 57774,\n  \"rectangle-hdr\": 59251,\n  \"rectangle-high-dynamic-range\": 59251,\n  \"rectangle-history-circle-plus\": 58531,\n  \"rectangle-history-circle-user\": 58532,\n  \"rectangle-history\": 58530,\n  \"rectangle-irc\": 59500,\n  \"rectangle-landscape\": 62202,\n  \"rectangle-list\": 61474,\n  \"rectangle-minus\": 59060,\n  \"rectangle-n-a\": 59560,\n  \"rectangle-new\": 59514,\n  \"rectangle-plus\": 59061,\n  \"rectangle-portrait\": 62203,\n  \"rectangle-pro\": 57909,\n  \"rectangle-sd\": 57994,\n  \"rectangle-tall\": 59281,\n  \"rectangle-terminal\": 57910,\n  \"rectangle-times\": 62480,\n  \"rectangle-vertical-history\": 57911,\n  \"rectangle-vertical\": 62203,\n  \"rectangle-video-on-demand\": 59252,\n  \"rectangle-wide\": 62204,\n  \"rectangle-xmark\": 62480,\n  \"rectangle\": 62202,\n  \"rectangles-mixed\": 58147,\n  \"recycle\": 61880,\n  \"redo-alt\": 62201,\n  \"redo\": 61470,\n  \"reel\": 57912,\n  \"reflect-both\": 58991,\n  \"reflect-horizontal\": 58980,\n  \"reflect-vertical\": 58981,\n  \"refresh\": 61473,\n  \"refrigerator\": 57382,\n  \"registered\": 62045,\n  \"remote\": 59561,\n  \"remove-format\": 63613,\n  \"remove\": 61453,\n  \"renminbi-sign\": 59196,\n  \"reorder\": 62800,\n  \"repeat-1-alt\": 62310,\n  \"repeat-1\": 62309,\n  \"repeat-alt\": 62308,\n  \"repeat\": 62307,\n  \"reply-all\": 61730,\n  \"reply-clock\": 57913,\n  \"reply-time\": 57913,\n  \"reply\": 62437,\n  \"republican\": 63326,\n  \"restroom-simple\": 57914,\n  \"restroom\": 63421,\n  \"retweet-alt\": 62305,\n  \"retweet\": 61561,\n  \"rhombus\": 57915,\n  \"ribbon\": 62678,\n  \"right-from-bracket\": 62197,\n  \"right-from-dotted-line\": 59076,\n  \"right-from-line\": 62279,\n  \"right-left-large\": 58849,\n  \"right-left\": 62306,\n  \"right-long-to-line\": 58436,\n  \"right-long\": 62219,\n  \"right-to-bracket\": 62198,\n  \"right-to-dotted-line\": 59077,\n  \"right-to-line\": 62284,\n  \"right\": 62294,\n  \"ring-diamond\": 58795,\n  \"ring\": 63243,\n  \"rings-wedding\": 63515,\n  \"rmb\": 61783,\n  \"road-barrier\": 58722,\n  \"road-bridge\": 58723,\n  \"road-circle-check\": 58724,\n  \"road-circle-exclamation\": 58725,\n  \"road-circle-xmark\": 58726,\n  \"road-lock\": 58727,\n  \"road-spikes\": 58728,\n  \"road\": 61464,\n  \"robot-astromech\": 58066,\n  \"robot\": 62788,\n  \"rocket-launch\": 57383,\n  \"rocket-vertical\": 59325,\n  \"rocket\": 61749,\n  \"rod-asclepius\": 58745,\n  \"rod-snake\": 58745,\n  \"roller-coaster\": 58148,\n  \"rotate-back\": 62186,\n  \"rotate-backward\": 62186,\n  \"rotate-exclamation\": 57916,\n  \"rotate-forward\": 62201,\n  \"rotate-left\": 62186,\n  \"rotate-reverse\": 58929,\n  \"rotate-right\": 62201,\n  \"rotate\": 62193,\n  \"rouble\": 61784,\n  \"route-highway\": 63002,\n  \"route-interstate\": 63003,\n  \"route\": 62679,\n  \"router\": 63706,\n  \"rows-3\": 59531,\n  \"rows\": 58002,\n  \"rss-square\": 61763,\n  \"rss\": 61598,\n  \"rub\": 61784,\n  \"ruble-sign\": 61784,\n  \"ruble\": 61784,\n  \"rug\": 58729,\n  \"rugby-ball\": 58310,\n  \"ruler-combined\": 62790,\n  \"ruler-horizontal\": 62791,\n  \"ruler-triangle\": 63004,\n  \"ruler-vertical\": 62792,\n  \"ruler\": 62789,\n  \"running\": 63244,\n  \"rupee-sign\": 61782,\n  \"rupee\": 61782,\n  \"rupiah-sign\": 57917,\n  \"rv\": 63422,\n  \"s\": 83,\n  \"sack-dollar\": 63517,\n  \"sack-xmark\": 58730,\n  \"sack\": 63516,\n  \"sad-cry\": 62899,\n  \"sad-tear\": 62900,\n  \"sagittarius\": 59469,\n  \"sailboat\": 58437,\n  \"salad\": 63518,\n  \"salt-shaker\": 58438,\n  \"sandwich\": 63519,\n  \"satellite-dish\": 63424,\n  \"satellite\": 63423,\n  \"sausage\": 63520,\n  \"save-circle-arrow-right\": 57728,\n  \"save-circle-xmark\": 57729,\n  \"save-times\": 57729,\n  \"save\": 61639,\n  \"sax-hot\": 63707,\n  \"saxophone-fire\": 63707,\n  \"saxophone\": 63708,\n  \"scale-balanced\": 62030,\n  \"scale-unbalanced-flip\": 62742,\n  \"scale-unbalanced\": 62741,\n  \"scalpel-line-dashed\": 63006,\n  \"scalpel-path\": 63006,\n  \"scalpel\": 63005,\n  \"scanner-gun\": 62600,\n  \"scanner-image\": 63731,\n  \"scanner-keyboard\": 62601,\n  \"scanner-touchscreen\": 62602,\n  \"scanner\": 62600,\n  \"scarecrow\": 63245,\n  \"scarf\": 63425,\n  \"school-circle-check\": 58731,\n  \"school-circle-exclamation\": 58732,\n  \"school-circle-xmark\": 58733,\n  \"school-flag\": 58734,\n  \"school-lock\": 58735,\n  \"school-unlock\": 59083,\n  \"school\": 62793,\n  \"scissors\": 61636,\n  \"scooter\": 59331,\n  \"scorpio\": 59470,\n  \"screen-users\": 63037,\n  \"screencast\": 57918,\n  \"screenshot\": 57562,\n  \"screwdriver-wrench\": 63449,\n  \"screwdriver\": 62794,\n  \"scribble\": 57919,\n  \"scroll-old\": 63247,\n  \"scroll-ribbon\": 62954,\n  \"scroll-torah\": 63136,\n  \"scroll\": 63246,\n  \"scrubber\": 62200,\n  \"scythe\": 63248,\n  \"sd-card\": 63426,\n  \"sd-cards\": 57920,\n  \"seal-exclamation\": 57922,\n  \"seal-question\": 57923,\n  \"seal\": 57921,\n  \"search-dollar\": 63112,\n  \"search-location\": 63113,\n  \"search-minus\": 61456,\n  \"search-plus\": 61454,\n  \"search\": 61442,\n  \"seat-airline-window\": 59326,\n  \"seat-airline\": 57924,\n  \"seat\": 59236,\n  \"seats\": 59237,\n  \"section\": 58439,\n  \"seedling\": 62680,\n  \"semicolon\": 59,\n  \"send-back\": 63614,\n  \"send-backward\": 63615,\n  \"send\": 57866,\n  \"sensor-alert\": 57385,\n  \"sensor-cloud\": 57388,\n  \"sensor-fire\": 57386,\n  \"sensor-on\": 57387,\n  \"sensor-smoke\": 57388,\n  \"sensor-triangle-exclamation\": 57385,\n  \"sensor\": 57384,\n  \"septagon\": 59424,\n  \"server\": 62003,\n  \"shapes\": 63007,\n  \"share-all\": 62311,\n  \"share-alt-square\": 61921,\n  \"share-alt\": 61920,\n  \"share-from-square\": 61773,\n  \"share-nodes\": 61920,\n  \"share-square\": 61773,\n  \"share\": 61540,\n  \"sheep\": 63249,\n  \"sheet-plastic\": 58737,\n  \"shekel-sign\": 61963,\n  \"shekel\": 61963,\n  \"shelves-empty\": 57926,\n  \"shelves\": 62592,\n  \"sheqel-sign\": 61963,\n  \"sheqel\": 61963,\n  \"shield-alt\": 62445,\n  \"shield-blank\": 61746,\n  \"shield-cat\": 58738,\n  \"shield-check\": 62199,\n  \"shield-cross\": 63250,\n  \"shield-dog\": 58739,\n  \"shield-exclamation\": 57927,\n  \"shield-halved\": 62445,\n  \"shield-heart\": 58740,\n  \"shield-keyhole\": 57928,\n  \"shield-minus\": 57929,\n  \"shield-plus\": 57930,\n  \"shield-quartered\": 58741,\n  \"shield-slash\": 57931,\n  \"shield-times\": 57932,\n  \"shield-user\": 59401,\n  \"shield-virus\": 57452,\n  \"shield-xmark\": 57932,\n  \"shield\": 61746,\n  \"ship-large\": 59408,\n  \"ship\": 61978,\n  \"shipping-fast\": 62603,\n  \"shipping-timed\": 62604,\n  \"shirt-jersey\": 59095,\n  \"shirt-long-sleeve\": 58311,\n  \"shirt-running\": 58312,\n  \"shirt-tank-top\": 58313,\n  \"shirt\": 62803,\n  \"shish-kebab\": 63521,\n  \"shoe-prints\": 62795,\n  \"shoe\": 59096,\n  \"shop-24\": 59290,\n  \"shop-lock\": 58533,\n  \"shop-slash\": 57456,\n  \"shop\": 62799,\n  \"shopping-bag\": 62096,\n  \"shopping-basket-alt\": 57519,\n  \"shopping-basket\": 62097,\n  \"shopping-cart\": 61562,\n  \"shortcake\": 58341,\n  \"shorts\": 59097,\n  \"shovel-snow\": 63427,\n  \"shovel\": 63251,\n  \"shower-alt\": 57933,\n  \"shower-down\": 57933,\n  \"shower\": 62156,\n  \"shredder\": 63114,\n  \"shrimp\": 58440,\n  \"shuffle\": 61556,\n  \"shutters\": 58441,\n  \"shuttle-space-vertical\": 59327,\n  \"shuttle-space\": 61847,\n  \"shuttle-van\": 62902,\n  \"shuttlecock\": 62555,\n  \"sickle\": 63522,\n  \"sidebar-flip\": 57935,\n  \"sidebar\": 57934,\n  \"sigma\": 63115,\n  \"sign-hanging\": 62681,\n  \"sign-in-alt\": 62198,\n  \"sign-in\": 61584,\n  \"sign-language\": 62119,\n  \"sign-out-alt\": 62197,\n  \"sign-out\": 61579,\n  \"sign-post\": 58916,\n  \"sign-posts-wrench\": 58918,\n  \"sign-posts\": 58917,\n  \"sign\": 62681,\n  \"signal-1\": 63116,\n  \"signal-2\": 63117,\n  \"signal-3\": 63118,\n  \"signal-4\": 63119,\n  \"signal-5\": 61458,\n  \"signal-alt-1\": 63121,\n  \"signal-alt-2\": 63122,\n  \"signal-alt-3\": 63123,\n  \"signal-alt-4\": 63120,\n  \"signal-alt-slash\": 63124,\n  \"signal-alt\": 63120,\n  \"signal-bars-fair\": 63122,\n  \"signal-bars-good\": 63123,\n  \"signal-bars-slash\": 63124,\n  \"signal-bars-strong\": 63120,\n  \"signal-bars-weak\": 63121,\n  \"signal-bars\": 63120,\n  \"signal-fair\": 63117,\n  \"signal-good\": 63118,\n  \"signal-perfect\": 61458,\n  \"signal-slash\": 63125,\n  \"signal-stream-slash\": 57936,\n  \"signal-stream\": 63709,\n  \"signal-strong\": 63119,\n  \"signal-weak\": 63116,\n  \"signal\": 61458,\n  \"signapore-dollar-sign\": 59182,\n  \"signature-lock\": 58314,\n  \"signature-slash\": 58315,\n  \"signature\": 62903,\n  \"signing\": 62119,\n  \"signs-post\": 62071,\n  \"sim-card\": 63428,\n  \"sim-cards\": 57937,\n  \"single-quote-left\": 59419,\n  \"single-quote-right\": 59420,\n  \"sink\": 57453,\n  \"siren-on\": 57390,\n  \"siren\": 57389,\n  \"sitemap\": 61672,\n  \"skating\": 63429,\n  \"skeleton-ribs\": 58827,\n  \"skeleton\": 63008,\n  \"ski-boot-ski\": 58317,\n  \"ski-boot\": 58316,\n  \"ski-jump\": 63431,\n  \"ski-lift\": 63432,\n  \"skiing-nordic\": 63434,\n  \"skiing\": 63433,\n  \"skull-cow\": 63710,\n  \"skull-crossbones\": 63252,\n  \"skull\": 62796,\n  \"slash-back\": 92,\n  \"slash-forward\": 47,\n  \"slash\": 63253,\n  \"sledding\": 63435,\n  \"sleigh\": 63436,\n  \"slider-circle\": 59216,\n  \"slider\": 57938,\n  \"sliders-h-square\": 62448,\n  \"sliders-h\": 61918,\n  \"sliders-simple\": 57939,\n  \"sliders-up\": 62449,\n  \"sliders-v-square\": 62450,\n  \"sliders-v\": 62449,\n  \"sliders\": 61918,\n  \"slot-machine\": 58318,\n  \"smile-beam\": 62904,\n  \"smile-plus\": 62905,\n  \"smile-wink\": 62682,\n  \"smile\": 61720,\n  \"smog\": 63327,\n  \"smoke\": 63328,\n  \"smoking-ban\": 62797,\n  \"smoking\": 62605,\n  \"sms\": 63437,\n  \"snake\": 63254,\n  \"sneaker-running\": 59417,\n  \"sneaker\": 59098,\n  \"snooze\": 63616,\n  \"snow-blowing\": 63329,\n  \"snowboarding\": 63438,\n  \"snowflake-droplets\": 58817,\n  \"snowflake\": 62172,\n  \"snowflakes\": 63439,\n  \"snowman-head\": 63387,\n  \"snowman\": 63440,\n  \"snowmobile-blank\": 59332,\n  \"snowmobile\": 63441,\n  \"snowplow\": 63442,\n  \"soap\": 57454,\n  \"soccer-ball\": 61923,\n  \"socks\": 63126,\n  \"soft-serve\": 58368,\n  \"solar-panel\": 62906,\n  \"solar-system\": 57391,\n  \"sort-alpha-asc\": 61789,\n  \"sort-alpha-desc\": 63617,\n  \"sort-alpha-down-alt\": 63617,\n  \"sort-alpha-down\": 61789,\n  \"sort-alpha-up-alt\": 63618,\n  \"sort-alpha-up\": 61790,\n  \"sort-alt\": 63619,\n  \"sort-amount-asc\": 61792,\n  \"sort-amount-desc\": 63620,\n  \"sort-amount-down-alt\": 63620,\n  \"sort-amount-down\": 61792,\n  \"sort-amount-up-alt\": 63621,\n  \"sort-amount-up\": 61793,\n  \"sort-asc\": 61662,\n  \"sort-circle-down\": 57393,\n  \"sort-circle-up\": 57394,\n  \"sort-circle\": 57392,\n  \"sort-desc\": 61661,\n  \"sort-down\": 61661,\n  \"sort-numeric-asc\": 61794,\n  \"sort-numeric-desc\": 63622,\n  \"sort-numeric-down-alt\": 63622,\n  \"sort-numeric-down\": 61794,\n  \"sort-numeric-up-alt\": 63623,\n  \"sort-numeric-up\": 61795,\n  \"sort-shapes-down-alt\": 63625,\n  \"sort-shapes-down\": 63624,\n  \"sort-shapes-up-alt\": 63627,\n  \"sort-shapes-up\": 63626,\n  \"sort-size-down-alt\": 63629,\n  \"sort-size-down\": 63628,\n  \"sort-size-up-alt\": 63631,\n  \"sort-size-up\": 63630,\n  \"sort-up-down\": 57497,\n  \"sort-up\": 61662,\n  \"sort\": 61660,\n  \"soup\": 63523,\n  \"spa\": 62907,\n  \"space-shuttle\": 61847,\n  \"space-station-moon-alt\": 57396,\n  \"space-station-moon-construction\": 57396,\n  \"space-station-moon\": 57395,\n  \"spade\": 62196,\n  \"spaghetti-monster-flying\": 63099,\n  \"sparkle\": 58838,\n  \"sparkles\": 63632,\n  \"speaker\": 63711,\n  \"speakers\": 63712,\n  \"spell-check\": 63633,\n  \"spider-black-widow\": 63256,\n  \"spider-web\": 63257,\n  \"spider\": 63255,\n  \"spine\": 59233,\n  \"spinner-scale\": 58922,\n  \"spinner-third\": 62452,\n  \"spinner\": 61712,\n  \"spiral\": 59402,\n  \"split\": 57940,\n  \"splotch\": 62908,\n  \"spoon\": 62181,\n  \"sportsball\": 58443,\n  \"spray-can-sparkles\": 62928,\n  \"spray-can\": 62909,\n  \"sprinkler-ceiling\": 58444,\n  \"sprinkler\": 57397,\n  \"sprout\": 62680,\n  \"square-0\": 57941,\n  \"square-1\": 57942,\n  \"square-2\": 57943,\n  \"square-3\": 57944,\n  \"square-4\": 57945,\n  \"square-5\": 57946,\n  \"square-6\": 57947,\n  \"square-7\": 57948,\n  \"square-8\": 57949,\n  \"square-9\": 57950,\n  \"square-a-lock\": 58445,\n  \"square-a\": 57951,\n  \"square-ampersand\": 57952,\n  \"square-arrow-down-left\": 57953,\n  \"square-arrow-down-right\": 57954,\n  \"square-arrow-down\": 62265,\n  \"square-arrow-left\": 62266,\n  \"square-arrow-right\": 62267,\n  \"square-arrow-up-left\": 57955,\n  \"square-arrow-up-right\": 61772,\n  \"square-arrow-up\": 62268,\n  \"square-austral\": 59174,\n  \"square-australian-dollar\": 59160,\n  \"square-b\": 57956,\n  \"square-baht\": 59161,\n  \"square-bangladeshi-taka\": 59204,\n  \"square-binary\": 59035,\n  \"square-bitcoin\": 59122,\n  \"square-bolt\": 57957,\n  \"square-brazilian-real\": 59121,\n  \"square-c\": 57958,\n  \"square-caret-down\": 61776,\n  \"square-caret-left\": 61841,\n  \"square-caret-right\": 61778,\n  \"square-caret-up\": 61777,\n  \"square-cedi\": 59177,\n  \"square-cent\": 59120,\n  \"square-check\": 61770,\n  \"square-chevron-down\": 62249,\n  \"square-chevron-left\": 62250,\n  \"square-chevron-right\": 62251,\n  \"square-chevron-up\": 62252,\n  \"square-chf\": 59110,\n  \"square-code\": 57959,\n  \"square-colon\": 59194,\n  \"square-cruzeiro\": 59117,\n  \"square-currency\": 59148,\n  \"square-d\": 57960,\n  \"square-danish-krone\": 59207,\n  \"square-dashed-circle-plus\": 58818,\n  \"square-dashed\": 57961,\n  \"square-divide\": 57962,\n  \"square-dollar\": 62185,\n  \"square-dong\": 59151,\n  \"square-down-left\": 57963,\n  \"square-down-right\": 57964,\n  \"square-down\": 62288,\n  \"square-e\": 57965,\n  \"square-ellipsis-vertical\": 57967,\n  \"square-ellipsis\": 57966,\n  \"square-envelope\": 61849,\n  \"square-equals\": 59062,\n  \"square-euro\": 59186,\n  \"square-eurozone\": 59175,\n  \"square-exclamation\": 62241,\n  \"square-f\": 57968,\n  \"square-florin\": 59159,\n  \"square-fragile\": 62619,\n  \"square-franc\": 59183,\n  \"square-full\": 62556,\n  \"square-g\": 57969,\n  \"square-guarani\": 59150,\n  \"square-h\": 61693,\n  \"square-half-horizontal\": 59406,\n  \"square-half-stroke-horizontal\": 59407,\n  \"square-half-stroke\": 59283,\n  \"square-half\": 59282,\n  \"square-heart\": 62664,\n  \"square-hryvnia\": 59152,\n  \"square-i\": 57970,\n  \"square-indian-rupee\": 59125,\n  \"square-info\": 62223,\n  \"square-j\": 57971,\n  \"square-k\": 57972,\n  \"square-kanban\": 58504,\n  \"square-kip\": 59149,\n  \"square-l\": 57973,\n  \"square-lari\": 59199,\n  \"square-left\": 62289,\n  \"square-lira\": 59111,\n  \"square-list\": 58505,\n  \"square-litecoin\": 59127,\n  \"square-m\": 57974,\n  \"square-malaysian-ringgit\": 59208,\n  \"square-manat\": 59140,\n  \"square-microphone\": 59265,\n  \"square-mill\": 59146,\n  \"square-minus\": 61766,\n  \"square-n\": 57975,\n  \"square-naira\": 59144,\n  \"square-nfi\": 58742,\n  \"square-norwegian-krone\": 59143,\n  \"square-o\": 57976,\n  \"square-p\": 57977,\n  \"square-parking-slash\": 62999,\n  \"square-parking\": 62784,\n  \"square-pen\": 61771,\n  \"square-person-confined\": 58743,\n  \"square-peruvian-soles\": 59158,\n  \"square-peseta\": 59114,\n  \"square-peso\": 59162,\n  \"square-phone-flip\": 63611,\n  \"square-phone-hangup\": 57978,\n  \"square-phone\": 61592,\n  \"square-plus\": 61694,\n  \"square-polish-zloty\": 59190,\n  \"square-poll-horizontal\": 63106,\n  \"square-poll-vertical\": 63105,\n  \"square-q\": 57979,\n  \"square-quarters\": 58446,\n  \"square-question\": 62205,\n  \"square-quote\": 58153,\n  \"square-r\": 57980,\n  \"square-renminbi\": 59197,\n  \"square-right\": 62290,\n  \"square-ring\": 58447,\n  \"square-root-alt\": 63128,\n  \"square-root-variable\": 63128,\n  \"square-root\": 63127,\n  \"square-rss\": 61763,\n  \"square-ruble\": 59128,\n  \"square-rupee\": 59157,\n  \"square-rupiah\": 59154,\n  \"square-s\": 57981,\n  \"square-share-nodes\": 61921,\n  \"square-shekel\": 59189,\n  \"square-sliders-vertical\": 62450,\n  \"square-sliders\": 62448,\n  \"square-small\": 57982,\n  \"square-star\": 57983,\n  \"square-sterling\": 59155,\n  \"square-swedish-krona\": 59164,\n  \"square-t\": 57984,\n  \"square-tenge\": 59185,\n  \"square-terminal\": 58154,\n  \"square-this-way-up\": 62623,\n  \"square-tugrik\": 59176,\n  \"square-turkish-lira\": 59167,\n  \"square-u\": 57985,\n  \"square-up-left\": 57986,\n  \"square-up-right\": 62304,\n  \"square-up\": 62291,\n  \"square-user\": 57987,\n  \"square-v\": 57988,\n  \"square-virus\": 58744,\n  \"square-w\": 57989,\n  \"square-wine-glass-crack\": 62619,\n  \"square-won\": 59145,\n  \"square-x\": 57990,\n  \"square-xmark\": 62163,\n  \"square-y\": 57991,\n  \"square-yen\": 59172,\n  \"square-z\": 57992,\n  \"square\": 61640,\n  \"squareapore-dollar\": 59187,\n  \"squid\": 58448,\n  \"squirrel\": 63258,\n  \"stadium\": 59084,\n  \"staff-aesculapius\": 58745,\n  \"staff-snake\": 58745,\n  \"staff\": 63259,\n  \"stair-car\": 59333,\n  \"stairs\": 57993,\n  \"stamp\": 62911,\n  \"standard-definition\": 57994,\n  \"stapler\": 58799,\n  \"star-and-crescent\": 63129,\n  \"star-christmas\": 63444,\n  \"star-circle\": 57635,\n  \"star-exclamation\": 62195,\n  \"star-half-alt\": 62912,\n  \"star-half-stroke\": 62912,\n  \"star-half\": 61577,\n  \"star-of-david\": 63130,\n  \"star-of-life\": 63009,\n  \"star-sharp-half-alt\": 57997,\n  \"star-sharp-half-stroke\": 57997,\n  \"star-sharp-half\": 57996,\n  \"star-sharp\": 57995,\n  \"star-shooting\": 57398,\n  \"star\": 61445,\n  \"starfighter-alt-advanced\": 57998,\n  \"starfighter-alt\": 57400,\n  \"starfighter-twin-ion-engine-advanced\": 57998,\n  \"starfighter-twin-ion-engine\": 57400,\n  \"starfighter\": 57399,\n  \"stars\": 63330,\n  \"starship-freighter\": 57402,\n  \"starship\": 57401,\n  \"steak\": 63524,\n  \"steering-wheel\": 63010,\n  \"step-backward\": 61512,\n  \"step-forward\": 61521,\n  \"sterling-sign\": 61780,\n  \"stethoscope\": 61681,\n  \"sticky-note\": 62025,\n  \"stocking\": 63445,\n  \"stomach\": 63011,\n  \"stool\": 59520,\n  \"stop-circle\": 62093,\n  \"stop\": 61517,\n  \"stopwatch-20\": 57455,\n  \"stopwatch\": 62194,\n  \"store-24\": 59291,\n  \"store-alt-slash\": 57456,\n  \"store-alt\": 62799,\n  \"store-lock\": 58534,\n  \"store-slash\": 57457,\n  \"store\": 62798,\n  \"strawberry\": 58155,\n  \"stream\": 62800,\n  \"street-view\": 61981,\n  \"stretcher\": 63525,\n  \"strikethrough\": 61644,\n  \"stroopwafel\": 62801,\n  \"subscript\": 61740,\n  \"subtitles-slash\": 58896,\n  \"subtitles\": 58895,\n  \"subtract\": 61544,\n  \"subway-tunnel\": 58019,\n  \"subway\": 62009,\n  \"suitcase-medical\": 61690,\n  \"suitcase-rolling\": 62913,\n  \"suitcase\": 61682,\n  \"sun-alt\": 57999,\n  \"sun-bright\": 57999,\n  \"sun-cloud\": 63331,\n  \"sun-dust\": 63332,\n  \"sun-haze\": 63333,\n  \"sun-plant-wilt\": 58746,\n  \"sun\": 61829,\n  \"sunglasses\": 63634,\n  \"sunrise\": 63334,\n  \"sunset\": 63335,\n  \"superscript\": 61739,\n  \"surprise\": 62914,\n  \"sushi-roll\": 58507,\n  \"sushi\": 58506,\n  \"swap-arrows\": 58890,\n  \"swap\": 58889,\n  \"swatchbook\": 62915,\n  \"swedish-krona-sign\": 59198,\n  \"swimmer\": 62916,\n  \"swimming-pool\": 62917,\n  \"sword-laser-alt\": 57404,\n  \"sword-laser\": 57403,\n  \"sword\": 63260,\n  \"swords-laser\": 57405,\n  \"swords\": 63261,\n  \"symbols\": 63598,\n  \"synagogue\": 63131,\n  \"sync-alt\": 62193,\n  \"sync\": 61473,\n  \"syringe\": 62606,\n  \"t-rex\": 58921,\n  \"t-shirt\": 62803,\n  \"t\": 84,\n  \"table-bar\": 59550,\n  \"table-cells-column-lock\": 59000,\n  \"table-cells-column-unlock\": 59024,\n  \"table-cells-columns\": 59052,\n  \"table-cells-header-lock\": 59054,\n  \"table-cells-header-unlock\": 59055,\n  \"table-cells-header\": 59053,\n  \"table-cells-large\": 61449,\n  \"table-cells-lock\": 59001,\n  \"table-cells-merge\": 59532,\n  \"table-cells-row-lock\": 59002,\n  \"table-cells-row-unlock\": 59025,\n  \"table-cells-rows\": 59056,\n  \"table-cells-split\": 59533,\n  \"table-cells-unlock\": 59026,\n  \"table-cells\": 61450,\n  \"table-columns-add-after\": 59534,\n  \"table-columns-add-before\": 59535,\n  \"table-columns-merge-next\": 59536,\n  \"table-columns-merge-previous\": 59537,\n  \"table-columns-remove-after\": 59538,\n  \"table-columns-remove-before\": 59539,\n  \"table-columns\": 61659,\n  \"table-dining\": 59522,\n  \"table-layout\": 58000,\n  \"table-list\": 61451,\n  \"table-picnic\": 58157,\n  \"table-pivot\": 58001,\n  \"table-rows-add-above\": 59540,\n  \"table-rows-add-below\": 59541,\n  \"table-rows-merge-next\": 59542,\n  \"table-rows-merge-previous\": 59543,\n  \"table-rows-remove-above\": 59544,\n  \"table-rows-remove-below\": 59545,\n  \"table-rows\": 58002,\n  \"table-slash\": 59546,\n  \"table-tennis-paddle-ball\": 62557,\n  \"table-tennis\": 62557,\n  \"table-tree\": 58003,\n  \"table\": 61646,\n  \"tablet-alt\": 62458,\n  \"tablet-android-alt\": 62460,\n  \"tablet-android\": 62459,\n  \"tablet-button\": 61706,\n  \"tablet-rugged\": 62607,\n  \"tablet-screen-button\": 62458,\n  \"tablet-screen\": 62460,\n  \"tablet\": 62459,\n  \"tablets\": 62608,\n  \"tachograph-digital\": 62822,\n  \"tachometer-alt-average\": 63012,\n  \"tachometer-alt-fast\": 63013,\n  \"tachometer-alt-fastest\": 63014,\n  \"tachometer-alt-slow\": 63015,\n  \"tachometer-alt-slowest\": 63016,\n  \"tachometer-alt\": 63013,\n  \"tachometer-average\": 63017,\n  \"tachometer-fast\": 63018,\n  \"tachometer-fastest\": 63019,\n  \"tachometer-slow\": 63020,\n  \"tachometer-slowest\": 63021,\n  \"tachometer\": 63018,\n  \"taco\": 63526,\n  \"tag\": 61483,\n  \"tags\": 61484,\n  \"tally-1\": 58004,\n  \"tally-2\": 58005,\n  \"tally-3\": 58006,\n  \"tally-4\": 58007,\n  \"tally-5\": 63132,\n  \"tally\": 63132,\n  \"tamale\": 58449,\n  \"tanakh\": 63527,\n  \"tank-recovery\": 59429,\n  \"tank-water\": 58450,\n  \"tape\": 62683,\n  \"tarp-droplet\": 58748,\n  \"tarp\": 58747,\n  \"tasks-alt\": 63528,\n  \"tasks\": 61614,\n  \"taurus\": 59471,\n  \"taxi-bus\": 58008,\n  \"taxi\": 61882,\n  \"teddy-bear\": 58319,\n  \"teeth-open\": 63023,\n  \"teeth\": 63022,\n  \"telescope\": 57406,\n  \"teletype-answer\": 58041,\n  \"teletype\": 61924,\n  \"television\": 62060,\n  \"temperature-0\": 62155,\n  \"temperature-1\": 62154,\n  \"temperature-2\": 62153,\n  \"temperature-3\": 62152,\n  \"temperature-4\": 62151,\n  \"temperature-arrow-down\": 57407,\n  \"temperature-arrow-up\": 57408,\n  \"temperature-down\": 57407,\n  \"temperature-empty\": 62155,\n  \"temperature-frigid\": 63336,\n  \"temperature-full\": 62151,\n  \"temperature-half\": 62153,\n  \"temperature-high\": 63337,\n  \"temperature-hot\": 63338,\n  \"temperature-list\": 58009,\n  \"temperature-low\": 63339,\n  \"temperature-quarter\": 62154,\n  \"temperature-slash\": 59339,\n  \"temperature-snow\": 63336,\n  \"temperature-sun\": 63338,\n  \"temperature-three-quarters\": 62152,\n  \"temperature-up\": 57408,\n  \"tenge-sign\": 63447,\n  \"tenge\": 63447,\n  \"tennis-ball\": 62558,\n  \"tent-arrow-down-to-line\": 58750,\n  \"tent-arrow-left-right\": 58751,\n  \"tent-arrow-turn-left\": 58752,\n  \"tent-arrows-down\": 58753,\n  \"tent-circus\": 59085,\n  \"tent-double-peak\": 58919,\n  \"tent\": 58749,\n  \"tents\": 58754,\n  \"terminal\": 61728,\n  \"text-height\": 61492,\n  \"text-size\": 63636,\n  \"text-slash\": 63613,\n  \"text-width\": 61493,\n  \"text\": 63635,\n  \"th-large\": 61449,\n  \"th-list\": 61451,\n  \"th\": 61450,\n  \"theater-masks\": 63024,\n  \"thermometer-0\": 62155,\n  \"thermometer-1\": 62154,\n  \"thermometer-2\": 62153,\n  \"thermometer-3\": 62152,\n  \"thermometer-4\": 62151,\n  \"thermometer-empty\": 62155,\n  \"thermometer-full\": 62151,\n  \"thermometer-half\": 62153,\n  \"thermometer-quarter\": 62154,\n  \"thermometer-three-quarters\": 62152,\n  \"thermometer\": 62609,\n  \"theta\": 63134,\n  \"thought-bubble\": 58158,\n  \"thumb-tack-slash\": 59023,\n  \"thumb-tack\": 61581,\n  \"thumbs-down\": 61797,\n  \"thumbs-up\": 61796,\n  \"thumbtack-angle-slash\": 59218,\n  \"thumbtack-angle\": 59217,\n  \"thumbtack-slash\": 59023,\n  \"thumbtack\": 61581,\n  \"thunderstorm-moon\": 63341,\n  \"thunderstorm-sun\": 63342,\n  \"thunderstorm\": 63340,\n  \"tick\": 58159,\n  \"ticket-airline\": 58010,\n  \"ticket-alt\": 62463,\n  \"ticket-perforated-plane\": 58010,\n  \"ticket-perforated\": 58942,\n  \"ticket-plane\": 58010,\n  \"ticket-simple\": 62463,\n  \"ticket\": 61765,\n  \"tickets-airline\": 58011,\n  \"tickets-perforated-plane\": 58011,\n  \"tickets-perforated\": 58943,\n  \"tickets-plane\": 58011,\n  \"tickets-simple\": 58969,\n  \"tickets\": 58968,\n  \"tilde\": 126,\n  \"timeline-arrow\": 58013,\n  \"timeline\": 58012,\n  \"timer\": 58014,\n  \"times-circle\": 61527,\n  \"times-hexagon\": 62190,\n  \"times-octagon\": 62192,\n  \"times-rectangle\": 62480,\n  \"times-square\": 62163,\n  \"times-to-slot\": 63345,\n  \"times\": 61453,\n  \"tint-slash\": 62919,\n  \"tint\": 61507,\n  \"tire-flat\": 63026,\n  \"tire-pressure-warning\": 63027,\n  \"tire-rugged\": 63028,\n  \"tire\": 63025,\n  \"tired\": 62920,\n  \"toggle-large-off\": 58800,\n  \"toggle-large-on\": 58801,\n  \"toggle-off\": 61956,\n  \"toggle-on\": 61957,\n  \"toilet-paper-alt\": 63262,\n  \"toilet-paper-blank-under\": 58016,\n  \"toilet-paper-blank\": 63262,\n  \"toilet-paper-check\": 58802,\n  \"toilet-paper-reverse-alt\": 58016,\n  \"toilet-paper-reverse-slash\": 58017,\n  \"toilet-paper-reverse\": 58016,\n  \"toilet-paper-slash\": 57458,\n  \"toilet-paper-under-slash\": 58017,\n  \"toilet-paper-under\": 58016,\n  \"toilet-paper-xmark\": 58803,\n  \"toilet-paper\": 63262,\n  \"toilet-portable\": 58755,\n  \"toilet\": 63448,\n  \"toilets-portable\": 58756,\n  \"tomato\": 58160,\n  \"tombstone-alt\": 63265,\n  \"tombstone-blank\": 63265,\n  \"tombstone\": 63264,\n  \"toolbox\": 62802,\n  \"tools\": 63449,\n  \"tooth\": 62921,\n  \"toothbrush\": 63029,\n  \"torah\": 63136,\n  \"torii-gate\": 63137,\n  \"tornado\": 63343,\n  \"tower-broadcast\": 62745,\n  \"tower-cell\": 58757,\n  \"tower-control\": 58018,\n  \"tower-observation\": 58758,\n  \"tower-receive\": 59555,\n  \"tractor\": 63266,\n  \"trademark\": 62044,\n  \"traffic-cone\": 63030,\n  \"traffic-light-go\": 63032,\n  \"traffic-light-slow\": 63033,\n  \"traffic-light-stop\": 63034,\n  \"traffic-light\": 63031,\n  \"trailer\": 57409,\n  \"train-stop\": 59423,\n  \"train-subway-tunnel\": 58019,\n  \"train-subway\": 62009,\n  \"train-track\": 58451,\n  \"train-tram\": 58804,\n  \"train-tunnel\": 58452,\n  \"train\": 62008,\n  \"tram\": 63450,\n  \"transducer\": 59430,\n  \"transformer-bolt\": 58020,\n  \"transgender-alt\": 61989,\n  \"transgender\": 61989,\n  \"transmission\": 59394,\n  \"transporter-1\": 57411,\n  \"transporter-2\": 57412,\n  \"transporter-3\": 57413,\n  \"transporter-4\": 58021,\n  \"transporter-5\": 58022,\n  \"transporter-6\": 58023,\n  \"transporter-7\": 58024,\n  \"transporter-empty\": 57414,\n  \"transporter\": 57410,\n  \"trash-alt-slash\": 58029,\n  \"trash-alt\": 62189,\n  \"trash-arrow-turn-left\": 63637,\n  \"trash-arrow-up\": 63529,\n  \"trash-can-arrow-turn-left\": 63638,\n  \"trash-can-arrow-up\": 63530,\n  \"trash-can-check\": 58025,\n  \"trash-can-clock\": 58026,\n  \"trash-can-list\": 58027,\n  \"trash-can-plus\": 58028,\n  \"trash-can-slash\": 58029,\n  \"trash-can-undo\": 63638,\n  \"trash-can-xmark\": 58030,\n  \"trash-can\": 62189,\n  \"trash-check\": 58031,\n  \"trash-circle\": 57638,\n  \"trash-clock\": 58032,\n  \"trash-list\": 58033,\n  \"trash-plus\": 58034,\n  \"trash-restore-alt\": 63530,\n  \"trash-restore\": 63529,\n  \"trash-slash\": 58035,\n  \"trash-undo-alt\": 63638,\n  \"trash-undo\": 63637,\n  \"trash-xmark\": 58036,\n  \"trash\": 61944,\n  \"treasure-chest\": 63267,\n  \"tree-alt\": 62464,\n  \"tree-christmas\": 63451,\n  \"tree-city\": 58759,\n  \"tree-deciduous\": 62464,\n  \"tree-decorated\": 63452,\n  \"tree-large\": 63453,\n  \"tree-palm\": 63531,\n  \"tree\": 61883,\n  \"trees\": 63268,\n  \"trian-balbot\": 58460,\n  \"triangle-circle-square\": 63007,\n  \"triangle-exclamation\": 61553,\n  \"triangle-instrument\": 63714,\n  \"triangle-music\": 63714,\n  \"triangle-person-digging\": 63581,\n  \"triangle\": 62188,\n  \"tricycle-adult\": 58820,\n  \"tricycle\": 58819,\n  \"trillium\": 58760,\n  \"triple-chevrons-down\": 59383,\n  \"triple-chevrons-left\": 59384,\n  \"triple-chevrons-right\": 59385,\n  \"triple-chevrons-up\": 59386,\n  \"trombone\": 59266,\n  \"trophy-alt\": 62187,\n  \"trophy-star\": 62187,\n  \"trophy\": 61585,\n  \"trowel-bricks\": 58762,\n  \"trowel\": 58761,\n  \"truck-arrow-right\": 58763,\n  \"truck-bolt\": 58320,\n  \"truck-clock\": 62604,\n  \"truck-container-empty\": 58037,\n  \"truck-container\": 62684,\n  \"truck-couch\": 62685,\n  \"truck-droplet\": 58764,\n  \"truck-fast\": 62603,\n  \"truck-field-un\": 58766,\n  \"truck-field\": 58765,\n  \"truck-fire\": 58970,\n  \"truck-flatbed\": 58038,\n  \"truck-front\": 58039,\n  \"truck-ladder\": 58967,\n  \"truck-loading\": 62686,\n  \"truck-medical\": 61689,\n  \"truck-monster\": 63035,\n  \"truck-moving\": 62687,\n  \"truck-pickup\": 63036,\n  \"truck-plane\": 58767,\n  \"truck-plow\": 63454,\n  \"truck-ramp-box\": 62686,\n  \"truck-ramp-couch\": 62685,\n  \"truck-ramp\": 62688,\n  \"truck-suv\": 59334,\n  \"truck-tow\": 58040,\n  \"truck-utensils\": 58920,\n  \"truck\": 61649,\n  \"trumpet\": 63715,\n  \"try\": 58043,\n  \"tshirt\": 62803,\n  \"tty-answer\": 58041,\n  \"tty\": 61924,\n  \"tugrik-sign\": 58042,\n  \"turkey\": 63269,\n  \"turkish-lira-sign\": 58043,\n  \"turkish-lira\": 58043,\n  \"turn-down-left\": 58161,\n  \"turn-down-right\": 58453,\n  \"turn-down\": 62398,\n  \"turn-left-down\": 58935,\n  \"turn-left-up\": 58936,\n  \"turn-left\": 58934,\n  \"turn-right\": 58937,\n  \"turn-up\": 62399,\n  \"turntable\": 63716,\n  \"turtle\": 63270,\n  \"tv-alt\": 62060,\n  \"tv-music\": 63718,\n  \"tv-retro\": 62465,\n  \"tv\": 62060,\n  \"typewriter\": 63719,\n  \"u-turn-down-left\": 59375,\n  \"u-turn-down-right\": 59376,\n  \"u-turn-left-down\": 59377,\n  \"u-turn-left-up\": 59378,\n  \"u-turn-right-down\": 59379,\n  \"u-turn-right-up\": 59380,\n  \"u-turn-up-left\": 59381,\n  \"u-turn-up-right\": 59382,\n  \"u-turn\": 59377,\n  \"u\": 85,\n  \"ufo-beam\": 57416,\n  \"ufo\": 57415,\n  \"umbrella-alt\": 58044,\n  \"umbrella-beach\": 62922,\n  \"umbrella-simple\": 58044,\n  \"umbrella\": 61673,\n  \"underline\": 61645,\n  \"undo-alt\": 62186,\n  \"undo\": 61666,\n  \"unicorn\": 63271,\n  \"unicycle\": 59335,\n  \"uniform-martial-arts\": 58321,\n  \"union\": 63138,\n  \"universal-access\": 62106,\n  \"university\": 61852,\n  \"unlink\": 61735,\n  \"unlock-alt\": 61758,\n  \"unlock-keyhole\": 61758,\n  \"unlock\": 61596,\n  \"unsorted\": 61660,\n  \"up-down-left-right\": 61618,\n  \"up-down\": 62264,\n  \"up-from-bracket\": 58768,\n  \"up-from-dotted-line\": 58454,\n  \"up-from-line\": 62278,\n  \"up-left\": 58045,\n  \"up-long-to-line\": 59078,\n  \"up-long\": 62220,\n  \"up-right-and-down-left-from-center\": 62500,\n  \"up-right-from-square\": 62301,\n  \"up-right\": 58046,\n  \"up-to-bracket\": 58990,\n  \"up-to-dotted-line\": 58455,\n  \"up-to-line\": 62285,\n  \"up\": 62295,\n  \"upload\": 61587,\n  \"usb-drive\": 63721,\n  \"usd-circle\": 62184,\n  \"usd-square\": 62185,\n  \"usd\": 36,\n  \"user-alien\": 57418,\n  \"user-alt-slash\": 62726,\n  \"user-alt\": 61447,\n  \"user-astronaut\": 62715,\n  \"user-beard-bolt\": 59017,\n  \"user-beard\": 59304,\n  \"user-bounty-hunter\": 58047,\n  \"user-chart\": 63139,\n  \"user-check\": 62716,\n  \"user-chef-hair-long\": 59305,\n  \"user-chef\": 58322,\n  \"user-circle-minus\": 59306,\n  \"user-circle-plus\": 59307,\n  \"user-circle\": 62141,\n  \"user-clock\": 62717,\n  \"user-cog\": 62718,\n  \"user-construction\": 63532,\n  \"user-cowboy\": 63722,\n  \"user-crown\": 63140,\n  \"user-dashed\": 59308,\n  \"user-doctor-hair-long\": 58457,\n  \"user-doctor-hair-mullet\": 59309,\n  \"user-doctor-hair\": 58456,\n  \"user-doctor-message\": 63534,\n  \"user-doctor\": 61680,\n  \"user-edit\": 62719,\n  \"user-friends\": 62720,\n  \"user-gear\": 62718,\n  \"user-graduate\": 62721,\n  \"user-group-crown\": 63141,\n  \"user-group-simple\": 58883,\n  \"user-group\": 62720,\n  \"user-hair-buns\": 58323,\n  \"user-hair-long\": 58459,\n  \"user-hair-mullet\": 58460,\n  \"user-hair\": 58458,\n  \"user-hard-hat\": 63532,\n  \"user-hat-tie-magnifying-glass\": 59311,\n  \"user-hat-tie\": 59310,\n  \"user-headset\": 63533,\n  \"user-helmet-safety\": 63532,\n  \"user-hoodie\": 59018,\n  \"user-injured\": 63272,\n  \"user-key\": 59312,\n  \"user-large-slash\": 62726,\n  \"user-large\": 61447,\n  \"user-lock\": 62722,\n  \"user-magnifying-glass\": 58821,\n  \"user-md-chat\": 63534,\n  \"user-md\": 61680,\n  \"user-message\": 59313,\n  \"user-microphone\": 59314,\n  \"user-minus\": 62723,\n  \"user-music\": 63723,\n  \"user-ninja\": 62724,\n  \"user-nurse-hair-long\": 58462,\n  \"user-nurse-hair\": 58461,\n  \"user-nurse\": 63535,\n  \"user-pen\": 62719,\n  \"user-pilot-hair-long\": 59315,\n  \"user-pilot-tie-hair-long\": 59316,\n  \"user-pilot-tie\": 58049,\n  \"user-pilot\": 58048,\n  \"user-plus\": 62004,\n  \"user-police-hair-long\": 59317,\n  \"user-police-tie-hair-long\": 59318,\n  \"user-police-tie\": 58164,\n  \"user-police\": 58163,\n  \"user-question\": 59319,\n  \"user-robot-xmarks\": 58535,\n  \"user-robot\": 57419,\n  \"user-secret\": 61979,\n  \"user-shakespeare\": 58050,\n  \"user-shield\": 62725,\n  \"user-sith\": 59320,\n  \"user-slash\": 62726,\n  \"user-tag\": 62727,\n  \"user-tie-hair-long\": 58464,\n  \"user-tie-hair-mullet\": 59321,\n  \"user-tie-hair\": 58463,\n  \"user-tie\": 62728,\n  \"user-times\": 62005,\n  \"user-unlock\": 57432,\n  \"user-viewfinder\": 59253,\n  \"user-visor\": 57420,\n  \"user-vneck-hair-long\": 58467,\n  \"user-vneck-hair-mullet\": 59322,\n  \"user-vneck-hair\": 58466,\n  \"user-vneck\": 58465,\n  \"user-xmark\": 62005,\n  \"user\": 61447,\n  \"users-between-lines\": 58769,\n  \"users-class\": 63037,\n  \"users-cog\": 62729,\n  \"users-crown\": 63141,\n  \"users-gear\": 62729,\n  \"users-line\": 58770,\n  \"users-medical\": 63536,\n  \"users-rays\": 58771,\n  \"users-rectangle\": 58772,\n  \"users-slash\": 57459,\n  \"users-viewfinder\": 58773,\n  \"users\": 61632,\n  \"utensil-fork\": 62179,\n  \"utensil-knife\": 62180,\n  \"utensil-spoon\": 62181,\n  \"utensils-alt\": 62182,\n  \"utensils-slash\": 58468,\n  \"utensils\": 62183,\n  \"utility-can\": 59549,\n  \"utility-pole-double\": 58052,\n  \"utility-pole\": 58051,\n  \"v\": 86,\n  \"vacuum-robot\": 57422,\n  \"vacuum\": 57421,\n  \"value-absolute\": 63142,\n  \"van-shuttle\": 62902,\n  \"van\": 59336,\n  \"vault\": 58053,\n  \"vcard\": 62139,\n  \"vector-circle\": 62957,\n  \"vector-polygon\": 62958,\n  \"vector-square\": 62959,\n  \"vent-damper\": 58469,\n  \"venus-double\": 61990,\n  \"venus-mars\": 61992,\n  \"venus\": 61985,\n  \"vest-patches\": 57478,\n  \"vest\": 57477,\n  \"vhs\": 63724,\n  \"vial-circle-check\": 58774,\n  \"vial-vertical\": 59234,\n  \"vial-virus\": 58775,\n  \"vial\": 62610,\n  \"vials\": 62611,\n  \"video-arrow-down-left\": 58056,\n  \"video-arrow-up-right\": 58057,\n  \"video-camera\": 61501,\n  \"video-circle\": 57643,\n  \"video-down-to-line\": 59254,\n  \"video-handheld\": 63656,\n  \"video-plus\": 62689,\n  \"video-question\": 59255,\n  \"video-slash\": 62690,\n  \"video\": 61501,\n  \"vihara\": 63143,\n  \"violin\": 63725,\n  \"virgo\": 59472,\n  \"virus-covid-slash\": 58537,\n  \"virus-covid\": 58536,\n  \"virus-slash\": 57461,\n  \"virus\": 57460,\n  \"viruses\": 57462,\n  \"voicemail\": 63639,\n  \"volcano\": 63344,\n  \"volleyball-ball\": 62559,\n  \"volleyball\": 62559,\n  \"volume-control-phone\": 62112,\n  \"volume-down\": 61479,\n  \"volume-high\": 61480,\n  \"volume-low\": 61479,\n  \"volume-medium\": 63144,\n  \"volume-mute\": 63145,\n  \"volume-off\": 61478,\n  \"volume-slash\": 62178,\n  \"volume-times\": 63145,\n  \"volume-up\": 61480,\n  \"volume-xmark\": 63145,\n  \"volume\": 63144,\n  \"vote-nay\": 63345,\n  \"vote-yea\": 63346,\n  \"vr-cardboard\": 63273,\n  \"w\": 87,\n  \"waffle\": 58470,\n  \"wagon-covered\": 63726,\n  \"walker\": 63537,\n  \"walkie-talkie\": 63727,\n  \"walking\": 62804,\n  \"wall-brick\": 58331,\n  \"wallet\": 62805,\n  \"wand-magic-sparkles\": 58058,\n  \"wand-magic\": 61648,\n  \"wand-sparkles\": 63275,\n  \"wand\": 63274,\n  \"wardrobe\": 59521,\n  \"warehouse-alt\": 62613,\n  \"warehouse-full\": 62613,\n  \"warehouse\": 62612,\n  \"warning\": 61553,\n  \"washer\": 63640,\n  \"washing-machine\": 63640,\n  \"watch-apple\": 58059,\n  \"watch-calculator\": 63728,\n  \"watch-fitness\": 63038,\n  \"watch-smart\": 58060,\n  \"watch\": 62177,\n  \"water-arrow-down\": 63348,\n  \"water-arrow-up\": 63349,\n  \"water-ladder\": 62917,\n  \"water-lower\": 63348,\n  \"water-rise\": 63349,\n  \"water-temp\": 59434,\n  \"water-temperature\": 59434,\n  \"water\": 63347,\n  \"watermelon-slice\": 58167,\n  \"wave-pulse\": 62968,\n  \"wave-sine\": 63641,\n  \"wave-square\": 63550,\n  \"wave-triangle\": 63642,\n  \"wave\": 58971,\n  \"waveform-circle\": 57645,\n  \"waveform-lines\": 63730,\n  \"waveform-path\": 63730,\n  \"waveform\": 63729,\n  \"waves-sine\": 58973,\n  \"web-awesome\": 59010,\n  \"webcam-slash\": 63539,\n  \"webcam\": 63538,\n  \"webhook\": 58837,\n  \"weight-hanging\": 62925,\n  \"weight-scale\": 62614,\n  \"weight\": 62614,\n  \"whale\": 63276,\n  \"wheat-alt\": 58061,\n  \"wheat-awn-circle-exclamation\": 58776,\n  \"wheat-awn-slash\": 58168,\n  \"wheat-awn\": 58061,\n  \"wheat-slash\": 58169,\n  \"wheat\": 63277,\n  \"wheelchair-alt\": 58062,\n  \"wheelchair-move\": 58062,\n  \"wheelchair\": 61843,\n  \"whiskey-glass-ice\": 63393,\n  \"whiskey-glass\": 63392,\n  \"whistle\": 62560,\n  \"wifi-1\": 63146,\n  \"wifi-2\": 63147,\n  \"wifi-3\": 61931,\n  \"wifi-exclamation\": 58063,\n  \"wifi-fair\": 63147,\n  \"wifi-slash\": 63148,\n  \"wifi-strong\": 61931,\n  \"wifi-weak\": 63146,\n  \"wifi\": 61931,\n  \"wind-circle-exclamation\": 63350,\n  \"wind-turbine\": 63643,\n  \"wind-warning\": 63350,\n  \"wind\": 63278,\n  \"window-alt\": 62479,\n  \"window-close\": 62480,\n  \"window-flip\": 62479,\n  \"window-frame-open\": 57424,\n  \"window-frame\": 57423,\n  \"window-maximize\": 62160,\n  \"window-minimize\": 62161,\n  \"window-restore\": 62162,\n  \"window\": 62478,\n  \"windsock\": 63351,\n  \"wine-bottle\": 63279,\n  \"wine-glass-alt\": 62926,\n  \"wine-glass-crack\": 62651,\n  \"wine-glass-empty\": 62926,\n  \"wine-glass\": 62691,\n  \"wireless\": 59359,\n  \"won-sign\": 61785,\n  \"won\": 61785,\n  \"worm\": 58777,\n  \"wreath-laurel\": 58834,\n  \"wreath\": 63458,\n  \"wrench-simple\": 58065,\n  \"wrench\": 61613,\n  \"x-ray\": 62615,\n  \"x\": 88,\n  \"xmark-circle\": 61527,\n  \"xmark-hexagon\": 62190,\n  \"xmark-large\": 58779,\n  \"xmark-octagon\": 62192,\n  \"xmark-square\": 62163,\n  \"xmark-to-slot\": 63345,\n  \"xmark\": 61453,\n  \"xmarks-lines\": 58778,\n  \"y\": 89,\n  \"yen-sign\": 61783,\n  \"yen\": 61783,\n  \"yin-yang\": 63149,\n  \"z\": 90,\n  \"zap\": 61671,\n  \"zzz\": 63616\n}"
  },
  {
    "path": "packages/fontawesome-pro-light/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontawesome-pro-light\",\n  \"version\": \"0.2.0\",\n  \"description\": \"Fontawesome Pro Light font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"fontawesome-pro-light\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/fontawesome-pro-light\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-light/react-native-vector-icons-fontawesome-pro-light.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-fontawesome-pro-light'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\n\n  s.script_phase = {\n    name: 'Copy Custom Fonts',\n    execution_position: :after_compile,\n    script: <<~SCRIPT\n      set -e\n\n      HEAD=\"(RNVI-fontawesome-pro-light)\"\n\n      echo \"${HEAD} START_COPY_FONTS\"\n\n      echo \"${HEAD} PWD: $(pwd)\"\n\n      #\n      # Find the custom font Directory\n      #\n\n      # Assume the project root is always two directories above the POD_ROOT\n      echo \"${HEAD} PODS_ROOT: $PODS_ROOT\"\n\n      PROJECT_ROOT=\"${PODS_ROOT}/../..\"\n      echo \"${HEAD} PROJECT_ROOT: $PROJECT_ROOT\"\n\n      cd $PROJECT_ROOT\n      FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/\"//g')\n      if [ -z \"$FONTS_DIR\" ]; then\n        FONTS_DIR=\"rnvi-fonts\"\n      fi\n      echo \"${HEAD} FONTS_DIR: $FONTS_DIR\"\n\n      FONTS_DIR=\"${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-light\"\n      if [ ! -d \"$FONTS_DIR\" ]; then\n        echo \"${HEAD} $FONTS_DIR not found\"\n        exit 0\n      fi\n\n      #\n      # Find the destination we copy to\n      #\n\n      echo \"${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR\"\n      XCODE_DIR=$(ls -d \"$PODS_CONFIGURATION_BUILD_DIR\"/*.app)\n      echo \"${HEAD} XCODE_DIR: $XCODE_DIR\"\n      if [ -z \"$XCODE_DIR\" ]; then\n        echo \"Could not find XCODE_DIR to copy fonts to\"\n        exit 1\n      fi\n\n      DEST_DIR=\"${XCODE_DIR}\"\n      mkdir -p \"$DEST_DIR\"\n\n      #\n      # Copy the fonts\n      #\n\n      echo \"${HEAD} Copying the following files to $DEST_DIR\"\n      ls \"$FONTS_DIR\" | sed \"s/^/${HEAD} /\"\n\n      rsync -avr --copy-links --no-relative $FONTS_DIR/ \"$DEST_DIR\"\n\n      echo \"${HEAD} END:RNVI_COPY_FONTS\"\n    SCRIPT\n  }\nend\n"
  },
  {
    "path": "packages/fontawesome-pro-light/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProLight icon set component.\n * Usage: <FontAwesomeProLight name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProLight.json';\n\nexport const FontAwesomeProLight = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Pro-Light',\n  fontFileName: 'fa-light-300.ttf',\n});\n\nexport type FontAwesomeProLightIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProLight;\n"
  },
  {
    "path": "packages/fontawesome-pro-light/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProLight icon set component.\n * Usage: <FontAwesomeProLight name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProLight.json';\n\nexport const FontAwesomeProLight = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Pro-Light',\n  fontFileName: 'fa-light-300.ttf',\n});\n\nexport type FontAwesomeProLightIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProLight;\n"
  },
  {
    "path": "packages/fontawesome-pro-light/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-light/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-regular/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontawesome-pro-regular\",\n    \"upstreamFont\": {\n      \"registry\": \"https://npm.fontawesome.com\",\n      \"packageName\": \"@fortawesome/fontawesome-pro\",\n      \"versionOnly\": true\n    },\n    \"copyCustomFonts\": true,\n    \"className\": \"FontAwesomeProRegular\",\n    \"postScriptName\": \"FontAwesome7Pro-Regular\",\n    \"fontFileName\": \"fa-regular-400\",\n    \"buildSteps\": {\n      \"preScript\": {\n        \"script\": \"../fontawesome-common/scripts/fetch-pro.sh 7\"\n      },\n      \"glyphmap\": {\n        \"location\": \"fa/pro/css/all.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fa-\"\n      },\n      \"postScript\": {\n        \"script\": \"../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProRegular.json fa/pro/svgs/regular\\nrm -rf fa\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"0.1.0\",\n        \"upstream\": \"7.1.0\"\n      },\n      {\n        \"rnvi\": \"0.1.1\",\n        \"upstream\": \"7.2.0\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-regular/CHANGELOG.md",
    "content": "## 0.2.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 0.1.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 0.1.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🩹 Fixes\n\n- upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 0.1.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 0.1.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontawesome-pro-regular/README.md",
    "content": "# React Native Vector Icons - Fontawesome Pro Regular\n\nFontawesome Pro Regular font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n> [!IMPORTANT]\n> This package does not include the fonts. You must provide them yourself.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/fontawesome-pro-regular\n```\n\n## Custom Fonts\n\nThis package requires you to provide the font files. Place your `.ttf` font\nfile in the following location:\n\n```\nrnvi-fonts/fontawesome-pro-regular/fa-regular-400.ttf\n```\n\nThe font will be automatically copied during the build process for both iOS and\nAndroid.\n\n## Usage\n\n```jsx\nimport { FontAwesomeProRegular } from '@react-native-vector-icons/fontawesome-pro-regular';\n\n// ...\n\n<FontAwesomeProRegular name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 0.1.0 | 7.1.0 |\n| &gt; 0.1.1 | 7.2.0 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/fontawesome-pro-regular/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.fontawesome_pro_regular\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFontAwesomeProRegular\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.fontawesome_pro_regular\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-fontawesome-pro-regular\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-regular/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-regular) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n\ntask copyExtraFonts(type: Copy) {\n  from \"${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-regular\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-regular/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-regular) Copying custom font: ${it.file}\" }\n}\n\npreBuild.dependsOn(copyExtraFonts)\n"
  },
  {
    "path": "packages/fontawesome-pro-regular/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.fontawesome_pro_regular\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-regular/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-regular/android/src/main/java/VectorIconsFontAwesomeProRegularPackage.kt",
    "content": "package com.reactnativevectoricons.fontawesome_pro_regular\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFontAwesomeProRegularPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-regular/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/fontawesome-pro-regular/glyphmaps/FontAwesomeProRegular.json",
    "content": "{\n  \"0\": 48,\n  \"1\": 49,\n  \"2\": 50,\n  \"3\": 51,\n  \"4\": 52,\n  \"5\": 53,\n  \"6\": 54,\n  \"7\": 55,\n  \"8\": 56,\n  \"9\": 57,\n  \"100\": 58396,\n  \"00\": 58471,\n  \"360-degrees\": 58076,\n  \"a\": 65,\n  \"abacus\": 63040,\n  \"accent-grave\": 96,\n  \"acorn\": 63150,\n  \"ad\": 63041,\n  \"add\": 43,\n  \"address-book\": 62137,\n  \"address-card\": 62139,\n  \"adjust\": 61506,\n  \"aeropress\": 59435,\n  \"air-conditioner\": 63732,\n  \"air-freshener\": 62928,\n  \"airplay-audio\": 59259,\n  \"airplay\": 57481,\n  \"alarm-clock\": 62286,\n  \"alarm-exclamation\": 63555,\n  \"alarm-minus\": 59395,\n  \"alarm-plus\": 63556,\n  \"alarm-snooze\": 63557,\n  \"album-circle-plus\": 58508,\n  \"album-circle-user\": 58509,\n  \"album-collection-circle-plus\": 58510,\n  \"album-collection-circle-user\": 58511,\n  \"album-collection\": 63648,\n  \"album\": 63647,\n  \"alicorn\": 63152,\n  \"alien-8bit\": 63734,\n  \"alien-monster\": 63734,\n  \"alien\": 63733,\n  \"align-center\": 61495,\n  \"align-justify\": 61497,\n  \"align-left\": 61494,\n  \"align-right\": 61496,\n  \"align-slash\": 63558,\n  \"allergies\": 62561,\n  \"almost-equal-to\": 59416,\n  \"alt\": 57482,\n  \"ambulance\": 61689,\n  \"american-sign-language-interpreting\": 62115,\n  \"amp-guitar\": 63649,\n  \"ampersand\": 38,\n  \"analytics\": 63043,\n  \"anchor-circle-check\": 58538,\n  \"anchor-circle-exclamation\": 58539,\n  \"anchor-circle-xmark\": 58540,\n  \"anchor-lock\": 58541,\n  \"anchor\": 61757,\n  \"angel\": 63353,\n  \"angle-90\": 57485,\n  \"angle-double-down\": 61699,\n  \"angle-double-left\": 61696,\n  \"angle-double-right\": 61697,\n  \"angle-double-up\": 61698,\n  \"angle-down\": 61703,\n  \"angle-left\": 61700,\n  \"angle-right\": 61701,\n  \"angle-up\": 61702,\n  \"angle\": 57484,\n  \"angles-down\": 61699,\n  \"angles-left\": 61696,\n  \"angles-right\": 61697,\n  \"angles-up-down\": 58893,\n  \"angles-up\": 61698,\n  \"angry\": 62806,\n  \"ankh\": 63044,\n  \"ant\": 59008,\n  \"apartment\": 58472,\n  \"aperture\": 58079,\n  \"apostrophe\": 39,\n  \"apple-alt\": 62929,\n  \"apple-core\": 57487,\n  \"apple-crate\": 63153,\n  \"apple-whole\": 62929,\n  \"aquarius\": 59461,\n  \"archive\": 61831,\n  \"archway\": 62807,\n  \"area-chart\": 61950,\n  \"aries\": 59462,\n  \"arrow-alt-circle-down\": 62296,\n  \"arrow-alt-circle-left\": 62297,\n  \"arrow-alt-circle-right\": 62298,\n  \"arrow-alt-circle-up\": 62299,\n  \"arrow-alt-down\": 62292,\n  \"arrow-alt-from-bottom\": 62278,\n  \"arrow-alt-from-left\": 62279,\n  \"arrow-alt-from-right\": 62280,\n  \"arrow-alt-from-top\": 62281,\n  \"arrow-alt-left\": 62293,\n  \"arrow-alt-right\": 62294,\n  \"arrow-alt-square-down\": 62288,\n  \"arrow-alt-square-left\": 62289,\n  \"arrow-alt-square-right\": 62290,\n  \"arrow-alt-square-up\": 62291,\n  \"arrow-alt-to-bottom\": 62282,\n  \"arrow-alt-to-left\": 62283,\n  \"arrow-alt-to-right\": 62284,\n  \"arrow-alt-to-top\": 62285,\n  \"arrow-alt-up\": 62295,\n  \"arrow-archery\": 59449,\n  \"arrow-circle-down\": 61611,\n  \"arrow-circle-left\": 61608,\n  \"arrow-circle-right\": 61609,\n  \"arrow-circle-up\": 61610,\n  \"arrow-down-1-9\": 61794,\n  \"arrow-down-9-1\": 63622,\n  \"arrow-down-a-z\": 61789,\n  \"arrow-down-arrow-up\": 63619,\n  \"arrow-down-big-small\": 63628,\n  \"arrow-down-from-arc\": 58900,\n  \"arrow-down-from-bracket\": 58983,\n  \"arrow-down-from-dotted-line\": 57488,\n  \"arrow-down-from-line\": 62277,\n  \"arrow-down-left-and-arrow-up-right-to-center\": 57490,\n  \"arrow-down-left\": 57489,\n  \"arrow-down-long-to-line\": 59063,\n  \"arrow-down-long\": 61813,\n  \"arrow-down-right\": 57491,\n  \"arrow-down-short-wide\": 63620,\n  \"arrow-down-small-big\": 63629,\n  \"arrow-down-square-triangle\": 63625,\n  \"arrow-down-to-arc\": 58542,\n  \"arrow-down-to-bracket\": 57492,\n  \"arrow-down-to-dotted-line\": 57493,\n  \"arrow-down-to-line\": 62269,\n  \"arrow-down-to-square\": 57494,\n  \"arrow-down-triangle-square\": 63624,\n  \"arrow-down-up-across-line\": 58543,\n  \"arrow-down-up-lock\": 58544,\n  \"arrow-down-wide-short\": 61792,\n  \"arrow-down-z-a\": 63617,\n  \"arrow-down\": 61539,\n  \"arrow-from-bottom\": 62274,\n  \"arrow-from-left\": 62275,\n  \"arrow-from-right\": 62276,\n  \"arrow-from-top\": 62277,\n  \"arrow-left-arrow-right\": 59064,\n  \"arrow-left-from-arc\": 58901,\n  \"arrow-left-from-bracket\": 58984,\n  \"arrow-left-from-dotted-line\": 59065,\n  \"arrow-left-from-line\": 62276,\n  \"arrow-left-long-to-line\": 58324,\n  \"arrow-left-long\": 61815,\n  \"arrow-left-rotate\": 61666,\n  \"arrow-left-to-arc\": 58902,\n  \"arrow-left-to-bracket\": 58985,\n  \"arrow-left-to-dotted-line\": 59066,\n  \"arrow-left-to-line\": 62270,\n  \"arrow-left\": 61536,\n  \"arrow-pointer\": 62021,\n  \"arrow-progress\": 58847,\n  \"arrow-right-arrow-left\": 61676,\n  \"arrow-right-from-arc\": 58545,\n  \"arrow-right-from-bracket\": 61579,\n  \"arrow-right-from-dotted-line\": 59067,\n  \"arrow-right-from-file\": 62830,\n  \"arrow-right-from-line\": 62275,\n  \"arrow-right-long-to-line\": 58325,\n  \"arrow-right-long\": 61816,\n  \"arrow-right-rotate\": 61470,\n  \"arrow-right-to-arc\": 58546,\n  \"arrow-right-to-bracket\": 61584,\n  \"arrow-right-to-city\": 58547,\n  \"arrow-right-to-dotted-line\": 59068,\n  \"arrow-right-to-file\": 62831,\n  \"arrow-right-to-line\": 62272,\n  \"arrow-right\": 61537,\n  \"arrow-rotate-back\": 61666,\n  \"arrow-rotate-backward\": 61666,\n  \"arrow-rotate-forward\": 61470,\n  \"arrow-rotate-left-10\": 59446,\n  \"arrow-rotate-left-15\": 59526,\n  \"arrow-rotate-left-30\": 59527,\n  \"arrow-rotate-left\": 61666,\n  \"arrow-rotate-right-10\": 59447,\n  \"arrow-rotate-right-15\": 59528,\n  \"arrow-rotate-right-30\": 59529,\n  \"arrow-rotate-right\": 61470,\n  \"arrow-square-down\": 62265,\n  \"arrow-square-left\": 62266,\n  \"arrow-square-right\": 62267,\n  \"arrow-square-up\": 62268,\n  \"arrow-to-bottom\": 62269,\n  \"arrow-to-left\": 62270,\n  \"arrow-to-right\": 62272,\n  \"arrow-to-top\": 62273,\n  \"arrow-trend-down\": 57495,\n  \"arrow-trend-up\": 57496,\n  \"arrow-turn-down-left\": 58081,\n  \"arrow-turn-down-right\": 58326,\n  \"arrow-turn-down\": 61769,\n  \"arrow-turn-left-down\": 58931,\n  \"arrow-turn-left-up\": 58932,\n  \"arrow-turn-left\": 58930,\n  \"arrow-turn-right\": 58933,\n  \"arrow-turn-up\": 61768,\n  \"arrow-u-turn-down-left\": 59367,\n  \"arrow-u-turn-down-right\": 59368,\n  \"arrow-u-turn-left-down\": 59369,\n  \"arrow-u-turn-left-up\": 59370,\n  \"arrow-u-turn-right-down\": 59371,\n  \"arrow-u-turn-right-up\": 59372,\n  \"arrow-u-turn-up-left\": 59373,\n  \"arrow-u-turn-up-right\": 59374,\n  \"arrow-up-1-9\": 61795,\n  \"arrow-up-9-1\": 63623,\n  \"arrow-up-a-z\": 61790,\n  \"arrow-up-arrow-down\": 57497,\n  \"arrow-up-big-small\": 63630,\n  \"arrow-up-from-arc\": 58548,\n  \"arrow-up-from-bracket\": 57498,\n  \"arrow-up-from-dotted-line\": 57499,\n  \"arrow-up-from-ground-water\": 58549,\n  \"arrow-up-from-line\": 62274,\n  \"arrow-up-from-square\": 57500,\n  \"arrow-up-from-water-pump\": 58550,\n  \"arrow-up-left-from-circle\": 57502,\n  \"arrow-up-left\": 57501,\n  \"arrow-up-long-to-line\": 59069,\n  \"arrow-up-long\": 61814,\n  \"arrow-up-right-and-arrow-down-left-from-center\": 57504,\n  \"arrow-up-right-dots\": 58551,\n  \"arrow-up-right-from-square\": 61582,\n  \"arrow-up-right\": 57503,\n  \"arrow-up-short-wide\": 63621,\n  \"arrow-up-small-big\": 63631,\n  \"arrow-up-square-triangle\": 63627,\n  \"arrow-up-to-arc\": 58903,\n  \"arrow-up-to-bracket\": 58986,\n  \"arrow-up-to-dotted-line\": 57505,\n  \"arrow-up-to-line\": 62273,\n  \"arrow-up-triangle-square\": 63626,\n  \"arrow-up-wide-short\": 61793,\n  \"arrow-up-z-a\": 63618,\n  \"arrow-up\": 61538,\n  \"arrows-alt-h\": 62263,\n  \"arrows-alt-v\": 62264,\n  \"arrows-alt\": 61618,\n  \"arrows-cross\": 57506,\n  \"arrows-down-to-line\": 58552,\n  \"arrows-down-to-people\": 58553,\n  \"arrows-from-dotted-line\": 57507,\n  \"arrows-from-line\": 57508,\n  \"arrows-h\": 61566,\n  \"arrows-left-right-to-line\": 58554,\n  \"arrows-left-right\": 61566,\n  \"arrows-maximize\": 62237,\n  \"arrows-minimize\": 57509,\n  \"arrows-repeat-1\": 62310,\n  \"arrows-repeat\": 62308,\n  \"arrows-retweet\": 62305,\n  \"arrows-rotate-reverse\": 58928,\n  \"arrows-rotate\": 61473,\n  \"arrows-spin\": 58555,\n  \"arrows-split-up-and-left\": 58556,\n  \"arrows-to-circle\": 58557,\n  \"arrows-to-dot\": 58558,\n  \"arrows-to-dotted-line\": 57510,\n  \"arrows-to-eye\": 58559,\n  \"arrows-to-line\": 57511,\n  \"arrows-turn-right\": 58560,\n  \"arrows-turn-to-dots\": 58561,\n  \"arrows-up-down-left-right\": 61511,\n  \"arrows-up-down\": 61565,\n  \"arrows-up-to-line\": 58562,\n  \"arrows-v\": 61565,\n  \"arrows\": 61511,\n  \"asl-interpreting\": 62115,\n  \"assistive-listening-systems\": 62114,\n  \"asterisk\": 42,\n  \"at\": 64,\n  \"atlas\": 62808,\n  \"atom-alt\": 62931,\n  \"atom-simple\": 62931,\n  \"atom\": 62930,\n  \"audio-description-slash\": 57512,\n  \"audio-description\": 62110,\n  \"austral-sign\": 57513,\n  \"australian-dollar-sign\": 59134,\n  \"automobile\": 61881,\n  \"avocado\": 57514,\n  \"award-simple\": 57515,\n  \"award\": 62809,\n  \"axe-battle\": 63155,\n  \"axe\": 63154,\n  \"b\": 66,\n  \"baby-carriage\": 63357,\n  \"baby\": 63356,\n  \"backpack\": 62932,\n  \"backspace\": 62810,\n  \"backward-fast\": 61513,\n  \"backward-step\": 61512,\n  \"backward\": 61514,\n  \"bacon\": 63461,\n  \"bacteria\": 57433,\n  \"bacterium\": 57434,\n  \"badge-check\": 62262,\n  \"badge-dollar\": 63045,\n  \"badge-percent\": 63046,\n  \"badge-sheriff\": 63650,\n  \"badge\": 62261,\n  \"badger-honey\": 63156,\n  \"badminton\": 58170,\n  \"bag-seedling\": 58866,\n  \"bag-shopping-minus\": 58960,\n  \"bag-shopping-plus\": 58961,\n  \"bag-shopping\": 62096,\n  \"bagel\": 58327,\n  \"bags-shopping\": 63559,\n  \"baguette\": 58328,\n  \"bahai\": 63078,\n  \"baht-sign\": 57516,\n  \"balance-scale-left\": 62741,\n  \"balance-scale-right\": 62742,\n  \"balance-scale\": 62030,\n  \"ball-pile\": 63358,\n  \"ball-yarn\": 59086,\n  \"balloon\": 58083,\n  \"balloons\": 58084,\n  \"ballot-check\": 63283,\n  \"ballot\": 63282,\n  \"ban-bug\": 63481,\n  \"ban-parking\": 62998,\n  \"ban-smoking\": 62797,\n  \"ban\": 61534,\n  \"banana\": 58085,\n  \"band-aid\": 62562,\n  \"bandage\": 62562,\n  \"bangladeshi-taka-sign\": 58086,\n  \"banjo\": 63651,\n  \"bank\": 61852,\n  \"bar-chart\": 61568,\n  \"bar-progress-empty\": 59045,\n  \"bar-progress-full\": 59046,\n  \"bar-progress-half\": 59047,\n  \"bar-progress-quarter\": 59048,\n  \"bar-progress-three-quarters\": 59049,\n  \"bar-progress\": 59044,\n  \"barcode-alt\": 62563,\n  \"barcode-read\": 62564,\n  \"barcode-scan\": 62565,\n  \"barcode\": 61482,\n  \"barn-silo\": 63588,\n  \"barn\": 59079,\n  \"bars-filter\": 57517,\n  \"bars-progress\": 63528,\n  \"bars-sort\": 57518,\n  \"bars-staggered\": 62800,\n  \"bars\": 61641,\n  \"baseball-ball\": 62515,\n  \"baseball-bat-ball\": 62514,\n  \"baseball-bat\": 59365,\n  \"baseball\": 62515,\n  \"basket-shopping-minus\": 58962,\n  \"basket-shopping-plus\": 58963,\n  \"basket-shopping-simple\": 57519,\n  \"basket-shopping\": 62097,\n  \"basketball-ball\": 62516,\n  \"basketball-hoop\": 62517,\n  \"basketball\": 62516,\n  \"bat\": 63157,\n  \"bath\": 62157,\n  \"bathtub\": 62157,\n  \"battery-0\": 62020,\n  \"battery-1\": 57521,\n  \"battery-2\": 62019,\n  \"battery-3\": 62018,\n  \"battery-4\": 62017,\n  \"battery-5\": 62016,\n  \"battery-bolt\": 62326,\n  \"battery-car\": 62943,\n  \"battery-empty\": 62020,\n  \"battery-exclamation\": 57520,\n  \"battery-full\": 62016,\n  \"battery-half\": 62018,\n  \"battery-low\": 57521,\n  \"battery-quarter\": 62019,\n  \"battery-slash\": 62327,\n  \"battery-three-quarters\": 62017,\n  \"battery\": 62016,\n  \"bed-alt\": 63735,\n  \"bed-bunk\": 63736,\n  \"bed-empty\": 63737,\n  \"bed-front\": 63735,\n  \"bed-pulse\": 62599,\n  \"bed\": 62006,\n  \"bee\": 57522,\n  \"beer-foam\": 57523,\n  \"beer-mug-empty\": 61692,\n  \"beer-mug\": 57523,\n  \"beer\": 61692,\n  \"bell-concierge\": 62818,\n  \"bell-exclamation\": 63560,\n  \"bell-on\": 63738,\n  \"bell-plus\": 63561,\n  \"bell-ring\": 58924,\n  \"bell-school-slash\": 62934,\n  \"bell-school\": 62933,\n  \"bell-slash\": 61942,\n  \"bell\": 61683,\n  \"bells\": 63359,\n  \"bench-tree\": 58087,\n  \"betamax\": 63652,\n  \"bezier-curve\": 62811,\n  \"bible\": 63047,\n  \"bicep\": 59490,\n  \"bicycle\": 61958,\n  \"biking-mountain\": 63563,\n  \"biking\": 63562,\n  \"billboard\": 58829,\n  \"bin-bottles-recycle\": 58870,\n  \"bin-bottles\": 58869,\n  \"bin-recycle\": 58871,\n  \"bin\": 59235,\n  \"binary-circle-check\": 58172,\n  \"binary-lock\": 58173,\n  \"binary-slash\": 58174,\n  \"binary\": 58171,\n  \"binoculars\": 61925,\n  \"biohazard\": 63360,\n  \"bird\": 58473,\n  \"birthday-cake\": 61949,\n  \"bitcoin-sign\": 57524,\n  \"blackboard\": 62747,\n  \"blanket-fire\": 58330,\n  \"blanket\": 62616,\n  \"blender-phone\": 63158,\n  \"blender\": 62743,\n  \"blind\": 62109,\n  \"blinds-open\": 63740,\n  \"blinds-raised\": 63741,\n  \"blinds\": 63739,\n  \"block-brick-fire\": 58332,\n  \"block-brick\": 58331,\n  \"block-question\": 58333,\n  \"block-quote\": 57525,\n  \"block\": 58474,\n  \"blog\": 63361,\n  \"blueberries\": 58088,\n  \"bluetooth\": 62099,\n  \"bold\": 61490,\n  \"bolt-auto\": 57526,\n  \"bolt-lightning\": 57527,\n  \"bolt-slash\": 57528,\n  \"bolt\": 61671,\n  \"bomb\": 61922,\n  \"bone-break\": 62936,\n  \"bone\": 62935,\n  \"bong\": 62812,\n  \"book-alt\": 62937,\n  \"book-arrow-right\": 57529,\n  \"book-arrow-up\": 57530,\n  \"book-atlas\": 62808,\n  \"book-bible\": 63047,\n  \"book-blank\": 62937,\n  \"book-bookmark\": 57531,\n  \"book-circle-arrow-right\": 57532,\n  \"book-circle-arrow-up\": 57533,\n  \"book-circle\": 57599,\n  \"book-copy\": 57534,\n  \"book-dead\": 63159,\n  \"book-font\": 57535,\n  \"book-heart\": 62617,\n  \"book-journal-whills\": 63082,\n  \"book-law\": 57537,\n  \"book-medical\": 63462,\n  \"book-open-alt\": 57536,\n  \"book-open-cover\": 57536,\n  \"book-open-lines\": 59219,\n  \"book-open-reader\": 62938,\n  \"book-open\": 62744,\n  \"book-quran\": 63111,\n  \"book-reader\": 62938,\n  \"book-section\": 57537,\n  \"book-skull\": 63159,\n  \"book-sparkles\": 63160,\n  \"book-spells\": 63160,\n  \"book-spine\": 59220,\n  \"book-tanakh\": 63527,\n  \"book-user\": 63463,\n  \"book\": 61485,\n  \"bookmark-circle\": 57600,\n  \"bookmark-plus\": 59221,\n  \"bookmark-slash\": 57538,\n  \"bookmark\": 61486,\n  \"books-medical\": 63464,\n  \"books\": 62939,\n  \"boombox\": 63653,\n  \"boot-heeled\": 58175,\n  \"boot\": 63362,\n  \"booth-curtain\": 63284,\n  \"border-all\": 63564,\n  \"border-bottom-right\": 63572,\n  \"border-bottom\": 63565,\n  \"border-center-h\": 63644,\n  \"border-center-v\": 63645,\n  \"border-inner\": 63566,\n  \"border-left\": 63567,\n  \"border-none\": 63568,\n  \"border-outer\": 63569,\n  \"border-right\": 63570,\n  \"border-style-alt\": 63572,\n  \"border-style\": 63571,\n  \"border-top-left\": 63571,\n  \"border-top\": 63573,\n  \"bore-hole\": 58563,\n  \"bottle-baby\": 58995,\n  \"bottle-droplet\": 58564,\n  \"bottle-water\": 58565,\n  \"bow-archery\": 59450,\n  \"bow-arrow\": 63161,\n  \"bowl-chopsticks-noodles\": 58090,\n  \"bowl-chopsticks\": 58089,\n  \"bowl-food\": 58566,\n  \"bowl-hot\": 63523,\n  \"bowl-rice\": 58091,\n  \"bowl-salad\": 63518,\n  \"bowl-scoop\": 58334,\n  \"bowl-scoops\": 58335,\n  \"bowl-shaved-ice\": 58334,\n  \"bowl-soft-serve\": 58475,\n  \"bowl-spoon\": 58336,\n  \"bowling-ball-pin\": 57539,\n  \"bowling-ball\": 62518,\n  \"bowling-pins\": 62519,\n  \"box-alt\": 62618,\n  \"box-archive\": 61831,\n  \"box-arrow-down-arrow-up\": 59285,\n  \"box-arrow-down-magnifying-glass\": 59286,\n  \"box-arrow-down\": 59284,\n  \"box-arrow-up\": 59431,\n  \"box-ballot\": 63285,\n  \"box-check\": 62567,\n  \"box-circle-check\": 57540,\n  \"box-dollar\": 62624,\n  \"box-fragile\": 62619,\n  \"box-full\": 62620,\n  \"box-heart\": 62621,\n  \"box-isometric-tape\": 59288,\n  \"box-isometric\": 59287,\n  \"box-magnifying-glass\": 59432,\n  \"box-open-full\": 62620,\n  \"box-open\": 62622,\n  \"box-taped\": 62618,\n  \"box-tissue\": 57435,\n  \"box-up\": 62623,\n  \"box-usd\": 62624,\n  \"box\": 62566,\n  \"boxes-alt\": 62568,\n  \"boxes-packing\": 58567,\n  \"boxes-stacked\": 62568,\n  \"boxes\": 62568,\n  \"boxing-glove\": 62520,\n  \"bra\": 59087,\n  \"bracket-curly-left\": 123,\n  \"bracket-curly-right\": 125,\n  \"bracket-curly\": 123,\n  \"bracket-left\": 91,\n  \"bracket-round-right\": 41,\n  \"bracket-round\": 40,\n  \"bracket-square-right\": 93,\n  \"bracket-square\": 91,\n  \"bracket\": 91,\n  \"brackets-curly\": 63466,\n  \"brackets-round\": 57541,\n  \"brackets-square\": 63465,\n  \"brackets\": 63465,\n  \"braille\": 62113,\n  \"brain-arrow-curved-right\": 63095,\n  \"brain-circuit\": 57542,\n  \"brain\": 62940,\n  \"brake-warning\": 57543,\n  \"brazilian-real-sign\": 58476,\n  \"bread-loaf\": 63467,\n  \"bread-slice-butter\": 58337,\n  \"bread-slice\": 63468,\n  \"bridge-circle-check\": 58569,\n  \"bridge-circle-exclamation\": 58570,\n  \"bridge-circle-xmark\": 58571,\n  \"bridge-lock\": 58572,\n  \"bridge-suspension\": 58573,\n  \"bridge-water\": 58574,\n  \"bridge\": 58568,\n  \"briefcase-arrow-right\": 58098,\n  \"briefcase-blank\": 57544,\n  \"briefcase-clock\": 63050,\n  \"briefcase-medical\": 62569,\n  \"briefcase\": 61617,\n  \"briefs\": 59088,\n  \"brightness-low\": 57546,\n  \"brightness\": 57545,\n  \"bring-forward\": 63574,\n  \"bring-front\": 63575,\n  \"broadcast-tower\": 62745,\n  \"broccoli\": 58338,\n  \"broom-ball\": 62552,\n  \"broom-wide\": 58833,\n  \"broom\": 62746,\n  \"browser\": 62334,\n  \"browsers\": 57547,\n  \"brush\": 62813,\n  \"bucket\": 58575,\n  \"bug-slash\": 58512,\n  \"bug\": 61832,\n  \"bugs\": 58576,\n  \"building-circle-arrow-right\": 58577,\n  \"building-circle-check\": 58578,\n  \"building-circle-exclamation\": 58579,\n  \"building-circle-xmark\": 58580,\n  \"building-columns\": 61852,\n  \"building-flag\": 58581,\n  \"building-lock\": 58582,\n  \"building-magnifying-glass\": 58908,\n  \"building-memo\": 58910,\n  \"building-ngo\": 58583,\n  \"building-shield\": 58584,\n  \"building-un\": 58585,\n  \"building-user\": 58586,\n  \"building-wheat\": 58587,\n  \"building\": 61869,\n  \"buildings\": 57548,\n  \"bulldozer\": 58965,\n  \"bullhorn\": 61601,\n  \"bullseye-arrow\": 63048,\n  \"bullseye-pointer\": 63049,\n  \"bullseye\": 61760,\n  \"buoy-mooring\": 58806,\n  \"buoy\": 58805,\n  \"burger-cheese\": 63473,\n  \"burger-fries\": 57549,\n  \"burger-glass\": 57550,\n  \"burger-lettuce\": 58339,\n  \"burger-soda\": 63576,\n  \"burger\": 63493,\n  \"burn\": 62570,\n  \"burrito\": 63469,\n  \"burst-new\": 59512,\n  \"burst\": 58588,\n  \"bus-alt\": 62814,\n  \"bus-school\": 62941,\n  \"bus-side\": 59421,\n  \"bus-simple\": 62814,\n  \"bus-stop\": 59422,\n  \"bus\": 61959,\n  \"business-front\": 58460,\n  \"business-time\": 63050,\n  \"butter\": 58340,\n  \"butterfly\": 59409,\n  \"c\": 67,\n  \"cab\": 61882,\n  \"cabin\": 58477,\n  \"cabinet-filing\": 63051,\n  \"cable-car\": 63450,\n  \"cactus\": 63655,\n  \"caduceus\": 59009,\n  \"cake-candles\": 61949,\n  \"cake-slice\": 58341,\n  \"cake\": 61949,\n  \"calculator-alt\": 63052,\n  \"calculator-simple\": 63052,\n  \"calculator\": 61932,\n  \"calendar-alt\": 61555,\n  \"calendar-arrow-down\": 57552,\n  \"calendar-arrow-up\": 57553,\n  \"calendar-check\": 62068,\n  \"calendar-circle-exclamation\": 58478,\n  \"calendar-circle-minus\": 58479,\n  \"calendar-circle-plus\": 58480,\n  \"calendar-circle-user\": 58481,\n  \"calendar-circle\": 57602,\n  \"calendar-clock\": 57554,\n  \"calendar-day\": 63363,\n  \"calendar-days\": 61555,\n  \"calendar-download\": 57552,\n  \"calendar-edit\": 62259,\n  \"calendar-exclamation\": 62260,\n  \"calendar-heart\": 57555,\n  \"calendar-image\": 57556,\n  \"calendar-lines-pen\": 58482,\n  \"calendar-lines\": 57557,\n  \"calendar-minus\": 62066,\n  \"calendar-note\": 57557,\n  \"calendar-pen\": 62259,\n  \"calendar-plus\": 62065,\n  \"calendar-range\": 57558,\n  \"calendar-star\": 63286,\n  \"calendar-time\": 57554,\n  \"calendar-times\": 62067,\n  \"calendar-upload\": 57553,\n  \"calendar-users\": 58850,\n  \"calendar-week\": 63364,\n  \"calendar-xmark\": 62067,\n  \"calendar\": 61747,\n  \"calendars\": 57559,\n  \"camcorder\": 63656,\n  \"camera-alt\": 61488,\n  \"camera-cctv\": 63660,\n  \"camera-circle-ellipsis\": 59238,\n  \"camera-circle\": 57603,\n  \"camera-clock\": 59239,\n  \"camera-home\": 63742,\n  \"camera-movie\": 63657,\n  \"camera-polaroid\": 63658,\n  \"camera-retro\": 61571,\n  \"camera-rotate\": 57560,\n  \"camera-security\": 63742,\n  \"camera-shutter\": 59240,\n  \"camera-slash\": 57561,\n  \"camera-viewfinder\": 57562,\n  \"camera-web-slash\": 63539,\n  \"camera-web\": 63538,\n  \"camera\": 61488,\n  \"campfire\": 63162,\n  \"campground\": 63163,\n  \"can-food\": 58342,\n  \"cancel\": 61534,\n  \"cancer\": 59463,\n  \"candle-holder\": 63164,\n  \"candy-bar\": 58344,\n  \"candy-cane\": 63366,\n  \"candy-corn\": 63165,\n  \"candy\": 58343,\n  \"cannabis\": 62815,\n  \"cannon\": 58946,\n  \"canoe-person\": 59548,\n  \"capricorn\": 59464,\n  \"capsule\": 59226,\n  \"capsules\": 62571,\n  \"car-alt\": 62942,\n  \"car-battery\": 62943,\n  \"car-bolt\": 58177,\n  \"car-building\": 63577,\n  \"car-bump\": 62944,\n  \"car-burst\": 62945,\n  \"car-bus\": 63578,\n  \"car-circle-bolt\": 58178,\n  \"car-crash\": 62945,\n  \"car-garage\": 62946,\n  \"car-key\": 59328,\n  \"car-mechanic\": 62947,\n  \"car-mirrors\": 58179,\n  \"car-on\": 58589,\n  \"car-people\": 59036,\n  \"car-rear\": 62942,\n  \"car-side-bolt\": 58180,\n  \"car-side\": 62948,\n  \"car-siren-on\": 59330,\n  \"car-siren\": 59329,\n  \"car-tilt\": 62949,\n  \"car-tunnel\": 58590,\n  \"car-wash\": 62950,\n  \"car-wrench\": 62947,\n  \"car\": 61881,\n  \"caravan-alt\": 57344,\n  \"caravan-simple\": 57344,\n  \"caravan\": 63743,\n  \"card-club\": 58345,\n  \"card-diamond\": 58346,\n  \"card-heart\": 58347,\n  \"card-spade\": 58348,\n  \"cards-blank\": 58591,\n  \"cards\": 58349,\n  \"caret-circle-down\": 62253,\n  \"caret-circle-left\": 62254,\n  \"caret-circle-right\": 62256,\n  \"caret-circle-up\": 62257,\n  \"caret-down\": 61655,\n  \"caret-large-down\": 59436,\n  \"caret-large-left\": 59437,\n  \"caret-large-right\": 59438,\n  \"caret-large-up\": 59439,\n  \"caret-left\": 61657,\n  \"caret-right\": 61658,\n  \"caret-square-down\": 61776,\n  \"caret-square-left\": 61841,\n  \"caret-square-right\": 61778,\n  \"caret-square-up\": 61777,\n  \"caret-up\": 61656,\n  \"carpool\": 59036,\n  \"carriage-baby\": 63357,\n  \"carrot\": 63367,\n  \"cars\": 63579,\n  \"cart-arrow-down\": 61976,\n  \"cart-arrow-up\": 58350,\n  \"cart-circle-arrow-down\": 58351,\n  \"cart-circle-arrow-up\": 58352,\n  \"cart-circle-check\": 58353,\n  \"cart-circle-exclamation\": 58354,\n  \"cart-circle-plus\": 58355,\n  \"cart-circle-xmark\": 58356,\n  \"cart-flatbed-boxes\": 62581,\n  \"cart-flatbed-empty\": 62582,\n  \"cart-flatbed-suitcase\": 62877,\n  \"cart-flatbed\": 62580,\n  \"cart-minus\": 57563,\n  \"cart-plus\": 61975,\n  \"cart-shopping-fast\": 57564,\n  \"cart-shopping\": 61562,\n  \"cart-xmark\": 57565,\n  \"cash-register\": 63368,\n  \"cassette-betamax\": 63652,\n  \"cassette-tape\": 63659,\n  \"cassette-vhs\": 63724,\n  \"castle\": 57566,\n  \"cat-space\": 57345,\n  \"cat\": 63166,\n  \"cauldron\": 63167,\n  \"cctv\": 63660,\n  \"cedi-sign\": 57567,\n  \"cent-sign\": 58357,\n  \"certificate\": 61603,\n  \"chain-broken\": 61735,\n  \"chain-horizontal-slash\": 57804,\n  \"chain-horizontal\": 57803,\n  \"chain-slash\": 61735,\n  \"chain\": 61633,\n  \"chair-office\": 63169,\n  \"chair\": 63168,\n  \"chalkboard-teacher\": 62748,\n  \"chalkboard-user\": 62748,\n  \"chalkboard\": 62747,\n  \"champagne-glass\": 63390,\n  \"champagne-glasses\": 63391,\n  \"charging-station\": 62951,\n  \"chart-area\": 61950,\n  \"chart-bar\": 61568,\n  \"chart-bullet\": 57569,\n  \"chart-candlestick\": 57570,\n  \"chart-column\": 57571,\n  \"chart-diagram\": 59029,\n  \"chart-fft\": 59038,\n  \"chart-gantt\": 57572,\n  \"chart-kanban\": 58959,\n  \"chart-line-down\": 63053,\n  \"chart-line-up-down\": 58839,\n  \"chart-line-up\": 57573,\n  \"chart-line\": 61953,\n  \"chart-mixed-up-circle-currency\": 58840,\n  \"chart-mixed-up-circle-dollar\": 58841,\n  \"chart-mixed\": 63043,\n  \"chart-network\": 63370,\n  \"chart-pie-alt\": 63054,\n  \"chart-pie-simple-circle-currency\": 58884,\n  \"chart-pie-simple-circle-dollar\": 58885,\n  \"chart-pie-simple\": 63054,\n  \"chart-pie\": 61952,\n  \"chart-pyramid\": 57574,\n  \"chart-radar\": 57575,\n  \"chart-scatter-3d\": 57576,\n  \"chart-scatter-bubble\": 57577,\n  \"chart-scatter\": 63470,\n  \"chart-simple-horizontal\": 58484,\n  \"chart-simple\": 58483,\n  \"chart-sine\": 59037,\n  \"chart-tree-map\": 57578,\n  \"chart-user\": 63139,\n  \"chart-waterfall\": 57579,\n  \"check-circle\": 61528,\n  \"check-double\": 62816,\n  \"check-square\": 61770,\n  \"check-to-slot\": 63346,\n  \"check\": 61452,\n  \"cheese-swiss\": 63472,\n  \"cheese\": 63471,\n  \"cheeseburger\": 63473,\n  \"chemex\": 59440,\n  \"cherries\": 57580,\n  \"chess-bishop-alt\": 62523,\n  \"chess-bishop-piece\": 62523,\n  \"chess-bishop\": 62522,\n  \"chess-board\": 62524,\n  \"chess-clock-alt\": 62526,\n  \"chess-clock-flip\": 62526,\n  \"chess-clock\": 62525,\n  \"chess-king-alt\": 62528,\n  \"chess-king-piece\": 62528,\n  \"chess-king\": 62527,\n  \"chess-knight-alt\": 62530,\n  \"chess-knight-piece\": 62530,\n  \"chess-knight\": 62529,\n  \"chess-pawn-alt\": 62532,\n  \"chess-pawn-piece\": 62532,\n  \"chess-pawn\": 62531,\n  \"chess-queen-alt\": 62534,\n  \"chess-queen-piece\": 62534,\n  \"chess-queen\": 62533,\n  \"chess-rook-alt\": 62536,\n  \"chess-rook-piece\": 62536,\n  \"chess-rook\": 62535,\n  \"chess\": 62521,\n  \"chest-drawers\": 59523,\n  \"chestnut\": 58358,\n  \"chevron-circle-down\": 61754,\n  \"chevron-circle-left\": 61751,\n  \"chevron-circle-right\": 61752,\n  \"chevron-circle-up\": 61753,\n  \"chevron-double-down\": 62242,\n  \"chevron-double-left\": 62243,\n  \"chevron-double-right\": 62244,\n  \"chevron-double-up\": 62245,\n  \"chevron-down\": 61560,\n  \"chevron-left\": 61523,\n  \"chevron-right\": 61524,\n  \"chevron-square-down\": 62249,\n  \"chevron-square-left\": 62250,\n  \"chevron-square-right\": 62251,\n  \"chevron-square-up\": 62252,\n  \"chevron-up\": 61559,\n  \"chevrons-down\": 62242,\n  \"chevrons-left\": 62243,\n  \"chevrons-right\": 62244,\n  \"chevrons-up\": 62245,\n  \"chf-sign\": 58882,\n  \"child-combatant\": 58592,\n  \"child-dress\": 58780,\n  \"child-reaching\": 58781,\n  \"child-rifle\": 58592,\n  \"child\": 61870,\n  \"children\": 58593,\n  \"chimney\": 63371,\n  \"chocolate-bar\": 58344,\n  \"chopsticks\": 58359,\n  \"church\": 62749,\n  \"circle-0\": 57581,\n  \"circle-1\": 57582,\n  \"circle-2\": 57583,\n  \"circle-3\": 57584,\n  \"circle-4\": 57585,\n  \"circle-5\": 57586,\n  \"circle-6\": 57587,\n  \"circle-7\": 57588,\n  \"circle-8\": 57589,\n  \"circle-9\": 57590,\n  \"circle-a\": 57591,\n  \"circle-ampersand\": 57592,\n  \"circle-arrow-down-left\": 57593,\n  \"circle-arrow-down-right\": 57594,\n  \"circle-arrow-down\": 61611,\n  \"circle-arrow-left\": 61608,\n  \"circle-arrow-right\": 61609,\n  \"circle-arrow-up-left\": 57595,\n  \"circle-arrow-up-right\": 57596,\n  \"circle-arrow-up\": 61610,\n  \"circle-austral\": 59163,\n  \"circle-australian-dollar\": 59184,\n  \"circle-b\": 57597,\n  \"circle-baht\": 59181,\n  \"circle-bangladeshi-taka\": 59137,\n  \"circle-bitcoin\": 59191,\n  \"circle-bolt\": 57598,\n  \"circle-book-open\": 57599,\n  \"circle-bookmark\": 57600,\n  \"circle-brazilian-real\": 59115,\n  \"circle-c\": 57601,\n  \"circle-calendar\": 57602,\n  \"circle-camera\": 57603,\n  \"circle-caret-down\": 62253,\n  \"circle-caret-left\": 62254,\n  \"circle-caret-right\": 62256,\n  \"circle-caret-up\": 62257,\n  \"circle-cedi\": 59202,\n  \"circle-cent\": 59178,\n  \"circle-check\": 61528,\n  \"circle-chevron-down\": 61754,\n  \"circle-chevron-left\": 61751,\n  \"circle-chevron-right\": 61752,\n  \"circle-chevron-up\": 61753,\n  \"circle-chf\": 59180,\n  \"circle-colon\": 59132,\n  \"circle-cruzeiro\": 59170,\n  \"circle-currency\": 59118,\n  \"circle-d\": 57604,\n  \"circle-danish-krone\": 59206,\n  \"circle-dashed\": 57605,\n  \"circle-divide\": 57606,\n  \"circle-dollar-to-slot\": 62649,\n  \"circle-dollar\": 62184,\n  \"circle-dong\": 59171,\n  \"circle-dot\": 61842,\n  \"circle-down-left\": 57607,\n  \"circle-down-right\": 57608,\n  \"circle-down\": 62296,\n  \"circle-e\": 57609,\n  \"circle-ellipsis-vertical\": 57611,\n  \"circle-ellipsis\": 57610,\n  \"circle-envelope\": 57612,\n  \"circle-equals\": 59057,\n  \"circle-euro\": 58830,\n  \"circle-eurozone\": 59205,\n  \"circle-exclamation-check\": 57613,\n  \"circle-exclamation\": 61546,\n  \"circle-f\": 57614,\n  \"circle-florin\": 59108,\n  \"circle-franc\": 59169,\n  \"circle-g\": 57615,\n  \"circle-gf\": 59007,\n  \"circle-guarani\": 59195,\n  \"circle-h\": 62590,\n  \"circle-half-horizontal\": 59404,\n  \"circle-half-stroke-horizontal\": 59405,\n  \"circle-half-stroke\": 61506,\n  \"circle-half\": 57616,\n  \"circle-heart\": 62663,\n  \"circle-house\": 59080,\n  \"circle-hryvnia\": 59119,\n  \"circle-i\": 57617,\n  \"circle-indian-rupee\": 59188,\n  \"circle-info\": 61530,\n  \"circle-j\": 57618,\n  \"circle-k\": 57619,\n  \"circle-kip\": 59133,\n  \"circle-l\": 57620,\n  \"circle-lari\": 59165,\n  \"circle-left\": 62297,\n  \"circle-lira\": 59126,\n  \"circle-litecoin\": 59124,\n  \"circle-location-arrow\": 62978,\n  \"circle-m\": 57621,\n  \"circle-malaysian-ringgit\": 59129,\n  \"circle-manat\": 59131,\n  \"circle-microphone-lines\": 57623,\n  \"circle-microphone\": 57622,\n  \"circle-mill\": 59138,\n  \"circle-minus\": 61526,\n  \"circle-moon\": 59360,\n  \"circle-n\": 57624,\n  \"circle-naira\": 59209,\n  \"circle-nodes\": 58594,\n  \"circle-norwegian-krone\": 59192,\n  \"circle-notch\": 61902,\n  \"circle-o\": 57625,\n  \"circle-p\": 57626,\n  \"circle-parking\": 62997,\n  \"circle-pause\": 62091,\n  \"circle-peruvian-soles\": 59123,\n  \"circle-peseta\": 59201,\n  \"circle-peso\": 59135,\n  \"circle-phone-flip\": 57628,\n  \"circle-phone-hangup\": 57629,\n  \"circle-phone\": 57627,\n  \"circle-play\": 61764,\n  \"circle-plus\": 61525,\n  \"circle-polish-zloty\": 59136,\n  \"circle-q\": 57630,\n  \"circle-quarter-stroke\": 58835,\n  \"circle-quarter\": 57631,\n  \"circle-quarters\": 58360,\n  \"circle-question\": 61529,\n  \"circle-r\": 57632,\n  \"circle-radiation\": 63418,\n  \"circle-renminbi\": 59113,\n  \"circle-right\": 62298,\n  \"circle-ruble\": 59109,\n  \"circle-rupee\": 59156,\n  \"circle-rupiah\": 59142,\n  \"circle-s\": 57633,\n  \"circle-share-nodes\": 59099,\n  \"circle-shekel\": 59139,\n  \"circle-small\": 57634,\n  \"circle-sort-down\": 57393,\n  \"circle-sort-up\": 57394,\n  \"circle-sort\": 57392,\n  \"circle-star\": 57635,\n  \"circle-sterling\": 58831,\n  \"circle-stop\": 62093,\n  \"circle-swedish-krona\": 59203,\n  \"circle-t\": 57636,\n  \"circle-tenge\": 59173,\n  \"circle-three-quarters-stroke\": 58836,\n  \"circle-three-quarters\": 57637,\n  \"circle-trash\": 57638,\n  \"circle-tugrik\": 59153,\n  \"circle-turkish-lira\": 59193,\n  \"circle-u\": 57639,\n  \"circle-up-left\": 57640,\n  \"circle-up-right\": 57641,\n  \"circle-up\": 62299,\n  \"circle-user-circle-check\": 59295,\n  \"circle-user-circle-exclamation\": 59296,\n  \"circle-user-circle-minus\": 59297,\n  \"circle-user-circle-moon\": 59298,\n  \"circle-user-circle-plus\": 59299,\n  \"circle-user-circle-question\": 59300,\n  \"circle-user-circle-user\": 59301,\n  \"circle-user-circle-xmark\": 59302,\n  \"circle-user-clock\": 59303,\n  \"circle-user\": 62141,\n  \"circle-v\": 57642,\n  \"circle-video\": 57643,\n  \"circle-w\": 57644,\n  \"circle-waveform-lines\": 57645,\n  \"circle-wifi-circle-wifi\": 59006,\n  \"circle-wifi-group\": 59006,\n  \"circle-wifi\": 59005,\n  \"circle-won\": 59116,\n  \"circle-x\": 57646,\n  \"circle-xmark\": 61527,\n  \"circle-y\": 57647,\n  \"circle-yen\": 58832,\n  \"circle-z\": 57648,\n  \"circle\": 61713,\n  \"circleapore-dollar\": 59166,\n  \"circles-overlap-3\": 59041,\n  \"circles-overlap\": 58880,\n  \"citrus-slice\": 58101,\n  \"citrus\": 58100,\n  \"city\": 63055,\n  \"clapperboard-play\": 57650,\n  \"clapperboard\": 57649,\n  \"clarinet\": 63661,\n  \"claw-marks\": 63170,\n  \"clinic-medical\": 63474,\n  \"clipboard-check\": 62572,\n  \"clipboard-clock\": 59222,\n  \"clipboard-exclamation\": 59223,\n  \"clipboard-list-check\": 63287,\n  \"clipboard-list\": 62573,\n  \"clipboard-medical\": 57651,\n  \"clipboard-prescription\": 62952,\n  \"clipboard-question\": 58595,\n  \"clipboard-user\": 63475,\n  \"clipboard\": 62248,\n  \"clock-desk\": 57652,\n  \"clock-eight-thirty\": 58182,\n  \"clock-eight\": 58181,\n  \"clock-eleven-thirty\": 58184,\n  \"clock-eleven\": 58183,\n  \"clock-five-thirty\": 58186,\n  \"clock-five\": 58185,\n  \"clock-four-thirty\": 58187,\n  \"clock-four\": 61463,\n  \"clock-nine-thirty\": 58189,\n  \"clock-nine\": 58188,\n  \"clock-one-thirty\": 58191,\n  \"clock-one\": 58190,\n  \"clock-rotate-left\": 61914,\n  \"clock-seven-thirty\": 58193,\n  \"clock-seven\": 58192,\n  \"clock-six-thirty\": 58195,\n  \"clock-six\": 58194,\n  \"clock-ten-thirty\": 58197,\n  \"clock-ten\": 58196,\n  \"clock-three-thirty\": 58199,\n  \"clock-three\": 58198,\n  \"clock-twelve-thirty\": 58201,\n  \"clock-twelve\": 58200,\n  \"clock-two-thirty\": 58203,\n  \"clock-two\": 58202,\n  \"clock\": 61463,\n  \"clone-plus\": 59212,\n  \"clone\": 62029,\n  \"close\": 61453,\n  \"closed-captioning-slash\": 57653,\n  \"closed-captioning\": 61962,\n  \"clothes-hanger\": 57654,\n  \"cloud-arrow-down\": 61677,\n  \"cloud-arrow-up\": 61678,\n  \"cloud-binary\": 58881,\n  \"cloud-bolt-moon\": 63341,\n  \"cloud-bolt-sun\": 63342,\n  \"cloud-bolt\": 63340,\n  \"cloud-check\": 58204,\n  \"cloud-download-alt\": 61677,\n  \"cloud-download\": 61677,\n  \"cloud-drizzle\": 63288,\n  \"cloud-exclamation\": 58513,\n  \"cloud-fog\": 63310,\n  \"cloud-hail-mixed\": 63290,\n  \"cloud-hail\": 63289,\n  \"cloud-meatball\": 63291,\n  \"cloud-minus\": 58205,\n  \"cloud-moon-rain\": 63292,\n  \"cloud-moon\": 63171,\n  \"cloud-music\": 63662,\n  \"cloud-plus\": 58206,\n  \"cloud-question\": 58514,\n  \"cloud-rain\": 63293,\n  \"cloud-rainbow\": 63294,\n  \"cloud-showers-heavy\": 63296,\n  \"cloud-showers-water\": 58596,\n  \"cloud-showers\": 63295,\n  \"cloud-slash\": 57655,\n  \"cloud-sleet\": 63297,\n  \"cloud-snow\": 63298,\n  \"cloud-sun-rain\": 63299,\n  \"cloud-sun\": 63172,\n  \"cloud-upload-alt\": 61678,\n  \"cloud-upload\": 61678,\n  \"cloud-word\": 57656,\n  \"cloud-xmark\": 58207,\n  \"cloud\": 61634,\n  \"clouds-moon\": 63301,\n  \"clouds-sun\": 63302,\n  \"clouds\": 63300,\n  \"clover\": 57657,\n  \"club\": 62247,\n  \"cny\": 61783,\n  \"cocktail\": 62817,\n  \"coconut\": 58102,\n  \"code-branch\": 61734,\n  \"code-commit\": 62342,\n  \"code-compare\": 57658,\n  \"code-fork\": 57659,\n  \"code-merge\": 62343,\n  \"code-pull-request-closed\": 58361,\n  \"code-pull-request-draft\": 58362,\n  \"code-pull-request\": 57660,\n  \"code-simple\": 57661,\n  \"code\": 61729,\n  \"coffee-bean\": 57662,\n  \"coffee-beans\": 57663,\n  \"coffee-pot\": 57346,\n  \"coffee-togo\": 63173,\n  \"coffee\": 61684,\n  \"coffin-cross\": 57425,\n  \"coffin\": 63174,\n  \"cog\": 61459,\n  \"cogs\": 61573,\n  \"coin-blank\": 58363,\n  \"coin-front\": 58364,\n  \"coin-vertical\": 58365,\n  \"coin\": 63580,\n  \"coins\": 62750,\n  \"colon-sign\": 57664,\n  \"colon\": 58,\n  \"columns-3\": 58209,\n  \"columns\": 61659,\n  \"comet\": 57347,\n  \"comma\": 44,\n  \"command\": 57666,\n  \"comment-alt-arrow-down\": 57819,\n  \"comment-alt-arrow-up\": 57820,\n  \"comment-alt-captions\": 57822,\n  \"comment-alt-check\": 62626,\n  \"comment-alt-dollar\": 63056,\n  \"comment-alt-dots\": 62627,\n  \"comment-alt-edit\": 62628,\n  \"comment-alt-exclamation\": 62629,\n  \"comment-alt-image\": 57824,\n  \"comment-alt-lines\": 62630,\n  \"comment-alt-medical\": 63476,\n  \"comment-alt-minus\": 62631,\n  \"comment-alt-music\": 63663,\n  \"comment-alt-plus\": 62632,\n  \"comment-alt-quote\": 57828,\n  \"comment-alt-slash\": 62633,\n  \"comment-alt-smile\": 62634,\n  \"comment-alt-text\": 57830,\n  \"comment-alt-times\": 62635,\n  \"comment-alt\": 62074,\n  \"comment-arrow-down\": 57667,\n  \"comment-arrow-up-right\": 57669,\n  \"comment-arrow-up\": 57668,\n  \"comment-captions\": 57670,\n  \"comment-check\": 62636,\n  \"comment-code\": 57671,\n  \"comment-dollar\": 63057,\n  \"comment-dot\": 59100,\n  \"comment-dots\": 62637,\n  \"comment-edit\": 62638,\n  \"comment-exclamation\": 62639,\n  \"comment-heart\": 58824,\n  \"comment-image\": 57672,\n  \"comment-lines\": 62640,\n  \"comment-medical\": 63477,\n  \"comment-middle-alt\": 57825,\n  \"comment-middle-top-alt\": 57826,\n  \"comment-middle-top\": 57674,\n  \"comment-middle\": 57673,\n  \"comment-minus\": 62641,\n  \"comment-music\": 63664,\n  \"comment-nodes\": 59030,\n  \"comment-pen\": 62638,\n  \"comment-plus\": 62642,\n  \"comment-question\": 57675,\n  \"comment-quote\": 57676,\n  \"comment-slash\": 62643,\n  \"comment-smile\": 62644,\n  \"comment-sms\": 63437,\n  \"comment-text\": 57677,\n  \"comment-times\": 62645,\n  \"comment-waveform\": 59101,\n  \"comment-xmark\": 62645,\n  \"comment\": 61557,\n  \"commenting\": 62637,\n  \"comments-alt-dollar\": 63058,\n  \"comments-alt\": 62646,\n  \"comments-dollar\": 63059,\n  \"comments-question-check\": 57679,\n  \"comments-question\": 57678,\n  \"comments\": 61574,\n  \"compact-disc\": 62751,\n  \"compass-drafting\": 62824,\n  \"compass-slash\": 62953,\n  \"compass\": 61774,\n  \"compress-alt\": 62498,\n  \"compress-arrows-alt\": 63372,\n  \"compress-arrows\": 57509,\n  \"compress-wide\": 62246,\n  \"compress\": 61542,\n  \"computer-classic\": 63665,\n  \"computer-mouse-button-left\": 59341,\n  \"computer-mouse-button-right\": 59342,\n  \"computer-mouse-scrollwheel\": 63693,\n  \"computer-mouse\": 63692,\n  \"computer-speaker\": 63666,\n  \"computer\": 58597,\n  \"concierge-bell\": 62818,\n  \"construction\": 63581,\n  \"contact-book\": 62137,\n  \"contact-card\": 62139,\n  \"container-storage\": 62647,\n  \"conveyor-belt-alt\": 62575,\n  \"conveyor-belt-arm\": 58872,\n  \"conveyor-belt-boxes\": 62575,\n  \"conveyor-belt-empty\": 57680,\n  \"conveyor-belt\": 62574,\n  \"cookie-bite\": 62820,\n  \"cookie\": 62819,\n  \"copy\": 61637,\n  \"copyright\": 61945,\n  \"corn\": 63175,\n  \"corner\": 58366,\n  \"couch-small\": 62668,\n  \"couch\": 62648,\n  \"court-sport\": 58947,\n  \"cow\": 63176,\n  \"cowbell-circle-plus\": 63668,\n  \"cowbell-more\": 63668,\n  \"cowbell\": 63667,\n  \"crab\": 58367,\n  \"crate-apple\": 63153,\n  \"crate-empty\": 57681,\n  \"credit-card-alt\": 61597,\n  \"credit-card-blank\": 62345,\n  \"credit-card-front\": 62346,\n  \"credit-card\": 61597,\n  \"creemee\": 58368,\n  \"cricket-bat-ball\": 62537,\n  \"cricket\": 62537,\n  \"croissant\": 63478,\n  \"crop-alt\": 62821,\n  \"crop-simple\": 62821,\n  \"crop\": 61733,\n  \"cross\": 63060,\n  \"crosshairs-simple\": 58783,\n  \"crosshairs\": 61531,\n  \"crow\": 62752,\n  \"crown\": 62753,\n  \"crutch\": 63479,\n  \"crutches\": 63480,\n  \"cruzeiro-sign\": 57682,\n  \"crystal-ball\": 58210,\n  \"cube\": 61874,\n  \"cubes-stacked\": 58598,\n  \"cubes\": 61875,\n  \"cucumber\": 58369,\n  \"cup-straw-swoosh\": 58212,\n  \"cup-straw\": 58211,\n  \"cup-togo\": 63173,\n  \"cupcake\": 58370,\n  \"curling-stone\": 62538,\n  \"curling\": 62538,\n  \"currency-sign\": 59179,\n  \"custard\": 58371,\n  \"cut\": 61636,\n  \"cutlery\": 62183,\n  \"d\": 68,\n  \"dagger\": 63179,\n  \"danish-krone-sign\": 59168,\n  \"dash\": 58372,\n  \"dashboard\": 63012,\n  \"database\": 61888,\n  \"deaf\": 62116,\n  \"deafness\": 62116,\n  \"debug\": 63481,\n  \"dedent\": 61499,\n  \"deer-rudolph\": 63375,\n  \"deer\": 63374,\n  \"delete-left\": 62810,\n  \"delete-right\": 57684,\n  \"democrat\": 63303,\n  \"desk\": 59518,\n  \"desktop-alt\": 62352,\n  \"desktop-arrow-down\": 57685,\n  \"desktop-code\": 57701,\n  \"desktop-medical\": 57702,\n  \"desktop-slash\": 58106,\n  \"desktop\": 62352,\n  \"dewpoint\": 63304,\n  \"dharmachakra\": 63061,\n  \"diagnoses\": 62576,\n  \"diagram-cells\": 58485,\n  \"diagram-lean-canvas\": 57686,\n  \"diagram-nested\": 57687,\n  \"diagram-next\": 58486,\n  \"diagram-predecessor\": 58487,\n  \"diagram-previous\": 58488,\n  \"diagram-project\": 62786,\n  \"diagram-sankey\": 57688,\n  \"diagram-subtask\": 58489,\n  \"diagram-successor\": 58490,\n  \"diagram-venn\": 57690,\n  \"dial-high\": 57692,\n  \"dial-low\": 57693,\n  \"dial-max\": 57694,\n  \"dial-med-high\": 57691,\n  \"dial-med-low\": 57696,\n  \"dial-med\": 57695,\n  \"dial-min\": 57697,\n  \"dial-off\": 57698,\n  \"dial\": 57691,\n  \"dialpad\": 59340,\n  \"diamond-exclamation\": 58373,\n  \"diamond-half-stroke\": 58808,\n  \"diamond-half\": 58807,\n  \"diamond-turn-right\": 62955,\n  \"diamond\": 61977,\n  \"diamonds-4\": 59019,\n  \"dice-d10\": 63181,\n  \"dice-d12\": 63182,\n  \"dice-d20\": 63183,\n  \"dice-d4\": 63184,\n  \"dice-d6\": 63185,\n  \"dice-d8\": 63186,\n  \"dice-five\": 62755,\n  \"dice-four\": 62756,\n  \"dice-one\": 62757,\n  \"dice-six\": 62758,\n  \"dice-three\": 62759,\n  \"dice-two\": 62760,\n  \"dice\": 62754,\n  \"digging\": 63582,\n  \"digital-tachograph\": 62822,\n  \"dinosaur\": 58878,\n  \"diploma\": 62954,\n  \"direction-left-right\": 59070,\n  \"direction-up-down\": 59071,\n  \"directions\": 62955,\n  \"disc-drive\": 63669,\n  \"disease\": 63482,\n  \"display-arrow-down\": 57700,\n  \"display-chart-up-circle-currency\": 58853,\n  \"display-chart-up-circle-dollar\": 58854,\n  \"display-chart-up\": 58851,\n  \"display-code\": 57701,\n  \"display-medical\": 57702,\n  \"display-slash\": 58106,\n  \"display\": 57699,\n  \"distribute-spacing-horizontal\": 58213,\n  \"distribute-spacing-vertical\": 58214,\n  \"ditto\": 34,\n  \"divide\": 62761,\n  \"dizzy\": 62823,\n  \"dna\": 62577,\n  \"do-not-enter\": 62956,\n  \"dog-leashed\": 63188,\n  \"dog\": 63187,\n  \"dollar-circle\": 62184,\n  \"dollar-sign\": 36,\n  \"dollar-square\": 62185,\n  \"dollar\": 36,\n  \"dolly-box\": 62578,\n  \"dolly-empty\": 62579,\n  \"dolly-flatbed-alt\": 62581,\n  \"dolly-flatbed-empty\": 62582,\n  \"dolly-flatbed\": 62580,\n  \"dolly\": 62578,\n  \"dolphin\": 57704,\n  \"donate\": 62649,\n  \"dong-sign\": 57705,\n  \"donut\": 58374,\n  \"door-closed\": 62762,\n  \"door-open\": 62763,\n  \"dot-circle\": 61842,\n  \"dot\": 59345,\n  \"doughnut\": 58374,\n  \"dove\": 62650,\n  \"down-from-bracket\": 58987,\n  \"down-from-dotted-line\": 58375,\n  \"down-from-line\": 62281,\n  \"down-left-and-up-right-to-center\": 62498,\n  \"down-left\": 57706,\n  \"down-long-to-line\": 59072,\n  \"down-long\": 62217,\n  \"down-right\": 57707,\n  \"down-to-bracket\": 58599,\n  \"down-to-dotted-line\": 58376,\n  \"down-to-line\": 62282,\n  \"down-up\": 59073,\n  \"down\": 62292,\n  \"download\": 61465,\n  \"drafting-compass\": 62824,\n  \"dragon\": 63189,\n  \"draw-circle\": 62957,\n  \"draw-polygon\": 62958,\n  \"draw-square\": 62959,\n  \"dreidel\": 63378,\n  \"dress\": 59089,\n  \"dresser\": 59519,\n  \"drivers-license\": 62146,\n  \"drone-alt\": 63584,\n  \"drone-front\": 63584,\n  \"drone\": 63583,\n  \"droplet-degree\": 63304,\n  \"droplet-percent\": 63312,\n  \"droplet-plus\": 59392,\n  \"droplet-slash\": 62919,\n  \"droplet\": 61507,\n  \"drum-steelpan\": 62826,\n  \"drum\": 62825,\n  \"drumstick-bite\": 63191,\n  \"drumstick\": 63190,\n  \"dryer-alt\": 63586,\n  \"dryer-heat\": 63586,\n  \"dryer\": 63585,\n  \"duck\": 63192,\n  \"dumbbell\": 62539,\n  \"dumpster-fire\": 63380,\n  \"dumpster\": 63379,\n  \"dungeon\": 63193,\n  \"e\": 69,\n  \"ear-circle-checkmark\": 59227,\n  \"ear-deaf\": 62116,\n  \"ear-listen\": 62114,\n  \"ear-muffs\": 63381,\n  \"ear-triangle-exclamation\": 59228,\n  \"ear-waveform\": 59229,\n  \"ear\": 62960,\n  \"earth-africa\": 62844,\n  \"earth-america\": 62845,\n  \"earth-americas\": 62845,\n  \"earth-asia\": 62846,\n  \"earth-europe\": 63394,\n  \"earth-oceania\": 58491,\n  \"earth\": 62845,\n  \"eclipse-alt\": 63306,\n  \"eclipse\": 63305,\n  \"edit\": 61508,\n  \"egg-fried\": 63484,\n  \"egg\": 63483,\n  \"eggplant\": 57708,\n  \"eject\": 61522,\n  \"elephant\": 63194,\n  \"elevator\": 57709,\n  \"ellipsis-h-alt\": 62363,\n  \"ellipsis-h\": 61761,\n  \"ellipsis-stroke-vertical\": 62364,\n  \"ellipsis-stroke\": 62363,\n  \"ellipsis-v-alt\": 62364,\n  \"ellipsis-v\": 61762,\n  \"ellipsis-vertical\": 61762,\n  \"ellipsis\": 61761,\n  \"empty-set\": 63062,\n  \"engine-exclamation\": 62962,\n  \"engine-warning\": 62962,\n  \"engine\": 57710,\n  \"envelope-badge\": 57711,\n  \"envelope-certificate\": 59433,\n  \"envelope-circle-check\": 58600,\n  \"envelope-circle-user\": 59102,\n  \"envelope-circle\": 57612,\n  \"envelope-dot\": 57711,\n  \"envelope-open-dollar\": 63063,\n  \"envelope-open-text\": 63064,\n  \"envelope-open\": 62134,\n  \"envelope-ribbon\": 59433,\n  \"envelope-square\": 61849,\n  \"envelope\": 61664,\n  \"envelopes-bulk\": 63092,\n  \"envelopes\": 57712,\n  \"equals\": 61,\n  \"eraser\": 61741,\n  \"escalator\": 57713,\n  \"ethernet\": 63382,\n  \"eur\": 61779,\n  \"euro-sign\": 61779,\n  \"euro\": 61779,\n  \"eurozone-sign\": 59200,\n  \"excavator\": 58966,\n  \"exchange-alt\": 62306,\n  \"exchange\": 61676,\n  \"exclamation-circle\": 61546,\n  \"exclamation-square\": 62241,\n  \"exclamation-triangle\": 61553,\n  \"exclamation\": 33,\n  \"expand-alt\": 62500,\n  \"expand-arrows-alt\": 62238,\n  \"expand-arrows\": 62237,\n  \"expand-wide\": 62240,\n  \"expand\": 61541,\n  \"exploding-head\": 58110,\n  \"explosion\": 58601,\n  \"external-link-alt\": 62301,\n  \"external-link-square-alt\": 62304,\n  \"external-link-square\": 61772,\n  \"external-link\": 61582,\n  \"eye-closed\": 59451,\n  \"eye-dropper-empty\": 61947,\n  \"eye-dropper-full\": 57714,\n  \"eye-dropper-half\": 57715,\n  \"eye-dropper\": 61947,\n  \"eye-evil\": 63195,\n  \"eye-low-vision\": 62120,\n  \"eye-slash\": 61552,\n  \"eye\": 61550,\n  \"eyedropper\": 61947,\n  \"eyes\": 58215,\n  \"f\": 70,\n  \"face-angry-horns\": 58216,\n  \"face-angry\": 62806,\n  \"face-anguished\": 58217,\n  \"face-anxious-sweat\": 58218,\n  \"face-astonished\": 58219,\n  \"face-awesome\": 58377,\n  \"face-beam-hand-over-mouth\": 58492,\n  \"face-clouds\": 58493,\n  \"face-confounded\": 58220,\n  \"face-confused\": 58221,\n  \"face-cowboy-hat\": 58222,\n  \"face-diagonal-mouth\": 58494,\n  \"face-disappointed\": 58223,\n  \"face-disguise\": 58224,\n  \"face-dizzy\": 62823,\n  \"face-dotted\": 58495,\n  \"face-downcast-sweat\": 58225,\n  \"face-drooling\": 58226,\n  \"face-exhaling\": 58496,\n  \"face-explode\": 58110,\n  \"face-expressionless\": 58227,\n  \"face-eyes-xmarks\": 58228,\n  \"face-fearful\": 58229,\n  \"face-flushed\": 62841,\n  \"face-frown-open\": 62842,\n  \"face-frown-slight\": 58230,\n  \"face-frown\": 61721,\n  \"face-glasses\": 58231,\n  \"face-grimace\": 62847,\n  \"face-grin-beam-sweat\": 62851,\n  \"face-grin-beam\": 62850,\n  \"face-grin-hearts\": 62852,\n  \"face-grin-squint-tears\": 62854,\n  \"face-grin-squint\": 62853,\n  \"face-grin-stars\": 62855,\n  \"face-grin-tears\": 62856,\n  \"face-grin-tongue-squint\": 62858,\n  \"face-grin-tongue-wink\": 62859,\n  \"face-grin-tongue\": 62857,\n  \"face-grin-wide\": 62849,\n  \"face-grin-wink\": 62860,\n  \"face-grin\": 62848,\n  \"face-hand-over-mouth\": 58232,\n  \"face-hand-peeking\": 58497,\n  \"face-hand-yawn\": 58233,\n  \"face-head-bandage\": 58234,\n  \"face-holding-back-tears\": 58498,\n  \"face-hushed\": 58235,\n  \"face-icicles\": 58236,\n  \"face-kiss-beam\": 62871,\n  \"face-kiss-closed-eyes\": 58237,\n  \"face-kiss-wink-heart\": 62872,\n  \"face-kiss\": 62870,\n  \"face-laugh-beam\": 62874,\n  \"face-laugh-squint\": 62875,\n  \"face-laugh-wink\": 62876,\n  \"face-laugh\": 62873,\n  \"face-lying\": 58238,\n  \"face-mask\": 58239,\n  \"face-meh-blank\": 62884,\n  \"face-meh\": 61722,\n  \"face-melting\": 58499,\n  \"face-monocle\": 58240,\n  \"face-nauseated\": 58241,\n  \"face-nose-steam\": 58242,\n  \"face-party\": 58243,\n  \"face-pensive\": 58244,\n  \"face-persevering\": 58245,\n  \"face-pleading\": 58246,\n  \"face-pouting\": 58247,\n  \"face-raised-eyebrow\": 58248,\n  \"face-relieved\": 58249,\n  \"face-rolling-eyes\": 62885,\n  \"face-sad-cry\": 62899,\n  \"face-sad-sweat\": 58250,\n  \"face-sad-tear\": 62900,\n  \"face-saluting\": 58500,\n  \"face-scream\": 58251,\n  \"face-shaking-horizontal\": 59293,\n  \"face-shaking-vertical\": 59294,\n  \"face-shaking\": 59292,\n  \"face-shush\": 58252,\n  \"face-sleeping\": 58253,\n  \"face-sleepy\": 58254,\n  \"face-smile-beam\": 62904,\n  \"face-smile-halo\": 58255,\n  \"face-smile-hearts\": 58256,\n  \"face-smile-horns\": 58257,\n  \"face-smile-plus\": 62905,\n  \"face-smile-relaxed\": 58258,\n  \"face-smile-tear\": 58259,\n  \"face-smile-tongue\": 58260,\n  \"face-smile-upside-down\": 58261,\n  \"face-smile-wink\": 62682,\n  \"face-smile\": 61720,\n  \"face-smiling-hands\": 58262,\n  \"face-smirking\": 58263,\n  \"face-spiral-eyes\": 58501,\n  \"face-sunglasses\": 58264,\n  \"face-surprise\": 62914,\n  \"face-swear\": 58265,\n  \"face-thermometer\": 58266,\n  \"face-thinking\": 58267,\n  \"face-tired\": 62920,\n  \"face-tissue\": 58268,\n  \"face-tongue-money\": 58269,\n  \"face-tongue-sweat\": 58270,\n  \"face-unamused\": 58271,\n  \"face-viewfinder\": 58111,\n  \"face-vomit\": 58272,\n  \"face-weary\": 58273,\n  \"face-woozy\": 58274,\n  \"face-worried\": 58275,\n  \"face-zany\": 58276,\n  \"face-zipper\": 58277,\n  \"falafel\": 58378,\n  \"family-dress\": 58113,\n  \"family-pants\": 58114,\n  \"family\": 58112,\n  \"fan-table\": 57348,\n  \"fan\": 63587,\n  \"farm\": 63588,\n  \"fast-backward\": 61513,\n  \"fast-forward\": 61520,\n  \"faucet-drip\": 57350,\n  \"faucet\": 57349,\n  \"fax\": 61868,\n  \"feather-alt\": 62827,\n  \"feather-pointed\": 62827,\n  \"feather\": 62765,\n  \"feed\": 61598,\n  \"female\": 61826,\n  \"fence\": 58115,\n  \"ferris-wheel\": 57716,\n  \"ferry\": 58602,\n  \"field-hockey-stick-ball\": 62540,\n  \"field-hockey\": 62540,\n  \"fighter-jet\": 61691,\n  \"file-aiff\": 59387,\n  \"file-alt\": 61788,\n  \"file-archive\": 61894,\n  \"file-arrow-down\": 62829,\n  \"file-arrow-up\": 62836,\n  \"file-audio\": 61895,\n  \"file-award\": 62963,\n  \"file-ban\": 59224,\n  \"file-binary\": 57717,\n  \"file-brackets-curly\": 59396,\n  \"file-cad\": 58994,\n  \"file-caret-down\": 58409,\n  \"file-caret-up\": 58410,\n  \"file-certificate\": 62963,\n  \"file-chart-column\": 63065,\n  \"file-chart-line\": 63065,\n  \"file-chart-pie\": 63066,\n  \"file-check\": 62230,\n  \"file-circle-check\": 58784,\n  \"file-circle-exclamation\": 58603,\n  \"file-circle-info\": 58515,\n  \"file-circle-minus\": 58605,\n  \"file-circle-plus\": 58516,\n  \"file-circle-question\": 58607,\n  \"file-circle-xmark\": 58785,\n  \"file-clipboard\": 61674,\n  \"file-code\": 61897,\n  \"file-contract\": 62828,\n  \"file-css\": 59452,\n  \"file-csv\": 63197,\n  \"file-dashed-line\": 63607,\n  \"file-doc\": 58861,\n  \"file-download\": 62829,\n  \"file-edit\": 62236,\n  \"file-eps\": 58948,\n  \"file-excel\": 61891,\n  \"file-exclamation\": 62234,\n  \"file-export\": 62830,\n  \"file-fragment\": 59031,\n  \"file-gif\": 58949,\n  \"file-half-dashed\": 59032,\n  \"file-heart\": 57718,\n  \"file-html\": 59453,\n  \"file-icns\": 59457,\n  \"file-image\": 61893,\n  \"file-import\": 62831,\n  \"file-invoice-dollar\": 62833,\n  \"file-invoice\": 62832,\n  \"file-jpg\": 58950,\n  \"file-js\": 59454,\n  \"file-lines\": 61788,\n  \"file-lock\": 58278,\n  \"file-magnifying-glass\": 63589,\n  \"file-medical-alt\": 62584,\n  \"file-medical\": 62583,\n  \"file-midi\": 59397,\n  \"file-minus\": 62232,\n  \"file-mov\": 58951,\n  \"file-mp3\": 58952,\n  \"file-mp4\": 58953,\n  \"file-music\": 63670,\n  \"file-odf\": 59388,\n  \"file-pdf\": 61889,\n  \"file-pen\": 62236,\n  \"file-plus-minus\": 57719,\n  \"file-plus\": 62233,\n  \"file-png\": 58982,\n  \"file-powerpoint\": 61892,\n  \"file-ppt\": 58954,\n  \"file-prescription\": 62834,\n  \"file-search\": 63589,\n  \"file-shield\": 58608,\n  \"file-signature\": 62835,\n  \"file-slash\": 58279,\n  \"file-spreadsheet\": 63067,\n  \"file-svg\": 58955,\n  \"file-tex\": 59389,\n  \"file-text\": 61788,\n  \"file-times\": 62231,\n  \"file-upload\": 62836,\n  \"file-user\": 63068,\n  \"file-vector\": 58956,\n  \"file-video\": 61896,\n  \"file-wav\": 59390,\n  \"file-waveform\": 62584,\n  \"file-word\": 61890,\n  \"file-xls\": 58957,\n  \"file-xmark\": 62231,\n  \"file-xml\": 58964,\n  \"file-zip\": 58862,\n  \"file-zipper\": 61894,\n  \"file\": 61787,\n  \"files-medical\": 63485,\n  \"files\": 57720,\n  \"fill-drip\": 62838,\n  \"fill\": 62837,\n  \"film-alt\": 61448,\n  \"film-canister\": 63671,\n  \"film-cannister\": 63671,\n  \"film-music\": 59241,\n  \"film-simple\": 61448,\n  \"film-slash\": 57721,\n  \"film-stack\": 59243,\n  \"film\": 61448,\n  \"films\": 57722,\n  \"filter-circle-dollar\": 63074,\n  \"filter-circle-xmark\": 57723,\n  \"filter-list\": 57724,\n  \"filter-slash\": 57725,\n  \"filter\": 61616,\n  \"filters\": 57726,\n  \"fingerprint\": 62839,\n  \"fire-alt\": 63460,\n  \"fire-burner\": 58609,\n  \"fire-extinguisher\": 61748,\n  \"fire-flame-curved\": 63460,\n  \"fire-flame-simple\": 62570,\n  \"fire-flame\": 63199,\n  \"fire-hydrant\": 57727,\n  \"fire-smoke\": 63307,\n  \"fire\": 61549,\n  \"fireplace\": 63386,\n  \"firewall\": 58332,\n  \"first-aid\": 62585,\n  \"fish-bones\": 58116,\n  \"fish-cooked\": 63486,\n  \"fish-fins\": 58610,\n  \"fish\": 62840,\n  \"fishing-rod\": 58280,\n  \"fist-raised\": 63198,\n  \"flag-alt\": 63308,\n  \"flag-checkered\": 61726,\n  \"flag-pennant\": 62550,\n  \"flag-swallowtail\": 63308,\n  \"flag-usa\": 63309,\n  \"flag\": 61476,\n  \"flame\": 63199,\n  \"flashlight\": 63672,\n  \"flask-gear\": 58865,\n  \"flask-poison\": 63200,\n  \"flask-potion\": 63201,\n  \"flask-round-poison\": 63200,\n  \"flask-round-potion\": 63201,\n  \"flask-vial\": 58611,\n  \"flask\": 61635,\n  \"flatbread-stuffed\": 58380,\n  \"flatbread\": 58379,\n  \"floppy-disk-circle-arrow-right\": 57728,\n  \"floppy-disk-circle-xmark\": 57729,\n  \"floppy-disk-pen\": 57730,\n  \"floppy-disk-times\": 57729,\n  \"floppy-disk\": 61639,\n  \"floppy-disks\": 57731,\n  \"florin-sign\": 57732,\n  \"flower-daffodil\": 63488,\n  \"flower-tulip\": 63489,\n  \"flower\": 63487,\n  \"flushed\": 62841,\n  \"flute\": 63673,\n  \"flux-capacitor\": 63674,\n  \"flying-disc\": 58281,\n  \"fog\": 63310,\n  \"folder-arrow-down\": 57427,\n  \"folder-arrow-left\": 59346,\n  \"folder-arrow-right\": 59347,\n  \"folder-arrow-up\": 57428,\n  \"folder-blank\": 61563,\n  \"folder-bookmark\": 57734,\n  \"folder-check\": 58958,\n  \"folder-closed\": 57733,\n  \"folder-cog\": 57735,\n  \"folder-download\": 57427,\n  \"folder-gear\": 57735,\n  \"folder-grid\": 57736,\n  \"folder-heart\": 57737,\n  \"folder-image\": 57738,\n  \"folder-magnifying-glass\": 57739,\n  \"folder-medical\": 57740,\n  \"folder-minus\": 63069,\n  \"folder-music\": 57741,\n  \"folder-open\": 61564,\n  \"folder-plus\": 63070,\n  \"folder-search\": 57739,\n  \"folder-times\": 63071,\n  \"folder-tree\": 63490,\n  \"folder-upload\": 57428,\n  \"folder-user\": 57742,\n  \"folder-xmark\": 63071,\n  \"folder\": 61563,\n  \"folders\": 63072,\n  \"fondue-pot\": 58381,\n  \"font-awesome-flag\": 62132,\n  \"font-awesome-logo-full\": 62132,\n  \"font-awesome\": 62132,\n  \"font-case\": 63590,\n  \"font\": 61489,\n  \"foot-wing\": 59444,\n  \"football-ball\": 62542,\n  \"football-helmet\": 62543,\n  \"football\": 62542,\n  \"fork-knife\": 62182,\n  \"fork\": 62179,\n  \"forklift\": 62586,\n  \"fort\": 58502,\n  \"forward-fast\": 61520,\n  \"forward-step\": 61521,\n  \"forward\": 61518,\n  \"fragile\": 62651,\n  \"frame\": 58517,\n  \"franc-sign\": 57743,\n  \"french-fries\": 63491,\n  \"frog\": 62766,\n  \"frosty-head\": 63387,\n  \"frown-open\": 62842,\n  \"frown\": 61721,\n  \"function\": 63073,\n  \"funnel-dollar\": 63074,\n  \"futbol-ball\": 61923,\n  \"futbol\": 61923,\n  \"g\": 71,\n  \"galaxy\": 57352,\n  \"gallery-thumbnails\": 58282,\n  \"game-board-alt\": 63592,\n  \"game-board-simple\": 63592,\n  \"game-board\": 63591,\n  \"game-console-handheld-crank\": 58809,\n  \"game-console-handheld\": 63675,\n  \"gamepad-alt\": 58786,\n  \"gamepad-modern\": 58786,\n  \"gamepad\": 61723,\n  \"garage-car\": 57354,\n  \"garage-empty\": 59081,\n  \"garage-open\": 57355,\n  \"garage\": 57353,\n  \"garlic\": 58382,\n  \"gas-pump-left\": 59256,\n  \"gas-pump-right\": 59257,\n  \"gas-pump-slash\": 62964,\n  \"gas-pump\": 62767,\n  \"gauge-circle-bolt\": 58518,\n  \"gauge-circle-minus\": 58519,\n  \"gauge-circle-plus\": 58520,\n  \"gauge-high\": 63013,\n  \"gauge-low\": 63015,\n  \"gauge-max\": 63014,\n  \"gauge-med\": 63012,\n  \"gauge-min\": 63016,\n  \"gauge-simple-high\": 63018,\n  \"gauge-simple-low\": 63020,\n  \"gauge-simple-max\": 63019,\n  \"gauge-simple-med\": 63017,\n  \"gauge-simple-min\": 63021,\n  \"gauge-simple\": 63017,\n  \"gauge\": 63012,\n  \"gave-dandy\": 58377,\n  \"gavel\": 61667,\n  \"gbp\": 61780,\n  \"gear-api\": 59556,\n  \"gear-code\": 58856,\n  \"gear-complex-api\": 59557,\n  \"gear-complex-code\": 58859,\n  \"gear-complex\": 58857,\n  \"gear\": 61459,\n  \"gears\": 61573,\n  \"gem\": 62373,\n  \"gemini\": 59465,\n  \"genderless\": 61997,\n  \"ghost\": 63202,\n  \"gif\": 57744,\n  \"gift-card\": 63075,\n  \"gift\": 61547,\n  \"gifts\": 63388,\n  \"gingerbread-man\": 63389,\n  \"glass-champagne\": 63390,\n  \"glass-cheers\": 63391,\n  \"glass-citrus\": 63593,\n  \"glass-empty\": 57745,\n  \"glass-half-empty\": 57746,\n  \"glass-half-full\": 57746,\n  \"glass-half\": 57746,\n  \"glass-martini-alt\": 62843,\n  \"glass-martini\": 61440,\n  \"glass-water-droplet\": 58613,\n  \"glass-water\": 58612,\n  \"glass-whiskey-rocks\": 63393,\n  \"glass-whiskey\": 63392,\n  \"glass\": 63492,\n  \"glasses-alt\": 62965,\n  \"glasses-round\": 62965,\n  \"glasses\": 62768,\n  \"globe-africa\": 62844,\n  \"globe-americas\": 62845,\n  \"globe-asia\": 62846,\n  \"globe-europe\": 63394,\n  \"globe-oceania\": 58491,\n  \"globe-pointer\": 58894,\n  \"globe-snow\": 63395,\n  \"globe-stand\": 62966,\n  \"globe-wifi\": 59013,\n  \"globe-www\": 59558,\n  \"globe\": 61612,\n  \"glove-boxing\": 62520,\n  \"goal-net\": 58283,\n  \"golf-ball-tee\": 62544,\n  \"golf-ball\": 62544,\n  \"golf-club\": 62545,\n  \"golf-flag-hole\": 58284,\n  \"gopuram\": 63076,\n  \"gpu\": 59459,\n  \"graduation-cap\": 61853,\n  \"gramophone\": 63677,\n  \"grapes\": 58118,\n  \"grate-droplet\": 57748,\n  \"grate\": 57747,\n  \"greater-than-equal\": 62770,\n  \"greater-than\": 62,\n  \"grid-2-minus\": 59050,\n  \"grid-2-plus\": 57751,\n  \"grid-2\": 57750,\n  \"grid-3\": 57749,\n  \"grid-4\": 57752,\n  \"grid-5\": 57753,\n  \"grid-dividers\": 58285,\n  \"grid-horizontal\": 62861,\n  \"grid-round-2-minus\": 59051,\n  \"grid-round-2-plus\": 58844,\n  \"grid-round-2\": 58843,\n  \"grid-round-4\": 58845,\n  \"grid-round-5\": 58846,\n  \"grid-round\": 58842,\n  \"grid-vertical\": 62862,\n  \"grid\": 57749,\n  \"grill-fire\": 58788,\n  \"grill-hot\": 58789,\n  \"grill\": 58787,\n  \"grimace\": 62847,\n  \"grin-alt\": 62849,\n  \"grin-beam-sweat\": 62851,\n  \"grin-beam\": 62850,\n  \"grin-hearts\": 62852,\n  \"grin-squint-tears\": 62854,\n  \"grin-squint\": 62853,\n  \"grin-stars\": 62855,\n  \"grin-tears\": 62856,\n  \"grin-tongue-squint\": 62858,\n  \"grin-tongue-wink\": 62859,\n  \"grin-tongue\": 62857,\n  \"grin-wink\": 62860,\n  \"grin\": 62848,\n  \"grip-dots-vertical\": 58385,\n  \"grip-dots\": 58384,\n  \"grip-horizontal\": 62861,\n  \"grip-lines-vertical\": 63397,\n  \"grip-lines\": 63396,\n  \"grip-vertical\": 62862,\n  \"grip\": 62861,\n  \"group-arrows-rotate\": 58614,\n  \"guarani-sign\": 57754,\n  \"guitar-electric\": 63678,\n  \"guitar\": 63398,\n  \"guitars\": 63679,\n  \"gun-slash\": 57756,\n  \"gun-squirt\": 57757,\n  \"gun\": 57755,\n  \"h-square\": 61693,\n  \"h\": 72,\n  \"h1\": 62227,\n  \"h2\": 62228,\n  \"h3\": 62229,\n  \"h4\": 63594,\n  \"h5\": 58386,\n  \"h6\": 58387,\n  \"hamburger\": 63493,\n  \"hammer-brush\": 58912,\n  \"hammer-crash\": 58388,\n  \"hammer-war\": 63204,\n  \"hammer\": 63203,\n  \"hamsa\": 63077,\n  \"hand-back-fist\": 62037,\n  \"hand-back-point-down\": 57758,\n  \"hand-back-point-left\": 57759,\n  \"hand-back-point-ribbon\": 57760,\n  \"hand-back-point-right\": 57761,\n  \"hand-back-point-up\": 57762,\n  \"hand-dots\": 62561,\n  \"hand-fingers-crossed\": 57763,\n  \"hand-fist\": 63198,\n  \"hand-heart\": 62652,\n  \"hand-holding-box\": 62587,\n  \"hand-holding-circle-dollar\": 58913,\n  \"hand-holding-dollar\": 62656,\n  \"hand-holding-droplet\": 62657,\n  \"hand-holding-hand\": 58615,\n  \"hand-holding-heart\": 62654,\n  \"hand-holding-magic\": 63205,\n  \"hand-holding-medical\": 57436,\n  \"hand-holding-seedling\": 62655,\n  \"hand-holding-skull\": 57764,\n  \"hand-holding-star\": 59393,\n  \"hand-holding-usd\": 62656,\n  \"hand-holding-water\": 62657,\n  \"hand-holding\": 62653,\n  \"hand-horns\": 57769,\n  \"hand-lizard\": 62040,\n  \"hand-love\": 57765,\n  \"hand-middle-finger\": 63494,\n  \"hand-paper\": 62038,\n  \"hand-peace\": 62043,\n  \"hand-point-down\": 61607,\n  \"hand-point-left\": 61605,\n  \"hand-point-ribbon\": 57766,\n  \"hand-point-right\": 61604,\n  \"hand-point-up\": 61606,\n  \"hand-pointer\": 62042,\n  \"hand-receiving\": 62588,\n  \"hand-rock\": 62037,\n  \"hand-scissors\": 62039,\n  \"hand-shaka\": 59441,\n  \"hand-sparkles\": 57437,\n  \"hand-spock\": 62041,\n  \"hand-wave\": 57767,\n  \"hand\": 62038,\n  \"handcuffs\": 58616,\n  \"hands-american-sign-language-interpreting\": 62115,\n  \"hands-asl-interpreting\": 62115,\n  \"hands-bound\": 58617,\n  \"hands-bubbles\": 57438,\n  \"hands-clapping\": 57768,\n  \"hands-heart\": 62659,\n  \"hands-helping\": 62660,\n  \"hands-holding-child\": 58618,\n  \"hands-holding-circle\": 58619,\n  \"hands-holding-diamond\": 62588,\n  \"hands-holding-dollar\": 62661,\n  \"hands-holding-heart\": 62659,\n  \"hands-holding\": 62658,\n  \"hands-praying\": 63108,\n  \"hands-usd\": 62661,\n  \"hands-wash\": 57438,\n  \"hands\": 62119,\n  \"handshake-alt-slash\": 57440,\n  \"handshake-alt\": 62133,\n  \"handshake-angle\": 62660,\n  \"handshake-simple-slash\": 57440,\n  \"handshake-simple\": 62133,\n  \"handshake-slash\": 57440,\n  \"handshake\": 62133,\n  \"hanukiah\": 63206,\n  \"hard-drive\": 61600,\n  \"hard-hat\": 63495,\n  \"hard-of-hearing\": 62116,\n  \"hashtag-lock\": 58389,\n  \"hashtag\": 35,\n  \"hat-beach\": 58886,\n  \"hat-chef\": 63595,\n  \"hat-cowboy-side\": 63681,\n  \"hat-cowboy\": 63680,\n  \"hat-hard\": 63495,\n  \"hat-santa\": 63399,\n  \"hat-winter\": 63400,\n  \"hat-witch\": 63207,\n  \"hat-wizard\": 63208,\n  \"haykal\": 63078,\n  \"hdd\": 61600,\n  \"head-side-brain\": 63496,\n  \"head-side-circuit\": 59230,\n  \"head-side-cough-slash\": 57442,\n  \"head-side-cough\": 57441,\n  \"head-side-gear\": 58897,\n  \"head-side-goggles\": 63210,\n  \"head-side-headphones\": 63682,\n  \"head-side-heart\": 57770,\n  \"head-side-mask\": 57443,\n  \"head-side-medical\": 63497,\n  \"head-side-speak\": 59231,\n  \"head-side-virus\": 57444,\n  \"head-side\": 63209,\n  \"head-vr\": 63210,\n  \"header\": 61916,\n  \"heading\": 61916,\n  \"headphones-alt\": 61477,\n  \"headphones-simple\": 61477,\n  \"headphones-slash\": 59260,\n  \"headphones\": 61477,\n  \"headset\": 62864,\n  \"heart-broken\": 63401,\n  \"heart-circle-bolt\": 58620,\n  \"heart-circle-check\": 58621,\n  \"heart-circle-exclamation\": 58622,\n  \"heart-circle-minus\": 58623,\n  \"heart-circle-plus\": 58624,\n  \"heart-circle-xmark\": 58625,\n  \"heart-circle\": 62663,\n  \"heart-crack\": 63401,\n  \"heart-half-alt\": 57772,\n  \"heart-half-stroke\": 57772,\n  \"heart-half\": 57771,\n  \"heart-music-camera-bolt\": 63597,\n  \"heart-pulse\": 61982,\n  \"heart-rate\": 62968,\n  \"heart-slash\": 59278,\n  \"heart-square\": 62664,\n  \"heart\": 61444,\n  \"heartbeat\": 61982,\n  \"hearts\": 59279,\n  \"heat\": 57356,\n  \"helicopter-symbol\": 58626,\n  \"helicopter\": 62771,\n  \"helmet-battle\": 63211,\n  \"helmet-safety\": 63495,\n  \"helmet-un\": 58627,\n  \"heptagon\": 59424,\n  \"hexagon-check\": 58390,\n  \"hexagon-divide\": 57773,\n  \"hexagon-equals\": 59058,\n  \"hexagon-exclamation\": 58391,\n  \"hexagon-image\": 58628,\n  \"hexagon-minus\": 62215,\n  \"hexagon-nodes-bolt\": 59034,\n  \"hexagon-nodes\": 59033,\n  \"hexagon-plus\": 62208,\n  \"hexagon-vertical-nft-slanted\": 58629,\n  \"hexagon-vertical-nft\": 58629,\n  \"hexagon-xmark\": 62190,\n  \"hexagon\": 62226,\n  \"high-definition\": 57774,\n  \"highlighter-line\": 57775,\n  \"highlighter\": 62865,\n  \"hiking\": 63212,\n  \"hill-avalanche\": 58631,\n  \"hill-rockslide\": 58632,\n  \"hippo\": 63213,\n  \"history\": 61914,\n  \"hockey-mask\": 63214,\n  \"hockey-puck\": 62547,\n  \"hockey-stick-puck\": 58286,\n  \"hockey-stick\": 59366,\n  \"hockey-sticks\": 62548,\n  \"holly-berry\": 63402,\n  \"home-alt\": 61461,\n  \"home-blank\": 58503,\n  \"home-heart\": 62665,\n  \"home-lg-alt\": 61461,\n  \"home-lg\": 58287,\n  \"home-user\": 57776,\n  \"home\": 61461,\n  \"honey-pot\": 58392,\n  \"hood-cloak\": 63215,\n  \"horizontal-rule\": 63596,\n  \"horse-head\": 63403,\n  \"horse-saddle\": 63683,\n  \"horse\": 63216,\n  \"horseshoe\": 59418,\n  \"hose-reel\": 58394,\n  \"hose\": 58393,\n  \"hospital-alt\": 61688,\n  \"hospital-symbol\": 62590,\n  \"hospital-user\": 63501,\n  \"hospital-wide\": 61688,\n  \"hospital\": 61688,\n  \"hospitals\": 63502,\n  \"hot-tub-person\": 62867,\n  \"hot-tub\": 62867,\n  \"hotdog\": 63503,\n  \"hotel\": 62868,\n  \"hourglass-1\": 62033,\n  \"hourglass-2\": 62034,\n  \"hourglass-3\": 62035,\n  \"hourglass-clock\": 58395,\n  \"hourglass-empty\": 62036,\n  \"hourglass-end\": 62035,\n  \"hourglass-half\": 62034,\n  \"hourglass-start\": 62033,\n  \"hourglass\": 62036,\n  \"house-blank\": 58503,\n  \"house-building\": 57777,\n  \"house-chimney-blank\": 58288,\n  \"house-chimney-crack\": 63217,\n  \"house-chimney-heart\": 57778,\n  \"house-chimney-medical\": 63474,\n  \"house-chimney-user\": 57445,\n  \"house-chimney-window\": 57357,\n  \"house-chimney\": 58287,\n  \"house-circle-check\": 58633,\n  \"house-circle-exclamation\": 58634,\n  \"house-circle-xmark\": 58635,\n  \"house-crack\": 58289,\n  \"house-damage\": 63217,\n  \"house-day\": 57358,\n  \"house-fire\": 58636,\n  \"house-flag\": 58637,\n  \"house-flood-water-circle-arrow-right\": 58639,\n  \"house-flood-water\": 58638,\n  \"house-flood\": 63311,\n  \"house-heart\": 62665,\n  \"house-laptop\": 57446,\n  \"house-leave\": 57359,\n  \"house-lock\": 58640,\n  \"house-medical-circle-check\": 58641,\n  \"house-medical-circle-exclamation\": 58642,\n  \"house-medical-circle-xmark\": 58643,\n  \"house-medical-flag\": 58644,\n  \"house-medical\": 58290,\n  \"house-night\": 57360,\n  \"house-person-arrive\": 57361,\n  \"house-person-depart\": 57359,\n  \"house-person-leave\": 57359,\n  \"house-person-return\": 57361,\n  \"house-return\": 57361,\n  \"house-signal\": 57362,\n  \"house-tree\": 57779,\n  \"house-tsunami\": 58645,\n  \"house-turret\": 57780,\n  \"house-unlock\": 59082,\n  \"house-user\": 57776,\n  \"house-water\": 63311,\n  \"house-window\": 58291,\n  \"house\": 61461,\n  \"hryvnia-sign\": 63218,\n  \"hryvnia\": 63218,\n  \"humidity\": 63312,\n  \"hundred-points\": 58396,\n  \"hurricane\": 63313,\n  \"hydra\": 59014,\n  \"hyphen\": 45,\n  \"i-cursor\": 62022,\n  \"i\": 73,\n  \"ice-cream\": 63504,\n  \"ice-skate\": 63404,\n  \"icicles\": 63405,\n  \"icons-alt\": 63598,\n  \"icons\": 63597,\n  \"id-badge\": 62145,\n  \"id-card-alt\": 62591,\n  \"id-card-clip\": 62591,\n  \"id-card\": 62146,\n  \"igloo\": 63406,\n  \"ils\": 61963,\n  \"image-broken\": 59562,\n  \"image-circle-arrow-down\": 59244,\n  \"image-circle-check\": 59245,\n  \"image-circle-plus\": 59246,\n  \"image-circle-xmark\": 59247,\n  \"image-landscape\": 57781,\n  \"image-music\": 59248,\n  \"image-polaroid-user\": 57782,\n  \"image-polaroid\": 63684,\n  \"image-portrait\": 62432,\n  \"image-slash\": 57783,\n  \"image-stack\": 59249,\n  \"image-user\": 57784,\n  \"image\": 61502,\n  \"images-user\": 57785,\n  \"images\": 62210,\n  \"inbox-arrow-down\": 62224,\n  \"inbox-arrow-up\": 62225,\n  \"inbox-full\": 57786,\n  \"inbox-in\": 62224,\n  \"inbox-out\": 62225,\n  \"inbox\": 61468,\n  \"inboxes\": 57787,\n  \"indent\": 61500,\n  \"indian-rupee-sign\": 57788,\n  \"indian-rupee\": 57788,\n  \"industry-alt\": 62387,\n  \"industry-windows\": 62387,\n  \"industry\": 62069,\n  \"infinity\": 62772,\n  \"info-circle\": 61530,\n  \"info-square\": 62223,\n  \"info\": 61737,\n  \"inhaler\": 62969,\n  \"input-numeric\": 57789,\n  \"input-password\": 59517,\n  \"input-pipe\": 57790,\n  \"input-text\": 57791,\n  \"inr\": 57788,\n  \"institution\": 61852,\n  \"integral\": 63079,\n  \"interrobang\": 58810,\n  \"intersection\": 63080,\n  \"inventory\": 62592,\n  \"island-tree-palm\": 63505,\n  \"island-tropical\": 63505,\n  \"italic\": 61491,\n  \"j\": 74,\n  \"jack-o-lantern\": 62222,\n  \"jar-wheat\": 58647,\n  \"jar\": 58646,\n  \"jeans-straight\": 59091,\n  \"jeans\": 59090,\n  \"jedi\": 63081,\n  \"jet-fighter-up\": 58648,\n  \"jet-fighter\": 61691,\n  \"joint\": 62869,\n  \"journal-whills\": 63082,\n  \"joystick\": 63685,\n  \"jpy\": 61783,\n  \"jug-bottle\": 58875,\n  \"jug-detergent\": 58649,\n  \"jug\": 63686,\n  \"k\": 75,\n  \"kaaba\": 63083,\n  \"kayak\": 59547,\n  \"kazoo\": 63687,\n  \"kerning\": 63599,\n  \"kettlebell\": 59442,\n  \"key-skeleton-left-right\": 58292,\n  \"key-skeleton\": 63219,\n  \"key\": 61572,\n  \"keyboard-brightness-low\": 57793,\n  \"keyboard-brightness\": 57792,\n  \"keyboard-down\": 57794,\n  \"keyboard-left\": 57795,\n  \"keyboard\": 61724,\n  \"keynote\": 63084,\n  \"khanda\": 63085,\n  \"kidneys\": 62971,\n  \"kip-sign\": 57796,\n  \"kiss-beam\": 62871,\n  \"kiss-wink-heart\": 62872,\n  \"kiss\": 62870,\n  \"kit-medical\": 62585,\n  \"kitchen-set\": 58650,\n  \"kite\": 63220,\n  \"kiwi-bird\": 62773,\n  \"kiwi-fruit\": 58124,\n  \"knife-kitchen\": 63221,\n  \"knife\": 62180,\n  \"krw\": 61785,\n  \"l\": 76,\n  \"label\": 59559,\n  \"lacrosse-stick-ball\": 58294,\n  \"lacrosse-stick\": 58293,\n  \"ladder-water\": 62917,\n  \"lambda\": 63086,\n  \"lamp-desk\": 57364,\n  \"lamp-floor\": 57365,\n  \"lamp-street\": 57797,\n  \"lamp\": 62666,\n  \"land-mine-on\": 58651,\n  \"landmark-alt\": 63314,\n  \"landmark-dome\": 63314,\n  \"landmark-flag\": 58652,\n  \"landmark-magnifying-glass\": 58914,\n  \"landmark\": 63087,\n  \"landscape\": 57781,\n  \"language\": 61867,\n  \"laptop-arrow-down\": 57798,\n  \"laptop-binary\": 58855,\n  \"laptop-code\": 62972,\n  \"laptop-file\": 58653,\n  \"laptop-house\": 57446,\n  \"laptop-medical\": 63506,\n  \"laptop-mobile\": 63610,\n  \"laptop-slash\": 57799,\n  \"laptop\": 61705,\n  \"lari-sign\": 57800,\n  \"lasso-sparkles\": 57801,\n  \"lasso\": 63688,\n  \"laugh-beam\": 62874,\n  \"laugh-squint\": 62875,\n  \"laugh-wink\": 62876,\n  \"laugh\": 62873,\n  \"layer-group-minus\": 62974,\n  \"layer-group-plus\": 62975,\n  \"layer-group\": 62973,\n  \"layer-minus\": 62974,\n  \"layer-plus\": 62975,\n  \"layer\": 59455,\n  \"leaf-heart\": 62667,\n  \"leaf-maple\": 63222,\n  \"leaf-oak\": 63223,\n  \"leaf\": 61548,\n  \"leafy-green\": 58397,\n  \"left-from-bracket\": 58988,\n  \"left-from-dotted-line\": 59074,\n  \"left-from-line\": 62280,\n  \"left-long-to-line\": 58398,\n  \"left-long\": 62218,\n  \"left-right\": 62263,\n  \"left-to-bracket\": 58989,\n  \"left-to-dotted-line\": 59075,\n  \"left-to-line\": 62283,\n  \"left\": 62293,\n  \"legal\": 61667,\n  \"lemon\": 61588,\n  \"leo\": 59466,\n  \"less-than-equal\": 62775,\n  \"less-than\": 60,\n  \"level-down-alt\": 62398,\n  \"level-down\": 61769,\n  \"level-up-alt\": 62399,\n  \"level-up\": 61768,\n  \"libra\": 59467,\n  \"life-ring\": 61901,\n  \"light-ceiling\": 57366,\n  \"light-emergency-on\": 58400,\n  \"light-emergency\": 58399,\n  \"light-switch-off\": 57368,\n  \"light-switch-on\": 57369,\n  \"light-switch\": 57367,\n  \"lightbulb-cfl-on\": 58791,\n  \"lightbulb-cfl\": 58790,\n  \"lightbulb-dollar\": 63088,\n  \"lightbulb-exclamation-on\": 57802,\n  \"lightbulb-exclamation\": 63089,\n  \"lightbulb-gear\": 58877,\n  \"lightbulb-message\": 59015,\n  \"lightbulb-on\": 63090,\n  \"lightbulb-slash\": 63091,\n  \"lightbulb\": 61675,\n  \"lighthouse\": 58898,\n  \"lights-holiday\": 63410,\n  \"line-chart\": 61953,\n  \"line-columns\": 63600,\n  \"line-height\": 63601,\n  \"lines-leaning\": 58654,\n  \"link-broken\": 59458,\n  \"link-horizontal-slash\": 57804,\n  \"link-horizontal\": 57803,\n  \"link-simple-slash\": 57806,\n  \"link-simple\": 57805,\n  \"link-slash\": 61735,\n  \"link\": 61633,\n  \"lips\": 62976,\n  \"lira-sign\": 61845,\n  \"list-1-2\": 61643,\n  \"list-alt\": 61474,\n  \"list-check\": 61614,\n  \"list-dots\": 61642,\n  \"list-dropdown\": 57807,\n  \"list-music\": 63689,\n  \"list-numeric\": 61643,\n  \"list-ol\": 61643,\n  \"list-radio\": 57808,\n  \"list-squares\": 61498,\n  \"list-timeline\": 57809,\n  \"list-tree\": 57810,\n  \"list-ul\": 61642,\n  \"list\": 61498,\n  \"litecoin-sign\": 57811,\n  \"loader\": 57812,\n  \"lobster\": 58401,\n  \"location-arrow-slash\": 59258,\n  \"location-arrow-up\": 58938,\n  \"location-arrow\": 61732,\n  \"location-check\": 62982,\n  \"location-circle\": 62978,\n  \"location-crosshairs-slash\": 62979,\n  \"location-crosshairs\": 62977,\n  \"location-dot-slash\": 62981,\n  \"location-dot\": 62405,\n  \"location-exclamation\": 62984,\n  \"location-minus\": 62985,\n  \"location-pen\": 62983,\n  \"location-pin-lock\": 58655,\n  \"location-pin-slash\": 62988,\n  \"location-pin\": 61505,\n  \"location-plus\": 62986,\n  \"location-question\": 62987,\n  \"location-slash\": 62979,\n  \"location-smile\": 62989,\n  \"location-xmark\": 62990,\n  \"location\": 62977,\n  \"lock-a\": 58402,\n  \"lock-alt\": 62221,\n  \"lock-hashtag\": 58403,\n  \"lock-keyhole-open\": 62402,\n  \"lock-keyhole\": 62221,\n  \"lock-open-alt\": 62402,\n  \"lock-open\": 62401,\n  \"lock\": 61475,\n  \"locust\": 58656,\n  \"lollipop\": 58404,\n  \"lollypop\": 58404,\n  \"long-arrow-alt-down\": 62217,\n  \"long-arrow-alt-left\": 62218,\n  \"long-arrow-alt-right\": 62219,\n  \"long-arrow-alt-up\": 62220,\n  \"long-arrow-down\": 61813,\n  \"long-arrow-left\": 61815,\n  \"long-arrow-right\": 61816,\n  \"long-arrow-up\": 61814,\n  \"loveseat\": 62668,\n  \"low-vision\": 62120,\n  \"luchador-mask\": 62549,\n  \"luchador\": 62549,\n  \"luggage-cart\": 62877,\n  \"lungs-virus\": 57447,\n  \"lungs\": 62980,\n  \"lychee\": 59428,\n  \"m\": 77,\n  \"mace\": 63224,\n  \"magic-wand-sparkles\": 58058,\n  \"magic\": 61648,\n  \"magnet\": 61558,\n  \"magnifying-glass-arrow-right\": 58657,\n  \"magnifying-glass-arrows-rotate\": 58974,\n  \"magnifying-glass-chart\": 58658,\n  \"magnifying-glass-dollar\": 63112,\n  \"magnifying-glass-location\": 63113,\n  \"magnifying-glass-minus\": 61456,\n  \"magnifying-glass-music\": 58975,\n  \"magnifying-glass-play\": 58976,\n  \"magnifying-glass-plus\": 61454,\n  \"magnifying-glass-waveform\": 58977,\n  \"magnifying-glass\": 61442,\n  \"mail-bulk\": 63092,\n  \"mail-forward\": 61540,\n  \"mail-reply-all\": 61730,\n  \"mail-reply\": 62437,\n  \"mailbox-flag-up\": 58811,\n  \"mailbox-open-empty\": 59425,\n  \"mailbox-open-letter\": 59427,\n  \"mailbox\": 63507,\n  \"maki-roll\": 58507,\n  \"makizushi\": 58507,\n  \"malaysian-ringgit-sign\": 59130,\n  \"male\": 61827,\n  \"manat-sign\": 57813,\n  \"mandolin\": 63225,\n  \"mango\": 58127,\n  \"manhole\": 57814,\n  \"map-location-dot\": 62880,\n  \"map-location\": 62879,\n  \"map-marked-alt\": 62880,\n  \"map-marked\": 62879,\n  \"map-marker-alt-slash\": 62981,\n  \"map-marker-alt\": 62405,\n  \"map-marker-check\": 62982,\n  \"map-marker-edit\": 62983,\n  \"map-marker-exclamation\": 62984,\n  \"map-marker-minus\": 62985,\n  \"map-marker-plus\": 62986,\n  \"map-marker-question\": 62987,\n  \"map-marker-slash\": 62988,\n  \"map-marker-smile\": 62989,\n  \"map-marker-times\": 62990,\n  \"map-marker-xmark\": 62990,\n  \"map-marker\": 61505,\n  \"map-pin\": 62070,\n  \"map-signs\": 62071,\n  \"map\": 62073,\n  \"marker\": 62881,\n  \"mars-and-venus-burst\": 58659,\n  \"mars-and-venus\": 61988,\n  \"mars-double\": 61991,\n  \"mars-stroke-h\": 61995,\n  \"mars-stroke-right\": 61995,\n  \"mars-stroke-up\": 61994,\n  \"mars-stroke-v\": 61994,\n  \"mars-stroke\": 61993,\n  \"mars\": 61986,\n  \"martini-glass-citrus\": 62817,\n  \"martini-glass-empty\": 61440,\n  \"martini-glass\": 62843,\n  \"mask-face\": 57815,\n  \"mask-luchador\": 62549,\n  \"mask-snorkel\": 58295,\n  \"mask-ventilator\": 58660,\n  \"mask\": 63226,\n  \"masks-theater\": 63024,\n  \"mattress-pillow\": 58661,\n  \"maximize\": 62238,\n  \"meat\": 63508,\n  \"medal\": 62882,\n  \"medkit\": 61690,\n  \"megaphone\": 63093,\n  \"meh-blank\": 62884,\n  \"meh-rolling-eyes\": 62885,\n  \"meh\": 61722,\n  \"melon-slice\": 58129,\n  \"melon\": 58128,\n  \"memo-circle-check\": 57817,\n  \"memo-circle-info\": 58522,\n  \"memo-pad\": 57818,\n  \"memo\": 57816,\n  \"memory\": 62776,\n  \"menorah\": 63094,\n  \"mercury\": 61987,\n  \"merge\": 58662,\n  \"message-arrow-down\": 57819,\n  \"message-arrow-up-right\": 57821,\n  \"message-arrow-up\": 57820,\n  \"message-bot\": 58296,\n  \"message-captions\": 57822,\n  \"message-check\": 62626,\n  \"message-code\": 57823,\n  \"message-dollar\": 63056,\n  \"message-dot\": 59103,\n  \"message-dots\": 62627,\n  \"message-edit\": 62628,\n  \"message-exclamation\": 62629,\n  \"message-heart\": 58825,\n  \"message-image\": 57824,\n  \"message-lines\": 62630,\n  \"message-medical\": 63476,\n  \"message-middle-top\": 57826,\n  \"message-middle\": 57825,\n  \"message-minus\": 62631,\n  \"message-music\": 63663,\n  \"message-pen\": 62628,\n  \"message-plus\": 62632,\n  \"message-question\": 57827,\n  \"message-quote\": 57828,\n  \"message-slash\": 62633,\n  \"message-smile\": 62634,\n  \"message-sms\": 57829,\n  \"message-text\": 57830,\n  \"message-times\": 62635,\n  \"message-waveform\": 59104,\n  \"message-xmark\": 62635,\n  \"message\": 62074,\n  \"messages-dollar\": 63058,\n  \"messages-question\": 57831,\n  \"messages\": 62646,\n  \"messaging\": 62627,\n  \"meteor\": 63315,\n  \"meter-bolt\": 57833,\n  \"meter-droplet\": 57834,\n  \"meter-fire\": 57835,\n  \"meter\": 57832,\n  \"microchip-ai\": 57836,\n  \"microchip\": 62171,\n  \"microphone-alt-slash\": 62777,\n  \"microphone-alt\": 62409,\n  \"microphone-circle-alt\": 57623,\n  \"microphone-circle-plus\": 59261,\n  \"microphone-circle-xmark\": 59262,\n  \"microphone-circle\": 57622,\n  \"microphone-lines-slash\": 62777,\n  \"microphone-lines\": 62409,\n  \"microphone-signal-meter\": 59232,\n  \"microphone-slash\": 61745,\n  \"microphone-stand\": 63691,\n  \"microphone\": 61744,\n  \"microscope\": 62992,\n  \"microwave\": 57371,\n  \"midi\": 59398,\n  \"mill-sign\": 57837,\n  \"mind-share\": 63095,\n  \"minimize\": 63372,\n  \"minus-circle\": 61526,\n  \"minus-hexagon\": 62215,\n  \"minus-large\": 58372,\n  \"minus-octagon\": 62216,\n  \"minus-square\": 61766,\n  \"minus\": 61544,\n  \"mistletoe\": 63412,\n  \"mitten\": 63413,\n  \"mobile-alt\": 62413,\n  \"mobile-android-alt\": 62415,\n  \"mobile-android\": 62414,\n  \"mobile-arrow-down\": 59211,\n  \"mobile-button\": 61707,\n  \"mobile-iphone\": 57838,\n  \"mobile-notch\": 57838,\n  \"mobile-phone\": 62414,\n  \"mobile-retro\": 58663,\n  \"mobile-rotate-reverse\": 59412,\n  \"mobile-rotate\": 59411,\n  \"mobile-screen-button\": 62413,\n  \"mobile-screen\": 62415,\n  \"mobile-signal-out\": 57840,\n  \"mobile-signal\": 57839,\n  \"mobile-slash\": 59413,\n  \"mobile-vibrate-slash\": 59415,\n  \"mobile-vibrate\": 59414,\n  \"mobile\": 62414,\n  \"money-bill-1-wave\": 62779,\n  \"money-bill-1\": 62417,\n  \"money-bill-alt\": 62417,\n  \"money-bill-simple-wave\": 57842,\n  \"money-bill-simple\": 57841,\n  \"money-bill-transfer\": 58664,\n  \"money-bill-trend-up\": 58665,\n  \"money-bill-wave-alt\": 62779,\n  \"money-bill-wave\": 62778,\n  \"money-bill-wheat\": 58666,\n  \"money-bill\": 61654,\n  \"money-bills-alt\": 57844,\n  \"money-bills-simple\": 57844,\n  \"money-bills\": 57843,\n  \"money-check-alt\": 62781,\n  \"money-check-dollar-pen\": 63603,\n  \"money-check-dollar\": 62781,\n  \"money-check-edit-alt\": 63603,\n  \"money-check-edit\": 63602,\n  \"money-check-pen\": 63602,\n  \"money-check\": 62780,\n  \"money-from-bracket\": 58130,\n  \"money-simple-from-bracket\": 58131,\n  \"monitor-heart-rate\": 62993,\n  \"monitor-waveform\": 62993,\n  \"monkey\": 63227,\n  \"monument\": 62886,\n  \"moon-cloud\": 63316,\n  \"moon-first-quarter-inverse\": 59506,\n  \"moon-first-quarter\": 59504,\n  \"moon-full-inverse\": 59507,\n  \"moon-full\": 59505,\n  \"moon-last-quarter-inverse\": 59504,\n  \"moon-last-quarter\": 59506,\n  \"moon-new-inverse\": 59505,\n  \"moon-new\": 59507,\n  \"moon-over-sun\": 63306,\n  \"moon-star\": 59337,\n  \"moon-stars\": 63317,\n  \"moon-waning-crescent-inverse\": 59511,\n  \"moon-waning-crescent\": 59508,\n  \"moon-waning-gibbous-inverse\": 59510,\n  \"moon-waning-gibbous\": 59509,\n  \"moon-waxing-crescent-inverse\": 59509,\n  \"moon-waxing-crescent\": 59510,\n  \"moon-waxing-gibbous-inverse\": 59508,\n  \"moon-waxing-gibbous\": 59511,\n  \"moon\": 61830,\n  \"moped\": 58297,\n  \"mortar-board\": 61853,\n  \"mortar-pestle\": 62887,\n  \"mosque\": 63096,\n  \"mosquito-net\": 58668,\n  \"mosquito\": 58667,\n  \"motorcycle\": 61980,\n  \"mound\": 58669,\n  \"mountain-city\": 58670,\n  \"mountain-sun\": 58671,\n  \"mountain\": 63228,\n  \"mountains\": 63229,\n  \"mouse-alt\": 63693,\n  \"mouse-field\": 58792,\n  \"mouse-pointer\": 62021,\n  \"mouse\": 63692,\n  \"mp3-player\": 63694,\n  \"mug-hot\": 63414,\n  \"mug-marshmallows\": 63415,\n  \"mug-saucer\": 61684,\n  \"mug-tea-saucer\": 57845,\n  \"mug-tea\": 63605,\n  \"mug\": 63604,\n  \"multiply\": 61453,\n  \"museum\": 61852,\n  \"mushroom\": 58405,\n  \"music-alt-slash\": 63696,\n  \"music-alt\": 63695,\n  \"music-magnifying-glass\": 58978,\n  \"music-note-slash\": 63696,\n  \"music-note\": 63695,\n  \"music-slash\": 63697,\n  \"music\": 61441,\n  \"mustache\": 58812,\n  \"n\": 78,\n  \"naira-sign\": 57846,\n  \"narwhal\": 63230,\n  \"nas\": 59553,\n  \"navicon\": 61641,\n  \"nesting-dolls\": 58298,\n  \"network-wired\": 63231,\n  \"neuter\": 61996,\n  \"newspaper\": 61930,\n  \"nfc-lock\": 57848,\n  \"nfc-magnifying-glass\": 57849,\n  \"nfc-pen\": 57850,\n  \"nfc-signal\": 57851,\n  \"nfc-slash\": 57852,\n  \"nfc-symbol\": 58673,\n  \"nfc-trash\": 57853,\n  \"nfc\": 57847,\n  \"nigiri\": 58506,\n  \"non-binary\": 59399,\n  \"norwegian-krone-sign\": 59112,\n  \"nose\": 58813,\n  \"not-equal\": 62782,\n  \"notdef\": 57854,\n  \"note-medical\": 57856,\n  \"note-sticky\": 62025,\n  \"note\": 57855,\n  \"notebook\": 57857,\n  \"notes-medical\": 62593,\n  \"notes-sticky\": 59225,\n  \"notes\": 57858,\n  \"numpad\": 59340,\n  \"o\": 79,\n  \"oar\": 59524,\n  \"oars\": 59525,\n  \"object-exclude\": 58524,\n  \"object-group\": 62023,\n  \"object-intersect\": 58525,\n  \"object-subtract\": 58526,\n  \"object-ungroup\": 62024,\n  \"object-union\": 58527,\n  \"objects-align-bottom\": 58299,\n  \"objects-align-center-horizontal\": 58300,\n  \"objects-align-center-vertical\": 58301,\n  \"objects-align-left\": 58302,\n  \"objects-align-right\": 58303,\n  \"objects-align-top\": 58304,\n  \"objects-column\": 58305,\n  \"octagon-check\": 58406,\n  \"octagon-divide\": 57859,\n  \"octagon-equals\": 59059,\n  \"octagon-exclamation\": 57860,\n  \"octagon-minus\": 62216,\n  \"octagon-plus\": 62209,\n  \"octagon-xmark\": 62192,\n  \"octagon\": 62214,\n  \"octopus\": 59016,\n  \"oil-can-drip\": 57861,\n  \"oil-can\": 62995,\n  \"oil-temp\": 62996,\n  \"oil-temperature\": 62996,\n  \"oil-well\": 58674,\n  \"olive-branch\": 58135,\n  \"olive\": 58134,\n  \"om\": 63097,\n  \"omega\": 63098,\n  \"onion\": 58407,\n  \"open-captioning\": 59263,\n  \"opossum\": 59516,\n  \"option\": 58136,\n  \"ornament\": 63416,\n  \"otter\": 63232,\n  \"outdent\": 61499,\n  \"outlet\": 57372,\n  \"oven\": 57373,\n  \"overline\": 63606,\n  \"owl\": 59551,\n  \"p\": 80,\n  \"page-break\": 63607,\n  \"page-caret-down\": 58409,\n  \"page-caret-up\": 58410,\n  \"page\": 58408,\n  \"pager\": 63509,\n  \"paint-brush-alt\": 62889,\n  \"paint-brush-fine\": 62889,\n  \"paint-brush\": 61948,\n  \"paint-roller\": 62890,\n  \"paintbrush-alt\": 62889,\n  \"paintbrush-fine-slash\": 59213,\n  \"paintbrush-fine\": 62889,\n  \"paintbrush-pencil\": 57862,\n  \"paintbrush-slash\": 59214,\n  \"paintbrush\": 61948,\n  \"palette-boxes\": 62595,\n  \"palette\": 62783,\n  \"pallet-alt\": 62595,\n  \"pallet-box\": 57864,\n  \"pallet-boxes\": 62595,\n  \"pallet\": 62594,\n  \"pan-food\": 58411,\n  \"pan-frying\": 58412,\n  \"pancakes\": 58413,\n  \"panel-ews\": 58414,\n  \"panel-fire\": 58415,\n  \"panorama\": 57865,\n  \"panties\": 59092,\n  \"pants-straight\": 59094,\n  \"pants\": 59093,\n  \"paper-plane-alt\": 57866,\n  \"paper-plane-top\": 57866,\n  \"paper-plane\": 61912,\n  \"paperclip-vertical\": 58306,\n  \"paperclip\": 61638,\n  \"parachute-box\": 62669,\n  \"paragraph-left\": 63608,\n  \"paragraph-rtl\": 63608,\n  \"paragraph\": 61917,\n  \"parentheses\": 57541,\n  \"parenthesis\": 40,\n  \"parking-circle-slash\": 62998,\n  \"parking-circle\": 62997,\n  \"parking-slash\": 62999,\n  \"parking\": 62784,\n  \"party-back\": 58460,\n  \"party-bell\": 58138,\n  \"party-horn\": 58139,\n  \"passport\": 62891,\n  \"pastafarianism\": 63099,\n  \"paste\": 61674,\n  \"pause-circle\": 62091,\n  \"pause\": 61516,\n  \"paw-alt\": 63233,\n  \"paw-claws\": 63234,\n  \"paw-simple\": 63233,\n  \"paw\": 61872,\n  \"peace\": 63100,\n  \"peach\": 57867,\n  \"peanut\": 58416,\n  \"peanuts\": 58417,\n  \"peapod\": 58140,\n  \"pear\": 57868,\n  \"pedestal\": 57869,\n  \"pegasus\": 63235,\n  \"pen-alt-slash\": 57871,\n  \"pen-alt\": 62213,\n  \"pen-circle\": 57870,\n  \"pen-clip-slash\": 57871,\n  \"pen-clip\": 62213,\n  \"pen-fancy-slash\": 57872,\n  \"pen-fancy\": 62892,\n  \"pen-field\": 57873,\n  \"pen-line\": 57874,\n  \"pen-nib-slash\": 58529,\n  \"pen-nib\": 62893,\n  \"pen-paintbrush\": 63000,\n  \"pen-ruler\": 62894,\n  \"pen-slash\": 57875,\n  \"pen-square\": 61771,\n  \"pen-swirl\": 57876,\n  \"pen-to-square\": 61508,\n  \"pen\": 62212,\n  \"pencil-alt\": 62211,\n  \"pencil-line\": 59215,\n  \"pencil-mechanical\": 58826,\n  \"pencil-paintbrush\": 63000,\n  \"pencil-ruler\": 62894,\n  \"pencil-slash\": 57877,\n  \"pencil-square\": 61771,\n  \"pencil\": 62211,\n  \"pennant\": 62550,\n  \"pentagon\": 59280,\n  \"people-arrows-left-right\": 57448,\n  \"people-arrows\": 57448,\n  \"people-carry-box\": 62670,\n  \"people-carry\": 62670,\n  \"people-dress-simple\": 57880,\n  \"people-dress\": 57879,\n  \"people-group\": 58675,\n  \"people-line\": 58676,\n  \"people-pants-simple\": 57882,\n  \"people-pants\": 57881,\n  \"people-pulling\": 58677,\n  \"people-robbery\": 58678,\n  \"people-roof\": 58679,\n  \"people-simple\": 57883,\n  \"people\": 57878,\n  \"pepper-hot\": 63510,\n  \"pepper\": 58418,\n  \"percent\": 37,\n  \"percentage\": 37,\n  \"period\": 46,\n  \"person-arms-raised\": 59267,\n  \"person-arrow-down-to-line\": 58680,\n  \"person-arrow-up-from-line\": 58681,\n  \"person-basketball\": 59268,\n  \"person-biking-mountain\": 63563,\n  \"person-biking\": 63562,\n  \"person-booth\": 63318,\n  \"person-breastfeeding\": 58682,\n  \"person-burst\": 58683,\n  \"person-cane\": 58684,\n  \"person-carry-box\": 62671,\n  \"person-carry-empty\": 59269,\n  \"person-carry\": 62671,\n  \"person-chalkboard\": 58685,\n  \"person-circle-check\": 58686,\n  \"person-circle-exclamation\": 58687,\n  \"person-circle-minus\": 58688,\n  \"person-circle-plus\": 58689,\n  \"person-circle-question\": 58690,\n  \"person-circle-xmark\": 58691,\n  \"person-digging\": 63582,\n  \"person-dolly-empty\": 62673,\n  \"person-dolly\": 62672,\n  \"person-dots-from-line\": 62576,\n  \"person-dress-burst\": 58692,\n  \"person-dress-fairy\": 58887,\n  \"person-dress-simple\": 57884,\n  \"person-dress\": 61826,\n  \"person-drowning\": 58693,\n  \"person-fairy\": 58888,\n  \"person-falling-burst\": 58695,\n  \"person-falling\": 58694,\n  \"person-from-portal\": 57379,\n  \"person-golfing\": 59270,\n  \"person-half-dress\": 58696,\n  \"person-harassing\": 58697,\n  \"person-hiking\": 63212,\n  \"person-limbs-wide\": 59271,\n  \"person-meditating\": 59361,\n  \"person-military-pointing\": 58698,\n  \"person-military-rifle\": 58699,\n  \"person-military-to-person\": 58700,\n  \"person-pinball\": 57885,\n  \"person-praying\": 63107,\n  \"person-pregnant\": 58142,\n  \"person-rays\": 58701,\n  \"person-rifle\": 58702,\n  \"person-running-fast\": 58879,\n  \"person-running\": 63244,\n  \"person-seat-reclined\": 57887,\n  \"person-seat-window\": 59272,\n  \"person-seat\": 57886,\n  \"person-shelter\": 58703,\n  \"person-sign\": 63319,\n  \"person-simple\": 57888,\n  \"person-skating\": 63429,\n  \"person-ski-jumping\": 63431,\n  \"person-ski-lift\": 63432,\n  \"person-skiing-nordic\": 63434,\n  \"person-skiing\": 63433,\n  \"person-sledding\": 63435,\n  \"person-snowboarding\": 63438,\n  \"person-snowmobiling\": 63441,\n  \"person-soccer\": 59273,\n  \"person-swimming-pool\": 59274,\n  \"person-swimming-water\": 59275,\n  \"person-swimming\": 62916,\n  \"person-through-window\": 58793,\n  \"person-to-door\": 58419,\n  \"person-to-portal\": 57378,\n  \"person-walking-arrow-loop-left\": 58705,\n  \"person-walking-arrow-right\": 58706,\n  \"person-walking-dashed-line-arrow-right\": 58707,\n  \"person-walking-luggage\": 58708,\n  \"person-walking-with-cane\": 62109,\n  \"person-walking\": 62804,\n  \"person-water-arms-raised\": 59276,\n  \"person-waving\": 59277,\n  \"person\": 61827,\n  \"peruvian-soles-sign\": 59141,\n  \"peseta-sign\": 57889,\n  \"peso-sign\": 57890,\n  \"phone-alt\": 63609,\n  \"phone-arrow-down-left\": 57891,\n  \"phone-arrow-down\": 57891,\n  \"phone-arrow-right\": 58814,\n  \"phone-arrow-up-right\": 57892,\n  \"phone-arrow-up\": 57892,\n  \"phone-circle-alt\": 57628,\n  \"phone-circle-down\": 57629,\n  \"phone-circle\": 57627,\n  \"phone-connection\": 59105,\n  \"phone-flip\": 63609,\n  \"phone-hangup\": 57893,\n  \"phone-incoming\": 57891,\n  \"phone-intercom\": 58420,\n  \"phone-laptop\": 63610,\n  \"phone-missed\": 57894,\n  \"phone-office\": 63101,\n  \"phone-outgoing\": 57892,\n  \"phone-plus\": 62674,\n  \"phone-rotary\": 63699,\n  \"phone-slash\": 62429,\n  \"phone-square-alt\": 63611,\n  \"phone-square-down\": 57978,\n  \"phone-square\": 61592,\n  \"phone-volume\": 62112,\n  \"phone-waveform\": 59106,\n  \"phone-xmark\": 57895,\n  \"phone\": 61589,\n  \"photo-film-music\": 57896,\n  \"photo-film\": 63612,\n  \"photo-video\": 63612,\n  \"pi\": 63102,\n  \"piano-keyboard\": 63701,\n  \"piano\": 63700,\n  \"pickaxe\": 58815,\n  \"pickleball\": 58421,\n  \"picture-in-picture\": 59403,\n  \"pie-chart\": 61952,\n  \"pie\": 63237,\n  \"pig\": 63238,\n  \"piggy-bank\": 62675,\n  \"pills\": 62596,\n  \"pinata\": 58307,\n  \"pinball\": 57897,\n  \"pineapple\": 58143,\n  \"ping-pong-paddle-ball\": 62557,\n  \"pipe-circle-check\": 58422,\n  \"pipe-collar\": 58423,\n  \"pipe-section\": 58424,\n  \"pipe-smoking\": 58308,\n  \"pipe-valve\": 58425,\n  \"pipe\": 124,\n  \"pisces\": 59468,\n  \"pizza-slice\": 63512,\n  \"pizza\": 63511,\n  \"place-of-worship\": 63103,\n  \"plane-alt\": 62430,\n  \"plane-arrival\": 62895,\n  \"plane-circle-check\": 58709,\n  \"plane-circle-exclamation\": 58710,\n  \"plane-circle-xmark\": 58711,\n  \"plane-departure\": 62896,\n  \"plane-engines\": 62430,\n  \"plane-flying\": 59323,\n  \"plane-landing-gear\": 59324,\n  \"plane-lock\": 58712,\n  \"plane-prop\": 57899,\n  \"plane-slash\": 57449,\n  \"plane-tail\": 57900,\n  \"plane-up-slash\": 57902,\n  \"plane-up\": 57901,\n  \"plane\": 61554,\n  \"planet-moon\": 57375,\n  \"planet-ringed\": 57376,\n  \"plant-wilt\": 58794,\n  \"plate-utensils\": 58427,\n  \"plate-wheat\": 58714,\n  \"play-circle\": 61764,\n  \"play-flip\": 59264,\n  \"play-pause\": 57903,\n  \"play\": 61515,\n  \"plug-circle-bolt\": 58715,\n  \"plug-circle-check\": 58716,\n  \"plug-circle-exclamation\": 58717,\n  \"plug-circle-minus\": 58718,\n  \"plug-circle-plus\": 58719,\n  \"plug-circle-xmark\": 58720,\n  \"plug\": 61926,\n  \"plus-circle\": 61525,\n  \"plus-hexagon\": 62208,\n  \"plus-large\": 58782,\n  \"plus-minus\": 58428,\n  \"plus-octagon\": 62209,\n  \"plus-square\": 61694,\n  \"plus\": 43,\n  \"podcast\": 62158,\n  \"podium-star\": 63320,\n  \"podium\": 63104,\n  \"poker-chip\": 59554,\n  \"police-box\": 57377,\n  \"polish-zloty-sign\": 59147,\n  \"poll-h\": 63106,\n  \"poll-people\": 63321,\n  \"poll\": 63105,\n  \"pompebled\": 58429,\n  \"poo-bolt\": 63322,\n  \"poo-storm\": 63322,\n  \"poo\": 62206,\n  \"pool-8-ball\": 58309,\n  \"poop\": 63001,\n  \"popcorn\": 63513,\n  \"popsicle\": 58430,\n  \"portal-enter\": 57378,\n  \"portal-exit\": 57379,\n  \"portrait\": 62432,\n  \"possum\": 59516,\n  \"postage-stamp\": 59107,\n  \"pot-food\": 58431,\n  \"potato\": 58432,\n  \"pound-sign\": 61780,\n  \"power-off\": 61457,\n  \"pray\": 63107,\n  \"praying-hands\": 63108,\n  \"prescription-bottle-alt\": 62598,\n  \"prescription-bottle-medical\": 62598,\n  \"prescription-bottle-pill\": 58816,\n  \"prescription-bottle\": 62597,\n  \"prescription\": 62897,\n  \"presentation-screen\": 63109,\n  \"presentation\": 63109,\n  \"pretzel\": 58433,\n  \"print-magnifying-glass\": 63514,\n  \"print-search\": 63514,\n  \"print-slash\": 63110,\n  \"print\": 61487,\n  \"pro\": 57909,\n  \"procedures\": 62599,\n  \"project-diagram\": 62786,\n  \"projector\": 63702,\n  \"pronoun\": 59041,\n  \"pump-impeller\": 59445,\n  \"pump-medical\": 57450,\n  \"pump-soap\": 57451,\n  \"pump\": 58434,\n  \"pumpkin\": 63239,\n  \"puzzle-piece-alt\": 57905,\n  \"puzzle-piece-simple\": 57905,\n  \"puzzle-piece\": 61742,\n  \"puzzle\": 58435,\n  \"q\": 81,\n  \"qrcode-read\": 59289,\n  \"qrcode\": 61481,\n  \"question-circle\": 61529,\n  \"question-square\": 62205,\n  \"question\": 63,\n  \"quidditch-broom-ball\": 62552,\n  \"quidditch\": 62552,\n  \"quote-left-alt\": 61709,\n  \"quote-left\": 61709,\n  \"quote-right-alt\": 61710,\n  \"quote-right\": 61710,\n  \"quotes\": 57908,\n  \"quran\": 63111,\n  \"r\": 82,\n  \"rabbit-fast\": 63241,\n  \"rabbit-running\": 63241,\n  \"rabbit\": 63240,\n  \"raccoon\": 58899,\n  \"racquet\": 62554,\n  \"radar\": 57380,\n  \"radiation-alt\": 63418,\n  \"radiation\": 63417,\n  \"radio-alt\": 63704,\n  \"radio-tuner\": 63704,\n  \"radio\": 63703,\n  \"rainbow-half\": 59338,\n  \"rainbow\": 63323,\n  \"raindrops\": 63324,\n  \"ram\": 63242,\n  \"ramp-loading\": 62676,\n  \"random\": 61556,\n  \"ranking-star\": 58721,\n  \"raygun\": 57381,\n  \"receipt\": 62787,\n  \"record-vinyl\": 63705,\n  \"rectangle-4k\": 59250,\n  \"rectangle-ad\": 63041,\n  \"rectangle-api\": 59552,\n  \"rectangle-barcode\": 62563,\n  \"rectangle-beta\": 59400,\n  \"rectangle-code\": 58146,\n  \"rectangle-hd\": 57774,\n  \"rectangle-hdr\": 59251,\n  \"rectangle-high-dynamic-range\": 59251,\n  \"rectangle-history-circle-plus\": 58531,\n  \"rectangle-history-circle-user\": 58532,\n  \"rectangle-history\": 58530,\n  \"rectangle-irc\": 59500,\n  \"rectangle-landscape\": 62202,\n  \"rectangle-list\": 61474,\n  \"rectangle-minus\": 59060,\n  \"rectangle-n-a\": 59560,\n  \"rectangle-new\": 59514,\n  \"rectangle-plus\": 59061,\n  \"rectangle-portrait\": 62203,\n  \"rectangle-pro\": 57909,\n  \"rectangle-sd\": 57994,\n  \"rectangle-tall\": 59281,\n  \"rectangle-terminal\": 57910,\n  \"rectangle-times\": 62480,\n  \"rectangle-vertical-history\": 57911,\n  \"rectangle-vertical\": 62203,\n  \"rectangle-video-on-demand\": 59252,\n  \"rectangle-wide\": 62204,\n  \"rectangle-xmark\": 62480,\n  \"rectangle\": 62202,\n  \"rectangles-mixed\": 58147,\n  \"recycle\": 61880,\n  \"redo-alt\": 62201,\n  \"redo\": 61470,\n  \"reel\": 57912,\n  \"reflect-both\": 58991,\n  \"reflect-horizontal\": 58980,\n  \"reflect-vertical\": 58981,\n  \"refresh\": 61473,\n  \"refrigerator\": 57382,\n  \"registered\": 62045,\n  \"remote\": 59561,\n  \"remove-format\": 63613,\n  \"remove\": 61453,\n  \"renminbi-sign\": 59196,\n  \"reorder\": 62800,\n  \"repeat-1-alt\": 62310,\n  \"repeat-1\": 62309,\n  \"repeat-alt\": 62308,\n  \"repeat\": 62307,\n  \"reply-all\": 61730,\n  \"reply-clock\": 57913,\n  \"reply-time\": 57913,\n  \"reply\": 62437,\n  \"republican\": 63326,\n  \"restroom-simple\": 57914,\n  \"restroom\": 63421,\n  \"retweet-alt\": 62305,\n  \"retweet\": 61561,\n  \"rhombus\": 57915,\n  \"ribbon\": 62678,\n  \"right-from-bracket\": 62197,\n  \"right-from-dotted-line\": 59076,\n  \"right-from-line\": 62279,\n  \"right-left-large\": 58849,\n  \"right-left\": 62306,\n  \"right-long-to-line\": 58436,\n  \"right-long\": 62219,\n  \"right-to-bracket\": 62198,\n  \"right-to-dotted-line\": 59077,\n  \"right-to-line\": 62284,\n  \"right\": 62294,\n  \"ring-diamond\": 58795,\n  \"ring\": 63243,\n  \"rings-wedding\": 63515,\n  \"rmb\": 61783,\n  \"road-barrier\": 58722,\n  \"road-bridge\": 58723,\n  \"road-circle-check\": 58724,\n  \"road-circle-exclamation\": 58725,\n  \"road-circle-xmark\": 58726,\n  \"road-lock\": 58727,\n  \"road-spikes\": 58728,\n  \"road\": 61464,\n  \"robot-astromech\": 58066,\n  \"robot\": 62788,\n  \"rocket-launch\": 57383,\n  \"rocket-vertical\": 59325,\n  \"rocket\": 61749,\n  \"rod-asclepius\": 58745,\n  \"rod-snake\": 58745,\n  \"roller-coaster\": 58148,\n  \"rotate-back\": 62186,\n  \"rotate-backward\": 62186,\n  \"rotate-exclamation\": 57916,\n  \"rotate-forward\": 62201,\n  \"rotate-left\": 62186,\n  \"rotate-reverse\": 58929,\n  \"rotate-right\": 62201,\n  \"rotate\": 62193,\n  \"rouble\": 61784,\n  \"route-highway\": 63002,\n  \"route-interstate\": 63003,\n  \"route\": 62679,\n  \"router\": 63706,\n  \"rows-3\": 59531,\n  \"rows\": 58002,\n  \"rss-square\": 61763,\n  \"rss\": 61598,\n  \"rub\": 61784,\n  \"ruble-sign\": 61784,\n  \"ruble\": 61784,\n  \"rug\": 58729,\n  \"rugby-ball\": 58310,\n  \"ruler-combined\": 62790,\n  \"ruler-horizontal\": 62791,\n  \"ruler-triangle\": 63004,\n  \"ruler-vertical\": 62792,\n  \"ruler\": 62789,\n  \"running\": 63244,\n  \"rupee-sign\": 61782,\n  \"rupee\": 61782,\n  \"rupiah-sign\": 57917,\n  \"rv\": 63422,\n  \"s\": 83,\n  \"sack-dollar\": 63517,\n  \"sack-xmark\": 58730,\n  \"sack\": 63516,\n  \"sad-cry\": 62899,\n  \"sad-tear\": 62900,\n  \"sagittarius\": 59469,\n  \"sailboat\": 58437,\n  \"salad\": 63518,\n  \"salt-shaker\": 58438,\n  \"sandwich\": 63519,\n  \"satellite-dish\": 63424,\n  \"satellite\": 63423,\n  \"sausage\": 63520,\n  \"save-circle-arrow-right\": 57728,\n  \"save-circle-xmark\": 57729,\n  \"save-times\": 57729,\n  \"save\": 61639,\n  \"sax-hot\": 63707,\n  \"saxophone-fire\": 63707,\n  \"saxophone\": 63708,\n  \"scale-balanced\": 62030,\n  \"scale-unbalanced-flip\": 62742,\n  \"scale-unbalanced\": 62741,\n  \"scalpel-line-dashed\": 63006,\n  \"scalpel-path\": 63006,\n  \"scalpel\": 63005,\n  \"scanner-gun\": 62600,\n  \"scanner-image\": 63731,\n  \"scanner-keyboard\": 62601,\n  \"scanner-touchscreen\": 62602,\n  \"scanner\": 62600,\n  \"scarecrow\": 63245,\n  \"scarf\": 63425,\n  \"school-circle-check\": 58731,\n  \"school-circle-exclamation\": 58732,\n  \"school-circle-xmark\": 58733,\n  \"school-flag\": 58734,\n  \"school-lock\": 58735,\n  \"school-unlock\": 59083,\n  \"school\": 62793,\n  \"scissors\": 61636,\n  \"scooter\": 59331,\n  \"scorpio\": 59470,\n  \"screen-users\": 63037,\n  \"screencast\": 57918,\n  \"screenshot\": 57562,\n  \"screwdriver-wrench\": 63449,\n  \"screwdriver\": 62794,\n  \"scribble\": 57919,\n  \"scroll-old\": 63247,\n  \"scroll-ribbon\": 62954,\n  \"scroll-torah\": 63136,\n  \"scroll\": 63246,\n  \"scrubber\": 62200,\n  \"scythe\": 63248,\n  \"sd-card\": 63426,\n  \"sd-cards\": 57920,\n  \"seal-exclamation\": 57922,\n  \"seal-question\": 57923,\n  \"seal\": 57921,\n  \"search-dollar\": 63112,\n  \"search-location\": 63113,\n  \"search-minus\": 61456,\n  \"search-plus\": 61454,\n  \"search\": 61442,\n  \"seat-airline-window\": 59326,\n  \"seat-airline\": 57924,\n  \"seat\": 59236,\n  \"seats\": 59237,\n  \"section\": 58439,\n  \"seedling\": 62680,\n  \"semicolon\": 59,\n  \"send-back\": 63614,\n  \"send-backward\": 63615,\n  \"send\": 57866,\n  \"sensor-alert\": 57385,\n  \"sensor-cloud\": 57388,\n  \"sensor-fire\": 57386,\n  \"sensor-on\": 57387,\n  \"sensor-smoke\": 57388,\n  \"sensor-triangle-exclamation\": 57385,\n  \"sensor\": 57384,\n  \"septagon\": 59424,\n  \"server\": 62003,\n  \"shapes\": 63007,\n  \"share-all\": 62311,\n  \"share-alt-square\": 61921,\n  \"share-alt\": 61920,\n  \"share-from-square\": 61773,\n  \"share-nodes\": 61920,\n  \"share-square\": 61773,\n  \"share\": 61540,\n  \"sheep\": 63249,\n  \"sheet-plastic\": 58737,\n  \"shekel-sign\": 61963,\n  \"shekel\": 61963,\n  \"shelves-empty\": 57926,\n  \"shelves\": 62592,\n  \"sheqel-sign\": 61963,\n  \"sheqel\": 61963,\n  \"shield-alt\": 62445,\n  \"shield-blank\": 61746,\n  \"shield-cat\": 58738,\n  \"shield-check\": 62199,\n  \"shield-cross\": 63250,\n  \"shield-dog\": 58739,\n  \"shield-exclamation\": 57927,\n  \"shield-halved\": 62445,\n  \"shield-heart\": 58740,\n  \"shield-keyhole\": 57928,\n  \"shield-minus\": 57929,\n  \"shield-plus\": 57930,\n  \"shield-quartered\": 58741,\n  \"shield-slash\": 57931,\n  \"shield-times\": 57932,\n  \"shield-user\": 59401,\n  \"shield-virus\": 57452,\n  \"shield-xmark\": 57932,\n  \"shield\": 61746,\n  \"ship-large\": 59408,\n  \"ship\": 61978,\n  \"shipping-fast\": 62603,\n  \"shipping-timed\": 62604,\n  \"shirt-jersey\": 59095,\n  \"shirt-long-sleeve\": 58311,\n  \"shirt-running\": 58312,\n  \"shirt-tank-top\": 58313,\n  \"shirt\": 62803,\n  \"shish-kebab\": 63521,\n  \"shoe-prints\": 62795,\n  \"shoe\": 59096,\n  \"shop-24\": 59290,\n  \"shop-lock\": 58533,\n  \"shop-slash\": 57456,\n  \"shop\": 62799,\n  \"shopping-bag\": 62096,\n  \"shopping-basket-alt\": 57519,\n  \"shopping-basket\": 62097,\n  \"shopping-cart\": 61562,\n  \"shortcake\": 58341,\n  \"shorts\": 59097,\n  \"shovel-snow\": 63427,\n  \"shovel\": 63251,\n  \"shower-alt\": 57933,\n  \"shower-down\": 57933,\n  \"shower\": 62156,\n  \"shredder\": 63114,\n  \"shrimp\": 58440,\n  \"shuffle\": 61556,\n  \"shutters\": 58441,\n  \"shuttle-space-vertical\": 59327,\n  \"shuttle-space\": 61847,\n  \"shuttle-van\": 62902,\n  \"shuttlecock\": 62555,\n  \"sickle\": 63522,\n  \"sidebar-flip\": 57935,\n  \"sidebar\": 57934,\n  \"sigma\": 63115,\n  \"sign-hanging\": 62681,\n  \"sign-in-alt\": 62198,\n  \"sign-in\": 61584,\n  \"sign-language\": 62119,\n  \"sign-out-alt\": 62197,\n  \"sign-out\": 61579,\n  \"sign-post\": 58916,\n  \"sign-posts-wrench\": 58918,\n  \"sign-posts\": 58917,\n  \"sign\": 62681,\n  \"signal-1\": 63116,\n  \"signal-2\": 63117,\n  \"signal-3\": 63118,\n  \"signal-4\": 63119,\n  \"signal-5\": 61458,\n  \"signal-alt-1\": 63121,\n  \"signal-alt-2\": 63122,\n  \"signal-alt-3\": 63123,\n  \"signal-alt-4\": 63120,\n  \"signal-alt-slash\": 63124,\n  \"signal-alt\": 63120,\n  \"signal-bars-fair\": 63122,\n  \"signal-bars-good\": 63123,\n  \"signal-bars-slash\": 63124,\n  \"signal-bars-strong\": 63120,\n  \"signal-bars-weak\": 63121,\n  \"signal-bars\": 63120,\n  \"signal-fair\": 63117,\n  \"signal-good\": 63118,\n  \"signal-perfect\": 61458,\n  \"signal-slash\": 63125,\n  \"signal-stream-slash\": 57936,\n  \"signal-stream\": 63709,\n  \"signal-strong\": 63119,\n  \"signal-weak\": 63116,\n  \"signal\": 61458,\n  \"signapore-dollar-sign\": 59182,\n  \"signature-lock\": 58314,\n  \"signature-slash\": 58315,\n  \"signature\": 62903,\n  \"signing\": 62119,\n  \"signs-post\": 62071,\n  \"sim-card\": 63428,\n  \"sim-cards\": 57937,\n  \"single-quote-left\": 59419,\n  \"single-quote-right\": 59420,\n  \"sink\": 57453,\n  \"siren-on\": 57390,\n  \"siren\": 57389,\n  \"sitemap\": 61672,\n  \"skating\": 63429,\n  \"skeleton-ribs\": 58827,\n  \"skeleton\": 63008,\n  \"ski-boot-ski\": 58317,\n  \"ski-boot\": 58316,\n  \"ski-jump\": 63431,\n  \"ski-lift\": 63432,\n  \"skiing-nordic\": 63434,\n  \"skiing\": 63433,\n  \"skull-cow\": 63710,\n  \"skull-crossbones\": 63252,\n  \"skull\": 62796,\n  \"slash-back\": 92,\n  \"slash-forward\": 47,\n  \"slash\": 63253,\n  \"sledding\": 63435,\n  \"sleigh\": 63436,\n  \"slider-circle\": 59216,\n  \"slider\": 57938,\n  \"sliders-h-square\": 62448,\n  \"sliders-h\": 61918,\n  \"sliders-simple\": 57939,\n  \"sliders-up\": 62449,\n  \"sliders-v-square\": 62450,\n  \"sliders-v\": 62449,\n  \"sliders\": 61918,\n  \"slot-machine\": 58318,\n  \"smile-beam\": 62904,\n  \"smile-plus\": 62905,\n  \"smile-wink\": 62682,\n  \"smile\": 61720,\n  \"smog\": 63327,\n  \"smoke\": 63328,\n  \"smoking-ban\": 62797,\n  \"smoking\": 62605,\n  \"sms\": 63437,\n  \"snake\": 63254,\n  \"sneaker-running\": 59417,\n  \"sneaker\": 59098,\n  \"snooze\": 63616,\n  \"snow-blowing\": 63329,\n  \"snowboarding\": 63438,\n  \"snowflake-droplets\": 58817,\n  \"snowflake\": 62172,\n  \"snowflakes\": 63439,\n  \"snowman-head\": 63387,\n  \"snowman\": 63440,\n  \"snowmobile-blank\": 59332,\n  \"snowmobile\": 63441,\n  \"snowplow\": 63442,\n  \"soap\": 57454,\n  \"soccer-ball\": 61923,\n  \"socks\": 63126,\n  \"soft-serve\": 58368,\n  \"solar-panel\": 62906,\n  \"solar-system\": 57391,\n  \"sort-alpha-asc\": 61789,\n  \"sort-alpha-desc\": 63617,\n  \"sort-alpha-down-alt\": 63617,\n  \"sort-alpha-down\": 61789,\n  \"sort-alpha-up-alt\": 63618,\n  \"sort-alpha-up\": 61790,\n  \"sort-alt\": 63619,\n  \"sort-amount-asc\": 61792,\n  \"sort-amount-desc\": 63620,\n  \"sort-amount-down-alt\": 63620,\n  \"sort-amount-down\": 61792,\n  \"sort-amount-up-alt\": 63621,\n  \"sort-amount-up\": 61793,\n  \"sort-asc\": 61662,\n  \"sort-circle-down\": 57393,\n  \"sort-circle-up\": 57394,\n  \"sort-circle\": 57392,\n  \"sort-desc\": 61661,\n  \"sort-down\": 61661,\n  \"sort-numeric-asc\": 61794,\n  \"sort-numeric-desc\": 63622,\n  \"sort-numeric-down-alt\": 63622,\n  \"sort-numeric-down\": 61794,\n  \"sort-numeric-up-alt\": 63623,\n  \"sort-numeric-up\": 61795,\n  \"sort-shapes-down-alt\": 63625,\n  \"sort-shapes-down\": 63624,\n  \"sort-shapes-up-alt\": 63627,\n  \"sort-shapes-up\": 63626,\n  \"sort-size-down-alt\": 63629,\n  \"sort-size-down\": 63628,\n  \"sort-size-up-alt\": 63631,\n  \"sort-size-up\": 63630,\n  \"sort-up-down\": 57497,\n  \"sort-up\": 61662,\n  \"sort\": 61660,\n  \"soup\": 63523,\n  \"spa\": 62907,\n  \"space-shuttle\": 61847,\n  \"space-station-moon-alt\": 57396,\n  \"space-station-moon-construction\": 57396,\n  \"space-station-moon\": 57395,\n  \"spade\": 62196,\n  \"spaghetti-monster-flying\": 63099,\n  \"sparkle\": 58838,\n  \"sparkles\": 63632,\n  \"speaker\": 63711,\n  \"speakers\": 63712,\n  \"spell-check\": 63633,\n  \"spider-black-widow\": 63256,\n  \"spider-web\": 63257,\n  \"spider\": 63255,\n  \"spine\": 59233,\n  \"spinner-scale\": 58922,\n  \"spinner-third\": 62452,\n  \"spinner\": 61712,\n  \"spiral\": 59402,\n  \"split\": 57940,\n  \"splotch\": 62908,\n  \"spoon\": 62181,\n  \"sportsball\": 58443,\n  \"spray-can-sparkles\": 62928,\n  \"spray-can\": 62909,\n  \"sprinkler-ceiling\": 58444,\n  \"sprinkler\": 57397,\n  \"sprout\": 62680,\n  \"square-0\": 57941,\n  \"square-1\": 57942,\n  \"square-2\": 57943,\n  \"square-3\": 57944,\n  \"square-4\": 57945,\n  \"square-5\": 57946,\n  \"square-6\": 57947,\n  \"square-7\": 57948,\n  \"square-8\": 57949,\n  \"square-9\": 57950,\n  \"square-a-lock\": 58445,\n  \"square-a\": 57951,\n  \"square-ampersand\": 57952,\n  \"square-arrow-down-left\": 57953,\n  \"square-arrow-down-right\": 57954,\n  \"square-arrow-down\": 62265,\n  \"square-arrow-left\": 62266,\n  \"square-arrow-right\": 62267,\n  \"square-arrow-up-left\": 57955,\n  \"square-arrow-up-right\": 61772,\n  \"square-arrow-up\": 62268,\n  \"square-austral\": 59174,\n  \"square-australian-dollar\": 59160,\n  \"square-b\": 57956,\n  \"square-baht\": 59161,\n  \"square-bangladeshi-taka\": 59204,\n  \"square-binary\": 59035,\n  \"square-bitcoin\": 59122,\n  \"square-bolt\": 57957,\n  \"square-brazilian-real\": 59121,\n  \"square-c\": 57958,\n  \"square-caret-down\": 61776,\n  \"square-caret-left\": 61841,\n  \"square-caret-right\": 61778,\n  \"square-caret-up\": 61777,\n  \"square-cedi\": 59177,\n  \"square-cent\": 59120,\n  \"square-check\": 61770,\n  \"square-chevron-down\": 62249,\n  \"square-chevron-left\": 62250,\n  \"square-chevron-right\": 62251,\n  \"square-chevron-up\": 62252,\n  \"square-chf\": 59110,\n  \"square-code\": 57959,\n  \"square-colon\": 59194,\n  \"square-cruzeiro\": 59117,\n  \"square-currency\": 59148,\n  \"square-d\": 57960,\n  \"square-danish-krone\": 59207,\n  \"square-dashed-circle-plus\": 58818,\n  \"square-dashed\": 57961,\n  \"square-divide\": 57962,\n  \"square-dollar\": 62185,\n  \"square-dong\": 59151,\n  \"square-down-left\": 57963,\n  \"square-down-right\": 57964,\n  \"square-down\": 62288,\n  \"square-e\": 57965,\n  \"square-ellipsis-vertical\": 57967,\n  \"square-ellipsis\": 57966,\n  \"square-envelope\": 61849,\n  \"square-equals\": 59062,\n  \"square-euro\": 59186,\n  \"square-eurozone\": 59175,\n  \"square-exclamation\": 62241,\n  \"square-f\": 57968,\n  \"square-florin\": 59159,\n  \"square-fragile\": 62619,\n  \"square-franc\": 59183,\n  \"square-full\": 62556,\n  \"square-g\": 57969,\n  \"square-guarani\": 59150,\n  \"square-h\": 61693,\n  \"square-half-horizontal\": 59406,\n  \"square-half-stroke-horizontal\": 59407,\n  \"square-half-stroke\": 59283,\n  \"square-half\": 59282,\n  \"square-heart\": 62664,\n  \"square-hryvnia\": 59152,\n  \"square-i\": 57970,\n  \"square-indian-rupee\": 59125,\n  \"square-info\": 62223,\n  \"square-j\": 57971,\n  \"square-k\": 57972,\n  \"square-kanban\": 58504,\n  \"square-kip\": 59149,\n  \"square-l\": 57973,\n  \"square-lari\": 59199,\n  \"square-left\": 62289,\n  \"square-lira\": 59111,\n  \"square-list\": 58505,\n  \"square-litecoin\": 59127,\n  \"square-m\": 57974,\n  \"square-malaysian-ringgit\": 59208,\n  \"square-manat\": 59140,\n  \"square-microphone\": 59265,\n  \"square-mill\": 59146,\n  \"square-minus\": 61766,\n  \"square-n\": 57975,\n  \"square-naira\": 59144,\n  \"square-nfi\": 58742,\n  \"square-norwegian-krone\": 59143,\n  \"square-o\": 57976,\n  \"square-p\": 57977,\n  \"square-parking-slash\": 62999,\n  \"square-parking\": 62784,\n  \"square-pen\": 61771,\n  \"square-person-confined\": 58743,\n  \"square-peruvian-soles\": 59158,\n  \"square-peseta\": 59114,\n  \"square-peso\": 59162,\n  \"square-phone-flip\": 63611,\n  \"square-phone-hangup\": 57978,\n  \"square-phone\": 61592,\n  \"square-plus\": 61694,\n  \"square-polish-zloty\": 59190,\n  \"square-poll-horizontal\": 63106,\n  \"square-poll-vertical\": 63105,\n  \"square-q\": 57979,\n  \"square-quarters\": 58446,\n  \"square-question\": 62205,\n  \"square-quote\": 58153,\n  \"square-r\": 57980,\n  \"square-renminbi\": 59197,\n  \"square-right\": 62290,\n  \"square-ring\": 58447,\n  \"square-root-alt\": 63128,\n  \"square-root-variable\": 63128,\n  \"square-root\": 63127,\n  \"square-rss\": 61763,\n  \"square-ruble\": 59128,\n  \"square-rupee\": 59157,\n  \"square-rupiah\": 59154,\n  \"square-s\": 57981,\n  \"square-share-nodes\": 61921,\n  \"square-shekel\": 59189,\n  \"square-sliders-vertical\": 62450,\n  \"square-sliders\": 62448,\n  \"square-small\": 57982,\n  \"square-star\": 57983,\n  \"square-sterling\": 59155,\n  \"square-swedish-krona\": 59164,\n  \"square-t\": 57984,\n  \"square-tenge\": 59185,\n  \"square-terminal\": 58154,\n  \"square-this-way-up\": 62623,\n  \"square-tugrik\": 59176,\n  \"square-turkish-lira\": 59167,\n  \"square-u\": 57985,\n  \"square-up-left\": 57986,\n  \"square-up-right\": 62304,\n  \"square-up\": 62291,\n  \"square-user\": 57987,\n  \"square-v\": 57988,\n  \"square-virus\": 58744,\n  \"square-w\": 57989,\n  \"square-wine-glass-crack\": 62619,\n  \"square-won\": 59145,\n  \"square-x\": 57990,\n  \"square-xmark\": 62163,\n  \"square-y\": 57991,\n  \"square-yen\": 59172,\n  \"square-z\": 57992,\n  \"square\": 61640,\n  \"squareapore-dollar\": 59187,\n  \"squid\": 58448,\n  \"squirrel\": 63258,\n  \"stadium\": 59084,\n  \"staff-aesculapius\": 58745,\n  \"staff-snake\": 58745,\n  \"staff\": 63259,\n  \"stair-car\": 59333,\n  \"stairs\": 57993,\n  \"stamp\": 62911,\n  \"standard-definition\": 57994,\n  \"stapler\": 58799,\n  \"star-and-crescent\": 63129,\n  \"star-christmas\": 63444,\n  \"star-circle\": 57635,\n  \"star-exclamation\": 62195,\n  \"star-half-alt\": 62912,\n  \"star-half-stroke\": 62912,\n  \"star-half\": 61577,\n  \"star-of-david\": 63130,\n  \"star-of-life\": 63009,\n  \"star-sharp-half-alt\": 57997,\n  \"star-sharp-half-stroke\": 57997,\n  \"star-sharp-half\": 57996,\n  \"star-sharp\": 57995,\n  \"star-shooting\": 57398,\n  \"star\": 61445,\n  \"starfighter-alt-advanced\": 57998,\n  \"starfighter-alt\": 57400,\n  \"starfighter-twin-ion-engine-advanced\": 57998,\n  \"starfighter-twin-ion-engine\": 57400,\n  \"starfighter\": 57399,\n  \"stars\": 63330,\n  \"starship-freighter\": 57402,\n  \"starship\": 57401,\n  \"steak\": 63524,\n  \"steering-wheel\": 63010,\n  \"step-backward\": 61512,\n  \"step-forward\": 61521,\n  \"sterling-sign\": 61780,\n  \"stethoscope\": 61681,\n  \"sticky-note\": 62025,\n  \"stocking\": 63445,\n  \"stomach\": 63011,\n  \"stool\": 59520,\n  \"stop-circle\": 62093,\n  \"stop\": 61517,\n  \"stopwatch-20\": 57455,\n  \"stopwatch\": 62194,\n  \"store-24\": 59291,\n  \"store-alt-slash\": 57456,\n  \"store-alt\": 62799,\n  \"store-lock\": 58534,\n  \"store-slash\": 57457,\n  \"store\": 62798,\n  \"strawberry\": 58155,\n  \"stream\": 62800,\n  \"street-view\": 61981,\n  \"stretcher\": 63525,\n  \"strikethrough\": 61644,\n  \"stroopwafel\": 62801,\n  \"subscript\": 61740,\n  \"subtitles-slash\": 58896,\n  \"subtitles\": 58895,\n  \"subtract\": 61544,\n  \"subway-tunnel\": 58019,\n  \"subway\": 62009,\n  \"suitcase-medical\": 61690,\n  \"suitcase-rolling\": 62913,\n  \"suitcase\": 61682,\n  \"sun-alt\": 57999,\n  \"sun-bright\": 57999,\n  \"sun-cloud\": 63331,\n  \"sun-dust\": 63332,\n  \"sun-haze\": 63333,\n  \"sun-plant-wilt\": 58746,\n  \"sun\": 61829,\n  \"sunglasses\": 63634,\n  \"sunrise\": 63334,\n  \"sunset\": 63335,\n  \"superscript\": 61739,\n  \"surprise\": 62914,\n  \"sushi-roll\": 58507,\n  \"sushi\": 58506,\n  \"swap-arrows\": 58890,\n  \"swap\": 58889,\n  \"swatchbook\": 62915,\n  \"swedish-krona-sign\": 59198,\n  \"swimmer\": 62916,\n  \"swimming-pool\": 62917,\n  \"sword-laser-alt\": 57404,\n  \"sword-laser\": 57403,\n  \"sword\": 63260,\n  \"swords-laser\": 57405,\n  \"swords\": 63261,\n  \"symbols\": 63598,\n  \"synagogue\": 63131,\n  \"sync-alt\": 62193,\n  \"sync\": 61473,\n  \"syringe\": 62606,\n  \"t-rex\": 58921,\n  \"t-shirt\": 62803,\n  \"t\": 84,\n  \"table-bar\": 59550,\n  \"table-cells-column-lock\": 59000,\n  \"table-cells-column-unlock\": 59024,\n  \"table-cells-columns\": 59052,\n  \"table-cells-header-lock\": 59054,\n  \"table-cells-header-unlock\": 59055,\n  \"table-cells-header\": 59053,\n  \"table-cells-large\": 61449,\n  \"table-cells-lock\": 59001,\n  \"table-cells-merge\": 59532,\n  \"table-cells-row-lock\": 59002,\n  \"table-cells-row-unlock\": 59025,\n  \"table-cells-rows\": 59056,\n  \"table-cells-split\": 59533,\n  \"table-cells-unlock\": 59026,\n  \"table-cells\": 61450,\n  \"table-columns-add-after\": 59534,\n  \"table-columns-add-before\": 59535,\n  \"table-columns-merge-next\": 59536,\n  \"table-columns-merge-previous\": 59537,\n  \"table-columns-remove-after\": 59538,\n  \"table-columns-remove-before\": 59539,\n  \"table-columns\": 61659,\n  \"table-dining\": 59522,\n  \"table-layout\": 58000,\n  \"table-list\": 61451,\n  \"table-picnic\": 58157,\n  \"table-pivot\": 58001,\n  \"table-rows-add-above\": 59540,\n  \"table-rows-add-below\": 59541,\n  \"table-rows-merge-next\": 59542,\n  \"table-rows-merge-previous\": 59543,\n  \"table-rows-remove-above\": 59544,\n  \"table-rows-remove-below\": 59545,\n  \"table-rows\": 58002,\n  \"table-slash\": 59546,\n  \"table-tennis-paddle-ball\": 62557,\n  \"table-tennis\": 62557,\n  \"table-tree\": 58003,\n  \"table\": 61646,\n  \"tablet-alt\": 62458,\n  \"tablet-android-alt\": 62460,\n  \"tablet-android\": 62459,\n  \"tablet-button\": 61706,\n  \"tablet-rugged\": 62607,\n  \"tablet-screen-button\": 62458,\n  \"tablet-screen\": 62460,\n  \"tablet\": 62459,\n  \"tablets\": 62608,\n  \"tachograph-digital\": 62822,\n  \"tachometer-alt-average\": 63012,\n  \"tachometer-alt-fast\": 63013,\n  \"tachometer-alt-fastest\": 63014,\n  \"tachometer-alt-slow\": 63015,\n  \"tachometer-alt-slowest\": 63016,\n  \"tachometer-alt\": 63013,\n  \"tachometer-average\": 63017,\n  \"tachometer-fast\": 63018,\n  \"tachometer-fastest\": 63019,\n  \"tachometer-slow\": 63020,\n  \"tachometer-slowest\": 63021,\n  \"tachometer\": 63018,\n  \"taco\": 63526,\n  \"tag\": 61483,\n  \"tags\": 61484,\n  \"tally-1\": 58004,\n  \"tally-2\": 58005,\n  \"tally-3\": 58006,\n  \"tally-4\": 58007,\n  \"tally-5\": 63132,\n  \"tally\": 63132,\n  \"tamale\": 58449,\n  \"tanakh\": 63527,\n  \"tank-recovery\": 59429,\n  \"tank-water\": 58450,\n  \"tape\": 62683,\n  \"tarp-droplet\": 58748,\n  \"tarp\": 58747,\n  \"tasks-alt\": 63528,\n  \"tasks\": 61614,\n  \"taurus\": 59471,\n  \"taxi-bus\": 58008,\n  \"taxi\": 61882,\n  \"teddy-bear\": 58319,\n  \"teeth-open\": 63023,\n  \"teeth\": 63022,\n  \"telescope\": 57406,\n  \"teletype-answer\": 58041,\n  \"teletype\": 61924,\n  \"television\": 62060,\n  \"temperature-0\": 62155,\n  \"temperature-1\": 62154,\n  \"temperature-2\": 62153,\n  \"temperature-3\": 62152,\n  \"temperature-4\": 62151,\n  \"temperature-arrow-down\": 57407,\n  \"temperature-arrow-up\": 57408,\n  \"temperature-down\": 57407,\n  \"temperature-empty\": 62155,\n  \"temperature-frigid\": 63336,\n  \"temperature-full\": 62151,\n  \"temperature-half\": 62153,\n  \"temperature-high\": 63337,\n  \"temperature-hot\": 63338,\n  \"temperature-list\": 58009,\n  \"temperature-low\": 63339,\n  \"temperature-quarter\": 62154,\n  \"temperature-slash\": 59339,\n  \"temperature-snow\": 63336,\n  \"temperature-sun\": 63338,\n  \"temperature-three-quarters\": 62152,\n  \"temperature-up\": 57408,\n  \"tenge-sign\": 63447,\n  \"tenge\": 63447,\n  \"tennis-ball\": 62558,\n  \"tent-arrow-down-to-line\": 58750,\n  \"tent-arrow-left-right\": 58751,\n  \"tent-arrow-turn-left\": 58752,\n  \"tent-arrows-down\": 58753,\n  \"tent-circus\": 59085,\n  \"tent-double-peak\": 58919,\n  \"tent\": 58749,\n  \"tents\": 58754,\n  \"terminal\": 61728,\n  \"text-height\": 61492,\n  \"text-size\": 63636,\n  \"text-slash\": 63613,\n  \"text-width\": 61493,\n  \"text\": 63635,\n  \"th-large\": 61449,\n  \"th-list\": 61451,\n  \"th\": 61450,\n  \"theater-masks\": 63024,\n  \"thermometer-0\": 62155,\n  \"thermometer-1\": 62154,\n  \"thermometer-2\": 62153,\n  \"thermometer-3\": 62152,\n  \"thermometer-4\": 62151,\n  \"thermometer-empty\": 62155,\n  \"thermometer-full\": 62151,\n  \"thermometer-half\": 62153,\n  \"thermometer-quarter\": 62154,\n  \"thermometer-three-quarters\": 62152,\n  \"thermometer\": 62609,\n  \"theta\": 63134,\n  \"thought-bubble\": 58158,\n  \"thumb-tack-slash\": 59023,\n  \"thumb-tack\": 61581,\n  \"thumbs-down\": 61797,\n  \"thumbs-up\": 61796,\n  \"thumbtack-angle-slash\": 59218,\n  \"thumbtack-angle\": 59217,\n  \"thumbtack-slash\": 59023,\n  \"thumbtack\": 61581,\n  \"thunderstorm-moon\": 63341,\n  \"thunderstorm-sun\": 63342,\n  \"thunderstorm\": 63340,\n  \"tick\": 58159,\n  \"ticket-airline\": 58010,\n  \"ticket-alt\": 62463,\n  \"ticket-perforated-plane\": 58010,\n  \"ticket-perforated\": 58942,\n  \"ticket-plane\": 58010,\n  \"ticket-simple\": 62463,\n  \"ticket\": 61765,\n  \"tickets-airline\": 58011,\n  \"tickets-perforated-plane\": 58011,\n  \"tickets-perforated\": 58943,\n  \"tickets-plane\": 58011,\n  \"tickets-simple\": 58969,\n  \"tickets\": 58968,\n  \"tilde\": 126,\n  \"timeline-arrow\": 58013,\n  \"timeline\": 58012,\n  \"timer\": 58014,\n  \"times-circle\": 61527,\n  \"times-hexagon\": 62190,\n  \"times-octagon\": 62192,\n  \"times-rectangle\": 62480,\n  \"times-square\": 62163,\n  \"times-to-slot\": 63345,\n  \"times\": 61453,\n  \"tint-slash\": 62919,\n  \"tint\": 61507,\n  \"tire-flat\": 63026,\n  \"tire-pressure-warning\": 63027,\n  \"tire-rugged\": 63028,\n  \"tire\": 63025,\n  \"tired\": 62920,\n  \"toggle-large-off\": 58800,\n  \"toggle-large-on\": 58801,\n  \"toggle-off\": 61956,\n  \"toggle-on\": 61957,\n  \"toilet-paper-alt\": 63262,\n  \"toilet-paper-blank-under\": 58016,\n  \"toilet-paper-blank\": 63262,\n  \"toilet-paper-check\": 58802,\n  \"toilet-paper-reverse-alt\": 58016,\n  \"toilet-paper-reverse-slash\": 58017,\n  \"toilet-paper-reverse\": 58016,\n  \"toilet-paper-slash\": 57458,\n  \"toilet-paper-under-slash\": 58017,\n  \"toilet-paper-under\": 58016,\n  \"toilet-paper-xmark\": 58803,\n  \"toilet-paper\": 63262,\n  \"toilet-portable\": 58755,\n  \"toilet\": 63448,\n  \"toilets-portable\": 58756,\n  \"tomato\": 58160,\n  \"tombstone-alt\": 63265,\n  \"tombstone-blank\": 63265,\n  \"tombstone\": 63264,\n  \"toolbox\": 62802,\n  \"tools\": 63449,\n  \"tooth\": 62921,\n  \"toothbrush\": 63029,\n  \"torah\": 63136,\n  \"torii-gate\": 63137,\n  \"tornado\": 63343,\n  \"tower-broadcast\": 62745,\n  \"tower-cell\": 58757,\n  \"tower-control\": 58018,\n  \"tower-observation\": 58758,\n  \"tower-receive\": 59555,\n  \"tractor\": 63266,\n  \"trademark\": 62044,\n  \"traffic-cone\": 63030,\n  \"traffic-light-go\": 63032,\n  \"traffic-light-slow\": 63033,\n  \"traffic-light-stop\": 63034,\n  \"traffic-light\": 63031,\n  \"trailer\": 57409,\n  \"train-stop\": 59423,\n  \"train-subway-tunnel\": 58019,\n  \"train-subway\": 62009,\n  \"train-track\": 58451,\n  \"train-tram\": 58804,\n  \"train-tunnel\": 58452,\n  \"train\": 62008,\n  \"tram\": 63450,\n  \"transducer\": 59430,\n  \"transformer-bolt\": 58020,\n  \"transgender-alt\": 61989,\n  \"transgender\": 61989,\n  \"transmission\": 59394,\n  \"transporter-1\": 57411,\n  \"transporter-2\": 57412,\n  \"transporter-3\": 57413,\n  \"transporter-4\": 58021,\n  \"transporter-5\": 58022,\n  \"transporter-6\": 58023,\n  \"transporter-7\": 58024,\n  \"transporter-empty\": 57414,\n  \"transporter\": 57410,\n  \"trash-alt-slash\": 58029,\n  \"trash-alt\": 62189,\n  \"trash-arrow-turn-left\": 63637,\n  \"trash-arrow-up\": 63529,\n  \"trash-can-arrow-turn-left\": 63638,\n  \"trash-can-arrow-up\": 63530,\n  \"trash-can-check\": 58025,\n  \"trash-can-clock\": 58026,\n  \"trash-can-list\": 58027,\n  \"trash-can-plus\": 58028,\n  \"trash-can-slash\": 58029,\n  \"trash-can-undo\": 63638,\n  \"trash-can-xmark\": 58030,\n  \"trash-can\": 62189,\n  \"trash-check\": 58031,\n  \"trash-circle\": 57638,\n  \"trash-clock\": 58032,\n  \"trash-list\": 58033,\n  \"trash-plus\": 58034,\n  \"trash-restore-alt\": 63530,\n  \"trash-restore\": 63529,\n  \"trash-slash\": 58035,\n  \"trash-undo-alt\": 63638,\n  \"trash-undo\": 63637,\n  \"trash-xmark\": 58036,\n  \"trash\": 61944,\n  \"treasure-chest\": 63267,\n  \"tree-alt\": 62464,\n  \"tree-christmas\": 63451,\n  \"tree-city\": 58759,\n  \"tree-deciduous\": 62464,\n  \"tree-decorated\": 63452,\n  \"tree-large\": 63453,\n  \"tree-palm\": 63531,\n  \"tree\": 61883,\n  \"trees\": 63268,\n  \"trian-balbot\": 58460,\n  \"triangle-circle-square\": 63007,\n  \"triangle-exclamation\": 61553,\n  \"triangle-instrument\": 63714,\n  \"triangle-music\": 63714,\n  \"triangle-person-digging\": 63581,\n  \"triangle\": 62188,\n  \"tricycle-adult\": 58820,\n  \"tricycle\": 58819,\n  \"trillium\": 58760,\n  \"triple-chevrons-down\": 59383,\n  \"triple-chevrons-left\": 59384,\n  \"triple-chevrons-right\": 59385,\n  \"triple-chevrons-up\": 59386,\n  \"trombone\": 59266,\n  \"trophy-alt\": 62187,\n  \"trophy-star\": 62187,\n  \"trophy\": 61585,\n  \"trowel-bricks\": 58762,\n  \"trowel\": 58761,\n  \"truck-arrow-right\": 58763,\n  \"truck-bolt\": 58320,\n  \"truck-clock\": 62604,\n  \"truck-container-empty\": 58037,\n  \"truck-container\": 62684,\n  \"truck-couch\": 62685,\n  \"truck-droplet\": 58764,\n  \"truck-fast\": 62603,\n  \"truck-field-un\": 58766,\n  \"truck-field\": 58765,\n  \"truck-fire\": 58970,\n  \"truck-flatbed\": 58038,\n  \"truck-front\": 58039,\n  \"truck-ladder\": 58967,\n  \"truck-loading\": 62686,\n  \"truck-medical\": 61689,\n  \"truck-monster\": 63035,\n  \"truck-moving\": 62687,\n  \"truck-pickup\": 63036,\n  \"truck-plane\": 58767,\n  \"truck-plow\": 63454,\n  \"truck-ramp-box\": 62686,\n  \"truck-ramp-couch\": 62685,\n  \"truck-ramp\": 62688,\n  \"truck-suv\": 59334,\n  \"truck-tow\": 58040,\n  \"truck-utensils\": 58920,\n  \"truck\": 61649,\n  \"trumpet\": 63715,\n  \"try\": 58043,\n  \"tshirt\": 62803,\n  \"tty-answer\": 58041,\n  \"tty\": 61924,\n  \"tugrik-sign\": 58042,\n  \"turkey\": 63269,\n  \"turkish-lira-sign\": 58043,\n  \"turkish-lira\": 58043,\n  \"turn-down-left\": 58161,\n  \"turn-down-right\": 58453,\n  \"turn-down\": 62398,\n  \"turn-left-down\": 58935,\n  \"turn-left-up\": 58936,\n  \"turn-left\": 58934,\n  \"turn-right\": 58937,\n  \"turn-up\": 62399,\n  \"turntable\": 63716,\n  \"turtle\": 63270,\n  \"tv-alt\": 62060,\n  \"tv-music\": 63718,\n  \"tv-retro\": 62465,\n  \"tv\": 62060,\n  \"typewriter\": 63719,\n  \"u-turn-down-left\": 59375,\n  \"u-turn-down-right\": 59376,\n  \"u-turn-left-down\": 59377,\n  \"u-turn-left-up\": 59378,\n  \"u-turn-right-down\": 59379,\n  \"u-turn-right-up\": 59380,\n  \"u-turn-up-left\": 59381,\n  \"u-turn-up-right\": 59382,\n  \"u-turn\": 59377,\n  \"u\": 85,\n  \"ufo-beam\": 57416,\n  \"ufo\": 57415,\n  \"umbrella-alt\": 58044,\n  \"umbrella-beach\": 62922,\n  \"umbrella-simple\": 58044,\n  \"umbrella\": 61673,\n  \"underline\": 61645,\n  \"undo-alt\": 62186,\n  \"undo\": 61666,\n  \"unicorn\": 63271,\n  \"unicycle\": 59335,\n  \"uniform-martial-arts\": 58321,\n  \"union\": 63138,\n  \"universal-access\": 62106,\n  \"university\": 61852,\n  \"unlink\": 61735,\n  \"unlock-alt\": 61758,\n  \"unlock-keyhole\": 61758,\n  \"unlock\": 61596,\n  \"unsorted\": 61660,\n  \"up-down-left-right\": 61618,\n  \"up-down\": 62264,\n  \"up-from-bracket\": 58768,\n  \"up-from-dotted-line\": 58454,\n  \"up-from-line\": 62278,\n  \"up-left\": 58045,\n  \"up-long-to-line\": 59078,\n  \"up-long\": 62220,\n  \"up-right-and-down-left-from-center\": 62500,\n  \"up-right-from-square\": 62301,\n  \"up-right\": 58046,\n  \"up-to-bracket\": 58990,\n  \"up-to-dotted-line\": 58455,\n  \"up-to-line\": 62285,\n  \"up\": 62295,\n  \"upload\": 61587,\n  \"usb-drive\": 63721,\n  \"usd-circle\": 62184,\n  \"usd-square\": 62185,\n  \"usd\": 36,\n  \"user-alien\": 57418,\n  \"user-alt-slash\": 62726,\n  \"user-alt\": 61447,\n  \"user-astronaut\": 62715,\n  \"user-beard-bolt\": 59017,\n  \"user-beard\": 59304,\n  \"user-bounty-hunter\": 58047,\n  \"user-chart\": 63139,\n  \"user-check\": 62716,\n  \"user-chef-hair-long\": 59305,\n  \"user-chef\": 58322,\n  \"user-circle-minus\": 59306,\n  \"user-circle-plus\": 59307,\n  \"user-circle\": 62141,\n  \"user-clock\": 62717,\n  \"user-cog\": 62718,\n  \"user-construction\": 63532,\n  \"user-cowboy\": 63722,\n  \"user-crown\": 63140,\n  \"user-dashed\": 59308,\n  \"user-doctor-hair-long\": 58457,\n  \"user-doctor-hair-mullet\": 59309,\n  \"user-doctor-hair\": 58456,\n  \"user-doctor-message\": 63534,\n  \"user-doctor\": 61680,\n  \"user-edit\": 62719,\n  \"user-friends\": 62720,\n  \"user-gear\": 62718,\n  \"user-graduate\": 62721,\n  \"user-group-crown\": 63141,\n  \"user-group-simple\": 58883,\n  \"user-group\": 62720,\n  \"user-hair-buns\": 58323,\n  \"user-hair-long\": 58459,\n  \"user-hair-mullet\": 58460,\n  \"user-hair\": 58458,\n  \"user-hard-hat\": 63532,\n  \"user-hat-tie-magnifying-glass\": 59311,\n  \"user-hat-tie\": 59310,\n  \"user-headset\": 63533,\n  \"user-helmet-safety\": 63532,\n  \"user-hoodie\": 59018,\n  \"user-injured\": 63272,\n  \"user-key\": 59312,\n  \"user-large-slash\": 62726,\n  \"user-large\": 61447,\n  \"user-lock\": 62722,\n  \"user-magnifying-glass\": 58821,\n  \"user-md-chat\": 63534,\n  \"user-md\": 61680,\n  \"user-message\": 59313,\n  \"user-microphone\": 59314,\n  \"user-minus\": 62723,\n  \"user-music\": 63723,\n  \"user-ninja\": 62724,\n  \"user-nurse-hair-long\": 58462,\n  \"user-nurse-hair\": 58461,\n  \"user-nurse\": 63535,\n  \"user-pen\": 62719,\n  \"user-pilot-hair-long\": 59315,\n  \"user-pilot-tie-hair-long\": 59316,\n  \"user-pilot-tie\": 58049,\n  \"user-pilot\": 58048,\n  \"user-plus\": 62004,\n  \"user-police-hair-long\": 59317,\n  \"user-police-tie-hair-long\": 59318,\n  \"user-police-tie\": 58164,\n  \"user-police\": 58163,\n  \"user-question\": 59319,\n  \"user-robot-xmarks\": 58535,\n  \"user-robot\": 57419,\n  \"user-secret\": 61979,\n  \"user-shakespeare\": 58050,\n  \"user-shield\": 62725,\n  \"user-sith\": 59320,\n  \"user-slash\": 62726,\n  \"user-tag\": 62727,\n  \"user-tie-hair-long\": 58464,\n  \"user-tie-hair-mullet\": 59321,\n  \"user-tie-hair\": 58463,\n  \"user-tie\": 62728,\n  \"user-times\": 62005,\n  \"user-unlock\": 57432,\n  \"user-viewfinder\": 59253,\n  \"user-visor\": 57420,\n  \"user-vneck-hair-long\": 58467,\n  \"user-vneck-hair-mullet\": 59322,\n  \"user-vneck-hair\": 58466,\n  \"user-vneck\": 58465,\n  \"user-xmark\": 62005,\n  \"user\": 61447,\n  \"users-between-lines\": 58769,\n  \"users-class\": 63037,\n  \"users-cog\": 62729,\n  \"users-crown\": 63141,\n  \"users-gear\": 62729,\n  \"users-line\": 58770,\n  \"users-medical\": 63536,\n  \"users-rays\": 58771,\n  \"users-rectangle\": 58772,\n  \"users-slash\": 57459,\n  \"users-viewfinder\": 58773,\n  \"users\": 61632,\n  \"utensil-fork\": 62179,\n  \"utensil-knife\": 62180,\n  \"utensil-spoon\": 62181,\n  \"utensils-alt\": 62182,\n  \"utensils-slash\": 58468,\n  \"utensils\": 62183,\n  \"utility-can\": 59549,\n  \"utility-pole-double\": 58052,\n  \"utility-pole\": 58051,\n  \"v\": 86,\n  \"vacuum-robot\": 57422,\n  \"vacuum\": 57421,\n  \"value-absolute\": 63142,\n  \"van-shuttle\": 62902,\n  \"van\": 59336,\n  \"vault\": 58053,\n  \"vcard\": 62139,\n  \"vector-circle\": 62957,\n  \"vector-polygon\": 62958,\n  \"vector-square\": 62959,\n  \"vent-damper\": 58469,\n  \"venus-double\": 61990,\n  \"venus-mars\": 61992,\n  \"venus\": 61985,\n  \"vest-patches\": 57478,\n  \"vest\": 57477,\n  \"vhs\": 63724,\n  \"vial-circle-check\": 58774,\n  \"vial-vertical\": 59234,\n  \"vial-virus\": 58775,\n  \"vial\": 62610,\n  \"vials\": 62611,\n  \"video-arrow-down-left\": 58056,\n  \"video-arrow-up-right\": 58057,\n  \"video-camera\": 61501,\n  \"video-circle\": 57643,\n  \"video-down-to-line\": 59254,\n  \"video-handheld\": 63656,\n  \"video-plus\": 62689,\n  \"video-question\": 59255,\n  \"video-slash\": 62690,\n  \"video\": 61501,\n  \"vihara\": 63143,\n  \"violin\": 63725,\n  \"virgo\": 59472,\n  \"virus-covid-slash\": 58537,\n  \"virus-covid\": 58536,\n  \"virus-slash\": 57461,\n  \"virus\": 57460,\n  \"viruses\": 57462,\n  \"voicemail\": 63639,\n  \"volcano\": 63344,\n  \"volleyball-ball\": 62559,\n  \"volleyball\": 62559,\n  \"volume-control-phone\": 62112,\n  \"volume-down\": 61479,\n  \"volume-high\": 61480,\n  \"volume-low\": 61479,\n  \"volume-medium\": 63144,\n  \"volume-mute\": 63145,\n  \"volume-off\": 61478,\n  \"volume-slash\": 62178,\n  \"volume-times\": 63145,\n  \"volume-up\": 61480,\n  \"volume-xmark\": 63145,\n  \"volume\": 63144,\n  \"vote-nay\": 63345,\n  \"vote-yea\": 63346,\n  \"vr-cardboard\": 63273,\n  \"w\": 87,\n  \"waffle\": 58470,\n  \"wagon-covered\": 63726,\n  \"walker\": 63537,\n  \"walkie-talkie\": 63727,\n  \"walking\": 62804,\n  \"wall-brick\": 58331,\n  \"wallet\": 62805,\n  \"wand-magic-sparkles\": 58058,\n  \"wand-magic\": 61648,\n  \"wand-sparkles\": 63275,\n  \"wand\": 63274,\n  \"wardrobe\": 59521,\n  \"warehouse-alt\": 62613,\n  \"warehouse-full\": 62613,\n  \"warehouse\": 62612,\n  \"warning\": 61553,\n  \"washer\": 63640,\n  \"washing-machine\": 63640,\n  \"watch-apple\": 58059,\n  \"watch-calculator\": 63728,\n  \"watch-fitness\": 63038,\n  \"watch-smart\": 58060,\n  \"watch\": 62177,\n  \"water-arrow-down\": 63348,\n  \"water-arrow-up\": 63349,\n  \"water-ladder\": 62917,\n  \"water-lower\": 63348,\n  \"water-rise\": 63349,\n  \"water-temp\": 59434,\n  \"water-temperature\": 59434,\n  \"water\": 63347,\n  \"watermelon-slice\": 58167,\n  \"wave-pulse\": 62968,\n  \"wave-sine\": 63641,\n  \"wave-square\": 63550,\n  \"wave-triangle\": 63642,\n  \"wave\": 58971,\n  \"waveform-circle\": 57645,\n  \"waveform-lines\": 63730,\n  \"waveform-path\": 63730,\n  \"waveform\": 63729,\n  \"waves-sine\": 58973,\n  \"web-awesome\": 59010,\n  \"webcam-slash\": 63539,\n  \"webcam\": 63538,\n  \"webhook\": 58837,\n  \"weight-hanging\": 62925,\n  \"weight-scale\": 62614,\n  \"weight\": 62614,\n  \"whale\": 63276,\n  \"wheat-alt\": 58061,\n  \"wheat-awn-circle-exclamation\": 58776,\n  \"wheat-awn-slash\": 58168,\n  \"wheat-awn\": 58061,\n  \"wheat-slash\": 58169,\n  \"wheat\": 63277,\n  \"wheelchair-alt\": 58062,\n  \"wheelchair-move\": 58062,\n  \"wheelchair\": 61843,\n  \"whiskey-glass-ice\": 63393,\n  \"whiskey-glass\": 63392,\n  \"whistle\": 62560,\n  \"wifi-1\": 63146,\n  \"wifi-2\": 63147,\n  \"wifi-3\": 61931,\n  \"wifi-exclamation\": 58063,\n  \"wifi-fair\": 63147,\n  \"wifi-slash\": 63148,\n  \"wifi-strong\": 61931,\n  \"wifi-weak\": 63146,\n  \"wifi\": 61931,\n  \"wind-circle-exclamation\": 63350,\n  \"wind-turbine\": 63643,\n  \"wind-warning\": 63350,\n  \"wind\": 63278,\n  \"window-alt\": 62479,\n  \"window-close\": 62480,\n  \"window-flip\": 62479,\n  \"window-frame-open\": 57424,\n  \"window-frame\": 57423,\n  \"window-maximize\": 62160,\n  \"window-minimize\": 62161,\n  \"window-restore\": 62162,\n  \"window\": 62478,\n  \"windsock\": 63351,\n  \"wine-bottle\": 63279,\n  \"wine-glass-alt\": 62926,\n  \"wine-glass-crack\": 62651,\n  \"wine-glass-empty\": 62926,\n  \"wine-glass\": 62691,\n  \"wireless\": 59359,\n  \"won-sign\": 61785,\n  \"won\": 61785,\n  \"worm\": 58777,\n  \"wreath-laurel\": 58834,\n  \"wreath\": 63458,\n  \"wrench-simple\": 58065,\n  \"wrench\": 61613,\n  \"x-ray\": 62615,\n  \"x\": 88,\n  \"xmark-circle\": 61527,\n  \"xmark-hexagon\": 62190,\n  \"xmark-large\": 58779,\n  \"xmark-octagon\": 62192,\n  \"xmark-square\": 62163,\n  \"xmark-to-slot\": 63345,\n  \"xmark\": 61453,\n  \"xmarks-lines\": 58778,\n  \"y\": 89,\n  \"yen-sign\": 61783,\n  \"yen\": 61783,\n  \"yin-yang\": 63149,\n  \"z\": 90,\n  \"zap\": 61671,\n  \"zzz\": 63616\n}"
  },
  {
    "path": "packages/fontawesome-pro-regular/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontawesome-pro-regular\",\n  \"version\": \"0.2.0\",\n  \"description\": \"Fontawesome Pro Regular font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"fontawesome-pro-regular\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/fontawesome-pro-regular\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-regular/react-native-vector-icons-fontawesome-pro-regular.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-fontawesome-pro-regular'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\n\n  s.script_phase = {\n    name: 'Copy Custom Fonts',\n    execution_position: :after_compile,\n    script: <<~SCRIPT\n      set -e\n\n      HEAD=\"(RNVI-fontawesome-pro-regular)\"\n\n      echo \"${HEAD} START_COPY_FONTS\"\n\n      echo \"${HEAD} PWD: $(pwd)\"\n\n      #\n      # Find the custom font Directory\n      #\n\n      # Assume the project root is always two directories above the POD_ROOT\n      echo \"${HEAD} PODS_ROOT: $PODS_ROOT\"\n\n      PROJECT_ROOT=\"${PODS_ROOT}/../..\"\n      echo \"${HEAD} PROJECT_ROOT: $PROJECT_ROOT\"\n\n      cd $PROJECT_ROOT\n      FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/\"//g')\n      if [ -z \"$FONTS_DIR\" ]; then\n        FONTS_DIR=\"rnvi-fonts\"\n      fi\n      echo \"${HEAD} FONTS_DIR: $FONTS_DIR\"\n\n      FONTS_DIR=\"${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-regular\"\n      if [ ! -d \"$FONTS_DIR\" ]; then\n        echo \"${HEAD} $FONTS_DIR not found\"\n        exit 0\n      fi\n\n      #\n      # Find the destination we copy to\n      #\n\n      echo \"${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR\"\n      XCODE_DIR=$(ls -d \"$PODS_CONFIGURATION_BUILD_DIR\"/*.app)\n      echo \"${HEAD} XCODE_DIR: $XCODE_DIR\"\n      if [ -z \"$XCODE_DIR\" ]; then\n        echo \"Could not find XCODE_DIR to copy fonts to\"\n        exit 1\n      fi\n\n      DEST_DIR=\"${XCODE_DIR}\"\n      mkdir -p \"$DEST_DIR\"\n\n      #\n      # Copy the fonts\n      #\n\n      echo \"${HEAD} Copying the following files to $DEST_DIR\"\n      ls \"$FONTS_DIR\" | sed \"s/^/${HEAD} /\"\n\n      rsync -avr --copy-links --no-relative $FONTS_DIR/ \"$DEST_DIR\"\n\n      echo \"${HEAD} END:RNVI_COPY_FONTS\"\n    SCRIPT\n  }\nend\n"
  },
  {
    "path": "packages/fontawesome-pro-regular/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProRegular icon set component.\n * Usage: <FontAwesomeProRegular name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProRegular.json';\n\nexport const FontAwesomeProRegular = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Pro-Regular',\n  fontFileName: 'fa-regular-400.ttf',\n});\n\nexport type FontAwesomeProRegularIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProRegular;\n"
  },
  {
    "path": "packages/fontawesome-pro-regular/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProRegular icon set component.\n * Usage: <FontAwesomeProRegular name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProRegular.json';\n\nexport const FontAwesomeProRegular = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Pro-Regular',\n  fontFileName: 'fa-regular-400.ttf',\n});\n\nexport type FontAwesomeProRegularIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProRegular;\n"
  },
  {
    "path": "packages/fontawesome-pro-regular/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-regular/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-light/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontawesome-pro-sharp-duotone-light\",\n    \"upstreamFont\": {\n      \"registry\": \"https://npm.fontawesome.com\",\n      \"packageName\": \"@fortawesome/fontawesome-pro\",\n      \"versionOnly\": true\n    },\n    \"copyCustomFonts\": true,\n    \"className\": \"FontAwesomeProSharpDuotoneLight\",\n    \"postScriptName\": \"FontAwesome7SharpDuotone-Light\",\n    \"fontFileName\": \"fa-sharp-duotone-light-300\",\n    \"buildSteps\": {\n      \"preScript\": {\n        \"script\": \"../fontawesome-common/scripts/fetch-pro.sh 7\"\n      },\n      \"glyphmap\": {\n        \"location\": \"fa/pro/css/all.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fa-\"\n      },\n      \"postScript\": {\n        \"script\": \"../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProSharpDuotoneLight.json fa/pro/svgs/sharp-duotone-light\\nrm -rf fa\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"0.1.0\",\n        \"upstream\": \"7.1.0\"\n      },\n      {\n        \"rnvi\": \"0.1.1\",\n        \"upstream\": \"7.2.0\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-light/CHANGELOG.md",
    "content": "## 0.2.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 0.1.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 0.1.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🩹 Fixes\n\n- upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 0.1.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 0.1.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-light/README.md",
    "content": "# React Native Vector Icons - Fontawesome Pro Sharp Duotone Light\n\nFontawesome Pro Sharp Duotone Light font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n> [!IMPORTANT]\n> This package does not include the fonts. You must provide them yourself.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/fontawesome-pro-sharp-duotone-light\n```\n\n## Custom Fonts\n\nThis package requires you to provide the font files. Place your `.ttf` font\nfile in the following location:\n\n```\nrnvi-fonts/fontawesome-pro-sharp-duotone-light/fa-sharp-duotone-light-300.ttf\n```\n\nThe font will be automatically copied during the build process for both iOS and\nAndroid.\n\n## Usage\n\n```jsx\nimport { FontAwesomeProSharpDuotoneLight } from '@react-native-vector-icons/fontawesome-pro-sharp-duotone-light';\n\n// ...\n\n<FontAwesomeProSharpDuotoneLight name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 0.1.0 | 7.1.0 |\n| &gt; 0.1.1 | 7.2.0 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-light/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.fontawesome_pro_sharp_duotone_light\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFontAwesomeProSharpDuotoneLight\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.fontawesome_pro_sharp_duotone_light\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-fontawesome-pro-sharp-duotone-light\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-duotone-light/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-sharp-duotone-light) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n\ntask copyExtraFonts(type: Copy) {\n  from \"${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-sharp-duotone-light\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-duotone-light/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-sharp-duotone-light) Copying custom font: ${it.file}\" }\n}\n\npreBuild.dependsOn(copyExtraFonts)\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-light/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.fontawesome_pro_sharp_duotone_light\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-light/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-light/android/src/main/java/VectorIconsFontAwesomeProSharpDuotoneLightPackage.kt",
    "content": "package com.reactnativevectoricons.fontawesome_pro_sharp_duotone_light\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFontAwesomeProSharpDuotoneLightPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-light/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-light/glyphmaps/FontAwesomeProSharpDuotoneLight.json",
    "content": "{\n  \"0\": 48,\n  \"1\": 49,\n  \"2\": 50,\n  \"3\": 51,\n  \"4\": 52,\n  \"5\": 53,\n  \"6\": 54,\n  \"7\": 55,\n  \"8\": 56,\n  \"9\": 57,\n  \"100\": 58396,\n  \"00\": 58471,\n  \"360-degrees\": 58076,\n  \"a\": 65,\n  \"abacus\": 63040,\n  \"accent-grave\": 96,\n  \"acorn\": 63150,\n  \"ad\": 63041,\n  \"add\": 43,\n  \"address-book\": 62137,\n  \"address-card\": 62139,\n  \"adjust\": 61506,\n  \"aeropress\": 59435,\n  \"air-conditioner\": 63732,\n  \"air-freshener\": 62928,\n  \"airplay-audio\": 59259,\n  \"airplay\": 57481,\n  \"alarm-clock\": 62286,\n  \"alarm-exclamation\": 63555,\n  \"alarm-minus\": 59395,\n  \"alarm-plus\": 63556,\n  \"alarm-snooze\": 63557,\n  \"album-circle-plus\": 58508,\n  \"album-circle-user\": 58509,\n  \"album-collection-circle-plus\": 58510,\n  \"album-collection-circle-user\": 58511,\n  \"album-collection\": 63648,\n  \"album\": 63647,\n  \"alicorn\": 63152,\n  \"alien-8bit\": 63734,\n  \"alien-monster\": 63734,\n  \"alien\": 63733,\n  \"align-center\": 61495,\n  \"align-justify\": 61497,\n  \"align-left\": 61494,\n  \"align-right\": 61496,\n  \"align-slash\": 63558,\n  \"allergies\": 62561,\n  \"almost-equal-to\": 59416,\n  \"alt\": 57482,\n  \"ambulance\": 61689,\n  \"american-sign-language-interpreting\": 62115,\n  \"amp-guitar\": 63649,\n  \"ampersand\": 38,\n  \"analytics\": 63043,\n  \"anchor-circle-check\": 58538,\n  \"anchor-circle-exclamation\": 58539,\n  \"anchor-circle-xmark\": 58540,\n  \"anchor-lock\": 58541,\n  \"anchor\": 61757,\n  \"angel\": 63353,\n  \"angle-90\": 57485,\n  \"angle-double-down\": 61699,\n  \"angle-double-left\": 61696,\n  \"angle-double-right\": 61697,\n  \"angle-double-up\": 61698,\n  \"angle-down\": 61703,\n  \"angle-left\": 61700,\n  \"angle-right\": 61701,\n  \"angle-up\": 61702,\n  \"angle\": 57484,\n  \"angles-down\": 61699,\n  \"angles-left\": 61696,\n  \"angles-right\": 61697,\n  \"angles-up-down\": 58893,\n  \"angles-up\": 61698,\n  \"angry\": 62806,\n  \"ankh\": 63044,\n  \"ant\": 59008,\n  \"apartment\": 58472,\n  \"aperture\": 58079,\n  \"apostrophe\": 39,\n  \"apple-alt\": 62929,\n  \"apple-core\": 57487,\n  \"apple-crate\": 63153,\n  \"apple-whole\": 62929,\n  \"aquarius\": 59461,\n  \"archive\": 61831,\n  \"archway\": 62807,\n  \"area-chart\": 61950,\n  \"aries\": 59462,\n  \"arrow-alt-circle-down\": 62296,\n  \"arrow-alt-circle-left\": 62297,\n  \"arrow-alt-circle-right\": 62298,\n  \"arrow-alt-circle-up\": 62299,\n  \"arrow-alt-down\": 62292,\n  \"arrow-alt-from-bottom\": 62278,\n  \"arrow-alt-from-left\": 62279,\n  \"arrow-alt-from-right\": 62280,\n  \"arrow-alt-from-top\": 62281,\n  \"arrow-alt-left\": 62293,\n  \"arrow-alt-right\": 62294,\n  \"arrow-alt-square-down\": 62288,\n  \"arrow-alt-square-left\": 62289,\n  \"arrow-alt-square-right\": 62290,\n  \"arrow-alt-square-up\": 62291,\n  \"arrow-alt-to-bottom\": 62282,\n  \"arrow-alt-to-left\": 62283,\n  \"arrow-alt-to-right\": 62284,\n  \"arrow-alt-to-top\": 62285,\n  \"arrow-alt-up\": 62295,\n  \"arrow-archery\": 59449,\n  \"arrow-circle-down\": 61611,\n  \"arrow-circle-left\": 61608,\n  \"arrow-circle-right\": 61609,\n  \"arrow-circle-up\": 61610,\n  \"arrow-down-1-9\": 61794,\n  \"arrow-down-9-1\": 63622,\n  \"arrow-down-a-z\": 61789,\n  \"arrow-down-arrow-up\": 63619,\n  \"arrow-down-big-small\": 63628,\n  \"arrow-down-from-arc\": 58900,\n  \"arrow-down-from-bracket\": 58983,\n  \"arrow-down-from-dotted-line\": 57488,\n  \"arrow-down-from-line\": 62277,\n  \"arrow-down-left-and-arrow-up-right-to-center\": 57490,\n  \"arrow-down-left\": 57489,\n  \"arrow-down-long-to-line\": 59063,\n  \"arrow-down-long\": 61813,\n  \"arrow-down-right\": 57491,\n  \"arrow-down-short-wide\": 63620,\n  \"arrow-down-small-big\": 63629,\n  \"arrow-down-square-triangle\": 63625,\n  \"arrow-down-to-arc\": 58542,\n  \"arrow-down-to-bracket\": 57492,\n  \"arrow-down-to-dotted-line\": 57493,\n  \"arrow-down-to-line\": 62269,\n  \"arrow-down-to-square\": 57494,\n  \"arrow-down-triangle-square\": 63624,\n  \"arrow-down-up-across-line\": 58543,\n  \"arrow-down-up-lock\": 58544,\n  \"arrow-down-wide-short\": 61792,\n  \"arrow-down-z-a\": 63617,\n  \"arrow-down\": 61539,\n  \"arrow-from-bottom\": 62274,\n  \"arrow-from-left\": 62275,\n  \"arrow-from-right\": 62276,\n  \"arrow-from-top\": 62277,\n  \"arrow-left-arrow-right\": 59064,\n  \"arrow-left-from-arc\": 58901,\n  \"arrow-left-from-bracket\": 58984,\n  \"arrow-left-from-dotted-line\": 59065,\n  \"arrow-left-from-line\": 62276,\n  \"arrow-left-long-to-line\": 58324,\n  \"arrow-left-long\": 61815,\n  \"arrow-left-rotate\": 61666,\n  \"arrow-left-to-arc\": 58902,\n  \"arrow-left-to-bracket\": 58985,\n  \"arrow-left-to-dotted-line\": 59066,\n  \"arrow-left-to-line\": 62270,\n  \"arrow-left\": 61536,\n  \"arrow-pointer\": 62021,\n  \"arrow-progress\": 58847,\n  \"arrow-right-arrow-left\": 61676,\n  \"arrow-right-from-arc\": 58545,\n  \"arrow-right-from-bracket\": 61579,\n  \"arrow-right-from-dotted-line\": 59067,\n  \"arrow-right-from-file\": 62830,\n  \"arrow-right-from-line\": 62275,\n  \"arrow-right-long-to-line\": 58325,\n  \"arrow-right-long\": 61816,\n  \"arrow-right-rotate\": 61470,\n  \"arrow-right-to-arc\": 58546,\n  \"arrow-right-to-bracket\": 61584,\n  \"arrow-right-to-city\": 58547,\n  \"arrow-right-to-dotted-line\": 59068,\n  \"arrow-right-to-file\": 62831,\n  \"arrow-right-to-line\": 62272,\n  \"arrow-right\": 61537,\n  \"arrow-rotate-back\": 61666,\n  \"arrow-rotate-backward\": 61666,\n  \"arrow-rotate-forward\": 61470,\n  \"arrow-rotate-left-10\": 59446,\n  \"arrow-rotate-left-15\": 59526,\n  \"arrow-rotate-left-30\": 59527,\n  \"arrow-rotate-left\": 61666,\n  \"arrow-rotate-right-10\": 59447,\n  \"arrow-rotate-right-15\": 59528,\n  \"arrow-rotate-right-30\": 59529,\n  \"arrow-rotate-right\": 61470,\n  \"arrow-square-down\": 62265,\n  \"arrow-square-left\": 62266,\n  \"arrow-square-right\": 62267,\n  \"arrow-square-up\": 62268,\n  \"arrow-to-bottom\": 62269,\n  \"arrow-to-left\": 62270,\n  \"arrow-to-right\": 62272,\n  \"arrow-to-top\": 62273,\n  \"arrow-trend-down\": 57495,\n  \"arrow-trend-up\": 57496,\n  \"arrow-turn-down-left\": 58081,\n  \"arrow-turn-down-right\": 58326,\n  \"arrow-turn-down\": 61769,\n  \"arrow-turn-left-down\": 58931,\n  \"arrow-turn-left-up\": 58932,\n  \"arrow-turn-left\": 58930,\n  \"arrow-turn-right\": 58933,\n  \"arrow-turn-up\": 61768,\n  \"arrow-u-turn-down-left\": 59367,\n  \"arrow-u-turn-down-right\": 59368,\n  \"arrow-u-turn-left-down\": 59369,\n  \"arrow-u-turn-left-up\": 59370,\n  \"arrow-u-turn-right-down\": 59371,\n  \"arrow-u-turn-right-up\": 59372,\n  \"arrow-u-turn-up-left\": 59373,\n  \"arrow-u-turn-up-right\": 59374,\n  \"arrow-up-1-9\": 61795,\n  \"arrow-up-9-1\": 63623,\n  \"arrow-up-a-z\": 61790,\n  \"arrow-up-arrow-down\": 57497,\n  \"arrow-up-big-small\": 63630,\n  \"arrow-up-from-arc\": 58548,\n  \"arrow-up-from-bracket\": 57498,\n  \"arrow-up-from-dotted-line\": 57499,\n  \"arrow-up-from-ground-water\": 58549,\n  \"arrow-up-from-line\": 62274,\n  \"arrow-up-from-square\": 57500,\n  \"arrow-up-from-water-pump\": 58550,\n  \"arrow-up-left-from-circle\": 57502,\n  \"arrow-up-left\": 57501,\n  \"arrow-up-long-to-line\": 59069,\n  \"arrow-up-long\": 61814,\n  \"arrow-up-right-and-arrow-down-left-from-center\": 57504,\n  \"arrow-up-right-dots\": 58551,\n  \"arrow-up-right-from-square\": 61582,\n  \"arrow-up-right\": 57503,\n  \"arrow-up-short-wide\": 63621,\n  \"arrow-up-small-big\": 63631,\n  \"arrow-up-square-triangle\": 63627,\n  \"arrow-up-to-arc\": 58903,\n  \"arrow-up-to-bracket\": 58986,\n  \"arrow-up-to-dotted-line\": 57505,\n  \"arrow-up-to-line\": 62273,\n  \"arrow-up-triangle-square\": 63626,\n  \"arrow-up-wide-short\": 61793,\n  \"arrow-up-z-a\": 63618,\n  \"arrow-up\": 61538,\n  \"arrows-alt-h\": 62263,\n  \"arrows-alt-v\": 62264,\n  \"arrows-alt\": 61618,\n  \"arrows-cross\": 57506,\n  \"arrows-down-to-line\": 58552,\n  \"arrows-down-to-people\": 58553,\n  \"arrows-from-dotted-line\": 57507,\n  \"arrows-from-line\": 57508,\n  \"arrows-h\": 61566,\n  \"arrows-left-right-to-line\": 58554,\n  \"arrows-left-right\": 61566,\n  \"arrows-maximize\": 62237,\n  \"arrows-minimize\": 57509,\n  \"arrows-repeat-1\": 62310,\n  \"arrows-repeat\": 62308,\n  \"arrows-retweet\": 62305,\n  \"arrows-rotate-reverse\": 58928,\n  \"arrows-rotate\": 61473,\n  \"arrows-spin\": 58555,\n  \"arrows-split-up-and-left\": 58556,\n  \"arrows-to-circle\": 58557,\n  \"arrows-to-dot\": 58558,\n  \"arrows-to-dotted-line\": 57510,\n  \"arrows-to-eye\": 58559,\n  \"arrows-to-line\": 57511,\n  \"arrows-turn-right\": 58560,\n  \"arrows-turn-to-dots\": 58561,\n  \"arrows-up-down-left-right\": 61511,\n  \"arrows-up-down\": 61565,\n  \"arrows-up-to-line\": 58562,\n  \"arrows-v\": 61565,\n  \"arrows\": 61511,\n  \"asl-interpreting\": 62115,\n  \"assistive-listening-systems\": 62114,\n  \"asterisk\": 42,\n  \"at\": 64,\n  \"atlas\": 62808,\n  \"atom-alt\": 62931,\n  \"atom-simple\": 62931,\n  \"atom\": 62930,\n  \"audio-description-slash\": 57512,\n  \"audio-description\": 62110,\n  \"austral-sign\": 57513,\n  \"australian-dollar-sign\": 59134,\n  \"automobile\": 61881,\n  \"avocado\": 57514,\n  \"award-simple\": 57515,\n  \"award\": 62809,\n  \"axe-battle\": 63155,\n  \"axe\": 63154,\n  \"b\": 66,\n  \"baby-carriage\": 63357,\n  \"baby\": 63356,\n  \"backpack\": 62932,\n  \"backspace\": 62810,\n  \"backward-fast\": 61513,\n  \"backward-step\": 61512,\n  \"backward\": 61514,\n  \"bacon\": 63461,\n  \"bacteria\": 57433,\n  \"bacterium\": 57434,\n  \"badge-check\": 62262,\n  \"badge-dollar\": 63045,\n  \"badge-percent\": 63046,\n  \"badge-sheriff\": 63650,\n  \"badge\": 62261,\n  \"badger-honey\": 63156,\n  \"badminton\": 58170,\n  \"bag-seedling\": 58866,\n  \"bag-shopping-minus\": 58960,\n  \"bag-shopping-plus\": 58961,\n  \"bag-shopping\": 62096,\n  \"bagel\": 58327,\n  \"bags-shopping\": 63559,\n  \"baguette\": 58328,\n  \"bahai\": 63078,\n  \"baht-sign\": 57516,\n  \"balance-scale-left\": 62741,\n  \"balance-scale-right\": 62742,\n  \"balance-scale\": 62030,\n  \"ball-pile\": 63358,\n  \"ball-yarn\": 59086,\n  \"balloon\": 58083,\n  \"balloons\": 58084,\n  \"ballot-check\": 63283,\n  \"ballot\": 63282,\n  \"ban-bug\": 63481,\n  \"ban-parking\": 62998,\n  \"ban-smoking\": 62797,\n  \"ban\": 61534,\n  \"banana\": 58085,\n  \"band-aid\": 62562,\n  \"bandage\": 62562,\n  \"bangladeshi-taka-sign\": 58086,\n  \"banjo\": 63651,\n  \"bank\": 61852,\n  \"bar-chart\": 61568,\n  \"bar-progress-empty\": 59045,\n  \"bar-progress-full\": 59046,\n  \"bar-progress-half\": 59047,\n  \"bar-progress-quarter\": 59048,\n  \"bar-progress-three-quarters\": 59049,\n  \"bar-progress\": 59044,\n  \"barcode-alt\": 62563,\n  \"barcode-read\": 62564,\n  \"barcode-scan\": 62565,\n  \"barcode\": 61482,\n  \"barn-silo\": 63588,\n  \"barn\": 59079,\n  \"bars-filter\": 57517,\n  \"bars-progress\": 63528,\n  \"bars-sort\": 57518,\n  \"bars-staggered\": 62800,\n  \"bars\": 61641,\n  \"baseball-ball\": 62515,\n  \"baseball-bat-ball\": 62514,\n  \"baseball-bat\": 59365,\n  \"baseball\": 62515,\n  \"basket-shopping-minus\": 58962,\n  \"basket-shopping-plus\": 58963,\n  \"basket-shopping-simple\": 57519,\n  \"basket-shopping\": 62097,\n  \"basketball-ball\": 62516,\n  \"basketball-hoop\": 62517,\n  \"basketball\": 62516,\n  \"bat\": 63157,\n  \"bath\": 62157,\n  \"bathtub\": 62157,\n  \"battery-0\": 62020,\n  \"battery-1\": 57521,\n  \"battery-2\": 62019,\n  \"battery-3\": 62018,\n  \"battery-4\": 62017,\n  \"battery-5\": 62016,\n  \"battery-bolt\": 62326,\n  \"battery-car\": 62943,\n  \"battery-empty\": 62020,\n  \"battery-exclamation\": 57520,\n  \"battery-full\": 62016,\n  \"battery-half\": 62018,\n  \"battery-low\": 57521,\n  \"battery-quarter\": 62019,\n  \"battery-slash\": 62327,\n  \"battery-three-quarters\": 62017,\n  \"battery\": 62016,\n  \"bed-alt\": 63735,\n  \"bed-bunk\": 63736,\n  \"bed-empty\": 63737,\n  \"bed-front\": 63735,\n  \"bed-pulse\": 62599,\n  \"bed\": 62006,\n  \"bee\": 57522,\n  \"beer-foam\": 57523,\n  \"beer-mug-empty\": 61692,\n  \"beer-mug\": 57523,\n  \"beer\": 61692,\n  \"bell-concierge\": 62818,\n  \"bell-exclamation\": 63560,\n  \"bell-on\": 63738,\n  \"bell-plus\": 63561,\n  \"bell-ring\": 58924,\n  \"bell-school-slash\": 62934,\n  \"bell-school\": 62933,\n  \"bell-slash\": 61942,\n  \"bell\": 61683,\n  \"bells\": 63359,\n  \"bench-tree\": 58087,\n  \"betamax\": 63652,\n  \"bezier-curve\": 62811,\n  \"bible\": 63047,\n  \"bicep\": 59490,\n  \"bicycle\": 61958,\n  \"biking-mountain\": 63563,\n  \"biking\": 63562,\n  \"billboard\": 58829,\n  \"bin-bottles-recycle\": 58870,\n  \"bin-bottles\": 58869,\n  \"bin-recycle\": 58871,\n  \"bin\": 59235,\n  \"binary-circle-check\": 58172,\n  \"binary-lock\": 58173,\n  \"binary-slash\": 58174,\n  \"binary\": 58171,\n  \"binoculars\": 61925,\n  \"biohazard\": 63360,\n  \"bird\": 58473,\n  \"birthday-cake\": 61949,\n  \"bitcoin-sign\": 57524,\n  \"blackboard\": 62747,\n  \"blanket-fire\": 58330,\n  \"blanket\": 62616,\n  \"blender-phone\": 63158,\n  \"blender\": 62743,\n  \"blind\": 62109,\n  \"blinds-open\": 63740,\n  \"blinds-raised\": 63741,\n  \"blinds\": 63739,\n  \"block-brick-fire\": 58332,\n  \"block-brick\": 58331,\n  \"block-question\": 58333,\n  \"block-quote\": 57525,\n  \"block\": 58474,\n  \"blog\": 63361,\n  \"blueberries\": 58088,\n  \"bluetooth\": 62099,\n  \"bold\": 61490,\n  \"bolt-auto\": 57526,\n  \"bolt-lightning\": 57527,\n  \"bolt-slash\": 57528,\n  \"bolt\": 61671,\n  \"bomb\": 61922,\n  \"bone-break\": 62936,\n  \"bone\": 62935,\n  \"bong\": 62812,\n  \"book-alt\": 62937,\n  \"book-arrow-right\": 57529,\n  \"book-arrow-up\": 57530,\n  \"book-atlas\": 62808,\n  \"book-bible\": 63047,\n  \"book-blank\": 62937,\n  \"book-bookmark\": 57531,\n  \"book-circle-arrow-right\": 57532,\n  \"book-circle-arrow-up\": 57533,\n  \"book-circle\": 57599,\n  \"book-copy\": 57534,\n  \"book-dead\": 63159,\n  \"book-font\": 57535,\n  \"book-heart\": 62617,\n  \"book-journal-whills\": 63082,\n  \"book-law\": 57537,\n  \"book-medical\": 63462,\n  \"book-open-alt\": 57536,\n  \"book-open-cover\": 57536,\n  \"book-open-lines\": 59219,\n  \"book-open-reader\": 62938,\n  \"book-open\": 62744,\n  \"book-quran\": 63111,\n  \"book-reader\": 62938,\n  \"book-section\": 57537,\n  \"book-skull\": 63159,\n  \"book-sparkles\": 63160,\n  \"book-spells\": 63160,\n  \"book-spine\": 59220,\n  \"book-tanakh\": 63527,\n  \"book-user\": 63463,\n  \"book\": 61485,\n  \"bookmark-circle\": 57600,\n  \"bookmark-plus\": 59221,\n  \"bookmark-slash\": 57538,\n  \"bookmark\": 61486,\n  \"books-medical\": 63464,\n  \"books\": 62939,\n  \"boombox\": 63653,\n  \"boot-heeled\": 58175,\n  \"boot\": 63362,\n  \"booth-curtain\": 63284,\n  \"border-all\": 63564,\n  \"border-bottom-right\": 63572,\n  \"border-bottom\": 63565,\n  \"border-center-h\": 63644,\n  \"border-center-v\": 63645,\n  \"border-inner\": 63566,\n  \"border-left\": 63567,\n  \"border-none\": 63568,\n  \"border-outer\": 63569,\n  \"border-right\": 63570,\n  \"border-style-alt\": 63572,\n  \"border-style\": 63571,\n  \"border-top-left\": 63571,\n  \"border-top\": 63573,\n  \"bore-hole\": 58563,\n  \"bottle-baby\": 58995,\n  \"bottle-droplet\": 58564,\n  \"bottle-water\": 58565,\n  \"bow-archery\": 59450,\n  \"bow-arrow\": 63161,\n  \"bowl-chopsticks-noodles\": 58090,\n  \"bowl-chopsticks\": 58089,\n  \"bowl-food\": 58566,\n  \"bowl-hot\": 63523,\n  \"bowl-rice\": 58091,\n  \"bowl-salad\": 63518,\n  \"bowl-scoop\": 58334,\n  \"bowl-scoops\": 58335,\n  \"bowl-shaved-ice\": 58334,\n  \"bowl-soft-serve\": 58475,\n  \"bowl-spoon\": 58336,\n  \"bowling-ball-pin\": 57539,\n  \"bowling-ball\": 62518,\n  \"bowling-pins\": 62519,\n  \"box-alt\": 62618,\n  \"box-archive\": 61831,\n  \"box-arrow-down-arrow-up\": 59285,\n  \"box-arrow-down-magnifying-glass\": 59286,\n  \"box-arrow-down\": 59284,\n  \"box-arrow-up\": 59431,\n  \"box-ballot\": 63285,\n  \"box-check\": 62567,\n  \"box-circle-check\": 57540,\n  \"box-dollar\": 62624,\n  \"box-fragile\": 62619,\n  \"box-full\": 62620,\n  \"box-heart\": 62621,\n  \"box-isometric-tape\": 59288,\n  \"box-isometric\": 59287,\n  \"box-magnifying-glass\": 59432,\n  \"box-open-full\": 62620,\n  \"box-open\": 62622,\n  \"box-taped\": 62618,\n  \"box-tissue\": 57435,\n  \"box-up\": 62623,\n  \"box-usd\": 62624,\n  \"box\": 62566,\n  \"boxes-alt\": 62568,\n  \"boxes-packing\": 58567,\n  \"boxes-stacked\": 62568,\n  \"boxes\": 62568,\n  \"boxing-glove\": 62520,\n  \"bra\": 59087,\n  \"bracket-curly-left\": 123,\n  \"bracket-curly-right\": 125,\n  \"bracket-curly\": 123,\n  \"bracket-left\": 91,\n  \"bracket-round-right\": 41,\n  \"bracket-round\": 40,\n  \"bracket-square-right\": 93,\n  \"bracket-square\": 91,\n  \"bracket\": 91,\n  \"brackets-curly\": 63466,\n  \"brackets-round\": 57541,\n  \"brackets-square\": 63465,\n  \"brackets\": 63465,\n  \"braille\": 62113,\n  \"brain-arrow-curved-right\": 63095,\n  \"brain-circuit\": 57542,\n  \"brain\": 62940,\n  \"brake-warning\": 57543,\n  \"brazilian-real-sign\": 58476,\n  \"bread-loaf\": 63467,\n  \"bread-slice-butter\": 58337,\n  \"bread-slice\": 63468,\n  \"bridge-circle-check\": 58569,\n  \"bridge-circle-exclamation\": 58570,\n  \"bridge-circle-xmark\": 58571,\n  \"bridge-lock\": 58572,\n  \"bridge-suspension\": 58573,\n  \"bridge-water\": 58574,\n  \"bridge\": 58568,\n  \"briefcase-arrow-right\": 58098,\n  \"briefcase-blank\": 57544,\n  \"briefcase-clock\": 63050,\n  \"briefcase-medical\": 62569,\n  \"briefcase\": 61617,\n  \"briefs\": 59088,\n  \"brightness-low\": 57546,\n  \"brightness\": 57545,\n  \"bring-forward\": 63574,\n  \"bring-front\": 63575,\n  \"broadcast-tower\": 62745,\n  \"broccoli\": 58338,\n  \"broom-ball\": 62552,\n  \"broom-wide\": 58833,\n  \"broom\": 62746,\n  \"browser\": 62334,\n  \"browsers\": 57547,\n  \"brush\": 62813,\n  \"bucket\": 58575,\n  \"bug-slash\": 58512,\n  \"bug\": 61832,\n  \"bugs\": 58576,\n  \"building-circle-arrow-right\": 58577,\n  \"building-circle-check\": 58578,\n  \"building-circle-exclamation\": 58579,\n  \"building-circle-xmark\": 58580,\n  \"building-columns\": 61852,\n  \"building-flag\": 58581,\n  \"building-lock\": 58582,\n  \"building-magnifying-glass\": 58908,\n  \"building-memo\": 58910,\n  \"building-ngo\": 58583,\n  \"building-shield\": 58584,\n  \"building-un\": 58585,\n  \"building-user\": 58586,\n  \"building-wheat\": 58587,\n  \"building\": 61869,\n  \"buildings\": 57548,\n  \"bulldozer\": 58965,\n  \"bullhorn\": 61601,\n  \"bullseye-arrow\": 63048,\n  \"bullseye-pointer\": 63049,\n  \"bullseye\": 61760,\n  \"buoy-mooring\": 58806,\n  \"buoy\": 58805,\n  \"burger-cheese\": 63473,\n  \"burger-fries\": 57549,\n  \"burger-glass\": 57550,\n  \"burger-lettuce\": 58339,\n  \"burger-soda\": 63576,\n  \"burger\": 63493,\n  \"burn\": 62570,\n  \"burrito\": 63469,\n  \"burst-new\": 59512,\n  \"burst\": 58588,\n  \"bus-alt\": 62814,\n  \"bus-school\": 62941,\n  \"bus-side\": 59421,\n  \"bus-simple\": 62814,\n  \"bus-stop\": 59422,\n  \"bus\": 61959,\n  \"business-front\": 58460,\n  \"business-time\": 63050,\n  \"butter\": 58340,\n  \"butterfly\": 59409,\n  \"c\": 67,\n  \"cab\": 61882,\n  \"cabin\": 58477,\n  \"cabinet-filing\": 63051,\n  \"cable-car\": 63450,\n  \"cactus\": 63655,\n  \"caduceus\": 59009,\n  \"cake-candles\": 61949,\n  \"cake-slice\": 58341,\n  \"cake\": 61949,\n  \"calculator-alt\": 63052,\n  \"calculator-simple\": 63052,\n  \"calculator\": 61932,\n  \"calendar-alt\": 61555,\n  \"calendar-arrow-down\": 57552,\n  \"calendar-arrow-up\": 57553,\n  \"calendar-check\": 62068,\n  \"calendar-circle-exclamation\": 58478,\n  \"calendar-circle-minus\": 58479,\n  \"calendar-circle-plus\": 58480,\n  \"calendar-circle-user\": 58481,\n  \"calendar-circle\": 57602,\n  \"calendar-clock\": 57554,\n  \"calendar-day\": 63363,\n  \"calendar-days\": 61555,\n  \"calendar-download\": 57552,\n  \"calendar-edit\": 62259,\n  \"calendar-exclamation\": 62260,\n  \"calendar-heart\": 57555,\n  \"calendar-image\": 57556,\n  \"calendar-lines-pen\": 58482,\n  \"calendar-lines\": 57557,\n  \"calendar-minus\": 62066,\n  \"calendar-note\": 57557,\n  \"calendar-pen\": 62259,\n  \"calendar-plus\": 62065,\n  \"calendar-range\": 57558,\n  \"calendar-star\": 63286,\n  \"calendar-time\": 57554,\n  \"calendar-times\": 62067,\n  \"calendar-upload\": 57553,\n  \"calendar-users\": 58850,\n  \"calendar-week\": 63364,\n  \"calendar-xmark\": 62067,\n  \"calendar\": 61747,\n  \"calendars\": 57559,\n  \"camcorder\": 63656,\n  \"camera-alt\": 61488,\n  \"camera-cctv\": 63660,\n  \"camera-circle-ellipsis\": 59238,\n  \"camera-circle\": 57603,\n  \"camera-clock\": 59239,\n  \"camera-home\": 63742,\n  \"camera-movie\": 63657,\n  \"camera-polaroid\": 63658,\n  \"camera-retro\": 61571,\n  \"camera-rotate\": 57560,\n  \"camera-security\": 63742,\n  \"camera-shutter\": 59240,\n  \"camera-slash\": 57561,\n  \"camera-viewfinder\": 57562,\n  \"camera-web-slash\": 63539,\n  \"camera-web\": 63538,\n  \"camera\": 61488,\n  \"campfire\": 63162,\n  \"campground\": 63163,\n  \"can-food\": 58342,\n  \"cancel\": 61534,\n  \"cancer\": 59463,\n  \"candle-holder\": 63164,\n  \"candy-bar\": 58344,\n  \"candy-cane\": 63366,\n  \"candy-corn\": 63165,\n  \"candy\": 58343,\n  \"cannabis\": 62815,\n  \"cannon\": 58946,\n  \"canoe-person\": 59548,\n  \"capricorn\": 59464,\n  \"capsule\": 59226,\n  \"capsules\": 62571,\n  \"car-alt\": 62942,\n  \"car-battery\": 62943,\n  \"car-bolt\": 58177,\n  \"car-building\": 63577,\n  \"car-bump\": 62944,\n  \"car-burst\": 62945,\n  \"car-bus\": 63578,\n  \"car-circle-bolt\": 58178,\n  \"car-crash\": 62945,\n  \"car-garage\": 62946,\n  \"car-key\": 59328,\n  \"car-mechanic\": 62947,\n  \"car-mirrors\": 58179,\n  \"car-on\": 58589,\n  \"car-people\": 59036,\n  \"car-rear\": 62942,\n  \"car-side-bolt\": 58180,\n  \"car-side\": 62948,\n  \"car-siren-on\": 59330,\n  \"car-siren\": 59329,\n  \"car-tilt\": 62949,\n  \"car-tunnel\": 58590,\n  \"car-wash\": 62950,\n  \"car-wrench\": 62947,\n  \"car\": 61881,\n  \"caravan-alt\": 57344,\n  \"caravan-simple\": 57344,\n  \"caravan\": 63743,\n  \"card-club\": 58345,\n  \"card-diamond\": 58346,\n  \"card-heart\": 58347,\n  \"card-spade\": 58348,\n  \"cards-blank\": 58591,\n  \"cards\": 58349,\n  \"caret-circle-down\": 62253,\n  \"caret-circle-left\": 62254,\n  \"caret-circle-right\": 62256,\n  \"caret-circle-up\": 62257,\n  \"caret-down\": 61655,\n  \"caret-large-down\": 59436,\n  \"caret-large-left\": 59437,\n  \"caret-large-right\": 59438,\n  \"caret-large-up\": 59439,\n  \"caret-left\": 61657,\n  \"caret-right\": 61658,\n  \"caret-square-down\": 61776,\n  \"caret-square-left\": 61841,\n  \"caret-square-right\": 61778,\n  \"caret-square-up\": 61777,\n  \"caret-up\": 61656,\n  \"carpool\": 59036,\n  \"carriage-baby\": 63357,\n  \"carrot\": 63367,\n  \"cars\": 63579,\n  \"cart-arrow-down\": 61976,\n  \"cart-arrow-up\": 58350,\n  \"cart-circle-arrow-down\": 58351,\n  \"cart-circle-arrow-up\": 58352,\n  \"cart-circle-check\": 58353,\n  \"cart-circle-exclamation\": 58354,\n  \"cart-circle-plus\": 58355,\n  \"cart-circle-xmark\": 58356,\n  \"cart-flatbed-boxes\": 62581,\n  \"cart-flatbed-empty\": 62582,\n  \"cart-flatbed-suitcase\": 62877,\n  \"cart-flatbed\": 62580,\n  \"cart-minus\": 57563,\n  \"cart-plus\": 61975,\n  \"cart-shopping-fast\": 57564,\n  \"cart-shopping\": 61562,\n  \"cart-xmark\": 57565,\n  \"cash-register\": 63368,\n  \"cassette-betamax\": 63652,\n  \"cassette-tape\": 63659,\n  \"cassette-vhs\": 63724,\n  \"castle\": 57566,\n  \"cat-space\": 57345,\n  \"cat\": 63166,\n  \"cauldron\": 63167,\n  \"cctv\": 63660,\n  \"cedi-sign\": 57567,\n  \"cent-sign\": 58357,\n  \"certificate\": 61603,\n  \"chain-broken\": 61735,\n  \"chain-horizontal-slash\": 57804,\n  \"chain-horizontal\": 57803,\n  \"chain-slash\": 61735,\n  \"chain\": 61633,\n  \"chair-office\": 63169,\n  \"chair\": 63168,\n  \"chalkboard-teacher\": 62748,\n  \"chalkboard-user\": 62748,\n  \"chalkboard\": 62747,\n  \"champagne-glass\": 63390,\n  \"champagne-glasses\": 63391,\n  \"charging-station\": 62951,\n  \"chart-area\": 61950,\n  \"chart-bar\": 61568,\n  \"chart-bullet\": 57569,\n  \"chart-candlestick\": 57570,\n  \"chart-column\": 57571,\n  \"chart-diagram\": 59029,\n  \"chart-fft\": 59038,\n  \"chart-gantt\": 57572,\n  \"chart-kanban\": 58959,\n  \"chart-line-down\": 63053,\n  \"chart-line-up-down\": 58839,\n  \"chart-line-up\": 57573,\n  \"chart-line\": 61953,\n  \"chart-mixed-up-circle-currency\": 58840,\n  \"chart-mixed-up-circle-dollar\": 58841,\n  \"chart-mixed\": 63043,\n  \"chart-network\": 63370,\n  \"chart-pie-alt\": 63054,\n  \"chart-pie-simple-circle-currency\": 58884,\n  \"chart-pie-simple-circle-dollar\": 58885,\n  \"chart-pie-simple\": 63054,\n  \"chart-pie\": 61952,\n  \"chart-pyramid\": 57574,\n  \"chart-radar\": 57575,\n  \"chart-scatter-3d\": 57576,\n  \"chart-scatter-bubble\": 57577,\n  \"chart-scatter\": 63470,\n  \"chart-simple-horizontal\": 58484,\n  \"chart-simple\": 58483,\n  \"chart-sine\": 59037,\n  \"chart-tree-map\": 57578,\n  \"chart-user\": 63139,\n  \"chart-waterfall\": 57579,\n  \"check-circle\": 61528,\n  \"check-double\": 62816,\n  \"check-square\": 61770,\n  \"check-to-slot\": 63346,\n  \"check\": 61452,\n  \"cheese-swiss\": 63472,\n  \"cheese\": 63471,\n  \"cheeseburger\": 63473,\n  \"chemex\": 59440,\n  \"cherries\": 57580,\n  \"chess-bishop-alt\": 62523,\n  \"chess-bishop-piece\": 62523,\n  \"chess-bishop\": 62522,\n  \"chess-board\": 62524,\n  \"chess-clock-alt\": 62526,\n  \"chess-clock-flip\": 62526,\n  \"chess-clock\": 62525,\n  \"chess-king-alt\": 62528,\n  \"chess-king-piece\": 62528,\n  \"chess-king\": 62527,\n  \"chess-knight-alt\": 62530,\n  \"chess-knight-piece\": 62530,\n  \"chess-knight\": 62529,\n  \"chess-pawn-alt\": 62532,\n  \"chess-pawn-piece\": 62532,\n  \"chess-pawn\": 62531,\n  \"chess-queen-alt\": 62534,\n  \"chess-queen-piece\": 62534,\n  \"chess-queen\": 62533,\n  \"chess-rook-alt\": 62536,\n  \"chess-rook-piece\": 62536,\n  \"chess-rook\": 62535,\n  \"chess\": 62521,\n  \"chest-drawers\": 59523,\n  \"chestnut\": 58358,\n  \"chevron-circle-down\": 61754,\n  \"chevron-circle-left\": 61751,\n  \"chevron-circle-right\": 61752,\n  \"chevron-circle-up\": 61753,\n  \"chevron-double-down\": 62242,\n  \"chevron-double-left\": 62243,\n  \"chevron-double-right\": 62244,\n  \"chevron-double-up\": 62245,\n  \"chevron-down\": 61560,\n  \"chevron-left\": 61523,\n  \"chevron-right\": 61524,\n  \"chevron-square-down\": 62249,\n  \"chevron-square-left\": 62250,\n  \"chevron-square-right\": 62251,\n  \"chevron-square-up\": 62252,\n  \"chevron-up\": 61559,\n  \"chevrons-down\": 62242,\n  \"chevrons-left\": 62243,\n  \"chevrons-right\": 62244,\n  \"chevrons-up\": 62245,\n  \"chf-sign\": 58882,\n  \"child-combatant\": 58592,\n  \"child-dress\": 58780,\n  \"child-reaching\": 58781,\n  \"child-rifle\": 58592,\n  \"child\": 61870,\n  \"children\": 58593,\n  \"chimney\": 63371,\n  \"chocolate-bar\": 58344,\n  \"chopsticks\": 58359,\n  \"church\": 62749,\n  \"circle-0\": 57581,\n  \"circle-1\": 57582,\n  \"circle-2\": 57583,\n  \"circle-3\": 57584,\n  \"circle-4\": 57585,\n  \"circle-5\": 57586,\n  \"circle-6\": 57587,\n  \"circle-7\": 57588,\n  \"circle-8\": 57589,\n  \"circle-9\": 57590,\n  \"circle-a\": 57591,\n  \"circle-ampersand\": 57592,\n  \"circle-arrow-down-left\": 57593,\n  \"circle-arrow-down-right\": 57594,\n  \"circle-arrow-down\": 61611,\n  \"circle-arrow-left\": 61608,\n  \"circle-arrow-right\": 61609,\n  \"circle-arrow-up-left\": 57595,\n  \"circle-arrow-up-right\": 57596,\n  \"circle-arrow-up\": 61610,\n  \"circle-austral\": 59163,\n  \"circle-australian-dollar\": 59184,\n  \"circle-b\": 57597,\n  \"circle-baht\": 59181,\n  \"circle-bangladeshi-taka\": 59137,\n  \"circle-bitcoin\": 59191,\n  \"circle-bolt\": 57598,\n  \"circle-book-open\": 57599,\n  \"circle-bookmark\": 57600,\n  \"circle-brazilian-real\": 59115,\n  \"circle-c\": 57601,\n  \"circle-calendar\": 57602,\n  \"circle-camera\": 57603,\n  \"circle-caret-down\": 62253,\n  \"circle-caret-left\": 62254,\n  \"circle-caret-right\": 62256,\n  \"circle-caret-up\": 62257,\n  \"circle-cedi\": 59202,\n  \"circle-cent\": 59178,\n  \"circle-check\": 61528,\n  \"circle-chevron-down\": 61754,\n  \"circle-chevron-left\": 61751,\n  \"circle-chevron-right\": 61752,\n  \"circle-chevron-up\": 61753,\n  \"circle-chf\": 59180,\n  \"circle-colon\": 59132,\n  \"circle-cruzeiro\": 59170,\n  \"circle-currency\": 59118,\n  \"circle-d\": 57604,\n  \"circle-danish-krone\": 59206,\n  \"circle-dashed\": 57605,\n  \"circle-divide\": 57606,\n  \"circle-dollar-to-slot\": 62649,\n  \"circle-dollar\": 62184,\n  \"circle-dong\": 59171,\n  \"circle-dot\": 61842,\n  \"circle-down-left\": 57607,\n  \"circle-down-right\": 57608,\n  \"circle-down\": 62296,\n  \"circle-e\": 57609,\n  \"circle-ellipsis-vertical\": 57611,\n  \"circle-ellipsis\": 57610,\n  \"circle-envelope\": 57612,\n  \"circle-equals\": 59057,\n  \"circle-euro\": 58830,\n  \"circle-eurozone\": 59205,\n  \"circle-exclamation-check\": 57613,\n  \"circle-exclamation\": 61546,\n  \"circle-f\": 57614,\n  \"circle-florin\": 59108,\n  \"circle-franc\": 59169,\n  \"circle-g\": 57615,\n  \"circle-gf\": 59007,\n  \"circle-guarani\": 59195,\n  \"circle-h\": 62590,\n  \"circle-half-horizontal\": 59404,\n  \"circle-half-stroke-horizontal\": 59405,\n  \"circle-half-stroke\": 61506,\n  \"circle-half\": 57616,\n  \"circle-heart\": 62663,\n  \"circle-house\": 59080,\n  \"circle-hryvnia\": 59119,\n  \"circle-i\": 57617,\n  \"circle-indian-rupee\": 59188,\n  \"circle-info\": 61530,\n  \"circle-j\": 57618,\n  \"circle-k\": 57619,\n  \"circle-kip\": 59133,\n  \"circle-l\": 57620,\n  \"circle-lari\": 59165,\n  \"circle-left\": 62297,\n  \"circle-lira\": 59126,\n  \"circle-litecoin\": 59124,\n  \"circle-location-arrow\": 62978,\n  \"circle-m\": 57621,\n  \"circle-malaysian-ringgit\": 59129,\n  \"circle-manat\": 59131,\n  \"circle-microphone-lines\": 57623,\n  \"circle-microphone\": 57622,\n  \"circle-mill\": 59138,\n  \"circle-minus\": 61526,\n  \"circle-moon\": 59360,\n  \"circle-n\": 57624,\n  \"circle-naira\": 59209,\n  \"circle-nodes\": 58594,\n  \"circle-norwegian-krone\": 59192,\n  \"circle-notch\": 61902,\n  \"circle-o\": 57625,\n  \"circle-p\": 57626,\n  \"circle-parking\": 62997,\n  \"circle-pause\": 62091,\n  \"circle-peruvian-soles\": 59123,\n  \"circle-peseta\": 59201,\n  \"circle-peso\": 59135,\n  \"circle-phone-flip\": 57628,\n  \"circle-phone-hangup\": 57629,\n  \"circle-phone\": 57627,\n  \"circle-play\": 61764,\n  \"circle-plus\": 61525,\n  \"circle-polish-zloty\": 59136,\n  \"circle-q\": 57630,\n  \"circle-quarter-stroke\": 58835,\n  \"circle-quarter\": 57631,\n  \"circle-quarters\": 58360,\n  \"circle-question\": 61529,\n  \"circle-r\": 57632,\n  \"circle-radiation\": 63418,\n  \"circle-renminbi\": 59113,\n  \"circle-right\": 62298,\n  \"circle-ruble\": 59109,\n  \"circle-rupee\": 59156,\n  \"circle-rupiah\": 59142,\n  \"circle-s\": 57633,\n  \"circle-share-nodes\": 59099,\n  \"circle-shekel\": 59139,\n  \"circle-small\": 57634,\n  \"circle-sort-down\": 57393,\n  \"circle-sort-up\": 57394,\n  \"circle-sort\": 57392,\n  \"circle-star\": 57635,\n  \"circle-sterling\": 58831,\n  \"circle-stop\": 62093,\n  \"circle-swedish-krona\": 59203,\n  \"circle-t\": 57636,\n  \"circle-tenge\": 59173,\n  \"circle-three-quarters-stroke\": 58836,\n  \"circle-three-quarters\": 57637,\n  \"circle-trash\": 57638,\n  \"circle-tugrik\": 59153,\n  \"circle-turkish-lira\": 59193,\n  \"circle-u\": 57639,\n  \"circle-up-left\": 57640,\n  \"circle-up-right\": 57641,\n  \"circle-up\": 62299,\n  \"circle-user-circle-check\": 59295,\n  \"circle-user-circle-exclamation\": 59296,\n  \"circle-user-circle-minus\": 59297,\n  \"circle-user-circle-moon\": 59298,\n  \"circle-user-circle-plus\": 59299,\n  \"circle-user-circle-question\": 59300,\n  \"circle-user-circle-user\": 59301,\n  \"circle-user-circle-xmark\": 59302,\n  \"circle-user-clock\": 59303,\n  \"circle-user\": 62141,\n  \"circle-v\": 57642,\n  \"circle-video\": 57643,\n  \"circle-w\": 57644,\n  \"circle-waveform-lines\": 57645,\n  \"circle-wifi-circle-wifi\": 59006,\n  \"circle-wifi-group\": 59006,\n  \"circle-wifi\": 59005,\n  \"circle-won\": 59116,\n  \"circle-x\": 57646,\n  \"circle-xmark\": 61527,\n  \"circle-y\": 57647,\n  \"circle-yen\": 58832,\n  \"circle-z\": 57648,\n  \"circle\": 61713,\n  \"circleapore-dollar\": 59166,\n  \"circles-overlap-3\": 59041,\n  \"circles-overlap\": 58880,\n  \"citrus-slice\": 58101,\n  \"citrus\": 58100,\n  \"city\": 63055,\n  \"clapperboard-play\": 57650,\n  \"clapperboard\": 57649,\n  \"clarinet\": 63661,\n  \"claw-marks\": 63170,\n  \"clinic-medical\": 63474,\n  \"clipboard-check\": 62572,\n  \"clipboard-clock\": 59222,\n  \"clipboard-exclamation\": 59223,\n  \"clipboard-list-check\": 63287,\n  \"clipboard-list\": 62573,\n  \"clipboard-medical\": 57651,\n  \"clipboard-prescription\": 62952,\n  \"clipboard-question\": 58595,\n  \"clipboard-user\": 63475,\n  \"clipboard\": 62248,\n  \"clock-desk\": 57652,\n  \"clock-eight-thirty\": 58182,\n  \"clock-eight\": 58181,\n  \"clock-eleven-thirty\": 58184,\n  \"clock-eleven\": 58183,\n  \"clock-five-thirty\": 58186,\n  \"clock-five\": 58185,\n  \"clock-four-thirty\": 58187,\n  \"clock-four\": 61463,\n  \"clock-nine-thirty\": 58189,\n  \"clock-nine\": 58188,\n  \"clock-one-thirty\": 58191,\n  \"clock-one\": 58190,\n  \"clock-rotate-left\": 61914,\n  \"clock-seven-thirty\": 58193,\n  \"clock-seven\": 58192,\n  \"clock-six-thirty\": 58195,\n  \"clock-six\": 58194,\n  \"clock-ten-thirty\": 58197,\n  \"clock-ten\": 58196,\n  \"clock-three-thirty\": 58199,\n  \"clock-three\": 58198,\n  \"clock-twelve-thirty\": 58201,\n  \"clock-twelve\": 58200,\n  \"clock-two-thirty\": 58203,\n  \"clock-two\": 58202,\n  \"clock\": 61463,\n  \"clone-plus\": 59212,\n  \"clone\": 62029,\n  \"close\": 61453,\n  \"closed-captioning-slash\": 57653,\n  \"closed-captioning\": 61962,\n  \"clothes-hanger\": 57654,\n  \"cloud-arrow-down\": 61677,\n  \"cloud-arrow-up\": 61678,\n  \"cloud-binary\": 58881,\n  \"cloud-bolt-moon\": 63341,\n  \"cloud-bolt-sun\": 63342,\n  \"cloud-bolt\": 63340,\n  \"cloud-check\": 58204,\n  \"cloud-download-alt\": 61677,\n  \"cloud-download\": 61677,\n  \"cloud-drizzle\": 63288,\n  \"cloud-exclamation\": 58513,\n  \"cloud-fog\": 63310,\n  \"cloud-hail-mixed\": 63290,\n  \"cloud-hail\": 63289,\n  \"cloud-meatball\": 63291,\n  \"cloud-minus\": 58205,\n  \"cloud-moon-rain\": 63292,\n  \"cloud-moon\": 63171,\n  \"cloud-music\": 63662,\n  \"cloud-plus\": 58206,\n  \"cloud-question\": 58514,\n  \"cloud-rain\": 63293,\n  \"cloud-rainbow\": 63294,\n  \"cloud-showers-heavy\": 63296,\n  \"cloud-showers-water\": 58596,\n  \"cloud-showers\": 63295,\n  \"cloud-slash\": 57655,\n  \"cloud-sleet\": 63297,\n  \"cloud-snow\": 63298,\n  \"cloud-sun-rain\": 63299,\n  \"cloud-sun\": 63172,\n  \"cloud-upload-alt\": 61678,\n  \"cloud-upload\": 61678,\n  \"cloud-word\": 57656,\n  \"cloud-xmark\": 58207,\n  \"cloud\": 61634,\n  \"clouds-moon\": 63301,\n  \"clouds-sun\": 63302,\n  \"clouds\": 63300,\n  \"clover\": 57657,\n  \"club\": 62247,\n  \"cny\": 61783,\n  \"cocktail\": 62817,\n  \"coconut\": 58102,\n  \"code-branch\": 61734,\n  \"code-commit\": 62342,\n  \"code-compare\": 57658,\n  \"code-fork\": 57659,\n  \"code-merge\": 62343,\n  \"code-pull-request-closed\": 58361,\n  \"code-pull-request-draft\": 58362,\n  \"code-pull-request\": 57660,\n  \"code-simple\": 57661,\n  \"code\": 61729,\n  \"coffee-bean\": 57662,\n  \"coffee-beans\": 57663,\n  \"coffee-pot\": 57346,\n  \"coffee-togo\": 63173,\n  \"coffee\": 61684,\n  \"coffin-cross\": 57425,\n  \"coffin\": 63174,\n  \"cog\": 61459,\n  \"cogs\": 61573,\n  \"coin-blank\": 58363,\n  \"coin-front\": 58364,\n  \"coin-vertical\": 58365,\n  \"coin\": 63580,\n  \"coins\": 62750,\n  \"colon-sign\": 57664,\n  \"colon\": 58,\n  \"columns-3\": 58209,\n  \"columns\": 61659,\n  \"comet\": 57347,\n  \"comma\": 44,\n  \"command\": 57666,\n  \"comment-alt-arrow-down\": 57819,\n  \"comment-alt-arrow-up\": 57820,\n  \"comment-alt-captions\": 57822,\n  \"comment-alt-check\": 62626,\n  \"comment-alt-dollar\": 63056,\n  \"comment-alt-dots\": 62627,\n  \"comment-alt-edit\": 62628,\n  \"comment-alt-exclamation\": 62629,\n  \"comment-alt-image\": 57824,\n  \"comment-alt-lines\": 62630,\n  \"comment-alt-medical\": 63476,\n  \"comment-alt-minus\": 62631,\n  \"comment-alt-music\": 63663,\n  \"comment-alt-plus\": 62632,\n  \"comment-alt-quote\": 57828,\n  \"comment-alt-slash\": 62633,\n  \"comment-alt-smile\": 62634,\n  \"comment-alt-text\": 57830,\n  \"comment-alt-times\": 62635,\n  \"comment-alt\": 62074,\n  \"comment-arrow-down\": 57667,\n  \"comment-arrow-up-right\": 57669,\n  \"comment-arrow-up\": 57668,\n  \"comment-captions\": 57670,\n  \"comment-check\": 62636,\n  \"comment-code\": 57671,\n  \"comment-dollar\": 63057,\n  \"comment-dot\": 59100,\n  \"comment-dots\": 62637,\n  \"comment-edit\": 62638,\n  \"comment-exclamation\": 62639,\n  \"comment-heart\": 58824,\n  \"comment-image\": 57672,\n  \"comment-lines\": 62640,\n  \"comment-medical\": 63477,\n  \"comment-middle-alt\": 57825,\n  \"comment-middle-top-alt\": 57826,\n  \"comment-middle-top\": 57674,\n  \"comment-middle\": 57673,\n  \"comment-minus\": 62641,\n  \"comment-music\": 63664,\n  \"comment-nodes\": 59030,\n  \"comment-pen\": 62638,\n  \"comment-plus\": 62642,\n  \"comment-question\": 57675,\n  \"comment-quote\": 57676,\n  \"comment-slash\": 62643,\n  \"comment-smile\": 62644,\n  \"comment-sms\": 63437,\n  \"comment-text\": 57677,\n  \"comment-times\": 62645,\n  \"comment-waveform\": 59101,\n  \"comment-xmark\": 62645,\n  \"comment\": 61557,\n  \"commenting\": 62637,\n  \"comments-alt-dollar\": 63058,\n  \"comments-alt\": 62646,\n  \"comments-dollar\": 63059,\n  \"comments-question-check\": 57679,\n  \"comments-question\": 57678,\n  \"comments\": 61574,\n  \"compact-disc\": 62751,\n  \"compass-drafting\": 62824,\n  \"compass-slash\": 62953,\n  \"compass\": 61774,\n  \"compress-alt\": 62498,\n  \"compress-arrows-alt\": 63372,\n  \"compress-arrows\": 57509,\n  \"compress-wide\": 62246,\n  \"compress\": 61542,\n  \"computer-classic\": 63665,\n  \"computer-mouse-button-left\": 59341,\n  \"computer-mouse-button-right\": 59342,\n  \"computer-mouse-scrollwheel\": 63693,\n  \"computer-mouse\": 63692,\n  \"computer-speaker\": 63666,\n  \"computer\": 58597,\n  \"concierge-bell\": 62818,\n  \"construction\": 63581,\n  \"contact-book\": 62137,\n  \"contact-card\": 62139,\n  \"container-storage\": 62647,\n  \"conveyor-belt-alt\": 62575,\n  \"conveyor-belt-arm\": 58872,\n  \"conveyor-belt-boxes\": 62575,\n  \"conveyor-belt-empty\": 57680,\n  \"conveyor-belt\": 62574,\n  \"cookie-bite\": 62820,\n  \"cookie\": 62819,\n  \"copy\": 61637,\n  \"copyright\": 61945,\n  \"corn\": 63175,\n  \"corner\": 58366,\n  \"couch-small\": 62668,\n  \"couch\": 62648,\n  \"court-sport\": 58947,\n  \"cow\": 63176,\n  \"cowbell-circle-plus\": 63668,\n  \"cowbell-more\": 63668,\n  \"cowbell\": 63667,\n  \"crab\": 58367,\n  \"crate-apple\": 63153,\n  \"crate-empty\": 57681,\n  \"credit-card-alt\": 61597,\n  \"credit-card-blank\": 62345,\n  \"credit-card-front\": 62346,\n  \"credit-card\": 61597,\n  \"creemee\": 58368,\n  \"cricket-bat-ball\": 62537,\n  \"cricket\": 62537,\n  \"croissant\": 63478,\n  \"crop-alt\": 62821,\n  \"crop-simple\": 62821,\n  \"crop\": 61733,\n  \"cross\": 63060,\n  \"crosshairs-simple\": 58783,\n  \"crosshairs\": 61531,\n  \"crow\": 62752,\n  \"crown\": 62753,\n  \"crutch\": 63479,\n  \"crutches\": 63480,\n  \"cruzeiro-sign\": 57682,\n  \"crystal-ball\": 58210,\n  \"cube\": 61874,\n  \"cubes-stacked\": 58598,\n  \"cubes\": 61875,\n  \"cucumber\": 58369,\n  \"cup-straw-swoosh\": 58212,\n  \"cup-straw\": 58211,\n  \"cup-togo\": 63173,\n  \"cupcake\": 58370,\n  \"curling-stone\": 62538,\n  \"curling\": 62538,\n  \"currency-sign\": 59179,\n  \"custard\": 58371,\n  \"cut\": 61636,\n  \"cutlery\": 62183,\n  \"d\": 68,\n  \"dagger\": 63179,\n  \"danish-krone-sign\": 59168,\n  \"dash\": 58372,\n  \"dashboard\": 63012,\n  \"database\": 61888,\n  \"deaf\": 62116,\n  \"deafness\": 62116,\n  \"debug\": 63481,\n  \"dedent\": 61499,\n  \"deer-rudolph\": 63375,\n  \"deer\": 63374,\n  \"delete-left\": 62810,\n  \"delete-right\": 57684,\n  \"democrat\": 63303,\n  \"desk\": 59518,\n  \"desktop-alt\": 62352,\n  \"desktop-arrow-down\": 57685,\n  \"desktop-code\": 57701,\n  \"desktop-medical\": 57702,\n  \"desktop-slash\": 58106,\n  \"desktop\": 62352,\n  \"dewpoint\": 63304,\n  \"dharmachakra\": 63061,\n  \"diagnoses\": 62576,\n  \"diagram-cells\": 58485,\n  \"diagram-lean-canvas\": 57686,\n  \"diagram-nested\": 57687,\n  \"diagram-next\": 58486,\n  \"diagram-predecessor\": 58487,\n  \"diagram-previous\": 58488,\n  \"diagram-project\": 62786,\n  \"diagram-sankey\": 57688,\n  \"diagram-subtask\": 58489,\n  \"diagram-successor\": 58490,\n  \"diagram-venn\": 57690,\n  \"dial-high\": 57692,\n  \"dial-low\": 57693,\n  \"dial-max\": 57694,\n  \"dial-med-high\": 57691,\n  \"dial-med-low\": 57696,\n  \"dial-med\": 57695,\n  \"dial-min\": 57697,\n  \"dial-off\": 57698,\n  \"dial\": 57691,\n  \"dialpad\": 59340,\n  \"diamond-exclamation\": 58373,\n  \"diamond-half-stroke\": 58808,\n  \"diamond-half\": 58807,\n  \"diamond-turn-right\": 62955,\n  \"diamond\": 61977,\n  \"diamonds-4\": 59019,\n  \"dice-d10\": 63181,\n  \"dice-d12\": 63182,\n  \"dice-d20\": 63183,\n  \"dice-d4\": 63184,\n  \"dice-d6\": 63185,\n  \"dice-d8\": 63186,\n  \"dice-five\": 62755,\n  \"dice-four\": 62756,\n  \"dice-one\": 62757,\n  \"dice-six\": 62758,\n  \"dice-three\": 62759,\n  \"dice-two\": 62760,\n  \"dice\": 62754,\n  \"digging\": 63582,\n  \"digital-tachograph\": 62822,\n  \"dinosaur\": 58878,\n  \"diploma\": 62954,\n  \"direction-left-right\": 59070,\n  \"direction-up-down\": 59071,\n  \"directions\": 62955,\n  \"disc-drive\": 63669,\n  \"disease\": 63482,\n  \"display-arrow-down\": 57700,\n  \"display-chart-up-circle-currency\": 58853,\n  \"display-chart-up-circle-dollar\": 58854,\n  \"display-chart-up\": 58851,\n  \"display-code\": 57701,\n  \"display-medical\": 57702,\n  \"display-slash\": 58106,\n  \"display\": 57699,\n  \"distribute-spacing-horizontal\": 58213,\n  \"distribute-spacing-vertical\": 58214,\n  \"ditto\": 34,\n  \"divide\": 62761,\n  \"dizzy\": 62823,\n  \"dna\": 62577,\n  \"do-not-enter\": 62956,\n  \"dog-leashed\": 63188,\n  \"dog\": 63187,\n  \"dollar-circle\": 62184,\n  \"dollar-sign\": 36,\n  \"dollar-square\": 62185,\n  \"dollar\": 36,\n  \"dolly-box\": 62578,\n  \"dolly-empty\": 62579,\n  \"dolly-flatbed-alt\": 62581,\n  \"dolly-flatbed-empty\": 62582,\n  \"dolly-flatbed\": 62580,\n  \"dolly\": 62578,\n  \"dolphin\": 57704,\n  \"donate\": 62649,\n  \"dong-sign\": 57705,\n  \"donut\": 58374,\n  \"door-closed\": 62762,\n  \"door-open\": 62763,\n  \"dot-circle\": 61842,\n  \"dot\": 59345,\n  \"doughnut\": 58374,\n  \"dove\": 62650,\n  \"down-from-bracket\": 58987,\n  \"down-from-dotted-line\": 58375,\n  \"down-from-line\": 62281,\n  \"down-left-and-up-right-to-center\": 62498,\n  \"down-left\": 57706,\n  \"down-long-to-line\": 59072,\n  \"down-long\": 62217,\n  \"down-right\": 57707,\n  \"down-to-bracket\": 58599,\n  \"down-to-dotted-line\": 58376,\n  \"down-to-line\": 62282,\n  \"down-up\": 59073,\n  \"down\": 62292,\n  \"download\": 61465,\n  \"drafting-compass\": 62824,\n  \"dragon\": 63189,\n  \"draw-circle\": 62957,\n  \"draw-polygon\": 62958,\n  \"draw-square\": 62959,\n  \"dreidel\": 63378,\n  \"dress\": 59089,\n  \"dresser\": 59519,\n  \"drivers-license\": 62146,\n  \"drone-alt\": 63584,\n  \"drone-front\": 63584,\n  \"drone\": 63583,\n  \"droplet-degree\": 63304,\n  \"droplet-percent\": 63312,\n  \"droplet-plus\": 59392,\n  \"droplet-slash\": 62919,\n  \"droplet\": 61507,\n  \"drum-steelpan\": 62826,\n  \"drum\": 62825,\n  \"drumstick-bite\": 63191,\n  \"drumstick\": 63190,\n  \"dryer-alt\": 63586,\n  \"dryer-heat\": 63586,\n  \"dryer\": 63585,\n  \"duck\": 63192,\n  \"dumbbell\": 62539,\n  \"dumpster-fire\": 63380,\n  \"dumpster\": 63379,\n  \"dungeon\": 63193,\n  \"e\": 69,\n  \"ear-circle-checkmark\": 59227,\n  \"ear-deaf\": 62116,\n  \"ear-listen\": 62114,\n  \"ear-muffs\": 63381,\n  \"ear-triangle-exclamation\": 59228,\n  \"ear-waveform\": 59229,\n  \"ear\": 62960,\n  \"earth-africa\": 62844,\n  \"earth-america\": 62845,\n  \"earth-americas\": 62845,\n  \"earth-asia\": 62846,\n  \"earth-europe\": 63394,\n  \"earth-oceania\": 58491,\n  \"earth\": 62845,\n  \"eclipse-alt\": 63306,\n  \"eclipse\": 63305,\n  \"edit\": 61508,\n  \"egg-fried\": 63484,\n  \"egg\": 63483,\n  \"eggplant\": 57708,\n  \"eject\": 61522,\n  \"elephant\": 63194,\n  \"elevator\": 57709,\n  \"ellipsis-h-alt\": 62363,\n  \"ellipsis-h\": 61761,\n  \"ellipsis-stroke-vertical\": 62364,\n  \"ellipsis-stroke\": 62363,\n  \"ellipsis-v-alt\": 62364,\n  \"ellipsis-v\": 61762,\n  \"ellipsis-vertical\": 61762,\n  \"ellipsis\": 61761,\n  \"empty-set\": 63062,\n  \"engine-exclamation\": 62962,\n  \"engine-warning\": 62962,\n  \"engine\": 57710,\n  \"envelope-badge\": 57711,\n  \"envelope-certificate\": 59433,\n  \"envelope-circle-check\": 58600,\n  \"envelope-circle-user\": 59102,\n  \"envelope-circle\": 57612,\n  \"envelope-dot\": 57711,\n  \"envelope-open-dollar\": 63063,\n  \"envelope-open-text\": 63064,\n  \"envelope-open\": 62134,\n  \"envelope-ribbon\": 59433,\n  \"envelope-square\": 61849,\n  \"envelope\": 61664,\n  \"envelopes-bulk\": 63092,\n  \"envelopes\": 57712,\n  \"equals\": 61,\n  \"eraser\": 61741,\n  \"escalator\": 57713,\n  \"ethernet\": 63382,\n  \"eur\": 61779,\n  \"euro-sign\": 61779,\n  \"euro\": 61779,\n  \"eurozone-sign\": 59200,\n  \"excavator\": 58966,\n  \"exchange-alt\": 62306,\n  \"exchange\": 61676,\n  \"exclamation-circle\": 61546,\n  \"exclamation-square\": 62241,\n  \"exclamation-triangle\": 61553,\n  \"exclamation\": 33,\n  \"expand-alt\": 62500,\n  \"expand-arrows-alt\": 62238,\n  \"expand-arrows\": 62237,\n  \"expand-wide\": 62240,\n  \"expand\": 61541,\n  \"exploding-head\": 58110,\n  \"explosion\": 58601,\n  \"external-link-alt\": 62301,\n  \"external-link-square-alt\": 62304,\n  \"external-link-square\": 61772,\n  \"external-link\": 61582,\n  \"eye-closed\": 59451,\n  \"eye-dropper-empty\": 61947,\n  \"eye-dropper-full\": 57714,\n  \"eye-dropper-half\": 57715,\n  \"eye-dropper\": 61947,\n  \"eye-evil\": 63195,\n  \"eye-low-vision\": 62120,\n  \"eye-slash\": 61552,\n  \"eye\": 61550,\n  \"eyedropper\": 61947,\n  \"eyes\": 58215,\n  \"f\": 70,\n  \"face-angry-horns\": 58216,\n  \"face-angry\": 62806,\n  \"face-anguished\": 58217,\n  \"face-anxious-sweat\": 58218,\n  \"face-astonished\": 58219,\n  \"face-awesome\": 58377,\n  \"face-beam-hand-over-mouth\": 58492,\n  \"face-clouds\": 58493,\n  \"face-confounded\": 58220,\n  \"face-confused\": 58221,\n  \"face-cowboy-hat\": 58222,\n  \"face-diagonal-mouth\": 58494,\n  \"face-disappointed\": 58223,\n  \"face-disguise\": 58224,\n  \"face-dizzy\": 62823,\n  \"face-dotted\": 58495,\n  \"face-downcast-sweat\": 58225,\n  \"face-drooling\": 58226,\n  \"face-exhaling\": 58496,\n  \"face-explode\": 58110,\n  \"face-expressionless\": 58227,\n  \"face-eyes-xmarks\": 58228,\n  \"face-fearful\": 58229,\n  \"face-flushed\": 62841,\n  \"face-frown-open\": 62842,\n  \"face-frown-slight\": 58230,\n  \"face-frown\": 61721,\n  \"face-glasses\": 58231,\n  \"face-grimace\": 62847,\n  \"face-grin-beam-sweat\": 62851,\n  \"face-grin-beam\": 62850,\n  \"face-grin-hearts\": 62852,\n  \"face-grin-squint-tears\": 62854,\n  \"face-grin-squint\": 62853,\n  \"face-grin-stars\": 62855,\n  \"face-grin-tears\": 62856,\n  \"face-grin-tongue-squint\": 62858,\n  \"face-grin-tongue-wink\": 62859,\n  \"face-grin-tongue\": 62857,\n  \"face-grin-wide\": 62849,\n  \"face-grin-wink\": 62860,\n  \"face-grin\": 62848,\n  \"face-hand-over-mouth\": 58232,\n  \"face-hand-peeking\": 58497,\n  \"face-hand-yawn\": 58233,\n  \"face-head-bandage\": 58234,\n  \"face-holding-back-tears\": 58498,\n  \"face-hushed\": 58235,\n  \"face-icicles\": 58236,\n  \"face-kiss-beam\": 62871,\n  \"face-kiss-closed-eyes\": 58237,\n  \"face-kiss-wink-heart\": 62872,\n  \"face-kiss\": 62870,\n  \"face-laugh-beam\": 62874,\n  \"face-laugh-squint\": 62875,\n  \"face-laugh-wink\": 62876,\n  \"face-laugh\": 62873,\n  \"face-lying\": 58238,\n  \"face-mask\": 58239,\n  \"face-meh-blank\": 62884,\n  \"face-meh\": 61722,\n  \"face-melting\": 58499,\n  \"face-monocle\": 58240,\n  \"face-nauseated\": 58241,\n  \"face-nose-steam\": 58242,\n  \"face-party\": 58243,\n  \"face-pensive\": 58244,\n  \"face-persevering\": 58245,\n  \"face-pleading\": 58246,\n  \"face-pouting\": 58247,\n  \"face-raised-eyebrow\": 58248,\n  \"face-relieved\": 58249,\n  \"face-rolling-eyes\": 62885,\n  \"face-sad-cry\": 62899,\n  \"face-sad-sweat\": 58250,\n  \"face-sad-tear\": 62900,\n  \"face-saluting\": 58500,\n  \"face-scream\": 58251,\n  \"face-shaking-horizontal\": 59293,\n  \"face-shaking-vertical\": 59294,\n  \"face-shaking\": 59292,\n  \"face-shush\": 58252,\n  \"face-sleeping\": 58253,\n  \"face-sleepy\": 58254,\n  \"face-smile-beam\": 62904,\n  \"face-smile-halo\": 58255,\n  \"face-smile-hearts\": 58256,\n  \"face-smile-horns\": 58257,\n  \"face-smile-plus\": 62905,\n  \"face-smile-relaxed\": 58258,\n  \"face-smile-tear\": 58259,\n  \"face-smile-tongue\": 58260,\n  \"face-smile-upside-down\": 58261,\n  \"face-smile-wink\": 62682,\n  \"face-smile\": 61720,\n  \"face-smiling-hands\": 58262,\n  \"face-smirking\": 58263,\n  \"face-spiral-eyes\": 58501,\n  \"face-sunglasses\": 58264,\n  \"face-surprise\": 62914,\n  \"face-swear\": 58265,\n  \"face-thermometer\": 58266,\n  \"face-thinking\": 58267,\n  \"face-tired\": 62920,\n  \"face-tissue\": 58268,\n  \"face-tongue-money\": 58269,\n  \"face-tongue-sweat\": 58270,\n  \"face-unamused\": 58271,\n  \"face-viewfinder\": 58111,\n  \"face-vomit\": 58272,\n  \"face-weary\": 58273,\n  \"face-woozy\": 58274,\n  \"face-worried\": 58275,\n  \"face-zany\": 58276,\n  \"face-zipper\": 58277,\n  \"falafel\": 58378,\n  \"family-dress\": 58113,\n  \"family-pants\": 58114,\n  \"family\": 58112,\n  \"fan-table\": 57348,\n  \"fan\": 63587,\n  \"farm\": 63588,\n  \"fast-backward\": 61513,\n  \"fast-forward\": 61520,\n  \"faucet-drip\": 57350,\n  \"faucet\": 57349,\n  \"fax\": 61868,\n  \"feather-alt\": 62827,\n  \"feather-pointed\": 62827,\n  \"feather\": 62765,\n  \"feed\": 61598,\n  \"female\": 61826,\n  \"fence\": 58115,\n  \"ferris-wheel\": 57716,\n  \"ferry\": 58602,\n  \"field-hockey-stick-ball\": 62540,\n  \"field-hockey\": 62540,\n  \"fighter-jet\": 61691,\n  \"file-aiff\": 59387,\n  \"file-alt\": 61788,\n  \"file-archive\": 61894,\n  \"file-arrow-down\": 62829,\n  \"file-arrow-up\": 62836,\n  \"file-audio\": 61895,\n  \"file-award\": 62963,\n  \"file-ban\": 59224,\n  \"file-binary\": 57717,\n  \"file-brackets-curly\": 59396,\n  \"file-cad\": 58994,\n  \"file-caret-down\": 58409,\n  \"file-caret-up\": 58410,\n  \"file-certificate\": 62963,\n  \"file-chart-column\": 63065,\n  \"file-chart-line\": 63065,\n  \"file-chart-pie\": 63066,\n  \"file-check\": 62230,\n  \"file-circle-check\": 58784,\n  \"file-circle-exclamation\": 58603,\n  \"file-circle-info\": 58515,\n  \"file-circle-minus\": 58605,\n  \"file-circle-plus\": 58516,\n  \"file-circle-question\": 58607,\n  \"file-circle-xmark\": 58785,\n  \"file-clipboard\": 61674,\n  \"file-code\": 61897,\n  \"file-contract\": 62828,\n  \"file-css\": 59452,\n  \"file-csv\": 63197,\n  \"file-dashed-line\": 63607,\n  \"file-doc\": 58861,\n  \"file-download\": 62829,\n  \"file-edit\": 62236,\n  \"file-eps\": 58948,\n  \"file-excel\": 61891,\n  \"file-exclamation\": 62234,\n  \"file-export\": 62830,\n  \"file-fragment\": 59031,\n  \"file-gif\": 58949,\n  \"file-half-dashed\": 59032,\n  \"file-heart\": 57718,\n  \"file-html\": 59453,\n  \"file-icns\": 59457,\n  \"file-image\": 61893,\n  \"file-import\": 62831,\n  \"file-invoice-dollar\": 62833,\n  \"file-invoice\": 62832,\n  \"file-jpg\": 58950,\n  \"file-js\": 59454,\n  \"file-lines\": 61788,\n  \"file-lock\": 58278,\n  \"file-magnifying-glass\": 63589,\n  \"file-medical-alt\": 62584,\n  \"file-medical\": 62583,\n  \"file-midi\": 59397,\n  \"file-minus\": 62232,\n  \"file-mov\": 58951,\n  \"file-mp3\": 58952,\n  \"file-mp4\": 58953,\n  \"file-music\": 63670,\n  \"file-odf\": 59388,\n  \"file-pdf\": 61889,\n  \"file-pen\": 62236,\n  \"file-plus-minus\": 57719,\n  \"file-plus\": 62233,\n  \"file-png\": 58982,\n  \"file-powerpoint\": 61892,\n  \"file-ppt\": 58954,\n  \"file-prescription\": 62834,\n  \"file-search\": 63589,\n  \"file-shield\": 58608,\n  \"file-signature\": 62835,\n  \"file-slash\": 58279,\n  \"file-spreadsheet\": 63067,\n  \"file-svg\": 58955,\n  \"file-tex\": 59389,\n  \"file-text\": 61788,\n  \"file-times\": 62231,\n  \"file-upload\": 62836,\n  \"file-user\": 63068,\n  \"file-vector\": 58956,\n  \"file-video\": 61896,\n  \"file-wav\": 59390,\n  \"file-waveform\": 62584,\n  \"file-word\": 61890,\n  \"file-xls\": 58957,\n  \"file-xmark\": 62231,\n  \"file-xml\": 58964,\n  \"file-zip\": 58862,\n  \"file-zipper\": 61894,\n  \"file\": 61787,\n  \"files-medical\": 63485,\n  \"files\": 57720,\n  \"fill-drip\": 62838,\n  \"fill\": 62837,\n  \"film-alt\": 61448,\n  \"film-canister\": 63671,\n  \"film-cannister\": 63671,\n  \"film-music\": 59241,\n  \"film-simple\": 61448,\n  \"film-slash\": 57721,\n  \"film-stack\": 59243,\n  \"film\": 61448,\n  \"films\": 57722,\n  \"filter-circle-dollar\": 63074,\n  \"filter-circle-xmark\": 57723,\n  \"filter-list\": 57724,\n  \"filter-slash\": 57725,\n  \"filter\": 61616,\n  \"filters\": 57726,\n  \"fingerprint\": 62839,\n  \"fire-alt\": 63460,\n  \"fire-burner\": 58609,\n  \"fire-extinguisher\": 61748,\n  \"fire-flame-curved\": 63460,\n  \"fire-flame-simple\": 62570,\n  \"fire-flame\": 63199,\n  \"fire-hydrant\": 57727,\n  \"fire-smoke\": 63307,\n  \"fire\": 61549,\n  \"fireplace\": 63386,\n  \"firewall\": 58332,\n  \"first-aid\": 62585,\n  \"fish-bones\": 58116,\n  \"fish-cooked\": 63486,\n  \"fish-fins\": 58610,\n  \"fish\": 62840,\n  \"fishing-rod\": 58280,\n  \"fist-raised\": 63198,\n  \"flag-alt\": 63308,\n  \"flag-checkered\": 61726,\n  \"flag-pennant\": 62550,\n  \"flag-swallowtail\": 63308,\n  \"flag-usa\": 63309,\n  \"flag\": 61476,\n  \"flame\": 63199,\n  \"flashlight\": 63672,\n  \"flask-gear\": 58865,\n  \"flask-poison\": 63200,\n  \"flask-potion\": 63201,\n  \"flask-round-poison\": 63200,\n  \"flask-round-potion\": 63201,\n  \"flask-vial\": 58611,\n  \"flask\": 61635,\n  \"flatbread-stuffed\": 58380,\n  \"flatbread\": 58379,\n  \"floppy-disk-circle-arrow-right\": 57728,\n  \"floppy-disk-circle-xmark\": 57729,\n  \"floppy-disk-pen\": 57730,\n  \"floppy-disk-times\": 57729,\n  \"floppy-disk\": 61639,\n  \"floppy-disks\": 57731,\n  \"florin-sign\": 57732,\n  \"flower-daffodil\": 63488,\n  \"flower-tulip\": 63489,\n  \"flower\": 63487,\n  \"flushed\": 62841,\n  \"flute\": 63673,\n  \"flux-capacitor\": 63674,\n  \"flying-disc\": 58281,\n  \"fog\": 63310,\n  \"folder-arrow-down\": 57427,\n  \"folder-arrow-left\": 59346,\n  \"folder-arrow-right\": 59347,\n  \"folder-arrow-up\": 57428,\n  \"folder-blank\": 61563,\n  \"folder-bookmark\": 57734,\n  \"folder-check\": 58958,\n  \"folder-closed\": 57733,\n  \"folder-cog\": 57735,\n  \"folder-download\": 57427,\n  \"folder-gear\": 57735,\n  \"folder-grid\": 57736,\n  \"folder-heart\": 57737,\n  \"folder-image\": 57738,\n  \"folder-magnifying-glass\": 57739,\n  \"folder-medical\": 57740,\n  \"folder-minus\": 63069,\n  \"folder-music\": 57741,\n  \"folder-open\": 61564,\n  \"folder-plus\": 63070,\n  \"folder-search\": 57739,\n  \"folder-times\": 63071,\n  \"folder-tree\": 63490,\n  \"folder-upload\": 57428,\n  \"folder-user\": 57742,\n  \"folder-xmark\": 63071,\n  \"folder\": 61563,\n  \"folders\": 63072,\n  \"fondue-pot\": 58381,\n  \"font-awesome-flag\": 62132,\n  \"font-awesome-logo-full\": 62132,\n  \"font-awesome\": 62132,\n  \"font-case\": 63590,\n  \"font\": 61489,\n  \"foot-wing\": 59444,\n  \"football-ball\": 62542,\n  \"football-helmet\": 62543,\n  \"football\": 62542,\n  \"fork-knife\": 62182,\n  \"fork\": 62179,\n  \"forklift\": 62586,\n  \"fort\": 58502,\n  \"forward-fast\": 61520,\n  \"forward-step\": 61521,\n  \"forward\": 61518,\n  \"fragile\": 62651,\n  \"frame\": 58517,\n  \"franc-sign\": 57743,\n  \"french-fries\": 63491,\n  \"frog\": 62766,\n  \"frosty-head\": 63387,\n  \"frown-open\": 62842,\n  \"frown\": 61721,\n  \"function\": 63073,\n  \"funnel-dollar\": 63074,\n  \"futbol-ball\": 61923,\n  \"futbol\": 61923,\n  \"g\": 71,\n  \"galaxy\": 57352,\n  \"gallery-thumbnails\": 58282,\n  \"game-board-alt\": 63592,\n  \"game-board-simple\": 63592,\n  \"game-board\": 63591,\n  \"game-console-handheld-crank\": 58809,\n  \"game-console-handheld\": 63675,\n  \"gamepad-alt\": 58786,\n  \"gamepad-modern\": 58786,\n  \"gamepad\": 61723,\n  \"garage-car\": 57354,\n  \"garage-empty\": 59081,\n  \"garage-open\": 57355,\n  \"garage\": 57353,\n  \"garlic\": 58382,\n  \"gas-pump-left\": 59256,\n  \"gas-pump-right\": 59257,\n  \"gas-pump-slash\": 62964,\n  \"gas-pump\": 62767,\n  \"gauge-circle-bolt\": 58518,\n  \"gauge-circle-minus\": 58519,\n  \"gauge-circle-plus\": 58520,\n  \"gauge-high\": 63013,\n  \"gauge-low\": 63015,\n  \"gauge-max\": 63014,\n  \"gauge-med\": 63012,\n  \"gauge-min\": 63016,\n  \"gauge-simple-high\": 63018,\n  \"gauge-simple-low\": 63020,\n  \"gauge-simple-max\": 63019,\n  \"gauge-simple-med\": 63017,\n  \"gauge-simple-min\": 63021,\n  \"gauge-simple\": 63017,\n  \"gauge\": 63012,\n  \"gave-dandy\": 58377,\n  \"gavel\": 61667,\n  \"gbp\": 61780,\n  \"gear-api\": 59556,\n  \"gear-code\": 58856,\n  \"gear-complex-api\": 59557,\n  \"gear-complex-code\": 58859,\n  \"gear-complex\": 58857,\n  \"gear\": 61459,\n  \"gears\": 61573,\n  \"gem\": 62373,\n  \"gemini\": 59465,\n  \"genderless\": 61997,\n  \"ghost\": 63202,\n  \"gif\": 57744,\n  \"gift-card\": 63075,\n  \"gift\": 61547,\n  \"gifts\": 63388,\n  \"gingerbread-man\": 63389,\n  \"glass-champagne\": 63390,\n  \"glass-cheers\": 63391,\n  \"glass-citrus\": 63593,\n  \"glass-empty\": 57745,\n  \"glass-half-empty\": 57746,\n  \"glass-half-full\": 57746,\n  \"glass-half\": 57746,\n  \"glass-martini-alt\": 62843,\n  \"glass-martini\": 61440,\n  \"glass-water-droplet\": 58613,\n  \"glass-water\": 58612,\n  \"glass-whiskey-rocks\": 63393,\n  \"glass-whiskey\": 63392,\n  \"glass\": 63492,\n  \"glasses-alt\": 62965,\n  \"glasses-round\": 62965,\n  \"glasses\": 62768,\n  \"globe-africa\": 62844,\n  \"globe-americas\": 62845,\n  \"globe-asia\": 62846,\n  \"globe-europe\": 63394,\n  \"globe-oceania\": 58491,\n  \"globe-pointer\": 58894,\n  \"globe-snow\": 63395,\n  \"globe-stand\": 62966,\n  \"globe-wifi\": 59013,\n  \"globe-www\": 59558,\n  \"globe\": 61612,\n  \"glove-boxing\": 62520,\n  \"goal-net\": 58283,\n  \"golf-ball-tee\": 62544,\n  \"golf-ball\": 62544,\n  \"golf-club\": 62545,\n  \"golf-flag-hole\": 58284,\n  \"gopuram\": 63076,\n  \"gpu\": 59459,\n  \"graduation-cap\": 61853,\n  \"gramophone\": 63677,\n  \"grapes\": 58118,\n  \"grate-droplet\": 57748,\n  \"grate\": 57747,\n  \"greater-than-equal\": 62770,\n  \"greater-than\": 62,\n  \"grid-2-minus\": 59050,\n  \"grid-2-plus\": 57751,\n  \"grid-2\": 57750,\n  \"grid-3\": 57749,\n  \"grid-4\": 57752,\n  \"grid-5\": 57753,\n  \"grid-dividers\": 58285,\n  \"grid-horizontal\": 62861,\n  \"grid-round-2-minus\": 59051,\n  \"grid-round-2-plus\": 58844,\n  \"grid-round-2\": 58843,\n  \"grid-round-4\": 58845,\n  \"grid-round-5\": 58846,\n  \"grid-round\": 58842,\n  \"grid-vertical\": 62862,\n  \"grid\": 57749,\n  \"grill-fire\": 58788,\n  \"grill-hot\": 58789,\n  \"grill\": 58787,\n  \"grimace\": 62847,\n  \"grin-alt\": 62849,\n  \"grin-beam-sweat\": 62851,\n  \"grin-beam\": 62850,\n  \"grin-hearts\": 62852,\n  \"grin-squint-tears\": 62854,\n  \"grin-squint\": 62853,\n  \"grin-stars\": 62855,\n  \"grin-tears\": 62856,\n  \"grin-tongue-squint\": 62858,\n  \"grin-tongue-wink\": 62859,\n  \"grin-tongue\": 62857,\n  \"grin-wink\": 62860,\n  \"grin\": 62848,\n  \"grip-dots-vertical\": 58385,\n  \"grip-dots\": 58384,\n  \"grip-horizontal\": 62861,\n  \"grip-lines-vertical\": 63397,\n  \"grip-lines\": 63396,\n  \"grip-vertical\": 62862,\n  \"grip\": 62861,\n  \"group-arrows-rotate\": 58614,\n  \"guarani-sign\": 57754,\n  \"guitar-electric\": 63678,\n  \"guitar\": 63398,\n  \"guitars\": 63679,\n  \"gun-slash\": 57756,\n  \"gun-squirt\": 57757,\n  \"gun\": 57755,\n  \"h-square\": 61693,\n  \"h\": 72,\n  \"h1\": 62227,\n  \"h2\": 62228,\n  \"h3\": 62229,\n  \"h4\": 63594,\n  \"h5\": 58386,\n  \"h6\": 58387,\n  \"hamburger\": 63493,\n  \"hammer-brush\": 58912,\n  \"hammer-crash\": 58388,\n  \"hammer-war\": 63204,\n  \"hammer\": 63203,\n  \"hamsa\": 63077,\n  \"hand-back-fist\": 62037,\n  \"hand-back-point-down\": 57758,\n  \"hand-back-point-left\": 57759,\n  \"hand-back-point-ribbon\": 57760,\n  \"hand-back-point-right\": 57761,\n  \"hand-back-point-up\": 57762,\n  \"hand-dots\": 62561,\n  \"hand-fingers-crossed\": 57763,\n  \"hand-fist\": 63198,\n  \"hand-heart\": 62652,\n  \"hand-holding-box\": 62587,\n  \"hand-holding-circle-dollar\": 58913,\n  \"hand-holding-dollar\": 62656,\n  \"hand-holding-droplet\": 62657,\n  \"hand-holding-hand\": 58615,\n  \"hand-holding-heart\": 62654,\n  \"hand-holding-magic\": 63205,\n  \"hand-holding-medical\": 57436,\n  \"hand-holding-seedling\": 62655,\n  \"hand-holding-skull\": 57764,\n  \"hand-holding-star\": 59393,\n  \"hand-holding-usd\": 62656,\n  \"hand-holding-water\": 62657,\n  \"hand-holding\": 62653,\n  \"hand-horns\": 57769,\n  \"hand-lizard\": 62040,\n  \"hand-love\": 57765,\n  \"hand-middle-finger\": 63494,\n  \"hand-paper\": 62038,\n  \"hand-peace\": 62043,\n  \"hand-point-down\": 61607,\n  \"hand-point-left\": 61605,\n  \"hand-point-ribbon\": 57766,\n  \"hand-point-right\": 61604,\n  \"hand-point-up\": 61606,\n  \"hand-pointer\": 62042,\n  \"hand-receiving\": 62588,\n  \"hand-rock\": 62037,\n  \"hand-scissors\": 62039,\n  \"hand-shaka\": 59441,\n  \"hand-sparkles\": 57437,\n  \"hand-spock\": 62041,\n  \"hand-wave\": 57767,\n  \"hand\": 62038,\n  \"handcuffs\": 58616,\n  \"hands-american-sign-language-interpreting\": 62115,\n  \"hands-asl-interpreting\": 62115,\n  \"hands-bound\": 58617,\n  \"hands-bubbles\": 57438,\n  \"hands-clapping\": 57768,\n  \"hands-heart\": 62659,\n  \"hands-helping\": 62660,\n  \"hands-holding-child\": 58618,\n  \"hands-holding-circle\": 58619,\n  \"hands-holding-diamond\": 62588,\n  \"hands-holding-dollar\": 62661,\n  \"hands-holding-heart\": 62659,\n  \"hands-holding\": 62658,\n  \"hands-praying\": 63108,\n  \"hands-usd\": 62661,\n  \"hands-wash\": 57438,\n  \"hands\": 62119,\n  \"handshake-alt-slash\": 57440,\n  \"handshake-alt\": 62133,\n  \"handshake-angle\": 62660,\n  \"handshake-simple-slash\": 57440,\n  \"handshake-simple\": 62133,\n  \"handshake-slash\": 57440,\n  \"handshake\": 62133,\n  \"hanukiah\": 63206,\n  \"hard-drive\": 61600,\n  \"hard-hat\": 63495,\n  \"hard-of-hearing\": 62116,\n  \"hashtag-lock\": 58389,\n  \"hashtag\": 35,\n  \"hat-beach\": 58886,\n  \"hat-chef\": 63595,\n  \"hat-cowboy-side\": 63681,\n  \"hat-cowboy\": 63680,\n  \"hat-hard\": 63495,\n  \"hat-santa\": 63399,\n  \"hat-winter\": 63400,\n  \"hat-witch\": 63207,\n  \"hat-wizard\": 63208,\n  \"haykal\": 63078,\n  \"hdd\": 61600,\n  \"head-side-brain\": 63496,\n  \"head-side-circuit\": 59230,\n  \"head-side-cough-slash\": 57442,\n  \"head-side-cough\": 57441,\n  \"head-side-gear\": 58897,\n  \"head-side-goggles\": 63210,\n  \"head-side-headphones\": 63682,\n  \"head-side-heart\": 57770,\n  \"head-side-mask\": 57443,\n  \"head-side-medical\": 63497,\n  \"head-side-speak\": 59231,\n  \"head-side-virus\": 57444,\n  \"head-side\": 63209,\n  \"head-vr\": 63210,\n  \"header\": 61916,\n  \"heading\": 61916,\n  \"headphones-alt\": 61477,\n  \"headphones-simple\": 61477,\n  \"headphones-slash\": 59260,\n  \"headphones\": 61477,\n  \"headset\": 62864,\n  \"heart-broken\": 63401,\n  \"heart-circle-bolt\": 58620,\n  \"heart-circle-check\": 58621,\n  \"heart-circle-exclamation\": 58622,\n  \"heart-circle-minus\": 58623,\n  \"heart-circle-plus\": 58624,\n  \"heart-circle-xmark\": 58625,\n  \"heart-circle\": 62663,\n  \"heart-crack\": 63401,\n  \"heart-half-alt\": 57772,\n  \"heart-half-stroke\": 57772,\n  \"heart-half\": 57771,\n  \"heart-music-camera-bolt\": 63597,\n  \"heart-pulse\": 61982,\n  \"heart-rate\": 62968,\n  \"heart-slash\": 59278,\n  \"heart-square\": 62664,\n  \"heart\": 61444,\n  \"heartbeat\": 61982,\n  \"hearts\": 59279,\n  \"heat\": 57356,\n  \"helicopter-symbol\": 58626,\n  \"helicopter\": 62771,\n  \"helmet-battle\": 63211,\n  \"helmet-safety\": 63495,\n  \"helmet-un\": 58627,\n  \"heptagon\": 59424,\n  \"hexagon-check\": 58390,\n  \"hexagon-divide\": 57773,\n  \"hexagon-equals\": 59058,\n  \"hexagon-exclamation\": 58391,\n  \"hexagon-image\": 58628,\n  \"hexagon-minus\": 62215,\n  \"hexagon-nodes-bolt\": 59034,\n  \"hexagon-nodes\": 59033,\n  \"hexagon-plus\": 62208,\n  \"hexagon-vertical-nft-slanted\": 58629,\n  \"hexagon-vertical-nft\": 58629,\n  \"hexagon-xmark\": 62190,\n  \"hexagon\": 62226,\n  \"high-definition\": 57774,\n  \"highlighter-line\": 57775,\n  \"highlighter\": 62865,\n  \"hiking\": 63212,\n  \"hill-avalanche\": 58631,\n  \"hill-rockslide\": 58632,\n  \"hippo\": 63213,\n  \"history\": 61914,\n  \"hockey-mask\": 63214,\n  \"hockey-puck\": 62547,\n  \"hockey-stick-puck\": 58286,\n  \"hockey-stick\": 59366,\n  \"hockey-sticks\": 62548,\n  \"holly-berry\": 63402,\n  \"home-alt\": 61461,\n  \"home-blank\": 58503,\n  \"home-heart\": 62665,\n  \"home-lg-alt\": 61461,\n  \"home-lg\": 58287,\n  \"home-user\": 57776,\n  \"home\": 61461,\n  \"honey-pot\": 58392,\n  \"hood-cloak\": 63215,\n  \"horizontal-rule\": 63596,\n  \"horse-head\": 63403,\n  \"horse-saddle\": 63683,\n  \"horse\": 63216,\n  \"horseshoe\": 59418,\n  \"hose-reel\": 58394,\n  \"hose\": 58393,\n  \"hospital-alt\": 61688,\n  \"hospital-symbol\": 62590,\n  \"hospital-user\": 63501,\n  \"hospital-wide\": 61688,\n  \"hospital\": 61688,\n  \"hospitals\": 63502,\n  \"hot-tub-person\": 62867,\n  \"hot-tub\": 62867,\n  \"hotdog\": 63503,\n  \"hotel\": 62868,\n  \"hourglass-1\": 62033,\n  \"hourglass-2\": 62034,\n  \"hourglass-3\": 62035,\n  \"hourglass-clock\": 58395,\n  \"hourglass-empty\": 62036,\n  \"hourglass-end\": 62035,\n  \"hourglass-half\": 62034,\n  \"hourglass-start\": 62033,\n  \"hourglass\": 62036,\n  \"house-blank\": 58503,\n  \"house-building\": 57777,\n  \"house-chimney-blank\": 58288,\n  \"house-chimney-crack\": 63217,\n  \"house-chimney-heart\": 57778,\n  \"house-chimney-medical\": 63474,\n  \"house-chimney-user\": 57445,\n  \"house-chimney-window\": 57357,\n  \"house-chimney\": 58287,\n  \"house-circle-check\": 58633,\n  \"house-circle-exclamation\": 58634,\n  \"house-circle-xmark\": 58635,\n  \"house-crack\": 58289,\n  \"house-damage\": 63217,\n  \"house-day\": 57358,\n  \"house-fire\": 58636,\n  \"house-flag\": 58637,\n  \"house-flood-water-circle-arrow-right\": 58639,\n  \"house-flood-water\": 58638,\n  \"house-flood\": 63311,\n  \"house-heart\": 62665,\n  \"house-laptop\": 57446,\n  \"house-leave\": 57359,\n  \"house-lock\": 58640,\n  \"house-medical-circle-check\": 58641,\n  \"house-medical-circle-exclamation\": 58642,\n  \"house-medical-circle-xmark\": 58643,\n  \"house-medical-flag\": 58644,\n  \"house-medical\": 58290,\n  \"house-night\": 57360,\n  \"house-person-arrive\": 57361,\n  \"house-person-depart\": 57359,\n  \"house-person-leave\": 57359,\n  \"house-person-return\": 57361,\n  \"house-return\": 57361,\n  \"house-signal\": 57362,\n  \"house-tree\": 57779,\n  \"house-tsunami\": 58645,\n  \"house-turret\": 57780,\n  \"house-unlock\": 59082,\n  \"house-user\": 57776,\n  \"house-water\": 63311,\n  \"house-window\": 58291,\n  \"house\": 61461,\n  \"hryvnia-sign\": 63218,\n  \"hryvnia\": 63218,\n  \"humidity\": 63312,\n  \"hundred-points\": 58396,\n  \"hurricane\": 63313,\n  \"hydra\": 59014,\n  \"hyphen\": 45,\n  \"i-cursor\": 62022,\n  \"i\": 73,\n  \"ice-cream\": 63504,\n  \"ice-skate\": 63404,\n  \"icicles\": 63405,\n  \"icons-alt\": 63598,\n  \"icons\": 63597,\n  \"id-badge\": 62145,\n  \"id-card-alt\": 62591,\n  \"id-card-clip\": 62591,\n  \"id-card\": 62146,\n  \"igloo\": 63406,\n  \"ils\": 61963,\n  \"image-broken\": 59562,\n  \"image-circle-arrow-down\": 59244,\n  \"image-circle-check\": 59245,\n  \"image-circle-plus\": 59246,\n  \"image-circle-xmark\": 59247,\n  \"image-landscape\": 57781,\n  \"image-music\": 59248,\n  \"image-polaroid-user\": 57782,\n  \"image-polaroid\": 63684,\n  \"image-portrait\": 62432,\n  \"image-slash\": 57783,\n  \"image-stack\": 59249,\n  \"image-user\": 57784,\n  \"image\": 61502,\n  \"images-user\": 57785,\n  \"images\": 62210,\n  \"inbox-arrow-down\": 62224,\n  \"inbox-arrow-up\": 62225,\n  \"inbox-full\": 57786,\n  \"inbox-in\": 62224,\n  \"inbox-out\": 62225,\n  \"inbox\": 61468,\n  \"inboxes\": 57787,\n  \"indent\": 61500,\n  \"indian-rupee-sign\": 57788,\n  \"indian-rupee\": 57788,\n  \"industry-alt\": 62387,\n  \"industry-windows\": 62387,\n  \"industry\": 62069,\n  \"infinity\": 62772,\n  \"info-circle\": 61530,\n  \"info-square\": 62223,\n  \"info\": 61737,\n  \"inhaler\": 62969,\n  \"input-numeric\": 57789,\n  \"input-password\": 59517,\n  \"input-pipe\": 57790,\n  \"input-text\": 57791,\n  \"inr\": 57788,\n  \"institution\": 61852,\n  \"integral\": 63079,\n  \"interrobang\": 58810,\n  \"intersection\": 63080,\n  \"inventory\": 62592,\n  \"island-tree-palm\": 63505,\n  \"island-tropical\": 63505,\n  \"italic\": 61491,\n  \"j\": 74,\n  \"jack-o-lantern\": 62222,\n  \"jar-wheat\": 58647,\n  \"jar\": 58646,\n  \"jeans-straight\": 59091,\n  \"jeans\": 59090,\n  \"jedi\": 63081,\n  \"jet-fighter-up\": 58648,\n  \"jet-fighter\": 61691,\n  \"joint\": 62869,\n  \"journal-whills\": 63082,\n  \"joystick\": 63685,\n  \"jpy\": 61783,\n  \"jug-bottle\": 58875,\n  \"jug-detergent\": 58649,\n  \"jug\": 63686,\n  \"k\": 75,\n  \"kaaba\": 63083,\n  \"kayak\": 59547,\n  \"kazoo\": 63687,\n  \"kerning\": 63599,\n  \"kettlebell\": 59442,\n  \"key-skeleton-left-right\": 58292,\n  \"key-skeleton\": 63219,\n  \"key\": 61572,\n  \"keyboard-brightness-low\": 57793,\n  \"keyboard-brightness\": 57792,\n  \"keyboard-down\": 57794,\n  \"keyboard-left\": 57795,\n  \"keyboard\": 61724,\n  \"keynote\": 63084,\n  \"khanda\": 63085,\n  \"kidneys\": 62971,\n  \"kip-sign\": 57796,\n  \"kiss-beam\": 62871,\n  \"kiss-wink-heart\": 62872,\n  \"kiss\": 62870,\n  \"kit-medical\": 62585,\n  \"kitchen-set\": 58650,\n  \"kite\": 63220,\n  \"kiwi-bird\": 62773,\n  \"kiwi-fruit\": 58124,\n  \"knife-kitchen\": 63221,\n  \"knife\": 62180,\n  \"krw\": 61785,\n  \"l\": 76,\n  \"label\": 59559,\n  \"lacrosse-stick-ball\": 58294,\n  \"lacrosse-stick\": 58293,\n  \"ladder-water\": 62917,\n  \"lambda\": 63086,\n  \"lamp-desk\": 57364,\n  \"lamp-floor\": 57365,\n  \"lamp-street\": 57797,\n  \"lamp\": 62666,\n  \"land-mine-on\": 58651,\n  \"landmark-alt\": 63314,\n  \"landmark-dome\": 63314,\n  \"landmark-flag\": 58652,\n  \"landmark-magnifying-glass\": 58914,\n  \"landmark\": 63087,\n  \"landscape\": 57781,\n  \"language\": 61867,\n  \"laptop-arrow-down\": 57798,\n  \"laptop-binary\": 58855,\n  \"laptop-code\": 62972,\n  \"laptop-file\": 58653,\n  \"laptop-house\": 57446,\n  \"laptop-medical\": 63506,\n  \"laptop-mobile\": 63610,\n  \"laptop-slash\": 57799,\n  \"laptop\": 61705,\n  \"lari-sign\": 57800,\n  \"lasso-sparkles\": 57801,\n  \"lasso\": 63688,\n  \"laugh-beam\": 62874,\n  \"laugh-squint\": 62875,\n  \"laugh-wink\": 62876,\n  \"laugh\": 62873,\n  \"layer-group-minus\": 62974,\n  \"layer-group-plus\": 62975,\n  \"layer-group\": 62973,\n  \"layer-minus\": 62974,\n  \"layer-plus\": 62975,\n  \"layer\": 59455,\n  \"leaf-heart\": 62667,\n  \"leaf-maple\": 63222,\n  \"leaf-oak\": 63223,\n  \"leaf\": 61548,\n  \"leafy-green\": 58397,\n  \"left-from-bracket\": 58988,\n  \"left-from-dotted-line\": 59074,\n  \"left-from-line\": 62280,\n  \"left-long-to-line\": 58398,\n  \"left-long\": 62218,\n  \"left-right\": 62263,\n  \"left-to-bracket\": 58989,\n  \"left-to-dotted-line\": 59075,\n  \"left-to-line\": 62283,\n  \"left\": 62293,\n  \"legal\": 61667,\n  \"lemon\": 61588,\n  \"leo\": 59466,\n  \"less-than-equal\": 62775,\n  \"less-than\": 60,\n  \"level-down-alt\": 62398,\n  \"level-down\": 61769,\n  \"level-up-alt\": 62399,\n  \"level-up\": 61768,\n  \"libra\": 59467,\n  \"life-ring\": 61901,\n  \"light-ceiling\": 57366,\n  \"light-emergency-on\": 58400,\n  \"light-emergency\": 58399,\n  \"light-switch-off\": 57368,\n  \"light-switch-on\": 57369,\n  \"light-switch\": 57367,\n  \"lightbulb-cfl-on\": 58791,\n  \"lightbulb-cfl\": 58790,\n  \"lightbulb-dollar\": 63088,\n  \"lightbulb-exclamation-on\": 57802,\n  \"lightbulb-exclamation\": 63089,\n  \"lightbulb-gear\": 58877,\n  \"lightbulb-message\": 59015,\n  \"lightbulb-on\": 63090,\n  \"lightbulb-slash\": 63091,\n  \"lightbulb\": 61675,\n  \"lighthouse\": 58898,\n  \"lights-holiday\": 63410,\n  \"line-chart\": 61953,\n  \"line-columns\": 63600,\n  \"line-height\": 63601,\n  \"lines-leaning\": 58654,\n  \"link-broken\": 59458,\n  \"link-horizontal-slash\": 57804,\n  \"link-horizontal\": 57803,\n  \"link-simple-slash\": 57806,\n  \"link-simple\": 57805,\n  \"link-slash\": 61735,\n  \"link\": 61633,\n  \"lips\": 62976,\n  \"lira-sign\": 61845,\n  \"list-1-2\": 61643,\n  \"list-alt\": 61474,\n  \"list-check\": 61614,\n  \"list-dots\": 61642,\n  \"list-dropdown\": 57807,\n  \"list-music\": 63689,\n  \"list-numeric\": 61643,\n  \"list-ol\": 61643,\n  \"list-radio\": 57808,\n  \"list-squares\": 61498,\n  \"list-timeline\": 57809,\n  \"list-tree\": 57810,\n  \"list-ul\": 61642,\n  \"list\": 61498,\n  \"litecoin-sign\": 57811,\n  \"loader\": 57812,\n  \"lobster\": 58401,\n  \"location-arrow-slash\": 59258,\n  \"location-arrow-up\": 58938,\n  \"location-arrow\": 61732,\n  \"location-check\": 62982,\n  \"location-circle\": 62978,\n  \"location-crosshairs-slash\": 62979,\n  \"location-crosshairs\": 62977,\n  \"location-dot-slash\": 62981,\n  \"location-dot\": 62405,\n  \"location-exclamation\": 62984,\n  \"location-minus\": 62985,\n  \"location-pen\": 62983,\n  \"location-pin-lock\": 58655,\n  \"location-pin-slash\": 62988,\n  \"location-pin\": 61505,\n  \"location-plus\": 62986,\n  \"location-question\": 62987,\n  \"location-slash\": 62979,\n  \"location-smile\": 62989,\n  \"location-xmark\": 62990,\n  \"location\": 62977,\n  \"lock-a\": 58402,\n  \"lock-alt\": 62221,\n  \"lock-hashtag\": 58403,\n  \"lock-keyhole-open\": 62402,\n  \"lock-keyhole\": 62221,\n  \"lock-open-alt\": 62402,\n  \"lock-open\": 62401,\n  \"lock\": 61475,\n  \"locust\": 58656,\n  \"lollipop\": 58404,\n  \"lollypop\": 58404,\n  \"long-arrow-alt-down\": 62217,\n  \"long-arrow-alt-left\": 62218,\n  \"long-arrow-alt-right\": 62219,\n  \"long-arrow-alt-up\": 62220,\n  \"long-arrow-down\": 61813,\n  \"long-arrow-left\": 61815,\n  \"long-arrow-right\": 61816,\n  \"long-arrow-up\": 61814,\n  \"loveseat\": 62668,\n  \"low-vision\": 62120,\n  \"luchador-mask\": 62549,\n  \"luchador\": 62549,\n  \"luggage-cart\": 62877,\n  \"lungs-virus\": 57447,\n  \"lungs\": 62980,\n  \"lychee\": 59428,\n  \"m\": 77,\n  \"mace\": 63224,\n  \"magic-wand-sparkles\": 58058,\n  \"magic\": 61648,\n  \"magnet\": 61558,\n  \"magnifying-glass-arrow-right\": 58657,\n  \"magnifying-glass-arrows-rotate\": 58974,\n  \"magnifying-glass-chart\": 58658,\n  \"magnifying-glass-dollar\": 63112,\n  \"magnifying-glass-location\": 63113,\n  \"magnifying-glass-minus\": 61456,\n  \"magnifying-glass-music\": 58975,\n  \"magnifying-glass-play\": 58976,\n  \"magnifying-glass-plus\": 61454,\n  \"magnifying-glass-waveform\": 58977,\n  \"magnifying-glass\": 61442,\n  \"mail-bulk\": 63092,\n  \"mail-forward\": 61540,\n  \"mail-reply-all\": 61730,\n  \"mail-reply\": 62437,\n  \"mailbox-flag-up\": 58811,\n  \"mailbox-open-empty\": 59425,\n  \"mailbox-open-letter\": 59427,\n  \"mailbox\": 63507,\n  \"maki-roll\": 58507,\n  \"makizushi\": 58507,\n  \"malaysian-ringgit-sign\": 59130,\n  \"male\": 61827,\n  \"manat-sign\": 57813,\n  \"mandolin\": 63225,\n  \"mango\": 58127,\n  \"manhole\": 57814,\n  \"map-location-dot\": 62880,\n  \"map-location\": 62879,\n  \"map-marked-alt\": 62880,\n  \"map-marked\": 62879,\n  \"map-marker-alt-slash\": 62981,\n  \"map-marker-alt\": 62405,\n  \"map-marker-check\": 62982,\n  \"map-marker-edit\": 62983,\n  \"map-marker-exclamation\": 62984,\n  \"map-marker-minus\": 62985,\n  \"map-marker-plus\": 62986,\n  \"map-marker-question\": 62987,\n  \"map-marker-slash\": 62988,\n  \"map-marker-smile\": 62989,\n  \"map-marker-times\": 62990,\n  \"map-marker-xmark\": 62990,\n  \"map-marker\": 61505,\n  \"map-pin\": 62070,\n  \"map-signs\": 62071,\n  \"map\": 62073,\n  \"marker\": 62881,\n  \"mars-and-venus-burst\": 58659,\n  \"mars-and-venus\": 61988,\n  \"mars-double\": 61991,\n  \"mars-stroke-h\": 61995,\n  \"mars-stroke-right\": 61995,\n  \"mars-stroke-up\": 61994,\n  \"mars-stroke-v\": 61994,\n  \"mars-stroke\": 61993,\n  \"mars\": 61986,\n  \"martini-glass-citrus\": 62817,\n  \"martini-glass-empty\": 61440,\n  \"martini-glass\": 62843,\n  \"mask-face\": 57815,\n  \"mask-luchador\": 62549,\n  \"mask-snorkel\": 58295,\n  \"mask-ventilator\": 58660,\n  \"mask\": 63226,\n  \"masks-theater\": 63024,\n  \"mattress-pillow\": 58661,\n  \"maximize\": 62238,\n  \"meat\": 63508,\n  \"medal\": 62882,\n  \"medkit\": 61690,\n  \"megaphone\": 63093,\n  \"meh-blank\": 62884,\n  \"meh-rolling-eyes\": 62885,\n  \"meh\": 61722,\n  \"melon-slice\": 58129,\n  \"melon\": 58128,\n  \"memo-circle-check\": 57817,\n  \"memo-circle-info\": 58522,\n  \"memo-pad\": 57818,\n  \"memo\": 57816,\n  \"memory\": 62776,\n  \"menorah\": 63094,\n  \"mercury\": 61987,\n  \"merge\": 58662,\n  \"message-arrow-down\": 57819,\n  \"message-arrow-up-right\": 57821,\n  \"message-arrow-up\": 57820,\n  \"message-bot\": 58296,\n  \"message-captions\": 57822,\n  \"message-check\": 62626,\n  \"message-code\": 57823,\n  \"message-dollar\": 63056,\n  \"message-dot\": 59103,\n  \"message-dots\": 62627,\n  \"message-edit\": 62628,\n  \"message-exclamation\": 62629,\n  \"message-heart\": 58825,\n  \"message-image\": 57824,\n  \"message-lines\": 62630,\n  \"message-medical\": 63476,\n  \"message-middle-top\": 57826,\n  \"message-middle\": 57825,\n  \"message-minus\": 62631,\n  \"message-music\": 63663,\n  \"message-pen\": 62628,\n  \"message-plus\": 62632,\n  \"message-question\": 57827,\n  \"message-quote\": 57828,\n  \"message-slash\": 62633,\n  \"message-smile\": 62634,\n  \"message-sms\": 57829,\n  \"message-text\": 57830,\n  \"message-times\": 62635,\n  \"message-waveform\": 59104,\n  \"message-xmark\": 62635,\n  \"message\": 62074,\n  \"messages-dollar\": 63058,\n  \"messages-question\": 57831,\n  \"messages\": 62646,\n  \"messaging\": 62627,\n  \"meteor\": 63315,\n  \"meter-bolt\": 57833,\n  \"meter-droplet\": 57834,\n  \"meter-fire\": 57835,\n  \"meter\": 57832,\n  \"microchip-ai\": 57836,\n  \"microchip\": 62171,\n  \"microphone-alt-slash\": 62777,\n  \"microphone-alt\": 62409,\n  \"microphone-circle-alt\": 57623,\n  \"microphone-circle-plus\": 59261,\n  \"microphone-circle-xmark\": 59262,\n  \"microphone-circle\": 57622,\n  \"microphone-lines-slash\": 62777,\n  \"microphone-lines\": 62409,\n  \"microphone-signal-meter\": 59232,\n  \"microphone-slash\": 61745,\n  \"microphone-stand\": 63691,\n  \"microphone\": 61744,\n  \"microscope\": 62992,\n  \"microwave\": 57371,\n  \"midi\": 59398,\n  \"mill-sign\": 57837,\n  \"mind-share\": 63095,\n  \"minimize\": 63372,\n  \"minus-circle\": 61526,\n  \"minus-hexagon\": 62215,\n  \"minus-large\": 58372,\n  \"minus-octagon\": 62216,\n  \"minus-square\": 61766,\n  \"minus\": 61544,\n  \"mistletoe\": 63412,\n  \"mitten\": 63413,\n  \"mobile-alt\": 62413,\n  \"mobile-android-alt\": 62415,\n  \"mobile-android\": 62414,\n  \"mobile-arrow-down\": 59211,\n  \"mobile-button\": 61707,\n  \"mobile-iphone\": 57838,\n  \"mobile-notch\": 57838,\n  \"mobile-phone\": 62414,\n  \"mobile-retro\": 58663,\n  \"mobile-rotate-reverse\": 59412,\n  \"mobile-rotate\": 59411,\n  \"mobile-screen-button\": 62413,\n  \"mobile-screen\": 62415,\n  \"mobile-signal-out\": 57840,\n  \"mobile-signal\": 57839,\n  \"mobile-slash\": 59413,\n  \"mobile-vibrate-slash\": 59415,\n  \"mobile-vibrate\": 59414,\n  \"mobile\": 62414,\n  \"money-bill-1-wave\": 62779,\n  \"money-bill-1\": 62417,\n  \"money-bill-alt\": 62417,\n  \"money-bill-simple-wave\": 57842,\n  \"money-bill-simple\": 57841,\n  \"money-bill-transfer\": 58664,\n  \"money-bill-trend-up\": 58665,\n  \"money-bill-wave-alt\": 62779,\n  \"money-bill-wave\": 62778,\n  \"money-bill-wheat\": 58666,\n  \"money-bill\": 61654,\n  \"money-bills-alt\": 57844,\n  \"money-bills-simple\": 57844,\n  \"money-bills\": 57843,\n  \"money-check-alt\": 62781,\n  \"money-check-dollar-pen\": 63603,\n  \"money-check-dollar\": 62781,\n  \"money-check-edit-alt\": 63603,\n  \"money-check-edit\": 63602,\n  \"money-check-pen\": 63602,\n  \"money-check\": 62780,\n  \"money-from-bracket\": 58130,\n  \"money-simple-from-bracket\": 58131,\n  \"monitor-heart-rate\": 62993,\n  \"monitor-waveform\": 62993,\n  \"monkey\": 63227,\n  \"monument\": 62886,\n  \"moon-cloud\": 63316,\n  \"moon-first-quarter-inverse\": 59506,\n  \"moon-first-quarter\": 59504,\n  \"moon-full-inverse\": 59507,\n  \"moon-full\": 59505,\n  \"moon-last-quarter-inverse\": 59504,\n  \"moon-last-quarter\": 59506,\n  \"moon-new-inverse\": 59505,\n  \"moon-new\": 59507,\n  \"moon-over-sun\": 63306,\n  \"moon-star\": 59337,\n  \"moon-stars\": 63317,\n  \"moon-waning-crescent-inverse\": 59511,\n  \"moon-waning-crescent\": 59508,\n  \"moon-waning-gibbous-inverse\": 59510,\n  \"moon-waning-gibbous\": 59509,\n  \"moon-waxing-crescent-inverse\": 59509,\n  \"moon-waxing-crescent\": 59510,\n  \"moon-waxing-gibbous-inverse\": 59508,\n  \"moon-waxing-gibbous\": 59511,\n  \"moon\": 61830,\n  \"moped\": 58297,\n  \"mortar-board\": 61853,\n  \"mortar-pestle\": 62887,\n  \"mosque\": 63096,\n  \"mosquito-net\": 58668,\n  \"mosquito\": 58667,\n  \"motorcycle\": 61980,\n  \"mound\": 58669,\n  \"mountain-city\": 58670,\n  \"mountain-sun\": 58671,\n  \"mountain\": 63228,\n  \"mountains\": 63229,\n  \"mouse-alt\": 63693,\n  \"mouse-field\": 58792,\n  \"mouse-pointer\": 62021,\n  \"mouse\": 63692,\n  \"mp3-player\": 63694,\n  \"mug-hot\": 63414,\n  \"mug-marshmallows\": 63415,\n  \"mug-saucer\": 61684,\n  \"mug-tea-saucer\": 57845,\n  \"mug-tea\": 63605,\n  \"mug\": 63604,\n  \"multiply\": 61453,\n  \"museum\": 61852,\n  \"mushroom\": 58405,\n  \"music-alt-slash\": 63696,\n  \"music-alt\": 63695,\n  \"music-magnifying-glass\": 58978,\n  \"music-note-slash\": 63696,\n  \"music-note\": 63695,\n  \"music-slash\": 63697,\n  \"music\": 61441,\n  \"mustache\": 58812,\n  \"n\": 78,\n  \"naira-sign\": 57846,\n  \"narwhal\": 63230,\n  \"nas\": 59553,\n  \"navicon\": 61641,\n  \"nesting-dolls\": 58298,\n  \"network-wired\": 63231,\n  \"neuter\": 61996,\n  \"newspaper\": 61930,\n  \"nfc-lock\": 57848,\n  \"nfc-magnifying-glass\": 57849,\n  \"nfc-pen\": 57850,\n  \"nfc-signal\": 57851,\n  \"nfc-slash\": 57852,\n  \"nfc-symbol\": 58673,\n  \"nfc-trash\": 57853,\n  \"nfc\": 57847,\n  \"nigiri\": 58506,\n  \"non-binary\": 59399,\n  \"norwegian-krone-sign\": 59112,\n  \"nose\": 58813,\n  \"not-equal\": 62782,\n  \"notdef\": 57854,\n  \"note-medical\": 57856,\n  \"note-sticky\": 62025,\n  \"note\": 57855,\n  \"notebook\": 57857,\n  \"notes-medical\": 62593,\n  \"notes-sticky\": 59225,\n  \"notes\": 57858,\n  \"numpad\": 59340,\n  \"o\": 79,\n  \"oar\": 59524,\n  \"oars\": 59525,\n  \"object-exclude\": 58524,\n  \"object-group\": 62023,\n  \"object-intersect\": 58525,\n  \"object-subtract\": 58526,\n  \"object-ungroup\": 62024,\n  \"object-union\": 58527,\n  \"objects-align-bottom\": 58299,\n  \"objects-align-center-horizontal\": 58300,\n  \"objects-align-center-vertical\": 58301,\n  \"objects-align-left\": 58302,\n  \"objects-align-right\": 58303,\n  \"objects-align-top\": 58304,\n  \"objects-column\": 58305,\n  \"octagon-check\": 58406,\n  \"octagon-divide\": 57859,\n  \"octagon-equals\": 59059,\n  \"octagon-exclamation\": 57860,\n  \"octagon-minus\": 62216,\n  \"octagon-plus\": 62209,\n  \"octagon-xmark\": 62192,\n  \"octagon\": 62214,\n  \"octopus\": 59016,\n  \"oil-can-drip\": 57861,\n  \"oil-can\": 62995,\n  \"oil-temp\": 62996,\n  \"oil-temperature\": 62996,\n  \"oil-well\": 58674,\n  \"olive-branch\": 58135,\n  \"olive\": 58134,\n  \"om\": 63097,\n  \"omega\": 63098,\n  \"onion\": 58407,\n  \"open-captioning\": 59263,\n  \"opossum\": 59516,\n  \"option\": 58136,\n  \"ornament\": 63416,\n  \"otter\": 63232,\n  \"outdent\": 61499,\n  \"outlet\": 57372,\n  \"oven\": 57373,\n  \"overline\": 63606,\n  \"owl\": 59551,\n  \"p\": 80,\n  \"page-break\": 63607,\n  \"page-caret-down\": 58409,\n  \"page-caret-up\": 58410,\n  \"page\": 58408,\n  \"pager\": 63509,\n  \"paint-brush-alt\": 62889,\n  \"paint-brush-fine\": 62889,\n  \"paint-brush\": 61948,\n  \"paint-roller\": 62890,\n  \"paintbrush-alt\": 62889,\n  \"paintbrush-fine-slash\": 59213,\n  \"paintbrush-fine\": 62889,\n  \"paintbrush-pencil\": 57862,\n  \"paintbrush-slash\": 59214,\n  \"paintbrush\": 61948,\n  \"palette-boxes\": 62595,\n  \"palette\": 62783,\n  \"pallet-alt\": 62595,\n  \"pallet-box\": 57864,\n  \"pallet-boxes\": 62595,\n  \"pallet\": 62594,\n  \"pan-food\": 58411,\n  \"pan-frying\": 58412,\n  \"pancakes\": 58413,\n  \"panel-ews\": 58414,\n  \"panel-fire\": 58415,\n  \"panorama\": 57865,\n  \"panties\": 59092,\n  \"pants-straight\": 59094,\n  \"pants\": 59093,\n  \"paper-plane-alt\": 57866,\n  \"paper-plane-top\": 57866,\n  \"paper-plane\": 61912,\n  \"paperclip-vertical\": 58306,\n  \"paperclip\": 61638,\n  \"parachute-box\": 62669,\n  \"paragraph-left\": 63608,\n  \"paragraph-rtl\": 63608,\n  \"paragraph\": 61917,\n  \"parentheses\": 57541,\n  \"parenthesis\": 40,\n  \"parking-circle-slash\": 62998,\n  \"parking-circle\": 62997,\n  \"parking-slash\": 62999,\n  \"parking\": 62784,\n  \"party-back\": 58460,\n  \"party-bell\": 58138,\n  \"party-horn\": 58139,\n  \"passport\": 62891,\n  \"pastafarianism\": 63099,\n  \"paste\": 61674,\n  \"pause-circle\": 62091,\n  \"pause\": 61516,\n  \"paw-alt\": 63233,\n  \"paw-claws\": 63234,\n  \"paw-simple\": 63233,\n  \"paw\": 61872,\n  \"peace\": 63100,\n  \"peach\": 57867,\n  \"peanut\": 58416,\n  \"peanuts\": 58417,\n  \"peapod\": 58140,\n  \"pear\": 57868,\n  \"pedestal\": 57869,\n  \"pegasus\": 63235,\n  \"pen-alt-slash\": 57871,\n  \"pen-alt\": 62213,\n  \"pen-circle\": 57870,\n  \"pen-clip-slash\": 57871,\n  \"pen-clip\": 62213,\n  \"pen-fancy-slash\": 57872,\n  \"pen-fancy\": 62892,\n  \"pen-field\": 57873,\n  \"pen-line\": 57874,\n  \"pen-nib-slash\": 58529,\n  \"pen-nib\": 62893,\n  \"pen-paintbrush\": 63000,\n  \"pen-ruler\": 62894,\n  \"pen-slash\": 57875,\n  \"pen-square\": 61771,\n  \"pen-swirl\": 57876,\n  \"pen-to-square\": 61508,\n  \"pen\": 62212,\n  \"pencil-alt\": 62211,\n  \"pencil-line\": 59215,\n  \"pencil-mechanical\": 58826,\n  \"pencil-paintbrush\": 63000,\n  \"pencil-ruler\": 62894,\n  \"pencil-slash\": 57877,\n  \"pencil-square\": 61771,\n  \"pencil\": 62211,\n  \"pennant\": 62550,\n  \"pentagon\": 59280,\n  \"people-arrows-left-right\": 57448,\n  \"people-arrows\": 57448,\n  \"people-carry-box\": 62670,\n  \"people-carry\": 62670,\n  \"people-dress-simple\": 57880,\n  \"people-dress\": 57879,\n  \"people-group\": 58675,\n  \"people-line\": 58676,\n  \"people-pants-simple\": 57882,\n  \"people-pants\": 57881,\n  \"people-pulling\": 58677,\n  \"people-robbery\": 58678,\n  \"people-roof\": 58679,\n  \"people-simple\": 57883,\n  \"people\": 57878,\n  \"pepper-hot\": 63510,\n  \"pepper\": 58418,\n  \"percent\": 37,\n  \"percentage\": 37,\n  \"period\": 46,\n  \"person-arms-raised\": 59267,\n  \"person-arrow-down-to-line\": 58680,\n  \"person-arrow-up-from-line\": 58681,\n  \"person-basketball\": 59268,\n  \"person-biking-mountain\": 63563,\n  \"person-biking\": 63562,\n  \"person-booth\": 63318,\n  \"person-breastfeeding\": 58682,\n  \"person-burst\": 58683,\n  \"person-cane\": 58684,\n  \"person-carry-box\": 62671,\n  \"person-carry-empty\": 59269,\n  \"person-carry\": 62671,\n  \"person-chalkboard\": 58685,\n  \"person-circle-check\": 58686,\n  \"person-circle-exclamation\": 58687,\n  \"person-circle-minus\": 58688,\n  \"person-circle-plus\": 58689,\n  \"person-circle-question\": 58690,\n  \"person-circle-xmark\": 58691,\n  \"person-digging\": 63582,\n  \"person-dolly-empty\": 62673,\n  \"person-dolly\": 62672,\n  \"person-dots-from-line\": 62576,\n  \"person-dress-burst\": 58692,\n  \"person-dress-fairy\": 58887,\n  \"person-dress-simple\": 57884,\n  \"person-dress\": 61826,\n  \"person-drowning\": 58693,\n  \"person-fairy\": 58888,\n  \"person-falling-burst\": 58695,\n  \"person-falling\": 58694,\n  \"person-from-portal\": 57379,\n  \"person-golfing\": 59270,\n  \"person-half-dress\": 58696,\n  \"person-harassing\": 58697,\n  \"person-hiking\": 63212,\n  \"person-limbs-wide\": 59271,\n  \"person-meditating\": 59361,\n  \"person-military-pointing\": 58698,\n  \"person-military-rifle\": 58699,\n  \"person-military-to-person\": 58700,\n  \"person-pinball\": 57885,\n  \"person-praying\": 63107,\n  \"person-pregnant\": 58142,\n  \"person-rays\": 58701,\n  \"person-rifle\": 58702,\n  \"person-running-fast\": 58879,\n  \"person-running\": 63244,\n  \"person-seat-reclined\": 57887,\n  \"person-seat-window\": 59272,\n  \"person-seat\": 57886,\n  \"person-shelter\": 58703,\n  \"person-sign\": 63319,\n  \"person-simple\": 57888,\n  \"person-skating\": 63429,\n  \"person-ski-jumping\": 63431,\n  \"person-ski-lift\": 63432,\n  \"person-skiing-nordic\": 63434,\n  \"person-skiing\": 63433,\n  \"person-sledding\": 63435,\n  \"person-snowboarding\": 63438,\n  \"person-snowmobiling\": 63441,\n  \"person-soccer\": 59273,\n  \"person-swimming-pool\": 59274,\n  \"person-swimming-water\": 59275,\n  \"person-swimming\": 62916,\n  \"person-through-window\": 58793,\n  \"person-to-door\": 58419,\n  \"person-to-portal\": 57378,\n  \"person-walking-arrow-loop-left\": 58705,\n  \"person-walking-arrow-right\": 58706,\n  \"person-walking-dashed-line-arrow-right\": 58707,\n  \"person-walking-luggage\": 58708,\n  \"person-walking-with-cane\": 62109,\n  \"person-walking\": 62804,\n  \"person-water-arms-raised\": 59276,\n  \"person-waving\": 59277,\n  \"person\": 61827,\n  \"peruvian-soles-sign\": 59141,\n  \"peseta-sign\": 57889,\n  \"peso-sign\": 57890,\n  \"phone-alt\": 63609,\n  \"phone-arrow-down-left\": 57891,\n  \"phone-arrow-down\": 57891,\n  \"phone-arrow-right\": 58814,\n  \"phone-arrow-up-right\": 57892,\n  \"phone-arrow-up\": 57892,\n  \"phone-circle-alt\": 57628,\n  \"phone-circle-down\": 57629,\n  \"phone-circle\": 57627,\n  \"phone-connection\": 59105,\n  \"phone-flip\": 63609,\n  \"phone-hangup\": 57893,\n  \"phone-incoming\": 57891,\n  \"phone-intercom\": 58420,\n  \"phone-laptop\": 63610,\n  \"phone-missed\": 57894,\n  \"phone-office\": 63101,\n  \"phone-outgoing\": 57892,\n  \"phone-plus\": 62674,\n  \"phone-rotary\": 63699,\n  \"phone-slash\": 62429,\n  \"phone-square-alt\": 63611,\n  \"phone-square-down\": 57978,\n  \"phone-square\": 61592,\n  \"phone-volume\": 62112,\n  \"phone-waveform\": 59106,\n  \"phone-xmark\": 57895,\n  \"phone\": 61589,\n  \"photo-film-music\": 57896,\n  \"photo-film\": 63612,\n  \"photo-video\": 63612,\n  \"pi\": 63102,\n  \"piano-keyboard\": 63701,\n  \"piano\": 63700,\n  \"pickaxe\": 58815,\n  \"pickleball\": 58421,\n  \"picture-in-picture\": 59403,\n  \"pie-chart\": 61952,\n  \"pie\": 63237,\n  \"pig\": 63238,\n  \"piggy-bank\": 62675,\n  \"pills\": 62596,\n  \"pinata\": 58307,\n  \"pinball\": 57897,\n  \"pineapple\": 58143,\n  \"ping-pong-paddle-ball\": 62557,\n  \"pipe-circle-check\": 58422,\n  \"pipe-collar\": 58423,\n  \"pipe-section\": 58424,\n  \"pipe-smoking\": 58308,\n  \"pipe-valve\": 58425,\n  \"pipe\": 124,\n  \"pisces\": 59468,\n  \"pizza-slice\": 63512,\n  \"pizza\": 63511,\n  \"place-of-worship\": 63103,\n  \"plane-alt\": 62430,\n  \"plane-arrival\": 62895,\n  \"plane-circle-check\": 58709,\n  \"plane-circle-exclamation\": 58710,\n  \"plane-circle-xmark\": 58711,\n  \"plane-departure\": 62896,\n  \"plane-engines\": 62430,\n  \"plane-flying\": 59323,\n  \"plane-landing-gear\": 59324,\n  \"plane-lock\": 58712,\n  \"plane-prop\": 57899,\n  \"plane-slash\": 57449,\n  \"plane-tail\": 57900,\n  \"plane-up-slash\": 57902,\n  \"plane-up\": 57901,\n  \"plane\": 61554,\n  \"planet-moon\": 57375,\n  \"planet-ringed\": 57376,\n  \"plant-wilt\": 58794,\n  \"plate-utensils\": 58427,\n  \"plate-wheat\": 58714,\n  \"play-circle\": 61764,\n  \"play-flip\": 59264,\n  \"play-pause\": 57903,\n  \"play\": 61515,\n  \"plug-circle-bolt\": 58715,\n  \"plug-circle-check\": 58716,\n  \"plug-circle-exclamation\": 58717,\n  \"plug-circle-minus\": 58718,\n  \"plug-circle-plus\": 58719,\n  \"plug-circle-xmark\": 58720,\n  \"plug\": 61926,\n  \"plus-circle\": 61525,\n  \"plus-hexagon\": 62208,\n  \"plus-large\": 58782,\n  \"plus-minus\": 58428,\n  \"plus-octagon\": 62209,\n  \"plus-square\": 61694,\n  \"plus\": 43,\n  \"podcast\": 62158,\n  \"podium-star\": 63320,\n  \"podium\": 63104,\n  \"poker-chip\": 59554,\n  \"police-box\": 57377,\n  \"polish-zloty-sign\": 59147,\n  \"poll-h\": 63106,\n  \"poll-people\": 63321,\n  \"poll\": 63105,\n  \"pompebled\": 58429,\n  \"poo-bolt\": 63322,\n  \"poo-storm\": 63322,\n  \"poo\": 62206,\n  \"pool-8-ball\": 58309,\n  \"poop\": 63001,\n  \"popcorn\": 63513,\n  \"popsicle\": 58430,\n  \"portal-enter\": 57378,\n  \"portal-exit\": 57379,\n  \"portrait\": 62432,\n  \"possum\": 59516,\n  \"postage-stamp\": 59107,\n  \"pot-food\": 58431,\n  \"potato\": 58432,\n  \"pound-sign\": 61780,\n  \"power-off\": 61457,\n  \"pray\": 63107,\n  \"praying-hands\": 63108,\n  \"prescription-bottle-alt\": 62598,\n  \"prescription-bottle-medical\": 62598,\n  \"prescription-bottle-pill\": 58816,\n  \"prescription-bottle\": 62597,\n  \"prescription\": 62897,\n  \"presentation-screen\": 63109,\n  \"presentation\": 63109,\n  \"pretzel\": 58433,\n  \"print-magnifying-glass\": 63514,\n  \"print-search\": 63514,\n  \"print-slash\": 63110,\n  \"print\": 61487,\n  \"pro\": 57909,\n  \"procedures\": 62599,\n  \"project-diagram\": 62786,\n  \"projector\": 63702,\n  \"pronoun\": 59041,\n  \"pump-impeller\": 59445,\n  \"pump-medical\": 57450,\n  \"pump-soap\": 57451,\n  \"pump\": 58434,\n  \"pumpkin\": 63239,\n  \"puzzle-piece-alt\": 57905,\n  \"puzzle-piece-simple\": 57905,\n  \"puzzle-piece\": 61742,\n  \"puzzle\": 58435,\n  \"q\": 81,\n  \"qrcode-read\": 59289,\n  \"qrcode\": 61481,\n  \"question-circle\": 61529,\n  \"question-square\": 62205,\n  \"question\": 63,\n  \"quidditch-broom-ball\": 62552,\n  \"quidditch\": 62552,\n  \"quote-left-alt\": 61709,\n  \"quote-left\": 61709,\n  \"quote-right-alt\": 61710,\n  \"quote-right\": 61710,\n  \"quotes\": 57908,\n  \"quran\": 63111,\n  \"r\": 82,\n  \"rabbit-fast\": 63241,\n  \"rabbit-running\": 63241,\n  \"rabbit\": 63240,\n  \"raccoon\": 58899,\n  \"racquet\": 62554,\n  \"radar\": 57380,\n  \"radiation-alt\": 63418,\n  \"radiation\": 63417,\n  \"radio-alt\": 63704,\n  \"radio-tuner\": 63704,\n  \"radio\": 63703,\n  \"rainbow-half\": 59338,\n  \"rainbow\": 63323,\n  \"raindrops\": 63324,\n  \"ram\": 63242,\n  \"ramp-loading\": 62676,\n  \"random\": 61556,\n  \"ranking-star\": 58721,\n  \"raygun\": 57381,\n  \"receipt\": 62787,\n  \"record-vinyl\": 63705,\n  \"rectangle-4k\": 59250,\n  \"rectangle-ad\": 63041,\n  \"rectangle-api\": 59552,\n  \"rectangle-barcode\": 62563,\n  \"rectangle-beta\": 59400,\n  \"rectangle-code\": 58146,\n  \"rectangle-hd\": 57774,\n  \"rectangle-hdr\": 59251,\n  \"rectangle-high-dynamic-range\": 59251,\n  \"rectangle-history-circle-plus\": 58531,\n  \"rectangle-history-circle-user\": 58532,\n  \"rectangle-history\": 58530,\n  \"rectangle-irc\": 59500,\n  \"rectangle-landscape\": 62202,\n  \"rectangle-list\": 61474,\n  \"rectangle-minus\": 59060,\n  \"rectangle-n-a\": 59560,\n  \"rectangle-new\": 59514,\n  \"rectangle-plus\": 59061,\n  \"rectangle-portrait\": 62203,\n  \"rectangle-pro\": 57909,\n  \"rectangle-sd\": 57994,\n  \"rectangle-tall\": 59281,\n  \"rectangle-terminal\": 57910,\n  \"rectangle-times\": 62480,\n  \"rectangle-vertical-history\": 57911,\n  \"rectangle-vertical\": 62203,\n  \"rectangle-video-on-demand\": 59252,\n  \"rectangle-wide\": 62204,\n  \"rectangle-xmark\": 62480,\n  \"rectangle\": 62202,\n  \"rectangles-mixed\": 58147,\n  \"recycle\": 61880,\n  \"redo-alt\": 62201,\n  \"redo\": 61470,\n  \"reel\": 57912,\n  \"reflect-both\": 58991,\n  \"reflect-horizontal\": 58980,\n  \"reflect-vertical\": 58981,\n  \"refresh\": 61473,\n  \"refrigerator\": 57382,\n  \"registered\": 62045,\n  \"remote\": 59561,\n  \"remove-format\": 63613,\n  \"remove\": 61453,\n  \"renminbi-sign\": 59196,\n  \"reorder\": 62800,\n  \"repeat-1-alt\": 62310,\n  \"repeat-1\": 62309,\n  \"repeat-alt\": 62308,\n  \"repeat\": 62307,\n  \"reply-all\": 61730,\n  \"reply-clock\": 57913,\n  \"reply-time\": 57913,\n  \"reply\": 62437,\n  \"republican\": 63326,\n  \"restroom-simple\": 57914,\n  \"restroom\": 63421,\n  \"retweet-alt\": 62305,\n  \"retweet\": 61561,\n  \"rhombus\": 57915,\n  \"ribbon\": 62678,\n  \"right-from-bracket\": 62197,\n  \"right-from-dotted-line\": 59076,\n  \"right-from-line\": 62279,\n  \"right-left-large\": 58849,\n  \"right-left\": 62306,\n  \"right-long-to-line\": 58436,\n  \"right-long\": 62219,\n  \"right-to-bracket\": 62198,\n  \"right-to-dotted-line\": 59077,\n  \"right-to-line\": 62284,\n  \"right\": 62294,\n  \"ring-diamond\": 58795,\n  \"ring\": 63243,\n  \"rings-wedding\": 63515,\n  \"rmb\": 61783,\n  \"road-barrier\": 58722,\n  \"road-bridge\": 58723,\n  \"road-circle-check\": 58724,\n  \"road-circle-exclamation\": 58725,\n  \"road-circle-xmark\": 58726,\n  \"road-lock\": 58727,\n  \"road-spikes\": 58728,\n  \"road\": 61464,\n  \"robot-astromech\": 58066,\n  \"robot\": 62788,\n  \"rocket-launch\": 57383,\n  \"rocket-vertical\": 59325,\n  \"rocket\": 61749,\n  \"rod-asclepius\": 58745,\n  \"rod-snake\": 58745,\n  \"roller-coaster\": 58148,\n  \"rotate-back\": 62186,\n  \"rotate-backward\": 62186,\n  \"rotate-exclamation\": 57916,\n  \"rotate-forward\": 62201,\n  \"rotate-left\": 62186,\n  \"rotate-reverse\": 58929,\n  \"rotate-right\": 62201,\n  \"rotate\": 62193,\n  \"rouble\": 61784,\n  \"route-highway\": 63002,\n  \"route-interstate\": 63003,\n  \"route\": 62679,\n  \"router\": 63706,\n  \"rows-3\": 59531,\n  \"rows\": 58002,\n  \"rss-square\": 61763,\n  \"rss\": 61598,\n  \"rub\": 61784,\n  \"ruble-sign\": 61784,\n  \"ruble\": 61784,\n  \"rug\": 58729,\n  \"rugby-ball\": 58310,\n  \"ruler-combined\": 62790,\n  \"ruler-horizontal\": 62791,\n  \"ruler-triangle\": 63004,\n  \"ruler-vertical\": 62792,\n  \"ruler\": 62789,\n  \"running\": 63244,\n  \"rupee-sign\": 61782,\n  \"rupee\": 61782,\n  \"rupiah-sign\": 57917,\n  \"rv\": 63422,\n  \"s\": 83,\n  \"sack-dollar\": 63517,\n  \"sack-xmark\": 58730,\n  \"sack\": 63516,\n  \"sad-cry\": 62899,\n  \"sad-tear\": 62900,\n  \"sagittarius\": 59469,\n  \"sailboat\": 58437,\n  \"salad\": 63518,\n  \"salt-shaker\": 58438,\n  \"sandwich\": 63519,\n  \"satellite-dish\": 63424,\n  \"satellite\": 63423,\n  \"sausage\": 63520,\n  \"save-circle-arrow-right\": 57728,\n  \"save-circle-xmark\": 57729,\n  \"save-times\": 57729,\n  \"save\": 61639,\n  \"sax-hot\": 63707,\n  \"saxophone-fire\": 63707,\n  \"saxophone\": 63708,\n  \"scale-balanced\": 62030,\n  \"scale-unbalanced-flip\": 62742,\n  \"scale-unbalanced\": 62741,\n  \"scalpel-line-dashed\": 63006,\n  \"scalpel-path\": 63006,\n  \"scalpel\": 63005,\n  \"scanner-gun\": 62600,\n  \"scanner-image\": 63731,\n  \"scanner-keyboard\": 62601,\n  \"scanner-touchscreen\": 62602,\n  \"scanner\": 62600,\n  \"scarecrow\": 63245,\n  \"scarf\": 63425,\n  \"school-circle-check\": 58731,\n  \"school-circle-exclamation\": 58732,\n  \"school-circle-xmark\": 58733,\n  \"school-flag\": 58734,\n  \"school-lock\": 58735,\n  \"school-unlock\": 59083,\n  \"school\": 62793,\n  \"scissors\": 61636,\n  \"scooter\": 59331,\n  \"scorpio\": 59470,\n  \"screen-users\": 63037,\n  \"screencast\": 57918,\n  \"screenshot\": 57562,\n  \"screwdriver-wrench\": 63449,\n  \"screwdriver\": 62794,\n  \"scribble\": 57919,\n  \"scroll-old\": 63247,\n  \"scroll-ribbon\": 62954,\n  \"scroll-torah\": 63136,\n  \"scroll\": 63246,\n  \"scrubber\": 62200,\n  \"scythe\": 63248,\n  \"sd-card\": 63426,\n  \"sd-cards\": 57920,\n  \"seal-exclamation\": 57922,\n  \"seal-question\": 57923,\n  \"seal\": 57921,\n  \"search-dollar\": 63112,\n  \"search-location\": 63113,\n  \"search-minus\": 61456,\n  \"search-plus\": 61454,\n  \"search\": 61442,\n  \"seat-airline-window\": 59326,\n  \"seat-airline\": 57924,\n  \"seat\": 59236,\n  \"seats\": 59237,\n  \"section\": 58439,\n  \"seedling\": 62680,\n  \"semicolon\": 59,\n  \"send-back\": 63614,\n  \"send-backward\": 63615,\n  \"send\": 57866,\n  \"sensor-alert\": 57385,\n  \"sensor-cloud\": 57388,\n  \"sensor-fire\": 57386,\n  \"sensor-on\": 57387,\n  \"sensor-smoke\": 57388,\n  \"sensor-triangle-exclamation\": 57385,\n  \"sensor\": 57384,\n  \"septagon\": 59424,\n  \"server\": 62003,\n  \"shapes\": 63007,\n  \"share-all\": 62311,\n  \"share-alt-square\": 61921,\n  \"share-alt\": 61920,\n  \"share-from-square\": 61773,\n  \"share-nodes\": 61920,\n  \"share-square\": 61773,\n  \"share\": 61540,\n  \"sheep\": 63249,\n  \"sheet-plastic\": 58737,\n  \"shekel-sign\": 61963,\n  \"shekel\": 61963,\n  \"shelves-empty\": 57926,\n  \"shelves\": 62592,\n  \"sheqel-sign\": 61963,\n  \"sheqel\": 61963,\n  \"shield-alt\": 62445,\n  \"shield-blank\": 61746,\n  \"shield-cat\": 58738,\n  \"shield-check\": 62199,\n  \"shield-cross\": 63250,\n  \"shield-dog\": 58739,\n  \"shield-exclamation\": 57927,\n  \"shield-halved\": 62445,\n  \"shield-heart\": 58740,\n  \"shield-keyhole\": 57928,\n  \"shield-minus\": 57929,\n  \"shield-plus\": 57930,\n  \"shield-quartered\": 58741,\n  \"shield-slash\": 57931,\n  \"shield-times\": 57932,\n  \"shield-user\": 59401,\n  \"shield-virus\": 57452,\n  \"shield-xmark\": 57932,\n  \"shield\": 61746,\n  \"ship-large\": 59408,\n  \"ship\": 61978,\n  \"shipping-fast\": 62603,\n  \"shipping-timed\": 62604,\n  \"shirt-jersey\": 59095,\n  \"shirt-long-sleeve\": 58311,\n  \"shirt-running\": 58312,\n  \"shirt-tank-top\": 58313,\n  \"shirt\": 62803,\n  \"shish-kebab\": 63521,\n  \"shoe-prints\": 62795,\n  \"shoe\": 59096,\n  \"shop-24\": 59290,\n  \"shop-lock\": 58533,\n  \"shop-slash\": 57456,\n  \"shop\": 62799,\n  \"shopping-bag\": 62096,\n  \"shopping-basket-alt\": 57519,\n  \"shopping-basket\": 62097,\n  \"shopping-cart\": 61562,\n  \"shortcake\": 58341,\n  \"shorts\": 59097,\n  \"shovel-snow\": 63427,\n  \"shovel\": 63251,\n  \"shower-alt\": 57933,\n  \"shower-down\": 57933,\n  \"shower\": 62156,\n  \"shredder\": 63114,\n  \"shrimp\": 58440,\n  \"shuffle\": 61556,\n  \"shutters\": 58441,\n  \"shuttle-space-vertical\": 59327,\n  \"shuttle-space\": 61847,\n  \"shuttle-van\": 62902,\n  \"shuttlecock\": 62555,\n  \"sickle\": 63522,\n  \"sidebar-flip\": 57935,\n  \"sidebar\": 57934,\n  \"sigma\": 63115,\n  \"sign-hanging\": 62681,\n  \"sign-in-alt\": 62198,\n  \"sign-in\": 61584,\n  \"sign-language\": 62119,\n  \"sign-out-alt\": 62197,\n  \"sign-out\": 61579,\n  \"sign-post\": 58916,\n  \"sign-posts-wrench\": 58918,\n  \"sign-posts\": 58917,\n  \"sign\": 62681,\n  \"signal-1\": 63116,\n  \"signal-2\": 63117,\n  \"signal-3\": 63118,\n  \"signal-4\": 63119,\n  \"signal-5\": 61458,\n  \"signal-alt-1\": 63121,\n  \"signal-alt-2\": 63122,\n  \"signal-alt-3\": 63123,\n  \"signal-alt-4\": 63120,\n  \"signal-alt-slash\": 63124,\n  \"signal-alt\": 63120,\n  \"signal-bars-fair\": 63122,\n  \"signal-bars-good\": 63123,\n  \"signal-bars-slash\": 63124,\n  \"signal-bars-strong\": 63120,\n  \"signal-bars-weak\": 63121,\n  \"signal-bars\": 63120,\n  \"signal-fair\": 63117,\n  \"signal-good\": 63118,\n  \"signal-perfect\": 61458,\n  \"signal-slash\": 63125,\n  \"signal-stream-slash\": 57936,\n  \"signal-stream\": 63709,\n  \"signal-strong\": 63119,\n  \"signal-weak\": 63116,\n  \"signal\": 61458,\n  \"signapore-dollar-sign\": 59182,\n  \"signature-lock\": 58314,\n  \"signature-slash\": 58315,\n  \"signature\": 62903,\n  \"signing\": 62119,\n  \"signs-post\": 62071,\n  \"sim-card\": 63428,\n  \"sim-cards\": 57937,\n  \"single-quote-left\": 59419,\n  \"single-quote-right\": 59420,\n  \"sink\": 57453,\n  \"siren-on\": 57390,\n  \"siren\": 57389,\n  \"sitemap\": 61672,\n  \"skating\": 63429,\n  \"skeleton-ribs\": 58827,\n  \"skeleton\": 63008,\n  \"ski-boot-ski\": 58317,\n  \"ski-boot\": 58316,\n  \"ski-jump\": 63431,\n  \"ski-lift\": 63432,\n  \"skiing-nordic\": 63434,\n  \"skiing\": 63433,\n  \"skull-cow\": 63710,\n  \"skull-crossbones\": 63252,\n  \"skull\": 62796,\n  \"slash-back\": 92,\n  \"slash-forward\": 47,\n  \"slash\": 63253,\n  \"sledding\": 63435,\n  \"sleigh\": 63436,\n  \"slider-circle\": 59216,\n  \"slider\": 57938,\n  \"sliders-h-square\": 62448,\n  \"sliders-h\": 61918,\n  \"sliders-simple\": 57939,\n  \"sliders-up\": 62449,\n  \"sliders-v-square\": 62450,\n  \"sliders-v\": 62449,\n  \"sliders\": 61918,\n  \"slot-machine\": 58318,\n  \"smile-beam\": 62904,\n  \"smile-plus\": 62905,\n  \"smile-wink\": 62682,\n  \"smile\": 61720,\n  \"smog\": 63327,\n  \"smoke\": 63328,\n  \"smoking-ban\": 62797,\n  \"smoking\": 62605,\n  \"sms\": 63437,\n  \"snake\": 63254,\n  \"sneaker-running\": 59417,\n  \"sneaker\": 59098,\n  \"snooze\": 63616,\n  \"snow-blowing\": 63329,\n  \"snowboarding\": 63438,\n  \"snowflake-droplets\": 58817,\n  \"snowflake\": 62172,\n  \"snowflakes\": 63439,\n  \"snowman-head\": 63387,\n  \"snowman\": 63440,\n  \"snowmobile-blank\": 59332,\n  \"snowmobile\": 63441,\n  \"snowplow\": 63442,\n  \"soap\": 57454,\n  \"soccer-ball\": 61923,\n  \"socks\": 63126,\n  \"soft-serve\": 58368,\n  \"solar-panel\": 62906,\n  \"solar-system\": 57391,\n  \"sort-alpha-asc\": 61789,\n  \"sort-alpha-desc\": 63617,\n  \"sort-alpha-down-alt\": 63617,\n  \"sort-alpha-down\": 61789,\n  \"sort-alpha-up-alt\": 63618,\n  \"sort-alpha-up\": 61790,\n  \"sort-alt\": 63619,\n  \"sort-amount-asc\": 61792,\n  \"sort-amount-desc\": 63620,\n  \"sort-amount-down-alt\": 63620,\n  \"sort-amount-down\": 61792,\n  \"sort-amount-up-alt\": 63621,\n  \"sort-amount-up\": 61793,\n  \"sort-asc\": 61662,\n  \"sort-circle-down\": 57393,\n  \"sort-circle-up\": 57394,\n  \"sort-circle\": 57392,\n  \"sort-desc\": 61661,\n  \"sort-down\": 61661,\n  \"sort-numeric-asc\": 61794,\n  \"sort-numeric-desc\": 63622,\n  \"sort-numeric-down-alt\": 63622,\n  \"sort-numeric-down\": 61794,\n  \"sort-numeric-up-alt\": 63623,\n  \"sort-numeric-up\": 61795,\n  \"sort-shapes-down-alt\": 63625,\n  \"sort-shapes-down\": 63624,\n  \"sort-shapes-up-alt\": 63627,\n  \"sort-shapes-up\": 63626,\n  \"sort-size-down-alt\": 63629,\n  \"sort-size-down\": 63628,\n  \"sort-size-up-alt\": 63631,\n  \"sort-size-up\": 63630,\n  \"sort-up-down\": 57497,\n  \"sort-up\": 61662,\n  \"sort\": 61660,\n  \"soup\": 63523,\n  \"spa\": 62907,\n  \"space-shuttle\": 61847,\n  \"space-station-moon-alt\": 57396,\n  \"space-station-moon-construction\": 57396,\n  \"space-station-moon\": 57395,\n  \"spade\": 62196,\n  \"spaghetti-monster-flying\": 63099,\n  \"sparkle\": 58838,\n  \"sparkles\": 63632,\n  \"speaker\": 63711,\n  \"speakers\": 63712,\n  \"spell-check\": 63633,\n  \"spider-black-widow\": 63256,\n  \"spider-web\": 63257,\n  \"spider\": 63255,\n  \"spine\": 59233,\n  \"spinner-scale\": 58922,\n  \"spinner-third\": 62452,\n  \"spinner\": 61712,\n  \"spiral\": 59402,\n  \"split\": 57940,\n  \"splotch\": 62908,\n  \"spoon\": 62181,\n  \"sportsball\": 58443,\n  \"spray-can-sparkles\": 62928,\n  \"spray-can\": 62909,\n  \"sprinkler-ceiling\": 58444,\n  \"sprinkler\": 57397,\n  \"sprout\": 62680,\n  \"square-0\": 57941,\n  \"square-1\": 57942,\n  \"square-2\": 57943,\n  \"square-3\": 57944,\n  \"square-4\": 57945,\n  \"square-5\": 57946,\n  \"square-6\": 57947,\n  \"square-7\": 57948,\n  \"square-8\": 57949,\n  \"square-9\": 57950,\n  \"square-a-lock\": 58445,\n  \"square-a\": 57951,\n  \"square-ampersand\": 57952,\n  \"square-arrow-down-left\": 57953,\n  \"square-arrow-down-right\": 57954,\n  \"square-arrow-down\": 62265,\n  \"square-arrow-left\": 62266,\n  \"square-arrow-right\": 62267,\n  \"square-arrow-up-left\": 57955,\n  \"square-arrow-up-right\": 61772,\n  \"square-arrow-up\": 62268,\n  \"square-austral\": 59174,\n  \"square-australian-dollar\": 59160,\n  \"square-b\": 57956,\n  \"square-baht\": 59161,\n  \"square-bangladeshi-taka\": 59204,\n  \"square-binary\": 59035,\n  \"square-bitcoin\": 59122,\n  \"square-bolt\": 57957,\n  \"square-brazilian-real\": 59121,\n  \"square-c\": 57958,\n  \"square-caret-down\": 61776,\n  \"square-caret-left\": 61841,\n  \"square-caret-right\": 61778,\n  \"square-caret-up\": 61777,\n  \"square-cedi\": 59177,\n  \"square-cent\": 59120,\n  \"square-check\": 61770,\n  \"square-chevron-down\": 62249,\n  \"square-chevron-left\": 62250,\n  \"square-chevron-right\": 62251,\n  \"square-chevron-up\": 62252,\n  \"square-chf\": 59110,\n  \"square-code\": 57959,\n  \"square-colon\": 59194,\n  \"square-cruzeiro\": 59117,\n  \"square-currency\": 59148,\n  \"square-d\": 57960,\n  \"square-danish-krone\": 59207,\n  \"square-dashed-circle-plus\": 58818,\n  \"square-dashed\": 57961,\n  \"square-divide\": 57962,\n  \"square-dollar\": 62185,\n  \"square-dong\": 59151,\n  \"square-down-left\": 57963,\n  \"square-down-right\": 57964,\n  \"square-down\": 62288,\n  \"square-e\": 57965,\n  \"square-ellipsis-vertical\": 57967,\n  \"square-ellipsis\": 57966,\n  \"square-envelope\": 61849,\n  \"square-equals\": 59062,\n  \"square-euro\": 59186,\n  \"square-eurozone\": 59175,\n  \"square-exclamation\": 62241,\n  \"square-f\": 57968,\n  \"square-florin\": 59159,\n  \"square-fragile\": 62619,\n  \"square-franc\": 59183,\n  \"square-full\": 62556,\n  \"square-g\": 57969,\n  \"square-guarani\": 59150,\n  \"square-h\": 61693,\n  \"square-half-horizontal\": 59406,\n  \"square-half-stroke-horizontal\": 59407,\n  \"square-half-stroke\": 59283,\n  \"square-half\": 59282,\n  \"square-heart\": 62664,\n  \"square-hryvnia\": 59152,\n  \"square-i\": 57970,\n  \"square-indian-rupee\": 59125,\n  \"square-info\": 62223,\n  \"square-j\": 57971,\n  \"square-k\": 57972,\n  \"square-kanban\": 58504,\n  \"square-kip\": 59149,\n  \"square-l\": 57973,\n  \"square-lari\": 59199,\n  \"square-left\": 62289,\n  \"square-lira\": 59111,\n  \"square-list\": 58505,\n  \"square-litecoin\": 59127,\n  \"square-m\": 57974,\n  \"square-malaysian-ringgit\": 59208,\n  \"square-manat\": 59140,\n  \"square-microphone\": 59265,\n  \"square-mill\": 59146,\n  \"square-minus\": 61766,\n  \"square-n\": 57975,\n  \"square-naira\": 59144,\n  \"square-nfi\": 58742,\n  \"square-norwegian-krone\": 59143,\n  \"square-o\": 57976,\n  \"square-p\": 57977,\n  \"square-parking-slash\": 62999,\n  \"square-parking\": 62784,\n  \"square-pen\": 61771,\n  \"square-person-confined\": 58743,\n  \"square-peruvian-soles\": 59158,\n  \"square-peseta\": 59114,\n  \"square-peso\": 59162,\n  \"square-phone-flip\": 63611,\n  \"square-phone-hangup\": 57978,\n  \"square-phone\": 61592,\n  \"square-plus\": 61694,\n  \"square-polish-zloty\": 59190,\n  \"square-poll-horizontal\": 63106,\n  \"square-poll-vertical\": 63105,\n  \"square-q\": 57979,\n  \"square-quarters\": 58446,\n  \"square-question\": 62205,\n  \"square-quote\": 58153,\n  \"square-r\": 57980,\n  \"square-renminbi\": 59197,\n  \"square-right\": 62290,\n  \"square-ring\": 58447,\n  \"square-root-alt\": 63128,\n  \"square-root-variable\": 63128,\n  \"square-root\": 63127,\n  \"square-rss\": 61763,\n  \"square-ruble\": 59128,\n  \"square-rupee\": 59157,\n  \"square-rupiah\": 59154,\n  \"square-s\": 57981,\n  \"square-share-nodes\": 61921,\n  \"square-shekel\": 59189,\n  \"square-sliders-vertical\": 62450,\n  \"square-sliders\": 62448,\n  \"square-small\": 57982,\n  \"square-star\": 57983,\n  \"square-sterling\": 59155,\n  \"square-swedish-krona\": 59164,\n  \"square-t\": 57984,\n  \"square-tenge\": 59185,\n  \"square-terminal\": 58154,\n  \"square-this-way-up\": 62623,\n  \"square-tugrik\": 59176,\n  \"square-turkish-lira\": 59167,\n  \"square-u\": 57985,\n  \"square-up-left\": 57986,\n  \"square-up-right\": 62304,\n  \"square-up\": 62291,\n  \"square-user\": 57987,\n  \"square-v\": 57988,\n  \"square-virus\": 58744,\n  \"square-w\": 57989,\n  \"square-wine-glass-crack\": 62619,\n  \"square-won\": 59145,\n  \"square-x\": 57990,\n  \"square-xmark\": 62163,\n  \"square-y\": 57991,\n  \"square-yen\": 59172,\n  \"square-z\": 57992,\n  \"square\": 61640,\n  \"squareapore-dollar\": 59187,\n  \"squid\": 58448,\n  \"squirrel\": 63258,\n  \"stadium\": 59084,\n  \"staff-aesculapius\": 58745,\n  \"staff-snake\": 58745,\n  \"staff\": 63259,\n  \"stair-car\": 59333,\n  \"stairs\": 57993,\n  \"stamp\": 62911,\n  \"standard-definition\": 57994,\n  \"stapler\": 58799,\n  \"star-and-crescent\": 63129,\n  \"star-christmas\": 63444,\n  \"star-circle\": 57635,\n  \"star-exclamation\": 62195,\n  \"star-half-alt\": 62912,\n  \"star-half-stroke\": 62912,\n  \"star-half\": 61577,\n  \"star-of-david\": 63130,\n  \"star-of-life\": 63009,\n  \"star-sharp-half-alt\": 57997,\n  \"star-sharp-half-stroke\": 57997,\n  \"star-sharp-half\": 57996,\n  \"star-sharp\": 57995,\n  \"star-shooting\": 57398,\n  \"star\": 61445,\n  \"starfighter-alt-advanced\": 57998,\n  \"starfighter-alt\": 57400,\n  \"starfighter-twin-ion-engine-advanced\": 57998,\n  \"starfighter-twin-ion-engine\": 57400,\n  \"starfighter\": 57399,\n  \"stars\": 63330,\n  \"starship-freighter\": 57402,\n  \"starship\": 57401,\n  \"steak\": 63524,\n  \"steering-wheel\": 63010,\n  \"step-backward\": 61512,\n  \"step-forward\": 61521,\n  \"sterling-sign\": 61780,\n  \"stethoscope\": 61681,\n  \"sticky-note\": 62025,\n  \"stocking\": 63445,\n  \"stomach\": 63011,\n  \"stool\": 59520,\n  \"stop-circle\": 62093,\n  \"stop\": 61517,\n  \"stopwatch-20\": 57455,\n  \"stopwatch\": 62194,\n  \"store-24\": 59291,\n  \"store-alt-slash\": 57456,\n  \"store-alt\": 62799,\n  \"store-lock\": 58534,\n  \"store-slash\": 57457,\n  \"store\": 62798,\n  \"strawberry\": 58155,\n  \"stream\": 62800,\n  \"street-view\": 61981,\n  \"stretcher\": 63525,\n  \"strikethrough\": 61644,\n  \"stroopwafel\": 62801,\n  \"subscript\": 61740,\n  \"subtitles-slash\": 58896,\n  \"subtitles\": 58895,\n  \"subtract\": 61544,\n  \"subway-tunnel\": 58019,\n  \"subway\": 62009,\n  \"suitcase-medical\": 61690,\n  \"suitcase-rolling\": 62913,\n  \"suitcase\": 61682,\n  \"sun-alt\": 57999,\n  \"sun-bright\": 57999,\n  \"sun-cloud\": 63331,\n  \"sun-dust\": 63332,\n  \"sun-haze\": 63333,\n  \"sun-plant-wilt\": 58746,\n  \"sun\": 61829,\n  \"sunglasses\": 63634,\n  \"sunrise\": 63334,\n  \"sunset\": 63335,\n  \"superscript\": 61739,\n  \"surprise\": 62914,\n  \"sushi-roll\": 58507,\n  \"sushi\": 58506,\n  \"swap-arrows\": 58890,\n  \"swap\": 58889,\n  \"swatchbook\": 62915,\n  \"swedish-krona-sign\": 59198,\n  \"swimmer\": 62916,\n  \"swimming-pool\": 62917,\n  \"sword-laser-alt\": 57404,\n  \"sword-laser\": 57403,\n  \"sword\": 63260,\n  \"swords-laser\": 57405,\n  \"swords\": 63261,\n  \"symbols\": 63598,\n  \"synagogue\": 63131,\n  \"sync-alt\": 62193,\n  \"sync\": 61473,\n  \"syringe\": 62606,\n  \"t-rex\": 58921,\n  \"t-shirt\": 62803,\n  \"t\": 84,\n  \"table-bar\": 59550,\n  \"table-cells-column-lock\": 59000,\n  \"table-cells-column-unlock\": 59024,\n  \"table-cells-columns\": 59052,\n  \"table-cells-header-lock\": 59054,\n  \"table-cells-header-unlock\": 59055,\n  \"table-cells-header\": 59053,\n  \"table-cells-large\": 61449,\n  \"table-cells-lock\": 59001,\n  \"table-cells-merge\": 59532,\n  \"table-cells-row-lock\": 59002,\n  \"table-cells-row-unlock\": 59025,\n  \"table-cells-rows\": 59056,\n  \"table-cells-split\": 59533,\n  \"table-cells-unlock\": 59026,\n  \"table-cells\": 61450,\n  \"table-columns-add-after\": 59534,\n  \"table-columns-add-before\": 59535,\n  \"table-columns-merge-next\": 59536,\n  \"table-columns-merge-previous\": 59537,\n  \"table-columns-remove-after\": 59538,\n  \"table-columns-remove-before\": 59539,\n  \"table-columns\": 61659,\n  \"table-dining\": 59522,\n  \"table-layout\": 58000,\n  \"table-list\": 61451,\n  \"table-picnic\": 58157,\n  \"table-pivot\": 58001,\n  \"table-rows-add-above\": 59540,\n  \"table-rows-add-below\": 59541,\n  \"table-rows-merge-next\": 59542,\n  \"table-rows-merge-previous\": 59543,\n  \"table-rows-remove-above\": 59544,\n  \"table-rows-remove-below\": 59545,\n  \"table-rows\": 58002,\n  \"table-slash\": 59546,\n  \"table-tennis-paddle-ball\": 62557,\n  \"table-tennis\": 62557,\n  \"table-tree\": 58003,\n  \"table\": 61646,\n  \"tablet-alt\": 62458,\n  \"tablet-android-alt\": 62460,\n  \"tablet-android\": 62459,\n  \"tablet-button\": 61706,\n  \"tablet-rugged\": 62607,\n  \"tablet-screen-button\": 62458,\n  \"tablet-screen\": 62460,\n  \"tablet\": 62459,\n  \"tablets\": 62608,\n  \"tachograph-digital\": 62822,\n  \"tachometer-alt-average\": 63012,\n  \"tachometer-alt-fast\": 63013,\n  \"tachometer-alt-fastest\": 63014,\n  \"tachometer-alt-slow\": 63015,\n  \"tachometer-alt-slowest\": 63016,\n  \"tachometer-alt\": 63013,\n  \"tachometer-average\": 63017,\n  \"tachometer-fast\": 63018,\n  \"tachometer-fastest\": 63019,\n  \"tachometer-slow\": 63020,\n  \"tachometer-slowest\": 63021,\n  \"tachometer\": 63018,\n  \"taco\": 63526,\n  \"tag\": 61483,\n  \"tags\": 61484,\n  \"tally-1\": 58004,\n  \"tally-2\": 58005,\n  \"tally-3\": 58006,\n  \"tally-4\": 58007,\n  \"tally-5\": 63132,\n  \"tally\": 63132,\n  \"tamale\": 58449,\n  \"tanakh\": 63527,\n  \"tank-recovery\": 59429,\n  \"tank-water\": 58450,\n  \"tape\": 62683,\n  \"tarp-droplet\": 58748,\n  \"tarp\": 58747,\n  \"tasks-alt\": 63528,\n  \"tasks\": 61614,\n  \"taurus\": 59471,\n  \"taxi-bus\": 58008,\n  \"taxi\": 61882,\n  \"teddy-bear\": 58319,\n  \"teeth-open\": 63023,\n  \"teeth\": 63022,\n  \"telescope\": 57406,\n  \"teletype-answer\": 58041,\n  \"teletype\": 61924,\n  \"television\": 62060,\n  \"temperature-0\": 62155,\n  \"temperature-1\": 62154,\n  \"temperature-2\": 62153,\n  \"temperature-3\": 62152,\n  \"temperature-4\": 62151,\n  \"temperature-arrow-down\": 57407,\n  \"temperature-arrow-up\": 57408,\n  \"temperature-down\": 57407,\n  \"temperature-empty\": 62155,\n  \"temperature-frigid\": 63336,\n  \"temperature-full\": 62151,\n  \"temperature-half\": 62153,\n  \"temperature-high\": 63337,\n  \"temperature-hot\": 63338,\n  \"temperature-list\": 58009,\n  \"temperature-low\": 63339,\n  \"temperature-quarter\": 62154,\n  \"temperature-slash\": 59339,\n  \"temperature-snow\": 63336,\n  \"temperature-sun\": 63338,\n  \"temperature-three-quarters\": 62152,\n  \"temperature-up\": 57408,\n  \"tenge-sign\": 63447,\n  \"tenge\": 63447,\n  \"tennis-ball\": 62558,\n  \"tent-arrow-down-to-line\": 58750,\n  \"tent-arrow-left-right\": 58751,\n  \"tent-arrow-turn-left\": 58752,\n  \"tent-arrows-down\": 58753,\n  \"tent-circus\": 59085,\n  \"tent-double-peak\": 58919,\n  \"tent\": 58749,\n  \"tents\": 58754,\n  \"terminal\": 61728,\n  \"text-height\": 61492,\n  \"text-size\": 63636,\n  \"text-slash\": 63613,\n  \"text-width\": 61493,\n  \"text\": 63635,\n  \"th-large\": 61449,\n  \"th-list\": 61451,\n  \"th\": 61450,\n  \"theater-masks\": 63024,\n  \"thermometer-0\": 62155,\n  \"thermometer-1\": 62154,\n  \"thermometer-2\": 62153,\n  \"thermometer-3\": 62152,\n  \"thermometer-4\": 62151,\n  \"thermometer-empty\": 62155,\n  \"thermometer-full\": 62151,\n  \"thermometer-half\": 62153,\n  \"thermometer-quarter\": 62154,\n  \"thermometer-three-quarters\": 62152,\n  \"thermometer\": 62609,\n  \"theta\": 63134,\n  \"thought-bubble\": 58158,\n  \"thumb-tack-slash\": 59023,\n  \"thumb-tack\": 61581,\n  \"thumbs-down\": 61797,\n  \"thumbs-up\": 61796,\n  \"thumbtack-angle-slash\": 59218,\n  \"thumbtack-angle\": 59217,\n  \"thumbtack-slash\": 59023,\n  \"thumbtack\": 61581,\n  \"thunderstorm-moon\": 63341,\n  \"thunderstorm-sun\": 63342,\n  \"thunderstorm\": 63340,\n  \"tick\": 58159,\n  \"ticket-airline\": 58010,\n  \"ticket-alt\": 62463,\n  \"ticket-perforated-plane\": 58010,\n  \"ticket-perforated\": 58942,\n  \"ticket-plane\": 58010,\n  \"ticket-simple\": 62463,\n  \"ticket\": 61765,\n  \"tickets-airline\": 58011,\n  \"tickets-perforated-plane\": 58011,\n  \"tickets-perforated\": 58943,\n  \"tickets-plane\": 58011,\n  \"tickets-simple\": 58969,\n  \"tickets\": 58968,\n  \"tilde\": 126,\n  \"timeline-arrow\": 58013,\n  \"timeline\": 58012,\n  \"timer\": 58014,\n  \"times-circle\": 61527,\n  \"times-hexagon\": 62190,\n  \"times-octagon\": 62192,\n  \"times-rectangle\": 62480,\n  \"times-square\": 62163,\n  \"times-to-slot\": 63345,\n  \"times\": 61453,\n  \"tint-slash\": 62919,\n  \"tint\": 61507,\n  \"tire-flat\": 63026,\n  \"tire-pressure-warning\": 63027,\n  \"tire-rugged\": 63028,\n  \"tire\": 63025,\n  \"tired\": 62920,\n  \"toggle-large-off\": 58800,\n  \"toggle-large-on\": 58801,\n  \"toggle-off\": 61956,\n  \"toggle-on\": 61957,\n  \"toilet-paper-alt\": 63262,\n  \"toilet-paper-blank-under\": 58016,\n  \"toilet-paper-blank\": 63262,\n  \"toilet-paper-check\": 58802,\n  \"toilet-paper-reverse-alt\": 58016,\n  \"toilet-paper-reverse-slash\": 58017,\n  \"toilet-paper-reverse\": 58016,\n  \"toilet-paper-slash\": 57458,\n  \"toilet-paper-under-slash\": 58017,\n  \"toilet-paper-under\": 58016,\n  \"toilet-paper-xmark\": 58803,\n  \"toilet-paper\": 63262,\n  \"toilet-portable\": 58755,\n  \"toilet\": 63448,\n  \"toilets-portable\": 58756,\n  \"tomato\": 58160,\n  \"tombstone-alt\": 63265,\n  \"tombstone-blank\": 63265,\n  \"tombstone\": 63264,\n  \"toolbox\": 62802,\n  \"tools\": 63449,\n  \"tooth\": 62921,\n  \"toothbrush\": 63029,\n  \"torah\": 63136,\n  \"torii-gate\": 63137,\n  \"tornado\": 63343,\n  \"tower-broadcast\": 62745,\n  \"tower-cell\": 58757,\n  \"tower-control\": 58018,\n  \"tower-observation\": 58758,\n  \"tower-receive\": 59555,\n  \"tractor\": 63266,\n  \"trademark\": 62044,\n  \"traffic-cone\": 63030,\n  \"traffic-light-go\": 63032,\n  \"traffic-light-slow\": 63033,\n  \"traffic-light-stop\": 63034,\n  \"traffic-light\": 63031,\n  \"trailer\": 57409,\n  \"train-stop\": 59423,\n  \"train-subway-tunnel\": 58019,\n  \"train-subway\": 62009,\n  \"train-track\": 58451,\n  \"train-tram\": 58804,\n  \"train-tunnel\": 58452,\n  \"train\": 62008,\n  \"tram\": 63450,\n  \"transducer\": 59430,\n  \"transformer-bolt\": 58020,\n  \"transgender-alt\": 61989,\n  \"transgender\": 61989,\n  \"transmission\": 59394,\n  \"transporter-1\": 57411,\n  \"transporter-2\": 57412,\n  \"transporter-3\": 57413,\n  \"transporter-4\": 58021,\n  \"transporter-5\": 58022,\n  \"transporter-6\": 58023,\n  \"transporter-7\": 58024,\n  \"transporter-empty\": 57414,\n  \"transporter\": 57410,\n  \"trash-alt-slash\": 58029,\n  \"trash-alt\": 62189,\n  \"trash-arrow-turn-left\": 63637,\n  \"trash-arrow-up\": 63529,\n  \"trash-can-arrow-turn-left\": 63638,\n  \"trash-can-arrow-up\": 63530,\n  \"trash-can-check\": 58025,\n  \"trash-can-clock\": 58026,\n  \"trash-can-list\": 58027,\n  \"trash-can-plus\": 58028,\n  \"trash-can-slash\": 58029,\n  \"trash-can-undo\": 63638,\n  \"trash-can-xmark\": 58030,\n  \"trash-can\": 62189,\n  \"trash-check\": 58031,\n  \"trash-circle\": 57638,\n  \"trash-clock\": 58032,\n  \"trash-list\": 58033,\n  \"trash-plus\": 58034,\n  \"trash-restore-alt\": 63530,\n  \"trash-restore\": 63529,\n  \"trash-slash\": 58035,\n  \"trash-undo-alt\": 63638,\n  \"trash-undo\": 63637,\n  \"trash-xmark\": 58036,\n  \"trash\": 61944,\n  \"treasure-chest\": 63267,\n  \"tree-alt\": 62464,\n  \"tree-christmas\": 63451,\n  \"tree-city\": 58759,\n  \"tree-deciduous\": 62464,\n  \"tree-decorated\": 63452,\n  \"tree-large\": 63453,\n  \"tree-palm\": 63531,\n  \"tree\": 61883,\n  \"trees\": 63268,\n  \"trian-balbot\": 58460,\n  \"triangle-circle-square\": 63007,\n  \"triangle-exclamation\": 61553,\n  \"triangle-instrument\": 63714,\n  \"triangle-music\": 63714,\n  \"triangle-person-digging\": 63581,\n  \"triangle\": 62188,\n  \"tricycle-adult\": 58820,\n  \"tricycle\": 58819,\n  \"trillium\": 58760,\n  \"triple-chevrons-down\": 59383,\n  \"triple-chevrons-left\": 59384,\n  \"triple-chevrons-right\": 59385,\n  \"triple-chevrons-up\": 59386,\n  \"trombone\": 59266,\n  \"trophy-alt\": 62187,\n  \"trophy-star\": 62187,\n  \"trophy\": 61585,\n  \"trowel-bricks\": 58762,\n  \"trowel\": 58761,\n  \"truck-arrow-right\": 58763,\n  \"truck-bolt\": 58320,\n  \"truck-clock\": 62604,\n  \"truck-container-empty\": 58037,\n  \"truck-container\": 62684,\n  \"truck-couch\": 62685,\n  \"truck-droplet\": 58764,\n  \"truck-fast\": 62603,\n  \"truck-field-un\": 58766,\n  \"truck-field\": 58765,\n  \"truck-fire\": 58970,\n  \"truck-flatbed\": 58038,\n  \"truck-front\": 58039,\n  \"truck-ladder\": 58967,\n  \"truck-loading\": 62686,\n  \"truck-medical\": 61689,\n  \"truck-monster\": 63035,\n  \"truck-moving\": 62687,\n  \"truck-pickup\": 63036,\n  \"truck-plane\": 58767,\n  \"truck-plow\": 63454,\n  \"truck-ramp-box\": 62686,\n  \"truck-ramp-couch\": 62685,\n  \"truck-ramp\": 62688,\n  \"truck-suv\": 59334,\n  \"truck-tow\": 58040,\n  \"truck-utensils\": 58920,\n  \"truck\": 61649,\n  \"trumpet\": 63715,\n  \"try\": 58043,\n  \"tshirt\": 62803,\n  \"tty-answer\": 58041,\n  \"tty\": 61924,\n  \"tugrik-sign\": 58042,\n  \"turkey\": 63269,\n  \"turkish-lira-sign\": 58043,\n  \"turkish-lira\": 58043,\n  \"turn-down-left\": 58161,\n  \"turn-down-right\": 58453,\n  \"turn-down\": 62398,\n  \"turn-left-down\": 58935,\n  \"turn-left-up\": 58936,\n  \"turn-left\": 58934,\n  \"turn-right\": 58937,\n  \"turn-up\": 62399,\n  \"turntable\": 63716,\n  \"turtle\": 63270,\n  \"tv-alt\": 62060,\n  \"tv-music\": 63718,\n  \"tv-retro\": 62465,\n  \"tv\": 62060,\n  \"typewriter\": 63719,\n  \"u-turn-down-left\": 59375,\n  \"u-turn-down-right\": 59376,\n  \"u-turn-left-down\": 59377,\n  \"u-turn-left-up\": 59378,\n  \"u-turn-right-down\": 59379,\n  \"u-turn-right-up\": 59380,\n  \"u-turn-up-left\": 59381,\n  \"u-turn-up-right\": 59382,\n  \"u-turn\": 59377,\n  \"u\": 85,\n  \"ufo-beam\": 57416,\n  \"ufo\": 57415,\n  \"umbrella-alt\": 58044,\n  \"umbrella-beach\": 62922,\n  \"umbrella-simple\": 58044,\n  \"umbrella\": 61673,\n  \"underline\": 61645,\n  \"undo-alt\": 62186,\n  \"undo\": 61666,\n  \"unicorn\": 63271,\n  \"unicycle\": 59335,\n  \"uniform-martial-arts\": 58321,\n  \"union\": 63138,\n  \"universal-access\": 62106,\n  \"university\": 61852,\n  \"unlink\": 61735,\n  \"unlock-alt\": 61758,\n  \"unlock-keyhole\": 61758,\n  \"unlock\": 61596,\n  \"unsorted\": 61660,\n  \"up-down-left-right\": 61618,\n  \"up-down\": 62264,\n  \"up-from-bracket\": 58768,\n  \"up-from-dotted-line\": 58454,\n  \"up-from-line\": 62278,\n  \"up-left\": 58045,\n  \"up-long-to-line\": 59078,\n  \"up-long\": 62220,\n  \"up-right-and-down-left-from-center\": 62500,\n  \"up-right-from-square\": 62301,\n  \"up-right\": 58046,\n  \"up-to-bracket\": 58990,\n  \"up-to-dotted-line\": 58455,\n  \"up-to-line\": 62285,\n  \"up\": 62295,\n  \"upload\": 61587,\n  \"usb-drive\": 63721,\n  \"usd-circle\": 62184,\n  \"usd-square\": 62185,\n  \"usd\": 36,\n  \"user-alien\": 57418,\n  \"user-alt-slash\": 62726,\n  \"user-alt\": 61447,\n  \"user-astronaut\": 62715,\n  \"user-beard-bolt\": 59017,\n  \"user-beard\": 59304,\n  \"user-bounty-hunter\": 58047,\n  \"user-chart\": 63139,\n  \"user-check\": 62716,\n  \"user-chef-hair-long\": 59305,\n  \"user-chef\": 58322,\n  \"user-circle-minus\": 59306,\n  \"user-circle-plus\": 59307,\n  \"user-circle\": 62141,\n  \"user-clock\": 62717,\n  \"user-cog\": 62718,\n  \"user-construction\": 63532,\n  \"user-cowboy\": 63722,\n  \"user-crown\": 63140,\n  \"user-dashed\": 59308,\n  \"user-doctor-hair-long\": 58457,\n  \"user-doctor-hair-mullet\": 59309,\n  \"user-doctor-hair\": 58456,\n  \"user-doctor-message\": 63534,\n  \"user-doctor\": 61680,\n  \"user-edit\": 62719,\n  \"user-friends\": 62720,\n  \"user-gear\": 62718,\n  \"user-graduate\": 62721,\n  \"user-group-crown\": 63141,\n  \"user-group-simple\": 58883,\n  \"user-group\": 62720,\n  \"user-hair-buns\": 58323,\n  \"user-hair-long\": 58459,\n  \"user-hair-mullet\": 58460,\n  \"user-hair\": 58458,\n  \"user-hard-hat\": 63532,\n  \"user-hat-tie-magnifying-glass\": 59311,\n  \"user-hat-tie\": 59310,\n  \"user-headset\": 63533,\n  \"user-helmet-safety\": 63532,\n  \"user-hoodie\": 59018,\n  \"user-injured\": 63272,\n  \"user-key\": 59312,\n  \"user-large-slash\": 62726,\n  \"user-large\": 61447,\n  \"user-lock\": 62722,\n  \"user-magnifying-glass\": 58821,\n  \"user-md-chat\": 63534,\n  \"user-md\": 61680,\n  \"user-message\": 59313,\n  \"user-microphone\": 59314,\n  \"user-minus\": 62723,\n  \"user-music\": 63723,\n  \"user-ninja\": 62724,\n  \"user-nurse-hair-long\": 58462,\n  \"user-nurse-hair\": 58461,\n  \"user-nurse\": 63535,\n  \"user-pen\": 62719,\n  \"user-pilot-hair-long\": 59315,\n  \"user-pilot-tie-hair-long\": 59316,\n  \"user-pilot-tie\": 58049,\n  \"user-pilot\": 58048,\n  \"user-plus\": 62004,\n  \"user-police-hair-long\": 59317,\n  \"user-police-tie-hair-long\": 59318,\n  \"user-police-tie\": 58164,\n  \"user-police\": 58163,\n  \"user-question\": 59319,\n  \"user-robot-xmarks\": 58535,\n  \"user-robot\": 57419,\n  \"user-secret\": 61979,\n  \"user-shakespeare\": 58050,\n  \"user-shield\": 62725,\n  \"user-sith\": 59320,\n  \"user-slash\": 62726,\n  \"user-tag\": 62727,\n  \"user-tie-hair-long\": 58464,\n  \"user-tie-hair-mullet\": 59321,\n  \"user-tie-hair\": 58463,\n  \"user-tie\": 62728,\n  \"user-times\": 62005,\n  \"user-unlock\": 57432,\n  \"user-viewfinder\": 59253,\n  \"user-visor\": 57420,\n  \"user-vneck-hair-long\": 58467,\n  \"user-vneck-hair-mullet\": 59322,\n  \"user-vneck-hair\": 58466,\n  \"user-vneck\": 58465,\n  \"user-xmark\": 62005,\n  \"user\": 61447,\n  \"users-between-lines\": 58769,\n  \"users-class\": 63037,\n  \"users-cog\": 62729,\n  \"users-crown\": 63141,\n  \"users-gear\": 62729,\n  \"users-line\": 58770,\n  \"users-medical\": 63536,\n  \"users-rays\": 58771,\n  \"users-rectangle\": 58772,\n  \"users-slash\": 57459,\n  \"users-viewfinder\": 58773,\n  \"users\": 61632,\n  \"utensil-fork\": 62179,\n  \"utensil-knife\": 62180,\n  \"utensil-spoon\": 62181,\n  \"utensils-alt\": 62182,\n  \"utensils-slash\": 58468,\n  \"utensils\": 62183,\n  \"utility-can\": 59549,\n  \"utility-pole-double\": 58052,\n  \"utility-pole\": 58051,\n  \"v\": 86,\n  \"vacuum-robot\": 57422,\n  \"vacuum\": 57421,\n  \"value-absolute\": 63142,\n  \"van-shuttle\": 62902,\n  \"van\": 59336,\n  \"vault\": 58053,\n  \"vcard\": 62139,\n  \"vector-circle\": 62957,\n  \"vector-polygon\": 62958,\n  \"vector-square\": 62959,\n  \"vent-damper\": 58469,\n  \"venus-double\": 61990,\n  \"venus-mars\": 61992,\n  \"venus\": 61985,\n  \"vest-patches\": 57478,\n  \"vest\": 57477,\n  \"vhs\": 63724,\n  \"vial-circle-check\": 58774,\n  \"vial-vertical\": 59234,\n  \"vial-virus\": 58775,\n  \"vial\": 62610,\n  \"vials\": 62611,\n  \"video-arrow-down-left\": 58056,\n  \"video-arrow-up-right\": 58057,\n  \"video-camera\": 61501,\n  \"video-circle\": 57643,\n  \"video-down-to-line\": 59254,\n  \"video-handheld\": 63656,\n  \"video-plus\": 62689,\n  \"video-question\": 59255,\n  \"video-slash\": 62690,\n  \"video\": 61501,\n  \"vihara\": 63143,\n  \"violin\": 63725,\n  \"virgo\": 59472,\n  \"virus-covid-slash\": 58537,\n  \"virus-covid\": 58536,\n  \"virus-slash\": 57461,\n  \"virus\": 57460,\n  \"viruses\": 57462,\n  \"voicemail\": 63639,\n  \"volcano\": 63344,\n  \"volleyball-ball\": 62559,\n  \"volleyball\": 62559,\n  \"volume-control-phone\": 62112,\n  \"volume-down\": 61479,\n  \"volume-high\": 61480,\n  \"volume-low\": 61479,\n  \"volume-medium\": 63144,\n  \"volume-mute\": 63145,\n  \"volume-off\": 61478,\n  \"volume-slash\": 62178,\n  \"volume-times\": 63145,\n  \"volume-up\": 61480,\n  \"volume-xmark\": 63145,\n  \"volume\": 63144,\n  \"vote-nay\": 63345,\n  \"vote-yea\": 63346,\n  \"vr-cardboard\": 63273,\n  \"w\": 87,\n  \"waffle\": 58470,\n  \"wagon-covered\": 63726,\n  \"walker\": 63537,\n  \"walkie-talkie\": 63727,\n  \"walking\": 62804,\n  \"wall-brick\": 58331,\n  \"wallet\": 62805,\n  \"wand-magic-sparkles\": 58058,\n  \"wand-magic\": 61648,\n  \"wand-sparkles\": 63275,\n  \"wand\": 63274,\n  \"wardrobe\": 59521,\n  \"warehouse-alt\": 62613,\n  \"warehouse-full\": 62613,\n  \"warehouse\": 62612,\n  \"warning\": 61553,\n  \"washer\": 63640,\n  \"washing-machine\": 63640,\n  \"watch-apple\": 58059,\n  \"watch-calculator\": 63728,\n  \"watch-fitness\": 63038,\n  \"watch-smart\": 58060,\n  \"watch\": 62177,\n  \"water-arrow-down\": 63348,\n  \"water-arrow-up\": 63349,\n  \"water-ladder\": 62917,\n  \"water-lower\": 63348,\n  \"water-rise\": 63349,\n  \"water-temp\": 59434,\n  \"water-temperature\": 59434,\n  \"water\": 63347,\n  \"watermelon-slice\": 58167,\n  \"wave-pulse\": 62968,\n  \"wave-sine\": 63641,\n  \"wave-square\": 63550,\n  \"wave-triangle\": 63642,\n  \"wave\": 58971,\n  \"waveform-circle\": 57645,\n  \"waveform-lines\": 63730,\n  \"waveform-path\": 63730,\n  \"waveform\": 63729,\n  \"waves-sine\": 58973,\n  \"web-awesome\": 59010,\n  \"webcam-slash\": 63539,\n  \"webcam\": 63538,\n  \"webhook\": 58837,\n  \"weight-hanging\": 62925,\n  \"weight-scale\": 62614,\n  \"weight\": 62614,\n  \"whale\": 63276,\n  \"wheat-alt\": 58061,\n  \"wheat-awn-circle-exclamation\": 58776,\n  \"wheat-awn-slash\": 58168,\n  \"wheat-awn\": 58061,\n  \"wheat-slash\": 58169,\n  \"wheat\": 63277,\n  \"wheelchair-alt\": 58062,\n  \"wheelchair-move\": 58062,\n  \"wheelchair\": 61843,\n  \"whiskey-glass-ice\": 63393,\n  \"whiskey-glass\": 63392,\n  \"whistle\": 62560,\n  \"wifi-1\": 63146,\n  \"wifi-2\": 63147,\n  \"wifi-3\": 61931,\n  \"wifi-exclamation\": 58063,\n  \"wifi-fair\": 63147,\n  \"wifi-slash\": 63148,\n  \"wifi-strong\": 61931,\n  \"wifi-weak\": 63146,\n  \"wifi\": 61931,\n  \"wind-circle-exclamation\": 63350,\n  \"wind-turbine\": 63643,\n  \"wind-warning\": 63350,\n  \"wind\": 63278,\n  \"window-alt\": 62479,\n  \"window-close\": 62480,\n  \"window-flip\": 62479,\n  \"window-frame-open\": 57424,\n  \"window-frame\": 57423,\n  \"window-maximize\": 62160,\n  \"window-minimize\": 62161,\n  \"window-restore\": 62162,\n  \"window\": 62478,\n  \"windsock\": 63351,\n  \"wine-bottle\": 63279,\n  \"wine-glass-alt\": 62926,\n  \"wine-glass-crack\": 62651,\n  \"wine-glass-empty\": 62926,\n  \"wine-glass\": 62691,\n  \"wireless\": 59359,\n  \"won-sign\": 61785,\n  \"won\": 61785,\n  \"worm\": 58777,\n  \"wreath-laurel\": 58834,\n  \"wreath\": 63458,\n  \"wrench-simple\": 58065,\n  \"wrench\": 61613,\n  \"x-ray\": 62615,\n  \"x\": 88,\n  \"xmark-circle\": 61527,\n  \"xmark-hexagon\": 62190,\n  \"xmark-large\": 58779,\n  \"xmark-octagon\": 62192,\n  \"xmark-square\": 62163,\n  \"xmark-to-slot\": 63345,\n  \"xmark\": 61453,\n  \"xmarks-lines\": 58778,\n  \"y\": 89,\n  \"yen-sign\": 61783,\n  \"yen\": 61783,\n  \"yin-yang\": 63149,\n  \"z\": 90,\n  \"zap\": 61671,\n  \"zzz\": 63616\n}"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-light/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontawesome-pro-sharp-duotone-light\",\n  \"version\": \"0.2.0\",\n  \"description\": \"Fontawesome Pro Sharp Duotone Light font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"fontawesome-pro-sharp-duotone-light\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/fontawesome-pro-sharp-duotone-light\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-light/react-native-vector-icons-fontawesome-pro-sharp-duotone-light.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-fontawesome-pro-sharp-duotone-light'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\n\n  s.script_phase = {\n    name: 'Copy Custom Fonts',\n    execution_position: :after_compile,\n    script: <<~SCRIPT\n      set -e\n\n      HEAD=\"(RNVI-fontawesome-pro-sharp-duotone-light)\"\n\n      echo \"${HEAD} START_COPY_FONTS\"\n\n      echo \"${HEAD} PWD: $(pwd)\"\n\n      #\n      # Find the custom font Directory\n      #\n\n      # Assume the project root is always two directories above the POD_ROOT\n      echo \"${HEAD} PODS_ROOT: $PODS_ROOT\"\n\n      PROJECT_ROOT=\"${PODS_ROOT}/../..\"\n      echo \"${HEAD} PROJECT_ROOT: $PROJECT_ROOT\"\n\n      cd $PROJECT_ROOT\n      FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/\"//g')\n      if [ -z \"$FONTS_DIR\" ]; then\n        FONTS_DIR=\"rnvi-fonts\"\n      fi\n      echo \"${HEAD} FONTS_DIR: $FONTS_DIR\"\n\n      FONTS_DIR=\"${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-sharp-duotone-light\"\n      if [ ! -d \"$FONTS_DIR\" ]; then\n        echo \"${HEAD} $FONTS_DIR not found\"\n        exit 0\n      fi\n\n      #\n      # Find the destination we copy to\n      #\n\n      echo \"${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR\"\n      XCODE_DIR=$(ls -d \"$PODS_CONFIGURATION_BUILD_DIR\"/*.app)\n      echo \"${HEAD} XCODE_DIR: $XCODE_DIR\"\n      if [ -z \"$XCODE_DIR\" ]; then\n        echo \"Could not find XCODE_DIR to copy fonts to\"\n        exit 1\n      fi\n\n      DEST_DIR=\"${XCODE_DIR}\"\n      mkdir -p \"$DEST_DIR\"\n\n      #\n      # Copy the fonts\n      #\n\n      echo \"${HEAD} Copying the following files to $DEST_DIR\"\n      ls \"$FONTS_DIR\" | sed \"s/^/${HEAD} /\"\n\n      rsync -avr --copy-links --no-relative $FONTS_DIR/ \"$DEST_DIR\"\n\n      echo \"${HEAD} END:RNVI_COPY_FONTS\"\n    SCRIPT\n  }\nend\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-light/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProSharpDuotoneLight icon set component.\n * Usage: <FontAwesomeProSharpDuotoneLight name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProSharpDuotoneLight.json';\n\nexport const FontAwesomeProSharpDuotoneLight = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7SharpDuotone-Light',\n  fontFileName: 'fa-sharp-duotone-light-300.ttf',\n});\n\nexport type FontAwesomeProSharpDuotoneLightIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProSharpDuotoneLight;\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-light/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProSharpDuotoneLight icon set component.\n * Usage: <FontAwesomeProSharpDuotoneLight name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProSharpDuotoneLight.json';\n\nexport const FontAwesomeProSharpDuotoneLight = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7SharpDuotone-Light',\n  fontFileName: 'fa-sharp-duotone-light-300.ttf',\n});\n\nexport type FontAwesomeProSharpDuotoneLightIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProSharpDuotoneLight;\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-light/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-light/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-regular/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontawesome-pro-sharp-duotone-regular\",\n    \"upstreamFont\": {\n      \"registry\": \"https://npm.fontawesome.com\",\n      \"packageName\": \"@fortawesome/fontawesome-pro\",\n      \"versionOnly\": true\n    },\n    \"copyCustomFonts\": true,\n    \"className\": \"FontAwesomeProSharpDuotoneRegular\",\n    \"postScriptName\": \"FontAwesome7SharpDuotone-Regular\",\n    \"fontFileName\": \"fa-sharp-duotone-regular-400\",\n    \"buildSteps\": {\n      \"preScript\": {\n        \"script\": \"../fontawesome-common/scripts/fetch-pro.sh 7\"\n      },\n      \"glyphmap\": {\n        \"location\": \"fa/pro/css/all.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fa-\"\n      },\n      \"postScript\": {\n        \"script\": \"../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProSharpDuotoneRegular.json fa/pro/svgs/sharp-duotone-regular\\nrm -rf fa\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"0.1.0\",\n        \"upstream\": \"7.1.0\"\n      },\n      {\n        \"rnvi\": \"0.1.1\",\n        \"upstream\": \"7.2.0\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-regular/CHANGELOG.md",
    "content": "## 0.2.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 0.1.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 0.1.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🩹 Fixes\n\n- upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 0.1.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 0.1.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-regular/README.md",
    "content": "# React Native Vector Icons - Fontawesome Pro Sharp Duotone Regular\n\nFontawesome Pro Sharp Duotone Regular font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n> [!IMPORTANT]\n> This package does not include the fonts. You must provide them yourself.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/fontawesome-pro-sharp-duotone-regular\n```\n\n## Custom Fonts\n\nThis package requires you to provide the font files. Place your `.ttf` font\nfile in the following location:\n\n```\nrnvi-fonts/fontawesome-pro-sharp-duotone-regular/fa-sharp-duotone-regular-400.ttf\n```\n\nThe font will be automatically copied during the build process for both iOS and\nAndroid.\n\n## Usage\n\n```jsx\nimport { FontAwesomeProSharpDuotoneRegular } from '@react-native-vector-icons/fontawesome-pro-sharp-duotone-regular';\n\n// ...\n\n<FontAwesomeProSharpDuotoneRegular name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 0.1.0 | 7.1.0 |\n| &gt; 0.1.1 | 7.2.0 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-regular/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.fontawesome_pro_sharp_duotone_regular\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFontAwesomeProSharpDuotoneRegular\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.fontawesome_pro_sharp_duotone_regular\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-fontawesome-pro-sharp-duotone-regular\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-duotone-regular/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-sharp-duotone-regular) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n\ntask copyExtraFonts(type: Copy) {\n  from \"${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-sharp-duotone-regular\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-duotone-regular/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-sharp-duotone-regular) Copying custom font: ${it.file}\" }\n}\n\npreBuild.dependsOn(copyExtraFonts)\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-regular/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.fontawesome_pro_sharp_duotone_regular\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-regular/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-regular/android/src/main/java/VectorIconsFontAwesomeProSharpDuotoneRegularPackage.kt",
    "content": "package com.reactnativevectoricons.fontawesome_pro_sharp_duotone_regular\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFontAwesomeProSharpDuotoneRegularPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-regular/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-regular/glyphmaps/FontAwesomeProSharpDuotoneRegular.json",
    "content": "{\n  \"0\": 48,\n  \"1\": 49,\n  \"2\": 50,\n  \"3\": 51,\n  \"4\": 52,\n  \"5\": 53,\n  \"6\": 54,\n  \"7\": 55,\n  \"8\": 56,\n  \"9\": 57,\n  \"100\": 58396,\n  \"00\": 58471,\n  \"360-degrees\": 58076,\n  \"a\": 65,\n  \"abacus\": 63040,\n  \"accent-grave\": 96,\n  \"acorn\": 63150,\n  \"ad\": 63041,\n  \"add\": 43,\n  \"address-book\": 62137,\n  \"address-card\": 62139,\n  \"adjust\": 61506,\n  \"aeropress\": 59435,\n  \"air-conditioner\": 63732,\n  \"air-freshener\": 62928,\n  \"airplay-audio\": 59259,\n  \"airplay\": 57481,\n  \"alarm-clock\": 62286,\n  \"alarm-exclamation\": 63555,\n  \"alarm-minus\": 59395,\n  \"alarm-plus\": 63556,\n  \"alarm-snooze\": 63557,\n  \"album-circle-plus\": 58508,\n  \"album-circle-user\": 58509,\n  \"album-collection-circle-plus\": 58510,\n  \"album-collection-circle-user\": 58511,\n  \"album-collection\": 63648,\n  \"album\": 63647,\n  \"alicorn\": 63152,\n  \"alien-8bit\": 63734,\n  \"alien-monster\": 63734,\n  \"alien\": 63733,\n  \"align-center\": 61495,\n  \"align-justify\": 61497,\n  \"align-left\": 61494,\n  \"align-right\": 61496,\n  \"align-slash\": 63558,\n  \"allergies\": 62561,\n  \"almost-equal-to\": 59416,\n  \"alt\": 57482,\n  \"ambulance\": 61689,\n  \"american-sign-language-interpreting\": 62115,\n  \"amp-guitar\": 63649,\n  \"ampersand\": 38,\n  \"analytics\": 63043,\n  \"anchor-circle-check\": 58538,\n  \"anchor-circle-exclamation\": 58539,\n  \"anchor-circle-xmark\": 58540,\n  \"anchor-lock\": 58541,\n  \"anchor\": 61757,\n  \"angel\": 63353,\n  \"angle-90\": 57485,\n  \"angle-double-down\": 61699,\n  \"angle-double-left\": 61696,\n  \"angle-double-right\": 61697,\n  \"angle-double-up\": 61698,\n  \"angle-down\": 61703,\n  \"angle-left\": 61700,\n  \"angle-right\": 61701,\n  \"angle-up\": 61702,\n  \"angle\": 57484,\n  \"angles-down\": 61699,\n  \"angles-left\": 61696,\n  \"angles-right\": 61697,\n  \"angles-up-down\": 58893,\n  \"angles-up\": 61698,\n  \"angry\": 62806,\n  \"ankh\": 63044,\n  \"ant\": 59008,\n  \"apartment\": 58472,\n  \"aperture\": 58079,\n  \"apostrophe\": 39,\n  \"apple-alt\": 62929,\n  \"apple-core\": 57487,\n  \"apple-crate\": 63153,\n  \"apple-whole\": 62929,\n  \"aquarius\": 59461,\n  \"archive\": 61831,\n  \"archway\": 62807,\n  \"area-chart\": 61950,\n  \"aries\": 59462,\n  \"arrow-alt-circle-down\": 62296,\n  \"arrow-alt-circle-left\": 62297,\n  \"arrow-alt-circle-right\": 62298,\n  \"arrow-alt-circle-up\": 62299,\n  \"arrow-alt-down\": 62292,\n  \"arrow-alt-from-bottom\": 62278,\n  \"arrow-alt-from-left\": 62279,\n  \"arrow-alt-from-right\": 62280,\n  \"arrow-alt-from-top\": 62281,\n  \"arrow-alt-left\": 62293,\n  \"arrow-alt-right\": 62294,\n  \"arrow-alt-square-down\": 62288,\n  \"arrow-alt-square-left\": 62289,\n  \"arrow-alt-square-right\": 62290,\n  \"arrow-alt-square-up\": 62291,\n  \"arrow-alt-to-bottom\": 62282,\n  \"arrow-alt-to-left\": 62283,\n  \"arrow-alt-to-right\": 62284,\n  \"arrow-alt-to-top\": 62285,\n  \"arrow-alt-up\": 62295,\n  \"arrow-archery\": 59449,\n  \"arrow-circle-down\": 61611,\n  \"arrow-circle-left\": 61608,\n  \"arrow-circle-right\": 61609,\n  \"arrow-circle-up\": 61610,\n  \"arrow-down-1-9\": 61794,\n  \"arrow-down-9-1\": 63622,\n  \"arrow-down-a-z\": 61789,\n  \"arrow-down-arrow-up\": 63619,\n  \"arrow-down-big-small\": 63628,\n  \"arrow-down-from-arc\": 58900,\n  \"arrow-down-from-bracket\": 58983,\n  \"arrow-down-from-dotted-line\": 57488,\n  \"arrow-down-from-line\": 62277,\n  \"arrow-down-left-and-arrow-up-right-to-center\": 57490,\n  \"arrow-down-left\": 57489,\n  \"arrow-down-long-to-line\": 59063,\n  \"arrow-down-long\": 61813,\n  \"arrow-down-right\": 57491,\n  \"arrow-down-short-wide\": 63620,\n  \"arrow-down-small-big\": 63629,\n  \"arrow-down-square-triangle\": 63625,\n  \"arrow-down-to-arc\": 58542,\n  \"arrow-down-to-bracket\": 57492,\n  \"arrow-down-to-dotted-line\": 57493,\n  \"arrow-down-to-line\": 62269,\n  \"arrow-down-to-square\": 57494,\n  \"arrow-down-triangle-square\": 63624,\n  \"arrow-down-up-across-line\": 58543,\n  \"arrow-down-up-lock\": 58544,\n  \"arrow-down-wide-short\": 61792,\n  \"arrow-down-z-a\": 63617,\n  \"arrow-down\": 61539,\n  \"arrow-from-bottom\": 62274,\n  \"arrow-from-left\": 62275,\n  \"arrow-from-right\": 62276,\n  \"arrow-from-top\": 62277,\n  \"arrow-left-arrow-right\": 59064,\n  \"arrow-left-from-arc\": 58901,\n  \"arrow-left-from-bracket\": 58984,\n  \"arrow-left-from-dotted-line\": 59065,\n  \"arrow-left-from-line\": 62276,\n  \"arrow-left-long-to-line\": 58324,\n  \"arrow-left-long\": 61815,\n  \"arrow-left-rotate\": 61666,\n  \"arrow-left-to-arc\": 58902,\n  \"arrow-left-to-bracket\": 58985,\n  \"arrow-left-to-dotted-line\": 59066,\n  \"arrow-left-to-line\": 62270,\n  \"arrow-left\": 61536,\n  \"arrow-pointer\": 62021,\n  \"arrow-progress\": 58847,\n  \"arrow-right-arrow-left\": 61676,\n  \"arrow-right-from-arc\": 58545,\n  \"arrow-right-from-bracket\": 61579,\n  \"arrow-right-from-dotted-line\": 59067,\n  \"arrow-right-from-file\": 62830,\n  \"arrow-right-from-line\": 62275,\n  \"arrow-right-long-to-line\": 58325,\n  \"arrow-right-long\": 61816,\n  \"arrow-right-rotate\": 61470,\n  \"arrow-right-to-arc\": 58546,\n  \"arrow-right-to-bracket\": 61584,\n  \"arrow-right-to-city\": 58547,\n  \"arrow-right-to-dotted-line\": 59068,\n  \"arrow-right-to-file\": 62831,\n  \"arrow-right-to-line\": 62272,\n  \"arrow-right\": 61537,\n  \"arrow-rotate-back\": 61666,\n  \"arrow-rotate-backward\": 61666,\n  \"arrow-rotate-forward\": 61470,\n  \"arrow-rotate-left-10\": 59446,\n  \"arrow-rotate-left-15\": 59526,\n  \"arrow-rotate-left-30\": 59527,\n  \"arrow-rotate-left\": 61666,\n  \"arrow-rotate-right-10\": 59447,\n  \"arrow-rotate-right-15\": 59528,\n  \"arrow-rotate-right-30\": 59529,\n  \"arrow-rotate-right\": 61470,\n  \"arrow-square-down\": 62265,\n  \"arrow-square-left\": 62266,\n  \"arrow-square-right\": 62267,\n  \"arrow-square-up\": 62268,\n  \"arrow-to-bottom\": 62269,\n  \"arrow-to-left\": 62270,\n  \"arrow-to-right\": 62272,\n  \"arrow-to-top\": 62273,\n  \"arrow-trend-down\": 57495,\n  \"arrow-trend-up\": 57496,\n  \"arrow-turn-down-left\": 58081,\n  \"arrow-turn-down-right\": 58326,\n  \"arrow-turn-down\": 61769,\n  \"arrow-turn-left-down\": 58931,\n  \"arrow-turn-left-up\": 58932,\n  \"arrow-turn-left\": 58930,\n  \"arrow-turn-right\": 58933,\n  \"arrow-turn-up\": 61768,\n  \"arrow-u-turn-down-left\": 59367,\n  \"arrow-u-turn-down-right\": 59368,\n  \"arrow-u-turn-left-down\": 59369,\n  \"arrow-u-turn-left-up\": 59370,\n  \"arrow-u-turn-right-down\": 59371,\n  \"arrow-u-turn-right-up\": 59372,\n  \"arrow-u-turn-up-left\": 59373,\n  \"arrow-u-turn-up-right\": 59374,\n  \"arrow-up-1-9\": 61795,\n  \"arrow-up-9-1\": 63623,\n  \"arrow-up-a-z\": 61790,\n  \"arrow-up-arrow-down\": 57497,\n  \"arrow-up-big-small\": 63630,\n  \"arrow-up-from-arc\": 58548,\n  \"arrow-up-from-bracket\": 57498,\n  \"arrow-up-from-dotted-line\": 57499,\n  \"arrow-up-from-ground-water\": 58549,\n  \"arrow-up-from-line\": 62274,\n  \"arrow-up-from-square\": 57500,\n  \"arrow-up-from-water-pump\": 58550,\n  \"arrow-up-left-from-circle\": 57502,\n  \"arrow-up-left\": 57501,\n  \"arrow-up-long-to-line\": 59069,\n  \"arrow-up-long\": 61814,\n  \"arrow-up-right-and-arrow-down-left-from-center\": 57504,\n  \"arrow-up-right-dots\": 58551,\n  \"arrow-up-right-from-square\": 61582,\n  \"arrow-up-right\": 57503,\n  \"arrow-up-short-wide\": 63621,\n  \"arrow-up-small-big\": 63631,\n  \"arrow-up-square-triangle\": 63627,\n  \"arrow-up-to-arc\": 58903,\n  \"arrow-up-to-bracket\": 58986,\n  \"arrow-up-to-dotted-line\": 57505,\n  \"arrow-up-to-line\": 62273,\n  \"arrow-up-triangle-square\": 63626,\n  \"arrow-up-wide-short\": 61793,\n  \"arrow-up-z-a\": 63618,\n  \"arrow-up\": 61538,\n  \"arrows-alt-h\": 62263,\n  \"arrows-alt-v\": 62264,\n  \"arrows-alt\": 61618,\n  \"arrows-cross\": 57506,\n  \"arrows-down-to-line\": 58552,\n  \"arrows-down-to-people\": 58553,\n  \"arrows-from-dotted-line\": 57507,\n  \"arrows-from-line\": 57508,\n  \"arrows-h\": 61566,\n  \"arrows-left-right-to-line\": 58554,\n  \"arrows-left-right\": 61566,\n  \"arrows-maximize\": 62237,\n  \"arrows-minimize\": 57509,\n  \"arrows-repeat-1\": 62310,\n  \"arrows-repeat\": 62308,\n  \"arrows-retweet\": 62305,\n  \"arrows-rotate-reverse\": 58928,\n  \"arrows-rotate\": 61473,\n  \"arrows-spin\": 58555,\n  \"arrows-split-up-and-left\": 58556,\n  \"arrows-to-circle\": 58557,\n  \"arrows-to-dot\": 58558,\n  \"arrows-to-dotted-line\": 57510,\n  \"arrows-to-eye\": 58559,\n  \"arrows-to-line\": 57511,\n  \"arrows-turn-right\": 58560,\n  \"arrows-turn-to-dots\": 58561,\n  \"arrows-up-down-left-right\": 61511,\n  \"arrows-up-down\": 61565,\n  \"arrows-up-to-line\": 58562,\n  \"arrows-v\": 61565,\n  \"arrows\": 61511,\n  \"asl-interpreting\": 62115,\n  \"assistive-listening-systems\": 62114,\n  \"asterisk\": 42,\n  \"at\": 64,\n  \"atlas\": 62808,\n  \"atom-alt\": 62931,\n  \"atom-simple\": 62931,\n  \"atom\": 62930,\n  \"audio-description-slash\": 57512,\n  \"audio-description\": 62110,\n  \"austral-sign\": 57513,\n  \"australian-dollar-sign\": 59134,\n  \"automobile\": 61881,\n  \"avocado\": 57514,\n  \"award-simple\": 57515,\n  \"award\": 62809,\n  \"axe-battle\": 63155,\n  \"axe\": 63154,\n  \"b\": 66,\n  \"baby-carriage\": 63357,\n  \"baby\": 63356,\n  \"backpack\": 62932,\n  \"backspace\": 62810,\n  \"backward-fast\": 61513,\n  \"backward-step\": 61512,\n  \"backward\": 61514,\n  \"bacon\": 63461,\n  \"bacteria\": 57433,\n  \"bacterium\": 57434,\n  \"badge-check\": 62262,\n  \"badge-dollar\": 63045,\n  \"badge-percent\": 63046,\n  \"badge-sheriff\": 63650,\n  \"badge\": 62261,\n  \"badger-honey\": 63156,\n  \"badminton\": 58170,\n  \"bag-seedling\": 58866,\n  \"bag-shopping-minus\": 58960,\n  \"bag-shopping-plus\": 58961,\n  \"bag-shopping\": 62096,\n  \"bagel\": 58327,\n  \"bags-shopping\": 63559,\n  \"baguette\": 58328,\n  \"bahai\": 63078,\n  \"baht-sign\": 57516,\n  \"balance-scale-left\": 62741,\n  \"balance-scale-right\": 62742,\n  \"balance-scale\": 62030,\n  \"ball-pile\": 63358,\n  \"ball-yarn\": 59086,\n  \"balloon\": 58083,\n  \"balloons\": 58084,\n  \"ballot-check\": 63283,\n  \"ballot\": 63282,\n  \"ban-bug\": 63481,\n  \"ban-parking\": 62998,\n  \"ban-smoking\": 62797,\n  \"ban\": 61534,\n  \"banana\": 58085,\n  \"band-aid\": 62562,\n  \"bandage\": 62562,\n  \"bangladeshi-taka-sign\": 58086,\n  \"banjo\": 63651,\n  \"bank\": 61852,\n  \"bar-chart\": 61568,\n  \"bar-progress-empty\": 59045,\n  \"bar-progress-full\": 59046,\n  \"bar-progress-half\": 59047,\n  \"bar-progress-quarter\": 59048,\n  \"bar-progress-three-quarters\": 59049,\n  \"bar-progress\": 59044,\n  \"barcode-alt\": 62563,\n  \"barcode-read\": 62564,\n  \"barcode-scan\": 62565,\n  \"barcode\": 61482,\n  \"barn-silo\": 63588,\n  \"barn\": 59079,\n  \"bars-filter\": 57517,\n  \"bars-progress\": 63528,\n  \"bars-sort\": 57518,\n  \"bars-staggered\": 62800,\n  \"bars\": 61641,\n  \"baseball-ball\": 62515,\n  \"baseball-bat-ball\": 62514,\n  \"baseball-bat\": 59365,\n  \"baseball\": 62515,\n  \"basket-shopping-minus\": 58962,\n  \"basket-shopping-plus\": 58963,\n  \"basket-shopping-simple\": 57519,\n  \"basket-shopping\": 62097,\n  \"basketball-ball\": 62516,\n  \"basketball-hoop\": 62517,\n  \"basketball\": 62516,\n  \"bat\": 63157,\n  \"bath\": 62157,\n  \"bathtub\": 62157,\n  \"battery-0\": 62020,\n  \"battery-1\": 57521,\n  \"battery-2\": 62019,\n  \"battery-3\": 62018,\n  \"battery-4\": 62017,\n  \"battery-5\": 62016,\n  \"battery-bolt\": 62326,\n  \"battery-car\": 62943,\n  \"battery-empty\": 62020,\n  \"battery-exclamation\": 57520,\n  \"battery-full\": 62016,\n  \"battery-half\": 62018,\n  \"battery-low\": 57521,\n  \"battery-quarter\": 62019,\n  \"battery-slash\": 62327,\n  \"battery-three-quarters\": 62017,\n  \"battery\": 62016,\n  \"bed-alt\": 63735,\n  \"bed-bunk\": 63736,\n  \"bed-empty\": 63737,\n  \"bed-front\": 63735,\n  \"bed-pulse\": 62599,\n  \"bed\": 62006,\n  \"bee\": 57522,\n  \"beer-foam\": 57523,\n  \"beer-mug-empty\": 61692,\n  \"beer-mug\": 57523,\n  \"beer\": 61692,\n  \"bell-concierge\": 62818,\n  \"bell-exclamation\": 63560,\n  \"bell-on\": 63738,\n  \"bell-plus\": 63561,\n  \"bell-ring\": 58924,\n  \"bell-school-slash\": 62934,\n  \"bell-school\": 62933,\n  \"bell-slash\": 61942,\n  \"bell\": 61683,\n  \"bells\": 63359,\n  \"bench-tree\": 58087,\n  \"betamax\": 63652,\n  \"bezier-curve\": 62811,\n  \"bible\": 63047,\n  \"bicep\": 59490,\n  \"bicycle\": 61958,\n  \"biking-mountain\": 63563,\n  \"biking\": 63562,\n  \"billboard\": 58829,\n  \"bin-bottles-recycle\": 58870,\n  \"bin-bottles\": 58869,\n  \"bin-recycle\": 58871,\n  \"bin\": 59235,\n  \"binary-circle-check\": 58172,\n  \"binary-lock\": 58173,\n  \"binary-slash\": 58174,\n  \"binary\": 58171,\n  \"binoculars\": 61925,\n  \"biohazard\": 63360,\n  \"bird\": 58473,\n  \"birthday-cake\": 61949,\n  \"bitcoin-sign\": 57524,\n  \"blackboard\": 62747,\n  \"blanket-fire\": 58330,\n  \"blanket\": 62616,\n  \"blender-phone\": 63158,\n  \"blender\": 62743,\n  \"blind\": 62109,\n  \"blinds-open\": 63740,\n  \"blinds-raised\": 63741,\n  \"blinds\": 63739,\n  \"block-brick-fire\": 58332,\n  \"block-brick\": 58331,\n  \"block-question\": 58333,\n  \"block-quote\": 57525,\n  \"block\": 58474,\n  \"blog\": 63361,\n  \"blueberries\": 58088,\n  \"bluetooth\": 62099,\n  \"bold\": 61490,\n  \"bolt-auto\": 57526,\n  \"bolt-lightning\": 57527,\n  \"bolt-slash\": 57528,\n  \"bolt\": 61671,\n  \"bomb\": 61922,\n  \"bone-break\": 62936,\n  \"bone\": 62935,\n  \"bong\": 62812,\n  \"book-alt\": 62937,\n  \"book-arrow-right\": 57529,\n  \"book-arrow-up\": 57530,\n  \"book-atlas\": 62808,\n  \"book-bible\": 63047,\n  \"book-blank\": 62937,\n  \"book-bookmark\": 57531,\n  \"book-circle-arrow-right\": 57532,\n  \"book-circle-arrow-up\": 57533,\n  \"book-circle\": 57599,\n  \"book-copy\": 57534,\n  \"book-dead\": 63159,\n  \"book-font\": 57535,\n  \"book-heart\": 62617,\n  \"book-journal-whills\": 63082,\n  \"book-law\": 57537,\n  \"book-medical\": 63462,\n  \"book-open-alt\": 57536,\n  \"book-open-cover\": 57536,\n  \"book-open-lines\": 59219,\n  \"book-open-reader\": 62938,\n  \"book-open\": 62744,\n  \"book-quran\": 63111,\n  \"book-reader\": 62938,\n  \"book-section\": 57537,\n  \"book-skull\": 63159,\n  \"book-sparkles\": 63160,\n  \"book-spells\": 63160,\n  \"book-spine\": 59220,\n  \"book-tanakh\": 63527,\n  \"book-user\": 63463,\n  \"book\": 61485,\n  \"bookmark-circle\": 57600,\n  \"bookmark-plus\": 59221,\n  \"bookmark-slash\": 57538,\n  \"bookmark\": 61486,\n  \"books-medical\": 63464,\n  \"books\": 62939,\n  \"boombox\": 63653,\n  \"boot-heeled\": 58175,\n  \"boot\": 63362,\n  \"booth-curtain\": 63284,\n  \"border-all\": 63564,\n  \"border-bottom-right\": 63572,\n  \"border-bottom\": 63565,\n  \"border-center-h\": 63644,\n  \"border-center-v\": 63645,\n  \"border-inner\": 63566,\n  \"border-left\": 63567,\n  \"border-none\": 63568,\n  \"border-outer\": 63569,\n  \"border-right\": 63570,\n  \"border-style-alt\": 63572,\n  \"border-style\": 63571,\n  \"border-top-left\": 63571,\n  \"border-top\": 63573,\n  \"bore-hole\": 58563,\n  \"bottle-baby\": 58995,\n  \"bottle-droplet\": 58564,\n  \"bottle-water\": 58565,\n  \"bow-archery\": 59450,\n  \"bow-arrow\": 63161,\n  \"bowl-chopsticks-noodles\": 58090,\n  \"bowl-chopsticks\": 58089,\n  \"bowl-food\": 58566,\n  \"bowl-hot\": 63523,\n  \"bowl-rice\": 58091,\n  \"bowl-salad\": 63518,\n  \"bowl-scoop\": 58334,\n  \"bowl-scoops\": 58335,\n  \"bowl-shaved-ice\": 58334,\n  \"bowl-soft-serve\": 58475,\n  \"bowl-spoon\": 58336,\n  \"bowling-ball-pin\": 57539,\n  \"bowling-ball\": 62518,\n  \"bowling-pins\": 62519,\n  \"box-alt\": 62618,\n  \"box-archive\": 61831,\n  \"box-arrow-down-arrow-up\": 59285,\n  \"box-arrow-down-magnifying-glass\": 59286,\n  \"box-arrow-down\": 59284,\n  \"box-arrow-up\": 59431,\n  \"box-ballot\": 63285,\n  \"box-check\": 62567,\n  \"box-circle-check\": 57540,\n  \"box-dollar\": 62624,\n  \"box-fragile\": 62619,\n  \"box-full\": 62620,\n  \"box-heart\": 62621,\n  \"box-isometric-tape\": 59288,\n  \"box-isometric\": 59287,\n  \"box-magnifying-glass\": 59432,\n  \"box-open-full\": 62620,\n  \"box-open\": 62622,\n  \"box-taped\": 62618,\n  \"box-tissue\": 57435,\n  \"box-up\": 62623,\n  \"box-usd\": 62624,\n  \"box\": 62566,\n  \"boxes-alt\": 62568,\n  \"boxes-packing\": 58567,\n  \"boxes-stacked\": 62568,\n  \"boxes\": 62568,\n  \"boxing-glove\": 62520,\n  \"bra\": 59087,\n  \"bracket-curly-left\": 123,\n  \"bracket-curly-right\": 125,\n  \"bracket-curly\": 123,\n  \"bracket-left\": 91,\n  \"bracket-round-right\": 41,\n  \"bracket-round\": 40,\n  \"bracket-square-right\": 93,\n  \"bracket-square\": 91,\n  \"bracket\": 91,\n  \"brackets-curly\": 63466,\n  \"brackets-round\": 57541,\n  \"brackets-square\": 63465,\n  \"brackets\": 63465,\n  \"braille\": 62113,\n  \"brain-arrow-curved-right\": 63095,\n  \"brain-circuit\": 57542,\n  \"brain\": 62940,\n  \"brake-warning\": 57543,\n  \"brazilian-real-sign\": 58476,\n  \"bread-loaf\": 63467,\n  \"bread-slice-butter\": 58337,\n  \"bread-slice\": 63468,\n  \"bridge-circle-check\": 58569,\n  \"bridge-circle-exclamation\": 58570,\n  \"bridge-circle-xmark\": 58571,\n  \"bridge-lock\": 58572,\n  \"bridge-suspension\": 58573,\n  \"bridge-water\": 58574,\n  \"bridge\": 58568,\n  \"briefcase-arrow-right\": 58098,\n  \"briefcase-blank\": 57544,\n  \"briefcase-clock\": 63050,\n  \"briefcase-medical\": 62569,\n  \"briefcase\": 61617,\n  \"briefs\": 59088,\n  \"brightness-low\": 57546,\n  \"brightness\": 57545,\n  \"bring-forward\": 63574,\n  \"bring-front\": 63575,\n  \"broadcast-tower\": 62745,\n  \"broccoli\": 58338,\n  \"broom-ball\": 62552,\n  \"broom-wide\": 58833,\n  \"broom\": 62746,\n  \"browser\": 62334,\n  \"browsers\": 57547,\n  \"brush\": 62813,\n  \"bucket\": 58575,\n  \"bug-slash\": 58512,\n  \"bug\": 61832,\n  \"bugs\": 58576,\n  \"building-circle-arrow-right\": 58577,\n  \"building-circle-check\": 58578,\n  \"building-circle-exclamation\": 58579,\n  \"building-circle-xmark\": 58580,\n  \"building-columns\": 61852,\n  \"building-flag\": 58581,\n  \"building-lock\": 58582,\n  \"building-magnifying-glass\": 58908,\n  \"building-memo\": 58910,\n  \"building-ngo\": 58583,\n  \"building-shield\": 58584,\n  \"building-un\": 58585,\n  \"building-user\": 58586,\n  \"building-wheat\": 58587,\n  \"building\": 61869,\n  \"buildings\": 57548,\n  \"bulldozer\": 58965,\n  \"bullhorn\": 61601,\n  \"bullseye-arrow\": 63048,\n  \"bullseye-pointer\": 63049,\n  \"bullseye\": 61760,\n  \"buoy-mooring\": 58806,\n  \"buoy\": 58805,\n  \"burger-cheese\": 63473,\n  \"burger-fries\": 57549,\n  \"burger-glass\": 57550,\n  \"burger-lettuce\": 58339,\n  \"burger-soda\": 63576,\n  \"burger\": 63493,\n  \"burn\": 62570,\n  \"burrito\": 63469,\n  \"burst-new\": 59512,\n  \"burst\": 58588,\n  \"bus-alt\": 62814,\n  \"bus-school\": 62941,\n  \"bus-side\": 59421,\n  \"bus-simple\": 62814,\n  \"bus-stop\": 59422,\n  \"bus\": 61959,\n  \"business-front\": 58460,\n  \"business-time\": 63050,\n  \"butter\": 58340,\n  \"butterfly\": 59409,\n  \"c\": 67,\n  \"cab\": 61882,\n  \"cabin\": 58477,\n  \"cabinet-filing\": 63051,\n  \"cable-car\": 63450,\n  \"cactus\": 63655,\n  \"caduceus\": 59009,\n  \"cake-candles\": 61949,\n  \"cake-slice\": 58341,\n  \"cake\": 61949,\n  \"calculator-alt\": 63052,\n  \"calculator-simple\": 63052,\n  \"calculator\": 61932,\n  \"calendar-alt\": 61555,\n  \"calendar-arrow-down\": 57552,\n  \"calendar-arrow-up\": 57553,\n  \"calendar-check\": 62068,\n  \"calendar-circle-exclamation\": 58478,\n  \"calendar-circle-minus\": 58479,\n  \"calendar-circle-plus\": 58480,\n  \"calendar-circle-user\": 58481,\n  \"calendar-circle\": 57602,\n  \"calendar-clock\": 57554,\n  \"calendar-day\": 63363,\n  \"calendar-days\": 61555,\n  \"calendar-download\": 57552,\n  \"calendar-edit\": 62259,\n  \"calendar-exclamation\": 62260,\n  \"calendar-heart\": 57555,\n  \"calendar-image\": 57556,\n  \"calendar-lines-pen\": 58482,\n  \"calendar-lines\": 57557,\n  \"calendar-minus\": 62066,\n  \"calendar-note\": 57557,\n  \"calendar-pen\": 62259,\n  \"calendar-plus\": 62065,\n  \"calendar-range\": 57558,\n  \"calendar-star\": 63286,\n  \"calendar-time\": 57554,\n  \"calendar-times\": 62067,\n  \"calendar-upload\": 57553,\n  \"calendar-users\": 58850,\n  \"calendar-week\": 63364,\n  \"calendar-xmark\": 62067,\n  \"calendar\": 61747,\n  \"calendars\": 57559,\n  \"camcorder\": 63656,\n  \"camera-alt\": 61488,\n  \"camera-cctv\": 63660,\n  \"camera-circle-ellipsis\": 59238,\n  \"camera-circle\": 57603,\n  \"camera-clock\": 59239,\n  \"camera-home\": 63742,\n  \"camera-movie\": 63657,\n  \"camera-polaroid\": 63658,\n  \"camera-retro\": 61571,\n  \"camera-rotate\": 57560,\n  \"camera-security\": 63742,\n  \"camera-shutter\": 59240,\n  \"camera-slash\": 57561,\n  \"camera-viewfinder\": 57562,\n  \"camera-web-slash\": 63539,\n  \"camera-web\": 63538,\n  \"camera\": 61488,\n  \"campfire\": 63162,\n  \"campground\": 63163,\n  \"can-food\": 58342,\n  \"cancel\": 61534,\n  \"cancer\": 59463,\n  \"candle-holder\": 63164,\n  \"candy-bar\": 58344,\n  \"candy-cane\": 63366,\n  \"candy-corn\": 63165,\n  \"candy\": 58343,\n  \"cannabis\": 62815,\n  \"cannon\": 58946,\n  \"canoe-person\": 59548,\n  \"capricorn\": 59464,\n  \"capsule\": 59226,\n  \"capsules\": 62571,\n  \"car-alt\": 62942,\n  \"car-battery\": 62943,\n  \"car-bolt\": 58177,\n  \"car-building\": 63577,\n  \"car-bump\": 62944,\n  \"car-burst\": 62945,\n  \"car-bus\": 63578,\n  \"car-circle-bolt\": 58178,\n  \"car-crash\": 62945,\n  \"car-garage\": 62946,\n  \"car-key\": 59328,\n  \"car-mechanic\": 62947,\n  \"car-mirrors\": 58179,\n  \"car-on\": 58589,\n  \"car-people\": 59036,\n  \"car-rear\": 62942,\n  \"car-side-bolt\": 58180,\n  \"car-side\": 62948,\n  \"car-siren-on\": 59330,\n  \"car-siren\": 59329,\n  \"car-tilt\": 62949,\n  \"car-tunnel\": 58590,\n  \"car-wash\": 62950,\n  \"car-wrench\": 62947,\n  \"car\": 61881,\n  \"caravan-alt\": 57344,\n  \"caravan-simple\": 57344,\n  \"caravan\": 63743,\n  \"card-club\": 58345,\n  \"card-diamond\": 58346,\n  \"card-heart\": 58347,\n  \"card-spade\": 58348,\n  \"cards-blank\": 58591,\n  \"cards\": 58349,\n  \"caret-circle-down\": 62253,\n  \"caret-circle-left\": 62254,\n  \"caret-circle-right\": 62256,\n  \"caret-circle-up\": 62257,\n  \"caret-down\": 61655,\n  \"caret-large-down\": 59436,\n  \"caret-large-left\": 59437,\n  \"caret-large-right\": 59438,\n  \"caret-large-up\": 59439,\n  \"caret-left\": 61657,\n  \"caret-right\": 61658,\n  \"caret-square-down\": 61776,\n  \"caret-square-left\": 61841,\n  \"caret-square-right\": 61778,\n  \"caret-square-up\": 61777,\n  \"caret-up\": 61656,\n  \"carpool\": 59036,\n  \"carriage-baby\": 63357,\n  \"carrot\": 63367,\n  \"cars\": 63579,\n  \"cart-arrow-down\": 61976,\n  \"cart-arrow-up\": 58350,\n  \"cart-circle-arrow-down\": 58351,\n  \"cart-circle-arrow-up\": 58352,\n  \"cart-circle-check\": 58353,\n  \"cart-circle-exclamation\": 58354,\n  \"cart-circle-plus\": 58355,\n  \"cart-circle-xmark\": 58356,\n  \"cart-flatbed-boxes\": 62581,\n  \"cart-flatbed-empty\": 62582,\n  \"cart-flatbed-suitcase\": 62877,\n  \"cart-flatbed\": 62580,\n  \"cart-minus\": 57563,\n  \"cart-plus\": 61975,\n  \"cart-shopping-fast\": 57564,\n  \"cart-shopping\": 61562,\n  \"cart-xmark\": 57565,\n  \"cash-register\": 63368,\n  \"cassette-betamax\": 63652,\n  \"cassette-tape\": 63659,\n  \"cassette-vhs\": 63724,\n  \"castle\": 57566,\n  \"cat-space\": 57345,\n  \"cat\": 63166,\n  \"cauldron\": 63167,\n  \"cctv\": 63660,\n  \"cedi-sign\": 57567,\n  \"cent-sign\": 58357,\n  \"certificate\": 61603,\n  \"chain-broken\": 61735,\n  \"chain-horizontal-slash\": 57804,\n  \"chain-horizontal\": 57803,\n  \"chain-slash\": 61735,\n  \"chain\": 61633,\n  \"chair-office\": 63169,\n  \"chair\": 63168,\n  \"chalkboard-teacher\": 62748,\n  \"chalkboard-user\": 62748,\n  \"chalkboard\": 62747,\n  \"champagne-glass\": 63390,\n  \"champagne-glasses\": 63391,\n  \"charging-station\": 62951,\n  \"chart-area\": 61950,\n  \"chart-bar\": 61568,\n  \"chart-bullet\": 57569,\n  \"chart-candlestick\": 57570,\n  \"chart-column\": 57571,\n  \"chart-diagram\": 59029,\n  \"chart-fft\": 59038,\n  \"chart-gantt\": 57572,\n  \"chart-kanban\": 58959,\n  \"chart-line-down\": 63053,\n  \"chart-line-up-down\": 58839,\n  \"chart-line-up\": 57573,\n  \"chart-line\": 61953,\n  \"chart-mixed-up-circle-currency\": 58840,\n  \"chart-mixed-up-circle-dollar\": 58841,\n  \"chart-mixed\": 63043,\n  \"chart-network\": 63370,\n  \"chart-pie-alt\": 63054,\n  \"chart-pie-simple-circle-currency\": 58884,\n  \"chart-pie-simple-circle-dollar\": 58885,\n  \"chart-pie-simple\": 63054,\n  \"chart-pie\": 61952,\n  \"chart-pyramid\": 57574,\n  \"chart-radar\": 57575,\n  \"chart-scatter-3d\": 57576,\n  \"chart-scatter-bubble\": 57577,\n  \"chart-scatter\": 63470,\n  \"chart-simple-horizontal\": 58484,\n  \"chart-simple\": 58483,\n  \"chart-sine\": 59037,\n  \"chart-tree-map\": 57578,\n  \"chart-user\": 63139,\n  \"chart-waterfall\": 57579,\n  \"check-circle\": 61528,\n  \"check-double\": 62816,\n  \"check-square\": 61770,\n  \"check-to-slot\": 63346,\n  \"check\": 61452,\n  \"cheese-swiss\": 63472,\n  \"cheese\": 63471,\n  \"cheeseburger\": 63473,\n  \"chemex\": 59440,\n  \"cherries\": 57580,\n  \"chess-bishop-alt\": 62523,\n  \"chess-bishop-piece\": 62523,\n  \"chess-bishop\": 62522,\n  \"chess-board\": 62524,\n  \"chess-clock-alt\": 62526,\n  \"chess-clock-flip\": 62526,\n  \"chess-clock\": 62525,\n  \"chess-king-alt\": 62528,\n  \"chess-king-piece\": 62528,\n  \"chess-king\": 62527,\n  \"chess-knight-alt\": 62530,\n  \"chess-knight-piece\": 62530,\n  \"chess-knight\": 62529,\n  \"chess-pawn-alt\": 62532,\n  \"chess-pawn-piece\": 62532,\n  \"chess-pawn\": 62531,\n  \"chess-queen-alt\": 62534,\n  \"chess-queen-piece\": 62534,\n  \"chess-queen\": 62533,\n  \"chess-rook-alt\": 62536,\n  \"chess-rook-piece\": 62536,\n  \"chess-rook\": 62535,\n  \"chess\": 62521,\n  \"chest-drawers\": 59523,\n  \"chestnut\": 58358,\n  \"chevron-circle-down\": 61754,\n  \"chevron-circle-left\": 61751,\n  \"chevron-circle-right\": 61752,\n  \"chevron-circle-up\": 61753,\n  \"chevron-double-down\": 62242,\n  \"chevron-double-left\": 62243,\n  \"chevron-double-right\": 62244,\n  \"chevron-double-up\": 62245,\n  \"chevron-down\": 61560,\n  \"chevron-left\": 61523,\n  \"chevron-right\": 61524,\n  \"chevron-square-down\": 62249,\n  \"chevron-square-left\": 62250,\n  \"chevron-square-right\": 62251,\n  \"chevron-square-up\": 62252,\n  \"chevron-up\": 61559,\n  \"chevrons-down\": 62242,\n  \"chevrons-left\": 62243,\n  \"chevrons-right\": 62244,\n  \"chevrons-up\": 62245,\n  \"chf-sign\": 58882,\n  \"child-combatant\": 58592,\n  \"child-dress\": 58780,\n  \"child-reaching\": 58781,\n  \"child-rifle\": 58592,\n  \"child\": 61870,\n  \"children\": 58593,\n  \"chimney\": 63371,\n  \"chocolate-bar\": 58344,\n  \"chopsticks\": 58359,\n  \"church\": 62749,\n  \"circle-0\": 57581,\n  \"circle-1\": 57582,\n  \"circle-2\": 57583,\n  \"circle-3\": 57584,\n  \"circle-4\": 57585,\n  \"circle-5\": 57586,\n  \"circle-6\": 57587,\n  \"circle-7\": 57588,\n  \"circle-8\": 57589,\n  \"circle-9\": 57590,\n  \"circle-a\": 57591,\n  \"circle-ampersand\": 57592,\n  \"circle-arrow-down-left\": 57593,\n  \"circle-arrow-down-right\": 57594,\n  \"circle-arrow-down\": 61611,\n  \"circle-arrow-left\": 61608,\n  \"circle-arrow-right\": 61609,\n  \"circle-arrow-up-left\": 57595,\n  \"circle-arrow-up-right\": 57596,\n  \"circle-arrow-up\": 61610,\n  \"circle-austral\": 59163,\n  \"circle-australian-dollar\": 59184,\n  \"circle-b\": 57597,\n  \"circle-baht\": 59181,\n  \"circle-bangladeshi-taka\": 59137,\n  \"circle-bitcoin\": 59191,\n  \"circle-bolt\": 57598,\n  \"circle-book-open\": 57599,\n  \"circle-bookmark\": 57600,\n  \"circle-brazilian-real\": 59115,\n  \"circle-c\": 57601,\n  \"circle-calendar\": 57602,\n  \"circle-camera\": 57603,\n  \"circle-caret-down\": 62253,\n  \"circle-caret-left\": 62254,\n  \"circle-caret-right\": 62256,\n  \"circle-caret-up\": 62257,\n  \"circle-cedi\": 59202,\n  \"circle-cent\": 59178,\n  \"circle-check\": 61528,\n  \"circle-chevron-down\": 61754,\n  \"circle-chevron-left\": 61751,\n  \"circle-chevron-right\": 61752,\n  \"circle-chevron-up\": 61753,\n  \"circle-chf\": 59180,\n  \"circle-colon\": 59132,\n  \"circle-cruzeiro\": 59170,\n  \"circle-currency\": 59118,\n  \"circle-d\": 57604,\n  \"circle-danish-krone\": 59206,\n  \"circle-dashed\": 57605,\n  \"circle-divide\": 57606,\n  \"circle-dollar-to-slot\": 62649,\n  \"circle-dollar\": 62184,\n  \"circle-dong\": 59171,\n  \"circle-dot\": 61842,\n  \"circle-down-left\": 57607,\n  \"circle-down-right\": 57608,\n  \"circle-down\": 62296,\n  \"circle-e\": 57609,\n  \"circle-ellipsis-vertical\": 57611,\n  \"circle-ellipsis\": 57610,\n  \"circle-envelope\": 57612,\n  \"circle-equals\": 59057,\n  \"circle-euro\": 58830,\n  \"circle-eurozone\": 59205,\n  \"circle-exclamation-check\": 57613,\n  \"circle-exclamation\": 61546,\n  \"circle-f\": 57614,\n  \"circle-florin\": 59108,\n  \"circle-franc\": 59169,\n  \"circle-g\": 57615,\n  \"circle-gf\": 59007,\n  \"circle-guarani\": 59195,\n  \"circle-h\": 62590,\n  \"circle-half-horizontal\": 59404,\n  \"circle-half-stroke-horizontal\": 59405,\n  \"circle-half-stroke\": 61506,\n  \"circle-half\": 57616,\n  \"circle-heart\": 62663,\n  \"circle-house\": 59080,\n  \"circle-hryvnia\": 59119,\n  \"circle-i\": 57617,\n  \"circle-indian-rupee\": 59188,\n  \"circle-info\": 61530,\n  \"circle-j\": 57618,\n  \"circle-k\": 57619,\n  \"circle-kip\": 59133,\n  \"circle-l\": 57620,\n  \"circle-lari\": 59165,\n  \"circle-left\": 62297,\n  \"circle-lira\": 59126,\n  \"circle-litecoin\": 59124,\n  \"circle-location-arrow\": 62978,\n  \"circle-m\": 57621,\n  \"circle-malaysian-ringgit\": 59129,\n  \"circle-manat\": 59131,\n  \"circle-microphone-lines\": 57623,\n  \"circle-microphone\": 57622,\n  \"circle-mill\": 59138,\n  \"circle-minus\": 61526,\n  \"circle-moon\": 59360,\n  \"circle-n\": 57624,\n  \"circle-naira\": 59209,\n  \"circle-nodes\": 58594,\n  \"circle-norwegian-krone\": 59192,\n  \"circle-notch\": 61902,\n  \"circle-o\": 57625,\n  \"circle-p\": 57626,\n  \"circle-parking\": 62997,\n  \"circle-pause\": 62091,\n  \"circle-peruvian-soles\": 59123,\n  \"circle-peseta\": 59201,\n  \"circle-peso\": 59135,\n  \"circle-phone-flip\": 57628,\n  \"circle-phone-hangup\": 57629,\n  \"circle-phone\": 57627,\n  \"circle-play\": 61764,\n  \"circle-plus\": 61525,\n  \"circle-polish-zloty\": 59136,\n  \"circle-q\": 57630,\n  \"circle-quarter-stroke\": 58835,\n  \"circle-quarter\": 57631,\n  \"circle-quarters\": 58360,\n  \"circle-question\": 61529,\n  \"circle-r\": 57632,\n  \"circle-radiation\": 63418,\n  \"circle-renminbi\": 59113,\n  \"circle-right\": 62298,\n  \"circle-ruble\": 59109,\n  \"circle-rupee\": 59156,\n  \"circle-rupiah\": 59142,\n  \"circle-s\": 57633,\n  \"circle-share-nodes\": 59099,\n  \"circle-shekel\": 59139,\n  \"circle-small\": 57634,\n  \"circle-sort-down\": 57393,\n  \"circle-sort-up\": 57394,\n  \"circle-sort\": 57392,\n  \"circle-star\": 57635,\n  \"circle-sterling\": 58831,\n  \"circle-stop\": 62093,\n  \"circle-swedish-krona\": 59203,\n  \"circle-t\": 57636,\n  \"circle-tenge\": 59173,\n  \"circle-three-quarters-stroke\": 58836,\n  \"circle-three-quarters\": 57637,\n  \"circle-trash\": 57638,\n  \"circle-tugrik\": 59153,\n  \"circle-turkish-lira\": 59193,\n  \"circle-u\": 57639,\n  \"circle-up-left\": 57640,\n  \"circle-up-right\": 57641,\n  \"circle-up\": 62299,\n  \"circle-user-circle-check\": 59295,\n  \"circle-user-circle-exclamation\": 59296,\n  \"circle-user-circle-minus\": 59297,\n  \"circle-user-circle-moon\": 59298,\n  \"circle-user-circle-plus\": 59299,\n  \"circle-user-circle-question\": 59300,\n  \"circle-user-circle-user\": 59301,\n  \"circle-user-circle-xmark\": 59302,\n  \"circle-user-clock\": 59303,\n  \"circle-user\": 62141,\n  \"circle-v\": 57642,\n  \"circle-video\": 57643,\n  \"circle-w\": 57644,\n  \"circle-waveform-lines\": 57645,\n  \"circle-wifi-circle-wifi\": 59006,\n  \"circle-wifi-group\": 59006,\n  \"circle-wifi\": 59005,\n  \"circle-won\": 59116,\n  \"circle-x\": 57646,\n  \"circle-xmark\": 61527,\n  \"circle-y\": 57647,\n  \"circle-yen\": 58832,\n  \"circle-z\": 57648,\n  \"circle\": 61713,\n  \"circleapore-dollar\": 59166,\n  \"circles-overlap-3\": 59041,\n  \"circles-overlap\": 58880,\n  \"citrus-slice\": 58101,\n  \"citrus\": 58100,\n  \"city\": 63055,\n  \"clapperboard-play\": 57650,\n  \"clapperboard\": 57649,\n  \"clarinet\": 63661,\n  \"claw-marks\": 63170,\n  \"clinic-medical\": 63474,\n  \"clipboard-check\": 62572,\n  \"clipboard-clock\": 59222,\n  \"clipboard-exclamation\": 59223,\n  \"clipboard-list-check\": 63287,\n  \"clipboard-list\": 62573,\n  \"clipboard-medical\": 57651,\n  \"clipboard-prescription\": 62952,\n  \"clipboard-question\": 58595,\n  \"clipboard-user\": 63475,\n  \"clipboard\": 62248,\n  \"clock-desk\": 57652,\n  \"clock-eight-thirty\": 58182,\n  \"clock-eight\": 58181,\n  \"clock-eleven-thirty\": 58184,\n  \"clock-eleven\": 58183,\n  \"clock-five-thirty\": 58186,\n  \"clock-five\": 58185,\n  \"clock-four-thirty\": 58187,\n  \"clock-four\": 61463,\n  \"clock-nine-thirty\": 58189,\n  \"clock-nine\": 58188,\n  \"clock-one-thirty\": 58191,\n  \"clock-one\": 58190,\n  \"clock-rotate-left\": 61914,\n  \"clock-seven-thirty\": 58193,\n  \"clock-seven\": 58192,\n  \"clock-six-thirty\": 58195,\n  \"clock-six\": 58194,\n  \"clock-ten-thirty\": 58197,\n  \"clock-ten\": 58196,\n  \"clock-three-thirty\": 58199,\n  \"clock-three\": 58198,\n  \"clock-twelve-thirty\": 58201,\n  \"clock-twelve\": 58200,\n  \"clock-two-thirty\": 58203,\n  \"clock-two\": 58202,\n  \"clock\": 61463,\n  \"clone-plus\": 59212,\n  \"clone\": 62029,\n  \"close\": 61453,\n  \"closed-captioning-slash\": 57653,\n  \"closed-captioning\": 61962,\n  \"clothes-hanger\": 57654,\n  \"cloud-arrow-down\": 61677,\n  \"cloud-arrow-up\": 61678,\n  \"cloud-binary\": 58881,\n  \"cloud-bolt-moon\": 63341,\n  \"cloud-bolt-sun\": 63342,\n  \"cloud-bolt\": 63340,\n  \"cloud-check\": 58204,\n  \"cloud-download-alt\": 61677,\n  \"cloud-download\": 61677,\n  \"cloud-drizzle\": 63288,\n  \"cloud-exclamation\": 58513,\n  \"cloud-fog\": 63310,\n  \"cloud-hail-mixed\": 63290,\n  \"cloud-hail\": 63289,\n  \"cloud-meatball\": 63291,\n  \"cloud-minus\": 58205,\n  \"cloud-moon-rain\": 63292,\n  \"cloud-moon\": 63171,\n  \"cloud-music\": 63662,\n  \"cloud-plus\": 58206,\n  \"cloud-question\": 58514,\n  \"cloud-rain\": 63293,\n  \"cloud-rainbow\": 63294,\n  \"cloud-showers-heavy\": 63296,\n  \"cloud-showers-water\": 58596,\n  \"cloud-showers\": 63295,\n  \"cloud-slash\": 57655,\n  \"cloud-sleet\": 63297,\n  \"cloud-snow\": 63298,\n  \"cloud-sun-rain\": 63299,\n  \"cloud-sun\": 63172,\n  \"cloud-upload-alt\": 61678,\n  \"cloud-upload\": 61678,\n  \"cloud-word\": 57656,\n  \"cloud-xmark\": 58207,\n  \"cloud\": 61634,\n  \"clouds-moon\": 63301,\n  \"clouds-sun\": 63302,\n  \"clouds\": 63300,\n  \"clover\": 57657,\n  \"club\": 62247,\n  \"cny\": 61783,\n  \"cocktail\": 62817,\n  \"coconut\": 58102,\n  \"code-branch\": 61734,\n  \"code-commit\": 62342,\n  \"code-compare\": 57658,\n  \"code-fork\": 57659,\n  \"code-merge\": 62343,\n  \"code-pull-request-closed\": 58361,\n  \"code-pull-request-draft\": 58362,\n  \"code-pull-request\": 57660,\n  \"code-simple\": 57661,\n  \"code\": 61729,\n  \"coffee-bean\": 57662,\n  \"coffee-beans\": 57663,\n  \"coffee-pot\": 57346,\n  \"coffee-togo\": 63173,\n  \"coffee\": 61684,\n  \"coffin-cross\": 57425,\n  \"coffin\": 63174,\n  \"cog\": 61459,\n  \"cogs\": 61573,\n  \"coin-blank\": 58363,\n  \"coin-front\": 58364,\n  \"coin-vertical\": 58365,\n  \"coin\": 63580,\n  \"coins\": 62750,\n  \"colon-sign\": 57664,\n  \"colon\": 58,\n  \"columns-3\": 58209,\n  \"columns\": 61659,\n  \"comet\": 57347,\n  \"comma\": 44,\n  \"command\": 57666,\n  \"comment-alt-arrow-down\": 57819,\n  \"comment-alt-arrow-up\": 57820,\n  \"comment-alt-captions\": 57822,\n  \"comment-alt-check\": 62626,\n  \"comment-alt-dollar\": 63056,\n  \"comment-alt-dots\": 62627,\n  \"comment-alt-edit\": 62628,\n  \"comment-alt-exclamation\": 62629,\n  \"comment-alt-image\": 57824,\n  \"comment-alt-lines\": 62630,\n  \"comment-alt-medical\": 63476,\n  \"comment-alt-minus\": 62631,\n  \"comment-alt-music\": 63663,\n  \"comment-alt-plus\": 62632,\n  \"comment-alt-quote\": 57828,\n  \"comment-alt-slash\": 62633,\n  \"comment-alt-smile\": 62634,\n  \"comment-alt-text\": 57830,\n  \"comment-alt-times\": 62635,\n  \"comment-alt\": 62074,\n  \"comment-arrow-down\": 57667,\n  \"comment-arrow-up-right\": 57669,\n  \"comment-arrow-up\": 57668,\n  \"comment-captions\": 57670,\n  \"comment-check\": 62636,\n  \"comment-code\": 57671,\n  \"comment-dollar\": 63057,\n  \"comment-dot\": 59100,\n  \"comment-dots\": 62637,\n  \"comment-edit\": 62638,\n  \"comment-exclamation\": 62639,\n  \"comment-heart\": 58824,\n  \"comment-image\": 57672,\n  \"comment-lines\": 62640,\n  \"comment-medical\": 63477,\n  \"comment-middle-alt\": 57825,\n  \"comment-middle-top-alt\": 57826,\n  \"comment-middle-top\": 57674,\n  \"comment-middle\": 57673,\n  \"comment-minus\": 62641,\n  \"comment-music\": 63664,\n  \"comment-nodes\": 59030,\n  \"comment-pen\": 62638,\n  \"comment-plus\": 62642,\n  \"comment-question\": 57675,\n  \"comment-quote\": 57676,\n  \"comment-slash\": 62643,\n  \"comment-smile\": 62644,\n  \"comment-sms\": 63437,\n  \"comment-text\": 57677,\n  \"comment-times\": 62645,\n  \"comment-waveform\": 59101,\n  \"comment-xmark\": 62645,\n  \"comment\": 61557,\n  \"commenting\": 62637,\n  \"comments-alt-dollar\": 63058,\n  \"comments-alt\": 62646,\n  \"comments-dollar\": 63059,\n  \"comments-question-check\": 57679,\n  \"comments-question\": 57678,\n  \"comments\": 61574,\n  \"compact-disc\": 62751,\n  \"compass-drafting\": 62824,\n  \"compass-slash\": 62953,\n  \"compass\": 61774,\n  \"compress-alt\": 62498,\n  \"compress-arrows-alt\": 63372,\n  \"compress-arrows\": 57509,\n  \"compress-wide\": 62246,\n  \"compress\": 61542,\n  \"computer-classic\": 63665,\n  \"computer-mouse-button-left\": 59341,\n  \"computer-mouse-button-right\": 59342,\n  \"computer-mouse-scrollwheel\": 63693,\n  \"computer-mouse\": 63692,\n  \"computer-speaker\": 63666,\n  \"computer\": 58597,\n  \"concierge-bell\": 62818,\n  \"construction\": 63581,\n  \"contact-book\": 62137,\n  \"contact-card\": 62139,\n  \"container-storage\": 62647,\n  \"conveyor-belt-alt\": 62575,\n  \"conveyor-belt-arm\": 58872,\n  \"conveyor-belt-boxes\": 62575,\n  \"conveyor-belt-empty\": 57680,\n  \"conveyor-belt\": 62574,\n  \"cookie-bite\": 62820,\n  \"cookie\": 62819,\n  \"copy\": 61637,\n  \"copyright\": 61945,\n  \"corn\": 63175,\n  \"corner\": 58366,\n  \"couch-small\": 62668,\n  \"couch\": 62648,\n  \"court-sport\": 58947,\n  \"cow\": 63176,\n  \"cowbell-circle-plus\": 63668,\n  \"cowbell-more\": 63668,\n  \"cowbell\": 63667,\n  \"crab\": 58367,\n  \"crate-apple\": 63153,\n  \"crate-empty\": 57681,\n  \"credit-card-alt\": 61597,\n  \"credit-card-blank\": 62345,\n  \"credit-card-front\": 62346,\n  \"credit-card\": 61597,\n  \"creemee\": 58368,\n  \"cricket-bat-ball\": 62537,\n  \"cricket\": 62537,\n  \"croissant\": 63478,\n  \"crop-alt\": 62821,\n  \"crop-simple\": 62821,\n  \"crop\": 61733,\n  \"cross\": 63060,\n  \"crosshairs-simple\": 58783,\n  \"crosshairs\": 61531,\n  \"crow\": 62752,\n  \"crown\": 62753,\n  \"crutch\": 63479,\n  \"crutches\": 63480,\n  \"cruzeiro-sign\": 57682,\n  \"crystal-ball\": 58210,\n  \"cube\": 61874,\n  \"cubes-stacked\": 58598,\n  \"cubes\": 61875,\n  \"cucumber\": 58369,\n  \"cup-straw-swoosh\": 58212,\n  \"cup-straw\": 58211,\n  \"cup-togo\": 63173,\n  \"cupcake\": 58370,\n  \"curling-stone\": 62538,\n  \"curling\": 62538,\n  \"currency-sign\": 59179,\n  \"custard\": 58371,\n  \"cut\": 61636,\n  \"cutlery\": 62183,\n  \"d\": 68,\n  \"dagger\": 63179,\n  \"danish-krone-sign\": 59168,\n  \"dash\": 58372,\n  \"dashboard\": 63012,\n  \"database\": 61888,\n  \"deaf\": 62116,\n  \"deafness\": 62116,\n  \"debug\": 63481,\n  \"dedent\": 61499,\n  \"deer-rudolph\": 63375,\n  \"deer\": 63374,\n  \"delete-left\": 62810,\n  \"delete-right\": 57684,\n  \"democrat\": 63303,\n  \"desk\": 59518,\n  \"desktop-alt\": 62352,\n  \"desktop-arrow-down\": 57685,\n  \"desktop-code\": 57701,\n  \"desktop-medical\": 57702,\n  \"desktop-slash\": 58106,\n  \"desktop\": 62352,\n  \"dewpoint\": 63304,\n  \"dharmachakra\": 63061,\n  \"diagnoses\": 62576,\n  \"diagram-cells\": 58485,\n  \"diagram-lean-canvas\": 57686,\n  \"diagram-nested\": 57687,\n  \"diagram-next\": 58486,\n  \"diagram-predecessor\": 58487,\n  \"diagram-previous\": 58488,\n  \"diagram-project\": 62786,\n  \"diagram-sankey\": 57688,\n  \"diagram-subtask\": 58489,\n  \"diagram-successor\": 58490,\n  \"diagram-venn\": 57690,\n  \"dial-high\": 57692,\n  \"dial-low\": 57693,\n  \"dial-max\": 57694,\n  \"dial-med-high\": 57691,\n  \"dial-med-low\": 57696,\n  \"dial-med\": 57695,\n  \"dial-min\": 57697,\n  \"dial-off\": 57698,\n  \"dial\": 57691,\n  \"dialpad\": 59340,\n  \"diamond-exclamation\": 58373,\n  \"diamond-half-stroke\": 58808,\n  \"diamond-half\": 58807,\n  \"diamond-turn-right\": 62955,\n  \"diamond\": 61977,\n  \"diamonds-4\": 59019,\n  \"dice-d10\": 63181,\n  \"dice-d12\": 63182,\n  \"dice-d20\": 63183,\n  \"dice-d4\": 63184,\n  \"dice-d6\": 63185,\n  \"dice-d8\": 63186,\n  \"dice-five\": 62755,\n  \"dice-four\": 62756,\n  \"dice-one\": 62757,\n  \"dice-six\": 62758,\n  \"dice-three\": 62759,\n  \"dice-two\": 62760,\n  \"dice\": 62754,\n  \"digging\": 63582,\n  \"digital-tachograph\": 62822,\n  \"dinosaur\": 58878,\n  \"diploma\": 62954,\n  \"direction-left-right\": 59070,\n  \"direction-up-down\": 59071,\n  \"directions\": 62955,\n  \"disc-drive\": 63669,\n  \"disease\": 63482,\n  \"display-arrow-down\": 57700,\n  \"display-chart-up-circle-currency\": 58853,\n  \"display-chart-up-circle-dollar\": 58854,\n  \"display-chart-up\": 58851,\n  \"display-code\": 57701,\n  \"display-medical\": 57702,\n  \"display-slash\": 58106,\n  \"display\": 57699,\n  \"distribute-spacing-horizontal\": 58213,\n  \"distribute-spacing-vertical\": 58214,\n  \"ditto\": 34,\n  \"divide\": 62761,\n  \"dizzy\": 62823,\n  \"dna\": 62577,\n  \"do-not-enter\": 62956,\n  \"dog-leashed\": 63188,\n  \"dog\": 63187,\n  \"dollar-circle\": 62184,\n  \"dollar-sign\": 36,\n  \"dollar-square\": 62185,\n  \"dollar\": 36,\n  \"dolly-box\": 62578,\n  \"dolly-empty\": 62579,\n  \"dolly-flatbed-alt\": 62581,\n  \"dolly-flatbed-empty\": 62582,\n  \"dolly-flatbed\": 62580,\n  \"dolly\": 62578,\n  \"dolphin\": 57704,\n  \"donate\": 62649,\n  \"dong-sign\": 57705,\n  \"donut\": 58374,\n  \"door-closed\": 62762,\n  \"door-open\": 62763,\n  \"dot-circle\": 61842,\n  \"dot\": 59345,\n  \"doughnut\": 58374,\n  \"dove\": 62650,\n  \"down-from-bracket\": 58987,\n  \"down-from-dotted-line\": 58375,\n  \"down-from-line\": 62281,\n  \"down-left-and-up-right-to-center\": 62498,\n  \"down-left\": 57706,\n  \"down-long-to-line\": 59072,\n  \"down-long\": 62217,\n  \"down-right\": 57707,\n  \"down-to-bracket\": 58599,\n  \"down-to-dotted-line\": 58376,\n  \"down-to-line\": 62282,\n  \"down-up\": 59073,\n  \"down\": 62292,\n  \"download\": 61465,\n  \"drafting-compass\": 62824,\n  \"dragon\": 63189,\n  \"draw-circle\": 62957,\n  \"draw-polygon\": 62958,\n  \"draw-square\": 62959,\n  \"dreidel\": 63378,\n  \"dress\": 59089,\n  \"dresser\": 59519,\n  \"drivers-license\": 62146,\n  \"drone-alt\": 63584,\n  \"drone-front\": 63584,\n  \"drone\": 63583,\n  \"droplet-degree\": 63304,\n  \"droplet-percent\": 63312,\n  \"droplet-plus\": 59392,\n  \"droplet-slash\": 62919,\n  \"droplet\": 61507,\n  \"drum-steelpan\": 62826,\n  \"drum\": 62825,\n  \"drumstick-bite\": 63191,\n  \"drumstick\": 63190,\n  \"dryer-alt\": 63586,\n  \"dryer-heat\": 63586,\n  \"dryer\": 63585,\n  \"duck\": 63192,\n  \"dumbbell\": 62539,\n  \"dumpster-fire\": 63380,\n  \"dumpster\": 63379,\n  \"dungeon\": 63193,\n  \"e\": 69,\n  \"ear-circle-checkmark\": 59227,\n  \"ear-deaf\": 62116,\n  \"ear-listen\": 62114,\n  \"ear-muffs\": 63381,\n  \"ear-triangle-exclamation\": 59228,\n  \"ear-waveform\": 59229,\n  \"ear\": 62960,\n  \"earth-africa\": 62844,\n  \"earth-america\": 62845,\n  \"earth-americas\": 62845,\n  \"earth-asia\": 62846,\n  \"earth-europe\": 63394,\n  \"earth-oceania\": 58491,\n  \"earth\": 62845,\n  \"eclipse-alt\": 63306,\n  \"eclipse\": 63305,\n  \"edit\": 61508,\n  \"egg-fried\": 63484,\n  \"egg\": 63483,\n  \"eggplant\": 57708,\n  \"eject\": 61522,\n  \"elephant\": 63194,\n  \"elevator\": 57709,\n  \"ellipsis-h-alt\": 62363,\n  \"ellipsis-h\": 61761,\n  \"ellipsis-stroke-vertical\": 62364,\n  \"ellipsis-stroke\": 62363,\n  \"ellipsis-v-alt\": 62364,\n  \"ellipsis-v\": 61762,\n  \"ellipsis-vertical\": 61762,\n  \"ellipsis\": 61761,\n  \"empty-set\": 63062,\n  \"engine-exclamation\": 62962,\n  \"engine-warning\": 62962,\n  \"engine\": 57710,\n  \"envelope-badge\": 57711,\n  \"envelope-certificate\": 59433,\n  \"envelope-circle-check\": 58600,\n  \"envelope-circle-user\": 59102,\n  \"envelope-circle\": 57612,\n  \"envelope-dot\": 57711,\n  \"envelope-open-dollar\": 63063,\n  \"envelope-open-text\": 63064,\n  \"envelope-open\": 62134,\n  \"envelope-ribbon\": 59433,\n  \"envelope-square\": 61849,\n  \"envelope\": 61664,\n  \"envelopes-bulk\": 63092,\n  \"envelopes\": 57712,\n  \"equals\": 61,\n  \"eraser\": 61741,\n  \"escalator\": 57713,\n  \"ethernet\": 63382,\n  \"eur\": 61779,\n  \"euro-sign\": 61779,\n  \"euro\": 61779,\n  \"eurozone-sign\": 59200,\n  \"excavator\": 58966,\n  \"exchange-alt\": 62306,\n  \"exchange\": 61676,\n  \"exclamation-circle\": 61546,\n  \"exclamation-square\": 62241,\n  \"exclamation-triangle\": 61553,\n  \"exclamation\": 33,\n  \"expand-alt\": 62500,\n  \"expand-arrows-alt\": 62238,\n  \"expand-arrows\": 62237,\n  \"expand-wide\": 62240,\n  \"expand\": 61541,\n  \"exploding-head\": 58110,\n  \"explosion\": 58601,\n  \"external-link-alt\": 62301,\n  \"external-link-square-alt\": 62304,\n  \"external-link-square\": 61772,\n  \"external-link\": 61582,\n  \"eye-closed\": 59451,\n  \"eye-dropper-empty\": 61947,\n  \"eye-dropper-full\": 57714,\n  \"eye-dropper-half\": 57715,\n  \"eye-dropper\": 61947,\n  \"eye-evil\": 63195,\n  \"eye-low-vision\": 62120,\n  \"eye-slash\": 61552,\n  \"eye\": 61550,\n  \"eyedropper\": 61947,\n  \"eyes\": 58215,\n  \"f\": 70,\n  \"face-angry-horns\": 58216,\n  \"face-angry\": 62806,\n  \"face-anguished\": 58217,\n  \"face-anxious-sweat\": 58218,\n  \"face-astonished\": 58219,\n  \"face-awesome\": 58377,\n  \"face-beam-hand-over-mouth\": 58492,\n  \"face-clouds\": 58493,\n  \"face-confounded\": 58220,\n  \"face-confused\": 58221,\n  \"face-cowboy-hat\": 58222,\n  \"face-diagonal-mouth\": 58494,\n  \"face-disappointed\": 58223,\n  \"face-disguise\": 58224,\n  \"face-dizzy\": 62823,\n  \"face-dotted\": 58495,\n  \"face-downcast-sweat\": 58225,\n  \"face-drooling\": 58226,\n  \"face-exhaling\": 58496,\n  \"face-explode\": 58110,\n  \"face-expressionless\": 58227,\n  \"face-eyes-xmarks\": 58228,\n  \"face-fearful\": 58229,\n  \"face-flushed\": 62841,\n  \"face-frown-open\": 62842,\n  \"face-frown-slight\": 58230,\n  \"face-frown\": 61721,\n  \"face-glasses\": 58231,\n  \"face-grimace\": 62847,\n  \"face-grin-beam-sweat\": 62851,\n  \"face-grin-beam\": 62850,\n  \"face-grin-hearts\": 62852,\n  \"face-grin-squint-tears\": 62854,\n  \"face-grin-squint\": 62853,\n  \"face-grin-stars\": 62855,\n  \"face-grin-tears\": 62856,\n  \"face-grin-tongue-squint\": 62858,\n  \"face-grin-tongue-wink\": 62859,\n  \"face-grin-tongue\": 62857,\n  \"face-grin-wide\": 62849,\n  \"face-grin-wink\": 62860,\n  \"face-grin\": 62848,\n  \"face-hand-over-mouth\": 58232,\n  \"face-hand-peeking\": 58497,\n  \"face-hand-yawn\": 58233,\n  \"face-head-bandage\": 58234,\n  \"face-holding-back-tears\": 58498,\n  \"face-hushed\": 58235,\n  \"face-icicles\": 58236,\n  \"face-kiss-beam\": 62871,\n  \"face-kiss-closed-eyes\": 58237,\n  \"face-kiss-wink-heart\": 62872,\n  \"face-kiss\": 62870,\n  \"face-laugh-beam\": 62874,\n  \"face-laugh-squint\": 62875,\n  \"face-laugh-wink\": 62876,\n  \"face-laugh\": 62873,\n  \"face-lying\": 58238,\n  \"face-mask\": 58239,\n  \"face-meh-blank\": 62884,\n  \"face-meh\": 61722,\n  \"face-melting\": 58499,\n  \"face-monocle\": 58240,\n  \"face-nauseated\": 58241,\n  \"face-nose-steam\": 58242,\n  \"face-party\": 58243,\n  \"face-pensive\": 58244,\n  \"face-persevering\": 58245,\n  \"face-pleading\": 58246,\n  \"face-pouting\": 58247,\n  \"face-raised-eyebrow\": 58248,\n  \"face-relieved\": 58249,\n  \"face-rolling-eyes\": 62885,\n  \"face-sad-cry\": 62899,\n  \"face-sad-sweat\": 58250,\n  \"face-sad-tear\": 62900,\n  \"face-saluting\": 58500,\n  \"face-scream\": 58251,\n  \"face-shaking-horizontal\": 59293,\n  \"face-shaking-vertical\": 59294,\n  \"face-shaking\": 59292,\n  \"face-shush\": 58252,\n  \"face-sleeping\": 58253,\n  \"face-sleepy\": 58254,\n  \"face-smile-beam\": 62904,\n  \"face-smile-halo\": 58255,\n  \"face-smile-hearts\": 58256,\n  \"face-smile-horns\": 58257,\n  \"face-smile-plus\": 62905,\n  \"face-smile-relaxed\": 58258,\n  \"face-smile-tear\": 58259,\n  \"face-smile-tongue\": 58260,\n  \"face-smile-upside-down\": 58261,\n  \"face-smile-wink\": 62682,\n  \"face-smile\": 61720,\n  \"face-smiling-hands\": 58262,\n  \"face-smirking\": 58263,\n  \"face-spiral-eyes\": 58501,\n  \"face-sunglasses\": 58264,\n  \"face-surprise\": 62914,\n  \"face-swear\": 58265,\n  \"face-thermometer\": 58266,\n  \"face-thinking\": 58267,\n  \"face-tired\": 62920,\n  \"face-tissue\": 58268,\n  \"face-tongue-money\": 58269,\n  \"face-tongue-sweat\": 58270,\n  \"face-unamused\": 58271,\n  \"face-viewfinder\": 58111,\n  \"face-vomit\": 58272,\n  \"face-weary\": 58273,\n  \"face-woozy\": 58274,\n  \"face-worried\": 58275,\n  \"face-zany\": 58276,\n  \"face-zipper\": 58277,\n  \"falafel\": 58378,\n  \"family-dress\": 58113,\n  \"family-pants\": 58114,\n  \"family\": 58112,\n  \"fan-table\": 57348,\n  \"fan\": 63587,\n  \"farm\": 63588,\n  \"fast-backward\": 61513,\n  \"fast-forward\": 61520,\n  \"faucet-drip\": 57350,\n  \"faucet\": 57349,\n  \"fax\": 61868,\n  \"feather-alt\": 62827,\n  \"feather-pointed\": 62827,\n  \"feather\": 62765,\n  \"feed\": 61598,\n  \"female\": 61826,\n  \"fence\": 58115,\n  \"ferris-wheel\": 57716,\n  \"ferry\": 58602,\n  \"field-hockey-stick-ball\": 62540,\n  \"field-hockey\": 62540,\n  \"fighter-jet\": 61691,\n  \"file-aiff\": 59387,\n  \"file-alt\": 61788,\n  \"file-archive\": 61894,\n  \"file-arrow-down\": 62829,\n  \"file-arrow-up\": 62836,\n  \"file-audio\": 61895,\n  \"file-award\": 62963,\n  \"file-ban\": 59224,\n  \"file-binary\": 57717,\n  \"file-brackets-curly\": 59396,\n  \"file-cad\": 58994,\n  \"file-caret-down\": 58409,\n  \"file-caret-up\": 58410,\n  \"file-certificate\": 62963,\n  \"file-chart-column\": 63065,\n  \"file-chart-line\": 63065,\n  \"file-chart-pie\": 63066,\n  \"file-check\": 62230,\n  \"file-circle-check\": 58784,\n  \"file-circle-exclamation\": 58603,\n  \"file-circle-info\": 58515,\n  \"file-circle-minus\": 58605,\n  \"file-circle-plus\": 58516,\n  \"file-circle-question\": 58607,\n  \"file-circle-xmark\": 58785,\n  \"file-clipboard\": 61674,\n  \"file-code\": 61897,\n  \"file-contract\": 62828,\n  \"file-css\": 59452,\n  \"file-csv\": 63197,\n  \"file-dashed-line\": 63607,\n  \"file-doc\": 58861,\n  \"file-download\": 62829,\n  \"file-edit\": 62236,\n  \"file-eps\": 58948,\n  \"file-excel\": 61891,\n  \"file-exclamation\": 62234,\n  \"file-export\": 62830,\n  \"file-fragment\": 59031,\n  \"file-gif\": 58949,\n  \"file-half-dashed\": 59032,\n  \"file-heart\": 57718,\n  \"file-html\": 59453,\n  \"file-icns\": 59457,\n  \"file-image\": 61893,\n  \"file-import\": 62831,\n  \"file-invoice-dollar\": 62833,\n  \"file-invoice\": 62832,\n  \"file-jpg\": 58950,\n  \"file-js\": 59454,\n  \"file-lines\": 61788,\n  \"file-lock\": 58278,\n  \"file-magnifying-glass\": 63589,\n  \"file-medical-alt\": 62584,\n  \"file-medical\": 62583,\n  \"file-midi\": 59397,\n  \"file-minus\": 62232,\n  \"file-mov\": 58951,\n  \"file-mp3\": 58952,\n  \"file-mp4\": 58953,\n  \"file-music\": 63670,\n  \"file-odf\": 59388,\n  \"file-pdf\": 61889,\n  \"file-pen\": 62236,\n  \"file-plus-minus\": 57719,\n  \"file-plus\": 62233,\n  \"file-png\": 58982,\n  \"file-powerpoint\": 61892,\n  \"file-ppt\": 58954,\n  \"file-prescription\": 62834,\n  \"file-search\": 63589,\n  \"file-shield\": 58608,\n  \"file-signature\": 62835,\n  \"file-slash\": 58279,\n  \"file-spreadsheet\": 63067,\n  \"file-svg\": 58955,\n  \"file-tex\": 59389,\n  \"file-text\": 61788,\n  \"file-times\": 62231,\n  \"file-upload\": 62836,\n  \"file-user\": 63068,\n  \"file-vector\": 58956,\n  \"file-video\": 61896,\n  \"file-wav\": 59390,\n  \"file-waveform\": 62584,\n  \"file-word\": 61890,\n  \"file-xls\": 58957,\n  \"file-xmark\": 62231,\n  \"file-xml\": 58964,\n  \"file-zip\": 58862,\n  \"file-zipper\": 61894,\n  \"file\": 61787,\n  \"files-medical\": 63485,\n  \"files\": 57720,\n  \"fill-drip\": 62838,\n  \"fill\": 62837,\n  \"film-alt\": 61448,\n  \"film-canister\": 63671,\n  \"film-cannister\": 63671,\n  \"film-music\": 59241,\n  \"film-simple\": 61448,\n  \"film-slash\": 57721,\n  \"film-stack\": 59243,\n  \"film\": 61448,\n  \"films\": 57722,\n  \"filter-circle-dollar\": 63074,\n  \"filter-circle-xmark\": 57723,\n  \"filter-list\": 57724,\n  \"filter-slash\": 57725,\n  \"filter\": 61616,\n  \"filters\": 57726,\n  \"fingerprint\": 62839,\n  \"fire-alt\": 63460,\n  \"fire-burner\": 58609,\n  \"fire-extinguisher\": 61748,\n  \"fire-flame-curved\": 63460,\n  \"fire-flame-simple\": 62570,\n  \"fire-flame\": 63199,\n  \"fire-hydrant\": 57727,\n  \"fire-smoke\": 63307,\n  \"fire\": 61549,\n  \"fireplace\": 63386,\n  \"firewall\": 58332,\n  \"first-aid\": 62585,\n  \"fish-bones\": 58116,\n  \"fish-cooked\": 63486,\n  \"fish-fins\": 58610,\n  \"fish\": 62840,\n  \"fishing-rod\": 58280,\n  \"fist-raised\": 63198,\n  \"flag-alt\": 63308,\n  \"flag-checkered\": 61726,\n  \"flag-pennant\": 62550,\n  \"flag-swallowtail\": 63308,\n  \"flag-usa\": 63309,\n  \"flag\": 61476,\n  \"flame\": 63199,\n  \"flashlight\": 63672,\n  \"flask-gear\": 58865,\n  \"flask-poison\": 63200,\n  \"flask-potion\": 63201,\n  \"flask-round-poison\": 63200,\n  \"flask-round-potion\": 63201,\n  \"flask-vial\": 58611,\n  \"flask\": 61635,\n  \"flatbread-stuffed\": 58380,\n  \"flatbread\": 58379,\n  \"floppy-disk-circle-arrow-right\": 57728,\n  \"floppy-disk-circle-xmark\": 57729,\n  \"floppy-disk-pen\": 57730,\n  \"floppy-disk-times\": 57729,\n  \"floppy-disk\": 61639,\n  \"floppy-disks\": 57731,\n  \"florin-sign\": 57732,\n  \"flower-daffodil\": 63488,\n  \"flower-tulip\": 63489,\n  \"flower\": 63487,\n  \"flushed\": 62841,\n  \"flute\": 63673,\n  \"flux-capacitor\": 63674,\n  \"flying-disc\": 58281,\n  \"fog\": 63310,\n  \"folder-arrow-down\": 57427,\n  \"folder-arrow-left\": 59346,\n  \"folder-arrow-right\": 59347,\n  \"folder-arrow-up\": 57428,\n  \"folder-blank\": 61563,\n  \"folder-bookmark\": 57734,\n  \"folder-check\": 58958,\n  \"folder-closed\": 57733,\n  \"folder-cog\": 57735,\n  \"folder-download\": 57427,\n  \"folder-gear\": 57735,\n  \"folder-grid\": 57736,\n  \"folder-heart\": 57737,\n  \"folder-image\": 57738,\n  \"folder-magnifying-glass\": 57739,\n  \"folder-medical\": 57740,\n  \"folder-minus\": 63069,\n  \"folder-music\": 57741,\n  \"folder-open\": 61564,\n  \"folder-plus\": 63070,\n  \"folder-search\": 57739,\n  \"folder-times\": 63071,\n  \"folder-tree\": 63490,\n  \"folder-upload\": 57428,\n  \"folder-user\": 57742,\n  \"folder-xmark\": 63071,\n  \"folder\": 61563,\n  \"folders\": 63072,\n  \"fondue-pot\": 58381,\n  \"font-awesome-flag\": 62132,\n  \"font-awesome-logo-full\": 62132,\n  \"font-awesome\": 62132,\n  \"font-case\": 63590,\n  \"font\": 61489,\n  \"foot-wing\": 59444,\n  \"football-ball\": 62542,\n  \"football-helmet\": 62543,\n  \"football\": 62542,\n  \"fork-knife\": 62182,\n  \"fork\": 62179,\n  \"forklift\": 62586,\n  \"fort\": 58502,\n  \"forward-fast\": 61520,\n  \"forward-step\": 61521,\n  \"forward\": 61518,\n  \"fragile\": 62651,\n  \"frame\": 58517,\n  \"franc-sign\": 57743,\n  \"french-fries\": 63491,\n  \"frog\": 62766,\n  \"frosty-head\": 63387,\n  \"frown-open\": 62842,\n  \"frown\": 61721,\n  \"function\": 63073,\n  \"funnel-dollar\": 63074,\n  \"futbol-ball\": 61923,\n  \"futbol\": 61923,\n  \"g\": 71,\n  \"galaxy\": 57352,\n  \"gallery-thumbnails\": 58282,\n  \"game-board-alt\": 63592,\n  \"game-board-simple\": 63592,\n  \"game-board\": 63591,\n  \"game-console-handheld-crank\": 58809,\n  \"game-console-handheld\": 63675,\n  \"gamepad-alt\": 58786,\n  \"gamepad-modern\": 58786,\n  \"gamepad\": 61723,\n  \"garage-car\": 57354,\n  \"garage-empty\": 59081,\n  \"garage-open\": 57355,\n  \"garage\": 57353,\n  \"garlic\": 58382,\n  \"gas-pump-left\": 59256,\n  \"gas-pump-right\": 59257,\n  \"gas-pump-slash\": 62964,\n  \"gas-pump\": 62767,\n  \"gauge-circle-bolt\": 58518,\n  \"gauge-circle-minus\": 58519,\n  \"gauge-circle-plus\": 58520,\n  \"gauge-high\": 63013,\n  \"gauge-low\": 63015,\n  \"gauge-max\": 63014,\n  \"gauge-med\": 63012,\n  \"gauge-min\": 63016,\n  \"gauge-simple-high\": 63018,\n  \"gauge-simple-low\": 63020,\n  \"gauge-simple-max\": 63019,\n  \"gauge-simple-med\": 63017,\n  \"gauge-simple-min\": 63021,\n  \"gauge-simple\": 63017,\n  \"gauge\": 63012,\n  \"gave-dandy\": 58377,\n  \"gavel\": 61667,\n  \"gbp\": 61780,\n  \"gear-api\": 59556,\n  \"gear-code\": 58856,\n  \"gear-complex-api\": 59557,\n  \"gear-complex-code\": 58859,\n  \"gear-complex\": 58857,\n  \"gear\": 61459,\n  \"gears\": 61573,\n  \"gem\": 62373,\n  \"gemini\": 59465,\n  \"genderless\": 61997,\n  \"ghost\": 63202,\n  \"gif\": 57744,\n  \"gift-card\": 63075,\n  \"gift\": 61547,\n  \"gifts\": 63388,\n  \"gingerbread-man\": 63389,\n  \"glass-champagne\": 63390,\n  \"glass-cheers\": 63391,\n  \"glass-citrus\": 63593,\n  \"glass-empty\": 57745,\n  \"glass-half-empty\": 57746,\n  \"glass-half-full\": 57746,\n  \"glass-half\": 57746,\n  \"glass-martini-alt\": 62843,\n  \"glass-martini\": 61440,\n  \"glass-water-droplet\": 58613,\n  \"glass-water\": 58612,\n  \"glass-whiskey-rocks\": 63393,\n  \"glass-whiskey\": 63392,\n  \"glass\": 63492,\n  \"glasses-alt\": 62965,\n  \"glasses-round\": 62965,\n  \"glasses\": 62768,\n  \"globe-africa\": 62844,\n  \"globe-americas\": 62845,\n  \"globe-asia\": 62846,\n  \"globe-europe\": 63394,\n  \"globe-oceania\": 58491,\n  \"globe-pointer\": 58894,\n  \"globe-snow\": 63395,\n  \"globe-stand\": 62966,\n  \"globe-wifi\": 59013,\n  \"globe-www\": 59558,\n  \"globe\": 61612,\n  \"glove-boxing\": 62520,\n  \"goal-net\": 58283,\n  \"golf-ball-tee\": 62544,\n  \"golf-ball\": 62544,\n  \"golf-club\": 62545,\n  \"golf-flag-hole\": 58284,\n  \"gopuram\": 63076,\n  \"gpu\": 59459,\n  \"graduation-cap\": 61853,\n  \"gramophone\": 63677,\n  \"grapes\": 58118,\n  \"grate-droplet\": 57748,\n  \"grate\": 57747,\n  \"greater-than-equal\": 62770,\n  \"greater-than\": 62,\n  \"grid-2-minus\": 59050,\n  \"grid-2-plus\": 57751,\n  \"grid-2\": 57750,\n  \"grid-3\": 57749,\n  \"grid-4\": 57752,\n  \"grid-5\": 57753,\n  \"grid-dividers\": 58285,\n  \"grid-horizontal\": 62861,\n  \"grid-round-2-minus\": 59051,\n  \"grid-round-2-plus\": 58844,\n  \"grid-round-2\": 58843,\n  \"grid-round-4\": 58845,\n  \"grid-round-5\": 58846,\n  \"grid-round\": 58842,\n  \"grid-vertical\": 62862,\n  \"grid\": 57749,\n  \"grill-fire\": 58788,\n  \"grill-hot\": 58789,\n  \"grill\": 58787,\n  \"grimace\": 62847,\n  \"grin-alt\": 62849,\n  \"grin-beam-sweat\": 62851,\n  \"grin-beam\": 62850,\n  \"grin-hearts\": 62852,\n  \"grin-squint-tears\": 62854,\n  \"grin-squint\": 62853,\n  \"grin-stars\": 62855,\n  \"grin-tears\": 62856,\n  \"grin-tongue-squint\": 62858,\n  \"grin-tongue-wink\": 62859,\n  \"grin-tongue\": 62857,\n  \"grin-wink\": 62860,\n  \"grin\": 62848,\n  \"grip-dots-vertical\": 58385,\n  \"grip-dots\": 58384,\n  \"grip-horizontal\": 62861,\n  \"grip-lines-vertical\": 63397,\n  \"grip-lines\": 63396,\n  \"grip-vertical\": 62862,\n  \"grip\": 62861,\n  \"group-arrows-rotate\": 58614,\n  \"guarani-sign\": 57754,\n  \"guitar-electric\": 63678,\n  \"guitar\": 63398,\n  \"guitars\": 63679,\n  \"gun-slash\": 57756,\n  \"gun-squirt\": 57757,\n  \"gun\": 57755,\n  \"h-square\": 61693,\n  \"h\": 72,\n  \"h1\": 62227,\n  \"h2\": 62228,\n  \"h3\": 62229,\n  \"h4\": 63594,\n  \"h5\": 58386,\n  \"h6\": 58387,\n  \"hamburger\": 63493,\n  \"hammer-brush\": 58912,\n  \"hammer-crash\": 58388,\n  \"hammer-war\": 63204,\n  \"hammer\": 63203,\n  \"hamsa\": 63077,\n  \"hand-back-fist\": 62037,\n  \"hand-back-point-down\": 57758,\n  \"hand-back-point-left\": 57759,\n  \"hand-back-point-ribbon\": 57760,\n  \"hand-back-point-right\": 57761,\n  \"hand-back-point-up\": 57762,\n  \"hand-dots\": 62561,\n  \"hand-fingers-crossed\": 57763,\n  \"hand-fist\": 63198,\n  \"hand-heart\": 62652,\n  \"hand-holding-box\": 62587,\n  \"hand-holding-circle-dollar\": 58913,\n  \"hand-holding-dollar\": 62656,\n  \"hand-holding-droplet\": 62657,\n  \"hand-holding-hand\": 58615,\n  \"hand-holding-heart\": 62654,\n  \"hand-holding-magic\": 63205,\n  \"hand-holding-medical\": 57436,\n  \"hand-holding-seedling\": 62655,\n  \"hand-holding-skull\": 57764,\n  \"hand-holding-star\": 59393,\n  \"hand-holding-usd\": 62656,\n  \"hand-holding-water\": 62657,\n  \"hand-holding\": 62653,\n  \"hand-horns\": 57769,\n  \"hand-lizard\": 62040,\n  \"hand-love\": 57765,\n  \"hand-middle-finger\": 63494,\n  \"hand-paper\": 62038,\n  \"hand-peace\": 62043,\n  \"hand-point-down\": 61607,\n  \"hand-point-left\": 61605,\n  \"hand-point-ribbon\": 57766,\n  \"hand-point-right\": 61604,\n  \"hand-point-up\": 61606,\n  \"hand-pointer\": 62042,\n  \"hand-receiving\": 62588,\n  \"hand-rock\": 62037,\n  \"hand-scissors\": 62039,\n  \"hand-shaka\": 59441,\n  \"hand-sparkles\": 57437,\n  \"hand-spock\": 62041,\n  \"hand-wave\": 57767,\n  \"hand\": 62038,\n  \"handcuffs\": 58616,\n  \"hands-american-sign-language-interpreting\": 62115,\n  \"hands-asl-interpreting\": 62115,\n  \"hands-bound\": 58617,\n  \"hands-bubbles\": 57438,\n  \"hands-clapping\": 57768,\n  \"hands-heart\": 62659,\n  \"hands-helping\": 62660,\n  \"hands-holding-child\": 58618,\n  \"hands-holding-circle\": 58619,\n  \"hands-holding-diamond\": 62588,\n  \"hands-holding-dollar\": 62661,\n  \"hands-holding-heart\": 62659,\n  \"hands-holding\": 62658,\n  \"hands-praying\": 63108,\n  \"hands-usd\": 62661,\n  \"hands-wash\": 57438,\n  \"hands\": 62119,\n  \"handshake-alt-slash\": 57440,\n  \"handshake-alt\": 62133,\n  \"handshake-angle\": 62660,\n  \"handshake-simple-slash\": 57440,\n  \"handshake-simple\": 62133,\n  \"handshake-slash\": 57440,\n  \"handshake\": 62133,\n  \"hanukiah\": 63206,\n  \"hard-drive\": 61600,\n  \"hard-hat\": 63495,\n  \"hard-of-hearing\": 62116,\n  \"hashtag-lock\": 58389,\n  \"hashtag\": 35,\n  \"hat-beach\": 58886,\n  \"hat-chef\": 63595,\n  \"hat-cowboy-side\": 63681,\n  \"hat-cowboy\": 63680,\n  \"hat-hard\": 63495,\n  \"hat-santa\": 63399,\n  \"hat-winter\": 63400,\n  \"hat-witch\": 63207,\n  \"hat-wizard\": 63208,\n  \"haykal\": 63078,\n  \"hdd\": 61600,\n  \"head-side-brain\": 63496,\n  \"head-side-circuit\": 59230,\n  \"head-side-cough-slash\": 57442,\n  \"head-side-cough\": 57441,\n  \"head-side-gear\": 58897,\n  \"head-side-goggles\": 63210,\n  \"head-side-headphones\": 63682,\n  \"head-side-heart\": 57770,\n  \"head-side-mask\": 57443,\n  \"head-side-medical\": 63497,\n  \"head-side-speak\": 59231,\n  \"head-side-virus\": 57444,\n  \"head-side\": 63209,\n  \"head-vr\": 63210,\n  \"header\": 61916,\n  \"heading\": 61916,\n  \"headphones-alt\": 61477,\n  \"headphones-simple\": 61477,\n  \"headphones-slash\": 59260,\n  \"headphones\": 61477,\n  \"headset\": 62864,\n  \"heart-broken\": 63401,\n  \"heart-circle-bolt\": 58620,\n  \"heart-circle-check\": 58621,\n  \"heart-circle-exclamation\": 58622,\n  \"heart-circle-minus\": 58623,\n  \"heart-circle-plus\": 58624,\n  \"heart-circle-xmark\": 58625,\n  \"heart-circle\": 62663,\n  \"heart-crack\": 63401,\n  \"heart-half-alt\": 57772,\n  \"heart-half-stroke\": 57772,\n  \"heart-half\": 57771,\n  \"heart-music-camera-bolt\": 63597,\n  \"heart-pulse\": 61982,\n  \"heart-rate\": 62968,\n  \"heart-slash\": 59278,\n  \"heart-square\": 62664,\n  \"heart\": 61444,\n  \"heartbeat\": 61982,\n  \"hearts\": 59279,\n  \"heat\": 57356,\n  \"helicopter-symbol\": 58626,\n  \"helicopter\": 62771,\n  \"helmet-battle\": 63211,\n  \"helmet-safety\": 63495,\n  \"helmet-un\": 58627,\n  \"heptagon\": 59424,\n  \"hexagon-check\": 58390,\n  \"hexagon-divide\": 57773,\n  \"hexagon-equals\": 59058,\n  \"hexagon-exclamation\": 58391,\n  \"hexagon-image\": 58628,\n  \"hexagon-minus\": 62215,\n  \"hexagon-nodes-bolt\": 59034,\n  \"hexagon-nodes\": 59033,\n  \"hexagon-plus\": 62208,\n  \"hexagon-vertical-nft-slanted\": 58629,\n  \"hexagon-vertical-nft\": 58629,\n  \"hexagon-xmark\": 62190,\n  \"hexagon\": 62226,\n  \"high-definition\": 57774,\n  \"highlighter-line\": 57775,\n  \"highlighter\": 62865,\n  \"hiking\": 63212,\n  \"hill-avalanche\": 58631,\n  \"hill-rockslide\": 58632,\n  \"hippo\": 63213,\n  \"history\": 61914,\n  \"hockey-mask\": 63214,\n  \"hockey-puck\": 62547,\n  \"hockey-stick-puck\": 58286,\n  \"hockey-stick\": 59366,\n  \"hockey-sticks\": 62548,\n  \"holly-berry\": 63402,\n  \"home-alt\": 61461,\n  \"home-blank\": 58503,\n  \"home-heart\": 62665,\n  \"home-lg-alt\": 61461,\n  \"home-lg\": 58287,\n  \"home-user\": 57776,\n  \"home\": 61461,\n  \"honey-pot\": 58392,\n  \"hood-cloak\": 63215,\n  \"horizontal-rule\": 63596,\n  \"horse-head\": 63403,\n  \"horse-saddle\": 63683,\n  \"horse\": 63216,\n  \"horseshoe\": 59418,\n  \"hose-reel\": 58394,\n  \"hose\": 58393,\n  \"hospital-alt\": 61688,\n  \"hospital-symbol\": 62590,\n  \"hospital-user\": 63501,\n  \"hospital-wide\": 61688,\n  \"hospital\": 61688,\n  \"hospitals\": 63502,\n  \"hot-tub-person\": 62867,\n  \"hot-tub\": 62867,\n  \"hotdog\": 63503,\n  \"hotel\": 62868,\n  \"hourglass-1\": 62033,\n  \"hourglass-2\": 62034,\n  \"hourglass-3\": 62035,\n  \"hourglass-clock\": 58395,\n  \"hourglass-empty\": 62036,\n  \"hourglass-end\": 62035,\n  \"hourglass-half\": 62034,\n  \"hourglass-start\": 62033,\n  \"hourglass\": 62036,\n  \"house-blank\": 58503,\n  \"house-building\": 57777,\n  \"house-chimney-blank\": 58288,\n  \"house-chimney-crack\": 63217,\n  \"house-chimney-heart\": 57778,\n  \"house-chimney-medical\": 63474,\n  \"house-chimney-user\": 57445,\n  \"house-chimney-window\": 57357,\n  \"house-chimney\": 58287,\n  \"house-circle-check\": 58633,\n  \"house-circle-exclamation\": 58634,\n  \"house-circle-xmark\": 58635,\n  \"house-crack\": 58289,\n  \"house-damage\": 63217,\n  \"house-day\": 57358,\n  \"house-fire\": 58636,\n  \"house-flag\": 58637,\n  \"house-flood-water-circle-arrow-right\": 58639,\n  \"house-flood-water\": 58638,\n  \"house-flood\": 63311,\n  \"house-heart\": 62665,\n  \"house-laptop\": 57446,\n  \"house-leave\": 57359,\n  \"house-lock\": 58640,\n  \"house-medical-circle-check\": 58641,\n  \"house-medical-circle-exclamation\": 58642,\n  \"house-medical-circle-xmark\": 58643,\n  \"house-medical-flag\": 58644,\n  \"house-medical\": 58290,\n  \"house-night\": 57360,\n  \"house-person-arrive\": 57361,\n  \"house-person-depart\": 57359,\n  \"house-person-leave\": 57359,\n  \"house-person-return\": 57361,\n  \"house-return\": 57361,\n  \"house-signal\": 57362,\n  \"house-tree\": 57779,\n  \"house-tsunami\": 58645,\n  \"house-turret\": 57780,\n  \"house-unlock\": 59082,\n  \"house-user\": 57776,\n  \"house-water\": 63311,\n  \"house-window\": 58291,\n  \"house\": 61461,\n  \"hryvnia-sign\": 63218,\n  \"hryvnia\": 63218,\n  \"humidity\": 63312,\n  \"hundred-points\": 58396,\n  \"hurricane\": 63313,\n  \"hydra\": 59014,\n  \"hyphen\": 45,\n  \"i-cursor\": 62022,\n  \"i\": 73,\n  \"ice-cream\": 63504,\n  \"ice-skate\": 63404,\n  \"icicles\": 63405,\n  \"icons-alt\": 63598,\n  \"icons\": 63597,\n  \"id-badge\": 62145,\n  \"id-card-alt\": 62591,\n  \"id-card-clip\": 62591,\n  \"id-card\": 62146,\n  \"igloo\": 63406,\n  \"ils\": 61963,\n  \"image-broken\": 59562,\n  \"image-circle-arrow-down\": 59244,\n  \"image-circle-check\": 59245,\n  \"image-circle-plus\": 59246,\n  \"image-circle-xmark\": 59247,\n  \"image-landscape\": 57781,\n  \"image-music\": 59248,\n  \"image-polaroid-user\": 57782,\n  \"image-polaroid\": 63684,\n  \"image-portrait\": 62432,\n  \"image-slash\": 57783,\n  \"image-stack\": 59249,\n  \"image-user\": 57784,\n  \"image\": 61502,\n  \"images-user\": 57785,\n  \"images\": 62210,\n  \"inbox-arrow-down\": 62224,\n  \"inbox-arrow-up\": 62225,\n  \"inbox-full\": 57786,\n  \"inbox-in\": 62224,\n  \"inbox-out\": 62225,\n  \"inbox\": 61468,\n  \"inboxes\": 57787,\n  \"indent\": 61500,\n  \"indian-rupee-sign\": 57788,\n  \"indian-rupee\": 57788,\n  \"industry-alt\": 62387,\n  \"industry-windows\": 62387,\n  \"industry\": 62069,\n  \"infinity\": 62772,\n  \"info-circle\": 61530,\n  \"info-square\": 62223,\n  \"info\": 61737,\n  \"inhaler\": 62969,\n  \"input-numeric\": 57789,\n  \"input-password\": 59517,\n  \"input-pipe\": 57790,\n  \"input-text\": 57791,\n  \"inr\": 57788,\n  \"institution\": 61852,\n  \"integral\": 63079,\n  \"interrobang\": 58810,\n  \"intersection\": 63080,\n  \"inventory\": 62592,\n  \"island-tree-palm\": 63505,\n  \"island-tropical\": 63505,\n  \"italic\": 61491,\n  \"j\": 74,\n  \"jack-o-lantern\": 62222,\n  \"jar-wheat\": 58647,\n  \"jar\": 58646,\n  \"jeans-straight\": 59091,\n  \"jeans\": 59090,\n  \"jedi\": 63081,\n  \"jet-fighter-up\": 58648,\n  \"jet-fighter\": 61691,\n  \"joint\": 62869,\n  \"journal-whills\": 63082,\n  \"joystick\": 63685,\n  \"jpy\": 61783,\n  \"jug-bottle\": 58875,\n  \"jug-detergent\": 58649,\n  \"jug\": 63686,\n  \"k\": 75,\n  \"kaaba\": 63083,\n  \"kayak\": 59547,\n  \"kazoo\": 63687,\n  \"kerning\": 63599,\n  \"kettlebell\": 59442,\n  \"key-skeleton-left-right\": 58292,\n  \"key-skeleton\": 63219,\n  \"key\": 61572,\n  \"keyboard-brightness-low\": 57793,\n  \"keyboard-brightness\": 57792,\n  \"keyboard-down\": 57794,\n  \"keyboard-left\": 57795,\n  \"keyboard\": 61724,\n  \"keynote\": 63084,\n  \"khanda\": 63085,\n  \"kidneys\": 62971,\n  \"kip-sign\": 57796,\n  \"kiss-beam\": 62871,\n  \"kiss-wink-heart\": 62872,\n  \"kiss\": 62870,\n  \"kit-medical\": 62585,\n  \"kitchen-set\": 58650,\n  \"kite\": 63220,\n  \"kiwi-bird\": 62773,\n  \"kiwi-fruit\": 58124,\n  \"knife-kitchen\": 63221,\n  \"knife\": 62180,\n  \"krw\": 61785,\n  \"l\": 76,\n  \"label\": 59559,\n  \"lacrosse-stick-ball\": 58294,\n  \"lacrosse-stick\": 58293,\n  \"ladder-water\": 62917,\n  \"lambda\": 63086,\n  \"lamp-desk\": 57364,\n  \"lamp-floor\": 57365,\n  \"lamp-street\": 57797,\n  \"lamp\": 62666,\n  \"land-mine-on\": 58651,\n  \"landmark-alt\": 63314,\n  \"landmark-dome\": 63314,\n  \"landmark-flag\": 58652,\n  \"landmark-magnifying-glass\": 58914,\n  \"landmark\": 63087,\n  \"landscape\": 57781,\n  \"language\": 61867,\n  \"laptop-arrow-down\": 57798,\n  \"laptop-binary\": 58855,\n  \"laptop-code\": 62972,\n  \"laptop-file\": 58653,\n  \"laptop-house\": 57446,\n  \"laptop-medical\": 63506,\n  \"laptop-mobile\": 63610,\n  \"laptop-slash\": 57799,\n  \"laptop\": 61705,\n  \"lari-sign\": 57800,\n  \"lasso-sparkles\": 57801,\n  \"lasso\": 63688,\n  \"laugh-beam\": 62874,\n  \"laugh-squint\": 62875,\n  \"laugh-wink\": 62876,\n  \"laugh\": 62873,\n  \"layer-group-minus\": 62974,\n  \"layer-group-plus\": 62975,\n  \"layer-group\": 62973,\n  \"layer-minus\": 62974,\n  \"layer-plus\": 62975,\n  \"layer\": 59455,\n  \"leaf-heart\": 62667,\n  \"leaf-maple\": 63222,\n  \"leaf-oak\": 63223,\n  \"leaf\": 61548,\n  \"leafy-green\": 58397,\n  \"left-from-bracket\": 58988,\n  \"left-from-dotted-line\": 59074,\n  \"left-from-line\": 62280,\n  \"left-long-to-line\": 58398,\n  \"left-long\": 62218,\n  \"left-right\": 62263,\n  \"left-to-bracket\": 58989,\n  \"left-to-dotted-line\": 59075,\n  \"left-to-line\": 62283,\n  \"left\": 62293,\n  \"legal\": 61667,\n  \"lemon\": 61588,\n  \"leo\": 59466,\n  \"less-than-equal\": 62775,\n  \"less-than\": 60,\n  \"level-down-alt\": 62398,\n  \"level-down\": 61769,\n  \"level-up-alt\": 62399,\n  \"level-up\": 61768,\n  \"libra\": 59467,\n  \"life-ring\": 61901,\n  \"light-ceiling\": 57366,\n  \"light-emergency-on\": 58400,\n  \"light-emergency\": 58399,\n  \"light-switch-off\": 57368,\n  \"light-switch-on\": 57369,\n  \"light-switch\": 57367,\n  \"lightbulb-cfl-on\": 58791,\n  \"lightbulb-cfl\": 58790,\n  \"lightbulb-dollar\": 63088,\n  \"lightbulb-exclamation-on\": 57802,\n  \"lightbulb-exclamation\": 63089,\n  \"lightbulb-gear\": 58877,\n  \"lightbulb-message\": 59015,\n  \"lightbulb-on\": 63090,\n  \"lightbulb-slash\": 63091,\n  \"lightbulb\": 61675,\n  \"lighthouse\": 58898,\n  \"lights-holiday\": 63410,\n  \"line-chart\": 61953,\n  \"line-columns\": 63600,\n  \"line-height\": 63601,\n  \"lines-leaning\": 58654,\n  \"link-broken\": 59458,\n  \"link-horizontal-slash\": 57804,\n  \"link-horizontal\": 57803,\n  \"link-simple-slash\": 57806,\n  \"link-simple\": 57805,\n  \"link-slash\": 61735,\n  \"link\": 61633,\n  \"lips\": 62976,\n  \"lira-sign\": 61845,\n  \"list-1-2\": 61643,\n  \"list-alt\": 61474,\n  \"list-check\": 61614,\n  \"list-dots\": 61642,\n  \"list-dropdown\": 57807,\n  \"list-music\": 63689,\n  \"list-numeric\": 61643,\n  \"list-ol\": 61643,\n  \"list-radio\": 57808,\n  \"list-squares\": 61498,\n  \"list-timeline\": 57809,\n  \"list-tree\": 57810,\n  \"list-ul\": 61642,\n  \"list\": 61498,\n  \"litecoin-sign\": 57811,\n  \"loader\": 57812,\n  \"lobster\": 58401,\n  \"location-arrow-slash\": 59258,\n  \"location-arrow-up\": 58938,\n  \"location-arrow\": 61732,\n  \"location-check\": 62982,\n  \"location-circle\": 62978,\n  \"location-crosshairs-slash\": 62979,\n  \"location-crosshairs\": 62977,\n  \"location-dot-slash\": 62981,\n  \"location-dot\": 62405,\n  \"location-exclamation\": 62984,\n  \"location-minus\": 62985,\n  \"location-pen\": 62983,\n  \"location-pin-lock\": 58655,\n  \"location-pin-slash\": 62988,\n  \"location-pin\": 61505,\n  \"location-plus\": 62986,\n  \"location-question\": 62987,\n  \"location-slash\": 62979,\n  \"location-smile\": 62989,\n  \"location-xmark\": 62990,\n  \"location\": 62977,\n  \"lock-a\": 58402,\n  \"lock-alt\": 62221,\n  \"lock-hashtag\": 58403,\n  \"lock-keyhole-open\": 62402,\n  \"lock-keyhole\": 62221,\n  \"lock-open-alt\": 62402,\n  \"lock-open\": 62401,\n  \"lock\": 61475,\n  \"locust\": 58656,\n  \"lollipop\": 58404,\n  \"lollypop\": 58404,\n  \"long-arrow-alt-down\": 62217,\n  \"long-arrow-alt-left\": 62218,\n  \"long-arrow-alt-right\": 62219,\n  \"long-arrow-alt-up\": 62220,\n  \"long-arrow-down\": 61813,\n  \"long-arrow-left\": 61815,\n  \"long-arrow-right\": 61816,\n  \"long-arrow-up\": 61814,\n  \"loveseat\": 62668,\n  \"low-vision\": 62120,\n  \"luchador-mask\": 62549,\n  \"luchador\": 62549,\n  \"luggage-cart\": 62877,\n  \"lungs-virus\": 57447,\n  \"lungs\": 62980,\n  \"lychee\": 59428,\n  \"m\": 77,\n  \"mace\": 63224,\n  \"magic-wand-sparkles\": 58058,\n  \"magic\": 61648,\n  \"magnet\": 61558,\n  \"magnifying-glass-arrow-right\": 58657,\n  \"magnifying-glass-arrows-rotate\": 58974,\n  \"magnifying-glass-chart\": 58658,\n  \"magnifying-glass-dollar\": 63112,\n  \"magnifying-glass-location\": 63113,\n  \"magnifying-glass-minus\": 61456,\n  \"magnifying-glass-music\": 58975,\n  \"magnifying-glass-play\": 58976,\n  \"magnifying-glass-plus\": 61454,\n  \"magnifying-glass-waveform\": 58977,\n  \"magnifying-glass\": 61442,\n  \"mail-bulk\": 63092,\n  \"mail-forward\": 61540,\n  \"mail-reply-all\": 61730,\n  \"mail-reply\": 62437,\n  \"mailbox-flag-up\": 58811,\n  \"mailbox-open-empty\": 59425,\n  \"mailbox-open-letter\": 59427,\n  \"mailbox\": 63507,\n  \"maki-roll\": 58507,\n  \"makizushi\": 58507,\n  \"malaysian-ringgit-sign\": 59130,\n  \"male\": 61827,\n  \"manat-sign\": 57813,\n  \"mandolin\": 63225,\n  \"mango\": 58127,\n  \"manhole\": 57814,\n  \"map-location-dot\": 62880,\n  \"map-location\": 62879,\n  \"map-marked-alt\": 62880,\n  \"map-marked\": 62879,\n  \"map-marker-alt-slash\": 62981,\n  \"map-marker-alt\": 62405,\n  \"map-marker-check\": 62982,\n  \"map-marker-edit\": 62983,\n  \"map-marker-exclamation\": 62984,\n  \"map-marker-minus\": 62985,\n  \"map-marker-plus\": 62986,\n  \"map-marker-question\": 62987,\n  \"map-marker-slash\": 62988,\n  \"map-marker-smile\": 62989,\n  \"map-marker-times\": 62990,\n  \"map-marker-xmark\": 62990,\n  \"map-marker\": 61505,\n  \"map-pin\": 62070,\n  \"map-signs\": 62071,\n  \"map\": 62073,\n  \"marker\": 62881,\n  \"mars-and-venus-burst\": 58659,\n  \"mars-and-venus\": 61988,\n  \"mars-double\": 61991,\n  \"mars-stroke-h\": 61995,\n  \"mars-stroke-right\": 61995,\n  \"mars-stroke-up\": 61994,\n  \"mars-stroke-v\": 61994,\n  \"mars-stroke\": 61993,\n  \"mars\": 61986,\n  \"martini-glass-citrus\": 62817,\n  \"martini-glass-empty\": 61440,\n  \"martini-glass\": 62843,\n  \"mask-face\": 57815,\n  \"mask-luchador\": 62549,\n  \"mask-snorkel\": 58295,\n  \"mask-ventilator\": 58660,\n  \"mask\": 63226,\n  \"masks-theater\": 63024,\n  \"mattress-pillow\": 58661,\n  \"maximize\": 62238,\n  \"meat\": 63508,\n  \"medal\": 62882,\n  \"medkit\": 61690,\n  \"megaphone\": 63093,\n  \"meh-blank\": 62884,\n  \"meh-rolling-eyes\": 62885,\n  \"meh\": 61722,\n  \"melon-slice\": 58129,\n  \"melon\": 58128,\n  \"memo-circle-check\": 57817,\n  \"memo-circle-info\": 58522,\n  \"memo-pad\": 57818,\n  \"memo\": 57816,\n  \"memory\": 62776,\n  \"menorah\": 63094,\n  \"mercury\": 61987,\n  \"merge\": 58662,\n  \"message-arrow-down\": 57819,\n  \"message-arrow-up-right\": 57821,\n  \"message-arrow-up\": 57820,\n  \"message-bot\": 58296,\n  \"message-captions\": 57822,\n  \"message-check\": 62626,\n  \"message-code\": 57823,\n  \"message-dollar\": 63056,\n  \"message-dot\": 59103,\n  \"message-dots\": 62627,\n  \"message-edit\": 62628,\n  \"message-exclamation\": 62629,\n  \"message-heart\": 58825,\n  \"message-image\": 57824,\n  \"message-lines\": 62630,\n  \"message-medical\": 63476,\n  \"message-middle-top\": 57826,\n  \"message-middle\": 57825,\n  \"message-minus\": 62631,\n  \"message-music\": 63663,\n  \"message-pen\": 62628,\n  \"message-plus\": 62632,\n  \"message-question\": 57827,\n  \"message-quote\": 57828,\n  \"message-slash\": 62633,\n  \"message-smile\": 62634,\n  \"message-sms\": 57829,\n  \"message-text\": 57830,\n  \"message-times\": 62635,\n  \"message-waveform\": 59104,\n  \"message-xmark\": 62635,\n  \"message\": 62074,\n  \"messages-dollar\": 63058,\n  \"messages-question\": 57831,\n  \"messages\": 62646,\n  \"messaging\": 62627,\n  \"meteor\": 63315,\n  \"meter-bolt\": 57833,\n  \"meter-droplet\": 57834,\n  \"meter-fire\": 57835,\n  \"meter\": 57832,\n  \"microchip-ai\": 57836,\n  \"microchip\": 62171,\n  \"microphone-alt-slash\": 62777,\n  \"microphone-alt\": 62409,\n  \"microphone-circle-alt\": 57623,\n  \"microphone-circle-plus\": 59261,\n  \"microphone-circle-xmark\": 59262,\n  \"microphone-circle\": 57622,\n  \"microphone-lines-slash\": 62777,\n  \"microphone-lines\": 62409,\n  \"microphone-signal-meter\": 59232,\n  \"microphone-slash\": 61745,\n  \"microphone-stand\": 63691,\n  \"microphone\": 61744,\n  \"microscope\": 62992,\n  \"microwave\": 57371,\n  \"midi\": 59398,\n  \"mill-sign\": 57837,\n  \"mind-share\": 63095,\n  \"minimize\": 63372,\n  \"minus-circle\": 61526,\n  \"minus-hexagon\": 62215,\n  \"minus-large\": 58372,\n  \"minus-octagon\": 62216,\n  \"minus-square\": 61766,\n  \"minus\": 61544,\n  \"mistletoe\": 63412,\n  \"mitten\": 63413,\n  \"mobile-alt\": 62413,\n  \"mobile-android-alt\": 62415,\n  \"mobile-android\": 62414,\n  \"mobile-arrow-down\": 59211,\n  \"mobile-button\": 61707,\n  \"mobile-iphone\": 57838,\n  \"mobile-notch\": 57838,\n  \"mobile-phone\": 62414,\n  \"mobile-retro\": 58663,\n  \"mobile-rotate-reverse\": 59412,\n  \"mobile-rotate\": 59411,\n  \"mobile-screen-button\": 62413,\n  \"mobile-screen\": 62415,\n  \"mobile-signal-out\": 57840,\n  \"mobile-signal\": 57839,\n  \"mobile-slash\": 59413,\n  \"mobile-vibrate-slash\": 59415,\n  \"mobile-vibrate\": 59414,\n  \"mobile\": 62414,\n  \"money-bill-1-wave\": 62779,\n  \"money-bill-1\": 62417,\n  \"money-bill-alt\": 62417,\n  \"money-bill-simple-wave\": 57842,\n  \"money-bill-simple\": 57841,\n  \"money-bill-transfer\": 58664,\n  \"money-bill-trend-up\": 58665,\n  \"money-bill-wave-alt\": 62779,\n  \"money-bill-wave\": 62778,\n  \"money-bill-wheat\": 58666,\n  \"money-bill\": 61654,\n  \"money-bills-alt\": 57844,\n  \"money-bills-simple\": 57844,\n  \"money-bills\": 57843,\n  \"money-check-alt\": 62781,\n  \"money-check-dollar-pen\": 63603,\n  \"money-check-dollar\": 62781,\n  \"money-check-edit-alt\": 63603,\n  \"money-check-edit\": 63602,\n  \"money-check-pen\": 63602,\n  \"money-check\": 62780,\n  \"money-from-bracket\": 58130,\n  \"money-simple-from-bracket\": 58131,\n  \"monitor-heart-rate\": 62993,\n  \"monitor-waveform\": 62993,\n  \"monkey\": 63227,\n  \"monument\": 62886,\n  \"moon-cloud\": 63316,\n  \"moon-first-quarter-inverse\": 59506,\n  \"moon-first-quarter\": 59504,\n  \"moon-full-inverse\": 59507,\n  \"moon-full\": 59505,\n  \"moon-last-quarter-inverse\": 59504,\n  \"moon-last-quarter\": 59506,\n  \"moon-new-inverse\": 59505,\n  \"moon-new\": 59507,\n  \"moon-over-sun\": 63306,\n  \"moon-star\": 59337,\n  \"moon-stars\": 63317,\n  \"moon-waning-crescent-inverse\": 59511,\n  \"moon-waning-crescent\": 59508,\n  \"moon-waning-gibbous-inverse\": 59510,\n  \"moon-waning-gibbous\": 59509,\n  \"moon-waxing-crescent-inverse\": 59509,\n  \"moon-waxing-crescent\": 59510,\n  \"moon-waxing-gibbous-inverse\": 59508,\n  \"moon-waxing-gibbous\": 59511,\n  \"moon\": 61830,\n  \"moped\": 58297,\n  \"mortar-board\": 61853,\n  \"mortar-pestle\": 62887,\n  \"mosque\": 63096,\n  \"mosquito-net\": 58668,\n  \"mosquito\": 58667,\n  \"motorcycle\": 61980,\n  \"mound\": 58669,\n  \"mountain-city\": 58670,\n  \"mountain-sun\": 58671,\n  \"mountain\": 63228,\n  \"mountains\": 63229,\n  \"mouse-alt\": 63693,\n  \"mouse-field\": 58792,\n  \"mouse-pointer\": 62021,\n  \"mouse\": 63692,\n  \"mp3-player\": 63694,\n  \"mug-hot\": 63414,\n  \"mug-marshmallows\": 63415,\n  \"mug-saucer\": 61684,\n  \"mug-tea-saucer\": 57845,\n  \"mug-tea\": 63605,\n  \"mug\": 63604,\n  \"multiply\": 61453,\n  \"museum\": 61852,\n  \"mushroom\": 58405,\n  \"music-alt-slash\": 63696,\n  \"music-alt\": 63695,\n  \"music-magnifying-glass\": 58978,\n  \"music-note-slash\": 63696,\n  \"music-note\": 63695,\n  \"music-slash\": 63697,\n  \"music\": 61441,\n  \"mustache\": 58812,\n  \"n\": 78,\n  \"naira-sign\": 57846,\n  \"narwhal\": 63230,\n  \"nas\": 59553,\n  \"navicon\": 61641,\n  \"nesting-dolls\": 58298,\n  \"network-wired\": 63231,\n  \"neuter\": 61996,\n  \"newspaper\": 61930,\n  \"nfc-lock\": 57848,\n  \"nfc-magnifying-glass\": 57849,\n  \"nfc-pen\": 57850,\n  \"nfc-signal\": 57851,\n  \"nfc-slash\": 57852,\n  \"nfc-symbol\": 58673,\n  \"nfc-trash\": 57853,\n  \"nfc\": 57847,\n  \"nigiri\": 58506,\n  \"non-binary\": 59399,\n  \"norwegian-krone-sign\": 59112,\n  \"nose\": 58813,\n  \"not-equal\": 62782,\n  \"notdef\": 57854,\n  \"note-medical\": 57856,\n  \"note-sticky\": 62025,\n  \"note\": 57855,\n  \"notebook\": 57857,\n  \"notes-medical\": 62593,\n  \"notes-sticky\": 59225,\n  \"notes\": 57858,\n  \"numpad\": 59340,\n  \"o\": 79,\n  \"oar\": 59524,\n  \"oars\": 59525,\n  \"object-exclude\": 58524,\n  \"object-group\": 62023,\n  \"object-intersect\": 58525,\n  \"object-subtract\": 58526,\n  \"object-ungroup\": 62024,\n  \"object-union\": 58527,\n  \"objects-align-bottom\": 58299,\n  \"objects-align-center-horizontal\": 58300,\n  \"objects-align-center-vertical\": 58301,\n  \"objects-align-left\": 58302,\n  \"objects-align-right\": 58303,\n  \"objects-align-top\": 58304,\n  \"objects-column\": 58305,\n  \"octagon-check\": 58406,\n  \"octagon-divide\": 57859,\n  \"octagon-equals\": 59059,\n  \"octagon-exclamation\": 57860,\n  \"octagon-minus\": 62216,\n  \"octagon-plus\": 62209,\n  \"octagon-xmark\": 62192,\n  \"octagon\": 62214,\n  \"octopus\": 59016,\n  \"oil-can-drip\": 57861,\n  \"oil-can\": 62995,\n  \"oil-temp\": 62996,\n  \"oil-temperature\": 62996,\n  \"oil-well\": 58674,\n  \"olive-branch\": 58135,\n  \"olive\": 58134,\n  \"om\": 63097,\n  \"omega\": 63098,\n  \"onion\": 58407,\n  \"open-captioning\": 59263,\n  \"opossum\": 59516,\n  \"option\": 58136,\n  \"ornament\": 63416,\n  \"otter\": 63232,\n  \"outdent\": 61499,\n  \"outlet\": 57372,\n  \"oven\": 57373,\n  \"overline\": 63606,\n  \"owl\": 59551,\n  \"p\": 80,\n  \"page-break\": 63607,\n  \"page-caret-down\": 58409,\n  \"page-caret-up\": 58410,\n  \"page\": 58408,\n  \"pager\": 63509,\n  \"paint-brush-alt\": 62889,\n  \"paint-brush-fine\": 62889,\n  \"paint-brush\": 61948,\n  \"paint-roller\": 62890,\n  \"paintbrush-alt\": 62889,\n  \"paintbrush-fine-slash\": 59213,\n  \"paintbrush-fine\": 62889,\n  \"paintbrush-pencil\": 57862,\n  \"paintbrush-slash\": 59214,\n  \"paintbrush\": 61948,\n  \"palette-boxes\": 62595,\n  \"palette\": 62783,\n  \"pallet-alt\": 62595,\n  \"pallet-box\": 57864,\n  \"pallet-boxes\": 62595,\n  \"pallet\": 62594,\n  \"pan-food\": 58411,\n  \"pan-frying\": 58412,\n  \"pancakes\": 58413,\n  \"panel-ews\": 58414,\n  \"panel-fire\": 58415,\n  \"panorama\": 57865,\n  \"panties\": 59092,\n  \"pants-straight\": 59094,\n  \"pants\": 59093,\n  \"paper-plane-alt\": 57866,\n  \"paper-plane-top\": 57866,\n  \"paper-plane\": 61912,\n  \"paperclip-vertical\": 58306,\n  \"paperclip\": 61638,\n  \"parachute-box\": 62669,\n  \"paragraph-left\": 63608,\n  \"paragraph-rtl\": 63608,\n  \"paragraph\": 61917,\n  \"parentheses\": 57541,\n  \"parenthesis\": 40,\n  \"parking-circle-slash\": 62998,\n  \"parking-circle\": 62997,\n  \"parking-slash\": 62999,\n  \"parking\": 62784,\n  \"party-back\": 58460,\n  \"party-bell\": 58138,\n  \"party-horn\": 58139,\n  \"passport\": 62891,\n  \"pastafarianism\": 63099,\n  \"paste\": 61674,\n  \"pause-circle\": 62091,\n  \"pause\": 61516,\n  \"paw-alt\": 63233,\n  \"paw-claws\": 63234,\n  \"paw-simple\": 63233,\n  \"paw\": 61872,\n  \"peace\": 63100,\n  \"peach\": 57867,\n  \"peanut\": 58416,\n  \"peanuts\": 58417,\n  \"peapod\": 58140,\n  \"pear\": 57868,\n  \"pedestal\": 57869,\n  \"pegasus\": 63235,\n  \"pen-alt-slash\": 57871,\n  \"pen-alt\": 62213,\n  \"pen-circle\": 57870,\n  \"pen-clip-slash\": 57871,\n  \"pen-clip\": 62213,\n  \"pen-fancy-slash\": 57872,\n  \"pen-fancy\": 62892,\n  \"pen-field\": 57873,\n  \"pen-line\": 57874,\n  \"pen-nib-slash\": 58529,\n  \"pen-nib\": 62893,\n  \"pen-paintbrush\": 63000,\n  \"pen-ruler\": 62894,\n  \"pen-slash\": 57875,\n  \"pen-square\": 61771,\n  \"pen-swirl\": 57876,\n  \"pen-to-square\": 61508,\n  \"pen\": 62212,\n  \"pencil-alt\": 62211,\n  \"pencil-line\": 59215,\n  \"pencil-mechanical\": 58826,\n  \"pencil-paintbrush\": 63000,\n  \"pencil-ruler\": 62894,\n  \"pencil-slash\": 57877,\n  \"pencil-square\": 61771,\n  \"pencil\": 62211,\n  \"pennant\": 62550,\n  \"pentagon\": 59280,\n  \"people-arrows-left-right\": 57448,\n  \"people-arrows\": 57448,\n  \"people-carry-box\": 62670,\n  \"people-carry\": 62670,\n  \"people-dress-simple\": 57880,\n  \"people-dress\": 57879,\n  \"people-group\": 58675,\n  \"people-line\": 58676,\n  \"people-pants-simple\": 57882,\n  \"people-pants\": 57881,\n  \"people-pulling\": 58677,\n  \"people-robbery\": 58678,\n  \"people-roof\": 58679,\n  \"people-simple\": 57883,\n  \"people\": 57878,\n  \"pepper-hot\": 63510,\n  \"pepper\": 58418,\n  \"percent\": 37,\n  \"percentage\": 37,\n  \"period\": 46,\n  \"person-arms-raised\": 59267,\n  \"person-arrow-down-to-line\": 58680,\n  \"person-arrow-up-from-line\": 58681,\n  \"person-basketball\": 59268,\n  \"person-biking-mountain\": 63563,\n  \"person-biking\": 63562,\n  \"person-booth\": 63318,\n  \"person-breastfeeding\": 58682,\n  \"person-burst\": 58683,\n  \"person-cane\": 58684,\n  \"person-carry-box\": 62671,\n  \"person-carry-empty\": 59269,\n  \"person-carry\": 62671,\n  \"person-chalkboard\": 58685,\n  \"person-circle-check\": 58686,\n  \"person-circle-exclamation\": 58687,\n  \"person-circle-minus\": 58688,\n  \"person-circle-plus\": 58689,\n  \"person-circle-question\": 58690,\n  \"person-circle-xmark\": 58691,\n  \"person-digging\": 63582,\n  \"person-dolly-empty\": 62673,\n  \"person-dolly\": 62672,\n  \"person-dots-from-line\": 62576,\n  \"person-dress-burst\": 58692,\n  \"person-dress-fairy\": 58887,\n  \"person-dress-simple\": 57884,\n  \"person-dress\": 61826,\n  \"person-drowning\": 58693,\n  \"person-fairy\": 58888,\n  \"person-falling-burst\": 58695,\n  \"person-falling\": 58694,\n  \"person-from-portal\": 57379,\n  \"person-golfing\": 59270,\n  \"person-half-dress\": 58696,\n  \"person-harassing\": 58697,\n  \"person-hiking\": 63212,\n  \"person-limbs-wide\": 59271,\n  \"person-meditating\": 59361,\n  \"person-military-pointing\": 58698,\n  \"person-military-rifle\": 58699,\n  \"person-military-to-person\": 58700,\n  \"person-pinball\": 57885,\n  \"person-praying\": 63107,\n  \"person-pregnant\": 58142,\n  \"person-rays\": 58701,\n  \"person-rifle\": 58702,\n  \"person-running-fast\": 58879,\n  \"person-running\": 63244,\n  \"person-seat-reclined\": 57887,\n  \"person-seat-window\": 59272,\n  \"person-seat\": 57886,\n  \"person-shelter\": 58703,\n  \"person-sign\": 63319,\n  \"person-simple\": 57888,\n  \"person-skating\": 63429,\n  \"person-ski-jumping\": 63431,\n  \"person-ski-lift\": 63432,\n  \"person-skiing-nordic\": 63434,\n  \"person-skiing\": 63433,\n  \"person-sledding\": 63435,\n  \"person-snowboarding\": 63438,\n  \"person-snowmobiling\": 63441,\n  \"person-soccer\": 59273,\n  \"person-swimming-pool\": 59274,\n  \"person-swimming-water\": 59275,\n  \"person-swimming\": 62916,\n  \"person-through-window\": 58793,\n  \"person-to-door\": 58419,\n  \"person-to-portal\": 57378,\n  \"person-walking-arrow-loop-left\": 58705,\n  \"person-walking-arrow-right\": 58706,\n  \"person-walking-dashed-line-arrow-right\": 58707,\n  \"person-walking-luggage\": 58708,\n  \"person-walking-with-cane\": 62109,\n  \"person-walking\": 62804,\n  \"person-water-arms-raised\": 59276,\n  \"person-waving\": 59277,\n  \"person\": 61827,\n  \"peruvian-soles-sign\": 59141,\n  \"peseta-sign\": 57889,\n  \"peso-sign\": 57890,\n  \"phone-alt\": 63609,\n  \"phone-arrow-down-left\": 57891,\n  \"phone-arrow-down\": 57891,\n  \"phone-arrow-right\": 58814,\n  \"phone-arrow-up-right\": 57892,\n  \"phone-arrow-up\": 57892,\n  \"phone-circle-alt\": 57628,\n  \"phone-circle-down\": 57629,\n  \"phone-circle\": 57627,\n  \"phone-connection\": 59105,\n  \"phone-flip\": 63609,\n  \"phone-hangup\": 57893,\n  \"phone-incoming\": 57891,\n  \"phone-intercom\": 58420,\n  \"phone-laptop\": 63610,\n  \"phone-missed\": 57894,\n  \"phone-office\": 63101,\n  \"phone-outgoing\": 57892,\n  \"phone-plus\": 62674,\n  \"phone-rotary\": 63699,\n  \"phone-slash\": 62429,\n  \"phone-square-alt\": 63611,\n  \"phone-square-down\": 57978,\n  \"phone-square\": 61592,\n  \"phone-volume\": 62112,\n  \"phone-waveform\": 59106,\n  \"phone-xmark\": 57895,\n  \"phone\": 61589,\n  \"photo-film-music\": 57896,\n  \"photo-film\": 63612,\n  \"photo-video\": 63612,\n  \"pi\": 63102,\n  \"piano-keyboard\": 63701,\n  \"piano\": 63700,\n  \"pickaxe\": 58815,\n  \"pickleball\": 58421,\n  \"picture-in-picture\": 59403,\n  \"pie-chart\": 61952,\n  \"pie\": 63237,\n  \"pig\": 63238,\n  \"piggy-bank\": 62675,\n  \"pills\": 62596,\n  \"pinata\": 58307,\n  \"pinball\": 57897,\n  \"pineapple\": 58143,\n  \"ping-pong-paddle-ball\": 62557,\n  \"pipe-circle-check\": 58422,\n  \"pipe-collar\": 58423,\n  \"pipe-section\": 58424,\n  \"pipe-smoking\": 58308,\n  \"pipe-valve\": 58425,\n  \"pipe\": 124,\n  \"pisces\": 59468,\n  \"pizza-slice\": 63512,\n  \"pizza\": 63511,\n  \"place-of-worship\": 63103,\n  \"plane-alt\": 62430,\n  \"plane-arrival\": 62895,\n  \"plane-circle-check\": 58709,\n  \"plane-circle-exclamation\": 58710,\n  \"plane-circle-xmark\": 58711,\n  \"plane-departure\": 62896,\n  \"plane-engines\": 62430,\n  \"plane-flying\": 59323,\n  \"plane-landing-gear\": 59324,\n  \"plane-lock\": 58712,\n  \"plane-prop\": 57899,\n  \"plane-slash\": 57449,\n  \"plane-tail\": 57900,\n  \"plane-up-slash\": 57902,\n  \"plane-up\": 57901,\n  \"plane\": 61554,\n  \"planet-moon\": 57375,\n  \"planet-ringed\": 57376,\n  \"plant-wilt\": 58794,\n  \"plate-utensils\": 58427,\n  \"plate-wheat\": 58714,\n  \"play-circle\": 61764,\n  \"play-flip\": 59264,\n  \"play-pause\": 57903,\n  \"play\": 61515,\n  \"plug-circle-bolt\": 58715,\n  \"plug-circle-check\": 58716,\n  \"plug-circle-exclamation\": 58717,\n  \"plug-circle-minus\": 58718,\n  \"plug-circle-plus\": 58719,\n  \"plug-circle-xmark\": 58720,\n  \"plug\": 61926,\n  \"plus-circle\": 61525,\n  \"plus-hexagon\": 62208,\n  \"plus-large\": 58782,\n  \"plus-minus\": 58428,\n  \"plus-octagon\": 62209,\n  \"plus-square\": 61694,\n  \"plus\": 43,\n  \"podcast\": 62158,\n  \"podium-star\": 63320,\n  \"podium\": 63104,\n  \"poker-chip\": 59554,\n  \"police-box\": 57377,\n  \"polish-zloty-sign\": 59147,\n  \"poll-h\": 63106,\n  \"poll-people\": 63321,\n  \"poll\": 63105,\n  \"pompebled\": 58429,\n  \"poo-bolt\": 63322,\n  \"poo-storm\": 63322,\n  \"poo\": 62206,\n  \"pool-8-ball\": 58309,\n  \"poop\": 63001,\n  \"popcorn\": 63513,\n  \"popsicle\": 58430,\n  \"portal-enter\": 57378,\n  \"portal-exit\": 57379,\n  \"portrait\": 62432,\n  \"possum\": 59516,\n  \"postage-stamp\": 59107,\n  \"pot-food\": 58431,\n  \"potato\": 58432,\n  \"pound-sign\": 61780,\n  \"power-off\": 61457,\n  \"pray\": 63107,\n  \"praying-hands\": 63108,\n  \"prescription-bottle-alt\": 62598,\n  \"prescription-bottle-medical\": 62598,\n  \"prescription-bottle-pill\": 58816,\n  \"prescription-bottle\": 62597,\n  \"prescription\": 62897,\n  \"presentation-screen\": 63109,\n  \"presentation\": 63109,\n  \"pretzel\": 58433,\n  \"print-magnifying-glass\": 63514,\n  \"print-search\": 63514,\n  \"print-slash\": 63110,\n  \"print\": 61487,\n  \"pro\": 57909,\n  \"procedures\": 62599,\n  \"project-diagram\": 62786,\n  \"projector\": 63702,\n  \"pronoun\": 59041,\n  \"pump-impeller\": 59445,\n  \"pump-medical\": 57450,\n  \"pump-soap\": 57451,\n  \"pump\": 58434,\n  \"pumpkin\": 63239,\n  \"puzzle-piece-alt\": 57905,\n  \"puzzle-piece-simple\": 57905,\n  \"puzzle-piece\": 61742,\n  \"puzzle\": 58435,\n  \"q\": 81,\n  \"qrcode-read\": 59289,\n  \"qrcode\": 61481,\n  \"question-circle\": 61529,\n  \"question-square\": 62205,\n  \"question\": 63,\n  \"quidditch-broom-ball\": 62552,\n  \"quidditch\": 62552,\n  \"quote-left-alt\": 61709,\n  \"quote-left\": 61709,\n  \"quote-right-alt\": 61710,\n  \"quote-right\": 61710,\n  \"quotes\": 57908,\n  \"quran\": 63111,\n  \"r\": 82,\n  \"rabbit-fast\": 63241,\n  \"rabbit-running\": 63241,\n  \"rabbit\": 63240,\n  \"raccoon\": 58899,\n  \"racquet\": 62554,\n  \"radar\": 57380,\n  \"radiation-alt\": 63418,\n  \"radiation\": 63417,\n  \"radio-alt\": 63704,\n  \"radio-tuner\": 63704,\n  \"radio\": 63703,\n  \"rainbow-half\": 59338,\n  \"rainbow\": 63323,\n  \"raindrops\": 63324,\n  \"ram\": 63242,\n  \"ramp-loading\": 62676,\n  \"random\": 61556,\n  \"ranking-star\": 58721,\n  \"raygun\": 57381,\n  \"receipt\": 62787,\n  \"record-vinyl\": 63705,\n  \"rectangle-4k\": 59250,\n  \"rectangle-ad\": 63041,\n  \"rectangle-api\": 59552,\n  \"rectangle-barcode\": 62563,\n  \"rectangle-beta\": 59400,\n  \"rectangle-code\": 58146,\n  \"rectangle-hd\": 57774,\n  \"rectangle-hdr\": 59251,\n  \"rectangle-high-dynamic-range\": 59251,\n  \"rectangle-history-circle-plus\": 58531,\n  \"rectangle-history-circle-user\": 58532,\n  \"rectangle-history\": 58530,\n  \"rectangle-irc\": 59500,\n  \"rectangle-landscape\": 62202,\n  \"rectangle-list\": 61474,\n  \"rectangle-minus\": 59060,\n  \"rectangle-n-a\": 59560,\n  \"rectangle-new\": 59514,\n  \"rectangle-plus\": 59061,\n  \"rectangle-portrait\": 62203,\n  \"rectangle-pro\": 57909,\n  \"rectangle-sd\": 57994,\n  \"rectangle-tall\": 59281,\n  \"rectangle-terminal\": 57910,\n  \"rectangle-times\": 62480,\n  \"rectangle-vertical-history\": 57911,\n  \"rectangle-vertical\": 62203,\n  \"rectangle-video-on-demand\": 59252,\n  \"rectangle-wide\": 62204,\n  \"rectangle-xmark\": 62480,\n  \"rectangle\": 62202,\n  \"rectangles-mixed\": 58147,\n  \"recycle\": 61880,\n  \"redo-alt\": 62201,\n  \"redo\": 61470,\n  \"reel\": 57912,\n  \"reflect-both\": 58991,\n  \"reflect-horizontal\": 58980,\n  \"reflect-vertical\": 58981,\n  \"refresh\": 61473,\n  \"refrigerator\": 57382,\n  \"registered\": 62045,\n  \"remote\": 59561,\n  \"remove-format\": 63613,\n  \"remove\": 61453,\n  \"renminbi-sign\": 59196,\n  \"reorder\": 62800,\n  \"repeat-1-alt\": 62310,\n  \"repeat-1\": 62309,\n  \"repeat-alt\": 62308,\n  \"repeat\": 62307,\n  \"reply-all\": 61730,\n  \"reply-clock\": 57913,\n  \"reply-time\": 57913,\n  \"reply\": 62437,\n  \"republican\": 63326,\n  \"restroom-simple\": 57914,\n  \"restroom\": 63421,\n  \"retweet-alt\": 62305,\n  \"retweet\": 61561,\n  \"rhombus\": 57915,\n  \"ribbon\": 62678,\n  \"right-from-bracket\": 62197,\n  \"right-from-dotted-line\": 59076,\n  \"right-from-line\": 62279,\n  \"right-left-large\": 58849,\n  \"right-left\": 62306,\n  \"right-long-to-line\": 58436,\n  \"right-long\": 62219,\n  \"right-to-bracket\": 62198,\n  \"right-to-dotted-line\": 59077,\n  \"right-to-line\": 62284,\n  \"right\": 62294,\n  \"ring-diamond\": 58795,\n  \"ring\": 63243,\n  \"rings-wedding\": 63515,\n  \"rmb\": 61783,\n  \"road-barrier\": 58722,\n  \"road-bridge\": 58723,\n  \"road-circle-check\": 58724,\n  \"road-circle-exclamation\": 58725,\n  \"road-circle-xmark\": 58726,\n  \"road-lock\": 58727,\n  \"road-spikes\": 58728,\n  \"road\": 61464,\n  \"robot-astromech\": 58066,\n  \"robot\": 62788,\n  \"rocket-launch\": 57383,\n  \"rocket-vertical\": 59325,\n  \"rocket\": 61749,\n  \"rod-asclepius\": 58745,\n  \"rod-snake\": 58745,\n  \"roller-coaster\": 58148,\n  \"rotate-back\": 62186,\n  \"rotate-backward\": 62186,\n  \"rotate-exclamation\": 57916,\n  \"rotate-forward\": 62201,\n  \"rotate-left\": 62186,\n  \"rotate-reverse\": 58929,\n  \"rotate-right\": 62201,\n  \"rotate\": 62193,\n  \"rouble\": 61784,\n  \"route-highway\": 63002,\n  \"route-interstate\": 63003,\n  \"route\": 62679,\n  \"router\": 63706,\n  \"rows-3\": 59531,\n  \"rows\": 58002,\n  \"rss-square\": 61763,\n  \"rss\": 61598,\n  \"rub\": 61784,\n  \"ruble-sign\": 61784,\n  \"ruble\": 61784,\n  \"rug\": 58729,\n  \"rugby-ball\": 58310,\n  \"ruler-combined\": 62790,\n  \"ruler-horizontal\": 62791,\n  \"ruler-triangle\": 63004,\n  \"ruler-vertical\": 62792,\n  \"ruler\": 62789,\n  \"running\": 63244,\n  \"rupee-sign\": 61782,\n  \"rupee\": 61782,\n  \"rupiah-sign\": 57917,\n  \"rv\": 63422,\n  \"s\": 83,\n  \"sack-dollar\": 63517,\n  \"sack-xmark\": 58730,\n  \"sack\": 63516,\n  \"sad-cry\": 62899,\n  \"sad-tear\": 62900,\n  \"sagittarius\": 59469,\n  \"sailboat\": 58437,\n  \"salad\": 63518,\n  \"salt-shaker\": 58438,\n  \"sandwich\": 63519,\n  \"satellite-dish\": 63424,\n  \"satellite\": 63423,\n  \"sausage\": 63520,\n  \"save-circle-arrow-right\": 57728,\n  \"save-circle-xmark\": 57729,\n  \"save-times\": 57729,\n  \"save\": 61639,\n  \"sax-hot\": 63707,\n  \"saxophone-fire\": 63707,\n  \"saxophone\": 63708,\n  \"scale-balanced\": 62030,\n  \"scale-unbalanced-flip\": 62742,\n  \"scale-unbalanced\": 62741,\n  \"scalpel-line-dashed\": 63006,\n  \"scalpel-path\": 63006,\n  \"scalpel\": 63005,\n  \"scanner-gun\": 62600,\n  \"scanner-image\": 63731,\n  \"scanner-keyboard\": 62601,\n  \"scanner-touchscreen\": 62602,\n  \"scanner\": 62600,\n  \"scarecrow\": 63245,\n  \"scarf\": 63425,\n  \"school-circle-check\": 58731,\n  \"school-circle-exclamation\": 58732,\n  \"school-circle-xmark\": 58733,\n  \"school-flag\": 58734,\n  \"school-lock\": 58735,\n  \"school-unlock\": 59083,\n  \"school\": 62793,\n  \"scissors\": 61636,\n  \"scooter\": 59331,\n  \"scorpio\": 59470,\n  \"screen-users\": 63037,\n  \"screencast\": 57918,\n  \"screenshot\": 57562,\n  \"screwdriver-wrench\": 63449,\n  \"screwdriver\": 62794,\n  \"scribble\": 57919,\n  \"scroll-old\": 63247,\n  \"scroll-ribbon\": 62954,\n  \"scroll-torah\": 63136,\n  \"scroll\": 63246,\n  \"scrubber\": 62200,\n  \"scythe\": 63248,\n  \"sd-card\": 63426,\n  \"sd-cards\": 57920,\n  \"seal-exclamation\": 57922,\n  \"seal-question\": 57923,\n  \"seal\": 57921,\n  \"search-dollar\": 63112,\n  \"search-location\": 63113,\n  \"search-minus\": 61456,\n  \"search-plus\": 61454,\n  \"search\": 61442,\n  \"seat-airline-window\": 59326,\n  \"seat-airline\": 57924,\n  \"seat\": 59236,\n  \"seats\": 59237,\n  \"section\": 58439,\n  \"seedling\": 62680,\n  \"semicolon\": 59,\n  \"send-back\": 63614,\n  \"send-backward\": 63615,\n  \"send\": 57866,\n  \"sensor-alert\": 57385,\n  \"sensor-cloud\": 57388,\n  \"sensor-fire\": 57386,\n  \"sensor-on\": 57387,\n  \"sensor-smoke\": 57388,\n  \"sensor-triangle-exclamation\": 57385,\n  \"sensor\": 57384,\n  \"septagon\": 59424,\n  \"server\": 62003,\n  \"shapes\": 63007,\n  \"share-all\": 62311,\n  \"share-alt-square\": 61921,\n  \"share-alt\": 61920,\n  \"share-from-square\": 61773,\n  \"share-nodes\": 61920,\n  \"share-square\": 61773,\n  \"share\": 61540,\n  \"sheep\": 63249,\n  \"sheet-plastic\": 58737,\n  \"shekel-sign\": 61963,\n  \"shekel\": 61963,\n  \"shelves-empty\": 57926,\n  \"shelves\": 62592,\n  \"sheqel-sign\": 61963,\n  \"sheqel\": 61963,\n  \"shield-alt\": 62445,\n  \"shield-blank\": 61746,\n  \"shield-cat\": 58738,\n  \"shield-check\": 62199,\n  \"shield-cross\": 63250,\n  \"shield-dog\": 58739,\n  \"shield-exclamation\": 57927,\n  \"shield-halved\": 62445,\n  \"shield-heart\": 58740,\n  \"shield-keyhole\": 57928,\n  \"shield-minus\": 57929,\n  \"shield-plus\": 57930,\n  \"shield-quartered\": 58741,\n  \"shield-slash\": 57931,\n  \"shield-times\": 57932,\n  \"shield-user\": 59401,\n  \"shield-virus\": 57452,\n  \"shield-xmark\": 57932,\n  \"shield\": 61746,\n  \"ship-large\": 59408,\n  \"ship\": 61978,\n  \"shipping-fast\": 62603,\n  \"shipping-timed\": 62604,\n  \"shirt-jersey\": 59095,\n  \"shirt-long-sleeve\": 58311,\n  \"shirt-running\": 58312,\n  \"shirt-tank-top\": 58313,\n  \"shirt\": 62803,\n  \"shish-kebab\": 63521,\n  \"shoe-prints\": 62795,\n  \"shoe\": 59096,\n  \"shop-24\": 59290,\n  \"shop-lock\": 58533,\n  \"shop-slash\": 57456,\n  \"shop\": 62799,\n  \"shopping-bag\": 62096,\n  \"shopping-basket-alt\": 57519,\n  \"shopping-basket\": 62097,\n  \"shopping-cart\": 61562,\n  \"shortcake\": 58341,\n  \"shorts\": 59097,\n  \"shovel-snow\": 63427,\n  \"shovel\": 63251,\n  \"shower-alt\": 57933,\n  \"shower-down\": 57933,\n  \"shower\": 62156,\n  \"shredder\": 63114,\n  \"shrimp\": 58440,\n  \"shuffle\": 61556,\n  \"shutters\": 58441,\n  \"shuttle-space-vertical\": 59327,\n  \"shuttle-space\": 61847,\n  \"shuttle-van\": 62902,\n  \"shuttlecock\": 62555,\n  \"sickle\": 63522,\n  \"sidebar-flip\": 57935,\n  \"sidebar\": 57934,\n  \"sigma\": 63115,\n  \"sign-hanging\": 62681,\n  \"sign-in-alt\": 62198,\n  \"sign-in\": 61584,\n  \"sign-language\": 62119,\n  \"sign-out-alt\": 62197,\n  \"sign-out\": 61579,\n  \"sign-post\": 58916,\n  \"sign-posts-wrench\": 58918,\n  \"sign-posts\": 58917,\n  \"sign\": 62681,\n  \"signal-1\": 63116,\n  \"signal-2\": 63117,\n  \"signal-3\": 63118,\n  \"signal-4\": 63119,\n  \"signal-5\": 61458,\n  \"signal-alt-1\": 63121,\n  \"signal-alt-2\": 63122,\n  \"signal-alt-3\": 63123,\n  \"signal-alt-4\": 63120,\n  \"signal-alt-slash\": 63124,\n  \"signal-alt\": 63120,\n  \"signal-bars-fair\": 63122,\n  \"signal-bars-good\": 63123,\n  \"signal-bars-slash\": 63124,\n  \"signal-bars-strong\": 63120,\n  \"signal-bars-weak\": 63121,\n  \"signal-bars\": 63120,\n  \"signal-fair\": 63117,\n  \"signal-good\": 63118,\n  \"signal-perfect\": 61458,\n  \"signal-slash\": 63125,\n  \"signal-stream-slash\": 57936,\n  \"signal-stream\": 63709,\n  \"signal-strong\": 63119,\n  \"signal-weak\": 63116,\n  \"signal\": 61458,\n  \"signapore-dollar-sign\": 59182,\n  \"signature-lock\": 58314,\n  \"signature-slash\": 58315,\n  \"signature\": 62903,\n  \"signing\": 62119,\n  \"signs-post\": 62071,\n  \"sim-card\": 63428,\n  \"sim-cards\": 57937,\n  \"single-quote-left\": 59419,\n  \"single-quote-right\": 59420,\n  \"sink\": 57453,\n  \"siren-on\": 57390,\n  \"siren\": 57389,\n  \"sitemap\": 61672,\n  \"skating\": 63429,\n  \"skeleton-ribs\": 58827,\n  \"skeleton\": 63008,\n  \"ski-boot-ski\": 58317,\n  \"ski-boot\": 58316,\n  \"ski-jump\": 63431,\n  \"ski-lift\": 63432,\n  \"skiing-nordic\": 63434,\n  \"skiing\": 63433,\n  \"skull-cow\": 63710,\n  \"skull-crossbones\": 63252,\n  \"skull\": 62796,\n  \"slash-back\": 92,\n  \"slash-forward\": 47,\n  \"slash\": 63253,\n  \"sledding\": 63435,\n  \"sleigh\": 63436,\n  \"slider-circle\": 59216,\n  \"slider\": 57938,\n  \"sliders-h-square\": 62448,\n  \"sliders-h\": 61918,\n  \"sliders-simple\": 57939,\n  \"sliders-up\": 62449,\n  \"sliders-v-square\": 62450,\n  \"sliders-v\": 62449,\n  \"sliders\": 61918,\n  \"slot-machine\": 58318,\n  \"smile-beam\": 62904,\n  \"smile-plus\": 62905,\n  \"smile-wink\": 62682,\n  \"smile\": 61720,\n  \"smog\": 63327,\n  \"smoke\": 63328,\n  \"smoking-ban\": 62797,\n  \"smoking\": 62605,\n  \"sms\": 63437,\n  \"snake\": 63254,\n  \"sneaker-running\": 59417,\n  \"sneaker\": 59098,\n  \"snooze\": 63616,\n  \"snow-blowing\": 63329,\n  \"snowboarding\": 63438,\n  \"snowflake-droplets\": 58817,\n  \"snowflake\": 62172,\n  \"snowflakes\": 63439,\n  \"snowman-head\": 63387,\n  \"snowman\": 63440,\n  \"snowmobile-blank\": 59332,\n  \"snowmobile\": 63441,\n  \"snowplow\": 63442,\n  \"soap\": 57454,\n  \"soccer-ball\": 61923,\n  \"socks\": 63126,\n  \"soft-serve\": 58368,\n  \"solar-panel\": 62906,\n  \"solar-system\": 57391,\n  \"sort-alpha-asc\": 61789,\n  \"sort-alpha-desc\": 63617,\n  \"sort-alpha-down-alt\": 63617,\n  \"sort-alpha-down\": 61789,\n  \"sort-alpha-up-alt\": 63618,\n  \"sort-alpha-up\": 61790,\n  \"sort-alt\": 63619,\n  \"sort-amount-asc\": 61792,\n  \"sort-amount-desc\": 63620,\n  \"sort-amount-down-alt\": 63620,\n  \"sort-amount-down\": 61792,\n  \"sort-amount-up-alt\": 63621,\n  \"sort-amount-up\": 61793,\n  \"sort-asc\": 61662,\n  \"sort-circle-down\": 57393,\n  \"sort-circle-up\": 57394,\n  \"sort-circle\": 57392,\n  \"sort-desc\": 61661,\n  \"sort-down\": 61661,\n  \"sort-numeric-asc\": 61794,\n  \"sort-numeric-desc\": 63622,\n  \"sort-numeric-down-alt\": 63622,\n  \"sort-numeric-down\": 61794,\n  \"sort-numeric-up-alt\": 63623,\n  \"sort-numeric-up\": 61795,\n  \"sort-shapes-down-alt\": 63625,\n  \"sort-shapes-down\": 63624,\n  \"sort-shapes-up-alt\": 63627,\n  \"sort-shapes-up\": 63626,\n  \"sort-size-down-alt\": 63629,\n  \"sort-size-down\": 63628,\n  \"sort-size-up-alt\": 63631,\n  \"sort-size-up\": 63630,\n  \"sort-up-down\": 57497,\n  \"sort-up\": 61662,\n  \"sort\": 61660,\n  \"soup\": 63523,\n  \"spa\": 62907,\n  \"space-shuttle\": 61847,\n  \"space-station-moon-alt\": 57396,\n  \"space-station-moon-construction\": 57396,\n  \"space-station-moon\": 57395,\n  \"spade\": 62196,\n  \"spaghetti-monster-flying\": 63099,\n  \"sparkle\": 58838,\n  \"sparkles\": 63632,\n  \"speaker\": 63711,\n  \"speakers\": 63712,\n  \"spell-check\": 63633,\n  \"spider-black-widow\": 63256,\n  \"spider-web\": 63257,\n  \"spider\": 63255,\n  \"spine\": 59233,\n  \"spinner-scale\": 58922,\n  \"spinner-third\": 62452,\n  \"spinner\": 61712,\n  \"spiral\": 59402,\n  \"split\": 57940,\n  \"splotch\": 62908,\n  \"spoon\": 62181,\n  \"sportsball\": 58443,\n  \"spray-can-sparkles\": 62928,\n  \"spray-can\": 62909,\n  \"sprinkler-ceiling\": 58444,\n  \"sprinkler\": 57397,\n  \"sprout\": 62680,\n  \"square-0\": 57941,\n  \"square-1\": 57942,\n  \"square-2\": 57943,\n  \"square-3\": 57944,\n  \"square-4\": 57945,\n  \"square-5\": 57946,\n  \"square-6\": 57947,\n  \"square-7\": 57948,\n  \"square-8\": 57949,\n  \"square-9\": 57950,\n  \"square-a-lock\": 58445,\n  \"square-a\": 57951,\n  \"square-ampersand\": 57952,\n  \"square-arrow-down-left\": 57953,\n  \"square-arrow-down-right\": 57954,\n  \"square-arrow-down\": 62265,\n  \"square-arrow-left\": 62266,\n  \"square-arrow-right\": 62267,\n  \"square-arrow-up-left\": 57955,\n  \"square-arrow-up-right\": 61772,\n  \"square-arrow-up\": 62268,\n  \"square-austral\": 59174,\n  \"square-australian-dollar\": 59160,\n  \"square-b\": 57956,\n  \"square-baht\": 59161,\n  \"square-bangladeshi-taka\": 59204,\n  \"square-binary\": 59035,\n  \"square-bitcoin\": 59122,\n  \"square-bolt\": 57957,\n  \"square-brazilian-real\": 59121,\n  \"square-c\": 57958,\n  \"square-caret-down\": 61776,\n  \"square-caret-left\": 61841,\n  \"square-caret-right\": 61778,\n  \"square-caret-up\": 61777,\n  \"square-cedi\": 59177,\n  \"square-cent\": 59120,\n  \"square-check\": 61770,\n  \"square-chevron-down\": 62249,\n  \"square-chevron-left\": 62250,\n  \"square-chevron-right\": 62251,\n  \"square-chevron-up\": 62252,\n  \"square-chf\": 59110,\n  \"square-code\": 57959,\n  \"square-colon\": 59194,\n  \"square-cruzeiro\": 59117,\n  \"square-currency\": 59148,\n  \"square-d\": 57960,\n  \"square-danish-krone\": 59207,\n  \"square-dashed-circle-plus\": 58818,\n  \"square-dashed\": 57961,\n  \"square-divide\": 57962,\n  \"square-dollar\": 62185,\n  \"square-dong\": 59151,\n  \"square-down-left\": 57963,\n  \"square-down-right\": 57964,\n  \"square-down\": 62288,\n  \"square-e\": 57965,\n  \"square-ellipsis-vertical\": 57967,\n  \"square-ellipsis\": 57966,\n  \"square-envelope\": 61849,\n  \"square-equals\": 59062,\n  \"square-euro\": 59186,\n  \"square-eurozone\": 59175,\n  \"square-exclamation\": 62241,\n  \"square-f\": 57968,\n  \"square-florin\": 59159,\n  \"square-fragile\": 62619,\n  \"square-franc\": 59183,\n  \"square-full\": 62556,\n  \"square-g\": 57969,\n  \"square-guarani\": 59150,\n  \"square-h\": 61693,\n  \"square-half-horizontal\": 59406,\n  \"square-half-stroke-horizontal\": 59407,\n  \"square-half-stroke\": 59283,\n  \"square-half\": 59282,\n  \"square-heart\": 62664,\n  \"square-hryvnia\": 59152,\n  \"square-i\": 57970,\n  \"square-indian-rupee\": 59125,\n  \"square-info\": 62223,\n  \"square-j\": 57971,\n  \"square-k\": 57972,\n  \"square-kanban\": 58504,\n  \"square-kip\": 59149,\n  \"square-l\": 57973,\n  \"square-lari\": 59199,\n  \"square-left\": 62289,\n  \"square-lira\": 59111,\n  \"square-list\": 58505,\n  \"square-litecoin\": 59127,\n  \"square-m\": 57974,\n  \"square-malaysian-ringgit\": 59208,\n  \"square-manat\": 59140,\n  \"square-microphone\": 59265,\n  \"square-mill\": 59146,\n  \"square-minus\": 61766,\n  \"square-n\": 57975,\n  \"square-naira\": 59144,\n  \"square-nfi\": 58742,\n  \"square-norwegian-krone\": 59143,\n  \"square-o\": 57976,\n  \"square-p\": 57977,\n  \"square-parking-slash\": 62999,\n  \"square-parking\": 62784,\n  \"square-pen\": 61771,\n  \"square-person-confined\": 58743,\n  \"square-peruvian-soles\": 59158,\n  \"square-peseta\": 59114,\n  \"square-peso\": 59162,\n  \"square-phone-flip\": 63611,\n  \"square-phone-hangup\": 57978,\n  \"square-phone\": 61592,\n  \"square-plus\": 61694,\n  \"square-polish-zloty\": 59190,\n  \"square-poll-horizontal\": 63106,\n  \"square-poll-vertical\": 63105,\n  \"square-q\": 57979,\n  \"square-quarters\": 58446,\n  \"square-question\": 62205,\n  \"square-quote\": 58153,\n  \"square-r\": 57980,\n  \"square-renminbi\": 59197,\n  \"square-right\": 62290,\n  \"square-ring\": 58447,\n  \"square-root-alt\": 63128,\n  \"square-root-variable\": 63128,\n  \"square-root\": 63127,\n  \"square-rss\": 61763,\n  \"square-ruble\": 59128,\n  \"square-rupee\": 59157,\n  \"square-rupiah\": 59154,\n  \"square-s\": 57981,\n  \"square-share-nodes\": 61921,\n  \"square-shekel\": 59189,\n  \"square-sliders-vertical\": 62450,\n  \"square-sliders\": 62448,\n  \"square-small\": 57982,\n  \"square-star\": 57983,\n  \"square-sterling\": 59155,\n  \"square-swedish-krona\": 59164,\n  \"square-t\": 57984,\n  \"square-tenge\": 59185,\n  \"square-terminal\": 58154,\n  \"square-this-way-up\": 62623,\n  \"square-tugrik\": 59176,\n  \"square-turkish-lira\": 59167,\n  \"square-u\": 57985,\n  \"square-up-left\": 57986,\n  \"square-up-right\": 62304,\n  \"square-up\": 62291,\n  \"square-user\": 57987,\n  \"square-v\": 57988,\n  \"square-virus\": 58744,\n  \"square-w\": 57989,\n  \"square-wine-glass-crack\": 62619,\n  \"square-won\": 59145,\n  \"square-x\": 57990,\n  \"square-xmark\": 62163,\n  \"square-y\": 57991,\n  \"square-yen\": 59172,\n  \"square-z\": 57992,\n  \"square\": 61640,\n  \"squareapore-dollar\": 59187,\n  \"squid\": 58448,\n  \"squirrel\": 63258,\n  \"stadium\": 59084,\n  \"staff-aesculapius\": 58745,\n  \"staff-snake\": 58745,\n  \"staff\": 63259,\n  \"stair-car\": 59333,\n  \"stairs\": 57993,\n  \"stamp\": 62911,\n  \"standard-definition\": 57994,\n  \"stapler\": 58799,\n  \"star-and-crescent\": 63129,\n  \"star-christmas\": 63444,\n  \"star-circle\": 57635,\n  \"star-exclamation\": 62195,\n  \"star-half-alt\": 62912,\n  \"star-half-stroke\": 62912,\n  \"star-half\": 61577,\n  \"star-of-david\": 63130,\n  \"star-of-life\": 63009,\n  \"star-sharp-half-alt\": 57997,\n  \"star-sharp-half-stroke\": 57997,\n  \"star-sharp-half\": 57996,\n  \"star-sharp\": 57995,\n  \"star-shooting\": 57398,\n  \"star\": 61445,\n  \"starfighter-alt-advanced\": 57998,\n  \"starfighter-alt\": 57400,\n  \"starfighter-twin-ion-engine-advanced\": 57998,\n  \"starfighter-twin-ion-engine\": 57400,\n  \"starfighter\": 57399,\n  \"stars\": 63330,\n  \"starship-freighter\": 57402,\n  \"starship\": 57401,\n  \"steak\": 63524,\n  \"steering-wheel\": 63010,\n  \"step-backward\": 61512,\n  \"step-forward\": 61521,\n  \"sterling-sign\": 61780,\n  \"stethoscope\": 61681,\n  \"sticky-note\": 62025,\n  \"stocking\": 63445,\n  \"stomach\": 63011,\n  \"stool\": 59520,\n  \"stop-circle\": 62093,\n  \"stop\": 61517,\n  \"stopwatch-20\": 57455,\n  \"stopwatch\": 62194,\n  \"store-24\": 59291,\n  \"store-alt-slash\": 57456,\n  \"store-alt\": 62799,\n  \"store-lock\": 58534,\n  \"store-slash\": 57457,\n  \"store\": 62798,\n  \"strawberry\": 58155,\n  \"stream\": 62800,\n  \"street-view\": 61981,\n  \"stretcher\": 63525,\n  \"strikethrough\": 61644,\n  \"stroopwafel\": 62801,\n  \"subscript\": 61740,\n  \"subtitles-slash\": 58896,\n  \"subtitles\": 58895,\n  \"subtract\": 61544,\n  \"subway-tunnel\": 58019,\n  \"subway\": 62009,\n  \"suitcase-medical\": 61690,\n  \"suitcase-rolling\": 62913,\n  \"suitcase\": 61682,\n  \"sun-alt\": 57999,\n  \"sun-bright\": 57999,\n  \"sun-cloud\": 63331,\n  \"sun-dust\": 63332,\n  \"sun-haze\": 63333,\n  \"sun-plant-wilt\": 58746,\n  \"sun\": 61829,\n  \"sunglasses\": 63634,\n  \"sunrise\": 63334,\n  \"sunset\": 63335,\n  \"superscript\": 61739,\n  \"surprise\": 62914,\n  \"sushi-roll\": 58507,\n  \"sushi\": 58506,\n  \"swap-arrows\": 58890,\n  \"swap\": 58889,\n  \"swatchbook\": 62915,\n  \"swedish-krona-sign\": 59198,\n  \"swimmer\": 62916,\n  \"swimming-pool\": 62917,\n  \"sword-laser-alt\": 57404,\n  \"sword-laser\": 57403,\n  \"sword\": 63260,\n  \"swords-laser\": 57405,\n  \"swords\": 63261,\n  \"symbols\": 63598,\n  \"synagogue\": 63131,\n  \"sync-alt\": 62193,\n  \"sync\": 61473,\n  \"syringe\": 62606,\n  \"t-rex\": 58921,\n  \"t-shirt\": 62803,\n  \"t\": 84,\n  \"table-bar\": 59550,\n  \"table-cells-column-lock\": 59000,\n  \"table-cells-column-unlock\": 59024,\n  \"table-cells-columns\": 59052,\n  \"table-cells-header-lock\": 59054,\n  \"table-cells-header-unlock\": 59055,\n  \"table-cells-header\": 59053,\n  \"table-cells-large\": 61449,\n  \"table-cells-lock\": 59001,\n  \"table-cells-merge\": 59532,\n  \"table-cells-row-lock\": 59002,\n  \"table-cells-row-unlock\": 59025,\n  \"table-cells-rows\": 59056,\n  \"table-cells-split\": 59533,\n  \"table-cells-unlock\": 59026,\n  \"table-cells\": 61450,\n  \"table-columns-add-after\": 59534,\n  \"table-columns-add-before\": 59535,\n  \"table-columns-merge-next\": 59536,\n  \"table-columns-merge-previous\": 59537,\n  \"table-columns-remove-after\": 59538,\n  \"table-columns-remove-before\": 59539,\n  \"table-columns\": 61659,\n  \"table-dining\": 59522,\n  \"table-layout\": 58000,\n  \"table-list\": 61451,\n  \"table-picnic\": 58157,\n  \"table-pivot\": 58001,\n  \"table-rows-add-above\": 59540,\n  \"table-rows-add-below\": 59541,\n  \"table-rows-merge-next\": 59542,\n  \"table-rows-merge-previous\": 59543,\n  \"table-rows-remove-above\": 59544,\n  \"table-rows-remove-below\": 59545,\n  \"table-rows\": 58002,\n  \"table-slash\": 59546,\n  \"table-tennis-paddle-ball\": 62557,\n  \"table-tennis\": 62557,\n  \"table-tree\": 58003,\n  \"table\": 61646,\n  \"tablet-alt\": 62458,\n  \"tablet-android-alt\": 62460,\n  \"tablet-android\": 62459,\n  \"tablet-button\": 61706,\n  \"tablet-rugged\": 62607,\n  \"tablet-screen-button\": 62458,\n  \"tablet-screen\": 62460,\n  \"tablet\": 62459,\n  \"tablets\": 62608,\n  \"tachograph-digital\": 62822,\n  \"tachometer-alt-average\": 63012,\n  \"tachometer-alt-fast\": 63013,\n  \"tachometer-alt-fastest\": 63014,\n  \"tachometer-alt-slow\": 63015,\n  \"tachometer-alt-slowest\": 63016,\n  \"tachometer-alt\": 63013,\n  \"tachometer-average\": 63017,\n  \"tachometer-fast\": 63018,\n  \"tachometer-fastest\": 63019,\n  \"tachometer-slow\": 63020,\n  \"tachometer-slowest\": 63021,\n  \"tachometer\": 63018,\n  \"taco\": 63526,\n  \"tag\": 61483,\n  \"tags\": 61484,\n  \"tally-1\": 58004,\n  \"tally-2\": 58005,\n  \"tally-3\": 58006,\n  \"tally-4\": 58007,\n  \"tally-5\": 63132,\n  \"tally\": 63132,\n  \"tamale\": 58449,\n  \"tanakh\": 63527,\n  \"tank-recovery\": 59429,\n  \"tank-water\": 58450,\n  \"tape\": 62683,\n  \"tarp-droplet\": 58748,\n  \"tarp\": 58747,\n  \"tasks-alt\": 63528,\n  \"tasks\": 61614,\n  \"taurus\": 59471,\n  \"taxi-bus\": 58008,\n  \"taxi\": 61882,\n  \"teddy-bear\": 58319,\n  \"teeth-open\": 63023,\n  \"teeth\": 63022,\n  \"telescope\": 57406,\n  \"teletype-answer\": 58041,\n  \"teletype\": 61924,\n  \"television\": 62060,\n  \"temperature-0\": 62155,\n  \"temperature-1\": 62154,\n  \"temperature-2\": 62153,\n  \"temperature-3\": 62152,\n  \"temperature-4\": 62151,\n  \"temperature-arrow-down\": 57407,\n  \"temperature-arrow-up\": 57408,\n  \"temperature-down\": 57407,\n  \"temperature-empty\": 62155,\n  \"temperature-frigid\": 63336,\n  \"temperature-full\": 62151,\n  \"temperature-half\": 62153,\n  \"temperature-high\": 63337,\n  \"temperature-hot\": 63338,\n  \"temperature-list\": 58009,\n  \"temperature-low\": 63339,\n  \"temperature-quarter\": 62154,\n  \"temperature-slash\": 59339,\n  \"temperature-snow\": 63336,\n  \"temperature-sun\": 63338,\n  \"temperature-three-quarters\": 62152,\n  \"temperature-up\": 57408,\n  \"tenge-sign\": 63447,\n  \"tenge\": 63447,\n  \"tennis-ball\": 62558,\n  \"tent-arrow-down-to-line\": 58750,\n  \"tent-arrow-left-right\": 58751,\n  \"tent-arrow-turn-left\": 58752,\n  \"tent-arrows-down\": 58753,\n  \"tent-circus\": 59085,\n  \"tent-double-peak\": 58919,\n  \"tent\": 58749,\n  \"tents\": 58754,\n  \"terminal\": 61728,\n  \"text-height\": 61492,\n  \"text-size\": 63636,\n  \"text-slash\": 63613,\n  \"text-width\": 61493,\n  \"text\": 63635,\n  \"th-large\": 61449,\n  \"th-list\": 61451,\n  \"th\": 61450,\n  \"theater-masks\": 63024,\n  \"thermometer-0\": 62155,\n  \"thermometer-1\": 62154,\n  \"thermometer-2\": 62153,\n  \"thermometer-3\": 62152,\n  \"thermometer-4\": 62151,\n  \"thermometer-empty\": 62155,\n  \"thermometer-full\": 62151,\n  \"thermometer-half\": 62153,\n  \"thermometer-quarter\": 62154,\n  \"thermometer-three-quarters\": 62152,\n  \"thermometer\": 62609,\n  \"theta\": 63134,\n  \"thought-bubble\": 58158,\n  \"thumb-tack-slash\": 59023,\n  \"thumb-tack\": 61581,\n  \"thumbs-down\": 61797,\n  \"thumbs-up\": 61796,\n  \"thumbtack-angle-slash\": 59218,\n  \"thumbtack-angle\": 59217,\n  \"thumbtack-slash\": 59023,\n  \"thumbtack\": 61581,\n  \"thunderstorm-moon\": 63341,\n  \"thunderstorm-sun\": 63342,\n  \"thunderstorm\": 63340,\n  \"tick\": 58159,\n  \"ticket-airline\": 58010,\n  \"ticket-alt\": 62463,\n  \"ticket-perforated-plane\": 58010,\n  \"ticket-perforated\": 58942,\n  \"ticket-plane\": 58010,\n  \"ticket-simple\": 62463,\n  \"ticket\": 61765,\n  \"tickets-airline\": 58011,\n  \"tickets-perforated-plane\": 58011,\n  \"tickets-perforated\": 58943,\n  \"tickets-plane\": 58011,\n  \"tickets-simple\": 58969,\n  \"tickets\": 58968,\n  \"tilde\": 126,\n  \"timeline-arrow\": 58013,\n  \"timeline\": 58012,\n  \"timer\": 58014,\n  \"times-circle\": 61527,\n  \"times-hexagon\": 62190,\n  \"times-octagon\": 62192,\n  \"times-rectangle\": 62480,\n  \"times-square\": 62163,\n  \"times-to-slot\": 63345,\n  \"times\": 61453,\n  \"tint-slash\": 62919,\n  \"tint\": 61507,\n  \"tire-flat\": 63026,\n  \"tire-pressure-warning\": 63027,\n  \"tire-rugged\": 63028,\n  \"tire\": 63025,\n  \"tired\": 62920,\n  \"toggle-large-off\": 58800,\n  \"toggle-large-on\": 58801,\n  \"toggle-off\": 61956,\n  \"toggle-on\": 61957,\n  \"toilet-paper-alt\": 63262,\n  \"toilet-paper-blank-under\": 58016,\n  \"toilet-paper-blank\": 63262,\n  \"toilet-paper-check\": 58802,\n  \"toilet-paper-reverse-alt\": 58016,\n  \"toilet-paper-reverse-slash\": 58017,\n  \"toilet-paper-reverse\": 58016,\n  \"toilet-paper-slash\": 57458,\n  \"toilet-paper-under-slash\": 58017,\n  \"toilet-paper-under\": 58016,\n  \"toilet-paper-xmark\": 58803,\n  \"toilet-paper\": 63262,\n  \"toilet-portable\": 58755,\n  \"toilet\": 63448,\n  \"toilets-portable\": 58756,\n  \"tomato\": 58160,\n  \"tombstone-alt\": 63265,\n  \"tombstone-blank\": 63265,\n  \"tombstone\": 63264,\n  \"toolbox\": 62802,\n  \"tools\": 63449,\n  \"tooth\": 62921,\n  \"toothbrush\": 63029,\n  \"torah\": 63136,\n  \"torii-gate\": 63137,\n  \"tornado\": 63343,\n  \"tower-broadcast\": 62745,\n  \"tower-cell\": 58757,\n  \"tower-control\": 58018,\n  \"tower-observation\": 58758,\n  \"tower-receive\": 59555,\n  \"tractor\": 63266,\n  \"trademark\": 62044,\n  \"traffic-cone\": 63030,\n  \"traffic-light-go\": 63032,\n  \"traffic-light-slow\": 63033,\n  \"traffic-light-stop\": 63034,\n  \"traffic-light\": 63031,\n  \"trailer\": 57409,\n  \"train-stop\": 59423,\n  \"train-subway-tunnel\": 58019,\n  \"train-subway\": 62009,\n  \"train-track\": 58451,\n  \"train-tram\": 58804,\n  \"train-tunnel\": 58452,\n  \"train\": 62008,\n  \"tram\": 63450,\n  \"transducer\": 59430,\n  \"transformer-bolt\": 58020,\n  \"transgender-alt\": 61989,\n  \"transgender\": 61989,\n  \"transmission\": 59394,\n  \"transporter-1\": 57411,\n  \"transporter-2\": 57412,\n  \"transporter-3\": 57413,\n  \"transporter-4\": 58021,\n  \"transporter-5\": 58022,\n  \"transporter-6\": 58023,\n  \"transporter-7\": 58024,\n  \"transporter-empty\": 57414,\n  \"transporter\": 57410,\n  \"trash-alt-slash\": 58029,\n  \"trash-alt\": 62189,\n  \"trash-arrow-turn-left\": 63637,\n  \"trash-arrow-up\": 63529,\n  \"trash-can-arrow-turn-left\": 63638,\n  \"trash-can-arrow-up\": 63530,\n  \"trash-can-check\": 58025,\n  \"trash-can-clock\": 58026,\n  \"trash-can-list\": 58027,\n  \"trash-can-plus\": 58028,\n  \"trash-can-slash\": 58029,\n  \"trash-can-undo\": 63638,\n  \"trash-can-xmark\": 58030,\n  \"trash-can\": 62189,\n  \"trash-check\": 58031,\n  \"trash-circle\": 57638,\n  \"trash-clock\": 58032,\n  \"trash-list\": 58033,\n  \"trash-plus\": 58034,\n  \"trash-restore-alt\": 63530,\n  \"trash-restore\": 63529,\n  \"trash-slash\": 58035,\n  \"trash-undo-alt\": 63638,\n  \"trash-undo\": 63637,\n  \"trash-xmark\": 58036,\n  \"trash\": 61944,\n  \"treasure-chest\": 63267,\n  \"tree-alt\": 62464,\n  \"tree-christmas\": 63451,\n  \"tree-city\": 58759,\n  \"tree-deciduous\": 62464,\n  \"tree-decorated\": 63452,\n  \"tree-large\": 63453,\n  \"tree-palm\": 63531,\n  \"tree\": 61883,\n  \"trees\": 63268,\n  \"trian-balbot\": 58460,\n  \"triangle-circle-square\": 63007,\n  \"triangle-exclamation\": 61553,\n  \"triangle-instrument\": 63714,\n  \"triangle-music\": 63714,\n  \"triangle-person-digging\": 63581,\n  \"triangle\": 62188,\n  \"tricycle-adult\": 58820,\n  \"tricycle\": 58819,\n  \"trillium\": 58760,\n  \"triple-chevrons-down\": 59383,\n  \"triple-chevrons-left\": 59384,\n  \"triple-chevrons-right\": 59385,\n  \"triple-chevrons-up\": 59386,\n  \"trombone\": 59266,\n  \"trophy-alt\": 62187,\n  \"trophy-star\": 62187,\n  \"trophy\": 61585,\n  \"trowel-bricks\": 58762,\n  \"trowel\": 58761,\n  \"truck-arrow-right\": 58763,\n  \"truck-bolt\": 58320,\n  \"truck-clock\": 62604,\n  \"truck-container-empty\": 58037,\n  \"truck-container\": 62684,\n  \"truck-couch\": 62685,\n  \"truck-droplet\": 58764,\n  \"truck-fast\": 62603,\n  \"truck-field-un\": 58766,\n  \"truck-field\": 58765,\n  \"truck-fire\": 58970,\n  \"truck-flatbed\": 58038,\n  \"truck-front\": 58039,\n  \"truck-ladder\": 58967,\n  \"truck-loading\": 62686,\n  \"truck-medical\": 61689,\n  \"truck-monster\": 63035,\n  \"truck-moving\": 62687,\n  \"truck-pickup\": 63036,\n  \"truck-plane\": 58767,\n  \"truck-plow\": 63454,\n  \"truck-ramp-box\": 62686,\n  \"truck-ramp-couch\": 62685,\n  \"truck-ramp\": 62688,\n  \"truck-suv\": 59334,\n  \"truck-tow\": 58040,\n  \"truck-utensils\": 58920,\n  \"truck\": 61649,\n  \"trumpet\": 63715,\n  \"try\": 58043,\n  \"tshirt\": 62803,\n  \"tty-answer\": 58041,\n  \"tty\": 61924,\n  \"tugrik-sign\": 58042,\n  \"turkey\": 63269,\n  \"turkish-lira-sign\": 58043,\n  \"turkish-lira\": 58043,\n  \"turn-down-left\": 58161,\n  \"turn-down-right\": 58453,\n  \"turn-down\": 62398,\n  \"turn-left-down\": 58935,\n  \"turn-left-up\": 58936,\n  \"turn-left\": 58934,\n  \"turn-right\": 58937,\n  \"turn-up\": 62399,\n  \"turntable\": 63716,\n  \"turtle\": 63270,\n  \"tv-alt\": 62060,\n  \"tv-music\": 63718,\n  \"tv-retro\": 62465,\n  \"tv\": 62060,\n  \"typewriter\": 63719,\n  \"u-turn-down-left\": 59375,\n  \"u-turn-down-right\": 59376,\n  \"u-turn-left-down\": 59377,\n  \"u-turn-left-up\": 59378,\n  \"u-turn-right-down\": 59379,\n  \"u-turn-right-up\": 59380,\n  \"u-turn-up-left\": 59381,\n  \"u-turn-up-right\": 59382,\n  \"u-turn\": 59377,\n  \"u\": 85,\n  \"ufo-beam\": 57416,\n  \"ufo\": 57415,\n  \"umbrella-alt\": 58044,\n  \"umbrella-beach\": 62922,\n  \"umbrella-simple\": 58044,\n  \"umbrella\": 61673,\n  \"underline\": 61645,\n  \"undo-alt\": 62186,\n  \"undo\": 61666,\n  \"unicorn\": 63271,\n  \"unicycle\": 59335,\n  \"uniform-martial-arts\": 58321,\n  \"union\": 63138,\n  \"universal-access\": 62106,\n  \"university\": 61852,\n  \"unlink\": 61735,\n  \"unlock-alt\": 61758,\n  \"unlock-keyhole\": 61758,\n  \"unlock\": 61596,\n  \"unsorted\": 61660,\n  \"up-down-left-right\": 61618,\n  \"up-down\": 62264,\n  \"up-from-bracket\": 58768,\n  \"up-from-dotted-line\": 58454,\n  \"up-from-line\": 62278,\n  \"up-left\": 58045,\n  \"up-long-to-line\": 59078,\n  \"up-long\": 62220,\n  \"up-right-and-down-left-from-center\": 62500,\n  \"up-right-from-square\": 62301,\n  \"up-right\": 58046,\n  \"up-to-bracket\": 58990,\n  \"up-to-dotted-line\": 58455,\n  \"up-to-line\": 62285,\n  \"up\": 62295,\n  \"upload\": 61587,\n  \"usb-drive\": 63721,\n  \"usd-circle\": 62184,\n  \"usd-square\": 62185,\n  \"usd\": 36,\n  \"user-alien\": 57418,\n  \"user-alt-slash\": 62726,\n  \"user-alt\": 61447,\n  \"user-astronaut\": 62715,\n  \"user-beard-bolt\": 59017,\n  \"user-beard\": 59304,\n  \"user-bounty-hunter\": 58047,\n  \"user-chart\": 63139,\n  \"user-check\": 62716,\n  \"user-chef-hair-long\": 59305,\n  \"user-chef\": 58322,\n  \"user-circle-minus\": 59306,\n  \"user-circle-plus\": 59307,\n  \"user-circle\": 62141,\n  \"user-clock\": 62717,\n  \"user-cog\": 62718,\n  \"user-construction\": 63532,\n  \"user-cowboy\": 63722,\n  \"user-crown\": 63140,\n  \"user-dashed\": 59308,\n  \"user-doctor-hair-long\": 58457,\n  \"user-doctor-hair-mullet\": 59309,\n  \"user-doctor-hair\": 58456,\n  \"user-doctor-message\": 63534,\n  \"user-doctor\": 61680,\n  \"user-edit\": 62719,\n  \"user-friends\": 62720,\n  \"user-gear\": 62718,\n  \"user-graduate\": 62721,\n  \"user-group-crown\": 63141,\n  \"user-group-simple\": 58883,\n  \"user-group\": 62720,\n  \"user-hair-buns\": 58323,\n  \"user-hair-long\": 58459,\n  \"user-hair-mullet\": 58460,\n  \"user-hair\": 58458,\n  \"user-hard-hat\": 63532,\n  \"user-hat-tie-magnifying-glass\": 59311,\n  \"user-hat-tie\": 59310,\n  \"user-headset\": 63533,\n  \"user-helmet-safety\": 63532,\n  \"user-hoodie\": 59018,\n  \"user-injured\": 63272,\n  \"user-key\": 59312,\n  \"user-large-slash\": 62726,\n  \"user-large\": 61447,\n  \"user-lock\": 62722,\n  \"user-magnifying-glass\": 58821,\n  \"user-md-chat\": 63534,\n  \"user-md\": 61680,\n  \"user-message\": 59313,\n  \"user-microphone\": 59314,\n  \"user-minus\": 62723,\n  \"user-music\": 63723,\n  \"user-ninja\": 62724,\n  \"user-nurse-hair-long\": 58462,\n  \"user-nurse-hair\": 58461,\n  \"user-nurse\": 63535,\n  \"user-pen\": 62719,\n  \"user-pilot-hair-long\": 59315,\n  \"user-pilot-tie-hair-long\": 59316,\n  \"user-pilot-tie\": 58049,\n  \"user-pilot\": 58048,\n  \"user-plus\": 62004,\n  \"user-police-hair-long\": 59317,\n  \"user-police-tie-hair-long\": 59318,\n  \"user-police-tie\": 58164,\n  \"user-police\": 58163,\n  \"user-question\": 59319,\n  \"user-robot-xmarks\": 58535,\n  \"user-robot\": 57419,\n  \"user-secret\": 61979,\n  \"user-shakespeare\": 58050,\n  \"user-shield\": 62725,\n  \"user-sith\": 59320,\n  \"user-slash\": 62726,\n  \"user-tag\": 62727,\n  \"user-tie-hair-long\": 58464,\n  \"user-tie-hair-mullet\": 59321,\n  \"user-tie-hair\": 58463,\n  \"user-tie\": 62728,\n  \"user-times\": 62005,\n  \"user-unlock\": 57432,\n  \"user-viewfinder\": 59253,\n  \"user-visor\": 57420,\n  \"user-vneck-hair-long\": 58467,\n  \"user-vneck-hair-mullet\": 59322,\n  \"user-vneck-hair\": 58466,\n  \"user-vneck\": 58465,\n  \"user-xmark\": 62005,\n  \"user\": 61447,\n  \"users-between-lines\": 58769,\n  \"users-class\": 63037,\n  \"users-cog\": 62729,\n  \"users-crown\": 63141,\n  \"users-gear\": 62729,\n  \"users-line\": 58770,\n  \"users-medical\": 63536,\n  \"users-rays\": 58771,\n  \"users-rectangle\": 58772,\n  \"users-slash\": 57459,\n  \"users-viewfinder\": 58773,\n  \"users\": 61632,\n  \"utensil-fork\": 62179,\n  \"utensil-knife\": 62180,\n  \"utensil-spoon\": 62181,\n  \"utensils-alt\": 62182,\n  \"utensils-slash\": 58468,\n  \"utensils\": 62183,\n  \"utility-can\": 59549,\n  \"utility-pole-double\": 58052,\n  \"utility-pole\": 58051,\n  \"v\": 86,\n  \"vacuum-robot\": 57422,\n  \"vacuum\": 57421,\n  \"value-absolute\": 63142,\n  \"van-shuttle\": 62902,\n  \"van\": 59336,\n  \"vault\": 58053,\n  \"vcard\": 62139,\n  \"vector-circle\": 62957,\n  \"vector-polygon\": 62958,\n  \"vector-square\": 62959,\n  \"vent-damper\": 58469,\n  \"venus-double\": 61990,\n  \"venus-mars\": 61992,\n  \"venus\": 61985,\n  \"vest-patches\": 57478,\n  \"vest\": 57477,\n  \"vhs\": 63724,\n  \"vial-circle-check\": 58774,\n  \"vial-vertical\": 59234,\n  \"vial-virus\": 58775,\n  \"vial\": 62610,\n  \"vials\": 62611,\n  \"video-arrow-down-left\": 58056,\n  \"video-arrow-up-right\": 58057,\n  \"video-camera\": 61501,\n  \"video-circle\": 57643,\n  \"video-down-to-line\": 59254,\n  \"video-handheld\": 63656,\n  \"video-plus\": 62689,\n  \"video-question\": 59255,\n  \"video-slash\": 62690,\n  \"video\": 61501,\n  \"vihara\": 63143,\n  \"violin\": 63725,\n  \"virgo\": 59472,\n  \"virus-covid-slash\": 58537,\n  \"virus-covid\": 58536,\n  \"virus-slash\": 57461,\n  \"virus\": 57460,\n  \"viruses\": 57462,\n  \"voicemail\": 63639,\n  \"volcano\": 63344,\n  \"volleyball-ball\": 62559,\n  \"volleyball\": 62559,\n  \"volume-control-phone\": 62112,\n  \"volume-down\": 61479,\n  \"volume-high\": 61480,\n  \"volume-low\": 61479,\n  \"volume-medium\": 63144,\n  \"volume-mute\": 63145,\n  \"volume-off\": 61478,\n  \"volume-slash\": 62178,\n  \"volume-times\": 63145,\n  \"volume-up\": 61480,\n  \"volume-xmark\": 63145,\n  \"volume\": 63144,\n  \"vote-nay\": 63345,\n  \"vote-yea\": 63346,\n  \"vr-cardboard\": 63273,\n  \"w\": 87,\n  \"waffle\": 58470,\n  \"wagon-covered\": 63726,\n  \"walker\": 63537,\n  \"walkie-talkie\": 63727,\n  \"walking\": 62804,\n  \"wall-brick\": 58331,\n  \"wallet\": 62805,\n  \"wand-magic-sparkles\": 58058,\n  \"wand-magic\": 61648,\n  \"wand-sparkles\": 63275,\n  \"wand\": 63274,\n  \"wardrobe\": 59521,\n  \"warehouse-alt\": 62613,\n  \"warehouse-full\": 62613,\n  \"warehouse\": 62612,\n  \"warning\": 61553,\n  \"washer\": 63640,\n  \"washing-machine\": 63640,\n  \"watch-apple\": 58059,\n  \"watch-calculator\": 63728,\n  \"watch-fitness\": 63038,\n  \"watch-smart\": 58060,\n  \"watch\": 62177,\n  \"water-arrow-down\": 63348,\n  \"water-arrow-up\": 63349,\n  \"water-ladder\": 62917,\n  \"water-lower\": 63348,\n  \"water-rise\": 63349,\n  \"water-temp\": 59434,\n  \"water-temperature\": 59434,\n  \"water\": 63347,\n  \"watermelon-slice\": 58167,\n  \"wave-pulse\": 62968,\n  \"wave-sine\": 63641,\n  \"wave-square\": 63550,\n  \"wave-triangle\": 63642,\n  \"wave\": 58971,\n  \"waveform-circle\": 57645,\n  \"waveform-lines\": 63730,\n  \"waveform-path\": 63730,\n  \"waveform\": 63729,\n  \"waves-sine\": 58973,\n  \"web-awesome\": 59010,\n  \"webcam-slash\": 63539,\n  \"webcam\": 63538,\n  \"webhook\": 58837,\n  \"weight-hanging\": 62925,\n  \"weight-scale\": 62614,\n  \"weight\": 62614,\n  \"whale\": 63276,\n  \"wheat-alt\": 58061,\n  \"wheat-awn-circle-exclamation\": 58776,\n  \"wheat-awn-slash\": 58168,\n  \"wheat-awn\": 58061,\n  \"wheat-slash\": 58169,\n  \"wheat\": 63277,\n  \"wheelchair-alt\": 58062,\n  \"wheelchair-move\": 58062,\n  \"wheelchair\": 61843,\n  \"whiskey-glass-ice\": 63393,\n  \"whiskey-glass\": 63392,\n  \"whistle\": 62560,\n  \"wifi-1\": 63146,\n  \"wifi-2\": 63147,\n  \"wifi-3\": 61931,\n  \"wifi-exclamation\": 58063,\n  \"wifi-fair\": 63147,\n  \"wifi-slash\": 63148,\n  \"wifi-strong\": 61931,\n  \"wifi-weak\": 63146,\n  \"wifi\": 61931,\n  \"wind-circle-exclamation\": 63350,\n  \"wind-turbine\": 63643,\n  \"wind-warning\": 63350,\n  \"wind\": 63278,\n  \"window-alt\": 62479,\n  \"window-close\": 62480,\n  \"window-flip\": 62479,\n  \"window-frame-open\": 57424,\n  \"window-frame\": 57423,\n  \"window-maximize\": 62160,\n  \"window-minimize\": 62161,\n  \"window-restore\": 62162,\n  \"window\": 62478,\n  \"windsock\": 63351,\n  \"wine-bottle\": 63279,\n  \"wine-glass-alt\": 62926,\n  \"wine-glass-crack\": 62651,\n  \"wine-glass-empty\": 62926,\n  \"wine-glass\": 62691,\n  \"wireless\": 59359,\n  \"won-sign\": 61785,\n  \"won\": 61785,\n  \"worm\": 58777,\n  \"wreath-laurel\": 58834,\n  \"wreath\": 63458,\n  \"wrench-simple\": 58065,\n  \"wrench\": 61613,\n  \"x-ray\": 62615,\n  \"x\": 88,\n  \"xmark-circle\": 61527,\n  \"xmark-hexagon\": 62190,\n  \"xmark-large\": 58779,\n  \"xmark-octagon\": 62192,\n  \"xmark-square\": 62163,\n  \"xmark-to-slot\": 63345,\n  \"xmark\": 61453,\n  \"xmarks-lines\": 58778,\n  \"y\": 89,\n  \"yen-sign\": 61783,\n  \"yen\": 61783,\n  \"yin-yang\": 63149,\n  \"z\": 90,\n  \"zap\": 61671,\n  \"zzz\": 63616\n}"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-regular/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontawesome-pro-sharp-duotone-regular\",\n  \"version\": \"0.2.0\",\n  \"description\": \"Fontawesome Pro Sharp Duotone Regular font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"fontawesome-pro-sharp-duotone-regular\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/fontawesome-pro-sharp-duotone-regular\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-regular/react-native-vector-icons-fontawesome-pro-sharp-duotone-regular.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-fontawesome-pro-sharp-duotone-regular'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\n\n  s.script_phase = {\n    name: 'Copy Custom Fonts',\n    execution_position: :after_compile,\n    script: <<~SCRIPT\n      set -e\n\n      HEAD=\"(RNVI-fontawesome-pro-sharp-duotone-regular)\"\n\n      echo \"${HEAD} START_COPY_FONTS\"\n\n      echo \"${HEAD} PWD: $(pwd)\"\n\n      #\n      # Find the custom font Directory\n      #\n\n      # Assume the project root is always two directories above the POD_ROOT\n      echo \"${HEAD} PODS_ROOT: $PODS_ROOT\"\n\n      PROJECT_ROOT=\"${PODS_ROOT}/../..\"\n      echo \"${HEAD} PROJECT_ROOT: $PROJECT_ROOT\"\n\n      cd $PROJECT_ROOT\n      FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/\"//g')\n      if [ -z \"$FONTS_DIR\" ]; then\n        FONTS_DIR=\"rnvi-fonts\"\n      fi\n      echo \"${HEAD} FONTS_DIR: $FONTS_DIR\"\n\n      FONTS_DIR=\"${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-sharp-duotone-regular\"\n      if [ ! -d \"$FONTS_DIR\" ]; then\n        echo \"${HEAD} $FONTS_DIR not found\"\n        exit 0\n      fi\n\n      #\n      # Find the destination we copy to\n      #\n\n      echo \"${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR\"\n      XCODE_DIR=$(ls -d \"$PODS_CONFIGURATION_BUILD_DIR\"/*.app)\n      echo \"${HEAD} XCODE_DIR: $XCODE_DIR\"\n      if [ -z \"$XCODE_DIR\" ]; then\n        echo \"Could not find XCODE_DIR to copy fonts to\"\n        exit 1\n      fi\n\n      DEST_DIR=\"${XCODE_DIR}\"\n      mkdir -p \"$DEST_DIR\"\n\n      #\n      # Copy the fonts\n      #\n\n      echo \"${HEAD} Copying the following files to $DEST_DIR\"\n      ls \"$FONTS_DIR\" | sed \"s/^/${HEAD} /\"\n\n      rsync -avr --copy-links --no-relative $FONTS_DIR/ \"$DEST_DIR\"\n\n      echo \"${HEAD} END:RNVI_COPY_FONTS\"\n    SCRIPT\n  }\nend\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-regular/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProSharpDuotoneRegular icon set component.\n * Usage: <FontAwesomeProSharpDuotoneRegular name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProSharpDuotoneRegular.json';\n\nexport const FontAwesomeProSharpDuotoneRegular = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7SharpDuotone-Regular',\n  fontFileName: 'fa-sharp-duotone-regular-400.ttf',\n});\n\nexport type FontAwesomeProSharpDuotoneRegularIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProSharpDuotoneRegular;\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-regular/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProSharpDuotoneRegular icon set component.\n * Usage: <FontAwesomeProSharpDuotoneRegular name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProSharpDuotoneRegular.json';\n\nexport const FontAwesomeProSharpDuotoneRegular = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7SharpDuotone-Regular',\n  fontFileName: 'fa-sharp-duotone-regular-400.ttf',\n});\n\nexport type FontAwesomeProSharpDuotoneRegularIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProSharpDuotoneRegular;\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-regular/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-regular/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-solid/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontawesome-pro-sharp-duotone-solid\",\n    \"upstreamFont\": {\n      \"registry\": \"https://npm.fontawesome.com\",\n      \"packageName\": \"@fortawesome/fontawesome-pro\",\n      \"versionOnly\": true\n    },\n    \"copyCustomFonts\": true,\n    \"className\": \"FontAwesomeProSharpDuotoneSolid\",\n    \"postScriptName\": \"FontAwesome7SharpDuotone-Solid\",\n    \"fontFileName\": \"fa-sharp-duotone-solid-900\",\n    \"buildSteps\": {\n      \"preScript\": {\n        \"script\": \"../fontawesome-common/scripts/fetch-pro.sh 7\"\n      },\n      \"glyphmap\": {\n        \"location\": \"fa/pro/css/all.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fa-\"\n      },\n      \"postScript\": {\n        \"script\": \"../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProSharpDuotoneSolid.json fa/pro/svgs/sharp-duotone-solid\\nrm -rf fa\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"0.1.0\",\n        \"upstream\": \"7.1.0\"\n      },\n      {\n        \"rnvi\": \"0.1.1\",\n        \"upstream\": \"7.2.0\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-solid/CHANGELOG.md",
    "content": "## 0.2.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 0.1.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 0.1.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🩹 Fixes\n\n- upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 0.1.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 0.1.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-solid/README.md",
    "content": "# React Native Vector Icons - Fontawesome Pro Sharp Duotone Solid\n\nFontawesome Pro Sharp Duotone Solid font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n> [!IMPORTANT]\n> This package does not include the fonts. You must provide them yourself.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/fontawesome-pro-sharp-duotone-solid\n```\n\n## Custom Fonts\n\nThis package requires you to provide the font files. Place your `.ttf` font\nfile in the following location:\n\n```\nrnvi-fonts/fontawesome-pro-sharp-duotone-solid/fa-sharp-duotone-solid-900.ttf\n```\n\nThe font will be automatically copied during the build process for both iOS and\nAndroid.\n\n## Usage\n\n```jsx\nimport { FontAwesomeProSharpDuotoneSolid } from '@react-native-vector-icons/fontawesome-pro-sharp-duotone-solid';\n\n// ...\n\n<FontAwesomeProSharpDuotoneSolid name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 0.1.0 | 7.1.0 |\n| &gt; 0.1.1 | 7.2.0 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-solid/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.fontawesome_pro_sharp_duotone_solid\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFontAwesomeProSharpDuotoneSolid\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.fontawesome_pro_sharp_duotone_solid\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-fontawesome-pro-sharp-duotone-solid\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-duotone-solid/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-sharp-duotone-solid) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n\ntask copyExtraFonts(type: Copy) {\n  from \"${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-sharp-duotone-solid\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-duotone-solid/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-sharp-duotone-solid) Copying custom font: ${it.file}\" }\n}\n\npreBuild.dependsOn(copyExtraFonts)\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-solid/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.fontawesome_pro_sharp_duotone_solid\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-solid/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-solid/android/src/main/java/VectorIconsFontAwesomeProSharpDuotoneSolidPackage.kt",
    "content": "package com.reactnativevectoricons.fontawesome_pro_sharp_duotone_solid\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFontAwesomeProSharpDuotoneSolidPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-solid/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-solid/glyphmaps/FontAwesomeProSharpDuotoneSolid.json",
    "content": "{\n  \"0\": 48,\n  \"1\": 49,\n  \"2\": 50,\n  \"3\": 51,\n  \"4\": 52,\n  \"5\": 53,\n  \"6\": 54,\n  \"7\": 55,\n  \"8\": 56,\n  \"9\": 57,\n  \"100\": 58396,\n  \"00\": 58471,\n  \"360-degrees\": 58076,\n  \"a\": 65,\n  \"abacus\": 63040,\n  \"accent-grave\": 96,\n  \"acorn\": 63150,\n  \"ad\": 63041,\n  \"add\": 43,\n  \"address-book\": 62137,\n  \"address-card\": 62139,\n  \"adjust\": 61506,\n  \"aeropress\": 59435,\n  \"air-conditioner\": 63732,\n  \"air-freshener\": 62928,\n  \"airplay-audio\": 59259,\n  \"airplay\": 57481,\n  \"alarm-clock\": 62286,\n  \"alarm-exclamation\": 63555,\n  \"alarm-minus\": 59395,\n  \"alarm-plus\": 63556,\n  \"alarm-snooze\": 63557,\n  \"album-circle-plus\": 58508,\n  \"album-circle-user\": 58509,\n  \"album-collection-circle-plus\": 58510,\n  \"album-collection-circle-user\": 58511,\n  \"album-collection\": 63648,\n  \"album\": 63647,\n  \"alicorn\": 63152,\n  \"alien-8bit\": 63734,\n  \"alien-monster\": 63734,\n  \"alien\": 63733,\n  \"align-center\": 61495,\n  \"align-justify\": 61497,\n  \"align-left\": 61494,\n  \"align-right\": 61496,\n  \"align-slash\": 63558,\n  \"allergies\": 62561,\n  \"almost-equal-to\": 59416,\n  \"alt\": 57482,\n  \"ambulance\": 61689,\n  \"american-sign-language-interpreting\": 62115,\n  \"amp-guitar\": 63649,\n  \"ampersand\": 38,\n  \"analytics\": 63043,\n  \"anchor-circle-check\": 58538,\n  \"anchor-circle-exclamation\": 58539,\n  \"anchor-circle-xmark\": 58540,\n  \"anchor-lock\": 58541,\n  \"anchor\": 61757,\n  \"angel\": 63353,\n  \"angle-90\": 57485,\n  \"angle-double-down\": 61699,\n  \"angle-double-left\": 61696,\n  \"angle-double-right\": 61697,\n  \"angle-double-up\": 61698,\n  \"angle-down\": 61703,\n  \"angle-left\": 61700,\n  \"angle-right\": 61701,\n  \"angle-up\": 61702,\n  \"angle\": 57484,\n  \"angles-down\": 61699,\n  \"angles-left\": 61696,\n  \"angles-right\": 61697,\n  \"angles-up-down\": 58893,\n  \"angles-up\": 61698,\n  \"angry\": 62806,\n  \"ankh\": 63044,\n  \"ant\": 59008,\n  \"apartment\": 58472,\n  \"aperture\": 58079,\n  \"apostrophe\": 39,\n  \"apple-alt\": 62929,\n  \"apple-core\": 57487,\n  \"apple-crate\": 63153,\n  \"apple-whole\": 62929,\n  \"aquarius\": 59461,\n  \"archive\": 61831,\n  \"archway\": 62807,\n  \"area-chart\": 61950,\n  \"aries\": 59462,\n  \"arrow-alt-circle-down\": 62296,\n  \"arrow-alt-circle-left\": 62297,\n  \"arrow-alt-circle-right\": 62298,\n  \"arrow-alt-circle-up\": 62299,\n  \"arrow-alt-down\": 62292,\n  \"arrow-alt-from-bottom\": 62278,\n  \"arrow-alt-from-left\": 62279,\n  \"arrow-alt-from-right\": 62280,\n  \"arrow-alt-from-top\": 62281,\n  \"arrow-alt-left\": 62293,\n  \"arrow-alt-right\": 62294,\n  \"arrow-alt-square-down\": 62288,\n  \"arrow-alt-square-left\": 62289,\n  \"arrow-alt-square-right\": 62290,\n  \"arrow-alt-square-up\": 62291,\n  \"arrow-alt-to-bottom\": 62282,\n  \"arrow-alt-to-left\": 62283,\n  \"arrow-alt-to-right\": 62284,\n  \"arrow-alt-to-top\": 62285,\n  \"arrow-alt-up\": 62295,\n  \"arrow-archery\": 59449,\n  \"arrow-circle-down\": 61611,\n  \"arrow-circle-left\": 61608,\n  \"arrow-circle-right\": 61609,\n  \"arrow-circle-up\": 61610,\n  \"arrow-down-1-9\": 61794,\n  \"arrow-down-9-1\": 63622,\n  \"arrow-down-a-z\": 61789,\n  \"arrow-down-arrow-up\": 63619,\n  \"arrow-down-big-small\": 63628,\n  \"arrow-down-from-arc\": 58900,\n  \"arrow-down-from-bracket\": 58983,\n  \"arrow-down-from-dotted-line\": 57488,\n  \"arrow-down-from-line\": 62277,\n  \"arrow-down-left-and-arrow-up-right-to-center\": 57490,\n  \"arrow-down-left\": 57489,\n  \"arrow-down-long-to-line\": 59063,\n  \"arrow-down-long\": 61813,\n  \"arrow-down-right\": 57491,\n  \"arrow-down-short-wide\": 63620,\n  \"arrow-down-small-big\": 63629,\n  \"arrow-down-square-triangle\": 63625,\n  \"arrow-down-to-arc\": 58542,\n  \"arrow-down-to-bracket\": 57492,\n  \"arrow-down-to-dotted-line\": 57493,\n  \"arrow-down-to-line\": 62269,\n  \"arrow-down-to-square\": 57494,\n  \"arrow-down-triangle-square\": 63624,\n  \"arrow-down-up-across-line\": 58543,\n  \"arrow-down-up-lock\": 58544,\n  \"arrow-down-wide-short\": 61792,\n  \"arrow-down-z-a\": 63617,\n  \"arrow-down\": 61539,\n  \"arrow-from-bottom\": 62274,\n  \"arrow-from-left\": 62275,\n  \"arrow-from-right\": 62276,\n  \"arrow-from-top\": 62277,\n  \"arrow-left-arrow-right\": 59064,\n  \"arrow-left-from-arc\": 58901,\n  \"arrow-left-from-bracket\": 58984,\n  \"arrow-left-from-dotted-line\": 59065,\n  \"arrow-left-from-line\": 62276,\n  \"arrow-left-long-to-line\": 58324,\n  \"arrow-left-long\": 61815,\n  \"arrow-left-rotate\": 61666,\n  \"arrow-left-to-arc\": 58902,\n  \"arrow-left-to-bracket\": 58985,\n  \"arrow-left-to-dotted-line\": 59066,\n  \"arrow-left-to-line\": 62270,\n  \"arrow-left\": 61536,\n  \"arrow-pointer\": 62021,\n  \"arrow-progress\": 58847,\n  \"arrow-right-arrow-left\": 61676,\n  \"arrow-right-from-arc\": 58545,\n  \"arrow-right-from-bracket\": 61579,\n  \"arrow-right-from-dotted-line\": 59067,\n  \"arrow-right-from-file\": 62830,\n  \"arrow-right-from-line\": 62275,\n  \"arrow-right-long-to-line\": 58325,\n  \"arrow-right-long\": 61816,\n  \"arrow-right-rotate\": 61470,\n  \"arrow-right-to-arc\": 58546,\n  \"arrow-right-to-bracket\": 61584,\n  \"arrow-right-to-city\": 58547,\n  \"arrow-right-to-dotted-line\": 59068,\n  \"arrow-right-to-file\": 62831,\n  \"arrow-right-to-line\": 62272,\n  \"arrow-right\": 61537,\n  \"arrow-rotate-back\": 61666,\n  \"arrow-rotate-backward\": 61666,\n  \"arrow-rotate-forward\": 61470,\n  \"arrow-rotate-left-10\": 59446,\n  \"arrow-rotate-left-15\": 59526,\n  \"arrow-rotate-left-30\": 59527,\n  \"arrow-rotate-left\": 61666,\n  \"arrow-rotate-right-10\": 59447,\n  \"arrow-rotate-right-15\": 59528,\n  \"arrow-rotate-right-30\": 59529,\n  \"arrow-rotate-right\": 61470,\n  \"arrow-square-down\": 62265,\n  \"arrow-square-left\": 62266,\n  \"arrow-square-right\": 62267,\n  \"arrow-square-up\": 62268,\n  \"arrow-to-bottom\": 62269,\n  \"arrow-to-left\": 62270,\n  \"arrow-to-right\": 62272,\n  \"arrow-to-top\": 62273,\n  \"arrow-trend-down\": 57495,\n  \"arrow-trend-up\": 57496,\n  \"arrow-turn-down-left\": 58081,\n  \"arrow-turn-down-right\": 58326,\n  \"arrow-turn-down\": 61769,\n  \"arrow-turn-left-down\": 58931,\n  \"arrow-turn-left-up\": 58932,\n  \"arrow-turn-left\": 58930,\n  \"arrow-turn-right\": 58933,\n  \"arrow-turn-up\": 61768,\n  \"arrow-u-turn-down-left\": 59367,\n  \"arrow-u-turn-down-right\": 59368,\n  \"arrow-u-turn-left-down\": 59369,\n  \"arrow-u-turn-left-up\": 59370,\n  \"arrow-u-turn-right-down\": 59371,\n  \"arrow-u-turn-right-up\": 59372,\n  \"arrow-u-turn-up-left\": 59373,\n  \"arrow-u-turn-up-right\": 59374,\n  \"arrow-up-1-9\": 61795,\n  \"arrow-up-9-1\": 63623,\n  \"arrow-up-a-z\": 61790,\n  \"arrow-up-arrow-down\": 57497,\n  \"arrow-up-big-small\": 63630,\n  \"arrow-up-from-arc\": 58548,\n  \"arrow-up-from-bracket\": 57498,\n  \"arrow-up-from-dotted-line\": 57499,\n  \"arrow-up-from-ground-water\": 58549,\n  \"arrow-up-from-line\": 62274,\n  \"arrow-up-from-square\": 57500,\n  \"arrow-up-from-water-pump\": 58550,\n  \"arrow-up-left-from-circle\": 57502,\n  \"arrow-up-left\": 57501,\n  \"arrow-up-long-to-line\": 59069,\n  \"arrow-up-long\": 61814,\n  \"arrow-up-right-and-arrow-down-left-from-center\": 57504,\n  \"arrow-up-right-dots\": 58551,\n  \"arrow-up-right-from-square\": 61582,\n  \"arrow-up-right\": 57503,\n  \"arrow-up-short-wide\": 63621,\n  \"arrow-up-small-big\": 63631,\n  \"arrow-up-square-triangle\": 63627,\n  \"arrow-up-to-arc\": 58903,\n  \"arrow-up-to-bracket\": 58986,\n  \"arrow-up-to-dotted-line\": 57505,\n  \"arrow-up-to-line\": 62273,\n  \"arrow-up-triangle-square\": 63626,\n  \"arrow-up-wide-short\": 61793,\n  \"arrow-up-z-a\": 63618,\n  \"arrow-up\": 61538,\n  \"arrows-alt-h\": 62263,\n  \"arrows-alt-v\": 62264,\n  \"arrows-alt\": 61618,\n  \"arrows-cross\": 57506,\n  \"arrows-down-to-line\": 58552,\n  \"arrows-down-to-people\": 58553,\n  \"arrows-from-dotted-line\": 57507,\n  \"arrows-from-line\": 57508,\n  \"arrows-h\": 61566,\n  \"arrows-left-right-to-line\": 58554,\n  \"arrows-left-right\": 61566,\n  \"arrows-maximize\": 62237,\n  \"arrows-minimize\": 57509,\n  \"arrows-repeat-1\": 62310,\n  \"arrows-repeat\": 62308,\n  \"arrows-retweet\": 62305,\n  \"arrows-rotate-reverse\": 58928,\n  \"arrows-rotate\": 61473,\n  \"arrows-spin\": 58555,\n  \"arrows-split-up-and-left\": 58556,\n  \"arrows-to-circle\": 58557,\n  \"arrows-to-dot\": 58558,\n  \"arrows-to-dotted-line\": 57510,\n  \"arrows-to-eye\": 58559,\n  \"arrows-to-line\": 57511,\n  \"arrows-turn-right\": 58560,\n  \"arrows-turn-to-dots\": 58561,\n  \"arrows-up-down-left-right\": 61511,\n  \"arrows-up-down\": 61565,\n  \"arrows-up-to-line\": 58562,\n  \"arrows-v\": 61565,\n  \"arrows\": 61511,\n  \"asl-interpreting\": 62115,\n  \"assistive-listening-systems\": 62114,\n  \"asterisk\": 42,\n  \"at\": 64,\n  \"atlas\": 62808,\n  \"atom-alt\": 62931,\n  \"atom-simple\": 62931,\n  \"atom\": 62930,\n  \"audio-description-slash\": 57512,\n  \"audio-description\": 62110,\n  \"austral-sign\": 57513,\n  \"australian-dollar-sign\": 59134,\n  \"automobile\": 61881,\n  \"avocado\": 57514,\n  \"award-simple\": 57515,\n  \"award\": 62809,\n  \"axe-battle\": 63155,\n  \"axe\": 63154,\n  \"b\": 66,\n  \"baby-carriage\": 63357,\n  \"baby\": 63356,\n  \"backpack\": 62932,\n  \"backspace\": 62810,\n  \"backward-fast\": 61513,\n  \"backward-step\": 61512,\n  \"backward\": 61514,\n  \"bacon\": 63461,\n  \"bacteria\": 57433,\n  \"bacterium\": 57434,\n  \"badge-check\": 62262,\n  \"badge-dollar\": 63045,\n  \"badge-percent\": 63046,\n  \"badge-sheriff\": 63650,\n  \"badge\": 62261,\n  \"badger-honey\": 63156,\n  \"badminton\": 58170,\n  \"bag-seedling\": 58866,\n  \"bag-shopping-minus\": 58960,\n  \"bag-shopping-plus\": 58961,\n  \"bag-shopping\": 62096,\n  \"bagel\": 58327,\n  \"bags-shopping\": 63559,\n  \"baguette\": 58328,\n  \"bahai\": 63078,\n  \"baht-sign\": 57516,\n  \"balance-scale-left\": 62741,\n  \"balance-scale-right\": 62742,\n  \"balance-scale\": 62030,\n  \"ball-pile\": 63358,\n  \"ball-yarn\": 59086,\n  \"balloon\": 58083,\n  \"balloons\": 58084,\n  \"ballot-check\": 63283,\n  \"ballot\": 63282,\n  \"ban-bug\": 63481,\n  \"ban-parking\": 62998,\n  \"ban-smoking\": 62797,\n  \"ban\": 61534,\n  \"banana\": 58085,\n  \"band-aid\": 62562,\n  \"bandage\": 62562,\n  \"bangladeshi-taka-sign\": 58086,\n  \"banjo\": 63651,\n  \"bank\": 61852,\n  \"bar-chart\": 61568,\n  \"bar-progress-empty\": 59045,\n  \"bar-progress-full\": 59046,\n  \"bar-progress-half\": 59047,\n  \"bar-progress-quarter\": 59048,\n  \"bar-progress-three-quarters\": 59049,\n  \"bar-progress\": 59044,\n  \"barcode-alt\": 62563,\n  \"barcode-read\": 62564,\n  \"barcode-scan\": 62565,\n  \"barcode\": 61482,\n  \"barn-silo\": 63588,\n  \"barn\": 59079,\n  \"bars-filter\": 57517,\n  \"bars-progress\": 63528,\n  \"bars-sort\": 57518,\n  \"bars-staggered\": 62800,\n  \"bars\": 61641,\n  \"baseball-ball\": 62515,\n  \"baseball-bat-ball\": 62514,\n  \"baseball-bat\": 59365,\n  \"baseball\": 62515,\n  \"basket-shopping-minus\": 58962,\n  \"basket-shopping-plus\": 58963,\n  \"basket-shopping-simple\": 57519,\n  \"basket-shopping\": 62097,\n  \"basketball-ball\": 62516,\n  \"basketball-hoop\": 62517,\n  \"basketball\": 62516,\n  \"bat\": 63157,\n  \"bath\": 62157,\n  \"bathtub\": 62157,\n  \"battery-0\": 62020,\n  \"battery-1\": 57521,\n  \"battery-2\": 62019,\n  \"battery-3\": 62018,\n  \"battery-4\": 62017,\n  \"battery-5\": 62016,\n  \"battery-bolt\": 62326,\n  \"battery-car\": 62943,\n  \"battery-empty\": 62020,\n  \"battery-exclamation\": 57520,\n  \"battery-full\": 62016,\n  \"battery-half\": 62018,\n  \"battery-low\": 57521,\n  \"battery-quarter\": 62019,\n  \"battery-slash\": 62327,\n  \"battery-three-quarters\": 62017,\n  \"battery\": 62016,\n  \"bed-alt\": 63735,\n  \"bed-bunk\": 63736,\n  \"bed-empty\": 63737,\n  \"bed-front\": 63735,\n  \"bed-pulse\": 62599,\n  \"bed\": 62006,\n  \"bee\": 57522,\n  \"beer-foam\": 57523,\n  \"beer-mug-empty\": 61692,\n  \"beer-mug\": 57523,\n  \"beer\": 61692,\n  \"bell-concierge\": 62818,\n  \"bell-exclamation\": 63560,\n  \"bell-on\": 63738,\n  \"bell-plus\": 63561,\n  \"bell-ring\": 58924,\n  \"bell-school-slash\": 62934,\n  \"bell-school\": 62933,\n  \"bell-slash\": 61942,\n  \"bell\": 61683,\n  \"bells\": 63359,\n  \"bench-tree\": 58087,\n  \"betamax\": 63652,\n  \"bezier-curve\": 62811,\n  \"bible\": 63047,\n  \"bicep\": 59490,\n  \"bicycle\": 61958,\n  \"biking-mountain\": 63563,\n  \"biking\": 63562,\n  \"billboard\": 58829,\n  \"bin-bottles-recycle\": 58870,\n  \"bin-bottles\": 58869,\n  \"bin-recycle\": 58871,\n  \"bin\": 59235,\n  \"binary-circle-check\": 58172,\n  \"binary-lock\": 58173,\n  \"binary-slash\": 58174,\n  \"binary\": 58171,\n  \"binoculars\": 61925,\n  \"biohazard\": 63360,\n  \"bird\": 58473,\n  \"birthday-cake\": 61949,\n  \"bitcoin-sign\": 57524,\n  \"blackboard\": 62747,\n  \"blanket-fire\": 58330,\n  \"blanket\": 62616,\n  \"blender-phone\": 63158,\n  \"blender\": 62743,\n  \"blind\": 62109,\n  \"blinds-open\": 63740,\n  \"blinds-raised\": 63741,\n  \"blinds\": 63739,\n  \"block-brick-fire\": 58332,\n  \"block-brick\": 58331,\n  \"block-question\": 58333,\n  \"block-quote\": 57525,\n  \"block\": 58474,\n  \"blog\": 63361,\n  \"blueberries\": 58088,\n  \"bluetooth\": 62099,\n  \"bold\": 61490,\n  \"bolt-auto\": 57526,\n  \"bolt-lightning\": 57527,\n  \"bolt-slash\": 57528,\n  \"bolt\": 61671,\n  \"bomb\": 61922,\n  \"bone-break\": 62936,\n  \"bone\": 62935,\n  \"bong\": 62812,\n  \"book-alt\": 62937,\n  \"book-arrow-right\": 57529,\n  \"book-arrow-up\": 57530,\n  \"book-atlas\": 62808,\n  \"book-bible\": 63047,\n  \"book-blank\": 62937,\n  \"book-bookmark\": 57531,\n  \"book-circle-arrow-right\": 57532,\n  \"book-circle-arrow-up\": 57533,\n  \"book-circle\": 57599,\n  \"book-copy\": 57534,\n  \"book-dead\": 63159,\n  \"book-font\": 57535,\n  \"book-heart\": 62617,\n  \"book-journal-whills\": 63082,\n  \"book-law\": 57537,\n  \"book-medical\": 63462,\n  \"book-open-alt\": 57536,\n  \"book-open-cover\": 57536,\n  \"book-open-lines\": 59219,\n  \"book-open-reader\": 62938,\n  \"book-open\": 62744,\n  \"book-quran\": 63111,\n  \"book-reader\": 62938,\n  \"book-section\": 57537,\n  \"book-skull\": 63159,\n  \"book-sparkles\": 63160,\n  \"book-spells\": 63160,\n  \"book-spine\": 59220,\n  \"book-tanakh\": 63527,\n  \"book-user\": 63463,\n  \"book\": 61485,\n  \"bookmark-circle\": 57600,\n  \"bookmark-plus\": 59221,\n  \"bookmark-slash\": 57538,\n  \"bookmark\": 61486,\n  \"books-medical\": 63464,\n  \"books\": 62939,\n  \"boombox\": 63653,\n  \"boot-heeled\": 58175,\n  \"boot\": 63362,\n  \"booth-curtain\": 63284,\n  \"border-all\": 63564,\n  \"border-bottom-right\": 63572,\n  \"border-bottom\": 63565,\n  \"border-center-h\": 63644,\n  \"border-center-v\": 63645,\n  \"border-inner\": 63566,\n  \"border-left\": 63567,\n  \"border-none\": 63568,\n  \"border-outer\": 63569,\n  \"border-right\": 63570,\n  \"border-style-alt\": 63572,\n  \"border-style\": 63571,\n  \"border-top-left\": 63571,\n  \"border-top\": 63573,\n  \"bore-hole\": 58563,\n  \"bottle-baby\": 58995,\n  \"bottle-droplet\": 58564,\n  \"bottle-water\": 58565,\n  \"bow-archery\": 59450,\n  \"bow-arrow\": 63161,\n  \"bowl-chopsticks-noodles\": 58090,\n  \"bowl-chopsticks\": 58089,\n  \"bowl-food\": 58566,\n  \"bowl-hot\": 63523,\n  \"bowl-rice\": 58091,\n  \"bowl-salad\": 63518,\n  \"bowl-scoop\": 58334,\n  \"bowl-scoops\": 58335,\n  \"bowl-shaved-ice\": 58334,\n  \"bowl-soft-serve\": 58475,\n  \"bowl-spoon\": 58336,\n  \"bowling-ball-pin\": 57539,\n  \"bowling-ball\": 62518,\n  \"bowling-pins\": 62519,\n  \"box-alt\": 62618,\n  \"box-archive\": 61831,\n  \"box-arrow-down-arrow-up\": 59285,\n  \"box-arrow-down-magnifying-glass\": 59286,\n  \"box-arrow-down\": 59284,\n  \"box-arrow-up\": 59431,\n  \"box-ballot\": 63285,\n  \"box-check\": 62567,\n  \"box-circle-check\": 57540,\n  \"box-dollar\": 62624,\n  \"box-fragile\": 62619,\n  \"box-full\": 62620,\n  \"box-heart\": 62621,\n  \"box-isometric-tape\": 59288,\n  \"box-isometric\": 59287,\n  \"box-magnifying-glass\": 59432,\n  \"box-open-full\": 62620,\n  \"box-open\": 62622,\n  \"box-taped\": 62618,\n  \"box-tissue\": 57435,\n  \"box-up\": 62623,\n  \"box-usd\": 62624,\n  \"box\": 62566,\n  \"boxes-alt\": 62568,\n  \"boxes-packing\": 58567,\n  \"boxes-stacked\": 62568,\n  \"boxes\": 62568,\n  \"boxing-glove\": 62520,\n  \"bra\": 59087,\n  \"bracket-curly-left\": 123,\n  \"bracket-curly-right\": 125,\n  \"bracket-curly\": 123,\n  \"bracket-left\": 91,\n  \"bracket-round-right\": 41,\n  \"bracket-round\": 40,\n  \"bracket-square-right\": 93,\n  \"bracket-square\": 91,\n  \"bracket\": 91,\n  \"brackets-curly\": 63466,\n  \"brackets-round\": 57541,\n  \"brackets-square\": 63465,\n  \"brackets\": 63465,\n  \"braille\": 62113,\n  \"brain-arrow-curved-right\": 63095,\n  \"brain-circuit\": 57542,\n  \"brain\": 62940,\n  \"brake-warning\": 57543,\n  \"brazilian-real-sign\": 58476,\n  \"bread-loaf\": 63467,\n  \"bread-slice-butter\": 58337,\n  \"bread-slice\": 63468,\n  \"bridge-circle-check\": 58569,\n  \"bridge-circle-exclamation\": 58570,\n  \"bridge-circle-xmark\": 58571,\n  \"bridge-lock\": 58572,\n  \"bridge-suspension\": 58573,\n  \"bridge-water\": 58574,\n  \"bridge\": 58568,\n  \"briefcase-arrow-right\": 58098,\n  \"briefcase-blank\": 57544,\n  \"briefcase-clock\": 63050,\n  \"briefcase-medical\": 62569,\n  \"briefcase\": 61617,\n  \"briefs\": 59088,\n  \"brightness-low\": 57546,\n  \"brightness\": 57545,\n  \"bring-forward\": 63574,\n  \"bring-front\": 63575,\n  \"broadcast-tower\": 62745,\n  \"broccoli\": 58338,\n  \"broom-ball\": 62552,\n  \"broom-wide\": 58833,\n  \"broom\": 62746,\n  \"browser\": 62334,\n  \"browsers\": 57547,\n  \"brush\": 62813,\n  \"bucket\": 58575,\n  \"bug-slash\": 58512,\n  \"bug\": 61832,\n  \"bugs\": 58576,\n  \"building-circle-arrow-right\": 58577,\n  \"building-circle-check\": 58578,\n  \"building-circle-exclamation\": 58579,\n  \"building-circle-xmark\": 58580,\n  \"building-columns\": 61852,\n  \"building-flag\": 58581,\n  \"building-lock\": 58582,\n  \"building-magnifying-glass\": 58908,\n  \"building-memo\": 58910,\n  \"building-ngo\": 58583,\n  \"building-shield\": 58584,\n  \"building-un\": 58585,\n  \"building-user\": 58586,\n  \"building-wheat\": 58587,\n  \"building\": 61869,\n  \"buildings\": 57548,\n  \"bulldozer\": 58965,\n  \"bullhorn\": 61601,\n  \"bullseye-arrow\": 63048,\n  \"bullseye-pointer\": 63049,\n  \"bullseye\": 61760,\n  \"buoy-mooring\": 58806,\n  \"buoy\": 58805,\n  \"burger-cheese\": 63473,\n  \"burger-fries\": 57549,\n  \"burger-glass\": 57550,\n  \"burger-lettuce\": 58339,\n  \"burger-soda\": 63576,\n  \"burger\": 63493,\n  \"burn\": 62570,\n  \"burrito\": 63469,\n  \"burst-new\": 59512,\n  \"burst\": 58588,\n  \"bus-alt\": 62814,\n  \"bus-school\": 62941,\n  \"bus-side\": 59421,\n  \"bus-simple\": 62814,\n  \"bus-stop\": 59422,\n  \"bus\": 61959,\n  \"business-front\": 58460,\n  \"business-time\": 63050,\n  \"butter\": 58340,\n  \"butterfly\": 59409,\n  \"c\": 67,\n  \"cab\": 61882,\n  \"cabin\": 58477,\n  \"cabinet-filing\": 63051,\n  \"cable-car\": 63450,\n  \"cactus\": 63655,\n  \"caduceus\": 59009,\n  \"cake-candles\": 61949,\n  \"cake-slice\": 58341,\n  \"cake\": 61949,\n  \"calculator-alt\": 63052,\n  \"calculator-simple\": 63052,\n  \"calculator\": 61932,\n  \"calendar-alt\": 61555,\n  \"calendar-arrow-down\": 57552,\n  \"calendar-arrow-up\": 57553,\n  \"calendar-check\": 62068,\n  \"calendar-circle-exclamation\": 58478,\n  \"calendar-circle-minus\": 58479,\n  \"calendar-circle-plus\": 58480,\n  \"calendar-circle-user\": 58481,\n  \"calendar-circle\": 57602,\n  \"calendar-clock\": 57554,\n  \"calendar-day\": 63363,\n  \"calendar-days\": 61555,\n  \"calendar-download\": 57552,\n  \"calendar-edit\": 62259,\n  \"calendar-exclamation\": 62260,\n  \"calendar-heart\": 57555,\n  \"calendar-image\": 57556,\n  \"calendar-lines-pen\": 58482,\n  \"calendar-lines\": 57557,\n  \"calendar-minus\": 62066,\n  \"calendar-note\": 57557,\n  \"calendar-pen\": 62259,\n  \"calendar-plus\": 62065,\n  \"calendar-range\": 57558,\n  \"calendar-star\": 63286,\n  \"calendar-time\": 57554,\n  \"calendar-times\": 62067,\n  \"calendar-upload\": 57553,\n  \"calendar-users\": 58850,\n  \"calendar-week\": 63364,\n  \"calendar-xmark\": 62067,\n  \"calendar\": 61747,\n  \"calendars\": 57559,\n  \"camcorder\": 63656,\n  \"camera-alt\": 61488,\n  \"camera-cctv\": 63660,\n  \"camera-circle-ellipsis\": 59238,\n  \"camera-circle\": 57603,\n  \"camera-clock\": 59239,\n  \"camera-home\": 63742,\n  \"camera-movie\": 63657,\n  \"camera-polaroid\": 63658,\n  \"camera-retro\": 61571,\n  \"camera-rotate\": 57560,\n  \"camera-security\": 63742,\n  \"camera-shutter\": 59240,\n  \"camera-slash\": 57561,\n  \"camera-viewfinder\": 57562,\n  \"camera-web-slash\": 63539,\n  \"camera-web\": 63538,\n  \"camera\": 61488,\n  \"campfire\": 63162,\n  \"campground\": 63163,\n  \"can-food\": 58342,\n  \"cancel\": 61534,\n  \"cancer\": 59463,\n  \"candle-holder\": 63164,\n  \"candy-bar\": 58344,\n  \"candy-cane\": 63366,\n  \"candy-corn\": 63165,\n  \"candy\": 58343,\n  \"cannabis\": 62815,\n  \"cannon\": 58946,\n  \"canoe-person\": 59548,\n  \"capricorn\": 59464,\n  \"capsule\": 59226,\n  \"capsules\": 62571,\n  \"car-alt\": 62942,\n  \"car-battery\": 62943,\n  \"car-bolt\": 58177,\n  \"car-building\": 63577,\n  \"car-bump\": 62944,\n  \"car-burst\": 62945,\n  \"car-bus\": 63578,\n  \"car-circle-bolt\": 58178,\n  \"car-crash\": 62945,\n  \"car-garage\": 62946,\n  \"car-key\": 59328,\n  \"car-mechanic\": 62947,\n  \"car-mirrors\": 58179,\n  \"car-on\": 58589,\n  \"car-people\": 59036,\n  \"car-rear\": 62942,\n  \"car-side-bolt\": 58180,\n  \"car-side\": 62948,\n  \"car-siren-on\": 59330,\n  \"car-siren\": 59329,\n  \"car-tilt\": 62949,\n  \"car-tunnel\": 58590,\n  \"car-wash\": 62950,\n  \"car-wrench\": 62947,\n  \"car\": 61881,\n  \"caravan-alt\": 57344,\n  \"caravan-simple\": 57344,\n  \"caravan\": 63743,\n  \"card-club\": 58345,\n  \"card-diamond\": 58346,\n  \"card-heart\": 58347,\n  \"card-spade\": 58348,\n  \"cards-blank\": 58591,\n  \"cards\": 58349,\n  \"caret-circle-down\": 62253,\n  \"caret-circle-left\": 62254,\n  \"caret-circle-right\": 62256,\n  \"caret-circle-up\": 62257,\n  \"caret-down\": 61655,\n  \"caret-large-down\": 59436,\n  \"caret-large-left\": 59437,\n  \"caret-large-right\": 59438,\n  \"caret-large-up\": 59439,\n  \"caret-left\": 61657,\n  \"caret-right\": 61658,\n  \"caret-square-down\": 61776,\n  \"caret-square-left\": 61841,\n  \"caret-square-right\": 61778,\n  \"caret-square-up\": 61777,\n  \"caret-up\": 61656,\n  \"carpool\": 59036,\n  \"carriage-baby\": 63357,\n  \"carrot\": 63367,\n  \"cars\": 63579,\n  \"cart-arrow-down\": 61976,\n  \"cart-arrow-up\": 58350,\n  \"cart-circle-arrow-down\": 58351,\n  \"cart-circle-arrow-up\": 58352,\n  \"cart-circle-check\": 58353,\n  \"cart-circle-exclamation\": 58354,\n  \"cart-circle-plus\": 58355,\n  \"cart-circle-xmark\": 58356,\n  \"cart-flatbed-boxes\": 62581,\n  \"cart-flatbed-empty\": 62582,\n  \"cart-flatbed-suitcase\": 62877,\n  \"cart-flatbed\": 62580,\n  \"cart-minus\": 57563,\n  \"cart-plus\": 61975,\n  \"cart-shopping-fast\": 57564,\n  \"cart-shopping\": 61562,\n  \"cart-xmark\": 57565,\n  \"cash-register\": 63368,\n  \"cassette-betamax\": 63652,\n  \"cassette-tape\": 63659,\n  \"cassette-vhs\": 63724,\n  \"castle\": 57566,\n  \"cat-space\": 57345,\n  \"cat\": 63166,\n  \"cauldron\": 63167,\n  \"cctv\": 63660,\n  \"cedi-sign\": 57567,\n  \"cent-sign\": 58357,\n  \"certificate\": 61603,\n  \"chain-broken\": 61735,\n  \"chain-horizontal-slash\": 57804,\n  \"chain-horizontal\": 57803,\n  \"chain-slash\": 61735,\n  \"chain\": 61633,\n  \"chair-office\": 63169,\n  \"chair\": 63168,\n  \"chalkboard-teacher\": 62748,\n  \"chalkboard-user\": 62748,\n  \"chalkboard\": 62747,\n  \"champagne-glass\": 63390,\n  \"champagne-glasses\": 63391,\n  \"charging-station\": 62951,\n  \"chart-area\": 61950,\n  \"chart-bar\": 61568,\n  \"chart-bullet\": 57569,\n  \"chart-candlestick\": 57570,\n  \"chart-column\": 57571,\n  \"chart-diagram\": 59029,\n  \"chart-fft\": 59038,\n  \"chart-gantt\": 57572,\n  \"chart-kanban\": 58959,\n  \"chart-line-down\": 63053,\n  \"chart-line-up-down\": 58839,\n  \"chart-line-up\": 57573,\n  \"chart-line\": 61953,\n  \"chart-mixed-up-circle-currency\": 58840,\n  \"chart-mixed-up-circle-dollar\": 58841,\n  \"chart-mixed\": 63043,\n  \"chart-network\": 63370,\n  \"chart-pie-alt\": 63054,\n  \"chart-pie-simple-circle-currency\": 58884,\n  \"chart-pie-simple-circle-dollar\": 58885,\n  \"chart-pie-simple\": 63054,\n  \"chart-pie\": 61952,\n  \"chart-pyramid\": 57574,\n  \"chart-radar\": 57575,\n  \"chart-scatter-3d\": 57576,\n  \"chart-scatter-bubble\": 57577,\n  \"chart-scatter\": 63470,\n  \"chart-simple-horizontal\": 58484,\n  \"chart-simple\": 58483,\n  \"chart-sine\": 59037,\n  \"chart-tree-map\": 57578,\n  \"chart-user\": 63139,\n  \"chart-waterfall\": 57579,\n  \"check-circle\": 61528,\n  \"check-double\": 62816,\n  \"check-square\": 61770,\n  \"check-to-slot\": 63346,\n  \"check\": 61452,\n  \"cheese-swiss\": 63472,\n  \"cheese\": 63471,\n  \"cheeseburger\": 63473,\n  \"chemex\": 59440,\n  \"cherries\": 57580,\n  \"chess-bishop-alt\": 62523,\n  \"chess-bishop-piece\": 62523,\n  \"chess-bishop\": 62522,\n  \"chess-board\": 62524,\n  \"chess-clock-alt\": 62526,\n  \"chess-clock-flip\": 62526,\n  \"chess-clock\": 62525,\n  \"chess-king-alt\": 62528,\n  \"chess-king-piece\": 62528,\n  \"chess-king\": 62527,\n  \"chess-knight-alt\": 62530,\n  \"chess-knight-piece\": 62530,\n  \"chess-knight\": 62529,\n  \"chess-pawn-alt\": 62532,\n  \"chess-pawn-piece\": 62532,\n  \"chess-pawn\": 62531,\n  \"chess-queen-alt\": 62534,\n  \"chess-queen-piece\": 62534,\n  \"chess-queen\": 62533,\n  \"chess-rook-alt\": 62536,\n  \"chess-rook-piece\": 62536,\n  \"chess-rook\": 62535,\n  \"chess\": 62521,\n  \"chest-drawers\": 59523,\n  \"chestnut\": 58358,\n  \"chevron-circle-down\": 61754,\n  \"chevron-circle-left\": 61751,\n  \"chevron-circle-right\": 61752,\n  \"chevron-circle-up\": 61753,\n  \"chevron-double-down\": 62242,\n  \"chevron-double-left\": 62243,\n  \"chevron-double-right\": 62244,\n  \"chevron-double-up\": 62245,\n  \"chevron-down\": 61560,\n  \"chevron-left\": 61523,\n  \"chevron-right\": 61524,\n  \"chevron-square-down\": 62249,\n  \"chevron-square-left\": 62250,\n  \"chevron-square-right\": 62251,\n  \"chevron-square-up\": 62252,\n  \"chevron-up\": 61559,\n  \"chevrons-down\": 62242,\n  \"chevrons-left\": 62243,\n  \"chevrons-right\": 62244,\n  \"chevrons-up\": 62245,\n  \"chf-sign\": 58882,\n  \"child-combatant\": 58592,\n  \"child-dress\": 58780,\n  \"child-reaching\": 58781,\n  \"child-rifle\": 58592,\n  \"child\": 61870,\n  \"children\": 58593,\n  \"chimney\": 63371,\n  \"chocolate-bar\": 58344,\n  \"chopsticks\": 58359,\n  \"church\": 62749,\n  \"circle-0\": 57581,\n  \"circle-1\": 57582,\n  \"circle-2\": 57583,\n  \"circle-3\": 57584,\n  \"circle-4\": 57585,\n  \"circle-5\": 57586,\n  \"circle-6\": 57587,\n  \"circle-7\": 57588,\n  \"circle-8\": 57589,\n  \"circle-9\": 57590,\n  \"circle-a\": 57591,\n  \"circle-ampersand\": 57592,\n  \"circle-arrow-down-left\": 57593,\n  \"circle-arrow-down-right\": 57594,\n  \"circle-arrow-down\": 61611,\n  \"circle-arrow-left\": 61608,\n  \"circle-arrow-right\": 61609,\n  \"circle-arrow-up-left\": 57595,\n  \"circle-arrow-up-right\": 57596,\n  \"circle-arrow-up\": 61610,\n  \"circle-austral\": 59163,\n  \"circle-australian-dollar\": 59184,\n  \"circle-b\": 57597,\n  \"circle-baht\": 59181,\n  \"circle-bangladeshi-taka\": 59137,\n  \"circle-bitcoin\": 59191,\n  \"circle-bolt\": 57598,\n  \"circle-book-open\": 57599,\n  \"circle-bookmark\": 57600,\n  \"circle-brazilian-real\": 59115,\n  \"circle-c\": 57601,\n  \"circle-calendar\": 57602,\n  \"circle-camera\": 57603,\n  \"circle-caret-down\": 62253,\n  \"circle-caret-left\": 62254,\n  \"circle-caret-right\": 62256,\n  \"circle-caret-up\": 62257,\n  \"circle-cedi\": 59202,\n  \"circle-cent\": 59178,\n  \"circle-check\": 61528,\n  \"circle-chevron-down\": 61754,\n  \"circle-chevron-left\": 61751,\n  \"circle-chevron-right\": 61752,\n  \"circle-chevron-up\": 61753,\n  \"circle-chf\": 59180,\n  \"circle-colon\": 59132,\n  \"circle-cruzeiro\": 59170,\n  \"circle-currency\": 59118,\n  \"circle-d\": 57604,\n  \"circle-danish-krone\": 59206,\n  \"circle-dashed\": 57605,\n  \"circle-divide\": 57606,\n  \"circle-dollar-to-slot\": 62649,\n  \"circle-dollar\": 62184,\n  \"circle-dong\": 59171,\n  \"circle-dot\": 61842,\n  \"circle-down-left\": 57607,\n  \"circle-down-right\": 57608,\n  \"circle-down\": 62296,\n  \"circle-e\": 57609,\n  \"circle-ellipsis-vertical\": 57611,\n  \"circle-ellipsis\": 57610,\n  \"circle-envelope\": 57612,\n  \"circle-equals\": 59057,\n  \"circle-euro\": 58830,\n  \"circle-eurozone\": 59205,\n  \"circle-exclamation-check\": 57613,\n  \"circle-exclamation\": 61546,\n  \"circle-f\": 57614,\n  \"circle-florin\": 59108,\n  \"circle-franc\": 59169,\n  \"circle-g\": 57615,\n  \"circle-gf\": 59007,\n  \"circle-guarani\": 59195,\n  \"circle-h\": 62590,\n  \"circle-half-horizontal\": 59404,\n  \"circle-half-stroke-horizontal\": 59405,\n  \"circle-half-stroke\": 61506,\n  \"circle-half\": 57616,\n  \"circle-heart\": 62663,\n  \"circle-house\": 59080,\n  \"circle-hryvnia\": 59119,\n  \"circle-i\": 57617,\n  \"circle-indian-rupee\": 59188,\n  \"circle-info\": 61530,\n  \"circle-j\": 57618,\n  \"circle-k\": 57619,\n  \"circle-kip\": 59133,\n  \"circle-l\": 57620,\n  \"circle-lari\": 59165,\n  \"circle-left\": 62297,\n  \"circle-lira\": 59126,\n  \"circle-litecoin\": 59124,\n  \"circle-location-arrow\": 62978,\n  \"circle-m\": 57621,\n  \"circle-malaysian-ringgit\": 59129,\n  \"circle-manat\": 59131,\n  \"circle-microphone-lines\": 57623,\n  \"circle-microphone\": 57622,\n  \"circle-mill\": 59138,\n  \"circle-minus\": 61526,\n  \"circle-moon\": 59360,\n  \"circle-n\": 57624,\n  \"circle-naira\": 59209,\n  \"circle-nodes\": 58594,\n  \"circle-norwegian-krone\": 59192,\n  \"circle-notch\": 61902,\n  \"circle-o\": 57625,\n  \"circle-p\": 57626,\n  \"circle-parking\": 62997,\n  \"circle-pause\": 62091,\n  \"circle-peruvian-soles\": 59123,\n  \"circle-peseta\": 59201,\n  \"circle-peso\": 59135,\n  \"circle-phone-flip\": 57628,\n  \"circle-phone-hangup\": 57629,\n  \"circle-phone\": 57627,\n  \"circle-play\": 61764,\n  \"circle-plus\": 61525,\n  \"circle-polish-zloty\": 59136,\n  \"circle-q\": 57630,\n  \"circle-quarter-stroke\": 58835,\n  \"circle-quarter\": 57631,\n  \"circle-quarters\": 58360,\n  \"circle-question\": 61529,\n  \"circle-r\": 57632,\n  \"circle-radiation\": 63418,\n  \"circle-renminbi\": 59113,\n  \"circle-right\": 62298,\n  \"circle-ruble\": 59109,\n  \"circle-rupee\": 59156,\n  \"circle-rupiah\": 59142,\n  \"circle-s\": 57633,\n  \"circle-share-nodes\": 59099,\n  \"circle-shekel\": 59139,\n  \"circle-small\": 57634,\n  \"circle-sort-down\": 57393,\n  \"circle-sort-up\": 57394,\n  \"circle-sort\": 57392,\n  \"circle-star\": 57635,\n  \"circle-sterling\": 58831,\n  \"circle-stop\": 62093,\n  \"circle-swedish-krona\": 59203,\n  \"circle-t\": 57636,\n  \"circle-tenge\": 59173,\n  \"circle-three-quarters-stroke\": 58836,\n  \"circle-three-quarters\": 57637,\n  \"circle-trash\": 57638,\n  \"circle-tugrik\": 59153,\n  \"circle-turkish-lira\": 59193,\n  \"circle-u\": 57639,\n  \"circle-up-left\": 57640,\n  \"circle-up-right\": 57641,\n  \"circle-up\": 62299,\n  \"circle-user-circle-check\": 59295,\n  \"circle-user-circle-exclamation\": 59296,\n  \"circle-user-circle-minus\": 59297,\n  \"circle-user-circle-moon\": 59298,\n  \"circle-user-circle-plus\": 59299,\n  \"circle-user-circle-question\": 59300,\n  \"circle-user-circle-user\": 59301,\n  \"circle-user-circle-xmark\": 59302,\n  \"circle-user-clock\": 59303,\n  \"circle-user\": 62141,\n  \"circle-v\": 57642,\n  \"circle-video\": 57643,\n  \"circle-w\": 57644,\n  \"circle-waveform-lines\": 57645,\n  \"circle-wifi-circle-wifi\": 59006,\n  \"circle-wifi-group\": 59006,\n  \"circle-wifi\": 59005,\n  \"circle-won\": 59116,\n  \"circle-x\": 57646,\n  \"circle-xmark\": 61527,\n  \"circle-y\": 57647,\n  \"circle-yen\": 58832,\n  \"circle-z\": 57648,\n  \"circle\": 61713,\n  \"circleapore-dollar\": 59166,\n  \"circles-overlap-3\": 59041,\n  \"circles-overlap\": 58880,\n  \"citrus-slice\": 58101,\n  \"citrus\": 58100,\n  \"city\": 63055,\n  \"clapperboard-play\": 57650,\n  \"clapperboard\": 57649,\n  \"clarinet\": 63661,\n  \"claw-marks\": 63170,\n  \"clinic-medical\": 63474,\n  \"clipboard-check\": 62572,\n  \"clipboard-clock\": 59222,\n  \"clipboard-exclamation\": 59223,\n  \"clipboard-list-check\": 63287,\n  \"clipboard-list\": 62573,\n  \"clipboard-medical\": 57651,\n  \"clipboard-prescription\": 62952,\n  \"clipboard-question\": 58595,\n  \"clipboard-user\": 63475,\n  \"clipboard\": 62248,\n  \"clock-desk\": 57652,\n  \"clock-eight-thirty\": 58182,\n  \"clock-eight\": 58181,\n  \"clock-eleven-thirty\": 58184,\n  \"clock-eleven\": 58183,\n  \"clock-five-thirty\": 58186,\n  \"clock-five\": 58185,\n  \"clock-four-thirty\": 58187,\n  \"clock-four\": 61463,\n  \"clock-nine-thirty\": 58189,\n  \"clock-nine\": 58188,\n  \"clock-one-thirty\": 58191,\n  \"clock-one\": 58190,\n  \"clock-rotate-left\": 61914,\n  \"clock-seven-thirty\": 58193,\n  \"clock-seven\": 58192,\n  \"clock-six-thirty\": 58195,\n  \"clock-six\": 58194,\n  \"clock-ten-thirty\": 58197,\n  \"clock-ten\": 58196,\n  \"clock-three-thirty\": 58199,\n  \"clock-three\": 58198,\n  \"clock-twelve-thirty\": 58201,\n  \"clock-twelve\": 58200,\n  \"clock-two-thirty\": 58203,\n  \"clock-two\": 58202,\n  \"clock\": 61463,\n  \"clone-plus\": 59212,\n  \"clone\": 62029,\n  \"close\": 61453,\n  \"closed-captioning-slash\": 57653,\n  \"closed-captioning\": 61962,\n  \"clothes-hanger\": 57654,\n  \"cloud-arrow-down\": 61677,\n  \"cloud-arrow-up\": 61678,\n  \"cloud-binary\": 58881,\n  \"cloud-bolt-moon\": 63341,\n  \"cloud-bolt-sun\": 63342,\n  \"cloud-bolt\": 63340,\n  \"cloud-check\": 58204,\n  \"cloud-download-alt\": 61677,\n  \"cloud-download\": 61677,\n  \"cloud-drizzle\": 63288,\n  \"cloud-exclamation\": 58513,\n  \"cloud-fog\": 63310,\n  \"cloud-hail-mixed\": 63290,\n  \"cloud-hail\": 63289,\n  \"cloud-meatball\": 63291,\n  \"cloud-minus\": 58205,\n  \"cloud-moon-rain\": 63292,\n  \"cloud-moon\": 63171,\n  \"cloud-music\": 63662,\n  \"cloud-plus\": 58206,\n  \"cloud-question\": 58514,\n  \"cloud-rain\": 63293,\n  \"cloud-rainbow\": 63294,\n  \"cloud-showers-heavy\": 63296,\n  \"cloud-showers-water\": 58596,\n  \"cloud-showers\": 63295,\n  \"cloud-slash\": 57655,\n  \"cloud-sleet\": 63297,\n  \"cloud-snow\": 63298,\n  \"cloud-sun-rain\": 63299,\n  \"cloud-sun\": 63172,\n  \"cloud-upload-alt\": 61678,\n  \"cloud-upload\": 61678,\n  \"cloud-word\": 57656,\n  \"cloud-xmark\": 58207,\n  \"cloud\": 61634,\n  \"clouds-moon\": 63301,\n  \"clouds-sun\": 63302,\n  \"clouds\": 63300,\n  \"clover\": 57657,\n  \"club\": 62247,\n  \"cny\": 61783,\n  \"cocktail\": 62817,\n  \"coconut\": 58102,\n  \"code-branch\": 61734,\n  \"code-commit\": 62342,\n  \"code-compare\": 57658,\n  \"code-fork\": 57659,\n  \"code-merge\": 62343,\n  \"code-pull-request-closed\": 58361,\n  \"code-pull-request-draft\": 58362,\n  \"code-pull-request\": 57660,\n  \"code-simple\": 57661,\n  \"code\": 61729,\n  \"coffee-bean\": 57662,\n  \"coffee-beans\": 57663,\n  \"coffee-pot\": 57346,\n  \"coffee-togo\": 63173,\n  \"coffee\": 61684,\n  \"coffin-cross\": 57425,\n  \"coffin\": 63174,\n  \"cog\": 61459,\n  \"cogs\": 61573,\n  \"coin-blank\": 58363,\n  \"coin-front\": 58364,\n  \"coin-vertical\": 58365,\n  \"coin\": 63580,\n  \"coins\": 62750,\n  \"colon-sign\": 57664,\n  \"colon\": 58,\n  \"columns-3\": 58209,\n  \"columns\": 61659,\n  \"comet\": 57347,\n  \"comma\": 44,\n  \"command\": 57666,\n  \"comment-alt-arrow-down\": 57819,\n  \"comment-alt-arrow-up\": 57820,\n  \"comment-alt-captions\": 57822,\n  \"comment-alt-check\": 62626,\n  \"comment-alt-dollar\": 63056,\n  \"comment-alt-dots\": 62627,\n  \"comment-alt-edit\": 62628,\n  \"comment-alt-exclamation\": 62629,\n  \"comment-alt-image\": 57824,\n  \"comment-alt-lines\": 62630,\n  \"comment-alt-medical\": 63476,\n  \"comment-alt-minus\": 62631,\n  \"comment-alt-music\": 63663,\n  \"comment-alt-plus\": 62632,\n  \"comment-alt-quote\": 57828,\n  \"comment-alt-slash\": 62633,\n  \"comment-alt-smile\": 62634,\n  \"comment-alt-text\": 57830,\n  \"comment-alt-times\": 62635,\n  \"comment-alt\": 62074,\n  \"comment-arrow-down\": 57667,\n  \"comment-arrow-up-right\": 57669,\n  \"comment-arrow-up\": 57668,\n  \"comment-captions\": 57670,\n  \"comment-check\": 62636,\n  \"comment-code\": 57671,\n  \"comment-dollar\": 63057,\n  \"comment-dot\": 59100,\n  \"comment-dots\": 62637,\n  \"comment-edit\": 62638,\n  \"comment-exclamation\": 62639,\n  \"comment-heart\": 58824,\n  \"comment-image\": 57672,\n  \"comment-lines\": 62640,\n  \"comment-medical\": 63477,\n  \"comment-middle-alt\": 57825,\n  \"comment-middle-top-alt\": 57826,\n  \"comment-middle-top\": 57674,\n  \"comment-middle\": 57673,\n  \"comment-minus\": 62641,\n  \"comment-music\": 63664,\n  \"comment-nodes\": 59030,\n  \"comment-pen\": 62638,\n  \"comment-plus\": 62642,\n  \"comment-question\": 57675,\n  \"comment-quote\": 57676,\n  \"comment-slash\": 62643,\n  \"comment-smile\": 62644,\n  \"comment-sms\": 63437,\n  \"comment-text\": 57677,\n  \"comment-times\": 62645,\n  \"comment-waveform\": 59101,\n  \"comment-xmark\": 62645,\n  \"comment\": 61557,\n  \"commenting\": 62637,\n  \"comments-alt-dollar\": 63058,\n  \"comments-alt\": 62646,\n  \"comments-dollar\": 63059,\n  \"comments-question-check\": 57679,\n  \"comments-question\": 57678,\n  \"comments\": 61574,\n  \"compact-disc\": 62751,\n  \"compass-drafting\": 62824,\n  \"compass-slash\": 62953,\n  \"compass\": 61774,\n  \"compress-alt\": 62498,\n  \"compress-arrows-alt\": 63372,\n  \"compress-arrows\": 57509,\n  \"compress-wide\": 62246,\n  \"compress\": 61542,\n  \"computer-classic\": 63665,\n  \"computer-mouse-button-left\": 59341,\n  \"computer-mouse-button-right\": 59342,\n  \"computer-mouse-scrollwheel\": 63693,\n  \"computer-mouse\": 63692,\n  \"computer-speaker\": 63666,\n  \"computer\": 58597,\n  \"concierge-bell\": 62818,\n  \"construction\": 63581,\n  \"contact-book\": 62137,\n  \"contact-card\": 62139,\n  \"container-storage\": 62647,\n  \"conveyor-belt-alt\": 62575,\n  \"conveyor-belt-arm\": 58872,\n  \"conveyor-belt-boxes\": 62575,\n  \"conveyor-belt-empty\": 57680,\n  \"conveyor-belt\": 62574,\n  \"cookie-bite\": 62820,\n  \"cookie\": 62819,\n  \"copy\": 61637,\n  \"copyright\": 61945,\n  \"corn\": 63175,\n  \"corner\": 58366,\n  \"couch-small\": 62668,\n  \"couch\": 62648,\n  \"court-sport\": 58947,\n  \"cow\": 63176,\n  \"cowbell-circle-plus\": 63668,\n  \"cowbell-more\": 63668,\n  \"cowbell\": 63667,\n  \"crab\": 58367,\n  \"crate-apple\": 63153,\n  \"crate-empty\": 57681,\n  \"credit-card-alt\": 61597,\n  \"credit-card-blank\": 62345,\n  \"credit-card-front\": 62346,\n  \"credit-card\": 61597,\n  \"creemee\": 58368,\n  \"cricket-bat-ball\": 62537,\n  \"cricket\": 62537,\n  \"croissant\": 63478,\n  \"crop-alt\": 62821,\n  \"crop-simple\": 62821,\n  \"crop\": 61733,\n  \"cross\": 63060,\n  \"crosshairs-simple\": 58783,\n  \"crosshairs\": 61531,\n  \"crow\": 62752,\n  \"crown\": 62753,\n  \"crutch\": 63479,\n  \"crutches\": 63480,\n  \"cruzeiro-sign\": 57682,\n  \"crystal-ball\": 58210,\n  \"cube\": 61874,\n  \"cubes-stacked\": 58598,\n  \"cubes\": 61875,\n  \"cucumber\": 58369,\n  \"cup-straw-swoosh\": 58212,\n  \"cup-straw\": 58211,\n  \"cup-togo\": 63173,\n  \"cupcake\": 58370,\n  \"curling-stone\": 62538,\n  \"curling\": 62538,\n  \"currency-sign\": 59179,\n  \"custard\": 58371,\n  \"cut\": 61636,\n  \"cutlery\": 62183,\n  \"d\": 68,\n  \"dagger\": 63179,\n  \"danish-krone-sign\": 59168,\n  \"dash\": 58372,\n  \"dashboard\": 63012,\n  \"database\": 61888,\n  \"deaf\": 62116,\n  \"deafness\": 62116,\n  \"debug\": 63481,\n  \"dedent\": 61499,\n  \"deer-rudolph\": 63375,\n  \"deer\": 63374,\n  \"delete-left\": 62810,\n  \"delete-right\": 57684,\n  \"democrat\": 63303,\n  \"desk\": 59518,\n  \"desktop-alt\": 62352,\n  \"desktop-arrow-down\": 57685,\n  \"desktop-code\": 57701,\n  \"desktop-medical\": 57702,\n  \"desktop-slash\": 58106,\n  \"desktop\": 62352,\n  \"dewpoint\": 63304,\n  \"dharmachakra\": 63061,\n  \"diagnoses\": 62576,\n  \"diagram-cells\": 58485,\n  \"diagram-lean-canvas\": 57686,\n  \"diagram-nested\": 57687,\n  \"diagram-next\": 58486,\n  \"diagram-predecessor\": 58487,\n  \"diagram-previous\": 58488,\n  \"diagram-project\": 62786,\n  \"diagram-sankey\": 57688,\n  \"diagram-subtask\": 58489,\n  \"diagram-successor\": 58490,\n  \"diagram-venn\": 57690,\n  \"dial-high\": 57692,\n  \"dial-low\": 57693,\n  \"dial-max\": 57694,\n  \"dial-med-high\": 57691,\n  \"dial-med-low\": 57696,\n  \"dial-med\": 57695,\n  \"dial-min\": 57697,\n  \"dial-off\": 57698,\n  \"dial\": 57691,\n  \"dialpad\": 59340,\n  \"diamond-exclamation\": 58373,\n  \"diamond-half-stroke\": 58808,\n  \"diamond-half\": 58807,\n  \"diamond-turn-right\": 62955,\n  \"diamond\": 61977,\n  \"diamonds-4\": 59019,\n  \"dice-d10\": 63181,\n  \"dice-d12\": 63182,\n  \"dice-d20\": 63183,\n  \"dice-d4\": 63184,\n  \"dice-d6\": 63185,\n  \"dice-d8\": 63186,\n  \"dice-five\": 62755,\n  \"dice-four\": 62756,\n  \"dice-one\": 62757,\n  \"dice-six\": 62758,\n  \"dice-three\": 62759,\n  \"dice-two\": 62760,\n  \"dice\": 62754,\n  \"digging\": 63582,\n  \"digital-tachograph\": 62822,\n  \"dinosaur\": 58878,\n  \"diploma\": 62954,\n  \"direction-left-right\": 59070,\n  \"direction-up-down\": 59071,\n  \"directions\": 62955,\n  \"disc-drive\": 63669,\n  \"disease\": 63482,\n  \"display-arrow-down\": 57700,\n  \"display-chart-up-circle-currency\": 58853,\n  \"display-chart-up-circle-dollar\": 58854,\n  \"display-chart-up\": 58851,\n  \"display-code\": 57701,\n  \"display-medical\": 57702,\n  \"display-slash\": 58106,\n  \"display\": 57699,\n  \"distribute-spacing-horizontal\": 58213,\n  \"distribute-spacing-vertical\": 58214,\n  \"ditto\": 34,\n  \"divide\": 62761,\n  \"dizzy\": 62823,\n  \"dna\": 62577,\n  \"do-not-enter\": 62956,\n  \"dog-leashed\": 63188,\n  \"dog\": 63187,\n  \"dollar-circle\": 62184,\n  \"dollar-sign\": 36,\n  \"dollar-square\": 62185,\n  \"dollar\": 36,\n  \"dolly-box\": 62578,\n  \"dolly-empty\": 62579,\n  \"dolly-flatbed-alt\": 62581,\n  \"dolly-flatbed-empty\": 62582,\n  \"dolly-flatbed\": 62580,\n  \"dolly\": 62578,\n  \"dolphin\": 57704,\n  \"donate\": 62649,\n  \"dong-sign\": 57705,\n  \"donut\": 58374,\n  \"door-closed\": 62762,\n  \"door-open\": 62763,\n  \"dot-circle\": 61842,\n  \"dot\": 59345,\n  \"doughnut\": 58374,\n  \"dove\": 62650,\n  \"down-from-bracket\": 58987,\n  \"down-from-dotted-line\": 58375,\n  \"down-from-line\": 62281,\n  \"down-left-and-up-right-to-center\": 62498,\n  \"down-left\": 57706,\n  \"down-long-to-line\": 59072,\n  \"down-long\": 62217,\n  \"down-right\": 57707,\n  \"down-to-bracket\": 58599,\n  \"down-to-dotted-line\": 58376,\n  \"down-to-line\": 62282,\n  \"down-up\": 59073,\n  \"down\": 62292,\n  \"download\": 61465,\n  \"drafting-compass\": 62824,\n  \"dragon\": 63189,\n  \"draw-circle\": 62957,\n  \"draw-polygon\": 62958,\n  \"draw-square\": 62959,\n  \"dreidel\": 63378,\n  \"dress\": 59089,\n  \"dresser\": 59519,\n  \"drivers-license\": 62146,\n  \"drone-alt\": 63584,\n  \"drone-front\": 63584,\n  \"drone\": 63583,\n  \"droplet-degree\": 63304,\n  \"droplet-percent\": 63312,\n  \"droplet-plus\": 59392,\n  \"droplet-slash\": 62919,\n  \"droplet\": 61507,\n  \"drum-steelpan\": 62826,\n  \"drum\": 62825,\n  \"drumstick-bite\": 63191,\n  \"drumstick\": 63190,\n  \"dryer-alt\": 63586,\n  \"dryer-heat\": 63586,\n  \"dryer\": 63585,\n  \"duck\": 63192,\n  \"dumbbell\": 62539,\n  \"dumpster-fire\": 63380,\n  \"dumpster\": 63379,\n  \"dungeon\": 63193,\n  \"e\": 69,\n  \"ear-circle-checkmark\": 59227,\n  \"ear-deaf\": 62116,\n  \"ear-listen\": 62114,\n  \"ear-muffs\": 63381,\n  \"ear-triangle-exclamation\": 59228,\n  \"ear-waveform\": 59229,\n  \"ear\": 62960,\n  \"earth-africa\": 62844,\n  \"earth-america\": 62845,\n  \"earth-americas\": 62845,\n  \"earth-asia\": 62846,\n  \"earth-europe\": 63394,\n  \"earth-oceania\": 58491,\n  \"earth\": 62845,\n  \"eclipse-alt\": 63306,\n  \"eclipse\": 63305,\n  \"edit\": 61508,\n  \"egg-fried\": 63484,\n  \"egg\": 63483,\n  \"eggplant\": 57708,\n  \"eject\": 61522,\n  \"elephant\": 63194,\n  \"elevator\": 57709,\n  \"ellipsis-h-alt\": 62363,\n  \"ellipsis-h\": 61761,\n  \"ellipsis-stroke-vertical\": 62364,\n  \"ellipsis-stroke\": 62363,\n  \"ellipsis-v-alt\": 62364,\n  \"ellipsis-v\": 61762,\n  \"ellipsis-vertical\": 61762,\n  \"ellipsis\": 61761,\n  \"empty-set\": 63062,\n  \"engine-exclamation\": 62962,\n  \"engine-warning\": 62962,\n  \"engine\": 57710,\n  \"envelope-badge\": 57711,\n  \"envelope-certificate\": 59433,\n  \"envelope-circle-check\": 58600,\n  \"envelope-circle-user\": 59102,\n  \"envelope-circle\": 57612,\n  \"envelope-dot\": 57711,\n  \"envelope-open-dollar\": 63063,\n  \"envelope-open-text\": 63064,\n  \"envelope-open\": 62134,\n  \"envelope-ribbon\": 59433,\n  \"envelope-square\": 61849,\n  \"envelope\": 61664,\n  \"envelopes-bulk\": 63092,\n  \"envelopes\": 57712,\n  \"equals\": 61,\n  \"eraser\": 61741,\n  \"escalator\": 57713,\n  \"ethernet\": 63382,\n  \"eur\": 61779,\n  \"euro-sign\": 61779,\n  \"euro\": 61779,\n  \"eurozone-sign\": 59200,\n  \"excavator\": 58966,\n  \"exchange-alt\": 62306,\n  \"exchange\": 61676,\n  \"exclamation-circle\": 61546,\n  \"exclamation-square\": 62241,\n  \"exclamation-triangle\": 61553,\n  \"exclamation\": 33,\n  \"expand-alt\": 62500,\n  \"expand-arrows-alt\": 62238,\n  \"expand-arrows\": 62237,\n  \"expand-wide\": 62240,\n  \"expand\": 61541,\n  \"exploding-head\": 58110,\n  \"explosion\": 58601,\n  \"external-link-alt\": 62301,\n  \"external-link-square-alt\": 62304,\n  \"external-link-square\": 61772,\n  \"external-link\": 61582,\n  \"eye-closed\": 59451,\n  \"eye-dropper-empty\": 61947,\n  \"eye-dropper-full\": 57714,\n  \"eye-dropper-half\": 57715,\n  \"eye-dropper\": 61947,\n  \"eye-evil\": 63195,\n  \"eye-low-vision\": 62120,\n  \"eye-slash\": 61552,\n  \"eye\": 61550,\n  \"eyedropper\": 61947,\n  \"eyes\": 58215,\n  \"f\": 70,\n  \"face-angry-horns\": 58216,\n  \"face-angry\": 62806,\n  \"face-anguished\": 58217,\n  \"face-anxious-sweat\": 58218,\n  \"face-astonished\": 58219,\n  \"face-awesome\": 58377,\n  \"face-beam-hand-over-mouth\": 58492,\n  \"face-clouds\": 58493,\n  \"face-confounded\": 58220,\n  \"face-confused\": 58221,\n  \"face-cowboy-hat\": 58222,\n  \"face-diagonal-mouth\": 58494,\n  \"face-disappointed\": 58223,\n  \"face-disguise\": 58224,\n  \"face-dizzy\": 62823,\n  \"face-dotted\": 58495,\n  \"face-downcast-sweat\": 58225,\n  \"face-drooling\": 58226,\n  \"face-exhaling\": 58496,\n  \"face-explode\": 58110,\n  \"face-expressionless\": 58227,\n  \"face-eyes-xmarks\": 58228,\n  \"face-fearful\": 58229,\n  \"face-flushed\": 62841,\n  \"face-frown-open\": 62842,\n  \"face-frown-slight\": 58230,\n  \"face-frown\": 61721,\n  \"face-glasses\": 58231,\n  \"face-grimace\": 62847,\n  \"face-grin-beam-sweat\": 62851,\n  \"face-grin-beam\": 62850,\n  \"face-grin-hearts\": 62852,\n  \"face-grin-squint-tears\": 62854,\n  \"face-grin-squint\": 62853,\n  \"face-grin-stars\": 62855,\n  \"face-grin-tears\": 62856,\n  \"face-grin-tongue-squint\": 62858,\n  \"face-grin-tongue-wink\": 62859,\n  \"face-grin-tongue\": 62857,\n  \"face-grin-wide\": 62849,\n  \"face-grin-wink\": 62860,\n  \"face-grin\": 62848,\n  \"face-hand-over-mouth\": 58232,\n  \"face-hand-peeking\": 58497,\n  \"face-hand-yawn\": 58233,\n  \"face-head-bandage\": 58234,\n  \"face-holding-back-tears\": 58498,\n  \"face-hushed\": 58235,\n  \"face-icicles\": 58236,\n  \"face-kiss-beam\": 62871,\n  \"face-kiss-closed-eyes\": 58237,\n  \"face-kiss-wink-heart\": 62872,\n  \"face-kiss\": 62870,\n  \"face-laugh-beam\": 62874,\n  \"face-laugh-squint\": 62875,\n  \"face-laugh-wink\": 62876,\n  \"face-laugh\": 62873,\n  \"face-lying\": 58238,\n  \"face-mask\": 58239,\n  \"face-meh-blank\": 62884,\n  \"face-meh\": 61722,\n  \"face-melting\": 58499,\n  \"face-monocle\": 58240,\n  \"face-nauseated\": 58241,\n  \"face-nose-steam\": 58242,\n  \"face-party\": 58243,\n  \"face-pensive\": 58244,\n  \"face-persevering\": 58245,\n  \"face-pleading\": 58246,\n  \"face-pouting\": 58247,\n  \"face-raised-eyebrow\": 58248,\n  \"face-relieved\": 58249,\n  \"face-rolling-eyes\": 62885,\n  \"face-sad-cry\": 62899,\n  \"face-sad-sweat\": 58250,\n  \"face-sad-tear\": 62900,\n  \"face-saluting\": 58500,\n  \"face-scream\": 58251,\n  \"face-shaking-horizontal\": 59293,\n  \"face-shaking-vertical\": 59294,\n  \"face-shaking\": 59292,\n  \"face-shush\": 58252,\n  \"face-sleeping\": 58253,\n  \"face-sleepy\": 58254,\n  \"face-smile-beam\": 62904,\n  \"face-smile-halo\": 58255,\n  \"face-smile-hearts\": 58256,\n  \"face-smile-horns\": 58257,\n  \"face-smile-plus\": 62905,\n  \"face-smile-relaxed\": 58258,\n  \"face-smile-tear\": 58259,\n  \"face-smile-tongue\": 58260,\n  \"face-smile-upside-down\": 58261,\n  \"face-smile-wink\": 62682,\n  \"face-smile\": 61720,\n  \"face-smiling-hands\": 58262,\n  \"face-smirking\": 58263,\n  \"face-spiral-eyes\": 58501,\n  \"face-sunglasses\": 58264,\n  \"face-surprise\": 62914,\n  \"face-swear\": 58265,\n  \"face-thermometer\": 58266,\n  \"face-thinking\": 58267,\n  \"face-tired\": 62920,\n  \"face-tissue\": 58268,\n  \"face-tongue-money\": 58269,\n  \"face-tongue-sweat\": 58270,\n  \"face-unamused\": 58271,\n  \"face-viewfinder\": 58111,\n  \"face-vomit\": 58272,\n  \"face-weary\": 58273,\n  \"face-woozy\": 58274,\n  \"face-worried\": 58275,\n  \"face-zany\": 58276,\n  \"face-zipper\": 58277,\n  \"falafel\": 58378,\n  \"family-dress\": 58113,\n  \"family-pants\": 58114,\n  \"family\": 58112,\n  \"fan-table\": 57348,\n  \"fan\": 63587,\n  \"farm\": 63588,\n  \"fast-backward\": 61513,\n  \"fast-forward\": 61520,\n  \"faucet-drip\": 57350,\n  \"faucet\": 57349,\n  \"fax\": 61868,\n  \"feather-alt\": 62827,\n  \"feather-pointed\": 62827,\n  \"feather\": 62765,\n  \"feed\": 61598,\n  \"female\": 61826,\n  \"fence\": 58115,\n  \"ferris-wheel\": 57716,\n  \"ferry\": 58602,\n  \"field-hockey-stick-ball\": 62540,\n  \"field-hockey\": 62540,\n  \"fighter-jet\": 61691,\n  \"file-aiff\": 59387,\n  \"file-alt\": 61788,\n  \"file-archive\": 61894,\n  \"file-arrow-down\": 62829,\n  \"file-arrow-up\": 62836,\n  \"file-audio\": 61895,\n  \"file-award\": 62963,\n  \"file-ban\": 59224,\n  \"file-binary\": 57717,\n  \"file-brackets-curly\": 59396,\n  \"file-cad\": 58994,\n  \"file-caret-down\": 58409,\n  \"file-caret-up\": 58410,\n  \"file-certificate\": 62963,\n  \"file-chart-column\": 63065,\n  \"file-chart-line\": 63065,\n  \"file-chart-pie\": 63066,\n  \"file-check\": 62230,\n  \"file-circle-check\": 58784,\n  \"file-circle-exclamation\": 58603,\n  \"file-circle-info\": 58515,\n  \"file-circle-minus\": 58605,\n  \"file-circle-plus\": 58516,\n  \"file-circle-question\": 58607,\n  \"file-circle-xmark\": 58785,\n  \"file-clipboard\": 61674,\n  \"file-code\": 61897,\n  \"file-contract\": 62828,\n  \"file-css\": 59452,\n  \"file-csv\": 63197,\n  \"file-dashed-line\": 63607,\n  \"file-doc\": 58861,\n  \"file-download\": 62829,\n  \"file-edit\": 62236,\n  \"file-eps\": 58948,\n  \"file-excel\": 61891,\n  \"file-exclamation\": 62234,\n  \"file-export\": 62830,\n  \"file-fragment\": 59031,\n  \"file-gif\": 58949,\n  \"file-half-dashed\": 59032,\n  \"file-heart\": 57718,\n  \"file-html\": 59453,\n  \"file-icns\": 59457,\n  \"file-image\": 61893,\n  \"file-import\": 62831,\n  \"file-invoice-dollar\": 62833,\n  \"file-invoice\": 62832,\n  \"file-jpg\": 58950,\n  \"file-js\": 59454,\n  \"file-lines\": 61788,\n  \"file-lock\": 58278,\n  \"file-magnifying-glass\": 63589,\n  \"file-medical-alt\": 62584,\n  \"file-medical\": 62583,\n  \"file-midi\": 59397,\n  \"file-minus\": 62232,\n  \"file-mov\": 58951,\n  \"file-mp3\": 58952,\n  \"file-mp4\": 58953,\n  \"file-music\": 63670,\n  \"file-odf\": 59388,\n  \"file-pdf\": 61889,\n  \"file-pen\": 62236,\n  \"file-plus-minus\": 57719,\n  \"file-plus\": 62233,\n  \"file-png\": 58982,\n  \"file-powerpoint\": 61892,\n  \"file-ppt\": 58954,\n  \"file-prescription\": 62834,\n  \"file-search\": 63589,\n  \"file-shield\": 58608,\n  \"file-signature\": 62835,\n  \"file-slash\": 58279,\n  \"file-spreadsheet\": 63067,\n  \"file-svg\": 58955,\n  \"file-tex\": 59389,\n  \"file-text\": 61788,\n  \"file-times\": 62231,\n  \"file-upload\": 62836,\n  \"file-user\": 63068,\n  \"file-vector\": 58956,\n  \"file-video\": 61896,\n  \"file-wav\": 59390,\n  \"file-waveform\": 62584,\n  \"file-word\": 61890,\n  \"file-xls\": 58957,\n  \"file-xmark\": 62231,\n  \"file-xml\": 58964,\n  \"file-zip\": 58862,\n  \"file-zipper\": 61894,\n  \"file\": 61787,\n  \"files-medical\": 63485,\n  \"files\": 57720,\n  \"fill-drip\": 62838,\n  \"fill\": 62837,\n  \"film-alt\": 61448,\n  \"film-canister\": 63671,\n  \"film-cannister\": 63671,\n  \"film-music\": 59241,\n  \"film-simple\": 61448,\n  \"film-slash\": 57721,\n  \"film-stack\": 59243,\n  \"film\": 61448,\n  \"films\": 57722,\n  \"filter-circle-dollar\": 63074,\n  \"filter-circle-xmark\": 57723,\n  \"filter-list\": 57724,\n  \"filter-slash\": 57725,\n  \"filter\": 61616,\n  \"filters\": 57726,\n  \"fingerprint\": 62839,\n  \"fire-alt\": 63460,\n  \"fire-burner\": 58609,\n  \"fire-extinguisher\": 61748,\n  \"fire-flame-curved\": 63460,\n  \"fire-flame-simple\": 62570,\n  \"fire-flame\": 63199,\n  \"fire-hydrant\": 57727,\n  \"fire-smoke\": 63307,\n  \"fire\": 61549,\n  \"fireplace\": 63386,\n  \"firewall\": 58332,\n  \"first-aid\": 62585,\n  \"fish-bones\": 58116,\n  \"fish-cooked\": 63486,\n  \"fish-fins\": 58610,\n  \"fish\": 62840,\n  \"fishing-rod\": 58280,\n  \"fist-raised\": 63198,\n  \"flag-alt\": 63308,\n  \"flag-checkered\": 61726,\n  \"flag-pennant\": 62550,\n  \"flag-swallowtail\": 63308,\n  \"flag-usa\": 63309,\n  \"flag\": 61476,\n  \"flame\": 63199,\n  \"flashlight\": 63672,\n  \"flask-gear\": 58865,\n  \"flask-poison\": 63200,\n  \"flask-potion\": 63201,\n  \"flask-round-poison\": 63200,\n  \"flask-round-potion\": 63201,\n  \"flask-vial\": 58611,\n  \"flask\": 61635,\n  \"flatbread-stuffed\": 58380,\n  \"flatbread\": 58379,\n  \"floppy-disk-circle-arrow-right\": 57728,\n  \"floppy-disk-circle-xmark\": 57729,\n  \"floppy-disk-pen\": 57730,\n  \"floppy-disk-times\": 57729,\n  \"floppy-disk\": 61639,\n  \"floppy-disks\": 57731,\n  \"florin-sign\": 57732,\n  \"flower-daffodil\": 63488,\n  \"flower-tulip\": 63489,\n  \"flower\": 63487,\n  \"flushed\": 62841,\n  \"flute\": 63673,\n  \"flux-capacitor\": 63674,\n  \"flying-disc\": 58281,\n  \"fog\": 63310,\n  \"folder-arrow-down\": 57427,\n  \"folder-arrow-left\": 59346,\n  \"folder-arrow-right\": 59347,\n  \"folder-arrow-up\": 57428,\n  \"folder-blank\": 61563,\n  \"folder-bookmark\": 57734,\n  \"folder-check\": 58958,\n  \"folder-closed\": 57733,\n  \"folder-cog\": 57735,\n  \"folder-download\": 57427,\n  \"folder-gear\": 57735,\n  \"folder-grid\": 57736,\n  \"folder-heart\": 57737,\n  \"folder-image\": 57738,\n  \"folder-magnifying-glass\": 57739,\n  \"folder-medical\": 57740,\n  \"folder-minus\": 63069,\n  \"folder-music\": 57741,\n  \"folder-open\": 61564,\n  \"folder-plus\": 63070,\n  \"folder-search\": 57739,\n  \"folder-times\": 63071,\n  \"folder-tree\": 63490,\n  \"folder-upload\": 57428,\n  \"folder-user\": 57742,\n  \"folder-xmark\": 63071,\n  \"folder\": 61563,\n  \"folders\": 63072,\n  \"fondue-pot\": 58381,\n  \"font-awesome-flag\": 62132,\n  \"font-awesome-logo-full\": 62132,\n  \"font-awesome\": 62132,\n  \"font-case\": 63590,\n  \"font\": 61489,\n  \"foot-wing\": 59444,\n  \"football-ball\": 62542,\n  \"football-helmet\": 62543,\n  \"football\": 62542,\n  \"fork-knife\": 62182,\n  \"fork\": 62179,\n  \"forklift\": 62586,\n  \"fort\": 58502,\n  \"forward-fast\": 61520,\n  \"forward-step\": 61521,\n  \"forward\": 61518,\n  \"fragile\": 62651,\n  \"frame\": 58517,\n  \"franc-sign\": 57743,\n  \"french-fries\": 63491,\n  \"frog\": 62766,\n  \"frosty-head\": 63387,\n  \"frown-open\": 62842,\n  \"frown\": 61721,\n  \"function\": 63073,\n  \"funnel-dollar\": 63074,\n  \"futbol-ball\": 61923,\n  \"futbol\": 61923,\n  \"g\": 71,\n  \"galaxy\": 57352,\n  \"gallery-thumbnails\": 58282,\n  \"game-board-alt\": 63592,\n  \"game-board-simple\": 63592,\n  \"game-board\": 63591,\n  \"game-console-handheld-crank\": 58809,\n  \"game-console-handheld\": 63675,\n  \"gamepad-alt\": 58786,\n  \"gamepad-modern\": 58786,\n  \"gamepad\": 61723,\n  \"garage-car\": 57354,\n  \"garage-empty\": 59081,\n  \"garage-open\": 57355,\n  \"garage\": 57353,\n  \"garlic\": 58382,\n  \"gas-pump-left\": 59256,\n  \"gas-pump-right\": 59257,\n  \"gas-pump-slash\": 62964,\n  \"gas-pump\": 62767,\n  \"gauge-circle-bolt\": 58518,\n  \"gauge-circle-minus\": 58519,\n  \"gauge-circle-plus\": 58520,\n  \"gauge-high\": 63013,\n  \"gauge-low\": 63015,\n  \"gauge-max\": 63014,\n  \"gauge-med\": 63012,\n  \"gauge-min\": 63016,\n  \"gauge-simple-high\": 63018,\n  \"gauge-simple-low\": 63020,\n  \"gauge-simple-max\": 63019,\n  \"gauge-simple-med\": 63017,\n  \"gauge-simple-min\": 63021,\n  \"gauge-simple\": 63017,\n  \"gauge\": 63012,\n  \"gave-dandy\": 58377,\n  \"gavel\": 61667,\n  \"gbp\": 61780,\n  \"gear-api\": 59556,\n  \"gear-code\": 58856,\n  \"gear-complex-api\": 59557,\n  \"gear-complex-code\": 58859,\n  \"gear-complex\": 58857,\n  \"gear\": 61459,\n  \"gears\": 61573,\n  \"gem\": 62373,\n  \"gemini\": 59465,\n  \"genderless\": 61997,\n  \"ghost\": 63202,\n  \"gif\": 57744,\n  \"gift-card\": 63075,\n  \"gift\": 61547,\n  \"gifts\": 63388,\n  \"gingerbread-man\": 63389,\n  \"glass-champagne\": 63390,\n  \"glass-cheers\": 63391,\n  \"glass-citrus\": 63593,\n  \"glass-empty\": 57745,\n  \"glass-half-empty\": 57746,\n  \"glass-half-full\": 57746,\n  \"glass-half\": 57746,\n  \"glass-martini-alt\": 62843,\n  \"glass-martini\": 61440,\n  \"glass-water-droplet\": 58613,\n  \"glass-water\": 58612,\n  \"glass-whiskey-rocks\": 63393,\n  \"glass-whiskey\": 63392,\n  \"glass\": 63492,\n  \"glasses-alt\": 62965,\n  \"glasses-round\": 62965,\n  \"glasses\": 62768,\n  \"globe-africa\": 62844,\n  \"globe-americas\": 62845,\n  \"globe-asia\": 62846,\n  \"globe-europe\": 63394,\n  \"globe-oceania\": 58491,\n  \"globe-pointer\": 58894,\n  \"globe-snow\": 63395,\n  \"globe-stand\": 62966,\n  \"globe-wifi\": 59013,\n  \"globe-www\": 59558,\n  \"globe\": 61612,\n  \"glove-boxing\": 62520,\n  \"goal-net\": 58283,\n  \"golf-ball-tee\": 62544,\n  \"golf-ball\": 62544,\n  \"golf-club\": 62545,\n  \"golf-flag-hole\": 58284,\n  \"gopuram\": 63076,\n  \"gpu\": 59459,\n  \"graduation-cap\": 61853,\n  \"gramophone\": 63677,\n  \"grapes\": 58118,\n  \"grate-droplet\": 57748,\n  \"grate\": 57747,\n  \"greater-than-equal\": 62770,\n  \"greater-than\": 62,\n  \"grid-2-minus\": 59050,\n  \"grid-2-plus\": 57751,\n  \"grid-2\": 57750,\n  \"grid-3\": 57749,\n  \"grid-4\": 57752,\n  \"grid-5\": 57753,\n  \"grid-dividers\": 58285,\n  \"grid-horizontal\": 62861,\n  \"grid-round-2-minus\": 59051,\n  \"grid-round-2-plus\": 58844,\n  \"grid-round-2\": 58843,\n  \"grid-round-4\": 58845,\n  \"grid-round-5\": 58846,\n  \"grid-round\": 58842,\n  \"grid-vertical\": 62862,\n  \"grid\": 57749,\n  \"grill-fire\": 58788,\n  \"grill-hot\": 58789,\n  \"grill\": 58787,\n  \"grimace\": 62847,\n  \"grin-alt\": 62849,\n  \"grin-beam-sweat\": 62851,\n  \"grin-beam\": 62850,\n  \"grin-hearts\": 62852,\n  \"grin-squint-tears\": 62854,\n  \"grin-squint\": 62853,\n  \"grin-stars\": 62855,\n  \"grin-tears\": 62856,\n  \"grin-tongue-squint\": 62858,\n  \"grin-tongue-wink\": 62859,\n  \"grin-tongue\": 62857,\n  \"grin-wink\": 62860,\n  \"grin\": 62848,\n  \"grip-dots-vertical\": 58385,\n  \"grip-dots\": 58384,\n  \"grip-horizontal\": 62861,\n  \"grip-lines-vertical\": 63397,\n  \"grip-lines\": 63396,\n  \"grip-vertical\": 62862,\n  \"grip\": 62861,\n  \"group-arrows-rotate\": 58614,\n  \"guarani-sign\": 57754,\n  \"guitar-electric\": 63678,\n  \"guitar\": 63398,\n  \"guitars\": 63679,\n  \"gun-slash\": 57756,\n  \"gun-squirt\": 57757,\n  \"gun\": 57755,\n  \"h-square\": 61693,\n  \"h\": 72,\n  \"h1\": 62227,\n  \"h2\": 62228,\n  \"h3\": 62229,\n  \"h4\": 63594,\n  \"h5\": 58386,\n  \"h6\": 58387,\n  \"hamburger\": 63493,\n  \"hammer-brush\": 58912,\n  \"hammer-crash\": 58388,\n  \"hammer-war\": 63204,\n  \"hammer\": 63203,\n  \"hamsa\": 63077,\n  \"hand-back-fist\": 62037,\n  \"hand-back-point-down\": 57758,\n  \"hand-back-point-left\": 57759,\n  \"hand-back-point-ribbon\": 57760,\n  \"hand-back-point-right\": 57761,\n  \"hand-back-point-up\": 57762,\n  \"hand-dots\": 62561,\n  \"hand-fingers-crossed\": 57763,\n  \"hand-fist\": 63198,\n  \"hand-heart\": 62652,\n  \"hand-holding-box\": 62587,\n  \"hand-holding-circle-dollar\": 58913,\n  \"hand-holding-dollar\": 62656,\n  \"hand-holding-droplet\": 62657,\n  \"hand-holding-hand\": 58615,\n  \"hand-holding-heart\": 62654,\n  \"hand-holding-magic\": 63205,\n  \"hand-holding-medical\": 57436,\n  \"hand-holding-seedling\": 62655,\n  \"hand-holding-skull\": 57764,\n  \"hand-holding-star\": 59393,\n  \"hand-holding-usd\": 62656,\n  \"hand-holding-water\": 62657,\n  \"hand-holding\": 62653,\n  \"hand-horns\": 57769,\n  \"hand-lizard\": 62040,\n  \"hand-love\": 57765,\n  \"hand-middle-finger\": 63494,\n  \"hand-paper\": 62038,\n  \"hand-peace\": 62043,\n  \"hand-point-down\": 61607,\n  \"hand-point-left\": 61605,\n  \"hand-point-ribbon\": 57766,\n  \"hand-point-right\": 61604,\n  \"hand-point-up\": 61606,\n  \"hand-pointer\": 62042,\n  \"hand-receiving\": 62588,\n  \"hand-rock\": 62037,\n  \"hand-scissors\": 62039,\n  \"hand-shaka\": 59441,\n  \"hand-sparkles\": 57437,\n  \"hand-spock\": 62041,\n  \"hand-wave\": 57767,\n  \"hand\": 62038,\n  \"handcuffs\": 58616,\n  \"hands-american-sign-language-interpreting\": 62115,\n  \"hands-asl-interpreting\": 62115,\n  \"hands-bound\": 58617,\n  \"hands-bubbles\": 57438,\n  \"hands-clapping\": 57768,\n  \"hands-heart\": 62659,\n  \"hands-helping\": 62660,\n  \"hands-holding-child\": 58618,\n  \"hands-holding-circle\": 58619,\n  \"hands-holding-diamond\": 62588,\n  \"hands-holding-dollar\": 62661,\n  \"hands-holding-heart\": 62659,\n  \"hands-holding\": 62658,\n  \"hands-praying\": 63108,\n  \"hands-usd\": 62661,\n  \"hands-wash\": 57438,\n  \"hands\": 62119,\n  \"handshake-alt-slash\": 57440,\n  \"handshake-alt\": 62133,\n  \"handshake-angle\": 62660,\n  \"handshake-simple-slash\": 57440,\n  \"handshake-simple\": 62133,\n  \"handshake-slash\": 57440,\n  \"handshake\": 62133,\n  \"hanukiah\": 63206,\n  \"hard-drive\": 61600,\n  \"hard-hat\": 63495,\n  \"hard-of-hearing\": 62116,\n  \"hashtag-lock\": 58389,\n  \"hashtag\": 35,\n  \"hat-beach\": 58886,\n  \"hat-chef\": 63595,\n  \"hat-cowboy-side\": 63681,\n  \"hat-cowboy\": 63680,\n  \"hat-hard\": 63495,\n  \"hat-santa\": 63399,\n  \"hat-winter\": 63400,\n  \"hat-witch\": 63207,\n  \"hat-wizard\": 63208,\n  \"haykal\": 63078,\n  \"hdd\": 61600,\n  \"head-side-brain\": 63496,\n  \"head-side-circuit\": 59230,\n  \"head-side-cough-slash\": 57442,\n  \"head-side-cough\": 57441,\n  \"head-side-gear\": 58897,\n  \"head-side-goggles\": 63210,\n  \"head-side-headphones\": 63682,\n  \"head-side-heart\": 57770,\n  \"head-side-mask\": 57443,\n  \"head-side-medical\": 63497,\n  \"head-side-speak\": 59231,\n  \"head-side-virus\": 57444,\n  \"head-side\": 63209,\n  \"head-vr\": 63210,\n  \"header\": 61916,\n  \"heading\": 61916,\n  \"headphones-alt\": 61477,\n  \"headphones-simple\": 61477,\n  \"headphones-slash\": 59260,\n  \"headphones\": 61477,\n  \"headset\": 62864,\n  \"heart-broken\": 63401,\n  \"heart-circle-bolt\": 58620,\n  \"heart-circle-check\": 58621,\n  \"heart-circle-exclamation\": 58622,\n  \"heart-circle-minus\": 58623,\n  \"heart-circle-plus\": 58624,\n  \"heart-circle-xmark\": 58625,\n  \"heart-circle\": 62663,\n  \"heart-crack\": 63401,\n  \"heart-half-alt\": 57772,\n  \"heart-half-stroke\": 57772,\n  \"heart-half\": 57771,\n  \"heart-music-camera-bolt\": 63597,\n  \"heart-pulse\": 61982,\n  \"heart-rate\": 62968,\n  \"heart-slash\": 59278,\n  \"heart-square\": 62664,\n  \"heart\": 61444,\n  \"heartbeat\": 61982,\n  \"hearts\": 59279,\n  \"heat\": 57356,\n  \"helicopter-symbol\": 58626,\n  \"helicopter\": 62771,\n  \"helmet-battle\": 63211,\n  \"helmet-safety\": 63495,\n  \"helmet-un\": 58627,\n  \"heptagon\": 59424,\n  \"hexagon-check\": 58390,\n  \"hexagon-divide\": 57773,\n  \"hexagon-equals\": 59058,\n  \"hexagon-exclamation\": 58391,\n  \"hexagon-image\": 58628,\n  \"hexagon-minus\": 62215,\n  \"hexagon-nodes-bolt\": 59034,\n  \"hexagon-nodes\": 59033,\n  \"hexagon-plus\": 62208,\n  \"hexagon-vertical-nft-slanted\": 58629,\n  \"hexagon-vertical-nft\": 58629,\n  \"hexagon-xmark\": 62190,\n  \"hexagon\": 62226,\n  \"high-definition\": 57774,\n  \"highlighter-line\": 57775,\n  \"highlighter\": 62865,\n  \"hiking\": 63212,\n  \"hill-avalanche\": 58631,\n  \"hill-rockslide\": 58632,\n  \"hippo\": 63213,\n  \"history\": 61914,\n  \"hockey-mask\": 63214,\n  \"hockey-puck\": 62547,\n  \"hockey-stick-puck\": 58286,\n  \"hockey-stick\": 59366,\n  \"hockey-sticks\": 62548,\n  \"holly-berry\": 63402,\n  \"home-alt\": 61461,\n  \"home-blank\": 58503,\n  \"home-heart\": 62665,\n  \"home-lg-alt\": 61461,\n  \"home-lg\": 58287,\n  \"home-user\": 57776,\n  \"home\": 61461,\n  \"honey-pot\": 58392,\n  \"hood-cloak\": 63215,\n  \"horizontal-rule\": 63596,\n  \"horse-head\": 63403,\n  \"horse-saddle\": 63683,\n  \"horse\": 63216,\n  \"horseshoe\": 59418,\n  \"hose-reel\": 58394,\n  \"hose\": 58393,\n  \"hospital-alt\": 61688,\n  \"hospital-symbol\": 62590,\n  \"hospital-user\": 63501,\n  \"hospital-wide\": 61688,\n  \"hospital\": 61688,\n  \"hospitals\": 63502,\n  \"hot-tub-person\": 62867,\n  \"hot-tub\": 62867,\n  \"hotdog\": 63503,\n  \"hotel\": 62868,\n  \"hourglass-1\": 62033,\n  \"hourglass-2\": 62034,\n  \"hourglass-3\": 62035,\n  \"hourglass-clock\": 58395,\n  \"hourglass-empty\": 62036,\n  \"hourglass-end\": 62035,\n  \"hourglass-half\": 62034,\n  \"hourglass-start\": 62033,\n  \"hourglass\": 62036,\n  \"house-blank\": 58503,\n  \"house-building\": 57777,\n  \"house-chimney-blank\": 58288,\n  \"house-chimney-crack\": 63217,\n  \"house-chimney-heart\": 57778,\n  \"house-chimney-medical\": 63474,\n  \"house-chimney-user\": 57445,\n  \"house-chimney-window\": 57357,\n  \"house-chimney\": 58287,\n  \"house-circle-check\": 58633,\n  \"house-circle-exclamation\": 58634,\n  \"house-circle-xmark\": 58635,\n  \"house-crack\": 58289,\n  \"house-damage\": 63217,\n  \"house-day\": 57358,\n  \"house-fire\": 58636,\n  \"house-flag\": 58637,\n  \"house-flood-water-circle-arrow-right\": 58639,\n  \"house-flood-water\": 58638,\n  \"house-flood\": 63311,\n  \"house-heart\": 62665,\n  \"house-laptop\": 57446,\n  \"house-leave\": 57359,\n  \"house-lock\": 58640,\n  \"house-medical-circle-check\": 58641,\n  \"house-medical-circle-exclamation\": 58642,\n  \"house-medical-circle-xmark\": 58643,\n  \"house-medical-flag\": 58644,\n  \"house-medical\": 58290,\n  \"house-night\": 57360,\n  \"house-person-arrive\": 57361,\n  \"house-person-depart\": 57359,\n  \"house-person-leave\": 57359,\n  \"house-person-return\": 57361,\n  \"house-return\": 57361,\n  \"house-signal\": 57362,\n  \"house-tree\": 57779,\n  \"house-tsunami\": 58645,\n  \"house-turret\": 57780,\n  \"house-unlock\": 59082,\n  \"house-user\": 57776,\n  \"house-water\": 63311,\n  \"house-window\": 58291,\n  \"house\": 61461,\n  \"hryvnia-sign\": 63218,\n  \"hryvnia\": 63218,\n  \"humidity\": 63312,\n  \"hundred-points\": 58396,\n  \"hurricane\": 63313,\n  \"hydra\": 59014,\n  \"hyphen\": 45,\n  \"i-cursor\": 62022,\n  \"i\": 73,\n  \"ice-cream\": 63504,\n  \"ice-skate\": 63404,\n  \"icicles\": 63405,\n  \"icons-alt\": 63598,\n  \"icons\": 63597,\n  \"id-badge\": 62145,\n  \"id-card-alt\": 62591,\n  \"id-card-clip\": 62591,\n  \"id-card\": 62146,\n  \"igloo\": 63406,\n  \"ils\": 61963,\n  \"image-broken\": 59562,\n  \"image-circle-arrow-down\": 59244,\n  \"image-circle-check\": 59245,\n  \"image-circle-plus\": 59246,\n  \"image-circle-xmark\": 59247,\n  \"image-landscape\": 57781,\n  \"image-music\": 59248,\n  \"image-polaroid-user\": 57782,\n  \"image-polaroid\": 63684,\n  \"image-portrait\": 62432,\n  \"image-slash\": 57783,\n  \"image-stack\": 59249,\n  \"image-user\": 57784,\n  \"image\": 61502,\n  \"images-user\": 57785,\n  \"images\": 62210,\n  \"inbox-arrow-down\": 62224,\n  \"inbox-arrow-up\": 62225,\n  \"inbox-full\": 57786,\n  \"inbox-in\": 62224,\n  \"inbox-out\": 62225,\n  \"inbox\": 61468,\n  \"inboxes\": 57787,\n  \"indent\": 61500,\n  \"indian-rupee-sign\": 57788,\n  \"indian-rupee\": 57788,\n  \"industry-alt\": 62387,\n  \"industry-windows\": 62387,\n  \"industry\": 62069,\n  \"infinity\": 62772,\n  \"info-circle\": 61530,\n  \"info-square\": 62223,\n  \"info\": 61737,\n  \"inhaler\": 62969,\n  \"input-numeric\": 57789,\n  \"input-password\": 59517,\n  \"input-pipe\": 57790,\n  \"input-text\": 57791,\n  \"inr\": 57788,\n  \"institution\": 61852,\n  \"integral\": 63079,\n  \"interrobang\": 58810,\n  \"intersection\": 63080,\n  \"inventory\": 62592,\n  \"island-tree-palm\": 63505,\n  \"island-tropical\": 63505,\n  \"italic\": 61491,\n  \"j\": 74,\n  \"jack-o-lantern\": 62222,\n  \"jar-wheat\": 58647,\n  \"jar\": 58646,\n  \"jeans-straight\": 59091,\n  \"jeans\": 59090,\n  \"jedi\": 63081,\n  \"jet-fighter-up\": 58648,\n  \"jet-fighter\": 61691,\n  \"joint\": 62869,\n  \"journal-whills\": 63082,\n  \"joystick\": 63685,\n  \"jpy\": 61783,\n  \"jug-bottle\": 58875,\n  \"jug-detergent\": 58649,\n  \"jug\": 63686,\n  \"k\": 75,\n  \"kaaba\": 63083,\n  \"kayak\": 59547,\n  \"kazoo\": 63687,\n  \"kerning\": 63599,\n  \"kettlebell\": 59442,\n  \"key-skeleton-left-right\": 58292,\n  \"key-skeleton\": 63219,\n  \"key\": 61572,\n  \"keyboard-brightness-low\": 57793,\n  \"keyboard-brightness\": 57792,\n  \"keyboard-down\": 57794,\n  \"keyboard-left\": 57795,\n  \"keyboard\": 61724,\n  \"keynote\": 63084,\n  \"khanda\": 63085,\n  \"kidneys\": 62971,\n  \"kip-sign\": 57796,\n  \"kiss-beam\": 62871,\n  \"kiss-wink-heart\": 62872,\n  \"kiss\": 62870,\n  \"kit-medical\": 62585,\n  \"kitchen-set\": 58650,\n  \"kite\": 63220,\n  \"kiwi-bird\": 62773,\n  \"kiwi-fruit\": 58124,\n  \"knife-kitchen\": 63221,\n  \"knife\": 62180,\n  \"krw\": 61785,\n  \"l\": 76,\n  \"label\": 59559,\n  \"lacrosse-stick-ball\": 58294,\n  \"lacrosse-stick\": 58293,\n  \"ladder-water\": 62917,\n  \"lambda\": 63086,\n  \"lamp-desk\": 57364,\n  \"lamp-floor\": 57365,\n  \"lamp-street\": 57797,\n  \"lamp\": 62666,\n  \"land-mine-on\": 58651,\n  \"landmark-alt\": 63314,\n  \"landmark-dome\": 63314,\n  \"landmark-flag\": 58652,\n  \"landmark-magnifying-glass\": 58914,\n  \"landmark\": 63087,\n  \"landscape\": 57781,\n  \"language\": 61867,\n  \"laptop-arrow-down\": 57798,\n  \"laptop-binary\": 58855,\n  \"laptop-code\": 62972,\n  \"laptop-file\": 58653,\n  \"laptop-house\": 57446,\n  \"laptop-medical\": 63506,\n  \"laptop-mobile\": 63610,\n  \"laptop-slash\": 57799,\n  \"laptop\": 61705,\n  \"lari-sign\": 57800,\n  \"lasso-sparkles\": 57801,\n  \"lasso\": 63688,\n  \"laugh-beam\": 62874,\n  \"laugh-squint\": 62875,\n  \"laugh-wink\": 62876,\n  \"laugh\": 62873,\n  \"layer-group-minus\": 62974,\n  \"layer-group-plus\": 62975,\n  \"layer-group\": 62973,\n  \"layer-minus\": 62974,\n  \"layer-plus\": 62975,\n  \"layer\": 59455,\n  \"leaf-heart\": 62667,\n  \"leaf-maple\": 63222,\n  \"leaf-oak\": 63223,\n  \"leaf\": 61548,\n  \"leafy-green\": 58397,\n  \"left-from-bracket\": 58988,\n  \"left-from-dotted-line\": 59074,\n  \"left-from-line\": 62280,\n  \"left-long-to-line\": 58398,\n  \"left-long\": 62218,\n  \"left-right\": 62263,\n  \"left-to-bracket\": 58989,\n  \"left-to-dotted-line\": 59075,\n  \"left-to-line\": 62283,\n  \"left\": 62293,\n  \"legal\": 61667,\n  \"lemon\": 61588,\n  \"leo\": 59466,\n  \"less-than-equal\": 62775,\n  \"less-than\": 60,\n  \"level-down-alt\": 62398,\n  \"level-down\": 61769,\n  \"level-up-alt\": 62399,\n  \"level-up\": 61768,\n  \"libra\": 59467,\n  \"life-ring\": 61901,\n  \"light-ceiling\": 57366,\n  \"light-emergency-on\": 58400,\n  \"light-emergency\": 58399,\n  \"light-switch-off\": 57368,\n  \"light-switch-on\": 57369,\n  \"light-switch\": 57367,\n  \"lightbulb-cfl-on\": 58791,\n  \"lightbulb-cfl\": 58790,\n  \"lightbulb-dollar\": 63088,\n  \"lightbulb-exclamation-on\": 57802,\n  \"lightbulb-exclamation\": 63089,\n  \"lightbulb-gear\": 58877,\n  \"lightbulb-message\": 59015,\n  \"lightbulb-on\": 63090,\n  \"lightbulb-slash\": 63091,\n  \"lightbulb\": 61675,\n  \"lighthouse\": 58898,\n  \"lights-holiday\": 63410,\n  \"line-chart\": 61953,\n  \"line-columns\": 63600,\n  \"line-height\": 63601,\n  \"lines-leaning\": 58654,\n  \"link-broken\": 59458,\n  \"link-horizontal-slash\": 57804,\n  \"link-horizontal\": 57803,\n  \"link-simple-slash\": 57806,\n  \"link-simple\": 57805,\n  \"link-slash\": 61735,\n  \"link\": 61633,\n  \"lips\": 62976,\n  \"lira-sign\": 61845,\n  \"list-1-2\": 61643,\n  \"list-alt\": 61474,\n  \"list-check\": 61614,\n  \"list-dots\": 61642,\n  \"list-dropdown\": 57807,\n  \"list-music\": 63689,\n  \"list-numeric\": 61643,\n  \"list-ol\": 61643,\n  \"list-radio\": 57808,\n  \"list-squares\": 61498,\n  \"list-timeline\": 57809,\n  \"list-tree\": 57810,\n  \"list-ul\": 61642,\n  \"list\": 61498,\n  \"litecoin-sign\": 57811,\n  \"loader\": 57812,\n  \"lobster\": 58401,\n  \"location-arrow-slash\": 59258,\n  \"location-arrow-up\": 58938,\n  \"location-arrow\": 61732,\n  \"location-check\": 62982,\n  \"location-circle\": 62978,\n  \"location-crosshairs-slash\": 62979,\n  \"location-crosshairs\": 62977,\n  \"location-dot-slash\": 62981,\n  \"location-dot\": 62405,\n  \"location-exclamation\": 62984,\n  \"location-minus\": 62985,\n  \"location-pen\": 62983,\n  \"location-pin-lock\": 58655,\n  \"location-pin-slash\": 62988,\n  \"location-pin\": 61505,\n  \"location-plus\": 62986,\n  \"location-question\": 62987,\n  \"location-slash\": 62979,\n  \"location-smile\": 62989,\n  \"location-xmark\": 62990,\n  \"location\": 62977,\n  \"lock-a\": 58402,\n  \"lock-alt\": 62221,\n  \"lock-hashtag\": 58403,\n  \"lock-keyhole-open\": 62402,\n  \"lock-keyhole\": 62221,\n  \"lock-open-alt\": 62402,\n  \"lock-open\": 62401,\n  \"lock\": 61475,\n  \"locust\": 58656,\n  \"lollipop\": 58404,\n  \"lollypop\": 58404,\n  \"long-arrow-alt-down\": 62217,\n  \"long-arrow-alt-left\": 62218,\n  \"long-arrow-alt-right\": 62219,\n  \"long-arrow-alt-up\": 62220,\n  \"long-arrow-down\": 61813,\n  \"long-arrow-left\": 61815,\n  \"long-arrow-right\": 61816,\n  \"long-arrow-up\": 61814,\n  \"loveseat\": 62668,\n  \"low-vision\": 62120,\n  \"luchador-mask\": 62549,\n  \"luchador\": 62549,\n  \"luggage-cart\": 62877,\n  \"lungs-virus\": 57447,\n  \"lungs\": 62980,\n  \"lychee\": 59428,\n  \"m\": 77,\n  \"mace\": 63224,\n  \"magic-wand-sparkles\": 58058,\n  \"magic\": 61648,\n  \"magnet\": 61558,\n  \"magnifying-glass-arrow-right\": 58657,\n  \"magnifying-glass-arrows-rotate\": 58974,\n  \"magnifying-glass-chart\": 58658,\n  \"magnifying-glass-dollar\": 63112,\n  \"magnifying-glass-location\": 63113,\n  \"magnifying-glass-minus\": 61456,\n  \"magnifying-glass-music\": 58975,\n  \"magnifying-glass-play\": 58976,\n  \"magnifying-glass-plus\": 61454,\n  \"magnifying-glass-waveform\": 58977,\n  \"magnifying-glass\": 61442,\n  \"mail-bulk\": 63092,\n  \"mail-forward\": 61540,\n  \"mail-reply-all\": 61730,\n  \"mail-reply\": 62437,\n  \"mailbox-flag-up\": 58811,\n  \"mailbox-open-empty\": 59425,\n  \"mailbox-open-letter\": 59427,\n  \"mailbox\": 63507,\n  \"maki-roll\": 58507,\n  \"makizushi\": 58507,\n  \"malaysian-ringgit-sign\": 59130,\n  \"male\": 61827,\n  \"manat-sign\": 57813,\n  \"mandolin\": 63225,\n  \"mango\": 58127,\n  \"manhole\": 57814,\n  \"map-location-dot\": 62880,\n  \"map-location\": 62879,\n  \"map-marked-alt\": 62880,\n  \"map-marked\": 62879,\n  \"map-marker-alt-slash\": 62981,\n  \"map-marker-alt\": 62405,\n  \"map-marker-check\": 62982,\n  \"map-marker-edit\": 62983,\n  \"map-marker-exclamation\": 62984,\n  \"map-marker-minus\": 62985,\n  \"map-marker-plus\": 62986,\n  \"map-marker-question\": 62987,\n  \"map-marker-slash\": 62988,\n  \"map-marker-smile\": 62989,\n  \"map-marker-times\": 62990,\n  \"map-marker-xmark\": 62990,\n  \"map-marker\": 61505,\n  \"map-pin\": 62070,\n  \"map-signs\": 62071,\n  \"map\": 62073,\n  \"marker\": 62881,\n  \"mars-and-venus-burst\": 58659,\n  \"mars-and-venus\": 61988,\n  \"mars-double\": 61991,\n  \"mars-stroke-h\": 61995,\n  \"mars-stroke-right\": 61995,\n  \"mars-stroke-up\": 61994,\n  \"mars-stroke-v\": 61994,\n  \"mars-stroke\": 61993,\n  \"mars\": 61986,\n  \"martini-glass-citrus\": 62817,\n  \"martini-glass-empty\": 61440,\n  \"martini-glass\": 62843,\n  \"mask-face\": 57815,\n  \"mask-luchador\": 62549,\n  \"mask-snorkel\": 58295,\n  \"mask-ventilator\": 58660,\n  \"mask\": 63226,\n  \"masks-theater\": 63024,\n  \"mattress-pillow\": 58661,\n  \"maximize\": 62238,\n  \"meat\": 63508,\n  \"medal\": 62882,\n  \"medkit\": 61690,\n  \"megaphone\": 63093,\n  \"meh-blank\": 62884,\n  \"meh-rolling-eyes\": 62885,\n  \"meh\": 61722,\n  \"melon-slice\": 58129,\n  \"melon\": 58128,\n  \"memo-circle-check\": 57817,\n  \"memo-circle-info\": 58522,\n  \"memo-pad\": 57818,\n  \"memo\": 57816,\n  \"memory\": 62776,\n  \"menorah\": 63094,\n  \"mercury\": 61987,\n  \"merge\": 58662,\n  \"message-arrow-down\": 57819,\n  \"message-arrow-up-right\": 57821,\n  \"message-arrow-up\": 57820,\n  \"message-bot\": 58296,\n  \"message-captions\": 57822,\n  \"message-check\": 62626,\n  \"message-code\": 57823,\n  \"message-dollar\": 63056,\n  \"message-dot\": 59103,\n  \"message-dots\": 62627,\n  \"message-edit\": 62628,\n  \"message-exclamation\": 62629,\n  \"message-heart\": 58825,\n  \"message-image\": 57824,\n  \"message-lines\": 62630,\n  \"message-medical\": 63476,\n  \"message-middle-top\": 57826,\n  \"message-middle\": 57825,\n  \"message-minus\": 62631,\n  \"message-music\": 63663,\n  \"message-pen\": 62628,\n  \"message-plus\": 62632,\n  \"message-question\": 57827,\n  \"message-quote\": 57828,\n  \"message-slash\": 62633,\n  \"message-smile\": 62634,\n  \"message-sms\": 57829,\n  \"message-text\": 57830,\n  \"message-times\": 62635,\n  \"message-waveform\": 59104,\n  \"message-xmark\": 62635,\n  \"message\": 62074,\n  \"messages-dollar\": 63058,\n  \"messages-question\": 57831,\n  \"messages\": 62646,\n  \"messaging\": 62627,\n  \"meteor\": 63315,\n  \"meter-bolt\": 57833,\n  \"meter-droplet\": 57834,\n  \"meter-fire\": 57835,\n  \"meter\": 57832,\n  \"microchip-ai\": 57836,\n  \"microchip\": 62171,\n  \"microphone-alt-slash\": 62777,\n  \"microphone-alt\": 62409,\n  \"microphone-circle-alt\": 57623,\n  \"microphone-circle-plus\": 59261,\n  \"microphone-circle-xmark\": 59262,\n  \"microphone-circle\": 57622,\n  \"microphone-lines-slash\": 62777,\n  \"microphone-lines\": 62409,\n  \"microphone-signal-meter\": 59232,\n  \"microphone-slash\": 61745,\n  \"microphone-stand\": 63691,\n  \"microphone\": 61744,\n  \"microscope\": 62992,\n  \"microwave\": 57371,\n  \"midi\": 59398,\n  \"mill-sign\": 57837,\n  \"mind-share\": 63095,\n  \"minimize\": 63372,\n  \"minus-circle\": 61526,\n  \"minus-hexagon\": 62215,\n  \"minus-large\": 58372,\n  \"minus-octagon\": 62216,\n  \"minus-square\": 61766,\n  \"minus\": 61544,\n  \"mistletoe\": 63412,\n  \"mitten\": 63413,\n  \"mobile-alt\": 62413,\n  \"mobile-android-alt\": 62415,\n  \"mobile-android\": 62414,\n  \"mobile-arrow-down\": 59211,\n  \"mobile-button\": 61707,\n  \"mobile-iphone\": 57838,\n  \"mobile-notch\": 57838,\n  \"mobile-phone\": 62414,\n  \"mobile-retro\": 58663,\n  \"mobile-rotate-reverse\": 59412,\n  \"mobile-rotate\": 59411,\n  \"mobile-screen-button\": 62413,\n  \"mobile-screen\": 62415,\n  \"mobile-signal-out\": 57840,\n  \"mobile-signal\": 57839,\n  \"mobile-slash\": 59413,\n  \"mobile-vibrate-slash\": 59415,\n  \"mobile-vibrate\": 59414,\n  \"mobile\": 62414,\n  \"money-bill-1-wave\": 62779,\n  \"money-bill-1\": 62417,\n  \"money-bill-alt\": 62417,\n  \"money-bill-simple-wave\": 57842,\n  \"money-bill-simple\": 57841,\n  \"money-bill-transfer\": 58664,\n  \"money-bill-trend-up\": 58665,\n  \"money-bill-wave-alt\": 62779,\n  \"money-bill-wave\": 62778,\n  \"money-bill-wheat\": 58666,\n  \"money-bill\": 61654,\n  \"money-bills-alt\": 57844,\n  \"money-bills-simple\": 57844,\n  \"money-bills\": 57843,\n  \"money-check-alt\": 62781,\n  \"money-check-dollar-pen\": 63603,\n  \"money-check-dollar\": 62781,\n  \"money-check-edit-alt\": 63603,\n  \"money-check-edit\": 63602,\n  \"money-check-pen\": 63602,\n  \"money-check\": 62780,\n  \"money-from-bracket\": 58130,\n  \"money-simple-from-bracket\": 58131,\n  \"monitor-heart-rate\": 62993,\n  \"monitor-waveform\": 62993,\n  \"monkey\": 63227,\n  \"monument\": 62886,\n  \"moon-cloud\": 63316,\n  \"moon-first-quarter-inverse\": 59506,\n  \"moon-first-quarter\": 59504,\n  \"moon-full-inverse\": 59507,\n  \"moon-full\": 59505,\n  \"moon-last-quarter-inverse\": 59504,\n  \"moon-last-quarter\": 59506,\n  \"moon-new-inverse\": 59505,\n  \"moon-new\": 59507,\n  \"moon-over-sun\": 63306,\n  \"moon-star\": 59337,\n  \"moon-stars\": 63317,\n  \"moon-waning-crescent-inverse\": 59511,\n  \"moon-waning-crescent\": 59508,\n  \"moon-waning-gibbous-inverse\": 59510,\n  \"moon-waning-gibbous\": 59509,\n  \"moon-waxing-crescent-inverse\": 59509,\n  \"moon-waxing-crescent\": 59510,\n  \"moon-waxing-gibbous-inverse\": 59508,\n  \"moon-waxing-gibbous\": 59511,\n  \"moon\": 61830,\n  \"moped\": 58297,\n  \"mortar-board\": 61853,\n  \"mortar-pestle\": 62887,\n  \"mosque\": 63096,\n  \"mosquito-net\": 58668,\n  \"mosquito\": 58667,\n  \"motorcycle\": 61980,\n  \"mound\": 58669,\n  \"mountain-city\": 58670,\n  \"mountain-sun\": 58671,\n  \"mountain\": 63228,\n  \"mountains\": 63229,\n  \"mouse-alt\": 63693,\n  \"mouse-field\": 58792,\n  \"mouse-pointer\": 62021,\n  \"mouse\": 63692,\n  \"mp3-player\": 63694,\n  \"mug-hot\": 63414,\n  \"mug-marshmallows\": 63415,\n  \"mug-saucer\": 61684,\n  \"mug-tea-saucer\": 57845,\n  \"mug-tea\": 63605,\n  \"mug\": 63604,\n  \"multiply\": 61453,\n  \"museum\": 61852,\n  \"mushroom\": 58405,\n  \"music-alt-slash\": 63696,\n  \"music-alt\": 63695,\n  \"music-magnifying-glass\": 58978,\n  \"music-note-slash\": 63696,\n  \"music-note\": 63695,\n  \"music-slash\": 63697,\n  \"music\": 61441,\n  \"mustache\": 58812,\n  \"n\": 78,\n  \"naira-sign\": 57846,\n  \"narwhal\": 63230,\n  \"nas\": 59553,\n  \"navicon\": 61641,\n  \"nesting-dolls\": 58298,\n  \"network-wired\": 63231,\n  \"neuter\": 61996,\n  \"newspaper\": 61930,\n  \"nfc-lock\": 57848,\n  \"nfc-magnifying-glass\": 57849,\n  \"nfc-pen\": 57850,\n  \"nfc-signal\": 57851,\n  \"nfc-slash\": 57852,\n  \"nfc-symbol\": 58673,\n  \"nfc-trash\": 57853,\n  \"nfc\": 57847,\n  \"nigiri\": 58506,\n  \"non-binary\": 59399,\n  \"norwegian-krone-sign\": 59112,\n  \"nose\": 58813,\n  \"not-equal\": 62782,\n  \"notdef\": 57854,\n  \"note-medical\": 57856,\n  \"note-sticky\": 62025,\n  \"note\": 57855,\n  \"notebook\": 57857,\n  \"notes-medical\": 62593,\n  \"notes-sticky\": 59225,\n  \"notes\": 57858,\n  \"numpad\": 59340,\n  \"o\": 79,\n  \"oar\": 59524,\n  \"oars\": 59525,\n  \"object-exclude\": 58524,\n  \"object-group\": 62023,\n  \"object-intersect\": 58525,\n  \"object-subtract\": 58526,\n  \"object-ungroup\": 62024,\n  \"object-union\": 58527,\n  \"objects-align-bottom\": 58299,\n  \"objects-align-center-horizontal\": 58300,\n  \"objects-align-center-vertical\": 58301,\n  \"objects-align-left\": 58302,\n  \"objects-align-right\": 58303,\n  \"objects-align-top\": 58304,\n  \"objects-column\": 58305,\n  \"octagon-check\": 58406,\n  \"octagon-divide\": 57859,\n  \"octagon-equals\": 59059,\n  \"octagon-exclamation\": 57860,\n  \"octagon-minus\": 62216,\n  \"octagon-plus\": 62209,\n  \"octagon-xmark\": 62192,\n  \"octagon\": 62214,\n  \"octopus\": 59016,\n  \"oil-can-drip\": 57861,\n  \"oil-can\": 62995,\n  \"oil-temp\": 62996,\n  \"oil-temperature\": 62996,\n  \"oil-well\": 58674,\n  \"olive-branch\": 58135,\n  \"olive\": 58134,\n  \"om\": 63097,\n  \"omega\": 63098,\n  \"onion\": 58407,\n  \"open-captioning\": 59263,\n  \"opossum\": 59516,\n  \"option\": 58136,\n  \"ornament\": 63416,\n  \"otter\": 63232,\n  \"outdent\": 61499,\n  \"outlet\": 57372,\n  \"oven\": 57373,\n  \"overline\": 63606,\n  \"owl\": 59551,\n  \"p\": 80,\n  \"page-break\": 63607,\n  \"page-caret-down\": 58409,\n  \"page-caret-up\": 58410,\n  \"page\": 58408,\n  \"pager\": 63509,\n  \"paint-brush-alt\": 62889,\n  \"paint-brush-fine\": 62889,\n  \"paint-brush\": 61948,\n  \"paint-roller\": 62890,\n  \"paintbrush-alt\": 62889,\n  \"paintbrush-fine-slash\": 59213,\n  \"paintbrush-fine\": 62889,\n  \"paintbrush-pencil\": 57862,\n  \"paintbrush-slash\": 59214,\n  \"paintbrush\": 61948,\n  \"palette-boxes\": 62595,\n  \"palette\": 62783,\n  \"pallet-alt\": 62595,\n  \"pallet-box\": 57864,\n  \"pallet-boxes\": 62595,\n  \"pallet\": 62594,\n  \"pan-food\": 58411,\n  \"pan-frying\": 58412,\n  \"pancakes\": 58413,\n  \"panel-ews\": 58414,\n  \"panel-fire\": 58415,\n  \"panorama\": 57865,\n  \"panties\": 59092,\n  \"pants-straight\": 59094,\n  \"pants\": 59093,\n  \"paper-plane-alt\": 57866,\n  \"paper-plane-top\": 57866,\n  \"paper-plane\": 61912,\n  \"paperclip-vertical\": 58306,\n  \"paperclip\": 61638,\n  \"parachute-box\": 62669,\n  \"paragraph-left\": 63608,\n  \"paragraph-rtl\": 63608,\n  \"paragraph\": 61917,\n  \"parentheses\": 57541,\n  \"parenthesis\": 40,\n  \"parking-circle-slash\": 62998,\n  \"parking-circle\": 62997,\n  \"parking-slash\": 62999,\n  \"parking\": 62784,\n  \"party-back\": 58460,\n  \"party-bell\": 58138,\n  \"party-horn\": 58139,\n  \"passport\": 62891,\n  \"pastafarianism\": 63099,\n  \"paste\": 61674,\n  \"pause-circle\": 62091,\n  \"pause\": 61516,\n  \"paw-alt\": 63233,\n  \"paw-claws\": 63234,\n  \"paw-simple\": 63233,\n  \"paw\": 61872,\n  \"peace\": 63100,\n  \"peach\": 57867,\n  \"peanut\": 58416,\n  \"peanuts\": 58417,\n  \"peapod\": 58140,\n  \"pear\": 57868,\n  \"pedestal\": 57869,\n  \"pegasus\": 63235,\n  \"pen-alt-slash\": 57871,\n  \"pen-alt\": 62213,\n  \"pen-circle\": 57870,\n  \"pen-clip-slash\": 57871,\n  \"pen-clip\": 62213,\n  \"pen-fancy-slash\": 57872,\n  \"pen-fancy\": 62892,\n  \"pen-field\": 57873,\n  \"pen-line\": 57874,\n  \"pen-nib-slash\": 58529,\n  \"pen-nib\": 62893,\n  \"pen-paintbrush\": 63000,\n  \"pen-ruler\": 62894,\n  \"pen-slash\": 57875,\n  \"pen-square\": 61771,\n  \"pen-swirl\": 57876,\n  \"pen-to-square\": 61508,\n  \"pen\": 62212,\n  \"pencil-alt\": 62211,\n  \"pencil-line\": 59215,\n  \"pencil-mechanical\": 58826,\n  \"pencil-paintbrush\": 63000,\n  \"pencil-ruler\": 62894,\n  \"pencil-slash\": 57877,\n  \"pencil-square\": 61771,\n  \"pencil\": 62211,\n  \"pennant\": 62550,\n  \"pentagon\": 59280,\n  \"people-arrows-left-right\": 57448,\n  \"people-arrows\": 57448,\n  \"people-carry-box\": 62670,\n  \"people-carry\": 62670,\n  \"people-dress-simple\": 57880,\n  \"people-dress\": 57879,\n  \"people-group\": 58675,\n  \"people-line\": 58676,\n  \"people-pants-simple\": 57882,\n  \"people-pants\": 57881,\n  \"people-pulling\": 58677,\n  \"people-robbery\": 58678,\n  \"people-roof\": 58679,\n  \"people-simple\": 57883,\n  \"people\": 57878,\n  \"pepper-hot\": 63510,\n  \"pepper\": 58418,\n  \"percent\": 37,\n  \"percentage\": 37,\n  \"period\": 46,\n  \"person-arms-raised\": 59267,\n  \"person-arrow-down-to-line\": 58680,\n  \"person-arrow-up-from-line\": 58681,\n  \"person-basketball\": 59268,\n  \"person-biking-mountain\": 63563,\n  \"person-biking\": 63562,\n  \"person-booth\": 63318,\n  \"person-breastfeeding\": 58682,\n  \"person-burst\": 58683,\n  \"person-cane\": 58684,\n  \"person-carry-box\": 62671,\n  \"person-carry-empty\": 59269,\n  \"person-carry\": 62671,\n  \"person-chalkboard\": 58685,\n  \"person-circle-check\": 58686,\n  \"person-circle-exclamation\": 58687,\n  \"person-circle-minus\": 58688,\n  \"person-circle-plus\": 58689,\n  \"person-circle-question\": 58690,\n  \"person-circle-xmark\": 58691,\n  \"person-digging\": 63582,\n  \"person-dolly-empty\": 62673,\n  \"person-dolly\": 62672,\n  \"person-dots-from-line\": 62576,\n  \"person-dress-burst\": 58692,\n  \"person-dress-fairy\": 58887,\n  \"person-dress-simple\": 57884,\n  \"person-dress\": 61826,\n  \"person-drowning\": 58693,\n  \"person-fairy\": 58888,\n  \"person-falling-burst\": 58695,\n  \"person-falling\": 58694,\n  \"person-from-portal\": 57379,\n  \"person-golfing\": 59270,\n  \"person-half-dress\": 58696,\n  \"person-harassing\": 58697,\n  \"person-hiking\": 63212,\n  \"person-limbs-wide\": 59271,\n  \"person-meditating\": 59361,\n  \"person-military-pointing\": 58698,\n  \"person-military-rifle\": 58699,\n  \"person-military-to-person\": 58700,\n  \"person-pinball\": 57885,\n  \"person-praying\": 63107,\n  \"person-pregnant\": 58142,\n  \"person-rays\": 58701,\n  \"person-rifle\": 58702,\n  \"person-running-fast\": 58879,\n  \"person-running\": 63244,\n  \"person-seat-reclined\": 57887,\n  \"person-seat-window\": 59272,\n  \"person-seat\": 57886,\n  \"person-shelter\": 58703,\n  \"person-sign\": 63319,\n  \"person-simple\": 57888,\n  \"person-skating\": 63429,\n  \"person-ski-jumping\": 63431,\n  \"person-ski-lift\": 63432,\n  \"person-skiing-nordic\": 63434,\n  \"person-skiing\": 63433,\n  \"person-sledding\": 63435,\n  \"person-snowboarding\": 63438,\n  \"person-snowmobiling\": 63441,\n  \"person-soccer\": 59273,\n  \"person-swimming-pool\": 59274,\n  \"person-swimming-water\": 59275,\n  \"person-swimming\": 62916,\n  \"person-through-window\": 58793,\n  \"person-to-door\": 58419,\n  \"person-to-portal\": 57378,\n  \"person-walking-arrow-loop-left\": 58705,\n  \"person-walking-arrow-right\": 58706,\n  \"person-walking-dashed-line-arrow-right\": 58707,\n  \"person-walking-luggage\": 58708,\n  \"person-walking-with-cane\": 62109,\n  \"person-walking\": 62804,\n  \"person-water-arms-raised\": 59276,\n  \"person-waving\": 59277,\n  \"person\": 61827,\n  \"peruvian-soles-sign\": 59141,\n  \"peseta-sign\": 57889,\n  \"peso-sign\": 57890,\n  \"phone-alt\": 63609,\n  \"phone-arrow-down-left\": 57891,\n  \"phone-arrow-down\": 57891,\n  \"phone-arrow-right\": 58814,\n  \"phone-arrow-up-right\": 57892,\n  \"phone-arrow-up\": 57892,\n  \"phone-circle-alt\": 57628,\n  \"phone-circle-down\": 57629,\n  \"phone-circle\": 57627,\n  \"phone-connection\": 59105,\n  \"phone-flip\": 63609,\n  \"phone-hangup\": 57893,\n  \"phone-incoming\": 57891,\n  \"phone-intercom\": 58420,\n  \"phone-laptop\": 63610,\n  \"phone-missed\": 57894,\n  \"phone-office\": 63101,\n  \"phone-outgoing\": 57892,\n  \"phone-plus\": 62674,\n  \"phone-rotary\": 63699,\n  \"phone-slash\": 62429,\n  \"phone-square-alt\": 63611,\n  \"phone-square-down\": 57978,\n  \"phone-square\": 61592,\n  \"phone-volume\": 62112,\n  \"phone-waveform\": 59106,\n  \"phone-xmark\": 57895,\n  \"phone\": 61589,\n  \"photo-film-music\": 57896,\n  \"photo-film\": 63612,\n  \"photo-video\": 63612,\n  \"pi\": 63102,\n  \"piano-keyboard\": 63701,\n  \"piano\": 63700,\n  \"pickaxe\": 58815,\n  \"pickleball\": 58421,\n  \"picture-in-picture\": 59403,\n  \"pie-chart\": 61952,\n  \"pie\": 63237,\n  \"pig\": 63238,\n  \"piggy-bank\": 62675,\n  \"pills\": 62596,\n  \"pinata\": 58307,\n  \"pinball\": 57897,\n  \"pineapple\": 58143,\n  \"ping-pong-paddle-ball\": 62557,\n  \"pipe-circle-check\": 58422,\n  \"pipe-collar\": 58423,\n  \"pipe-section\": 58424,\n  \"pipe-smoking\": 58308,\n  \"pipe-valve\": 58425,\n  \"pipe\": 124,\n  \"pisces\": 59468,\n  \"pizza-slice\": 63512,\n  \"pizza\": 63511,\n  \"place-of-worship\": 63103,\n  \"plane-alt\": 62430,\n  \"plane-arrival\": 62895,\n  \"plane-circle-check\": 58709,\n  \"plane-circle-exclamation\": 58710,\n  \"plane-circle-xmark\": 58711,\n  \"plane-departure\": 62896,\n  \"plane-engines\": 62430,\n  \"plane-flying\": 59323,\n  \"plane-landing-gear\": 59324,\n  \"plane-lock\": 58712,\n  \"plane-prop\": 57899,\n  \"plane-slash\": 57449,\n  \"plane-tail\": 57900,\n  \"plane-up-slash\": 57902,\n  \"plane-up\": 57901,\n  \"plane\": 61554,\n  \"planet-moon\": 57375,\n  \"planet-ringed\": 57376,\n  \"plant-wilt\": 58794,\n  \"plate-utensils\": 58427,\n  \"plate-wheat\": 58714,\n  \"play-circle\": 61764,\n  \"play-flip\": 59264,\n  \"play-pause\": 57903,\n  \"play\": 61515,\n  \"plug-circle-bolt\": 58715,\n  \"plug-circle-check\": 58716,\n  \"plug-circle-exclamation\": 58717,\n  \"plug-circle-minus\": 58718,\n  \"plug-circle-plus\": 58719,\n  \"plug-circle-xmark\": 58720,\n  \"plug\": 61926,\n  \"plus-circle\": 61525,\n  \"plus-hexagon\": 62208,\n  \"plus-large\": 58782,\n  \"plus-minus\": 58428,\n  \"plus-octagon\": 62209,\n  \"plus-square\": 61694,\n  \"plus\": 43,\n  \"podcast\": 62158,\n  \"podium-star\": 63320,\n  \"podium\": 63104,\n  \"poker-chip\": 59554,\n  \"police-box\": 57377,\n  \"polish-zloty-sign\": 59147,\n  \"poll-h\": 63106,\n  \"poll-people\": 63321,\n  \"poll\": 63105,\n  \"pompebled\": 58429,\n  \"poo-bolt\": 63322,\n  \"poo-storm\": 63322,\n  \"poo\": 62206,\n  \"pool-8-ball\": 58309,\n  \"poop\": 63001,\n  \"popcorn\": 63513,\n  \"popsicle\": 58430,\n  \"portal-enter\": 57378,\n  \"portal-exit\": 57379,\n  \"portrait\": 62432,\n  \"possum\": 59516,\n  \"postage-stamp\": 59107,\n  \"pot-food\": 58431,\n  \"potato\": 58432,\n  \"pound-sign\": 61780,\n  \"power-off\": 61457,\n  \"pray\": 63107,\n  \"praying-hands\": 63108,\n  \"prescription-bottle-alt\": 62598,\n  \"prescription-bottle-medical\": 62598,\n  \"prescription-bottle-pill\": 58816,\n  \"prescription-bottle\": 62597,\n  \"prescription\": 62897,\n  \"presentation-screen\": 63109,\n  \"presentation\": 63109,\n  \"pretzel\": 58433,\n  \"print-magnifying-glass\": 63514,\n  \"print-search\": 63514,\n  \"print-slash\": 63110,\n  \"print\": 61487,\n  \"pro\": 57909,\n  \"procedures\": 62599,\n  \"project-diagram\": 62786,\n  \"projector\": 63702,\n  \"pronoun\": 59041,\n  \"pump-impeller\": 59445,\n  \"pump-medical\": 57450,\n  \"pump-soap\": 57451,\n  \"pump\": 58434,\n  \"pumpkin\": 63239,\n  \"puzzle-piece-alt\": 57905,\n  \"puzzle-piece-simple\": 57905,\n  \"puzzle-piece\": 61742,\n  \"puzzle\": 58435,\n  \"q\": 81,\n  \"qrcode-read\": 59289,\n  \"qrcode\": 61481,\n  \"question-circle\": 61529,\n  \"question-square\": 62205,\n  \"question\": 63,\n  \"quidditch-broom-ball\": 62552,\n  \"quidditch\": 62552,\n  \"quote-left-alt\": 61709,\n  \"quote-left\": 61709,\n  \"quote-right-alt\": 61710,\n  \"quote-right\": 61710,\n  \"quotes\": 57908,\n  \"quran\": 63111,\n  \"r\": 82,\n  \"rabbit-fast\": 63241,\n  \"rabbit-running\": 63241,\n  \"rabbit\": 63240,\n  \"raccoon\": 58899,\n  \"racquet\": 62554,\n  \"radar\": 57380,\n  \"radiation-alt\": 63418,\n  \"radiation\": 63417,\n  \"radio-alt\": 63704,\n  \"radio-tuner\": 63704,\n  \"radio\": 63703,\n  \"rainbow-half\": 59338,\n  \"rainbow\": 63323,\n  \"raindrops\": 63324,\n  \"ram\": 63242,\n  \"ramp-loading\": 62676,\n  \"random\": 61556,\n  \"ranking-star\": 58721,\n  \"raygun\": 57381,\n  \"receipt\": 62787,\n  \"record-vinyl\": 63705,\n  \"rectangle-4k\": 59250,\n  \"rectangle-ad\": 63041,\n  \"rectangle-api\": 59552,\n  \"rectangle-barcode\": 62563,\n  \"rectangle-beta\": 59400,\n  \"rectangle-code\": 58146,\n  \"rectangle-hd\": 57774,\n  \"rectangle-hdr\": 59251,\n  \"rectangle-high-dynamic-range\": 59251,\n  \"rectangle-history-circle-plus\": 58531,\n  \"rectangle-history-circle-user\": 58532,\n  \"rectangle-history\": 58530,\n  \"rectangle-irc\": 59500,\n  \"rectangle-landscape\": 62202,\n  \"rectangle-list\": 61474,\n  \"rectangle-minus\": 59060,\n  \"rectangle-n-a\": 59560,\n  \"rectangle-new\": 59514,\n  \"rectangle-plus\": 59061,\n  \"rectangle-portrait\": 62203,\n  \"rectangle-pro\": 57909,\n  \"rectangle-sd\": 57994,\n  \"rectangle-tall\": 59281,\n  \"rectangle-terminal\": 57910,\n  \"rectangle-times\": 62480,\n  \"rectangle-vertical-history\": 57911,\n  \"rectangle-vertical\": 62203,\n  \"rectangle-video-on-demand\": 59252,\n  \"rectangle-wide\": 62204,\n  \"rectangle-xmark\": 62480,\n  \"rectangle\": 62202,\n  \"rectangles-mixed\": 58147,\n  \"recycle\": 61880,\n  \"redo-alt\": 62201,\n  \"redo\": 61470,\n  \"reel\": 57912,\n  \"reflect-both\": 58991,\n  \"reflect-horizontal\": 58980,\n  \"reflect-vertical\": 58981,\n  \"refresh\": 61473,\n  \"refrigerator\": 57382,\n  \"registered\": 62045,\n  \"remote\": 59561,\n  \"remove-format\": 63613,\n  \"remove\": 61453,\n  \"renminbi-sign\": 59196,\n  \"reorder\": 62800,\n  \"repeat-1-alt\": 62310,\n  \"repeat-1\": 62309,\n  \"repeat-alt\": 62308,\n  \"repeat\": 62307,\n  \"reply-all\": 61730,\n  \"reply-clock\": 57913,\n  \"reply-time\": 57913,\n  \"reply\": 62437,\n  \"republican\": 63326,\n  \"restroom-simple\": 57914,\n  \"restroom\": 63421,\n  \"retweet-alt\": 62305,\n  \"retweet\": 61561,\n  \"rhombus\": 57915,\n  \"ribbon\": 62678,\n  \"right-from-bracket\": 62197,\n  \"right-from-dotted-line\": 59076,\n  \"right-from-line\": 62279,\n  \"right-left-large\": 58849,\n  \"right-left\": 62306,\n  \"right-long-to-line\": 58436,\n  \"right-long\": 62219,\n  \"right-to-bracket\": 62198,\n  \"right-to-dotted-line\": 59077,\n  \"right-to-line\": 62284,\n  \"right\": 62294,\n  \"ring-diamond\": 58795,\n  \"ring\": 63243,\n  \"rings-wedding\": 63515,\n  \"rmb\": 61783,\n  \"road-barrier\": 58722,\n  \"road-bridge\": 58723,\n  \"road-circle-check\": 58724,\n  \"road-circle-exclamation\": 58725,\n  \"road-circle-xmark\": 58726,\n  \"road-lock\": 58727,\n  \"road-spikes\": 58728,\n  \"road\": 61464,\n  \"robot-astromech\": 58066,\n  \"robot\": 62788,\n  \"rocket-launch\": 57383,\n  \"rocket-vertical\": 59325,\n  \"rocket\": 61749,\n  \"rod-asclepius\": 58745,\n  \"rod-snake\": 58745,\n  \"roller-coaster\": 58148,\n  \"rotate-back\": 62186,\n  \"rotate-backward\": 62186,\n  \"rotate-exclamation\": 57916,\n  \"rotate-forward\": 62201,\n  \"rotate-left\": 62186,\n  \"rotate-reverse\": 58929,\n  \"rotate-right\": 62201,\n  \"rotate\": 62193,\n  \"rouble\": 61784,\n  \"route-highway\": 63002,\n  \"route-interstate\": 63003,\n  \"route\": 62679,\n  \"router\": 63706,\n  \"rows-3\": 59531,\n  \"rows\": 58002,\n  \"rss-square\": 61763,\n  \"rss\": 61598,\n  \"rub\": 61784,\n  \"ruble-sign\": 61784,\n  \"ruble\": 61784,\n  \"rug\": 58729,\n  \"rugby-ball\": 58310,\n  \"ruler-combined\": 62790,\n  \"ruler-horizontal\": 62791,\n  \"ruler-triangle\": 63004,\n  \"ruler-vertical\": 62792,\n  \"ruler\": 62789,\n  \"running\": 63244,\n  \"rupee-sign\": 61782,\n  \"rupee\": 61782,\n  \"rupiah-sign\": 57917,\n  \"rv\": 63422,\n  \"s\": 83,\n  \"sack-dollar\": 63517,\n  \"sack-xmark\": 58730,\n  \"sack\": 63516,\n  \"sad-cry\": 62899,\n  \"sad-tear\": 62900,\n  \"sagittarius\": 59469,\n  \"sailboat\": 58437,\n  \"salad\": 63518,\n  \"salt-shaker\": 58438,\n  \"sandwich\": 63519,\n  \"satellite-dish\": 63424,\n  \"satellite\": 63423,\n  \"sausage\": 63520,\n  \"save-circle-arrow-right\": 57728,\n  \"save-circle-xmark\": 57729,\n  \"save-times\": 57729,\n  \"save\": 61639,\n  \"sax-hot\": 63707,\n  \"saxophone-fire\": 63707,\n  \"saxophone\": 63708,\n  \"scale-balanced\": 62030,\n  \"scale-unbalanced-flip\": 62742,\n  \"scale-unbalanced\": 62741,\n  \"scalpel-line-dashed\": 63006,\n  \"scalpel-path\": 63006,\n  \"scalpel\": 63005,\n  \"scanner-gun\": 62600,\n  \"scanner-image\": 63731,\n  \"scanner-keyboard\": 62601,\n  \"scanner-touchscreen\": 62602,\n  \"scanner\": 62600,\n  \"scarecrow\": 63245,\n  \"scarf\": 63425,\n  \"school-circle-check\": 58731,\n  \"school-circle-exclamation\": 58732,\n  \"school-circle-xmark\": 58733,\n  \"school-flag\": 58734,\n  \"school-lock\": 58735,\n  \"school-unlock\": 59083,\n  \"school\": 62793,\n  \"scissors\": 61636,\n  \"scooter\": 59331,\n  \"scorpio\": 59470,\n  \"screen-users\": 63037,\n  \"screencast\": 57918,\n  \"screenshot\": 57562,\n  \"screwdriver-wrench\": 63449,\n  \"screwdriver\": 62794,\n  \"scribble\": 57919,\n  \"scroll-old\": 63247,\n  \"scroll-ribbon\": 62954,\n  \"scroll-torah\": 63136,\n  \"scroll\": 63246,\n  \"scrubber\": 62200,\n  \"scythe\": 63248,\n  \"sd-card\": 63426,\n  \"sd-cards\": 57920,\n  \"seal-exclamation\": 57922,\n  \"seal-question\": 57923,\n  \"seal\": 57921,\n  \"search-dollar\": 63112,\n  \"search-location\": 63113,\n  \"search-minus\": 61456,\n  \"search-plus\": 61454,\n  \"search\": 61442,\n  \"seat-airline-window\": 59326,\n  \"seat-airline\": 57924,\n  \"seat\": 59236,\n  \"seats\": 59237,\n  \"section\": 58439,\n  \"seedling\": 62680,\n  \"semicolon\": 59,\n  \"send-back\": 63614,\n  \"send-backward\": 63615,\n  \"send\": 57866,\n  \"sensor-alert\": 57385,\n  \"sensor-cloud\": 57388,\n  \"sensor-fire\": 57386,\n  \"sensor-on\": 57387,\n  \"sensor-smoke\": 57388,\n  \"sensor-triangle-exclamation\": 57385,\n  \"sensor\": 57384,\n  \"septagon\": 59424,\n  \"server\": 62003,\n  \"shapes\": 63007,\n  \"share-all\": 62311,\n  \"share-alt-square\": 61921,\n  \"share-alt\": 61920,\n  \"share-from-square\": 61773,\n  \"share-nodes\": 61920,\n  \"share-square\": 61773,\n  \"share\": 61540,\n  \"sheep\": 63249,\n  \"sheet-plastic\": 58737,\n  \"shekel-sign\": 61963,\n  \"shekel\": 61963,\n  \"shelves-empty\": 57926,\n  \"shelves\": 62592,\n  \"sheqel-sign\": 61963,\n  \"sheqel\": 61963,\n  \"shield-alt\": 62445,\n  \"shield-blank\": 61746,\n  \"shield-cat\": 58738,\n  \"shield-check\": 62199,\n  \"shield-cross\": 63250,\n  \"shield-dog\": 58739,\n  \"shield-exclamation\": 57927,\n  \"shield-halved\": 62445,\n  \"shield-heart\": 58740,\n  \"shield-keyhole\": 57928,\n  \"shield-minus\": 57929,\n  \"shield-plus\": 57930,\n  \"shield-quartered\": 58741,\n  \"shield-slash\": 57931,\n  \"shield-times\": 57932,\n  \"shield-user\": 59401,\n  \"shield-virus\": 57452,\n  \"shield-xmark\": 57932,\n  \"shield\": 61746,\n  \"ship-large\": 59408,\n  \"ship\": 61978,\n  \"shipping-fast\": 62603,\n  \"shipping-timed\": 62604,\n  \"shirt-jersey\": 59095,\n  \"shirt-long-sleeve\": 58311,\n  \"shirt-running\": 58312,\n  \"shirt-tank-top\": 58313,\n  \"shirt\": 62803,\n  \"shish-kebab\": 63521,\n  \"shoe-prints\": 62795,\n  \"shoe\": 59096,\n  \"shop-24\": 59290,\n  \"shop-lock\": 58533,\n  \"shop-slash\": 57456,\n  \"shop\": 62799,\n  \"shopping-bag\": 62096,\n  \"shopping-basket-alt\": 57519,\n  \"shopping-basket\": 62097,\n  \"shopping-cart\": 61562,\n  \"shortcake\": 58341,\n  \"shorts\": 59097,\n  \"shovel-snow\": 63427,\n  \"shovel\": 63251,\n  \"shower-alt\": 57933,\n  \"shower-down\": 57933,\n  \"shower\": 62156,\n  \"shredder\": 63114,\n  \"shrimp\": 58440,\n  \"shuffle\": 61556,\n  \"shutters\": 58441,\n  \"shuttle-space-vertical\": 59327,\n  \"shuttle-space\": 61847,\n  \"shuttle-van\": 62902,\n  \"shuttlecock\": 62555,\n  \"sickle\": 63522,\n  \"sidebar-flip\": 57935,\n  \"sidebar\": 57934,\n  \"sigma\": 63115,\n  \"sign-hanging\": 62681,\n  \"sign-in-alt\": 62198,\n  \"sign-in\": 61584,\n  \"sign-language\": 62119,\n  \"sign-out-alt\": 62197,\n  \"sign-out\": 61579,\n  \"sign-post\": 58916,\n  \"sign-posts-wrench\": 58918,\n  \"sign-posts\": 58917,\n  \"sign\": 62681,\n  \"signal-1\": 63116,\n  \"signal-2\": 63117,\n  \"signal-3\": 63118,\n  \"signal-4\": 63119,\n  \"signal-5\": 61458,\n  \"signal-alt-1\": 63121,\n  \"signal-alt-2\": 63122,\n  \"signal-alt-3\": 63123,\n  \"signal-alt-4\": 63120,\n  \"signal-alt-slash\": 63124,\n  \"signal-alt\": 63120,\n  \"signal-bars-fair\": 63122,\n  \"signal-bars-good\": 63123,\n  \"signal-bars-slash\": 63124,\n  \"signal-bars-strong\": 63120,\n  \"signal-bars-weak\": 63121,\n  \"signal-bars\": 63120,\n  \"signal-fair\": 63117,\n  \"signal-good\": 63118,\n  \"signal-perfect\": 61458,\n  \"signal-slash\": 63125,\n  \"signal-stream-slash\": 57936,\n  \"signal-stream\": 63709,\n  \"signal-strong\": 63119,\n  \"signal-weak\": 63116,\n  \"signal\": 61458,\n  \"signapore-dollar-sign\": 59182,\n  \"signature-lock\": 58314,\n  \"signature-slash\": 58315,\n  \"signature\": 62903,\n  \"signing\": 62119,\n  \"signs-post\": 62071,\n  \"sim-card\": 63428,\n  \"sim-cards\": 57937,\n  \"single-quote-left\": 59419,\n  \"single-quote-right\": 59420,\n  \"sink\": 57453,\n  \"siren-on\": 57390,\n  \"siren\": 57389,\n  \"sitemap\": 61672,\n  \"skating\": 63429,\n  \"skeleton-ribs\": 58827,\n  \"skeleton\": 63008,\n  \"ski-boot-ski\": 58317,\n  \"ski-boot\": 58316,\n  \"ski-jump\": 63431,\n  \"ski-lift\": 63432,\n  \"skiing-nordic\": 63434,\n  \"skiing\": 63433,\n  \"skull-cow\": 63710,\n  \"skull-crossbones\": 63252,\n  \"skull\": 62796,\n  \"slash-back\": 92,\n  \"slash-forward\": 47,\n  \"slash\": 63253,\n  \"sledding\": 63435,\n  \"sleigh\": 63436,\n  \"slider-circle\": 59216,\n  \"slider\": 57938,\n  \"sliders-h-square\": 62448,\n  \"sliders-h\": 61918,\n  \"sliders-simple\": 57939,\n  \"sliders-up\": 62449,\n  \"sliders-v-square\": 62450,\n  \"sliders-v\": 62449,\n  \"sliders\": 61918,\n  \"slot-machine\": 58318,\n  \"smile-beam\": 62904,\n  \"smile-plus\": 62905,\n  \"smile-wink\": 62682,\n  \"smile\": 61720,\n  \"smog\": 63327,\n  \"smoke\": 63328,\n  \"smoking-ban\": 62797,\n  \"smoking\": 62605,\n  \"sms\": 63437,\n  \"snake\": 63254,\n  \"sneaker-running\": 59417,\n  \"sneaker\": 59098,\n  \"snooze\": 63616,\n  \"snow-blowing\": 63329,\n  \"snowboarding\": 63438,\n  \"snowflake-droplets\": 58817,\n  \"snowflake\": 62172,\n  \"snowflakes\": 63439,\n  \"snowman-head\": 63387,\n  \"snowman\": 63440,\n  \"snowmobile-blank\": 59332,\n  \"snowmobile\": 63441,\n  \"snowplow\": 63442,\n  \"soap\": 57454,\n  \"soccer-ball\": 61923,\n  \"socks\": 63126,\n  \"soft-serve\": 58368,\n  \"solar-panel\": 62906,\n  \"solar-system\": 57391,\n  \"sort-alpha-asc\": 61789,\n  \"sort-alpha-desc\": 63617,\n  \"sort-alpha-down-alt\": 63617,\n  \"sort-alpha-down\": 61789,\n  \"sort-alpha-up-alt\": 63618,\n  \"sort-alpha-up\": 61790,\n  \"sort-alt\": 63619,\n  \"sort-amount-asc\": 61792,\n  \"sort-amount-desc\": 63620,\n  \"sort-amount-down-alt\": 63620,\n  \"sort-amount-down\": 61792,\n  \"sort-amount-up-alt\": 63621,\n  \"sort-amount-up\": 61793,\n  \"sort-asc\": 61662,\n  \"sort-circle-down\": 57393,\n  \"sort-circle-up\": 57394,\n  \"sort-circle\": 57392,\n  \"sort-desc\": 61661,\n  \"sort-down\": 61661,\n  \"sort-numeric-asc\": 61794,\n  \"sort-numeric-desc\": 63622,\n  \"sort-numeric-down-alt\": 63622,\n  \"sort-numeric-down\": 61794,\n  \"sort-numeric-up-alt\": 63623,\n  \"sort-numeric-up\": 61795,\n  \"sort-shapes-down-alt\": 63625,\n  \"sort-shapes-down\": 63624,\n  \"sort-shapes-up-alt\": 63627,\n  \"sort-shapes-up\": 63626,\n  \"sort-size-down-alt\": 63629,\n  \"sort-size-down\": 63628,\n  \"sort-size-up-alt\": 63631,\n  \"sort-size-up\": 63630,\n  \"sort-up-down\": 57497,\n  \"sort-up\": 61662,\n  \"sort\": 61660,\n  \"soup\": 63523,\n  \"spa\": 62907,\n  \"space-shuttle\": 61847,\n  \"space-station-moon-alt\": 57396,\n  \"space-station-moon-construction\": 57396,\n  \"space-station-moon\": 57395,\n  \"spade\": 62196,\n  \"spaghetti-monster-flying\": 63099,\n  \"sparkle\": 58838,\n  \"sparkles\": 63632,\n  \"speaker\": 63711,\n  \"speakers\": 63712,\n  \"spell-check\": 63633,\n  \"spider-black-widow\": 63256,\n  \"spider-web\": 63257,\n  \"spider\": 63255,\n  \"spine\": 59233,\n  \"spinner-scale\": 58922,\n  \"spinner-third\": 62452,\n  \"spinner\": 61712,\n  \"spiral\": 59402,\n  \"split\": 57940,\n  \"splotch\": 62908,\n  \"spoon\": 62181,\n  \"sportsball\": 58443,\n  \"spray-can-sparkles\": 62928,\n  \"spray-can\": 62909,\n  \"sprinkler-ceiling\": 58444,\n  \"sprinkler\": 57397,\n  \"sprout\": 62680,\n  \"square-0\": 57941,\n  \"square-1\": 57942,\n  \"square-2\": 57943,\n  \"square-3\": 57944,\n  \"square-4\": 57945,\n  \"square-5\": 57946,\n  \"square-6\": 57947,\n  \"square-7\": 57948,\n  \"square-8\": 57949,\n  \"square-9\": 57950,\n  \"square-a-lock\": 58445,\n  \"square-a\": 57951,\n  \"square-ampersand\": 57952,\n  \"square-arrow-down-left\": 57953,\n  \"square-arrow-down-right\": 57954,\n  \"square-arrow-down\": 62265,\n  \"square-arrow-left\": 62266,\n  \"square-arrow-right\": 62267,\n  \"square-arrow-up-left\": 57955,\n  \"square-arrow-up-right\": 61772,\n  \"square-arrow-up\": 62268,\n  \"square-austral\": 59174,\n  \"square-australian-dollar\": 59160,\n  \"square-b\": 57956,\n  \"square-baht\": 59161,\n  \"square-bangladeshi-taka\": 59204,\n  \"square-binary\": 59035,\n  \"square-bitcoin\": 59122,\n  \"square-bolt\": 57957,\n  \"square-brazilian-real\": 59121,\n  \"square-c\": 57958,\n  \"square-caret-down\": 61776,\n  \"square-caret-left\": 61841,\n  \"square-caret-right\": 61778,\n  \"square-caret-up\": 61777,\n  \"square-cedi\": 59177,\n  \"square-cent\": 59120,\n  \"square-check\": 61770,\n  \"square-chevron-down\": 62249,\n  \"square-chevron-left\": 62250,\n  \"square-chevron-right\": 62251,\n  \"square-chevron-up\": 62252,\n  \"square-chf\": 59110,\n  \"square-code\": 57959,\n  \"square-colon\": 59194,\n  \"square-cruzeiro\": 59117,\n  \"square-currency\": 59148,\n  \"square-d\": 57960,\n  \"square-danish-krone\": 59207,\n  \"square-dashed-circle-plus\": 58818,\n  \"square-dashed\": 57961,\n  \"square-divide\": 57962,\n  \"square-dollar\": 62185,\n  \"square-dong\": 59151,\n  \"square-down-left\": 57963,\n  \"square-down-right\": 57964,\n  \"square-down\": 62288,\n  \"square-e\": 57965,\n  \"square-ellipsis-vertical\": 57967,\n  \"square-ellipsis\": 57966,\n  \"square-envelope\": 61849,\n  \"square-equals\": 59062,\n  \"square-euro\": 59186,\n  \"square-eurozone\": 59175,\n  \"square-exclamation\": 62241,\n  \"square-f\": 57968,\n  \"square-florin\": 59159,\n  \"square-fragile\": 62619,\n  \"square-franc\": 59183,\n  \"square-full\": 62556,\n  \"square-g\": 57969,\n  \"square-guarani\": 59150,\n  \"square-h\": 61693,\n  \"square-half-horizontal\": 59406,\n  \"square-half-stroke-horizontal\": 59407,\n  \"square-half-stroke\": 59283,\n  \"square-half\": 59282,\n  \"square-heart\": 62664,\n  \"square-hryvnia\": 59152,\n  \"square-i\": 57970,\n  \"square-indian-rupee\": 59125,\n  \"square-info\": 62223,\n  \"square-j\": 57971,\n  \"square-k\": 57972,\n  \"square-kanban\": 58504,\n  \"square-kip\": 59149,\n  \"square-l\": 57973,\n  \"square-lari\": 59199,\n  \"square-left\": 62289,\n  \"square-lira\": 59111,\n  \"square-list\": 58505,\n  \"square-litecoin\": 59127,\n  \"square-m\": 57974,\n  \"square-malaysian-ringgit\": 59208,\n  \"square-manat\": 59140,\n  \"square-microphone\": 59265,\n  \"square-mill\": 59146,\n  \"square-minus\": 61766,\n  \"square-n\": 57975,\n  \"square-naira\": 59144,\n  \"square-nfi\": 58742,\n  \"square-norwegian-krone\": 59143,\n  \"square-o\": 57976,\n  \"square-p\": 57977,\n  \"square-parking-slash\": 62999,\n  \"square-parking\": 62784,\n  \"square-pen\": 61771,\n  \"square-person-confined\": 58743,\n  \"square-peruvian-soles\": 59158,\n  \"square-peseta\": 59114,\n  \"square-peso\": 59162,\n  \"square-phone-flip\": 63611,\n  \"square-phone-hangup\": 57978,\n  \"square-phone\": 61592,\n  \"square-plus\": 61694,\n  \"square-polish-zloty\": 59190,\n  \"square-poll-horizontal\": 63106,\n  \"square-poll-vertical\": 63105,\n  \"square-q\": 57979,\n  \"square-quarters\": 58446,\n  \"square-question\": 62205,\n  \"square-quote\": 58153,\n  \"square-r\": 57980,\n  \"square-renminbi\": 59197,\n  \"square-right\": 62290,\n  \"square-ring\": 58447,\n  \"square-root-alt\": 63128,\n  \"square-root-variable\": 63128,\n  \"square-root\": 63127,\n  \"square-rss\": 61763,\n  \"square-ruble\": 59128,\n  \"square-rupee\": 59157,\n  \"square-rupiah\": 59154,\n  \"square-s\": 57981,\n  \"square-share-nodes\": 61921,\n  \"square-shekel\": 59189,\n  \"square-sliders-vertical\": 62450,\n  \"square-sliders\": 62448,\n  \"square-small\": 57982,\n  \"square-star\": 57983,\n  \"square-sterling\": 59155,\n  \"square-swedish-krona\": 59164,\n  \"square-t\": 57984,\n  \"square-tenge\": 59185,\n  \"square-terminal\": 58154,\n  \"square-this-way-up\": 62623,\n  \"square-tugrik\": 59176,\n  \"square-turkish-lira\": 59167,\n  \"square-u\": 57985,\n  \"square-up-left\": 57986,\n  \"square-up-right\": 62304,\n  \"square-up\": 62291,\n  \"square-user\": 57987,\n  \"square-v\": 57988,\n  \"square-virus\": 58744,\n  \"square-w\": 57989,\n  \"square-wine-glass-crack\": 62619,\n  \"square-won\": 59145,\n  \"square-x\": 57990,\n  \"square-xmark\": 62163,\n  \"square-y\": 57991,\n  \"square-yen\": 59172,\n  \"square-z\": 57992,\n  \"square\": 61640,\n  \"squareapore-dollar\": 59187,\n  \"squid\": 58448,\n  \"squirrel\": 63258,\n  \"stadium\": 59084,\n  \"staff-aesculapius\": 58745,\n  \"staff-snake\": 58745,\n  \"staff\": 63259,\n  \"stair-car\": 59333,\n  \"stairs\": 57993,\n  \"stamp\": 62911,\n  \"standard-definition\": 57994,\n  \"stapler\": 58799,\n  \"star-and-crescent\": 63129,\n  \"star-christmas\": 63444,\n  \"star-circle\": 57635,\n  \"star-exclamation\": 62195,\n  \"star-half-alt\": 62912,\n  \"star-half-stroke\": 62912,\n  \"star-half\": 61577,\n  \"star-of-david\": 63130,\n  \"star-of-life\": 63009,\n  \"star-sharp-half-alt\": 57997,\n  \"star-sharp-half-stroke\": 57997,\n  \"star-sharp-half\": 57996,\n  \"star-sharp\": 57995,\n  \"star-shooting\": 57398,\n  \"star\": 61445,\n  \"starfighter-alt-advanced\": 57998,\n  \"starfighter-alt\": 57400,\n  \"starfighter-twin-ion-engine-advanced\": 57998,\n  \"starfighter-twin-ion-engine\": 57400,\n  \"starfighter\": 57399,\n  \"stars\": 63330,\n  \"starship-freighter\": 57402,\n  \"starship\": 57401,\n  \"steak\": 63524,\n  \"steering-wheel\": 63010,\n  \"step-backward\": 61512,\n  \"step-forward\": 61521,\n  \"sterling-sign\": 61780,\n  \"stethoscope\": 61681,\n  \"sticky-note\": 62025,\n  \"stocking\": 63445,\n  \"stomach\": 63011,\n  \"stool\": 59520,\n  \"stop-circle\": 62093,\n  \"stop\": 61517,\n  \"stopwatch-20\": 57455,\n  \"stopwatch\": 62194,\n  \"store-24\": 59291,\n  \"store-alt-slash\": 57456,\n  \"store-alt\": 62799,\n  \"store-lock\": 58534,\n  \"store-slash\": 57457,\n  \"store\": 62798,\n  \"strawberry\": 58155,\n  \"stream\": 62800,\n  \"street-view\": 61981,\n  \"stretcher\": 63525,\n  \"strikethrough\": 61644,\n  \"stroopwafel\": 62801,\n  \"subscript\": 61740,\n  \"subtitles-slash\": 58896,\n  \"subtitles\": 58895,\n  \"subtract\": 61544,\n  \"subway-tunnel\": 58019,\n  \"subway\": 62009,\n  \"suitcase-medical\": 61690,\n  \"suitcase-rolling\": 62913,\n  \"suitcase\": 61682,\n  \"sun-alt\": 57999,\n  \"sun-bright\": 57999,\n  \"sun-cloud\": 63331,\n  \"sun-dust\": 63332,\n  \"sun-haze\": 63333,\n  \"sun-plant-wilt\": 58746,\n  \"sun\": 61829,\n  \"sunglasses\": 63634,\n  \"sunrise\": 63334,\n  \"sunset\": 63335,\n  \"superscript\": 61739,\n  \"surprise\": 62914,\n  \"sushi-roll\": 58507,\n  \"sushi\": 58506,\n  \"swap-arrows\": 58890,\n  \"swap\": 58889,\n  \"swatchbook\": 62915,\n  \"swedish-krona-sign\": 59198,\n  \"swimmer\": 62916,\n  \"swimming-pool\": 62917,\n  \"sword-laser-alt\": 57404,\n  \"sword-laser\": 57403,\n  \"sword\": 63260,\n  \"swords-laser\": 57405,\n  \"swords\": 63261,\n  \"symbols\": 63598,\n  \"synagogue\": 63131,\n  \"sync-alt\": 62193,\n  \"sync\": 61473,\n  \"syringe\": 62606,\n  \"t-rex\": 58921,\n  \"t-shirt\": 62803,\n  \"t\": 84,\n  \"table-bar\": 59550,\n  \"table-cells-column-lock\": 59000,\n  \"table-cells-column-unlock\": 59024,\n  \"table-cells-columns\": 59052,\n  \"table-cells-header-lock\": 59054,\n  \"table-cells-header-unlock\": 59055,\n  \"table-cells-header\": 59053,\n  \"table-cells-large\": 61449,\n  \"table-cells-lock\": 59001,\n  \"table-cells-merge\": 59532,\n  \"table-cells-row-lock\": 59002,\n  \"table-cells-row-unlock\": 59025,\n  \"table-cells-rows\": 59056,\n  \"table-cells-split\": 59533,\n  \"table-cells-unlock\": 59026,\n  \"table-cells\": 61450,\n  \"table-columns-add-after\": 59534,\n  \"table-columns-add-before\": 59535,\n  \"table-columns-merge-next\": 59536,\n  \"table-columns-merge-previous\": 59537,\n  \"table-columns-remove-after\": 59538,\n  \"table-columns-remove-before\": 59539,\n  \"table-columns\": 61659,\n  \"table-dining\": 59522,\n  \"table-layout\": 58000,\n  \"table-list\": 61451,\n  \"table-picnic\": 58157,\n  \"table-pivot\": 58001,\n  \"table-rows-add-above\": 59540,\n  \"table-rows-add-below\": 59541,\n  \"table-rows-merge-next\": 59542,\n  \"table-rows-merge-previous\": 59543,\n  \"table-rows-remove-above\": 59544,\n  \"table-rows-remove-below\": 59545,\n  \"table-rows\": 58002,\n  \"table-slash\": 59546,\n  \"table-tennis-paddle-ball\": 62557,\n  \"table-tennis\": 62557,\n  \"table-tree\": 58003,\n  \"table\": 61646,\n  \"tablet-alt\": 62458,\n  \"tablet-android-alt\": 62460,\n  \"tablet-android\": 62459,\n  \"tablet-button\": 61706,\n  \"tablet-rugged\": 62607,\n  \"tablet-screen-button\": 62458,\n  \"tablet-screen\": 62460,\n  \"tablet\": 62459,\n  \"tablets\": 62608,\n  \"tachograph-digital\": 62822,\n  \"tachometer-alt-average\": 63012,\n  \"tachometer-alt-fast\": 63013,\n  \"tachometer-alt-fastest\": 63014,\n  \"tachometer-alt-slow\": 63015,\n  \"tachometer-alt-slowest\": 63016,\n  \"tachometer-alt\": 63013,\n  \"tachometer-average\": 63017,\n  \"tachometer-fast\": 63018,\n  \"tachometer-fastest\": 63019,\n  \"tachometer-slow\": 63020,\n  \"tachometer-slowest\": 63021,\n  \"tachometer\": 63018,\n  \"taco\": 63526,\n  \"tag\": 61483,\n  \"tags\": 61484,\n  \"tally-1\": 58004,\n  \"tally-2\": 58005,\n  \"tally-3\": 58006,\n  \"tally-4\": 58007,\n  \"tally-5\": 63132,\n  \"tally\": 63132,\n  \"tamale\": 58449,\n  \"tanakh\": 63527,\n  \"tank-recovery\": 59429,\n  \"tank-water\": 58450,\n  \"tape\": 62683,\n  \"tarp-droplet\": 58748,\n  \"tarp\": 58747,\n  \"tasks-alt\": 63528,\n  \"tasks\": 61614,\n  \"taurus\": 59471,\n  \"taxi-bus\": 58008,\n  \"taxi\": 61882,\n  \"teddy-bear\": 58319,\n  \"teeth-open\": 63023,\n  \"teeth\": 63022,\n  \"telescope\": 57406,\n  \"teletype-answer\": 58041,\n  \"teletype\": 61924,\n  \"television\": 62060,\n  \"temperature-0\": 62155,\n  \"temperature-1\": 62154,\n  \"temperature-2\": 62153,\n  \"temperature-3\": 62152,\n  \"temperature-4\": 62151,\n  \"temperature-arrow-down\": 57407,\n  \"temperature-arrow-up\": 57408,\n  \"temperature-down\": 57407,\n  \"temperature-empty\": 62155,\n  \"temperature-frigid\": 63336,\n  \"temperature-full\": 62151,\n  \"temperature-half\": 62153,\n  \"temperature-high\": 63337,\n  \"temperature-hot\": 63338,\n  \"temperature-list\": 58009,\n  \"temperature-low\": 63339,\n  \"temperature-quarter\": 62154,\n  \"temperature-slash\": 59339,\n  \"temperature-snow\": 63336,\n  \"temperature-sun\": 63338,\n  \"temperature-three-quarters\": 62152,\n  \"temperature-up\": 57408,\n  \"tenge-sign\": 63447,\n  \"tenge\": 63447,\n  \"tennis-ball\": 62558,\n  \"tent-arrow-down-to-line\": 58750,\n  \"tent-arrow-left-right\": 58751,\n  \"tent-arrow-turn-left\": 58752,\n  \"tent-arrows-down\": 58753,\n  \"tent-circus\": 59085,\n  \"tent-double-peak\": 58919,\n  \"tent\": 58749,\n  \"tents\": 58754,\n  \"terminal\": 61728,\n  \"text-height\": 61492,\n  \"text-size\": 63636,\n  \"text-slash\": 63613,\n  \"text-width\": 61493,\n  \"text\": 63635,\n  \"th-large\": 61449,\n  \"th-list\": 61451,\n  \"th\": 61450,\n  \"theater-masks\": 63024,\n  \"thermometer-0\": 62155,\n  \"thermometer-1\": 62154,\n  \"thermometer-2\": 62153,\n  \"thermometer-3\": 62152,\n  \"thermometer-4\": 62151,\n  \"thermometer-empty\": 62155,\n  \"thermometer-full\": 62151,\n  \"thermometer-half\": 62153,\n  \"thermometer-quarter\": 62154,\n  \"thermometer-three-quarters\": 62152,\n  \"thermometer\": 62609,\n  \"theta\": 63134,\n  \"thought-bubble\": 58158,\n  \"thumb-tack-slash\": 59023,\n  \"thumb-tack\": 61581,\n  \"thumbs-down\": 61797,\n  \"thumbs-up\": 61796,\n  \"thumbtack-angle-slash\": 59218,\n  \"thumbtack-angle\": 59217,\n  \"thumbtack-slash\": 59023,\n  \"thumbtack\": 61581,\n  \"thunderstorm-moon\": 63341,\n  \"thunderstorm-sun\": 63342,\n  \"thunderstorm\": 63340,\n  \"tick\": 58159,\n  \"ticket-airline\": 58010,\n  \"ticket-alt\": 62463,\n  \"ticket-perforated-plane\": 58010,\n  \"ticket-perforated\": 58942,\n  \"ticket-plane\": 58010,\n  \"ticket-simple\": 62463,\n  \"ticket\": 61765,\n  \"tickets-airline\": 58011,\n  \"tickets-perforated-plane\": 58011,\n  \"tickets-perforated\": 58943,\n  \"tickets-plane\": 58011,\n  \"tickets-simple\": 58969,\n  \"tickets\": 58968,\n  \"tilde\": 126,\n  \"timeline-arrow\": 58013,\n  \"timeline\": 58012,\n  \"timer\": 58014,\n  \"times-circle\": 61527,\n  \"times-hexagon\": 62190,\n  \"times-octagon\": 62192,\n  \"times-rectangle\": 62480,\n  \"times-square\": 62163,\n  \"times-to-slot\": 63345,\n  \"times\": 61453,\n  \"tint-slash\": 62919,\n  \"tint\": 61507,\n  \"tire-flat\": 63026,\n  \"tire-pressure-warning\": 63027,\n  \"tire-rugged\": 63028,\n  \"tire\": 63025,\n  \"tired\": 62920,\n  \"toggle-large-off\": 58800,\n  \"toggle-large-on\": 58801,\n  \"toggle-off\": 61956,\n  \"toggle-on\": 61957,\n  \"toilet-paper-alt\": 63262,\n  \"toilet-paper-blank-under\": 58016,\n  \"toilet-paper-blank\": 63262,\n  \"toilet-paper-check\": 58802,\n  \"toilet-paper-reverse-alt\": 58016,\n  \"toilet-paper-reverse-slash\": 58017,\n  \"toilet-paper-reverse\": 58016,\n  \"toilet-paper-slash\": 57458,\n  \"toilet-paper-under-slash\": 58017,\n  \"toilet-paper-under\": 58016,\n  \"toilet-paper-xmark\": 58803,\n  \"toilet-paper\": 63262,\n  \"toilet-portable\": 58755,\n  \"toilet\": 63448,\n  \"toilets-portable\": 58756,\n  \"tomato\": 58160,\n  \"tombstone-alt\": 63265,\n  \"tombstone-blank\": 63265,\n  \"tombstone\": 63264,\n  \"toolbox\": 62802,\n  \"tools\": 63449,\n  \"tooth\": 62921,\n  \"toothbrush\": 63029,\n  \"torah\": 63136,\n  \"torii-gate\": 63137,\n  \"tornado\": 63343,\n  \"tower-broadcast\": 62745,\n  \"tower-cell\": 58757,\n  \"tower-control\": 58018,\n  \"tower-observation\": 58758,\n  \"tower-receive\": 59555,\n  \"tractor\": 63266,\n  \"trademark\": 62044,\n  \"traffic-cone\": 63030,\n  \"traffic-light-go\": 63032,\n  \"traffic-light-slow\": 63033,\n  \"traffic-light-stop\": 63034,\n  \"traffic-light\": 63031,\n  \"trailer\": 57409,\n  \"train-stop\": 59423,\n  \"train-subway-tunnel\": 58019,\n  \"train-subway\": 62009,\n  \"train-track\": 58451,\n  \"train-tram\": 58804,\n  \"train-tunnel\": 58452,\n  \"train\": 62008,\n  \"tram\": 63450,\n  \"transducer\": 59430,\n  \"transformer-bolt\": 58020,\n  \"transgender-alt\": 61989,\n  \"transgender\": 61989,\n  \"transmission\": 59394,\n  \"transporter-1\": 57411,\n  \"transporter-2\": 57412,\n  \"transporter-3\": 57413,\n  \"transporter-4\": 58021,\n  \"transporter-5\": 58022,\n  \"transporter-6\": 58023,\n  \"transporter-7\": 58024,\n  \"transporter-empty\": 57414,\n  \"transporter\": 57410,\n  \"trash-alt-slash\": 58029,\n  \"trash-alt\": 62189,\n  \"trash-arrow-turn-left\": 63637,\n  \"trash-arrow-up\": 63529,\n  \"trash-can-arrow-turn-left\": 63638,\n  \"trash-can-arrow-up\": 63530,\n  \"trash-can-check\": 58025,\n  \"trash-can-clock\": 58026,\n  \"trash-can-list\": 58027,\n  \"trash-can-plus\": 58028,\n  \"trash-can-slash\": 58029,\n  \"trash-can-undo\": 63638,\n  \"trash-can-xmark\": 58030,\n  \"trash-can\": 62189,\n  \"trash-check\": 58031,\n  \"trash-circle\": 57638,\n  \"trash-clock\": 58032,\n  \"trash-list\": 58033,\n  \"trash-plus\": 58034,\n  \"trash-restore-alt\": 63530,\n  \"trash-restore\": 63529,\n  \"trash-slash\": 58035,\n  \"trash-undo-alt\": 63638,\n  \"trash-undo\": 63637,\n  \"trash-xmark\": 58036,\n  \"trash\": 61944,\n  \"treasure-chest\": 63267,\n  \"tree-alt\": 62464,\n  \"tree-christmas\": 63451,\n  \"tree-city\": 58759,\n  \"tree-deciduous\": 62464,\n  \"tree-decorated\": 63452,\n  \"tree-large\": 63453,\n  \"tree-palm\": 63531,\n  \"tree\": 61883,\n  \"trees\": 63268,\n  \"trian-balbot\": 58460,\n  \"triangle-circle-square\": 63007,\n  \"triangle-exclamation\": 61553,\n  \"triangle-instrument\": 63714,\n  \"triangle-music\": 63714,\n  \"triangle-person-digging\": 63581,\n  \"triangle\": 62188,\n  \"tricycle-adult\": 58820,\n  \"tricycle\": 58819,\n  \"trillium\": 58760,\n  \"triple-chevrons-down\": 59383,\n  \"triple-chevrons-left\": 59384,\n  \"triple-chevrons-right\": 59385,\n  \"triple-chevrons-up\": 59386,\n  \"trombone\": 59266,\n  \"trophy-alt\": 62187,\n  \"trophy-star\": 62187,\n  \"trophy\": 61585,\n  \"trowel-bricks\": 58762,\n  \"trowel\": 58761,\n  \"truck-arrow-right\": 58763,\n  \"truck-bolt\": 58320,\n  \"truck-clock\": 62604,\n  \"truck-container-empty\": 58037,\n  \"truck-container\": 62684,\n  \"truck-couch\": 62685,\n  \"truck-droplet\": 58764,\n  \"truck-fast\": 62603,\n  \"truck-field-un\": 58766,\n  \"truck-field\": 58765,\n  \"truck-fire\": 58970,\n  \"truck-flatbed\": 58038,\n  \"truck-front\": 58039,\n  \"truck-ladder\": 58967,\n  \"truck-loading\": 62686,\n  \"truck-medical\": 61689,\n  \"truck-monster\": 63035,\n  \"truck-moving\": 62687,\n  \"truck-pickup\": 63036,\n  \"truck-plane\": 58767,\n  \"truck-plow\": 63454,\n  \"truck-ramp-box\": 62686,\n  \"truck-ramp-couch\": 62685,\n  \"truck-ramp\": 62688,\n  \"truck-suv\": 59334,\n  \"truck-tow\": 58040,\n  \"truck-utensils\": 58920,\n  \"truck\": 61649,\n  \"trumpet\": 63715,\n  \"try\": 58043,\n  \"tshirt\": 62803,\n  \"tty-answer\": 58041,\n  \"tty\": 61924,\n  \"tugrik-sign\": 58042,\n  \"turkey\": 63269,\n  \"turkish-lira-sign\": 58043,\n  \"turkish-lira\": 58043,\n  \"turn-down-left\": 58161,\n  \"turn-down-right\": 58453,\n  \"turn-down\": 62398,\n  \"turn-left-down\": 58935,\n  \"turn-left-up\": 58936,\n  \"turn-left\": 58934,\n  \"turn-right\": 58937,\n  \"turn-up\": 62399,\n  \"turntable\": 63716,\n  \"turtle\": 63270,\n  \"tv-alt\": 62060,\n  \"tv-music\": 63718,\n  \"tv-retro\": 62465,\n  \"tv\": 62060,\n  \"typewriter\": 63719,\n  \"u-turn-down-left\": 59375,\n  \"u-turn-down-right\": 59376,\n  \"u-turn-left-down\": 59377,\n  \"u-turn-left-up\": 59378,\n  \"u-turn-right-down\": 59379,\n  \"u-turn-right-up\": 59380,\n  \"u-turn-up-left\": 59381,\n  \"u-turn-up-right\": 59382,\n  \"u-turn\": 59377,\n  \"u\": 85,\n  \"ufo-beam\": 57416,\n  \"ufo\": 57415,\n  \"umbrella-alt\": 58044,\n  \"umbrella-beach\": 62922,\n  \"umbrella-simple\": 58044,\n  \"umbrella\": 61673,\n  \"underline\": 61645,\n  \"undo-alt\": 62186,\n  \"undo\": 61666,\n  \"unicorn\": 63271,\n  \"unicycle\": 59335,\n  \"uniform-martial-arts\": 58321,\n  \"union\": 63138,\n  \"universal-access\": 62106,\n  \"university\": 61852,\n  \"unlink\": 61735,\n  \"unlock-alt\": 61758,\n  \"unlock-keyhole\": 61758,\n  \"unlock\": 61596,\n  \"unsorted\": 61660,\n  \"up-down-left-right\": 61618,\n  \"up-down\": 62264,\n  \"up-from-bracket\": 58768,\n  \"up-from-dotted-line\": 58454,\n  \"up-from-line\": 62278,\n  \"up-left\": 58045,\n  \"up-long-to-line\": 59078,\n  \"up-long\": 62220,\n  \"up-right-and-down-left-from-center\": 62500,\n  \"up-right-from-square\": 62301,\n  \"up-right\": 58046,\n  \"up-to-bracket\": 58990,\n  \"up-to-dotted-line\": 58455,\n  \"up-to-line\": 62285,\n  \"up\": 62295,\n  \"upload\": 61587,\n  \"usb-drive\": 63721,\n  \"usd-circle\": 62184,\n  \"usd-square\": 62185,\n  \"usd\": 36,\n  \"user-alien\": 57418,\n  \"user-alt-slash\": 62726,\n  \"user-alt\": 61447,\n  \"user-astronaut\": 62715,\n  \"user-beard-bolt\": 59017,\n  \"user-beard\": 59304,\n  \"user-bounty-hunter\": 58047,\n  \"user-chart\": 63139,\n  \"user-check\": 62716,\n  \"user-chef-hair-long\": 59305,\n  \"user-chef\": 58322,\n  \"user-circle-minus\": 59306,\n  \"user-circle-plus\": 59307,\n  \"user-circle\": 62141,\n  \"user-clock\": 62717,\n  \"user-cog\": 62718,\n  \"user-construction\": 63532,\n  \"user-cowboy\": 63722,\n  \"user-crown\": 63140,\n  \"user-dashed\": 59308,\n  \"user-doctor-hair-long\": 58457,\n  \"user-doctor-hair-mullet\": 59309,\n  \"user-doctor-hair\": 58456,\n  \"user-doctor-message\": 63534,\n  \"user-doctor\": 61680,\n  \"user-edit\": 62719,\n  \"user-friends\": 62720,\n  \"user-gear\": 62718,\n  \"user-graduate\": 62721,\n  \"user-group-crown\": 63141,\n  \"user-group-simple\": 58883,\n  \"user-group\": 62720,\n  \"user-hair-buns\": 58323,\n  \"user-hair-long\": 58459,\n  \"user-hair-mullet\": 58460,\n  \"user-hair\": 58458,\n  \"user-hard-hat\": 63532,\n  \"user-hat-tie-magnifying-glass\": 59311,\n  \"user-hat-tie\": 59310,\n  \"user-headset\": 63533,\n  \"user-helmet-safety\": 63532,\n  \"user-hoodie\": 59018,\n  \"user-injured\": 63272,\n  \"user-key\": 59312,\n  \"user-large-slash\": 62726,\n  \"user-large\": 61447,\n  \"user-lock\": 62722,\n  \"user-magnifying-glass\": 58821,\n  \"user-md-chat\": 63534,\n  \"user-md\": 61680,\n  \"user-message\": 59313,\n  \"user-microphone\": 59314,\n  \"user-minus\": 62723,\n  \"user-music\": 63723,\n  \"user-ninja\": 62724,\n  \"user-nurse-hair-long\": 58462,\n  \"user-nurse-hair\": 58461,\n  \"user-nurse\": 63535,\n  \"user-pen\": 62719,\n  \"user-pilot-hair-long\": 59315,\n  \"user-pilot-tie-hair-long\": 59316,\n  \"user-pilot-tie\": 58049,\n  \"user-pilot\": 58048,\n  \"user-plus\": 62004,\n  \"user-police-hair-long\": 59317,\n  \"user-police-tie-hair-long\": 59318,\n  \"user-police-tie\": 58164,\n  \"user-police\": 58163,\n  \"user-question\": 59319,\n  \"user-robot-xmarks\": 58535,\n  \"user-robot\": 57419,\n  \"user-secret\": 61979,\n  \"user-shakespeare\": 58050,\n  \"user-shield\": 62725,\n  \"user-sith\": 59320,\n  \"user-slash\": 62726,\n  \"user-tag\": 62727,\n  \"user-tie-hair-long\": 58464,\n  \"user-tie-hair-mullet\": 59321,\n  \"user-tie-hair\": 58463,\n  \"user-tie\": 62728,\n  \"user-times\": 62005,\n  \"user-unlock\": 57432,\n  \"user-viewfinder\": 59253,\n  \"user-visor\": 57420,\n  \"user-vneck-hair-long\": 58467,\n  \"user-vneck-hair-mullet\": 59322,\n  \"user-vneck-hair\": 58466,\n  \"user-vneck\": 58465,\n  \"user-xmark\": 62005,\n  \"user\": 61447,\n  \"users-between-lines\": 58769,\n  \"users-class\": 63037,\n  \"users-cog\": 62729,\n  \"users-crown\": 63141,\n  \"users-gear\": 62729,\n  \"users-line\": 58770,\n  \"users-medical\": 63536,\n  \"users-rays\": 58771,\n  \"users-rectangle\": 58772,\n  \"users-slash\": 57459,\n  \"users-viewfinder\": 58773,\n  \"users\": 61632,\n  \"utensil-fork\": 62179,\n  \"utensil-knife\": 62180,\n  \"utensil-spoon\": 62181,\n  \"utensils-alt\": 62182,\n  \"utensils-slash\": 58468,\n  \"utensils\": 62183,\n  \"utility-can\": 59549,\n  \"utility-pole-double\": 58052,\n  \"utility-pole\": 58051,\n  \"v\": 86,\n  \"vacuum-robot\": 57422,\n  \"vacuum\": 57421,\n  \"value-absolute\": 63142,\n  \"van-shuttle\": 62902,\n  \"van\": 59336,\n  \"vault\": 58053,\n  \"vcard\": 62139,\n  \"vector-circle\": 62957,\n  \"vector-polygon\": 62958,\n  \"vector-square\": 62959,\n  \"vent-damper\": 58469,\n  \"venus-double\": 61990,\n  \"venus-mars\": 61992,\n  \"venus\": 61985,\n  \"vest-patches\": 57478,\n  \"vest\": 57477,\n  \"vhs\": 63724,\n  \"vial-circle-check\": 58774,\n  \"vial-vertical\": 59234,\n  \"vial-virus\": 58775,\n  \"vial\": 62610,\n  \"vials\": 62611,\n  \"video-arrow-down-left\": 58056,\n  \"video-arrow-up-right\": 58057,\n  \"video-camera\": 61501,\n  \"video-circle\": 57643,\n  \"video-down-to-line\": 59254,\n  \"video-handheld\": 63656,\n  \"video-plus\": 62689,\n  \"video-question\": 59255,\n  \"video-slash\": 62690,\n  \"video\": 61501,\n  \"vihara\": 63143,\n  \"violin\": 63725,\n  \"virgo\": 59472,\n  \"virus-covid-slash\": 58537,\n  \"virus-covid\": 58536,\n  \"virus-slash\": 57461,\n  \"virus\": 57460,\n  \"viruses\": 57462,\n  \"voicemail\": 63639,\n  \"volcano\": 63344,\n  \"volleyball-ball\": 62559,\n  \"volleyball\": 62559,\n  \"volume-control-phone\": 62112,\n  \"volume-down\": 61479,\n  \"volume-high\": 61480,\n  \"volume-low\": 61479,\n  \"volume-medium\": 63144,\n  \"volume-mute\": 63145,\n  \"volume-off\": 61478,\n  \"volume-slash\": 62178,\n  \"volume-times\": 63145,\n  \"volume-up\": 61480,\n  \"volume-xmark\": 63145,\n  \"volume\": 63144,\n  \"vote-nay\": 63345,\n  \"vote-yea\": 63346,\n  \"vr-cardboard\": 63273,\n  \"w\": 87,\n  \"waffle\": 58470,\n  \"wagon-covered\": 63726,\n  \"walker\": 63537,\n  \"walkie-talkie\": 63727,\n  \"walking\": 62804,\n  \"wall-brick\": 58331,\n  \"wallet\": 62805,\n  \"wand-magic-sparkles\": 58058,\n  \"wand-magic\": 61648,\n  \"wand-sparkles\": 63275,\n  \"wand\": 63274,\n  \"wardrobe\": 59521,\n  \"warehouse-alt\": 62613,\n  \"warehouse-full\": 62613,\n  \"warehouse\": 62612,\n  \"warning\": 61553,\n  \"washer\": 63640,\n  \"washing-machine\": 63640,\n  \"watch-apple\": 58059,\n  \"watch-calculator\": 63728,\n  \"watch-fitness\": 63038,\n  \"watch-smart\": 58060,\n  \"watch\": 62177,\n  \"water-arrow-down\": 63348,\n  \"water-arrow-up\": 63349,\n  \"water-ladder\": 62917,\n  \"water-lower\": 63348,\n  \"water-rise\": 63349,\n  \"water-temp\": 59434,\n  \"water-temperature\": 59434,\n  \"water\": 63347,\n  \"watermelon-slice\": 58167,\n  \"wave-pulse\": 62968,\n  \"wave-sine\": 63641,\n  \"wave-square\": 63550,\n  \"wave-triangle\": 63642,\n  \"wave\": 58971,\n  \"waveform-circle\": 57645,\n  \"waveform-lines\": 63730,\n  \"waveform-path\": 63730,\n  \"waveform\": 63729,\n  \"waves-sine\": 58973,\n  \"web-awesome\": 59010,\n  \"webcam-slash\": 63539,\n  \"webcam\": 63538,\n  \"webhook\": 58837,\n  \"weight-hanging\": 62925,\n  \"weight-scale\": 62614,\n  \"weight\": 62614,\n  \"whale\": 63276,\n  \"wheat-alt\": 58061,\n  \"wheat-awn-circle-exclamation\": 58776,\n  \"wheat-awn-slash\": 58168,\n  \"wheat-awn\": 58061,\n  \"wheat-slash\": 58169,\n  \"wheat\": 63277,\n  \"wheelchair-alt\": 58062,\n  \"wheelchair-move\": 58062,\n  \"wheelchair\": 61843,\n  \"whiskey-glass-ice\": 63393,\n  \"whiskey-glass\": 63392,\n  \"whistle\": 62560,\n  \"wifi-1\": 63146,\n  \"wifi-2\": 63147,\n  \"wifi-3\": 61931,\n  \"wifi-exclamation\": 58063,\n  \"wifi-fair\": 63147,\n  \"wifi-slash\": 63148,\n  \"wifi-strong\": 61931,\n  \"wifi-weak\": 63146,\n  \"wifi\": 61931,\n  \"wind-circle-exclamation\": 63350,\n  \"wind-turbine\": 63643,\n  \"wind-warning\": 63350,\n  \"wind\": 63278,\n  \"window-alt\": 62479,\n  \"window-close\": 62480,\n  \"window-flip\": 62479,\n  \"window-frame-open\": 57424,\n  \"window-frame\": 57423,\n  \"window-maximize\": 62160,\n  \"window-minimize\": 62161,\n  \"window-restore\": 62162,\n  \"window\": 62478,\n  \"windsock\": 63351,\n  \"wine-bottle\": 63279,\n  \"wine-glass-alt\": 62926,\n  \"wine-glass-crack\": 62651,\n  \"wine-glass-empty\": 62926,\n  \"wine-glass\": 62691,\n  \"wireless\": 59359,\n  \"won-sign\": 61785,\n  \"won\": 61785,\n  \"worm\": 58777,\n  \"wreath-laurel\": 58834,\n  \"wreath\": 63458,\n  \"wrench-simple\": 58065,\n  \"wrench\": 61613,\n  \"x-ray\": 62615,\n  \"x\": 88,\n  \"xmark-circle\": 61527,\n  \"xmark-hexagon\": 62190,\n  \"xmark-large\": 58779,\n  \"xmark-octagon\": 62192,\n  \"xmark-square\": 62163,\n  \"xmark-to-slot\": 63345,\n  \"xmark\": 61453,\n  \"xmarks-lines\": 58778,\n  \"y\": 89,\n  \"yen-sign\": 61783,\n  \"yen\": 61783,\n  \"yin-yang\": 63149,\n  \"z\": 90,\n  \"zap\": 61671,\n  \"zzz\": 63616\n}"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-solid/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontawesome-pro-sharp-duotone-solid\",\n  \"version\": \"0.2.0\",\n  \"description\": \"Fontawesome Pro Sharp Duotone Solid font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"fontawesome-pro-sharp-duotone-solid\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/fontawesome-pro-sharp-duotone-solid\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-solid/react-native-vector-icons-fontawesome-pro-sharp-duotone-solid.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-fontawesome-pro-sharp-duotone-solid'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\n\n  s.script_phase = {\n    name: 'Copy Custom Fonts',\n    execution_position: :after_compile,\n    script: <<~SCRIPT\n      set -e\n\n      HEAD=\"(RNVI-fontawesome-pro-sharp-duotone-solid)\"\n\n      echo \"${HEAD} START_COPY_FONTS\"\n\n      echo \"${HEAD} PWD: $(pwd)\"\n\n      #\n      # Find the custom font Directory\n      #\n\n      # Assume the project root is always two directories above the POD_ROOT\n      echo \"${HEAD} PODS_ROOT: $PODS_ROOT\"\n\n      PROJECT_ROOT=\"${PODS_ROOT}/../..\"\n      echo \"${HEAD} PROJECT_ROOT: $PROJECT_ROOT\"\n\n      cd $PROJECT_ROOT\n      FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/\"//g')\n      if [ -z \"$FONTS_DIR\" ]; then\n        FONTS_DIR=\"rnvi-fonts\"\n      fi\n      echo \"${HEAD} FONTS_DIR: $FONTS_DIR\"\n\n      FONTS_DIR=\"${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-sharp-duotone-solid\"\n      if [ ! -d \"$FONTS_DIR\" ]; then\n        echo \"${HEAD} $FONTS_DIR not found\"\n        exit 0\n      fi\n\n      #\n      # Find the destination we copy to\n      #\n\n      echo \"${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR\"\n      XCODE_DIR=$(ls -d \"$PODS_CONFIGURATION_BUILD_DIR\"/*.app)\n      echo \"${HEAD} XCODE_DIR: $XCODE_DIR\"\n      if [ -z \"$XCODE_DIR\" ]; then\n        echo \"Could not find XCODE_DIR to copy fonts to\"\n        exit 1\n      fi\n\n      DEST_DIR=\"${XCODE_DIR}\"\n      mkdir -p \"$DEST_DIR\"\n\n      #\n      # Copy the fonts\n      #\n\n      echo \"${HEAD} Copying the following files to $DEST_DIR\"\n      ls \"$FONTS_DIR\" | sed \"s/^/${HEAD} /\"\n\n      rsync -avr --copy-links --no-relative $FONTS_DIR/ \"$DEST_DIR\"\n\n      echo \"${HEAD} END:RNVI_COPY_FONTS\"\n    SCRIPT\n  }\nend\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-solid/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProSharpDuotoneSolid icon set component.\n * Usage: <FontAwesomeProSharpDuotoneSolid name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProSharpDuotoneSolid.json';\n\nexport const FontAwesomeProSharpDuotoneSolid = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7SharpDuotone-Solid',\n  fontFileName: 'fa-sharp-duotone-solid-900.ttf',\n});\n\nexport type FontAwesomeProSharpDuotoneSolidIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProSharpDuotoneSolid;\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-solid/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProSharpDuotoneSolid icon set component.\n * Usage: <FontAwesomeProSharpDuotoneSolid name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProSharpDuotoneSolid.json';\n\nexport const FontAwesomeProSharpDuotoneSolid = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7SharpDuotone-Solid',\n  fontFileName: 'fa-sharp-duotone-solid-900.ttf',\n});\n\nexport type FontAwesomeProSharpDuotoneSolidIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProSharpDuotoneSolid;\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-solid/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-solid/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-thin/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontawesome-pro-sharp-duotone-thin\",\n    \"upstreamFont\": {\n      \"registry\": \"https://npm.fontawesome.com\",\n      \"packageName\": \"@fortawesome/fontawesome-pro\",\n      \"versionOnly\": true\n    },\n    \"copyCustomFonts\": true,\n    \"className\": \"FontAwesomeProSharpDuotoneThin\",\n    \"postScriptName\": \"FontAwesome7SharpDuotone-Thin\",\n    \"fontFileName\": \"fa-sharp-duotone-thin-100\",\n    \"buildSteps\": {\n      \"preScript\": {\n        \"script\": \"../fontawesome-common/scripts/fetch-pro.sh 7\"\n      },\n      \"glyphmap\": {\n        \"location\": \"fa/pro/css/all.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fa-\"\n      },\n      \"postScript\": {\n        \"script\": \"../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProSharpDuotoneThin.json fa/pro/svgs/sharp-duotone-thin\\nrm -rf fa\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"0.1.0\",\n        \"upstream\": \"7.1.0\"\n      },\n      {\n        \"rnvi\": \"0.1.1\",\n        \"upstream\": \"7.2.0\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-thin/CHANGELOG.md",
    "content": "## 0.2.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 0.1.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 0.1.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🩹 Fixes\n\n- upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 0.1.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 0.1.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-thin/README.md",
    "content": "# React Native Vector Icons - Fontawesome Pro Sharp Duotone Thin\n\nFontawesome Pro Sharp Duotone Thin font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n> [!IMPORTANT]\n> This package does not include the fonts. You must provide them yourself.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/fontawesome-pro-sharp-duotone-thin\n```\n\n## Custom Fonts\n\nThis package requires you to provide the font files. Place your `.ttf` font\nfile in the following location:\n\n```\nrnvi-fonts/fontawesome-pro-sharp-duotone-thin/fa-sharp-duotone-thin-100.ttf\n```\n\nThe font will be automatically copied during the build process for both iOS and\nAndroid.\n\n## Usage\n\n```jsx\nimport { FontAwesomeProSharpDuotoneThin } from '@react-native-vector-icons/fontawesome-pro-sharp-duotone-thin';\n\n// ...\n\n<FontAwesomeProSharpDuotoneThin name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 0.1.0 | 7.1.0 |\n| &gt; 0.1.1 | 7.2.0 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-thin/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.fontawesome_pro_sharp_duotone_thin\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFontAwesomeProSharpDuotoneThin\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.fontawesome_pro_sharp_duotone_thin\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-fontawesome-pro-sharp-duotone-thin\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-duotone-thin/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-sharp-duotone-thin) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n\ntask copyExtraFonts(type: Copy) {\n  from \"${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-sharp-duotone-thin\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-duotone-thin/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-sharp-duotone-thin) Copying custom font: ${it.file}\" }\n}\n\npreBuild.dependsOn(copyExtraFonts)\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-thin/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.fontawesome_pro_sharp_duotone_thin\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-thin/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-thin/android/src/main/java/VectorIconsFontAwesomeProSharpDuotoneThinPackage.kt",
    "content": "package com.reactnativevectoricons.fontawesome_pro_sharp_duotone_thin\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFontAwesomeProSharpDuotoneThinPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-thin/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-thin/glyphmaps/FontAwesomeProSharpDuotoneThin.json",
    "content": "{\n  \"0\": 48,\n  \"1\": 49,\n  \"2\": 50,\n  \"3\": 51,\n  \"4\": 52,\n  \"5\": 53,\n  \"6\": 54,\n  \"7\": 55,\n  \"8\": 56,\n  \"9\": 57,\n  \"100\": 58396,\n  \"00\": 58471,\n  \"360-degrees\": 58076,\n  \"a\": 65,\n  \"abacus\": 63040,\n  \"accent-grave\": 96,\n  \"acorn\": 63150,\n  \"ad\": 63041,\n  \"add\": 43,\n  \"address-book\": 62137,\n  \"address-card\": 62139,\n  \"adjust\": 61506,\n  \"aeropress\": 59435,\n  \"air-conditioner\": 63732,\n  \"air-freshener\": 62928,\n  \"airplay-audio\": 59259,\n  \"airplay\": 57481,\n  \"alarm-clock\": 62286,\n  \"alarm-exclamation\": 63555,\n  \"alarm-minus\": 59395,\n  \"alarm-plus\": 63556,\n  \"alarm-snooze\": 63557,\n  \"album-circle-plus\": 58508,\n  \"album-circle-user\": 58509,\n  \"album-collection-circle-plus\": 58510,\n  \"album-collection-circle-user\": 58511,\n  \"album-collection\": 63648,\n  \"album\": 63647,\n  \"alicorn\": 63152,\n  \"alien-8bit\": 63734,\n  \"alien-monster\": 63734,\n  \"alien\": 63733,\n  \"align-center\": 61495,\n  \"align-justify\": 61497,\n  \"align-left\": 61494,\n  \"align-right\": 61496,\n  \"align-slash\": 63558,\n  \"allergies\": 62561,\n  \"almost-equal-to\": 59416,\n  \"alt\": 57482,\n  \"ambulance\": 61689,\n  \"american-sign-language-interpreting\": 62115,\n  \"amp-guitar\": 63649,\n  \"ampersand\": 38,\n  \"analytics\": 63043,\n  \"anchor-circle-check\": 58538,\n  \"anchor-circle-exclamation\": 58539,\n  \"anchor-circle-xmark\": 58540,\n  \"anchor-lock\": 58541,\n  \"anchor\": 61757,\n  \"angel\": 63353,\n  \"angle-90\": 57485,\n  \"angle-double-down\": 61699,\n  \"angle-double-left\": 61696,\n  \"angle-double-right\": 61697,\n  \"angle-double-up\": 61698,\n  \"angle-down\": 61703,\n  \"angle-left\": 61700,\n  \"angle-right\": 61701,\n  \"angle-up\": 61702,\n  \"angle\": 57484,\n  \"angles-down\": 61699,\n  \"angles-left\": 61696,\n  \"angles-right\": 61697,\n  \"angles-up-down\": 58893,\n  \"angles-up\": 61698,\n  \"angry\": 62806,\n  \"ankh\": 63044,\n  \"ant\": 59008,\n  \"apartment\": 58472,\n  \"aperture\": 58079,\n  \"apostrophe\": 39,\n  \"apple-alt\": 62929,\n  \"apple-core\": 57487,\n  \"apple-crate\": 63153,\n  \"apple-whole\": 62929,\n  \"aquarius\": 59461,\n  \"archive\": 61831,\n  \"archway\": 62807,\n  \"area-chart\": 61950,\n  \"aries\": 59462,\n  \"arrow-alt-circle-down\": 62296,\n  \"arrow-alt-circle-left\": 62297,\n  \"arrow-alt-circle-right\": 62298,\n  \"arrow-alt-circle-up\": 62299,\n  \"arrow-alt-down\": 62292,\n  \"arrow-alt-from-bottom\": 62278,\n  \"arrow-alt-from-left\": 62279,\n  \"arrow-alt-from-right\": 62280,\n  \"arrow-alt-from-top\": 62281,\n  \"arrow-alt-left\": 62293,\n  \"arrow-alt-right\": 62294,\n  \"arrow-alt-square-down\": 62288,\n  \"arrow-alt-square-left\": 62289,\n  \"arrow-alt-square-right\": 62290,\n  \"arrow-alt-square-up\": 62291,\n  \"arrow-alt-to-bottom\": 62282,\n  \"arrow-alt-to-left\": 62283,\n  \"arrow-alt-to-right\": 62284,\n  \"arrow-alt-to-top\": 62285,\n  \"arrow-alt-up\": 62295,\n  \"arrow-archery\": 59449,\n  \"arrow-circle-down\": 61611,\n  \"arrow-circle-left\": 61608,\n  \"arrow-circle-right\": 61609,\n  \"arrow-circle-up\": 61610,\n  \"arrow-down-1-9\": 61794,\n  \"arrow-down-9-1\": 63622,\n  \"arrow-down-a-z\": 61789,\n  \"arrow-down-arrow-up\": 63619,\n  \"arrow-down-big-small\": 63628,\n  \"arrow-down-from-arc\": 58900,\n  \"arrow-down-from-bracket\": 58983,\n  \"arrow-down-from-dotted-line\": 57488,\n  \"arrow-down-from-line\": 62277,\n  \"arrow-down-left-and-arrow-up-right-to-center\": 57490,\n  \"arrow-down-left\": 57489,\n  \"arrow-down-long-to-line\": 59063,\n  \"arrow-down-long\": 61813,\n  \"arrow-down-right\": 57491,\n  \"arrow-down-short-wide\": 63620,\n  \"arrow-down-small-big\": 63629,\n  \"arrow-down-square-triangle\": 63625,\n  \"arrow-down-to-arc\": 58542,\n  \"arrow-down-to-bracket\": 57492,\n  \"arrow-down-to-dotted-line\": 57493,\n  \"arrow-down-to-line\": 62269,\n  \"arrow-down-to-square\": 57494,\n  \"arrow-down-triangle-square\": 63624,\n  \"arrow-down-up-across-line\": 58543,\n  \"arrow-down-up-lock\": 58544,\n  \"arrow-down-wide-short\": 61792,\n  \"arrow-down-z-a\": 63617,\n  \"arrow-down\": 61539,\n  \"arrow-from-bottom\": 62274,\n  \"arrow-from-left\": 62275,\n  \"arrow-from-right\": 62276,\n  \"arrow-from-top\": 62277,\n  \"arrow-left-arrow-right\": 59064,\n  \"arrow-left-from-arc\": 58901,\n  \"arrow-left-from-bracket\": 58984,\n  \"arrow-left-from-dotted-line\": 59065,\n  \"arrow-left-from-line\": 62276,\n  \"arrow-left-long-to-line\": 58324,\n  \"arrow-left-long\": 61815,\n  \"arrow-left-rotate\": 61666,\n  \"arrow-left-to-arc\": 58902,\n  \"arrow-left-to-bracket\": 58985,\n  \"arrow-left-to-dotted-line\": 59066,\n  \"arrow-left-to-line\": 62270,\n  \"arrow-left\": 61536,\n  \"arrow-pointer\": 62021,\n  \"arrow-progress\": 58847,\n  \"arrow-right-arrow-left\": 61676,\n  \"arrow-right-from-arc\": 58545,\n  \"arrow-right-from-bracket\": 61579,\n  \"arrow-right-from-dotted-line\": 59067,\n  \"arrow-right-from-file\": 62830,\n  \"arrow-right-from-line\": 62275,\n  \"arrow-right-long-to-line\": 58325,\n  \"arrow-right-long\": 61816,\n  \"arrow-right-rotate\": 61470,\n  \"arrow-right-to-arc\": 58546,\n  \"arrow-right-to-bracket\": 61584,\n  \"arrow-right-to-city\": 58547,\n  \"arrow-right-to-dotted-line\": 59068,\n  \"arrow-right-to-file\": 62831,\n  \"arrow-right-to-line\": 62272,\n  \"arrow-right\": 61537,\n  \"arrow-rotate-back\": 61666,\n  \"arrow-rotate-backward\": 61666,\n  \"arrow-rotate-forward\": 61470,\n  \"arrow-rotate-left-10\": 59446,\n  \"arrow-rotate-left-15\": 59526,\n  \"arrow-rotate-left-30\": 59527,\n  \"arrow-rotate-left\": 61666,\n  \"arrow-rotate-right-10\": 59447,\n  \"arrow-rotate-right-15\": 59528,\n  \"arrow-rotate-right-30\": 59529,\n  \"arrow-rotate-right\": 61470,\n  \"arrow-square-down\": 62265,\n  \"arrow-square-left\": 62266,\n  \"arrow-square-right\": 62267,\n  \"arrow-square-up\": 62268,\n  \"arrow-to-bottom\": 62269,\n  \"arrow-to-left\": 62270,\n  \"arrow-to-right\": 62272,\n  \"arrow-to-top\": 62273,\n  \"arrow-trend-down\": 57495,\n  \"arrow-trend-up\": 57496,\n  \"arrow-turn-down-left\": 58081,\n  \"arrow-turn-down-right\": 58326,\n  \"arrow-turn-down\": 61769,\n  \"arrow-turn-left-down\": 58931,\n  \"arrow-turn-left-up\": 58932,\n  \"arrow-turn-left\": 58930,\n  \"arrow-turn-right\": 58933,\n  \"arrow-turn-up\": 61768,\n  \"arrow-u-turn-down-left\": 59367,\n  \"arrow-u-turn-down-right\": 59368,\n  \"arrow-u-turn-left-down\": 59369,\n  \"arrow-u-turn-left-up\": 59370,\n  \"arrow-u-turn-right-down\": 59371,\n  \"arrow-u-turn-right-up\": 59372,\n  \"arrow-u-turn-up-left\": 59373,\n  \"arrow-u-turn-up-right\": 59374,\n  \"arrow-up-1-9\": 61795,\n  \"arrow-up-9-1\": 63623,\n  \"arrow-up-a-z\": 61790,\n  \"arrow-up-arrow-down\": 57497,\n  \"arrow-up-big-small\": 63630,\n  \"arrow-up-from-arc\": 58548,\n  \"arrow-up-from-bracket\": 57498,\n  \"arrow-up-from-dotted-line\": 57499,\n  \"arrow-up-from-ground-water\": 58549,\n  \"arrow-up-from-line\": 62274,\n  \"arrow-up-from-square\": 57500,\n  \"arrow-up-from-water-pump\": 58550,\n  \"arrow-up-left-from-circle\": 57502,\n  \"arrow-up-left\": 57501,\n  \"arrow-up-long-to-line\": 59069,\n  \"arrow-up-long\": 61814,\n  \"arrow-up-right-and-arrow-down-left-from-center\": 57504,\n  \"arrow-up-right-dots\": 58551,\n  \"arrow-up-right-from-square\": 61582,\n  \"arrow-up-right\": 57503,\n  \"arrow-up-short-wide\": 63621,\n  \"arrow-up-small-big\": 63631,\n  \"arrow-up-square-triangle\": 63627,\n  \"arrow-up-to-arc\": 58903,\n  \"arrow-up-to-bracket\": 58986,\n  \"arrow-up-to-dotted-line\": 57505,\n  \"arrow-up-to-line\": 62273,\n  \"arrow-up-triangle-square\": 63626,\n  \"arrow-up-wide-short\": 61793,\n  \"arrow-up-z-a\": 63618,\n  \"arrow-up\": 61538,\n  \"arrows-alt-h\": 62263,\n  \"arrows-alt-v\": 62264,\n  \"arrows-alt\": 61618,\n  \"arrows-cross\": 57506,\n  \"arrows-down-to-line\": 58552,\n  \"arrows-down-to-people\": 58553,\n  \"arrows-from-dotted-line\": 57507,\n  \"arrows-from-line\": 57508,\n  \"arrows-h\": 61566,\n  \"arrows-left-right-to-line\": 58554,\n  \"arrows-left-right\": 61566,\n  \"arrows-maximize\": 62237,\n  \"arrows-minimize\": 57509,\n  \"arrows-repeat-1\": 62310,\n  \"arrows-repeat\": 62308,\n  \"arrows-retweet\": 62305,\n  \"arrows-rotate-reverse\": 58928,\n  \"arrows-rotate\": 61473,\n  \"arrows-spin\": 58555,\n  \"arrows-split-up-and-left\": 58556,\n  \"arrows-to-circle\": 58557,\n  \"arrows-to-dot\": 58558,\n  \"arrows-to-dotted-line\": 57510,\n  \"arrows-to-eye\": 58559,\n  \"arrows-to-line\": 57511,\n  \"arrows-turn-right\": 58560,\n  \"arrows-turn-to-dots\": 58561,\n  \"arrows-up-down-left-right\": 61511,\n  \"arrows-up-down\": 61565,\n  \"arrows-up-to-line\": 58562,\n  \"arrows-v\": 61565,\n  \"arrows\": 61511,\n  \"asl-interpreting\": 62115,\n  \"assistive-listening-systems\": 62114,\n  \"asterisk\": 42,\n  \"at\": 64,\n  \"atlas\": 62808,\n  \"atom-alt\": 62931,\n  \"atom-simple\": 62931,\n  \"atom\": 62930,\n  \"audio-description-slash\": 57512,\n  \"audio-description\": 62110,\n  \"austral-sign\": 57513,\n  \"australian-dollar-sign\": 59134,\n  \"automobile\": 61881,\n  \"avocado\": 57514,\n  \"award-simple\": 57515,\n  \"award\": 62809,\n  \"axe-battle\": 63155,\n  \"axe\": 63154,\n  \"b\": 66,\n  \"baby-carriage\": 63357,\n  \"baby\": 63356,\n  \"backpack\": 62932,\n  \"backspace\": 62810,\n  \"backward-fast\": 61513,\n  \"backward-step\": 61512,\n  \"backward\": 61514,\n  \"bacon\": 63461,\n  \"bacteria\": 57433,\n  \"bacterium\": 57434,\n  \"badge-check\": 62262,\n  \"badge-dollar\": 63045,\n  \"badge-percent\": 63046,\n  \"badge-sheriff\": 63650,\n  \"badge\": 62261,\n  \"badger-honey\": 63156,\n  \"badminton\": 58170,\n  \"bag-seedling\": 58866,\n  \"bag-shopping-minus\": 58960,\n  \"bag-shopping-plus\": 58961,\n  \"bag-shopping\": 62096,\n  \"bagel\": 58327,\n  \"bags-shopping\": 63559,\n  \"baguette\": 58328,\n  \"bahai\": 63078,\n  \"baht-sign\": 57516,\n  \"balance-scale-left\": 62741,\n  \"balance-scale-right\": 62742,\n  \"balance-scale\": 62030,\n  \"ball-pile\": 63358,\n  \"ball-yarn\": 59086,\n  \"balloon\": 58083,\n  \"balloons\": 58084,\n  \"ballot-check\": 63283,\n  \"ballot\": 63282,\n  \"ban-bug\": 63481,\n  \"ban-parking\": 62998,\n  \"ban-smoking\": 62797,\n  \"ban\": 61534,\n  \"banana\": 58085,\n  \"band-aid\": 62562,\n  \"bandage\": 62562,\n  \"bangladeshi-taka-sign\": 58086,\n  \"banjo\": 63651,\n  \"bank\": 61852,\n  \"bar-chart\": 61568,\n  \"bar-progress-empty\": 59045,\n  \"bar-progress-full\": 59046,\n  \"bar-progress-half\": 59047,\n  \"bar-progress-quarter\": 59048,\n  \"bar-progress-three-quarters\": 59049,\n  \"bar-progress\": 59044,\n  \"barcode-alt\": 62563,\n  \"barcode-read\": 62564,\n  \"barcode-scan\": 62565,\n  \"barcode\": 61482,\n  \"barn-silo\": 63588,\n  \"barn\": 59079,\n  \"bars-filter\": 57517,\n  \"bars-progress\": 63528,\n  \"bars-sort\": 57518,\n  \"bars-staggered\": 62800,\n  \"bars\": 61641,\n  \"baseball-ball\": 62515,\n  \"baseball-bat-ball\": 62514,\n  \"baseball-bat\": 59365,\n  \"baseball\": 62515,\n  \"basket-shopping-minus\": 58962,\n  \"basket-shopping-plus\": 58963,\n  \"basket-shopping-simple\": 57519,\n  \"basket-shopping\": 62097,\n  \"basketball-ball\": 62516,\n  \"basketball-hoop\": 62517,\n  \"basketball\": 62516,\n  \"bat\": 63157,\n  \"bath\": 62157,\n  \"bathtub\": 62157,\n  \"battery-0\": 62020,\n  \"battery-1\": 57521,\n  \"battery-2\": 62019,\n  \"battery-3\": 62018,\n  \"battery-4\": 62017,\n  \"battery-5\": 62016,\n  \"battery-bolt\": 62326,\n  \"battery-car\": 62943,\n  \"battery-empty\": 62020,\n  \"battery-exclamation\": 57520,\n  \"battery-full\": 62016,\n  \"battery-half\": 62018,\n  \"battery-low\": 57521,\n  \"battery-quarter\": 62019,\n  \"battery-slash\": 62327,\n  \"battery-three-quarters\": 62017,\n  \"battery\": 62016,\n  \"bed-alt\": 63735,\n  \"bed-bunk\": 63736,\n  \"bed-empty\": 63737,\n  \"bed-front\": 63735,\n  \"bed-pulse\": 62599,\n  \"bed\": 62006,\n  \"bee\": 57522,\n  \"beer-foam\": 57523,\n  \"beer-mug-empty\": 61692,\n  \"beer-mug\": 57523,\n  \"beer\": 61692,\n  \"bell-concierge\": 62818,\n  \"bell-exclamation\": 63560,\n  \"bell-on\": 63738,\n  \"bell-plus\": 63561,\n  \"bell-ring\": 58924,\n  \"bell-school-slash\": 62934,\n  \"bell-school\": 62933,\n  \"bell-slash\": 61942,\n  \"bell\": 61683,\n  \"bells\": 63359,\n  \"bench-tree\": 58087,\n  \"betamax\": 63652,\n  \"bezier-curve\": 62811,\n  \"bible\": 63047,\n  \"bicep\": 59490,\n  \"bicycle\": 61958,\n  \"biking-mountain\": 63563,\n  \"biking\": 63562,\n  \"billboard\": 58829,\n  \"bin-bottles-recycle\": 58870,\n  \"bin-bottles\": 58869,\n  \"bin-recycle\": 58871,\n  \"bin\": 59235,\n  \"binary-circle-check\": 58172,\n  \"binary-lock\": 58173,\n  \"binary-slash\": 58174,\n  \"binary\": 58171,\n  \"binoculars\": 61925,\n  \"biohazard\": 63360,\n  \"bird\": 58473,\n  \"birthday-cake\": 61949,\n  \"bitcoin-sign\": 57524,\n  \"blackboard\": 62747,\n  \"blanket-fire\": 58330,\n  \"blanket\": 62616,\n  \"blender-phone\": 63158,\n  \"blender\": 62743,\n  \"blind\": 62109,\n  \"blinds-open\": 63740,\n  \"blinds-raised\": 63741,\n  \"blinds\": 63739,\n  \"block-brick-fire\": 58332,\n  \"block-brick\": 58331,\n  \"block-question\": 58333,\n  \"block-quote\": 57525,\n  \"block\": 58474,\n  \"blog\": 63361,\n  \"blueberries\": 58088,\n  \"bluetooth\": 62099,\n  \"bold\": 61490,\n  \"bolt-auto\": 57526,\n  \"bolt-lightning\": 57527,\n  \"bolt-slash\": 57528,\n  \"bolt\": 61671,\n  \"bomb\": 61922,\n  \"bone-break\": 62936,\n  \"bone\": 62935,\n  \"bong\": 62812,\n  \"book-alt\": 62937,\n  \"book-arrow-right\": 57529,\n  \"book-arrow-up\": 57530,\n  \"book-atlas\": 62808,\n  \"book-bible\": 63047,\n  \"book-blank\": 62937,\n  \"book-bookmark\": 57531,\n  \"book-circle-arrow-right\": 57532,\n  \"book-circle-arrow-up\": 57533,\n  \"book-circle\": 57599,\n  \"book-copy\": 57534,\n  \"book-dead\": 63159,\n  \"book-font\": 57535,\n  \"book-heart\": 62617,\n  \"book-journal-whills\": 63082,\n  \"book-law\": 57537,\n  \"book-medical\": 63462,\n  \"book-open-alt\": 57536,\n  \"book-open-cover\": 57536,\n  \"book-open-lines\": 59219,\n  \"book-open-reader\": 62938,\n  \"book-open\": 62744,\n  \"book-quran\": 63111,\n  \"book-reader\": 62938,\n  \"book-section\": 57537,\n  \"book-skull\": 63159,\n  \"book-sparkles\": 63160,\n  \"book-spells\": 63160,\n  \"book-spine\": 59220,\n  \"book-tanakh\": 63527,\n  \"book-user\": 63463,\n  \"book\": 61485,\n  \"bookmark-circle\": 57600,\n  \"bookmark-plus\": 59221,\n  \"bookmark-slash\": 57538,\n  \"bookmark\": 61486,\n  \"books-medical\": 63464,\n  \"books\": 62939,\n  \"boombox\": 63653,\n  \"boot-heeled\": 58175,\n  \"boot\": 63362,\n  \"booth-curtain\": 63284,\n  \"border-all\": 63564,\n  \"border-bottom-right\": 63572,\n  \"border-bottom\": 63565,\n  \"border-center-h\": 63644,\n  \"border-center-v\": 63645,\n  \"border-inner\": 63566,\n  \"border-left\": 63567,\n  \"border-none\": 63568,\n  \"border-outer\": 63569,\n  \"border-right\": 63570,\n  \"border-style-alt\": 63572,\n  \"border-style\": 63571,\n  \"border-top-left\": 63571,\n  \"border-top\": 63573,\n  \"bore-hole\": 58563,\n  \"bottle-baby\": 58995,\n  \"bottle-droplet\": 58564,\n  \"bottle-water\": 58565,\n  \"bow-archery\": 59450,\n  \"bow-arrow\": 63161,\n  \"bowl-chopsticks-noodles\": 58090,\n  \"bowl-chopsticks\": 58089,\n  \"bowl-food\": 58566,\n  \"bowl-hot\": 63523,\n  \"bowl-rice\": 58091,\n  \"bowl-salad\": 63518,\n  \"bowl-scoop\": 58334,\n  \"bowl-scoops\": 58335,\n  \"bowl-shaved-ice\": 58334,\n  \"bowl-soft-serve\": 58475,\n  \"bowl-spoon\": 58336,\n  \"bowling-ball-pin\": 57539,\n  \"bowling-ball\": 62518,\n  \"bowling-pins\": 62519,\n  \"box-alt\": 62618,\n  \"box-archive\": 61831,\n  \"box-arrow-down-arrow-up\": 59285,\n  \"box-arrow-down-magnifying-glass\": 59286,\n  \"box-arrow-down\": 59284,\n  \"box-arrow-up\": 59431,\n  \"box-ballot\": 63285,\n  \"box-check\": 62567,\n  \"box-circle-check\": 57540,\n  \"box-dollar\": 62624,\n  \"box-fragile\": 62619,\n  \"box-full\": 62620,\n  \"box-heart\": 62621,\n  \"box-isometric-tape\": 59288,\n  \"box-isometric\": 59287,\n  \"box-magnifying-glass\": 59432,\n  \"box-open-full\": 62620,\n  \"box-open\": 62622,\n  \"box-taped\": 62618,\n  \"box-tissue\": 57435,\n  \"box-up\": 62623,\n  \"box-usd\": 62624,\n  \"box\": 62566,\n  \"boxes-alt\": 62568,\n  \"boxes-packing\": 58567,\n  \"boxes-stacked\": 62568,\n  \"boxes\": 62568,\n  \"boxing-glove\": 62520,\n  \"bra\": 59087,\n  \"bracket-curly-left\": 123,\n  \"bracket-curly-right\": 125,\n  \"bracket-curly\": 123,\n  \"bracket-left\": 91,\n  \"bracket-round-right\": 41,\n  \"bracket-round\": 40,\n  \"bracket-square-right\": 93,\n  \"bracket-square\": 91,\n  \"bracket\": 91,\n  \"brackets-curly\": 63466,\n  \"brackets-round\": 57541,\n  \"brackets-square\": 63465,\n  \"brackets\": 63465,\n  \"braille\": 62113,\n  \"brain-arrow-curved-right\": 63095,\n  \"brain-circuit\": 57542,\n  \"brain\": 62940,\n  \"brake-warning\": 57543,\n  \"brazilian-real-sign\": 58476,\n  \"bread-loaf\": 63467,\n  \"bread-slice-butter\": 58337,\n  \"bread-slice\": 63468,\n  \"bridge-circle-check\": 58569,\n  \"bridge-circle-exclamation\": 58570,\n  \"bridge-circle-xmark\": 58571,\n  \"bridge-lock\": 58572,\n  \"bridge-suspension\": 58573,\n  \"bridge-water\": 58574,\n  \"bridge\": 58568,\n  \"briefcase-arrow-right\": 58098,\n  \"briefcase-blank\": 57544,\n  \"briefcase-clock\": 63050,\n  \"briefcase-medical\": 62569,\n  \"briefcase\": 61617,\n  \"briefs\": 59088,\n  \"brightness-low\": 57546,\n  \"brightness\": 57545,\n  \"bring-forward\": 63574,\n  \"bring-front\": 63575,\n  \"broadcast-tower\": 62745,\n  \"broccoli\": 58338,\n  \"broom-ball\": 62552,\n  \"broom-wide\": 58833,\n  \"broom\": 62746,\n  \"browser\": 62334,\n  \"browsers\": 57547,\n  \"brush\": 62813,\n  \"bucket\": 58575,\n  \"bug-slash\": 58512,\n  \"bug\": 61832,\n  \"bugs\": 58576,\n  \"building-circle-arrow-right\": 58577,\n  \"building-circle-check\": 58578,\n  \"building-circle-exclamation\": 58579,\n  \"building-circle-xmark\": 58580,\n  \"building-columns\": 61852,\n  \"building-flag\": 58581,\n  \"building-lock\": 58582,\n  \"building-magnifying-glass\": 58908,\n  \"building-memo\": 58910,\n  \"building-ngo\": 58583,\n  \"building-shield\": 58584,\n  \"building-un\": 58585,\n  \"building-user\": 58586,\n  \"building-wheat\": 58587,\n  \"building\": 61869,\n  \"buildings\": 57548,\n  \"bulldozer\": 58965,\n  \"bullhorn\": 61601,\n  \"bullseye-arrow\": 63048,\n  \"bullseye-pointer\": 63049,\n  \"bullseye\": 61760,\n  \"buoy-mooring\": 58806,\n  \"buoy\": 58805,\n  \"burger-cheese\": 63473,\n  \"burger-fries\": 57549,\n  \"burger-glass\": 57550,\n  \"burger-lettuce\": 58339,\n  \"burger-soda\": 63576,\n  \"burger\": 63493,\n  \"burn\": 62570,\n  \"burrito\": 63469,\n  \"burst-new\": 59512,\n  \"burst\": 58588,\n  \"bus-alt\": 62814,\n  \"bus-school\": 62941,\n  \"bus-side\": 59421,\n  \"bus-simple\": 62814,\n  \"bus-stop\": 59422,\n  \"bus\": 61959,\n  \"business-front\": 58460,\n  \"business-time\": 63050,\n  \"butter\": 58340,\n  \"butterfly\": 59409,\n  \"c\": 67,\n  \"cab\": 61882,\n  \"cabin\": 58477,\n  \"cabinet-filing\": 63051,\n  \"cable-car\": 63450,\n  \"cactus\": 63655,\n  \"caduceus\": 59009,\n  \"cake-candles\": 61949,\n  \"cake-slice\": 58341,\n  \"cake\": 61949,\n  \"calculator-alt\": 63052,\n  \"calculator-simple\": 63052,\n  \"calculator\": 61932,\n  \"calendar-alt\": 61555,\n  \"calendar-arrow-down\": 57552,\n  \"calendar-arrow-up\": 57553,\n  \"calendar-check\": 62068,\n  \"calendar-circle-exclamation\": 58478,\n  \"calendar-circle-minus\": 58479,\n  \"calendar-circle-plus\": 58480,\n  \"calendar-circle-user\": 58481,\n  \"calendar-circle\": 57602,\n  \"calendar-clock\": 57554,\n  \"calendar-day\": 63363,\n  \"calendar-days\": 61555,\n  \"calendar-download\": 57552,\n  \"calendar-edit\": 62259,\n  \"calendar-exclamation\": 62260,\n  \"calendar-heart\": 57555,\n  \"calendar-image\": 57556,\n  \"calendar-lines-pen\": 58482,\n  \"calendar-lines\": 57557,\n  \"calendar-minus\": 62066,\n  \"calendar-note\": 57557,\n  \"calendar-pen\": 62259,\n  \"calendar-plus\": 62065,\n  \"calendar-range\": 57558,\n  \"calendar-star\": 63286,\n  \"calendar-time\": 57554,\n  \"calendar-times\": 62067,\n  \"calendar-upload\": 57553,\n  \"calendar-users\": 58850,\n  \"calendar-week\": 63364,\n  \"calendar-xmark\": 62067,\n  \"calendar\": 61747,\n  \"calendars\": 57559,\n  \"camcorder\": 63656,\n  \"camera-alt\": 61488,\n  \"camera-cctv\": 63660,\n  \"camera-circle-ellipsis\": 59238,\n  \"camera-circle\": 57603,\n  \"camera-clock\": 59239,\n  \"camera-home\": 63742,\n  \"camera-movie\": 63657,\n  \"camera-polaroid\": 63658,\n  \"camera-retro\": 61571,\n  \"camera-rotate\": 57560,\n  \"camera-security\": 63742,\n  \"camera-shutter\": 59240,\n  \"camera-slash\": 57561,\n  \"camera-viewfinder\": 57562,\n  \"camera-web-slash\": 63539,\n  \"camera-web\": 63538,\n  \"camera\": 61488,\n  \"campfire\": 63162,\n  \"campground\": 63163,\n  \"can-food\": 58342,\n  \"cancel\": 61534,\n  \"cancer\": 59463,\n  \"candle-holder\": 63164,\n  \"candy-bar\": 58344,\n  \"candy-cane\": 63366,\n  \"candy-corn\": 63165,\n  \"candy\": 58343,\n  \"cannabis\": 62815,\n  \"cannon\": 58946,\n  \"canoe-person\": 59548,\n  \"capricorn\": 59464,\n  \"capsule\": 59226,\n  \"capsules\": 62571,\n  \"car-alt\": 62942,\n  \"car-battery\": 62943,\n  \"car-bolt\": 58177,\n  \"car-building\": 63577,\n  \"car-bump\": 62944,\n  \"car-burst\": 62945,\n  \"car-bus\": 63578,\n  \"car-circle-bolt\": 58178,\n  \"car-crash\": 62945,\n  \"car-garage\": 62946,\n  \"car-key\": 59328,\n  \"car-mechanic\": 62947,\n  \"car-mirrors\": 58179,\n  \"car-on\": 58589,\n  \"car-people\": 59036,\n  \"car-rear\": 62942,\n  \"car-side-bolt\": 58180,\n  \"car-side\": 62948,\n  \"car-siren-on\": 59330,\n  \"car-siren\": 59329,\n  \"car-tilt\": 62949,\n  \"car-tunnel\": 58590,\n  \"car-wash\": 62950,\n  \"car-wrench\": 62947,\n  \"car\": 61881,\n  \"caravan-alt\": 57344,\n  \"caravan-simple\": 57344,\n  \"caravan\": 63743,\n  \"card-club\": 58345,\n  \"card-diamond\": 58346,\n  \"card-heart\": 58347,\n  \"card-spade\": 58348,\n  \"cards-blank\": 58591,\n  \"cards\": 58349,\n  \"caret-circle-down\": 62253,\n  \"caret-circle-left\": 62254,\n  \"caret-circle-right\": 62256,\n  \"caret-circle-up\": 62257,\n  \"caret-down\": 61655,\n  \"caret-large-down\": 59436,\n  \"caret-large-left\": 59437,\n  \"caret-large-right\": 59438,\n  \"caret-large-up\": 59439,\n  \"caret-left\": 61657,\n  \"caret-right\": 61658,\n  \"caret-square-down\": 61776,\n  \"caret-square-left\": 61841,\n  \"caret-square-right\": 61778,\n  \"caret-square-up\": 61777,\n  \"caret-up\": 61656,\n  \"carpool\": 59036,\n  \"carriage-baby\": 63357,\n  \"carrot\": 63367,\n  \"cars\": 63579,\n  \"cart-arrow-down\": 61976,\n  \"cart-arrow-up\": 58350,\n  \"cart-circle-arrow-down\": 58351,\n  \"cart-circle-arrow-up\": 58352,\n  \"cart-circle-check\": 58353,\n  \"cart-circle-exclamation\": 58354,\n  \"cart-circle-plus\": 58355,\n  \"cart-circle-xmark\": 58356,\n  \"cart-flatbed-boxes\": 62581,\n  \"cart-flatbed-empty\": 62582,\n  \"cart-flatbed-suitcase\": 62877,\n  \"cart-flatbed\": 62580,\n  \"cart-minus\": 57563,\n  \"cart-plus\": 61975,\n  \"cart-shopping-fast\": 57564,\n  \"cart-shopping\": 61562,\n  \"cart-xmark\": 57565,\n  \"cash-register\": 63368,\n  \"cassette-betamax\": 63652,\n  \"cassette-tape\": 63659,\n  \"cassette-vhs\": 63724,\n  \"castle\": 57566,\n  \"cat-space\": 57345,\n  \"cat\": 63166,\n  \"cauldron\": 63167,\n  \"cctv\": 63660,\n  \"cedi-sign\": 57567,\n  \"cent-sign\": 58357,\n  \"certificate\": 61603,\n  \"chain-broken\": 61735,\n  \"chain-horizontal-slash\": 57804,\n  \"chain-horizontal\": 57803,\n  \"chain-slash\": 61735,\n  \"chain\": 61633,\n  \"chair-office\": 63169,\n  \"chair\": 63168,\n  \"chalkboard-teacher\": 62748,\n  \"chalkboard-user\": 62748,\n  \"chalkboard\": 62747,\n  \"champagne-glass\": 63390,\n  \"champagne-glasses\": 63391,\n  \"charging-station\": 62951,\n  \"chart-area\": 61950,\n  \"chart-bar\": 61568,\n  \"chart-bullet\": 57569,\n  \"chart-candlestick\": 57570,\n  \"chart-column\": 57571,\n  \"chart-diagram\": 59029,\n  \"chart-fft\": 59038,\n  \"chart-gantt\": 57572,\n  \"chart-kanban\": 58959,\n  \"chart-line-down\": 63053,\n  \"chart-line-up-down\": 58839,\n  \"chart-line-up\": 57573,\n  \"chart-line\": 61953,\n  \"chart-mixed-up-circle-currency\": 58840,\n  \"chart-mixed-up-circle-dollar\": 58841,\n  \"chart-mixed\": 63043,\n  \"chart-network\": 63370,\n  \"chart-pie-alt\": 63054,\n  \"chart-pie-simple-circle-currency\": 58884,\n  \"chart-pie-simple-circle-dollar\": 58885,\n  \"chart-pie-simple\": 63054,\n  \"chart-pie\": 61952,\n  \"chart-pyramid\": 57574,\n  \"chart-radar\": 57575,\n  \"chart-scatter-3d\": 57576,\n  \"chart-scatter-bubble\": 57577,\n  \"chart-scatter\": 63470,\n  \"chart-simple-horizontal\": 58484,\n  \"chart-simple\": 58483,\n  \"chart-sine\": 59037,\n  \"chart-tree-map\": 57578,\n  \"chart-user\": 63139,\n  \"chart-waterfall\": 57579,\n  \"check-circle\": 61528,\n  \"check-double\": 62816,\n  \"check-square\": 61770,\n  \"check-to-slot\": 63346,\n  \"check\": 61452,\n  \"cheese-swiss\": 63472,\n  \"cheese\": 63471,\n  \"cheeseburger\": 63473,\n  \"chemex\": 59440,\n  \"cherries\": 57580,\n  \"chess-bishop-alt\": 62523,\n  \"chess-bishop-piece\": 62523,\n  \"chess-bishop\": 62522,\n  \"chess-board\": 62524,\n  \"chess-clock-alt\": 62526,\n  \"chess-clock-flip\": 62526,\n  \"chess-clock\": 62525,\n  \"chess-king-alt\": 62528,\n  \"chess-king-piece\": 62528,\n  \"chess-king\": 62527,\n  \"chess-knight-alt\": 62530,\n  \"chess-knight-piece\": 62530,\n  \"chess-knight\": 62529,\n  \"chess-pawn-alt\": 62532,\n  \"chess-pawn-piece\": 62532,\n  \"chess-pawn\": 62531,\n  \"chess-queen-alt\": 62534,\n  \"chess-queen-piece\": 62534,\n  \"chess-queen\": 62533,\n  \"chess-rook-alt\": 62536,\n  \"chess-rook-piece\": 62536,\n  \"chess-rook\": 62535,\n  \"chess\": 62521,\n  \"chest-drawers\": 59523,\n  \"chestnut\": 58358,\n  \"chevron-circle-down\": 61754,\n  \"chevron-circle-left\": 61751,\n  \"chevron-circle-right\": 61752,\n  \"chevron-circle-up\": 61753,\n  \"chevron-double-down\": 62242,\n  \"chevron-double-left\": 62243,\n  \"chevron-double-right\": 62244,\n  \"chevron-double-up\": 62245,\n  \"chevron-down\": 61560,\n  \"chevron-left\": 61523,\n  \"chevron-right\": 61524,\n  \"chevron-square-down\": 62249,\n  \"chevron-square-left\": 62250,\n  \"chevron-square-right\": 62251,\n  \"chevron-square-up\": 62252,\n  \"chevron-up\": 61559,\n  \"chevrons-down\": 62242,\n  \"chevrons-left\": 62243,\n  \"chevrons-right\": 62244,\n  \"chevrons-up\": 62245,\n  \"chf-sign\": 58882,\n  \"child-combatant\": 58592,\n  \"child-dress\": 58780,\n  \"child-reaching\": 58781,\n  \"child-rifle\": 58592,\n  \"child\": 61870,\n  \"children\": 58593,\n  \"chimney\": 63371,\n  \"chocolate-bar\": 58344,\n  \"chopsticks\": 58359,\n  \"church\": 62749,\n  \"circle-0\": 57581,\n  \"circle-1\": 57582,\n  \"circle-2\": 57583,\n  \"circle-3\": 57584,\n  \"circle-4\": 57585,\n  \"circle-5\": 57586,\n  \"circle-6\": 57587,\n  \"circle-7\": 57588,\n  \"circle-8\": 57589,\n  \"circle-9\": 57590,\n  \"circle-a\": 57591,\n  \"circle-ampersand\": 57592,\n  \"circle-arrow-down-left\": 57593,\n  \"circle-arrow-down-right\": 57594,\n  \"circle-arrow-down\": 61611,\n  \"circle-arrow-left\": 61608,\n  \"circle-arrow-right\": 61609,\n  \"circle-arrow-up-left\": 57595,\n  \"circle-arrow-up-right\": 57596,\n  \"circle-arrow-up\": 61610,\n  \"circle-austral\": 59163,\n  \"circle-australian-dollar\": 59184,\n  \"circle-b\": 57597,\n  \"circle-baht\": 59181,\n  \"circle-bangladeshi-taka\": 59137,\n  \"circle-bitcoin\": 59191,\n  \"circle-bolt\": 57598,\n  \"circle-book-open\": 57599,\n  \"circle-bookmark\": 57600,\n  \"circle-brazilian-real\": 59115,\n  \"circle-c\": 57601,\n  \"circle-calendar\": 57602,\n  \"circle-camera\": 57603,\n  \"circle-caret-down\": 62253,\n  \"circle-caret-left\": 62254,\n  \"circle-caret-right\": 62256,\n  \"circle-caret-up\": 62257,\n  \"circle-cedi\": 59202,\n  \"circle-cent\": 59178,\n  \"circle-check\": 61528,\n  \"circle-chevron-down\": 61754,\n  \"circle-chevron-left\": 61751,\n  \"circle-chevron-right\": 61752,\n  \"circle-chevron-up\": 61753,\n  \"circle-chf\": 59180,\n  \"circle-colon\": 59132,\n  \"circle-cruzeiro\": 59170,\n  \"circle-currency\": 59118,\n  \"circle-d\": 57604,\n  \"circle-danish-krone\": 59206,\n  \"circle-dashed\": 57605,\n  \"circle-divide\": 57606,\n  \"circle-dollar-to-slot\": 62649,\n  \"circle-dollar\": 62184,\n  \"circle-dong\": 59171,\n  \"circle-dot\": 61842,\n  \"circle-down-left\": 57607,\n  \"circle-down-right\": 57608,\n  \"circle-down\": 62296,\n  \"circle-e\": 57609,\n  \"circle-ellipsis-vertical\": 57611,\n  \"circle-ellipsis\": 57610,\n  \"circle-envelope\": 57612,\n  \"circle-equals\": 59057,\n  \"circle-euro\": 58830,\n  \"circle-eurozone\": 59205,\n  \"circle-exclamation-check\": 57613,\n  \"circle-exclamation\": 61546,\n  \"circle-f\": 57614,\n  \"circle-florin\": 59108,\n  \"circle-franc\": 59169,\n  \"circle-g\": 57615,\n  \"circle-gf\": 59007,\n  \"circle-guarani\": 59195,\n  \"circle-h\": 62590,\n  \"circle-half-horizontal\": 59404,\n  \"circle-half-stroke-horizontal\": 59405,\n  \"circle-half-stroke\": 61506,\n  \"circle-half\": 57616,\n  \"circle-heart\": 62663,\n  \"circle-house\": 59080,\n  \"circle-hryvnia\": 59119,\n  \"circle-i\": 57617,\n  \"circle-indian-rupee\": 59188,\n  \"circle-info\": 61530,\n  \"circle-j\": 57618,\n  \"circle-k\": 57619,\n  \"circle-kip\": 59133,\n  \"circle-l\": 57620,\n  \"circle-lari\": 59165,\n  \"circle-left\": 62297,\n  \"circle-lira\": 59126,\n  \"circle-litecoin\": 59124,\n  \"circle-location-arrow\": 62978,\n  \"circle-m\": 57621,\n  \"circle-malaysian-ringgit\": 59129,\n  \"circle-manat\": 59131,\n  \"circle-microphone-lines\": 57623,\n  \"circle-microphone\": 57622,\n  \"circle-mill\": 59138,\n  \"circle-minus\": 61526,\n  \"circle-moon\": 59360,\n  \"circle-n\": 57624,\n  \"circle-naira\": 59209,\n  \"circle-nodes\": 58594,\n  \"circle-norwegian-krone\": 59192,\n  \"circle-notch\": 61902,\n  \"circle-o\": 57625,\n  \"circle-p\": 57626,\n  \"circle-parking\": 62997,\n  \"circle-pause\": 62091,\n  \"circle-peruvian-soles\": 59123,\n  \"circle-peseta\": 59201,\n  \"circle-peso\": 59135,\n  \"circle-phone-flip\": 57628,\n  \"circle-phone-hangup\": 57629,\n  \"circle-phone\": 57627,\n  \"circle-play\": 61764,\n  \"circle-plus\": 61525,\n  \"circle-polish-zloty\": 59136,\n  \"circle-q\": 57630,\n  \"circle-quarter-stroke\": 58835,\n  \"circle-quarter\": 57631,\n  \"circle-quarters\": 58360,\n  \"circle-question\": 61529,\n  \"circle-r\": 57632,\n  \"circle-radiation\": 63418,\n  \"circle-renminbi\": 59113,\n  \"circle-right\": 62298,\n  \"circle-ruble\": 59109,\n  \"circle-rupee\": 59156,\n  \"circle-rupiah\": 59142,\n  \"circle-s\": 57633,\n  \"circle-share-nodes\": 59099,\n  \"circle-shekel\": 59139,\n  \"circle-small\": 57634,\n  \"circle-sort-down\": 57393,\n  \"circle-sort-up\": 57394,\n  \"circle-sort\": 57392,\n  \"circle-star\": 57635,\n  \"circle-sterling\": 58831,\n  \"circle-stop\": 62093,\n  \"circle-swedish-krona\": 59203,\n  \"circle-t\": 57636,\n  \"circle-tenge\": 59173,\n  \"circle-three-quarters-stroke\": 58836,\n  \"circle-three-quarters\": 57637,\n  \"circle-trash\": 57638,\n  \"circle-tugrik\": 59153,\n  \"circle-turkish-lira\": 59193,\n  \"circle-u\": 57639,\n  \"circle-up-left\": 57640,\n  \"circle-up-right\": 57641,\n  \"circle-up\": 62299,\n  \"circle-user-circle-check\": 59295,\n  \"circle-user-circle-exclamation\": 59296,\n  \"circle-user-circle-minus\": 59297,\n  \"circle-user-circle-moon\": 59298,\n  \"circle-user-circle-plus\": 59299,\n  \"circle-user-circle-question\": 59300,\n  \"circle-user-circle-user\": 59301,\n  \"circle-user-circle-xmark\": 59302,\n  \"circle-user-clock\": 59303,\n  \"circle-user\": 62141,\n  \"circle-v\": 57642,\n  \"circle-video\": 57643,\n  \"circle-w\": 57644,\n  \"circle-waveform-lines\": 57645,\n  \"circle-wifi-circle-wifi\": 59006,\n  \"circle-wifi-group\": 59006,\n  \"circle-wifi\": 59005,\n  \"circle-won\": 59116,\n  \"circle-x\": 57646,\n  \"circle-xmark\": 61527,\n  \"circle-y\": 57647,\n  \"circle-yen\": 58832,\n  \"circle-z\": 57648,\n  \"circle\": 61713,\n  \"circleapore-dollar\": 59166,\n  \"circles-overlap-3\": 59041,\n  \"circles-overlap\": 58880,\n  \"citrus-slice\": 58101,\n  \"citrus\": 58100,\n  \"city\": 63055,\n  \"clapperboard-play\": 57650,\n  \"clapperboard\": 57649,\n  \"clarinet\": 63661,\n  \"claw-marks\": 63170,\n  \"clinic-medical\": 63474,\n  \"clipboard-check\": 62572,\n  \"clipboard-clock\": 59222,\n  \"clipboard-exclamation\": 59223,\n  \"clipboard-list-check\": 63287,\n  \"clipboard-list\": 62573,\n  \"clipboard-medical\": 57651,\n  \"clipboard-prescription\": 62952,\n  \"clipboard-question\": 58595,\n  \"clipboard-user\": 63475,\n  \"clipboard\": 62248,\n  \"clock-desk\": 57652,\n  \"clock-eight-thirty\": 58182,\n  \"clock-eight\": 58181,\n  \"clock-eleven-thirty\": 58184,\n  \"clock-eleven\": 58183,\n  \"clock-five-thirty\": 58186,\n  \"clock-five\": 58185,\n  \"clock-four-thirty\": 58187,\n  \"clock-four\": 61463,\n  \"clock-nine-thirty\": 58189,\n  \"clock-nine\": 58188,\n  \"clock-one-thirty\": 58191,\n  \"clock-one\": 58190,\n  \"clock-rotate-left\": 61914,\n  \"clock-seven-thirty\": 58193,\n  \"clock-seven\": 58192,\n  \"clock-six-thirty\": 58195,\n  \"clock-six\": 58194,\n  \"clock-ten-thirty\": 58197,\n  \"clock-ten\": 58196,\n  \"clock-three-thirty\": 58199,\n  \"clock-three\": 58198,\n  \"clock-twelve-thirty\": 58201,\n  \"clock-twelve\": 58200,\n  \"clock-two-thirty\": 58203,\n  \"clock-two\": 58202,\n  \"clock\": 61463,\n  \"clone-plus\": 59212,\n  \"clone\": 62029,\n  \"close\": 61453,\n  \"closed-captioning-slash\": 57653,\n  \"closed-captioning\": 61962,\n  \"clothes-hanger\": 57654,\n  \"cloud-arrow-down\": 61677,\n  \"cloud-arrow-up\": 61678,\n  \"cloud-binary\": 58881,\n  \"cloud-bolt-moon\": 63341,\n  \"cloud-bolt-sun\": 63342,\n  \"cloud-bolt\": 63340,\n  \"cloud-check\": 58204,\n  \"cloud-download-alt\": 61677,\n  \"cloud-download\": 61677,\n  \"cloud-drizzle\": 63288,\n  \"cloud-exclamation\": 58513,\n  \"cloud-fog\": 63310,\n  \"cloud-hail-mixed\": 63290,\n  \"cloud-hail\": 63289,\n  \"cloud-meatball\": 63291,\n  \"cloud-minus\": 58205,\n  \"cloud-moon-rain\": 63292,\n  \"cloud-moon\": 63171,\n  \"cloud-music\": 63662,\n  \"cloud-plus\": 58206,\n  \"cloud-question\": 58514,\n  \"cloud-rain\": 63293,\n  \"cloud-rainbow\": 63294,\n  \"cloud-showers-heavy\": 63296,\n  \"cloud-showers-water\": 58596,\n  \"cloud-showers\": 63295,\n  \"cloud-slash\": 57655,\n  \"cloud-sleet\": 63297,\n  \"cloud-snow\": 63298,\n  \"cloud-sun-rain\": 63299,\n  \"cloud-sun\": 63172,\n  \"cloud-upload-alt\": 61678,\n  \"cloud-upload\": 61678,\n  \"cloud-word\": 57656,\n  \"cloud-xmark\": 58207,\n  \"cloud\": 61634,\n  \"clouds-moon\": 63301,\n  \"clouds-sun\": 63302,\n  \"clouds\": 63300,\n  \"clover\": 57657,\n  \"club\": 62247,\n  \"cny\": 61783,\n  \"cocktail\": 62817,\n  \"coconut\": 58102,\n  \"code-branch\": 61734,\n  \"code-commit\": 62342,\n  \"code-compare\": 57658,\n  \"code-fork\": 57659,\n  \"code-merge\": 62343,\n  \"code-pull-request-closed\": 58361,\n  \"code-pull-request-draft\": 58362,\n  \"code-pull-request\": 57660,\n  \"code-simple\": 57661,\n  \"code\": 61729,\n  \"coffee-bean\": 57662,\n  \"coffee-beans\": 57663,\n  \"coffee-pot\": 57346,\n  \"coffee-togo\": 63173,\n  \"coffee\": 61684,\n  \"coffin-cross\": 57425,\n  \"coffin\": 63174,\n  \"cog\": 61459,\n  \"cogs\": 61573,\n  \"coin-blank\": 58363,\n  \"coin-front\": 58364,\n  \"coin-vertical\": 58365,\n  \"coin\": 63580,\n  \"coins\": 62750,\n  \"colon-sign\": 57664,\n  \"colon\": 58,\n  \"columns-3\": 58209,\n  \"columns\": 61659,\n  \"comet\": 57347,\n  \"comma\": 44,\n  \"command\": 57666,\n  \"comment-alt-arrow-down\": 57819,\n  \"comment-alt-arrow-up\": 57820,\n  \"comment-alt-captions\": 57822,\n  \"comment-alt-check\": 62626,\n  \"comment-alt-dollar\": 63056,\n  \"comment-alt-dots\": 62627,\n  \"comment-alt-edit\": 62628,\n  \"comment-alt-exclamation\": 62629,\n  \"comment-alt-image\": 57824,\n  \"comment-alt-lines\": 62630,\n  \"comment-alt-medical\": 63476,\n  \"comment-alt-minus\": 62631,\n  \"comment-alt-music\": 63663,\n  \"comment-alt-plus\": 62632,\n  \"comment-alt-quote\": 57828,\n  \"comment-alt-slash\": 62633,\n  \"comment-alt-smile\": 62634,\n  \"comment-alt-text\": 57830,\n  \"comment-alt-times\": 62635,\n  \"comment-alt\": 62074,\n  \"comment-arrow-down\": 57667,\n  \"comment-arrow-up-right\": 57669,\n  \"comment-arrow-up\": 57668,\n  \"comment-captions\": 57670,\n  \"comment-check\": 62636,\n  \"comment-code\": 57671,\n  \"comment-dollar\": 63057,\n  \"comment-dot\": 59100,\n  \"comment-dots\": 62637,\n  \"comment-edit\": 62638,\n  \"comment-exclamation\": 62639,\n  \"comment-heart\": 58824,\n  \"comment-image\": 57672,\n  \"comment-lines\": 62640,\n  \"comment-medical\": 63477,\n  \"comment-middle-alt\": 57825,\n  \"comment-middle-top-alt\": 57826,\n  \"comment-middle-top\": 57674,\n  \"comment-middle\": 57673,\n  \"comment-minus\": 62641,\n  \"comment-music\": 63664,\n  \"comment-nodes\": 59030,\n  \"comment-pen\": 62638,\n  \"comment-plus\": 62642,\n  \"comment-question\": 57675,\n  \"comment-quote\": 57676,\n  \"comment-slash\": 62643,\n  \"comment-smile\": 62644,\n  \"comment-sms\": 63437,\n  \"comment-text\": 57677,\n  \"comment-times\": 62645,\n  \"comment-waveform\": 59101,\n  \"comment-xmark\": 62645,\n  \"comment\": 61557,\n  \"commenting\": 62637,\n  \"comments-alt-dollar\": 63058,\n  \"comments-alt\": 62646,\n  \"comments-dollar\": 63059,\n  \"comments-question-check\": 57679,\n  \"comments-question\": 57678,\n  \"comments\": 61574,\n  \"compact-disc\": 62751,\n  \"compass-drafting\": 62824,\n  \"compass-slash\": 62953,\n  \"compass\": 61774,\n  \"compress-alt\": 62498,\n  \"compress-arrows-alt\": 63372,\n  \"compress-arrows\": 57509,\n  \"compress-wide\": 62246,\n  \"compress\": 61542,\n  \"computer-classic\": 63665,\n  \"computer-mouse-button-left\": 59341,\n  \"computer-mouse-button-right\": 59342,\n  \"computer-mouse-scrollwheel\": 63693,\n  \"computer-mouse\": 63692,\n  \"computer-speaker\": 63666,\n  \"computer\": 58597,\n  \"concierge-bell\": 62818,\n  \"construction\": 63581,\n  \"contact-book\": 62137,\n  \"contact-card\": 62139,\n  \"container-storage\": 62647,\n  \"conveyor-belt-alt\": 62575,\n  \"conveyor-belt-arm\": 58872,\n  \"conveyor-belt-boxes\": 62575,\n  \"conveyor-belt-empty\": 57680,\n  \"conveyor-belt\": 62574,\n  \"cookie-bite\": 62820,\n  \"cookie\": 62819,\n  \"copy\": 61637,\n  \"copyright\": 61945,\n  \"corn\": 63175,\n  \"corner\": 58366,\n  \"couch-small\": 62668,\n  \"couch\": 62648,\n  \"court-sport\": 58947,\n  \"cow\": 63176,\n  \"cowbell-circle-plus\": 63668,\n  \"cowbell-more\": 63668,\n  \"cowbell\": 63667,\n  \"crab\": 58367,\n  \"crate-apple\": 63153,\n  \"crate-empty\": 57681,\n  \"credit-card-alt\": 61597,\n  \"credit-card-blank\": 62345,\n  \"credit-card-front\": 62346,\n  \"credit-card\": 61597,\n  \"creemee\": 58368,\n  \"cricket-bat-ball\": 62537,\n  \"cricket\": 62537,\n  \"croissant\": 63478,\n  \"crop-alt\": 62821,\n  \"crop-simple\": 62821,\n  \"crop\": 61733,\n  \"cross\": 63060,\n  \"crosshairs-simple\": 58783,\n  \"crosshairs\": 61531,\n  \"crow\": 62752,\n  \"crown\": 62753,\n  \"crutch\": 63479,\n  \"crutches\": 63480,\n  \"cruzeiro-sign\": 57682,\n  \"crystal-ball\": 58210,\n  \"cube\": 61874,\n  \"cubes-stacked\": 58598,\n  \"cubes\": 61875,\n  \"cucumber\": 58369,\n  \"cup-straw-swoosh\": 58212,\n  \"cup-straw\": 58211,\n  \"cup-togo\": 63173,\n  \"cupcake\": 58370,\n  \"curling-stone\": 62538,\n  \"curling\": 62538,\n  \"currency-sign\": 59179,\n  \"custard\": 58371,\n  \"cut\": 61636,\n  \"cutlery\": 62183,\n  \"d\": 68,\n  \"dagger\": 63179,\n  \"danish-krone-sign\": 59168,\n  \"dash\": 58372,\n  \"dashboard\": 63012,\n  \"database\": 61888,\n  \"deaf\": 62116,\n  \"deafness\": 62116,\n  \"debug\": 63481,\n  \"dedent\": 61499,\n  \"deer-rudolph\": 63375,\n  \"deer\": 63374,\n  \"delete-left\": 62810,\n  \"delete-right\": 57684,\n  \"democrat\": 63303,\n  \"desk\": 59518,\n  \"desktop-alt\": 62352,\n  \"desktop-arrow-down\": 57685,\n  \"desktop-code\": 57701,\n  \"desktop-medical\": 57702,\n  \"desktop-slash\": 58106,\n  \"desktop\": 62352,\n  \"dewpoint\": 63304,\n  \"dharmachakra\": 63061,\n  \"diagnoses\": 62576,\n  \"diagram-cells\": 58485,\n  \"diagram-lean-canvas\": 57686,\n  \"diagram-nested\": 57687,\n  \"diagram-next\": 58486,\n  \"diagram-predecessor\": 58487,\n  \"diagram-previous\": 58488,\n  \"diagram-project\": 62786,\n  \"diagram-sankey\": 57688,\n  \"diagram-subtask\": 58489,\n  \"diagram-successor\": 58490,\n  \"diagram-venn\": 57690,\n  \"dial-high\": 57692,\n  \"dial-low\": 57693,\n  \"dial-max\": 57694,\n  \"dial-med-high\": 57691,\n  \"dial-med-low\": 57696,\n  \"dial-med\": 57695,\n  \"dial-min\": 57697,\n  \"dial-off\": 57698,\n  \"dial\": 57691,\n  \"dialpad\": 59340,\n  \"diamond-exclamation\": 58373,\n  \"diamond-half-stroke\": 58808,\n  \"diamond-half\": 58807,\n  \"diamond-turn-right\": 62955,\n  \"diamond\": 61977,\n  \"diamonds-4\": 59019,\n  \"dice-d10\": 63181,\n  \"dice-d12\": 63182,\n  \"dice-d20\": 63183,\n  \"dice-d4\": 63184,\n  \"dice-d6\": 63185,\n  \"dice-d8\": 63186,\n  \"dice-five\": 62755,\n  \"dice-four\": 62756,\n  \"dice-one\": 62757,\n  \"dice-six\": 62758,\n  \"dice-three\": 62759,\n  \"dice-two\": 62760,\n  \"dice\": 62754,\n  \"digging\": 63582,\n  \"digital-tachograph\": 62822,\n  \"dinosaur\": 58878,\n  \"diploma\": 62954,\n  \"direction-left-right\": 59070,\n  \"direction-up-down\": 59071,\n  \"directions\": 62955,\n  \"disc-drive\": 63669,\n  \"disease\": 63482,\n  \"display-arrow-down\": 57700,\n  \"display-chart-up-circle-currency\": 58853,\n  \"display-chart-up-circle-dollar\": 58854,\n  \"display-chart-up\": 58851,\n  \"display-code\": 57701,\n  \"display-medical\": 57702,\n  \"display-slash\": 58106,\n  \"display\": 57699,\n  \"distribute-spacing-horizontal\": 58213,\n  \"distribute-spacing-vertical\": 58214,\n  \"ditto\": 34,\n  \"divide\": 62761,\n  \"dizzy\": 62823,\n  \"dna\": 62577,\n  \"do-not-enter\": 62956,\n  \"dog-leashed\": 63188,\n  \"dog\": 63187,\n  \"dollar-circle\": 62184,\n  \"dollar-sign\": 36,\n  \"dollar-square\": 62185,\n  \"dollar\": 36,\n  \"dolly-box\": 62578,\n  \"dolly-empty\": 62579,\n  \"dolly-flatbed-alt\": 62581,\n  \"dolly-flatbed-empty\": 62582,\n  \"dolly-flatbed\": 62580,\n  \"dolly\": 62578,\n  \"dolphin\": 57704,\n  \"donate\": 62649,\n  \"dong-sign\": 57705,\n  \"donut\": 58374,\n  \"door-closed\": 62762,\n  \"door-open\": 62763,\n  \"dot-circle\": 61842,\n  \"dot\": 59345,\n  \"doughnut\": 58374,\n  \"dove\": 62650,\n  \"down-from-bracket\": 58987,\n  \"down-from-dotted-line\": 58375,\n  \"down-from-line\": 62281,\n  \"down-left-and-up-right-to-center\": 62498,\n  \"down-left\": 57706,\n  \"down-long-to-line\": 59072,\n  \"down-long\": 62217,\n  \"down-right\": 57707,\n  \"down-to-bracket\": 58599,\n  \"down-to-dotted-line\": 58376,\n  \"down-to-line\": 62282,\n  \"down-up\": 59073,\n  \"down\": 62292,\n  \"download\": 61465,\n  \"drafting-compass\": 62824,\n  \"dragon\": 63189,\n  \"draw-circle\": 62957,\n  \"draw-polygon\": 62958,\n  \"draw-square\": 62959,\n  \"dreidel\": 63378,\n  \"dress\": 59089,\n  \"dresser\": 59519,\n  \"drivers-license\": 62146,\n  \"drone-alt\": 63584,\n  \"drone-front\": 63584,\n  \"drone\": 63583,\n  \"droplet-degree\": 63304,\n  \"droplet-percent\": 63312,\n  \"droplet-plus\": 59392,\n  \"droplet-slash\": 62919,\n  \"droplet\": 61507,\n  \"drum-steelpan\": 62826,\n  \"drum\": 62825,\n  \"drumstick-bite\": 63191,\n  \"drumstick\": 63190,\n  \"dryer-alt\": 63586,\n  \"dryer-heat\": 63586,\n  \"dryer\": 63585,\n  \"duck\": 63192,\n  \"dumbbell\": 62539,\n  \"dumpster-fire\": 63380,\n  \"dumpster\": 63379,\n  \"dungeon\": 63193,\n  \"e\": 69,\n  \"ear-circle-checkmark\": 59227,\n  \"ear-deaf\": 62116,\n  \"ear-listen\": 62114,\n  \"ear-muffs\": 63381,\n  \"ear-triangle-exclamation\": 59228,\n  \"ear-waveform\": 59229,\n  \"ear\": 62960,\n  \"earth-africa\": 62844,\n  \"earth-america\": 62845,\n  \"earth-americas\": 62845,\n  \"earth-asia\": 62846,\n  \"earth-europe\": 63394,\n  \"earth-oceania\": 58491,\n  \"earth\": 62845,\n  \"eclipse-alt\": 63306,\n  \"eclipse\": 63305,\n  \"edit\": 61508,\n  \"egg-fried\": 63484,\n  \"egg\": 63483,\n  \"eggplant\": 57708,\n  \"eject\": 61522,\n  \"elephant\": 63194,\n  \"elevator\": 57709,\n  \"ellipsis-h-alt\": 62363,\n  \"ellipsis-h\": 61761,\n  \"ellipsis-stroke-vertical\": 62364,\n  \"ellipsis-stroke\": 62363,\n  \"ellipsis-v-alt\": 62364,\n  \"ellipsis-v\": 61762,\n  \"ellipsis-vertical\": 61762,\n  \"ellipsis\": 61761,\n  \"empty-set\": 63062,\n  \"engine-exclamation\": 62962,\n  \"engine-warning\": 62962,\n  \"engine\": 57710,\n  \"envelope-badge\": 57711,\n  \"envelope-certificate\": 59433,\n  \"envelope-circle-check\": 58600,\n  \"envelope-circle-user\": 59102,\n  \"envelope-circle\": 57612,\n  \"envelope-dot\": 57711,\n  \"envelope-open-dollar\": 63063,\n  \"envelope-open-text\": 63064,\n  \"envelope-open\": 62134,\n  \"envelope-ribbon\": 59433,\n  \"envelope-square\": 61849,\n  \"envelope\": 61664,\n  \"envelopes-bulk\": 63092,\n  \"envelopes\": 57712,\n  \"equals\": 61,\n  \"eraser\": 61741,\n  \"escalator\": 57713,\n  \"ethernet\": 63382,\n  \"eur\": 61779,\n  \"euro-sign\": 61779,\n  \"euro\": 61779,\n  \"eurozone-sign\": 59200,\n  \"excavator\": 58966,\n  \"exchange-alt\": 62306,\n  \"exchange\": 61676,\n  \"exclamation-circle\": 61546,\n  \"exclamation-square\": 62241,\n  \"exclamation-triangle\": 61553,\n  \"exclamation\": 33,\n  \"expand-alt\": 62500,\n  \"expand-arrows-alt\": 62238,\n  \"expand-arrows\": 62237,\n  \"expand-wide\": 62240,\n  \"expand\": 61541,\n  \"exploding-head\": 58110,\n  \"explosion\": 58601,\n  \"external-link-alt\": 62301,\n  \"external-link-square-alt\": 62304,\n  \"external-link-square\": 61772,\n  \"external-link\": 61582,\n  \"eye-closed\": 59451,\n  \"eye-dropper-empty\": 61947,\n  \"eye-dropper-full\": 57714,\n  \"eye-dropper-half\": 57715,\n  \"eye-dropper\": 61947,\n  \"eye-evil\": 63195,\n  \"eye-low-vision\": 62120,\n  \"eye-slash\": 61552,\n  \"eye\": 61550,\n  \"eyedropper\": 61947,\n  \"eyes\": 58215,\n  \"f\": 70,\n  \"face-angry-horns\": 58216,\n  \"face-angry\": 62806,\n  \"face-anguished\": 58217,\n  \"face-anxious-sweat\": 58218,\n  \"face-astonished\": 58219,\n  \"face-awesome\": 58377,\n  \"face-beam-hand-over-mouth\": 58492,\n  \"face-clouds\": 58493,\n  \"face-confounded\": 58220,\n  \"face-confused\": 58221,\n  \"face-cowboy-hat\": 58222,\n  \"face-diagonal-mouth\": 58494,\n  \"face-disappointed\": 58223,\n  \"face-disguise\": 58224,\n  \"face-dizzy\": 62823,\n  \"face-dotted\": 58495,\n  \"face-downcast-sweat\": 58225,\n  \"face-drooling\": 58226,\n  \"face-exhaling\": 58496,\n  \"face-explode\": 58110,\n  \"face-expressionless\": 58227,\n  \"face-eyes-xmarks\": 58228,\n  \"face-fearful\": 58229,\n  \"face-flushed\": 62841,\n  \"face-frown-open\": 62842,\n  \"face-frown-slight\": 58230,\n  \"face-frown\": 61721,\n  \"face-glasses\": 58231,\n  \"face-grimace\": 62847,\n  \"face-grin-beam-sweat\": 62851,\n  \"face-grin-beam\": 62850,\n  \"face-grin-hearts\": 62852,\n  \"face-grin-squint-tears\": 62854,\n  \"face-grin-squint\": 62853,\n  \"face-grin-stars\": 62855,\n  \"face-grin-tears\": 62856,\n  \"face-grin-tongue-squint\": 62858,\n  \"face-grin-tongue-wink\": 62859,\n  \"face-grin-tongue\": 62857,\n  \"face-grin-wide\": 62849,\n  \"face-grin-wink\": 62860,\n  \"face-grin\": 62848,\n  \"face-hand-over-mouth\": 58232,\n  \"face-hand-peeking\": 58497,\n  \"face-hand-yawn\": 58233,\n  \"face-head-bandage\": 58234,\n  \"face-holding-back-tears\": 58498,\n  \"face-hushed\": 58235,\n  \"face-icicles\": 58236,\n  \"face-kiss-beam\": 62871,\n  \"face-kiss-closed-eyes\": 58237,\n  \"face-kiss-wink-heart\": 62872,\n  \"face-kiss\": 62870,\n  \"face-laugh-beam\": 62874,\n  \"face-laugh-squint\": 62875,\n  \"face-laugh-wink\": 62876,\n  \"face-laugh\": 62873,\n  \"face-lying\": 58238,\n  \"face-mask\": 58239,\n  \"face-meh-blank\": 62884,\n  \"face-meh\": 61722,\n  \"face-melting\": 58499,\n  \"face-monocle\": 58240,\n  \"face-nauseated\": 58241,\n  \"face-nose-steam\": 58242,\n  \"face-party\": 58243,\n  \"face-pensive\": 58244,\n  \"face-persevering\": 58245,\n  \"face-pleading\": 58246,\n  \"face-pouting\": 58247,\n  \"face-raised-eyebrow\": 58248,\n  \"face-relieved\": 58249,\n  \"face-rolling-eyes\": 62885,\n  \"face-sad-cry\": 62899,\n  \"face-sad-sweat\": 58250,\n  \"face-sad-tear\": 62900,\n  \"face-saluting\": 58500,\n  \"face-scream\": 58251,\n  \"face-shaking-horizontal\": 59293,\n  \"face-shaking-vertical\": 59294,\n  \"face-shaking\": 59292,\n  \"face-shush\": 58252,\n  \"face-sleeping\": 58253,\n  \"face-sleepy\": 58254,\n  \"face-smile-beam\": 62904,\n  \"face-smile-halo\": 58255,\n  \"face-smile-hearts\": 58256,\n  \"face-smile-horns\": 58257,\n  \"face-smile-plus\": 62905,\n  \"face-smile-relaxed\": 58258,\n  \"face-smile-tear\": 58259,\n  \"face-smile-tongue\": 58260,\n  \"face-smile-upside-down\": 58261,\n  \"face-smile-wink\": 62682,\n  \"face-smile\": 61720,\n  \"face-smiling-hands\": 58262,\n  \"face-smirking\": 58263,\n  \"face-spiral-eyes\": 58501,\n  \"face-sunglasses\": 58264,\n  \"face-surprise\": 62914,\n  \"face-swear\": 58265,\n  \"face-thermometer\": 58266,\n  \"face-thinking\": 58267,\n  \"face-tired\": 62920,\n  \"face-tissue\": 58268,\n  \"face-tongue-money\": 58269,\n  \"face-tongue-sweat\": 58270,\n  \"face-unamused\": 58271,\n  \"face-viewfinder\": 58111,\n  \"face-vomit\": 58272,\n  \"face-weary\": 58273,\n  \"face-woozy\": 58274,\n  \"face-worried\": 58275,\n  \"face-zany\": 58276,\n  \"face-zipper\": 58277,\n  \"falafel\": 58378,\n  \"family-dress\": 58113,\n  \"family-pants\": 58114,\n  \"family\": 58112,\n  \"fan-table\": 57348,\n  \"fan\": 63587,\n  \"farm\": 63588,\n  \"fast-backward\": 61513,\n  \"fast-forward\": 61520,\n  \"faucet-drip\": 57350,\n  \"faucet\": 57349,\n  \"fax\": 61868,\n  \"feather-alt\": 62827,\n  \"feather-pointed\": 62827,\n  \"feather\": 62765,\n  \"feed\": 61598,\n  \"female\": 61826,\n  \"fence\": 58115,\n  \"ferris-wheel\": 57716,\n  \"ferry\": 58602,\n  \"field-hockey-stick-ball\": 62540,\n  \"field-hockey\": 62540,\n  \"fighter-jet\": 61691,\n  \"file-aiff\": 59387,\n  \"file-alt\": 61788,\n  \"file-archive\": 61894,\n  \"file-arrow-down\": 62829,\n  \"file-arrow-up\": 62836,\n  \"file-audio\": 61895,\n  \"file-award\": 62963,\n  \"file-ban\": 59224,\n  \"file-binary\": 57717,\n  \"file-brackets-curly\": 59396,\n  \"file-cad\": 58994,\n  \"file-caret-down\": 58409,\n  \"file-caret-up\": 58410,\n  \"file-certificate\": 62963,\n  \"file-chart-column\": 63065,\n  \"file-chart-line\": 63065,\n  \"file-chart-pie\": 63066,\n  \"file-check\": 62230,\n  \"file-circle-check\": 58784,\n  \"file-circle-exclamation\": 58603,\n  \"file-circle-info\": 58515,\n  \"file-circle-minus\": 58605,\n  \"file-circle-plus\": 58516,\n  \"file-circle-question\": 58607,\n  \"file-circle-xmark\": 58785,\n  \"file-clipboard\": 61674,\n  \"file-code\": 61897,\n  \"file-contract\": 62828,\n  \"file-css\": 59452,\n  \"file-csv\": 63197,\n  \"file-dashed-line\": 63607,\n  \"file-doc\": 58861,\n  \"file-download\": 62829,\n  \"file-edit\": 62236,\n  \"file-eps\": 58948,\n  \"file-excel\": 61891,\n  \"file-exclamation\": 62234,\n  \"file-export\": 62830,\n  \"file-fragment\": 59031,\n  \"file-gif\": 58949,\n  \"file-half-dashed\": 59032,\n  \"file-heart\": 57718,\n  \"file-html\": 59453,\n  \"file-icns\": 59457,\n  \"file-image\": 61893,\n  \"file-import\": 62831,\n  \"file-invoice-dollar\": 62833,\n  \"file-invoice\": 62832,\n  \"file-jpg\": 58950,\n  \"file-js\": 59454,\n  \"file-lines\": 61788,\n  \"file-lock\": 58278,\n  \"file-magnifying-glass\": 63589,\n  \"file-medical-alt\": 62584,\n  \"file-medical\": 62583,\n  \"file-midi\": 59397,\n  \"file-minus\": 62232,\n  \"file-mov\": 58951,\n  \"file-mp3\": 58952,\n  \"file-mp4\": 58953,\n  \"file-music\": 63670,\n  \"file-odf\": 59388,\n  \"file-pdf\": 61889,\n  \"file-pen\": 62236,\n  \"file-plus-minus\": 57719,\n  \"file-plus\": 62233,\n  \"file-png\": 58982,\n  \"file-powerpoint\": 61892,\n  \"file-ppt\": 58954,\n  \"file-prescription\": 62834,\n  \"file-search\": 63589,\n  \"file-shield\": 58608,\n  \"file-signature\": 62835,\n  \"file-slash\": 58279,\n  \"file-spreadsheet\": 63067,\n  \"file-svg\": 58955,\n  \"file-tex\": 59389,\n  \"file-text\": 61788,\n  \"file-times\": 62231,\n  \"file-upload\": 62836,\n  \"file-user\": 63068,\n  \"file-vector\": 58956,\n  \"file-video\": 61896,\n  \"file-wav\": 59390,\n  \"file-waveform\": 62584,\n  \"file-word\": 61890,\n  \"file-xls\": 58957,\n  \"file-xmark\": 62231,\n  \"file-xml\": 58964,\n  \"file-zip\": 58862,\n  \"file-zipper\": 61894,\n  \"file\": 61787,\n  \"files-medical\": 63485,\n  \"files\": 57720,\n  \"fill-drip\": 62838,\n  \"fill\": 62837,\n  \"film-alt\": 61448,\n  \"film-canister\": 63671,\n  \"film-cannister\": 63671,\n  \"film-music\": 59241,\n  \"film-simple\": 61448,\n  \"film-slash\": 57721,\n  \"film-stack\": 59243,\n  \"film\": 61448,\n  \"films\": 57722,\n  \"filter-circle-dollar\": 63074,\n  \"filter-circle-xmark\": 57723,\n  \"filter-list\": 57724,\n  \"filter-slash\": 57725,\n  \"filter\": 61616,\n  \"filters\": 57726,\n  \"fingerprint\": 62839,\n  \"fire-alt\": 63460,\n  \"fire-burner\": 58609,\n  \"fire-extinguisher\": 61748,\n  \"fire-flame-curved\": 63460,\n  \"fire-flame-simple\": 62570,\n  \"fire-flame\": 63199,\n  \"fire-hydrant\": 57727,\n  \"fire-smoke\": 63307,\n  \"fire\": 61549,\n  \"fireplace\": 63386,\n  \"firewall\": 58332,\n  \"first-aid\": 62585,\n  \"fish-bones\": 58116,\n  \"fish-cooked\": 63486,\n  \"fish-fins\": 58610,\n  \"fish\": 62840,\n  \"fishing-rod\": 58280,\n  \"fist-raised\": 63198,\n  \"flag-alt\": 63308,\n  \"flag-checkered\": 61726,\n  \"flag-pennant\": 62550,\n  \"flag-swallowtail\": 63308,\n  \"flag-usa\": 63309,\n  \"flag\": 61476,\n  \"flame\": 63199,\n  \"flashlight\": 63672,\n  \"flask-gear\": 58865,\n  \"flask-poison\": 63200,\n  \"flask-potion\": 63201,\n  \"flask-round-poison\": 63200,\n  \"flask-round-potion\": 63201,\n  \"flask-vial\": 58611,\n  \"flask\": 61635,\n  \"flatbread-stuffed\": 58380,\n  \"flatbread\": 58379,\n  \"floppy-disk-circle-arrow-right\": 57728,\n  \"floppy-disk-circle-xmark\": 57729,\n  \"floppy-disk-pen\": 57730,\n  \"floppy-disk-times\": 57729,\n  \"floppy-disk\": 61639,\n  \"floppy-disks\": 57731,\n  \"florin-sign\": 57732,\n  \"flower-daffodil\": 63488,\n  \"flower-tulip\": 63489,\n  \"flower\": 63487,\n  \"flushed\": 62841,\n  \"flute\": 63673,\n  \"flux-capacitor\": 63674,\n  \"flying-disc\": 58281,\n  \"fog\": 63310,\n  \"folder-arrow-down\": 57427,\n  \"folder-arrow-left\": 59346,\n  \"folder-arrow-right\": 59347,\n  \"folder-arrow-up\": 57428,\n  \"folder-blank\": 61563,\n  \"folder-bookmark\": 57734,\n  \"folder-check\": 58958,\n  \"folder-closed\": 57733,\n  \"folder-cog\": 57735,\n  \"folder-download\": 57427,\n  \"folder-gear\": 57735,\n  \"folder-grid\": 57736,\n  \"folder-heart\": 57737,\n  \"folder-image\": 57738,\n  \"folder-magnifying-glass\": 57739,\n  \"folder-medical\": 57740,\n  \"folder-minus\": 63069,\n  \"folder-music\": 57741,\n  \"folder-open\": 61564,\n  \"folder-plus\": 63070,\n  \"folder-search\": 57739,\n  \"folder-times\": 63071,\n  \"folder-tree\": 63490,\n  \"folder-upload\": 57428,\n  \"folder-user\": 57742,\n  \"folder-xmark\": 63071,\n  \"folder\": 61563,\n  \"folders\": 63072,\n  \"fondue-pot\": 58381,\n  \"font-awesome-flag\": 62132,\n  \"font-awesome-logo-full\": 62132,\n  \"font-awesome\": 62132,\n  \"font-case\": 63590,\n  \"font\": 61489,\n  \"foot-wing\": 59444,\n  \"football-ball\": 62542,\n  \"football-helmet\": 62543,\n  \"football\": 62542,\n  \"fork-knife\": 62182,\n  \"fork\": 62179,\n  \"forklift\": 62586,\n  \"fort\": 58502,\n  \"forward-fast\": 61520,\n  \"forward-step\": 61521,\n  \"forward\": 61518,\n  \"fragile\": 62651,\n  \"frame\": 58517,\n  \"franc-sign\": 57743,\n  \"french-fries\": 63491,\n  \"frog\": 62766,\n  \"frosty-head\": 63387,\n  \"frown-open\": 62842,\n  \"frown\": 61721,\n  \"function\": 63073,\n  \"funnel-dollar\": 63074,\n  \"futbol-ball\": 61923,\n  \"futbol\": 61923,\n  \"g\": 71,\n  \"galaxy\": 57352,\n  \"gallery-thumbnails\": 58282,\n  \"game-board-alt\": 63592,\n  \"game-board-simple\": 63592,\n  \"game-board\": 63591,\n  \"game-console-handheld-crank\": 58809,\n  \"game-console-handheld\": 63675,\n  \"gamepad-alt\": 58786,\n  \"gamepad-modern\": 58786,\n  \"gamepad\": 61723,\n  \"garage-car\": 57354,\n  \"garage-empty\": 59081,\n  \"garage-open\": 57355,\n  \"garage\": 57353,\n  \"garlic\": 58382,\n  \"gas-pump-left\": 59256,\n  \"gas-pump-right\": 59257,\n  \"gas-pump-slash\": 62964,\n  \"gas-pump\": 62767,\n  \"gauge-circle-bolt\": 58518,\n  \"gauge-circle-minus\": 58519,\n  \"gauge-circle-plus\": 58520,\n  \"gauge-high\": 63013,\n  \"gauge-low\": 63015,\n  \"gauge-max\": 63014,\n  \"gauge-med\": 63012,\n  \"gauge-min\": 63016,\n  \"gauge-simple-high\": 63018,\n  \"gauge-simple-low\": 63020,\n  \"gauge-simple-max\": 63019,\n  \"gauge-simple-med\": 63017,\n  \"gauge-simple-min\": 63021,\n  \"gauge-simple\": 63017,\n  \"gauge\": 63012,\n  \"gave-dandy\": 58377,\n  \"gavel\": 61667,\n  \"gbp\": 61780,\n  \"gear-api\": 59556,\n  \"gear-code\": 58856,\n  \"gear-complex-api\": 59557,\n  \"gear-complex-code\": 58859,\n  \"gear-complex\": 58857,\n  \"gear\": 61459,\n  \"gears\": 61573,\n  \"gem\": 62373,\n  \"gemini\": 59465,\n  \"genderless\": 61997,\n  \"ghost\": 63202,\n  \"gif\": 57744,\n  \"gift-card\": 63075,\n  \"gift\": 61547,\n  \"gifts\": 63388,\n  \"gingerbread-man\": 63389,\n  \"glass-champagne\": 63390,\n  \"glass-cheers\": 63391,\n  \"glass-citrus\": 63593,\n  \"glass-empty\": 57745,\n  \"glass-half-empty\": 57746,\n  \"glass-half-full\": 57746,\n  \"glass-half\": 57746,\n  \"glass-martini-alt\": 62843,\n  \"glass-martini\": 61440,\n  \"glass-water-droplet\": 58613,\n  \"glass-water\": 58612,\n  \"glass-whiskey-rocks\": 63393,\n  \"glass-whiskey\": 63392,\n  \"glass\": 63492,\n  \"glasses-alt\": 62965,\n  \"glasses-round\": 62965,\n  \"glasses\": 62768,\n  \"globe-africa\": 62844,\n  \"globe-americas\": 62845,\n  \"globe-asia\": 62846,\n  \"globe-europe\": 63394,\n  \"globe-oceania\": 58491,\n  \"globe-pointer\": 58894,\n  \"globe-snow\": 63395,\n  \"globe-stand\": 62966,\n  \"globe-wifi\": 59013,\n  \"globe-www\": 59558,\n  \"globe\": 61612,\n  \"glove-boxing\": 62520,\n  \"goal-net\": 58283,\n  \"golf-ball-tee\": 62544,\n  \"golf-ball\": 62544,\n  \"golf-club\": 62545,\n  \"golf-flag-hole\": 58284,\n  \"gopuram\": 63076,\n  \"gpu\": 59459,\n  \"graduation-cap\": 61853,\n  \"gramophone\": 63677,\n  \"grapes\": 58118,\n  \"grate-droplet\": 57748,\n  \"grate\": 57747,\n  \"greater-than-equal\": 62770,\n  \"greater-than\": 62,\n  \"grid-2-minus\": 59050,\n  \"grid-2-plus\": 57751,\n  \"grid-2\": 57750,\n  \"grid-3\": 57749,\n  \"grid-4\": 57752,\n  \"grid-5\": 57753,\n  \"grid-dividers\": 58285,\n  \"grid-horizontal\": 62861,\n  \"grid-round-2-minus\": 59051,\n  \"grid-round-2-plus\": 58844,\n  \"grid-round-2\": 58843,\n  \"grid-round-4\": 58845,\n  \"grid-round-5\": 58846,\n  \"grid-round\": 58842,\n  \"grid-vertical\": 62862,\n  \"grid\": 57749,\n  \"grill-fire\": 58788,\n  \"grill-hot\": 58789,\n  \"grill\": 58787,\n  \"grimace\": 62847,\n  \"grin-alt\": 62849,\n  \"grin-beam-sweat\": 62851,\n  \"grin-beam\": 62850,\n  \"grin-hearts\": 62852,\n  \"grin-squint-tears\": 62854,\n  \"grin-squint\": 62853,\n  \"grin-stars\": 62855,\n  \"grin-tears\": 62856,\n  \"grin-tongue-squint\": 62858,\n  \"grin-tongue-wink\": 62859,\n  \"grin-tongue\": 62857,\n  \"grin-wink\": 62860,\n  \"grin\": 62848,\n  \"grip-dots-vertical\": 58385,\n  \"grip-dots\": 58384,\n  \"grip-horizontal\": 62861,\n  \"grip-lines-vertical\": 63397,\n  \"grip-lines\": 63396,\n  \"grip-vertical\": 62862,\n  \"grip\": 62861,\n  \"group-arrows-rotate\": 58614,\n  \"guarani-sign\": 57754,\n  \"guitar-electric\": 63678,\n  \"guitar\": 63398,\n  \"guitars\": 63679,\n  \"gun-slash\": 57756,\n  \"gun-squirt\": 57757,\n  \"gun\": 57755,\n  \"h-square\": 61693,\n  \"h\": 72,\n  \"h1\": 62227,\n  \"h2\": 62228,\n  \"h3\": 62229,\n  \"h4\": 63594,\n  \"h5\": 58386,\n  \"h6\": 58387,\n  \"hamburger\": 63493,\n  \"hammer-brush\": 58912,\n  \"hammer-crash\": 58388,\n  \"hammer-war\": 63204,\n  \"hammer\": 63203,\n  \"hamsa\": 63077,\n  \"hand-back-fist\": 62037,\n  \"hand-back-point-down\": 57758,\n  \"hand-back-point-left\": 57759,\n  \"hand-back-point-ribbon\": 57760,\n  \"hand-back-point-right\": 57761,\n  \"hand-back-point-up\": 57762,\n  \"hand-dots\": 62561,\n  \"hand-fingers-crossed\": 57763,\n  \"hand-fist\": 63198,\n  \"hand-heart\": 62652,\n  \"hand-holding-box\": 62587,\n  \"hand-holding-circle-dollar\": 58913,\n  \"hand-holding-dollar\": 62656,\n  \"hand-holding-droplet\": 62657,\n  \"hand-holding-hand\": 58615,\n  \"hand-holding-heart\": 62654,\n  \"hand-holding-magic\": 63205,\n  \"hand-holding-medical\": 57436,\n  \"hand-holding-seedling\": 62655,\n  \"hand-holding-skull\": 57764,\n  \"hand-holding-star\": 59393,\n  \"hand-holding-usd\": 62656,\n  \"hand-holding-water\": 62657,\n  \"hand-holding\": 62653,\n  \"hand-horns\": 57769,\n  \"hand-lizard\": 62040,\n  \"hand-love\": 57765,\n  \"hand-middle-finger\": 63494,\n  \"hand-paper\": 62038,\n  \"hand-peace\": 62043,\n  \"hand-point-down\": 61607,\n  \"hand-point-left\": 61605,\n  \"hand-point-ribbon\": 57766,\n  \"hand-point-right\": 61604,\n  \"hand-point-up\": 61606,\n  \"hand-pointer\": 62042,\n  \"hand-receiving\": 62588,\n  \"hand-rock\": 62037,\n  \"hand-scissors\": 62039,\n  \"hand-shaka\": 59441,\n  \"hand-sparkles\": 57437,\n  \"hand-spock\": 62041,\n  \"hand-wave\": 57767,\n  \"hand\": 62038,\n  \"handcuffs\": 58616,\n  \"hands-american-sign-language-interpreting\": 62115,\n  \"hands-asl-interpreting\": 62115,\n  \"hands-bound\": 58617,\n  \"hands-bubbles\": 57438,\n  \"hands-clapping\": 57768,\n  \"hands-heart\": 62659,\n  \"hands-helping\": 62660,\n  \"hands-holding-child\": 58618,\n  \"hands-holding-circle\": 58619,\n  \"hands-holding-diamond\": 62588,\n  \"hands-holding-dollar\": 62661,\n  \"hands-holding-heart\": 62659,\n  \"hands-holding\": 62658,\n  \"hands-praying\": 63108,\n  \"hands-usd\": 62661,\n  \"hands-wash\": 57438,\n  \"hands\": 62119,\n  \"handshake-alt-slash\": 57440,\n  \"handshake-alt\": 62133,\n  \"handshake-angle\": 62660,\n  \"handshake-simple-slash\": 57440,\n  \"handshake-simple\": 62133,\n  \"handshake-slash\": 57440,\n  \"handshake\": 62133,\n  \"hanukiah\": 63206,\n  \"hard-drive\": 61600,\n  \"hard-hat\": 63495,\n  \"hard-of-hearing\": 62116,\n  \"hashtag-lock\": 58389,\n  \"hashtag\": 35,\n  \"hat-beach\": 58886,\n  \"hat-chef\": 63595,\n  \"hat-cowboy-side\": 63681,\n  \"hat-cowboy\": 63680,\n  \"hat-hard\": 63495,\n  \"hat-santa\": 63399,\n  \"hat-winter\": 63400,\n  \"hat-witch\": 63207,\n  \"hat-wizard\": 63208,\n  \"haykal\": 63078,\n  \"hdd\": 61600,\n  \"head-side-brain\": 63496,\n  \"head-side-circuit\": 59230,\n  \"head-side-cough-slash\": 57442,\n  \"head-side-cough\": 57441,\n  \"head-side-gear\": 58897,\n  \"head-side-goggles\": 63210,\n  \"head-side-headphones\": 63682,\n  \"head-side-heart\": 57770,\n  \"head-side-mask\": 57443,\n  \"head-side-medical\": 63497,\n  \"head-side-speak\": 59231,\n  \"head-side-virus\": 57444,\n  \"head-side\": 63209,\n  \"head-vr\": 63210,\n  \"header\": 61916,\n  \"heading\": 61916,\n  \"headphones-alt\": 61477,\n  \"headphones-simple\": 61477,\n  \"headphones-slash\": 59260,\n  \"headphones\": 61477,\n  \"headset\": 62864,\n  \"heart-broken\": 63401,\n  \"heart-circle-bolt\": 58620,\n  \"heart-circle-check\": 58621,\n  \"heart-circle-exclamation\": 58622,\n  \"heart-circle-minus\": 58623,\n  \"heart-circle-plus\": 58624,\n  \"heart-circle-xmark\": 58625,\n  \"heart-circle\": 62663,\n  \"heart-crack\": 63401,\n  \"heart-half-alt\": 57772,\n  \"heart-half-stroke\": 57772,\n  \"heart-half\": 57771,\n  \"heart-music-camera-bolt\": 63597,\n  \"heart-pulse\": 61982,\n  \"heart-rate\": 62968,\n  \"heart-slash\": 59278,\n  \"heart-square\": 62664,\n  \"heart\": 61444,\n  \"heartbeat\": 61982,\n  \"hearts\": 59279,\n  \"heat\": 57356,\n  \"helicopter-symbol\": 58626,\n  \"helicopter\": 62771,\n  \"helmet-battle\": 63211,\n  \"helmet-safety\": 63495,\n  \"helmet-un\": 58627,\n  \"heptagon\": 59424,\n  \"hexagon-check\": 58390,\n  \"hexagon-divide\": 57773,\n  \"hexagon-equals\": 59058,\n  \"hexagon-exclamation\": 58391,\n  \"hexagon-image\": 58628,\n  \"hexagon-minus\": 62215,\n  \"hexagon-nodes-bolt\": 59034,\n  \"hexagon-nodes\": 59033,\n  \"hexagon-plus\": 62208,\n  \"hexagon-vertical-nft-slanted\": 58629,\n  \"hexagon-vertical-nft\": 58629,\n  \"hexagon-xmark\": 62190,\n  \"hexagon\": 62226,\n  \"high-definition\": 57774,\n  \"highlighter-line\": 57775,\n  \"highlighter\": 62865,\n  \"hiking\": 63212,\n  \"hill-avalanche\": 58631,\n  \"hill-rockslide\": 58632,\n  \"hippo\": 63213,\n  \"history\": 61914,\n  \"hockey-mask\": 63214,\n  \"hockey-puck\": 62547,\n  \"hockey-stick-puck\": 58286,\n  \"hockey-stick\": 59366,\n  \"hockey-sticks\": 62548,\n  \"holly-berry\": 63402,\n  \"home-alt\": 61461,\n  \"home-blank\": 58503,\n  \"home-heart\": 62665,\n  \"home-lg-alt\": 61461,\n  \"home-lg\": 58287,\n  \"home-user\": 57776,\n  \"home\": 61461,\n  \"honey-pot\": 58392,\n  \"hood-cloak\": 63215,\n  \"horizontal-rule\": 63596,\n  \"horse-head\": 63403,\n  \"horse-saddle\": 63683,\n  \"horse\": 63216,\n  \"horseshoe\": 59418,\n  \"hose-reel\": 58394,\n  \"hose\": 58393,\n  \"hospital-alt\": 61688,\n  \"hospital-symbol\": 62590,\n  \"hospital-user\": 63501,\n  \"hospital-wide\": 61688,\n  \"hospital\": 61688,\n  \"hospitals\": 63502,\n  \"hot-tub-person\": 62867,\n  \"hot-tub\": 62867,\n  \"hotdog\": 63503,\n  \"hotel\": 62868,\n  \"hourglass-1\": 62033,\n  \"hourglass-2\": 62034,\n  \"hourglass-3\": 62035,\n  \"hourglass-clock\": 58395,\n  \"hourglass-empty\": 62036,\n  \"hourglass-end\": 62035,\n  \"hourglass-half\": 62034,\n  \"hourglass-start\": 62033,\n  \"hourglass\": 62036,\n  \"house-blank\": 58503,\n  \"house-building\": 57777,\n  \"house-chimney-blank\": 58288,\n  \"house-chimney-crack\": 63217,\n  \"house-chimney-heart\": 57778,\n  \"house-chimney-medical\": 63474,\n  \"house-chimney-user\": 57445,\n  \"house-chimney-window\": 57357,\n  \"house-chimney\": 58287,\n  \"house-circle-check\": 58633,\n  \"house-circle-exclamation\": 58634,\n  \"house-circle-xmark\": 58635,\n  \"house-crack\": 58289,\n  \"house-damage\": 63217,\n  \"house-day\": 57358,\n  \"house-fire\": 58636,\n  \"house-flag\": 58637,\n  \"house-flood-water-circle-arrow-right\": 58639,\n  \"house-flood-water\": 58638,\n  \"house-flood\": 63311,\n  \"house-heart\": 62665,\n  \"house-laptop\": 57446,\n  \"house-leave\": 57359,\n  \"house-lock\": 58640,\n  \"house-medical-circle-check\": 58641,\n  \"house-medical-circle-exclamation\": 58642,\n  \"house-medical-circle-xmark\": 58643,\n  \"house-medical-flag\": 58644,\n  \"house-medical\": 58290,\n  \"house-night\": 57360,\n  \"house-person-arrive\": 57361,\n  \"house-person-depart\": 57359,\n  \"house-person-leave\": 57359,\n  \"house-person-return\": 57361,\n  \"house-return\": 57361,\n  \"house-signal\": 57362,\n  \"house-tree\": 57779,\n  \"house-tsunami\": 58645,\n  \"house-turret\": 57780,\n  \"house-unlock\": 59082,\n  \"house-user\": 57776,\n  \"house-water\": 63311,\n  \"house-window\": 58291,\n  \"house\": 61461,\n  \"hryvnia-sign\": 63218,\n  \"hryvnia\": 63218,\n  \"humidity\": 63312,\n  \"hundred-points\": 58396,\n  \"hurricane\": 63313,\n  \"hydra\": 59014,\n  \"hyphen\": 45,\n  \"i-cursor\": 62022,\n  \"i\": 73,\n  \"ice-cream\": 63504,\n  \"ice-skate\": 63404,\n  \"icicles\": 63405,\n  \"icons-alt\": 63598,\n  \"icons\": 63597,\n  \"id-badge\": 62145,\n  \"id-card-alt\": 62591,\n  \"id-card-clip\": 62591,\n  \"id-card\": 62146,\n  \"igloo\": 63406,\n  \"ils\": 61963,\n  \"image-broken\": 59562,\n  \"image-circle-arrow-down\": 59244,\n  \"image-circle-check\": 59245,\n  \"image-circle-plus\": 59246,\n  \"image-circle-xmark\": 59247,\n  \"image-landscape\": 57781,\n  \"image-music\": 59248,\n  \"image-polaroid-user\": 57782,\n  \"image-polaroid\": 63684,\n  \"image-portrait\": 62432,\n  \"image-slash\": 57783,\n  \"image-stack\": 59249,\n  \"image-user\": 57784,\n  \"image\": 61502,\n  \"images-user\": 57785,\n  \"images\": 62210,\n  \"inbox-arrow-down\": 62224,\n  \"inbox-arrow-up\": 62225,\n  \"inbox-full\": 57786,\n  \"inbox-in\": 62224,\n  \"inbox-out\": 62225,\n  \"inbox\": 61468,\n  \"inboxes\": 57787,\n  \"indent\": 61500,\n  \"indian-rupee-sign\": 57788,\n  \"indian-rupee\": 57788,\n  \"industry-alt\": 62387,\n  \"industry-windows\": 62387,\n  \"industry\": 62069,\n  \"infinity\": 62772,\n  \"info-circle\": 61530,\n  \"info-square\": 62223,\n  \"info\": 61737,\n  \"inhaler\": 62969,\n  \"input-numeric\": 57789,\n  \"input-password\": 59517,\n  \"input-pipe\": 57790,\n  \"input-text\": 57791,\n  \"inr\": 57788,\n  \"institution\": 61852,\n  \"integral\": 63079,\n  \"interrobang\": 58810,\n  \"intersection\": 63080,\n  \"inventory\": 62592,\n  \"island-tree-palm\": 63505,\n  \"island-tropical\": 63505,\n  \"italic\": 61491,\n  \"j\": 74,\n  \"jack-o-lantern\": 62222,\n  \"jar-wheat\": 58647,\n  \"jar\": 58646,\n  \"jeans-straight\": 59091,\n  \"jeans\": 59090,\n  \"jedi\": 63081,\n  \"jet-fighter-up\": 58648,\n  \"jet-fighter\": 61691,\n  \"joint\": 62869,\n  \"journal-whills\": 63082,\n  \"joystick\": 63685,\n  \"jpy\": 61783,\n  \"jug-bottle\": 58875,\n  \"jug-detergent\": 58649,\n  \"jug\": 63686,\n  \"k\": 75,\n  \"kaaba\": 63083,\n  \"kayak\": 59547,\n  \"kazoo\": 63687,\n  \"kerning\": 63599,\n  \"kettlebell\": 59442,\n  \"key-skeleton-left-right\": 58292,\n  \"key-skeleton\": 63219,\n  \"key\": 61572,\n  \"keyboard-brightness-low\": 57793,\n  \"keyboard-brightness\": 57792,\n  \"keyboard-down\": 57794,\n  \"keyboard-left\": 57795,\n  \"keyboard\": 61724,\n  \"keynote\": 63084,\n  \"khanda\": 63085,\n  \"kidneys\": 62971,\n  \"kip-sign\": 57796,\n  \"kiss-beam\": 62871,\n  \"kiss-wink-heart\": 62872,\n  \"kiss\": 62870,\n  \"kit-medical\": 62585,\n  \"kitchen-set\": 58650,\n  \"kite\": 63220,\n  \"kiwi-bird\": 62773,\n  \"kiwi-fruit\": 58124,\n  \"knife-kitchen\": 63221,\n  \"knife\": 62180,\n  \"krw\": 61785,\n  \"l\": 76,\n  \"label\": 59559,\n  \"lacrosse-stick-ball\": 58294,\n  \"lacrosse-stick\": 58293,\n  \"ladder-water\": 62917,\n  \"lambda\": 63086,\n  \"lamp-desk\": 57364,\n  \"lamp-floor\": 57365,\n  \"lamp-street\": 57797,\n  \"lamp\": 62666,\n  \"land-mine-on\": 58651,\n  \"landmark-alt\": 63314,\n  \"landmark-dome\": 63314,\n  \"landmark-flag\": 58652,\n  \"landmark-magnifying-glass\": 58914,\n  \"landmark\": 63087,\n  \"landscape\": 57781,\n  \"language\": 61867,\n  \"laptop-arrow-down\": 57798,\n  \"laptop-binary\": 58855,\n  \"laptop-code\": 62972,\n  \"laptop-file\": 58653,\n  \"laptop-house\": 57446,\n  \"laptop-medical\": 63506,\n  \"laptop-mobile\": 63610,\n  \"laptop-slash\": 57799,\n  \"laptop\": 61705,\n  \"lari-sign\": 57800,\n  \"lasso-sparkles\": 57801,\n  \"lasso\": 63688,\n  \"laugh-beam\": 62874,\n  \"laugh-squint\": 62875,\n  \"laugh-wink\": 62876,\n  \"laugh\": 62873,\n  \"layer-group-minus\": 62974,\n  \"layer-group-plus\": 62975,\n  \"layer-group\": 62973,\n  \"layer-minus\": 62974,\n  \"layer-plus\": 62975,\n  \"layer\": 59455,\n  \"leaf-heart\": 62667,\n  \"leaf-maple\": 63222,\n  \"leaf-oak\": 63223,\n  \"leaf\": 61548,\n  \"leafy-green\": 58397,\n  \"left-from-bracket\": 58988,\n  \"left-from-dotted-line\": 59074,\n  \"left-from-line\": 62280,\n  \"left-long-to-line\": 58398,\n  \"left-long\": 62218,\n  \"left-right\": 62263,\n  \"left-to-bracket\": 58989,\n  \"left-to-dotted-line\": 59075,\n  \"left-to-line\": 62283,\n  \"left\": 62293,\n  \"legal\": 61667,\n  \"lemon\": 61588,\n  \"leo\": 59466,\n  \"less-than-equal\": 62775,\n  \"less-than\": 60,\n  \"level-down-alt\": 62398,\n  \"level-down\": 61769,\n  \"level-up-alt\": 62399,\n  \"level-up\": 61768,\n  \"libra\": 59467,\n  \"life-ring\": 61901,\n  \"light-ceiling\": 57366,\n  \"light-emergency-on\": 58400,\n  \"light-emergency\": 58399,\n  \"light-switch-off\": 57368,\n  \"light-switch-on\": 57369,\n  \"light-switch\": 57367,\n  \"lightbulb-cfl-on\": 58791,\n  \"lightbulb-cfl\": 58790,\n  \"lightbulb-dollar\": 63088,\n  \"lightbulb-exclamation-on\": 57802,\n  \"lightbulb-exclamation\": 63089,\n  \"lightbulb-gear\": 58877,\n  \"lightbulb-message\": 59015,\n  \"lightbulb-on\": 63090,\n  \"lightbulb-slash\": 63091,\n  \"lightbulb\": 61675,\n  \"lighthouse\": 58898,\n  \"lights-holiday\": 63410,\n  \"line-chart\": 61953,\n  \"line-columns\": 63600,\n  \"line-height\": 63601,\n  \"lines-leaning\": 58654,\n  \"link-broken\": 59458,\n  \"link-horizontal-slash\": 57804,\n  \"link-horizontal\": 57803,\n  \"link-simple-slash\": 57806,\n  \"link-simple\": 57805,\n  \"link-slash\": 61735,\n  \"link\": 61633,\n  \"lips\": 62976,\n  \"lira-sign\": 61845,\n  \"list-1-2\": 61643,\n  \"list-alt\": 61474,\n  \"list-check\": 61614,\n  \"list-dots\": 61642,\n  \"list-dropdown\": 57807,\n  \"list-music\": 63689,\n  \"list-numeric\": 61643,\n  \"list-ol\": 61643,\n  \"list-radio\": 57808,\n  \"list-squares\": 61498,\n  \"list-timeline\": 57809,\n  \"list-tree\": 57810,\n  \"list-ul\": 61642,\n  \"list\": 61498,\n  \"litecoin-sign\": 57811,\n  \"loader\": 57812,\n  \"lobster\": 58401,\n  \"location-arrow-slash\": 59258,\n  \"location-arrow-up\": 58938,\n  \"location-arrow\": 61732,\n  \"location-check\": 62982,\n  \"location-circle\": 62978,\n  \"location-crosshairs-slash\": 62979,\n  \"location-crosshairs\": 62977,\n  \"location-dot-slash\": 62981,\n  \"location-dot\": 62405,\n  \"location-exclamation\": 62984,\n  \"location-minus\": 62985,\n  \"location-pen\": 62983,\n  \"location-pin-lock\": 58655,\n  \"location-pin-slash\": 62988,\n  \"location-pin\": 61505,\n  \"location-plus\": 62986,\n  \"location-question\": 62987,\n  \"location-slash\": 62979,\n  \"location-smile\": 62989,\n  \"location-xmark\": 62990,\n  \"location\": 62977,\n  \"lock-a\": 58402,\n  \"lock-alt\": 62221,\n  \"lock-hashtag\": 58403,\n  \"lock-keyhole-open\": 62402,\n  \"lock-keyhole\": 62221,\n  \"lock-open-alt\": 62402,\n  \"lock-open\": 62401,\n  \"lock\": 61475,\n  \"locust\": 58656,\n  \"lollipop\": 58404,\n  \"lollypop\": 58404,\n  \"long-arrow-alt-down\": 62217,\n  \"long-arrow-alt-left\": 62218,\n  \"long-arrow-alt-right\": 62219,\n  \"long-arrow-alt-up\": 62220,\n  \"long-arrow-down\": 61813,\n  \"long-arrow-left\": 61815,\n  \"long-arrow-right\": 61816,\n  \"long-arrow-up\": 61814,\n  \"loveseat\": 62668,\n  \"low-vision\": 62120,\n  \"luchador-mask\": 62549,\n  \"luchador\": 62549,\n  \"luggage-cart\": 62877,\n  \"lungs-virus\": 57447,\n  \"lungs\": 62980,\n  \"lychee\": 59428,\n  \"m\": 77,\n  \"mace\": 63224,\n  \"magic-wand-sparkles\": 58058,\n  \"magic\": 61648,\n  \"magnet\": 61558,\n  \"magnifying-glass-arrow-right\": 58657,\n  \"magnifying-glass-arrows-rotate\": 58974,\n  \"magnifying-glass-chart\": 58658,\n  \"magnifying-glass-dollar\": 63112,\n  \"magnifying-glass-location\": 63113,\n  \"magnifying-glass-minus\": 61456,\n  \"magnifying-glass-music\": 58975,\n  \"magnifying-glass-play\": 58976,\n  \"magnifying-glass-plus\": 61454,\n  \"magnifying-glass-waveform\": 58977,\n  \"magnifying-glass\": 61442,\n  \"mail-bulk\": 63092,\n  \"mail-forward\": 61540,\n  \"mail-reply-all\": 61730,\n  \"mail-reply\": 62437,\n  \"mailbox-flag-up\": 58811,\n  \"mailbox-open-empty\": 59425,\n  \"mailbox-open-letter\": 59427,\n  \"mailbox\": 63507,\n  \"maki-roll\": 58507,\n  \"makizushi\": 58507,\n  \"malaysian-ringgit-sign\": 59130,\n  \"male\": 61827,\n  \"manat-sign\": 57813,\n  \"mandolin\": 63225,\n  \"mango\": 58127,\n  \"manhole\": 57814,\n  \"map-location-dot\": 62880,\n  \"map-location\": 62879,\n  \"map-marked-alt\": 62880,\n  \"map-marked\": 62879,\n  \"map-marker-alt-slash\": 62981,\n  \"map-marker-alt\": 62405,\n  \"map-marker-check\": 62982,\n  \"map-marker-edit\": 62983,\n  \"map-marker-exclamation\": 62984,\n  \"map-marker-minus\": 62985,\n  \"map-marker-plus\": 62986,\n  \"map-marker-question\": 62987,\n  \"map-marker-slash\": 62988,\n  \"map-marker-smile\": 62989,\n  \"map-marker-times\": 62990,\n  \"map-marker-xmark\": 62990,\n  \"map-marker\": 61505,\n  \"map-pin\": 62070,\n  \"map-signs\": 62071,\n  \"map\": 62073,\n  \"marker\": 62881,\n  \"mars-and-venus-burst\": 58659,\n  \"mars-and-venus\": 61988,\n  \"mars-double\": 61991,\n  \"mars-stroke-h\": 61995,\n  \"mars-stroke-right\": 61995,\n  \"mars-stroke-up\": 61994,\n  \"mars-stroke-v\": 61994,\n  \"mars-stroke\": 61993,\n  \"mars\": 61986,\n  \"martini-glass-citrus\": 62817,\n  \"martini-glass-empty\": 61440,\n  \"martini-glass\": 62843,\n  \"mask-face\": 57815,\n  \"mask-luchador\": 62549,\n  \"mask-snorkel\": 58295,\n  \"mask-ventilator\": 58660,\n  \"mask\": 63226,\n  \"masks-theater\": 63024,\n  \"mattress-pillow\": 58661,\n  \"maximize\": 62238,\n  \"meat\": 63508,\n  \"medal\": 62882,\n  \"medkit\": 61690,\n  \"megaphone\": 63093,\n  \"meh-blank\": 62884,\n  \"meh-rolling-eyes\": 62885,\n  \"meh\": 61722,\n  \"melon-slice\": 58129,\n  \"melon\": 58128,\n  \"memo-circle-check\": 57817,\n  \"memo-circle-info\": 58522,\n  \"memo-pad\": 57818,\n  \"memo\": 57816,\n  \"memory\": 62776,\n  \"menorah\": 63094,\n  \"mercury\": 61987,\n  \"merge\": 58662,\n  \"message-arrow-down\": 57819,\n  \"message-arrow-up-right\": 57821,\n  \"message-arrow-up\": 57820,\n  \"message-bot\": 58296,\n  \"message-captions\": 57822,\n  \"message-check\": 62626,\n  \"message-code\": 57823,\n  \"message-dollar\": 63056,\n  \"message-dot\": 59103,\n  \"message-dots\": 62627,\n  \"message-edit\": 62628,\n  \"message-exclamation\": 62629,\n  \"message-heart\": 58825,\n  \"message-image\": 57824,\n  \"message-lines\": 62630,\n  \"message-medical\": 63476,\n  \"message-middle-top\": 57826,\n  \"message-middle\": 57825,\n  \"message-minus\": 62631,\n  \"message-music\": 63663,\n  \"message-pen\": 62628,\n  \"message-plus\": 62632,\n  \"message-question\": 57827,\n  \"message-quote\": 57828,\n  \"message-slash\": 62633,\n  \"message-smile\": 62634,\n  \"message-sms\": 57829,\n  \"message-text\": 57830,\n  \"message-times\": 62635,\n  \"message-waveform\": 59104,\n  \"message-xmark\": 62635,\n  \"message\": 62074,\n  \"messages-dollar\": 63058,\n  \"messages-question\": 57831,\n  \"messages\": 62646,\n  \"messaging\": 62627,\n  \"meteor\": 63315,\n  \"meter-bolt\": 57833,\n  \"meter-droplet\": 57834,\n  \"meter-fire\": 57835,\n  \"meter\": 57832,\n  \"microchip-ai\": 57836,\n  \"microchip\": 62171,\n  \"microphone-alt-slash\": 62777,\n  \"microphone-alt\": 62409,\n  \"microphone-circle-alt\": 57623,\n  \"microphone-circle-plus\": 59261,\n  \"microphone-circle-xmark\": 59262,\n  \"microphone-circle\": 57622,\n  \"microphone-lines-slash\": 62777,\n  \"microphone-lines\": 62409,\n  \"microphone-signal-meter\": 59232,\n  \"microphone-slash\": 61745,\n  \"microphone-stand\": 63691,\n  \"microphone\": 61744,\n  \"microscope\": 62992,\n  \"microwave\": 57371,\n  \"midi\": 59398,\n  \"mill-sign\": 57837,\n  \"mind-share\": 63095,\n  \"minimize\": 63372,\n  \"minus-circle\": 61526,\n  \"minus-hexagon\": 62215,\n  \"minus-large\": 58372,\n  \"minus-octagon\": 62216,\n  \"minus-square\": 61766,\n  \"minus\": 61544,\n  \"mistletoe\": 63412,\n  \"mitten\": 63413,\n  \"mobile-alt\": 62413,\n  \"mobile-android-alt\": 62415,\n  \"mobile-android\": 62414,\n  \"mobile-arrow-down\": 59211,\n  \"mobile-button\": 61707,\n  \"mobile-iphone\": 57838,\n  \"mobile-notch\": 57838,\n  \"mobile-phone\": 62414,\n  \"mobile-retro\": 58663,\n  \"mobile-rotate-reverse\": 59412,\n  \"mobile-rotate\": 59411,\n  \"mobile-screen-button\": 62413,\n  \"mobile-screen\": 62415,\n  \"mobile-signal-out\": 57840,\n  \"mobile-signal\": 57839,\n  \"mobile-slash\": 59413,\n  \"mobile-vibrate-slash\": 59415,\n  \"mobile-vibrate\": 59414,\n  \"mobile\": 62414,\n  \"money-bill-1-wave\": 62779,\n  \"money-bill-1\": 62417,\n  \"money-bill-alt\": 62417,\n  \"money-bill-simple-wave\": 57842,\n  \"money-bill-simple\": 57841,\n  \"money-bill-transfer\": 58664,\n  \"money-bill-trend-up\": 58665,\n  \"money-bill-wave-alt\": 62779,\n  \"money-bill-wave\": 62778,\n  \"money-bill-wheat\": 58666,\n  \"money-bill\": 61654,\n  \"money-bills-alt\": 57844,\n  \"money-bills-simple\": 57844,\n  \"money-bills\": 57843,\n  \"money-check-alt\": 62781,\n  \"money-check-dollar-pen\": 63603,\n  \"money-check-dollar\": 62781,\n  \"money-check-edit-alt\": 63603,\n  \"money-check-edit\": 63602,\n  \"money-check-pen\": 63602,\n  \"money-check\": 62780,\n  \"money-from-bracket\": 58130,\n  \"money-simple-from-bracket\": 58131,\n  \"monitor-heart-rate\": 62993,\n  \"monitor-waveform\": 62993,\n  \"monkey\": 63227,\n  \"monument\": 62886,\n  \"moon-cloud\": 63316,\n  \"moon-first-quarter-inverse\": 59506,\n  \"moon-first-quarter\": 59504,\n  \"moon-full-inverse\": 59507,\n  \"moon-full\": 59505,\n  \"moon-last-quarter-inverse\": 59504,\n  \"moon-last-quarter\": 59506,\n  \"moon-new-inverse\": 59505,\n  \"moon-new\": 59507,\n  \"moon-over-sun\": 63306,\n  \"moon-star\": 59337,\n  \"moon-stars\": 63317,\n  \"moon-waning-crescent-inverse\": 59511,\n  \"moon-waning-crescent\": 59508,\n  \"moon-waning-gibbous-inverse\": 59510,\n  \"moon-waning-gibbous\": 59509,\n  \"moon-waxing-crescent-inverse\": 59509,\n  \"moon-waxing-crescent\": 59510,\n  \"moon-waxing-gibbous-inverse\": 59508,\n  \"moon-waxing-gibbous\": 59511,\n  \"moon\": 61830,\n  \"moped\": 58297,\n  \"mortar-board\": 61853,\n  \"mortar-pestle\": 62887,\n  \"mosque\": 63096,\n  \"mosquito-net\": 58668,\n  \"mosquito\": 58667,\n  \"motorcycle\": 61980,\n  \"mound\": 58669,\n  \"mountain-city\": 58670,\n  \"mountain-sun\": 58671,\n  \"mountain\": 63228,\n  \"mountains\": 63229,\n  \"mouse-alt\": 63693,\n  \"mouse-field\": 58792,\n  \"mouse-pointer\": 62021,\n  \"mouse\": 63692,\n  \"mp3-player\": 63694,\n  \"mug-hot\": 63414,\n  \"mug-marshmallows\": 63415,\n  \"mug-saucer\": 61684,\n  \"mug-tea-saucer\": 57845,\n  \"mug-tea\": 63605,\n  \"mug\": 63604,\n  \"multiply\": 61453,\n  \"museum\": 61852,\n  \"mushroom\": 58405,\n  \"music-alt-slash\": 63696,\n  \"music-alt\": 63695,\n  \"music-magnifying-glass\": 58978,\n  \"music-note-slash\": 63696,\n  \"music-note\": 63695,\n  \"music-slash\": 63697,\n  \"music\": 61441,\n  \"mustache\": 58812,\n  \"n\": 78,\n  \"naira-sign\": 57846,\n  \"narwhal\": 63230,\n  \"nas\": 59553,\n  \"navicon\": 61641,\n  \"nesting-dolls\": 58298,\n  \"network-wired\": 63231,\n  \"neuter\": 61996,\n  \"newspaper\": 61930,\n  \"nfc-lock\": 57848,\n  \"nfc-magnifying-glass\": 57849,\n  \"nfc-pen\": 57850,\n  \"nfc-signal\": 57851,\n  \"nfc-slash\": 57852,\n  \"nfc-symbol\": 58673,\n  \"nfc-trash\": 57853,\n  \"nfc\": 57847,\n  \"nigiri\": 58506,\n  \"non-binary\": 59399,\n  \"norwegian-krone-sign\": 59112,\n  \"nose\": 58813,\n  \"not-equal\": 62782,\n  \"notdef\": 57854,\n  \"note-medical\": 57856,\n  \"note-sticky\": 62025,\n  \"note\": 57855,\n  \"notebook\": 57857,\n  \"notes-medical\": 62593,\n  \"notes-sticky\": 59225,\n  \"notes\": 57858,\n  \"numpad\": 59340,\n  \"o\": 79,\n  \"oar\": 59524,\n  \"oars\": 59525,\n  \"object-exclude\": 58524,\n  \"object-group\": 62023,\n  \"object-intersect\": 58525,\n  \"object-subtract\": 58526,\n  \"object-ungroup\": 62024,\n  \"object-union\": 58527,\n  \"objects-align-bottom\": 58299,\n  \"objects-align-center-horizontal\": 58300,\n  \"objects-align-center-vertical\": 58301,\n  \"objects-align-left\": 58302,\n  \"objects-align-right\": 58303,\n  \"objects-align-top\": 58304,\n  \"objects-column\": 58305,\n  \"octagon-check\": 58406,\n  \"octagon-divide\": 57859,\n  \"octagon-equals\": 59059,\n  \"octagon-exclamation\": 57860,\n  \"octagon-minus\": 62216,\n  \"octagon-plus\": 62209,\n  \"octagon-xmark\": 62192,\n  \"octagon\": 62214,\n  \"octopus\": 59016,\n  \"oil-can-drip\": 57861,\n  \"oil-can\": 62995,\n  \"oil-temp\": 62996,\n  \"oil-temperature\": 62996,\n  \"oil-well\": 58674,\n  \"olive-branch\": 58135,\n  \"olive\": 58134,\n  \"om\": 63097,\n  \"omega\": 63098,\n  \"onion\": 58407,\n  \"open-captioning\": 59263,\n  \"opossum\": 59516,\n  \"option\": 58136,\n  \"ornament\": 63416,\n  \"otter\": 63232,\n  \"outdent\": 61499,\n  \"outlet\": 57372,\n  \"oven\": 57373,\n  \"overline\": 63606,\n  \"owl\": 59551,\n  \"p\": 80,\n  \"page-break\": 63607,\n  \"page-caret-down\": 58409,\n  \"page-caret-up\": 58410,\n  \"page\": 58408,\n  \"pager\": 63509,\n  \"paint-brush-alt\": 62889,\n  \"paint-brush-fine\": 62889,\n  \"paint-brush\": 61948,\n  \"paint-roller\": 62890,\n  \"paintbrush-alt\": 62889,\n  \"paintbrush-fine-slash\": 59213,\n  \"paintbrush-fine\": 62889,\n  \"paintbrush-pencil\": 57862,\n  \"paintbrush-slash\": 59214,\n  \"paintbrush\": 61948,\n  \"palette-boxes\": 62595,\n  \"palette\": 62783,\n  \"pallet-alt\": 62595,\n  \"pallet-box\": 57864,\n  \"pallet-boxes\": 62595,\n  \"pallet\": 62594,\n  \"pan-food\": 58411,\n  \"pan-frying\": 58412,\n  \"pancakes\": 58413,\n  \"panel-ews\": 58414,\n  \"panel-fire\": 58415,\n  \"panorama\": 57865,\n  \"panties\": 59092,\n  \"pants-straight\": 59094,\n  \"pants\": 59093,\n  \"paper-plane-alt\": 57866,\n  \"paper-plane-top\": 57866,\n  \"paper-plane\": 61912,\n  \"paperclip-vertical\": 58306,\n  \"paperclip\": 61638,\n  \"parachute-box\": 62669,\n  \"paragraph-left\": 63608,\n  \"paragraph-rtl\": 63608,\n  \"paragraph\": 61917,\n  \"parentheses\": 57541,\n  \"parenthesis\": 40,\n  \"parking-circle-slash\": 62998,\n  \"parking-circle\": 62997,\n  \"parking-slash\": 62999,\n  \"parking\": 62784,\n  \"party-back\": 58460,\n  \"party-bell\": 58138,\n  \"party-horn\": 58139,\n  \"passport\": 62891,\n  \"pastafarianism\": 63099,\n  \"paste\": 61674,\n  \"pause-circle\": 62091,\n  \"pause\": 61516,\n  \"paw-alt\": 63233,\n  \"paw-claws\": 63234,\n  \"paw-simple\": 63233,\n  \"paw\": 61872,\n  \"peace\": 63100,\n  \"peach\": 57867,\n  \"peanut\": 58416,\n  \"peanuts\": 58417,\n  \"peapod\": 58140,\n  \"pear\": 57868,\n  \"pedestal\": 57869,\n  \"pegasus\": 63235,\n  \"pen-alt-slash\": 57871,\n  \"pen-alt\": 62213,\n  \"pen-circle\": 57870,\n  \"pen-clip-slash\": 57871,\n  \"pen-clip\": 62213,\n  \"pen-fancy-slash\": 57872,\n  \"pen-fancy\": 62892,\n  \"pen-field\": 57873,\n  \"pen-line\": 57874,\n  \"pen-nib-slash\": 58529,\n  \"pen-nib\": 62893,\n  \"pen-paintbrush\": 63000,\n  \"pen-ruler\": 62894,\n  \"pen-slash\": 57875,\n  \"pen-square\": 61771,\n  \"pen-swirl\": 57876,\n  \"pen-to-square\": 61508,\n  \"pen\": 62212,\n  \"pencil-alt\": 62211,\n  \"pencil-line\": 59215,\n  \"pencil-mechanical\": 58826,\n  \"pencil-paintbrush\": 63000,\n  \"pencil-ruler\": 62894,\n  \"pencil-slash\": 57877,\n  \"pencil-square\": 61771,\n  \"pencil\": 62211,\n  \"pennant\": 62550,\n  \"pentagon\": 59280,\n  \"people-arrows-left-right\": 57448,\n  \"people-arrows\": 57448,\n  \"people-carry-box\": 62670,\n  \"people-carry\": 62670,\n  \"people-dress-simple\": 57880,\n  \"people-dress\": 57879,\n  \"people-group\": 58675,\n  \"people-line\": 58676,\n  \"people-pants-simple\": 57882,\n  \"people-pants\": 57881,\n  \"people-pulling\": 58677,\n  \"people-robbery\": 58678,\n  \"people-roof\": 58679,\n  \"people-simple\": 57883,\n  \"people\": 57878,\n  \"pepper-hot\": 63510,\n  \"pepper\": 58418,\n  \"percent\": 37,\n  \"percentage\": 37,\n  \"period\": 46,\n  \"person-arms-raised\": 59267,\n  \"person-arrow-down-to-line\": 58680,\n  \"person-arrow-up-from-line\": 58681,\n  \"person-basketball\": 59268,\n  \"person-biking-mountain\": 63563,\n  \"person-biking\": 63562,\n  \"person-booth\": 63318,\n  \"person-breastfeeding\": 58682,\n  \"person-burst\": 58683,\n  \"person-cane\": 58684,\n  \"person-carry-box\": 62671,\n  \"person-carry-empty\": 59269,\n  \"person-carry\": 62671,\n  \"person-chalkboard\": 58685,\n  \"person-circle-check\": 58686,\n  \"person-circle-exclamation\": 58687,\n  \"person-circle-minus\": 58688,\n  \"person-circle-plus\": 58689,\n  \"person-circle-question\": 58690,\n  \"person-circle-xmark\": 58691,\n  \"person-digging\": 63582,\n  \"person-dolly-empty\": 62673,\n  \"person-dolly\": 62672,\n  \"person-dots-from-line\": 62576,\n  \"person-dress-burst\": 58692,\n  \"person-dress-fairy\": 58887,\n  \"person-dress-simple\": 57884,\n  \"person-dress\": 61826,\n  \"person-drowning\": 58693,\n  \"person-fairy\": 58888,\n  \"person-falling-burst\": 58695,\n  \"person-falling\": 58694,\n  \"person-from-portal\": 57379,\n  \"person-golfing\": 59270,\n  \"person-half-dress\": 58696,\n  \"person-harassing\": 58697,\n  \"person-hiking\": 63212,\n  \"person-limbs-wide\": 59271,\n  \"person-meditating\": 59361,\n  \"person-military-pointing\": 58698,\n  \"person-military-rifle\": 58699,\n  \"person-military-to-person\": 58700,\n  \"person-pinball\": 57885,\n  \"person-praying\": 63107,\n  \"person-pregnant\": 58142,\n  \"person-rays\": 58701,\n  \"person-rifle\": 58702,\n  \"person-running-fast\": 58879,\n  \"person-running\": 63244,\n  \"person-seat-reclined\": 57887,\n  \"person-seat-window\": 59272,\n  \"person-seat\": 57886,\n  \"person-shelter\": 58703,\n  \"person-sign\": 63319,\n  \"person-simple\": 57888,\n  \"person-skating\": 63429,\n  \"person-ski-jumping\": 63431,\n  \"person-ski-lift\": 63432,\n  \"person-skiing-nordic\": 63434,\n  \"person-skiing\": 63433,\n  \"person-sledding\": 63435,\n  \"person-snowboarding\": 63438,\n  \"person-snowmobiling\": 63441,\n  \"person-soccer\": 59273,\n  \"person-swimming-pool\": 59274,\n  \"person-swimming-water\": 59275,\n  \"person-swimming\": 62916,\n  \"person-through-window\": 58793,\n  \"person-to-door\": 58419,\n  \"person-to-portal\": 57378,\n  \"person-walking-arrow-loop-left\": 58705,\n  \"person-walking-arrow-right\": 58706,\n  \"person-walking-dashed-line-arrow-right\": 58707,\n  \"person-walking-luggage\": 58708,\n  \"person-walking-with-cane\": 62109,\n  \"person-walking\": 62804,\n  \"person-water-arms-raised\": 59276,\n  \"person-waving\": 59277,\n  \"person\": 61827,\n  \"peruvian-soles-sign\": 59141,\n  \"peseta-sign\": 57889,\n  \"peso-sign\": 57890,\n  \"phone-alt\": 63609,\n  \"phone-arrow-down-left\": 57891,\n  \"phone-arrow-down\": 57891,\n  \"phone-arrow-right\": 58814,\n  \"phone-arrow-up-right\": 57892,\n  \"phone-arrow-up\": 57892,\n  \"phone-circle-alt\": 57628,\n  \"phone-circle-down\": 57629,\n  \"phone-circle\": 57627,\n  \"phone-connection\": 59105,\n  \"phone-flip\": 63609,\n  \"phone-hangup\": 57893,\n  \"phone-incoming\": 57891,\n  \"phone-intercom\": 58420,\n  \"phone-laptop\": 63610,\n  \"phone-missed\": 57894,\n  \"phone-office\": 63101,\n  \"phone-outgoing\": 57892,\n  \"phone-plus\": 62674,\n  \"phone-rotary\": 63699,\n  \"phone-slash\": 62429,\n  \"phone-square-alt\": 63611,\n  \"phone-square-down\": 57978,\n  \"phone-square\": 61592,\n  \"phone-volume\": 62112,\n  \"phone-waveform\": 59106,\n  \"phone-xmark\": 57895,\n  \"phone\": 61589,\n  \"photo-film-music\": 57896,\n  \"photo-film\": 63612,\n  \"photo-video\": 63612,\n  \"pi\": 63102,\n  \"piano-keyboard\": 63701,\n  \"piano\": 63700,\n  \"pickaxe\": 58815,\n  \"pickleball\": 58421,\n  \"picture-in-picture\": 59403,\n  \"pie-chart\": 61952,\n  \"pie\": 63237,\n  \"pig\": 63238,\n  \"piggy-bank\": 62675,\n  \"pills\": 62596,\n  \"pinata\": 58307,\n  \"pinball\": 57897,\n  \"pineapple\": 58143,\n  \"ping-pong-paddle-ball\": 62557,\n  \"pipe-circle-check\": 58422,\n  \"pipe-collar\": 58423,\n  \"pipe-section\": 58424,\n  \"pipe-smoking\": 58308,\n  \"pipe-valve\": 58425,\n  \"pipe\": 124,\n  \"pisces\": 59468,\n  \"pizza-slice\": 63512,\n  \"pizza\": 63511,\n  \"place-of-worship\": 63103,\n  \"plane-alt\": 62430,\n  \"plane-arrival\": 62895,\n  \"plane-circle-check\": 58709,\n  \"plane-circle-exclamation\": 58710,\n  \"plane-circle-xmark\": 58711,\n  \"plane-departure\": 62896,\n  \"plane-engines\": 62430,\n  \"plane-flying\": 59323,\n  \"plane-landing-gear\": 59324,\n  \"plane-lock\": 58712,\n  \"plane-prop\": 57899,\n  \"plane-slash\": 57449,\n  \"plane-tail\": 57900,\n  \"plane-up-slash\": 57902,\n  \"plane-up\": 57901,\n  \"plane\": 61554,\n  \"planet-moon\": 57375,\n  \"planet-ringed\": 57376,\n  \"plant-wilt\": 58794,\n  \"plate-utensils\": 58427,\n  \"plate-wheat\": 58714,\n  \"play-circle\": 61764,\n  \"play-flip\": 59264,\n  \"play-pause\": 57903,\n  \"play\": 61515,\n  \"plug-circle-bolt\": 58715,\n  \"plug-circle-check\": 58716,\n  \"plug-circle-exclamation\": 58717,\n  \"plug-circle-minus\": 58718,\n  \"plug-circle-plus\": 58719,\n  \"plug-circle-xmark\": 58720,\n  \"plug\": 61926,\n  \"plus-circle\": 61525,\n  \"plus-hexagon\": 62208,\n  \"plus-large\": 58782,\n  \"plus-minus\": 58428,\n  \"plus-octagon\": 62209,\n  \"plus-square\": 61694,\n  \"plus\": 43,\n  \"podcast\": 62158,\n  \"podium-star\": 63320,\n  \"podium\": 63104,\n  \"poker-chip\": 59554,\n  \"police-box\": 57377,\n  \"polish-zloty-sign\": 59147,\n  \"poll-h\": 63106,\n  \"poll-people\": 63321,\n  \"poll\": 63105,\n  \"pompebled\": 58429,\n  \"poo-bolt\": 63322,\n  \"poo-storm\": 63322,\n  \"poo\": 62206,\n  \"pool-8-ball\": 58309,\n  \"poop\": 63001,\n  \"popcorn\": 63513,\n  \"popsicle\": 58430,\n  \"portal-enter\": 57378,\n  \"portal-exit\": 57379,\n  \"portrait\": 62432,\n  \"possum\": 59516,\n  \"postage-stamp\": 59107,\n  \"pot-food\": 58431,\n  \"potato\": 58432,\n  \"pound-sign\": 61780,\n  \"power-off\": 61457,\n  \"pray\": 63107,\n  \"praying-hands\": 63108,\n  \"prescription-bottle-alt\": 62598,\n  \"prescription-bottle-medical\": 62598,\n  \"prescription-bottle-pill\": 58816,\n  \"prescription-bottle\": 62597,\n  \"prescription\": 62897,\n  \"presentation-screen\": 63109,\n  \"presentation\": 63109,\n  \"pretzel\": 58433,\n  \"print-magnifying-glass\": 63514,\n  \"print-search\": 63514,\n  \"print-slash\": 63110,\n  \"print\": 61487,\n  \"pro\": 57909,\n  \"procedures\": 62599,\n  \"project-diagram\": 62786,\n  \"projector\": 63702,\n  \"pronoun\": 59041,\n  \"pump-impeller\": 59445,\n  \"pump-medical\": 57450,\n  \"pump-soap\": 57451,\n  \"pump\": 58434,\n  \"pumpkin\": 63239,\n  \"puzzle-piece-alt\": 57905,\n  \"puzzle-piece-simple\": 57905,\n  \"puzzle-piece\": 61742,\n  \"puzzle\": 58435,\n  \"q\": 81,\n  \"qrcode-read\": 59289,\n  \"qrcode\": 61481,\n  \"question-circle\": 61529,\n  \"question-square\": 62205,\n  \"question\": 63,\n  \"quidditch-broom-ball\": 62552,\n  \"quidditch\": 62552,\n  \"quote-left-alt\": 61709,\n  \"quote-left\": 61709,\n  \"quote-right-alt\": 61710,\n  \"quote-right\": 61710,\n  \"quotes\": 57908,\n  \"quran\": 63111,\n  \"r\": 82,\n  \"rabbit-fast\": 63241,\n  \"rabbit-running\": 63241,\n  \"rabbit\": 63240,\n  \"raccoon\": 58899,\n  \"racquet\": 62554,\n  \"radar\": 57380,\n  \"radiation-alt\": 63418,\n  \"radiation\": 63417,\n  \"radio-alt\": 63704,\n  \"radio-tuner\": 63704,\n  \"radio\": 63703,\n  \"rainbow-half\": 59338,\n  \"rainbow\": 63323,\n  \"raindrops\": 63324,\n  \"ram\": 63242,\n  \"ramp-loading\": 62676,\n  \"random\": 61556,\n  \"ranking-star\": 58721,\n  \"raygun\": 57381,\n  \"receipt\": 62787,\n  \"record-vinyl\": 63705,\n  \"rectangle-4k\": 59250,\n  \"rectangle-ad\": 63041,\n  \"rectangle-api\": 59552,\n  \"rectangle-barcode\": 62563,\n  \"rectangle-beta\": 59400,\n  \"rectangle-code\": 58146,\n  \"rectangle-hd\": 57774,\n  \"rectangle-hdr\": 59251,\n  \"rectangle-high-dynamic-range\": 59251,\n  \"rectangle-history-circle-plus\": 58531,\n  \"rectangle-history-circle-user\": 58532,\n  \"rectangle-history\": 58530,\n  \"rectangle-irc\": 59500,\n  \"rectangle-landscape\": 62202,\n  \"rectangle-list\": 61474,\n  \"rectangle-minus\": 59060,\n  \"rectangle-n-a\": 59560,\n  \"rectangle-new\": 59514,\n  \"rectangle-plus\": 59061,\n  \"rectangle-portrait\": 62203,\n  \"rectangle-pro\": 57909,\n  \"rectangle-sd\": 57994,\n  \"rectangle-tall\": 59281,\n  \"rectangle-terminal\": 57910,\n  \"rectangle-times\": 62480,\n  \"rectangle-vertical-history\": 57911,\n  \"rectangle-vertical\": 62203,\n  \"rectangle-video-on-demand\": 59252,\n  \"rectangle-wide\": 62204,\n  \"rectangle-xmark\": 62480,\n  \"rectangle\": 62202,\n  \"rectangles-mixed\": 58147,\n  \"recycle\": 61880,\n  \"redo-alt\": 62201,\n  \"redo\": 61470,\n  \"reel\": 57912,\n  \"reflect-both\": 58991,\n  \"reflect-horizontal\": 58980,\n  \"reflect-vertical\": 58981,\n  \"refresh\": 61473,\n  \"refrigerator\": 57382,\n  \"registered\": 62045,\n  \"remote\": 59561,\n  \"remove-format\": 63613,\n  \"remove\": 61453,\n  \"renminbi-sign\": 59196,\n  \"reorder\": 62800,\n  \"repeat-1-alt\": 62310,\n  \"repeat-1\": 62309,\n  \"repeat-alt\": 62308,\n  \"repeat\": 62307,\n  \"reply-all\": 61730,\n  \"reply-clock\": 57913,\n  \"reply-time\": 57913,\n  \"reply\": 62437,\n  \"republican\": 63326,\n  \"restroom-simple\": 57914,\n  \"restroom\": 63421,\n  \"retweet-alt\": 62305,\n  \"retweet\": 61561,\n  \"rhombus\": 57915,\n  \"ribbon\": 62678,\n  \"right-from-bracket\": 62197,\n  \"right-from-dotted-line\": 59076,\n  \"right-from-line\": 62279,\n  \"right-left-large\": 58849,\n  \"right-left\": 62306,\n  \"right-long-to-line\": 58436,\n  \"right-long\": 62219,\n  \"right-to-bracket\": 62198,\n  \"right-to-dotted-line\": 59077,\n  \"right-to-line\": 62284,\n  \"right\": 62294,\n  \"ring-diamond\": 58795,\n  \"ring\": 63243,\n  \"rings-wedding\": 63515,\n  \"rmb\": 61783,\n  \"road-barrier\": 58722,\n  \"road-bridge\": 58723,\n  \"road-circle-check\": 58724,\n  \"road-circle-exclamation\": 58725,\n  \"road-circle-xmark\": 58726,\n  \"road-lock\": 58727,\n  \"road-spikes\": 58728,\n  \"road\": 61464,\n  \"robot-astromech\": 58066,\n  \"robot\": 62788,\n  \"rocket-launch\": 57383,\n  \"rocket-vertical\": 59325,\n  \"rocket\": 61749,\n  \"rod-asclepius\": 58745,\n  \"rod-snake\": 58745,\n  \"roller-coaster\": 58148,\n  \"rotate-back\": 62186,\n  \"rotate-backward\": 62186,\n  \"rotate-exclamation\": 57916,\n  \"rotate-forward\": 62201,\n  \"rotate-left\": 62186,\n  \"rotate-reverse\": 58929,\n  \"rotate-right\": 62201,\n  \"rotate\": 62193,\n  \"rouble\": 61784,\n  \"route-highway\": 63002,\n  \"route-interstate\": 63003,\n  \"route\": 62679,\n  \"router\": 63706,\n  \"rows-3\": 59531,\n  \"rows\": 58002,\n  \"rss-square\": 61763,\n  \"rss\": 61598,\n  \"rub\": 61784,\n  \"ruble-sign\": 61784,\n  \"ruble\": 61784,\n  \"rug\": 58729,\n  \"rugby-ball\": 58310,\n  \"ruler-combined\": 62790,\n  \"ruler-horizontal\": 62791,\n  \"ruler-triangle\": 63004,\n  \"ruler-vertical\": 62792,\n  \"ruler\": 62789,\n  \"running\": 63244,\n  \"rupee-sign\": 61782,\n  \"rupee\": 61782,\n  \"rupiah-sign\": 57917,\n  \"rv\": 63422,\n  \"s\": 83,\n  \"sack-dollar\": 63517,\n  \"sack-xmark\": 58730,\n  \"sack\": 63516,\n  \"sad-cry\": 62899,\n  \"sad-tear\": 62900,\n  \"sagittarius\": 59469,\n  \"sailboat\": 58437,\n  \"salad\": 63518,\n  \"salt-shaker\": 58438,\n  \"sandwich\": 63519,\n  \"satellite-dish\": 63424,\n  \"satellite\": 63423,\n  \"sausage\": 63520,\n  \"save-circle-arrow-right\": 57728,\n  \"save-circle-xmark\": 57729,\n  \"save-times\": 57729,\n  \"save\": 61639,\n  \"sax-hot\": 63707,\n  \"saxophone-fire\": 63707,\n  \"saxophone\": 63708,\n  \"scale-balanced\": 62030,\n  \"scale-unbalanced-flip\": 62742,\n  \"scale-unbalanced\": 62741,\n  \"scalpel-line-dashed\": 63006,\n  \"scalpel-path\": 63006,\n  \"scalpel\": 63005,\n  \"scanner-gun\": 62600,\n  \"scanner-image\": 63731,\n  \"scanner-keyboard\": 62601,\n  \"scanner-touchscreen\": 62602,\n  \"scanner\": 62600,\n  \"scarecrow\": 63245,\n  \"scarf\": 63425,\n  \"school-circle-check\": 58731,\n  \"school-circle-exclamation\": 58732,\n  \"school-circle-xmark\": 58733,\n  \"school-flag\": 58734,\n  \"school-lock\": 58735,\n  \"school-unlock\": 59083,\n  \"school\": 62793,\n  \"scissors\": 61636,\n  \"scooter\": 59331,\n  \"scorpio\": 59470,\n  \"screen-users\": 63037,\n  \"screencast\": 57918,\n  \"screenshot\": 57562,\n  \"screwdriver-wrench\": 63449,\n  \"screwdriver\": 62794,\n  \"scribble\": 57919,\n  \"scroll-old\": 63247,\n  \"scroll-ribbon\": 62954,\n  \"scroll-torah\": 63136,\n  \"scroll\": 63246,\n  \"scrubber\": 62200,\n  \"scythe\": 63248,\n  \"sd-card\": 63426,\n  \"sd-cards\": 57920,\n  \"seal-exclamation\": 57922,\n  \"seal-question\": 57923,\n  \"seal\": 57921,\n  \"search-dollar\": 63112,\n  \"search-location\": 63113,\n  \"search-minus\": 61456,\n  \"search-plus\": 61454,\n  \"search\": 61442,\n  \"seat-airline-window\": 59326,\n  \"seat-airline\": 57924,\n  \"seat\": 59236,\n  \"seats\": 59237,\n  \"section\": 58439,\n  \"seedling\": 62680,\n  \"semicolon\": 59,\n  \"send-back\": 63614,\n  \"send-backward\": 63615,\n  \"send\": 57866,\n  \"sensor-alert\": 57385,\n  \"sensor-cloud\": 57388,\n  \"sensor-fire\": 57386,\n  \"sensor-on\": 57387,\n  \"sensor-smoke\": 57388,\n  \"sensor-triangle-exclamation\": 57385,\n  \"sensor\": 57384,\n  \"septagon\": 59424,\n  \"server\": 62003,\n  \"shapes\": 63007,\n  \"share-all\": 62311,\n  \"share-alt-square\": 61921,\n  \"share-alt\": 61920,\n  \"share-from-square\": 61773,\n  \"share-nodes\": 61920,\n  \"share-square\": 61773,\n  \"share\": 61540,\n  \"sheep\": 63249,\n  \"sheet-plastic\": 58737,\n  \"shekel-sign\": 61963,\n  \"shekel\": 61963,\n  \"shelves-empty\": 57926,\n  \"shelves\": 62592,\n  \"sheqel-sign\": 61963,\n  \"sheqel\": 61963,\n  \"shield-alt\": 62445,\n  \"shield-blank\": 61746,\n  \"shield-cat\": 58738,\n  \"shield-check\": 62199,\n  \"shield-cross\": 63250,\n  \"shield-dog\": 58739,\n  \"shield-exclamation\": 57927,\n  \"shield-halved\": 62445,\n  \"shield-heart\": 58740,\n  \"shield-keyhole\": 57928,\n  \"shield-minus\": 57929,\n  \"shield-plus\": 57930,\n  \"shield-quartered\": 58741,\n  \"shield-slash\": 57931,\n  \"shield-times\": 57932,\n  \"shield-user\": 59401,\n  \"shield-virus\": 57452,\n  \"shield-xmark\": 57932,\n  \"shield\": 61746,\n  \"ship-large\": 59408,\n  \"ship\": 61978,\n  \"shipping-fast\": 62603,\n  \"shipping-timed\": 62604,\n  \"shirt-jersey\": 59095,\n  \"shirt-long-sleeve\": 58311,\n  \"shirt-running\": 58312,\n  \"shirt-tank-top\": 58313,\n  \"shirt\": 62803,\n  \"shish-kebab\": 63521,\n  \"shoe-prints\": 62795,\n  \"shoe\": 59096,\n  \"shop-24\": 59290,\n  \"shop-lock\": 58533,\n  \"shop-slash\": 57456,\n  \"shop\": 62799,\n  \"shopping-bag\": 62096,\n  \"shopping-basket-alt\": 57519,\n  \"shopping-basket\": 62097,\n  \"shopping-cart\": 61562,\n  \"shortcake\": 58341,\n  \"shorts\": 59097,\n  \"shovel-snow\": 63427,\n  \"shovel\": 63251,\n  \"shower-alt\": 57933,\n  \"shower-down\": 57933,\n  \"shower\": 62156,\n  \"shredder\": 63114,\n  \"shrimp\": 58440,\n  \"shuffle\": 61556,\n  \"shutters\": 58441,\n  \"shuttle-space-vertical\": 59327,\n  \"shuttle-space\": 61847,\n  \"shuttle-van\": 62902,\n  \"shuttlecock\": 62555,\n  \"sickle\": 63522,\n  \"sidebar-flip\": 57935,\n  \"sidebar\": 57934,\n  \"sigma\": 63115,\n  \"sign-hanging\": 62681,\n  \"sign-in-alt\": 62198,\n  \"sign-in\": 61584,\n  \"sign-language\": 62119,\n  \"sign-out-alt\": 62197,\n  \"sign-out\": 61579,\n  \"sign-post\": 58916,\n  \"sign-posts-wrench\": 58918,\n  \"sign-posts\": 58917,\n  \"sign\": 62681,\n  \"signal-1\": 63116,\n  \"signal-2\": 63117,\n  \"signal-3\": 63118,\n  \"signal-4\": 63119,\n  \"signal-5\": 61458,\n  \"signal-alt-1\": 63121,\n  \"signal-alt-2\": 63122,\n  \"signal-alt-3\": 63123,\n  \"signal-alt-4\": 63120,\n  \"signal-alt-slash\": 63124,\n  \"signal-alt\": 63120,\n  \"signal-bars-fair\": 63122,\n  \"signal-bars-good\": 63123,\n  \"signal-bars-slash\": 63124,\n  \"signal-bars-strong\": 63120,\n  \"signal-bars-weak\": 63121,\n  \"signal-bars\": 63120,\n  \"signal-fair\": 63117,\n  \"signal-good\": 63118,\n  \"signal-perfect\": 61458,\n  \"signal-slash\": 63125,\n  \"signal-stream-slash\": 57936,\n  \"signal-stream\": 63709,\n  \"signal-strong\": 63119,\n  \"signal-weak\": 63116,\n  \"signal\": 61458,\n  \"signapore-dollar-sign\": 59182,\n  \"signature-lock\": 58314,\n  \"signature-slash\": 58315,\n  \"signature\": 62903,\n  \"signing\": 62119,\n  \"signs-post\": 62071,\n  \"sim-card\": 63428,\n  \"sim-cards\": 57937,\n  \"single-quote-left\": 59419,\n  \"single-quote-right\": 59420,\n  \"sink\": 57453,\n  \"siren-on\": 57390,\n  \"siren\": 57389,\n  \"sitemap\": 61672,\n  \"skating\": 63429,\n  \"skeleton-ribs\": 58827,\n  \"skeleton\": 63008,\n  \"ski-boot-ski\": 58317,\n  \"ski-boot\": 58316,\n  \"ski-jump\": 63431,\n  \"ski-lift\": 63432,\n  \"skiing-nordic\": 63434,\n  \"skiing\": 63433,\n  \"skull-cow\": 63710,\n  \"skull-crossbones\": 63252,\n  \"skull\": 62796,\n  \"slash-back\": 92,\n  \"slash-forward\": 47,\n  \"slash\": 63253,\n  \"sledding\": 63435,\n  \"sleigh\": 63436,\n  \"slider-circle\": 59216,\n  \"slider\": 57938,\n  \"sliders-h-square\": 62448,\n  \"sliders-h\": 61918,\n  \"sliders-simple\": 57939,\n  \"sliders-up\": 62449,\n  \"sliders-v-square\": 62450,\n  \"sliders-v\": 62449,\n  \"sliders\": 61918,\n  \"slot-machine\": 58318,\n  \"smile-beam\": 62904,\n  \"smile-plus\": 62905,\n  \"smile-wink\": 62682,\n  \"smile\": 61720,\n  \"smog\": 63327,\n  \"smoke\": 63328,\n  \"smoking-ban\": 62797,\n  \"smoking\": 62605,\n  \"sms\": 63437,\n  \"snake\": 63254,\n  \"sneaker-running\": 59417,\n  \"sneaker\": 59098,\n  \"snooze\": 63616,\n  \"snow-blowing\": 63329,\n  \"snowboarding\": 63438,\n  \"snowflake-droplets\": 58817,\n  \"snowflake\": 62172,\n  \"snowflakes\": 63439,\n  \"snowman-head\": 63387,\n  \"snowman\": 63440,\n  \"snowmobile-blank\": 59332,\n  \"snowmobile\": 63441,\n  \"snowplow\": 63442,\n  \"soap\": 57454,\n  \"soccer-ball\": 61923,\n  \"socks\": 63126,\n  \"soft-serve\": 58368,\n  \"solar-panel\": 62906,\n  \"solar-system\": 57391,\n  \"sort-alpha-asc\": 61789,\n  \"sort-alpha-desc\": 63617,\n  \"sort-alpha-down-alt\": 63617,\n  \"sort-alpha-down\": 61789,\n  \"sort-alpha-up-alt\": 63618,\n  \"sort-alpha-up\": 61790,\n  \"sort-alt\": 63619,\n  \"sort-amount-asc\": 61792,\n  \"sort-amount-desc\": 63620,\n  \"sort-amount-down-alt\": 63620,\n  \"sort-amount-down\": 61792,\n  \"sort-amount-up-alt\": 63621,\n  \"sort-amount-up\": 61793,\n  \"sort-asc\": 61662,\n  \"sort-circle-down\": 57393,\n  \"sort-circle-up\": 57394,\n  \"sort-circle\": 57392,\n  \"sort-desc\": 61661,\n  \"sort-down\": 61661,\n  \"sort-numeric-asc\": 61794,\n  \"sort-numeric-desc\": 63622,\n  \"sort-numeric-down-alt\": 63622,\n  \"sort-numeric-down\": 61794,\n  \"sort-numeric-up-alt\": 63623,\n  \"sort-numeric-up\": 61795,\n  \"sort-shapes-down-alt\": 63625,\n  \"sort-shapes-down\": 63624,\n  \"sort-shapes-up-alt\": 63627,\n  \"sort-shapes-up\": 63626,\n  \"sort-size-down-alt\": 63629,\n  \"sort-size-down\": 63628,\n  \"sort-size-up-alt\": 63631,\n  \"sort-size-up\": 63630,\n  \"sort-up-down\": 57497,\n  \"sort-up\": 61662,\n  \"sort\": 61660,\n  \"soup\": 63523,\n  \"spa\": 62907,\n  \"space-shuttle\": 61847,\n  \"space-station-moon-alt\": 57396,\n  \"space-station-moon-construction\": 57396,\n  \"space-station-moon\": 57395,\n  \"spade\": 62196,\n  \"spaghetti-monster-flying\": 63099,\n  \"sparkle\": 58838,\n  \"sparkles\": 63632,\n  \"speaker\": 63711,\n  \"speakers\": 63712,\n  \"spell-check\": 63633,\n  \"spider-black-widow\": 63256,\n  \"spider-web\": 63257,\n  \"spider\": 63255,\n  \"spine\": 59233,\n  \"spinner-scale\": 58922,\n  \"spinner-third\": 62452,\n  \"spinner\": 61712,\n  \"spiral\": 59402,\n  \"split\": 57940,\n  \"splotch\": 62908,\n  \"spoon\": 62181,\n  \"sportsball\": 58443,\n  \"spray-can-sparkles\": 62928,\n  \"spray-can\": 62909,\n  \"sprinkler-ceiling\": 58444,\n  \"sprinkler\": 57397,\n  \"sprout\": 62680,\n  \"square-0\": 57941,\n  \"square-1\": 57942,\n  \"square-2\": 57943,\n  \"square-3\": 57944,\n  \"square-4\": 57945,\n  \"square-5\": 57946,\n  \"square-6\": 57947,\n  \"square-7\": 57948,\n  \"square-8\": 57949,\n  \"square-9\": 57950,\n  \"square-a-lock\": 58445,\n  \"square-a\": 57951,\n  \"square-ampersand\": 57952,\n  \"square-arrow-down-left\": 57953,\n  \"square-arrow-down-right\": 57954,\n  \"square-arrow-down\": 62265,\n  \"square-arrow-left\": 62266,\n  \"square-arrow-right\": 62267,\n  \"square-arrow-up-left\": 57955,\n  \"square-arrow-up-right\": 61772,\n  \"square-arrow-up\": 62268,\n  \"square-austral\": 59174,\n  \"square-australian-dollar\": 59160,\n  \"square-b\": 57956,\n  \"square-baht\": 59161,\n  \"square-bangladeshi-taka\": 59204,\n  \"square-binary\": 59035,\n  \"square-bitcoin\": 59122,\n  \"square-bolt\": 57957,\n  \"square-brazilian-real\": 59121,\n  \"square-c\": 57958,\n  \"square-caret-down\": 61776,\n  \"square-caret-left\": 61841,\n  \"square-caret-right\": 61778,\n  \"square-caret-up\": 61777,\n  \"square-cedi\": 59177,\n  \"square-cent\": 59120,\n  \"square-check\": 61770,\n  \"square-chevron-down\": 62249,\n  \"square-chevron-left\": 62250,\n  \"square-chevron-right\": 62251,\n  \"square-chevron-up\": 62252,\n  \"square-chf\": 59110,\n  \"square-code\": 57959,\n  \"square-colon\": 59194,\n  \"square-cruzeiro\": 59117,\n  \"square-currency\": 59148,\n  \"square-d\": 57960,\n  \"square-danish-krone\": 59207,\n  \"square-dashed-circle-plus\": 58818,\n  \"square-dashed\": 57961,\n  \"square-divide\": 57962,\n  \"square-dollar\": 62185,\n  \"square-dong\": 59151,\n  \"square-down-left\": 57963,\n  \"square-down-right\": 57964,\n  \"square-down\": 62288,\n  \"square-e\": 57965,\n  \"square-ellipsis-vertical\": 57967,\n  \"square-ellipsis\": 57966,\n  \"square-envelope\": 61849,\n  \"square-equals\": 59062,\n  \"square-euro\": 59186,\n  \"square-eurozone\": 59175,\n  \"square-exclamation\": 62241,\n  \"square-f\": 57968,\n  \"square-florin\": 59159,\n  \"square-fragile\": 62619,\n  \"square-franc\": 59183,\n  \"square-full\": 62556,\n  \"square-g\": 57969,\n  \"square-guarani\": 59150,\n  \"square-h\": 61693,\n  \"square-half-horizontal\": 59406,\n  \"square-half-stroke-horizontal\": 59407,\n  \"square-half-stroke\": 59283,\n  \"square-half\": 59282,\n  \"square-heart\": 62664,\n  \"square-hryvnia\": 59152,\n  \"square-i\": 57970,\n  \"square-indian-rupee\": 59125,\n  \"square-info\": 62223,\n  \"square-j\": 57971,\n  \"square-k\": 57972,\n  \"square-kanban\": 58504,\n  \"square-kip\": 59149,\n  \"square-l\": 57973,\n  \"square-lari\": 59199,\n  \"square-left\": 62289,\n  \"square-lira\": 59111,\n  \"square-list\": 58505,\n  \"square-litecoin\": 59127,\n  \"square-m\": 57974,\n  \"square-malaysian-ringgit\": 59208,\n  \"square-manat\": 59140,\n  \"square-microphone\": 59265,\n  \"square-mill\": 59146,\n  \"square-minus\": 61766,\n  \"square-n\": 57975,\n  \"square-naira\": 59144,\n  \"square-nfi\": 58742,\n  \"square-norwegian-krone\": 59143,\n  \"square-o\": 57976,\n  \"square-p\": 57977,\n  \"square-parking-slash\": 62999,\n  \"square-parking\": 62784,\n  \"square-pen\": 61771,\n  \"square-person-confined\": 58743,\n  \"square-peruvian-soles\": 59158,\n  \"square-peseta\": 59114,\n  \"square-peso\": 59162,\n  \"square-phone-flip\": 63611,\n  \"square-phone-hangup\": 57978,\n  \"square-phone\": 61592,\n  \"square-plus\": 61694,\n  \"square-polish-zloty\": 59190,\n  \"square-poll-horizontal\": 63106,\n  \"square-poll-vertical\": 63105,\n  \"square-q\": 57979,\n  \"square-quarters\": 58446,\n  \"square-question\": 62205,\n  \"square-quote\": 58153,\n  \"square-r\": 57980,\n  \"square-renminbi\": 59197,\n  \"square-right\": 62290,\n  \"square-ring\": 58447,\n  \"square-root-alt\": 63128,\n  \"square-root-variable\": 63128,\n  \"square-root\": 63127,\n  \"square-rss\": 61763,\n  \"square-ruble\": 59128,\n  \"square-rupee\": 59157,\n  \"square-rupiah\": 59154,\n  \"square-s\": 57981,\n  \"square-share-nodes\": 61921,\n  \"square-shekel\": 59189,\n  \"square-sliders-vertical\": 62450,\n  \"square-sliders\": 62448,\n  \"square-small\": 57982,\n  \"square-star\": 57983,\n  \"square-sterling\": 59155,\n  \"square-swedish-krona\": 59164,\n  \"square-t\": 57984,\n  \"square-tenge\": 59185,\n  \"square-terminal\": 58154,\n  \"square-this-way-up\": 62623,\n  \"square-tugrik\": 59176,\n  \"square-turkish-lira\": 59167,\n  \"square-u\": 57985,\n  \"square-up-left\": 57986,\n  \"square-up-right\": 62304,\n  \"square-up\": 62291,\n  \"square-user\": 57987,\n  \"square-v\": 57988,\n  \"square-virus\": 58744,\n  \"square-w\": 57989,\n  \"square-wine-glass-crack\": 62619,\n  \"square-won\": 59145,\n  \"square-x\": 57990,\n  \"square-xmark\": 62163,\n  \"square-y\": 57991,\n  \"square-yen\": 59172,\n  \"square-z\": 57992,\n  \"square\": 61640,\n  \"squareapore-dollar\": 59187,\n  \"squid\": 58448,\n  \"squirrel\": 63258,\n  \"stadium\": 59084,\n  \"staff-aesculapius\": 58745,\n  \"staff-snake\": 58745,\n  \"staff\": 63259,\n  \"stair-car\": 59333,\n  \"stairs\": 57993,\n  \"stamp\": 62911,\n  \"standard-definition\": 57994,\n  \"stapler\": 58799,\n  \"star-and-crescent\": 63129,\n  \"star-christmas\": 63444,\n  \"star-circle\": 57635,\n  \"star-exclamation\": 62195,\n  \"star-half-alt\": 62912,\n  \"star-half-stroke\": 62912,\n  \"star-half\": 61577,\n  \"star-of-david\": 63130,\n  \"star-of-life\": 63009,\n  \"star-sharp-half-alt\": 57997,\n  \"star-sharp-half-stroke\": 57997,\n  \"star-sharp-half\": 57996,\n  \"star-sharp\": 57995,\n  \"star-shooting\": 57398,\n  \"star\": 61445,\n  \"starfighter-alt-advanced\": 57998,\n  \"starfighter-alt\": 57400,\n  \"starfighter-twin-ion-engine-advanced\": 57998,\n  \"starfighter-twin-ion-engine\": 57400,\n  \"starfighter\": 57399,\n  \"stars\": 63330,\n  \"starship-freighter\": 57402,\n  \"starship\": 57401,\n  \"steak\": 63524,\n  \"steering-wheel\": 63010,\n  \"step-backward\": 61512,\n  \"step-forward\": 61521,\n  \"sterling-sign\": 61780,\n  \"stethoscope\": 61681,\n  \"sticky-note\": 62025,\n  \"stocking\": 63445,\n  \"stomach\": 63011,\n  \"stool\": 59520,\n  \"stop-circle\": 62093,\n  \"stop\": 61517,\n  \"stopwatch-20\": 57455,\n  \"stopwatch\": 62194,\n  \"store-24\": 59291,\n  \"store-alt-slash\": 57456,\n  \"store-alt\": 62799,\n  \"store-lock\": 58534,\n  \"store-slash\": 57457,\n  \"store\": 62798,\n  \"strawberry\": 58155,\n  \"stream\": 62800,\n  \"street-view\": 61981,\n  \"stretcher\": 63525,\n  \"strikethrough\": 61644,\n  \"stroopwafel\": 62801,\n  \"subscript\": 61740,\n  \"subtitles-slash\": 58896,\n  \"subtitles\": 58895,\n  \"subtract\": 61544,\n  \"subway-tunnel\": 58019,\n  \"subway\": 62009,\n  \"suitcase-medical\": 61690,\n  \"suitcase-rolling\": 62913,\n  \"suitcase\": 61682,\n  \"sun-alt\": 57999,\n  \"sun-bright\": 57999,\n  \"sun-cloud\": 63331,\n  \"sun-dust\": 63332,\n  \"sun-haze\": 63333,\n  \"sun-plant-wilt\": 58746,\n  \"sun\": 61829,\n  \"sunglasses\": 63634,\n  \"sunrise\": 63334,\n  \"sunset\": 63335,\n  \"superscript\": 61739,\n  \"surprise\": 62914,\n  \"sushi-roll\": 58507,\n  \"sushi\": 58506,\n  \"swap-arrows\": 58890,\n  \"swap\": 58889,\n  \"swatchbook\": 62915,\n  \"swedish-krona-sign\": 59198,\n  \"swimmer\": 62916,\n  \"swimming-pool\": 62917,\n  \"sword-laser-alt\": 57404,\n  \"sword-laser\": 57403,\n  \"sword\": 63260,\n  \"swords-laser\": 57405,\n  \"swords\": 63261,\n  \"symbols\": 63598,\n  \"synagogue\": 63131,\n  \"sync-alt\": 62193,\n  \"sync\": 61473,\n  \"syringe\": 62606,\n  \"t-rex\": 58921,\n  \"t-shirt\": 62803,\n  \"t\": 84,\n  \"table-bar\": 59550,\n  \"table-cells-column-lock\": 59000,\n  \"table-cells-column-unlock\": 59024,\n  \"table-cells-columns\": 59052,\n  \"table-cells-header-lock\": 59054,\n  \"table-cells-header-unlock\": 59055,\n  \"table-cells-header\": 59053,\n  \"table-cells-large\": 61449,\n  \"table-cells-lock\": 59001,\n  \"table-cells-merge\": 59532,\n  \"table-cells-row-lock\": 59002,\n  \"table-cells-row-unlock\": 59025,\n  \"table-cells-rows\": 59056,\n  \"table-cells-split\": 59533,\n  \"table-cells-unlock\": 59026,\n  \"table-cells\": 61450,\n  \"table-columns-add-after\": 59534,\n  \"table-columns-add-before\": 59535,\n  \"table-columns-merge-next\": 59536,\n  \"table-columns-merge-previous\": 59537,\n  \"table-columns-remove-after\": 59538,\n  \"table-columns-remove-before\": 59539,\n  \"table-columns\": 61659,\n  \"table-dining\": 59522,\n  \"table-layout\": 58000,\n  \"table-list\": 61451,\n  \"table-picnic\": 58157,\n  \"table-pivot\": 58001,\n  \"table-rows-add-above\": 59540,\n  \"table-rows-add-below\": 59541,\n  \"table-rows-merge-next\": 59542,\n  \"table-rows-merge-previous\": 59543,\n  \"table-rows-remove-above\": 59544,\n  \"table-rows-remove-below\": 59545,\n  \"table-rows\": 58002,\n  \"table-slash\": 59546,\n  \"table-tennis-paddle-ball\": 62557,\n  \"table-tennis\": 62557,\n  \"table-tree\": 58003,\n  \"table\": 61646,\n  \"tablet-alt\": 62458,\n  \"tablet-android-alt\": 62460,\n  \"tablet-android\": 62459,\n  \"tablet-button\": 61706,\n  \"tablet-rugged\": 62607,\n  \"tablet-screen-button\": 62458,\n  \"tablet-screen\": 62460,\n  \"tablet\": 62459,\n  \"tablets\": 62608,\n  \"tachograph-digital\": 62822,\n  \"tachometer-alt-average\": 63012,\n  \"tachometer-alt-fast\": 63013,\n  \"tachometer-alt-fastest\": 63014,\n  \"tachometer-alt-slow\": 63015,\n  \"tachometer-alt-slowest\": 63016,\n  \"tachometer-alt\": 63013,\n  \"tachometer-average\": 63017,\n  \"tachometer-fast\": 63018,\n  \"tachometer-fastest\": 63019,\n  \"tachometer-slow\": 63020,\n  \"tachometer-slowest\": 63021,\n  \"tachometer\": 63018,\n  \"taco\": 63526,\n  \"tag\": 61483,\n  \"tags\": 61484,\n  \"tally-1\": 58004,\n  \"tally-2\": 58005,\n  \"tally-3\": 58006,\n  \"tally-4\": 58007,\n  \"tally-5\": 63132,\n  \"tally\": 63132,\n  \"tamale\": 58449,\n  \"tanakh\": 63527,\n  \"tank-recovery\": 59429,\n  \"tank-water\": 58450,\n  \"tape\": 62683,\n  \"tarp-droplet\": 58748,\n  \"tarp\": 58747,\n  \"tasks-alt\": 63528,\n  \"tasks\": 61614,\n  \"taurus\": 59471,\n  \"taxi-bus\": 58008,\n  \"taxi\": 61882,\n  \"teddy-bear\": 58319,\n  \"teeth-open\": 63023,\n  \"teeth\": 63022,\n  \"telescope\": 57406,\n  \"teletype-answer\": 58041,\n  \"teletype\": 61924,\n  \"television\": 62060,\n  \"temperature-0\": 62155,\n  \"temperature-1\": 62154,\n  \"temperature-2\": 62153,\n  \"temperature-3\": 62152,\n  \"temperature-4\": 62151,\n  \"temperature-arrow-down\": 57407,\n  \"temperature-arrow-up\": 57408,\n  \"temperature-down\": 57407,\n  \"temperature-empty\": 62155,\n  \"temperature-frigid\": 63336,\n  \"temperature-full\": 62151,\n  \"temperature-half\": 62153,\n  \"temperature-high\": 63337,\n  \"temperature-hot\": 63338,\n  \"temperature-list\": 58009,\n  \"temperature-low\": 63339,\n  \"temperature-quarter\": 62154,\n  \"temperature-slash\": 59339,\n  \"temperature-snow\": 63336,\n  \"temperature-sun\": 63338,\n  \"temperature-three-quarters\": 62152,\n  \"temperature-up\": 57408,\n  \"tenge-sign\": 63447,\n  \"tenge\": 63447,\n  \"tennis-ball\": 62558,\n  \"tent-arrow-down-to-line\": 58750,\n  \"tent-arrow-left-right\": 58751,\n  \"tent-arrow-turn-left\": 58752,\n  \"tent-arrows-down\": 58753,\n  \"tent-circus\": 59085,\n  \"tent-double-peak\": 58919,\n  \"tent\": 58749,\n  \"tents\": 58754,\n  \"terminal\": 61728,\n  \"text-height\": 61492,\n  \"text-size\": 63636,\n  \"text-slash\": 63613,\n  \"text-width\": 61493,\n  \"text\": 63635,\n  \"th-large\": 61449,\n  \"th-list\": 61451,\n  \"th\": 61450,\n  \"theater-masks\": 63024,\n  \"thermometer-0\": 62155,\n  \"thermometer-1\": 62154,\n  \"thermometer-2\": 62153,\n  \"thermometer-3\": 62152,\n  \"thermometer-4\": 62151,\n  \"thermometer-empty\": 62155,\n  \"thermometer-full\": 62151,\n  \"thermometer-half\": 62153,\n  \"thermometer-quarter\": 62154,\n  \"thermometer-three-quarters\": 62152,\n  \"thermometer\": 62609,\n  \"theta\": 63134,\n  \"thought-bubble\": 58158,\n  \"thumb-tack-slash\": 59023,\n  \"thumb-tack\": 61581,\n  \"thumbs-down\": 61797,\n  \"thumbs-up\": 61796,\n  \"thumbtack-angle-slash\": 59218,\n  \"thumbtack-angle\": 59217,\n  \"thumbtack-slash\": 59023,\n  \"thumbtack\": 61581,\n  \"thunderstorm-moon\": 63341,\n  \"thunderstorm-sun\": 63342,\n  \"thunderstorm\": 63340,\n  \"tick\": 58159,\n  \"ticket-airline\": 58010,\n  \"ticket-alt\": 62463,\n  \"ticket-perforated-plane\": 58010,\n  \"ticket-perforated\": 58942,\n  \"ticket-plane\": 58010,\n  \"ticket-simple\": 62463,\n  \"ticket\": 61765,\n  \"tickets-airline\": 58011,\n  \"tickets-perforated-plane\": 58011,\n  \"tickets-perforated\": 58943,\n  \"tickets-plane\": 58011,\n  \"tickets-simple\": 58969,\n  \"tickets\": 58968,\n  \"tilde\": 126,\n  \"timeline-arrow\": 58013,\n  \"timeline\": 58012,\n  \"timer\": 58014,\n  \"times-circle\": 61527,\n  \"times-hexagon\": 62190,\n  \"times-octagon\": 62192,\n  \"times-rectangle\": 62480,\n  \"times-square\": 62163,\n  \"times-to-slot\": 63345,\n  \"times\": 61453,\n  \"tint-slash\": 62919,\n  \"tint\": 61507,\n  \"tire-flat\": 63026,\n  \"tire-pressure-warning\": 63027,\n  \"tire-rugged\": 63028,\n  \"tire\": 63025,\n  \"tired\": 62920,\n  \"toggle-large-off\": 58800,\n  \"toggle-large-on\": 58801,\n  \"toggle-off\": 61956,\n  \"toggle-on\": 61957,\n  \"toilet-paper-alt\": 63262,\n  \"toilet-paper-blank-under\": 58016,\n  \"toilet-paper-blank\": 63262,\n  \"toilet-paper-check\": 58802,\n  \"toilet-paper-reverse-alt\": 58016,\n  \"toilet-paper-reverse-slash\": 58017,\n  \"toilet-paper-reverse\": 58016,\n  \"toilet-paper-slash\": 57458,\n  \"toilet-paper-under-slash\": 58017,\n  \"toilet-paper-under\": 58016,\n  \"toilet-paper-xmark\": 58803,\n  \"toilet-paper\": 63262,\n  \"toilet-portable\": 58755,\n  \"toilet\": 63448,\n  \"toilets-portable\": 58756,\n  \"tomato\": 58160,\n  \"tombstone-alt\": 63265,\n  \"tombstone-blank\": 63265,\n  \"tombstone\": 63264,\n  \"toolbox\": 62802,\n  \"tools\": 63449,\n  \"tooth\": 62921,\n  \"toothbrush\": 63029,\n  \"torah\": 63136,\n  \"torii-gate\": 63137,\n  \"tornado\": 63343,\n  \"tower-broadcast\": 62745,\n  \"tower-cell\": 58757,\n  \"tower-control\": 58018,\n  \"tower-observation\": 58758,\n  \"tower-receive\": 59555,\n  \"tractor\": 63266,\n  \"trademark\": 62044,\n  \"traffic-cone\": 63030,\n  \"traffic-light-go\": 63032,\n  \"traffic-light-slow\": 63033,\n  \"traffic-light-stop\": 63034,\n  \"traffic-light\": 63031,\n  \"trailer\": 57409,\n  \"train-stop\": 59423,\n  \"train-subway-tunnel\": 58019,\n  \"train-subway\": 62009,\n  \"train-track\": 58451,\n  \"train-tram\": 58804,\n  \"train-tunnel\": 58452,\n  \"train\": 62008,\n  \"tram\": 63450,\n  \"transducer\": 59430,\n  \"transformer-bolt\": 58020,\n  \"transgender-alt\": 61989,\n  \"transgender\": 61989,\n  \"transmission\": 59394,\n  \"transporter-1\": 57411,\n  \"transporter-2\": 57412,\n  \"transporter-3\": 57413,\n  \"transporter-4\": 58021,\n  \"transporter-5\": 58022,\n  \"transporter-6\": 58023,\n  \"transporter-7\": 58024,\n  \"transporter-empty\": 57414,\n  \"transporter\": 57410,\n  \"trash-alt-slash\": 58029,\n  \"trash-alt\": 62189,\n  \"trash-arrow-turn-left\": 63637,\n  \"trash-arrow-up\": 63529,\n  \"trash-can-arrow-turn-left\": 63638,\n  \"trash-can-arrow-up\": 63530,\n  \"trash-can-check\": 58025,\n  \"trash-can-clock\": 58026,\n  \"trash-can-list\": 58027,\n  \"trash-can-plus\": 58028,\n  \"trash-can-slash\": 58029,\n  \"trash-can-undo\": 63638,\n  \"trash-can-xmark\": 58030,\n  \"trash-can\": 62189,\n  \"trash-check\": 58031,\n  \"trash-circle\": 57638,\n  \"trash-clock\": 58032,\n  \"trash-list\": 58033,\n  \"trash-plus\": 58034,\n  \"trash-restore-alt\": 63530,\n  \"trash-restore\": 63529,\n  \"trash-slash\": 58035,\n  \"trash-undo-alt\": 63638,\n  \"trash-undo\": 63637,\n  \"trash-xmark\": 58036,\n  \"trash\": 61944,\n  \"treasure-chest\": 63267,\n  \"tree-alt\": 62464,\n  \"tree-christmas\": 63451,\n  \"tree-city\": 58759,\n  \"tree-deciduous\": 62464,\n  \"tree-decorated\": 63452,\n  \"tree-large\": 63453,\n  \"tree-palm\": 63531,\n  \"tree\": 61883,\n  \"trees\": 63268,\n  \"trian-balbot\": 58460,\n  \"triangle-circle-square\": 63007,\n  \"triangle-exclamation\": 61553,\n  \"triangle-instrument\": 63714,\n  \"triangle-music\": 63714,\n  \"triangle-person-digging\": 63581,\n  \"triangle\": 62188,\n  \"tricycle-adult\": 58820,\n  \"tricycle\": 58819,\n  \"trillium\": 58760,\n  \"triple-chevrons-down\": 59383,\n  \"triple-chevrons-left\": 59384,\n  \"triple-chevrons-right\": 59385,\n  \"triple-chevrons-up\": 59386,\n  \"trombone\": 59266,\n  \"trophy-alt\": 62187,\n  \"trophy-star\": 62187,\n  \"trophy\": 61585,\n  \"trowel-bricks\": 58762,\n  \"trowel\": 58761,\n  \"truck-arrow-right\": 58763,\n  \"truck-bolt\": 58320,\n  \"truck-clock\": 62604,\n  \"truck-container-empty\": 58037,\n  \"truck-container\": 62684,\n  \"truck-couch\": 62685,\n  \"truck-droplet\": 58764,\n  \"truck-fast\": 62603,\n  \"truck-field-un\": 58766,\n  \"truck-field\": 58765,\n  \"truck-fire\": 58970,\n  \"truck-flatbed\": 58038,\n  \"truck-front\": 58039,\n  \"truck-ladder\": 58967,\n  \"truck-loading\": 62686,\n  \"truck-medical\": 61689,\n  \"truck-monster\": 63035,\n  \"truck-moving\": 62687,\n  \"truck-pickup\": 63036,\n  \"truck-plane\": 58767,\n  \"truck-plow\": 63454,\n  \"truck-ramp-box\": 62686,\n  \"truck-ramp-couch\": 62685,\n  \"truck-ramp\": 62688,\n  \"truck-suv\": 59334,\n  \"truck-tow\": 58040,\n  \"truck-utensils\": 58920,\n  \"truck\": 61649,\n  \"trumpet\": 63715,\n  \"try\": 58043,\n  \"tshirt\": 62803,\n  \"tty-answer\": 58041,\n  \"tty\": 61924,\n  \"tugrik-sign\": 58042,\n  \"turkey\": 63269,\n  \"turkish-lira-sign\": 58043,\n  \"turkish-lira\": 58043,\n  \"turn-down-left\": 58161,\n  \"turn-down-right\": 58453,\n  \"turn-down\": 62398,\n  \"turn-left-down\": 58935,\n  \"turn-left-up\": 58936,\n  \"turn-left\": 58934,\n  \"turn-right\": 58937,\n  \"turn-up\": 62399,\n  \"turntable\": 63716,\n  \"turtle\": 63270,\n  \"tv-alt\": 62060,\n  \"tv-music\": 63718,\n  \"tv-retro\": 62465,\n  \"tv\": 62060,\n  \"typewriter\": 63719,\n  \"u-turn-down-left\": 59375,\n  \"u-turn-down-right\": 59376,\n  \"u-turn-left-down\": 59377,\n  \"u-turn-left-up\": 59378,\n  \"u-turn-right-down\": 59379,\n  \"u-turn-right-up\": 59380,\n  \"u-turn-up-left\": 59381,\n  \"u-turn-up-right\": 59382,\n  \"u-turn\": 59377,\n  \"u\": 85,\n  \"ufo-beam\": 57416,\n  \"ufo\": 57415,\n  \"umbrella-alt\": 58044,\n  \"umbrella-beach\": 62922,\n  \"umbrella-simple\": 58044,\n  \"umbrella\": 61673,\n  \"underline\": 61645,\n  \"undo-alt\": 62186,\n  \"undo\": 61666,\n  \"unicorn\": 63271,\n  \"unicycle\": 59335,\n  \"uniform-martial-arts\": 58321,\n  \"union\": 63138,\n  \"universal-access\": 62106,\n  \"university\": 61852,\n  \"unlink\": 61735,\n  \"unlock-alt\": 61758,\n  \"unlock-keyhole\": 61758,\n  \"unlock\": 61596,\n  \"unsorted\": 61660,\n  \"up-down-left-right\": 61618,\n  \"up-down\": 62264,\n  \"up-from-bracket\": 58768,\n  \"up-from-dotted-line\": 58454,\n  \"up-from-line\": 62278,\n  \"up-left\": 58045,\n  \"up-long-to-line\": 59078,\n  \"up-long\": 62220,\n  \"up-right-and-down-left-from-center\": 62500,\n  \"up-right-from-square\": 62301,\n  \"up-right\": 58046,\n  \"up-to-bracket\": 58990,\n  \"up-to-dotted-line\": 58455,\n  \"up-to-line\": 62285,\n  \"up\": 62295,\n  \"upload\": 61587,\n  \"usb-drive\": 63721,\n  \"usd-circle\": 62184,\n  \"usd-square\": 62185,\n  \"usd\": 36,\n  \"user-alien\": 57418,\n  \"user-alt-slash\": 62726,\n  \"user-alt\": 61447,\n  \"user-astronaut\": 62715,\n  \"user-beard-bolt\": 59017,\n  \"user-beard\": 59304,\n  \"user-bounty-hunter\": 58047,\n  \"user-chart\": 63139,\n  \"user-check\": 62716,\n  \"user-chef-hair-long\": 59305,\n  \"user-chef\": 58322,\n  \"user-circle-minus\": 59306,\n  \"user-circle-plus\": 59307,\n  \"user-circle\": 62141,\n  \"user-clock\": 62717,\n  \"user-cog\": 62718,\n  \"user-construction\": 63532,\n  \"user-cowboy\": 63722,\n  \"user-crown\": 63140,\n  \"user-dashed\": 59308,\n  \"user-doctor-hair-long\": 58457,\n  \"user-doctor-hair-mullet\": 59309,\n  \"user-doctor-hair\": 58456,\n  \"user-doctor-message\": 63534,\n  \"user-doctor\": 61680,\n  \"user-edit\": 62719,\n  \"user-friends\": 62720,\n  \"user-gear\": 62718,\n  \"user-graduate\": 62721,\n  \"user-group-crown\": 63141,\n  \"user-group-simple\": 58883,\n  \"user-group\": 62720,\n  \"user-hair-buns\": 58323,\n  \"user-hair-long\": 58459,\n  \"user-hair-mullet\": 58460,\n  \"user-hair\": 58458,\n  \"user-hard-hat\": 63532,\n  \"user-hat-tie-magnifying-glass\": 59311,\n  \"user-hat-tie\": 59310,\n  \"user-headset\": 63533,\n  \"user-helmet-safety\": 63532,\n  \"user-hoodie\": 59018,\n  \"user-injured\": 63272,\n  \"user-key\": 59312,\n  \"user-large-slash\": 62726,\n  \"user-large\": 61447,\n  \"user-lock\": 62722,\n  \"user-magnifying-glass\": 58821,\n  \"user-md-chat\": 63534,\n  \"user-md\": 61680,\n  \"user-message\": 59313,\n  \"user-microphone\": 59314,\n  \"user-minus\": 62723,\n  \"user-music\": 63723,\n  \"user-ninja\": 62724,\n  \"user-nurse-hair-long\": 58462,\n  \"user-nurse-hair\": 58461,\n  \"user-nurse\": 63535,\n  \"user-pen\": 62719,\n  \"user-pilot-hair-long\": 59315,\n  \"user-pilot-tie-hair-long\": 59316,\n  \"user-pilot-tie\": 58049,\n  \"user-pilot\": 58048,\n  \"user-plus\": 62004,\n  \"user-police-hair-long\": 59317,\n  \"user-police-tie-hair-long\": 59318,\n  \"user-police-tie\": 58164,\n  \"user-police\": 58163,\n  \"user-question\": 59319,\n  \"user-robot-xmarks\": 58535,\n  \"user-robot\": 57419,\n  \"user-secret\": 61979,\n  \"user-shakespeare\": 58050,\n  \"user-shield\": 62725,\n  \"user-sith\": 59320,\n  \"user-slash\": 62726,\n  \"user-tag\": 62727,\n  \"user-tie-hair-long\": 58464,\n  \"user-tie-hair-mullet\": 59321,\n  \"user-tie-hair\": 58463,\n  \"user-tie\": 62728,\n  \"user-times\": 62005,\n  \"user-unlock\": 57432,\n  \"user-viewfinder\": 59253,\n  \"user-visor\": 57420,\n  \"user-vneck-hair-long\": 58467,\n  \"user-vneck-hair-mullet\": 59322,\n  \"user-vneck-hair\": 58466,\n  \"user-vneck\": 58465,\n  \"user-xmark\": 62005,\n  \"user\": 61447,\n  \"users-between-lines\": 58769,\n  \"users-class\": 63037,\n  \"users-cog\": 62729,\n  \"users-crown\": 63141,\n  \"users-gear\": 62729,\n  \"users-line\": 58770,\n  \"users-medical\": 63536,\n  \"users-rays\": 58771,\n  \"users-rectangle\": 58772,\n  \"users-slash\": 57459,\n  \"users-viewfinder\": 58773,\n  \"users\": 61632,\n  \"utensil-fork\": 62179,\n  \"utensil-knife\": 62180,\n  \"utensil-spoon\": 62181,\n  \"utensils-alt\": 62182,\n  \"utensils-slash\": 58468,\n  \"utensils\": 62183,\n  \"utility-can\": 59549,\n  \"utility-pole-double\": 58052,\n  \"utility-pole\": 58051,\n  \"v\": 86,\n  \"vacuum-robot\": 57422,\n  \"vacuum\": 57421,\n  \"value-absolute\": 63142,\n  \"van-shuttle\": 62902,\n  \"van\": 59336,\n  \"vault\": 58053,\n  \"vcard\": 62139,\n  \"vector-circle\": 62957,\n  \"vector-polygon\": 62958,\n  \"vector-square\": 62959,\n  \"vent-damper\": 58469,\n  \"venus-double\": 61990,\n  \"venus-mars\": 61992,\n  \"venus\": 61985,\n  \"vest-patches\": 57478,\n  \"vest\": 57477,\n  \"vhs\": 63724,\n  \"vial-circle-check\": 58774,\n  \"vial-vertical\": 59234,\n  \"vial-virus\": 58775,\n  \"vial\": 62610,\n  \"vials\": 62611,\n  \"video-arrow-down-left\": 58056,\n  \"video-arrow-up-right\": 58057,\n  \"video-camera\": 61501,\n  \"video-circle\": 57643,\n  \"video-down-to-line\": 59254,\n  \"video-handheld\": 63656,\n  \"video-plus\": 62689,\n  \"video-question\": 59255,\n  \"video-slash\": 62690,\n  \"video\": 61501,\n  \"vihara\": 63143,\n  \"violin\": 63725,\n  \"virgo\": 59472,\n  \"virus-covid-slash\": 58537,\n  \"virus-covid\": 58536,\n  \"virus-slash\": 57461,\n  \"virus\": 57460,\n  \"viruses\": 57462,\n  \"voicemail\": 63639,\n  \"volcano\": 63344,\n  \"volleyball-ball\": 62559,\n  \"volleyball\": 62559,\n  \"volume-control-phone\": 62112,\n  \"volume-down\": 61479,\n  \"volume-high\": 61480,\n  \"volume-low\": 61479,\n  \"volume-medium\": 63144,\n  \"volume-mute\": 63145,\n  \"volume-off\": 61478,\n  \"volume-slash\": 62178,\n  \"volume-times\": 63145,\n  \"volume-up\": 61480,\n  \"volume-xmark\": 63145,\n  \"volume\": 63144,\n  \"vote-nay\": 63345,\n  \"vote-yea\": 63346,\n  \"vr-cardboard\": 63273,\n  \"w\": 87,\n  \"waffle\": 58470,\n  \"wagon-covered\": 63726,\n  \"walker\": 63537,\n  \"walkie-talkie\": 63727,\n  \"walking\": 62804,\n  \"wall-brick\": 58331,\n  \"wallet\": 62805,\n  \"wand-magic-sparkles\": 58058,\n  \"wand-magic\": 61648,\n  \"wand-sparkles\": 63275,\n  \"wand\": 63274,\n  \"wardrobe\": 59521,\n  \"warehouse-alt\": 62613,\n  \"warehouse-full\": 62613,\n  \"warehouse\": 62612,\n  \"warning\": 61553,\n  \"washer\": 63640,\n  \"washing-machine\": 63640,\n  \"watch-apple\": 58059,\n  \"watch-calculator\": 63728,\n  \"watch-fitness\": 63038,\n  \"watch-smart\": 58060,\n  \"watch\": 62177,\n  \"water-arrow-down\": 63348,\n  \"water-arrow-up\": 63349,\n  \"water-ladder\": 62917,\n  \"water-lower\": 63348,\n  \"water-rise\": 63349,\n  \"water-temp\": 59434,\n  \"water-temperature\": 59434,\n  \"water\": 63347,\n  \"watermelon-slice\": 58167,\n  \"wave-pulse\": 62968,\n  \"wave-sine\": 63641,\n  \"wave-square\": 63550,\n  \"wave-triangle\": 63642,\n  \"wave\": 58971,\n  \"waveform-circle\": 57645,\n  \"waveform-lines\": 63730,\n  \"waveform-path\": 63730,\n  \"waveform\": 63729,\n  \"waves-sine\": 58973,\n  \"web-awesome\": 59010,\n  \"webcam-slash\": 63539,\n  \"webcam\": 63538,\n  \"webhook\": 58837,\n  \"weight-hanging\": 62925,\n  \"weight-scale\": 62614,\n  \"weight\": 62614,\n  \"whale\": 63276,\n  \"wheat-alt\": 58061,\n  \"wheat-awn-circle-exclamation\": 58776,\n  \"wheat-awn-slash\": 58168,\n  \"wheat-awn\": 58061,\n  \"wheat-slash\": 58169,\n  \"wheat\": 63277,\n  \"wheelchair-alt\": 58062,\n  \"wheelchair-move\": 58062,\n  \"wheelchair\": 61843,\n  \"whiskey-glass-ice\": 63393,\n  \"whiskey-glass\": 63392,\n  \"whistle\": 62560,\n  \"wifi-1\": 63146,\n  \"wifi-2\": 63147,\n  \"wifi-3\": 61931,\n  \"wifi-exclamation\": 58063,\n  \"wifi-fair\": 63147,\n  \"wifi-slash\": 63148,\n  \"wifi-strong\": 61931,\n  \"wifi-weak\": 63146,\n  \"wifi\": 61931,\n  \"wind-circle-exclamation\": 63350,\n  \"wind-turbine\": 63643,\n  \"wind-warning\": 63350,\n  \"wind\": 63278,\n  \"window-alt\": 62479,\n  \"window-close\": 62480,\n  \"window-flip\": 62479,\n  \"window-frame-open\": 57424,\n  \"window-frame\": 57423,\n  \"window-maximize\": 62160,\n  \"window-minimize\": 62161,\n  \"window-restore\": 62162,\n  \"window\": 62478,\n  \"windsock\": 63351,\n  \"wine-bottle\": 63279,\n  \"wine-glass-alt\": 62926,\n  \"wine-glass-crack\": 62651,\n  \"wine-glass-empty\": 62926,\n  \"wine-glass\": 62691,\n  \"wireless\": 59359,\n  \"won-sign\": 61785,\n  \"won\": 61785,\n  \"worm\": 58777,\n  \"wreath-laurel\": 58834,\n  \"wreath\": 63458,\n  \"wrench-simple\": 58065,\n  \"wrench\": 61613,\n  \"x-ray\": 62615,\n  \"x\": 88,\n  \"xmark-circle\": 61527,\n  \"xmark-hexagon\": 62190,\n  \"xmark-large\": 58779,\n  \"xmark-octagon\": 62192,\n  \"xmark-square\": 62163,\n  \"xmark-to-slot\": 63345,\n  \"xmark\": 61453,\n  \"xmarks-lines\": 58778,\n  \"y\": 89,\n  \"yen-sign\": 61783,\n  \"yen\": 61783,\n  \"yin-yang\": 63149,\n  \"z\": 90,\n  \"zap\": 61671,\n  \"zzz\": 63616\n}"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-thin/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontawesome-pro-sharp-duotone-thin\",\n  \"version\": \"0.2.0\",\n  \"description\": \"Fontawesome Pro Sharp Duotone Thin font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"fontawesome-pro-sharp-duotone-thin\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/fontawesome-pro-sharp-duotone-thin\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-thin/react-native-vector-icons-fontawesome-pro-sharp-duotone-thin.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-fontawesome-pro-sharp-duotone-thin'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\n\n  s.script_phase = {\n    name: 'Copy Custom Fonts',\n    execution_position: :after_compile,\n    script: <<~SCRIPT\n      set -e\n\n      HEAD=\"(RNVI-fontawesome-pro-sharp-duotone-thin)\"\n\n      echo \"${HEAD} START_COPY_FONTS\"\n\n      echo \"${HEAD} PWD: $(pwd)\"\n\n      #\n      # Find the custom font Directory\n      #\n\n      # Assume the project root is always two directories above the POD_ROOT\n      echo \"${HEAD} PODS_ROOT: $PODS_ROOT\"\n\n      PROJECT_ROOT=\"${PODS_ROOT}/../..\"\n      echo \"${HEAD} PROJECT_ROOT: $PROJECT_ROOT\"\n\n      cd $PROJECT_ROOT\n      FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/\"//g')\n      if [ -z \"$FONTS_DIR\" ]; then\n        FONTS_DIR=\"rnvi-fonts\"\n      fi\n      echo \"${HEAD} FONTS_DIR: $FONTS_DIR\"\n\n      FONTS_DIR=\"${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-sharp-duotone-thin\"\n      if [ ! -d \"$FONTS_DIR\" ]; then\n        echo \"${HEAD} $FONTS_DIR not found\"\n        exit 0\n      fi\n\n      #\n      # Find the destination we copy to\n      #\n\n      echo \"${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR\"\n      XCODE_DIR=$(ls -d \"$PODS_CONFIGURATION_BUILD_DIR\"/*.app)\n      echo \"${HEAD} XCODE_DIR: $XCODE_DIR\"\n      if [ -z \"$XCODE_DIR\" ]; then\n        echo \"Could not find XCODE_DIR to copy fonts to\"\n        exit 1\n      fi\n\n      DEST_DIR=\"${XCODE_DIR}\"\n      mkdir -p \"$DEST_DIR\"\n\n      #\n      # Copy the fonts\n      #\n\n      echo \"${HEAD} Copying the following files to $DEST_DIR\"\n      ls \"$FONTS_DIR\" | sed \"s/^/${HEAD} /\"\n\n      rsync -avr --copy-links --no-relative $FONTS_DIR/ \"$DEST_DIR\"\n\n      echo \"${HEAD} END:RNVI_COPY_FONTS\"\n    SCRIPT\n  }\nend\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-thin/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProSharpDuotoneThin icon set component.\n * Usage: <FontAwesomeProSharpDuotoneThin name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProSharpDuotoneThin.json';\n\nexport const FontAwesomeProSharpDuotoneThin = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7SharpDuotone-Thin',\n  fontFileName: 'fa-sharp-duotone-thin-100.ttf',\n});\n\nexport type FontAwesomeProSharpDuotoneThinIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProSharpDuotoneThin;\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-thin/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProSharpDuotoneThin icon set component.\n * Usage: <FontAwesomeProSharpDuotoneThin name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProSharpDuotoneThin.json';\n\nexport const FontAwesomeProSharpDuotoneThin = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7SharpDuotone-Thin',\n  fontFileName: 'fa-sharp-duotone-thin-100.ttf',\n});\n\nexport type FontAwesomeProSharpDuotoneThinIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProSharpDuotoneThin;\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-thin/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-duotone-thin/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-light/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontawesome-pro-sharp-light\",\n    \"upstreamFont\": {\n      \"registry\": \"https://npm.fontawesome.com\",\n      \"packageName\": \"@fortawesome/fontawesome-pro\",\n      \"versionOnly\": true\n    },\n    \"copyCustomFonts\": true,\n    \"className\": \"FontAwesomeProSharpLight\",\n    \"postScriptName\": \"FontAwesome7Sharp-Light\",\n    \"fontFileName\": \"fa-sharp-light-300\",\n    \"buildSteps\": {\n      \"preScript\": {\n        \"script\": \"../fontawesome-common/scripts/fetch-pro.sh 7\"\n      },\n      \"glyphmap\": {\n        \"location\": \"fa/pro/css/all.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fa-\"\n      },\n      \"postScript\": {\n        \"script\": \"../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProSharpLight.json fa/pro/svgs/sharp-light\\nrm -rf fa\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"0.1.0\",\n        \"upstream\": \"7.1.0\"\n      },\n      {\n        \"rnvi\": \"0.1.1\",\n        \"upstream\": \"7.2.0\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-light/CHANGELOG.md",
    "content": "## 0.2.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 0.1.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 0.1.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🩹 Fixes\n\n- upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 0.1.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 0.1.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontawesome-pro-sharp-light/README.md",
    "content": "# React Native Vector Icons - Fontawesome Pro Sharp Light\n\nFontawesome Pro Sharp Light font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n> [!IMPORTANT]\n> This package does not include the fonts. You must provide them yourself.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/fontawesome-pro-sharp-light\n```\n\n## Custom Fonts\n\nThis package requires you to provide the font files. Place your `.ttf` font\nfile in the following location:\n\n```\nrnvi-fonts/fontawesome-pro-sharp-light/fa-sharp-light-300.ttf\n```\n\nThe font will be automatically copied during the build process for both iOS and\nAndroid.\n\n## Usage\n\n```jsx\nimport { FontAwesomeProSharpLight } from '@react-native-vector-icons/fontawesome-pro-sharp-light';\n\n// ...\n\n<FontAwesomeProSharpLight name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 0.1.0 | 7.1.0 |\n| &gt; 0.1.1 | 7.2.0 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-light/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.fontawesome_pro_sharp_light\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFontAwesomeProSharpLight\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.fontawesome_pro_sharp_light\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-fontawesome-pro-sharp-light\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-light/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-sharp-light) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n\ntask copyExtraFonts(type: Copy) {\n  from \"${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-sharp-light\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-light/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-sharp-light) Copying custom font: ${it.file}\" }\n}\n\npreBuild.dependsOn(copyExtraFonts)\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-light/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.fontawesome_pro_sharp_light\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-light/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-light/android/src/main/java/VectorIconsFontAwesomeProSharpLightPackage.kt",
    "content": "package com.reactnativevectoricons.fontawesome_pro_sharp_light\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFontAwesomeProSharpLightPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-light/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-light/glyphmaps/FontAwesomeProSharpLight.json",
    "content": "{\n  \"0\": 48,\n  \"1\": 49,\n  \"2\": 50,\n  \"3\": 51,\n  \"4\": 52,\n  \"5\": 53,\n  \"6\": 54,\n  \"7\": 55,\n  \"8\": 56,\n  \"9\": 57,\n  \"100\": 58396,\n  \"00\": 58471,\n  \"360-degrees\": 58076,\n  \"a\": 65,\n  \"abacus\": 63040,\n  \"accent-grave\": 96,\n  \"acorn\": 63150,\n  \"ad\": 63041,\n  \"add\": 43,\n  \"address-book\": 62137,\n  \"address-card\": 62139,\n  \"adjust\": 61506,\n  \"aeropress\": 59435,\n  \"air-conditioner\": 63732,\n  \"air-freshener\": 62928,\n  \"airplay-audio\": 59259,\n  \"airplay\": 57481,\n  \"alarm-clock\": 62286,\n  \"alarm-exclamation\": 63555,\n  \"alarm-minus\": 59395,\n  \"alarm-plus\": 63556,\n  \"alarm-snooze\": 63557,\n  \"album-circle-plus\": 58508,\n  \"album-circle-user\": 58509,\n  \"album-collection-circle-plus\": 58510,\n  \"album-collection-circle-user\": 58511,\n  \"album-collection\": 63648,\n  \"album\": 63647,\n  \"alicorn\": 63152,\n  \"alien-8bit\": 63734,\n  \"alien-monster\": 63734,\n  \"alien\": 63733,\n  \"align-center\": 61495,\n  \"align-justify\": 61497,\n  \"align-left\": 61494,\n  \"align-right\": 61496,\n  \"align-slash\": 63558,\n  \"allergies\": 62561,\n  \"almost-equal-to\": 59416,\n  \"alt\": 57482,\n  \"ambulance\": 61689,\n  \"american-sign-language-interpreting\": 62115,\n  \"amp-guitar\": 63649,\n  \"ampersand\": 38,\n  \"analytics\": 63043,\n  \"anchor-circle-check\": 58538,\n  \"anchor-circle-exclamation\": 58539,\n  \"anchor-circle-xmark\": 58540,\n  \"anchor-lock\": 58541,\n  \"anchor\": 61757,\n  \"angel\": 63353,\n  \"angle-90\": 57485,\n  \"angle-double-down\": 61699,\n  \"angle-double-left\": 61696,\n  \"angle-double-right\": 61697,\n  \"angle-double-up\": 61698,\n  \"angle-down\": 61703,\n  \"angle-left\": 61700,\n  \"angle-right\": 61701,\n  \"angle-up\": 61702,\n  \"angle\": 57484,\n  \"angles-down\": 61699,\n  \"angles-left\": 61696,\n  \"angles-right\": 61697,\n  \"angles-up-down\": 58893,\n  \"angles-up\": 61698,\n  \"angry\": 62806,\n  \"ankh\": 63044,\n  \"ant\": 59008,\n  \"apartment\": 58472,\n  \"aperture\": 58079,\n  \"apostrophe\": 39,\n  \"apple-alt\": 62929,\n  \"apple-core\": 57487,\n  \"apple-crate\": 63153,\n  \"apple-whole\": 62929,\n  \"aquarius\": 59461,\n  \"archive\": 61831,\n  \"archway\": 62807,\n  \"area-chart\": 61950,\n  \"aries\": 59462,\n  \"arrow-alt-circle-down\": 62296,\n  \"arrow-alt-circle-left\": 62297,\n  \"arrow-alt-circle-right\": 62298,\n  \"arrow-alt-circle-up\": 62299,\n  \"arrow-alt-down\": 62292,\n  \"arrow-alt-from-bottom\": 62278,\n  \"arrow-alt-from-left\": 62279,\n  \"arrow-alt-from-right\": 62280,\n  \"arrow-alt-from-top\": 62281,\n  \"arrow-alt-left\": 62293,\n  \"arrow-alt-right\": 62294,\n  \"arrow-alt-square-down\": 62288,\n  \"arrow-alt-square-left\": 62289,\n  \"arrow-alt-square-right\": 62290,\n  \"arrow-alt-square-up\": 62291,\n  \"arrow-alt-to-bottom\": 62282,\n  \"arrow-alt-to-left\": 62283,\n  \"arrow-alt-to-right\": 62284,\n  \"arrow-alt-to-top\": 62285,\n  \"arrow-alt-up\": 62295,\n  \"arrow-archery\": 59449,\n  \"arrow-circle-down\": 61611,\n  \"arrow-circle-left\": 61608,\n  \"arrow-circle-right\": 61609,\n  \"arrow-circle-up\": 61610,\n  \"arrow-down-1-9\": 61794,\n  \"arrow-down-9-1\": 63622,\n  \"arrow-down-a-z\": 61789,\n  \"arrow-down-arrow-up\": 63619,\n  \"arrow-down-big-small\": 63628,\n  \"arrow-down-from-arc\": 58900,\n  \"arrow-down-from-bracket\": 58983,\n  \"arrow-down-from-dotted-line\": 57488,\n  \"arrow-down-from-line\": 62277,\n  \"arrow-down-left-and-arrow-up-right-to-center\": 57490,\n  \"arrow-down-left\": 57489,\n  \"arrow-down-long-to-line\": 59063,\n  \"arrow-down-long\": 61813,\n  \"arrow-down-right\": 57491,\n  \"arrow-down-short-wide\": 63620,\n  \"arrow-down-small-big\": 63629,\n  \"arrow-down-square-triangle\": 63625,\n  \"arrow-down-to-arc\": 58542,\n  \"arrow-down-to-bracket\": 57492,\n  \"arrow-down-to-dotted-line\": 57493,\n  \"arrow-down-to-line\": 62269,\n  \"arrow-down-to-square\": 57494,\n  \"arrow-down-triangle-square\": 63624,\n  \"arrow-down-up-across-line\": 58543,\n  \"arrow-down-up-lock\": 58544,\n  \"arrow-down-wide-short\": 61792,\n  \"arrow-down-z-a\": 63617,\n  \"arrow-down\": 61539,\n  \"arrow-from-bottom\": 62274,\n  \"arrow-from-left\": 62275,\n  \"arrow-from-right\": 62276,\n  \"arrow-from-top\": 62277,\n  \"arrow-left-arrow-right\": 59064,\n  \"arrow-left-from-arc\": 58901,\n  \"arrow-left-from-bracket\": 58984,\n  \"arrow-left-from-dotted-line\": 59065,\n  \"arrow-left-from-line\": 62276,\n  \"arrow-left-long-to-line\": 58324,\n  \"arrow-left-long\": 61815,\n  \"arrow-left-rotate\": 61666,\n  \"arrow-left-to-arc\": 58902,\n  \"arrow-left-to-bracket\": 58985,\n  \"arrow-left-to-dotted-line\": 59066,\n  \"arrow-left-to-line\": 62270,\n  \"arrow-left\": 61536,\n  \"arrow-pointer\": 62021,\n  \"arrow-progress\": 58847,\n  \"arrow-right-arrow-left\": 61676,\n  \"arrow-right-from-arc\": 58545,\n  \"arrow-right-from-bracket\": 61579,\n  \"arrow-right-from-dotted-line\": 59067,\n  \"arrow-right-from-file\": 62830,\n  \"arrow-right-from-line\": 62275,\n  \"arrow-right-long-to-line\": 58325,\n  \"arrow-right-long\": 61816,\n  \"arrow-right-rotate\": 61470,\n  \"arrow-right-to-arc\": 58546,\n  \"arrow-right-to-bracket\": 61584,\n  \"arrow-right-to-city\": 58547,\n  \"arrow-right-to-dotted-line\": 59068,\n  \"arrow-right-to-file\": 62831,\n  \"arrow-right-to-line\": 62272,\n  \"arrow-right\": 61537,\n  \"arrow-rotate-back\": 61666,\n  \"arrow-rotate-backward\": 61666,\n  \"arrow-rotate-forward\": 61470,\n  \"arrow-rotate-left-10\": 59446,\n  \"arrow-rotate-left-15\": 59526,\n  \"arrow-rotate-left-30\": 59527,\n  \"arrow-rotate-left\": 61666,\n  \"arrow-rotate-right-10\": 59447,\n  \"arrow-rotate-right-15\": 59528,\n  \"arrow-rotate-right-30\": 59529,\n  \"arrow-rotate-right\": 61470,\n  \"arrow-square-down\": 62265,\n  \"arrow-square-left\": 62266,\n  \"arrow-square-right\": 62267,\n  \"arrow-square-up\": 62268,\n  \"arrow-to-bottom\": 62269,\n  \"arrow-to-left\": 62270,\n  \"arrow-to-right\": 62272,\n  \"arrow-to-top\": 62273,\n  \"arrow-trend-down\": 57495,\n  \"arrow-trend-up\": 57496,\n  \"arrow-turn-down-left\": 58081,\n  \"arrow-turn-down-right\": 58326,\n  \"arrow-turn-down\": 61769,\n  \"arrow-turn-left-down\": 58931,\n  \"arrow-turn-left-up\": 58932,\n  \"arrow-turn-left\": 58930,\n  \"arrow-turn-right\": 58933,\n  \"arrow-turn-up\": 61768,\n  \"arrow-u-turn-down-left\": 59367,\n  \"arrow-u-turn-down-right\": 59368,\n  \"arrow-u-turn-left-down\": 59369,\n  \"arrow-u-turn-left-up\": 59370,\n  \"arrow-u-turn-right-down\": 59371,\n  \"arrow-u-turn-right-up\": 59372,\n  \"arrow-u-turn-up-left\": 59373,\n  \"arrow-u-turn-up-right\": 59374,\n  \"arrow-up-1-9\": 61795,\n  \"arrow-up-9-1\": 63623,\n  \"arrow-up-a-z\": 61790,\n  \"arrow-up-arrow-down\": 57497,\n  \"arrow-up-big-small\": 63630,\n  \"arrow-up-from-arc\": 58548,\n  \"arrow-up-from-bracket\": 57498,\n  \"arrow-up-from-dotted-line\": 57499,\n  \"arrow-up-from-ground-water\": 58549,\n  \"arrow-up-from-line\": 62274,\n  \"arrow-up-from-square\": 57500,\n  \"arrow-up-from-water-pump\": 58550,\n  \"arrow-up-left-from-circle\": 57502,\n  \"arrow-up-left\": 57501,\n  \"arrow-up-long-to-line\": 59069,\n  \"arrow-up-long\": 61814,\n  \"arrow-up-right-and-arrow-down-left-from-center\": 57504,\n  \"arrow-up-right-dots\": 58551,\n  \"arrow-up-right-from-square\": 61582,\n  \"arrow-up-right\": 57503,\n  \"arrow-up-short-wide\": 63621,\n  \"arrow-up-small-big\": 63631,\n  \"arrow-up-square-triangle\": 63627,\n  \"arrow-up-to-arc\": 58903,\n  \"arrow-up-to-bracket\": 58986,\n  \"arrow-up-to-dotted-line\": 57505,\n  \"arrow-up-to-line\": 62273,\n  \"arrow-up-triangle-square\": 63626,\n  \"arrow-up-wide-short\": 61793,\n  \"arrow-up-z-a\": 63618,\n  \"arrow-up\": 61538,\n  \"arrows-alt-h\": 62263,\n  \"arrows-alt-v\": 62264,\n  \"arrows-alt\": 61618,\n  \"arrows-cross\": 57506,\n  \"arrows-down-to-line\": 58552,\n  \"arrows-down-to-people\": 58553,\n  \"arrows-from-dotted-line\": 57507,\n  \"arrows-from-line\": 57508,\n  \"arrows-h\": 61566,\n  \"arrows-left-right-to-line\": 58554,\n  \"arrows-left-right\": 61566,\n  \"arrows-maximize\": 62237,\n  \"arrows-minimize\": 57509,\n  \"arrows-repeat-1\": 62310,\n  \"arrows-repeat\": 62308,\n  \"arrows-retweet\": 62305,\n  \"arrows-rotate-reverse\": 58928,\n  \"arrows-rotate\": 61473,\n  \"arrows-spin\": 58555,\n  \"arrows-split-up-and-left\": 58556,\n  \"arrows-to-circle\": 58557,\n  \"arrows-to-dot\": 58558,\n  \"arrows-to-dotted-line\": 57510,\n  \"arrows-to-eye\": 58559,\n  \"arrows-to-line\": 57511,\n  \"arrows-turn-right\": 58560,\n  \"arrows-turn-to-dots\": 58561,\n  \"arrows-up-down-left-right\": 61511,\n  \"arrows-up-down\": 61565,\n  \"arrows-up-to-line\": 58562,\n  \"arrows-v\": 61565,\n  \"arrows\": 61511,\n  \"asl-interpreting\": 62115,\n  \"assistive-listening-systems\": 62114,\n  \"asterisk\": 42,\n  \"at\": 64,\n  \"atlas\": 62808,\n  \"atom-alt\": 62931,\n  \"atom-simple\": 62931,\n  \"atom\": 62930,\n  \"audio-description-slash\": 57512,\n  \"audio-description\": 62110,\n  \"austral-sign\": 57513,\n  \"australian-dollar-sign\": 59134,\n  \"automobile\": 61881,\n  \"avocado\": 57514,\n  \"award-simple\": 57515,\n  \"award\": 62809,\n  \"axe-battle\": 63155,\n  \"axe\": 63154,\n  \"b\": 66,\n  \"baby-carriage\": 63357,\n  \"baby\": 63356,\n  \"backpack\": 62932,\n  \"backspace\": 62810,\n  \"backward-fast\": 61513,\n  \"backward-step\": 61512,\n  \"backward\": 61514,\n  \"bacon\": 63461,\n  \"bacteria\": 57433,\n  \"bacterium\": 57434,\n  \"badge-check\": 62262,\n  \"badge-dollar\": 63045,\n  \"badge-percent\": 63046,\n  \"badge-sheriff\": 63650,\n  \"badge\": 62261,\n  \"badger-honey\": 63156,\n  \"badminton\": 58170,\n  \"bag-seedling\": 58866,\n  \"bag-shopping-minus\": 58960,\n  \"bag-shopping-plus\": 58961,\n  \"bag-shopping\": 62096,\n  \"bagel\": 58327,\n  \"bags-shopping\": 63559,\n  \"baguette\": 58328,\n  \"bahai\": 63078,\n  \"baht-sign\": 57516,\n  \"balance-scale-left\": 62741,\n  \"balance-scale-right\": 62742,\n  \"balance-scale\": 62030,\n  \"ball-pile\": 63358,\n  \"ball-yarn\": 59086,\n  \"balloon\": 58083,\n  \"balloons\": 58084,\n  \"ballot-check\": 63283,\n  \"ballot\": 63282,\n  \"ban-bug\": 63481,\n  \"ban-parking\": 62998,\n  \"ban-smoking\": 62797,\n  \"ban\": 61534,\n  \"banana\": 58085,\n  \"band-aid\": 62562,\n  \"bandage\": 62562,\n  \"bangladeshi-taka-sign\": 58086,\n  \"banjo\": 63651,\n  \"bank\": 61852,\n  \"bar-chart\": 61568,\n  \"bar-progress-empty\": 59045,\n  \"bar-progress-full\": 59046,\n  \"bar-progress-half\": 59047,\n  \"bar-progress-quarter\": 59048,\n  \"bar-progress-three-quarters\": 59049,\n  \"bar-progress\": 59044,\n  \"barcode-alt\": 62563,\n  \"barcode-read\": 62564,\n  \"barcode-scan\": 62565,\n  \"barcode\": 61482,\n  \"barn-silo\": 63588,\n  \"barn\": 59079,\n  \"bars-filter\": 57517,\n  \"bars-progress\": 63528,\n  \"bars-sort\": 57518,\n  \"bars-staggered\": 62800,\n  \"bars\": 61641,\n  \"baseball-ball\": 62515,\n  \"baseball-bat-ball\": 62514,\n  \"baseball-bat\": 59365,\n  \"baseball\": 62515,\n  \"basket-shopping-minus\": 58962,\n  \"basket-shopping-plus\": 58963,\n  \"basket-shopping-simple\": 57519,\n  \"basket-shopping\": 62097,\n  \"basketball-ball\": 62516,\n  \"basketball-hoop\": 62517,\n  \"basketball\": 62516,\n  \"bat\": 63157,\n  \"bath\": 62157,\n  \"bathtub\": 62157,\n  \"battery-0\": 62020,\n  \"battery-1\": 57521,\n  \"battery-2\": 62019,\n  \"battery-3\": 62018,\n  \"battery-4\": 62017,\n  \"battery-5\": 62016,\n  \"battery-bolt\": 62326,\n  \"battery-car\": 62943,\n  \"battery-empty\": 62020,\n  \"battery-exclamation\": 57520,\n  \"battery-full\": 62016,\n  \"battery-half\": 62018,\n  \"battery-low\": 57521,\n  \"battery-quarter\": 62019,\n  \"battery-slash\": 62327,\n  \"battery-three-quarters\": 62017,\n  \"battery\": 62016,\n  \"bed-alt\": 63735,\n  \"bed-bunk\": 63736,\n  \"bed-empty\": 63737,\n  \"bed-front\": 63735,\n  \"bed-pulse\": 62599,\n  \"bed\": 62006,\n  \"bee\": 57522,\n  \"beer-foam\": 57523,\n  \"beer-mug-empty\": 61692,\n  \"beer-mug\": 57523,\n  \"beer\": 61692,\n  \"bell-concierge\": 62818,\n  \"bell-exclamation\": 63560,\n  \"bell-on\": 63738,\n  \"bell-plus\": 63561,\n  \"bell-ring\": 58924,\n  \"bell-school-slash\": 62934,\n  \"bell-school\": 62933,\n  \"bell-slash\": 61942,\n  \"bell\": 61683,\n  \"bells\": 63359,\n  \"bench-tree\": 58087,\n  \"betamax\": 63652,\n  \"bezier-curve\": 62811,\n  \"bible\": 63047,\n  \"bicep\": 59490,\n  \"bicycle\": 61958,\n  \"biking-mountain\": 63563,\n  \"biking\": 63562,\n  \"billboard\": 58829,\n  \"bin-bottles-recycle\": 58870,\n  \"bin-bottles\": 58869,\n  \"bin-recycle\": 58871,\n  \"bin\": 59235,\n  \"binary-circle-check\": 58172,\n  \"binary-lock\": 58173,\n  \"binary-slash\": 58174,\n  \"binary\": 58171,\n  \"binoculars\": 61925,\n  \"biohazard\": 63360,\n  \"bird\": 58473,\n  \"birthday-cake\": 61949,\n  \"bitcoin-sign\": 57524,\n  \"blackboard\": 62747,\n  \"blanket-fire\": 58330,\n  \"blanket\": 62616,\n  \"blender-phone\": 63158,\n  \"blender\": 62743,\n  \"blind\": 62109,\n  \"blinds-open\": 63740,\n  \"blinds-raised\": 63741,\n  \"blinds\": 63739,\n  \"block-brick-fire\": 58332,\n  \"block-brick\": 58331,\n  \"block-question\": 58333,\n  \"block-quote\": 57525,\n  \"block\": 58474,\n  \"blog\": 63361,\n  \"blueberries\": 58088,\n  \"bluetooth\": 62099,\n  \"bold\": 61490,\n  \"bolt-auto\": 57526,\n  \"bolt-lightning\": 57527,\n  \"bolt-slash\": 57528,\n  \"bolt\": 61671,\n  \"bomb\": 61922,\n  \"bone-break\": 62936,\n  \"bone\": 62935,\n  \"bong\": 62812,\n  \"book-alt\": 62937,\n  \"book-arrow-right\": 57529,\n  \"book-arrow-up\": 57530,\n  \"book-atlas\": 62808,\n  \"book-bible\": 63047,\n  \"book-blank\": 62937,\n  \"book-bookmark\": 57531,\n  \"book-circle-arrow-right\": 57532,\n  \"book-circle-arrow-up\": 57533,\n  \"book-circle\": 57599,\n  \"book-copy\": 57534,\n  \"book-dead\": 63159,\n  \"book-font\": 57535,\n  \"book-heart\": 62617,\n  \"book-journal-whills\": 63082,\n  \"book-law\": 57537,\n  \"book-medical\": 63462,\n  \"book-open-alt\": 57536,\n  \"book-open-cover\": 57536,\n  \"book-open-lines\": 59219,\n  \"book-open-reader\": 62938,\n  \"book-open\": 62744,\n  \"book-quran\": 63111,\n  \"book-reader\": 62938,\n  \"book-section\": 57537,\n  \"book-skull\": 63159,\n  \"book-sparkles\": 63160,\n  \"book-spells\": 63160,\n  \"book-spine\": 59220,\n  \"book-tanakh\": 63527,\n  \"book-user\": 63463,\n  \"book\": 61485,\n  \"bookmark-circle\": 57600,\n  \"bookmark-plus\": 59221,\n  \"bookmark-slash\": 57538,\n  \"bookmark\": 61486,\n  \"books-medical\": 63464,\n  \"books\": 62939,\n  \"boombox\": 63653,\n  \"boot-heeled\": 58175,\n  \"boot\": 63362,\n  \"booth-curtain\": 63284,\n  \"border-all\": 63564,\n  \"border-bottom-right\": 63572,\n  \"border-bottom\": 63565,\n  \"border-center-h\": 63644,\n  \"border-center-v\": 63645,\n  \"border-inner\": 63566,\n  \"border-left\": 63567,\n  \"border-none\": 63568,\n  \"border-outer\": 63569,\n  \"border-right\": 63570,\n  \"border-style-alt\": 63572,\n  \"border-style\": 63571,\n  \"border-top-left\": 63571,\n  \"border-top\": 63573,\n  \"bore-hole\": 58563,\n  \"bottle-baby\": 58995,\n  \"bottle-droplet\": 58564,\n  \"bottle-water\": 58565,\n  \"bow-archery\": 59450,\n  \"bow-arrow\": 63161,\n  \"bowl-chopsticks-noodles\": 58090,\n  \"bowl-chopsticks\": 58089,\n  \"bowl-food\": 58566,\n  \"bowl-hot\": 63523,\n  \"bowl-rice\": 58091,\n  \"bowl-salad\": 63518,\n  \"bowl-scoop\": 58334,\n  \"bowl-scoops\": 58335,\n  \"bowl-shaved-ice\": 58334,\n  \"bowl-soft-serve\": 58475,\n  \"bowl-spoon\": 58336,\n  \"bowling-ball-pin\": 57539,\n  \"bowling-ball\": 62518,\n  \"bowling-pins\": 62519,\n  \"box-alt\": 62618,\n  \"box-archive\": 61831,\n  \"box-arrow-down-arrow-up\": 59285,\n  \"box-arrow-down-magnifying-glass\": 59286,\n  \"box-arrow-down\": 59284,\n  \"box-arrow-up\": 59431,\n  \"box-ballot\": 63285,\n  \"box-check\": 62567,\n  \"box-circle-check\": 57540,\n  \"box-dollar\": 62624,\n  \"box-fragile\": 62619,\n  \"box-full\": 62620,\n  \"box-heart\": 62621,\n  \"box-isometric-tape\": 59288,\n  \"box-isometric\": 59287,\n  \"box-magnifying-glass\": 59432,\n  \"box-open-full\": 62620,\n  \"box-open\": 62622,\n  \"box-taped\": 62618,\n  \"box-tissue\": 57435,\n  \"box-up\": 62623,\n  \"box-usd\": 62624,\n  \"box\": 62566,\n  \"boxes-alt\": 62568,\n  \"boxes-packing\": 58567,\n  \"boxes-stacked\": 62568,\n  \"boxes\": 62568,\n  \"boxing-glove\": 62520,\n  \"bra\": 59087,\n  \"bracket-curly-left\": 123,\n  \"bracket-curly-right\": 125,\n  \"bracket-curly\": 123,\n  \"bracket-left\": 91,\n  \"bracket-round-right\": 41,\n  \"bracket-round\": 40,\n  \"bracket-square-right\": 93,\n  \"bracket-square\": 91,\n  \"bracket\": 91,\n  \"brackets-curly\": 63466,\n  \"brackets-round\": 57541,\n  \"brackets-square\": 63465,\n  \"brackets\": 63465,\n  \"braille\": 62113,\n  \"brain-arrow-curved-right\": 63095,\n  \"brain-circuit\": 57542,\n  \"brain\": 62940,\n  \"brake-warning\": 57543,\n  \"brazilian-real-sign\": 58476,\n  \"bread-loaf\": 63467,\n  \"bread-slice-butter\": 58337,\n  \"bread-slice\": 63468,\n  \"bridge-circle-check\": 58569,\n  \"bridge-circle-exclamation\": 58570,\n  \"bridge-circle-xmark\": 58571,\n  \"bridge-lock\": 58572,\n  \"bridge-suspension\": 58573,\n  \"bridge-water\": 58574,\n  \"bridge\": 58568,\n  \"briefcase-arrow-right\": 58098,\n  \"briefcase-blank\": 57544,\n  \"briefcase-clock\": 63050,\n  \"briefcase-medical\": 62569,\n  \"briefcase\": 61617,\n  \"briefs\": 59088,\n  \"brightness-low\": 57546,\n  \"brightness\": 57545,\n  \"bring-forward\": 63574,\n  \"bring-front\": 63575,\n  \"broadcast-tower\": 62745,\n  \"broccoli\": 58338,\n  \"broom-ball\": 62552,\n  \"broom-wide\": 58833,\n  \"broom\": 62746,\n  \"browser\": 62334,\n  \"browsers\": 57547,\n  \"brush\": 62813,\n  \"bucket\": 58575,\n  \"bug-slash\": 58512,\n  \"bug\": 61832,\n  \"bugs\": 58576,\n  \"building-circle-arrow-right\": 58577,\n  \"building-circle-check\": 58578,\n  \"building-circle-exclamation\": 58579,\n  \"building-circle-xmark\": 58580,\n  \"building-columns\": 61852,\n  \"building-flag\": 58581,\n  \"building-lock\": 58582,\n  \"building-magnifying-glass\": 58908,\n  \"building-memo\": 58910,\n  \"building-ngo\": 58583,\n  \"building-shield\": 58584,\n  \"building-un\": 58585,\n  \"building-user\": 58586,\n  \"building-wheat\": 58587,\n  \"building\": 61869,\n  \"buildings\": 57548,\n  \"bulldozer\": 58965,\n  \"bullhorn\": 61601,\n  \"bullseye-arrow\": 63048,\n  \"bullseye-pointer\": 63049,\n  \"bullseye\": 61760,\n  \"buoy-mooring\": 58806,\n  \"buoy\": 58805,\n  \"burger-cheese\": 63473,\n  \"burger-fries\": 57549,\n  \"burger-glass\": 57550,\n  \"burger-lettuce\": 58339,\n  \"burger-soda\": 63576,\n  \"burger\": 63493,\n  \"burn\": 62570,\n  \"burrito\": 63469,\n  \"burst-new\": 59512,\n  \"burst\": 58588,\n  \"bus-alt\": 62814,\n  \"bus-school\": 62941,\n  \"bus-side\": 59421,\n  \"bus-simple\": 62814,\n  \"bus-stop\": 59422,\n  \"bus\": 61959,\n  \"business-front\": 58460,\n  \"business-time\": 63050,\n  \"butter\": 58340,\n  \"butterfly\": 59409,\n  \"c\": 67,\n  \"cab\": 61882,\n  \"cabin\": 58477,\n  \"cabinet-filing\": 63051,\n  \"cable-car\": 63450,\n  \"cactus\": 63655,\n  \"caduceus\": 59009,\n  \"cake-candles\": 61949,\n  \"cake-slice\": 58341,\n  \"cake\": 61949,\n  \"calculator-alt\": 63052,\n  \"calculator-simple\": 63052,\n  \"calculator\": 61932,\n  \"calendar-alt\": 61555,\n  \"calendar-arrow-down\": 57552,\n  \"calendar-arrow-up\": 57553,\n  \"calendar-check\": 62068,\n  \"calendar-circle-exclamation\": 58478,\n  \"calendar-circle-minus\": 58479,\n  \"calendar-circle-plus\": 58480,\n  \"calendar-circle-user\": 58481,\n  \"calendar-circle\": 57602,\n  \"calendar-clock\": 57554,\n  \"calendar-day\": 63363,\n  \"calendar-days\": 61555,\n  \"calendar-download\": 57552,\n  \"calendar-edit\": 62259,\n  \"calendar-exclamation\": 62260,\n  \"calendar-heart\": 57555,\n  \"calendar-image\": 57556,\n  \"calendar-lines-pen\": 58482,\n  \"calendar-lines\": 57557,\n  \"calendar-minus\": 62066,\n  \"calendar-note\": 57557,\n  \"calendar-pen\": 62259,\n  \"calendar-plus\": 62065,\n  \"calendar-range\": 57558,\n  \"calendar-star\": 63286,\n  \"calendar-time\": 57554,\n  \"calendar-times\": 62067,\n  \"calendar-upload\": 57553,\n  \"calendar-users\": 58850,\n  \"calendar-week\": 63364,\n  \"calendar-xmark\": 62067,\n  \"calendar\": 61747,\n  \"calendars\": 57559,\n  \"camcorder\": 63656,\n  \"camera-alt\": 61488,\n  \"camera-cctv\": 63660,\n  \"camera-circle-ellipsis\": 59238,\n  \"camera-circle\": 57603,\n  \"camera-clock\": 59239,\n  \"camera-home\": 63742,\n  \"camera-movie\": 63657,\n  \"camera-polaroid\": 63658,\n  \"camera-retro\": 61571,\n  \"camera-rotate\": 57560,\n  \"camera-security\": 63742,\n  \"camera-shutter\": 59240,\n  \"camera-slash\": 57561,\n  \"camera-viewfinder\": 57562,\n  \"camera-web-slash\": 63539,\n  \"camera-web\": 63538,\n  \"camera\": 61488,\n  \"campfire\": 63162,\n  \"campground\": 63163,\n  \"can-food\": 58342,\n  \"cancel\": 61534,\n  \"cancer\": 59463,\n  \"candle-holder\": 63164,\n  \"candy-bar\": 58344,\n  \"candy-cane\": 63366,\n  \"candy-corn\": 63165,\n  \"candy\": 58343,\n  \"cannabis\": 62815,\n  \"cannon\": 58946,\n  \"canoe-person\": 59548,\n  \"capricorn\": 59464,\n  \"capsule\": 59226,\n  \"capsules\": 62571,\n  \"car-alt\": 62942,\n  \"car-battery\": 62943,\n  \"car-bolt\": 58177,\n  \"car-building\": 63577,\n  \"car-bump\": 62944,\n  \"car-burst\": 62945,\n  \"car-bus\": 63578,\n  \"car-circle-bolt\": 58178,\n  \"car-crash\": 62945,\n  \"car-garage\": 62946,\n  \"car-key\": 59328,\n  \"car-mechanic\": 62947,\n  \"car-mirrors\": 58179,\n  \"car-on\": 58589,\n  \"car-people\": 59036,\n  \"car-rear\": 62942,\n  \"car-side-bolt\": 58180,\n  \"car-side\": 62948,\n  \"car-siren-on\": 59330,\n  \"car-siren\": 59329,\n  \"car-tilt\": 62949,\n  \"car-tunnel\": 58590,\n  \"car-wash\": 62950,\n  \"car-wrench\": 62947,\n  \"car\": 61881,\n  \"caravan-alt\": 57344,\n  \"caravan-simple\": 57344,\n  \"caravan\": 63743,\n  \"card-club\": 58345,\n  \"card-diamond\": 58346,\n  \"card-heart\": 58347,\n  \"card-spade\": 58348,\n  \"cards-blank\": 58591,\n  \"cards\": 58349,\n  \"caret-circle-down\": 62253,\n  \"caret-circle-left\": 62254,\n  \"caret-circle-right\": 62256,\n  \"caret-circle-up\": 62257,\n  \"caret-down\": 61655,\n  \"caret-large-down\": 59436,\n  \"caret-large-left\": 59437,\n  \"caret-large-right\": 59438,\n  \"caret-large-up\": 59439,\n  \"caret-left\": 61657,\n  \"caret-right\": 61658,\n  \"caret-square-down\": 61776,\n  \"caret-square-left\": 61841,\n  \"caret-square-right\": 61778,\n  \"caret-square-up\": 61777,\n  \"caret-up\": 61656,\n  \"carpool\": 59036,\n  \"carriage-baby\": 63357,\n  \"carrot\": 63367,\n  \"cars\": 63579,\n  \"cart-arrow-down\": 61976,\n  \"cart-arrow-up\": 58350,\n  \"cart-circle-arrow-down\": 58351,\n  \"cart-circle-arrow-up\": 58352,\n  \"cart-circle-check\": 58353,\n  \"cart-circle-exclamation\": 58354,\n  \"cart-circle-plus\": 58355,\n  \"cart-circle-xmark\": 58356,\n  \"cart-flatbed-boxes\": 62581,\n  \"cart-flatbed-empty\": 62582,\n  \"cart-flatbed-suitcase\": 62877,\n  \"cart-flatbed\": 62580,\n  \"cart-minus\": 57563,\n  \"cart-plus\": 61975,\n  \"cart-shopping-fast\": 57564,\n  \"cart-shopping\": 61562,\n  \"cart-xmark\": 57565,\n  \"cash-register\": 63368,\n  \"cassette-betamax\": 63652,\n  \"cassette-tape\": 63659,\n  \"cassette-vhs\": 63724,\n  \"castle\": 57566,\n  \"cat-space\": 57345,\n  \"cat\": 63166,\n  \"cauldron\": 63167,\n  \"cctv\": 63660,\n  \"cedi-sign\": 57567,\n  \"cent-sign\": 58357,\n  \"certificate\": 61603,\n  \"chain-broken\": 61735,\n  \"chain-horizontal-slash\": 57804,\n  \"chain-horizontal\": 57803,\n  \"chain-slash\": 61735,\n  \"chain\": 61633,\n  \"chair-office\": 63169,\n  \"chair\": 63168,\n  \"chalkboard-teacher\": 62748,\n  \"chalkboard-user\": 62748,\n  \"chalkboard\": 62747,\n  \"champagne-glass\": 63390,\n  \"champagne-glasses\": 63391,\n  \"charging-station\": 62951,\n  \"chart-area\": 61950,\n  \"chart-bar\": 61568,\n  \"chart-bullet\": 57569,\n  \"chart-candlestick\": 57570,\n  \"chart-column\": 57571,\n  \"chart-diagram\": 59029,\n  \"chart-fft\": 59038,\n  \"chart-gantt\": 57572,\n  \"chart-kanban\": 58959,\n  \"chart-line-down\": 63053,\n  \"chart-line-up-down\": 58839,\n  \"chart-line-up\": 57573,\n  \"chart-line\": 61953,\n  \"chart-mixed-up-circle-currency\": 58840,\n  \"chart-mixed-up-circle-dollar\": 58841,\n  \"chart-mixed\": 63043,\n  \"chart-network\": 63370,\n  \"chart-pie-alt\": 63054,\n  \"chart-pie-simple-circle-currency\": 58884,\n  \"chart-pie-simple-circle-dollar\": 58885,\n  \"chart-pie-simple\": 63054,\n  \"chart-pie\": 61952,\n  \"chart-pyramid\": 57574,\n  \"chart-radar\": 57575,\n  \"chart-scatter-3d\": 57576,\n  \"chart-scatter-bubble\": 57577,\n  \"chart-scatter\": 63470,\n  \"chart-simple-horizontal\": 58484,\n  \"chart-simple\": 58483,\n  \"chart-sine\": 59037,\n  \"chart-tree-map\": 57578,\n  \"chart-user\": 63139,\n  \"chart-waterfall\": 57579,\n  \"check-circle\": 61528,\n  \"check-double\": 62816,\n  \"check-square\": 61770,\n  \"check-to-slot\": 63346,\n  \"check\": 61452,\n  \"cheese-swiss\": 63472,\n  \"cheese\": 63471,\n  \"cheeseburger\": 63473,\n  \"chemex\": 59440,\n  \"cherries\": 57580,\n  \"chess-bishop-alt\": 62523,\n  \"chess-bishop-piece\": 62523,\n  \"chess-bishop\": 62522,\n  \"chess-board\": 62524,\n  \"chess-clock-alt\": 62526,\n  \"chess-clock-flip\": 62526,\n  \"chess-clock\": 62525,\n  \"chess-king-alt\": 62528,\n  \"chess-king-piece\": 62528,\n  \"chess-king\": 62527,\n  \"chess-knight-alt\": 62530,\n  \"chess-knight-piece\": 62530,\n  \"chess-knight\": 62529,\n  \"chess-pawn-alt\": 62532,\n  \"chess-pawn-piece\": 62532,\n  \"chess-pawn\": 62531,\n  \"chess-queen-alt\": 62534,\n  \"chess-queen-piece\": 62534,\n  \"chess-queen\": 62533,\n  \"chess-rook-alt\": 62536,\n  \"chess-rook-piece\": 62536,\n  \"chess-rook\": 62535,\n  \"chess\": 62521,\n  \"chest-drawers\": 59523,\n  \"chestnut\": 58358,\n  \"chevron-circle-down\": 61754,\n  \"chevron-circle-left\": 61751,\n  \"chevron-circle-right\": 61752,\n  \"chevron-circle-up\": 61753,\n  \"chevron-double-down\": 62242,\n  \"chevron-double-left\": 62243,\n  \"chevron-double-right\": 62244,\n  \"chevron-double-up\": 62245,\n  \"chevron-down\": 61560,\n  \"chevron-left\": 61523,\n  \"chevron-right\": 61524,\n  \"chevron-square-down\": 62249,\n  \"chevron-square-left\": 62250,\n  \"chevron-square-right\": 62251,\n  \"chevron-square-up\": 62252,\n  \"chevron-up\": 61559,\n  \"chevrons-down\": 62242,\n  \"chevrons-left\": 62243,\n  \"chevrons-right\": 62244,\n  \"chevrons-up\": 62245,\n  \"chf-sign\": 58882,\n  \"child-combatant\": 58592,\n  \"child-dress\": 58780,\n  \"child-reaching\": 58781,\n  \"child-rifle\": 58592,\n  \"child\": 61870,\n  \"children\": 58593,\n  \"chimney\": 63371,\n  \"chocolate-bar\": 58344,\n  \"chopsticks\": 58359,\n  \"church\": 62749,\n  \"circle-0\": 57581,\n  \"circle-1\": 57582,\n  \"circle-2\": 57583,\n  \"circle-3\": 57584,\n  \"circle-4\": 57585,\n  \"circle-5\": 57586,\n  \"circle-6\": 57587,\n  \"circle-7\": 57588,\n  \"circle-8\": 57589,\n  \"circle-9\": 57590,\n  \"circle-a\": 57591,\n  \"circle-ampersand\": 57592,\n  \"circle-arrow-down-left\": 57593,\n  \"circle-arrow-down-right\": 57594,\n  \"circle-arrow-down\": 61611,\n  \"circle-arrow-left\": 61608,\n  \"circle-arrow-right\": 61609,\n  \"circle-arrow-up-left\": 57595,\n  \"circle-arrow-up-right\": 57596,\n  \"circle-arrow-up\": 61610,\n  \"circle-austral\": 59163,\n  \"circle-australian-dollar\": 59184,\n  \"circle-b\": 57597,\n  \"circle-baht\": 59181,\n  \"circle-bangladeshi-taka\": 59137,\n  \"circle-bitcoin\": 59191,\n  \"circle-bolt\": 57598,\n  \"circle-book-open\": 57599,\n  \"circle-bookmark\": 57600,\n  \"circle-brazilian-real\": 59115,\n  \"circle-c\": 57601,\n  \"circle-calendar\": 57602,\n  \"circle-camera\": 57603,\n  \"circle-caret-down\": 62253,\n  \"circle-caret-left\": 62254,\n  \"circle-caret-right\": 62256,\n  \"circle-caret-up\": 62257,\n  \"circle-cedi\": 59202,\n  \"circle-cent\": 59178,\n  \"circle-check\": 61528,\n  \"circle-chevron-down\": 61754,\n  \"circle-chevron-left\": 61751,\n  \"circle-chevron-right\": 61752,\n  \"circle-chevron-up\": 61753,\n  \"circle-chf\": 59180,\n  \"circle-colon\": 59132,\n  \"circle-cruzeiro\": 59170,\n  \"circle-currency\": 59118,\n  \"circle-d\": 57604,\n  \"circle-danish-krone\": 59206,\n  \"circle-dashed\": 57605,\n  \"circle-divide\": 57606,\n  \"circle-dollar-to-slot\": 62649,\n  \"circle-dollar\": 62184,\n  \"circle-dong\": 59171,\n  \"circle-dot\": 61842,\n  \"circle-down-left\": 57607,\n  \"circle-down-right\": 57608,\n  \"circle-down\": 62296,\n  \"circle-e\": 57609,\n  \"circle-ellipsis-vertical\": 57611,\n  \"circle-ellipsis\": 57610,\n  \"circle-envelope\": 57612,\n  \"circle-equals\": 59057,\n  \"circle-euro\": 58830,\n  \"circle-eurozone\": 59205,\n  \"circle-exclamation-check\": 57613,\n  \"circle-exclamation\": 61546,\n  \"circle-f\": 57614,\n  \"circle-florin\": 59108,\n  \"circle-franc\": 59169,\n  \"circle-g\": 57615,\n  \"circle-gf\": 59007,\n  \"circle-guarani\": 59195,\n  \"circle-h\": 62590,\n  \"circle-half-horizontal\": 59404,\n  \"circle-half-stroke-horizontal\": 59405,\n  \"circle-half-stroke\": 61506,\n  \"circle-half\": 57616,\n  \"circle-heart\": 62663,\n  \"circle-house\": 59080,\n  \"circle-hryvnia\": 59119,\n  \"circle-i\": 57617,\n  \"circle-indian-rupee\": 59188,\n  \"circle-info\": 61530,\n  \"circle-j\": 57618,\n  \"circle-k\": 57619,\n  \"circle-kip\": 59133,\n  \"circle-l\": 57620,\n  \"circle-lari\": 59165,\n  \"circle-left\": 62297,\n  \"circle-lira\": 59126,\n  \"circle-litecoin\": 59124,\n  \"circle-location-arrow\": 62978,\n  \"circle-m\": 57621,\n  \"circle-malaysian-ringgit\": 59129,\n  \"circle-manat\": 59131,\n  \"circle-microphone-lines\": 57623,\n  \"circle-microphone\": 57622,\n  \"circle-mill\": 59138,\n  \"circle-minus\": 61526,\n  \"circle-moon\": 59360,\n  \"circle-n\": 57624,\n  \"circle-naira\": 59209,\n  \"circle-nodes\": 58594,\n  \"circle-norwegian-krone\": 59192,\n  \"circle-notch\": 61902,\n  \"circle-o\": 57625,\n  \"circle-p\": 57626,\n  \"circle-parking\": 62997,\n  \"circle-pause\": 62091,\n  \"circle-peruvian-soles\": 59123,\n  \"circle-peseta\": 59201,\n  \"circle-peso\": 59135,\n  \"circle-phone-flip\": 57628,\n  \"circle-phone-hangup\": 57629,\n  \"circle-phone\": 57627,\n  \"circle-play\": 61764,\n  \"circle-plus\": 61525,\n  \"circle-polish-zloty\": 59136,\n  \"circle-q\": 57630,\n  \"circle-quarter-stroke\": 58835,\n  \"circle-quarter\": 57631,\n  \"circle-quarters\": 58360,\n  \"circle-question\": 61529,\n  \"circle-r\": 57632,\n  \"circle-radiation\": 63418,\n  \"circle-renminbi\": 59113,\n  \"circle-right\": 62298,\n  \"circle-ruble\": 59109,\n  \"circle-rupee\": 59156,\n  \"circle-rupiah\": 59142,\n  \"circle-s\": 57633,\n  \"circle-share-nodes\": 59099,\n  \"circle-shekel\": 59139,\n  \"circle-small\": 57634,\n  \"circle-sort-down\": 57393,\n  \"circle-sort-up\": 57394,\n  \"circle-sort\": 57392,\n  \"circle-star\": 57635,\n  \"circle-sterling\": 58831,\n  \"circle-stop\": 62093,\n  \"circle-swedish-krona\": 59203,\n  \"circle-t\": 57636,\n  \"circle-tenge\": 59173,\n  \"circle-three-quarters-stroke\": 58836,\n  \"circle-three-quarters\": 57637,\n  \"circle-trash\": 57638,\n  \"circle-tugrik\": 59153,\n  \"circle-turkish-lira\": 59193,\n  \"circle-u\": 57639,\n  \"circle-up-left\": 57640,\n  \"circle-up-right\": 57641,\n  \"circle-up\": 62299,\n  \"circle-user-circle-check\": 59295,\n  \"circle-user-circle-exclamation\": 59296,\n  \"circle-user-circle-minus\": 59297,\n  \"circle-user-circle-moon\": 59298,\n  \"circle-user-circle-plus\": 59299,\n  \"circle-user-circle-question\": 59300,\n  \"circle-user-circle-user\": 59301,\n  \"circle-user-circle-xmark\": 59302,\n  \"circle-user-clock\": 59303,\n  \"circle-user\": 62141,\n  \"circle-v\": 57642,\n  \"circle-video\": 57643,\n  \"circle-w\": 57644,\n  \"circle-waveform-lines\": 57645,\n  \"circle-wifi-circle-wifi\": 59006,\n  \"circle-wifi-group\": 59006,\n  \"circle-wifi\": 59005,\n  \"circle-won\": 59116,\n  \"circle-x\": 57646,\n  \"circle-xmark\": 61527,\n  \"circle-y\": 57647,\n  \"circle-yen\": 58832,\n  \"circle-z\": 57648,\n  \"circle\": 61713,\n  \"circleapore-dollar\": 59166,\n  \"circles-overlap-3\": 59041,\n  \"circles-overlap\": 58880,\n  \"citrus-slice\": 58101,\n  \"citrus\": 58100,\n  \"city\": 63055,\n  \"clapperboard-play\": 57650,\n  \"clapperboard\": 57649,\n  \"clarinet\": 63661,\n  \"claw-marks\": 63170,\n  \"clinic-medical\": 63474,\n  \"clipboard-check\": 62572,\n  \"clipboard-clock\": 59222,\n  \"clipboard-exclamation\": 59223,\n  \"clipboard-list-check\": 63287,\n  \"clipboard-list\": 62573,\n  \"clipboard-medical\": 57651,\n  \"clipboard-prescription\": 62952,\n  \"clipboard-question\": 58595,\n  \"clipboard-user\": 63475,\n  \"clipboard\": 62248,\n  \"clock-desk\": 57652,\n  \"clock-eight-thirty\": 58182,\n  \"clock-eight\": 58181,\n  \"clock-eleven-thirty\": 58184,\n  \"clock-eleven\": 58183,\n  \"clock-five-thirty\": 58186,\n  \"clock-five\": 58185,\n  \"clock-four-thirty\": 58187,\n  \"clock-four\": 61463,\n  \"clock-nine-thirty\": 58189,\n  \"clock-nine\": 58188,\n  \"clock-one-thirty\": 58191,\n  \"clock-one\": 58190,\n  \"clock-rotate-left\": 61914,\n  \"clock-seven-thirty\": 58193,\n  \"clock-seven\": 58192,\n  \"clock-six-thirty\": 58195,\n  \"clock-six\": 58194,\n  \"clock-ten-thirty\": 58197,\n  \"clock-ten\": 58196,\n  \"clock-three-thirty\": 58199,\n  \"clock-three\": 58198,\n  \"clock-twelve-thirty\": 58201,\n  \"clock-twelve\": 58200,\n  \"clock-two-thirty\": 58203,\n  \"clock-two\": 58202,\n  \"clock\": 61463,\n  \"clone-plus\": 59212,\n  \"clone\": 62029,\n  \"close\": 61453,\n  \"closed-captioning-slash\": 57653,\n  \"closed-captioning\": 61962,\n  \"clothes-hanger\": 57654,\n  \"cloud-arrow-down\": 61677,\n  \"cloud-arrow-up\": 61678,\n  \"cloud-binary\": 58881,\n  \"cloud-bolt-moon\": 63341,\n  \"cloud-bolt-sun\": 63342,\n  \"cloud-bolt\": 63340,\n  \"cloud-check\": 58204,\n  \"cloud-download-alt\": 61677,\n  \"cloud-download\": 61677,\n  \"cloud-drizzle\": 63288,\n  \"cloud-exclamation\": 58513,\n  \"cloud-fog\": 63310,\n  \"cloud-hail-mixed\": 63290,\n  \"cloud-hail\": 63289,\n  \"cloud-meatball\": 63291,\n  \"cloud-minus\": 58205,\n  \"cloud-moon-rain\": 63292,\n  \"cloud-moon\": 63171,\n  \"cloud-music\": 63662,\n  \"cloud-plus\": 58206,\n  \"cloud-question\": 58514,\n  \"cloud-rain\": 63293,\n  \"cloud-rainbow\": 63294,\n  \"cloud-showers-heavy\": 63296,\n  \"cloud-showers-water\": 58596,\n  \"cloud-showers\": 63295,\n  \"cloud-slash\": 57655,\n  \"cloud-sleet\": 63297,\n  \"cloud-snow\": 63298,\n  \"cloud-sun-rain\": 63299,\n  \"cloud-sun\": 63172,\n  \"cloud-upload-alt\": 61678,\n  \"cloud-upload\": 61678,\n  \"cloud-word\": 57656,\n  \"cloud-xmark\": 58207,\n  \"cloud\": 61634,\n  \"clouds-moon\": 63301,\n  \"clouds-sun\": 63302,\n  \"clouds\": 63300,\n  \"clover\": 57657,\n  \"club\": 62247,\n  \"cny\": 61783,\n  \"cocktail\": 62817,\n  \"coconut\": 58102,\n  \"code-branch\": 61734,\n  \"code-commit\": 62342,\n  \"code-compare\": 57658,\n  \"code-fork\": 57659,\n  \"code-merge\": 62343,\n  \"code-pull-request-closed\": 58361,\n  \"code-pull-request-draft\": 58362,\n  \"code-pull-request\": 57660,\n  \"code-simple\": 57661,\n  \"code\": 61729,\n  \"coffee-bean\": 57662,\n  \"coffee-beans\": 57663,\n  \"coffee-pot\": 57346,\n  \"coffee-togo\": 63173,\n  \"coffee\": 61684,\n  \"coffin-cross\": 57425,\n  \"coffin\": 63174,\n  \"cog\": 61459,\n  \"cogs\": 61573,\n  \"coin-blank\": 58363,\n  \"coin-front\": 58364,\n  \"coin-vertical\": 58365,\n  \"coin\": 63580,\n  \"coins\": 62750,\n  \"colon-sign\": 57664,\n  \"colon\": 58,\n  \"columns-3\": 58209,\n  \"columns\": 61659,\n  \"comet\": 57347,\n  \"comma\": 44,\n  \"command\": 57666,\n  \"comment-alt-arrow-down\": 57819,\n  \"comment-alt-arrow-up\": 57820,\n  \"comment-alt-captions\": 57822,\n  \"comment-alt-check\": 62626,\n  \"comment-alt-dollar\": 63056,\n  \"comment-alt-dots\": 62627,\n  \"comment-alt-edit\": 62628,\n  \"comment-alt-exclamation\": 62629,\n  \"comment-alt-image\": 57824,\n  \"comment-alt-lines\": 62630,\n  \"comment-alt-medical\": 63476,\n  \"comment-alt-minus\": 62631,\n  \"comment-alt-music\": 63663,\n  \"comment-alt-plus\": 62632,\n  \"comment-alt-quote\": 57828,\n  \"comment-alt-slash\": 62633,\n  \"comment-alt-smile\": 62634,\n  \"comment-alt-text\": 57830,\n  \"comment-alt-times\": 62635,\n  \"comment-alt\": 62074,\n  \"comment-arrow-down\": 57667,\n  \"comment-arrow-up-right\": 57669,\n  \"comment-arrow-up\": 57668,\n  \"comment-captions\": 57670,\n  \"comment-check\": 62636,\n  \"comment-code\": 57671,\n  \"comment-dollar\": 63057,\n  \"comment-dot\": 59100,\n  \"comment-dots\": 62637,\n  \"comment-edit\": 62638,\n  \"comment-exclamation\": 62639,\n  \"comment-heart\": 58824,\n  \"comment-image\": 57672,\n  \"comment-lines\": 62640,\n  \"comment-medical\": 63477,\n  \"comment-middle-alt\": 57825,\n  \"comment-middle-top-alt\": 57826,\n  \"comment-middle-top\": 57674,\n  \"comment-middle\": 57673,\n  \"comment-minus\": 62641,\n  \"comment-music\": 63664,\n  \"comment-nodes\": 59030,\n  \"comment-pen\": 62638,\n  \"comment-plus\": 62642,\n  \"comment-question\": 57675,\n  \"comment-quote\": 57676,\n  \"comment-slash\": 62643,\n  \"comment-smile\": 62644,\n  \"comment-sms\": 63437,\n  \"comment-text\": 57677,\n  \"comment-times\": 62645,\n  \"comment-waveform\": 59101,\n  \"comment-xmark\": 62645,\n  \"comment\": 61557,\n  \"commenting\": 62637,\n  \"comments-alt-dollar\": 63058,\n  \"comments-alt\": 62646,\n  \"comments-dollar\": 63059,\n  \"comments-question-check\": 57679,\n  \"comments-question\": 57678,\n  \"comments\": 61574,\n  \"compact-disc\": 62751,\n  \"compass-drafting\": 62824,\n  \"compass-slash\": 62953,\n  \"compass\": 61774,\n  \"compress-alt\": 62498,\n  \"compress-arrows-alt\": 63372,\n  \"compress-arrows\": 57509,\n  \"compress-wide\": 62246,\n  \"compress\": 61542,\n  \"computer-classic\": 63665,\n  \"computer-mouse-button-left\": 59341,\n  \"computer-mouse-button-right\": 59342,\n  \"computer-mouse-scrollwheel\": 63693,\n  \"computer-mouse\": 63692,\n  \"computer-speaker\": 63666,\n  \"computer\": 58597,\n  \"concierge-bell\": 62818,\n  \"construction\": 63581,\n  \"contact-book\": 62137,\n  \"contact-card\": 62139,\n  \"container-storage\": 62647,\n  \"conveyor-belt-alt\": 62575,\n  \"conveyor-belt-arm\": 58872,\n  \"conveyor-belt-boxes\": 62575,\n  \"conveyor-belt-empty\": 57680,\n  \"conveyor-belt\": 62574,\n  \"cookie-bite\": 62820,\n  \"cookie\": 62819,\n  \"copy\": 61637,\n  \"copyright\": 61945,\n  \"corn\": 63175,\n  \"corner\": 58366,\n  \"couch-small\": 62668,\n  \"couch\": 62648,\n  \"court-sport\": 58947,\n  \"cow\": 63176,\n  \"cowbell-circle-plus\": 63668,\n  \"cowbell-more\": 63668,\n  \"cowbell\": 63667,\n  \"crab\": 58367,\n  \"crate-apple\": 63153,\n  \"crate-empty\": 57681,\n  \"credit-card-alt\": 61597,\n  \"credit-card-blank\": 62345,\n  \"credit-card-front\": 62346,\n  \"credit-card\": 61597,\n  \"creemee\": 58368,\n  \"cricket-bat-ball\": 62537,\n  \"cricket\": 62537,\n  \"croissant\": 63478,\n  \"crop-alt\": 62821,\n  \"crop-simple\": 62821,\n  \"crop\": 61733,\n  \"cross\": 63060,\n  \"crosshairs-simple\": 58783,\n  \"crosshairs\": 61531,\n  \"crow\": 62752,\n  \"crown\": 62753,\n  \"crutch\": 63479,\n  \"crutches\": 63480,\n  \"cruzeiro-sign\": 57682,\n  \"crystal-ball\": 58210,\n  \"cube\": 61874,\n  \"cubes-stacked\": 58598,\n  \"cubes\": 61875,\n  \"cucumber\": 58369,\n  \"cup-straw-swoosh\": 58212,\n  \"cup-straw\": 58211,\n  \"cup-togo\": 63173,\n  \"cupcake\": 58370,\n  \"curling-stone\": 62538,\n  \"curling\": 62538,\n  \"currency-sign\": 59179,\n  \"custard\": 58371,\n  \"cut\": 61636,\n  \"cutlery\": 62183,\n  \"d\": 68,\n  \"dagger\": 63179,\n  \"danish-krone-sign\": 59168,\n  \"dash\": 58372,\n  \"dashboard\": 63012,\n  \"database\": 61888,\n  \"deaf\": 62116,\n  \"deafness\": 62116,\n  \"debug\": 63481,\n  \"dedent\": 61499,\n  \"deer-rudolph\": 63375,\n  \"deer\": 63374,\n  \"delete-left\": 62810,\n  \"delete-right\": 57684,\n  \"democrat\": 63303,\n  \"desk\": 59518,\n  \"desktop-alt\": 62352,\n  \"desktop-arrow-down\": 57685,\n  \"desktop-code\": 57701,\n  \"desktop-medical\": 57702,\n  \"desktop-slash\": 58106,\n  \"desktop\": 62352,\n  \"dewpoint\": 63304,\n  \"dharmachakra\": 63061,\n  \"diagnoses\": 62576,\n  \"diagram-cells\": 58485,\n  \"diagram-lean-canvas\": 57686,\n  \"diagram-nested\": 57687,\n  \"diagram-next\": 58486,\n  \"diagram-predecessor\": 58487,\n  \"diagram-previous\": 58488,\n  \"diagram-project\": 62786,\n  \"diagram-sankey\": 57688,\n  \"diagram-subtask\": 58489,\n  \"diagram-successor\": 58490,\n  \"diagram-venn\": 57690,\n  \"dial-high\": 57692,\n  \"dial-low\": 57693,\n  \"dial-max\": 57694,\n  \"dial-med-high\": 57691,\n  \"dial-med-low\": 57696,\n  \"dial-med\": 57695,\n  \"dial-min\": 57697,\n  \"dial-off\": 57698,\n  \"dial\": 57691,\n  \"dialpad\": 59340,\n  \"diamond-exclamation\": 58373,\n  \"diamond-half-stroke\": 58808,\n  \"diamond-half\": 58807,\n  \"diamond-turn-right\": 62955,\n  \"diamond\": 61977,\n  \"diamonds-4\": 59019,\n  \"dice-d10\": 63181,\n  \"dice-d12\": 63182,\n  \"dice-d20\": 63183,\n  \"dice-d4\": 63184,\n  \"dice-d6\": 63185,\n  \"dice-d8\": 63186,\n  \"dice-five\": 62755,\n  \"dice-four\": 62756,\n  \"dice-one\": 62757,\n  \"dice-six\": 62758,\n  \"dice-three\": 62759,\n  \"dice-two\": 62760,\n  \"dice\": 62754,\n  \"digging\": 63582,\n  \"digital-tachograph\": 62822,\n  \"dinosaur\": 58878,\n  \"diploma\": 62954,\n  \"direction-left-right\": 59070,\n  \"direction-up-down\": 59071,\n  \"directions\": 62955,\n  \"disc-drive\": 63669,\n  \"disease\": 63482,\n  \"display-arrow-down\": 57700,\n  \"display-chart-up-circle-currency\": 58853,\n  \"display-chart-up-circle-dollar\": 58854,\n  \"display-chart-up\": 58851,\n  \"display-code\": 57701,\n  \"display-medical\": 57702,\n  \"display-slash\": 58106,\n  \"display\": 57699,\n  \"distribute-spacing-horizontal\": 58213,\n  \"distribute-spacing-vertical\": 58214,\n  \"ditto\": 34,\n  \"divide\": 62761,\n  \"dizzy\": 62823,\n  \"dna\": 62577,\n  \"do-not-enter\": 62956,\n  \"dog-leashed\": 63188,\n  \"dog\": 63187,\n  \"dollar-circle\": 62184,\n  \"dollar-sign\": 36,\n  \"dollar-square\": 62185,\n  \"dollar\": 36,\n  \"dolly-box\": 62578,\n  \"dolly-empty\": 62579,\n  \"dolly-flatbed-alt\": 62581,\n  \"dolly-flatbed-empty\": 62582,\n  \"dolly-flatbed\": 62580,\n  \"dolly\": 62578,\n  \"dolphin\": 57704,\n  \"donate\": 62649,\n  \"dong-sign\": 57705,\n  \"donut\": 58374,\n  \"door-closed\": 62762,\n  \"door-open\": 62763,\n  \"dot-circle\": 61842,\n  \"dot\": 59345,\n  \"doughnut\": 58374,\n  \"dove\": 62650,\n  \"down-from-bracket\": 58987,\n  \"down-from-dotted-line\": 58375,\n  \"down-from-line\": 62281,\n  \"down-left-and-up-right-to-center\": 62498,\n  \"down-left\": 57706,\n  \"down-long-to-line\": 59072,\n  \"down-long\": 62217,\n  \"down-right\": 57707,\n  \"down-to-bracket\": 58599,\n  \"down-to-dotted-line\": 58376,\n  \"down-to-line\": 62282,\n  \"down-up\": 59073,\n  \"down\": 62292,\n  \"download\": 61465,\n  \"drafting-compass\": 62824,\n  \"dragon\": 63189,\n  \"draw-circle\": 62957,\n  \"draw-polygon\": 62958,\n  \"draw-square\": 62959,\n  \"dreidel\": 63378,\n  \"dress\": 59089,\n  \"dresser\": 59519,\n  \"drivers-license\": 62146,\n  \"drone-alt\": 63584,\n  \"drone-front\": 63584,\n  \"drone\": 63583,\n  \"droplet-degree\": 63304,\n  \"droplet-percent\": 63312,\n  \"droplet-plus\": 59392,\n  \"droplet-slash\": 62919,\n  \"droplet\": 61507,\n  \"drum-steelpan\": 62826,\n  \"drum\": 62825,\n  \"drumstick-bite\": 63191,\n  \"drumstick\": 63190,\n  \"dryer-alt\": 63586,\n  \"dryer-heat\": 63586,\n  \"dryer\": 63585,\n  \"duck\": 63192,\n  \"dumbbell\": 62539,\n  \"dumpster-fire\": 63380,\n  \"dumpster\": 63379,\n  \"dungeon\": 63193,\n  \"e\": 69,\n  \"ear-circle-checkmark\": 59227,\n  \"ear-deaf\": 62116,\n  \"ear-listen\": 62114,\n  \"ear-muffs\": 63381,\n  \"ear-triangle-exclamation\": 59228,\n  \"ear-waveform\": 59229,\n  \"ear\": 62960,\n  \"earth-africa\": 62844,\n  \"earth-america\": 62845,\n  \"earth-americas\": 62845,\n  \"earth-asia\": 62846,\n  \"earth-europe\": 63394,\n  \"earth-oceania\": 58491,\n  \"earth\": 62845,\n  \"eclipse-alt\": 63306,\n  \"eclipse\": 63305,\n  \"edit\": 61508,\n  \"egg-fried\": 63484,\n  \"egg\": 63483,\n  \"eggplant\": 57708,\n  \"eject\": 61522,\n  \"elephant\": 63194,\n  \"elevator\": 57709,\n  \"ellipsis-h-alt\": 62363,\n  \"ellipsis-h\": 61761,\n  \"ellipsis-stroke-vertical\": 62364,\n  \"ellipsis-stroke\": 62363,\n  \"ellipsis-v-alt\": 62364,\n  \"ellipsis-v\": 61762,\n  \"ellipsis-vertical\": 61762,\n  \"ellipsis\": 61761,\n  \"empty-set\": 63062,\n  \"engine-exclamation\": 62962,\n  \"engine-warning\": 62962,\n  \"engine\": 57710,\n  \"envelope-badge\": 57711,\n  \"envelope-certificate\": 59433,\n  \"envelope-circle-check\": 58600,\n  \"envelope-circle-user\": 59102,\n  \"envelope-circle\": 57612,\n  \"envelope-dot\": 57711,\n  \"envelope-open-dollar\": 63063,\n  \"envelope-open-text\": 63064,\n  \"envelope-open\": 62134,\n  \"envelope-ribbon\": 59433,\n  \"envelope-square\": 61849,\n  \"envelope\": 61664,\n  \"envelopes-bulk\": 63092,\n  \"envelopes\": 57712,\n  \"equals\": 61,\n  \"eraser\": 61741,\n  \"escalator\": 57713,\n  \"ethernet\": 63382,\n  \"eur\": 61779,\n  \"euro-sign\": 61779,\n  \"euro\": 61779,\n  \"eurozone-sign\": 59200,\n  \"excavator\": 58966,\n  \"exchange-alt\": 62306,\n  \"exchange\": 61676,\n  \"exclamation-circle\": 61546,\n  \"exclamation-square\": 62241,\n  \"exclamation-triangle\": 61553,\n  \"exclamation\": 33,\n  \"expand-alt\": 62500,\n  \"expand-arrows-alt\": 62238,\n  \"expand-arrows\": 62237,\n  \"expand-wide\": 62240,\n  \"expand\": 61541,\n  \"exploding-head\": 58110,\n  \"explosion\": 58601,\n  \"external-link-alt\": 62301,\n  \"external-link-square-alt\": 62304,\n  \"external-link-square\": 61772,\n  \"external-link\": 61582,\n  \"eye-closed\": 59451,\n  \"eye-dropper-empty\": 61947,\n  \"eye-dropper-full\": 57714,\n  \"eye-dropper-half\": 57715,\n  \"eye-dropper\": 61947,\n  \"eye-evil\": 63195,\n  \"eye-low-vision\": 62120,\n  \"eye-slash\": 61552,\n  \"eye\": 61550,\n  \"eyedropper\": 61947,\n  \"eyes\": 58215,\n  \"f\": 70,\n  \"face-angry-horns\": 58216,\n  \"face-angry\": 62806,\n  \"face-anguished\": 58217,\n  \"face-anxious-sweat\": 58218,\n  \"face-astonished\": 58219,\n  \"face-awesome\": 58377,\n  \"face-beam-hand-over-mouth\": 58492,\n  \"face-clouds\": 58493,\n  \"face-confounded\": 58220,\n  \"face-confused\": 58221,\n  \"face-cowboy-hat\": 58222,\n  \"face-diagonal-mouth\": 58494,\n  \"face-disappointed\": 58223,\n  \"face-disguise\": 58224,\n  \"face-dizzy\": 62823,\n  \"face-dotted\": 58495,\n  \"face-downcast-sweat\": 58225,\n  \"face-drooling\": 58226,\n  \"face-exhaling\": 58496,\n  \"face-explode\": 58110,\n  \"face-expressionless\": 58227,\n  \"face-eyes-xmarks\": 58228,\n  \"face-fearful\": 58229,\n  \"face-flushed\": 62841,\n  \"face-frown-open\": 62842,\n  \"face-frown-slight\": 58230,\n  \"face-frown\": 61721,\n  \"face-glasses\": 58231,\n  \"face-grimace\": 62847,\n  \"face-grin-beam-sweat\": 62851,\n  \"face-grin-beam\": 62850,\n  \"face-grin-hearts\": 62852,\n  \"face-grin-squint-tears\": 62854,\n  \"face-grin-squint\": 62853,\n  \"face-grin-stars\": 62855,\n  \"face-grin-tears\": 62856,\n  \"face-grin-tongue-squint\": 62858,\n  \"face-grin-tongue-wink\": 62859,\n  \"face-grin-tongue\": 62857,\n  \"face-grin-wide\": 62849,\n  \"face-grin-wink\": 62860,\n  \"face-grin\": 62848,\n  \"face-hand-over-mouth\": 58232,\n  \"face-hand-peeking\": 58497,\n  \"face-hand-yawn\": 58233,\n  \"face-head-bandage\": 58234,\n  \"face-holding-back-tears\": 58498,\n  \"face-hushed\": 58235,\n  \"face-icicles\": 58236,\n  \"face-kiss-beam\": 62871,\n  \"face-kiss-closed-eyes\": 58237,\n  \"face-kiss-wink-heart\": 62872,\n  \"face-kiss\": 62870,\n  \"face-laugh-beam\": 62874,\n  \"face-laugh-squint\": 62875,\n  \"face-laugh-wink\": 62876,\n  \"face-laugh\": 62873,\n  \"face-lying\": 58238,\n  \"face-mask\": 58239,\n  \"face-meh-blank\": 62884,\n  \"face-meh\": 61722,\n  \"face-melting\": 58499,\n  \"face-monocle\": 58240,\n  \"face-nauseated\": 58241,\n  \"face-nose-steam\": 58242,\n  \"face-party\": 58243,\n  \"face-pensive\": 58244,\n  \"face-persevering\": 58245,\n  \"face-pleading\": 58246,\n  \"face-pouting\": 58247,\n  \"face-raised-eyebrow\": 58248,\n  \"face-relieved\": 58249,\n  \"face-rolling-eyes\": 62885,\n  \"face-sad-cry\": 62899,\n  \"face-sad-sweat\": 58250,\n  \"face-sad-tear\": 62900,\n  \"face-saluting\": 58500,\n  \"face-scream\": 58251,\n  \"face-shaking-horizontal\": 59293,\n  \"face-shaking-vertical\": 59294,\n  \"face-shaking\": 59292,\n  \"face-shush\": 58252,\n  \"face-sleeping\": 58253,\n  \"face-sleepy\": 58254,\n  \"face-smile-beam\": 62904,\n  \"face-smile-halo\": 58255,\n  \"face-smile-hearts\": 58256,\n  \"face-smile-horns\": 58257,\n  \"face-smile-plus\": 62905,\n  \"face-smile-relaxed\": 58258,\n  \"face-smile-tear\": 58259,\n  \"face-smile-tongue\": 58260,\n  \"face-smile-upside-down\": 58261,\n  \"face-smile-wink\": 62682,\n  \"face-smile\": 61720,\n  \"face-smiling-hands\": 58262,\n  \"face-smirking\": 58263,\n  \"face-spiral-eyes\": 58501,\n  \"face-sunglasses\": 58264,\n  \"face-surprise\": 62914,\n  \"face-swear\": 58265,\n  \"face-thermometer\": 58266,\n  \"face-thinking\": 58267,\n  \"face-tired\": 62920,\n  \"face-tissue\": 58268,\n  \"face-tongue-money\": 58269,\n  \"face-tongue-sweat\": 58270,\n  \"face-unamused\": 58271,\n  \"face-viewfinder\": 58111,\n  \"face-vomit\": 58272,\n  \"face-weary\": 58273,\n  \"face-woozy\": 58274,\n  \"face-worried\": 58275,\n  \"face-zany\": 58276,\n  \"face-zipper\": 58277,\n  \"falafel\": 58378,\n  \"family-dress\": 58113,\n  \"family-pants\": 58114,\n  \"family\": 58112,\n  \"fan-table\": 57348,\n  \"fan\": 63587,\n  \"farm\": 63588,\n  \"fast-backward\": 61513,\n  \"fast-forward\": 61520,\n  \"faucet-drip\": 57350,\n  \"faucet\": 57349,\n  \"fax\": 61868,\n  \"feather-alt\": 62827,\n  \"feather-pointed\": 62827,\n  \"feather\": 62765,\n  \"feed\": 61598,\n  \"female\": 61826,\n  \"fence\": 58115,\n  \"ferris-wheel\": 57716,\n  \"ferry\": 58602,\n  \"field-hockey-stick-ball\": 62540,\n  \"field-hockey\": 62540,\n  \"fighter-jet\": 61691,\n  \"file-aiff\": 59387,\n  \"file-alt\": 61788,\n  \"file-archive\": 61894,\n  \"file-arrow-down\": 62829,\n  \"file-arrow-up\": 62836,\n  \"file-audio\": 61895,\n  \"file-award\": 62963,\n  \"file-ban\": 59224,\n  \"file-binary\": 57717,\n  \"file-brackets-curly\": 59396,\n  \"file-cad\": 58994,\n  \"file-caret-down\": 58409,\n  \"file-caret-up\": 58410,\n  \"file-certificate\": 62963,\n  \"file-chart-column\": 63065,\n  \"file-chart-line\": 63065,\n  \"file-chart-pie\": 63066,\n  \"file-check\": 62230,\n  \"file-circle-check\": 58784,\n  \"file-circle-exclamation\": 58603,\n  \"file-circle-info\": 58515,\n  \"file-circle-minus\": 58605,\n  \"file-circle-plus\": 58516,\n  \"file-circle-question\": 58607,\n  \"file-circle-xmark\": 58785,\n  \"file-clipboard\": 61674,\n  \"file-code\": 61897,\n  \"file-contract\": 62828,\n  \"file-css\": 59452,\n  \"file-csv\": 63197,\n  \"file-dashed-line\": 63607,\n  \"file-doc\": 58861,\n  \"file-download\": 62829,\n  \"file-edit\": 62236,\n  \"file-eps\": 58948,\n  \"file-excel\": 61891,\n  \"file-exclamation\": 62234,\n  \"file-export\": 62830,\n  \"file-fragment\": 59031,\n  \"file-gif\": 58949,\n  \"file-half-dashed\": 59032,\n  \"file-heart\": 57718,\n  \"file-html\": 59453,\n  \"file-icns\": 59457,\n  \"file-image\": 61893,\n  \"file-import\": 62831,\n  \"file-invoice-dollar\": 62833,\n  \"file-invoice\": 62832,\n  \"file-jpg\": 58950,\n  \"file-js\": 59454,\n  \"file-lines\": 61788,\n  \"file-lock\": 58278,\n  \"file-magnifying-glass\": 63589,\n  \"file-medical-alt\": 62584,\n  \"file-medical\": 62583,\n  \"file-midi\": 59397,\n  \"file-minus\": 62232,\n  \"file-mov\": 58951,\n  \"file-mp3\": 58952,\n  \"file-mp4\": 58953,\n  \"file-music\": 63670,\n  \"file-odf\": 59388,\n  \"file-pdf\": 61889,\n  \"file-pen\": 62236,\n  \"file-plus-minus\": 57719,\n  \"file-plus\": 62233,\n  \"file-png\": 58982,\n  \"file-powerpoint\": 61892,\n  \"file-ppt\": 58954,\n  \"file-prescription\": 62834,\n  \"file-search\": 63589,\n  \"file-shield\": 58608,\n  \"file-signature\": 62835,\n  \"file-slash\": 58279,\n  \"file-spreadsheet\": 63067,\n  \"file-svg\": 58955,\n  \"file-tex\": 59389,\n  \"file-text\": 61788,\n  \"file-times\": 62231,\n  \"file-upload\": 62836,\n  \"file-user\": 63068,\n  \"file-vector\": 58956,\n  \"file-video\": 61896,\n  \"file-wav\": 59390,\n  \"file-waveform\": 62584,\n  \"file-word\": 61890,\n  \"file-xls\": 58957,\n  \"file-xmark\": 62231,\n  \"file-xml\": 58964,\n  \"file-zip\": 58862,\n  \"file-zipper\": 61894,\n  \"file\": 61787,\n  \"files-medical\": 63485,\n  \"files\": 57720,\n  \"fill-drip\": 62838,\n  \"fill\": 62837,\n  \"film-alt\": 61448,\n  \"film-canister\": 63671,\n  \"film-cannister\": 63671,\n  \"film-music\": 59241,\n  \"film-simple\": 61448,\n  \"film-slash\": 57721,\n  \"film-stack\": 59243,\n  \"film\": 61448,\n  \"films\": 57722,\n  \"filter-circle-dollar\": 63074,\n  \"filter-circle-xmark\": 57723,\n  \"filter-list\": 57724,\n  \"filter-slash\": 57725,\n  \"filter\": 61616,\n  \"filters\": 57726,\n  \"fingerprint\": 62839,\n  \"fire-alt\": 63460,\n  \"fire-burner\": 58609,\n  \"fire-extinguisher\": 61748,\n  \"fire-flame-curved\": 63460,\n  \"fire-flame-simple\": 62570,\n  \"fire-flame\": 63199,\n  \"fire-hydrant\": 57727,\n  \"fire-smoke\": 63307,\n  \"fire\": 61549,\n  \"fireplace\": 63386,\n  \"firewall\": 58332,\n  \"first-aid\": 62585,\n  \"fish-bones\": 58116,\n  \"fish-cooked\": 63486,\n  \"fish-fins\": 58610,\n  \"fish\": 62840,\n  \"fishing-rod\": 58280,\n  \"fist-raised\": 63198,\n  \"flag-alt\": 63308,\n  \"flag-checkered\": 61726,\n  \"flag-pennant\": 62550,\n  \"flag-swallowtail\": 63308,\n  \"flag-usa\": 63309,\n  \"flag\": 61476,\n  \"flame\": 63199,\n  \"flashlight\": 63672,\n  \"flask-gear\": 58865,\n  \"flask-poison\": 63200,\n  \"flask-potion\": 63201,\n  \"flask-round-poison\": 63200,\n  \"flask-round-potion\": 63201,\n  \"flask-vial\": 58611,\n  \"flask\": 61635,\n  \"flatbread-stuffed\": 58380,\n  \"flatbread\": 58379,\n  \"floppy-disk-circle-arrow-right\": 57728,\n  \"floppy-disk-circle-xmark\": 57729,\n  \"floppy-disk-pen\": 57730,\n  \"floppy-disk-times\": 57729,\n  \"floppy-disk\": 61639,\n  \"floppy-disks\": 57731,\n  \"florin-sign\": 57732,\n  \"flower-daffodil\": 63488,\n  \"flower-tulip\": 63489,\n  \"flower\": 63487,\n  \"flushed\": 62841,\n  \"flute\": 63673,\n  \"flux-capacitor\": 63674,\n  \"flying-disc\": 58281,\n  \"fog\": 63310,\n  \"folder-arrow-down\": 57427,\n  \"folder-arrow-left\": 59346,\n  \"folder-arrow-right\": 59347,\n  \"folder-arrow-up\": 57428,\n  \"folder-blank\": 61563,\n  \"folder-bookmark\": 57734,\n  \"folder-check\": 58958,\n  \"folder-closed\": 57733,\n  \"folder-cog\": 57735,\n  \"folder-download\": 57427,\n  \"folder-gear\": 57735,\n  \"folder-grid\": 57736,\n  \"folder-heart\": 57737,\n  \"folder-image\": 57738,\n  \"folder-magnifying-glass\": 57739,\n  \"folder-medical\": 57740,\n  \"folder-minus\": 63069,\n  \"folder-music\": 57741,\n  \"folder-open\": 61564,\n  \"folder-plus\": 63070,\n  \"folder-search\": 57739,\n  \"folder-times\": 63071,\n  \"folder-tree\": 63490,\n  \"folder-upload\": 57428,\n  \"folder-user\": 57742,\n  \"folder-xmark\": 63071,\n  \"folder\": 61563,\n  \"folders\": 63072,\n  \"fondue-pot\": 58381,\n  \"font-awesome-flag\": 62132,\n  \"font-awesome-logo-full\": 62132,\n  \"font-awesome\": 62132,\n  \"font-case\": 63590,\n  \"font\": 61489,\n  \"foot-wing\": 59444,\n  \"football-ball\": 62542,\n  \"football-helmet\": 62543,\n  \"football\": 62542,\n  \"fork-knife\": 62182,\n  \"fork\": 62179,\n  \"forklift\": 62586,\n  \"fort\": 58502,\n  \"forward-fast\": 61520,\n  \"forward-step\": 61521,\n  \"forward\": 61518,\n  \"fragile\": 62651,\n  \"frame\": 58517,\n  \"franc-sign\": 57743,\n  \"french-fries\": 63491,\n  \"frog\": 62766,\n  \"frosty-head\": 63387,\n  \"frown-open\": 62842,\n  \"frown\": 61721,\n  \"function\": 63073,\n  \"funnel-dollar\": 63074,\n  \"futbol-ball\": 61923,\n  \"futbol\": 61923,\n  \"g\": 71,\n  \"galaxy\": 57352,\n  \"gallery-thumbnails\": 58282,\n  \"game-board-alt\": 63592,\n  \"game-board-simple\": 63592,\n  \"game-board\": 63591,\n  \"game-console-handheld-crank\": 58809,\n  \"game-console-handheld\": 63675,\n  \"gamepad-alt\": 58786,\n  \"gamepad-modern\": 58786,\n  \"gamepad\": 61723,\n  \"garage-car\": 57354,\n  \"garage-empty\": 59081,\n  \"garage-open\": 57355,\n  \"garage\": 57353,\n  \"garlic\": 58382,\n  \"gas-pump-left\": 59256,\n  \"gas-pump-right\": 59257,\n  \"gas-pump-slash\": 62964,\n  \"gas-pump\": 62767,\n  \"gauge-circle-bolt\": 58518,\n  \"gauge-circle-minus\": 58519,\n  \"gauge-circle-plus\": 58520,\n  \"gauge-high\": 63013,\n  \"gauge-low\": 63015,\n  \"gauge-max\": 63014,\n  \"gauge-med\": 63012,\n  \"gauge-min\": 63016,\n  \"gauge-simple-high\": 63018,\n  \"gauge-simple-low\": 63020,\n  \"gauge-simple-max\": 63019,\n  \"gauge-simple-med\": 63017,\n  \"gauge-simple-min\": 63021,\n  \"gauge-simple\": 63017,\n  \"gauge\": 63012,\n  \"gave-dandy\": 58377,\n  \"gavel\": 61667,\n  \"gbp\": 61780,\n  \"gear-api\": 59556,\n  \"gear-code\": 58856,\n  \"gear-complex-api\": 59557,\n  \"gear-complex-code\": 58859,\n  \"gear-complex\": 58857,\n  \"gear\": 61459,\n  \"gears\": 61573,\n  \"gem\": 62373,\n  \"gemini\": 59465,\n  \"genderless\": 61997,\n  \"ghost\": 63202,\n  \"gif\": 57744,\n  \"gift-card\": 63075,\n  \"gift\": 61547,\n  \"gifts\": 63388,\n  \"gingerbread-man\": 63389,\n  \"glass-champagne\": 63390,\n  \"glass-cheers\": 63391,\n  \"glass-citrus\": 63593,\n  \"glass-empty\": 57745,\n  \"glass-half-empty\": 57746,\n  \"glass-half-full\": 57746,\n  \"glass-half\": 57746,\n  \"glass-martini-alt\": 62843,\n  \"glass-martini\": 61440,\n  \"glass-water-droplet\": 58613,\n  \"glass-water\": 58612,\n  \"glass-whiskey-rocks\": 63393,\n  \"glass-whiskey\": 63392,\n  \"glass\": 63492,\n  \"glasses-alt\": 62965,\n  \"glasses-round\": 62965,\n  \"glasses\": 62768,\n  \"globe-africa\": 62844,\n  \"globe-americas\": 62845,\n  \"globe-asia\": 62846,\n  \"globe-europe\": 63394,\n  \"globe-oceania\": 58491,\n  \"globe-pointer\": 58894,\n  \"globe-snow\": 63395,\n  \"globe-stand\": 62966,\n  \"globe-wifi\": 59013,\n  \"globe-www\": 59558,\n  \"globe\": 61612,\n  \"glove-boxing\": 62520,\n  \"goal-net\": 58283,\n  \"golf-ball-tee\": 62544,\n  \"golf-ball\": 62544,\n  \"golf-club\": 62545,\n  \"golf-flag-hole\": 58284,\n  \"gopuram\": 63076,\n  \"gpu\": 59459,\n  \"graduation-cap\": 61853,\n  \"gramophone\": 63677,\n  \"grapes\": 58118,\n  \"grate-droplet\": 57748,\n  \"grate\": 57747,\n  \"greater-than-equal\": 62770,\n  \"greater-than\": 62,\n  \"grid-2-minus\": 59050,\n  \"grid-2-plus\": 57751,\n  \"grid-2\": 57750,\n  \"grid-3\": 57749,\n  \"grid-4\": 57752,\n  \"grid-5\": 57753,\n  \"grid-dividers\": 58285,\n  \"grid-horizontal\": 62861,\n  \"grid-round-2-minus\": 59051,\n  \"grid-round-2-plus\": 58844,\n  \"grid-round-2\": 58843,\n  \"grid-round-4\": 58845,\n  \"grid-round-5\": 58846,\n  \"grid-round\": 58842,\n  \"grid-vertical\": 62862,\n  \"grid\": 57749,\n  \"grill-fire\": 58788,\n  \"grill-hot\": 58789,\n  \"grill\": 58787,\n  \"grimace\": 62847,\n  \"grin-alt\": 62849,\n  \"grin-beam-sweat\": 62851,\n  \"grin-beam\": 62850,\n  \"grin-hearts\": 62852,\n  \"grin-squint-tears\": 62854,\n  \"grin-squint\": 62853,\n  \"grin-stars\": 62855,\n  \"grin-tears\": 62856,\n  \"grin-tongue-squint\": 62858,\n  \"grin-tongue-wink\": 62859,\n  \"grin-tongue\": 62857,\n  \"grin-wink\": 62860,\n  \"grin\": 62848,\n  \"grip-dots-vertical\": 58385,\n  \"grip-dots\": 58384,\n  \"grip-horizontal\": 62861,\n  \"grip-lines-vertical\": 63397,\n  \"grip-lines\": 63396,\n  \"grip-vertical\": 62862,\n  \"grip\": 62861,\n  \"group-arrows-rotate\": 58614,\n  \"guarani-sign\": 57754,\n  \"guitar-electric\": 63678,\n  \"guitar\": 63398,\n  \"guitars\": 63679,\n  \"gun-slash\": 57756,\n  \"gun-squirt\": 57757,\n  \"gun\": 57755,\n  \"h-square\": 61693,\n  \"h\": 72,\n  \"h1\": 62227,\n  \"h2\": 62228,\n  \"h3\": 62229,\n  \"h4\": 63594,\n  \"h5\": 58386,\n  \"h6\": 58387,\n  \"hamburger\": 63493,\n  \"hammer-brush\": 58912,\n  \"hammer-crash\": 58388,\n  \"hammer-war\": 63204,\n  \"hammer\": 63203,\n  \"hamsa\": 63077,\n  \"hand-back-fist\": 62037,\n  \"hand-back-point-down\": 57758,\n  \"hand-back-point-left\": 57759,\n  \"hand-back-point-ribbon\": 57760,\n  \"hand-back-point-right\": 57761,\n  \"hand-back-point-up\": 57762,\n  \"hand-dots\": 62561,\n  \"hand-fingers-crossed\": 57763,\n  \"hand-fist\": 63198,\n  \"hand-heart\": 62652,\n  \"hand-holding-box\": 62587,\n  \"hand-holding-circle-dollar\": 58913,\n  \"hand-holding-dollar\": 62656,\n  \"hand-holding-droplet\": 62657,\n  \"hand-holding-hand\": 58615,\n  \"hand-holding-heart\": 62654,\n  \"hand-holding-magic\": 63205,\n  \"hand-holding-medical\": 57436,\n  \"hand-holding-seedling\": 62655,\n  \"hand-holding-skull\": 57764,\n  \"hand-holding-star\": 59393,\n  \"hand-holding-usd\": 62656,\n  \"hand-holding-water\": 62657,\n  \"hand-holding\": 62653,\n  \"hand-horns\": 57769,\n  \"hand-lizard\": 62040,\n  \"hand-love\": 57765,\n  \"hand-middle-finger\": 63494,\n  \"hand-paper\": 62038,\n  \"hand-peace\": 62043,\n  \"hand-point-down\": 61607,\n  \"hand-point-left\": 61605,\n  \"hand-point-ribbon\": 57766,\n  \"hand-point-right\": 61604,\n  \"hand-point-up\": 61606,\n  \"hand-pointer\": 62042,\n  \"hand-receiving\": 62588,\n  \"hand-rock\": 62037,\n  \"hand-scissors\": 62039,\n  \"hand-shaka\": 59441,\n  \"hand-sparkles\": 57437,\n  \"hand-spock\": 62041,\n  \"hand-wave\": 57767,\n  \"hand\": 62038,\n  \"handcuffs\": 58616,\n  \"hands-american-sign-language-interpreting\": 62115,\n  \"hands-asl-interpreting\": 62115,\n  \"hands-bound\": 58617,\n  \"hands-bubbles\": 57438,\n  \"hands-clapping\": 57768,\n  \"hands-heart\": 62659,\n  \"hands-helping\": 62660,\n  \"hands-holding-child\": 58618,\n  \"hands-holding-circle\": 58619,\n  \"hands-holding-diamond\": 62588,\n  \"hands-holding-dollar\": 62661,\n  \"hands-holding-heart\": 62659,\n  \"hands-holding\": 62658,\n  \"hands-praying\": 63108,\n  \"hands-usd\": 62661,\n  \"hands-wash\": 57438,\n  \"hands\": 62119,\n  \"handshake-alt-slash\": 57440,\n  \"handshake-alt\": 62133,\n  \"handshake-angle\": 62660,\n  \"handshake-simple-slash\": 57440,\n  \"handshake-simple\": 62133,\n  \"handshake-slash\": 57440,\n  \"handshake\": 62133,\n  \"hanukiah\": 63206,\n  \"hard-drive\": 61600,\n  \"hard-hat\": 63495,\n  \"hard-of-hearing\": 62116,\n  \"hashtag-lock\": 58389,\n  \"hashtag\": 35,\n  \"hat-beach\": 58886,\n  \"hat-chef\": 63595,\n  \"hat-cowboy-side\": 63681,\n  \"hat-cowboy\": 63680,\n  \"hat-hard\": 63495,\n  \"hat-santa\": 63399,\n  \"hat-winter\": 63400,\n  \"hat-witch\": 63207,\n  \"hat-wizard\": 63208,\n  \"haykal\": 63078,\n  \"hdd\": 61600,\n  \"head-side-brain\": 63496,\n  \"head-side-circuit\": 59230,\n  \"head-side-cough-slash\": 57442,\n  \"head-side-cough\": 57441,\n  \"head-side-gear\": 58897,\n  \"head-side-goggles\": 63210,\n  \"head-side-headphones\": 63682,\n  \"head-side-heart\": 57770,\n  \"head-side-mask\": 57443,\n  \"head-side-medical\": 63497,\n  \"head-side-speak\": 59231,\n  \"head-side-virus\": 57444,\n  \"head-side\": 63209,\n  \"head-vr\": 63210,\n  \"header\": 61916,\n  \"heading\": 61916,\n  \"headphones-alt\": 61477,\n  \"headphones-simple\": 61477,\n  \"headphones-slash\": 59260,\n  \"headphones\": 61477,\n  \"headset\": 62864,\n  \"heart-broken\": 63401,\n  \"heart-circle-bolt\": 58620,\n  \"heart-circle-check\": 58621,\n  \"heart-circle-exclamation\": 58622,\n  \"heart-circle-minus\": 58623,\n  \"heart-circle-plus\": 58624,\n  \"heart-circle-xmark\": 58625,\n  \"heart-circle\": 62663,\n  \"heart-crack\": 63401,\n  \"heart-half-alt\": 57772,\n  \"heart-half-stroke\": 57772,\n  \"heart-half\": 57771,\n  \"heart-music-camera-bolt\": 63597,\n  \"heart-pulse\": 61982,\n  \"heart-rate\": 62968,\n  \"heart-slash\": 59278,\n  \"heart-square\": 62664,\n  \"heart\": 61444,\n  \"heartbeat\": 61982,\n  \"hearts\": 59279,\n  \"heat\": 57356,\n  \"helicopter-symbol\": 58626,\n  \"helicopter\": 62771,\n  \"helmet-battle\": 63211,\n  \"helmet-safety\": 63495,\n  \"helmet-un\": 58627,\n  \"heptagon\": 59424,\n  \"hexagon-check\": 58390,\n  \"hexagon-divide\": 57773,\n  \"hexagon-equals\": 59058,\n  \"hexagon-exclamation\": 58391,\n  \"hexagon-image\": 58628,\n  \"hexagon-minus\": 62215,\n  \"hexagon-nodes-bolt\": 59034,\n  \"hexagon-nodes\": 59033,\n  \"hexagon-plus\": 62208,\n  \"hexagon-vertical-nft-slanted\": 58629,\n  \"hexagon-vertical-nft\": 58629,\n  \"hexagon-xmark\": 62190,\n  \"hexagon\": 62226,\n  \"high-definition\": 57774,\n  \"highlighter-line\": 57775,\n  \"highlighter\": 62865,\n  \"hiking\": 63212,\n  \"hill-avalanche\": 58631,\n  \"hill-rockslide\": 58632,\n  \"hippo\": 63213,\n  \"history\": 61914,\n  \"hockey-mask\": 63214,\n  \"hockey-puck\": 62547,\n  \"hockey-stick-puck\": 58286,\n  \"hockey-stick\": 59366,\n  \"hockey-sticks\": 62548,\n  \"holly-berry\": 63402,\n  \"home-alt\": 61461,\n  \"home-blank\": 58503,\n  \"home-heart\": 62665,\n  \"home-lg-alt\": 61461,\n  \"home-lg\": 58287,\n  \"home-user\": 57776,\n  \"home\": 61461,\n  \"honey-pot\": 58392,\n  \"hood-cloak\": 63215,\n  \"horizontal-rule\": 63596,\n  \"horse-head\": 63403,\n  \"horse-saddle\": 63683,\n  \"horse\": 63216,\n  \"horseshoe\": 59418,\n  \"hose-reel\": 58394,\n  \"hose\": 58393,\n  \"hospital-alt\": 61688,\n  \"hospital-symbol\": 62590,\n  \"hospital-user\": 63501,\n  \"hospital-wide\": 61688,\n  \"hospital\": 61688,\n  \"hospitals\": 63502,\n  \"hot-tub-person\": 62867,\n  \"hot-tub\": 62867,\n  \"hotdog\": 63503,\n  \"hotel\": 62868,\n  \"hourglass-1\": 62033,\n  \"hourglass-2\": 62034,\n  \"hourglass-3\": 62035,\n  \"hourglass-clock\": 58395,\n  \"hourglass-empty\": 62036,\n  \"hourglass-end\": 62035,\n  \"hourglass-half\": 62034,\n  \"hourglass-start\": 62033,\n  \"hourglass\": 62036,\n  \"house-blank\": 58503,\n  \"house-building\": 57777,\n  \"house-chimney-blank\": 58288,\n  \"house-chimney-crack\": 63217,\n  \"house-chimney-heart\": 57778,\n  \"house-chimney-medical\": 63474,\n  \"house-chimney-user\": 57445,\n  \"house-chimney-window\": 57357,\n  \"house-chimney\": 58287,\n  \"house-circle-check\": 58633,\n  \"house-circle-exclamation\": 58634,\n  \"house-circle-xmark\": 58635,\n  \"house-crack\": 58289,\n  \"house-damage\": 63217,\n  \"house-day\": 57358,\n  \"house-fire\": 58636,\n  \"house-flag\": 58637,\n  \"house-flood-water-circle-arrow-right\": 58639,\n  \"house-flood-water\": 58638,\n  \"house-flood\": 63311,\n  \"house-heart\": 62665,\n  \"house-laptop\": 57446,\n  \"house-leave\": 57359,\n  \"house-lock\": 58640,\n  \"house-medical-circle-check\": 58641,\n  \"house-medical-circle-exclamation\": 58642,\n  \"house-medical-circle-xmark\": 58643,\n  \"house-medical-flag\": 58644,\n  \"house-medical\": 58290,\n  \"house-night\": 57360,\n  \"house-person-arrive\": 57361,\n  \"house-person-depart\": 57359,\n  \"house-person-leave\": 57359,\n  \"house-person-return\": 57361,\n  \"house-return\": 57361,\n  \"house-signal\": 57362,\n  \"house-tree\": 57779,\n  \"house-tsunami\": 58645,\n  \"house-turret\": 57780,\n  \"house-unlock\": 59082,\n  \"house-user\": 57776,\n  \"house-water\": 63311,\n  \"house-window\": 58291,\n  \"house\": 61461,\n  \"hryvnia-sign\": 63218,\n  \"hryvnia\": 63218,\n  \"humidity\": 63312,\n  \"hundred-points\": 58396,\n  \"hurricane\": 63313,\n  \"hydra\": 59014,\n  \"hyphen\": 45,\n  \"i-cursor\": 62022,\n  \"i\": 73,\n  \"ice-cream\": 63504,\n  \"ice-skate\": 63404,\n  \"icicles\": 63405,\n  \"icons-alt\": 63598,\n  \"icons\": 63597,\n  \"id-badge\": 62145,\n  \"id-card-alt\": 62591,\n  \"id-card-clip\": 62591,\n  \"id-card\": 62146,\n  \"igloo\": 63406,\n  \"ils\": 61963,\n  \"image-broken\": 59562,\n  \"image-circle-arrow-down\": 59244,\n  \"image-circle-check\": 59245,\n  \"image-circle-plus\": 59246,\n  \"image-circle-xmark\": 59247,\n  \"image-landscape\": 57781,\n  \"image-music\": 59248,\n  \"image-polaroid-user\": 57782,\n  \"image-polaroid\": 63684,\n  \"image-portrait\": 62432,\n  \"image-slash\": 57783,\n  \"image-stack\": 59249,\n  \"image-user\": 57784,\n  \"image\": 61502,\n  \"images-user\": 57785,\n  \"images\": 62210,\n  \"inbox-arrow-down\": 62224,\n  \"inbox-arrow-up\": 62225,\n  \"inbox-full\": 57786,\n  \"inbox-in\": 62224,\n  \"inbox-out\": 62225,\n  \"inbox\": 61468,\n  \"inboxes\": 57787,\n  \"indent\": 61500,\n  \"indian-rupee-sign\": 57788,\n  \"indian-rupee\": 57788,\n  \"industry-alt\": 62387,\n  \"industry-windows\": 62387,\n  \"industry\": 62069,\n  \"infinity\": 62772,\n  \"info-circle\": 61530,\n  \"info-square\": 62223,\n  \"info\": 61737,\n  \"inhaler\": 62969,\n  \"input-numeric\": 57789,\n  \"input-password\": 59517,\n  \"input-pipe\": 57790,\n  \"input-text\": 57791,\n  \"inr\": 57788,\n  \"institution\": 61852,\n  \"integral\": 63079,\n  \"interrobang\": 58810,\n  \"intersection\": 63080,\n  \"inventory\": 62592,\n  \"island-tree-palm\": 63505,\n  \"island-tropical\": 63505,\n  \"italic\": 61491,\n  \"j\": 74,\n  \"jack-o-lantern\": 62222,\n  \"jar-wheat\": 58647,\n  \"jar\": 58646,\n  \"jeans-straight\": 59091,\n  \"jeans\": 59090,\n  \"jedi\": 63081,\n  \"jet-fighter-up\": 58648,\n  \"jet-fighter\": 61691,\n  \"joint\": 62869,\n  \"journal-whills\": 63082,\n  \"joystick\": 63685,\n  \"jpy\": 61783,\n  \"jug-bottle\": 58875,\n  \"jug-detergent\": 58649,\n  \"jug\": 63686,\n  \"k\": 75,\n  \"kaaba\": 63083,\n  \"kayak\": 59547,\n  \"kazoo\": 63687,\n  \"kerning\": 63599,\n  \"kettlebell\": 59442,\n  \"key-skeleton-left-right\": 58292,\n  \"key-skeleton\": 63219,\n  \"key\": 61572,\n  \"keyboard-brightness-low\": 57793,\n  \"keyboard-brightness\": 57792,\n  \"keyboard-down\": 57794,\n  \"keyboard-left\": 57795,\n  \"keyboard\": 61724,\n  \"keynote\": 63084,\n  \"khanda\": 63085,\n  \"kidneys\": 62971,\n  \"kip-sign\": 57796,\n  \"kiss-beam\": 62871,\n  \"kiss-wink-heart\": 62872,\n  \"kiss\": 62870,\n  \"kit-medical\": 62585,\n  \"kitchen-set\": 58650,\n  \"kite\": 63220,\n  \"kiwi-bird\": 62773,\n  \"kiwi-fruit\": 58124,\n  \"knife-kitchen\": 63221,\n  \"knife\": 62180,\n  \"krw\": 61785,\n  \"l\": 76,\n  \"label\": 59559,\n  \"lacrosse-stick-ball\": 58294,\n  \"lacrosse-stick\": 58293,\n  \"ladder-water\": 62917,\n  \"lambda\": 63086,\n  \"lamp-desk\": 57364,\n  \"lamp-floor\": 57365,\n  \"lamp-street\": 57797,\n  \"lamp\": 62666,\n  \"land-mine-on\": 58651,\n  \"landmark-alt\": 63314,\n  \"landmark-dome\": 63314,\n  \"landmark-flag\": 58652,\n  \"landmark-magnifying-glass\": 58914,\n  \"landmark\": 63087,\n  \"landscape\": 57781,\n  \"language\": 61867,\n  \"laptop-arrow-down\": 57798,\n  \"laptop-binary\": 58855,\n  \"laptop-code\": 62972,\n  \"laptop-file\": 58653,\n  \"laptop-house\": 57446,\n  \"laptop-medical\": 63506,\n  \"laptop-mobile\": 63610,\n  \"laptop-slash\": 57799,\n  \"laptop\": 61705,\n  \"lari-sign\": 57800,\n  \"lasso-sparkles\": 57801,\n  \"lasso\": 63688,\n  \"laugh-beam\": 62874,\n  \"laugh-squint\": 62875,\n  \"laugh-wink\": 62876,\n  \"laugh\": 62873,\n  \"layer-group-minus\": 62974,\n  \"layer-group-plus\": 62975,\n  \"layer-group\": 62973,\n  \"layer-minus\": 62974,\n  \"layer-plus\": 62975,\n  \"layer\": 59455,\n  \"leaf-heart\": 62667,\n  \"leaf-maple\": 63222,\n  \"leaf-oak\": 63223,\n  \"leaf\": 61548,\n  \"leafy-green\": 58397,\n  \"left-from-bracket\": 58988,\n  \"left-from-dotted-line\": 59074,\n  \"left-from-line\": 62280,\n  \"left-long-to-line\": 58398,\n  \"left-long\": 62218,\n  \"left-right\": 62263,\n  \"left-to-bracket\": 58989,\n  \"left-to-dotted-line\": 59075,\n  \"left-to-line\": 62283,\n  \"left\": 62293,\n  \"legal\": 61667,\n  \"lemon\": 61588,\n  \"leo\": 59466,\n  \"less-than-equal\": 62775,\n  \"less-than\": 60,\n  \"level-down-alt\": 62398,\n  \"level-down\": 61769,\n  \"level-up-alt\": 62399,\n  \"level-up\": 61768,\n  \"libra\": 59467,\n  \"life-ring\": 61901,\n  \"light-ceiling\": 57366,\n  \"light-emergency-on\": 58400,\n  \"light-emergency\": 58399,\n  \"light-switch-off\": 57368,\n  \"light-switch-on\": 57369,\n  \"light-switch\": 57367,\n  \"lightbulb-cfl-on\": 58791,\n  \"lightbulb-cfl\": 58790,\n  \"lightbulb-dollar\": 63088,\n  \"lightbulb-exclamation-on\": 57802,\n  \"lightbulb-exclamation\": 63089,\n  \"lightbulb-gear\": 58877,\n  \"lightbulb-message\": 59015,\n  \"lightbulb-on\": 63090,\n  \"lightbulb-slash\": 63091,\n  \"lightbulb\": 61675,\n  \"lighthouse\": 58898,\n  \"lights-holiday\": 63410,\n  \"line-chart\": 61953,\n  \"line-columns\": 63600,\n  \"line-height\": 63601,\n  \"lines-leaning\": 58654,\n  \"link-broken\": 59458,\n  \"link-horizontal-slash\": 57804,\n  \"link-horizontal\": 57803,\n  \"link-simple-slash\": 57806,\n  \"link-simple\": 57805,\n  \"link-slash\": 61735,\n  \"link\": 61633,\n  \"lips\": 62976,\n  \"lira-sign\": 61845,\n  \"list-1-2\": 61643,\n  \"list-alt\": 61474,\n  \"list-check\": 61614,\n  \"list-dots\": 61642,\n  \"list-dropdown\": 57807,\n  \"list-music\": 63689,\n  \"list-numeric\": 61643,\n  \"list-ol\": 61643,\n  \"list-radio\": 57808,\n  \"list-squares\": 61498,\n  \"list-timeline\": 57809,\n  \"list-tree\": 57810,\n  \"list-ul\": 61642,\n  \"list\": 61498,\n  \"litecoin-sign\": 57811,\n  \"loader\": 57812,\n  \"lobster\": 58401,\n  \"location-arrow-slash\": 59258,\n  \"location-arrow-up\": 58938,\n  \"location-arrow\": 61732,\n  \"location-check\": 62982,\n  \"location-circle\": 62978,\n  \"location-crosshairs-slash\": 62979,\n  \"location-crosshairs\": 62977,\n  \"location-dot-slash\": 62981,\n  \"location-dot\": 62405,\n  \"location-exclamation\": 62984,\n  \"location-minus\": 62985,\n  \"location-pen\": 62983,\n  \"location-pin-lock\": 58655,\n  \"location-pin-slash\": 62988,\n  \"location-pin\": 61505,\n  \"location-plus\": 62986,\n  \"location-question\": 62987,\n  \"location-slash\": 62979,\n  \"location-smile\": 62989,\n  \"location-xmark\": 62990,\n  \"location\": 62977,\n  \"lock-a\": 58402,\n  \"lock-alt\": 62221,\n  \"lock-hashtag\": 58403,\n  \"lock-keyhole-open\": 62402,\n  \"lock-keyhole\": 62221,\n  \"lock-open-alt\": 62402,\n  \"lock-open\": 62401,\n  \"lock\": 61475,\n  \"locust\": 58656,\n  \"lollipop\": 58404,\n  \"lollypop\": 58404,\n  \"long-arrow-alt-down\": 62217,\n  \"long-arrow-alt-left\": 62218,\n  \"long-arrow-alt-right\": 62219,\n  \"long-arrow-alt-up\": 62220,\n  \"long-arrow-down\": 61813,\n  \"long-arrow-left\": 61815,\n  \"long-arrow-right\": 61816,\n  \"long-arrow-up\": 61814,\n  \"loveseat\": 62668,\n  \"low-vision\": 62120,\n  \"luchador-mask\": 62549,\n  \"luchador\": 62549,\n  \"luggage-cart\": 62877,\n  \"lungs-virus\": 57447,\n  \"lungs\": 62980,\n  \"lychee\": 59428,\n  \"m\": 77,\n  \"mace\": 63224,\n  \"magic-wand-sparkles\": 58058,\n  \"magic\": 61648,\n  \"magnet\": 61558,\n  \"magnifying-glass-arrow-right\": 58657,\n  \"magnifying-glass-arrows-rotate\": 58974,\n  \"magnifying-glass-chart\": 58658,\n  \"magnifying-glass-dollar\": 63112,\n  \"magnifying-glass-location\": 63113,\n  \"magnifying-glass-minus\": 61456,\n  \"magnifying-glass-music\": 58975,\n  \"magnifying-glass-play\": 58976,\n  \"magnifying-glass-plus\": 61454,\n  \"magnifying-glass-waveform\": 58977,\n  \"magnifying-glass\": 61442,\n  \"mail-bulk\": 63092,\n  \"mail-forward\": 61540,\n  \"mail-reply-all\": 61730,\n  \"mail-reply\": 62437,\n  \"mailbox-flag-up\": 58811,\n  \"mailbox-open-empty\": 59425,\n  \"mailbox-open-letter\": 59427,\n  \"mailbox\": 63507,\n  \"maki-roll\": 58507,\n  \"makizushi\": 58507,\n  \"malaysian-ringgit-sign\": 59130,\n  \"male\": 61827,\n  \"manat-sign\": 57813,\n  \"mandolin\": 63225,\n  \"mango\": 58127,\n  \"manhole\": 57814,\n  \"map-location-dot\": 62880,\n  \"map-location\": 62879,\n  \"map-marked-alt\": 62880,\n  \"map-marked\": 62879,\n  \"map-marker-alt-slash\": 62981,\n  \"map-marker-alt\": 62405,\n  \"map-marker-check\": 62982,\n  \"map-marker-edit\": 62983,\n  \"map-marker-exclamation\": 62984,\n  \"map-marker-minus\": 62985,\n  \"map-marker-plus\": 62986,\n  \"map-marker-question\": 62987,\n  \"map-marker-slash\": 62988,\n  \"map-marker-smile\": 62989,\n  \"map-marker-times\": 62990,\n  \"map-marker-xmark\": 62990,\n  \"map-marker\": 61505,\n  \"map-pin\": 62070,\n  \"map-signs\": 62071,\n  \"map\": 62073,\n  \"marker\": 62881,\n  \"mars-and-venus-burst\": 58659,\n  \"mars-and-venus\": 61988,\n  \"mars-double\": 61991,\n  \"mars-stroke-h\": 61995,\n  \"mars-stroke-right\": 61995,\n  \"mars-stroke-up\": 61994,\n  \"mars-stroke-v\": 61994,\n  \"mars-stroke\": 61993,\n  \"mars\": 61986,\n  \"martini-glass-citrus\": 62817,\n  \"martini-glass-empty\": 61440,\n  \"martini-glass\": 62843,\n  \"mask-face\": 57815,\n  \"mask-luchador\": 62549,\n  \"mask-snorkel\": 58295,\n  \"mask-ventilator\": 58660,\n  \"mask\": 63226,\n  \"masks-theater\": 63024,\n  \"mattress-pillow\": 58661,\n  \"maximize\": 62238,\n  \"meat\": 63508,\n  \"medal\": 62882,\n  \"medkit\": 61690,\n  \"megaphone\": 63093,\n  \"meh-blank\": 62884,\n  \"meh-rolling-eyes\": 62885,\n  \"meh\": 61722,\n  \"melon-slice\": 58129,\n  \"melon\": 58128,\n  \"memo-circle-check\": 57817,\n  \"memo-circle-info\": 58522,\n  \"memo-pad\": 57818,\n  \"memo\": 57816,\n  \"memory\": 62776,\n  \"menorah\": 63094,\n  \"mercury\": 61987,\n  \"merge\": 58662,\n  \"message-arrow-down\": 57819,\n  \"message-arrow-up-right\": 57821,\n  \"message-arrow-up\": 57820,\n  \"message-bot\": 58296,\n  \"message-captions\": 57822,\n  \"message-check\": 62626,\n  \"message-code\": 57823,\n  \"message-dollar\": 63056,\n  \"message-dot\": 59103,\n  \"message-dots\": 62627,\n  \"message-edit\": 62628,\n  \"message-exclamation\": 62629,\n  \"message-heart\": 58825,\n  \"message-image\": 57824,\n  \"message-lines\": 62630,\n  \"message-medical\": 63476,\n  \"message-middle-top\": 57826,\n  \"message-middle\": 57825,\n  \"message-minus\": 62631,\n  \"message-music\": 63663,\n  \"message-pen\": 62628,\n  \"message-plus\": 62632,\n  \"message-question\": 57827,\n  \"message-quote\": 57828,\n  \"message-slash\": 62633,\n  \"message-smile\": 62634,\n  \"message-sms\": 57829,\n  \"message-text\": 57830,\n  \"message-times\": 62635,\n  \"message-waveform\": 59104,\n  \"message-xmark\": 62635,\n  \"message\": 62074,\n  \"messages-dollar\": 63058,\n  \"messages-question\": 57831,\n  \"messages\": 62646,\n  \"messaging\": 62627,\n  \"meteor\": 63315,\n  \"meter-bolt\": 57833,\n  \"meter-droplet\": 57834,\n  \"meter-fire\": 57835,\n  \"meter\": 57832,\n  \"microchip-ai\": 57836,\n  \"microchip\": 62171,\n  \"microphone-alt-slash\": 62777,\n  \"microphone-alt\": 62409,\n  \"microphone-circle-alt\": 57623,\n  \"microphone-circle-plus\": 59261,\n  \"microphone-circle-xmark\": 59262,\n  \"microphone-circle\": 57622,\n  \"microphone-lines-slash\": 62777,\n  \"microphone-lines\": 62409,\n  \"microphone-signal-meter\": 59232,\n  \"microphone-slash\": 61745,\n  \"microphone-stand\": 63691,\n  \"microphone\": 61744,\n  \"microscope\": 62992,\n  \"microwave\": 57371,\n  \"midi\": 59398,\n  \"mill-sign\": 57837,\n  \"mind-share\": 63095,\n  \"minimize\": 63372,\n  \"minus-circle\": 61526,\n  \"minus-hexagon\": 62215,\n  \"minus-large\": 58372,\n  \"minus-octagon\": 62216,\n  \"minus-square\": 61766,\n  \"minus\": 61544,\n  \"mistletoe\": 63412,\n  \"mitten\": 63413,\n  \"mobile-alt\": 62413,\n  \"mobile-android-alt\": 62415,\n  \"mobile-android\": 62414,\n  \"mobile-arrow-down\": 59211,\n  \"mobile-button\": 61707,\n  \"mobile-iphone\": 57838,\n  \"mobile-notch\": 57838,\n  \"mobile-phone\": 62414,\n  \"mobile-retro\": 58663,\n  \"mobile-rotate-reverse\": 59412,\n  \"mobile-rotate\": 59411,\n  \"mobile-screen-button\": 62413,\n  \"mobile-screen\": 62415,\n  \"mobile-signal-out\": 57840,\n  \"mobile-signal\": 57839,\n  \"mobile-slash\": 59413,\n  \"mobile-vibrate-slash\": 59415,\n  \"mobile-vibrate\": 59414,\n  \"mobile\": 62414,\n  \"money-bill-1-wave\": 62779,\n  \"money-bill-1\": 62417,\n  \"money-bill-alt\": 62417,\n  \"money-bill-simple-wave\": 57842,\n  \"money-bill-simple\": 57841,\n  \"money-bill-transfer\": 58664,\n  \"money-bill-trend-up\": 58665,\n  \"money-bill-wave-alt\": 62779,\n  \"money-bill-wave\": 62778,\n  \"money-bill-wheat\": 58666,\n  \"money-bill\": 61654,\n  \"money-bills-alt\": 57844,\n  \"money-bills-simple\": 57844,\n  \"money-bills\": 57843,\n  \"money-check-alt\": 62781,\n  \"money-check-dollar-pen\": 63603,\n  \"money-check-dollar\": 62781,\n  \"money-check-edit-alt\": 63603,\n  \"money-check-edit\": 63602,\n  \"money-check-pen\": 63602,\n  \"money-check\": 62780,\n  \"money-from-bracket\": 58130,\n  \"money-simple-from-bracket\": 58131,\n  \"monitor-heart-rate\": 62993,\n  \"monitor-waveform\": 62993,\n  \"monkey\": 63227,\n  \"monument\": 62886,\n  \"moon-cloud\": 63316,\n  \"moon-first-quarter-inverse\": 59506,\n  \"moon-first-quarter\": 59504,\n  \"moon-full-inverse\": 59507,\n  \"moon-full\": 59505,\n  \"moon-last-quarter-inverse\": 59504,\n  \"moon-last-quarter\": 59506,\n  \"moon-new-inverse\": 59505,\n  \"moon-new\": 59507,\n  \"moon-over-sun\": 63306,\n  \"moon-star\": 59337,\n  \"moon-stars\": 63317,\n  \"moon-waning-crescent-inverse\": 59511,\n  \"moon-waning-crescent\": 59508,\n  \"moon-waning-gibbous-inverse\": 59510,\n  \"moon-waning-gibbous\": 59509,\n  \"moon-waxing-crescent-inverse\": 59509,\n  \"moon-waxing-crescent\": 59510,\n  \"moon-waxing-gibbous-inverse\": 59508,\n  \"moon-waxing-gibbous\": 59511,\n  \"moon\": 61830,\n  \"moped\": 58297,\n  \"mortar-board\": 61853,\n  \"mortar-pestle\": 62887,\n  \"mosque\": 63096,\n  \"mosquito-net\": 58668,\n  \"mosquito\": 58667,\n  \"motorcycle\": 61980,\n  \"mound\": 58669,\n  \"mountain-city\": 58670,\n  \"mountain-sun\": 58671,\n  \"mountain\": 63228,\n  \"mountains\": 63229,\n  \"mouse-alt\": 63693,\n  \"mouse-field\": 58792,\n  \"mouse-pointer\": 62021,\n  \"mouse\": 63692,\n  \"mp3-player\": 63694,\n  \"mug-hot\": 63414,\n  \"mug-marshmallows\": 63415,\n  \"mug-saucer\": 61684,\n  \"mug-tea-saucer\": 57845,\n  \"mug-tea\": 63605,\n  \"mug\": 63604,\n  \"multiply\": 61453,\n  \"museum\": 61852,\n  \"mushroom\": 58405,\n  \"music-alt-slash\": 63696,\n  \"music-alt\": 63695,\n  \"music-magnifying-glass\": 58978,\n  \"music-note-slash\": 63696,\n  \"music-note\": 63695,\n  \"music-slash\": 63697,\n  \"music\": 61441,\n  \"mustache\": 58812,\n  \"n\": 78,\n  \"naira-sign\": 57846,\n  \"narwhal\": 63230,\n  \"nas\": 59553,\n  \"navicon\": 61641,\n  \"nesting-dolls\": 58298,\n  \"network-wired\": 63231,\n  \"neuter\": 61996,\n  \"newspaper\": 61930,\n  \"nfc-lock\": 57848,\n  \"nfc-magnifying-glass\": 57849,\n  \"nfc-pen\": 57850,\n  \"nfc-signal\": 57851,\n  \"nfc-slash\": 57852,\n  \"nfc-symbol\": 58673,\n  \"nfc-trash\": 57853,\n  \"nfc\": 57847,\n  \"nigiri\": 58506,\n  \"non-binary\": 59399,\n  \"norwegian-krone-sign\": 59112,\n  \"nose\": 58813,\n  \"not-equal\": 62782,\n  \"notdef\": 57854,\n  \"note-medical\": 57856,\n  \"note-sticky\": 62025,\n  \"note\": 57855,\n  \"notebook\": 57857,\n  \"notes-medical\": 62593,\n  \"notes-sticky\": 59225,\n  \"notes\": 57858,\n  \"numpad\": 59340,\n  \"o\": 79,\n  \"oar\": 59524,\n  \"oars\": 59525,\n  \"object-exclude\": 58524,\n  \"object-group\": 62023,\n  \"object-intersect\": 58525,\n  \"object-subtract\": 58526,\n  \"object-ungroup\": 62024,\n  \"object-union\": 58527,\n  \"objects-align-bottom\": 58299,\n  \"objects-align-center-horizontal\": 58300,\n  \"objects-align-center-vertical\": 58301,\n  \"objects-align-left\": 58302,\n  \"objects-align-right\": 58303,\n  \"objects-align-top\": 58304,\n  \"objects-column\": 58305,\n  \"octagon-check\": 58406,\n  \"octagon-divide\": 57859,\n  \"octagon-equals\": 59059,\n  \"octagon-exclamation\": 57860,\n  \"octagon-minus\": 62216,\n  \"octagon-plus\": 62209,\n  \"octagon-xmark\": 62192,\n  \"octagon\": 62214,\n  \"octopus\": 59016,\n  \"oil-can-drip\": 57861,\n  \"oil-can\": 62995,\n  \"oil-temp\": 62996,\n  \"oil-temperature\": 62996,\n  \"oil-well\": 58674,\n  \"olive-branch\": 58135,\n  \"olive\": 58134,\n  \"om\": 63097,\n  \"omega\": 63098,\n  \"onion\": 58407,\n  \"open-captioning\": 59263,\n  \"opossum\": 59516,\n  \"option\": 58136,\n  \"ornament\": 63416,\n  \"otter\": 63232,\n  \"outdent\": 61499,\n  \"outlet\": 57372,\n  \"oven\": 57373,\n  \"overline\": 63606,\n  \"owl\": 59551,\n  \"p\": 80,\n  \"page-break\": 63607,\n  \"page-caret-down\": 58409,\n  \"page-caret-up\": 58410,\n  \"page\": 58408,\n  \"pager\": 63509,\n  \"paint-brush-alt\": 62889,\n  \"paint-brush-fine\": 62889,\n  \"paint-brush\": 61948,\n  \"paint-roller\": 62890,\n  \"paintbrush-alt\": 62889,\n  \"paintbrush-fine-slash\": 59213,\n  \"paintbrush-fine\": 62889,\n  \"paintbrush-pencil\": 57862,\n  \"paintbrush-slash\": 59214,\n  \"paintbrush\": 61948,\n  \"palette-boxes\": 62595,\n  \"palette\": 62783,\n  \"pallet-alt\": 62595,\n  \"pallet-box\": 57864,\n  \"pallet-boxes\": 62595,\n  \"pallet\": 62594,\n  \"pan-food\": 58411,\n  \"pan-frying\": 58412,\n  \"pancakes\": 58413,\n  \"panel-ews\": 58414,\n  \"panel-fire\": 58415,\n  \"panorama\": 57865,\n  \"panties\": 59092,\n  \"pants-straight\": 59094,\n  \"pants\": 59093,\n  \"paper-plane-alt\": 57866,\n  \"paper-plane-top\": 57866,\n  \"paper-plane\": 61912,\n  \"paperclip-vertical\": 58306,\n  \"paperclip\": 61638,\n  \"parachute-box\": 62669,\n  \"paragraph-left\": 63608,\n  \"paragraph-rtl\": 63608,\n  \"paragraph\": 61917,\n  \"parentheses\": 57541,\n  \"parenthesis\": 40,\n  \"parking-circle-slash\": 62998,\n  \"parking-circle\": 62997,\n  \"parking-slash\": 62999,\n  \"parking\": 62784,\n  \"party-back\": 58460,\n  \"party-bell\": 58138,\n  \"party-horn\": 58139,\n  \"passport\": 62891,\n  \"pastafarianism\": 63099,\n  \"paste\": 61674,\n  \"pause-circle\": 62091,\n  \"pause\": 61516,\n  \"paw-alt\": 63233,\n  \"paw-claws\": 63234,\n  \"paw-simple\": 63233,\n  \"paw\": 61872,\n  \"peace\": 63100,\n  \"peach\": 57867,\n  \"peanut\": 58416,\n  \"peanuts\": 58417,\n  \"peapod\": 58140,\n  \"pear\": 57868,\n  \"pedestal\": 57869,\n  \"pegasus\": 63235,\n  \"pen-alt-slash\": 57871,\n  \"pen-alt\": 62213,\n  \"pen-circle\": 57870,\n  \"pen-clip-slash\": 57871,\n  \"pen-clip\": 62213,\n  \"pen-fancy-slash\": 57872,\n  \"pen-fancy\": 62892,\n  \"pen-field\": 57873,\n  \"pen-line\": 57874,\n  \"pen-nib-slash\": 58529,\n  \"pen-nib\": 62893,\n  \"pen-paintbrush\": 63000,\n  \"pen-ruler\": 62894,\n  \"pen-slash\": 57875,\n  \"pen-square\": 61771,\n  \"pen-swirl\": 57876,\n  \"pen-to-square\": 61508,\n  \"pen\": 62212,\n  \"pencil-alt\": 62211,\n  \"pencil-line\": 59215,\n  \"pencil-mechanical\": 58826,\n  \"pencil-paintbrush\": 63000,\n  \"pencil-ruler\": 62894,\n  \"pencil-slash\": 57877,\n  \"pencil-square\": 61771,\n  \"pencil\": 62211,\n  \"pennant\": 62550,\n  \"pentagon\": 59280,\n  \"people-arrows-left-right\": 57448,\n  \"people-arrows\": 57448,\n  \"people-carry-box\": 62670,\n  \"people-carry\": 62670,\n  \"people-dress-simple\": 57880,\n  \"people-dress\": 57879,\n  \"people-group\": 58675,\n  \"people-line\": 58676,\n  \"people-pants-simple\": 57882,\n  \"people-pants\": 57881,\n  \"people-pulling\": 58677,\n  \"people-robbery\": 58678,\n  \"people-roof\": 58679,\n  \"people-simple\": 57883,\n  \"people\": 57878,\n  \"pepper-hot\": 63510,\n  \"pepper\": 58418,\n  \"percent\": 37,\n  \"percentage\": 37,\n  \"period\": 46,\n  \"person-arms-raised\": 59267,\n  \"person-arrow-down-to-line\": 58680,\n  \"person-arrow-up-from-line\": 58681,\n  \"person-basketball\": 59268,\n  \"person-biking-mountain\": 63563,\n  \"person-biking\": 63562,\n  \"person-booth\": 63318,\n  \"person-breastfeeding\": 58682,\n  \"person-burst\": 58683,\n  \"person-cane\": 58684,\n  \"person-carry-box\": 62671,\n  \"person-carry-empty\": 59269,\n  \"person-carry\": 62671,\n  \"person-chalkboard\": 58685,\n  \"person-circle-check\": 58686,\n  \"person-circle-exclamation\": 58687,\n  \"person-circle-minus\": 58688,\n  \"person-circle-plus\": 58689,\n  \"person-circle-question\": 58690,\n  \"person-circle-xmark\": 58691,\n  \"person-digging\": 63582,\n  \"person-dolly-empty\": 62673,\n  \"person-dolly\": 62672,\n  \"person-dots-from-line\": 62576,\n  \"person-dress-burst\": 58692,\n  \"person-dress-fairy\": 58887,\n  \"person-dress-simple\": 57884,\n  \"person-dress\": 61826,\n  \"person-drowning\": 58693,\n  \"person-fairy\": 58888,\n  \"person-falling-burst\": 58695,\n  \"person-falling\": 58694,\n  \"person-from-portal\": 57379,\n  \"person-golfing\": 59270,\n  \"person-half-dress\": 58696,\n  \"person-harassing\": 58697,\n  \"person-hiking\": 63212,\n  \"person-limbs-wide\": 59271,\n  \"person-meditating\": 59361,\n  \"person-military-pointing\": 58698,\n  \"person-military-rifle\": 58699,\n  \"person-military-to-person\": 58700,\n  \"person-pinball\": 57885,\n  \"person-praying\": 63107,\n  \"person-pregnant\": 58142,\n  \"person-rays\": 58701,\n  \"person-rifle\": 58702,\n  \"person-running-fast\": 58879,\n  \"person-running\": 63244,\n  \"person-seat-reclined\": 57887,\n  \"person-seat-window\": 59272,\n  \"person-seat\": 57886,\n  \"person-shelter\": 58703,\n  \"person-sign\": 63319,\n  \"person-simple\": 57888,\n  \"person-skating\": 63429,\n  \"person-ski-jumping\": 63431,\n  \"person-ski-lift\": 63432,\n  \"person-skiing-nordic\": 63434,\n  \"person-skiing\": 63433,\n  \"person-sledding\": 63435,\n  \"person-snowboarding\": 63438,\n  \"person-snowmobiling\": 63441,\n  \"person-soccer\": 59273,\n  \"person-swimming-pool\": 59274,\n  \"person-swimming-water\": 59275,\n  \"person-swimming\": 62916,\n  \"person-through-window\": 58793,\n  \"person-to-door\": 58419,\n  \"person-to-portal\": 57378,\n  \"person-walking-arrow-loop-left\": 58705,\n  \"person-walking-arrow-right\": 58706,\n  \"person-walking-dashed-line-arrow-right\": 58707,\n  \"person-walking-luggage\": 58708,\n  \"person-walking-with-cane\": 62109,\n  \"person-walking\": 62804,\n  \"person-water-arms-raised\": 59276,\n  \"person-waving\": 59277,\n  \"person\": 61827,\n  \"peruvian-soles-sign\": 59141,\n  \"peseta-sign\": 57889,\n  \"peso-sign\": 57890,\n  \"phone-alt\": 63609,\n  \"phone-arrow-down-left\": 57891,\n  \"phone-arrow-down\": 57891,\n  \"phone-arrow-right\": 58814,\n  \"phone-arrow-up-right\": 57892,\n  \"phone-arrow-up\": 57892,\n  \"phone-circle-alt\": 57628,\n  \"phone-circle-down\": 57629,\n  \"phone-circle\": 57627,\n  \"phone-connection\": 59105,\n  \"phone-flip\": 63609,\n  \"phone-hangup\": 57893,\n  \"phone-incoming\": 57891,\n  \"phone-intercom\": 58420,\n  \"phone-laptop\": 63610,\n  \"phone-missed\": 57894,\n  \"phone-office\": 63101,\n  \"phone-outgoing\": 57892,\n  \"phone-plus\": 62674,\n  \"phone-rotary\": 63699,\n  \"phone-slash\": 62429,\n  \"phone-square-alt\": 63611,\n  \"phone-square-down\": 57978,\n  \"phone-square\": 61592,\n  \"phone-volume\": 62112,\n  \"phone-waveform\": 59106,\n  \"phone-xmark\": 57895,\n  \"phone\": 61589,\n  \"photo-film-music\": 57896,\n  \"photo-film\": 63612,\n  \"photo-video\": 63612,\n  \"pi\": 63102,\n  \"piano-keyboard\": 63701,\n  \"piano\": 63700,\n  \"pickaxe\": 58815,\n  \"pickleball\": 58421,\n  \"picture-in-picture\": 59403,\n  \"pie-chart\": 61952,\n  \"pie\": 63237,\n  \"pig\": 63238,\n  \"piggy-bank\": 62675,\n  \"pills\": 62596,\n  \"pinata\": 58307,\n  \"pinball\": 57897,\n  \"pineapple\": 58143,\n  \"ping-pong-paddle-ball\": 62557,\n  \"pipe-circle-check\": 58422,\n  \"pipe-collar\": 58423,\n  \"pipe-section\": 58424,\n  \"pipe-smoking\": 58308,\n  \"pipe-valve\": 58425,\n  \"pipe\": 124,\n  \"pisces\": 59468,\n  \"pizza-slice\": 63512,\n  \"pizza\": 63511,\n  \"place-of-worship\": 63103,\n  \"plane-alt\": 62430,\n  \"plane-arrival\": 62895,\n  \"plane-circle-check\": 58709,\n  \"plane-circle-exclamation\": 58710,\n  \"plane-circle-xmark\": 58711,\n  \"plane-departure\": 62896,\n  \"plane-engines\": 62430,\n  \"plane-flying\": 59323,\n  \"plane-landing-gear\": 59324,\n  \"plane-lock\": 58712,\n  \"plane-prop\": 57899,\n  \"plane-slash\": 57449,\n  \"plane-tail\": 57900,\n  \"plane-up-slash\": 57902,\n  \"plane-up\": 57901,\n  \"plane\": 61554,\n  \"planet-moon\": 57375,\n  \"planet-ringed\": 57376,\n  \"plant-wilt\": 58794,\n  \"plate-utensils\": 58427,\n  \"plate-wheat\": 58714,\n  \"play-circle\": 61764,\n  \"play-flip\": 59264,\n  \"play-pause\": 57903,\n  \"play\": 61515,\n  \"plug-circle-bolt\": 58715,\n  \"plug-circle-check\": 58716,\n  \"plug-circle-exclamation\": 58717,\n  \"plug-circle-minus\": 58718,\n  \"plug-circle-plus\": 58719,\n  \"plug-circle-xmark\": 58720,\n  \"plug\": 61926,\n  \"plus-circle\": 61525,\n  \"plus-hexagon\": 62208,\n  \"plus-large\": 58782,\n  \"plus-minus\": 58428,\n  \"plus-octagon\": 62209,\n  \"plus-square\": 61694,\n  \"plus\": 43,\n  \"podcast\": 62158,\n  \"podium-star\": 63320,\n  \"podium\": 63104,\n  \"poker-chip\": 59554,\n  \"police-box\": 57377,\n  \"polish-zloty-sign\": 59147,\n  \"poll-h\": 63106,\n  \"poll-people\": 63321,\n  \"poll\": 63105,\n  \"pompebled\": 58429,\n  \"poo-bolt\": 63322,\n  \"poo-storm\": 63322,\n  \"poo\": 62206,\n  \"pool-8-ball\": 58309,\n  \"poop\": 63001,\n  \"popcorn\": 63513,\n  \"popsicle\": 58430,\n  \"portal-enter\": 57378,\n  \"portal-exit\": 57379,\n  \"portrait\": 62432,\n  \"possum\": 59516,\n  \"postage-stamp\": 59107,\n  \"pot-food\": 58431,\n  \"potato\": 58432,\n  \"pound-sign\": 61780,\n  \"power-off\": 61457,\n  \"pray\": 63107,\n  \"praying-hands\": 63108,\n  \"prescription-bottle-alt\": 62598,\n  \"prescription-bottle-medical\": 62598,\n  \"prescription-bottle-pill\": 58816,\n  \"prescription-bottle\": 62597,\n  \"prescription\": 62897,\n  \"presentation-screen\": 63109,\n  \"presentation\": 63109,\n  \"pretzel\": 58433,\n  \"print-magnifying-glass\": 63514,\n  \"print-search\": 63514,\n  \"print-slash\": 63110,\n  \"print\": 61487,\n  \"pro\": 57909,\n  \"procedures\": 62599,\n  \"project-diagram\": 62786,\n  \"projector\": 63702,\n  \"pronoun\": 59041,\n  \"pump-impeller\": 59445,\n  \"pump-medical\": 57450,\n  \"pump-soap\": 57451,\n  \"pump\": 58434,\n  \"pumpkin\": 63239,\n  \"puzzle-piece-alt\": 57905,\n  \"puzzle-piece-simple\": 57905,\n  \"puzzle-piece\": 61742,\n  \"puzzle\": 58435,\n  \"q\": 81,\n  \"qrcode-read\": 59289,\n  \"qrcode\": 61481,\n  \"question-circle\": 61529,\n  \"question-square\": 62205,\n  \"question\": 63,\n  \"quidditch-broom-ball\": 62552,\n  \"quidditch\": 62552,\n  \"quote-left-alt\": 61709,\n  \"quote-left\": 61709,\n  \"quote-right-alt\": 61710,\n  \"quote-right\": 61710,\n  \"quotes\": 57908,\n  \"quran\": 63111,\n  \"r\": 82,\n  \"rabbit-fast\": 63241,\n  \"rabbit-running\": 63241,\n  \"rabbit\": 63240,\n  \"raccoon\": 58899,\n  \"racquet\": 62554,\n  \"radar\": 57380,\n  \"radiation-alt\": 63418,\n  \"radiation\": 63417,\n  \"radio-alt\": 63704,\n  \"radio-tuner\": 63704,\n  \"radio\": 63703,\n  \"rainbow-half\": 59338,\n  \"rainbow\": 63323,\n  \"raindrops\": 63324,\n  \"ram\": 63242,\n  \"ramp-loading\": 62676,\n  \"random\": 61556,\n  \"ranking-star\": 58721,\n  \"raygun\": 57381,\n  \"receipt\": 62787,\n  \"record-vinyl\": 63705,\n  \"rectangle-4k\": 59250,\n  \"rectangle-ad\": 63041,\n  \"rectangle-api\": 59552,\n  \"rectangle-barcode\": 62563,\n  \"rectangle-beta\": 59400,\n  \"rectangle-code\": 58146,\n  \"rectangle-hd\": 57774,\n  \"rectangle-hdr\": 59251,\n  \"rectangle-high-dynamic-range\": 59251,\n  \"rectangle-history-circle-plus\": 58531,\n  \"rectangle-history-circle-user\": 58532,\n  \"rectangle-history\": 58530,\n  \"rectangle-irc\": 59500,\n  \"rectangle-landscape\": 62202,\n  \"rectangle-list\": 61474,\n  \"rectangle-minus\": 59060,\n  \"rectangle-n-a\": 59560,\n  \"rectangle-new\": 59514,\n  \"rectangle-plus\": 59061,\n  \"rectangle-portrait\": 62203,\n  \"rectangle-pro\": 57909,\n  \"rectangle-sd\": 57994,\n  \"rectangle-tall\": 59281,\n  \"rectangle-terminal\": 57910,\n  \"rectangle-times\": 62480,\n  \"rectangle-vertical-history\": 57911,\n  \"rectangle-vertical\": 62203,\n  \"rectangle-video-on-demand\": 59252,\n  \"rectangle-wide\": 62204,\n  \"rectangle-xmark\": 62480,\n  \"rectangle\": 62202,\n  \"rectangles-mixed\": 58147,\n  \"recycle\": 61880,\n  \"redo-alt\": 62201,\n  \"redo\": 61470,\n  \"reel\": 57912,\n  \"reflect-both\": 58991,\n  \"reflect-horizontal\": 58980,\n  \"reflect-vertical\": 58981,\n  \"refresh\": 61473,\n  \"refrigerator\": 57382,\n  \"registered\": 62045,\n  \"remote\": 59561,\n  \"remove-format\": 63613,\n  \"remove\": 61453,\n  \"renminbi-sign\": 59196,\n  \"reorder\": 62800,\n  \"repeat-1-alt\": 62310,\n  \"repeat-1\": 62309,\n  \"repeat-alt\": 62308,\n  \"repeat\": 62307,\n  \"reply-all\": 61730,\n  \"reply-clock\": 57913,\n  \"reply-time\": 57913,\n  \"reply\": 62437,\n  \"republican\": 63326,\n  \"restroom-simple\": 57914,\n  \"restroom\": 63421,\n  \"retweet-alt\": 62305,\n  \"retweet\": 61561,\n  \"rhombus\": 57915,\n  \"ribbon\": 62678,\n  \"right-from-bracket\": 62197,\n  \"right-from-dotted-line\": 59076,\n  \"right-from-line\": 62279,\n  \"right-left-large\": 58849,\n  \"right-left\": 62306,\n  \"right-long-to-line\": 58436,\n  \"right-long\": 62219,\n  \"right-to-bracket\": 62198,\n  \"right-to-dotted-line\": 59077,\n  \"right-to-line\": 62284,\n  \"right\": 62294,\n  \"ring-diamond\": 58795,\n  \"ring\": 63243,\n  \"rings-wedding\": 63515,\n  \"rmb\": 61783,\n  \"road-barrier\": 58722,\n  \"road-bridge\": 58723,\n  \"road-circle-check\": 58724,\n  \"road-circle-exclamation\": 58725,\n  \"road-circle-xmark\": 58726,\n  \"road-lock\": 58727,\n  \"road-spikes\": 58728,\n  \"road\": 61464,\n  \"robot-astromech\": 58066,\n  \"robot\": 62788,\n  \"rocket-launch\": 57383,\n  \"rocket-vertical\": 59325,\n  \"rocket\": 61749,\n  \"rod-asclepius\": 58745,\n  \"rod-snake\": 58745,\n  \"roller-coaster\": 58148,\n  \"rotate-back\": 62186,\n  \"rotate-backward\": 62186,\n  \"rotate-exclamation\": 57916,\n  \"rotate-forward\": 62201,\n  \"rotate-left\": 62186,\n  \"rotate-reverse\": 58929,\n  \"rotate-right\": 62201,\n  \"rotate\": 62193,\n  \"rouble\": 61784,\n  \"route-highway\": 63002,\n  \"route-interstate\": 63003,\n  \"route\": 62679,\n  \"router\": 63706,\n  \"rows-3\": 59531,\n  \"rows\": 58002,\n  \"rss-square\": 61763,\n  \"rss\": 61598,\n  \"rub\": 61784,\n  \"ruble-sign\": 61784,\n  \"ruble\": 61784,\n  \"rug\": 58729,\n  \"rugby-ball\": 58310,\n  \"ruler-combined\": 62790,\n  \"ruler-horizontal\": 62791,\n  \"ruler-triangle\": 63004,\n  \"ruler-vertical\": 62792,\n  \"ruler\": 62789,\n  \"running\": 63244,\n  \"rupee-sign\": 61782,\n  \"rupee\": 61782,\n  \"rupiah-sign\": 57917,\n  \"rv\": 63422,\n  \"s\": 83,\n  \"sack-dollar\": 63517,\n  \"sack-xmark\": 58730,\n  \"sack\": 63516,\n  \"sad-cry\": 62899,\n  \"sad-tear\": 62900,\n  \"sagittarius\": 59469,\n  \"sailboat\": 58437,\n  \"salad\": 63518,\n  \"salt-shaker\": 58438,\n  \"sandwich\": 63519,\n  \"satellite-dish\": 63424,\n  \"satellite\": 63423,\n  \"sausage\": 63520,\n  \"save-circle-arrow-right\": 57728,\n  \"save-circle-xmark\": 57729,\n  \"save-times\": 57729,\n  \"save\": 61639,\n  \"sax-hot\": 63707,\n  \"saxophone-fire\": 63707,\n  \"saxophone\": 63708,\n  \"scale-balanced\": 62030,\n  \"scale-unbalanced-flip\": 62742,\n  \"scale-unbalanced\": 62741,\n  \"scalpel-line-dashed\": 63006,\n  \"scalpel-path\": 63006,\n  \"scalpel\": 63005,\n  \"scanner-gun\": 62600,\n  \"scanner-image\": 63731,\n  \"scanner-keyboard\": 62601,\n  \"scanner-touchscreen\": 62602,\n  \"scanner\": 62600,\n  \"scarecrow\": 63245,\n  \"scarf\": 63425,\n  \"school-circle-check\": 58731,\n  \"school-circle-exclamation\": 58732,\n  \"school-circle-xmark\": 58733,\n  \"school-flag\": 58734,\n  \"school-lock\": 58735,\n  \"school-unlock\": 59083,\n  \"school\": 62793,\n  \"scissors\": 61636,\n  \"scooter\": 59331,\n  \"scorpio\": 59470,\n  \"screen-users\": 63037,\n  \"screencast\": 57918,\n  \"screenshot\": 57562,\n  \"screwdriver-wrench\": 63449,\n  \"screwdriver\": 62794,\n  \"scribble\": 57919,\n  \"scroll-old\": 63247,\n  \"scroll-ribbon\": 62954,\n  \"scroll-torah\": 63136,\n  \"scroll\": 63246,\n  \"scrubber\": 62200,\n  \"scythe\": 63248,\n  \"sd-card\": 63426,\n  \"sd-cards\": 57920,\n  \"seal-exclamation\": 57922,\n  \"seal-question\": 57923,\n  \"seal\": 57921,\n  \"search-dollar\": 63112,\n  \"search-location\": 63113,\n  \"search-minus\": 61456,\n  \"search-plus\": 61454,\n  \"search\": 61442,\n  \"seat-airline-window\": 59326,\n  \"seat-airline\": 57924,\n  \"seat\": 59236,\n  \"seats\": 59237,\n  \"section\": 58439,\n  \"seedling\": 62680,\n  \"semicolon\": 59,\n  \"send-back\": 63614,\n  \"send-backward\": 63615,\n  \"send\": 57866,\n  \"sensor-alert\": 57385,\n  \"sensor-cloud\": 57388,\n  \"sensor-fire\": 57386,\n  \"sensor-on\": 57387,\n  \"sensor-smoke\": 57388,\n  \"sensor-triangle-exclamation\": 57385,\n  \"sensor\": 57384,\n  \"septagon\": 59424,\n  \"server\": 62003,\n  \"shapes\": 63007,\n  \"share-all\": 62311,\n  \"share-alt-square\": 61921,\n  \"share-alt\": 61920,\n  \"share-from-square\": 61773,\n  \"share-nodes\": 61920,\n  \"share-square\": 61773,\n  \"share\": 61540,\n  \"sheep\": 63249,\n  \"sheet-plastic\": 58737,\n  \"shekel-sign\": 61963,\n  \"shekel\": 61963,\n  \"shelves-empty\": 57926,\n  \"shelves\": 62592,\n  \"sheqel-sign\": 61963,\n  \"sheqel\": 61963,\n  \"shield-alt\": 62445,\n  \"shield-blank\": 61746,\n  \"shield-cat\": 58738,\n  \"shield-check\": 62199,\n  \"shield-cross\": 63250,\n  \"shield-dog\": 58739,\n  \"shield-exclamation\": 57927,\n  \"shield-halved\": 62445,\n  \"shield-heart\": 58740,\n  \"shield-keyhole\": 57928,\n  \"shield-minus\": 57929,\n  \"shield-plus\": 57930,\n  \"shield-quartered\": 58741,\n  \"shield-slash\": 57931,\n  \"shield-times\": 57932,\n  \"shield-user\": 59401,\n  \"shield-virus\": 57452,\n  \"shield-xmark\": 57932,\n  \"shield\": 61746,\n  \"ship-large\": 59408,\n  \"ship\": 61978,\n  \"shipping-fast\": 62603,\n  \"shipping-timed\": 62604,\n  \"shirt-jersey\": 59095,\n  \"shirt-long-sleeve\": 58311,\n  \"shirt-running\": 58312,\n  \"shirt-tank-top\": 58313,\n  \"shirt\": 62803,\n  \"shish-kebab\": 63521,\n  \"shoe-prints\": 62795,\n  \"shoe\": 59096,\n  \"shop-24\": 59290,\n  \"shop-lock\": 58533,\n  \"shop-slash\": 57456,\n  \"shop\": 62799,\n  \"shopping-bag\": 62096,\n  \"shopping-basket-alt\": 57519,\n  \"shopping-basket\": 62097,\n  \"shopping-cart\": 61562,\n  \"shortcake\": 58341,\n  \"shorts\": 59097,\n  \"shovel-snow\": 63427,\n  \"shovel\": 63251,\n  \"shower-alt\": 57933,\n  \"shower-down\": 57933,\n  \"shower\": 62156,\n  \"shredder\": 63114,\n  \"shrimp\": 58440,\n  \"shuffle\": 61556,\n  \"shutters\": 58441,\n  \"shuttle-space-vertical\": 59327,\n  \"shuttle-space\": 61847,\n  \"shuttle-van\": 62902,\n  \"shuttlecock\": 62555,\n  \"sickle\": 63522,\n  \"sidebar-flip\": 57935,\n  \"sidebar\": 57934,\n  \"sigma\": 63115,\n  \"sign-hanging\": 62681,\n  \"sign-in-alt\": 62198,\n  \"sign-in\": 61584,\n  \"sign-language\": 62119,\n  \"sign-out-alt\": 62197,\n  \"sign-out\": 61579,\n  \"sign-post\": 58916,\n  \"sign-posts-wrench\": 58918,\n  \"sign-posts\": 58917,\n  \"sign\": 62681,\n  \"signal-1\": 63116,\n  \"signal-2\": 63117,\n  \"signal-3\": 63118,\n  \"signal-4\": 63119,\n  \"signal-5\": 61458,\n  \"signal-alt-1\": 63121,\n  \"signal-alt-2\": 63122,\n  \"signal-alt-3\": 63123,\n  \"signal-alt-4\": 63120,\n  \"signal-alt-slash\": 63124,\n  \"signal-alt\": 63120,\n  \"signal-bars-fair\": 63122,\n  \"signal-bars-good\": 63123,\n  \"signal-bars-slash\": 63124,\n  \"signal-bars-strong\": 63120,\n  \"signal-bars-weak\": 63121,\n  \"signal-bars\": 63120,\n  \"signal-fair\": 63117,\n  \"signal-good\": 63118,\n  \"signal-perfect\": 61458,\n  \"signal-slash\": 63125,\n  \"signal-stream-slash\": 57936,\n  \"signal-stream\": 63709,\n  \"signal-strong\": 63119,\n  \"signal-weak\": 63116,\n  \"signal\": 61458,\n  \"signapore-dollar-sign\": 59182,\n  \"signature-lock\": 58314,\n  \"signature-slash\": 58315,\n  \"signature\": 62903,\n  \"signing\": 62119,\n  \"signs-post\": 62071,\n  \"sim-card\": 63428,\n  \"sim-cards\": 57937,\n  \"single-quote-left\": 59419,\n  \"single-quote-right\": 59420,\n  \"sink\": 57453,\n  \"siren-on\": 57390,\n  \"siren\": 57389,\n  \"sitemap\": 61672,\n  \"skating\": 63429,\n  \"skeleton-ribs\": 58827,\n  \"skeleton\": 63008,\n  \"ski-boot-ski\": 58317,\n  \"ski-boot\": 58316,\n  \"ski-jump\": 63431,\n  \"ski-lift\": 63432,\n  \"skiing-nordic\": 63434,\n  \"skiing\": 63433,\n  \"skull-cow\": 63710,\n  \"skull-crossbones\": 63252,\n  \"skull\": 62796,\n  \"slash-back\": 92,\n  \"slash-forward\": 47,\n  \"slash\": 63253,\n  \"sledding\": 63435,\n  \"sleigh\": 63436,\n  \"slider-circle\": 59216,\n  \"slider\": 57938,\n  \"sliders-h-square\": 62448,\n  \"sliders-h\": 61918,\n  \"sliders-simple\": 57939,\n  \"sliders-up\": 62449,\n  \"sliders-v-square\": 62450,\n  \"sliders-v\": 62449,\n  \"sliders\": 61918,\n  \"slot-machine\": 58318,\n  \"smile-beam\": 62904,\n  \"smile-plus\": 62905,\n  \"smile-wink\": 62682,\n  \"smile\": 61720,\n  \"smog\": 63327,\n  \"smoke\": 63328,\n  \"smoking-ban\": 62797,\n  \"smoking\": 62605,\n  \"sms\": 63437,\n  \"snake\": 63254,\n  \"sneaker-running\": 59417,\n  \"sneaker\": 59098,\n  \"snooze\": 63616,\n  \"snow-blowing\": 63329,\n  \"snowboarding\": 63438,\n  \"snowflake-droplets\": 58817,\n  \"snowflake\": 62172,\n  \"snowflakes\": 63439,\n  \"snowman-head\": 63387,\n  \"snowman\": 63440,\n  \"snowmobile-blank\": 59332,\n  \"snowmobile\": 63441,\n  \"snowplow\": 63442,\n  \"soap\": 57454,\n  \"soccer-ball\": 61923,\n  \"socks\": 63126,\n  \"soft-serve\": 58368,\n  \"solar-panel\": 62906,\n  \"solar-system\": 57391,\n  \"sort-alpha-asc\": 61789,\n  \"sort-alpha-desc\": 63617,\n  \"sort-alpha-down-alt\": 63617,\n  \"sort-alpha-down\": 61789,\n  \"sort-alpha-up-alt\": 63618,\n  \"sort-alpha-up\": 61790,\n  \"sort-alt\": 63619,\n  \"sort-amount-asc\": 61792,\n  \"sort-amount-desc\": 63620,\n  \"sort-amount-down-alt\": 63620,\n  \"sort-amount-down\": 61792,\n  \"sort-amount-up-alt\": 63621,\n  \"sort-amount-up\": 61793,\n  \"sort-asc\": 61662,\n  \"sort-circle-down\": 57393,\n  \"sort-circle-up\": 57394,\n  \"sort-circle\": 57392,\n  \"sort-desc\": 61661,\n  \"sort-down\": 61661,\n  \"sort-numeric-asc\": 61794,\n  \"sort-numeric-desc\": 63622,\n  \"sort-numeric-down-alt\": 63622,\n  \"sort-numeric-down\": 61794,\n  \"sort-numeric-up-alt\": 63623,\n  \"sort-numeric-up\": 61795,\n  \"sort-shapes-down-alt\": 63625,\n  \"sort-shapes-down\": 63624,\n  \"sort-shapes-up-alt\": 63627,\n  \"sort-shapes-up\": 63626,\n  \"sort-size-down-alt\": 63629,\n  \"sort-size-down\": 63628,\n  \"sort-size-up-alt\": 63631,\n  \"sort-size-up\": 63630,\n  \"sort-up-down\": 57497,\n  \"sort-up\": 61662,\n  \"sort\": 61660,\n  \"soup\": 63523,\n  \"spa\": 62907,\n  \"space-shuttle\": 61847,\n  \"space-station-moon-alt\": 57396,\n  \"space-station-moon-construction\": 57396,\n  \"space-station-moon\": 57395,\n  \"spade\": 62196,\n  \"spaghetti-monster-flying\": 63099,\n  \"sparkle\": 58838,\n  \"sparkles\": 63632,\n  \"speaker\": 63711,\n  \"speakers\": 63712,\n  \"spell-check\": 63633,\n  \"spider-black-widow\": 63256,\n  \"spider-web\": 63257,\n  \"spider\": 63255,\n  \"spine\": 59233,\n  \"spinner-scale\": 58922,\n  \"spinner-third\": 62452,\n  \"spinner\": 61712,\n  \"spiral\": 59402,\n  \"split\": 57940,\n  \"splotch\": 62908,\n  \"spoon\": 62181,\n  \"sportsball\": 58443,\n  \"spray-can-sparkles\": 62928,\n  \"spray-can\": 62909,\n  \"sprinkler-ceiling\": 58444,\n  \"sprinkler\": 57397,\n  \"sprout\": 62680,\n  \"square-0\": 57941,\n  \"square-1\": 57942,\n  \"square-2\": 57943,\n  \"square-3\": 57944,\n  \"square-4\": 57945,\n  \"square-5\": 57946,\n  \"square-6\": 57947,\n  \"square-7\": 57948,\n  \"square-8\": 57949,\n  \"square-9\": 57950,\n  \"square-a-lock\": 58445,\n  \"square-a\": 57951,\n  \"square-ampersand\": 57952,\n  \"square-arrow-down-left\": 57953,\n  \"square-arrow-down-right\": 57954,\n  \"square-arrow-down\": 62265,\n  \"square-arrow-left\": 62266,\n  \"square-arrow-right\": 62267,\n  \"square-arrow-up-left\": 57955,\n  \"square-arrow-up-right\": 61772,\n  \"square-arrow-up\": 62268,\n  \"square-austral\": 59174,\n  \"square-australian-dollar\": 59160,\n  \"square-b\": 57956,\n  \"square-baht\": 59161,\n  \"square-bangladeshi-taka\": 59204,\n  \"square-binary\": 59035,\n  \"square-bitcoin\": 59122,\n  \"square-bolt\": 57957,\n  \"square-brazilian-real\": 59121,\n  \"square-c\": 57958,\n  \"square-caret-down\": 61776,\n  \"square-caret-left\": 61841,\n  \"square-caret-right\": 61778,\n  \"square-caret-up\": 61777,\n  \"square-cedi\": 59177,\n  \"square-cent\": 59120,\n  \"square-check\": 61770,\n  \"square-chevron-down\": 62249,\n  \"square-chevron-left\": 62250,\n  \"square-chevron-right\": 62251,\n  \"square-chevron-up\": 62252,\n  \"square-chf\": 59110,\n  \"square-code\": 57959,\n  \"square-colon\": 59194,\n  \"square-cruzeiro\": 59117,\n  \"square-currency\": 59148,\n  \"square-d\": 57960,\n  \"square-danish-krone\": 59207,\n  \"square-dashed-circle-plus\": 58818,\n  \"square-dashed\": 57961,\n  \"square-divide\": 57962,\n  \"square-dollar\": 62185,\n  \"square-dong\": 59151,\n  \"square-down-left\": 57963,\n  \"square-down-right\": 57964,\n  \"square-down\": 62288,\n  \"square-e\": 57965,\n  \"square-ellipsis-vertical\": 57967,\n  \"square-ellipsis\": 57966,\n  \"square-envelope\": 61849,\n  \"square-equals\": 59062,\n  \"square-euro\": 59186,\n  \"square-eurozone\": 59175,\n  \"square-exclamation\": 62241,\n  \"square-f\": 57968,\n  \"square-florin\": 59159,\n  \"square-fragile\": 62619,\n  \"square-franc\": 59183,\n  \"square-full\": 62556,\n  \"square-g\": 57969,\n  \"square-guarani\": 59150,\n  \"square-h\": 61693,\n  \"square-half-horizontal\": 59406,\n  \"square-half-stroke-horizontal\": 59407,\n  \"square-half-stroke\": 59283,\n  \"square-half\": 59282,\n  \"square-heart\": 62664,\n  \"square-hryvnia\": 59152,\n  \"square-i\": 57970,\n  \"square-indian-rupee\": 59125,\n  \"square-info\": 62223,\n  \"square-j\": 57971,\n  \"square-k\": 57972,\n  \"square-kanban\": 58504,\n  \"square-kip\": 59149,\n  \"square-l\": 57973,\n  \"square-lari\": 59199,\n  \"square-left\": 62289,\n  \"square-lira\": 59111,\n  \"square-list\": 58505,\n  \"square-litecoin\": 59127,\n  \"square-m\": 57974,\n  \"square-malaysian-ringgit\": 59208,\n  \"square-manat\": 59140,\n  \"square-microphone\": 59265,\n  \"square-mill\": 59146,\n  \"square-minus\": 61766,\n  \"square-n\": 57975,\n  \"square-naira\": 59144,\n  \"square-nfi\": 58742,\n  \"square-norwegian-krone\": 59143,\n  \"square-o\": 57976,\n  \"square-p\": 57977,\n  \"square-parking-slash\": 62999,\n  \"square-parking\": 62784,\n  \"square-pen\": 61771,\n  \"square-person-confined\": 58743,\n  \"square-peruvian-soles\": 59158,\n  \"square-peseta\": 59114,\n  \"square-peso\": 59162,\n  \"square-phone-flip\": 63611,\n  \"square-phone-hangup\": 57978,\n  \"square-phone\": 61592,\n  \"square-plus\": 61694,\n  \"square-polish-zloty\": 59190,\n  \"square-poll-horizontal\": 63106,\n  \"square-poll-vertical\": 63105,\n  \"square-q\": 57979,\n  \"square-quarters\": 58446,\n  \"square-question\": 62205,\n  \"square-quote\": 58153,\n  \"square-r\": 57980,\n  \"square-renminbi\": 59197,\n  \"square-right\": 62290,\n  \"square-ring\": 58447,\n  \"square-root-alt\": 63128,\n  \"square-root-variable\": 63128,\n  \"square-root\": 63127,\n  \"square-rss\": 61763,\n  \"square-ruble\": 59128,\n  \"square-rupee\": 59157,\n  \"square-rupiah\": 59154,\n  \"square-s\": 57981,\n  \"square-share-nodes\": 61921,\n  \"square-shekel\": 59189,\n  \"square-sliders-vertical\": 62450,\n  \"square-sliders\": 62448,\n  \"square-small\": 57982,\n  \"square-star\": 57983,\n  \"square-sterling\": 59155,\n  \"square-swedish-krona\": 59164,\n  \"square-t\": 57984,\n  \"square-tenge\": 59185,\n  \"square-terminal\": 58154,\n  \"square-this-way-up\": 62623,\n  \"square-tugrik\": 59176,\n  \"square-turkish-lira\": 59167,\n  \"square-u\": 57985,\n  \"square-up-left\": 57986,\n  \"square-up-right\": 62304,\n  \"square-up\": 62291,\n  \"square-user\": 57987,\n  \"square-v\": 57988,\n  \"square-virus\": 58744,\n  \"square-w\": 57989,\n  \"square-wine-glass-crack\": 62619,\n  \"square-won\": 59145,\n  \"square-x\": 57990,\n  \"square-xmark\": 62163,\n  \"square-y\": 57991,\n  \"square-yen\": 59172,\n  \"square-z\": 57992,\n  \"square\": 61640,\n  \"squareapore-dollar\": 59187,\n  \"squid\": 58448,\n  \"squirrel\": 63258,\n  \"stadium\": 59084,\n  \"staff-aesculapius\": 58745,\n  \"staff-snake\": 58745,\n  \"staff\": 63259,\n  \"stair-car\": 59333,\n  \"stairs\": 57993,\n  \"stamp\": 62911,\n  \"standard-definition\": 57994,\n  \"stapler\": 58799,\n  \"star-and-crescent\": 63129,\n  \"star-christmas\": 63444,\n  \"star-circle\": 57635,\n  \"star-exclamation\": 62195,\n  \"star-half-alt\": 62912,\n  \"star-half-stroke\": 62912,\n  \"star-half\": 61577,\n  \"star-of-david\": 63130,\n  \"star-of-life\": 63009,\n  \"star-sharp-half-alt\": 57997,\n  \"star-sharp-half-stroke\": 57997,\n  \"star-sharp-half\": 57996,\n  \"star-sharp\": 57995,\n  \"star-shooting\": 57398,\n  \"star\": 61445,\n  \"starfighter-alt-advanced\": 57998,\n  \"starfighter-alt\": 57400,\n  \"starfighter-twin-ion-engine-advanced\": 57998,\n  \"starfighter-twin-ion-engine\": 57400,\n  \"starfighter\": 57399,\n  \"stars\": 63330,\n  \"starship-freighter\": 57402,\n  \"starship\": 57401,\n  \"steak\": 63524,\n  \"steering-wheel\": 63010,\n  \"step-backward\": 61512,\n  \"step-forward\": 61521,\n  \"sterling-sign\": 61780,\n  \"stethoscope\": 61681,\n  \"sticky-note\": 62025,\n  \"stocking\": 63445,\n  \"stomach\": 63011,\n  \"stool\": 59520,\n  \"stop-circle\": 62093,\n  \"stop\": 61517,\n  \"stopwatch-20\": 57455,\n  \"stopwatch\": 62194,\n  \"store-24\": 59291,\n  \"store-alt-slash\": 57456,\n  \"store-alt\": 62799,\n  \"store-lock\": 58534,\n  \"store-slash\": 57457,\n  \"store\": 62798,\n  \"strawberry\": 58155,\n  \"stream\": 62800,\n  \"street-view\": 61981,\n  \"stretcher\": 63525,\n  \"strikethrough\": 61644,\n  \"stroopwafel\": 62801,\n  \"subscript\": 61740,\n  \"subtitles-slash\": 58896,\n  \"subtitles\": 58895,\n  \"subtract\": 61544,\n  \"subway-tunnel\": 58019,\n  \"subway\": 62009,\n  \"suitcase-medical\": 61690,\n  \"suitcase-rolling\": 62913,\n  \"suitcase\": 61682,\n  \"sun-alt\": 57999,\n  \"sun-bright\": 57999,\n  \"sun-cloud\": 63331,\n  \"sun-dust\": 63332,\n  \"sun-haze\": 63333,\n  \"sun-plant-wilt\": 58746,\n  \"sun\": 61829,\n  \"sunglasses\": 63634,\n  \"sunrise\": 63334,\n  \"sunset\": 63335,\n  \"superscript\": 61739,\n  \"surprise\": 62914,\n  \"sushi-roll\": 58507,\n  \"sushi\": 58506,\n  \"swap-arrows\": 58890,\n  \"swap\": 58889,\n  \"swatchbook\": 62915,\n  \"swedish-krona-sign\": 59198,\n  \"swimmer\": 62916,\n  \"swimming-pool\": 62917,\n  \"sword-laser-alt\": 57404,\n  \"sword-laser\": 57403,\n  \"sword\": 63260,\n  \"swords-laser\": 57405,\n  \"swords\": 63261,\n  \"symbols\": 63598,\n  \"synagogue\": 63131,\n  \"sync-alt\": 62193,\n  \"sync\": 61473,\n  \"syringe\": 62606,\n  \"t-rex\": 58921,\n  \"t-shirt\": 62803,\n  \"t\": 84,\n  \"table-bar\": 59550,\n  \"table-cells-column-lock\": 59000,\n  \"table-cells-column-unlock\": 59024,\n  \"table-cells-columns\": 59052,\n  \"table-cells-header-lock\": 59054,\n  \"table-cells-header-unlock\": 59055,\n  \"table-cells-header\": 59053,\n  \"table-cells-large\": 61449,\n  \"table-cells-lock\": 59001,\n  \"table-cells-merge\": 59532,\n  \"table-cells-row-lock\": 59002,\n  \"table-cells-row-unlock\": 59025,\n  \"table-cells-rows\": 59056,\n  \"table-cells-split\": 59533,\n  \"table-cells-unlock\": 59026,\n  \"table-cells\": 61450,\n  \"table-columns-add-after\": 59534,\n  \"table-columns-add-before\": 59535,\n  \"table-columns-merge-next\": 59536,\n  \"table-columns-merge-previous\": 59537,\n  \"table-columns-remove-after\": 59538,\n  \"table-columns-remove-before\": 59539,\n  \"table-columns\": 61659,\n  \"table-dining\": 59522,\n  \"table-layout\": 58000,\n  \"table-list\": 61451,\n  \"table-picnic\": 58157,\n  \"table-pivot\": 58001,\n  \"table-rows-add-above\": 59540,\n  \"table-rows-add-below\": 59541,\n  \"table-rows-merge-next\": 59542,\n  \"table-rows-merge-previous\": 59543,\n  \"table-rows-remove-above\": 59544,\n  \"table-rows-remove-below\": 59545,\n  \"table-rows\": 58002,\n  \"table-slash\": 59546,\n  \"table-tennis-paddle-ball\": 62557,\n  \"table-tennis\": 62557,\n  \"table-tree\": 58003,\n  \"table\": 61646,\n  \"tablet-alt\": 62458,\n  \"tablet-android-alt\": 62460,\n  \"tablet-android\": 62459,\n  \"tablet-button\": 61706,\n  \"tablet-rugged\": 62607,\n  \"tablet-screen-button\": 62458,\n  \"tablet-screen\": 62460,\n  \"tablet\": 62459,\n  \"tablets\": 62608,\n  \"tachograph-digital\": 62822,\n  \"tachometer-alt-average\": 63012,\n  \"tachometer-alt-fast\": 63013,\n  \"tachometer-alt-fastest\": 63014,\n  \"tachometer-alt-slow\": 63015,\n  \"tachometer-alt-slowest\": 63016,\n  \"tachometer-alt\": 63013,\n  \"tachometer-average\": 63017,\n  \"tachometer-fast\": 63018,\n  \"tachometer-fastest\": 63019,\n  \"tachometer-slow\": 63020,\n  \"tachometer-slowest\": 63021,\n  \"tachometer\": 63018,\n  \"taco\": 63526,\n  \"tag\": 61483,\n  \"tags\": 61484,\n  \"tally-1\": 58004,\n  \"tally-2\": 58005,\n  \"tally-3\": 58006,\n  \"tally-4\": 58007,\n  \"tally-5\": 63132,\n  \"tally\": 63132,\n  \"tamale\": 58449,\n  \"tanakh\": 63527,\n  \"tank-recovery\": 59429,\n  \"tank-water\": 58450,\n  \"tape\": 62683,\n  \"tarp-droplet\": 58748,\n  \"tarp\": 58747,\n  \"tasks-alt\": 63528,\n  \"tasks\": 61614,\n  \"taurus\": 59471,\n  \"taxi-bus\": 58008,\n  \"taxi\": 61882,\n  \"teddy-bear\": 58319,\n  \"teeth-open\": 63023,\n  \"teeth\": 63022,\n  \"telescope\": 57406,\n  \"teletype-answer\": 58041,\n  \"teletype\": 61924,\n  \"television\": 62060,\n  \"temperature-0\": 62155,\n  \"temperature-1\": 62154,\n  \"temperature-2\": 62153,\n  \"temperature-3\": 62152,\n  \"temperature-4\": 62151,\n  \"temperature-arrow-down\": 57407,\n  \"temperature-arrow-up\": 57408,\n  \"temperature-down\": 57407,\n  \"temperature-empty\": 62155,\n  \"temperature-frigid\": 63336,\n  \"temperature-full\": 62151,\n  \"temperature-half\": 62153,\n  \"temperature-high\": 63337,\n  \"temperature-hot\": 63338,\n  \"temperature-list\": 58009,\n  \"temperature-low\": 63339,\n  \"temperature-quarter\": 62154,\n  \"temperature-slash\": 59339,\n  \"temperature-snow\": 63336,\n  \"temperature-sun\": 63338,\n  \"temperature-three-quarters\": 62152,\n  \"temperature-up\": 57408,\n  \"tenge-sign\": 63447,\n  \"tenge\": 63447,\n  \"tennis-ball\": 62558,\n  \"tent-arrow-down-to-line\": 58750,\n  \"tent-arrow-left-right\": 58751,\n  \"tent-arrow-turn-left\": 58752,\n  \"tent-arrows-down\": 58753,\n  \"tent-circus\": 59085,\n  \"tent-double-peak\": 58919,\n  \"tent\": 58749,\n  \"tents\": 58754,\n  \"terminal\": 61728,\n  \"text-height\": 61492,\n  \"text-size\": 63636,\n  \"text-slash\": 63613,\n  \"text-width\": 61493,\n  \"text\": 63635,\n  \"th-large\": 61449,\n  \"th-list\": 61451,\n  \"th\": 61450,\n  \"theater-masks\": 63024,\n  \"thermometer-0\": 62155,\n  \"thermometer-1\": 62154,\n  \"thermometer-2\": 62153,\n  \"thermometer-3\": 62152,\n  \"thermometer-4\": 62151,\n  \"thermometer-empty\": 62155,\n  \"thermometer-full\": 62151,\n  \"thermometer-half\": 62153,\n  \"thermometer-quarter\": 62154,\n  \"thermometer-three-quarters\": 62152,\n  \"thermometer\": 62609,\n  \"theta\": 63134,\n  \"thought-bubble\": 58158,\n  \"thumb-tack-slash\": 59023,\n  \"thumb-tack\": 61581,\n  \"thumbs-down\": 61797,\n  \"thumbs-up\": 61796,\n  \"thumbtack-angle-slash\": 59218,\n  \"thumbtack-angle\": 59217,\n  \"thumbtack-slash\": 59023,\n  \"thumbtack\": 61581,\n  \"thunderstorm-moon\": 63341,\n  \"thunderstorm-sun\": 63342,\n  \"thunderstorm\": 63340,\n  \"tick\": 58159,\n  \"ticket-airline\": 58010,\n  \"ticket-alt\": 62463,\n  \"ticket-perforated-plane\": 58010,\n  \"ticket-perforated\": 58942,\n  \"ticket-plane\": 58010,\n  \"ticket-simple\": 62463,\n  \"ticket\": 61765,\n  \"tickets-airline\": 58011,\n  \"tickets-perforated-plane\": 58011,\n  \"tickets-perforated\": 58943,\n  \"tickets-plane\": 58011,\n  \"tickets-simple\": 58969,\n  \"tickets\": 58968,\n  \"tilde\": 126,\n  \"timeline-arrow\": 58013,\n  \"timeline\": 58012,\n  \"timer\": 58014,\n  \"times-circle\": 61527,\n  \"times-hexagon\": 62190,\n  \"times-octagon\": 62192,\n  \"times-rectangle\": 62480,\n  \"times-square\": 62163,\n  \"times-to-slot\": 63345,\n  \"times\": 61453,\n  \"tint-slash\": 62919,\n  \"tint\": 61507,\n  \"tire-flat\": 63026,\n  \"tire-pressure-warning\": 63027,\n  \"tire-rugged\": 63028,\n  \"tire\": 63025,\n  \"tired\": 62920,\n  \"toggle-large-off\": 58800,\n  \"toggle-large-on\": 58801,\n  \"toggle-off\": 61956,\n  \"toggle-on\": 61957,\n  \"toilet-paper-alt\": 63262,\n  \"toilet-paper-blank-under\": 58016,\n  \"toilet-paper-blank\": 63262,\n  \"toilet-paper-check\": 58802,\n  \"toilet-paper-reverse-alt\": 58016,\n  \"toilet-paper-reverse-slash\": 58017,\n  \"toilet-paper-reverse\": 58016,\n  \"toilet-paper-slash\": 57458,\n  \"toilet-paper-under-slash\": 58017,\n  \"toilet-paper-under\": 58016,\n  \"toilet-paper-xmark\": 58803,\n  \"toilet-paper\": 63262,\n  \"toilet-portable\": 58755,\n  \"toilet\": 63448,\n  \"toilets-portable\": 58756,\n  \"tomato\": 58160,\n  \"tombstone-alt\": 63265,\n  \"tombstone-blank\": 63265,\n  \"tombstone\": 63264,\n  \"toolbox\": 62802,\n  \"tools\": 63449,\n  \"tooth\": 62921,\n  \"toothbrush\": 63029,\n  \"torah\": 63136,\n  \"torii-gate\": 63137,\n  \"tornado\": 63343,\n  \"tower-broadcast\": 62745,\n  \"tower-cell\": 58757,\n  \"tower-control\": 58018,\n  \"tower-observation\": 58758,\n  \"tower-receive\": 59555,\n  \"tractor\": 63266,\n  \"trademark\": 62044,\n  \"traffic-cone\": 63030,\n  \"traffic-light-go\": 63032,\n  \"traffic-light-slow\": 63033,\n  \"traffic-light-stop\": 63034,\n  \"traffic-light\": 63031,\n  \"trailer\": 57409,\n  \"train-stop\": 59423,\n  \"train-subway-tunnel\": 58019,\n  \"train-subway\": 62009,\n  \"train-track\": 58451,\n  \"train-tram\": 58804,\n  \"train-tunnel\": 58452,\n  \"train\": 62008,\n  \"tram\": 63450,\n  \"transducer\": 59430,\n  \"transformer-bolt\": 58020,\n  \"transgender-alt\": 61989,\n  \"transgender\": 61989,\n  \"transmission\": 59394,\n  \"transporter-1\": 57411,\n  \"transporter-2\": 57412,\n  \"transporter-3\": 57413,\n  \"transporter-4\": 58021,\n  \"transporter-5\": 58022,\n  \"transporter-6\": 58023,\n  \"transporter-7\": 58024,\n  \"transporter-empty\": 57414,\n  \"transporter\": 57410,\n  \"trash-alt-slash\": 58029,\n  \"trash-alt\": 62189,\n  \"trash-arrow-turn-left\": 63637,\n  \"trash-arrow-up\": 63529,\n  \"trash-can-arrow-turn-left\": 63638,\n  \"trash-can-arrow-up\": 63530,\n  \"trash-can-check\": 58025,\n  \"trash-can-clock\": 58026,\n  \"trash-can-list\": 58027,\n  \"trash-can-plus\": 58028,\n  \"trash-can-slash\": 58029,\n  \"trash-can-undo\": 63638,\n  \"trash-can-xmark\": 58030,\n  \"trash-can\": 62189,\n  \"trash-check\": 58031,\n  \"trash-circle\": 57638,\n  \"trash-clock\": 58032,\n  \"trash-list\": 58033,\n  \"trash-plus\": 58034,\n  \"trash-restore-alt\": 63530,\n  \"trash-restore\": 63529,\n  \"trash-slash\": 58035,\n  \"trash-undo-alt\": 63638,\n  \"trash-undo\": 63637,\n  \"trash-xmark\": 58036,\n  \"trash\": 61944,\n  \"treasure-chest\": 63267,\n  \"tree-alt\": 62464,\n  \"tree-christmas\": 63451,\n  \"tree-city\": 58759,\n  \"tree-deciduous\": 62464,\n  \"tree-decorated\": 63452,\n  \"tree-large\": 63453,\n  \"tree-palm\": 63531,\n  \"tree\": 61883,\n  \"trees\": 63268,\n  \"trian-balbot\": 58460,\n  \"triangle-circle-square\": 63007,\n  \"triangle-exclamation\": 61553,\n  \"triangle-instrument\": 63714,\n  \"triangle-music\": 63714,\n  \"triangle-person-digging\": 63581,\n  \"triangle\": 62188,\n  \"tricycle-adult\": 58820,\n  \"tricycle\": 58819,\n  \"trillium\": 58760,\n  \"triple-chevrons-down\": 59383,\n  \"triple-chevrons-left\": 59384,\n  \"triple-chevrons-right\": 59385,\n  \"triple-chevrons-up\": 59386,\n  \"trombone\": 59266,\n  \"trophy-alt\": 62187,\n  \"trophy-star\": 62187,\n  \"trophy\": 61585,\n  \"trowel-bricks\": 58762,\n  \"trowel\": 58761,\n  \"truck-arrow-right\": 58763,\n  \"truck-bolt\": 58320,\n  \"truck-clock\": 62604,\n  \"truck-container-empty\": 58037,\n  \"truck-container\": 62684,\n  \"truck-couch\": 62685,\n  \"truck-droplet\": 58764,\n  \"truck-fast\": 62603,\n  \"truck-field-un\": 58766,\n  \"truck-field\": 58765,\n  \"truck-fire\": 58970,\n  \"truck-flatbed\": 58038,\n  \"truck-front\": 58039,\n  \"truck-ladder\": 58967,\n  \"truck-loading\": 62686,\n  \"truck-medical\": 61689,\n  \"truck-monster\": 63035,\n  \"truck-moving\": 62687,\n  \"truck-pickup\": 63036,\n  \"truck-plane\": 58767,\n  \"truck-plow\": 63454,\n  \"truck-ramp-box\": 62686,\n  \"truck-ramp-couch\": 62685,\n  \"truck-ramp\": 62688,\n  \"truck-suv\": 59334,\n  \"truck-tow\": 58040,\n  \"truck-utensils\": 58920,\n  \"truck\": 61649,\n  \"trumpet\": 63715,\n  \"try\": 58043,\n  \"tshirt\": 62803,\n  \"tty-answer\": 58041,\n  \"tty\": 61924,\n  \"tugrik-sign\": 58042,\n  \"turkey\": 63269,\n  \"turkish-lira-sign\": 58043,\n  \"turkish-lira\": 58043,\n  \"turn-down-left\": 58161,\n  \"turn-down-right\": 58453,\n  \"turn-down\": 62398,\n  \"turn-left-down\": 58935,\n  \"turn-left-up\": 58936,\n  \"turn-left\": 58934,\n  \"turn-right\": 58937,\n  \"turn-up\": 62399,\n  \"turntable\": 63716,\n  \"turtle\": 63270,\n  \"tv-alt\": 62060,\n  \"tv-music\": 63718,\n  \"tv-retro\": 62465,\n  \"tv\": 62060,\n  \"typewriter\": 63719,\n  \"u-turn-down-left\": 59375,\n  \"u-turn-down-right\": 59376,\n  \"u-turn-left-down\": 59377,\n  \"u-turn-left-up\": 59378,\n  \"u-turn-right-down\": 59379,\n  \"u-turn-right-up\": 59380,\n  \"u-turn-up-left\": 59381,\n  \"u-turn-up-right\": 59382,\n  \"u-turn\": 59377,\n  \"u\": 85,\n  \"ufo-beam\": 57416,\n  \"ufo\": 57415,\n  \"umbrella-alt\": 58044,\n  \"umbrella-beach\": 62922,\n  \"umbrella-simple\": 58044,\n  \"umbrella\": 61673,\n  \"underline\": 61645,\n  \"undo-alt\": 62186,\n  \"undo\": 61666,\n  \"unicorn\": 63271,\n  \"unicycle\": 59335,\n  \"uniform-martial-arts\": 58321,\n  \"union\": 63138,\n  \"universal-access\": 62106,\n  \"university\": 61852,\n  \"unlink\": 61735,\n  \"unlock-alt\": 61758,\n  \"unlock-keyhole\": 61758,\n  \"unlock\": 61596,\n  \"unsorted\": 61660,\n  \"up-down-left-right\": 61618,\n  \"up-down\": 62264,\n  \"up-from-bracket\": 58768,\n  \"up-from-dotted-line\": 58454,\n  \"up-from-line\": 62278,\n  \"up-left\": 58045,\n  \"up-long-to-line\": 59078,\n  \"up-long\": 62220,\n  \"up-right-and-down-left-from-center\": 62500,\n  \"up-right-from-square\": 62301,\n  \"up-right\": 58046,\n  \"up-to-bracket\": 58990,\n  \"up-to-dotted-line\": 58455,\n  \"up-to-line\": 62285,\n  \"up\": 62295,\n  \"upload\": 61587,\n  \"usb-drive\": 63721,\n  \"usd-circle\": 62184,\n  \"usd-square\": 62185,\n  \"usd\": 36,\n  \"user-alien\": 57418,\n  \"user-alt-slash\": 62726,\n  \"user-alt\": 61447,\n  \"user-astronaut\": 62715,\n  \"user-beard-bolt\": 59017,\n  \"user-beard\": 59304,\n  \"user-bounty-hunter\": 58047,\n  \"user-chart\": 63139,\n  \"user-check\": 62716,\n  \"user-chef-hair-long\": 59305,\n  \"user-chef\": 58322,\n  \"user-circle-minus\": 59306,\n  \"user-circle-plus\": 59307,\n  \"user-circle\": 62141,\n  \"user-clock\": 62717,\n  \"user-cog\": 62718,\n  \"user-construction\": 63532,\n  \"user-cowboy\": 63722,\n  \"user-crown\": 63140,\n  \"user-dashed\": 59308,\n  \"user-doctor-hair-long\": 58457,\n  \"user-doctor-hair-mullet\": 59309,\n  \"user-doctor-hair\": 58456,\n  \"user-doctor-message\": 63534,\n  \"user-doctor\": 61680,\n  \"user-edit\": 62719,\n  \"user-friends\": 62720,\n  \"user-gear\": 62718,\n  \"user-graduate\": 62721,\n  \"user-group-crown\": 63141,\n  \"user-group-simple\": 58883,\n  \"user-group\": 62720,\n  \"user-hair-buns\": 58323,\n  \"user-hair-long\": 58459,\n  \"user-hair-mullet\": 58460,\n  \"user-hair\": 58458,\n  \"user-hard-hat\": 63532,\n  \"user-hat-tie-magnifying-glass\": 59311,\n  \"user-hat-tie\": 59310,\n  \"user-headset\": 63533,\n  \"user-helmet-safety\": 63532,\n  \"user-hoodie\": 59018,\n  \"user-injured\": 63272,\n  \"user-key\": 59312,\n  \"user-large-slash\": 62726,\n  \"user-large\": 61447,\n  \"user-lock\": 62722,\n  \"user-magnifying-glass\": 58821,\n  \"user-md-chat\": 63534,\n  \"user-md\": 61680,\n  \"user-message\": 59313,\n  \"user-microphone\": 59314,\n  \"user-minus\": 62723,\n  \"user-music\": 63723,\n  \"user-ninja\": 62724,\n  \"user-nurse-hair-long\": 58462,\n  \"user-nurse-hair\": 58461,\n  \"user-nurse\": 63535,\n  \"user-pen\": 62719,\n  \"user-pilot-hair-long\": 59315,\n  \"user-pilot-tie-hair-long\": 59316,\n  \"user-pilot-tie\": 58049,\n  \"user-pilot\": 58048,\n  \"user-plus\": 62004,\n  \"user-police-hair-long\": 59317,\n  \"user-police-tie-hair-long\": 59318,\n  \"user-police-tie\": 58164,\n  \"user-police\": 58163,\n  \"user-question\": 59319,\n  \"user-robot-xmarks\": 58535,\n  \"user-robot\": 57419,\n  \"user-secret\": 61979,\n  \"user-shakespeare\": 58050,\n  \"user-shield\": 62725,\n  \"user-sith\": 59320,\n  \"user-slash\": 62726,\n  \"user-tag\": 62727,\n  \"user-tie-hair-long\": 58464,\n  \"user-tie-hair-mullet\": 59321,\n  \"user-tie-hair\": 58463,\n  \"user-tie\": 62728,\n  \"user-times\": 62005,\n  \"user-unlock\": 57432,\n  \"user-viewfinder\": 59253,\n  \"user-visor\": 57420,\n  \"user-vneck-hair-long\": 58467,\n  \"user-vneck-hair-mullet\": 59322,\n  \"user-vneck-hair\": 58466,\n  \"user-vneck\": 58465,\n  \"user-xmark\": 62005,\n  \"user\": 61447,\n  \"users-between-lines\": 58769,\n  \"users-class\": 63037,\n  \"users-cog\": 62729,\n  \"users-crown\": 63141,\n  \"users-gear\": 62729,\n  \"users-line\": 58770,\n  \"users-medical\": 63536,\n  \"users-rays\": 58771,\n  \"users-rectangle\": 58772,\n  \"users-slash\": 57459,\n  \"users-viewfinder\": 58773,\n  \"users\": 61632,\n  \"utensil-fork\": 62179,\n  \"utensil-knife\": 62180,\n  \"utensil-spoon\": 62181,\n  \"utensils-alt\": 62182,\n  \"utensils-slash\": 58468,\n  \"utensils\": 62183,\n  \"utility-can\": 59549,\n  \"utility-pole-double\": 58052,\n  \"utility-pole\": 58051,\n  \"v\": 86,\n  \"vacuum-robot\": 57422,\n  \"vacuum\": 57421,\n  \"value-absolute\": 63142,\n  \"van-shuttle\": 62902,\n  \"van\": 59336,\n  \"vault\": 58053,\n  \"vcard\": 62139,\n  \"vector-circle\": 62957,\n  \"vector-polygon\": 62958,\n  \"vector-square\": 62959,\n  \"vent-damper\": 58469,\n  \"venus-double\": 61990,\n  \"venus-mars\": 61992,\n  \"venus\": 61985,\n  \"vest-patches\": 57478,\n  \"vest\": 57477,\n  \"vhs\": 63724,\n  \"vial-circle-check\": 58774,\n  \"vial-vertical\": 59234,\n  \"vial-virus\": 58775,\n  \"vial\": 62610,\n  \"vials\": 62611,\n  \"video-arrow-down-left\": 58056,\n  \"video-arrow-up-right\": 58057,\n  \"video-camera\": 61501,\n  \"video-circle\": 57643,\n  \"video-down-to-line\": 59254,\n  \"video-handheld\": 63656,\n  \"video-plus\": 62689,\n  \"video-question\": 59255,\n  \"video-slash\": 62690,\n  \"video\": 61501,\n  \"vihara\": 63143,\n  \"violin\": 63725,\n  \"virgo\": 59472,\n  \"virus-covid-slash\": 58537,\n  \"virus-covid\": 58536,\n  \"virus-slash\": 57461,\n  \"virus\": 57460,\n  \"viruses\": 57462,\n  \"voicemail\": 63639,\n  \"volcano\": 63344,\n  \"volleyball-ball\": 62559,\n  \"volleyball\": 62559,\n  \"volume-control-phone\": 62112,\n  \"volume-down\": 61479,\n  \"volume-high\": 61480,\n  \"volume-low\": 61479,\n  \"volume-medium\": 63144,\n  \"volume-mute\": 63145,\n  \"volume-off\": 61478,\n  \"volume-slash\": 62178,\n  \"volume-times\": 63145,\n  \"volume-up\": 61480,\n  \"volume-xmark\": 63145,\n  \"volume\": 63144,\n  \"vote-nay\": 63345,\n  \"vote-yea\": 63346,\n  \"vr-cardboard\": 63273,\n  \"w\": 87,\n  \"waffle\": 58470,\n  \"wagon-covered\": 63726,\n  \"walker\": 63537,\n  \"walkie-talkie\": 63727,\n  \"walking\": 62804,\n  \"wall-brick\": 58331,\n  \"wallet\": 62805,\n  \"wand-magic-sparkles\": 58058,\n  \"wand-magic\": 61648,\n  \"wand-sparkles\": 63275,\n  \"wand\": 63274,\n  \"wardrobe\": 59521,\n  \"warehouse-alt\": 62613,\n  \"warehouse-full\": 62613,\n  \"warehouse\": 62612,\n  \"warning\": 61553,\n  \"washer\": 63640,\n  \"washing-machine\": 63640,\n  \"watch-apple\": 58059,\n  \"watch-calculator\": 63728,\n  \"watch-fitness\": 63038,\n  \"watch-smart\": 58060,\n  \"watch\": 62177,\n  \"water-arrow-down\": 63348,\n  \"water-arrow-up\": 63349,\n  \"water-ladder\": 62917,\n  \"water-lower\": 63348,\n  \"water-rise\": 63349,\n  \"water-temp\": 59434,\n  \"water-temperature\": 59434,\n  \"water\": 63347,\n  \"watermelon-slice\": 58167,\n  \"wave-pulse\": 62968,\n  \"wave-sine\": 63641,\n  \"wave-square\": 63550,\n  \"wave-triangle\": 63642,\n  \"wave\": 58971,\n  \"waveform-circle\": 57645,\n  \"waveform-lines\": 63730,\n  \"waveform-path\": 63730,\n  \"waveform\": 63729,\n  \"waves-sine\": 58973,\n  \"web-awesome\": 59010,\n  \"webcam-slash\": 63539,\n  \"webcam\": 63538,\n  \"webhook\": 58837,\n  \"weight-hanging\": 62925,\n  \"weight-scale\": 62614,\n  \"weight\": 62614,\n  \"whale\": 63276,\n  \"wheat-alt\": 58061,\n  \"wheat-awn-circle-exclamation\": 58776,\n  \"wheat-awn-slash\": 58168,\n  \"wheat-awn\": 58061,\n  \"wheat-slash\": 58169,\n  \"wheat\": 63277,\n  \"wheelchair-alt\": 58062,\n  \"wheelchair-move\": 58062,\n  \"wheelchair\": 61843,\n  \"whiskey-glass-ice\": 63393,\n  \"whiskey-glass\": 63392,\n  \"whistle\": 62560,\n  \"wifi-1\": 63146,\n  \"wifi-2\": 63147,\n  \"wifi-3\": 61931,\n  \"wifi-exclamation\": 58063,\n  \"wifi-fair\": 63147,\n  \"wifi-slash\": 63148,\n  \"wifi-strong\": 61931,\n  \"wifi-weak\": 63146,\n  \"wifi\": 61931,\n  \"wind-circle-exclamation\": 63350,\n  \"wind-turbine\": 63643,\n  \"wind-warning\": 63350,\n  \"wind\": 63278,\n  \"window-alt\": 62479,\n  \"window-close\": 62480,\n  \"window-flip\": 62479,\n  \"window-frame-open\": 57424,\n  \"window-frame\": 57423,\n  \"window-maximize\": 62160,\n  \"window-minimize\": 62161,\n  \"window-restore\": 62162,\n  \"window\": 62478,\n  \"windsock\": 63351,\n  \"wine-bottle\": 63279,\n  \"wine-glass-alt\": 62926,\n  \"wine-glass-crack\": 62651,\n  \"wine-glass-empty\": 62926,\n  \"wine-glass\": 62691,\n  \"wireless\": 59359,\n  \"won-sign\": 61785,\n  \"won\": 61785,\n  \"worm\": 58777,\n  \"wreath-laurel\": 58834,\n  \"wreath\": 63458,\n  \"wrench-simple\": 58065,\n  \"wrench\": 61613,\n  \"x-ray\": 62615,\n  \"x\": 88,\n  \"xmark-circle\": 61527,\n  \"xmark-hexagon\": 62190,\n  \"xmark-large\": 58779,\n  \"xmark-octagon\": 62192,\n  \"xmark-square\": 62163,\n  \"xmark-to-slot\": 63345,\n  \"xmark\": 61453,\n  \"xmarks-lines\": 58778,\n  \"y\": 89,\n  \"yen-sign\": 61783,\n  \"yen\": 61783,\n  \"yin-yang\": 63149,\n  \"z\": 90,\n  \"zap\": 61671,\n  \"zzz\": 63616\n}"
  },
  {
    "path": "packages/fontawesome-pro-sharp-light/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontawesome-pro-sharp-light\",\n  \"version\": \"0.2.0\",\n  \"description\": \"Fontawesome Pro Sharp Light font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"fontawesome-pro-sharp-light\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/fontawesome-pro-sharp-light\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-light/react-native-vector-icons-fontawesome-pro-sharp-light.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-fontawesome-pro-sharp-light'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\n\n  s.script_phase = {\n    name: 'Copy Custom Fonts',\n    execution_position: :after_compile,\n    script: <<~SCRIPT\n      set -e\n\n      HEAD=\"(RNVI-fontawesome-pro-sharp-light)\"\n\n      echo \"${HEAD} START_COPY_FONTS\"\n\n      echo \"${HEAD} PWD: $(pwd)\"\n\n      #\n      # Find the custom font Directory\n      #\n\n      # Assume the project root is always two directories above the POD_ROOT\n      echo \"${HEAD} PODS_ROOT: $PODS_ROOT\"\n\n      PROJECT_ROOT=\"${PODS_ROOT}/../..\"\n      echo \"${HEAD} PROJECT_ROOT: $PROJECT_ROOT\"\n\n      cd $PROJECT_ROOT\n      FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/\"//g')\n      if [ -z \"$FONTS_DIR\" ]; then\n        FONTS_DIR=\"rnvi-fonts\"\n      fi\n      echo \"${HEAD} FONTS_DIR: $FONTS_DIR\"\n\n      FONTS_DIR=\"${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-sharp-light\"\n      if [ ! -d \"$FONTS_DIR\" ]; then\n        echo \"${HEAD} $FONTS_DIR not found\"\n        exit 0\n      fi\n\n      #\n      # Find the destination we copy to\n      #\n\n      echo \"${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR\"\n      XCODE_DIR=$(ls -d \"$PODS_CONFIGURATION_BUILD_DIR\"/*.app)\n      echo \"${HEAD} XCODE_DIR: $XCODE_DIR\"\n      if [ -z \"$XCODE_DIR\" ]; then\n        echo \"Could not find XCODE_DIR to copy fonts to\"\n        exit 1\n      fi\n\n      DEST_DIR=\"${XCODE_DIR}\"\n      mkdir -p \"$DEST_DIR\"\n\n      #\n      # Copy the fonts\n      #\n\n      echo \"${HEAD} Copying the following files to $DEST_DIR\"\n      ls \"$FONTS_DIR\" | sed \"s/^/${HEAD} /\"\n\n      rsync -avr --copy-links --no-relative $FONTS_DIR/ \"$DEST_DIR\"\n\n      echo \"${HEAD} END:RNVI_COPY_FONTS\"\n    SCRIPT\n  }\nend\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-light/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProSharpLight icon set component.\n * Usage: <FontAwesomeProSharpLight name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProSharpLight.json';\n\nexport const FontAwesomeProSharpLight = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Sharp-Light',\n  fontFileName: 'fa-sharp-light-300.ttf',\n});\n\nexport type FontAwesomeProSharpLightIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProSharpLight;\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-light/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProSharpLight icon set component.\n * Usage: <FontAwesomeProSharpLight name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProSharpLight.json';\n\nexport const FontAwesomeProSharpLight = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Sharp-Light',\n  fontFileName: 'fa-sharp-light-300.ttf',\n});\n\nexport type FontAwesomeProSharpLightIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProSharpLight;\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-light/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-light/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-regular/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontawesome-pro-sharp-regular\",\n    \"upstreamFont\": {\n      \"registry\": \"https://npm.fontawesome.com\",\n      \"packageName\": \"@fortawesome/fontawesome-pro\",\n      \"versionOnly\": true\n    },\n    \"copyCustomFonts\": true,\n    \"className\": \"FontAwesomeProSharpRegular\",\n    \"postScriptName\": \"FontAwesome7Sharp-Regular\",\n    \"fontFileName\": \"fa-sharp-regular-400\",\n    \"buildSteps\": {\n      \"preScript\": {\n        \"script\": \"../fontawesome-common/scripts/fetch-pro.sh 7\"\n      },\n      \"glyphmap\": {\n        \"location\": \"fa/pro/css/all.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fa-\"\n      },\n      \"postScript\": {\n        \"script\": \"../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProSharpRegular.json fa/pro/svgs/sharp-regular\\nrm -rf fa\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"0.1.0\",\n        \"upstream\": \"7.1.0\"\n      },\n      {\n        \"rnvi\": \"0.1.1\",\n        \"upstream\": \"7.2.0\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-regular/CHANGELOG.md",
    "content": "## 0.2.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 0.1.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 0.1.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🩹 Fixes\n\n- upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 0.1.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 0.1.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontawesome-pro-sharp-regular/README.md",
    "content": "# React Native Vector Icons - Fontawesome Pro Sharp Regular\n\nFontawesome Pro Sharp Regular font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n> [!IMPORTANT]\n> This package does not include the fonts. You must provide them yourself.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/fontawesome-pro-sharp-regular\n```\n\n## Custom Fonts\n\nThis package requires you to provide the font files. Place your `.ttf` font\nfile in the following location:\n\n```\nrnvi-fonts/fontawesome-pro-sharp-regular/fa-sharp-regular-400.ttf\n```\n\nThe font will be automatically copied during the build process for both iOS and\nAndroid.\n\n## Usage\n\n```jsx\nimport { FontAwesomeProSharpRegular } from '@react-native-vector-icons/fontawesome-pro-sharp-regular';\n\n// ...\n\n<FontAwesomeProSharpRegular name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 0.1.0 | 7.1.0 |\n| &gt; 0.1.1 | 7.2.0 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-regular/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.fontawesome_pro_sharp_regular\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFontAwesomeProSharpRegular\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.fontawesome_pro_sharp_regular\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-fontawesome-pro-sharp-regular\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-regular/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-sharp-regular) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n\ntask copyExtraFonts(type: Copy) {\n  from \"${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-sharp-regular\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-regular/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-sharp-regular) Copying custom font: ${it.file}\" }\n}\n\npreBuild.dependsOn(copyExtraFonts)\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-regular/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.fontawesome_pro_sharp_regular\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-regular/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-regular/android/src/main/java/VectorIconsFontAwesomeProSharpRegularPackage.kt",
    "content": "package com.reactnativevectoricons.fontawesome_pro_sharp_regular\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFontAwesomeProSharpRegularPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-regular/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-regular/glyphmaps/FontAwesomeProSharpRegular.json",
    "content": "{\n  \"0\": 48,\n  \"1\": 49,\n  \"2\": 50,\n  \"3\": 51,\n  \"4\": 52,\n  \"5\": 53,\n  \"6\": 54,\n  \"7\": 55,\n  \"8\": 56,\n  \"9\": 57,\n  \"100\": 58396,\n  \"00\": 58471,\n  \"360-degrees\": 58076,\n  \"a\": 65,\n  \"abacus\": 63040,\n  \"accent-grave\": 96,\n  \"acorn\": 63150,\n  \"ad\": 63041,\n  \"add\": 43,\n  \"address-book\": 62137,\n  \"address-card\": 62139,\n  \"adjust\": 61506,\n  \"aeropress\": 59435,\n  \"air-conditioner\": 63732,\n  \"air-freshener\": 62928,\n  \"airplay-audio\": 59259,\n  \"airplay\": 57481,\n  \"alarm-clock\": 62286,\n  \"alarm-exclamation\": 63555,\n  \"alarm-minus\": 59395,\n  \"alarm-plus\": 63556,\n  \"alarm-snooze\": 63557,\n  \"album-circle-plus\": 58508,\n  \"album-circle-user\": 58509,\n  \"album-collection-circle-plus\": 58510,\n  \"album-collection-circle-user\": 58511,\n  \"album-collection\": 63648,\n  \"album\": 63647,\n  \"alicorn\": 63152,\n  \"alien-8bit\": 63734,\n  \"alien-monster\": 63734,\n  \"alien\": 63733,\n  \"align-center\": 61495,\n  \"align-justify\": 61497,\n  \"align-left\": 61494,\n  \"align-right\": 61496,\n  \"align-slash\": 63558,\n  \"allergies\": 62561,\n  \"almost-equal-to\": 59416,\n  \"alt\": 57482,\n  \"ambulance\": 61689,\n  \"american-sign-language-interpreting\": 62115,\n  \"amp-guitar\": 63649,\n  \"ampersand\": 38,\n  \"analytics\": 63043,\n  \"anchor-circle-check\": 58538,\n  \"anchor-circle-exclamation\": 58539,\n  \"anchor-circle-xmark\": 58540,\n  \"anchor-lock\": 58541,\n  \"anchor\": 61757,\n  \"angel\": 63353,\n  \"angle-90\": 57485,\n  \"angle-double-down\": 61699,\n  \"angle-double-left\": 61696,\n  \"angle-double-right\": 61697,\n  \"angle-double-up\": 61698,\n  \"angle-down\": 61703,\n  \"angle-left\": 61700,\n  \"angle-right\": 61701,\n  \"angle-up\": 61702,\n  \"angle\": 57484,\n  \"angles-down\": 61699,\n  \"angles-left\": 61696,\n  \"angles-right\": 61697,\n  \"angles-up-down\": 58893,\n  \"angles-up\": 61698,\n  \"angry\": 62806,\n  \"ankh\": 63044,\n  \"ant\": 59008,\n  \"apartment\": 58472,\n  \"aperture\": 58079,\n  \"apostrophe\": 39,\n  \"apple-alt\": 62929,\n  \"apple-core\": 57487,\n  \"apple-crate\": 63153,\n  \"apple-whole\": 62929,\n  \"aquarius\": 59461,\n  \"archive\": 61831,\n  \"archway\": 62807,\n  \"area-chart\": 61950,\n  \"aries\": 59462,\n  \"arrow-alt-circle-down\": 62296,\n  \"arrow-alt-circle-left\": 62297,\n  \"arrow-alt-circle-right\": 62298,\n  \"arrow-alt-circle-up\": 62299,\n  \"arrow-alt-down\": 62292,\n  \"arrow-alt-from-bottom\": 62278,\n  \"arrow-alt-from-left\": 62279,\n  \"arrow-alt-from-right\": 62280,\n  \"arrow-alt-from-top\": 62281,\n  \"arrow-alt-left\": 62293,\n  \"arrow-alt-right\": 62294,\n  \"arrow-alt-square-down\": 62288,\n  \"arrow-alt-square-left\": 62289,\n  \"arrow-alt-square-right\": 62290,\n  \"arrow-alt-square-up\": 62291,\n  \"arrow-alt-to-bottom\": 62282,\n  \"arrow-alt-to-left\": 62283,\n  \"arrow-alt-to-right\": 62284,\n  \"arrow-alt-to-top\": 62285,\n  \"arrow-alt-up\": 62295,\n  \"arrow-archery\": 59449,\n  \"arrow-circle-down\": 61611,\n  \"arrow-circle-left\": 61608,\n  \"arrow-circle-right\": 61609,\n  \"arrow-circle-up\": 61610,\n  \"arrow-down-1-9\": 61794,\n  \"arrow-down-9-1\": 63622,\n  \"arrow-down-a-z\": 61789,\n  \"arrow-down-arrow-up\": 63619,\n  \"arrow-down-big-small\": 63628,\n  \"arrow-down-from-arc\": 58900,\n  \"arrow-down-from-bracket\": 58983,\n  \"arrow-down-from-dotted-line\": 57488,\n  \"arrow-down-from-line\": 62277,\n  \"arrow-down-left-and-arrow-up-right-to-center\": 57490,\n  \"arrow-down-left\": 57489,\n  \"arrow-down-long-to-line\": 59063,\n  \"arrow-down-long\": 61813,\n  \"arrow-down-right\": 57491,\n  \"arrow-down-short-wide\": 63620,\n  \"arrow-down-small-big\": 63629,\n  \"arrow-down-square-triangle\": 63625,\n  \"arrow-down-to-arc\": 58542,\n  \"arrow-down-to-bracket\": 57492,\n  \"arrow-down-to-dotted-line\": 57493,\n  \"arrow-down-to-line\": 62269,\n  \"arrow-down-to-square\": 57494,\n  \"arrow-down-triangle-square\": 63624,\n  \"arrow-down-up-across-line\": 58543,\n  \"arrow-down-up-lock\": 58544,\n  \"arrow-down-wide-short\": 61792,\n  \"arrow-down-z-a\": 63617,\n  \"arrow-down\": 61539,\n  \"arrow-from-bottom\": 62274,\n  \"arrow-from-left\": 62275,\n  \"arrow-from-right\": 62276,\n  \"arrow-from-top\": 62277,\n  \"arrow-left-arrow-right\": 59064,\n  \"arrow-left-from-arc\": 58901,\n  \"arrow-left-from-bracket\": 58984,\n  \"arrow-left-from-dotted-line\": 59065,\n  \"arrow-left-from-line\": 62276,\n  \"arrow-left-long-to-line\": 58324,\n  \"arrow-left-long\": 61815,\n  \"arrow-left-rotate\": 61666,\n  \"arrow-left-to-arc\": 58902,\n  \"arrow-left-to-bracket\": 58985,\n  \"arrow-left-to-dotted-line\": 59066,\n  \"arrow-left-to-line\": 62270,\n  \"arrow-left\": 61536,\n  \"arrow-pointer\": 62021,\n  \"arrow-progress\": 58847,\n  \"arrow-right-arrow-left\": 61676,\n  \"arrow-right-from-arc\": 58545,\n  \"arrow-right-from-bracket\": 61579,\n  \"arrow-right-from-dotted-line\": 59067,\n  \"arrow-right-from-file\": 62830,\n  \"arrow-right-from-line\": 62275,\n  \"arrow-right-long-to-line\": 58325,\n  \"arrow-right-long\": 61816,\n  \"arrow-right-rotate\": 61470,\n  \"arrow-right-to-arc\": 58546,\n  \"arrow-right-to-bracket\": 61584,\n  \"arrow-right-to-city\": 58547,\n  \"arrow-right-to-dotted-line\": 59068,\n  \"arrow-right-to-file\": 62831,\n  \"arrow-right-to-line\": 62272,\n  \"arrow-right\": 61537,\n  \"arrow-rotate-back\": 61666,\n  \"arrow-rotate-backward\": 61666,\n  \"arrow-rotate-forward\": 61470,\n  \"arrow-rotate-left-10\": 59446,\n  \"arrow-rotate-left-15\": 59526,\n  \"arrow-rotate-left-30\": 59527,\n  \"arrow-rotate-left\": 61666,\n  \"arrow-rotate-right-10\": 59447,\n  \"arrow-rotate-right-15\": 59528,\n  \"arrow-rotate-right-30\": 59529,\n  \"arrow-rotate-right\": 61470,\n  \"arrow-square-down\": 62265,\n  \"arrow-square-left\": 62266,\n  \"arrow-square-right\": 62267,\n  \"arrow-square-up\": 62268,\n  \"arrow-to-bottom\": 62269,\n  \"arrow-to-left\": 62270,\n  \"arrow-to-right\": 62272,\n  \"arrow-to-top\": 62273,\n  \"arrow-trend-down\": 57495,\n  \"arrow-trend-up\": 57496,\n  \"arrow-turn-down-left\": 58081,\n  \"arrow-turn-down-right\": 58326,\n  \"arrow-turn-down\": 61769,\n  \"arrow-turn-left-down\": 58931,\n  \"arrow-turn-left-up\": 58932,\n  \"arrow-turn-left\": 58930,\n  \"arrow-turn-right\": 58933,\n  \"arrow-turn-up\": 61768,\n  \"arrow-u-turn-down-left\": 59367,\n  \"arrow-u-turn-down-right\": 59368,\n  \"arrow-u-turn-left-down\": 59369,\n  \"arrow-u-turn-left-up\": 59370,\n  \"arrow-u-turn-right-down\": 59371,\n  \"arrow-u-turn-right-up\": 59372,\n  \"arrow-u-turn-up-left\": 59373,\n  \"arrow-u-turn-up-right\": 59374,\n  \"arrow-up-1-9\": 61795,\n  \"arrow-up-9-1\": 63623,\n  \"arrow-up-a-z\": 61790,\n  \"arrow-up-arrow-down\": 57497,\n  \"arrow-up-big-small\": 63630,\n  \"arrow-up-from-arc\": 58548,\n  \"arrow-up-from-bracket\": 57498,\n  \"arrow-up-from-dotted-line\": 57499,\n  \"arrow-up-from-ground-water\": 58549,\n  \"arrow-up-from-line\": 62274,\n  \"arrow-up-from-square\": 57500,\n  \"arrow-up-from-water-pump\": 58550,\n  \"arrow-up-left-from-circle\": 57502,\n  \"arrow-up-left\": 57501,\n  \"arrow-up-long-to-line\": 59069,\n  \"arrow-up-long\": 61814,\n  \"arrow-up-right-and-arrow-down-left-from-center\": 57504,\n  \"arrow-up-right-dots\": 58551,\n  \"arrow-up-right-from-square\": 61582,\n  \"arrow-up-right\": 57503,\n  \"arrow-up-short-wide\": 63621,\n  \"arrow-up-small-big\": 63631,\n  \"arrow-up-square-triangle\": 63627,\n  \"arrow-up-to-arc\": 58903,\n  \"arrow-up-to-bracket\": 58986,\n  \"arrow-up-to-dotted-line\": 57505,\n  \"arrow-up-to-line\": 62273,\n  \"arrow-up-triangle-square\": 63626,\n  \"arrow-up-wide-short\": 61793,\n  \"arrow-up-z-a\": 63618,\n  \"arrow-up\": 61538,\n  \"arrows-alt-h\": 62263,\n  \"arrows-alt-v\": 62264,\n  \"arrows-alt\": 61618,\n  \"arrows-cross\": 57506,\n  \"arrows-down-to-line\": 58552,\n  \"arrows-down-to-people\": 58553,\n  \"arrows-from-dotted-line\": 57507,\n  \"arrows-from-line\": 57508,\n  \"arrows-h\": 61566,\n  \"arrows-left-right-to-line\": 58554,\n  \"arrows-left-right\": 61566,\n  \"arrows-maximize\": 62237,\n  \"arrows-minimize\": 57509,\n  \"arrows-repeat-1\": 62310,\n  \"arrows-repeat\": 62308,\n  \"arrows-retweet\": 62305,\n  \"arrows-rotate-reverse\": 58928,\n  \"arrows-rotate\": 61473,\n  \"arrows-spin\": 58555,\n  \"arrows-split-up-and-left\": 58556,\n  \"arrows-to-circle\": 58557,\n  \"arrows-to-dot\": 58558,\n  \"arrows-to-dotted-line\": 57510,\n  \"arrows-to-eye\": 58559,\n  \"arrows-to-line\": 57511,\n  \"arrows-turn-right\": 58560,\n  \"arrows-turn-to-dots\": 58561,\n  \"arrows-up-down-left-right\": 61511,\n  \"arrows-up-down\": 61565,\n  \"arrows-up-to-line\": 58562,\n  \"arrows-v\": 61565,\n  \"arrows\": 61511,\n  \"asl-interpreting\": 62115,\n  \"assistive-listening-systems\": 62114,\n  \"asterisk\": 42,\n  \"at\": 64,\n  \"atlas\": 62808,\n  \"atom-alt\": 62931,\n  \"atom-simple\": 62931,\n  \"atom\": 62930,\n  \"audio-description-slash\": 57512,\n  \"audio-description\": 62110,\n  \"austral-sign\": 57513,\n  \"australian-dollar-sign\": 59134,\n  \"automobile\": 61881,\n  \"avocado\": 57514,\n  \"award-simple\": 57515,\n  \"award\": 62809,\n  \"axe-battle\": 63155,\n  \"axe\": 63154,\n  \"b\": 66,\n  \"baby-carriage\": 63357,\n  \"baby\": 63356,\n  \"backpack\": 62932,\n  \"backspace\": 62810,\n  \"backward-fast\": 61513,\n  \"backward-step\": 61512,\n  \"backward\": 61514,\n  \"bacon\": 63461,\n  \"bacteria\": 57433,\n  \"bacterium\": 57434,\n  \"badge-check\": 62262,\n  \"badge-dollar\": 63045,\n  \"badge-percent\": 63046,\n  \"badge-sheriff\": 63650,\n  \"badge\": 62261,\n  \"badger-honey\": 63156,\n  \"badminton\": 58170,\n  \"bag-seedling\": 58866,\n  \"bag-shopping-minus\": 58960,\n  \"bag-shopping-plus\": 58961,\n  \"bag-shopping\": 62096,\n  \"bagel\": 58327,\n  \"bags-shopping\": 63559,\n  \"baguette\": 58328,\n  \"bahai\": 63078,\n  \"baht-sign\": 57516,\n  \"balance-scale-left\": 62741,\n  \"balance-scale-right\": 62742,\n  \"balance-scale\": 62030,\n  \"ball-pile\": 63358,\n  \"ball-yarn\": 59086,\n  \"balloon\": 58083,\n  \"balloons\": 58084,\n  \"ballot-check\": 63283,\n  \"ballot\": 63282,\n  \"ban-bug\": 63481,\n  \"ban-parking\": 62998,\n  \"ban-smoking\": 62797,\n  \"ban\": 61534,\n  \"banana\": 58085,\n  \"band-aid\": 62562,\n  \"bandage\": 62562,\n  \"bangladeshi-taka-sign\": 58086,\n  \"banjo\": 63651,\n  \"bank\": 61852,\n  \"bar-chart\": 61568,\n  \"bar-progress-empty\": 59045,\n  \"bar-progress-full\": 59046,\n  \"bar-progress-half\": 59047,\n  \"bar-progress-quarter\": 59048,\n  \"bar-progress-three-quarters\": 59049,\n  \"bar-progress\": 59044,\n  \"barcode-alt\": 62563,\n  \"barcode-read\": 62564,\n  \"barcode-scan\": 62565,\n  \"barcode\": 61482,\n  \"barn-silo\": 63588,\n  \"barn\": 59079,\n  \"bars-filter\": 57517,\n  \"bars-progress\": 63528,\n  \"bars-sort\": 57518,\n  \"bars-staggered\": 62800,\n  \"bars\": 61641,\n  \"baseball-ball\": 62515,\n  \"baseball-bat-ball\": 62514,\n  \"baseball-bat\": 59365,\n  \"baseball\": 62515,\n  \"basket-shopping-minus\": 58962,\n  \"basket-shopping-plus\": 58963,\n  \"basket-shopping-simple\": 57519,\n  \"basket-shopping\": 62097,\n  \"basketball-ball\": 62516,\n  \"basketball-hoop\": 62517,\n  \"basketball\": 62516,\n  \"bat\": 63157,\n  \"bath\": 62157,\n  \"bathtub\": 62157,\n  \"battery-0\": 62020,\n  \"battery-1\": 57521,\n  \"battery-2\": 62019,\n  \"battery-3\": 62018,\n  \"battery-4\": 62017,\n  \"battery-5\": 62016,\n  \"battery-bolt\": 62326,\n  \"battery-car\": 62943,\n  \"battery-empty\": 62020,\n  \"battery-exclamation\": 57520,\n  \"battery-full\": 62016,\n  \"battery-half\": 62018,\n  \"battery-low\": 57521,\n  \"battery-quarter\": 62019,\n  \"battery-slash\": 62327,\n  \"battery-three-quarters\": 62017,\n  \"battery\": 62016,\n  \"bed-alt\": 63735,\n  \"bed-bunk\": 63736,\n  \"bed-empty\": 63737,\n  \"bed-front\": 63735,\n  \"bed-pulse\": 62599,\n  \"bed\": 62006,\n  \"bee\": 57522,\n  \"beer-foam\": 57523,\n  \"beer-mug-empty\": 61692,\n  \"beer-mug\": 57523,\n  \"beer\": 61692,\n  \"bell-concierge\": 62818,\n  \"bell-exclamation\": 63560,\n  \"bell-on\": 63738,\n  \"bell-plus\": 63561,\n  \"bell-ring\": 58924,\n  \"bell-school-slash\": 62934,\n  \"bell-school\": 62933,\n  \"bell-slash\": 61942,\n  \"bell\": 61683,\n  \"bells\": 63359,\n  \"bench-tree\": 58087,\n  \"betamax\": 63652,\n  \"bezier-curve\": 62811,\n  \"bible\": 63047,\n  \"bicep\": 59490,\n  \"bicycle\": 61958,\n  \"biking-mountain\": 63563,\n  \"biking\": 63562,\n  \"billboard\": 58829,\n  \"bin-bottles-recycle\": 58870,\n  \"bin-bottles\": 58869,\n  \"bin-recycle\": 58871,\n  \"bin\": 59235,\n  \"binary-circle-check\": 58172,\n  \"binary-lock\": 58173,\n  \"binary-slash\": 58174,\n  \"binary\": 58171,\n  \"binoculars\": 61925,\n  \"biohazard\": 63360,\n  \"bird\": 58473,\n  \"birthday-cake\": 61949,\n  \"bitcoin-sign\": 57524,\n  \"blackboard\": 62747,\n  \"blanket-fire\": 58330,\n  \"blanket\": 62616,\n  \"blender-phone\": 63158,\n  \"blender\": 62743,\n  \"blind\": 62109,\n  \"blinds-open\": 63740,\n  \"blinds-raised\": 63741,\n  \"blinds\": 63739,\n  \"block-brick-fire\": 58332,\n  \"block-brick\": 58331,\n  \"block-question\": 58333,\n  \"block-quote\": 57525,\n  \"block\": 58474,\n  \"blog\": 63361,\n  \"blueberries\": 58088,\n  \"bluetooth\": 62099,\n  \"bold\": 61490,\n  \"bolt-auto\": 57526,\n  \"bolt-lightning\": 57527,\n  \"bolt-slash\": 57528,\n  \"bolt\": 61671,\n  \"bomb\": 61922,\n  \"bone-break\": 62936,\n  \"bone\": 62935,\n  \"bong\": 62812,\n  \"book-alt\": 62937,\n  \"book-arrow-right\": 57529,\n  \"book-arrow-up\": 57530,\n  \"book-atlas\": 62808,\n  \"book-bible\": 63047,\n  \"book-blank\": 62937,\n  \"book-bookmark\": 57531,\n  \"book-circle-arrow-right\": 57532,\n  \"book-circle-arrow-up\": 57533,\n  \"book-circle\": 57599,\n  \"book-copy\": 57534,\n  \"book-dead\": 63159,\n  \"book-font\": 57535,\n  \"book-heart\": 62617,\n  \"book-journal-whills\": 63082,\n  \"book-law\": 57537,\n  \"book-medical\": 63462,\n  \"book-open-alt\": 57536,\n  \"book-open-cover\": 57536,\n  \"book-open-lines\": 59219,\n  \"book-open-reader\": 62938,\n  \"book-open\": 62744,\n  \"book-quran\": 63111,\n  \"book-reader\": 62938,\n  \"book-section\": 57537,\n  \"book-skull\": 63159,\n  \"book-sparkles\": 63160,\n  \"book-spells\": 63160,\n  \"book-spine\": 59220,\n  \"book-tanakh\": 63527,\n  \"book-user\": 63463,\n  \"book\": 61485,\n  \"bookmark-circle\": 57600,\n  \"bookmark-plus\": 59221,\n  \"bookmark-slash\": 57538,\n  \"bookmark\": 61486,\n  \"books-medical\": 63464,\n  \"books\": 62939,\n  \"boombox\": 63653,\n  \"boot-heeled\": 58175,\n  \"boot\": 63362,\n  \"booth-curtain\": 63284,\n  \"border-all\": 63564,\n  \"border-bottom-right\": 63572,\n  \"border-bottom\": 63565,\n  \"border-center-h\": 63644,\n  \"border-center-v\": 63645,\n  \"border-inner\": 63566,\n  \"border-left\": 63567,\n  \"border-none\": 63568,\n  \"border-outer\": 63569,\n  \"border-right\": 63570,\n  \"border-style-alt\": 63572,\n  \"border-style\": 63571,\n  \"border-top-left\": 63571,\n  \"border-top\": 63573,\n  \"bore-hole\": 58563,\n  \"bottle-baby\": 58995,\n  \"bottle-droplet\": 58564,\n  \"bottle-water\": 58565,\n  \"bow-archery\": 59450,\n  \"bow-arrow\": 63161,\n  \"bowl-chopsticks-noodles\": 58090,\n  \"bowl-chopsticks\": 58089,\n  \"bowl-food\": 58566,\n  \"bowl-hot\": 63523,\n  \"bowl-rice\": 58091,\n  \"bowl-salad\": 63518,\n  \"bowl-scoop\": 58334,\n  \"bowl-scoops\": 58335,\n  \"bowl-shaved-ice\": 58334,\n  \"bowl-soft-serve\": 58475,\n  \"bowl-spoon\": 58336,\n  \"bowling-ball-pin\": 57539,\n  \"bowling-ball\": 62518,\n  \"bowling-pins\": 62519,\n  \"box-alt\": 62618,\n  \"box-archive\": 61831,\n  \"box-arrow-down-arrow-up\": 59285,\n  \"box-arrow-down-magnifying-glass\": 59286,\n  \"box-arrow-down\": 59284,\n  \"box-arrow-up\": 59431,\n  \"box-ballot\": 63285,\n  \"box-check\": 62567,\n  \"box-circle-check\": 57540,\n  \"box-dollar\": 62624,\n  \"box-fragile\": 62619,\n  \"box-full\": 62620,\n  \"box-heart\": 62621,\n  \"box-isometric-tape\": 59288,\n  \"box-isometric\": 59287,\n  \"box-magnifying-glass\": 59432,\n  \"box-open-full\": 62620,\n  \"box-open\": 62622,\n  \"box-taped\": 62618,\n  \"box-tissue\": 57435,\n  \"box-up\": 62623,\n  \"box-usd\": 62624,\n  \"box\": 62566,\n  \"boxes-alt\": 62568,\n  \"boxes-packing\": 58567,\n  \"boxes-stacked\": 62568,\n  \"boxes\": 62568,\n  \"boxing-glove\": 62520,\n  \"bra\": 59087,\n  \"bracket-curly-left\": 123,\n  \"bracket-curly-right\": 125,\n  \"bracket-curly\": 123,\n  \"bracket-left\": 91,\n  \"bracket-round-right\": 41,\n  \"bracket-round\": 40,\n  \"bracket-square-right\": 93,\n  \"bracket-square\": 91,\n  \"bracket\": 91,\n  \"brackets-curly\": 63466,\n  \"brackets-round\": 57541,\n  \"brackets-square\": 63465,\n  \"brackets\": 63465,\n  \"braille\": 62113,\n  \"brain-arrow-curved-right\": 63095,\n  \"brain-circuit\": 57542,\n  \"brain\": 62940,\n  \"brake-warning\": 57543,\n  \"brazilian-real-sign\": 58476,\n  \"bread-loaf\": 63467,\n  \"bread-slice-butter\": 58337,\n  \"bread-slice\": 63468,\n  \"bridge-circle-check\": 58569,\n  \"bridge-circle-exclamation\": 58570,\n  \"bridge-circle-xmark\": 58571,\n  \"bridge-lock\": 58572,\n  \"bridge-suspension\": 58573,\n  \"bridge-water\": 58574,\n  \"bridge\": 58568,\n  \"briefcase-arrow-right\": 58098,\n  \"briefcase-blank\": 57544,\n  \"briefcase-clock\": 63050,\n  \"briefcase-medical\": 62569,\n  \"briefcase\": 61617,\n  \"briefs\": 59088,\n  \"brightness-low\": 57546,\n  \"brightness\": 57545,\n  \"bring-forward\": 63574,\n  \"bring-front\": 63575,\n  \"broadcast-tower\": 62745,\n  \"broccoli\": 58338,\n  \"broom-ball\": 62552,\n  \"broom-wide\": 58833,\n  \"broom\": 62746,\n  \"browser\": 62334,\n  \"browsers\": 57547,\n  \"brush\": 62813,\n  \"bucket\": 58575,\n  \"bug-slash\": 58512,\n  \"bug\": 61832,\n  \"bugs\": 58576,\n  \"building-circle-arrow-right\": 58577,\n  \"building-circle-check\": 58578,\n  \"building-circle-exclamation\": 58579,\n  \"building-circle-xmark\": 58580,\n  \"building-columns\": 61852,\n  \"building-flag\": 58581,\n  \"building-lock\": 58582,\n  \"building-magnifying-glass\": 58908,\n  \"building-memo\": 58910,\n  \"building-ngo\": 58583,\n  \"building-shield\": 58584,\n  \"building-un\": 58585,\n  \"building-user\": 58586,\n  \"building-wheat\": 58587,\n  \"building\": 61869,\n  \"buildings\": 57548,\n  \"bulldozer\": 58965,\n  \"bullhorn\": 61601,\n  \"bullseye-arrow\": 63048,\n  \"bullseye-pointer\": 63049,\n  \"bullseye\": 61760,\n  \"buoy-mooring\": 58806,\n  \"buoy\": 58805,\n  \"burger-cheese\": 63473,\n  \"burger-fries\": 57549,\n  \"burger-glass\": 57550,\n  \"burger-lettuce\": 58339,\n  \"burger-soda\": 63576,\n  \"burger\": 63493,\n  \"burn\": 62570,\n  \"burrito\": 63469,\n  \"burst-new\": 59512,\n  \"burst\": 58588,\n  \"bus-alt\": 62814,\n  \"bus-school\": 62941,\n  \"bus-side\": 59421,\n  \"bus-simple\": 62814,\n  \"bus-stop\": 59422,\n  \"bus\": 61959,\n  \"business-front\": 58460,\n  \"business-time\": 63050,\n  \"butter\": 58340,\n  \"butterfly\": 59409,\n  \"c\": 67,\n  \"cab\": 61882,\n  \"cabin\": 58477,\n  \"cabinet-filing\": 63051,\n  \"cable-car\": 63450,\n  \"cactus\": 63655,\n  \"caduceus\": 59009,\n  \"cake-candles\": 61949,\n  \"cake-slice\": 58341,\n  \"cake\": 61949,\n  \"calculator-alt\": 63052,\n  \"calculator-simple\": 63052,\n  \"calculator\": 61932,\n  \"calendar-alt\": 61555,\n  \"calendar-arrow-down\": 57552,\n  \"calendar-arrow-up\": 57553,\n  \"calendar-check\": 62068,\n  \"calendar-circle-exclamation\": 58478,\n  \"calendar-circle-minus\": 58479,\n  \"calendar-circle-plus\": 58480,\n  \"calendar-circle-user\": 58481,\n  \"calendar-circle\": 57602,\n  \"calendar-clock\": 57554,\n  \"calendar-day\": 63363,\n  \"calendar-days\": 61555,\n  \"calendar-download\": 57552,\n  \"calendar-edit\": 62259,\n  \"calendar-exclamation\": 62260,\n  \"calendar-heart\": 57555,\n  \"calendar-image\": 57556,\n  \"calendar-lines-pen\": 58482,\n  \"calendar-lines\": 57557,\n  \"calendar-minus\": 62066,\n  \"calendar-note\": 57557,\n  \"calendar-pen\": 62259,\n  \"calendar-plus\": 62065,\n  \"calendar-range\": 57558,\n  \"calendar-star\": 63286,\n  \"calendar-time\": 57554,\n  \"calendar-times\": 62067,\n  \"calendar-upload\": 57553,\n  \"calendar-users\": 58850,\n  \"calendar-week\": 63364,\n  \"calendar-xmark\": 62067,\n  \"calendar\": 61747,\n  \"calendars\": 57559,\n  \"camcorder\": 63656,\n  \"camera-alt\": 61488,\n  \"camera-cctv\": 63660,\n  \"camera-circle-ellipsis\": 59238,\n  \"camera-circle\": 57603,\n  \"camera-clock\": 59239,\n  \"camera-home\": 63742,\n  \"camera-movie\": 63657,\n  \"camera-polaroid\": 63658,\n  \"camera-retro\": 61571,\n  \"camera-rotate\": 57560,\n  \"camera-security\": 63742,\n  \"camera-shutter\": 59240,\n  \"camera-slash\": 57561,\n  \"camera-viewfinder\": 57562,\n  \"camera-web-slash\": 63539,\n  \"camera-web\": 63538,\n  \"camera\": 61488,\n  \"campfire\": 63162,\n  \"campground\": 63163,\n  \"can-food\": 58342,\n  \"cancel\": 61534,\n  \"cancer\": 59463,\n  \"candle-holder\": 63164,\n  \"candy-bar\": 58344,\n  \"candy-cane\": 63366,\n  \"candy-corn\": 63165,\n  \"candy\": 58343,\n  \"cannabis\": 62815,\n  \"cannon\": 58946,\n  \"canoe-person\": 59548,\n  \"capricorn\": 59464,\n  \"capsule\": 59226,\n  \"capsules\": 62571,\n  \"car-alt\": 62942,\n  \"car-battery\": 62943,\n  \"car-bolt\": 58177,\n  \"car-building\": 63577,\n  \"car-bump\": 62944,\n  \"car-burst\": 62945,\n  \"car-bus\": 63578,\n  \"car-circle-bolt\": 58178,\n  \"car-crash\": 62945,\n  \"car-garage\": 62946,\n  \"car-key\": 59328,\n  \"car-mechanic\": 62947,\n  \"car-mirrors\": 58179,\n  \"car-on\": 58589,\n  \"car-people\": 59036,\n  \"car-rear\": 62942,\n  \"car-side-bolt\": 58180,\n  \"car-side\": 62948,\n  \"car-siren-on\": 59330,\n  \"car-siren\": 59329,\n  \"car-tilt\": 62949,\n  \"car-tunnel\": 58590,\n  \"car-wash\": 62950,\n  \"car-wrench\": 62947,\n  \"car\": 61881,\n  \"caravan-alt\": 57344,\n  \"caravan-simple\": 57344,\n  \"caravan\": 63743,\n  \"card-club\": 58345,\n  \"card-diamond\": 58346,\n  \"card-heart\": 58347,\n  \"card-spade\": 58348,\n  \"cards-blank\": 58591,\n  \"cards\": 58349,\n  \"caret-circle-down\": 62253,\n  \"caret-circle-left\": 62254,\n  \"caret-circle-right\": 62256,\n  \"caret-circle-up\": 62257,\n  \"caret-down\": 61655,\n  \"caret-large-down\": 59436,\n  \"caret-large-left\": 59437,\n  \"caret-large-right\": 59438,\n  \"caret-large-up\": 59439,\n  \"caret-left\": 61657,\n  \"caret-right\": 61658,\n  \"caret-square-down\": 61776,\n  \"caret-square-left\": 61841,\n  \"caret-square-right\": 61778,\n  \"caret-square-up\": 61777,\n  \"caret-up\": 61656,\n  \"carpool\": 59036,\n  \"carriage-baby\": 63357,\n  \"carrot\": 63367,\n  \"cars\": 63579,\n  \"cart-arrow-down\": 61976,\n  \"cart-arrow-up\": 58350,\n  \"cart-circle-arrow-down\": 58351,\n  \"cart-circle-arrow-up\": 58352,\n  \"cart-circle-check\": 58353,\n  \"cart-circle-exclamation\": 58354,\n  \"cart-circle-plus\": 58355,\n  \"cart-circle-xmark\": 58356,\n  \"cart-flatbed-boxes\": 62581,\n  \"cart-flatbed-empty\": 62582,\n  \"cart-flatbed-suitcase\": 62877,\n  \"cart-flatbed\": 62580,\n  \"cart-minus\": 57563,\n  \"cart-plus\": 61975,\n  \"cart-shopping-fast\": 57564,\n  \"cart-shopping\": 61562,\n  \"cart-xmark\": 57565,\n  \"cash-register\": 63368,\n  \"cassette-betamax\": 63652,\n  \"cassette-tape\": 63659,\n  \"cassette-vhs\": 63724,\n  \"castle\": 57566,\n  \"cat-space\": 57345,\n  \"cat\": 63166,\n  \"cauldron\": 63167,\n  \"cctv\": 63660,\n  \"cedi-sign\": 57567,\n  \"cent-sign\": 58357,\n  \"certificate\": 61603,\n  \"chain-broken\": 61735,\n  \"chain-horizontal-slash\": 57804,\n  \"chain-horizontal\": 57803,\n  \"chain-slash\": 61735,\n  \"chain\": 61633,\n  \"chair-office\": 63169,\n  \"chair\": 63168,\n  \"chalkboard-teacher\": 62748,\n  \"chalkboard-user\": 62748,\n  \"chalkboard\": 62747,\n  \"champagne-glass\": 63390,\n  \"champagne-glasses\": 63391,\n  \"charging-station\": 62951,\n  \"chart-area\": 61950,\n  \"chart-bar\": 61568,\n  \"chart-bullet\": 57569,\n  \"chart-candlestick\": 57570,\n  \"chart-column\": 57571,\n  \"chart-diagram\": 59029,\n  \"chart-fft\": 59038,\n  \"chart-gantt\": 57572,\n  \"chart-kanban\": 58959,\n  \"chart-line-down\": 63053,\n  \"chart-line-up-down\": 58839,\n  \"chart-line-up\": 57573,\n  \"chart-line\": 61953,\n  \"chart-mixed-up-circle-currency\": 58840,\n  \"chart-mixed-up-circle-dollar\": 58841,\n  \"chart-mixed\": 63043,\n  \"chart-network\": 63370,\n  \"chart-pie-alt\": 63054,\n  \"chart-pie-simple-circle-currency\": 58884,\n  \"chart-pie-simple-circle-dollar\": 58885,\n  \"chart-pie-simple\": 63054,\n  \"chart-pie\": 61952,\n  \"chart-pyramid\": 57574,\n  \"chart-radar\": 57575,\n  \"chart-scatter-3d\": 57576,\n  \"chart-scatter-bubble\": 57577,\n  \"chart-scatter\": 63470,\n  \"chart-simple-horizontal\": 58484,\n  \"chart-simple\": 58483,\n  \"chart-sine\": 59037,\n  \"chart-tree-map\": 57578,\n  \"chart-user\": 63139,\n  \"chart-waterfall\": 57579,\n  \"check-circle\": 61528,\n  \"check-double\": 62816,\n  \"check-square\": 61770,\n  \"check-to-slot\": 63346,\n  \"check\": 61452,\n  \"cheese-swiss\": 63472,\n  \"cheese\": 63471,\n  \"cheeseburger\": 63473,\n  \"chemex\": 59440,\n  \"cherries\": 57580,\n  \"chess-bishop-alt\": 62523,\n  \"chess-bishop-piece\": 62523,\n  \"chess-bishop\": 62522,\n  \"chess-board\": 62524,\n  \"chess-clock-alt\": 62526,\n  \"chess-clock-flip\": 62526,\n  \"chess-clock\": 62525,\n  \"chess-king-alt\": 62528,\n  \"chess-king-piece\": 62528,\n  \"chess-king\": 62527,\n  \"chess-knight-alt\": 62530,\n  \"chess-knight-piece\": 62530,\n  \"chess-knight\": 62529,\n  \"chess-pawn-alt\": 62532,\n  \"chess-pawn-piece\": 62532,\n  \"chess-pawn\": 62531,\n  \"chess-queen-alt\": 62534,\n  \"chess-queen-piece\": 62534,\n  \"chess-queen\": 62533,\n  \"chess-rook-alt\": 62536,\n  \"chess-rook-piece\": 62536,\n  \"chess-rook\": 62535,\n  \"chess\": 62521,\n  \"chest-drawers\": 59523,\n  \"chestnut\": 58358,\n  \"chevron-circle-down\": 61754,\n  \"chevron-circle-left\": 61751,\n  \"chevron-circle-right\": 61752,\n  \"chevron-circle-up\": 61753,\n  \"chevron-double-down\": 62242,\n  \"chevron-double-left\": 62243,\n  \"chevron-double-right\": 62244,\n  \"chevron-double-up\": 62245,\n  \"chevron-down\": 61560,\n  \"chevron-left\": 61523,\n  \"chevron-right\": 61524,\n  \"chevron-square-down\": 62249,\n  \"chevron-square-left\": 62250,\n  \"chevron-square-right\": 62251,\n  \"chevron-square-up\": 62252,\n  \"chevron-up\": 61559,\n  \"chevrons-down\": 62242,\n  \"chevrons-left\": 62243,\n  \"chevrons-right\": 62244,\n  \"chevrons-up\": 62245,\n  \"chf-sign\": 58882,\n  \"child-combatant\": 58592,\n  \"child-dress\": 58780,\n  \"child-reaching\": 58781,\n  \"child-rifle\": 58592,\n  \"child\": 61870,\n  \"children\": 58593,\n  \"chimney\": 63371,\n  \"chocolate-bar\": 58344,\n  \"chopsticks\": 58359,\n  \"church\": 62749,\n  \"circle-0\": 57581,\n  \"circle-1\": 57582,\n  \"circle-2\": 57583,\n  \"circle-3\": 57584,\n  \"circle-4\": 57585,\n  \"circle-5\": 57586,\n  \"circle-6\": 57587,\n  \"circle-7\": 57588,\n  \"circle-8\": 57589,\n  \"circle-9\": 57590,\n  \"circle-a\": 57591,\n  \"circle-ampersand\": 57592,\n  \"circle-arrow-down-left\": 57593,\n  \"circle-arrow-down-right\": 57594,\n  \"circle-arrow-down\": 61611,\n  \"circle-arrow-left\": 61608,\n  \"circle-arrow-right\": 61609,\n  \"circle-arrow-up-left\": 57595,\n  \"circle-arrow-up-right\": 57596,\n  \"circle-arrow-up\": 61610,\n  \"circle-austral\": 59163,\n  \"circle-australian-dollar\": 59184,\n  \"circle-b\": 57597,\n  \"circle-baht\": 59181,\n  \"circle-bangladeshi-taka\": 59137,\n  \"circle-bitcoin\": 59191,\n  \"circle-bolt\": 57598,\n  \"circle-book-open\": 57599,\n  \"circle-bookmark\": 57600,\n  \"circle-brazilian-real\": 59115,\n  \"circle-c\": 57601,\n  \"circle-calendar\": 57602,\n  \"circle-camera\": 57603,\n  \"circle-caret-down\": 62253,\n  \"circle-caret-left\": 62254,\n  \"circle-caret-right\": 62256,\n  \"circle-caret-up\": 62257,\n  \"circle-cedi\": 59202,\n  \"circle-cent\": 59178,\n  \"circle-check\": 61528,\n  \"circle-chevron-down\": 61754,\n  \"circle-chevron-left\": 61751,\n  \"circle-chevron-right\": 61752,\n  \"circle-chevron-up\": 61753,\n  \"circle-chf\": 59180,\n  \"circle-colon\": 59132,\n  \"circle-cruzeiro\": 59170,\n  \"circle-currency\": 59118,\n  \"circle-d\": 57604,\n  \"circle-danish-krone\": 59206,\n  \"circle-dashed\": 57605,\n  \"circle-divide\": 57606,\n  \"circle-dollar-to-slot\": 62649,\n  \"circle-dollar\": 62184,\n  \"circle-dong\": 59171,\n  \"circle-dot\": 61842,\n  \"circle-down-left\": 57607,\n  \"circle-down-right\": 57608,\n  \"circle-down\": 62296,\n  \"circle-e\": 57609,\n  \"circle-ellipsis-vertical\": 57611,\n  \"circle-ellipsis\": 57610,\n  \"circle-envelope\": 57612,\n  \"circle-equals\": 59057,\n  \"circle-euro\": 58830,\n  \"circle-eurozone\": 59205,\n  \"circle-exclamation-check\": 57613,\n  \"circle-exclamation\": 61546,\n  \"circle-f\": 57614,\n  \"circle-florin\": 59108,\n  \"circle-franc\": 59169,\n  \"circle-g\": 57615,\n  \"circle-gf\": 59007,\n  \"circle-guarani\": 59195,\n  \"circle-h\": 62590,\n  \"circle-half-horizontal\": 59404,\n  \"circle-half-stroke-horizontal\": 59405,\n  \"circle-half-stroke\": 61506,\n  \"circle-half\": 57616,\n  \"circle-heart\": 62663,\n  \"circle-house\": 59080,\n  \"circle-hryvnia\": 59119,\n  \"circle-i\": 57617,\n  \"circle-indian-rupee\": 59188,\n  \"circle-info\": 61530,\n  \"circle-j\": 57618,\n  \"circle-k\": 57619,\n  \"circle-kip\": 59133,\n  \"circle-l\": 57620,\n  \"circle-lari\": 59165,\n  \"circle-left\": 62297,\n  \"circle-lira\": 59126,\n  \"circle-litecoin\": 59124,\n  \"circle-location-arrow\": 62978,\n  \"circle-m\": 57621,\n  \"circle-malaysian-ringgit\": 59129,\n  \"circle-manat\": 59131,\n  \"circle-microphone-lines\": 57623,\n  \"circle-microphone\": 57622,\n  \"circle-mill\": 59138,\n  \"circle-minus\": 61526,\n  \"circle-moon\": 59360,\n  \"circle-n\": 57624,\n  \"circle-naira\": 59209,\n  \"circle-nodes\": 58594,\n  \"circle-norwegian-krone\": 59192,\n  \"circle-notch\": 61902,\n  \"circle-o\": 57625,\n  \"circle-p\": 57626,\n  \"circle-parking\": 62997,\n  \"circle-pause\": 62091,\n  \"circle-peruvian-soles\": 59123,\n  \"circle-peseta\": 59201,\n  \"circle-peso\": 59135,\n  \"circle-phone-flip\": 57628,\n  \"circle-phone-hangup\": 57629,\n  \"circle-phone\": 57627,\n  \"circle-play\": 61764,\n  \"circle-plus\": 61525,\n  \"circle-polish-zloty\": 59136,\n  \"circle-q\": 57630,\n  \"circle-quarter-stroke\": 58835,\n  \"circle-quarter\": 57631,\n  \"circle-quarters\": 58360,\n  \"circle-question\": 61529,\n  \"circle-r\": 57632,\n  \"circle-radiation\": 63418,\n  \"circle-renminbi\": 59113,\n  \"circle-right\": 62298,\n  \"circle-ruble\": 59109,\n  \"circle-rupee\": 59156,\n  \"circle-rupiah\": 59142,\n  \"circle-s\": 57633,\n  \"circle-share-nodes\": 59099,\n  \"circle-shekel\": 59139,\n  \"circle-small\": 57634,\n  \"circle-sort-down\": 57393,\n  \"circle-sort-up\": 57394,\n  \"circle-sort\": 57392,\n  \"circle-star\": 57635,\n  \"circle-sterling\": 58831,\n  \"circle-stop\": 62093,\n  \"circle-swedish-krona\": 59203,\n  \"circle-t\": 57636,\n  \"circle-tenge\": 59173,\n  \"circle-three-quarters-stroke\": 58836,\n  \"circle-three-quarters\": 57637,\n  \"circle-trash\": 57638,\n  \"circle-tugrik\": 59153,\n  \"circle-turkish-lira\": 59193,\n  \"circle-u\": 57639,\n  \"circle-up-left\": 57640,\n  \"circle-up-right\": 57641,\n  \"circle-up\": 62299,\n  \"circle-user-circle-check\": 59295,\n  \"circle-user-circle-exclamation\": 59296,\n  \"circle-user-circle-minus\": 59297,\n  \"circle-user-circle-moon\": 59298,\n  \"circle-user-circle-plus\": 59299,\n  \"circle-user-circle-question\": 59300,\n  \"circle-user-circle-user\": 59301,\n  \"circle-user-circle-xmark\": 59302,\n  \"circle-user-clock\": 59303,\n  \"circle-user\": 62141,\n  \"circle-v\": 57642,\n  \"circle-video\": 57643,\n  \"circle-w\": 57644,\n  \"circle-waveform-lines\": 57645,\n  \"circle-wifi-circle-wifi\": 59006,\n  \"circle-wifi-group\": 59006,\n  \"circle-wifi\": 59005,\n  \"circle-won\": 59116,\n  \"circle-x\": 57646,\n  \"circle-xmark\": 61527,\n  \"circle-y\": 57647,\n  \"circle-yen\": 58832,\n  \"circle-z\": 57648,\n  \"circle\": 61713,\n  \"circleapore-dollar\": 59166,\n  \"circles-overlap-3\": 59041,\n  \"circles-overlap\": 58880,\n  \"citrus-slice\": 58101,\n  \"citrus\": 58100,\n  \"city\": 63055,\n  \"clapperboard-play\": 57650,\n  \"clapperboard\": 57649,\n  \"clarinet\": 63661,\n  \"claw-marks\": 63170,\n  \"clinic-medical\": 63474,\n  \"clipboard-check\": 62572,\n  \"clipboard-clock\": 59222,\n  \"clipboard-exclamation\": 59223,\n  \"clipboard-list-check\": 63287,\n  \"clipboard-list\": 62573,\n  \"clipboard-medical\": 57651,\n  \"clipboard-prescription\": 62952,\n  \"clipboard-question\": 58595,\n  \"clipboard-user\": 63475,\n  \"clipboard\": 62248,\n  \"clock-desk\": 57652,\n  \"clock-eight-thirty\": 58182,\n  \"clock-eight\": 58181,\n  \"clock-eleven-thirty\": 58184,\n  \"clock-eleven\": 58183,\n  \"clock-five-thirty\": 58186,\n  \"clock-five\": 58185,\n  \"clock-four-thirty\": 58187,\n  \"clock-four\": 61463,\n  \"clock-nine-thirty\": 58189,\n  \"clock-nine\": 58188,\n  \"clock-one-thirty\": 58191,\n  \"clock-one\": 58190,\n  \"clock-rotate-left\": 61914,\n  \"clock-seven-thirty\": 58193,\n  \"clock-seven\": 58192,\n  \"clock-six-thirty\": 58195,\n  \"clock-six\": 58194,\n  \"clock-ten-thirty\": 58197,\n  \"clock-ten\": 58196,\n  \"clock-three-thirty\": 58199,\n  \"clock-three\": 58198,\n  \"clock-twelve-thirty\": 58201,\n  \"clock-twelve\": 58200,\n  \"clock-two-thirty\": 58203,\n  \"clock-two\": 58202,\n  \"clock\": 61463,\n  \"clone-plus\": 59212,\n  \"clone\": 62029,\n  \"close\": 61453,\n  \"closed-captioning-slash\": 57653,\n  \"closed-captioning\": 61962,\n  \"clothes-hanger\": 57654,\n  \"cloud-arrow-down\": 61677,\n  \"cloud-arrow-up\": 61678,\n  \"cloud-binary\": 58881,\n  \"cloud-bolt-moon\": 63341,\n  \"cloud-bolt-sun\": 63342,\n  \"cloud-bolt\": 63340,\n  \"cloud-check\": 58204,\n  \"cloud-download-alt\": 61677,\n  \"cloud-download\": 61677,\n  \"cloud-drizzle\": 63288,\n  \"cloud-exclamation\": 58513,\n  \"cloud-fog\": 63310,\n  \"cloud-hail-mixed\": 63290,\n  \"cloud-hail\": 63289,\n  \"cloud-meatball\": 63291,\n  \"cloud-minus\": 58205,\n  \"cloud-moon-rain\": 63292,\n  \"cloud-moon\": 63171,\n  \"cloud-music\": 63662,\n  \"cloud-plus\": 58206,\n  \"cloud-question\": 58514,\n  \"cloud-rain\": 63293,\n  \"cloud-rainbow\": 63294,\n  \"cloud-showers-heavy\": 63296,\n  \"cloud-showers-water\": 58596,\n  \"cloud-showers\": 63295,\n  \"cloud-slash\": 57655,\n  \"cloud-sleet\": 63297,\n  \"cloud-snow\": 63298,\n  \"cloud-sun-rain\": 63299,\n  \"cloud-sun\": 63172,\n  \"cloud-upload-alt\": 61678,\n  \"cloud-upload\": 61678,\n  \"cloud-word\": 57656,\n  \"cloud-xmark\": 58207,\n  \"cloud\": 61634,\n  \"clouds-moon\": 63301,\n  \"clouds-sun\": 63302,\n  \"clouds\": 63300,\n  \"clover\": 57657,\n  \"club\": 62247,\n  \"cny\": 61783,\n  \"cocktail\": 62817,\n  \"coconut\": 58102,\n  \"code-branch\": 61734,\n  \"code-commit\": 62342,\n  \"code-compare\": 57658,\n  \"code-fork\": 57659,\n  \"code-merge\": 62343,\n  \"code-pull-request-closed\": 58361,\n  \"code-pull-request-draft\": 58362,\n  \"code-pull-request\": 57660,\n  \"code-simple\": 57661,\n  \"code\": 61729,\n  \"coffee-bean\": 57662,\n  \"coffee-beans\": 57663,\n  \"coffee-pot\": 57346,\n  \"coffee-togo\": 63173,\n  \"coffee\": 61684,\n  \"coffin-cross\": 57425,\n  \"coffin\": 63174,\n  \"cog\": 61459,\n  \"cogs\": 61573,\n  \"coin-blank\": 58363,\n  \"coin-front\": 58364,\n  \"coin-vertical\": 58365,\n  \"coin\": 63580,\n  \"coins\": 62750,\n  \"colon-sign\": 57664,\n  \"colon\": 58,\n  \"columns-3\": 58209,\n  \"columns\": 61659,\n  \"comet\": 57347,\n  \"comma\": 44,\n  \"command\": 57666,\n  \"comment-alt-arrow-down\": 57819,\n  \"comment-alt-arrow-up\": 57820,\n  \"comment-alt-captions\": 57822,\n  \"comment-alt-check\": 62626,\n  \"comment-alt-dollar\": 63056,\n  \"comment-alt-dots\": 62627,\n  \"comment-alt-edit\": 62628,\n  \"comment-alt-exclamation\": 62629,\n  \"comment-alt-image\": 57824,\n  \"comment-alt-lines\": 62630,\n  \"comment-alt-medical\": 63476,\n  \"comment-alt-minus\": 62631,\n  \"comment-alt-music\": 63663,\n  \"comment-alt-plus\": 62632,\n  \"comment-alt-quote\": 57828,\n  \"comment-alt-slash\": 62633,\n  \"comment-alt-smile\": 62634,\n  \"comment-alt-text\": 57830,\n  \"comment-alt-times\": 62635,\n  \"comment-alt\": 62074,\n  \"comment-arrow-down\": 57667,\n  \"comment-arrow-up-right\": 57669,\n  \"comment-arrow-up\": 57668,\n  \"comment-captions\": 57670,\n  \"comment-check\": 62636,\n  \"comment-code\": 57671,\n  \"comment-dollar\": 63057,\n  \"comment-dot\": 59100,\n  \"comment-dots\": 62637,\n  \"comment-edit\": 62638,\n  \"comment-exclamation\": 62639,\n  \"comment-heart\": 58824,\n  \"comment-image\": 57672,\n  \"comment-lines\": 62640,\n  \"comment-medical\": 63477,\n  \"comment-middle-alt\": 57825,\n  \"comment-middle-top-alt\": 57826,\n  \"comment-middle-top\": 57674,\n  \"comment-middle\": 57673,\n  \"comment-minus\": 62641,\n  \"comment-music\": 63664,\n  \"comment-nodes\": 59030,\n  \"comment-pen\": 62638,\n  \"comment-plus\": 62642,\n  \"comment-question\": 57675,\n  \"comment-quote\": 57676,\n  \"comment-slash\": 62643,\n  \"comment-smile\": 62644,\n  \"comment-sms\": 63437,\n  \"comment-text\": 57677,\n  \"comment-times\": 62645,\n  \"comment-waveform\": 59101,\n  \"comment-xmark\": 62645,\n  \"comment\": 61557,\n  \"commenting\": 62637,\n  \"comments-alt-dollar\": 63058,\n  \"comments-alt\": 62646,\n  \"comments-dollar\": 63059,\n  \"comments-question-check\": 57679,\n  \"comments-question\": 57678,\n  \"comments\": 61574,\n  \"compact-disc\": 62751,\n  \"compass-drafting\": 62824,\n  \"compass-slash\": 62953,\n  \"compass\": 61774,\n  \"compress-alt\": 62498,\n  \"compress-arrows-alt\": 63372,\n  \"compress-arrows\": 57509,\n  \"compress-wide\": 62246,\n  \"compress\": 61542,\n  \"computer-classic\": 63665,\n  \"computer-mouse-button-left\": 59341,\n  \"computer-mouse-button-right\": 59342,\n  \"computer-mouse-scrollwheel\": 63693,\n  \"computer-mouse\": 63692,\n  \"computer-speaker\": 63666,\n  \"computer\": 58597,\n  \"concierge-bell\": 62818,\n  \"construction\": 63581,\n  \"contact-book\": 62137,\n  \"contact-card\": 62139,\n  \"container-storage\": 62647,\n  \"conveyor-belt-alt\": 62575,\n  \"conveyor-belt-arm\": 58872,\n  \"conveyor-belt-boxes\": 62575,\n  \"conveyor-belt-empty\": 57680,\n  \"conveyor-belt\": 62574,\n  \"cookie-bite\": 62820,\n  \"cookie\": 62819,\n  \"copy\": 61637,\n  \"copyright\": 61945,\n  \"corn\": 63175,\n  \"corner\": 58366,\n  \"couch-small\": 62668,\n  \"couch\": 62648,\n  \"court-sport\": 58947,\n  \"cow\": 63176,\n  \"cowbell-circle-plus\": 63668,\n  \"cowbell-more\": 63668,\n  \"cowbell\": 63667,\n  \"crab\": 58367,\n  \"crate-apple\": 63153,\n  \"crate-empty\": 57681,\n  \"credit-card-alt\": 61597,\n  \"credit-card-blank\": 62345,\n  \"credit-card-front\": 62346,\n  \"credit-card\": 61597,\n  \"creemee\": 58368,\n  \"cricket-bat-ball\": 62537,\n  \"cricket\": 62537,\n  \"croissant\": 63478,\n  \"crop-alt\": 62821,\n  \"crop-simple\": 62821,\n  \"crop\": 61733,\n  \"cross\": 63060,\n  \"crosshairs-simple\": 58783,\n  \"crosshairs\": 61531,\n  \"crow\": 62752,\n  \"crown\": 62753,\n  \"crutch\": 63479,\n  \"crutches\": 63480,\n  \"cruzeiro-sign\": 57682,\n  \"crystal-ball\": 58210,\n  \"cube\": 61874,\n  \"cubes-stacked\": 58598,\n  \"cubes\": 61875,\n  \"cucumber\": 58369,\n  \"cup-straw-swoosh\": 58212,\n  \"cup-straw\": 58211,\n  \"cup-togo\": 63173,\n  \"cupcake\": 58370,\n  \"curling-stone\": 62538,\n  \"curling\": 62538,\n  \"currency-sign\": 59179,\n  \"custard\": 58371,\n  \"cut\": 61636,\n  \"cutlery\": 62183,\n  \"d\": 68,\n  \"dagger\": 63179,\n  \"danish-krone-sign\": 59168,\n  \"dash\": 58372,\n  \"dashboard\": 63012,\n  \"database\": 61888,\n  \"deaf\": 62116,\n  \"deafness\": 62116,\n  \"debug\": 63481,\n  \"dedent\": 61499,\n  \"deer-rudolph\": 63375,\n  \"deer\": 63374,\n  \"delete-left\": 62810,\n  \"delete-right\": 57684,\n  \"democrat\": 63303,\n  \"desk\": 59518,\n  \"desktop-alt\": 62352,\n  \"desktop-arrow-down\": 57685,\n  \"desktop-code\": 57701,\n  \"desktop-medical\": 57702,\n  \"desktop-slash\": 58106,\n  \"desktop\": 62352,\n  \"dewpoint\": 63304,\n  \"dharmachakra\": 63061,\n  \"diagnoses\": 62576,\n  \"diagram-cells\": 58485,\n  \"diagram-lean-canvas\": 57686,\n  \"diagram-nested\": 57687,\n  \"diagram-next\": 58486,\n  \"diagram-predecessor\": 58487,\n  \"diagram-previous\": 58488,\n  \"diagram-project\": 62786,\n  \"diagram-sankey\": 57688,\n  \"diagram-subtask\": 58489,\n  \"diagram-successor\": 58490,\n  \"diagram-venn\": 57690,\n  \"dial-high\": 57692,\n  \"dial-low\": 57693,\n  \"dial-max\": 57694,\n  \"dial-med-high\": 57691,\n  \"dial-med-low\": 57696,\n  \"dial-med\": 57695,\n  \"dial-min\": 57697,\n  \"dial-off\": 57698,\n  \"dial\": 57691,\n  \"dialpad\": 59340,\n  \"diamond-exclamation\": 58373,\n  \"diamond-half-stroke\": 58808,\n  \"diamond-half\": 58807,\n  \"diamond-turn-right\": 62955,\n  \"diamond\": 61977,\n  \"diamonds-4\": 59019,\n  \"dice-d10\": 63181,\n  \"dice-d12\": 63182,\n  \"dice-d20\": 63183,\n  \"dice-d4\": 63184,\n  \"dice-d6\": 63185,\n  \"dice-d8\": 63186,\n  \"dice-five\": 62755,\n  \"dice-four\": 62756,\n  \"dice-one\": 62757,\n  \"dice-six\": 62758,\n  \"dice-three\": 62759,\n  \"dice-two\": 62760,\n  \"dice\": 62754,\n  \"digging\": 63582,\n  \"digital-tachograph\": 62822,\n  \"dinosaur\": 58878,\n  \"diploma\": 62954,\n  \"direction-left-right\": 59070,\n  \"direction-up-down\": 59071,\n  \"directions\": 62955,\n  \"disc-drive\": 63669,\n  \"disease\": 63482,\n  \"display-arrow-down\": 57700,\n  \"display-chart-up-circle-currency\": 58853,\n  \"display-chart-up-circle-dollar\": 58854,\n  \"display-chart-up\": 58851,\n  \"display-code\": 57701,\n  \"display-medical\": 57702,\n  \"display-slash\": 58106,\n  \"display\": 57699,\n  \"distribute-spacing-horizontal\": 58213,\n  \"distribute-spacing-vertical\": 58214,\n  \"ditto\": 34,\n  \"divide\": 62761,\n  \"dizzy\": 62823,\n  \"dna\": 62577,\n  \"do-not-enter\": 62956,\n  \"dog-leashed\": 63188,\n  \"dog\": 63187,\n  \"dollar-circle\": 62184,\n  \"dollar-sign\": 36,\n  \"dollar-square\": 62185,\n  \"dollar\": 36,\n  \"dolly-box\": 62578,\n  \"dolly-empty\": 62579,\n  \"dolly-flatbed-alt\": 62581,\n  \"dolly-flatbed-empty\": 62582,\n  \"dolly-flatbed\": 62580,\n  \"dolly\": 62578,\n  \"dolphin\": 57704,\n  \"donate\": 62649,\n  \"dong-sign\": 57705,\n  \"donut\": 58374,\n  \"door-closed\": 62762,\n  \"door-open\": 62763,\n  \"dot-circle\": 61842,\n  \"dot\": 59345,\n  \"doughnut\": 58374,\n  \"dove\": 62650,\n  \"down-from-bracket\": 58987,\n  \"down-from-dotted-line\": 58375,\n  \"down-from-line\": 62281,\n  \"down-left-and-up-right-to-center\": 62498,\n  \"down-left\": 57706,\n  \"down-long-to-line\": 59072,\n  \"down-long\": 62217,\n  \"down-right\": 57707,\n  \"down-to-bracket\": 58599,\n  \"down-to-dotted-line\": 58376,\n  \"down-to-line\": 62282,\n  \"down-up\": 59073,\n  \"down\": 62292,\n  \"download\": 61465,\n  \"drafting-compass\": 62824,\n  \"dragon\": 63189,\n  \"draw-circle\": 62957,\n  \"draw-polygon\": 62958,\n  \"draw-square\": 62959,\n  \"dreidel\": 63378,\n  \"dress\": 59089,\n  \"dresser\": 59519,\n  \"drivers-license\": 62146,\n  \"drone-alt\": 63584,\n  \"drone-front\": 63584,\n  \"drone\": 63583,\n  \"droplet-degree\": 63304,\n  \"droplet-percent\": 63312,\n  \"droplet-plus\": 59392,\n  \"droplet-slash\": 62919,\n  \"droplet\": 61507,\n  \"drum-steelpan\": 62826,\n  \"drum\": 62825,\n  \"drumstick-bite\": 63191,\n  \"drumstick\": 63190,\n  \"dryer-alt\": 63586,\n  \"dryer-heat\": 63586,\n  \"dryer\": 63585,\n  \"duck\": 63192,\n  \"dumbbell\": 62539,\n  \"dumpster-fire\": 63380,\n  \"dumpster\": 63379,\n  \"dungeon\": 63193,\n  \"e\": 69,\n  \"ear-circle-checkmark\": 59227,\n  \"ear-deaf\": 62116,\n  \"ear-listen\": 62114,\n  \"ear-muffs\": 63381,\n  \"ear-triangle-exclamation\": 59228,\n  \"ear-waveform\": 59229,\n  \"ear\": 62960,\n  \"earth-africa\": 62844,\n  \"earth-america\": 62845,\n  \"earth-americas\": 62845,\n  \"earth-asia\": 62846,\n  \"earth-europe\": 63394,\n  \"earth-oceania\": 58491,\n  \"earth\": 62845,\n  \"eclipse-alt\": 63306,\n  \"eclipse\": 63305,\n  \"edit\": 61508,\n  \"egg-fried\": 63484,\n  \"egg\": 63483,\n  \"eggplant\": 57708,\n  \"eject\": 61522,\n  \"elephant\": 63194,\n  \"elevator\": 57709,\n  \"ellipsis-h-alt\": 62363,\n  \"ellipsis-h\": 61761,\n  \"ellipsis-stroke-vertical\": 62364,\n  \"ellipsis-stroke\": 62363,\n  \"ellipsis-v-alt\": 62364,\n  \"ellipsis-v\": 61762,\n  \"ellipsis-vertical\": 61762,\n  \"ellipsis\": 61761,\n  \"empty-set\": 63062,\n  \"engine-exclamation\": 62962,\n  \"engine-warning\": 62962,\n  \"engine\": 57710,\n  \"envelope-badge\": 57711,\n  \"envelope-certificate\": 59433,\n  \"envelope-circle-check\": 58600,\n  \"envelope-circle-user\": 59102,\n  \"envelope-circle\": 57612,\n  \"envelope-dot\": 57711,\n  \"envelope-open-dollar\": 63063,\n  \"envelope-open-text\": 63064,\n  \"envelope-open\": 62134,\n  \"envelope-ribbon\": 59433,\n  \"envelope-square\": 61849,\n  \"envelope\": 61664,\n  \"envelopes-bulk\": 63092,\n  \"envelopes\": 57712,\n  \"equals\": 61,\n  \"eraser\": 61741,\n  \"escalator\": 57713,\n  \"ethernet\": 63382,\n  \"eur\": 61779,\n  \"euro-sign\": 61779,\n  \"euro\": 61779,\n  \"eurozone-sign\": 59200,\n  \"excavator\": 58966,\n  \"exchange-alt\": 62306,\n  \"exchange\": 61676,\n  \"exclamation-circle\": 61546,\n  \"exclamation-square\": 62241,\n  \"exclamation-triangle\": 61553,\n  \"exclamation\": 33,\n  \"expand-alt\": 62500,\n  \"expand-arrows-alt\": 62238,\n  \"expand-arrows\": 62237,\n  \"expand-wide\": 62240,\n  \"expand\": 61541,\n  \"exploding-head\": 58110,\n  \"explosion\": 58601,\n  \"external-link-alt\": 62301,\n  \"external-link-square-alt\": 62304,\n  \"external-link-square\": 61772,\n  \"external-link\": 61582,\n  \"eye-closed\": 59451,\n  \"eye-dropper-empty\": 61947,\n  \"eye-dropper-full\": 57714,\n  \"eye-dropper-half\": 57715,\n  \"eye-dropper\": 61947,\n  \"eye-evil\": 63195,\n  \"eye-low-vision\": 62120,\n  \"eye-slash\": 61552,\n  \"eye\": 61550,\n  \"eyedropper\": 61947,\n  \"eyes\": 58215,\n  \"f\": 70,\n  \"face-angry-horns\": 58216,\n  \"face-angry\": 62806,\n  \"face-anguished\": 58217,\n  \"face-anxious-sweat\": 58218,\n  \"face-astonished\": 58219,\n  \"face-awesome\": 58377,\n  \"face-beam-hand-over-mouth\": 58492,\n  \"face-clouds\": 58493,\n  \"face-confounded\": 58220,\n  \"face-confused\": 58221,\n  \"face-cowboy-hat\": 58222,\n  \"face-diagonal-mouth\": 58494,\n  \"face-disappointed\": 58223,\n  \"face-disguise\": 58224,\n  \"face-dizzy\": 62823,\n  \"face-dotted\": 58495,\n  \"face-downcast-sweat\": 58225,\n  \"face-drooling\": 58226,\n  \"face-exhaling\": 58496,\n  \"face-explode\": 58110,\n  \"face-expressionless\": 58227,\n  \"face-eyes-xmarks\": 58228,\n  \"face-fearful\": 58229,\n  \"face-flushed\": 62841,\n  \"face-frown-open\": 62842,\n  \"face-frown-slight\": 58230,\n  \"face-frown\": 61721,\n  \"face-glasses\": 58231,\n  \"face-grimace\": 62847,\n  \"face-grin-beam-sweat\": 62851,\n  \"face-grin-beam\": 62850,\n  \"face-grin-hearts\": 62852,\n  \"face-grin-squint-tears\": 62854,\n  \"face-grin-squint\": 62853,\n  \"face-grin-stars\": 62855,\n  \"face-grin-tears\": 62856,\n  \"face-grin-tongue-squint\": 62858,\n  \"face-grin-tongue-wink\": 62859,\n  \"face-grin-tongue\": 62857,\n  \"face-grin-wide\": 62849,\n  \"face-grin-wink\": 62860,\n  \"face-grin\": 62848,\n  \"face-hand-over-mouth\": 58232,\n  \"face-hand-peeking\": 58497,\n  \"face-hand-yawn\": 58233,\n  \"face-head-bandage\": 58234,\n  \"face-holding-back-tears\": 58498,\n  \"face-hushed\": 58235,\n  \"face-icicles\": 58236,\n  \"face-kiss-beam\": 62871,\n  \"face-kiss-closed-eyes\": 58237,\n  \"face-kiss-wink-heart\": 62872,\n  \"face-kiss\": 62870,\n  \"face-laugh-beam\": 62874,\n  \"face-laugh-squint\": 62875,\n  \"face-laugh-wink\": 62876,\n  \"face-laugh\": 62873,\n  \"face-lying\": 58238,\n  \"face-mask\": 58239,\n  \"face-meh-blank\": 62884,\n  \"face-meh\": 61722,\n  \"face-melting\": 58499,\n  \"face-monocle\": 58240,\n  \"face-nauseated\": 58241,\n  \"face-nose-steam\": 58242,\n  \"face-party\": 58243,\n  \"face-pensive\": 58244,\n  \"face-persevering\": 58245,\n  \"face-pleading\": 58246,\n  \"face-pouting\": 58247,\n  \"face-raised-eyebrow\": 58248,\n  \"face-relieved\": 58249,\n  \"face-rolling-eyes\": 62885,\n  \"face-sad-cry\": 62899,\n  \"face-sad-sweat\": 58250,\n  \"face-sad-tear\": 62900,\n  \"face-saluting\": 58500,\n  \"face-scream\": 58251,\n  \"face-shaking-horizontal\": 59293,\n  \"face-shaking-vertical\": 59294,\n  \"face-shaking\": 59292,\n  \"face-shush\": 58252,\n  \"face-sleeping\": 58253,\n  \"face-sleepy\": 58254,\n  \"face-smile-beam\": 62904,\n  \"face-smile-halo\": 58255,\n  \"face-smile-hearts\": 58256,\n  \"face-smile-horns\": 58257,\n  \"face-smile-plus\": 62905,\n  \"face-smile-relaxed\": 58258,\n  \"face-smile-tear\": 58259,\n  \"face-smile-tongue\": 58260,\n  \"face-smile-upside-down\": 58261,\n  \"face-smile-wink\": 62682,\n  \"face-smile\": 61720,\n  \"face-smiling-hands\": 58262,\n  \"face-smirking\": 58263,\n  \"face-spiral-eyes\": 58501,\n  \"face-sunglasses\": 58264,\n  \"face-surprise\": 62914,\n  \"face-swear\": 58265,\n  \"face-thermometer\": 58266,\n  \"face-thinking\": 58267,\n  \"face-tired\": 62920,\n  \"face-tissue\": 58268,\n  \"face-tongue-money\": 58269,\n  \"face-tongue-sweat\": 58270,\n  \"face-unamused\": 58271,\n  \"face-viewfinder\": 58111,\n  \"face-vomit\": 58272,\n  \"face-weary\": 58273,\n  \"face-woozy\": 58274,\n  \"face-worried\": 58275,\n  \"face-zany\": 58276,\n  \"face-zipper\": 58277,\n  \"falafel\": 58378,\n  \"family-dress\": 58113,\n  \"family-pants\": 58114,\n  \"family\": 58112,\n  \"fan-table\": 57348,\n  \"fan\": 63587,\n  \"farm\": 63588,\n  \"fast-backward\": 61513,\n  \"fast-forward\": 61520,\n  \"faucet-drip\": 57350,\n  \"faucet\": 57349,\n  \"fax\": 61868,\n  \"feather-alt\": 62827,\n  \"feather-pointed\": 62827,\n  \"feather\": 62765,\n  \"feed\": 61598,\n  \"female\": 61826,\n  \"fence\": 58115,\n  \"ferris-wheel\": 57716,\n  \"ferry\": 58602,\n  \"field-hockey-stick-ball\": 62540,\n  \"field-hockey\": 62540,\n  \"fighter-jet\": 61691,\n  \"file-aiff\": 59387,\n  \"file-alt\": 61788,\n  \"file-archive\": 61894,\n  \"file-arrow-down\": 62829,\n  \"file-arrow-up\": 62836,\n  \"file-audio\": 61895,\n  \"file-award\": 62963,\n  \"file-ban\": 59224,\n  \"file-binary\": 57717,\n  \"file-brackets-curly\": 59396,\n  \"file-cad\": 58994,\n  \"file-caret-down\": 58409,\n  \"file-caret-up\": 58410,\n  \"file-certificate\": 62963,\n  \"file-chart-column\": 63065,\n  \"file-chart-line\": 63065,\n  \"file-chart-pie\": 63066,\n  \"file-check\": 62230,\n  \"file-circle-check\": 58784,\n  \"file-circle-exclamation\": 58603,\n  \"file-circle-info\": 58515,\n  \"file-circle-minus\": 58605,\n  \"file-circle-plus\": 58516,\n  \"file-circle-question\": 58607,\n  \"file-circle-xmark\": 58785,\n  \"file-clipboard\": 61674,\n  \"file-code\": 61897,\n  \"file-contract\": 62828,\n  \"file-css\": 59452,\n  \"file-csv\": 63197,\n  \"file-dashed-line\": 63607,\n  \"file-doc\": 58861,\n  \"file-download\": 62829,\n  \"file-edit\": 62236,\n  \"file-eps\": 58948,\n  \"file-excel\": 61891,\n  \"file-exclamation\": 62234,\n  \"file-export\": 62830,\n  \"file-fragment\": 59031,\n  \"file-gif\": 58949,\n  \"file-half-dashed\": 59032,\n  \"file-heart\": 57718,\n  \"file-html\": 59453,\n  \"file-icns\": 59457,\n  \"file-image\": 61893,\n  \"file-import\": 62831,\n  \"file-invoice-dollar\": 62833,\n  \"file-invoice\": 62832,\n  \"file-jpg\": 58950,\n  \"file-js\": 59454,\n  \"file-lines\": 61788,\n  \"file-lock\": 58278,\n  \"file-magnifying-glass\": 63589,\n  \"file-medical-alt\": 62584,\n  \"file-medical\": 62583,\n  \"file-midi\": 59397,\n  \"file-minus\": 62232,\n  \"file-mov\": 58951,\n  \"file-mp3\": 58952,\n  \"file-mp4\": 58953,\n  \"file-music\": 63670,\n  \"file-odf\": 59388,\n  \"file-pdf\": 61889,\n  \"file-pen\": 62236,\n  \"file-plus-minus\": 57719,\n  \"file-plus\": 62233,\n  \"file-png\": 58982,\n  \"file-powerpoint\": 61892,\n  \"file-ppt\": 58954,\n  \"file-prescription\": 62834,\n  \"file-search\": 63589,\n  \"file-shield\": 58608,\n  \"file-signature\": 62835,\n  \"file-slash\": 58279,\n  \"file-spreadsheet\": 63067,\n  \"file-svg\": 58955,\n  \"file-tex\": 59389,\n  \"file-text\": 61788,\n  \"file-times\": 62231,\n  \"file-upload\": 62836,\n  \"file-user\": 63068,\n  \"file-vector\": 58956,\n  \"file-video\": 61896,\n  \"file-wav\": 59390,\n  \"file-waveform\": 62584,\n  \"file-word\": 61890,\n  \"file-xls\": 58957,\n  \"file-xmark\": 62231,\n  \"file-xml\": 58964,\n  \"file-zip\": 58862,\n  \"file-zipper\": 61894,\n  \"file\": 61787,\n  \"files-medical\": 63485,\n  \"files\": 57720,\n  \"fill-drip\": 62838,\n  \"fill\": 62837,\n  \"film-alt\": 61448,\n  \"film-canister\": 63671,\n  \"film-cannister\": 63671,\n  \"film-music\": 59241,\n  \"film-simple\": 61448,\n  \"film-slash\": 57721,\n  \"film-stack\": 59243,\n  \"film\": 61448,\n  \"films\": 57722,\n  \"filter-circle-dollar\": 63074,\n  \"filter-circle-xmark\": 57723,\n  \"filter-list\": 57724,\n  \"filter-slash\": 57725,\n  \"filter\": 61616,\n  \"filters\": 57726,\n  \"fingerprint\": 62839,\n  \"fire-alt\": 63460,\n  \"fire-burner\": 58609,\n  \"fire-extinguisher\": 61748,\n  \"fire-flame-curved\": 63460,\n  \"fire-flame-simple\": 62570,\n  \"fire-flame\": 63199,\n  \"fire-hydrant\": 57727,\n  \"fire-smoke\": 63307,\n  \"fire\": 61549,\n  \"fireplace\": 63386,\n  \"firewall\": 58332,\n  \"first-aid\": 62585,\n  \"fish-bones\": 58116,\n  \"fish-cooked\": 63486,\n  \"fish-fins\": 58610,\n  \"fish\": 62840,\n  \"fishing-rod\": 58280,\n  \"fist-raised\": 63198,\n  \"flag-alt\": 63308,\n  \"flag-checkered\": 61726,\n  \"flag-pennant\": 62550,\n  \"flag-swallowtail\": 63308,\n  \"flag-usa\": 63309,\n  \"flag\": 61476,\n  \"flame\": 63199,\n  \"flashlight\": 63672,\n  \"flask-gear\": 58865,\n  \"flask-poison\": 63200,\n  \"flask-potion\": 63201,\n  \"flask-round-poison\": 63200,\n  \"flask-round-potion\": 63201,\n  \"flask-vial\": 58611,\n  \"flask\": 61635,\n  \"flatbread-stuffed\": 58380,\n  \"flatbread\": 58379,\n  \"floppy-disk-circle-arrow-right\": 57728,\n  \"floppy-disk-circle-xmark\": 57729,\n  \"floppy-disk-pen\": 57730,\n  \"floppy-disk-times\": 57729,\n  \"floppy-disk\": 61639,\n  \"floppy-disks\": 57731,\n  \"florin-sign\": 57732,\n  \"flower-daffodil\": 63488,\n  \"flower-tulip\": 63489,\n  \"flower\": 63487,\n  \"flushed\": 62841,\n  \"flute\": 63673,\n  \"flux-capacitor\": 63674,\n  \"flying-disc\": 58281,\n  \"fog\": 63310,\n  \"folder-arrow-down\": 57427,\n  \"folder-arrow-left\": 59346,\n  \"folder-arrow-right\": 59347,\n  \"folder-arrow-up\": 57428,\n  \"folder-blank\": 61563,\n  \"folder-bookmark\": 57734,\n  \"folder-check\": 58958,\n  \"folder-closed\": 57733,\n  \"folder-cog\": 57735,\n  \"folder-download\": 57427,\n  \"folder-gear\": 57735,\n  \"folder-grid\": 57736,\n  \"folder-heart\": 57737,\n  \"folder-image\": 57738,\n  \"folder-magnifying-glass\": 57739,\n  \"folder-medical\": 57740,\n  \"folder-minus\": 63069,\n  \"folder-music\": 57741,\n  \"folder-open\": 61564,\n  \"folder-plus\": 63070,\n  \"folder-search\": 57739,\n  \"folder-times\": 63071,\n  \"folder-tree\": 63490,\n  \"folder-upload\": 57428,\n  \"folder-user\": 57742,\n  \"folder-xmark\": 63071,\n  \"folder\": 61563,\n  \"folders\": 63072,\n  \"fondue-pot\": 58381,\n  \"font-awesome-flag\": 62132,\n  \"font-awesome-logo-full\": 62132,\n  \"font-awesome\": 62132,\n  \"font-case\": 63590,\n  \"font\": 61489,\n  \"foot-wing\": 59444,\n  \"football-ball\": 62542,\n  \"football-helmet\": 62543,\n  \"football\": 62542,\n  \"fork-knife\": 62182,\n  \"fork\": 62179,\n  \"forklift\": 62586,\n  \"fort\": 58502,\n  \"forward-fast\": 61520,\n  \"forward-step\": 61521,\n  \"forward\": 61518,\n  \"fragile\": 62651,\n  \"frame\": 58517,\n  \"franc-sign\": 57743,\n  \"french-fries\": 63491,\n  \"frog\": 62766,\n  \"frosty-head\": 63387,\n  \"frown-open\": 62842,\n  \"frown\": 61721,\n  \"function\": 63073,\n  \"funnel-dollar\": 63074,\n  \"futbol-ball\": 61923,\n  \"futbol\": 61923,\n  \"g\": 71,\n  \"galaxy\": 57352,\n  \"gallery-thumbnails\": 58282,\n  \"game-board-alt\": 63592,\n  \"game-board-simple\": 63592,\n  \"game-board\": 63591,\n  \"game-console-handheld-crank\": 58809,\n  \"game-console-handheld\": 63675,\n  \"gamepad-alt\": 58786,\n  \"gamepad-modern\": 58786,\n  \"gamepad\": 61723,\n  \"garage-car\": 57354,\n  \"garage-empty\": 59081,\n  \"garage-open\": 57355,\n  \"garage\": 57353,\n  \"garlic\": 58382,\n  \"gas-pump-left\": 59256,\n  \"gas-pump-right\": 59257,\n  \"gas-pump-slash\": 62964,\n  \"gas-pump\": 62767,\n  \"gauge-circle-bolt\": 58518,\n  \"gauge-circle-minus\": 58519,\n  \"gauge-circle-plus\": 58520,\n  \"gauge-high\": 63013,\n  \"gauge-low\": 63015,\n  \"gauge-max\": 63014,\n  \"gauge-med\": 63012,\n  \"gauge-min\": 63016,\n  \"gauge-simple-high\": 63018,\n  \"gauge-simple-low\": 63020,\n  \"gauge-simple-max\": 63019,\n  \"gauge-simple-med\": 63017,\n  \"gauge-simple-min\": 63021,\n  \"gauge-simple\": 63017,\n  \"gauge\": 63012,\n  \"gave-dandy\": 58377,\n  \"gavel\": 61667,\n  \"gbp\": 61780,\n  \"gear-api\": 59556,\n  \"gear-code\": 58856,\n  \"gear-complex-api\": 59557,\n  \"gear-complex-code\": 58859,\n  \"gear-complex\": 58857,\n  \"gear\": 61459,\n  \"gears\": 61573,\n  \"gem\": 62373,\n  \"gemini\": 59465,\n  \"genderless\": 61997,\n  \"ghost\": 63202,\n  \"gif\": 57744,\n  \"gift-card\": 63075,\n  \"gift\": 61547,\n  \"gifts\": 63388,\n  \"gingerbread-man\": 63389,\n  \"glass-champagne\": 63390,\n  \"glass-cheers\": 63391,\n  \"glass-citrus\": 63593,\n  \"glass-empty\": 57745,\n  \"glass-half-empty\": 57746,\n  \"glass-half-full\": 57746,\n  \"glass-half\": 57746,\n  \"glass-martini-alt\": 62843,\n  \"glass-martini\": 61440,\n  \"glass-water-droplet\": 58613,\n  \"glass-water\": 58612,\n  \"glass-whiskey-rocks\": 63393,\n  \"glass-whiskey\": 63392,\n  \"glass\": 63492,\n  \"glasses-alt\": 62965,\n  \"glasses-round\": 62965,\n  \"glasses\": 62768,\n  \"globe-africa\": 62844,\n  \"globe-americas\": 62845,\n  \"globe-asia\": 62846,\n  \"globe-europe\": 63394,\n  \"globe-oceania\": 58491,\n  \"globe-pointer\": 58894,\n  \"globe-snow\": 63395,\n  \"globe-stand\": 62966,\n  \"globe-wifi\": 59013,\n  \"globe-www\": 59558,\n  \"globe\": 61612,\n  \"glove-boxing\": 62520,\n  \"goal-net\": 58283,\n  \"golf-ball-tee\": 62544,\n  \"golf-ball\": 62544,\n  \"golf-club\": 62545,\n  \"golf-flag-hole\": 58284,\n  \"gopuram\": 63076,\n  \"gpu\": 59459,\n  \"graduation-cap\": 61853,\n  \"gramophone\": 63677,\n  \"grapes\": 58118,\n  \"grate-droplet\": 57748,\n  \"grate\": 57747,\n  \"greater-than-equal\": 62770,\n  \"greater-than\": 62,\n  \"grid-2-minus\": 59050,\n  \"grid-2-plus\": 57751,\n  \"grid-2\": 57750,\n  \"grid-3\": 57749,\n  \"grid-4\": 57752,\n  \"grid-5\": 57753,\n  \"grid-dividers\": 58285,\n  \"grid-horizontal\": 62861,\n  \"grid-round-2-minus\": 59051,\n  \"grid-round-2-plus\": 58844,\n  \"grid-round-2\": 58843,\n  \"grid-round-4\": 58845,\n  \"grid-round-5\": 58846,\n  \"grid-round\": 58842,\n  \"grid-vertical\": 62862,\n  \"grid\": 57749,\n  \"grill-fire\": 58788,\n  \"grill-hot\": 58789,\n  \"grill\": 58787,\n  \"grimace\": 62847,\n  \"grin-alt\": 62849,\n  \"grin-beam-sweat\": 62851,\n  \"grin-beam\": 62850,\n  \"grin-hearts\": 62852,\n  \"grin-squint-tears\": 62854,\n  \"grin-squint\": 62853,\n  \"grin-stars\": 62855,\n  \"grin-tears\": 62856,\n  \"grin-tongue-squint\": 62858,\n  \"grin-tongue-wink\": 62859,\n  \"grin-tongue\": 62857,\n  \"grin-wink\": 62860,\n  \"grin\": 62848,\n  \"grip-dots-vertical\": 58385,\n  \"grip-dots\": 58384,\n  \"grip-horizontal\": 62861,\n  \"grip-lines-vertical\": 63397,\n  \"grip-lines\": 63396,\n  \"grip-vertical\": 62862,\n  \"grip\": 62861,\n  \"group-arrows-rotate\": 58614,\n  \"guarani-sign\": 57754,\n  \"guitar-electric\": 63678,\n  \"guitar\": 63398,\n  \"guitars\": 63679,\n  \"gun-slash\": 57756,\n  \"gun-squirt\": 57757,\n  \"gun\": 57755,\n  \"h-square\": 61693,\n  \"h\": 72,\n  \"h1\": 62227,\n  \"h2\": 62228,\n  \"h3\": 62229,\n  \"h4\": 63594,\n  \"h5\": 58386,\n  \"h6\": 58387,\n  \"hamburger\": 63493,\n  \"hammer-brush\": 58912,\n  \"hammer-crash\": 58388,\n  \"hammer-war\": 63204,\n  \"hammer\": 63203,\n  \"hamsa\": 63077,\n  \"hand-back-fist\": 62037,\n  \"hand-back-point-down\": 57758,\n  \"hand-back-point-left\": 57759,\n  \"hand-back-point-ribbon\": 57760,\n  \"hand-back-point-right\": 57761,\n  \"hand-back-point-up\": 57762,\n  \"hand-dots\": 62561,\n  \"hand-fingers-crossed\": 57763,\n  \"hand-fist\": 63198,\n  \"hand-heart\": 62652,\n  \"hand-holding-box\": 62587,\n  \"hand-holding-circle-dollar\": 58913,\n  \"hand-holding-dollar\": 62656,\n  \"hand-holding-droplet\": 62657,\n  \"hand-holding-hand\": 58615,\n  \"hand-holding-heart\": 62654,\n  \"hand-holding-magic\": 63205,\n  \"hand-holding-medical\": 57436,\n  \"hand-holding-seedling\": 62655,\n  \"hand-holding-skull\": 57764,\n  \"hand-holding-star\": 59393,\n  \"hand-holding-usd\": 62656,\n  \"hand-holding-water\": 62657,\n  \"hand-holding\": 62653,\n  \"hand-horns\": 57769,\n  \"hand-lizard\": 62040,\n  \"hand-love\": 57765,\n  \"hand-middle-finger\": 63494,\n  \"hand-paper\": 62038,\n  \"hand-peace\": 62043,\n  \"hand-point-down\": 61607,\n  \"hand-point-left\": 61605,\n  \"hand-point-ribbon\": 57766,\n  \"hand-point-right\": 61604,\n  \"hand-point-up\": 61606,\n  \"hand-pointer\": 62042,\n  \"hand-receiving\": 62588,\n  \"hand-rock\": 62037,\n  \"hand-scissors\": 62039,\n  \"hand-shaka\": 59441,\n  \"hand-sparkles\": 57437,\n  \"hand-spock\": 62041,\n  \"hand-wave\": 57767,\n  \"hand\": 62038,\n  \"handcuffs\": 58616,\n  \"hands-american-sign-language-interpreting\": 62115,\n  \"hands-asl-interpreting\": 62115,\n  \"hands-bound\": 58617,\n  \"hands-bubbles\": 57438,\n  \"hands-clapping\": 57768,\n  \"hands-heart\": 62659,\n  \"hands-helping\": 62660,\n  \"hands-holding-child\": 58618,\n  \"hands-holding-circle\": 58619,\n  \"hands-holding-diamond\": 62588,\n  \"hands-holding-dollar\": 62661,\n  \"hands-holding-heart\": 62659,\n  \"hands-holding\": 62658,\n  \"hands-praying\": 63108,\n  \"hands-usd\": 62661,\n  \"hands-wash\": 57438,\n  \"hands\": 62119,\n  \"handshake-alt-slash\": 57440,\n  \"handshake-alt\": 62133,\n  \"handshake-angle\": 62660,\n  \"handshake-simple-slash\": 57440,\n  \"handshake-simple\": 62133,\n  \"handshake-slash\": 57440,\n  \"handshake\": 62133,\n  \"hanukiah\": 63206,\n  \"hard-drive\": 61600,\n  \"hard-hat\": 63495,\n  \"hard-of-hearing\": 62116,\n  \"hashtag-lock\": 58389,\n  \"hashtag\": 35,\n  \"hat-beach\": 58886,\n  \"hat-chef\": 63595,\n  \"hat-cowboy-side\": 63681,\n  \"hat-cowboy\": 63680,\n  \"hat-hard\": 63495,\n  \"hat-santa\": 63399,\n  \"hat-winter\": 63400,\n  \"hat-witch\": 63207,\n  \"hat-wizard\": 63208,\n  \"haykal\": 63078,\n  \"hdd\": 61600,\n  \"head-side-brain\": 63496,\n  \"head-side-circuit\": 59230,\n  \"head-side-cough-slash\": 57442,\n  \"head-side-cough\": 57441,\n  \"head-side-gear\": 58897,\n  \"head-side-goggles\": 63210,\n  \"head-side-headphones\": 63682,\n  \"head-side-heart\": 57770,\n  \"head-side-mask\": 57443,\n  \"head-side-medical\": 63497,\n  \"head-side-speak\": 59231,\n  \"head-side-virus\": 57444,\n  \"head-side\": 63209,\n  \"head-vr\": 63210,\n  \"header\": 61916,\n  \"heading\": 61916,\n  \"headphones-alt\": 61477,\n  \"headphones-simple\": 61477,\n  \"headphones-slash\": 59260,\n  \"headphones\": 61477,\n  \"headset\": 62864,\n  \"heart-broken\": 63401,\n  \"heart-circle-bolt\": 58620,\n  \"heart-circle-check\": 58621,\n  \"heart-circle-exclamation\": 58622,\n  \"heart-circle-minus\": 58623,\n  \"heart-circle-plus\": 58624,\n  \"heart-circle-xmark\": 58625,\n  \"heart-circle\": 62663,\n  \"heart-crack\": 63401,\n  \"heart-half-alt\": 57772,\n  \"heart-half-stroke\": 57772,\n  \"heart-half\": 57771,\n  \"heart-music-camera-bolt\": 63597,\n  \"heart-pulse\": 61982,\n  \"heart-rate\": 62968,\n  \"heart-slash\": 59278,\n  \"heart-square\": 62664,\n  \"heart\": 61444,\n  \"heartbeat\": 61982,\n  \"hearts\": 59279,\n  \"heat\": 57356,\n  \"helicopter-symbol\": 58626,\n  \"helicopter\": 62771,\n  \"helmet-battle\": 63211,\n  \"helmet-safety\": 63495,\n  \"helmet-un\": 58627,\n  \"heptagon\": 59424,\n  \"hexagon-check\": 58390,\n  \"hexagon-divide\": 57773,\n  \"hexagon-equals\": 59058,\n  \"hexagon-exclamation\": 58391,\n  \"hexagon-image\": 58628,\n  \"hexagon-minus\": 62215,\n  \"hexagon-nodes-bolt\": 59034,\n  \"hexagon-nodes\": 59033,\n  \"hexagon-plus\": 62208,\n  \"hexagon-vertical-nft-slanted\": 58629,\n  \"hexagon-vertical-nft\": 58629,\n  \"hexagon-xmark\": 62190,\n  \"hexagon\": 62226,\n  \"high-definition\": 57774,\n  \"highlighter-line\": 57775,\n  \"highlighter\": 62865,\n  \"hiking\": 63212,\n  \"hill-avalanche\": 58631,\n  \"hill-rockslide\": 58632,\n  \"hippo\": 63213,\n  \"history\": 61914,\n  \"hockey-mask\": 63214,\n  \"hockey-puck\": 62547,\n  \"hockey-stick-puck\": 58286,\n  \"hockey-stick\": 59366,\n  \"hockey-sticks\": 62548,\n  \"holly-berry\": 63402,\n  \"home-alt\": 61461,\n  \"home-blank\": 58503,\n  \"home-heart\": 62665,\n  \"home-lg-alt\": 61461,\n  \"home-lg\": 58287,\n  \"home-user\": 57776,\n  \"home\": 61461,\n  \"honey-pot\": 58392,\n  \"hood-cloak\": 63215,\n  \"horizontal-rule\": 63596,\n  \"horse-head\": 63403,\n  \"horse-saddle\": 63683,\n  \"horse\": 63216,\n  \"horseshoe\": 59418,\n  \"hose-reel\": 58394,\n  \"hose\": 58393,\n  \"hospital-alt\": 61688,\n  \"hospital-symbol\": 62590,\n  \"hospital-user\": 63501,\n  \"hospital-wide\": 61688,\n  \"hospital\": 61688,\n  \"hospitals\": 63502,\n  \"hot-tub-person\": 62867,\n  \"hot-tub\": 62867,\n  \"hotdog\": 63503,\n  \"hotel\": 62868,\n  \"hourglass-1\": 62033,\n  \"hourglass-2\": 62034,\n  \"hourglass-3\": 62035,\n  \"hourglass-clock\": 58395,\n  \"hourglass-empty\": 62036,\n  \"hourglass-end\": 62035,\n  \"hourglass-half\": 62034,\n  \"hourglass-start\": 62033,\n  \"hourglass\": 62036,\n  \"house-blank\": 58503,\n  \"house-building\": 57777,\n  \"house-chimney-blank\": 58288,\n  \"house-chimney-crack\": 63217,\n  \"house-chimney-heart\": 57778,\n  \"house-chimney-medical\": 63474,\n  \"house-chimney-user\": 57445,\n  \"house-chimney-window\": 57357,\n  \"house-chimney\": 58287,\n  \"house-circle-check\": 58633,\n  \"house-circle-exclamation\": 58634,\n  \"house-circle-xmark\": 58635,\n  \"house-crack\": 58289,\n  \"house-damage\": 63217,\n  \"house-day\": 57358,\n  \"house-fire\": 58636,\n  \"house-flag\": 58637,\n  \"house-flood-water-circle-arrow-right\": 58639,\n  \"house-flood-water\": 58638,\n  \"house-flood\": 63311,\n  \"house-heart\": 62665,\n  \"house-laptop\": 57446,\n  \"house-leave\": 57359,\n  \"house-lock\": 58640,\n  \"house-medical-circle-check\": 58641,\n  \"house-medical-circle-exclamation\": 58642,\n  \"house-medical-circle-xmark\": 58643,\n  \"house-medical-flag\": 58644,\n  \"house-medical\": 58290,\n  \"house-night\": 57360,\n  \"house-person-arrive\": 57361,\n  \"house-person-depart\": 57359,\n  \"house-person-leave\": 57359,\n  \"house-person-return\": 57361,\n  \"house-return\": 57361,\n  \"house-signal\": 57362,\n  \"house-tree\": 57779,\n  \"house-tsunami\": 58645,\n  \"house-turret\": 57780,\n  \"house-unlock\": 59082,\n  \"house-user\": 57776,\n  \"house-water\": 63311,\n  \"house-window\": 58291,\n  \"house\": 61461,\n  \"hryvnia-sign\": 63218,\n  \"hryvnia\": 63218,\n  \"humidity\": 63312,\n  \"hundred-points\": 58396,\n  \"hurricane\": 63313,\n  \"hydra\": 59014,\n  \"hyphen\": 45,\n  \"i-cursor\": 62022,\n  \"i\": 73,\n  \"ice-cream\": 63504,\n  \"ice-skate\": 63404,\n  \"icicles\": 63405,\n  \"icons-alt\": 63598,\n  \"icons\": 63597,\n  \"id-badge\": 62145,\n  \"id-card-alt\": 62591,\n  \"id-card-clip\": 62591,\n  \"id-card\": 62146,\n  \"igloo\": 63406,\n  \"ils\": 61963,\n  \"image-broken\": 59562,\n  \"image-circle-arrow-down\": 59244,\n  \"image-circle-check\": 59245,\n  \"image-circle-plus\": 59246,\n  \"image-circle-xmark\": 59247,\n  \"image-landscape\": 57781,\n  \"image-music\": 59248,\n  \"image-polaroid-user\": 57782,\n  \"image-polaroid\": 63684,\n  \"image-portrait\": 62432,\n  \"image-slash\": 57783,\n  \"image-stack\": 59249,\n  \"image-user\": 57784,\n  \"image\": 61502,\n  \"images-user\": 57785,\n  \"images\": 62210,\n  \"inbox-arrow-down\": 62224,\n  \"inbox-arrow-up\": 62225,\n  \"inbox-full\": 57786,\n  \"inbox-in\": 62224,\n  \"inbox-out\": 62225,\n  \"inbox\": 61468,\n  \"inboxes\": 57787,\n  \"indent\": 61500,\n  \"indian-rupee-sign\": 57788,\n  \"indian-rupee\": 57788,\n  \"industry-alt\": 62387,\n  \"industry-windows\": 62387,\n  \"industry\": 62069,\n  \"infinity\": 62772,\n  \"info-circle\": 61530,\n  \"info-square\": 62223,\n  \"info\": 61737,\n  \"inhaler\": 62969,\n  \"input-numeric\": 57789,\n  \"input-password\": 59517,\n  \"input-pipe\": 57790,\n  \"input-text\": 57791,\n  \"inr\": 57788,\n  \"institution\": 61852,\n  \"integral\": 63079,\n  \"interrobang\": 58810,\n  \"intersection\": 63080,\n  \"inventory\": 62592,\n  \"island-tree-palm\": 63505,\n  \"island-tropical\": 63505,\n  \"italic\": 61491,\n  \"j\": 74,\n  \"jack-o-lantern\": 62222,\n  \"jar-wheat\": 58647,\n  \"jar\": 58646,\n  \"jeans-straight\": 59091,\n  \"jeans\": 59090,\n  \"jedi\": 63081,\n  \"jet-fighter-up\": 58648,\n  \"jet-fighter\": 61691,\n  \"joint\": 62869,\n  \"journal-whills\": 63082,\n  \"joystick\": 63685,\n  \"jpy\": 61783,\n  \"jug-bottle\": 58875,\n  \"jug-detergent\": 58649,\n  \"jug\": 63686,\n  \"k\": 75,\n  \"kaaba\": 63083,\n  \"kayak\": 59547,\n  \"kazoo\": 63687,\n  \"kerning\": 63599,\n  \"kettlebell\": 59442,\n  \"key-skeleton-left-right\": 58292,\n  \"key-skeleton\": 63219,\n  \"key\": 61572,\n  \"keyboard-brightness-low\": 57793,\n  \"keyboard-brightness\": 57792,\n  \"keyboard-down\": 57794,\n  \"keyboard-left\": 57795,\n  \"keyboard\": 61724,\n  \"keynote\": 63084,\n  \"khanda\": 63085,\n  \"kidneys\": 62971,\n  \"kip-sign\": 57796,\n  \"kiss-beam\": 62871,\n  \"kiss-wink-heart\": 62872,\n  \"kiss\": 62870,\n  \"kit-medical\": 62585,\n  \"kitchen-set\": 58650,\n  \"kite\": 63220,\n  \"kiwi-bird\": 62773,\n  \"kiwi-fruit\": 58124,\n  \"knife-kitchen\": 63221,\n  \"knife\": 62180,\n  \"krw\": 61785,\n  \"l\": 76,\n  \"label\": 59559,\n  \"lacrosse-stick-ball\": 58294,\n  \"lacrosse-stick\": 58293,\n  \"ladder-water\": 62917,\n  \"lambda\": 63086,\n  \"lamp-desk\": 57364,\n  \"lamp-floor\": 57365,\n  \"lamp-street\": 57797,\n  \"lamp\": 62666,\n  \"land-mine-on\": 58651,\n  \"landmark-alt\": 63314,\n  \"landmark-dome\": 63314,\n  \"landmark-flag\": 58652,\n  \"landmark-magnifying-glass\": 58914,\n  \"landmark\": 63087,\n  \"landscape\": 57781,\n  \"language\": 61867,\n  \"laptop-arrow-down\": 57798,\n  \"laptop-binary\": 58855,\n  \"laptop-code\": 62972,\n  \"laptop-file\": 58653,\n  \"laptop-house\": 57446,\n  \"laptop-medical\": 63506,\n  \"laptop-mobile\": 63610,\n  \"laptop-slash\": 57799,\n  \"laptop\": 61705,\n  \"lari-sign\": 57800,\n  \"lasso-sparkles\": 57801,\n  \"lasso\": 63688,\n  \"laugh-beam\": 62874,\n  \"laugh-squint\": 62875,\n  \"laugh-wink\": 62876,\n  \"laugh\": 62873,\n  \"layer-group-minus\": 62974,\n  \"layer-group-plus\": 62975,\n  \"layer-group\": 62973,\n  \"layer-minus\": 62974,\n  \"layer-plus\": 62975,\n  \"layer\": 59455,\n  \"leaf-heart\": 62667,\n  \"leaf-maple\": 63222,\n  \"leaf-oak\": 63223,\n  \"leaf\": 61548,\n  \"leafy-green\": 58397,\n  \"left-from-bracket\": 58988,\n  \"left-from-dotted-line\": 59074,\n  \"left-from-line\": 62280,\n  \"left-long-to-line\": 58398,\n  \"left-long\": 62218,\n  \"left-right\": 62263,\n  \"left-to-bracket\": 58989,\n  \"left-to-dotted-line\": 59075,\n  \"left-to-line\": 62283,\n  \"left\": 62293,\n  \"legal\": 61667,\n  \"lemon\": 61588,\n  \"leo\": 59466,\n  \"less-than-equal\": 62775,\n  \"less-than\": 60,\n  \"level-down-alt\": 62398,\n  \"level-down\": 61769,\n  \"level-up-alt\": 62399,\n  \"level-up\": 61768,\n  \"libra\": 59467,\n  \"life-ring\": 61901,\n  \"light-ceiling\": 57366,\n  \"light-emergency-on\": 58400,\n  \"light-emergency\": 58399,\n  \"light-switch-off\": 57368,\n  \"light-switch-on\": 57369,\n  \"light-switch\": 57367,\n  \"lightbulb-cfl-on\": 58791,\n  \"lightbulb-cfl\": 58790,\n  \"lightbulb-dollar\": 63088,\n  \"lightbulb-exclamation-on\": 57802,\n  \"lightbulb-exclamation\": 63089,\n  \"lightbulb-gear\": 58877,\n  \"lightbulb-message\": 59015,\n  \"lightbulb-on\": 63090,\n  \"lightbulb-slash\": 63091,\n  \"lightbulb\": 61675,\n  \"lighthouse\": 58898,\n  \"lights-holiday\": 63410,\n  \"line-chart\": 61953,\n  \"line-columns\": 63600,\n  \"line-height\": 63601,\n  \"lines-leaning\": 58654,\n  \"link-broken\": 59458,\n  \"link-horizontal-slash\": 57804,\n  \"link-horizontal\": 57803,\n  \"link-simple-slash\": 57806,\n  \"link-simple\": 57805,\n  \"link-slash\": 61735,\n  \"link\": 61633,\n  \"lips\": 62976,\n  \"lira-sign\": 61845,\n  \"list-1-2\": 61643,\n  \"list-alt\": 61474,\n  \"list-check\": 61614,\n  \"list-dots\": 61642,\n  \"list-dropdown\": 57807,\n  \"list-music\": 63689,\n  \"list-numeric\": 61643,\n  \"list-ol\": 61643,\n  \"list-radio\": 57808,\n  \"list-squares\": 61498,\n  \"list-timeline\": 57809,\n  \"list-tree\": 57810,\n  \"list-ul\": 61642,\n  \"list\": 61498,\n  \"litecoin-sign\": 57811,\n  \"loader\": 57812,\n  \"lobster\": 58401,\n  \"location-arrow-slash\": 59258,\n  \"location-arrow-up\": 58938,\n  \"location-arrow\": 61732,\n  \"location-check\": 62982,\n  \"location-circle\": 62978,\n  \"location-crosshairs-slash\": 62979,\n  \"location-crosshairs\": 62977,\n  \"location-dot-slash\": 62981,\n  \"location-dot\": 62405,\n  \"location-exclamation\": 62984,\n  \"location-minus\": 62985,\n  \"location-pen\": 62983,\n  \"location-pin-lock\": 58655,\n  \"location-pin-slash\": 62988,\n  \"location-pin\": 61505,\n  \"location-plus\": 62986,\n  \"location-question\": 62987,\n  \"location-slash\": 62979,\n  \"location-smile\": 62989,\n  \"location-xmark\": 62990,\n  \"location\": 62977,\n  \"lock-a\": 58402,\n  \"lock-alt\": 62221,\n  \"lock-hashtag\": 58403,\n  \"lock-keyhole-open\": 62402,\n  \"lock-keyhole\": 62221,\n  \"lock-open-alt\": 62402,\n  \"lock-open\": 62401,\n  \"lock\": 61475,\n  \"locust\": 58656,\n  \"lollipop\": 58404,\n  \"lollypop\": 58404,\n  \"long-arrow-alt-down\": 62217,\n  \"long-arrow-alt-left\": 62218,\n  \"long-arrow-alt-right\": 62219,\n  \"long-arrow-alt-up\": 62220,\n  \"long-arrow-down\": 61813,\n  \"long-arrow-left\": 61815,\n  \"long-arrow-right\": 61816,\n  \"long-arrow-up\": 61814,\n  \"loveseat\": 62668,\n  \"low-vision\": 62120,\n  \"luchador-mask\": 62549,\n  \"luchador\": 62549,\n  \"luggage-cart\": 62877,\n  \"lungs-virus\": 57447,\n  \"lungs\": 62980,\n  \"lychee\": 59428,\n  \"m\": 77,\n  \"mace\": 63224,\n  \"magic-wand-sparkles\": 58058,\n  \"magic\": 61648,\n  \"magnet\": 61558,\n  \"magnifying-glass-arrow-right\": 58657,\n  \"magnifying-glass-arrows-rotate\": 58974,\n  \"magnifying-glass-chart\": 58658,\n  \"magnifying-glass-dollar\": 63112,\n  \"magnifying-glass-location\": 63113,\n  \"magnifying-glass-minus\": 61456,\n  \"magnifying-glass-music\": 58975,\n  \"magnifying-glass-play\": 58976,\n  \"magnifying-glass-plus\": 61454,\n  \"magnifying-glass-waveform\": 58977,\n  \"magnifying-glass\": 61442,\n  \"mail-bulk\": 63092,\n  \"mail-forward\": 61540,\n  \"mail-reply-all\": 61730,\n  \"mail-reply\": 62437,\n  \"mailbox-flag-up\": 58811,\n  \"mailbox-open-empty\": 59425,\n  \"mailbox-open-letter\": 59427,\n  \"mailbox\": 63507,\n  \"maki-roll\": 58507,\n  \"makizushi\": 58507,\n  \"malaysian-ringgit-sign\": 59130,\n  \"male\": 61827,\n  \"manat-sign\": 57813,\n  \"mandolin\": 63225,\n  \"mango\": 58127,\n  \"manhole\": 57814,\n  \"map-location-dot\": 62880,\n  \"map-location\": 62879,\n  \"map-marked-alt\": 62880,\n  \"map-marked\": 62879,\n  \"map-marker-alt-slash\": 62981,\n  \"map-marker-alt\": 62405,\n  \"map-marker-check\": 62982,\n  \"map-marker-edit\": 62983,\n  \"map-marker-exclamation\": 62984,\n  \"map-marker-minus\": 62985,\n  \"map-marker-plus\": 62986,\n  \"map-marker-question\": 62987,\n  \"map-marker-slash\": 62988,\n  \"map-marker-smile\": 62989,\n  \"map-marker-times\": 62990,\n  \"map-marker-xmark\": 62990,\n  \"map-marker\": 61505,\n  \"map-pin\": 62070,\n  \"map-signs\": 62071,\n  \"map\": 62073,\n  \"marker\": 62881,\n  \"mars-and-venus-burst\": 58659,\n  \"mars-and-venus\": 61988,\n  \"mars-double\": 61991,\n  \"mars-stroke-h\": 61995,\n  \"mars-stroke-right\": 61995,\n  \"mars-stroke-up\": 61994,\n  \"mars-stroke-v\": 61994,\n  \"mars-stroke\": 61993,\n  \"mars\": 61986,\n  \"martini-glass-citrus\": 62817,\n  \"martini-glass-empty\": 61440,\n  \"martini-glass\": 62843,\n  \"mask-face\": 57815,\n  \"mask-luchador\": 62549,\n  \"mask-snorkel\": 58295,\n  \"mask-ventilator\": 58660,\n  \"mask\": 63226,\n  \"masks-theater\": 63024,\n  \"mattress-pillow\": 58661,\n  \"maximize\": 62238,\n  \"meat\": 63508,\n  \"medal\": 62882,\n  \"medkit\": 61690,\n  \"megaphone\": 63093,\n  \"meh-blank\": 62884,\n  \"meh-rolling-eyes\": 62885,\n  \"meh\": 61722,\n  \"melon-slice\": 58129,\n  \"melon\": 58128,\n  \"memo-circle-check\": 57817,\n  \"memo-circle-info\": 58522,\n  \"memo-pad\": 57818,\n  \"memo\": 57816,\n  \"memory\": 62776,\n  \"menorah\": 63094,\n  \"mercury\": 61987,\n  \"merge\": 58662,\n  \"message-arrow-down\": 57819,\n  \"message-arrow-up-right\": 57821,\n  \"message-arrow-up\": 57820,\n  \"message-bot\": 58296,\n  \"message-captions\": 57822,\n  \"message-check\": 62626,\n  \"message-code\": 57823,\n  \"message-dollar\": 63056,\n  \"message-dot\": 59103,\n  \"message-dots\": 62627,\n  \"message-edit\": 62628,\n  \"message-exclamation\": 62629,\n  \"message-heart\": 58825,\n  \"message-image\": 57824,\n  \"message-lines\": 62630,\n  \"message-medical\": 63476,\n  \"message-middle-top\": 57826,\n  \"message-middle\": 57825,\n  \"message-minus\": 62631,\n  \"message-music\": 63663,\n  \"message-pen\": 62628,\n  \"message-plus\": 62632,\n  \"message-question\": 57827,\n  \"message-quote\": 57828,\n  \"message-slash\": 62633,\n  \"message-smile\": 62634,\n  \"message-sms\": 57829,\n  \"message-text\": 57830,\n  \"message-times\": 62635,\n  \"message-waveform\": 59104,\n  \"message-xmark\": 62635,\n  \"message\": 62074,\n  \"messages-dollar\": 63058,\n  \"messages-question\": 57831,\n  \"messages\": 62646,\n  \"messaging\": 62627,\n  \"meteor\": 63315,\n  \"meter-bolt\": 57833,\n  \"meter-droplet\": 57834,\n  \"meter-fire\": 57835,\n  \"meter\": 57832,\n  \"microchip-ai\": 57836,\n  \"microchip\": 62171,\n  \"microphone-alt-slash\": 62777,\n  \"microphone-alt\": 62409,\n  \"microphone-circle-alt\": 57623,\n  \"microphone-circle-plus\": 59261,\n  \"microphone-circle-xmark\": 59262,\n  \"microphone-circle\": 57622,\n  \"microphone-lines-slash\": 62777,\n  \"microphone-lines\": 62409,\n  \"microphone-signal-meter\": 59232,\n  \"microphone-slash\": 61745,\n  \"microphone-stand\": 63691,\n  \"microphone\": 61744,\n  \"microscope\": 62992,\n  \"microwave\": 57371,\n  \"midi\": 59398,\n  \"mill-sign\": 57837,\n  \"mind-share\": 63095,\n  \"minimize\": 63372,\n  \"minus-circle\": 61526,\n  \"minus-hexagon\": 62215,\n  \"minus-large\": 58372,\n  \"minus-octagon\": 62216,\n  \"minus-square\": 61766,\n  \"minus\": 61544,\n  \"mistletoe\": 63412,\n  \"mitten\": 63413,\n  \"mobile-alt\": 62413,\n  \"mobile-android-alt\": 62415,\n  \"mobile-android\": 62414,\n  \"mobile-arrow-down\": 59211,\n  \"mobile-button\": 61707,\n  \"mobile-iphone\": 57838,\n  \"mobile-notch\": 57838,\n  \"mobile-phone\": 62414,\n  \"mobile-retro\": 58663,\n  \"mobile-rotate-reverse\": 59412,\n  \"mobile-rotate\": 59411,\n  \"mobile-screen-button\": 62413,\n  \"mobile-screen\": 62415,\n  \"mobile-signal-out\": 57840,\n  \"mobile-signal\": 57839,\n  \"mobile-slash\": 59413,\n  \"mobile-vibrate-slash\": 59415,\n  \"mobile-vibrate\": 59414,\n  \"mobile\": 62414,\n  \"money-bill-1-wave\": 62779,\n  \"money-bill-1\": 62417,\n  \"money-bill-alt\": 62417,\n  \"money-bill-simple-wave\": 57842,\n  \"money-bill-simple\": 57841,\n  \"money-bill-transfer\": 58664,\n  \"money-bill-trend-up\": 58665,\n  \"money-bill-wave-alt\": 62779,\n  \"money-bill-wave\": 62778,\n  \"money-bill-wheat\": 58666,\n  \"money-bill\": 61654,\n  \"money-bills-alt\": 57844,\n  \"money-bills-simple\": 57844,\n  \"money-bills\": 57843,\n  \"money-check-alt\": 62781,\n  \"money-check-dollar-pen\": 63603,\n  \"money-check-dollar\": 62781,\n  \"money-check-edit-alt\": 63603,\n  \"money-check-edit\": 63602,\n  \"money-check-pen\": 63602,\n  \"money-check\": 62780,\n  \"money-from-bracket\": 58130,\n  \"money-simple-from-bracket\": 58131,\n  \"monitor-heart-rate\": 62993,\n  \"monitor-waveform\": 62993,\n  \"monkey\": 63227,\n  \"monument\": 62886,\n  \"moon-cloud\": 63316,\n  \"moon-first-quarter-inverse\": 59506,\n  \"moon-first-quarter\": 59504,\n  \"moon-full-inverse\": 59507,\n  \"moon-full\": 59505,\n  \"moon-last-quarter-inverse\": 59504,\n  \"moon-last-quarter\": 59506,\n  \"moon-new-inverse\": 59505,\n  \"moon-new\": 59507,\n  \"moon-over-sun\": 63306,\n  \"moon-star\": 59337,\n  \"moon-stars\": 63317,\n  \"moon-waning-crescent-inverse\": 59511,\n  \"moon-waning-crescent\": 59508,\n  \"moon-waning-gibbous-inverse\": 59510,\n  \"moon-waning-gibbous\": 59509,\n  \"moon-waxing-crescent-inverse\": 59509,\n  \"moon-waxing-crescent\": 59510,\n  \"moon-waxing-gibbous-inverse\": 59508,\n  \"moon-waxing-gibbous\": 59511,\n  \"moon\": 61830,\n  \"moped\": 58297,\n  \"mortar-board\": 61853,\n  \"mortar-pestle\": 62887,\n  \"mosque\": 63096,\n  \"mosquito-net\": 58668,\n  \"mosquito\": 58667,\n  \"motorcycle\": 61980,\n  \"mound\": 58669,\n  \"mountain-city\": 58670,\n  \"mountain-sun\": 58671,\n  \"mountain\": 63228,\n  \"mountains\": 63229,\n  \"mouse-alt\": 63693,\n  \"mouse-field\": 58792,\n  \"mouse-pointer\": 62021,\n  \"mouse\": 63692,\n  \"mp3-player\": 63694,\n  \"mug-hot\": 63414,\n  \"mug-marshmallows\": 63415,\n  \"mug-saucer\": 61684,\n  \"mug-tea-saucer\": 57845,\n  \"mug-tea\": 63605,\n  \"mug\": 63604,\n  \"multiply\": 61453,\n  \"museum\": 61852,\n  \"mushroom\": 58405,\n  \"music-alt-slash\": 63696,\n  \"music-alt\": 63695,\n  \"music-magnifying-glass\": 58978,\n  \"music-note-slash\": 63696,\n  \"music-note\": 63695,\n  \"music-slash\": 63697,\n  \"music\": 61441,\n  \"mustache\": 58812,\n  \"n\": 78,\n  \"naira-sign\": 57846,\n  \"narwhal\": 63230,\n  \"nas\": 59553,\n  \"navicon\": 61641,\n  \"nesting-dolls\": 58298,\n  \"network-wired\": 63231,\n  \"neuter\": 61996,\n  \"newspaper\": 61930,\n  \"nfc-lock\": 57848,\n  \"nfc-magnifying-glass\": 57849,\n  \"nfc-pen\": 57850,\n  \"nfc-signal\": 57851,\n  \"nfc-slash\": 57852,\n  \"nfc-symbol\": 58673,\n  \"nfc-trash\": 57853,\n  \"nfc\": 57847,\n  \"nigiri\": 58506,\n  \"non-binary\": 59399,\n  \"norwegian-krone-sign\": 59112,\n  \"nose\": 58813,\n  \"not-equal\": 62782,\n  \"notdef\": 57854,\n  \"note-medical\": 57856,\n  \"note-sticky\": 62025,\n  \"note\": 57855,\n  \"notebook\": 57857,\n  \"notes-medical\": 62593,\n  \"notes-sticky\": 59225,\n  \"notes\": 57858,\n  \"numpad\": 59340,\n  \"o\": 79,\n  \"oar\": 59524,\n  \"oars\": 59525,\n  \"object-exclude\": 58524,\n  \"object-group\": 62023,\n  \"object-intersect\": 58525,\n  \"object-subtract\": 58526,\n  \"object-ungroup\": 62024,\n  \"object-union\": 58527,\n  \"objects-align-bottom\": 58299,\n  \"objects-align-center-horizontal\": 58300,\n  \"objects-align-center-vertical\": 58301,\n  \"objects-align-left\": 58302,\n  \"objects-align-right\": 58303,\n  \"objects-align-top\": 58304,\n  \"objects-column\": 58305,\n  \"octagon-check\": 58406,\n  \"octagon-divide\": 57859,\n  \"octagon-equals\": 59059,\n  \"octagon-exclamation\": 57860,\n  \"octagon-minus\": 62216,\n  \"octagon-plus\": 62209,\n  \"octagon-xmark\": 62192,\n  \"octagon\": 62214,\n  \"octopus\": 59016,\n  \"oil-can-drip\": 57861,\n  \"oil-can\": 62995,\n  \"oil-temp\": 62996,\n  \"oil-temperature\": 62996,\n  \"oil-well\": 58674,\n  \"olive-branch\": 58135,\n  \"olive\": 58134,\n  \"om\": 63097,\n  \"omega\": 63098,\n  \"onion\": 58407,\n  \"open-captioning\": 59263,\n  \"opossum\": 59516,\n  \"option\": 58136,\n  \"ornament\": 63416,\n  \"otter\": 63232,\n  \"outdent\": 61499,\n  \"outlet\": 57372,\n  \"oven\": 57373,\n  \"overline\": 63606,\n  \"owl\": 59551,\n  \"p\": 80,\n  \"page-break\": 63607,\n  \"page-caret-down\": 58409,\n  \"page-caret-up\": 58410,\n  \"page\": 58408,\n  \"pager\": 63509,\n  \"paint-brush-alt\": 62889,\n  \"paint-brush-fine\": 62889,\n  \"paint-brush\": 61948,\n  \"paint-roller\": 62890,\n  \"paintbrush-alt\": 62889,\n  \"paintbrush-fine-slash\": 59213,\n  \"paintbrush-fine\": 62889,\n  \"paintbrush-pencil\": 57862,\n  \"paintbrush-slash\": 59214,\n  \"paintbrush\": 61948,\n  \"palette-boxes\": 62595,\n  \"palette\": 62783,\n  \"pallet-alt\": 62595,\n  \"pallet-box\": 57864,\n  \"pallet-boxes\": 62595,\n  \"pallet\": 62594,\n  \"pan-food\": 58411,\n  \"pan-frying\": 58412,\n  \"pancakes\": 58413,\n  \"panel-ews\": 58414,\n  \"panel-fire\": 58415,\n  \"panorama\": 57865,\n  \"panties\": 59092,\n  \"pants-straight\": 59094,\n  \"pants\": 59093,\n  \"paper-plane-alt\": 57866,\n  \"paper-plane-top\": 57866,\n  \"paper-plane\": 61912,\n  \"paperclip-vertical\": 58306,\n  \"paperclip\": 61638,\n  \"parachute-box\": 62669,\n  \"paragraph-left\": 63608,\n  \"paragraph-rtl\": 63608,\n  \"paragraph\": 61917,\n  \"parentheses\": 57541,\n  \"parenthesis\": 40,\n  \"parking-circle-slash\": 62998,\n  \"parking-circle\": 62997,\n  \"parking-slash\": 62999,\n  \"parking\": 62784,\n  \"party-back\": 58460,\n  \"party-bell\": 58138,\n  \"party-horn\": 58139,\n  \"passport\": 62891,\n  \"pastafarianism\": 63099,\n  \"paste\": 61674,\n  \"pause-circle\": 62091,\n  \"pause\": 61516,\n  \"paw-alt\": 63233,\n  \"paw-claws\": 63234,\n  \"paw-simple\": 63233,\n  \"paw\": 61872,\n  \"peace\": 63100,\n  \"peach\": 57867,\n  \"peanut\": 58416,\n  \"peanuts\": 58417,\n  \"peapod\": 58140,\n  \"pear\": 57868,\n  \"pedestal\": 57869,\n  \"pegasus\": 63235,\n  \"pen-alt-slash\": 57871,\n  \"pen-alt\": 62213,\n  \"pen-circle\": 57870,\n  \"pen-clip-slash\": 57871,\n  \"pen-clip\": 62213,\n  \"pen-fancy-slash\": 57872,\n  \"pen-fancy\": 62892,\n  \"pen-field\": 57873,\n  \"pen-line\": 57874,\n  \"pen-nib-slash\": 58529,\n  \"pen-nib\": 62893,\n  \"pen-paintbrush\": 63000,\n  \"pen-ruler\": 62894,\n  \"pen-slash\": 57875,\n  \"pen-square\": 61771,\n  \"pen-swirl\": 57876,\n  \"pen-to-square\": 61508,\n  \"pen\": 62212,\n  \"pencil-alt\": 62211,\n  \"pencil-line\": 59215,\n  \"pencil-mechanical\": 58826,\n  \"pencil-paintbrush\": 63000,\n  \"pencil-ruler\": 62894,\n  \"pencil-slash\": 57877,\n  \"pencil-square\": 61771,\n  \"pencil\": 62211,\n  \"pennant\": 62550,\n  \"pentagon\": 59280,\n  \"people-arrows-left-right\": 57448,\n  \"people-arrows\": 57448,\n  \"people-carry-box\": 62670,\n  \"people-carry\": 62670,\n  \"people-dress-simple\": 57880,\n  \"people-dress\": 57879,\n  \"people-group\": 58675,\n  \"people-line\": 58676,\n  \"people-pants-simple\": 57882,\n  \"people-pants\": 57881,\n  \"people-pulling\": 58677,\n  \"people-robbery\": 58678,\n  \"people-roof\": 58679,\n  \"people-simple\": 57883,\n  \"people\": 57878,\n  \"pepper-hot\": 63510,\n  \"pepper\": 58418,\n  \"percent\": 37,\n  \"percentage\": 37,\n  \"period\": 46,\n  \"person-arms-raised\": 59267,\n  \"person-arrow-down-to-line\": 58680,\n  \"person-arrow-up-from-line\": 58681,\n  \"person-basketball\": 59268,\n  \"person-biking-mountain\": 63563,\n  \"person-biking\": 63562,\n  \"person-booth\": 63318,\n  \"person-breastfeeding\": 58682,\n  \"person-burst\": 58683,\n  \"person-cane\": 58684,\n  \"person-carry-box\": 62671,\n  \"person-carry-empty\": 59269,\n  \"person-carry\": 62671,\n  \"person-chalkboard\": 58685,\n  \"person-circle-check\": 58686,\n  \"person-circle-exclamation\": 58687,\n  \"person-circle-minus\": 58688,\n  \"person-circle-plus\": 58689,\n  \"person-circle-question\": 58690,\n  \"person-circle-xmark\": 58691,\n  \"person-digging\": 63582,\n  \"person-dolly-empty\": 62673,\n  \"person-dolly\": 62672,\n  \"person-dots-from-line\": 62576,\n  \"person-dress-burst\": 58692,\n  \"person-dress-fairy\": 58887,\n  \"person-dress-simple\": 57884,\n  \"person-dress\": 61826,\n  \"person-drowning\": 58693,\n  \"person-fairy\": 58888,\n  \"person-falling-burst\": 58695,\n  \"person-falling\": 58694,\n  \"person-from-portal\": 57379,\n  \"person-golfing\": 59270,\n  \"person-half-dress\": 58696,\n  \"person-harassing\": 58697,\n  \"person-hiking\": 63212,\n  \"person-limbs-wide\": 59271,\n  \"person-meditating\": 59361,\n  \"person-military-pointing\": 58698,\n  \"person-military-rifle\": 58699,\n  \"person-military-to-person\": 58700,\n  \"person-pinball\": 57885,\n  \"person-praying\": 63107,\n  \"person-pregnant\": 58142,\n  \"person-rays\": 58701,\n  \"person-rifle\": 58702,\n  \"person-running-fast\": 58879,\n  \"person-running\": 63244,\n  \"person-seat-reclined\": 57887,\n  \"person-seat-window\": 59272,\n  \"person-seat\": 57886,\n  \"person-shelter\": 58703,\n  \"person-sign\": 63319,\n  \"person-simple\": 57888,\n  \"person-skating\": 63429,\n  \"person-ski-jumping\": 63431,\n  \"person-ski-lift\": 63432,\n  \"person-skiing-nordic\": 63434,\n  \"person-skiing\": 63433,\n  \"person-sledding\": 63435,\n  \"person-snowboarding\": 63438,\n  \"person-snowmobiling\": 63441,\n  \"person-soccer\": 59273,\n  \"person-swimming-pool\": 59274,\n  \"person-swimming-water\": 59275,\n  \"person-swimming\": 62916,\n  \"person-through-window\": 58793,\n  \"person-to-door\": 58419,\n  \"person-to-portal\": 57378,\n  \"person-walking-arrow-loop-left\": 58705,\n  \"person-walking-arrow-right\": 58706,\n  \"person-walking-dashed-line-arrow-right\": 58707,\n  \"person-walking-luggage\": 58708,\n  \"person-walking-with-cane\": 62109,\n  \"person-walking\": 62804,\n  \"person-water-arms-raised\": 59276,\n  \"person-waving\": 59277,\n  \"person\": 61827,\n  \"peruvian-soles-sign\": 59141,\n  \"peseta-sign\": 57889,\n  \"peso-sign\": 57890,\n  \"phone-alt\": 63609,\n  \"phone-arrow-down-left\": 57891,\n  \"phone-arrow-down\": 57891,\n  \"phone-arrow-right\": 58814,\n  \"phone-arrow-up-right\": 57892,\n  \"phone-arrow-up\": 57892,\n  \"phone-circle-alt\": 57628,\n  \"phone-circle-down\": 57629,\n  \"phone-circle\": 57627,\n  \"phone-connection\": 59105,\n  \"phone-flip\": 63609,\n  \"phone-hangup\": 57893,\n  \"phone-incoming\": 57891,\n  \"phone-intercom\": 58420,\n  \"phone-laptop\": 63610,\n  \"phone-missed\": 57894,\n  \"phone-office\": 63101,\n  \"phone-outgoing\": 57892,\n  \"phone-plus\": 62674,\n  \"phone-rotary\": 63699,\n  \"phone-slash\": 62429,\n  \"phone-square-alt\": 63611,\n  \"phone-square-down\": 57978,\n  \"phone-square\": 61592,\n  \"phone-volume\": 62112,\n  \"phone-waveform\": 59106,\n  \"phone-xmark\": 57895,\n  \"phone\": 61589,\n  \"photo-film-music\": 57896,\n  \"photo-film\": 63612,\n  \"photo-video\": 63612,\n  \"pi\": 63102,\n  \"piano-keyboard\": 63701,\n  \"piano\": 63700,\n  \"pickaxe\": 58815,\n  \"pickleball\": 58421,\n  \"picture-in-picture\": 59403,\n  \"pie-chart\": 61952,\n  \"pie\": 63237,\n  \"pig\": 63238,\n  \"piggy-bank\": 62675,\n  \"pills\": 62596,\n  \"pinata\": 58307,\n  \"pinball\": 57897,\n  \"pineapple\": 58143,\n  \"ping-pong-paddle-ball\": 62557,\n  \"pipe-circle-check\": 58422,\n  \"pipe-collar\": 58423,\n  \"pipe-section\": 58424,\n  \"pipe-smoking\": 58308,\n  \"pipe-valve\": 58425,\n  \"pipe\": 124,\n  \"pisces\": 59468,\n  \"pizza-slice\": 63512,\n  \"pizza\": 63511,\n  \"place-of-worship\": 63103,\n  \"plane-alt\": 62430,\n  \"plane-arrival\": 62895,\n  \"plane-circle-check\": 58709,\n  \"plane-circle-exclamation\": 58710,\n  \"plane-circle-xmark\": 58711,\n  \"plane-departure\": 62896,\n  \"plane-engines\": 62430,\n  \"plane-flying\": 59323,\n  \"plane-landing-gear\": 59324,\n  \"plane-lock\": 58712,\n  \"plane-prop\": 57899,\n  \"plane-slash\": 57449,\n  \"plane-tail\": 57900,\n  \"plane-up-slash\": 57902,\n  \"plane-up\": 57901,\n  \"plane\": 61554,\n  \"planet-moon\": 57375,\n  \"planet-ringed\": 57376,\n  \"plant-wilt\": 58794,\n  \"plate-utensils\": 58427,\n  \"plate-wheat\": 58714,\n  \"play-circle\": 61764,\n  \"play-flip\": 59264,\n  \"play-pause\": 57903,\n  \"play\": 61515,\n  \"plug-circle-bolt\": 58715,\n  \"plug-circle-check\": 58716,\n  \"plug-circle-exclamation\": 58717,\n  \"plug-circle-minus\": 58718,\n  \"plug-circle-plus\": 58719,\n  \"plug-circle-xmark\": 58720,\n  \"plug\": 61926,\n  \"plus-circle\": 61525,\n  \"plus-hexagon\": 62208,\n  \"plus-large\": 58782,\n  \"plus-minus\": 58428,\n  \"plus-octagon\": 62209,\n  \"plus-square\": 61694,\n  \"plus\": 43,\n  \"podcast\": 62158,\n  \"podium-star\": 63320,\n  \"podium\": 63104,\n  \"poker-chip\": 59554,\n  \"police-box\": 57377,\n  \"polish-zloty-sign\": 59147,\n  \"poll-h\": 63106,\n  \"poll-people\": 63321,\n  \"poll\": 63105,\n  \"pompebled\": 58429,\n  \"poo-bolt\": 63322,\n  \"poo-storm\": 63322,\n  \"poo\": 62206,\n  \"pool-8-ball\": 58309,\n  \"poop\": 63001,\n  \"popcorn\": 63513,\n  \"popsicle\": 58430,\n  \"portal-enter\": 57378,\n  \"portal-exit\": 57379,\n  \"portrait\": 62432,\n  \"possum\": 59516,\n  \"postage-stamp\": 59107,\n  \"pot-food\": 58431,\n  \"potato\": 58432,\n  \"pound-sign\": 61780,\n  \"power-off\": 61457,\n  \"pray\": 63107,\n  \"praying-hands\": 63108,\n  \"prescription-bottle-alt\": 62598,\n  \"prescription-bottle-medical\": 62598,\n  \"prescription-bottle-pill\": 58816,\n  \"prescription-bottle\": 62597,\n  \"prescription\": 62897,\n  \"presentation-screen\": 63109,\n  \"presentation\": 63109,\n  \"pretzel\": 58433,\n  \"print-magnifying-glass\": 63514,\n  \"print-search\": 63514,\n  \"print-slash\": 63110,\n  \"print\": 61487,\n  \"pro\": 57909,\n  \"procedures\": 62599,\n  \"project-diagram\": 62786,\n  \"projector\": 63702,\n  \"pronoun\": 59041,\n  \"pump-impeller\": 59445,\n  \"pump-medical\": 57450,\n  \"pump-soap\": 57451,\n  \"pump\": 58434,\n  \"pumpkin\": 63239,\n  \"puzzle-piece-alt\": 57905,\n  \"puzzle-piece-simple\": 57905,\n  \"puzzle-piece\": 61742,\n  \"puzzle\": 58435,\n  \"q\": 81,\n  \"qrcode-read\": 59289,\n  \"qrcode\": 61481,\n  \"question-circle\": 61529,\n  \"question-square\": 62205,\n  \"question\": 63,\n  \"quidditch-broom-ball\": 62552,\n  \"quidditch\": 62552,\n  \"quote-left-alt\": 61709,\n  \"quote-left\": 61709,\n  \"quote-right-alt\": 61710,\n  \"quote-right\": 61710,\n  \"quotes\": 57908,\n  \"quran\": 63111,\n  \"r\": 82,\n  \"rabbit-fast\": 63241,\n  \"rabbit-running\": 63241,\n  \"rabbit\": 63240,\n  \"raccoon\": 58899,\n  \"racquet\": 62554,\n  \"radar\": 57380,\n  \"radiation-alt\": 63418,\n  \"radiation\": 63417,\n  \"radio-alt\": 63704,\n  \"radio-tuner\": 63704,\n  \"radio\": 63703,\n  \"rainbow-half\": 59338,\n  \"rainbow\": 63323,\n  \"raindrops\": 63324,\n  \"ram\": 63242,\n  \"ramp-loading\": 62676,\n  \"random\": 61556,\n  \"ranking-star\": 58721,\n  \"raygun\": 57381,\n  \"receipt\": 62787,\n  \"record-vinyl\": 63705,\n  \"rectangle-4k\": 59250,\n  \"rectangle-ad\": 63041,\n  \"rectangle-api\": 59552,\n  \"rectangle-barcode\": 62563,\n  \"rectangle-beta\": 59400,\n  \"rectangle-code\": 58146,\n  \"rectangle-hd\": 57774,\n  \"rectangle-hdr\": 59251,\n  \"rectangle-high-dynamic-range\": 59251,\n  \"rectangle-history-circle-plus\": 58531,\n  \"rectangle-history-circle-user\": 58532,\n  \"rectangle-history\": 58530,\n  \"rectangle-irc\": 59500,\n  \"rectangle-landscape\": 62202,\n  \"rectangle-list\": 61474,\n  \"rectangle-minus\": 59060,\n  \"rectangle-n-a\": 59560,\n  \"rectangle-new\": 59514,\n  \"rectangle-plus\": 59061,\n  \"rectangle-portrait\": 62203,\n  \"rectangle-pro\": 57909,\n  \"rectangle-sd\": 57994,\n  \"rectangle-tall\": 59281,\n  \"rectangle-terminal\": 57910,\n  \"rectangle-times\": 62480,\n  \"rectangle-vertical-history\": 57911,\n  \"rectangle-vertical\": 62203,\n  \"rectangle-video-on-demand\": 59252,\n  \"rectangle-wide\": 62204,\n  \"rectangle-xmark\": 62480,\n  \"rectangle\": 62202,\n  \"rectangles-mixed\": 58147,\n  \"recycle\": 61880,\n  \"redo-alt\": 62201,\n  \"redo\": 61470,\n  \"reel\": 57912,\n  \"reflect-both\": 58991,\n  \"reflect-horizontal\": 58980,\n  \"reflect-vertical\": 58981,\n  \"refresh\": 61473,\n  \"refrigerator\": 57382,\n  \"registered\": 62045,\n  \"remote\": 59561,\n  \"remove-format\": 63613,\n  \"remove\": 61453,\n  \"renminbi-sign\": 59196,\n  \"reorder\": 62800,\n  \"repeat-1-alt\": 62310,\n  \"repeat-1\": 62309,\n  \"repeat-alt\": 62308,\n  \"repeat\": 62307,\n  \"reply-all\": 61730,\n  \"reply-clock\": 57913,\n  \"reply-time\": 57913,\n  \"reply\": 62437,\n  \"republican\": 63326,\n  \"restroom-simple\": 57914,\n  \"restroom\": 63421,\n  \"retweet-alt\": 62305,\n  \"retweet\": 61561,\n  \"rhombus\": 57915,\n  \"ribbon\": 62678,\n  \"right-from-bracket\": 62197,\n  \"right-from-dotted-line\": 59076,\n  \"right-from-line\": 62279,\n  \"right-left-large\": 58849,\n  \"right-left\": 62306,\n  \"right-long-to-line\": 58436,\n  \"right-long\": 62219,\n  \"right-to-bracket\": 62198,\n  \"right-to-dotted-line\": 59077,\n  \"right-to-line\": 62284,\n  \"right\": 62294,\n  \"ring-diamond\": 58795,\n  \"ring\": 63243,\n  \"rings-wedding\": 63515,\n  \"rmb\": 61783,\n  \"road-barrier\": 58722,\n  \"road-bridge\": 58723,\n  \"road-circle-check\": 58724,\n  \"road-circle-exclamation\": 58725,\n  \"road-circle-xmark\": 58726,\n  \"road-lock\": 58727,\n  \"road-spikes\": 58728,\n  \"road\": 61464,\n  \"robot-astromech\": 58066,\n  \"robot\": 62788,\n  \"rocket-launch\": 57383,\n  \"rocket-vertical\": 59325,\n  \"rocket\": 61749,\n  \"rod-asclepius\": 58745,\n  \"rod-snake\": 58745,\n  \"roller-coaster\": 58148,\n  \"rotate-back\": 62186,\n  \"rotate-backward\": 62186,\n  \"rotate-exclamation\": 57916,\n  \"rotate-forward\": 62201,\n  \"rotate-left\": 62186,\n  \"rotate-reverse\": 58929,\n  \"rotate-right\": 62201,\n  \"rotate\": 62193,\n  \"rouble\": 61784,\n  \"route-highway\": 63002,\n  \"route-interstate\": 63003,\n  \"route\": 62679,\n  \"router\": 63706,\n  \"rows-3\": 59531,\n  \"rows\": 58002,\n  \"rss-square\": 61763,\n  \"rss\": 61598,\n  \"rub\": 61784,\n  \"ruble-sign\": 61784,\n  \"ruble\": 61784,\n  \"rug\": 58729,\n  \"rugby-ball\": 58310,\n  \"ruler-combined\": 62790,\n  \"ruler-horizontal\": 62791,\n  \"ruler-triangle\": 63004,\n  \"ruler-vertical\": 62792,\n  \"ruler\": 62789,\n  \"running\": 63244,\n  \"rupee-sign\": 61782,\n  \"rupee\": 61782,\n  \"rupiah-sign\": 57917,\n  \"rv\": 63422,\n  \"s\": 83,\n  \"sack-dollar\": 63517,\n  \"sack-xmark\": 58730,\n  \"sack\": 63516,\n  \"sad-cry\": 62899,\n  \"sad-tear\": 62900,\n  \"sagittarius\": 59469,\n  \"sailboat\": 58437,\n  \"salad\": 63518,\n  \"salt-shaker\": 58438,\n  \"sandwich\": 63519,\n  \"satellite-dish\": 63424,\n  \"satellite\": 63423,\n  \"sausage\": 63520,\n  \"save-circle-arrow-right\": 57728,\n  \"save-circle-xmark\": 57729,\n  \"save-times\": 57729,\n  \"save\": 61639,\n  \"sax-hot\": 63707,\n  \"saxophone-fire\": 63707,\n  \"saxophone\": 63708,\n  \"scale-balanced\": 62030,\n  \"scale-unbalanced-flip\": 62742,\n  \"scale-unbalanced\": 62741,\n  \"scalpel-line-dashed\": 63006,\n  \"scalpel-path\": 63006,\n  \"scalpel\": 63005,\n  \"scanner-gun\": 62600,\n  \"scanner-image\": 63731,\n  \"scanner-keyboard\": 62601,\n  \"scanner-touchscreen\": 62602,\n  \"scanner\": 62600,\n  \"scarecrow\": 63245,\n  \"scarf\": 63425,\n  \"school-circle-check\": 58731,\n  \"school-circle-exclamation\": 58732,\n  \"school-circle-xmark\": 58733,\n  \"school-flag\": 58734,\n  \"school-lock\": 58735,\n  \"school-unlock\": 59083,\n  \"school\": 62793,\n  \"scissors\": 61636,\n  \"scooter\": 59331,\n  \"scorpio\": 59470,\n  \"screen-users\": 63037,\n  \"screencast\": 57918,\n  \"screenshot\": 57562,\n  \"screwdriver-wrench\": 63449,\n  \"screwdriver\": 62794,\n  \"scribble\": 57919,\n  \"scroll-old\": 63247,\n  \"scroll-ribbon\": 62954,\n  \"scroll-torah\": 63136,\n  \"scroll\": 63246,\n  \"scrubber\": 62200,\n  \"scythe\": 63248,\n  \"sd-card\": 63426,\n  \"sd-cards\": 57920,\n  \"seal-exclamation\": 57922,\n  \"seal-question\": 57923,\n  \"seal\": 57921,\n  \"search-dollar\": 63112,\n  \"search-location\": 63113,\n  \"search-minus\": 61456,\n  \"search-plus\": 61454,\n  \"search\": 61442,\n  \"seat-airline-window\": 59326,\n  \"seat-airline\": 57924,\n  \"seat\": 59236,\n  \"seats\": 59237,\n  \"section\": 58439,\n  \"seedling\": 62680,\n  \"semicolon\": 59,\n  \"send-back\": 63614,\n  \"send-backward\": 63615,\n  \"send\": 57866,\n  \"sensor-alert\": 57385,\n  \"sensor-cloud\": 57388,\n  \"sensor-fire\": 57386,\n  \"sensor-on\": 57387,\n  \"sensor-smoke\": 57388,\n  \"sensor-triangle-exclamation\": 57385,\n  \"sensor\": 57384,\n  \"septagon\": 59424,\n  \"server\": 62003,\n  \"shapes\": 63007,\n  \"share-all\": 62311,\n  \"share-alt-square\": 61921,\n  \"share-alt\": 61920,\n  \"share-from-square\": 61773,\n  \"share-nodes\": 61920,\n  \"share-square\": 61773,\n  \"share\": 61540,\n  \"sheep\": 63249,\n  \"sheet-plastic\": 58737,\n  \"shekel-sign\": 61963,\n  \"shekel\": 61963,\n  \"shelves-empty\": 57926,\n  \"shelves\": 62592,\n  \"sheqel-sign\": 61963,\n  \"sheqel\": 61963,\n  \"shield-alt\": 62445,\n  \"shield-blank\": 61746,\n  \"shield-cat\": 58738,\n  \"shield-check\": 62199,\n  \"shield-cross\": 63250,\n  \"shield-dog\": 58739,\n  \"shield-exclamation\": 57927,\n  \"shield-halved\": 62445,\n  \"shield-heart\": 58740,\n  \"shield-keyhole\": 57928,\n  \"shield-minus\": 57929,\n  \"shield-plus\": 57930,\n  \"shield-quartered\": 58741,\n  \"shield-slash\": 57931,\n  \"shield-times\": 57932,\n  \"shield-user\": 59401,\n  \"shield-virus\": 57452,\n  \"shield-xmark\": 57932,\n  \"shield\": 61746,\n  \"ship-large\": 59408,\n  \"ship\": 61978,\n  \"shipping-fast\": 62603,\n  \"shipping-timed\": 62604,\n  \"shirt-jersey\": 59095,\n  \"shirt-long-sleeve\": 58311,\n  \"shirt-running\": 58312,\n  \"shirt-tank-top\": 58313,\n  \"shirt\": 62803,\n  \"shish-kebab\": 63521,\n  \"shoe-prints\": 62795,\n  \"shoe\": 59096,\n  \"shop-24\": 59290,\n  \"shop-lock\": 58533,\n  \"shop-slash\": 57456,\n  \"shop\": 62799,\n  \"shopping-bag\": 62096,\n  \"shopping-basket-alt\": 57519,\n  \"shopping-basket\": 62097,\n  \"shopping-cart\": 61562,\n  \"shortcake\": 58341,\n  \"shorts\": 59097,\n  \"shovel-snow\": 63427,\n  \"shovel\": 63251,\n  \"shower-alt\": 57933,\n  \"shower-down\": 57933,\n  \"shower\": 62156,\n  \"shredder\": 63114,\n  \"shrimp\": 58440,\n  \"shuffle\": 61556,\n  \"shutters\": 58441,\n  \"shuttle-space-vertical\": 59327,\n  \"shuttle-space\": 61847,\n  \"shuttle-van\": 62902,\n  \"shuttlecock\": 62555,\n  \"sickle\": 63522,\n  \"sidebar-flip\": 57935,\n  \"sidebar\": 57934,\n  \"sigma\": 63115,\n  \"sign-hanging\": 62681,\n  \"sign-in-alt\": 62198,\n  \"sign-in\": 61584,\n  \"sign-language\": 62119,\n  \"sign-out-alt\": 62197,\n  \"sign-out\": 61579,\n  \"sign-post\": 58916,\n  \"sign-posts-wrench\": 58918,\n  \"sign-posts\": 58917,\n  \"sign\": 62681,\n  \"signal-1\": 63116,\n  \"signal-2\": 63117,\n  \"signal-3\": 63118,\n  \"signal-4\": 63119,\n  \"signal-5\": 61458,\n  \"signal-alt-1\": 63121,\n  \"signal-alt-2\": 63122,\n  \"signal-alt-3\": 63123,\n  \"signal-alt-4\": 63120,\n  \"signal-alt-slash\": 63124,\n  \"signal-alt\": 63120,\n  \"signal-bars-fair\": 63122,\n  \"signal-bars-good\": 63123,\n  \"signal-bars-slash\": 63124,\n  \"signal-bars-strong\": 63120,\n  \"signal-bars-weak\": 63121,\n  \"signal-bars\": 63120,\n  \"signal-fair\": 63117,\n  \"signal-good\": 63118,\n  \"signal-perfect\": 61458,\n  \"signal-slash\": 63125,\n  \"signal-stream-slash\": 57936,\n  \"signal-stream\": 63709,\n  \"signal-strong\": 63119,\n  \"signal-weak\": 63116,\n  \"signal\": 61458,\n  \"signapore-dollar-sign\": 59182,\n  \"signature-lock\": 58314,\n  \"signature-slash\": 58315,\n  \"signature\": 62903,\n  \"signing\": 62119,\n  \"signs-post\": 62071,\n  \"sim-card\": 63428,\n  \"sim-cards\": 57937,\n  \"single-quote-left\": 59419,\n  \"single-quote-right\": 59420,\n  \"sink\": 57453,\n  \"siren-on\": 57390,\n  \"siren\": 57389,\n  \"sitemap\": 61672,\n  \"skating\": 63429,\n  \"skeleton-ribs\": 58827,\n  \"skeleton\": 63008,\n  \"ski-boot-ski\": 58317,\n  \"ski-boot\": 58316,\n  \"ski-jump\": 63431,\n  \"ski-lift\": 63432,\n  \"skiing-nordic\": 63434,\n  \"skiing\": 63433,\n  \"skull-cow\": 63710,\n  \"skull-crossbones\": 63252,\n  \"skull\": 62796,\n  \"slash-back\": 92,\n  \"slash-forward\": 47,\n  \"slash\": 63253,\n  \"sledding\": 63435,\n  \"sleigh\": 63436,\n  \"slider-circle\": 59216,\n  \"slider\": 57938,\n  \"sliders-h-square\": 62448,\n  \"sliders-h\": 61918,\n  \"sliders-simple\": 57939,\n  \"sliders-up\": 62449,\n  \"sliders-v-square\": 62450,\n  \"sliders-v\": 62449,\n  \"sliders\": 61918,\n  \"slot-machine\": 58318,\n  \"smile-beam\": 62904,\n  \"smile-plus\": 62905,\n  \"smile-wink\": 62682,\n  \"smile\": 61720,\n  \"smog\": 63327,\n  \"smoke\": 63328,\n  \"smoking-ban\": 62797,\n  \"smoking\": 62605,\n  \"sms\": 63437,\n  \"snake\": 63254,\n  \"sneaker-running\": 59417,\n  \"sneaker\": 59098,\n  \"snooze\": 63616,\n  \"snow-blowing\": 63329,\n  \"snowboarding\": 63438,\n  \"snowflake-droplets\": 58817,\n  \"snowflake\": 62172,\n  \"snowflakes\": 63439,\n  \"snowman-head\": 63387,\n  \"snowman\": 63440,\n  \"snowmobile-blank\": 59332,\n  \"snowmobile\": 63441,\n  \"snowplow\": 63442,\n  \"soap\": 57454,\n  \"soccer-ball\": 61923,\n  \"socks\": 63126,\n  \"soft-serve\": 58368,\n  \"solar-panel\": 62906,\n  \"solar-system\": 57391,\n  \"sort-alpha-asc\": 61789,\n  \"sort-alpha-desc\": 63617,\n  \"sort-alpha-down-alt\": 63617,\n  \"sort-alpha-down\": 61789,\n  \"sort-alpha-up-alt\": 63618,\n  \"sort-alpha-up\": 61790,\n  \"sort-alt\": 63619,\n  \"sort-amount-asc\": 61792,\n  \"sort-amount-desc\": 63620,\n  \"sort-amount-down-alt\": 63620,\n  \"sort-amount-down\": 61792,\n  \"sort-amount-up-alt\": 63621,\n  \"sort-amount-up\": 61793,\n  \"sort-asc\": 61662,\n  \"sort-circle-down\": 57393,\n  \"sort-circle-up\": 57394,\n  \"sort-circle\": 57392,\n  \"sort-desc\": 61661,\n  \"sort-down\": 61661,\n  \"sort-numeric-asc\": 61794,\n  \"sort-numeric-desc\": 63622,\n  \"sort-numeric-down-alt\": 63622,\n  \"sort-numeric-down\": 61794,\n  \"sort-numeric-up-alt\": 63623,\n  \"sort-numeric-up\": 61795,\n  \"sort-shapes-down-alt\": 63625,\n  \"sort-shapes-down\": 63624,\n  \"sort-shapes-up-alt\": 63627,\n  \"sort-shapes-up\": 63626,\n  \"sort-size-down-alt\": 63629,\n  \"sort-size-down\": 63628,\n  \"sort-size-up-alt\": 63631,\n  \"sort-size-up\": 63630,\n  \"sort-up-down\": 57497,\n  \"sort-up\": 61662,\n  \"sort\": 61660,\n  \"soup\": 63523,\n  \"spa\": 62907,\n  \"space-shuttle\": 61847,\n  \"space-station-moon-alt\": 57396,\n  \"space-station-moon-construction\": 57396,\n  \"space-station-moon\": 57395,\n  \"spade\": 62196,\n  \"spaghetti-monster-flying\": 63099,\n  \"sparkle\": 58838,\n  \"sparkles\": 63632,\n  \"speaker\": 63711,\n  \"speakers\": 63712,\n  \"spell-check\": 63633,\n  \"spider-black-widow\": 63256,\n  \"spider-web\": 63257,\n  \"spider\": 63255,\n  \"spine\": 59233,\n  \"spinner-scale\": 58922,\n  \"spinner-third\": 62452,\n  \"spinner\": 61712,\n  \"spiral\": 59402,\n  \"split\": 57940,\n  \"splotch\": 62908,\n  \"spoon\": 62181,\n  \"sportsball\": 58443,\n  \"spray-can-sparkles\": 62928,\n  \"spray-can\": 62909,\n  \"sprinkler-ceiling\": 58444,\n  \"sprinkler\": 57397,\n  \"sprout\": 62680,\n  \"square-0\": 57941,\n  \"square-1\": 57942,\n  \"square-2\": 57943,\n  \"square-3\": 57944,\n  \"square-4\": 57945,\n  \"square-5\": 57946,\n  \"square-6\": 57947,\n  \"square-7\": 57948,\n  \"square-8\": 57949,\n  \"square-9\": 57950,\n  \"square-a-lock\": 58445,\n  \"square-a\": 57951,\n  \"square-ampersand\": 57952,\n  \"square-arrow-down-left\": 57953,\n  \"square-arrow-down-right\": 57954,\n  \"square-arrow-down\": 62265,\n  \"square-arrow-left\": 62266,\n  \"square-arrow-right\": 62267,\n  \"square-arrow-up-left\": 57955,\n  \"square-arrow-up-right\": 61772,\n  \"square-arrow-up\": 62268,\n  \"square-austral\": 59174,\n  \"square-australian-dollar\": 59160,\n  \"square-b\": 57956,\n  \"square-baht\": 59161,\n  \"square-bangladeshi-taka\": 59204,\n  \"square-binary\": 59035,\n  \"square-bitcoin\": 59122,\n  \"square-bolt\": 57957,\n  \"square-brazilian-real\": 59121,\n  \"square-c\": 57958,\n  \"square-caret-down\": 61776,\n  \"square-caret-left\": 61841,\n  \"square-caret-right\": 61778,\n  \"square-caret-up\": 61777,\n  \"square-cedi\": 59177,\n  \"square-cent\": 59120,\n  \"square-check\": 61770,\n  \"square-chevron-down\": 62249,\n  \"square-chevron-left\": 62250,\n  \"square-chevron-right\": 62251,\n  \"square-chevron-up\": 62252,\n  \"square-chf\": 59110,\n  \"square-code\": 57959,\n  \"square-colon\": 59194,\n  \"square-cruzeiro\": 59117,\n  \"square-currency\": 59148,\n  \"square-d\": 57960,\n  \"square-danish-krone\": 59207,\n  \"square-dashed-circle-plus\": 58818,\n  \"square-dashed\": 57961,\n  \"square-divide\": 57962,\n  \"square-dollar\": 62185,\n  \"square-dong\": 59151,\n  \"square-down-left\": 57963,\n  \"square-down-right\": 57964,\n  \"square-down\": 62288,\n  \"square-e\": 57965,\n  \"square-ellipsis-vertical\": 57967,\n  \"square-ellipsis\": 57966,\n  \"square-envelope\": 61849,\n  \"square-equals\": 59062,\n  \"square-euro\": 59186,\n  \"square-eurozone\": 59175,\n  \"square-exclamation\": 62241,\n  \"square-f\": 57968,\n  \"square-florin\": 59159,\n  \"square-fragile\": 62619,\n  \"square-franc\": 59183,\n  \"square-full\": 62556,\n  \"square-g\": 57969,\n  \"square-guarani\": 59150,\n  \"square-h\": 61693,\n  \"square-half-horizontal\": 59406,\n  \"square-half-stroke-horizontal\": 59407,\n  \"square-half-stroke\": 59283,\n  \"square-half\": 59282,\n  \"square-heart\": 62664,\n  \"square-hryvnia\": 59152,\n  \"square-i\": 57970,\n  \"square-indian-rupee\": 59125,\n  \"square-info\": 62223,\n  \"square-j\": 57971,\n  \"square-k\": 57972,\n  \"square-kanban\": 58504,\n  \"square-kip\": 59149,\n  \"square-l\": 57973,\n  \"square-lari\": 59199,\n  \"square-left\": 62289,\n  \"square-lira\": 59111,\n  \"square-list\": 58505,\n  \"square-litecoin\": 59127,\n  \"square-m\": 57974,\n  \"square-malaysian-ringgit\": 59208,\n  \"square-manat\": 59140,\n  \"square-microphone\": 59265,\n  \"square-mill\": 59146,\n  \"square-minus\": 61766,\n  \"square-n\": 57975,\n  \"square-naira\": 59144,\n  \"square-nfi\": 58742,\n  \"square-norwegian-krone\": 59143,\n  \"square-o\": 57976,\n  \"square-p\": 57977,\n  \"square-parking-slash\": 62999,\n  \"square-parking\": 62784,\n  \"square-pen\": 61771,\n  \"square-person-confined\": 58743,\n  \"square-peruvian-soles\": 59158,\n  \"square-peseta\": 59114,\n  \"square-peso\": 59162,\n  \"square-phone-flip\": 63611,\n  \"square-phone-hangup\": 57978,\n  \"square-phone\": 61592,\n  \"square-plus\": 61694,\n  \"square-polish-zloty\": 59190,\n  \"square-poll-horizontal\": 63106,\n  \"square-poll-vertical\": 63105,\n  \"square-q\": 57979,\n  \"square-quarters\": 58446,\n  \"square-question\": 62205,\n  \"square-quote\": 58153,\n  \"square-r\": 57980,\n  \"square-renminbi\": 59197,\n  \"square-right\": 62290,\n  \"square-ring\": 58447,\n  \"square-root-alt\": 63128,\n  \"square-root-variable\": 63128,\n  \"square-root\": 63127,\n  \"square-rss\": 61763,\n  \"square-ruble\": 59128,\n  \"square-rupee\": 59157,\n  \"square-rupiah\": 59154,\n  \"square-s\": 57981,\n  \"square-share-nodes\": 61921,\n  \"square-shekel\": 59189,\n  \"square-sliders-vertical\": 62450,\n  \"square-sliders\": 62448,\n  \"square-small\": 57982,\n  \"square-star\": 57983,\n  \"square-sterling\": 59155,\n  \"square-swedish-krona\": 59164,\n  \"square-t\": 57984,\n  \"square-tenge\": 59185,\n  \"square-terminal\": 58154,\n  \"square-this-way-up\": 62623,\n  \"square-tugrik\": 59176,\n  \"square-turkish-lira\": 59167,\n  \"square-u\": 57985,\n  \"square-up-left\": 57986,\n  \"square-up-right\": 62304,\n  \"square-up\": 62291,\n  \"square-user\": 57987,\n  \"square-v\": 57988,\n  \"square-virus\": 58744,\n  \"square-w\": 57989,\n  \"square-wine-glass-crack\": 62619,\n  \"square-won\": 59145,\n  \"square-x\": 57990,\n  \"square-xmark\": 62163,\n  \"square-y\": 57991,\n  \"square-yen\": 59172,\n  \"square-z\": 57992,\n  \"square\": 61640,\n  \"squareapore-dollar\": 59187,\n  \"squid\": 58448,\n  \"squirrel\": 63258,\n  \"stadium\": 59084,\n  \"staff-aesculapius\": 58745,\n  \"staff-snake\": 58745,\n  \"staff\": 63259,\n  \"stair-car\": 59333,\n  \"stairs\": 57993,\n  \"stamp\": 62911,\n  \"standard-definition\": 57994,\n  \"stapler\": 58799,\n  \"star-and-crescent\": 63129,\n  \"star-christmas\": 63444,\n  \"star-circle\": 57635,\n  \"star-exclamation\": 62195,\n  \"star-half-alt\": 62912,\n  \"star-half-stroke\": 62912,\n  \"star-half\": 61577,\n  \"star-of-david\": 63130,\n  \"star-of-life\": 63009,\n  \"star-sharp-half-alt\": 57997,\n  \"star-sharp-half-stroke\": 57997,\n  \"star-sharp-half\": 57996,\n  \"star-sharp\": 57995,\n  \"star-shooting\": 57398,\n  \"star\": 61445,\n  \"starfighter-alt-advanced\": 57998,\n  \"starfighter-alt\": 57400,\n  \"starfighter-twin-ion-engine-advanced\": 57998,\n  \"starfighter-twin-ion-engine\": 57400,\n  \"starfighter\": 57399,\n  \"stars\": 63330,\n  \"starship-freighter\": 57402,\n  \"starship\": 57401,\n  \"steak\": 63524,\n  \"steering-wheel\": 63010,\n  \"step-backward\": 61512,\n  \"step-forward\": 61521,\n  \"sterling-sign\": 61780,\n  \"stethoscope\": 61681,\n  \"sticky-note\": 62025,\n  \"stocking\": 63445,\n  \"stomach\": 63011,\n  \"stool\": 59520,\n  \"stop-circle\": 62093,\n  \"stop\": 61517,\n  \"stopwatch-20\": 57455,\n  \"stopwatch\": 62194,\n  \"store-24\": 59291,\n  \"store-alt-slash\": 57456,\n  \"store-alt\": 62799,\n  \"store-lock\": 58534,\n  \"store-slash\": 57457,\n  \"store\": 62798,\n  \"strawberry\": 58155,\n  \"stream\": 62800,\n  \"street-view\": 61981,\n  \"stretcher\": 63525,\n  \"strikethrough\": 61644,\n  \"stroopwafel\": 62801,\n  \"subscript\": 61740,\n  \"subtitles-slash\": 58896,\n  \"subtitles\": 58895,\n  \"subtract\": 61544,\n  \"subway-tunnel\": 58019,\n  \"subway\": 62009,\n  \"suitcase-medical\": 61690,\n  \"suitcase-rolling\": 62913,\n  \"suitcase\": 61682,\n  \"sun-alt\": 57999,\n  \"sun-bright\": 57999,\n  \"sun-cloud\": 63331,\n  \"sun-dust\": 63332,\n  \"sun-haze\": 63333,\n  \"sun-plant-wilt\": 58746,\n  \"sun\": 61829,\n  \"sunglasses\": 63634,\n  \"sunrise\": 63334,\n  \"sunset\": 63335,\n  \"superscript\": 61739,\n  \"surprise\": 62914,\n  \"sushi-roll\": 58507,\n  \"sushi\": 58506,\n  \"swap-arrows\": 58890,\n  \"swap\": 58889,\n  \"swatchbook\": 62915,\n  \"swedish-krona-sign\": 59198,\n  \"swimmer\": 62916,\n  \"swimming-pool\": 62917,\n  \"sword-laser-alt\": 57404,\n  \"sword-laser\": 57403,\n  \"sword\": 63260,\n  \"swords-laser\": 57405,\n  \"swords\": 63261,\n  \"symbols\": 63598,\n  \"synagogue\": 63131,\n  \"sync-alt\": 62193,\n  \"sync\": 61473,\n  \"syringe\": 62606,\n  \"t-rex\": 58921,\n  \"t-shirt\": 62803,\n  \"t\": 84,\n  \"table-bar\": 59550,\n  \"table-cells-column-lock\": 59000,\n  \"table-cells-column-unlock\": 59024,\n  \"table-cells-columns\": 59052,\n  \"table-cells-header-lock\": 59054,\n  \"table-cells-header-unlock\": 59055,\n  \"table-cells-header\": 59053,\n  \"table-cells-large\": 61449,\n  \"table-cells-lock\": 59001,\n  \"table-cells-merge\": 59532,\n  \"table-cells-row-lock\": 59002,\n  \"table-cells-row-unlock\": 59025,\n  \"table-cells-rows\": 59056,\n  \"table-cells-split\": 59533,\n  \"table-cells-unlock\": 59026,\n  \"table-cells\": 61450,\n  \"table-columns-add-after\": 59534,\n  \"table-columns-add-before\": 59535,\n  \"table-columns-merge-next\": 59536,\n  \"table-columns-merge-previous\": 59537,\n  \"table-columns-remove-after\": 59538,\n  \"table-columns-remove-before\": 59539,\n  \"table-columns\": 61659,\n  \"table-dining\": 59522,\n  \"table-layout\": 58000,\n  \"table-list\": 61451,\n  \"table-picnic\": 58157,\n  \"table-pivot\": 58001,\n  \"table-rows-add-above\": 59540,\n  \"table-rows-add-below\": 59541,\n  \"table-rows-merge-next\": 59542,\n  \"table-rows-merge-previous\": 59543,\n  \"table-rows-remove-above\": 59544,\n  \"table-rows-remove-below\": 59545,\n  \"table-rows\": 58002,\n  \"table-slash\": 59546,\n  \"table-tennis-paddle-ball\": 62557,\n  \"table-tennis\": 62557,\n  \"table-tree\": 58003,\n  \"table\": 61646,\n  \"tablet-alt\": 62458,\n  \"tablet-android-alt\": 62460,\n  \"tablet-android\": 62459,\n  \"tablet-button\": 61706,\n  \"tablet-rugged\": 62607,\n  \"tablet-screen-button\": 62458,\n  \"tablet-screen\": 62460,\n  \"tablet\": 62459,\n  \"tablets\": 62608,\n  \"tachograph-digital\": 62822,\n  \"tachometer-alt-average\": 63012,\n  \"tachometer-alt-fast\": 63013,\n  \"tachometer-alt-fastest\": 63014,\n  \"tachometer-alt-slow\": 63015,\n  \"tachometer-alt-slowest\": 63016,\n  \"tachometer-alt\": 63013,\n  \"tachometer-average\": 63017,\n  \"tachometer-fast\": 63018,\n  \"tachometer-fastest\": 63019,\n  \"tachometer-slow\": 63020,\n  \"tachometer-slowest\": 63021,\n  \"tachometer\": 63018,\n  \"taco\": 63526,\n  \"tag\": 61483,\n  \"tags\": 61484,\n  \"tally-1\": 58004,\n  \"tally-2\": 58005,\n  \"tally-3\": 58006,\n  \"tally-4\": 58007,\n  \"tally-5\": 63132,\n  \"tally\": 63132,\n  \"tamale\": 58449,\n  \"tanakh\": 63527,\n  \"tank-recovery\": 59429,\n  \"tank-water\": 58450,\n  \"tape\": 62683,\n  \"tarp-droplet\": 58748,\n  \"tarp\": 58747,\n  \"tasks-alt\": 63528,\n  \"tasks\": 61614,\n  \"taurus\": 59471,\n  \"taxi-bus\": 58008,\n  \"taxi\": 61882,\n  \"teddy-bear\": 58319,\n  \"teeth-open\": 63023,\n  \"teeth\": 63022,\n  \"telescope\": 57406,\n  \"teletype-answer\": 58041,\n  \"teletype\": 61924,\n  \"television\": 62060,\n  \"temperature-0\": 62155,\n  \"temperature-1\": 62154,\n  \"temperature-2\": 62153,\n  \"temperature-3\": 62152,\n  \"temperature-4\": 62151,\n  \"temperature-arrow-down\": 57407,\n  \"temperature-arrow-up\": 57408,\n  \"temperature-down\": 57407,\n  \"temperature-empty\": 62155,\n  \"temperature-frigid\": 63336,\n  \"temperature-full\": 62151,\n  \"temperature-half\": 62153,\n  \"temperature-high\": 63337,\n  \"temperature-hot\": 63338,\n  \"temperature-list\": 58009,\n  \"temperature-low\": 63339,\n  \"temperature-quarter\": 62154,\n  \"temperature-slash\": 59339,\n  \"temperature-snow\": 63336,\n  \"temperature-sun\": 63338,\n  \"temperature-three-quarters\": 62152,\n  \"temperature-up\": 57408,\n  \"tenge-sign\": 63447,\n  \"tenge\": 63447,\n  \"tennis-ball\": 62558,\n  \"tent-arrow-down-to-line\": 58750,\n  \"tent-arrow-left-right\": 58751,\n  \"tent-arrow-turn-left\": 58752,\n  \"tent-arrows-down\": 58753,\n  \"tent-circus\": 59085,\n  \"tent-double-peak\": 58919,\n  \"tent\": 58749,\n  \"tents\": 58754,\n  \"terminal\": 61728,\n  \"text-height\": 61492,\n  \"text-size\": 63636,\n  \"text-slash\": 63613,\n  \"text-width\": 61493,\n  \"text\": 63635,\n  \"th-large\": 61449,\n  \"th-list\": 61451,\n  \"th\": 61450,\n  \"theater-masks\": 63024,\n  \"thermometer-0\": 62155,\n  \"thermometer-1\": 62154,\n  \"thermometer-2\": 62153,\n  \"thermometer-3\": 62152,\n  \"thermometer-4\": 62151,\n  \"thermometer-empty\": 62155,\n  \"thermometer-full\": 62151,\n  \"thermometer-half\": 62153,\n  \"thermometer-quarter\": 62154,\n  \"thermometer-three-quarters\": 62152,\n  \"thermometer\": 62609,\n  \"theta\": 63134,\n  \"thought-bubble\": 58158,\n  \"thumb-tack-slash\": 59023,\n  \"thumb-tack\": 61581,\n  \"thumbs-down\": 61797,\n  \"thumbs-up\": 61796,\n  \"thumbtack-angle-slash\": 59218,\n  \"thumbtack-angle\": 59217,\n  \"thumbtack-slash\": 59023,\n  \"thumbtack\": 61581,\n  \"thunderstorm-moon\": 63341,\n  \"thunderstorm-sun\": 63342,\n  \"thunderstorm\": 63340,\n  \"tick\": 58159,\n  \"ticket-airline\": 58010,\n  \"ticket-alt\": 62463,\n  \"ticket-perforated-plane\": 58010,\n  \"ticket-perforated\": 58942,\n  \"ticket-plane\": 58010,\n  \"ticket-simple\": 62463,\n  \"ticket\": 61765,\n  \"tickets-airline\": 58011,\n  \"tickets-perforated-plane\": 58011,\n  \"tickets-perforated\": 58943,\n  \"tickets-plane\": 58011,\n  \"tickets-simple\": 58969,\n  \"tickets\": 58968,\n  \"tilde\": 126,\n  \"timeline-arrow\": 58013,\n  \"timeline\": 58012,\n  \"timer\": 58014,\n  \"times-circle\": 61527,\n  \"times-hexagon\": 62190,\n  \"times-octagon\": 62192,\n  \"times-rectangle\": 62480,\n  \"times-square\": 62163,\n  \"times-to-slot\": 63345,\n  \"times\": 61453,\n  \"tint-slash\": 62919,\n  \"tint\": 61507,\n  \"tire-flat\": 63026,\n  \"tire-pressure-warning\": 63027,\n  \"tire-rugged\": 63028,\n  \"tire\": 63025,\n  \"tired\": 62920,\n  \"toggle-large-off\": 58800,\n  \"toggle-large-on\": 58801,\n  \"toggle-off\": 61956,\n  \"toggle-on\": 61957,\n  \"toilet-paper-alt\": 63262,\n  \"toilet-paper-blank-under\": 58016,\n  \"toilet-paper-blank\": 63262,\n  \"toilet-paper-check\": 58802,\n  \"toilet-paper-reverse-alt\": 58016,\n  \"toilet-paper-reverse-slash\": 58017,\n  \"toilet-paper-reverse\": 58016,\n  \"toilet-paper-slash\": 57458,\n  \"toilet-paper-under-slash\": 58017,\n  \"toilet-paper-under\": 58016,\n  \"toilet-paper-xmark\": 58803,\n  \"toilet-paper\": 63262,\n  \"toilet-portable\": 58755,\n  \"toilet\": 63448,\n  \"toilets-portable\": 58756,\n  \"tomato\": 58160,\n  \"tombstone-alt\": 63265,\n  \"tombstone-blank\": 63265,\n  \"tombstone\": 63264,\n  \"toolbox\": 62802,\n  \"tools\": 63449,\n  \"tooth\": 62921,\n  \"toothbrush\": 63029,\n  \"torah\": 63136,\n  \"torii-gate\": 63137,\n  \"tornado\": 63343,\n  \"tower-broadcast\": 62745,\n  \"tower-cell\": 58757,\n  \"tower-control\": 58018,\n  \"tower-observation\": 58758,\n  \"tower-receive\": 59555,\n  \"tractor\": 63266,\n  \"trademark\": 62044,\n  \"traffic-cone\": 63030,\n  \"traffic-light-go\": 63032,\n  \"traffic-light-slow\": 63033,\n  \"traffic-light-stop\": 63034,\n  \"traffic-light\": 63031,\n  \"trailer\": 57409,\n  \"train-stop\": 59423,\n  \"train-subway-tunnel\": 58019,\n  \"train-subway\": 62009,\n  \"train-track\": 58451,\n  \"train-tram\": 58804,\n  \"train-tunnel\": 58452,\n  \"train\": 62008,\n  \"tram\": 63450,\n  \"transducer\": 59430,\n  \"transformer-bolt\": 58020,\n  \"transgender-alt\": 61989,\n  \"transgender\": 61989,\n  \"transmission\": 59394,\n  \"transporter-1\": 57411,\n  \"transporter-2\": 57412,\n  \"transporter-3\": 57413,\n  \"transporter-4\": 58021,\n  \"transporter-5\": 58022,\n  \"transporter-6\": 58023,\n  \"transporter-7\": 58024,\n  \"transporter-empty\": 57414,\n  \"transporter\": 57410,\n  \"trash-alt-slash\": 58029,\n  \"trash-alt\": 62189,\n  \"trash-arrow-turn-left\": 63637,\n  \"trash-arrow-up\": 63529,\n  \"trash-can-arrow-turn-left\": 63638,\n  \"trash-can-arrow-up\": 63530,\n  \"trash-can-check\": 58025,\n  \"trash-can-clock\": 58026,\n  \"trash-can-list\": 58027,\n  \"trash-can-plus\": 58028,\n  \"trash-can-slash\": 58029,\n  \"trash-can-undo\": 63638,\n  \"trash-can-xmark\": 58030,\n  \"trash-can\": 62189,\n  \"trash-check\": 58031,\n  \"trash-circle\": 57638,\n  \"trash-clock\": 58032,\n  \"trash-list\": 58033,\n  \"trash-plus\": 58034,\n  \"trash-restore-alt\": 63530,\n  \"trash-restore\": 63529,\n  \"trash-slash\": 58035,\n  \"trash-undo-alt\": 63638,\n  \"trash-undo\": 63637,\n  \"trash-xmark\": 58036,\n  \"trash\": 61944,\n  \"treasure-chest\": 63267,\n  \"tree-alt\": 62464,\n  \"tree-christmas\": 63451,\n  \"tree-city\": 58759,\n  \"tree-deciduous\": 62464,\n  \"tree-decorated\": 63452,\n  \"tree-large\": 63453,\n  \"tree-palm\": 63531,\n  \"tree\": 61883,\n  \"trees\": 63268,\n  \"trian-balbot\": 58460,\n  \"triangle-circle-square\": 63007,\n  \"triangle-exclamation\": 61553,\n  \"triangle-instrument\": 63714,\n  \"triangle-music\": 63714,\n  \"triangle-person-digging\": 63581,\n  \"triangle\": 62188,\n  \"tricycle-adult\": 58820,\n  \"tricycle\": 58819,\n  \"trillium\": 58760,\n  \"triple-chevrons-down\": 59383,\n  \"triple-chevrons-left\": 59384,\n  \"triple-chevrons-right\": 59385,\n  \"triple-chevrons-up\": 59386,\n  \"trombone\": 59266,\n  \"trophy-alt\": 62187,\n  \"trophy-star\": 62187,\n  \"trophy\": 61585,\n  \"trowel-bricks\": 58762,\n  \"trowel\": 58761,\n  \"truck-arrow-right\": 58763,\n  \"truck-bolt\": 58320,\n  \"truck-clock\": 62604,\n  \"truck-container-empty\": 58037,\n  \"truck-container\": 62684,\n  \"truck-couch\": 62685,\n  \"truck-droplet\": 58764,\n  \"truck-fast\": 62603,\n  \"truck-field-un\": 58766,\n  \"truck-field\": 58765,\n  \"truck-fire\": 58970,\n  \"truck-flatbed\": 58038,\n  \"truck-front\": 58039,\n  \"truck-ladder\": 58967,\n  \"truck-loading\": 62686,\n  \"truck-medical\": 61689,\n  \"truck-monster\": 63035,\n  \"truck-moving\": 62687,\n  \"truck-pickup\": 63036,\n  \"truck-plane\": 58767,\n  \"truck-plow\": 63454,\n  \"truck-ramp-box\": 62686,\n  \"truck-ramp-couch\": 62685,\n  \"truck-ramp\": 62688,\n  \"truck-suv\": 59334,\n  \"truck-tow\": 58040,\n  \"truck-utensils\": 58920,\n  \"truck\": 61649,\n  \"trumpet\": 63715,\n  \"try\": 58043,\n  \"tshirt\": 62803,\n  \"tty-answer\": 58041,\n  \"tty\": 61924,\n  \"tugrik-sign\": 58042,\n  \"turkey\": 63269,\n  \"turkish-lira-sign\": 58043,\n  \"turkish-lira\": 58043,\n  \"turn-down-left\": 58161,\n  \"turn-down-right\": 58453,\n  \"turn-down\": 62398,\n  \"turn-left-down\": 58935,\n  \"turn-left-up\": 58936,\n  \"turn-left\": 58934,\n  \"turn-right\": 58937,\n  \"turn-up\": 62399,\n  \"turntable\": 63716,\n  \"turtle\": 63270,\n  \"tv-alt\": 62060,\n  \"tv-music\": 63718,\n  \"tv-retro\": 62465,\n  \"tv\": 62060,\n  \"typewriter\": 63719,\n  \"u-turn-down-left\": 59375,\n  \"u-turn-down-right\": 59376,\n  \"u-turn-left-down\": 59377,\n  \"u-turn-left-up\": 59378,\n  \"u-turn-right-down\": 59379,\n  \"u-turn-right-up\": 59380,\n  \"u-turn-up-left\": 59381,\n  \"u-turn-up-right\": 59382,\n  \"u-turn\": 59377,\n  \"u\": 85,\n  \"ufo-beam\": 57416,\n  \"ufo\": 57415,\n  \"umbrella-alt\": 58044,\n  \"umbrella-beach\": 62922,\n  \"umbrella-simple\": 58044,\n  \"umbrella\": 61673,\n  \"underline\": 61645,\n  \"undo-alt\": 62186,\n  \"undo\": 61666,\n  \"unicorn\": 63271,\n  \"unicycle\": 59335,\n  \"uniform-martial-arts\": 58321,\n  \"union\": 63138,\n  \"universal-access\": 62106,\n  \"university\": 61852,\n  \"unlink\": 61735,\n  \"unlock-alt\": 61758,\n  \"unlock-keyhole\": 61758,\n  \"unlock\": 61596,\n  \"unsorted\": 61660,\n  \"up-down-left-right\": 61618,\n  \"up-down\": 62264,\n  \"up-from-bracket\": 58768,\n  \"up-from-dotted-line\": 58454,\n  \"up-from-line\": 62278,\n  \"up-left\": 58045,\n  \"up-long-to-line\": 59078,\n  \"up-long\": 62220,\n  \"up-right-and-down-left-from-center\": 62500,\n  \"up-right-from-square\": 62301,\n  \"up-right\": 58046,\n  \"up-to-bracket\": 58990,\n  \"up-to-dotted-line\": 58455,\n  \"up-to-line\": 62285,\n  \"up\": 62295,\n  \"upload\": 61587,\n  \"usb-drive\": 63721,\n  \"usd-circle\": 62184,\n  \"usd-square\": 62185,\n  \"usd\": 36,\n  \"user-alien\": 57418,\n  \"user-alt-slash\": 62726,\n  \"user-alt\": 61447,\n  \"user-astronaut\": 62715,\n  \"user-beard-bolt\": 59017,\n  \"user-beard\": 59304,\n  \"user-bounty-hunter\": 58047,\n  \"user-chart\": 63139,\n  \"user-check\": 62716,\n  \"user-chef-hair-long\": 59305,\n  \"user-chef\": 58322,\n  \"user-circle-minus\": 59306,\n  \"user-circle-plus\": 59307,\n  \"user-circle\": 62141,\n  \"user-clock\": 62717,\n  \"user-cog\": 62718,\n  \"user-construction\": 63532,\n  \"user-cowboy\": 63722,\n  \"user-crown\": 63140,\n  \"user-dashed\": 59308,\n  \"user-doctor-hair-long\": 58457,\n  \"user-doctor-hair-mullet\": 59309,\n  \"user-doctor-hair\": 58456,\n  \"user-doctor-message\": 63534,\n  \"user-doctor\": 61680,\n  \"user-edit\": 62719,\n  \"user-friends\": 62720,\n  \"user-gear\": 62718,\n  \"user-graduate\": 62721,\n  \"user-group-crown\": 63141,\n  \"user-group-simple\": 58883,\n  \"user-group\": 62720,\n  \"user-hair-buns\": 58323,\n  \"user-hair-long\": 58459,\n  \"user-hair-mullet\": 58460,\n  \"user-hair\": 58458,\n  \"user-hard-hat\": 63532,\n  \"user-hat-tie-magnifying-glass\": 59311,\n  \"user-hat-tie\": 59310,\n  \"user-headset\": 63533,\n  \"user-helmet-safety\": 63532,\n  \"user-hoodie\": 59018,\n  \"user-injured\": 63272,\n  \"user-key\": 59312,\n  \"user-large-slash\": 62726,\n  \"user-large\": 61447,\n  \"user-lock\": 62722,\n  \"user-magnifying-glass\": 58821,\n  \"user-md-chat\": 63534,\n  \"user-md\": 61680,\n  \"user-message\": 59313,\n  \"user-microphone\": 59314,\n  \"user-minus\": 62723,\n  \"user-music\": 63723,\n  \"user-ninja\": 62724,\n  \"user-nurse-hair-long\": 58462,\n  \"user-nurse-hair\": 58461,\n  \"user-nurse\": 63535,\n  \"user-pen\": 62719,\n  \"user-pilot-hair-long\": 59315,\n  \"user-pilot-tie-hair-long\": 59316,\n  \"user-pilot-tie\": 58049,\n  \"user-pilot\": 58048,\n  \"user-plus\": 62004,\n  \"user-police-hair-long\": 59317,\n  \"user-police-tie-hair-long\": 59318,\n  \"user-police-tie\": 58164,\n  \"user-police\": 58163,\n  \"user-question\": 59319,\n  \"user-robot-xmarks\": 58535,\n  \"user-robot\": 57419,\n  \"user-secret\": 61979,\n  \"user-shakespeare\": 58050,\n  \"user-shield\": 62725,\n  \"user-sith\": 59320,\n  \"user-slash\": 62726,\n  \"user-tag\": 62727,\n  \"user-tie-hair-long\": 58464,\n  \"user-tie-hair-mullet\": 59321,\n  \"user-tie-hair\": 58463,\n  \"user-tie\": 62728,\n  \"user-times\": 62005,\n  \"user-unlock\": 57432,\n  \"user-viewfinder\": 59253,\n  \"user-visor\": 57420,\n  \"user-vneck-hair-long\": 58467,\n  \"user-vneck-hair-mullet\": 59322,\n  \"user-vneck-hair\": 58466,\n  \"user-vneck\": 58465,\n  \"user-xmark\": 62005,\n  \"user\": 61447,\n  \"users-between-lines\": 58769,\n  \"users-class\": 63037,\n  \"users-cog\": 62729,\n  \"users-crown\": 63141,\n  \"users-gear\": 62729,\n  \"users-line\": 58770,\n  \"users-medical\": 63536,\n  \"users-rays\": 58771,\n  \"users-rectangle\": 58772,\n  \"users-slash\": 57459,\n  \"users-viewfinder\": 58773,\n  \"users\": 61632,\n  \"utensil-fork\": 62179,\n  \"utensil-knife\": 62180,\n  \"utensil-spoon\": 62181,\n  \"utensils-alt\": 62182,\n  \"utensils-slash\": 58468,\n  \"utensils\": 62183,\n  \"utility-can\": 59549,\n  \"utility-pole-double\": 58052,\n  \"utility-pole\": 58051,\n  \"v\": 86,\n  \"vacuum-robot\": 57422,\n  \"vacuum\": 57421,\n  \"value-absolute\": 63142,\n  \"van-shuttle\": 62902,\n  \"van\": 59336,\n  \"vault\": 58053,\n  \"vcard\": 62139,\n  \"vector-circle\": 62957,\n  \"vector-polygon\": 62958,\n  \"vector-square\": 62959,\n  \"vent-damper\": 58469,\n  \"venus-double\": 61990,\n  \"venus-mars\": 61992,\n  \"venus\": 61985,\n  \"vest-patches\": 57478,\n  \"vest\": 57477,\n  \"vhs\": 63724,\n  \"vial-circle-check\": 58774,\n  \"vial-vertical\": 59234,\n  \"vial-virus\": 58775,\n  \"vial\": 62610,\n  \"vials\": 62611,\n  \"video-arrow-down-left\": 58056,\n  \"video-arrow-up-right\": 58057,\n  \"video-camera\": 61501,\n  \"video-circle\": 57643,\n  \"video-down-to-line\": 59254,\n  \"video-handheld\": 63656,\n  \"video-plus\": 62689,\n  \"video-question\": 59255,\n  \"video-slash\": 62690,\n  \"video\": 61501,\n  \"vihara\": 63143,\n  \"violin\": 63725,\n  \"virgo\": 59472,\n  \"virus-covid-slash\": 58537,\n  \"virus-covid\": 58536,\n  \"virus-slash\": 57461,\n  \"virus\": 57460,\n  \"viruses\": 57462,\n  \"voicemail\": 63639,\n  \"volcano\": 63344,\n  \"volleyball-ball\": 62559,\n  \"volleyball\": 62559,\n  \"volume-control-phone\": 62112,\n  \"volume-down\": 61479,\n  \"volume-high\": 61480,\n  \"volume-low\": 61479,\n  \"volume-medium\": 63144,\n  \"volume-mute\": 63145,\n  \"volume-off\": 61478,\n  \"volume-slash\": 62178,\n  \"volume-times\": 63145,\n  \"volume-up\": 61480,\n  \"volume-xmark\": 63145,\n  \"volume\": 63144,\n  \"vote-nay\": 63345,\n  \"vote-yea\": 63346,\n  \"vr-cardboard\": 63273,\n  \"w\": 87,\n  \"waffle\": 58470,\n  \"wagon-covered\": 63726,\n  \"walker\": 63537,\n  \"walkie-talkie\": 63727,\n  \"walking\": 62804,\n  \"wall-brick\": 58331,\n  \"wallet\": 62805,\n  \"wand-magic-sparkles\": 58058,\n  \"wand-magic\": 61648,\n  \"wand-sparkles\": 63275,\n  \"wand\": 63274,\n  \"wardrobe\": 59521,\n  \"warehouse-alt\": 62613,\n  \"warehouse-full\": 62613,\n  \"warehouse\": 62612,\n  \"warning\": 61553,\n  \"washer\": 63640,\n  \"washing-machine\": 63640,\n  \"watch-apple\": 58059,\n  \"watch-calculator\": 63728,\n  \"watch-fitness\": 63038,\n  \"watch-smart\": 58060,\n  \"watch\": 62177,\n  \"water-arrow-down\": 63348,\n  \"water-arrow-up\": 63349,\n  \"water-ladder\": 62917,\n  \"water-lower\": 63348,\n  \"water-rise\": 63349,\n  \"water-temp\": 59434,\n  \"water-temperature\": 59434,\n  \"water\": 63347,\n  \"watermelon-slice\": 58167,\n  \"wave-pulse\": 62968,\n  \"wave-sine\": 63641,\n  \"wave-square\": 63550,\n  \"wave-triangle\": 63642,\n  \"wave\": 58971,\n  \"waveform-circle\": 57645,\n  \"waveform-lines\": 63730,\n  \"waveform-path\": 63730,\n  \"waveform\": 63729,\n  \"waves-sine\": 58973,\n  \"web-awesome\": 59010,\n  \"webcam-slash\": 63539,\n  \"webcam\": 63538,\n  \"webhook\": 58837,\n  \"weight-hanging\": 62925,\n  \"weight-scale\": 62614,\n  \"weight\": 62614,\n  \"whale\": 63276,\n  \"wheat-alt\": 58061,\n  \"wheat-awn-circle-exclamation\": 58776,\n  \"wheat-awn-slash\": 58168,\n  \"wheat-awn\": 58061,\n  \"wheat-slash\": 58169,\n  \"wheat\": 63277,\n  \"wheelchair-alt\": 58062,\n  \"wheelchair-move\": 58062,\n  \"wheelchair\": 61843,\n  \"whiskey-glass-ice\": 63393,\n  \"whiskey-glass\": 63392,\n  \"whistle\": 62560,\n  \"wifi-1\": 63146,\n  \"wifi-2\": 63147,\n  \"wifi-3\": 61931,\n  \"wifi-exclamation\": 58063,\n  \"wifi-fair\": 63147,\n  \"wifi-slash\": 63148,\n  \"wifi-strong\": 61931,\n  \"wifi-weak\": 63146,\n  \"wifi\": 61931,\n  \"wind-circle-exclamation\": 63350,\n  \"wind-turbine\": 63643,\n  \"wind-warning\": 63350,\n  \"wind\": 63278,\n  \"window-alt\": 62479,\n  \"window-close\": 62480,\n  \"window-flip\": 62479,\n  \"window-frame-open\": 57424,\n  \"window-frame\": 57423,\n  \"window-maximize\": 62160,\n  \"window-minimize\": 62161,\n  \"window-restore\": 62162,\n  \"window\": 62478,\n  \"windsock\": 63351,\n  \"wine-bottle\": 63279,\n  \"wine-glass-alt\": 62926,\n  \"wine-glass-crack\": 62651,\n  \"wine-glass-empty\": 62926,\n  \"wine-glass\": 62691,\n  \"wireless\": 59359,\n  \"won-sign\": 61785,\n  \"won\": 61785,\n  \"worm\": 58777,\n  \"wreath-laurel\": 58834,\n  \"wreath\": 63458,\n  \"wrench-simple\": 58065,\n  \"wrench\": 61613,\n  \"x-ray\": 62615,\n  \"x\": 88,\n  \"xmark-circle\": 61527,\n  \"xmark-hexagon\": 62190,\n  \"xmark-large\": 58779,\n  \"xmark-octagon\": 62192,\n  \"xmark-square\": 62163,\n  \"xmark-to-slot\": 63345,\n  \"xmark\": 61453,\n  \"xmarks-lines\": 58778,\n  \"y\": 89,\n  \"yen-sign\": 61783,\n  \"yen\": 61783,\n  \"yin-yang\": 63149,\n  \"z\": 90,\n  \"zap\": 61671,\n  \"zzz\": 63616\n}"
  },
  {
    "path": "packages/fontawesome-pro-sharp-regular/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontawesome-pro-sharp-regular\",\n  \"version\": \"0.2.0\",\n  \"description\": \"Fontawesome Pro Sharp Regular font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"fontawesome-pro-sharp-regular\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/fontawesome-pro-sharp-regular\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-regular/react-native-vector-icons-fontawesome-pro-sharp-regular.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-fontawesome-pro-sharp-regular'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\n\n  s.script_phase = {\n    name: 'Copy Custom Fonts',\n    execution_position: :after_compile,\n    script: <<~SCRIPT\n      set -e\n\n      HEAD=\"(RNVI-fontawesome-pro-sharp-regular)\"\n\n      echo \"${HEAD} START_COPY_FONTS\"\n\n      echo \"${HEAD} PWD: $(pwd)\"\n\n      #\n      # Find the custom font Directory\n      #\n\n      # Assume the project root is always two directories above the POD_ROOT\n      echo \"${HEAD} PODS_ROOT: $PODS_ROOT\"\n\n      PROJECT_ROOT=\"${PODS_ROOT}/../..\"\n      echo \"${HEAD} PROJECT_ROOT: $PROJECT_ROOT\"\n\n      cd $PROJECT_ROOT\n      FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/\"//g')\n      if [ -z \"$FONTS_DIR\" ]; then\n        FONTS_DIR=\"rnvi-fonts\"\n      fi\n      echo \"${HEAD} FONTS_DIR: $FONTS_DIR\"\n\n      FONTS_DIR=\"${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-sharp-regular\"\n      if [ ! -d \"$FONTS_DIR\" ]; then\n        echo \"${HEAD} $FONTS_DIR not found\"\n        exit 0\n      fi\n\n      #\n      # Find the destination we copy to\n      #\n\n      echo \"${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR\"\n      XCODE_DIR=$(ls -d \"$PODS_CONFIGURATION_BUILD_DIR\"/*.app)\n      echo \"${HEAD} XCODE_DIR: $XCODE_DIR\"\n      if [ -z \"$XCODE_DIR\" ]; then\n        echo \"Could not find XCODE_DIR to copy fonts to\"\n        exit 1\n      fi\n\n      DEST_DIR=\"${XCODE_DIR}\"\n      mkdir -p \"$DEST_DIR\"\n\n      #\n      # Copy the fonts\n      #\n\n      echo \"${HEAD} Copying the following files to $DEST_DIR\"\n      ls \"$FONTS_DIR\" | sed \"s/^/${HEAD} /\"\n\n      rsync -avr --copy-links --no-relative $FONTS_DIR/ \"$DEST_DIR\"\n\n      echo \"${HEAD} END:RNVI_COPY_FONTS\"\n    SCRIPT\n  }\nend\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-regular/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProSharpRegular icon set component.\n * Usage: <FontAwesomeProSharpRegular name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProSharpRegular.json';\n\nexport const FontAwesomeProSharpRegular = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Sharp-Regular',\n  fontFileName: 'fa-sharp-regular-400.ttf',\n});\n\nexport type FontAwesomeProSharpRegularIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProSharpRegular;\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-regular/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProSharpRegular icon set component.\n * Usage: <FontAwesomeProSharpRegular name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProSharpRegular.json';\n\nexport const FontAwesomeProSharpRegular = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Sharp-Regular',\n  fontFileName: 'fa-sharp-regular-400.ttf',\n});\n\nexport type FontAwesomeProSharpRegularIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProSharpRegular;\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-regular/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-regular/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-solid/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontawesome-pro-sharp-solid\",\n    \"upstreamFont\": {\n      \"registry\": \"https://npm.fontawesome.com\",\n      \"packageName\": \"@fortawesome/fontawesome-pro\",\n      \"versionOnly\": true\n    },\n    \"copyCustomFonts\": true,\n    \"className\": \"FontAwesomeProSharpSolid\",\n    \"postScriptName\": \"FontAwesome7Sharp-Solid\",\n    \"fontFileName\": \"fa-sharp-solid-900\",\n    \"buildSteps\": {\n      \"preScript\": {\n        \"script\": \"../fontawesome-common/scripts/fetch-pro.sh 7\"\n      },\n      \"glyphmap\": {\n        \"location\": \"fa/pro/css/all.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fa-\"\n      },\n      \"postScript\": {\n        \"script\": \"../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProSharpSolid.json fa/pro/svgs/sharp-solid\\nrm -rf fa\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"0.1.0\",\n        \"upstream\": \"7.1.0\"\n      },\n      {\n        \"rnvi\": \"0.1.1\",\n        \"upstream\": \"7.2.0\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-solid/CHANGELOG.md",
    "content": "## 0.2.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 0.1.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 0.1.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🩹 Fixes\n\n- upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 0.1.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 0.1.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontawesome-pro-sharp-solid/README.md",
    "content": "# React Native Vector Icons - Fontawesome Pro Sharp Solid\n\nFontawesome Pro Sharp Solid font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n> [!IMPORTANT]\n> This package does not include the fonts. You must provide them yourself.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/fontawesome-pro-sharp-solid\n```\n\n## Custom Fonts\n\nThis package requires you to provide the font files. Place your `.ttf` font\nfile in the following location:\n\n```\nrnvi-fonts/fontawesome-pro-sharp-solid/fa-sharp-solid-900.ttf\n```\n\nThe font will be automatically copied during the build process for both iOS and\nAndroid.\n\n## Usage\n\n```jsx\nimport { FontAwesomeProSharpSolid } from '@react-native-vector-icons/fontawesome-pro-sharp-solid';\n\n// ...\n\n<FontAwesomeProSharpSolid name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 0.1.0 | 7.1.0 |\n| &gt; 0.1.1 | 7.2.0 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-solid/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.fontawesome_pro_sharp_solid\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFontAwesomeProSharpSolid\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.fontawesome_pro_sharp_solid\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-fontawesome-pro-sharp-solid\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-solid/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-sharp-solid) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n\ntask copyExtraFonts(type: Copy) {\n  from \"${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-sharp-solid\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-solid/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-sharp-solid) Copying custom font: ${it.file}\" }\n}\n\npreBuild.dependsOn(copyExtraFonts)\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-solid/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.fontawesome_pro_sharp_solid\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-solid/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-solid/android/src/main/java/VectorIconsFontAwesomeProSharpSolidPackage.kt",
    "content": "package com.reactnativevectoricons.fontawesome_pro_sharp_solid\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFontAwesomeProSharpSolidPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-solid/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-solid/glyphmaps/FontAwesomeProSharpSolid.json",
    "content": "{\n  \"0\": 48,\n  \"1\": 49,\n  \"2\": 50,\n  \"3\": 51,\n  \"4\": 52,\n  \"5\": 53,\n  \"6\": 54,\n  \"7\": 55,\n  \"8\": 56,\n  \"9\": 57,\n  \"100\": 58396,\n  \"00\": 58471,\n  \"360-degrees\": 58076,\n  \"a\": 65,\n  \"abacus\": 63040,\n  \"accent-grave\": 96,\n  \"acorn\": 63150,\n  \"ad\": 63041,\n  \"add\": 43,\n  \"address-book\": 62137,\n  \"address-card\": 62139,\n  \"adjust\": 61506,\n  \"aeropress\": 59435,\n  \"air-conditioner\": 63732,\n  \"air-freshener\": 62928,\n  \"airplay-audio\": 59259,\n  \"airplay\": 57481,\n  \"alarm-clock\": 62286,\n  \"alarm-exclamation\": 63555,\n  \"alarm-minus\": 59395,\n  \"alarm-plus\": 63556,\n  \"alarm-snooze\": 63557,\n  \"album-circle-plus\": 58508,\n  \"album-circle-user\": 58509,\n  \"album-collection-circle-plus\": 58510,\n  \"album-collection-circle-user\": 58511,\n  \"album-collection\": 63648,\n  \"album\": 63647,\n  \"alicorn\": 63152,\n  \"alien-8bit\": 63734,\n  \"alien-monster\": 63734,\n  \"alien\": 63733,\n  \"align-center\": 61495,\n  \"align-justify\": 61497,\n  \"align-left\": 61494,\n  \"align-right\": 61496,\n  \"align-slash\": 63558,\n  \"allergies\": 62561,\n  \"almost-equal-to\": 59416,\n  \"alt\": 57482,\n  \"ambulance\": 61689,\n  \"american-sign-language-interpreting\": 62115,\n  \"amp-guitar\": 63649,\n  \"ampersand\": 38,\n  \"analytics\": 63043,\n  \"anchor-circle-check\": 58538,\n  \"anchor-circle-exclamation\": 58539,\n  \"anchor-circle-xmark\": 58540,\n  \"anchor-lock\": 58541,\n  \"anchor\": 61757,\n  \"angel\": 63353,\n  \"angle-90\": 57485,\n  \"angle-double-down\": 61699,\n  \"angle-double-left\": 61696,\n  \"angle-double-right\": 61697,\n  \"angle-double-up\": 61698,\n  \"angle-down\": 61703,\n  \"angle-left\": 61700,\n  \"angle-right\": 61701,\n  \"angle-up\": 61702,\n  \"angle\": 57484,\n  \"angles-down\": 61699,\n  \"angles-left\": 61696,\n  \"angles-right\": 61697,\n  \"angles-up-down\": 58893,\n  \"angles-up\": 61698,\n  \"angry\": 62806,\n  \"ankh\": 63044,\n  \"ant\": 59008,\n  \"apartment\": 58472,\n  \"aperture\": 58079,\n  \"apostrophe\": 39,\n  \"apple-alt\": 62929,\n  \"apple-core\": 57487,\n  \"apple-crate\": 63153,\n  \"apple-whole\": 62929,\n  \"aquarius\": 59461,\n  \"archive\": 61831,\n  \"archway\": 62807,\n  \"area-chart\": 61950,\n  \"aries\": 59462,\n  \"arrow-alt-circle-down\": 62296,\n  \"arrow-alt-circle-left\": 62297,\n  \"arrow-alt-circle-right\": 62298,\n  \"arrow-alt-circle-up\": 62299,\n  \"arrow-alt-down\": 62292,\n  \"arrow-alt-from-bottom\": 62278,\n  \"arrow-alt-from-left\": 62279,\n  \"arrow-alt-from-right\": 62280,\n  \"arrow-alt-from-top\": 62281,\n  \"arrow-alt-left\": 62293,\n  \"arrow-alt-right\": 62294,\n  \"arrow-alt-square-down\": 62288,\n  \"arrow-alt-square-left\": 62289,\n  \"arrow-alt-square-right\": 62290,\n  \"arrow-alt-square-up\": 62291,\n  \"arrow-alt-to-bottom\": 62282,\n  \"arrow-alt-to-left\": 62283,\n  \"arrow-alt-to-right\": 62284,\n  \"arrow-alt-to-top\": 62285,\n  \"arrow-alt-up\": 62295,\n  \"arrow-archery\": 59449,\n  \"arrow-circle-down\": 61611,\n  \"arrow-circle-left\": 61608,\n  \"arrow-circle-right\": 61609,\n  \"arrow-circle-up\": 61610,\n  \"arrow-down-1-9\": 61794,\n  \"arrow-down-9-1\": 63622,\n  \"arrow-down-a-z\": 61789,\n  \"arrow-down-arrow-up\": 63619,\n  \"arrow-down-big-small\": 63628,\n  \"arrow-down-from-arc\": 58900,\n  \"arrow-down-from-bracket\": 58983,\n  \"arrow-down-from-dotted-line\": 57488,\n  \"arrow-down-from-line\": 62277,\n  \"arrow-down-left-and-arrow-up-right-to-center\": 57490,\n  \"arrow-down-left\": 57489,\n  \"arrow-down-long-to-line\": 59063,\n  \"arrow-down-long\": 61813,\n  \"arrow-down-right\": 57491,\n  \"arrow-down-short-wide\": 63620,\n  \"arrow-down-small-big\": 63629,\n  \"arrow-down-square-triangle\": 63625,\n  \"arrow-down-to-arc\": 58542,\n  \"arrow-down-to-bracket\": 57492,\n  \"arrow-down-to-dotted-line\": 57493,\n  \"arrow-down-to-line\": 62269,\n  \"arrow-down-to-square\": 57494,\n  \"arrow-down-triangle-square\": 63624,\n  \"arrow-down-up-across-line\": 58543,\n  \"arrow-down-up-lock\": 58544,\n  \"arrow-down-wide-short\": 61792,\n  \"arrow-down-z-a\": 63617,\n  \"arrow-down\": 61539,\n  \"arrow-from-bottom\": 62274,\n  \"arrow-from-left\": 62275,\n  \"arrow-from-right\": 62276,\n  \"arrow-from-top\": 62277,\n  \"arrow-left-arrow-right\": 59064,\n  \"arrow-left-from-arc\": 58901,\n  \"arrow-left-from-bracket\": 58984,\n  \"arrow-left-from-dotted-line\": 59065,\n  \"arrow-left-from-line\": 62276,\n  \"arrow-left-long-to-line\": 58324,\n  \"arrow-left-long\": 61815,\n  \"arrow-left-rotate\": 61666,\n  \"arrow-left-to-arc\": 58902,\n  \"arrow-left-to-bracket\": 58985,\n  \"arrow-left-to-dotted-line\": 59066,\n  \"arrow-left-to-line\": 62270,\n  \"arrow-left\": 61536,\n  \"arrow-pointer\": 62021,\n  \"arrow-progress\": 58847,\n  \"arrow-right-arrow-left\": 61676,\n  \"arrow-right-from-arc\": 58545,\n  \"arrow-right-from-bracket\": 61579,\n  \"arrow-right-from-dotted-line\": 59067,\n  \"arrow-right-from-file\": 62830,\n  \"arrow-right-from-line\": 62275,\n  \"arrow-right-long-to-line\": 58325,\n  \"arrow-right-long\": 61816,\n  \"arrow-right-rotate\": 61470,\n  \"arrow-right-to-arc\": 58546,\n  \"arrow-right-to-bracket\": 61584,\n  \"arrow-right-to-city\": 58547,\n  \"arrow-right-to-dotted-line\": 59068,\n  \"arrow-right-to-file\": 62831,\n  \"arrow-right-to-line\": 62272,\n  \"arrow-right\": 61537,\n  \"arrow-rotate-back\": 61666,\n  \"arrow-rotate-backward\": 61666,\n  \"arrow-rotate-forward\": 61470,\n  \"arrow-rotate-left-10\": 59446,\n  \"arrow-rotate-left-15\": 59526,\n  \"arrow-rotate-left-30\": 59527,\n  \"arrow-rotate-left\": 61666,\n  \"arrow-rotate-right-10\": 59447,\n  \"arrow-rotate-right-15\": 59528,\n  \"arrow-rotate-right-30\": 59529,\n  \"arrow-rotate-right\": 61470,\n  \"arrow-square-down\": 62265,\n  \"arrow-square-left\": 62266,\n  \"arrow-square-right\": 62267,\n  \"arrow-square-up\": 62268,\n  \"arrow-to-bottom\": 62269,\n  \"arrow-to-left\": 62270,\n  \"arrow-to-right\": 62272,\n  \"arrow-to-top\": 62273,\n  \"arrow-trend-down\": 57495,\n  \"arrow-trend-up\": 57496,\n  \"arrow-turn-down-left\": 58081,\n  \"arrow-turn-down-right\": 58326,\n  \"arrow-turn-down\": 61769,\n  \"arrow-turn-left-down\": 58931,\n  \"arrow-turn-left-up\": 58932,\n  \"arrow-turn-left\": 58930,\n  \"arrow-turn-right\": 58933,\n  \"arrow-turn-up\": 61768,\n  \"arrow-u-turn-down-left\": 59367,\n  \"arrow-u-turn-down-right\": 59368,\n  \"arrow-u-turn-left-down\": 59369,\n  \"arrow-u-turn-left-up\": 59370,\n  \"arrow-u-turn-right-down\": 59371,\n  \"arrow-u-turn-right-up\": 59372,\n  \"arrow-u-turn-up-left\": 59373,\n  \"arrow-u-turn-up-right\": 59374,\n  \"arrow-up-1-9\": 61795,\n  \"arrow-up-9-1\": 63623,\n  \"arrow-up-a-z\": 61790,\n  \"arrow-up-arrow-down\": 57497,\n  \"arrow-up-big-small\": 63630,\n  \"arrow-up-from-arc\": 58548,\n  \"arrow-up-from-bracket\": 57498,\n  \"arrow-up-from-dotted-line\": 57499,\n  \"arrow-up-from-ground-water\": 58549,\n  \"arrow-up-from-line\": 62274,\n  \"arrow-up-from-square\": 57500,\n  \"arrow-up-from-water-pump\": 58550,\n  \"arrow-up-left-from-circle\": 57502,\n  \"arrow-up-left\": 57501,\n  \"arrow-up-long-to-line\": 59069,\n  \"arrow-up-long\": 61814,\n  \"arrow-up-right-and-arrow-down-left-from-center\": 57504,\n  \"arrow-up-right-dots\": 58551,\n  \"arrow-up-right-from-square\": 61582,\n  \"arrow-up-right\": 57503,\n  \"arrow-up-short-wide\": 63621,\n  \"arrow-up-small-big\": 63631,\n  \"arrow-up-square-triangle\": 63627,\n  \"arrow-up-to-arc\": 58903,\n  \"arrow-up-to-bracket\": 58986,\n  \"arrow-up-to-dotted-line\": 57505,\n  \"arrow-up-to-line\": 62273,\n  \"arrow-up-triangle-square\": 63626,\n  \"arrow-up-wide-short\": 61793,\n  \"arrow-up-z-a\": 63618,\n  \"arrow-up\": 61538,\n  \"arrows-alt-h\": 62263,\n  \"arrows-alt-v\": 62264,\n  \"arrows-alt\": 61618,\n  \"arrows-cross\": 57506,\n  \"arrows-down-to-line\": 58552,\n  \"arrows-down-to-people\": 58553,\n  \"arrows-from-dotted-line\": 57507,\n  \"arrows-from-line\": 57508,\n  \"arrows-h\": 61566,\n  \"arrows-left-right-to-line\": 58554,\n  \"arrows-left-right\": 61566,\n  \"arrows-maximize\": 62237,\n  \"arrows-minimize\": 57509,\n  \"arrows-repeat-1\": 62310,\n  \"arrows-repeat\": 62308,\n  \"arrows-retweet\": 62305,\n  \"arrows-rotate-reverse\": 58928,\n  \"arrows-rotate\": 61473,\n  \"arrows-spin\": 58555,\n  \"arrows-split-up-and-left\": 58556,\n  \"arrows-to-circle\": 58557,\n  \"arrows-to-dot\": 58558,\n  \"arrows-to-dotted-line\": 57510,\n  \"arrows-to-eye\": 58559,\n  \"arrows-to-line\": 57511,\n  \"arrows-turn-right\": 58560,\n  \"arrows-turn-to-dots\": 58561,\n  \"arrows-up-down-left-right\": 61511,\n  \"arrows-up-down\": 61565,\n  \"arrows-up-to-line\": 58562,\n  \"arrows-v\": 61565,\n  \"arrows\": 61511,\n  \"asl-interpreting\": 62115,\n  \"assistive-listening-systems\": 62114,\n  \"asterisk\": 42,\n  \"at\": 64,\n  \"atlas\": 62808,\n  \"atom-alt\": 62931,\n  \"atom-simple\": 62931,\n  \"atom\": 62930,\n  \"audio-description-slash\": 57512,\n  \"audio-description\": 62110,\n  \"austral-sign\": 57513,\n  \"australian-dollar-sign\": 59134,\n  \"automobile\": 61881,\n  \"avocado\": 57514,\n  \"award-simple\": 57515,\n  \"award\": 62809,\n  \"axe-battle\": 63155,\n  \"axe\": 63154,\n  \"b\": 66,\n  \"baby-carriage\": 63357,\n  \"baby\": 63356,\n  \"backpack\": 62932,\n  \"backspace\": 62810,\n  \"backward-fast\": 61513,\n  \"backward-step\": 61512,\n  \"backward\": 61514,\n  \"bacon\": 63461,\n  \"bacteria\": 57433,\n  \"bacterium\": 57434,\n  \"badge-check\": 62262,\n  \"badge-dollar\": 63045,\n  \"badge-percent\": 63046,\n  \"badge-sheriff\": 63650,\n  \"badge\": 62261,\n  \"badger-honey\": 63156,\n  \"badminton\": 58170,\n  \"bag-seedling\": 58866,\n  \"bag-shopping-minus\": 58960,\n  \"bag-shopping-plus\": 58961,\n  \"bag-shopping\": 62096,\n  \"bagel\": 58327,\n  \"bags-shopping\": 63559,\n  \"baguette\": 58328,\n  \"bahai\": 63078,\n  \"baht-sign\": 57516,\n  \"balance-scale-left\": 62741,\n  \"balance-scale-right\": 62742,\n  \"balance-scale\": 62030,\n  \"ball-pile\": 63358,\n  \"ball-yarn\": 59086,\n  \"balloon\": 58083,\n  \"balloons\": 58084,\n  \"ballot-check\": 63283,\n  \"ballot\": 63282,\n  \"ban-bug\": 63481,\n  \"ban-parking\": 62998,\n  \"ban-smoking\": 62797,\n  \"ban\": 61534,\n  \"banana\": 58085,\n  \"band-aid\": 62562,\n  \"bandage\": 62562,\n  \"bangladeshi-taka-sign\": 58086,\n  \"banjo\": 63651,\n  \"bank\": 61852,\n  \"bar-chart\": 61568,\n  \"bar-progress-empty\": 59045,\n  \"bar-progress-full\": 59046,\n  \"bar-progress-half\": 59047,\n  \"bar-progress-quarter\": 59048,\n  \"bar-progress-three-quarters\": 59049,\n  \"bar-progress\": 59044,\n  \"barcode-alt\": 62563,\n  \"barcode-read\": 62564,\n  \"barcode-scan\": 62565,\n  \"barcode\": 61482,\n  \"barn-silo\": 63588,\n  \"barn\": 59079,\n  \"bars-filter\": 57517,\n  \"bars-progress\": 63528,\n  \"bars-sort\": 57518,\n  \"bars-staggered\": 62800,\n  \"bars\": 61641,\n  \"baseball-ball\": 62515,\n  \"baseball-bat-ball\": 62514,\n  \"baseball-bat\": 59365,\n  \"baseball\": 62515,\n  \"basket-shopping-minus\": 58962,\n  \"basket-shopping-plus\": 58963,\n  \"basket-shopping-simple\": 57519,\n  \"basket-shopping\": 62097,\n  \"basketball-ball\": 62516,\n  \"basketball-hoop\": 62517,\n  \"basketball\": 62516,\n  \"bat\": 63157,\n  \"bath\": 62157,\n  \"bathtub\": 62157,\n  \"battery-0\": 62020,\n  \"battery-1\": 57521,\n  \"battery-2\": 62019,\n  \"battery-3\": 62018,\n  \"battery-4\": 62017,\n  \"battery-5\": 62016,\n  \"battery-bolt\": 62326,\n  \"battery-car\": 62943,\n  \"battery-empty\": 62020,\n  \"battery-exclamation\": 57520,\n  \"battery-full\": 62016,\n  \"battery-half\": 62018,\n  \"battery-low\": 57521,\n  \"battery-quarter\": 62019,\n  \"battery-slash\": 62327,\n  \"battery-three-quarters\": 62017,\n  \"battery\": 62016,\n  \"bed-alt\": 63735,\n  \"bed-bunk\": 63736,\n  \"bed-empty\": 63737,\n  \"bed-front\": 63735,\n  \"bed-pulse\": 62599,\n  \"bed\": 62006,\n  \"bee\": 57522,\n  \"beer-foam\": 57523,\n  \"beer-mug-empty\": 61692,\n  \"beer-mug\": 57523,\n  \"beer\": 61692,\n  \"bell-concierge\": 62818,\n  \"bell-exclamation\": 63560,\n  \"bell-on\": 63738,\n  \"bell-plus\": 63561,\n  \"bell-ring\": 58924,\n  \"bell-school-slash\": 62934,\n  \"bell-school\": 62933,\n  \"bell-slash\": 61942,\n  \"bell\": 61683,\n  \"bells\": 63359,\n  \"bench-tree\": 58087,\n  \"betamax\": 63652,\n  \"bezier-curve\": 62811,\n  \"bible\": 63047,\n  \"bicep\": 59490,\n  \"bicycle\": 61958,\n  \"biking-mountain\": 63563,\n  \"biking\": 63562,\n  \"billboard\": 58829,\n  \"bin-bottles-recycle\": 58870,\n  \"bin-bottles\": 58869,\n  \"bin-recycle\": 58871,\n  \"bin\": 59235,\n  \"binary-circle-check\": 58172,\n  \"binary-lock\": 58173,\n  \"binary-slash\": 58174,\n  \"binary\": 58171,\n  \"binoculars\": 61925,\n  \"biohazard\": 63360,\n  \"bird\": 58473,\n  \"birthday-cake\": 61949,\n  \"bitcoin-sign\": 57524,\n  \"blackboard\": 62747,\n  \"blanket-fire\": 58330,\n  \"blanket\": 62616,\n  \"blender-phone\": 63158,\n  \"blender\": 62743,\n  \"blind\": 62109,\n  \"blinds-open\": 63740,\n  \"blinds-raised\": 63741,\n  \"blinds\": 63739,\n  \"block-brick-fire\": 58332,\n  \"block-brick\": 58331,\n  \"block-question\": 58333,\n  \"block-quote\": 57525,\n  \"block\": 58474,\n  \"blog\": 63361,\n  \"blueberries\": 58088,\n  \"bluetooth\": 62099,\n  \"bold\": 61490,\n  \"bolt-auto\": 57526,\n  \"bolt-lightning\": 57527,\n  \"bolt-slash\": 57528,\n  \"bolt\": 61671,\n  \"bomb\": 61922,\n  \"bone-break\": 62936,\n  \"bone\": 62935,\n  \"bong\": 62812,\n  \"book-alt\": 62937,\n  \"book-arrow-right\": 57529,\n  \"book-arrow-up\": 57530,\n  \"book-atlas\": 62808,\n  \"book-bible\": 63047,\n  \"book-blank\": 62937,\n  \"book-bookmark\": 57531,\n  \"book-circle-arrow-right\": 57532,\n  \"book-circle-arrow-up\": 57533,\n  \"book-circle\": 57599,\n  \"book-copy\": 57534,\n  \"book-dead\": 63159,\n  \"book-font\": 57535,\n  \"book-heart\": 62617,\n  \"book-journal-whills\": 63082,\n  \"book-law\": 57537,\n  \"book-medical\": 63462,\n  \"book-open-alt\": 57536,\n  \"book-open-cover\": 57536,\n  \"book-open-lines\": 59219,\n  \"book-open-reader\": 62938,\n  \"book-open\": 62744,\n  \"book-quran\": 63111,\n  \"book-reader\": 62938,\n  \"book-section\": 57537,\n  \"book-skull\": 63159,\n  \"book-sparkles\": 63160,\n  \"book-spells\": 63160,\n  \"book-spine\": 59220,\n  \"book-tanakh\": 63527,\n  \"book-user\": 63463,\n  \"book\": 61485,\n  \"bookmark-circle\": 57600,\n  \"bookmark-plus\": 59221,\n  \"bookmark-slash\": 57538,\n  \"bookmark\": 61486,\n  \"books-medical\": 63464,\n  \"books\": 62939,\n  \"boombox\": 63653,\n  \"boot-heeled\": 58175,\n  \"boot\": 63362,\n  \"booth-curtain\": 63284,\n  \"border-all\": 63564,\n  \"border-bottom-right\": 63572,\n  \"border-bottom\": 63565,\n  \"border-center-h\": 63644,\n  \"border-center-v\": 63645,\n  \"border-inner\": 63566,\n  \"border-left\": 63567,\n  \"border-none\": 63568,\n  \"border-outer\": 63569,\n  \"border-right\": 63570,\n  \"border-style-alt\": 63572,\n  \"border-style\": 63571,\n  \"border-top-left\": 63571,\n  \"border-top\": 63573,\n  \"bore-hole\": 58563,\n  \"bottle-baby\": 58995,\n  \"bottle-droplet\": 58564,\n  \"bottle-water\": 58565,\n  \"bow-archery\": 59450,\n  \"bow-arrow\": 63161,\n  \"bowl-chopsticks-noodles\": 58090,\n  \"bowl-chopsticks\": 58089,\n  \"bowl-food\": 58566,\n  \"bowl-hot\": 63523,\n  \"bowl-rice\": 58091,\n  \"bowl-salad\": 63518,\n  \"bowl-scoop\": 58334,\n  \"bowl-scoops\": 58335,\n  \"bowl-shaved-ice\": 58334,\n  \"bowl-soft-serve\": 58475,\n  \"bowl-spoon\": 58336,\n  \"bowling-ball-pin\": 57539,\n  \"bowling-ball\": 62518,\n  \"bowling-pins\": 62519,\n  \"box-alt\": 62618,\n  \"box-archive\": 61831,\n  \"box-arrow-down-arrow-up\": 59285,\n  \"box-arrow-down-magnifying-glass\": 59286,\n  \"box-arrow-down\": 59284,\n  \"box-arrow-up\": 59431,\n  \"box-ballot\": 63285,\n  \"box-check\": 62567,\n  \"box-circle-check\": 57540,\n  \"box-dollar\": 62624,\n  \"box-fragile\": 62619,\n  \"box-full\": 62620,\n  \"box-heart\": 62621,\n  \"box-isometric-tape\": 59288,\n  \"box-isometric\": 59287,\n  \"box-magnifying-glass\": 59432,\n  \"box-open-full\": 62620,\n  \"box-open\": 62622,\n  \"box-taped\": 62618,\n  \"box-tissue\": 57435,\n  \"box-up\": 62623,\n  \"box-usd\": 62624,\n  \"box\": 62566,\n  \"boxes-alt\": 62568,\n  \"boxes-packing\": 58567,\n  \"boxes-stacked\": 62568,\n  \"boxes\": 62568,\n  \"boxing-glove\": 62520,\n  \"bra\": 59087,\n  \"bracket-curly-left\": 123,\n  \"bracket-curly-right\": 125,\n  \"bracket-curly\": 123,\n  \"bracket-left\": 91,\n  \"bracket-round-right\": 41,\n  \"bracket-round\": 40,\n  \"bracket-square-right\": 93,\n  \"bracket-square\": 91,\n  \"bracket\": 91,\n  \"brackets-curly\": 63466,\n  \"brackets-round\": 57541,\n  \"brackets-square\": 63465,\n  \"brackets\": 63465,\n  \"braille\": 62113,\n  \"brain-arrow-curved-right\": 63095,\n  \"brain-circuit\": 57542,\n  \"brain\": 62940,\n  \"brake-warning\": 57543,\n  \"brazilian-real-sign\": 58476,\n  \"bread-loaf\": 63467,\n  \"bread-slice-butter\": 58337,\n  \"bread-slice\": 63468,\n  \"bridge-circle-check\": 58569,\n  \"bridge-circle-exclamation\": 58570,\n  \"bridge-circle-xmark\": 58571,\n  \"bridge-lock\": 58572,\n  \"bridge-suspension\": 58573,\n  \"bridge-water\": 58574,\n  \"bridge\": 58568,\n  \"briefcase-arrow-right\": 58098,\n  \"briefcase-blank\": 57544,\n  \"briefcase-clock\": 63050,\n  \"briefcase-medical\": 62569,\n  \"briefcase\": 61617,\n  \"briefs\": 59088,\n  \"brightness-low\": 57546,\n  \"brightness\": 57545,\n  \"bring-forward\": 63574,\n  \"bring-front\": 63575,\n  \"broadcast-tower\": 62745,\n  \"broccoli\": 58338,\n  \"broom-ball\": 62552,\n  \"broom-wide\": 58833,\n  \"broom\": 62746,\n  \"browser\": 62334,\n  \"browsers\": 57547,\n  \"brush\": 62813,\n  \"bucket\": 58575,\n  \"bug-slash\": 58512,\n  \"bug\": 61832,\n  \"bugs\": 58576,\n  \"building-circle-arrow-right\": 58577,\n  \"building-circle-check\": 58578,\n  \"building-circle-exclamation\": 58579,\n  \"building-circle-xmark\": 58580,\n  \"building-columns\": 61852,\n  \"building-flag\": 58581,\n  \"building-lock\": 58582,\n  \"building-magnifying-glass\": 58908,\n  \"building-memo\": 58910,\n  \"building-ngo\": 58583,\n  \"building-shield\": 58584,\n  \"building-un\": 58585,\n  \"building-user\": 58586,\n  \"building-wheat\": 58587,\n  \"building\": 61869,\n  \"buildings\": 57548,\n  \"bulldozer\": 58965,\n  \"bullhorn\": 61601,\n  \"bullseye-arrow\": 63048,\n  \"bullseye-pointer\": 63049,\n  \"bullseye\": 61760,\n  \"buoy-mooring\": 58806,\n  \"buoy\": 58805,\n  \"burger-cheese\": 63473,\n  \"burger-fries\": 57549,\n  \"burger-glass\": 57550,\n  \"burger-lettuce\": 58339,\n  \"burger-soda\": 63576,\n  \"burger\": 63493,\n  \"burn\": 62570,\n  \"burrito\": 63469,\n  \"burst-new\": 59512,\n  \"burst\": 58588,\n  \"bus-alt\": 62814,\n  \"bus-school\": 62941,\n  \"bus-side\": 59421,\n  \"bus-simple\": 62814,\n  \"bus-stop\": 59422,\n  \"bus\": 61959,\n  \"business-front\": 58460,\n  \"business-time\": 63050,\n  \"butter\": 58340,\n  \"butterfly\": 59409,\n  \"c\": 67,\n  \"cab\": 61882,\n  \"cabin\": 58477,\n  \"cabinet-filing\": 63051,\n  \"cable-car\": 63450,\n  \"cactus\": 63655,\n  \"caduceus\": 59009,\n  \"cake-candles\": 61949,\n  \"cake-slice\": 58341,\n  \"cake\": 61949,\n  \"calculator-alt\": 63052,\n  \"calculator-simple\": 63052,\n  \"calculator\": 61932,\n  \"calendar-alt\": 61555,\n  \"calendar-arrow-down\": 57552,\n  \"calendar-arrow-up\": 57553,\n  \"calendar-check\": 62068,\n  \"calendar-circle-exclamation\": 58478,\n  \"calendar-circle-minus\": 58479,\n  \"calendar-circle-plus\": 58480,\n  \"calendar-circle-user\": 58481,\n  \"calendar-circle\": 57602,\n  \"calendar-clock\": 57554,\n  \"calendar-day\": 63363,\n  \"calendar-days\": 61555,\n  \"calendar-download\": 57552,\n  \"calendar-edit\": 62259,\n  \"calendar-exclamation\": 62260,\n  \"calendar-heart\": 57555,\n  \"calendar-image\": 57556,\n  \"calendar-lines-pen\": 58482,\n  \"calendar-lines\": 57557,\n  \"calendar-minus\": 62066,\n  \"calendar-note\": 57557,\n  \"calendar-pen\": 62259,\n  \"calendar-plus\": 62065,\n  \"calendar-range\": 57558,\n  \"calendar-star\": 63286,\n  \"calendar-time\": 57554,\n  \"calendar-times\": 62067,\n  \"calendar-upload\": 57553,\n  \"calendar-users\": 58850,\n  \"calendar-week\": 63364,\n  \"calendar-xmark\": 62067,\n  \"calendar\": 61747,\n  \"calendars\": 57559,\n  \"camcorder\": 63656,\n  \"camera-alt\": 61488,\n  \"camera-cctv\": 63660,\n  \"camera-circle-ellipsis\": 59238,\n  \"camera-circle\": 57603,\n  \"camera-clock\": 59239,\n  \"camera-home\": 63742,\n  \"camera-movie\": 63657,\n  \"camera-polaroid\": 63658,\n  \"camera-retro\": 61571,\n  \"camera-rotate\": 57560,\n  \"camera-security\": 63742,\n  \"camera-shutter\": 59240,\n  \"camera-slash\": 57561,\n  \"camera-viewfinder\": 57562,\n  \"camera-web-slash\": 63539,\n  \"camera-web\": 63538,\n  \"camera\": 61488,\n  \"campfire\": 63162,\n  \"campground\": 63163,\n  \"can-food\": 58342,\n  \"cancel\": 61534,\n  \"cancer\": 59463,\n  \"candle-holder\": 63164,\n  \"candy-bar\": 58344,\n  \"candy-cane\": 63366,\n  \"candy-corn\": 63165,\n  \"candy\": 58343,\n  \"cannabis\": 62815,\n  \"cannon\": 58946,\n  \"canoe-person\": 59548,\n  \"capricorn\": 59464,\n  \"capsule\": 59226,\n  \"capsules\": 62571,\n  \"car-alt\": 62942,\n  \"car-battery\": 62943,\n  \"car-bolt\": 58177,\n  \"car-building\": 63577,\n  \"car-bump\": 62944,\n  \"car-burst\": 62945,\n  \"car-bus\": 63578,\n  \"car-circle-bolt\": 58178,\n  \"car-crash\": 62945,\n  \"car-garage\": 62946,\n  \"car-key\": 59328,\n  \"car-mechanic\": 62947,\n  \"car-mirrors\": 58179,\n  \"car-on\": 58589,\n  \"car-people\": 59036,\n  \"car-rear\": 62942,\n  \"car-side-bolt\": 58180,\n  \"car-side\": 62948,\n  \"car-siren-on\": 59330,\n  \"car-siren\": 59329,\n  \"car-tilt\": 62949,\n  \"car-tunnel\": 58590,\n  \"car-wash\": 62950,\n  \"car-wrench\": 62947,\n  \"car\": 61881,\n  \"caravan-alt\": 57344,\n  \"caravan-simple\": 57344,\n  \"caravan\": 63743,\n  \"card-club\": 58345,\n  \"card-diamond\": 58346,\n  \"card-heart\": 58347,\n  \"card-spade\": 58348,\n  \"cards-blank\": 58591,\n  \"cards\": 58349,\n  \"caret-circle-down\": 62253,\n  \"caret-circle-left\": 62254,\n  \"caret-circle-right\": 62256,\n  \"caret-circle-up\": 62257,\n  \"caret-down\": 61655,\n  \"caret-large-down\": 59436,\n  \"caret-large-left\": 59437,\n  \"caret-large-right\": 59438,\n  \"caret-large-up\": 59439,\n  \"caret-left\": 61657,\n  \"caret-right\": 61658,\n  \"caret-square-down\": 61776,\n  \"caret-square-left\": 61841,\n  \"caret-square-right\": 61778,\n  \"caret-square-up\": 61777,\n  \"caret-up\": 61656,\n  \"carpool\": 59036,\n  \"carriage-baby\": 63357,\n  \"carrot\": 63367,\n  \"cars\": 63579,\n  \"cart-arrow-down\": 61976,\n  \"cart-arrow-up\": 58350,\n  \"cart-circle-arrow-down\": 58351,\n  \"cart-circle-arrow-up\": 58352,\n  \"cart-circle-check\": 58353,\n  \"cart-circle-exclamation\": 58354,\n  \"cart-circle-plus\": 58355,\n  \"cart-circle-xmark\": 58356,\n  \"cart-flatbed-boxes\": 62581,\n  \"cart-flatbed-empty\": 62582,\n  \"cart-flatbed-suitcase\": 62877,\n  \"cart-flatbed\": 62580,\n  \"cart-minus\": 57563,\n  \"cart-plus\": 61975,\n  \"cart-shopping-fast\": 57564,\n  \"cart-shopping\": 61562,\n  \"cart-xmark\": 57565,\n  \"cash-register\": 63368,\n  \"cassette-betamax\": 63652,\n  \"cassette-tape\": 63659,\n  \"cassette-vhs\": 63724,\n  \"castle\": 57566,\n  \"cat-space\": 57345,\n  \"cat\": 63166,\n  \"cauldron\": 63167,\n  \"cctv\": 63660,\n  \"cedi-sign\": 57567,\n  \"cent-sign\": 58357,\n  \"certificate\": 61603,\n  \"chain-broken\": 61735,\n  \"chain-horizontal-slash\": 57804,\n  \"chain-horizontal\": 57803,\n  \"chain-slash\": 61735,\n  \"chain\": 61633,\n  \"chair-office\": 63169,\n  \"chair\": 63168,\n  \"chalkboard-teacher\": 62748,\n  \"chalkboard-user\": 62748,\n  \"chalkboard\": 62747,\n  \"champagne-glass\": 63390,\n  \"champagne-glasses\": 63391,\n  \"charging-station\": 62951,\n  \"chart-area\": 61950,\n  \"chart-bar\": 61568,\n  \"chart-bullet\": 57569,\n  \"chart-candlestick\": 57570,\n  \"chart-column\": 57571,\n  \"chart-diagram\": 59029,\n  \"chart-fft\": 59038,\n  \"chart-gantt\": 57572,\n  \"chart-kanban\": 58959,\n  \"chart-line-down\": 63053,\n  \"chart-line-up-down\": 58839,\n  \"chart-line-up\": 57573,\n  \"chart-line\": 61953,\n  \"chart-mixed-up-circle-currency\": 58840,\n  \"chart-mixed-up-circle-dollar\": 58841,\n  \"chart-mixed\": 63043,\n  \"chart-network\": 63370,\n  \"chart-pie-alt\": 63054,\n  \"chart-pie-simple-circle-currency\": 58884,\n  \"chart-pie-simple-circle-dollar\": 58885,\n  \"chart-pie-simple\": 63054,\n  \"chart-pie\": 61952,\n  \"chart-pyramid\": 57574,\n  \"chart-radar\": 57575,\n  \"chart-scatter-3d\": 57576,\n  \"chart-scatter-bubble\": 57577,\n  \"chart-scatter\": 63470,\n  \"chart-simple-horizontal\": 58484,\n  \"chart-simple\": 58483,\n  \"chart-sine\": 59037,\n  \"chart-tree-map\": 57578,\n  \"chart-user\": 63139,\n  \"chart-waterfall\": 57579,\n  \"check-circle\": 61528,\n  \"check-double\": 62816,\n  \"check-square\": 61770,\n  \"check-to-slot\": 63346,\n  \"check\": 61452,\n  \"cheese-swiss\": 63472,\n  \"cheese\": 63471,\n  \"cheeseburger\": 63473,\n  \"chemex\": 59440,\n  \"cherries\": 57580,\n  \"chess-bishop-alt\": 62523,\n  \"chess-bishop-piece\": 62523,\n  \"chess-bishop\": 62522,\n  \"chess-board\": 62524,\n  \"chess-clock-alt\": 62526,\n  \"chess-clock-flip\": 62526,\n  \"chess-clock\": 62525,\n  \"chess-king-alt\": 62528,\n  \"chess-king-piece\": 62528,\n  \"chess-king\": 62527,\n  \"chess-knight-alt\": 62530,\n  \"chess-knight-piece\": 62530,\n  \"chess-knight\": 62529,\n  \"chess-pawn-alt\": 62532,\n  \"chess-pawn-piece\": 62532,\n  \"chess-pawn\": 62531,\n  \"chess-queen-alt\": 62534,\n  \"chess-queen-piece\": 62534,\n  \"chess-queen\": 62533,\n  \"chess-rook-alt\": 62536,\n  \"chess-rook-piece\": 62536,\n  \"chess-rook\": 62535,\n  \"chess\": 62521,\n  \"chest-drawers\": 59523,\n  \"chestnut\": 58358,\n  \"chevron-circle-down\": 61754,\n  \"chevron-circle-left\": 61751,\n  \"chevron-circle-right\": 61752,\n  \"chevron-circle-up\": 61753,\n  \"chevron-double-down\": 62242,\n  \"chevron-double-left\": 62243,\n  \"chevron-double-right\": 62244,\n  \"chevron-double-up\": 62245,\n  \"chevron-down\": 61560,\n  \"chevron-left\": 61523,\n  \"chevron-right\": 61524,\n  \"chevron-square-down\": 62249,\n  \"chevron-square-left\": 62250,\n  \"chevron-square-right\": 62251,\n  \"chevron-square-up\": 62252,\n  \"chevron-up\": 61559,\n  \"chevrons-down\": 62242,\n  \"chevrons-left\": 62243,\n  \"chevrons-right\": 62244,\n  \"chevrons-up\": 62245,\n  \"chf-sign\": 58882,\n  \"child-combatant\": 58592,\n  \"child-dress\": 58780,\n  \"child-reaching\": 58781,\n  \"child-rifle\": 58592,\n  \"child\": 61870,\n  \"children\": 58593,\n  \"chimney\": 63371,\n  \"chocolate-bar\": 58344,\n  \"chopsticks\": 58359,\n  \"church\": 62749,\n  \"circle-0\": 57581,\n  \"circle-1\": 57582,\n  \"circle-2\": 57583,\n  \"circle-3\": 57584,\n  \"circle-4\": 57585,\n  \"circle-5\": 57586,\n  \"circle-6\": 57587,\n  \"circle-7\": 57588,\n  \"circle-8\": 57589,\n  \"circle-9\": 57590,\n  \"circle-a\": 57591,\n  \"circle-ampersand\": 57592,\n  \"circle-arrow-down-left\": 57593,\n  \"circle-arrow-down-right\": 57594,\n  \"circle-arrow-down\": 61611,\n  \"circle-arrow-left\": 61608,\n  \"circle-arrow-right\": 61609,\n  \"circle-arrow-up-left\": 57595,\n  \"circle-arrow-up-right\": 57596,\n  \"circle-arrow-up\": 61610,\n  \"circle-austral\": 59163,\n  \"circle-australian-dollar\": 59184,\n  \"circle-b\": 57597,\n  \"circle-baht\": 59181,\n  \"circle-bangladeshi-taka\": 59137,\n  \"circle-bitcoin\": 59191,\n  \"circle-bolt\": 57598,\n  \"circle-book-open\": 57599,\n  \"circle-bookmark\": 57600,\n  \"circle-brazilian-real\": 59115,\n  \"circle-c\": 57601,\n  \"circle-calendar\": 57602,\n  \"circle-camera\": 57603,\n  \"circle-caret-down\": 62253,\n  \"circle-caret-left\": 62254,\n  \"circle-caret-right\": 62256,\n  \"circle-caret-up\": 62257,\n  \"circle-cedi\": 59202,\n  \"circle-cent\": 59178,\n  \"circle-check\": 61528,\n  \"circle-chevron-down\": 61754,\n  \"circle-chevron-left\": 61751,\n  \"circle-chevron-right\": 61752,\n  \"circle-chevron-up\": 61753,\n  \"circle-chf\": 59180,\n  \"circle-colon\": 59132,\n  \"circle-cruzeiro\": 59170,\n  \"circle-currency\": 59118,\n  \"circle-d\": 57604,\n  \"circle-danish-krone\": 59206,\n  \"circle-dashed\": 57605,\n  \"circle-divide\": 57606,\n  \"circle-dollar-to-slot\": 62649,\n  \"circle-dollar\": 62184,\n  \"circle-dong\": 59171,\n  \"circle-dot\": 61842,\n  \"circle-down-left\": 57607,\n  \"circle-down-right\": 57608,\n  \"circle-down\": 62296,\n  \"circle-e\": 57609,\n  \"circle-ellipsis-vertical\": 57611,\n  \"circle-ellipsis\": 57610,\n  \"circle-envelope\": 57612,\n  \"circle-equals\": 59057,\n  \"circle-euro\": 58830,\n  \"circle-eurozone\": 59205,\n  \"circle-exclamation-check\": 57613,\n  \"circle-exclamation\": 61546,\n  \"circle-f\": 57614,\n  \"circle-florin\": 59108,\n  \"circle-franc\": 59169,\n  \"circle-g\": 57615,\n  \"circle-gf\": 59007,\n  \"circle-guarani\": 59195,\n  \"circle-h\": 62590,\n  \"circle-half-horizontal\": 59404,\n  \"circle-half-stroke-horizontal\": 59405,\n  \"circle-half-stroke\": 61506,\n  \"circle-half\": 57616,\n  \"circle-heart\": 62663,\n  \"circle-house\": 59080,\n  \"circle-hryvnia\": 59119,\n  \"circle-i\": 57617,\n  \"circle-indian-rupee\": 59188,\n  \"circle-info\": 61530,\n  \"circle-j\": 57618,\n  \"circle-k\": 57619,\n  \"circle-kip\": 59133,\n  \"circle-l\": 57620,\n  \"circle-lari\": 59165,\n  \"circle-left\": 62297,\n  \"circle-lira\": 59126,\n  \"circle-litecoin\": 59124,\n  \"circle-location-arrow\": 62978,\n  \"circle-m\": 57621,\n  \"circle-malaysian-ringgit\": 59129,\n  \"circle-manat\": 59131,\n  \"circle-microphone-lines\": 57623,\n  \"circle-microphone\": 57622,\n  \"circle-mill\": 59138,\n  \"circle-minus\": 61526,\n  \"circle-moon\": 59360,\n  \"circle-n\": 57624,\n  \"circle-naira\": 59209,\n  \"circle-nodes\": 58594,\n  \"circle-norwegian-krone\": 59192,\n  \"circle-notch\": 61902,\n  \"circle-o\": 57625,\n  \"circle-p\": 57626,\n  \"circle-parking\": 62997,\n  \"circle-pause\": 62091,\n  \"circle-peruvian-soles\": 59123,\n  \"circle-peseta\": 59201,\n  \"circle-peso\": 59135,\n  \"circle-phone-flip\": 57628,\n  \"circle-phone-hangup\": 57629,\n  \"circle-phone\": 57627,\n  \"circle-play\": 61764,\n  \"circle-plus\": 61525,\n  \"circle-polish-zloty\": 59136,\n  \"circle-q\": 57630,\n  \"circle-quarter-stroke\": 58835,\n  \"circle-quarter\": 57631,\n  \"circle-quarters\": 58360,\n  \"circle-question\": 61529,\n  \"circle-r\": 57632,\n  \"circle-radiation\": 63418,\n  \"circle-renminbi\": 59113,\n  \"circle-right\": 62298,\n  \"circle-ruble\": 59109,\n  \"circle-rupee\": 59156,\n  \"circle-rupiah\": 59142,\n  \"circle-s\": 57633,\n  \"circle-share-nodes\": 59099,\n  \"circle-shekel\": 59139,\n  \"circle-small\": 57634,\n  \"circle-sort-down\": 57393,\n  \"circle-sort-up\": 57394,\n  \"circle-sort\": 57392,\n  \"circle-star\": 57635,\n  \"circle-sterling\": 58831,\n  \"circle-stop\": 62093,\n  \"circle-swedish-krona\": 59203,\n  \"circle-t\": 57636,\n  \"circle-tenge\": 59173,\n  \"circle-three-quarters-stroke\": 58836,\n  \"circle-three-quarters\": 57637,\n  \"circle-trash\": 57638,\n  \"circle-tugrik\": 59153,\n  \"circle-turkish-lira\": 59193,\n  \"circle-u\": 57639,\n  \"circle-up-left\": 57640,\n  \"circle-up-right\": 57641,\n  \"circle-up\": 62299,\n  \"circle-user-circle-check\": 59295,\n  \"circle-user-circle-exclamation\": 59296,\n  \"circle-user-circle-minus\": 59297,\n  \"circle-user-circle-moon\": 59298,\n  \"circle-user-circle-plus\": 59299,\n  \"circle-user-circle-question\": 59300,\n  \"circle-user-circle-user\": 59301,\n  \"circle-user-circle-xmark\": 59302,\n  \"circle-user-clock\": 59303,\n  \"circle-user\": 62141,\n  \"circle-v\": 57642,\n  \"circle-video\": 57643,\n  \"circle-w\": 57644,\n  \"circle-waveform-lines\": 57645,\n  \"circle-wifi-circle-wifi\": 59006,\n  \"circle-wifi-group\": 59006,\n  \"circle-wifi\": 59005,\n  \"circle-won\": 59116,\n  \"circle-x\": 57646,\n  \"circle-xmark\": 61527,\n  \"circle-y\": 57647,\n  \"circle-yen\": 58832,\n  \"circle-z\": 57648,\n  \"circle\": 61713,\n  \"circleapore-dollar\": 59166,\n  \"circles-overlap-3\": 59041,\n  \"circles-overlap\": 58880,\n  \"citrus-slice\": 58101,\n  \"citrus\": 58100,\n  \"city\": 63055,\n  \"clapperboard-play\": 57650,\n  \"clapperboard\": 57649,\n  \"clarinet\": 63661,\n  \"claw-marks\": 63170,\n  \"clinic-medical\": 63474,\n  \"clipboard-check\": 62572,\n  \"clipboard-clock\": 59222,\n  \"clipboard-exclamation\": 59223,\n  \"clipboard-list-check\": 63287,\n  \"clipboard-list\": 62573,\n  \"clipboard-medical\": 57651,\n  \"clipboard-prescription\": 62952,\n  \"clipboard-question\": 58595,\n  \"clipboard-user\": 63475,\n  \"clipboard\": 62248,\n  \"clock-desk\": 57652,\n  \"clock-eight-thirty\": 58182,\n  \"clock-eight\": 58181,\n  \"clock-eleven-thirty\": 58184,\n  \"clock-eleven\": 58183,\n  \"clock-five-thirty\": 58186,\n  \"clock-five\": 58185,\n  \"clock-four-thirty\": 58187,\n  \"clock-four\": 61463,\n  \"clock-nine-thirty\": 58189,\n  \"clock-nine\": 58188,\n  \"clock-one-thirty\": 58191,\n  \"clock-one\": 58190,\n  \"clock-rotate-left\": 61914,\n  \"clock-seven-thirty\": 58193,\n  \"clock-seven\": 58192,\n  \"clock-six-thirty\": 58195,\n  \"clock-six\": 58194,\n  \"clock-ten-thirty\": 58197,\n  \"clock-ten\": 58196,\n  \"clock-three-thirty\": 58199,\n  \"clock-three\": 58198,\n  \"clock-twelve-thirty\": 58201,\n  \"clock-twelve\": 58200,\n  \"clock-two-thirty\": 58203,\n  \"clock-two\": 58202,\n  \"clock\": 61463,\n  \"clone-plus\": 59212,\n  \"clone\": 62029,\n  \"close\": 61453,\n  \"closed-captioning-slash\": 57653,\n  \"closed-captioning\": 61962,\n  \"clothes-hanger\": 57654,\n  \"cloud-arrow-down\": 61677,\n  \"cloud-arrow-up\": 61678,\n  \"cloud-binary\": 58881,\n  \"cloud-bolt-moon\": 63341,\n  \"cloud-bolt-sun\": 63342,\n  \"cloud-bolt\": 63340,\n  \"cloud-check\": 58204,\n  \"cloud-download-alt\": 61677,\n  \"cloud-download\": 61677,\n  \"cloud-drizzle\": 63288,\n  \"cloud-exclamation\": 58513,\n  \"cloud-fog\": 63310,\n  \"cloud-hail-mixed\": 63290,\n  \"cloud-hail\": 63289,\n  \"cloud-meatball\": 63291,\n  \"cloud-minus\": 58205,\n  \"cloud-moon-rain\": 63292,\n  \"cloud-moon\": 63171,\n  \"cloud-music\": 63662,\n  \"cloud-plus\": 58206,\n  \"cloud-question\": 58514,\n  \"cloud-rain\": 63293,\n  \"cloud-rainbow\": 63294,\n  \"cloud-showers-heavy\": 63296,\n  \"cloud-showers-water\": 58596,\n  \"cloud-showers\": 63295,\n  \"cloud-slash\": 57655,\n  \"cloud-sleet\": 63297,\n  \"cloud-snow\": 63298,\n  \"cloud-sun-rain\": 63299,\n  \"cloud-sun\": 63172,\n  \"cloud-upload-alt\": 61678,\n  \"cloud-upload\": 61678,\n  \"cloud-word\": 57656,\n  \"cloud-xmark\": 58207,\n  \"cloud\": 61634,\n  \"clouds-moon\": 63301,\n  \"clouds-sun\": 63302,\n  \"clouds\": 63300,\n  \"clover\": 57657,\n  \"club\": 62247,\n  \"cny\": 61783,\n  \"cocktail\": 62817,\n  \"coconut\": 58102,\n  \"code-branch\": 61734,\n  \"code-commit\": 62342,\n  \"code-compare\": 57658,\n  \"code-fork\": 57659,\n  \"code-merge\": 62343,\n  \"code-pull-request-closed\": 58361,\n  \"code-pull-request-draft\": 58362,\n  \"code-pull-request\": 57660,\n  \"code-simple\": 57661,\n  \"code\": 61729,\n  \"coffee-bean\": 57662,\n  \"coffee-beans\": 57663,\n  \"coffee-pot\": 57346,\n  \"coffee-togo\": 63173,\n  \"coffee\": 61684,\n  \"coffin-cross\": 57425,\n  \"coffin\": 63174,\n  \"cog\": 61459,\n  \"cogs\": 61573,\n  \"coin-blank\": 58363,\n  \"coin-front\": 58364,\n  \"coin-vertical\": 58365,\n  \"coin\": 63580,\n  \"coins\": 62750,\n  \"colon-sign\": 57664,\n  \"colon\": 58,\n  \"columns-3\": 58209,\n  \"columns\": 61659,\n  \"comet\": 57347,\n  \"comma\": 44,\n  \"command\": 57666,\n  \"comment-alt-arrow-down\": 57819,\n  \"comment-alt-arrow-up\": 57820,\n  \"comment-alt-captions\": 57822,\n  \"comment-alt-check\": 62626,\n  \"comment-alt-dollar\": 63056,\n  \"comment-alt-dots\": 62627,\n  \"comment-alt-edit\": 62628,\n  \"comment-alt-exclamation\": 62629,\n  \"comment-alt-image\": 57824,\n  \"comment-alt-lines\": 62630,\n  \"comment-alt-medical\": 63476,\n  \"comment-alt-minus\": 62631,\n  \"comment-alt-music\": 63663,\n  \"comment-alt-plus\": 62632,\n  \"comment-alt-quote\": 57828,\n  \"comment-alt-slash\": 62633,\n  \"comment-alt-smile\": 62634,\n  \"comment-alt-text\": 57830,\n  \"comment-alt-times\": 62635,\n  \"comment-alt\": 62074,\n  \"comment-arrow-down\": 57667,\n  \"comment-arrow-up-right\": 57669,\n  \"comment-arrow-up\": 57668,\n  \"comment-captions\": 57670,\n  \"comment-check\": 62636,\n  \"comment-code\": 57671,\n  \"comment-dollar\": 63057,\n  \"comment-dot\": 59100,\n  \"comment-dots\": 62637,\n  \"comment-edit\": 62638,\n  \"comment-exclamation\": 62639,\n  \"comment-heart\": 58824,\n  \"comment-image\": 57672,\n  \"comment-lines\": 62640,\n  \"comment-medical\": 63477,\n  \"comment-middle-alt\": 57825,\n  \"comment-middle-top-alt\": 57826,\n  \"comment-middle-top\": 57674,\n  \"comment-middle\": 57673,\n  \"comment-minus\": 62641,\n  \"comment-music\": 63664,\n  \"comment-nodes\": 59030,\n  \"comment-pen\": 62638,\n  \"comment-plus\": 62642,\n  \"comment-question\": 57675,\n  \"comment-quote\": 57676,\n  \"comment-slash\": 62643,\n  \"comment-smile\": 62644,\n  \"comment-sms\": 63437,\n  \"comment-text\": 57677,\n  \"comment-times\": 62645,\n  \"comment-waveform\": 59101,\n  \"comment-xmark\": 62645,\n  \"comment\": 61557,\n  \"commenting\": 62637,\n  \"comments-alt-dollar\": 63058,\n  \"comments-alt\": 62646,\n  \"comments-dollar\": 63059,\n  \"comments-question-check\": 57679,\n  \"comments-question\": 57678,\n  \"comments\": 61574,\n  \"compact-disc\": 62751,\n  \"compass-drafting\": 62824,\n  \"compass-slash\": 62953,\n  \"compass\": 61774,\n  \"compress-alt\": 62498,\n  \"compress-arrows-alt\": 63372,\n  \"compress-arrows\": 57509,\n  \"compress-wide\": 62246,\n  \"compress\": 61542,\n  \"computer-classic\": 63665,\n  \"computer-mouse-button-left\": 59341,\n  \"computer-mouse-button-right\": 59342,\n  \"computer-mouse-scrollwheel\": 63693,\n  \"computer-mouse\": 63692,\n  \"computer-speaker\": 63666,\n  \"computer\": 58597,\n  \"concierge-bell\": 62818,\n  \"construction\": 63581,\n  \"contact-book\": 62137,\n  \"contact-card\": 62139,\n  \"container-storage\": 62647,\n  \"conveyor-belt-alt\": 62575,\n  \"conveyor-belt-arm\": 58872,\n  \"conveyor-belt-boxes\": 62575,\n  \"conveyor-belt-empty\": 57680,\n  \"conveyor-belt\": 62574,\n  \"cookie-bite\": 62820,\n  \"cookie\": 62819,\n  \"copy\": 61637,\n  \"copyright\": 61945,\n  \"corn\": 63175,\n  \"corner\": 58366,\n  \"couch-small\": 62668,\n  \"couch\": 62648,\n  \"court-sport\": 58947,\n  \"cow\": 63176,\n  \"cowbell-circle-plus\": 63668,\n  \"cowbell-more\": 63668,\n  \"cowbell\": 63667,\n  \"crab\": 58367,\n  \"crate-apple\": 63153,\n  \"crate-empty\": 57681,\n  \"credit-card-alt\": 61597,\n  \"credit-card-blank\": 62345,\n  \"credit-card-front\": 62346,\n  \"credit-card\": 61597,\n  \"creemee\": 58368,\n  \"cricket-bat-ball\": 62537,\n  \"cricket\": 62537,\n  \"croissant\": 63478,\n  \"crop-alt\": 62821,\n  \"crop-simple\": 62821,\n  \"crop\": 61733,\n  \"cross\": 63060,\n  \"crosshairs-simple\": 58783,\n  \"crosshairs\": 61531,\n  \"crow\": 62752,\n  \"crown\": 62753,\n  \"crutch\": 63479,\n  \"crutches\": 63480,\n  \"cruzeiro-sign\": 57682,\n  \"crystal-ball\": 58210,\n  \"cube\": 61874,\n  \"cubes-stacked\": 58598,\n  \"cubes\": 61875,\n  \"cucumber\": 58369,\n  \"cup-straw-swoosh\": 58212,\n  \"cup-straw\": 58211,\n  \"cup-togo\": 63173,\n  \"cupcake\": 58370,\n  \"curling-stone\": 62538,\n  \"curling\": 62538,\n  \"currency-sign\": 59179,\n  \"custard\": 58371,\n  \"cut\": 61636,\n  \"cutlery\": 62183,\n  \"d\": 68,\n  \"dagger\": 63179,\n  \"danish-krone-sign\": 59168,\n  \"dash\": 58372,\n  \"dashboard\": 63012,\n  \"database\": 61888,\n  \"deaf\": 62116,\n  \"deafness\": 62116,\n  \"debug\": 63481,\n  \"dedent\": 61499,\n  \"deer-rudolph\": 63375,\n  \"deer\": 63374,\n  \"delete-left\": 62810,\n  \"delete-right\": 57684,\n  \"democrat\": 63303,\n  \"desk\": 59518,\n  \"desktop-alt\": 62352,\n  \"desktop-arrow-down\": 57685,\n  \"desktop-code\": 57701,\n  \"desktop-medical\": 57702,\n  \"desktop-slash\": 58106,\n  \"desktop\": 62352,\n  \"dewpoint\": 63304,\n  \"dharmachakra\": 63061,\n  \"diagnoses\": 62576,\n  \"diagram-cells\": 58485,\n  \"diagram-lean-canvas\": 57686,\n  \"diagram-nested\": 57687,\n  \"diagram-next\": 58486,\n  \"diagram-predecessor\": 58487,\n  \"diagram-previous\": 58488,\n  \"diagram-project\": 62786,\n  \"diagram-sankey\": 57688,\n  \"diagram-subtask\": 58489,\n  \"diagram-successor\": 58490,\n  \"diagram-venn\": 57690,\n  \"dial-high\": 57692,\n  \"dial-low\": 57693,\n  \"dial-max\": 57694,\n  \"dial-med-high\": 57691,\n  \"dial-med-low\": 57696,\n  \"dial-med\": 57695,\n  \"dial-min\": 57697,\n  \"dial-off\": 57698,\n  \"dial\": 57691,\n  \"dialpad\": 59340,\n  \"diamond-exclamation\": 58373,\n  \"diamond-half-stroke\": 58808,\n  \"diamond-half\": 58807,\n  \"diamond-turn-right\": 62955,\n  \"diamond\": 61977,\n  \"diamonds-4\": 59019,\n  \"dice-d10\": 63181,\n  \"dice-d12\": 63182,\n  \"dice-d20\": 63183,\n  \"dice-d4\": 63184,\n  \"dice-d6\": 63185,\n  \"dice-d8\": 63186,\n  \"dice-five\": 62755,\n  \"dice-four\": 62756,\n  \"dice-one\": 62757,\n  \"dice-six\": 62758,\n  \"dice-three\": 62759,\n  \"dice-two\": 62760,\n  \"dice\": 62754,\n  \"digging\": 63582,\n  \"digital-tachograph\": 62822,\n  \"dinosaur\": 58878,\n  \"diploma\": 62954,\n  \"direction-left-right\": 59070,\n  \"direction-up-down\": 59071,\n  \"directions\": 62955,\n  \"disc-drive\": 63669,\n  \"disease\": 63482,\n  \"display-arrow-down\": 57700,\n  \"display-chart-up-circle-currency\": 58853,\n  \"display-chart-up-circle-dollar\": 58854,\n  \"display-chart-up\": 58851,\n  \"display-code\": 57701,\n  \"display-medical\": 57702,\n  \"display-slash\": 58106,\n  \"display\": 57699,\n  \"distribute-spacing-horizontal\": 58213,\n  \"distribute-spacing-vertical\": 58214,\n  \"ditto\": 34,\n  \"divide\": 62761,\n  \"dizzy\": 62823,\n  \"dna\": 62577,\n  \"do-not-enter\": 62956,\n  \"dog-leashed\": 63188,\n  \"dog\": 63187,\n  \"dollar-circle\": 62184,\n  \"dollar-sign\": 36,\n  \"dollar-square\": 62185,\n  \"dollar\": 36,\n  \"dolly-box\": 62578,\n  \"dolly-empty\": 62579,\n  \"dolly-flatbed-alt\": 62581,\n  \"dolly-flatbed-empty\": 62582,\n  \"dolly-flatbed\": 62580,\n  \"dolly\": 62578,\n  \"dolphin\": 57704,\n  \"donate\": 62649,\n  \"dong-sign\": 57705,\n  \"donut\": 58374,\n  \"door-closed\": 62762,\n  \"door-open\": 62763,\n  \"dot-circle\": 61842,\n  \"dot\": 59345,\n  \"doughnut\": 58374,\n  \"dove\": 62650,\n  \"down-from-bracket\": 58987,\n  \"down-from-dotted-line\": 58375,\n  \"down-from-line\": 62281,\n  \"down-left-and-up-right-to-center\": 62498,\n  \"down-left\": 57706,\n  \"down-long-to-line\": 59072,\n  \"down-long\": 62217,\n  \"down-right\": 57707,\n  \"down-to-bracket\": 58599,\n  \"down-to-dotted-line\": 58376,\n  \"down-to-line\": 62282,\n  \"down-up\": 59073,\n  \"down\": 62292,\n  \"download\": 61465,\n  \"drafting-compass\": 62824,\n  \"dragon\": 63189,\n  \"draw-circle\": 62957,\n  \"draw-polygon\": 62958,\n  \"draw-square\": 62959,\n  \"dreidel\": 63378,\n  \"dress\": 59089,\n  \"dresser\": 59519,\n  \"drivers-license\": 62146,\n  \"drone-alt\": 63584,\n  \"drone-front\": 63584,\n  \"drone\": 63583,\n  \"droplet-degree\": 63304,\n  \"droplet-percent\": 63312,\n  \"droplet-plus\": 59392,\n  \"droplet-slash\": 62919,\n  \"droplet\": 61507,\n  \"drum-steelpan\": 62826,\n  \"drum\": 62825,\n  \"drumstick-bite\": 63191,\n  \"drumstick\": 63190,\n  \"dryer-alt\": 63586,\n  \"dryer-heat\": 63586,\n  \"dryer\": 63585,\n  \"duck\": 63192,\n  \"dumbbell\": 62539,\n  \"dumpster-fire\": 63380,\n  \"dumpster\": 63379,\n  \"dungeon\": 63193,\n  \"e\": 69,\n  \"ear-circle-checkmark\": 59227,\n  \"ear-deaf\": 62116,\n  \"ear-listen\": 62114,\n  \"ear-muffs\": 63381,\n  \"ear-triangle-exclamation\": 59228,\n  \"ear-waveform\": 59229,\n  \"ear\": 62960,\n  \"earth-africa\": 62844,\n  \"earth-america\": 62845,\n  \"earth-americas\": 62845,\n  \"earth-asia\": 62846,\n  \"earth-europe\": 63394,\n  \"earth-oceania\": 58491,\n  \"earth\": 62845,\n  \"eclipse-alt\": 63306,\n  \"eclipse\": 63305,\n  \"edit\": 61508,\n  \"egg-fried\": 63484,\n  \"egg\": 63483,\n  \"eggplant\": 57708,\n  \"eject\": 61522,\n  \"elephant\": 63194,\n  \"elevator\": 57709,\n  \"ellipsis-h-alt\": 62363,\n  \"ellipsis-h\": 61761,\n  \"ellipsis-stroke-vertical\": 62364,\n  \"ellipsis-stroke\": 62363,\n  \"ellipsis-v-alt\": 62364,\n  \"ellipsis-v\": 61762,\n  \"ellipsis-vertical\": 61762,\n  \"ellipsis\": 61761,\n  \"empty-set\": 63062,\n  \"engine-exclamation\": 62962,\n  \"engine-warning\": 62962,\n  \"engine\": 57710,\n  \"envelope-badge\": 57711,\n  \"envelope-certificate\": 59433,\n  \"envelope-circle-check\": 58600,\n  \"envelope-circle-user\": 59102,\n  \"envelope-circle\": 57612,\n  \"envelope-dot\": 57711,\n  \"envelope-open-dollar\": 63063,\n  \"envelope-open-text\": 63064,\n  \"envelope-open\": 62134,\n  \"envelope-ribbon\": 59433,\n  \"envelope-square\": 61849,\n  \"envelope\": 61664,\n  \"envelopes-bulk\": 63092,\n  \"envelopes\": 57712,\n  \"equals\": 61,\n  \"eraser\": 61741,\n  \"escalator\": 57713,\n  \"ethernet\": 63382,\n  \"eur\": 61779,\n  \"euro-sign\": 61779,\n  \"euro\": 61779,\n  \"eurozone-sign\": 59200,\n  \"excavator\": 58966,\n  \"exchange-alt\": 62306,\n  \"exchange\": 61676,\n  \"exclamation-circle\": 61546,\n  \"exclamation-square\": 62241,\n  \"exclamation-triangle\": 61553,\n  \"exclamation\": 33,\n  \"expand-alt\": 62500,\n  \"expand-arrows-alt\": 62238,\n  \"expand-arrows\": 62237,\n  \"expand-wide\": 62240,\n  \"expand\": 61541,\n  \"exploding-head\": 58110,\n  \"explosion\": 58601,\n  \"external-link-alt\": 62301,\n  \"external-link-square-alt\": 62304,\n  \"external-link-square\": 61772,\n  \"external-link\": 61582,\n  \"eye-closed\": 59451,\n  \"eye-dropper-empty\": 61947,\n  \"eye-dropper-full\": 57714,\n  \"eye-dropper-half\": 57715,\n  \"eye-dropper\": 61947,\n  \"eye-evil\": 63195,\n  \"eye-low-vision\": 62120,\n  \"eye-slash\": 61552,\n  \"eye\": 61550,\n  \"eyedropper\": 61947,\n  \"eyes\": 58215,\n  \"f\": 70,\n  \"face-angry-horns\": 58216,\n  \"face-angry\": 62806,\n  \"face-anguished\": 58217,\n  \"face-anxious-sweat\": 58218,\n  \"face-astonished\": 58219,\n  \"face-awesome\": 58377,\n  \"face-beam-hand-over-mouth\": 58492,\n  \"face-clouds\": 58493,\n  \"face-confounded\": 58220,\n  \"face-confused\": 58221,\n  \"face-cowboy-hat\": 58222,\n  \"face-diagonal-mouth\": 58494,\n  \"face-disappointed\": 58223,\n  \"face-disguise\": 58224,\n  \"face-dizzy\": 62823,\n  \"face-dotted\": 58495,\n  \"face-downcast-sweat\": 58225,\n  \"face-drooling\": 58226,\n  \"face-exhaling\": 58496,\n  \"face-explode\": 58110,\n  \"face-expressionless\": 58227,\n  \"face-eyes-xmarks\": 58228,\n  \"face-fearful\": 58229,\n  \"face-flushed\": 62841,\n  \"face-frown-open\": 62842,\n  \"face-frown-slight\": 58230,\n  \"face-frown\": 61721,\n  \"face-glasses\": 58231,\n  \"face-grimace\": 62847,\n  \"face-grin-beam-sweat\": 62851,\n  \"face-grin-beam\": 62850,\n  \"face-grin-hearts\": 62852,\n  \"face-grin-squint-tears\": 62854,\n  \"face-grin-squint\": 62853,\n  \"face-grin-stars\": 62855,\n  \"face-grin-tears\": 62856,\n  \"face-grin-tongue-squint\": 62858,\n  \"face-grin-tongue-wink\": 62859,\n  \"face-grin-tongue\": 62857,\n  \"face-grin-wide\": 62849,\n  \"face-grin-wink\": 62860,\n  \"face-grin\": 62848,\n  \"face-hand-over-mouth\": 58232,\n  \"face-hand-peeking\": 58497,\n  \"face-hand-yawn\": 58233,\n  \"face-head-bandage\": 58234,\n  \"face-holding-back-tears\": 58498,\n  \"face-hushed\": 58235,\n  \"face-icicles\": 58236,\n  \"face-kiss-beam\": 62871,\n  \"face-kiss-closed-eyes\": 58237,\n  \"face-kiss-wink-heart\": 62872,\n  \"face-kiss\": 62870,\n  \"face-laugh-beam\": 62874,\n  \"face-laugh-squint\": 62875,\n  \"face-laugh-wink\": 62876,\n  \"face-laugh\": 62873,\n  \"face-lying\": 58238,\n  \"face-mask\": 58239,\n  \"face-meh-blank\": 62884,\n  \"face-meh\": 61722,\n  \"face-melting\": 58499,\n  \"face-monocle\": 58240,\n  \"face-nauseated\": 58241,\n  \"face-nose-steam\": 58242,\n  \"face-party\": 58243,\n  \"face-pensive\": 58244,\n  \"face-persevering\": 58245,\n  \"face-pleading\": 58246,\n  \"face-pouting\": 58247,\n  \"face-raised-eyebrow\": 58248,\n  \"face-relieved\": 58249,\n  \"face-rolling-eyes\": 62885,\n  \"face-sad-cry\": 62899,\n  \"face-sad-sweat\": 58250,\n  \"face-sad-tear\": 62900,\n  \"face-saluting\": 58500,\n  \"face-scream\": 58251,\n  \"face-shaking-horizontal\": 59293,\n  \"face-shaking-vertical\": 59294,\n  \"face-shaking\": 59292,\n  \"face-shush\": 58252,\n  \"face-sleeping\": 58253,\n  \"face-sleepy\": 58254,\n  \"face-smile-beam\": 62904,\n  \"face-smile-halo\": 58255,\n  \"face-smile-hearts\": 58256,\n  \"face-smile-horns\": 58257,\n  \"face-smile-plus\": 62905,\n  \"face-smile-relaxed\": 58258,\n  \"face-smile-tear\": 58259,\n  \"face-smile-tongue\": 58260,\n  \"face-smile-upside-down\": 58261,\n  \"face-smile-wink\": 62682,\n  \"face-smile\": 61720,\n  \"face-smiling-hands\": 58262,\n  \"face-smirking\": 58263,\n  \"face-spiral-eyes\": 58501,\n  \"face-sunglasses\": 58264,\n  \"face-surprise\": 62914,\n  \"face-swear\": 58265,\n  \"face-thermometer\": 58266,\n  \"face-thinking\": 58267,\n  \"face-tired\": 62920,\n  \"face-tissue\": 58268,\n  \"face-tongue-money\": 58269,\n  \"face-tongue-sweat\": 58270,\n  \"face-unamused\": 58271,\n  \"face-viewfinder\": 58111,\n  \"face-vomit\": 58272,\n  \"face-weary\": 58273,\n  \"face-woozy\": 58274,\n  \"face-worried\": 58275,\n  \"face-zany\": 58276,\n  \"face-zipper\": 58277,\n  \"falafel\": 58378,\n  \"family-dress\": 58113,\n  \"family-pants\": 58114,\n  \"family\": 58112,\n  \"fan-table\": 57348,\n  \"fan\": 63587,\n  \"farm\": 63588,\n  \"fast-backward\": 61513,\n  \"fast-forward\": 61520,\n  \"faucet-drip\": 57350,\n  \"faucet\": 57349,\n  \"fax\": 61868,\n  \"feather-alt\": 62827,\n  \"feather-pointed\": 62827,\n  \"feather\": 62765,\n  \"feed\": 61598,\n  \"female\": 61826,\n  \"fence\": 58115,\n  \"ferris-wheel\": 57716,\n  \"ferry\": 58602,\n  \"field-hockey-stick-ball\": 62540,\n  \"field-hockey\": 62540,\n  \"fighter-jet\": 61691,\n  \"file-aiff\": 59387,\n  \"file-alt\": 61788,\n  \"file-archive\": 61894,\n  \"file-arrow-down\": 62829,\n  \"file-arrow-up\": 62836,\n  \"file-audio\": 61895,\n  \"file-award\": 62963,\n  \"file-ban\": 59224,\n  \"file-binary\": 57717,\n  \"file-brackets-curly\": 59396,\n  \"file-cad\": 58994,\n  \"file-caret-down\": 58409,\n  \"file-caret-up\": 58410,\n  \"file-certificate\": 62963,\n  \"file-chart-column\": 63065,\n  \"file-chart-line\": 63065,\n  \"file-chart-pie\": 63066,\n  \"file-check\": 62230,\n  \"file-circle-check\": 58784,\n  \"file-circle-exclamation\": 58603,\n  \"file-circle-info\": 58515,\n  \"file-circle-minus\": 58605,\n  \"file-circle-plus\": 58516,\n  \"file-circle-question\": 58607,\n  \"file-circle-xmark\": 58785,\n  \"file-clipboard\": 61674,\n  \"file-code\": 61897,\n  \"file-contract\": 62828,\n  \"file-css\": 59452,\n  \"file-csv\": 63197,\n  \"file-dashed-line\": 63607,\n  \"file-doc\": 58861,\n  \"file-download\": 62829,\n  \"file-edit\": 62236,\n  \"file-eps\": 58948,\n  \"file-excel\": 61891,\n  \"file-exclamation\": 62234,\n  \"file-export\": 62830,\n  \"file-fragment\": 59031,\n  \"file-gif\": 58949,\n  \"file-half-dashed\": 59032,\n  \"file-heart\": 57718,\n  \"file-html\": 59453,\n  \"file-icns\": 59457,\n  \"file-image\": 61893,\n  \"file-import\": 62831,\n  \"file-invoice-dollar\": 62833,\n  \"file-invoice\": 62832,\n  \"file-jpg\": 58950,\n  \"file-js\": 59454,\n  \"file-lines\": 61788,\n  \"file-lock\": 58278,\n  \"file-magnifying-glass\": 63589,\n  \"file-medical-alt\": 62584,\n  \"file-medical\": 62583,\n  \"file-midi\": 59397,\n  \"file-minus\": 62232,\n  \"file-mov\": 58951,\n  \"file-mp3\": 58952,\n  \"file-mp4\": 58953,\n  \"file-music\": 63670,\n  \"file-odf\": 59388,\n  \"file-pdf\": 61889,\n  \"file-pen\": 62236,\n  \"file-plus-minus\": 57719,\n  \"file-plus\": 62233,\n  \"file-png\": 58982,\n  \"file-powerpoint\": 61892,\n  \"file-ppt\": 58954,\n  \"file-prescription\": 62834,\n  \"file-search\": 63589,\n  \"file-shield\": 58608,\n  \"file-signature\": 62835,\n  \"file-slash\": 58279,\n  \"file-spreadsheet\": 63067,\n  \"file-svg\": 58955,\n  \"file-tex\": 59389,\n  \"file-text\": 61788,\n  \"file-times\": 62231,\n  \"file-upload\": 62836,\n  \"file-user\": 63068,\n  \"file-vector\": 58956,\n  \"file-video\": 61896,\n  \"file-wav\": 59390,\n  \"file-waveform\": 62584,\n  \"file-word\": 61890,\n  \"file-xls\": 58957,\n  \"file-xmark\": 62231,\n  \"file-xml\": 58964,\n  \"file-zip\": 58862,\n  \"file-zipper\": 61894,\n  \"file\": 61787,\n  \"files-medical\": 63485,\n  \"files\": 57720,\n  \"fill-drip\": 62838,\n  \"fill\": 62837,\n  \"film-alt\": 61448,\n  \"film-canister\": 63671,\n  \"film-cannister\": 63671,\n  \"film-music\": 59241,\n  \"film-simple\": 61448,\n  \"film-slash\": 57721,\n  \"film-stack\": 59243,\n  \"film\": 61448,\n  \"films\": 57722,\n  \"filter-circle-dollar\": 63074,\n  \"filter-circle-xmark\": 57723,\n  \"filter-list\": 57724,\n  \"filter-slash\": 57725,\n  \"filter\": 61616,\n  \"filters\": 57726,\n  \"fingerprint\": 62839,\n  \"fire-alt\": 63460,\n  \"fire-burner\": 58609,\n  \"fire-extinguisher\": 61748,\n  \"fire-flame-curved\": 63460,\n  \"fire-flame-simple\": 62570,\n  \"fire-flame\": 63199,\n  \"fire-hydrant\": 57727,\n  \"fire-smoke\": 63307,\n  \"fire\": 61549,\n  \"fireplace\": 63386,\n  \"firewall\": 58332,\n  \"first-aid\": 62585,\n  \"fish-bones\": 58116,\n  \"fish-cooked\": 63486,\n  \"fish-fins\": 58610,\n  \"fish\": 62840,\n  \"fishing-rod\": 58280,\n  \"fist-raised\": 63198,\n  \"flag-alt\": 63308,\n  \"flag-checkered\": 61726,\n  \"flag-pennant\": 62550,\n  \"flag-swallowtail\": 63308,\n  \"flag-usa\": 63309,\n  \"flag\": 61476,\n  \"flame\": 63199,\n  \"flashlight\": 63672,\n  \"flask-gear\": 58865,\n  \"flask-poison\": 63200,\n  \"flask-potion\": 63201,\n  \"flask-round-poison\": 63200,\n  \"flask-round-potion\": 63201,\n  \"flask-vial\": 58611,\n  \"flask\": 61635,\n  \"flatbread-stuffed\": 58380,\n  \"flatbread\": 58379,\n  \"floppy-disk-circle-arrow-right\": 57728,\n  \"floppy-disk-circle-xmark\": 57729,\n  \"floppy-disk-pen\": 57730,\n  \"floppy-disk-times\": 57729,\n  \"floppy-disk\": 61639,\n  \"floppy-disks\": 57731,\n  \"florin-sign\": 57732,\n  \"flower-daffodil\": 63488,\n  \"flower-tulip\": 63489,\n  \"flower\": 63487,\n  \"flushed\": 62841,\n  \"flute\": 63673,\n  \"flux-capacitor\": 63674,\n  \"flying-disc\": 58281,\n  \"fog\": 63310,\n  \"folder-arrow-down\": 57427,\n  \"folder-arrow-left\": 59346,\n  \"folder-arrow-right\": 59347,\n  \"folder-arrow-up\": 57428,\n  \"folder-blank\": 61563,\n  \"folder-bookmark\": 57734,\n  \"folder-check\": 58958,\n  \"folder-closed\": 57733,\n  \"folder-cog\": 57735,\n  \"folder-download\": 57427,\n  \"folder-gear\": 57735,\n  \"folder-grid\": 57736,\n  \"folder-heart\": 57737,\n  \"folder-image\": 57738,\n  \"folder-magnifying-glass\": 57739,\n  \"folder-medical\": 57740,\n  \"folder-minus\": 63069,\n  \"folder-music\": 57741,\n  \"folder-open\": 61564,\n  \"folder-plus\": 63070,\n  \"folder-search\": 57739,\n  \"folder-times\": 63071,\n  \"folder-tree\": 63490,\n  \"folder-upload\": 57428,\n  \"folder-user\": 57742,\n  \"folder-xmark\": 63071,\n  \"folder\": 61563,\n  \"folders\": 63072,\n  \"fondue-pot\": 58381,\n  \"font-awesome-flag\": 62132,\n  \"font-awesome-logo-full\": 62132,\n  \"font-awesome\": 62132,\n  \"font-case\": 63590,\n  \"font\": 61489,\n  \"foot-wing\": 59444,\n  \"football-ball\": 62542,\n  \"football-helmet\": 62543,\n  \"football\": 62542,\n  \"fork-knife\": 62182,\n  \"fork\": 62179,\n  \"forklift\": 62586,\n  \"fort\": 58502,\n  \"forward-fast\": 61520,\n  \"forward-step\": 61521,\n  \"forward\": 61518,\n  \"fragile\": 62651,\n  \"frame\": 58517,\n  \"franc-sign\": 57743,\n  \"french-fries\": 63491,\n  \"frog\": 62766,\n  \"frosty-head\": 63387,\n  \"frown-open\": 62842,\n  \"frown\": 61721,\n  \"function\": 63073,\n  \"funnel-dollar\": 63074,\n  \"futbol-ball\": 61923,\n  \"futbol\": 61923,\n  \"g\": 71,\n  \"galaxy\": 57352,\n  \"gallery-thumbnails\": 58282,\n  \"game-board-alt\": 63592,\n  \"game-board-simple\": 63592,\n  \"game-board\": 63591,\n  \"game-console-handheld-crank\": 58809,\n  \"game-console-handheld\": 63675,\n  \"gamepad-alt\": 58786,\n  \"gamepad-modern\": 58786,\n  \"gamepad\": 61723,\n  \"garage-car\": 57354,\n  \"garage-empty\": 59081,\n  \"garage-open\": 57355,\n  \"garage\": 57353,\n  \"garlic\": 58382,\n  \"gas-pump-left\": 59256,\n  \"gas-pump-right\": 59257,\n  \"gas-pump-slash\": 62964,\n  \"gas-pump\": 62767,\n  \"gauge-circle-bolt\": 58518,\n  \"gauge-circle-minus\": 58519,\n  \"gauge-circle-plus\": 58520,\n  \"gauge-high\": 63013,\n  \"gauge-low\": 63015,\n  \"gauge-max\": 63014,\n  \"gauge-med\": 63012,\n  \"gauge-min\": 63016,\n  \"gauge-simple-high\": 63018,\n  \"gauge-simple-low\": 63020,\n  \"gauge-simple-max\": 63019,\n  \"gauge-simple-med\": 63017,\n  \"gauge-simple-min\": 63021,\n  \"gauge-simple\": 63017,\n  \"gauge\": 63012,\n  \"gave-dandy\": 58377,\n  \"gavel\": 61667,\n  \"gbp\": 61780,\n  \"gear-api\": 59556,\n  \"gear-code\": 58856,\n  \"gear-complex-api\": 59557,\n  \"gear-complex-code\": 58859,\n  \"gear-complex\": 58857,\n  \"gear\": 61459,\n  \"gears\": 61573,\n  \"gem\": 62373,\n  \"gemini\": 59465,\n  \"genderless\": 61997,\n  \"ghost\": 63202,\n  \"gif\": 57744,\n  \"gift-card\": 63075,\n  \"gift\": 61547,\n  \"gifts\": 63388,\n  \"gingerbread-man\": 63389,\n  \"glass-champagne\": 63390,\n  \"glass-cheers\": 63391,\n  \"glass-citrus\": 63593,\n  \"glass-empty\": 57745,\n  \"glass-half-empty\": 57746,\n  \"glass-half-full\": 57746,\n  \"glass-half\": 57746,\n  \"glass-martini-alt\": 62843,\n  \"glass-martini\": 61440,\n  \"glass-water-droplet\": 58613,\n  \"glass-water\": 58612,\n  \"glass-whiskey-rocks\": 63393,\n  \"glass-whiskey\": 63392,\n  \"glass\": 63492,\n  \"glasses-alt\": 62965,\n  \"glasses-round\": 62965,\n  \"glasses\": 62768,\n  \"globe-africa\": 62844,\n  \"globe-americas\": 62845,\n  \"globe-asia\": 62846,\n  \"globe-europe\": 63394,\n  \"globe-oceania\": 58491,\n  \"globe-pointer\": 58894,\n  \"globe-snow\": 63395,\n  \"globe-stand\": 62966,\n  \"globe-wifi\": 59013,\n  \"globe-www\": 59558,\n  \"globe\": 61612,\n  \"glove-boxing\": 62520,\n  \"goal-net\": 58283,\n  \"golf-ball-tee\": 62544,\n  \"golf-ball\": 62544,\n  \"golf-club\": 62545,\n  \"golf-flag-hole\": 58284,\n  \"gopuram\": 63076,\n  \"gpu\": 59459,\n  \"graduation-cap\": 61853,\n  \"gramophone\": 63677,\n  \"grapes\": 58118,\n  \"grate-droplet\": 57748,\n  \"grate\": 57747,\n  \"greater-than-equal\": 62770,\n  \"greater-than\": 62,\n  \"grid-2-minus\": 59050,\n  \"grid-2-plus\": 57751,\n  \"grid-2\": 57750,\n  \"grid-3\": 57749,\n  \"grid-4\": 57752,\n  \"grid-5\": 57753,\n  \"grid-dividers\": 58285,\n  \"grid-horizontal\": 62861,\n  \"grid-round-2-minus\": 59051,\n  \"grid-round-2-plus\": 58844,\n  \"grid-round-2\": 58843,\n  \"grid-round-4\": 58845,\n  \"grid-round-5\": 58846,\n  \"grid-round\": 58842,\n  \"grid-vertical\": 62862,\n  \"grid\": 57749,\n  \"grill-fire\": 58788,\n  \"grill-hot\": 58789,\n  \"grill\": 58787,\n  \"grimace\": 62847,\n  \"grin-alt\": 62849,\n  \"grin-beam-sweat\": 62851,\n  \"grin-beam\": 62850,\n  \"grin-hearts\": 62852,\n  \"grin-squint-tears\": 62854,\n  \"grin-squint\": 62853,\n  \"grin-stars\": 62855,\n  \"grin-tears\": 62856,\n  \"grin-tongue-squint\": 62858,\n  \"grin-tongue-wink\": 62859,\n  \"grin-tongue\": 62857,\n  \"grin-wink\": 62860,\n  \"grin\": 62848,\n  \"grip-dots-vertical\": 58385,\n  \"grip-dots\": 58384,\n  \"grip-horizontal\": 62861,\n  \"grip-lines-vertical\": 63397,\n  \"grip-lines\": 63396,\n  \"grip-vertical\": 62862,\n  \"grip\": 62861,\n  \"group-arrows-rotate\": 58614,\n  \"guarani-sign\": 57754,\n  \"guitar-electric\": 63678,\n  \"guitar\": 63398,\n  \"guitars\": 63679,\n  \"gun-slash\": 57756,\n  \"gun-squirt\": 57757,\n  \"gun\": 57755,\n  \"h-square\": 61693,\n  \"h\": 72,\n  \"h1\": 62227,\n  \"h2\": 62228,\n  \"h3\": 62229,\n  \"h4\": 63594,\n  \"h5\": 58386,\n  \"h6\": 58387,\n  \"hamburger\": 63493,\n  \"hammer-brush\": 58912,\n  \"hammer-crash\": 58388,\n  \"hammer-war\": 63204,\n  \"hammer\": 63203,\n  \"hamsa\": 63077,\n  \"hand-back-fist\": 62037,\n  \"hand-back-point-down\": 57758,\n  \"hand-back-point-left\": 57759,\n  \"hand-back-point-ribbon\": 57760,\n  \"hand-back-point-right\": 57761,\n  \"hand-back-point-up\": 57762,\n  \"hand-dots\": 62561,\n  \"hand-fingers-crossed\": 57763,\n  \"hand-fist\": 63198,\n  \"hand-heart\": 62652,\n  \"hand-holding-box\": 62587,\n  \"hand-holding-circle-dollar\": 58913,\n  \"hand-holding-dollar\": 62656,\n  \"hand-holding-droplet\": 62657,\n  \"hand-holding-hand\": 58615,\n  \"hand-holding-heart\": 62654,\n  \"hand-holding-magic\": 63205,\n  \"hand-holding-medical\": 57436,\n  \"hand-holding-seedling\": 62655,\n  \"hand-holding-skull\": 57764,\n  \"hand-holding-star\": 59393,\n  \"hand-holding-usd\": 62656,\n  \"hand-holding-water\": 62657,\n  \"hand-holding\": 62653,\n  \"hand-horns\": 57769,\n  \"hand-lizard\": 62040,\n  \"hand-love\": 57765,\n  \"hand-middle-finger\": 63494,\n  \"hand-paper\": 62038,\n  \"hand-peace\": 62043,\n  \"hand-point-down\": 61607,\n  \"hand-point-left\": 61605,\n  \"hand-point-ribbon\": 57766,\n  \"hand-point-right\": 61604,\n  \"hand-point-up\": 61606,\n  \"hand-pointer\": 62042,\n  \"hand-receiving\": 62588,\n  \"hand-rock\": 62037,\n  \"hand-scissors\": 62039,\n  \"hand-shaka\": 59441,\n  \"hand-sparkles\": 57437,\n  \"hand-spock\": 62041,\n  \"hand-wave\": 57767,\n  \"hand\": 62038,\n  \"handcuffs\": 58616,\n  \"hands-american-sign-language-interpreting\": 62115,\n  \"hands-asl-interpreting\": 62115,\n  \"hands-bound\": 58617,\n  \"hands-bubbles\": 57438,\n  \"hands-clapping\": 57768,\n  \"hands-heart\": 62659,\n  \"hands-helping\": 62660,\n  \"hands-holding-child\": 58618,\n  \"hands-holding-circle\": 58619,\n  \"hands-holding-diamond\": 62588,\n  \"hands-holding-dollar\": 62661,\n  \"hands-holding-heart\": 62659,\n  \"hands-holding\": 62658,\n  \"hands-praying\": 63108,\n  \"hands-usd\": 62661,\n  \"hands-wash\": 57438,\n  \"hands\": 62119,\n  \"handshake-alt-slash\": 57440,\n  \"handshake-alt\": 62133,\n  \"handshake-angle\": 62660,\n  \"handshake-simple-slash\": 57440,\n  \"handshake-simple\": 62133,\n  \"handshake-slash\": 57440,\n  \"handshake\": 62133,\n  \"hanukiah\": 63206,\n  \"hard-drive\": 61600,\n  \"hard-hat\": 63495,\n  \"hard-of-hearing\": 62116,\n  \"hashtag-lock\": 58389,\n  \"hashtag\": 35,\n  \"hat-beach\": 58886,\n  \"hat-chef\": 63595,\n  \"hat-cowboy-side\": 63681,\n  \"hat-cowboy\": 63680,\n  \"hat-hard\": 63495,\n  \"hat-santa\": 63399,\n  \"hat-winter\": 63400,\n  \"hat-witch\": 63207,\n  \"hat-wizard\": 63208,\n  \"haykal\": 63078,\n  \"hdd\": 61600,\n  \"head-side-brain\": 63496,\n  \"head-side-circuit\": 59230,\n  \"head-side-cough-slash\": 57442,\n  \"head-side-cough\": 57441,\n  \"head-side-gear\": 58897,\n  \"head-side-goggles\": 63210,\n  \"head-side-headphones\": 63682,\n  \"head-side-heart\": 57770,\n  \"head-side-mask\": 57443,\n  \"head-side-medical\": 63497,\n  \"head-side-speak\": 59231,\n  \"head-side-virus\": 57444,\n  \"head-side\": 63209,\n  \"head-vr\": 63210,\n  \"header\": 61916,\n  \"heading\": 61916,\n  \"headphones-alt\": 61477,\n  \"headphones-simple\": 61477,\n  \"headphones-slash\": 59260,\n  \"headphones\": 61477,\n  \"headset\": 62864,\n  \"heart-broken\": 63401,\n  \"heart-circle-bolt\": 58620,\n  \"heart-circle-check\": 58621,\n  \"heart-circle-exclamation\": 58622,\n  \"heart-circle-minus\": 58623,\n  \"heart-circle-plus\": 58624,\n  \"heart-circle-xmark\": 58625,\n  \"heart-circle\": 62663,\n  \"heart-crack\": 63401,\n  \"heart-half-alt\": 57772,\n  \"heart-half-stroke\": 57772,\n  \"heart-half\": 57771,\n  \"heart-music-camera-bolt\": 63597,\n  \"heart-pulse\": 61982,\n  \"heart-rate\": 62968,\n  \"heart-slash\": 59278,\n  \"heart-square\": 62664,\n  \"heart\": 61444,\n  \"heartbeat\": 61982,\n  \"hearts\": 59279,\n  \"heat\": 57356,\n  \"helicopter-symbol\": 58626,\n  \"helicopter\": 62771,\n  \"helmet-battle\": 63211,\n  \"helmet-safety\": 63495,\n  \"helmet-un\": 58627,\n  \"heptagon\": 59424,\n  \"hexagon-check\": 58390,\n  \"hexagon-divide\": 57773,\n  \"hexagon-equals\": 59058,\n  \"hexagon-exclamation\": 58391,\n  \"hexagon-image\": 58628,\n  \"hexagon-minus\": 62215,\n  \"hexagon-nodes-bolt\": 59034,\n  \"hexagon-nodes\": 59033,\n  \"hexagon-plus\": 62208,\n  \"hexagon-vertical-nft-slanted\": 58629,\n  \"hexagon-vertical-nft\": 58629,\n  \"hexagon-xmark\": 62190,\n  \"hexagon\": 62226,\n  \"high-definition\": 57774,\n  \"highlighter-line\": 57775,\n  \"highlighter\": 62865,\n  \"hiking\": 63212,\n  \"hill-avalanche\": 58631,\n  \"hill-rockslide\": 58632,\n  \"hippo\": 63213,\n  \"history\": 61914,\n  \"hockey-mask\": 63214,\n  \"hockey-puck\": 62547,\n  \"hockey-stick-puck\": 58286,\n  \"hockey-stick\": 59366,\n  \"hockey-sticks\": 62548,\n  \"holly-berry\": 63402,\n  \"home-alt\": 61461,\n  \"home-blank\": 58503,\n  \"home-heart\": 62665,\n  \"home-lg-alt\": 61461,\n  \"home-lg\": 58287,\n  \"home-user\": 57776,\n  \"home\": 61461,\n  \"honey-pot\": 58392,\n  \"hood-cloak\": 63215,\n  \"horizontal-rule\": 63596,\n  \"horse-head\": 63403,\n  \"horse-saddle\": 63683,\n  \"horse\": 63216,\n  \"horseshoe\": 59418,\n  \"hose-reel\": 58394,\n  \"hose\": 58393,\n  \"hospital-alt\": 61688,\n  \"hospital-symbol\": 62590,\n  \"hospital-user\": 63501,\n  \"hospital-wide\": 61688,\n  \"hospital\": 61688,\n  \"hospitals\": 63502,\n  \"hot-tub-person\": 62867,\n  \"hot-tub\": 62867,\n  \"hotdog\": 63503,\n  \"hotel\": 62868,\n  \"hourglass-1\": 62033,\n  \"hourglass-2\": 62034,\n  \"hourglass-3\": 62035,\n  \"hourglass-clock\": 58395,\n  \"hourglass-empty\": 62036,\n  \"hourglass-end\": 62035,\n  \"hourglass-half\": 62034,\n  \"hourglass-start\": 62033,\n  \"hourglass\": 62036,\n  \"house-blank\": 58503,\n  \"house-building\": 57777,\n  \"house-chimney-blank\": 58288,\n  \"house-chimney-crack\": 63217,\n  \"house-chimney-heart\": 57778,\n  \"house-chimney-medical\": 63474,\n  \"house-chimney-user\": 57445,\n  \"house-chimney-window\": 57357,\n  \"house-chimney\": 58287,\n  \"house-circle-check\": 58633,\n  \"house-circle-exclamation\": 58634,\n  \"house-circle-xmark\": 58635,\n  \"house-crack\": 58289,\n  \"house-damage\": 63217,\n  \"house-day\": 57358,\n  \"house-fire\": 58636,\n  \"house-flag\": 58637,\n  \"house-flood-water-circle-arrow-right\": 58639,\n  \"house-flood-water\": 58638,\n  \"house-flood\": 63311,\n  \"house-heart\": 62665,\n  \"house-laptop\": 57446,\n  \"house-leave\": 57359,\n  \"house-lock\": 58640,\n  \"house-medical-circle-check\": 58641,\n  \"house-medical-circle-exclamation\": 58642,\n  \"house-medical-circle-xmark\": 58643,\n  \"house-medical-flag\": 58644,\n  \"house-medical\": 58290,\n  \"house-night\": 57360,\n  \"house-person-arrive\": 57361,\n  \"house-person-depart\": 57359,\n  \"house-person-leave\": 57359,\n  \"house-person-return\": 57361,\n  \"house-return\": 57361,\n  \"house-signal\": 57362,\n  \"house-tree\": 57779,\n  \"house-tsunami\": 58645,\n  \"house-turret\": 57780,\n  \"house-unlock\": 59082,\n  \"house-user\": 57776,\n  \"house-water\": 63311,\n  \"house-window\": 58291,\n  \"house\": 61461,\n  \"hryvnia-sign\": 63218,\n  \"hryvnia\": 63218,\n  \"humidity\": 63312,\n  \"hundred-points\": 58396,\n  \"hurricane\": 63313,\n  \"hydra\": 59014,\n  \"hyphen\": 45,\n  \"i-cursor\": 62022,\n  \"i\": 73,\n  \"ice-cream\": 63504,\n  \"ice-skate\": 63404,\n  \"icicles\": 63405,\n  \"icons-alt\": 63598,\n  \"icons\": 63597,\n  \"id-badge\": 62145,\n  \"id-card-alt\": 62591,\n  \"id-card-clip\": 62591,\n  \"id-card\": 62146,\n  \"igloo\": 63406,\n  \"ils\": 61963,\n  \"image-broken\": 59562,\n  \"image-circle-arrow-down\": 59244,\n  \"image-circle-check\": 59245,\n  \"image-circle-plus\": 59246,\n  \"image-circle-xmark\": 59247,\n  \"image-landscape\": 57781,\n  \"image-music\": 59248,\n  \"image-polaroid-user\": 57782,\n  \"image-polaroid\": 63684,\n  \"image-portrait\": 62432,\n  \"image-slash\": 57783,\n  \"image-stack\": 59249,\n  \"image-user\": 57784,\n  \"image\": 61502,\n  \"images-user\": 57785,\n  \"images\": 62210,\n  \"inbox-arrow-down\": 62224,\n  \"inbox-arrow-up\": 62225,\n  \"inbox-full\": 57786,\n  \"inbox-in\": 62224,\n  \"inbox-out\": 62225,\n  \"inbox\": 61468,\n  \"inboxes\": 57787,\n  \"indent\": 61500,\n  \"indian-rupee-sign\": 57788,\n  \"indian-rupee\": 57788,\n  \"industry-alt\": 62387,\n  \"industry-windows\": 62387,\n  \"industry\": 62069,\n  \"infinity\": 62772,\n  \"info-circle\": 61530,\n  \"info-square\": 62223,\n  \"info\": 61737,\n  \"inhaler\": 62969,\n  \"input-numeric\": 57789,\n  \"input-password\": 59517,\n  \"input-pipe\": 57790,\n  \"input-text\": 57791,\n  \"inr\": 57788,\n  \"institution\": 61852,\n  \"integral\": 63079,\n  \"interrobang\": 58810,\n  \"intersection\": 63080,\n  \"inventory\": 62592,\n  \"island-tree-palm\": 63505,\n  \"island-tropical\": 63505,\n  \"italic\": 61491,\n  \"j\": 74,\n  \"jack-o-lantern\": 62222,\n  \"jar-wheat\": 58647,\n  \"jar\": 58646,\n  \"jeans-straight\": 59091,\n  \"jeans\": 59090,\n  \"jedi\": 63081,\n  \"jet-fighter-up\": 58648,\n  \"jet-fighter\": 61691,\n  \"joint\": 62869,\n  \"journal-whills\": 63082,\n  \"joystick\": 63685,\n  \"jpy\": 61783,\n  \"jug-bottle\": 58875,\n  \"jug-detergent\": 58649,\n  \"jug\": 63686,\n  \"k\": 75,\n  \"kaaba\": 63083,\n  \"kayak\": 59547,\n  \"kazoo\": 63687,\n  \"kerning\": 63599,\n  \"kettlebell\": 59442,\n  \"key-skeleton-left-right\": 58292,\n  \"key-skeleton\": 63219,\n  \"key\": 61572,\n  \"keyboard-brightness-low\": 57793,\n  \"keyboard-brightness\": 57792,\n  \"keyboard-down\": 57794,\n  \"keyboard-left\": 57795,\n  \"keyboard\": 61724,\n  \"keynote\": 63084,\n  \"khanda\": 63085,\n  \"kidneys\": 62971,\n  \"kip-sign\": 57796,\n  \"kiss-beam\": 62871,\n  \"kiss-wink-heart\": 62872,\n  \"kiss\": 62870,\n  \"kit-medical\": 62585,\n  \"kitchen-set\": 58650,\n  \"kite\": 63220,\n  \"kiwi-bird\": 62773,\n  \"kiwi-fruit\": 58124,\n  \"knife-kitchen\": 63221,\n  \"knife\": 62180,\n  \"krw\": 61785,\n  \"l\": 76,\n  \"label\": 59559,\n  \"lacrosse-stick-ball\": 58294,\n  \"lacrosse-stick\": 58293,\n  \"ladder-water\": 62917,\n  \"lambda\": 63086,\n  \"lamp-desk\": 57364,\n  \"lamp-floor\": 57365,\n  \"lamp-street\": 57797,\n  \"lamp\": 62666,\n  \"land-mine-on\": 58651,\n  \"landmark-alt\": 63314,\n  \"landmark-dome\": 63314,\n  \"landmark-flag\": 58652,\n  \"landmark-magnifying-glass\": 58914,\n  \"landmark\": 63087,\n  \"landscape\": 57781,\n  \"language\": 61867,\n  \"laptop-arrow-down\": 57798,\n  \"laptop-binary\": 58855,\n  \"laptop-code\": 62972,\n  \"laptop-file\": 58653,\n  \"laptop-house\": 57446,\n  \"laptop-medical\": 63506,\n  \"laptop-mobile\": 63610,\n  \"laptop-slash\": 57799,\n  \"laptop\": 61705,\n  \"lari-sign\": 57800,\n  \"lasso-sparkles\": 57801,\n  \"lasso\": 63688,\n  \"laugh-beam\": 62874,\n  \"laugh-squint\": 62875,\n  \"laugh-wink\": 62876,\n  \"laugh\": 62873,\n  \"layer-group-minus\": 62974,\n  \"layer-group-plus\": 62975,\n  \"layer-group\": 62973,\n  \"layer-minus\": 62974,\n  \"layer-plus\": 62975,\n  \"layer\": 59455,\n  \"leaf-heart\": 62667,\n  \"leaf-maple\": 63222,\n  \"leaf-oak\": 63223,\n  \"leaf\": 61548,\n  \"leafy-green\": 58397,\n  \"left-from-bracket\": 58988,\n  \"left-from-dotted-line\": 59074,\n  \"left-from-line\": 62280,\n  \"left-long-to-line\": 58398,\n  \"left-long\": 62218,\n  \"left-right\": 62263,\n  \"left-to-bracket\": 58989,\n  \"left-to-dotted-line\": 59075,\n  \"left-to-line\": 62283,\n  \"left\": 62293,\n  \"legal\": 61667,\n  \"lemon\": 61588,\n  \"leo\": 59466,\n  \"less-than-equal\": 62775,\n  \"less-than\": 60,\n  \"level-down-alt\": 62398,\n  \"level-down\": 61769,\n  \"level-up-alt\": 62399,\n  \"level-up\": 61768,\n  \"libra\": 59467,\n  \"life-ring\": 61901,\n  \"light-ceiling\": 57366,\n  \"light-emergency-on\": 58400,\n  \"light-emergency\": 58399,\n  \"light-switch-off\": 57368,\n  \"light-switch-on\": 57369,\n  \"light-switch\": 57367,\n  \"lightbulb-cfl-on\": 58791,\n  \"lightbulb-cfl\": 58790,\n  \"lightbulb-dollar\": 63088,\n  \"lightbulb-exclamation-on\": 57802,\n  \"lightbulb-exclamation\": 63089,\n  \"lightbulb-gear\": 58877,\n  \"lightbulb-message\": 59015,\n  \"lightbulb-on\": 63090,\n  \"lightbulb-slash\": 63091,\n  \"lightbulb\": 61675,\n  \"lighthouse\": 58898,\n  \"lights-holiday\": 63410,\n  \"line-chart\": 61953,\n  \"line-columns\": 63600,\n  \"line-height\": 63601,\n  \"lines-leaning\": 58654,\n  \"link-broken\": 59458,\n  \"link-horizontal-slash\": 57804,\n  \"link-horizontal\": 57803,\n  \"link-simple-slash\": 57806,\n  \"link-simple\": 57805,\n  \"link-slash\": 61735,\n  \"link\": 61633,\n  \"lips\": 62976,\n  \"lira-sign\": 61845,\n  \"list-1-2\": 61643,\n  \"list-alt\": 61474,\n  \"list-check\": 61614,\n  \"list-dots\": 61642,\n  \"list-dropdown\": 57807,\n  \"list-music\": 63689,\n  \"list-numeric\": 61643,\n  \"list-ol\": 61643,\n  \"list-radio\": 57808,\n  \"list-squares\": 61498,\n  \"list-timeline\": 57809,\n  \"list-tree\": 57810,\n  \"list-ul\": 61642,\n  \"list\": 61498,\n  \"litecoin-sign\": 57811,\n  \"loader\": 57812,\n  \"lobster\": 58401,\n  \"location-arrow-slash\": 59258,\n  \"location-arrow-up\": 58938,\n  \"location-arrow\": 61732,\n  \"location-check\": 62982,\n  \"location-circle\": 62978,\n  \"location-crosshairs-slash\": 62979,\n  \"location-crosshairs\": 62977,\n  \"location-dot-slash\": 62981,\n  \"location-dot\": 62405,\n  \"location-exclamation\": 62984,\n  \"location-minus\": 62985,\n  \"location-pen\": 62983,\n  \"location-pin-lock\": 58655,\n  \"location-pin-slash\": 62988,\n  \"location-pin\": 61505,\n  \"location-plus\": 62986,\n  \"location-question\": 62987,\n  \"location-slash\": 62979,\n  \"location-smile\": 62989,\n  \"location-xmark\": 62990,\n  \"location\": 62977,\n  \"lock-a\": 58402,\n  \"lock-alt\": 62221,\n  \"lock-hashtag\": 58403,\n  \"lock-keyhole-open\": 62402,\n  \"lock-keyhole\": 62221,\n  \"lock-open-alt\": 62402,\n  \"lock-open\": 62401,\n  \"lock\": 61475,\n  \"locust\": 58656,\n  \"lollipop\": 58404,\n  \"lollypop\": 58404,\n  \"long-arrow-alt-down\": 62217,\n  \"long-arrow-alt-left\": 62218,\n  \"long-arrow-alt-right\": 62219,\n  \"long-arrow-alt-up\": 62220,\n  \"long-arrow-down\": 61813,\n  \"long-arrow-left\": 61815,\n  \"long-arrow-right\": 61816,\n  \"long-arrow-up\": 61814,\n  \"loveseat\": 62668,\n  \"low-vision\": 62120,\n  \"luchador-mask\": 62549,\n  \"luchador\": 62549,\n  \"luggage-cart\": 62877,\n  \"lungs-virus\": 57447,\n  \"lungs\": 62980,\n  \"lychee\": 59428,\n  \"m\": 77,\n  \"mace\": 63224,\n  \"magic-wand-sparkles\": 58058,\n  \"magic\": 61648,\n  \"magnet\": 61558,\n  \"magnifying-glass-arrow-right\": 58657,\n  \"magnifying-glass-arrows-rotate\": 58974,\n  \"magnifying-glass-chart\": 58658,\n  \"magnifying-glass-dollar\": 63112,\n  \"magnifying-glass-location\": 63113,\n  \"magnifying-glass-minus\": 61456,\n  \"magnifying-glass-music\": 58975,\n  \"magnifying-glass-play\": 58976,\n  \"magnifying-glass-plus\": 61454,\n  \"magnifying-glass-waveform\": 58977,\n  \"magnifying-glass\": 61442,\n  \"mail-bulk\": 63092,\n  \"mail-forward\": 61540,\n  \"mail-reply-all\": 61730,\n  \"mail-reply\": 62437,\n  \"mailbox-flag-up\": 58811,\n  \"mailbox-open-empty\": 59425,\n  \"mailbox-open-letter\": 59427,\n  \"mailbox\": 63507,\n  \"maki-roll\": 58507,\n  \"makizushi\": 58507,\n  \"malaysian-ringgit-sign\": 59130,\n  \"male\": 61827,\n  \"manat-sign\": 57813,\n  \"mandolin\": 63225,\n  \"mango\": 58127,\n  \"manhole\": 57814,\n  \"map-location-dot\": 62880,\n  \"map-location\": 62879,\n  \"map-marked-alt\": 62880,\n  \"map-marked\": 62879,\n  \"map-marker-alt-slash\": 62981,\n  \"map-marker-alt\": 62405,\n  \"map-marker-check\": 62982,\n  \"map-marker-edit\": 62983,\n  \"map-marker-exclamation\": 62984,\n  \"map-marker-minus\": 62985,\n  \"map-marker-plus\": 62986,\n  \"map-marker-question\": 62987,\n  \"map-marker-slash\": 62988,\n  \"map-marker-smile\": 62989,\n  \"map-marker-times\": 62990,\n  \"map-marker-xmark\": 62990,\n  \"map-marker\": 61505,\n  \"map-pin\": 62070,\n  \"map-signs\": 62071,\n  \"map\": 62073,\n  \"marker\": 62881,\n  \"mars-and-venus-burst\": 58659,\n  \"mars-and-venus\": 61988,\n  \"mars-double\": 61991,\n  \"mars-stroke-h\": 61995,\n  \"mars-stroke-right\": 61995,\n  \"mars-stroke-up\": 61994,\n  \"mars-stroke-v\": 61994,\n  \"mars-stroke\": 61993,\n  \"mars\": 61986,\n  \"martini-glass-citrus\": 62817,\n  \"martini-glass-empty\": 61440,\n  \"martini-glass\": 62843,\n  \"mask-face\": 57815,\n  \"mask-luchador\": 62549,\n  \"mask-snorkel\": 58295,\n  \"mask-ventilator\": 58660,\n  \"mask\": 63226,\n  \"masks-theater\": 63024,\n  \"mattress-pillow\": 58661,\n  \"maximize\": 62238,\n  \"meat\": 63508,\n  \"medal\": 62882,\n  \"medkit\": 61690,\n  \"megaphone\": 63093,\n  \"meh-blank\": 62884,\n  \"meh-rolling-eyes\": 62885,\n  \"meh\": 61722,\n  \"melon-slice\": 58129,\n  \"melon\": 58128,\n  \"memo-circle-check\": 57817,\n  \"memo-circle-info\": 58522,\n  \"memo-pad\": 57818,\n  \"memo\": 57816,\n  \"memory\": 62776,\n  \"menorah\": 63094,\n  \"mercury\": 61987,\n  \"merge\": 58662,\n  \"message-arrow-down\": 57819,\n  \"message-arrow-up-right\": 57821,\n  \"message-arrow-up\": 57820,\n  \"message-bot\": 58296,\n  \"message-captions\": 57822,\n  \"message-check\": 62626,\n  \"message-code\": 57823,\n  \"message-dollar\": 63056,\n  \"message-dot\": 59103,\n  \"message-dots\": 62627,\n  \"message-edit\": 62628,\n  \"message-exclamation\": 62629,\n  \"message-heart\": 58825,\n  \"message-image\": 57824,\n  \"message-lines\": 62630,\n  \"message-medical\": 63476,\n  \"message-middle-top\": 57826,\n  \"message-middle\": 57825,\n  \"message-minus\": 62631,\n  \"message-music\": 63663,\n  \"message-pen\": 62628,\n  \"message-plus\": 62632,\n  \"message-question\": 57827,\n  \"message-quote\": 57828,\n  \"message-slash\": 62633,\n  \"message-smile\": 62634,\n  \"message-sms\": 57829,\n  \"message-text\": 57830,\n  \"message-times\": 62635,\n  \"message-waveform\": 59104,\n  \"message-xmark\": 62635,\n  \"message\": 62074,\n  \"messages-dollar\": 63058,\n  \"messages-question\": 57831,\n  \"messages\": 62646,\n  \"messaging\": 62627,\n  \"meteor\": 63315,\n  \"meter-bolt\": 57833,\n  \"meter-droplet\": 57834,\n  \"meter-fire\": 57835,\n  \"meter\": 57832,\n  \"microchip-ai\": 57836,\n  \"microchip\": 62171,\n  \"microphone-alt-slash\": 62777,\n  \"microphone-alt\": 62409,\n  \"microphone-circle-alt\": 57623,\n  \"microphone-circle-plus\": 59261,\n  \"microphone-circle-xmark\": 59262,\n  \"microphone-circle\": 57622,\n  \"microphone-lines-slash\": 62777,\n  \"microphone-lines\": 62409,\n  \"microphone-signal-meter\": 59232,\n  \"microphone-slash\": 61745,\n  \"microphone-stand\": 63691,\n  \"microphone\": 61744,\n  \"microscope\": 62992,\n  \"microwave\": 57371,\n  \"midi\": 59398,\n  \"mill-sign\": 57837,\n  \"mind-share\": 63095,\n  \"minimize\": 63372,\n  \"minus-circle\": 61526,\n  \"minus-hexagon\": 62215,\n  \"minus-large\": 58372,\n  \"minus-octagon\": 62216,\n  \"minus-square\": 61766,\n  \"minus\": 61544,\n  \"mistletoe\": 63412,\n  \"mitten\": 63413,\n  \"mobile-alt\": 62413,\n  \"mobile-android-alt\": 62415,\n  \"mobile-android\": 62414,\n  \"mobile-arrow-down\": 59211,\n  \"mobile-button\": 61707,\n  \"mobile-iphone\": 57838,\n  \"mobile-notch\": 57838,\n  \"mobile-phone\": 62414,\n  \"mobile-retro\": 58663,\n  \"mobile-rotate-reverse\": 59412,\n  \"mobile-rotate\": 59411,\n  \"mobile-screen-button\": 62413,\n  \"mobile-screen\": 62415,\n  \"mobile-signal-out\": 57840,\n  \"mobile-signal\": 57839,\n  \"mobile-slash\": 59413,\n  \"mobile-vibrate-slash\": 59415,\n  \"mobile-vibrate\": 59414,\n  \"mobile\": 62414,\n  \"money-bill-1-wave\": 62779,\n  \"money-bill-1\": 62417,\n  \"money-bill-alt\": 62417,\n  \"money-bill-simple-wave\": 57842,\n  \"money-bill-simple\": 57841,\n  \"money-bill-transfer\": 58664,\n  \"money-bill-trend-up\": 58665,\n  \"money-bill-wave-alt\": 62779,\n  \"money-bill-wave\": 62778,\n  \"money-bill-wheat\": 58666,\n  \"money-bill\": 61654,\n  \"money-bills-alt\": 57844,\n  \"money-bills-simple\": 57844,\n  \"money-bills\": 57843,\n  \"money-check-alt\": 62781,\n  \"money-check-dollar-pen\": 63603,\n  \"money-check-dollar\": 62781,\n  \"money-check-edit-alt\": 63603,\n  \"money-check-edit\": 63602,\n  \"money-check-pen\": 63602,\n  \"money-check\": 62780,\n  \"money-from-bracket\": 58130,\n  \"money-simple-from-bracket\": 58131,\n  \"monitor-heart-rate\": 62993,\n  \"monitor-waveform\": 62993,\n  \"monkey\": 63227,\n  \"monument\": 62886,\n  \"moon-cloud\": 63316,\n  \"moon-first-quarter-inverse\": 59506,\n  \"moon-first-quarter\": 59504,\n  \"moon-full-inverse\": 59507,\n  \"moon-full\": 59505,\n  \"moon-last-quarter-inverse\": 59504,\n  \"moon-last-quarter\": 59506,\n  \"moon-new-inverse\": 59505,\n  \"moon-new\": 59507,\n  \"moon-over-sun\": 63306,\n  \"moon-star\": 59337,\n  \"moon-stars\": 63317,\n  \"moon-waning-crescent-inverse\": 59511,\n  \"moon-waning-crescent\": 59508,\n  \"moon-waning-gibbous-inverse\": 59510,\n  \"moon-waning-gibbous\": 59509,\n  \"moon-waxing-crescent-inverse\": 59509,\n  \"moon-waxing-crescent\": 59510,\n  \"moon-waxing-gibbous-inverse\": 59508,\n  \"moon-waxing-gibbous\": 59511,\n  \"moon\": 61830,\n  \"moped\": 58297,\n  \"mortar-board\": 61853,\n  \"mortar-pestle\": 62887,\n  \"mosque\": 63096,\n  \"mosquito-net\": 58668,\n  \"mosquito\": 58667,\n  \"motorcycle\": 61980,\n  \"mound\": 58669,\n  \"mountain-city\": 58670,\n  \"mountain-sun\": 58671,\n  \"mountain\": 63228,\n  \"mountains\": 63229,\n  \"mouse-alt\": 63693,\n  \"mouse-field\": 58792,\n  \"mouse-pointer\": 62021,\n  \"mouse\": 63692,\n  \"mp3-player\": 63694,\n  \"mug-hot\": 63414,\n  \"mug-marshmallows\": 63415,\n  \"mug-saucer\": 61684,\n  \"mug-tea-saucer\": 57845,\n  \"mug-tea\": 63605,\n  \"mug\": 63604,\n  \"multiply\": 61453,\n  \"museum\": 61852,\n  \"mushroom\": 58405,\n  \"music-alt-slash\": 63696,\n  \"music-alt\": 63695,\n  \"music-magnifying-glass\": 58978,\n  \"music-note-slash\": 63696,\n  \"music-note\": 63695,\n  \"music-slash\": 63697,\n  \"music\": 61441,\n  \"mustache\": 58812,\n  \"n\": 78,\n  \"naira-sign\": 57846,\n  \"narwhal\": 63230,\n  \"nas\": 59553,\n  \"navicon\": 61641,\n  \"nesting-dolls\": 58298,\n  \"network-wired\": 63231,\n  \"neuter\": 61996,\n  \"newspaper\": 61930,\n  \"nfc-lock\": 57848,\n  \"nfc-magnifying-glass\": 57849,\n  \"nfc-pen\": 57850,\n  \"nfc-signal\": 57851,\n  \"nfc-slash\": 57852,\n  \"nfc-symbol\": 58673,\n  \"nfc-trash\": 57853,\n  \"nfc\": 57847,\n  \"nigiri\": 58506,\n  \"non-binary\": 59399,\n  \"norwegian-krone-sign\": 59112,\n  \"nose\": 58813,\n  \"not-equal\": 62782,\n  \"notdef\": 57854,\n  \"note-medical\": 57856,\n  \"note-sticky\": 62025,\n  \"note\": 57855,\n  \"notebook\": 57857,\n  \"notes-medical\": 62593,\n  \"notes-sticky\": 59225,\n  \"notes\": 57858,\n  \"numpad\": 59340,\n  \"o\": 79,\n  \"oar\": 59524,\n  \"oars\": 59525,\n  \"object-exclude\": 58524,\n  \"object-group\": 62023,\n  \"object-intersect\": 58525,\n  \"object-subtract\": 58526,\n  \"object-ungroup\": 62024,\n  \"object-union\": 58527,\n  \"objects-align-bottom\": 58299,\n  \"objects-align-center-horizontal\": 58300,\n  \"objects-align-center-vertical\": 58301,\n  \"objects-align-left\": 58302,\n  \"objects-align-right\": 58303,\n  \"objects-align-top\": 58304,\n  \"objects-column\": 58305,\n  \"octagon-check\": 58406,\n  \"octagon-divide\": 57859,\n  \"octagon-equals\": 59059,\n  \"octagon-exclamation\": 57860,\n  \"octagon-minus\": 62216,\n  \"octagon-plus\": 62209,\n  \"octagon-xmark\": 62192,\n  \"octagon\": 62214,\n  \"octopus\": 59016,\n  \"oil-can-drip\": 57861,\n  \"oil-can\": 62995,\n  \"oil-temp\": 62996,\n  \"oil-temperature\": 62996,\n  \"oil-well\": 58674,\n  \"olive-branch\": 58135,\n  \"olive\": 58134,\n  \"om\": 63097,\n  \"omega\": 63098,\n  \"onion\": 58407,\n  \"open-captioning\": 59263,\n  \"opossum\": 59516,\n  \"option\": 58136,\n  \"ornament\": 63416,\n  \"otter\": 63232,\n  \"outdent\": 61499,\n  \"outlet\": 57372,\n  \"oven\": 57373,\n  \"overline\": 63606,\n  \"owl\": 59551,\n  \"p\": 80,\n  \"page-break\": 63607,\n  \"page-caret-down\": 58409,\n  \"page-caret-up\": 58410,\n  \"page\": 58408,\n  \"pager\": 63509,\n  \"paint-brush-alt\": 62889,\n  \"paint-brush-fine\": 62889,\n  \"paint-brush\": 61948,\n  \"paint-roller\": 62890,\n  \"paintbrush-alt\": 62889,\n  \"paintbrush-fine-slash\": 59213,\n  \"paintbrush-fine\": 62889,\n  \"paintbrush-pencil\": 57862,\n  \"paintbrush-slash\": 59214,\n  \"paintbrush\": 61948,\n  \"palette-boxes\": 62595,\n  \"palette\": 62783,\n  \"pallet-alt\": 62595,\n  \"pallet-box\": 57864,\n  \"pallet-boxes\": 62595,\n  \"pallet\": 62594,\n  \"pan-food\": 58411,\n  \"pan-frying\": 58412,\n  \"pancakes\": 58413,\n  \"panel-ews\": 58414,\n  \"panel-fire\": 58415,\n  \"panorama\": 57865,\n  \"panties\": 59092,\n  \"pants-straight\": 59094,\n  \"pants\": 59093,\n  \"paper-plane-alt\": 57866,\n  \"paper-plane-top\": 57866,\n  \"paper-plane\": 61912,\n  \"paperclip-vertical\": 58306,\n  \"paperclip\": 61638,\n  \"parachute-box\": 62669,\n  \"paragraph-left\": 63608,\n  \"paragraph-rtl\": 63608,\n  \"paragraph\": 61917,\n  \"parentheses\": 57541,\n  \"parenthesis\": 40,\n  \"parking-circle-slash\": 62998,\n  \"parking-circle\": 62997,\n  \"parking-slash\": 62999,\n  \"parking\": 62784,\n  \"party-back\": 58460,\n  \"party-bell\": 58138,\n  \"party-horn\": 58139,\n  \"passport\": 62891,\n  \"pastafarianism\": 63099,\n  \"paste\": 61674,\n  \"pause-circle\": 62091,\n  \"pause\": 61516,\n  \"paw-alt\": 63233,\n  \"paw-claws\": 63234,\n  \"paw-simple\": 63233,\n  \"paw\": 61872,\n  \"peace\": 63100,\n  \"peach\": 57867,\n  \"peanut\": 58416,\n  \"peanuts\": 58417,\n  \"peapod\": 58140,\n  \"pear\": 57868,\n  \"pedestal\": 57869,\n  \"pegasus\": 63235,\n  \"pen-alt-slash\": 57871,\n  \"pen-alt\": 62213,\n  \"pen-circle\": 57870,\n  \"pen-clip-slash\": 57871,\n  \"pen-clip\": 62213,\n  \"pen-fancy-slash\": 57872,\n  \"pen-fancy\": 62892,\n  \"pen-field\": 57873,\n  \"pen-line\": 57874,\n  \"pen-nib-slash\": 58529,\n  \"pen-nib\": 62893,\n  \"pen-paintbrush\": 63000,\n  \"pen-ruler\": 62894,\n  \"pen-slash\": 57875,\n  \"pen-square\": 61771,\n  \"pen-swirl\": 57876,\n  \"pen-to-square\": 61508,\n  \"pen\": 62212,\n  \"pencil-alt\": 62211,\n  \"pencil-line\": 59215,\n  \"pencil-mechanical\": 58826,\n  \"pencil-paintbrush\": 63000,\n  \"pencil-ruler\": 62894,\n  \"pencil-slash\": 57877,\n  \"pencil-square\": 61771,\n  \"pencil\": 62211,\n  \"pennant\": 62550,\n  \"pentagon\": 59280,\n  \"people-arrows-left-right\": 57448,\n  \"people-arrows\": 57448,\n  \"people-carry-box\": 62670,\n  \"people-carry\": 62670,\n  \"people-dress-simple\": 57880,\n  \"people-dress\": 57879,\n  \"people-group\": 58675,\n  \"people-line\": 58676,\n  \"people-pants-simple\": 57882,\n  \"people-pants\": 57881,\n  \"people-pulling\": 58677,\n  \"people-robbery\": 58678,\n  \"people-roof\": 58679,\n  \"people-simple\": 57883,\n  \"people\": 57878,\n  \"pepper-hot\": 63510,\n  \"pepper\": 58418,\n  \"percent\": 37,\n  \"percentage\": 37,\n  \"period\": 46,\n  \"person-arms-raised\": 59267,\n  \"person-arrow-down-to-line\": 58680,\n  \"person-arrow-up-from-line\": 58681,\n  \"person-basketball\": 59268,\n  \"person-biking-mountain\": 63563,\n  \"person-biking\": 63562,\n  \"person-booth\": 63318,\n  \"person-breastfeeding\": 58682,\n  \"person-burst\": 58683,\n  \"person-cane\": 58684,\n  \"person-carry-box\": 62671,\n  \"person-carry-empty\": 59269,\n  \"person-carry\": 62671,\n  \"person-chalkboard\": 58685,\n  \"person-circle-check\": 58686,\n  \"person-circle-exclamation\": 58687,\n  \"person-circle-minus\": 58688,\n  \"person-circle-plus\": 58689,\n  \"person-circle-question\": 58690,\n  \"person-circle-xmark\": 58691,\n  \"person-digging\": 63582,\n  \"person-dolly-empty\": 62673,\n  \"person-dolly\": 62672,\n  \"person-dots-from-line\": 62576,\n  \"person-dress-burst\": 58692,\n  \"person-dress-fairy\": 58887,\n  \"person-dress-simple\": 57884,\n  \"person-dress\": 61826,\n  \"person-drowning\": 58693,\n  \"person-fairy\": 58888,\n  \"person-falling-burst\": 58695,\n  \"person-falling\": 58694,\n  \"person-from-portal\": 57379,\n  \"person-golfing\": 59270,\n  \"person-half-dress\": 58696,\n  \"person-harassing\": 58697,\n  \"person-hiking\": 63212,\n  \"person-limbs-wide\": 59271,\n  \"person-meditating\": 59361,\n  \"person-military-pointing\": 58698,\n  \"person-military-rifle\": 58699,\n  \"person-military-to-person\": 58700,\n  \"person-pinball\": 57885,\n  \"person-praying\": 63107,\n  \"person-pregnant\": 58142,\n  \"person-rays\": 58701,\n  \"person-rifle\": 58702,\n  \"person-running-fast\": 58879,\n  \"person-running\": 63244,\n  \"person-seat-reclined\": 57887,\n  \"person-seat-window\": 59272,\n  \"person-seat\": 57886,\n  \"person-shelter\": 58703,\n  \"person-sign\": 63319,\n  \"person-simple\": 57888,\n  \"person-skating\": 63429,\n  \"person-ski-jumping\": 63431,\n  \"person-ski-lift\": 63432,\n  \"person-skiing-nordic\": 63434,\n  \"person-skiing\": 63433,\n  \"person-sledding\": 63435,\n  \"person-snowboarding\": 63438,\n  \"person-snowmobiling\": 63441,\n  \"person-soccer\": 59273,\n  \"person-swimming-pool\": 59274,\n  \"person-swimming-water\": 59275,\n  \"person-swimming\": 62916,\n  \"person-through-window\": 58793,\n  \"person-to-door\": 58419,\n  \"person-to-portal\": 57378,\n  \"person-walking-arrow-loop-left\": 58705,\n  \"person-walking-arrow-right\": 58706,\n  \"person-walking-dashed-line-arrow-right\": 58707,\n  \"person-walking-luggage\": 58708,\n  \"person-walking-with-cane\": 62109,\n  \"person-walking\": 62804,\n  \"person-water-arms-raised\": 59276,\n  \"person-waving\": 59277,\n  \"person\": 61827,\n  \"peruvian-soles-sign\": 59141,\n  \"peseta-sign\": 57889,\n  \"peso-sign\": 57890,\n  \"phone-alt\": 63609,\n  \"phone-arrow-down-left\": 57891,\n  \"phone-arrow-down\": 57891,\n  \"phone-arrow-right\": 58814,\n  \"phone-arrow-up-right\": 57892,\n  \"phone-arrow-up\": 57892,\n  \"phone-circle-alt\": 57628,\n  \"phone-circle-down\": 57629,\n  \"phone-circle\": 57627,\n  \"phone-connection\": 59105,\n  \"phone-flip\": 63609,\n  \"phone-hangup\": 57893,\n  \"phone-incoming\": 57891,\n  \"phone-intercom\": 58420,\n  \"phone-laptop\": 63610,\n  \"phone-missed\": 57894,\n  \"phone-office\": 63101,\n  \"phone-outgoing\": 57892,\n  \"phone-plus\": 62674,\n  \"phone-rotary\": 63699,\n  \"phone-slash\": 62429,\n  \"phone-square-alt\": 63611,\n  \"phone-square-down\": 57978,\n  \"phone-square\": 61592,\n  \"phone-volume\": 62112,\n  \"phone-waveform\": 59106,\n  \"phone-xmark\": 57895,\n  \"phone\": 61589,\n  \"photo-film-music\": 57896,\n  \"photo-film\": 63612,\n  \"photo-video\": 63612,\n  \"pi\": 63102,\n  \"piano-keyboard\": 63701,\n  \"piano\": 63700,\n  \"pickaxe\": 58815,\n  \"pickleball\": 58421,\n  \"picture-in-picture\": 59403,\n  \"pie-chart\": 61952,\n  \"pie\": 63237,\n  \"pig\": 63238,\n  \"piggy-bank\": 62675,\n  \"pills\": 62596,\n  \"pinata\": 58307,\n  \"pinball\": 57897,\n  \"pineapple\": 58143,\n  \"ping-pong-paddle-ball\": 62557,\n  \"pipe-circle-check\": 58422,\n  \"pipe-collar\": 58423,\n  \"pipe-section\": 58424,\n  \"pipe-smoking\": 58308,\n  \"pipe-valve\": 58425,\n  \"pipe\": 124,\n  \"pisces\": 59468,\n  \"pizza-slice\": 63512,\n  \"pizza\": 63511,\n  \"place-of-worship\": 63103,\n  \"plane-alt\": 62430,\n  \"plane-arrival\": 62895,\n  \"plane-circle-check\": 58709,\n  \"plane-circle-exclamation\": 58710,\n  \"plane-circle-xmark\": 58711,\n  \"plane-departure\": 62896,\n  \"plane-engines\": 62430,\n  \"plane-flying\": 59323,\n  \"plane-landing-gear\": 59324,\n  \"plane-lock\": 58712,\n  \"plane-prop\": 57899,\n  \"plane-slash\": 57449,\n  \"plane-tail\": 57900,\n  \"plane-up-slash\": 57902,\n  \"plane-up\": 57901,\n  \"plane\": 61554,\n  \"planet-moon\": 57375,\n  \"planet-ringed\": 57376,\n  \"plant-wilt\": 58794,\n  \"plate-utensils\": 58427,\n  \"plate-wheat\": 58714,\n  \"play-circle\": 61764,\n  \"play-flip\": 59264,\n  \"play-pause\": 57903,\n  \"play\": 61515,\n  \"plug-circle-bolt\": 58715,\n  \"plug-circle-check\": 58716,\n  \"plug-circle-exclamation\": 58717,\n  \"plug-circle-minus\": 58718,\n  \"plug-circle-plus\": 58719,\n  \"plug-circle-xmark\": 58720,\n  \"plug\": 61926,\n  \"plus-circle\": 61525,\n  \"plus-hexagon\": 62208,\n  \"plus-large\": 58782,\n  \"plus-minus\": 58428,\n  \"plus-octagon\": 62209,\n  \"plus-square\": 61694,\n  \"plus\": 43,\n  \"podcast\": 62158,\n  \"podium-star\": 63320,\n  \"podium\": 63104,\n  \"poker-chip\": 59554,\n  \"police-box\": 57377,\n  \"polish-zloty-sign\": 59147,\n  \"poll-h\": 63106,\n  \"poll-people\": 63321,\n  \"poll\": 63105,\n  \"pompebled\": 58429,\n  \"poo-bolt\": 63322,\n  \"poo-storm\": 63322,\n  \"poo\": 62206,\n  \"pool-8-ball\": 58309,\n  \"poop\": 63001,\n  \"popcorn\": 63513,\n  \"popsicle\": 58430,\n  \"portal-enter\": 57378,\n  \"portal-exit\": 57379,\n  \"portrait\": 62432,\n  \"possum\": 59516,\n  \"postage-stamp\": 59107,\n  \"pot-food\": 58431,\n  \"potato\": 58432,\n  \"pound-sign\": 61780,\n  \"power-off\": 61457,\n  \"pray\": 63107,\n  \"praying-hands\": 63108,\n  \"prescription-bottle-alt\": 62598,\n  \"prescription-bottle-medical\": 62598,\n  \"prescription-bottle-pill\": 58816,\n  \"prescription-bottle\": 62597,\n  \"prescription\": 62897,\n  \"presentation-screen\": 63109,\n  \"presentation\": 63109,\n  \"pretzel\": 58433,\n  \"print-magnifying-glass\": 63514,\n  \"print-search\": 63514,\n  \"print-slash\": 63110,\n  \"print\": 61487,\n  \"pro\": 57909,\n  \"procedures\": 62599,\n  \"project-diagram\": 62786,\n  \"projector\": 63702,\n  \"pronoun\": 59041,\n  \"pump-impeller\": 59445,\n  \"pump-medical\": 57450,\n  \"pump-soap\": 57451,\n  \"pump\": 58434,\n  \"pumpkin\": 63239,\n  \"puzzle-piece-alt\": 57905,\n  \"puzzle-piece-simple\": 57905,\n  \"puzzle-piece\": 61742,\n  \"puzzle\": 58435,\n  \"q\": 81,\n  \"qrcode-read\": 59289,\n  \"qrcode\": 61481,\n  \"question-circle\": 61529,\n  \"question-square\": 62205,\n  \"question\": 63,\n  \"quidditch-broom-ball\": 62552,\n  \"quidditch\": 62552,\n  \"quote-left-alt\": 61709,\n  \"quote-left\": 61709,\n  \"quote-right-alt\": 61710,\n  \"quote-right\": 61710,\n  \"quotes\": 57908,\n  \"quran\": 63111,\n  \"r\": 82,\n  \"rabbit-fast\": 63241,\n  \"rabbit-running\": 63241,\n  \"rabbit\": 63240,\n  \"raccoon\": 58899,\n  \"racquet\": 62554,\n  \"radar\": 57380,\n  \"radiation-alt\": 63418,\n  \"radiation\": 63417,\n  \"radio-alt\": 63704,\n  \"radio-tuner\": 63704,\n  \"radio\": 63703,\n  \"rainbow-half\": 59338,\n  \"rainbow\": 63323,\n  \"raindrops\": 63324,\n  \"ram\": 63242,\n  \"ramp-loading\": 62676,\n  \"random\": 61556,\n  \"ranking-star\": 58721,\n  \"raygun\": 57381,\n  \"receipt\": 62787,\n  \"record-vinyl\": 63705,\n  \"rectangle-4k\": 59250,\n  \"rectangle-ad\": 63041,\n  \"rectangle-api\": 59552,\n  \"rectangle-barcode\": 62563,\n  \"rectangle-beta\": 59400,\n  \"rectangle-code\": 58146,\n  \"rectangle-hd\": 57774,\n  \"rectangle-hdr\": 59251,\n  \"rectangle-high-dynamic-range\": 59251,\n  \"rectangle-history-circle-plus\": 58531,\n  \"rectangle-history-circle-user\": 58532,\n  \"rectangle-history\": 58530,\n  \"rectangle-irc\": 59500,\n  \"rectangle-landscape\": 62202,\n  \"rectangle-list\": 61474,\n  \"rectangle-minus\": 59060,\n  \"rectangle-n-a\": 59560,\n  \"rectangle-new\": 59514,\n  \"rectangle-plus\": 59061,\n  \"rectangle-portrait\": 62203,\n  \"rectangle-pro\": 57909,\n  \"rectangle-sd\": 57994,\n  \"rectangle-tall\": 59281,\n  \"rectangle-terminal\": 57910,\n  \"rectangle-times\": 62480,\n  \"rectangle-vertical-history\": 57911,\n  \"rectangle-vertical\": 62203,\n  \"rectangle-video-on-demand\": 59252,\n  \"rectangle-wide\": 62204,\n  \"rectangle-xmark\": 62480,\n  \"rectangle\": 62202,\n  \"rectangles-mixed\": 58147,\n  \"recycle\": 61880,\n  \"redo-alt\": 62201,\n  \"redo\": 61470,\n  \"reel\": 57912,\n  \"reflect-both\": 58991,\n  \"reflect-horizontal\": 58980,\n  \"reflect-vertical\": 58981,\n  \"refresh\": 61473,\n  \"refrigerator\": 57382,\n  \"registered\": 62045,\n  \"remote\": 59561,\n  \"remove-format\": 63613,\n  \"remove\": 61453,\n  \"renminbi-sign\": 59196,\n  \"reorder\": 62800,\n  \"repeat-1-alt\": 62310,\n  \"repeat-1\": 62309,\n  \"repeat-alt\": 62308,\n  \"repeat\": 62307,\n  \"reply-all\": 61730,\n  \"reply-clock\": 57913,\n  \"reply-time\": 57913,\n  \"reply\": 62437,\n  \"republican\": 63326,\n  \"restroom-simple\": 57914,\n  \"restroom\": 63421,\n  \"retweet-alt\": 62305,\n  \"retweet\": 61561,\n  \"rhombus\": 57915,\n  \"ribbon\": 62678,\n  \"right-from-bracket\": 62197,\n  \"right-from-dotted-line\": 59076,\n  \"right-from-line\": 62279,\n  \"right-left-large\": 58849,\n  \"right-left\": 62306,\n  \"right-long-to-line\": 58436,\n  \"right-long\": 62219,\n  \"right-to-bracket\": 62198,\n  \"right-to-dotted-line\": 59077,\n  \"right-to-line\": 62284,\n  \"right\": 62294,\n  \"ring-diamond\": 58795,\n  \"ring\": 63243,\n  \"rings-wedding\": 63515,\n  \"rmb\": 61783,\n  \"road-barrier\": 58722,\n  \"road-bridge\": 58723,\n  \"road-circle-check\": 58724,\n  \"road-circle-exclamation\": 58725,\n  \"road-circle-xmark\": 58726,\n  \"road-lock\": 58727,\n  \"road-spikes\": 58728,\n  \"road\": 61464,\n  \"robot-astromech\": 58066,\n  \"robot\": 62788,\n  \"rocket-launch\": 57383,\n  \"rocket-vertical\": 59325,\n  \"rocket\": 61749,\n  \"rod-asclepius\": 58745,\n  \"rod-snake\": 58745,\n  \"roller-coaster\": 58148,\n  \"rotate-back\": 62186,\n  \"rotate-backward\": 62186,\n  \"rotate-exclamation\": 57916,\n  \"rotate-forward\": 62201,\n  \"rotate-left\": 62186,\n  \"rotate-reverse\": 58929,\n  \"rotate-right\": 62201,\n  \"rotate\": 62193,\n  \"rouble\": 61784,\n  \"route-highway\": 63002,\n  \"route-interstate\": 63003,\n  \"route\": 62679,\n  \"router\": 63706,\n  \"rows-3\": 59531,\n  \"rows\": 58002,\n  \"rss-square\": 61763,\n  \"rss\": 61598,\n  \"rub\": 61784,\n  \"ruble-sign\": 61784,\n  \"ruble\": 61784,\n  \"rug\": 58729,\n  \"rugby-ball\": 58310,\n  \"ruler-combined\": 62790,\n  \"ruler-horizontal\": 62791,\n  \"ruler-triangle\": 63004,\n  \"ruler-vertical\": 62792,\n  \"ruler\": 62789,\n  \"running\": 63244,\n  \"rupee-sign\": 61782,\n  \"rupee\": 61782,\n  \"rupiah-sign\": 57917,\n  \"rv\": 63422,\n  \"s\": 83,\n  \"sack-dollar\": 63517,\n  \"sack-xmark\": 58730,\n  \"sack\": 63516,\n  \"sad-cry\": 62899,\n  \"sad-tear\": 62900,\n  \"sagittarius\": 59469,\n  \"sailboat\": 58437,\n  \"salad\": 63518,\n  \"salt-shaker\": 58438,\n  \"sandwich\": 63519,\n  \"satellite-dish\": 63424,\n  \"satellite\": 63423,\n  \"sausage\": 63520,\n  \"save-circle-arrow-right\": 57728,\n  \"save-circle-xmark\": 57729,\n  \"save-times\": 57729,\n  \"save\": 61639,\n  \"sax-hot\": 63707,\n  \"saxophone-fire\": 63707,\n  \"saxophone\": 63708,\n  \"scale-balanced\": 62030,\n  \"scale-unbalanced-flip\": 62742,\n  \"scale-unbalanced\": 62741,\n  \"scalpel-line-dashed\": 63006,\n  \"scalpel-path\": 63006,\n  \"scalpel\": 63005,\n  \"scanner-gun\": 62600,\n  \"scanner-image\": 63731,\n  \"scanner-keyboard\": 62601,\n  \"scanner-touchscreen\": 62602,\n  \"scanner\": 62600,\n  \"scarecrow\": 63245,\n  \"scarf\": 63425,\n  \"school-circle-check\": 58731,\n  \"school-circle-exclamation\": 58732,\n  \"school-circle-xmark\": 58733,\n  \"school-flag\": 58734,\n  \"school-lock\": 58735,\n  \"school-unlock\": 59083,\n  \"school\": 62793,\n  \"scissors\": 61636,\n  \"scooter\": 59331,\n  \"scorpio\": 59470,\n  \"screen-users\": 63037,\n  \"screencast\": 57918,\n  \"screenshot\": 57562,\n  \"screwdriver-wrench\": 63449,\n  \"screwdriver\": 62794,\n  \"scribble\": 57919,\n  \"scroll-old\": 63247,\n  \"scroll-ribbon\": 62954,\n  \"scroll-torah\": 63136,\n  \"scroll\": 63246,\n  \"scrubber\": 62200,\n  \"scythe\": 63248,\n  \"sd-card\": 63426,\n  \"sd-cards\": 57920,\n  \"seal-exclamation\": 57922,\n  \"seal-question\": 57923,\n  \"seal\": 57921,\n  \"search-dollar\": 63112,\n  \"search-location\": 63113,\n  \"search-minus\": 61456,\n  \"search-plus\": 61454,\n  \"search\": 61442,\n  \"seat-airline-window\": 59326,\n  \"seat-airline\": 57924,\n  \"seat\": 59236,\n  \"seats\": 59237,\n  \"section\": 58439,\n  \"seedling\": 62680,\n  \"semicolon\": 59,\n  \"send-back\": 63614,\n  \"send-backward\": 63615,\n  \"send\": 57866,\n  \"sensor-alert\": 57385,\n  \"sensor-cloud\": 57388,\n  \"sensor-fire\": 57386,\n  \"sensor-on\": 57387,\n  \"sensor-smoke\": 57388,\n  \"sensor-triangle-exclamation\": 57385,\n  \"sensor\": 57384,\n  \"septagon\": 59424,\n  \"server\": 62003,\n  \"shapes\": 63007,\n  \"share-all\": 62311,\n  \"share-alt-square\": 61921,\n  \"share-alt\": 61920,\n  \"share-from-square\": 61773,\n  \"share-nodes\": 61920,\n  \"share-square\": 61773,\n  \"share\": 61540,\n  \"sheep\": 63249,\n  \"sheet-plastic\": 58737,\n  \"shekel-sign\": 61963,\n  \"shekel\": 61963,\n  \"shelves-empty\": 57926,\n  \"shelves\": 62592,\n  \"sheqel-sign\": 61963,\n  \"sheqel\": 61963,\n  \"shield-alt\": 62445,\n  \"shield-blank\": 61746,\n  \"shield-cat\": 58738,\n  \"shield-check\": 62199,\n  \"shield-cross\": 63250,\n  \"shield-dog\": 58739,\n  \"shield-exclamation\": 57927,\n  \"shield-halved\": 62445,\n  \"shield-heart\": 58740,\n  \"shield-keyhole\": 57928,\n  \"shield-minus\": 57929,\n  \"shield-plus\": 57930,\n  \"shield-quartered\": 58741,\n  \"shield-slash\": 57931,\n  \"shield-times\": 57932,\n  \"shield-user\": 59401,\n  \"shield-virus\": 57452,\n  \"shield-xmark\": 57932,\n  \"shield\": 61746,\n  \"ship-large\": 59408,\n  \"ship\": 61978,\n  \"shipping-fast\": 62603,\n  \"shipping-timed\": 62604,\n  \"shirt-jersey\": 59095,\n  \"shirt-long-sleeve\": 58311,\n  \"shirt-running\": 58312,\n  \"shirt-tank-top\": 58313,\n  \"shirt\": 62803,\n  \"shish-kebab\": 63521,\n  \"shoe-prints\": 62795,\n  \"shoe\": 59096,\n  \"shop-24\": 59290,\n  \"shop-lock\": 58533,\n  \"shop-slash\": 57456,\n  \"shop\": 62799,\n  \"shopping-bag\": 62096,\n  \"shopping-basket-alt\": 57519,\n  \"shopping-basket\": 62097,\n  \"shopping-cart\": 61562,\n  \"shortcake\": 58341,\n  \"shorts\": 59097,\n  \"shovel-snow\": 63427,\n  \"shovel\": 63251,\n  \"shower-alt\": 57933,\n  \"shower-down\": 57933,\n  \"shower\": 62156,\n  \"shredder\": 63114,\n  \"shrimp\": 58440,\n  \"shuffle\": 61556,\n  \"shutters\": 58441,\n  \"shuttle-space-vertical\": 59327,\n  \"shuttle-space\": 61847,\n  \"shuttle-van\": 62902,\n  \"shuttlecock\": 62555,\n  \"sickle\": 63522,\n  \"sidebar-flip\": 57935,\n  \"sidebar\": 57934,\n  \"sigma\": 63115,\n  \"sign-hanging\": 62681,\n  \"sign-in-alt\": 62198,\n  \"sign-in\": 61584,\n  \"sign-language\": 62119,\n  \"sign-out-alt\": 62197,\n  \"sign-out\": 61579,\n  \"sign-post\": 58916,\n  \"sign-posts-wrench\": 58918,\n  \"sign-posts\": 58917,\n  \"sign\": 62681,\n  \"signal-1\": 63116,\n  \"signal-2\": 63117,\n  \"signal-3\": 63118,\n  \"signal-4\": 63119,\n  \"signal-5\": 61458,\n  \"signal-alt-1\": 63121,\n  \"signal-alt-2\": 63122,\n  \"signal-alt-3\": 63123,\n  \"signal-alt-4\": 63120,\n  \"signal-alt-slash\": 63124,\n  \"signal-alt\": 63120,\n  \"signal-bars-fair\": 63122,\n  \"signal-bars-good\": 63123,\n  \"signal-bars-slash\": 63124,\n  \"signal-bars-strong\": 63120,\n  \"signal-bars-weak\": 63121,\n  \"signal-bars\": 63120,\n  \"signal-fair\": 63117,\n  \"signal-good\": 63118,\n  \"signal-perfect\": 61458,\n  \"signal-slash\": 63125,\n  \"signal-stream-slash\": 57936,\n  \"signal-stream\": 63709,\n  \"signal-strong\": 63119,\n  \"signal-weak\": 63116,\n  \"signal\": 61458,\n  \"signapore-dollar-sign\": 59182,\n  \"signature-lock\": 58314,\n  \"signature-slash\": 58315,\n  \"signature\": 62903,\n  \"signing\": 62119,\n  \"signs-post\": 62071,\n  \"sim-card\": 63428,\n  \"sim-cards\": 57937,\n  \"single-quote-left\": 59419,\n  \"single-quote-right\": 59420,\n  \"sink\": 57453,\n  \"siren-on\": 57390,\n  \"siren\": 57389,\n  \"sitemap\": 61672,\n  \"skating\": 63429,\n  \"skeleton-ribs\": 58827,\n  \"skeleton\": 63008,\n  \"ski-boot-ski\": 58317,\n  \"ski-boot\": 58316,\n  \"ski-jump\": 63431,\n  \"ski-lift\": 63432,\n  \"skiing-nordic\": 63434,\n  \"skiing\": 63433,\n  \"skull-cow\": 63710,\n  \"skull-crossbones\": 63252,\n  \"skull\": 62796,\n  \"slash-back\": 92,\n  \"slash-forward\": 47,\n  \"slash\": 63253,\n  \"sledding\": 63435,\n  \"sleigh\": 63436,\n  \"slider-circle\": 59216,\n  \"slider\": 57938,\n  \"sliders-h-square\": 62448,\n  \"sliders-h\": 61918,\n  \"sliders-simple\": 57939,\n  \"sliders-up\": 62449,\n  \"sliders-v-square\": 62450,\n  \"sliders-v\": 62449,\n  \"sliders\": 61918,\n  \"slot-machine\": 58318,\n  \"smile-beam\": 62904,\n  \"smile-plus\": 62905,\n  \"smile-wink\": 62682,\n  \"smile\": 61720,\n  \"smog\": 63327,\n  \"smoke\": 63328,\n  \"smoking-ban\": 62797,\n  \"smoking\": 62605,\n  \"sms\": 63437,\n  \"snake\": 63254,\n  \"sneaker-running\": 59417,\n  \"sneaker\": 59098,\n  \"snooze\": 63616,\n  \"snow-blowing\": 63329,\n  \"snowboarding\": 63438,\n  \"snowflake-droplets\": 58817,\n  \"snowflake\": 62172,\n  \"snowflakes\": 63439,\n  \"snowman-head\": 63387,\n  \"snowman\": 63440,\n  \"snowmobile-blank\": 59332,\n  \"snowmobile\": 63441,\n  \"snowplow\": 63442,\n  \"soap\": 57454,\n  \"soccer-ball\": 61923,\n  \"socks\": 63126,\n  \"soft-serve\": 58368,\n  \"solar-panel\": 62906,\n  \"solar-system\": 57391,\n  \"sort-alpha-asc\": 61789,\n  \"sort-alpha-desc\": 63617,\n  \"sort-alpha-down-alt\": 63617,\n  \"sort-alpha-down\": 61789,\n  \"sort-alpha-up-alt\": 63618,\n  \"sort-alpha-up\": 61790,\n  \"sort-alt\": 63619,\n  \"sort-amount-asc\": 61792,\n  \"sort-amount-desc\": 63620,\n  \"sort-amount-down-alt\": 63620,\n  \"sort-amount-down\": 61792,\n  \"sort-amount-up-alt\": 63621,\n  \"sort-amount-up\": 61793,\n  \"sort-asc\": 61662,\n  \"sort-circle-down\": 57393,\n  \"sort-circle-up\": 57394,\n  \"sort-circle\": 57392,\n  \"sort-desc\": 61661,\n  \"sort-down\": 61661,\n  \"sort-numeric-asc\": 61794,\n  \"sort-numeric-desc\": 63622,\n  \"sort-numeric-down-alt\": 63622,\n  \"sort-numeric-down\": 61794,\n  \"sort-numeric-up-alt\": 63623,\n  \"sort-numeric-up\": 61795,\n  \"sort-shapes-down-alt\": 63625,\n  \"sort-shapes-down\": 63624,\n  \"sort-shapes-up-alt\": 63627,\n  \"sort-shapes-up\": 63626,\n  \"sort-size-down-alt\": 63629,\n  \"sort-size-down\": 63628,\n  \"sort-size-up-alt\": 63631,\n  \"sort-size-up\": 63630,\n  \"sort-up-down\": 57497,\n  \"sort-up\": 61662,\n  \"sort\": 61660,\n  \"soup\": 63523,\n  \"spa\": 62907,\n  \"space-shuttle\": 61847,\n  \"space-station-moon-alt\": 57396,\n  \"space-station-moon-construction\": 57396,\n  \"space-station-moon\": 57395,\n  \"spade\": 62196,\n  \"spaghetti-monster-flying\": 63099,\n  \"sparkle\": 58838,\n  \"sparkles\": 63632,\n  \"speaker\": 63711,\n  \"speakers\": 63712,\n  \"spell-check\": 63633,\n  \"spider-black-widow\": 63256,\n  \"spider-web\": 63257,\n  \"spider\": 63255,\n  \"spine\": 59233,\n  \"spinner-scale\": 58922,\n  \"spinner-third\": 62452,\n  \"spinner\": 61712,\n  \"spiral\": 59402,\n  \"split\": 57940,\n  \"splotch\": 62908,\n  \"spoon\": 62181,\n  \"sportsball\": 58443,\n  \"spray-can-sparkles\": 62928,\n  \"spray-can\": 62909,\n  \"sprinkler-ceiling\": 58444,\n  \"sprinkler\": 57397,\n  \"sprout\": 62680,\n  \"square-0\": 57941,\n  \"square-1\": 57942,\n  \"square-2\": 57943,\n  \"square-3\": 57944,\n  \"square-4\": 57945,\n  \"square-5\": 57946,\n  \"square-6\": 57947,\n  \"square-7\": 57948,\n  \"square-8\": 57949,\n  \"square-9\": 57950,\n  \"square-a-lock\": 58445,\n  \"square-a\": 57951,\n  \"square-ampersand\": 57952,\n  \"square-arrow-down-left\": 57953,\n  \"square-arrow-down-right\": 57954,\n  \"square-arrow-down\": 62265,\n  \"square-arrow-left\": 62266,\n  \"square-arrow-right\": 62267,\n  \"square-arrow-up-left\": 57955,\n  \"square-arrow-up-right\": 61772,\n  \"square-arrow-up\": 62268,\n  \"square-austral\": 59174,\n  \"square-australian-dollar\": 59160,\n  \"square-b\": 57956,\n  \"square-baht\": 59161,\n  \"square-bangladeshi-taka\": 59204,\n  \"square-binary\": 59035,\n  \"square-bitcoin\": 59122,\n  \"square-bolt\": 57957,\n  \"square-brazilian-real\": 59121,\n  \"square-c\": 57958,\n  \"square-caret-down\": 61776,\n  \"square-caret-left\": 61841,\n  \"square-caret-right\": 61778,\n  \"square-caret-up\": 61777,\n  \"square-cedi\": 59177,\n  \"square-cent\": 59120,\n  \"square-check\": 61770,\n  \"square-chevron-down\": 62249,\n  \"square-chevron-left\": 62250,\n  \"square-chevron-right\": 62251,\n  \"square-chevron-up\": 62252,\n  \"square-chf\": 59110,\n  \"square-code\": 57959,\n  \"square-colon\": 59194,\n  \"square-cruzeiro\": 59117,\n  \"square-currency\": 59148,\n  \"square-d\": 57960,\n  \"square-danish-krone\": 59207,\n  \"square-dashed-circle-plus\": 58818,\n  \"square-dashed\": 57961,\n  \"square-divide\": 57962,\n  \"square-dollar\": 62185,\n  \"square-dong\": 59151,\n  \"square-down-left\": 57963,\n  \"square-down-right\": 57964,\n  \"square-down\": 62288,\n  \"square-e\": 57965,\n  \"square-ellipsis-vertical\": 57967,\n  \"square-ellipsis\": 57966,\n  \"square-envelope\": 61849,\n  \"square-equals\": 59062,\n  \"square-euro\": 59186,\n  \"square-eurozone\": 59175,\n  \"square-exclamation\": 62241,\n  \"square-f\": 57968,\n  \"square-florin\": 59159,\n  \"square-fragile\": 62619,\n  \"square-franc\": 59183,\n  \"square-full\": 62556,\n  \"square-g\": 57969,\n  \"square-guarani\": 59150,\n  \"square-h\": 61693,\n  \"square-half-horizontal\": 59406,\n  \"square-half-stroke-horizontal\": 59407,\n  \"square-half-stroke\": 59283,\n  \"square-half\": 59282,\n  \"square-heart\": 62664,\n  \"square-hryvnia\": 59152,\n  \"square-i\": 57970,\n  \"square-indian-rupee\": 59125,\n  \"square-info\": 62223,\n  \"square-j\": 57971,\n  \"square-k\": 57972,\n  \"square-kanban\": 58504,\n  \"square-kip\": 59149,\n  \"square-l\": 57973,\n  \"square-lari\": 59199,\n  \"square-left\": 62289,\n  \"square-lira\": 59111,\n  \"square-list\": 58505,\n  \"square-litecoin\": 59127,\n  \"square-m\": 57974,\n  \"square-malaysian-ringgit\": 59208,\n  \"square-manat\": 59140,\n  \"square-microphone\": 59265,\n  \"square-mill\": 59146,\n  \"square-minus\": 61766,\n  \"square-n\": 57975,\n  \"square-naira\": 59144,\n  \"square-nfi\": 58742,\n  \"square-norwegian-krone\": 59143,\n  \"square-o\": 57976,\n  \"square-p\": 57977,\n  \"square-parking-slash\": 62999,\n  \"square-parking\": 62784,\n  \"square-pen\": 61771,\n  \"square-person-confined\": 58743,\n  \"square-peruvian-soles\": 59158,\n  \"square-peseta\": 59114,\n  \"square-peso\": 59162,\n  \"square-phone-flip\": 63611,\n  \"square-phone-hangup\": 57978,\n  \"square-phone\": 61592,\n  \"square-plus\": 61694,\n  \"square-polish-zloty\": 59190,\n  \"square-poll-horizontal\": 63106,\n  \"square-poll-vertical\": 63105,\n  \"square-q\": 57979,\n  \"square-quarters\": 58446,\n  \"square-question\": 62205,\n  \"square-quote\": 58153,\n  \"square-r\": 57980,\n  \"square-renminbi\": 59197,\n  \"square-right\": 62290,\n  \"square-ring\": 58447,\n  \"square-root-alt\": 63128,\n  \"square-root-variable\": 63128,\n  \"square-root\": 63127,\n  \"square-rss\": 61763,\n  \"square-ruble\": 59128,\n  \"square-rupee\": 59157,\n  \"square-rupiah\": 59154,\n  \"square-s\": 57981,\n  \"square-share-nodes\": 61921,\n  \"square-shekel\": 59189,\n  \"square-sliders-vertical\": 62450,\n  \"square-sliders\": 62448,\n  \"square-small\": 57982,\n  \"square-star\": 57983,\n  \"square-sterling\": 59155,\n  \"square-swedish-krona\": 59164,\n  \"square-t\": 57984,\n  \"square-tenge\": 59185,\n  \"square-terminal\": 58154,\n  \"square-this-way-up\": 62623,\n  \"square-tugrik\": 59176,\n  \"square-turkish-lira\": 59167,\n  \"square-u\": 57985,\n  \"square-up-left\": 57986,\n  \"square-up-right\": 62304,\n  \"square-up\": 62291,\n  \"square-user\": 57987,\n  \"square-v\": 57988,\n  \"square-virus\": 58744,\n  \"square-w\": 57989,\n  \"square-wine-glass-crack\": 62619,\n  \"square-won\": 59145,\n  \"square-x\": 57990,\n  \"square-xmark\": 62163,\n  \"square-y\": 57991,\n  \"square-yen\": 59172,\n  \"square-z\": 57992,\n  \"square\": 61640,\n  \"squareapore-dollar\": 59187,\n  \"squid\": 58448,\n  \"squirrel\": 63258,\n  \"stadium\": 59084,\n  \"staff-aesculapius\": 58745,\n  \"staff-snake\": 58745,\n  \"staff\": 63259,\n  \"stair-car\": 59333,\n  \"stairs\": 57993,\n  \"stamp\": 62911,\n  \"standard-definition\": 57994,\n  \"stapler\": 58799,\n  \"star-and-crescent\": 63129,\n  \"star-christmas\": 63444,\n  \"star-circle\": 57635,\n  \"star-exclamation\": 62195,\n  \"star-half-alt\": 62912,\n  \"star-half-stroke\": 62912,\n  \"star-half\": 61577,\n  \"star-of-david\": 63130,\n  \"star-of-life\": 63009,\n  \"star-sharp-half-alt\": 57997,\n  \"star-sharp-half-stroke\": 57997,\n  \"star-sharp-half\": 57996,\n  \"star-sharp\": 57995,\n  \"star-shooting\": 57398,\n  \"star\": 61445,\n  \"starfighter-alt-advanced\": 57998,\n  \"starfighter-alt\": 57400,\n  \"starfighter-twin-ion-engine-advanced\": 57998,\n  \"starfighter-twin-ion-engine\": 57400,\n  \"starfighter\": 57399,\n  \"stars\": 63330,\n  \"starship-freighter\": 57402,\n  \"starship\": 57401,\n  \"steak\": 63524,\n  \"steering-wheel\": 63010,\n  \"step-backward\": 61512,\n  \"step-forward\": 61521,\n  \"sterling-sign\": 61780,\n  \"stethoscope\": 61681,\n  \"sticky-note\": 62025,\n  \"stocking\": 63445,\n  \"stomach\": 63011,\n  \"stool\": 59520,\n  \"stop-circle\": 62093,\n  \"stop\": 61517,\n  \"stopwatch-20\": 57455,\n  \"stopwatch\": 62194,\n  \"store-24\": 59291,\n  \"store-alt-slash\": 57456,\n  \"store-alt\": 62799,\n  \"store-lock\": 58534,\n  \"store-slash\": 57457,\n  \"store\": 62798,\n  \"strawberry\": 58155,\n  \"stream\": 62800,\n  \"street-view\": 61981,\n  \"stretcher\": 63525,\n  \"strikethrough\": 61644,\n  \"stroopwafel\": 62801,\n  \"subscript\": 61740,\n  \"subtitles-slash\": 58896,\n  \"subtitles\": 58895,\n  \"subtract\": 61544,\n  \"subway-tunnel\": 58019,\n  \"subway\": 62009,\n  \"suitcase-medical\": 61690,\n  \"suitcase-rolling\": 62913,\n  \"suitcase\": 61682,\n  \"sun-alt\": 57999,\n  \"sun-bright\": 57999,\n  \"sun-cloud\": 63331,\n  \"sun-dust\": 63332,\n  \"sun-haze\": 63333,\n  \"sun-plant-wilt\": 58746,\n  \"sun\": 61829,\n  \"sunglasses\": 63634,\n  \"sunrise\": 63334,\n  \"sunset\": 63335,\n  \"superscript\": 61739,\n  \"surprise\": 62914,\n  \"sushi-roll\": 58507,\n  \"sushi\": 58506,\n  \"swap-arrows\": 58890,\n  \"swap\": 58889,\n  \"swatchbook\": 62915,\n  \"swedish-krona-sign\": 59198,\n  \"swimmer\": 62916,\n  \"swimming-pool\": 62917,\n  \"sword-laser-alt\": 57404,\n  \"sword-laser\": 57403,\n  \"sword\": 63260,\n  \"swords-laser\": 57405,\n  \"swords\": 63261,\n  \"symbols\": 63598,\n  \"synagogue\": 63131,\n  \"sync-alt\": 62193,\n  \"sync\": 61473,\n  \"syringe\": 62606,\n  \"t-rex\": 58921,\n  \"t-shirt\": 62803,\n  \"t\": 84,\n  \"table-bar\": 59550,\n  \"table-cells-column-lock\": 59000,\n  \"table-cells-column-unlock\": 59024,\n  \"table-cells-columns\": 59052,\n  \"table-cells-header-lock\": 59054,\n  \"table-cells-header-unlock\": 59055,\n  \"table-cells-header\": 59053,\n  \"table-cells-large\": 61449,\n  \"table-cells-lock\": 59001,\n  \"table-cells-merge\": 59532,\n  \"table-cells-row-lock\": 59002,\n  \"table-cells-row-unlock\": 59025,\n  \"table-cells-rows\": 59056,\n  \"table-cells-split\": 59533,\n  \"table-cells-unlock\": 59026,\n  \"table-cells\": 61450,\n  \"table-columns-add-after\": 59534,\n  \"table-columns-add-before\": 59535,\n  \"table-columns-merge-next\": 59536,\n  \"table-columns-merge-previous\": 59537,\n  \"table-columns-remove-after\": 59538,\n  \"table-columns-remove-before\": 59539,\n  \"table-columns\": 61659,\n  \"table-dining\": 59522,\n  \"table-layout\": 58000,\n  \"table-list\": 61451,\n  \"table-picnic\": 58157,\n  \"table-pivot\": 58001,\n  \"table-rows-add-above\": 59540,\n  \"table-rows-add-below\": 59541,\n  \"table-rows-merge-next\": 59542,\n  \"table-rows-merge-previous\": 59543,\n  \"table-rows-remove-above\": 59544,\n  \"table-rows-remove-below\": 59545,\n  \"table-rows\": 58002,\n  \"table-slash\": 59546,\n  \"table-tennis-paddle-ball\": 62557,\n  \"table-tennis\": 62557,\n  \"table-tree\": 58003,\n  \"table\": 61646,\n  \"tablet-alt\": 62458,\n  \"tablet-android-alt\": 62460,\n  \"tablet-android\": 62459,\n  \"tablet-button\": 61706,\n  \"tablet-rugged\": 62607,\n  \"tablet-screen-button\": 62458,\n  \"tablet-screen\": 62460,\n  \"tablet\": 62459,\n  \"tablets\": 62608,\n  \"tachograph-digital\": 62822,\n  \"tachometer-alt-average\": 63012,\n  \"tachometer-alt-fast\": 63013,\n  \"tachometer-alt-fastest\": 63014,\n  \"tachometer-alt-slow\": 63015,\n  \"tachometer-alt-slowest\": 63016,\n  \"tachometer-alt\": 63013,\n  \"tachometer-average\": 63017,\n  \"tachometer-fast\": 63018,\n  \"tachometer-fastest\": 63019,\n  \"tachometer-slow\": 63020,\n  \"tachometer-slowest\": 63021,\n  \"tachometer\": 63018,\n  \"taco\": 63526,\n  \"tag\": 61483,\n  \"tags\": 61484,\n  \"tally-1\": 58004,\n  \"tally-2\": 58005,\n  \"tally-3\": 58006,\n  \"tally-4\": 58007,\n  \"tally-5\": 63132,\n  \"tally\": 63132,\n  \"tamale\": 58449,\n  \"tanakh\": 63527,\n  \"tank-recovery\": 59429,\n  \"tank-water\": 58450,\n  \"tape\": 62683,\n  \"tarp-droplet\": 58748,\n  \"tarp\": 58747,\n  \"tasks-alt\": 63528,\n  \"tasks\": 61614,\n  \"taurus\": 59471,\n  \"taxi-bus\": 58008,\n  \"taxi\": 61882,\n  \"teddy-bear\": 58319,\n  \"teeth-open\": 63023,\n  \"teeth\": 63022,\n  \"telescope\": 57406,\n  \"teletype-answer\": 58041,\n  \"teletype\": 61924,\n  \"television\": 62060,\n  \"temperature-0\": 62155,\n  \"temperature-1\": 62154,\n  \"temperature-2\": 62153,\n  \"temperature-3\": 62152,\n  \"temperature-4\": 62151,\n  \"temperature-arrow-down\": 57407,\n  \"temperature-arrow-up\": 57408,\n  \"temperature-down\": 57407,\n  \"temperature-empty\": 62155,\n  \"temperature-frigid\": 63336,\n  \"temperature-full\": 62151,\n  \"temperature-half\": 62153,\n  \"temperature-high\": 63337,\n  \"temperature-hot\": 63338,\n  \"temperature-list\": 58009,\n  \"temperature-low\": 63339,\n  \"temperature-quarter\": 62154,\n  \"temperature-slash\": 59339,\n  \"temperature-snow\": 63336,\n  \"temperature-sun\": 63338,\n  \"temperature-three-quarters\": 62152,\n  \"temperature-up\": 57408,\n  \"tenge-sign\": 63447,\n  \"tenge\": 63447,\n  \"tennis-ball\": 62558,\n  \"tent-arrow-down-to-line\": 58750,\n  \"tent-arrow-left-right\": 58751,\n  \"tent-arrow-turn-left\": 58752,\n  \"tent-arrows-down\": 58753,\n  \"tent-circus\": 59085,\n  \"tent-double-peak\": 58919,\n  \"tent\": 58749,\n  \"tents\": 58754,\n  \"terminal\": 61728,\n  \"text-height\": 61492,\n  \"text-size\": 63636,\n  \"text-slash\": 63613,\n  \"text-width\": 61493,\n  \"text\": 63635,\n  \"th-large\": 61449,\n  \"th-list\": 61451,\n  \"th\": 61450,\n  \"theater-masks\": 63024,\n  \"thermometer-0\": 62155,\n  \"thermometer-1\": 62154,\n  \"thermometer-2\": 62153,\n  \"thermometer-3\": 62152,\n  \"thermometer-4\": 62151,\n  \"thermometer-empty\": 62155,\n  \"thermometer-full\": 62151,\n  \"thermometer-half\": 62153,\n  \"thermometer-quarter\": 62154,\n  \"thermometer-three-quarters\": 62152,\n  \"thermometer\": 62609,\n  \"theta\": 63134,\n  \"thought-bubble\": 58158,\n  \"thumb-tack-slash\": 59023,\n  \"thumb-tack\": 61581,\n  \"thumbs-down\": 61797,\n  \"thumbs-up\": 61796,\n  \"thumbtack-angle-slash\": 59218,\n  \"thumbtack-angle\": 59217,\n  \"thumbtack-slash\": 59023,\n  \"thumbtack\": 61581,\n  \"thunderstorm-moon\": 63341,\n  \"thunderstorm-sun\": 63342,\n  \"thunderstorm\": 63340,\n  \"tick\": 58159,\n  \"ticket-airline\": 58010,\n  \"ticket-alt\": 62463,\n  \"ticket-perforated-plane\": 58010,\n  \"ticket-perforated\": 58942,\n  \"ticket-plane\": 58010,\n  \"ticket-simple\": 62463,\n  \"ticket\": 61765,\n  \"tickets-airline\": 58011,\n  \"tickets-perforated-plane\": 58011,\n  \"tickets-perforated\": 58943,\n  \"tickets-plane\": 58011,\n  \"tickets-simple\": 58969,\n  \"tickets\": 58968,\n  \"tilde\": 126,\n  \"timeline-arrow\": 58013,\n  \"timeline\": 58012,\n  \"timer\": 58014,\n  \"times-circle\": 61527,\n  \"times-hexagon\": 62190,\n  \"times-octagon\": 62192,\n  \"times-rectangle\": 62480,\n  \"times-square\": 62163,\n  \"times-to-slot\": 63345,\n  \"times\": 61453,\n  \"tint-slash\": 62919,\n  \"tint\": 61507,\n  \"tire-flat\": 63026,\n  \"tire-pressure-warning\": 63027,\n  \"tire-rugged\": 63028,\n  \"tire\": 63025,\n  \"tired\": 62920,\n  \"toggle-large-off\": 58800,\n  \"toggle-large-on\": 58801,\n  \"toggle-off\": 61956,\n  \"toggle-on\": 61957,\n  \"toilet-paper-alt\": 63262,\n  \"toilet-paper-blank-under\": 58016,\n  \"toilet-paper-blank\": 63262,\n  \"toilet-paper-check\": 58802,\n  \"toilet-paper-reverse-alt\": 58016,\n  \"toilet-paper-reverse-slash\": 58017,\n  \"toilet-paper-reverse\": 58016,\n  \"toilet-paper-slash\": 57458,\n  \"toilet-paper-under-slash\": 58017,\n  \"toilet-paper-under\": 58016,\n  \"toilet-paper-xmark\": 58803,\n  \"toilet-paper\": 63262,\n  \"toilet-portable\": 58755,\n  \"toilet\": 63448,\n  \"toilets-portable\": 58756,\n  \"tomato\": 58160,\n  \"tombstone-alt\": 63265,\n  \"tombstone-blank\": 63265,\n  \"tombstone\": 63264,\n  \"toolbox\": 62802,\n  \"tools\": 63449,\n  \"tooth\": 62921,\n  \"toothbrush\": 63029,\n  \"torah\": 63136,\n  \"torii-gate\": 63137,\n  \"tornado\": 63343,\n  \"tower-broadcast\": 62745,\n  \"tower-cell\": 58757,\n  \"tower-control\": 58018,\n  \"tower-observation\": 58758,\n  \"tower-receive\": 59555,\n  \"tractor\": 63266,\n  \"trademark\": 62044,\n  \"traffic-cone\": 63030,\n  \"traffic-light-go\": 63032,\n  \"traffic-light-slow\": 63033,\n  \"traffic-light-stop\": 63034,\n  \"traffic-light\": 63031,\n  \"trailer\": 57409,\n  \"train-stop\": 59423,\n  \"train-subway-tunnel\": 58019,\n  \"train-subway\": 62009,\n  \"train-track\": 58451,\n  \"train-tram\": 58804,\n  \"train-tunnel\": 58452,\n  \"train\": 62008,\n  \"tram\": 63450,\n  \"transducer\": 59430,\n  \"transformer-bolt\": 58020,\n  \"transgender-alt\": 61989,\n  \"transgender\": 61989,\n  \"transmission\": 59394,\n  \"transporter-1\": 57411,\n  \"transporter-2\": 57412,\n  \"transporter-3\": 57413,\n  \"transporter-4\": 58021,\n  \"transporter-5\": 58022,\n  \"transporter-6\": 58023,\n  \"transporter-7\": 58024,\n  \"transporter-empty\": 57414,\n  \"transporter\": 57410,\n  \"trash-alt-slash\": 58029,\n  \"trash-alt\": 62189,\n  \"trash-arrow-turn-left\": 63637,\n  \"trash-arrow-up\": 63529,\n  \"trash-can-arrow-turn-left\": 63638,\n  \"trash-can-arrow-up\": 63530,\n  \"trash-can-check\": 58025,\n  \"trash-can-clock\": 58026,\n  \"trash-can-list\": 58027,\n  \"trash-can-plus\": 58028,\n  \"trash-can-slash\": 58029,\n  \"trash-can-undo\": 63638,\n  \"trash-can-xmark\": 58030,\n  \"trash-can\": 62189,\n  \"trash-check\": 58031,\n  \"trash-circle\": 57638,\n  \"trash-clock\": 58032,\n  \"trash-list\": 58033,\n  \"trash-plus\": 58034,\n  \"trash-restore-alt\": 63530,\n  \"trash-restore\": 63529,\n  \"trash-slash\": 58035,\n  \"trash-undo-alt\": 63638,\n  \"trash-undo\": 63637,\n  \"trash-xmark\": 58036,\n  \"trash\": 61944,\n  \"treasure-chest\": 63267,\n  \"tree-alt\": 62464,\n  \"tree-christmas\": 63451,\n  \"tree-city\": 58759,\n  \"tree-deciduous\": 62464,\n  \"tree-decorated\": 63452,\n  \"tree-large\": 63453,\n  \"tree-palm\": 63531,\n  \"tree\": 61883,\n  \"trees\": 63268,\n  \"trian-balbot\": 58460,\n  \"triangle-circle-square\": 63007,\n  \"triangle-exclamation\": 61553,\n  \"triangle-instrument\": 63714,\n  \"triangle-music\": 63714,\n  \"triangle-person-digging\": 63581,\n  \"triangle\": 62188,\n  \"tricycle-adult\": 58820,\n  \"tricycle\": 58819,\n  \"trillium\": 58760,\n  \"triple-chevrons-down\": 59383,\n  \"triple-chevrons-left\": 59384,\n  \"triple-chevrons-right\": 59385,\n  \"triple-chevrons-up\": 59386,\n  \"trombone\": 59266,\n  \"trophy-alt\": 62187,\n  \"trophy-star\": 62187,\n  \"trophy\": 61585,\n  \"trowel-bricks\": 58762,\n  \"trowel\": 58761,\n  \"truck-arrow-right\": 58763,\n  \"truck-bolt\": 58320,\n  \"truck-clock\": 62604,\n  \"truck-container-empty\": 58037,\n  \"truck-container\": 62684,\n  \"truck-couch\": 62685,\n  \"truck-droplet\": 58764,\n  \"truck-fast\": 62603,\n  \"truck-field-un\": 58766,\n  \"truck-field\": 58765,\n  \"truck-fire\": 58970,\n  \"truck-flatbed\": 58038,\n  \"truck-front\": 58039,\n  \"truck-ladder\": 58967,\n  \"truck-loading\": 62686,\n  \"truck-medical\": 61689,\n  \"truck-monster\": 63035,\n  \"truck-moving\": 62687,\n  \"truck-pickup\": 63036,\n  \"truck-plane\": 58767,\n  \"truck-plow\": 63454,\n  \"truck-ramp-box\": 62686,\n  \"truck-ramp-couch\": 62685,\n  \"truck-ramp\": 62688,\n  \"truck-suv\": 59334,\n  \"truck-tow\": 58040,\n  \"truck-utensils\": 58920,\n  \"truck\": 61649,\n  \"trumpet\": 63715,\n  \"try\": 58043,\n  \"tshirt\": 62803,\n  \"tty-answer\": 58041,\n  \"tty\": 61924,\n  \"tugrik-sign\": 58042,\n  \"turkey\": 63269,\n  \"turkish-lira-sign\": 58043,\n  \"turkish-lira\": 58043,\n  \"turn-down-left\": 58161,\n  \"turn-down-right\": 58453,\n  \"turn-down\": 62398,\n  \"turn-left-down\": 58935,\n  \"turn-left-up\": 58936,\n  \"turn-left\": 58934,\n  \"turn-right\": 58937,\n  \"turn-up\": 62399,\n  \"turntable\": 63716,\n  \"turtle\": 63270,\n  \"tv-alt\": 62060,\n  \"tv-music\": 63718,\n  \"tv-retro\": 62465,\n  \"tv\": 62060,\n  \"typewriter\": 63719,\n  \"u-turn-down-left\": 59375,\n  \"u-turn-down-right\": 59376,\n  \"u-turn-left-down\": 59377,\n  \"u-turn-left-up\": 59378,\n  \"u-turn-right-down\": 59379,\n  \"u-turn-right-up\": 59380,\n  \"u-turn-up-left\": 59381,\n  \"u-turn-up-right\": 59382,\n  \"u-turn\": 59377,\n  \"u\": 85,\n  \"ufo-beam\": 57416,\n  \"ufo\": 57415,\n  \"umbrella-alt\": 58044,\n  \"umbrella-beach\": 62922,\n  \"umbrella-simple\": 58044,\n  \"umbrella\": 61673,\n  \"underline\": 61645,\n  \"undo-alt\": 62186,\n  \"undo\": 61666,\n  \"unicorn\": 63271,\n  \"unicycle\": 59335,\n  \"uniform-martial-arts\": 58321,\n  \"union\": 63138,\n  \"universal-access\": 62106,\n  \"university\": 61852,\n  \"unlink\": 61735,\n  \"unlock-alt\": 61758,\n  \"unlock-keyhole\": 61758,\n  \"unlock\": 61596,\n  \"unsorted\": 61660,\n  \"up-down-left-right\": 61618,\n  \"up-down\": 62264,\n  \"up-from-bracket\": 58768,\n  \"up-from-dotted-line\": 58454,\n  \"up-from-line\": 62278,\n  \"up-left\": 58045,\n  \"up-long-to-line\": 59078,\n  \"up-long\": 62220,\n  \"up-right-and-down-left-from-center\": 62500,\n  \"up-right-from-square\": 62301,\n  \"up-right\": 58046,\n  \"up-to-bracket\": 58990,\n  \"up-to-dotted-line\": 58455,\n  \"up-to-line\": 62285,\n  \"up\": 62295,\n  \"upload\": 61587,\n  \"usb-drive\": 63721,\n  \"usd-circle\": 62184,\n  \"usd-square\": 62185,\n  \"usd\": 36,\n  \"user-alien\": 57418,\n  \"user-alt-slash\": 62726,\n  \"user-alt\": 61447,\n  \"user-astronaut\": 62715,\n  \"user-beard-bolt\": 59017,\n  \"user-beard\": 59304,\n  \"user-bounty-hunter\": 58047,\n  \"user-chart\": 63139,\n  \"user-check\": 62716,\n  \"user-chef-hair-long\": 59305,\n  \"user-chef\": 58322,\n  \"user-circle-minus\": 59306,\n  \"user-circle-plus\": 59307,\n  \"user-circle\": 62141,\n  \"user-clock\": 62717,\n  \"user-cog\": 62718,\n  \"user-construction\": 63532,\n  \"user-cowboy\": 63722,\n  \"user-crown\": 63140,\n  \"user-dashed\": 59308,\n  \"user-doctor-hair-long\": 58457,\n  \"user-doctor-hair-mullet\": 59309,\n  \"user-doctor-hair\": 58456,\n  \"user-doctor-message\": 63534,\n  \"user-doctor\": 61680,\n  \"user-edit\": 62719,\n  \"user-friends\": 62720,\n  \"user-gear\": 62718,\n  \"user-graduate\": 62721,\n  \"user-group-crown\": 63141,\n  \"user-group-simple\": 58883,\n  \"user-group\": 62720,\n  \"user-hair-buns\": 58323,\n  \"user-hair-long\": 58459,\n  \"user-hair-mullet\": 58460,\n  \"user-hair\": 58458,\n  \"user-hard-hat\": 63532,\n  \"user-hat-tie-magnifying-glass\": 59311,\n  \"user-hat-tie\": 59310,\n  \"user-headset\": 63533,\n  \"user-helmet-safety\": 63532,\n  \"user-hoodie\": 59018,\n  \"user-injured\": 63272,\n  \"user-key\": 59312,\n  \"user-large-slash\": 62726,\n  \"user-large\": 61447,\n  \"user-lock\": 62722,\n  \"user-magnifying-glass\": 58821,\n  \"user-md-chat\": 63534,\n  \"user-md\": 61680,\n  \"user-message\": 59313,\n  \"user-microphone\": 59314,\n  \"user-minus\": 62723,\n  \"user-music\": 63723,\n  \"user-ninja\": 62724,\n  \"user-nurse-hair-long\": 58462,\n  \"user-nurse-hair\": 58461,\n  \"user-nurse\": 63535,\n  \"user-pen\": 62719,\n  \"user-pilot-hair-long\": 59315,\n  \"user-pilot-tie-hair-long\": 59316,\n  \"user-pilot-tie\": 58049,\n  \"user-pilot\": 58048,\n  \"user-plus\": 62004,\n  \"user-police-hair-long\": 59317,\n  \"user-police-tie-hair-long\": 59318,\n  \"user-police-tie\": 58164,\n  \"user-police\": 58163,\n  \"user-question\": 59319,\n  \"user-robot-xmarks\": 58535,\n  \"user-robot\": 57419,\n  \"user-secret\": 61979,\n  \"user-shakespeare\": 58050,\n  \"user-shield\": 62725,\n  \"user-sith\": 59320,\n  \"user-slash\": 62726,\n  \"user-tag\": 62727,\n  \"user-tie-hair-long\": 58464,\n  \"user-tie-hair-mullet\": 59321,\n  \"user-tie-hair\": 58463,\n  \"user-tie\": 62728,\n  \"user-times\": 62005,\n  \"user-unlock\": 57432,\n  \"user-viewfinder\": 59253,\n  \"user-visor\": 57420,\n  \"user-vneck-hair-long\": 58467,\n  \"user-vneck-hair-mullet\": 59322,\n  \"user-vneck-hair\": 58466,\n  \"user-vneck\": 58465,\n  \"user-xmark\": 62005,\n  \"user\": 61447,\n  \"users-between-lines\": 58769,\n  \"users-class\": 63037,\n  \"users-cog\": 62729,\n  \"users-crown\": 63141,\n  \"users-gear\": 62729,\n  \"users-line\": 58770,\n  \"users-medical\": 63536,\n  \"users-rays\": 58771,\n  \"users-rectangle\": 58772,\n  \"users-slash\": 57459,\n  \"users-viewfinder\": 58773,\n  \"users\": 61632,\n  \"utensil-fork\": 62179,\n  \"utensil-knife\": 62180,\n  \"utensil-spoon\": 62181,\n  \"utensils-alt\": 62182,\n  \"utensils-slash\": 58468,\n  \"utensils\": 62183,\n  \"utility-can\": 59549,\n  \"utility-pole-double\": 58052,\n  \"utility-pole\": 58051,\n  \"v\": 86,\n  \"vacuum-robot\": 57422,\n  \"vacuum\": 57421,\n  \"value-absolute\": 63142,\n  \"van-shuttle\": 62902,\n  \"van\": 59336,\n  \"vault\": 58053,\n  \"vcard\": 62139,\n  \"vector-circle\": 62957,\n  \"vector-polygon\": 62958,\n  \"vector-square\": 62959,\n  \"vent-damper\": 58469,\n  \"venus-double\": 61990,\n  \"venus-mars\": 61992,\n  \"venus\": 61985,\n  \"vest-patches\": 57478,\n  \"vest\": 57477,\n  \"vhs\": 63724,\n  \"vial-circle-check\": 58774,\n  \"vial-vertical\": 59234,\n  \"vial-virus\": 58775,\n  \"vial\": 62610,\n  \"vials\": 62611,\n  \"video-arrow-down-left\": 58056,\n  \"video-arrow-up-right\": 58057,\n  \"video-camera\": 61501,\n  \"video-circle\": 57643,\n  \"video-down-to-line\": 59254,\n  \"video-handheld\": 63656,\n  \"video-plus\": 62689,\n  \"video-question\": 59255,\n  \"video-slash\": 62690,\n  \"video\": 61501,\n  \"vihara\": 63143,\n  \"violin\": 63725,\n  \"virgo\": 59472,\n  \"virus-covid-slash\": 58537,\n  \"virus-covid\": 58536,\n  \"virus-slash\": 57461,\n  \"virus\": 57460,\n  \"viruses\": 57462,\n  \"voicemail\": 63639,\n  \"volcano\": 63344,\n  \"volleyball-ball\": 62559,\n  \"volleyball\": 62559,\n  \"volume-control-phone\": 62112,\n  \"volume-down\": 61479,\n  \"volume-high\": 61480,\n  \"volume-low\": 61479,\n  \"volume-medium\": 63144,\n  \"volume-mute\": 63145,\n  \"volume-off\": 61478,\n  \"volume-slash\": 62178,\n  \"volume-times\": 63145,\n  \"volume-up\": 61480,\n  \"volume-xmark\": 63145,\n  \"volume\": 63144,\n  \"vote-nay\": 63345,\n  \"vote-yea\": 63346,\n  \"vr-cardboard\": 63273,\n  \"w\": 87,\n  \"waffle\": 58470,\n  \"wagon-covered\": 63726,\n  \"walker\": 63537,\n  \"walkie-talkie\": 63727,\n  \"walking\": 62804,\n  \"wall-brick\": 58331,\n  \"wallet\": 62805,\n  \"wand-magic-sparkles\": 58058,\n  \"wand-magic\": 61648,\n  \"wand-sparkles\": 63275,\n  \"wand\": 63274,\n  \"wardrobe\": 59521,\n  \"warehouse-alt\": 62613,\n  \"warehouse-full\": 62613,\n  \"warehouse\": 62612,\n  \"warning\": 61553,\n  \"washer\": 63640,\n  \"washing-machine\": 63640,\n  \"watch-apple\": 58059,\n  \"watch-calculator\": 63728,\n  \"watch-fitness\": 63038,\n  \"watch-smart\": 58060,\n  \"watch\": 62177,\n  \"water-arrow-down\": 63348,\n  \"water-arrow-up\": 63349,\n  \"water-ladder\": 62917,\n  \"water-lower\": 63348,\n  \"water-rise\": 63349,\n  \"water-temp\": 59434,\n  \"water-temperature\": 59434,\n  \"water\": 63347,\n  \"watermelon-slice\": 58167,\n  \"wave-pulse\": 62968,\n  \"wave-sine\": 63641,\n  \"wave-square\": 63550,\n  \"wave-triangle\": 63642,\n  \"wave\": 58971,\n  \"waveform-circle\": 57645,\n  \"waveform-lines\": 63730,\n  \"waveform-path\": 63730,\n  \"waveform\": 63729,\n  \"waves-sine\": 58973,\n  \"web-awesome\": 59010,\n  \"webcam-slash\": 63539,\n  \"webcam\": 63538,\n  \"webhook\": 58837,\n  \"weight-hanging\": 62925,\n  \"weight-scale\": 62614,\n  \"weight\": 62614,\n  \"whale\": 63276,\n  \"wheat-alt\": 58061,\n  \"wheat-awn-circle-exclamation\": 58776,\n  \"wheat-awn-slash\": 58168,\n  \"wheat-awn\": 58061,\n  \"wheat-slash\": 58169,\n  \"wheat\": 63277,\n  \"wheelchair-alt\": 58062,\n  \"wheelchair-move\": 58062,\n  \"wheelchair\": 61843,\n  \"whiskey-glass-ice\": 63393,\n  \"whiskey-glass\": 63392,\n  \"whistle\": 62560,\n  \"wifi-1\": 63146,\n  \"wifi-2\": 63147,\n  \"wifi-3\": 61931,\n  \"wifi-exclamation\": 58063,\n  \"wifi-fair\": 63147,\n  \"wifi-slash\": 63148,\n  \"wifi-strong\": 61931,\n  \"wifi-weak\": 63146,\n  \"wifi\": 61931,\n  \"wind-circle-exclamation\": 63350,\n  \"wind-turbine\": 63643,\n  \"wind-warning\": 63350,\n  \"wind\": 63278,\n  \"window-alt\": 62479,\n  \"window-close\": 62480,\n  \"window-flip\": 62479,\n  \"window-frame-open\": 57424,\n  \"window-frame\": 57423,\n  \"window-maximize\": 62160,\n  \"window-minimize\": 62161,\n  \"window-restore\": 62162,\n  \"window\": 62478,\n  \"windsock\": 63351,\n  \"wine-bottle\": 63279,\n  \"wine-glass-alt\": 62926,\n  \"wine-glass-crack\": 62651,\n  \"wine-glass-empty\": 62926,\n  \"wine-glass\": 62691,\n  \"wireless\": 59359,\n  \"won-sign\": 61785,\n  \"won\": 61785,\n  \"worm\": 58777,\n  \"wreath-laurel\": 58834,\n  \"wreath\": 63458,\n  \"wrench-simple\": 58065,\n  \"wrench\": 61613,\n  \"x-ray\": 62615,\n  \"x\": 88,\n  \"xmark-circle\": 61527,\n  \"xmark-hexagon\": 62190,\n  \"xmark-large\": 58779,\n  \"xmark-octagon\": 62192,\n  \"xmark-square\": 62163,\n  \"xmark-to-slot\": 63345,\n  \"xmark\": 61453,\n  \"xmarks-lines\": 58778,\n  \"y\": 89,\n  \"yen-sign\": 61783,\n  \"yen\": 61783,\n  \"yin-yang\": 63149,\n  \"z\": 90,\n  \"zap\": 61671,\n  \"zzz\": 63616\n}"
  },
  {
    "path": "packages/fontawesome-pro-sharp-solid/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontawesome-pro-sharp-solid\",\n  \"version\": \"0.2.0\",\n  \"description\": \"Fontawesome Pro Sharp Solid font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"fontawesome-pro-sharp-solid\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/fontawesome-pro-sharp-solid\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-solid/react-native-vector-icons-fontawesome-pro-sharp-solid.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-fontawesome-pro-sharp-solid'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\n\n  s.script_phase = {\n    name: 'Copy Custom Fonts',\n    execution_position: :after_compile,\n    script: <<~SCRIPT\n      set -e\n\n      HEAD=\"(RNVI-fontawesome-pro-sharp-solid)\"\n\n      echo \"${HEAD} START_COPY_FONTS\"\n\n      echo \"${HEAD} PWD: $(pwd)\"\n\n      #\n      # Find the custom font Directory\n      #\n\n      # Assume the project root is always two directories above the POD_ROOT\n      echo \"${HEAD} PODS_ROOT: $PODS_ROOT\"\n\n      PROJECT_ROOT=\"${PODS_ROOT}/../..\"\n      echo \"${HEAD} PROJECT_ROOT: $PROJECT_ROOT\"\n\n      cd $PROJECT_ROOT\n      FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/\"//g')\n      if [ -z \"$FONTS_DIR\" ]; then\n        FONTS_DIR=\"rnvi-fonts\"\n      fi\n      echo \"${HEAD} FONTS_DIR: $FONTS_DIR\"\n\n      FONTS_DIR=\"${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-sharp-solid\"\n      if [ ! -d \"$FONTS_DIR\" ]; then\n        echo \"${HEAD} $FONTS_DIR not found\"\n        exit 0\n      fi\n\n      #\n      # Find the destination we copy to\n      #\n\n      echo \"${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR\"\n      XCODE_DIR=$(ls -d \"$PODS_CONFIGURATION_BUILD_DIR\"/*.app)\n      echo \"${HEAD} XCODE_DIR: $XCODE_DIR\"\n      if [ -z \"$XCODE_DIR\" ]; then\n        echo \"Could not find XCODE_DIR to copy fonts to\"\n        exit 1\n      fi\n\n      DEST_DIR=\"${XCODE_DIR}\"\n      mkdir -p \"$DEST_DIR\"\n\n      #\n      # Copy the fonts\n      #\n\n      echo \"${HEAD} Copying the following files to $DEST_DIR\"\n      ls \"$FONTS_DIR\" | sed \"s/^/${HEAD} /\"\n\n      rsync -avr --copy-links --no-relative $FONTS_DIR/ \"$DEST_DIR\"\n\n      echo \"${HEAD} END:RNVI_COPY_FONTS\"\n    SCRIPT\n  }\nend\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-solid/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProSharpSolid icon set component.\n * Usage: <FontAwesomeProSharpSolid name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProSharpSolid.json';\n\nexport const FontAwesomeProSharpSolid = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Sharp-Solid',\n  fontFileName: 'fa-sharp-solid-900.ttf',\n});\n\nexport type FontAwesomeProSharpSolidIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProSharpSolid;\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-solid/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProSharpSolid icon set component.\n * Usage: <FontAwesomeProSharpSolid name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProSharpSolid.json';\n\nexport const FontAwesomeProSharpSolid = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Sharp-Solid',\n  fontFileName: 'fa-sharp-solid-900.ttf',\n});\n\nexport type FontAwesomeProSharpSolidIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProSharpSolid;\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-solid/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-solid/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-thin/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontawesome-pro-sharp-thin\",\n    \"upstreamFont\": {\n      \"registry\": \"https://npm.fontawesome.com\",\n      \"packageName\": \"@fortawesome/fontawesome-pro\",\n      \"versionOnly\": true\n    },\n    \"copyCustomFonts\": true,\n    \"className\": \"FontAwesomeProSharpThin\",\n    \"postScriptName\": \"FontAwesome7Sharp-Thin\",\n    \"fontFileName\": \"fa-sharp-thin-100\",\n    \"buildSteps\": {\n      \"preScript\": {\n        \"script\": \"../fontawesome-common/scripts/fetch-pro.sh 7\"\n      },\n      \"glyphmap\": {\n        \"location\": \"fa/pro/css/all.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fa-\"\n      },\n      \"postScript\": {\n        \"script\": \"../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProSharpThin.json fa/pro/svgs/sharp-thin\\nrm -rf fa\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"0.1.0\",\n        \"upstream\": \"7.1.0\"\n      },\n      {\n        \"rnvi\": \"0.1.1\",\n        \"upstream\": \"7.2.0\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-thin/CHANGELOG.md",
    "content": "## 0.2.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 0.1.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 0.1.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🩹 Fixes\n\n- upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 0.1.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 0.1.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontawesome-pro-sharp-thin/README.md",
    "content": "# React Native Vector Icons - Fontawesome Pro Sharp Thin\n\nFontawesome Pro Sharp Thin font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n> [!IMPORTANT]\n> This package does not include the fonts. You must provide them yourself.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/fontawesome-pro-sharp-thin\n```\n\n## Custom Fonts\n\nThis package requires you to provide the font files. Place your `.ttf` font\nfile in the following location:\n\n```\nrnvi-fonts/fontawesome-pro-sharp-thin/fa-sharp-thin-100.ttf\n```\n\nThe font will be automatically copied during the build process for both iOS and\nAndroid.\n\n## Usage\n\n```jsx\nimport { FontAwesomeProSharpThin } from '@react-native-vector-icons/fontawesome-pro-sharp-thin';\n\n// ...\n\n<FontAwesomeProSharpThin name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 0.1.0 | 7.1.0 |\n| &gt; 0.1.1 | 7.2.0 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-thin/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.fontawesome_pro_sharp_thin\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFontAwesomeProSharpThin\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.fontawesome_pro_sharp_thin\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-fontawesome-pro-sharp-thin\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-thin/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-sharp-thin) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n\ntask copyExtraFonts(type: Copy) {\n  from \"${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-sharp-thin\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-sharp-thin/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-sharp-thin) Copying custom font: ${it.file}\" }\n}\n\npreBuild.dependsOn(copyExtraFonts)\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-thin/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.fontawesome_pro_sharp_thin\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-thin/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-thin/android/src/main/java/VectorIconsFontAwesomeProSharpThinPackage.kt",
    "content": "package com.reactnativevectoricons.fontawesome_pro_sharp_thin\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFontAwesomeProSharpThinPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-thin/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-thin/glyphmaps/FontAwesomeProSharpThin.json",
    "content": "{\n  \"0\": 48,\n  \"1\": 49,\n  \"2\": 50,\n  \"3\": 51,\n  \"4\": 52,\n  \"5\": 53,\n  \"6\": 54,\n  \"7\": 55,\n  \"8\": 56,\n  \"9\": 57,\n  \"100\": 58396,\n  \"00\": 58471,\n  \"360-degrees\": 58076,\n  \"a\": 65,\n  \"abacus\": 63040,\n  \"accent-grave\": 96,\n  \"acorn\": 63150,\n  \"ad\": 63041,\n  \"add\": 43,\n  \"address-book\": 62137,\n  \"address-card\": 62139,\n  \"adjust\": 61506,\n  \"aeropress\": 59435,\n  \"air-conditioner\": 63732,\n  \"air-freshener\": 62928,\n  \"airplay-audio\": 59259,\n  \"airplay\": 57481,\n  \"alarm-clock\": 62286,\n  \"alarm-exclamation\": 63555,\n  \"alarm-minus\": 59395,\n  \"alarm-plus\": 63556,\n  \"alarm-snooze\": 63557,\n  \"album-circle-plus\": 58508,\n  \"album-circle-user\": 58509,\n  \"album-collection-circle-plus\": 58510,\n  \"album-collection-circle-user\": 58511,\n  \"album-collection\": 63648,\n  \"album\": 63647,\n  \"alicorn\": 63152,\n  \"alien-8bit\": 63734,\n  \"alien-monster\": 63734,\n  \"alien\": 63733,\n  \"align-center\": 61495,\n  \"align-justify\": 61497,\n  \"align-left\": 61494,\n  \"align-right\": 61496,\n  \"align-slash\": 63558,\n  \"allergies\": 62561,\n  \"almost-equal-to\": 59416,\n  \"alt\": 57482,\n  \"ambulance\": 61689,\n  \"american-sign-language-interpreting\": 62115,\n  \"amp-guitar\": 63649,\n  \"ampersand\": 38,\n  \"analytics\": 63043,\n  \"anchor-circle-check\": 58538,\n  \"anchor-circle-exclamation\": 58539,\n  \"anchor-circle-xmark\": 58540,\n  \"anchor-lock\": 58541,\n  \"anchor\": 61757,\n  \"angel\": 63353,\n  \"angle-90\": 57485,\n  \"angle-double-down\": 61699,\n  \"angle-double-left\": 61696,\n  \"angle-double-right\": 61697,\n  \"angle-double-up\": 61698,\n  \"angle-down\": 61703,\n  \"angle-left\": 61700,\n  \"angle-right\": 61701,\n  \"angle-up\": 61702,\n  \"angle\": 57484,\n  \"angles-down\": 61699,\n  \"angles-left\": 61696,\n  \"angles-right\": 61697,\n  \"angles-up-down\": 58893,\n  \"angles-up\": 61698,\n  \"angry\": 62806,\n  \"ankh\": 63044,\n  \"ant\": 59008,\n  \"apartment\": 58472,\n  \"aperture\": 58079,\n  \"apostrophe\": 39,\n  \"apple-alt\": 62929,\n  \"apple-core\": 57487,\n  \"apple-crate\": 63153,\n  \"apple-whole\": 62929,\n  \"aquarius\": 59461,\n  \"archive\": 61831,\n  \"archway\": 62807,\n  \"area-chart\": 61950,\n  \"aries\": 59462,\n  \"arrow-alt-circle-down\": 62296,\n  \"arrow-alt-circle-left\": 62297,\n  \"arrow-alt-circle-right\": 62298,\n  \"arrow-alt-circle-up\": 62299,\n  \"arrow-alt-down\": 62292,\n  \"arrow-alt-from-bottom\": 62278,\n  \"arrow-alt-from-left\": 62279,\n  \"arrow-alt-from-right\": 62280,\n  \"arrow-alt-from-top\": 62281,\n  \"arrow-alt-left\": 62293,\n  \"arrow-alt-right\": 62294,\n  \"arrow-alt-square-down\": 62288,\n  \"arrow-alt-square-left\": 62289,\n  \"arrow-alt-square-right\": 62290,\n  \"arrow-alt-square-up\": 62291,\n  \"arrow-alt-to-bottom\": 62282,\n  \"arrow-alt-to-left\": 62283,\n  \"arrow-alt-to-right\": 62284,\n  \"arrow-alt-to-top\": 62285,\n  \"arrow-alt-up\": 62295,\n  \"arrow-archery\": 59449,\n  \"arrow-circle-down\": 61611,\n  \"arrow-circle-left\": 61608,\n  \"arrow-circle-right\": 61609,\n  \"arrow-circle-up\": 61610,\n  \"arrow-down-1-9\": 61794,\n  \"arrow-down-9-1\": 63622,\n  \"arrow-down-a-z\": 61789,\n  \"arrow-down-arrow-up\": 63619,\n  \"arrow-down-big-small\": 63628,\n  \"arrow-down-from-arc\": 58900,\n  \"arrow-down-from-bracket\": 58983,\n  \"arrow-down-from-dotted-line\": 57488,\n  \"arrow-down-from-line\": 62277,\n  \"arrow-down-left-and-arrow-up-right-to-center\": 57490,\n  \"arrow-down-left\": 57489,\n  \"arrow-down-long-to-line\": 59063,\n  \"arrow-down-long\": 61813,\n  \"arrow-down-right\": 57491,\n  \"arrow-down-short-wide\": 63620,\n  \"arrow-down-small-big\": 63629,\n  \"arrow-down-square-triangle\": 63625,\n  \"arrow-down-to-arc\": 58542,\n  \"arrow-down-to-bracket\": 57492,\n  \"arrow-down-to-dotted-line\": 57493,\n  \"arrow-down-to-line\": 62269,\n  \"arrow-down-to-square\": 57494,\n  \"arrow-down-triangle-square\": 63624,\n  \"arrow-down-up-across-line\": 58543,\n  \"arrow-down-up-lock\": 58544,\n  \"arrow-down-wide-short\": 61792,\n  \"arrow-down-z-a\": 63617,\n  \"arrow-down\": 61539,\n  \"arrow-from-bottom\": 62274,\n  \"arrow-from-left\": 62275,\n  \"arrow-from-right\": 62276,\n  \"arrow-from-top\": 62277,\n  \"arrow-left-arrow-right\": 59064,\n  \"arrow-left-from-arc\": 58901,\n  \"arrow-left-from-bracket\": 58984,\n  \"arrow-left-from-dotted-line\": 59065,\n  \"arrow-left-from-line\": 62276,\n  \"arrow-left-long-to-line\": 58324,\n  \"arrow-left-long\": 61815,\n  \"arrow-left-rotate\": 61666,\n  \"arrow-left-to-arc\": 58902,\n  \"arrow-left-to-bracket\": 58985,\n  \"arrow-left-to-dotted-line\": 59066,\n  \"arrow-left-to-line\": 62270,\n  \"arrow-left\": 61536,\n  \"arrow-pointer\": 62021,\n  \"arrow-progress\": 58847,\n  \"arrow-right-arrow-left\": 61676,\n  \"arrow-right-from-arc\": 58545,\n  \"arrow-right-from-bracket\": 61579,\n  \"arrow-right-from-dotted-line\": 59067,\n  \"arrow-right-from-file\": 62830,\n  \"arrow-right-from-line\": 62275,\n  \"arrow-right-long-to-line\": 58325,\n  \"arrow-right-long\": 61816,\n  \"arrow-right-rotate\": 61470,\n  \"arrow-right-to-arc\": 58546,\n  \"arrow-right-to-bracket\": 61584,\n  \"arrow-right-to-city\": 58547,\n  \"arrow-right-to-dotted-line\": 59068,\n  \"arrow-right-to-file\": 62831,\n  \"arrow-right-to-line\": 62272,\n  \"arrow-right\": 61537,\n  \"arrow-rotate-back\": 61666,\n  \"arrow-rotate-backward\": 61666,\n  \"arrow-rotate-forward\": 61470,\n  \"arrow-rotate-left-10\": 59446,\n  \"arrow-rotate-left-15\": 59526,\n  \"arrow-rotate-left-30\": 59527,\n  \"arrow-rotate-left\": 61666,\n  \"arrow-rotate-right-10\": 59447,\n  \"arrow-rotate-right-15\": 59528,\n  \"arrow-rotate-right-30\": 59529,\n  \"arrow-rotate-right\": 61470,\n  \"arrow-square-down\": 62265,\n  \"arrow-square-left\": 62266,\n  \"arrow-square-right\": 62267,\n  \"arrow-square-up\": 62268,\n  \"arrow-to-bottom\": 62269,\n  \"arrow-to-left\": 62270,\n  \"arrow-to-right\": 62272,\n  \"arrow-to-top\": 62273,\n  \"arrow-trend-down\": 57495,\n  \"arrow-trend-up\": 57496,\n  \"arrow-turn-down-left\": 58081,\n  \"arrow-turn-down-right\": 58326,\n  \"arrow-turn-down\": 61769,\n  \"arrow-turn-left-down\": 58931,\n  \"arrow-turn-left-up\": 58932,\n  \"arrow-turn-left\": 58930,\n  \"arrow-turn-right\": 58933,\n  \"arrow-turn-up\": 61768,\n  \"arrow-u-turn-down-left\": 59367,\n  \"arrow-u-turn-down-right\": 59368,\n  \"arrow-u-turn-left-down\": 59369,\n  \"arrow-u-turn-left-up\": 59370,\n  \"arrow-u-turn-right-down\": 59371,\n  \"arrow-u-turn-right-up\": 59372,\n  \"arrow-u-turn-up-left\": 59373,\n  \"arrow-u-turn-up-right\": 59374,\n  \"arrow-up-1-9\": 61795,\n  \"arrow-up-9-1\": 63623,\n  \"arrow-up-a-z\": 61790,\n  \"arrow-up-arrow-down\": 57497,\n  \"arrow-up-big-small\": 63630,\n  \"arrow-up-from-arc\": 58548,\n  \"arrow-up-from-bracket\": 57498,\n  \"arrow-up-from-dotted-line\": 57499,\n  \"arrow-up-from-ground-water\": 58549,\n  \"arrow-up-from-line\": 62274,\n  \"arrow-up-from-square\": 57500,\n  \"arrow-up-from-water-pump\": 58550,\n  \"arrow-up-left-from-circle\": 57502,\n  \"arrow-up-left\": 57501,\n  \"arrow-up-long-to-line\": 59069,\n  \"arrow-up-long\": 61814,\n  \"arrow-up-right-and-arrow-down-left-from-center\": 57504,\n  \"arrow-up-right-dots\": 58551,\n  \"arrow-up-right-from-square\": 61582,\n  \"arrow-up-right\": 57503,\n  \"arrow-up-short-wide\": 63621,\n  \"arrow-up-small-big\": 63631,\n  \"arrow-up-square-triangle\": 63627,\n  \"arrow-up-to-arc\": 58903,\n  \"arrow-up-to-bracket\": 58986,\n  \"arrow-up-to-dotted-line\": 57505,\n  \"arrow-up-to-line\": 62273,\n  \"arrow-up-triangle-square\": 63626,\n  \"arrow-up-wide-short\": 61793,\n  \"arrow-up-z-a\": 63618,\n  \"arrow-up\": 61538,\n  \"arrows-alt-h\": 62263,\n  \"arrows-alt-v\": 62264,\n  \"arrows-alt\": 61618,\n  \"arrows-cross\": 57506,\n  \"arrows-down-to-line\": 58552,\n  \"arrows-down-to-people\": 58553,\n  \"arrows-from-dotted-line\": 57507,\n  \"arrows-from-line\": 57508,\n  \"arrows-h\": 61566,\n  \"arrows-left-right-to-line\": 58554,\n  \"arrows-left-right\": 61566,\n  \"arrows-maximize\": 62237,\n  \"arrows-minimize\": 57509,\n  \"arrows-repeat-1\": 62310,\n  \"arrows-repeat\": 62308,\n  \"arrows-retweet\": 62305,\n  \"arrows-rotate-reverse\": 58928,\n  \"arrows-rotate\": 61473,\n  \"arrows-spin\": 58555,\n  \"arrows-split-up-and-left\": 58556,\n  \"arrows-to-circle\": 58557,\n  \"arrows-to-dot\": 58558,\n  \"arrows-to-dotted-line\": 57510,\n  \"arrows-to-eye\": 58559,\n  \"arrows-to-line\": 57511,\n  \"arrows-turn-right\": 58560,\n  \"arrows-turn-to-dots\": 58561,\n  \"arrows-up-down-left-right\": 61511,\n  \"arrows-up-down\": 61565,\n  \"arrows-up-to-line\": 58562,\n  \"arrows-v\": 61565,\n  \"arrows\": 61511,\n  \"asl-interpreting\": 62115,\n  \"assistive-listening-systems\": 62114,\n  \"asterisk\": 42,\n  \"at\": 64,\n  \"atlas\": 62808,\n  \"atom-alt\": 62931,\n  \"atom-simple\": 62931,\n  \"atom\": 62930,\n  \"audio-description-slash\": 57512,\n  \"audio-description\": 62110,\n  \"austral-sign\": 57513,\n  \"australian-dollar-sign\": 59134,\n  \"automobile\": 61881,\n  \"avocado\": 57514,\n  \"award-simple\": 57515,\n  \"award\": 62809,\n  \"axe-battle\": 63155,\n  \"axe\": 63154,\n  \"b\": 66,\n  \"baby-carriage\": 63357,\n  \"baby\": 63356,\n  \"backpack\": 62932,\n  \"backspace\": 62810,\n  \"backward-fast\": 61513,\n  \"backward-step\": 61512,\n  \"backward\": 61514,\n  \"bacon\": 63461,\n  \"bacteria\": 57433,\n  \"bacterium\": 57434,\n  \"badge-check\": 62262,\n  \"badge-dollar\": 63045,\n  \"badge-percent\": 63046,\n  \"badge-sheriff\": 63650,\n  \"badge\": 62261,\n  \"badger-honey\": 63156,\n  \"badminton\": 58170,\n  \"bag-seedling\": 58866,\n  \"bag-shopping-minus\": 58960,\n  \"bag-shopping-plus\": 58961,\n  \"bag-shopping\": 62096,\n  \"bagel\": 58327,\n  \"bags-shopping\": 63559,\n  \"baguette\": 58328,\n  \"bahai\": 63078,\n  \"baht-sign\": 57516,\n  \"balance-scale-left\": 62741,\n  \"balance-scale-right\": 62742,\n  \"balance-scale\": 62030,\n  \"ball-pile\": 63358,\n  \"ball-yarn\": 59086,\n  \"balloon\": 58083,\n  \"balloons\": 58084,\n  \"ballot-check\": 63283,\n  \"ballot\": 63282,\n  \"ban-bug\": 63481,\n  \"ban-parking\": 62998,\n  \"ban-smoking\": 62797,\n  \"ban\": 61534,\n  \"banana\": 58085,\n  \"band-aid\": 62562,\n  \"bandage\": 62562,\n  \"bangladeshi-taka-sign\": 58086,\n  \"banjo\": 63651,\n  \"bank\": 61852,\n  \"bar-chart\": 61568,\n  \"bar-progress-empty\": 59045,\n  \"bar-progress-full\": 59046,\n  \"bar-progress-half\": 59047,\n  \"bar-progress-quarter\": 59048,\n  \"bar-progress-three-quarters\": 59049,\n  \"bar-progress\": 59044,\n  \"barcode-alt\": 62563,\n  \"barcode-read\": 62564,\n  \"barcode-scan\": 62565,\n  \"barcode\": 61482,\n  \"barn-silo\": 63588,\n  \"barn\": 59079,\n  \"bars-filter\": 57517,\n  \"bars-progress\": 63528,\n  \"bars-sort\": 57518,\n  \"bars-staggered\": 62800,\n  \"bars\": 61641,\n  \"baseball-ball\": 62515,\n  \"baseball-bat-ball\": 62514,\n  \"baseball-bat\": 59365,\n  \"baseball\": 62515,\n  \"basket-shopping-minus\": 58962,\n  \"basket-shopping-plus\": 58963,\n  \"basket-shopping-simple\": 57519,\n  \"basket-shopping\": 62097,\n  \"basketball-ball\": 62516,\n  \"basketball-hoop\": 62517,\n  \"basketball\": 62516,\n  \"bat\": 63157,\n  \"bath\": 62157,\n  \"bathtub\": 62157,\n  \"battery-0\": 62020,\n  \"battery-1\": 57521,\n  \"battery-2\": 62019,\n  \"battery-3\": 62018,\n  \"battery-4\": 62017,\n  \"battery-5\": 62016,\n  \"battery-bolt\": 62326,\n  \"battery-car\": 62943,\n  \"battery-empty\": 62020,\n  \"battery-exclamation\": 57520,\n  \"battery-full\": 62016,\n  \"battery-half\": 62018,\n  \"battery-low\": 57521,\n  \"battery-quarter\": 62019,\n  \"battery-slash\": 62327,\n  \"battery-three-quarters\": 62017,\n  \"battery\": 62016,\n  \"bed-alt\": 63735,\n  \"bed-bunk\": 63736,\n  \"bed-empty\": 63737,\n  \"bed-front\": 63735,\n  \"bed-pulse\": 62599,\n  \"bed\": 62006,\n  \"bee\": 57522,\n  \"beer-foam\": 57523,\n  \"beer-mug-empty\": 61692,\n  \"beer-mug\": 57523,\n  \"beer\": 61692,\n  \"bell-concierge\": 62818,\n  \"bell-exclamation\": 63560,\n  \"bell-on\": 63738,\n  \"bell-plus\": 63561,\n  \"bell-ring\": 58924,\n  \"bell-school-slash\": 62934,\n  \"bell-school\": 62933,\n  \"bell-slash\": 61942,\n  \"bell\": 61683,\n  \"bells\": 63359,\n  \"bench-tree\": 58087,\n  \"betamax\": 63652,\n  \"bezier-curve\": 62811,\n  \"bible\": 63047,\n  \"bicep\": 59490,\n  \"bicycle\": 61958,\n  \"biking-mountain\": 63563,\n  \"biking\": 63562,\n  \"billboard\": 58829,\n  \"bin-bottles-recycle\": 58870,\n  \"bin-bottles\": 58869,\n  \"bin-recycle\": 58871,\n  \"bin\": 59235,\n  \"binary-circle-check\": 58172,\n  \"binary-lock\": 58173,\n  \"binary-slash\": 58174,\n  \"binary\": 58171,\n  \"binoculars\": 61925,\n  \"biohazard\": 63360,\n  \"bird\": 58473,\n  \"birthday-cake\": 61949,\n  \"bitcoin-sign\": 57524,\n  \"blackboard\": 62747,\n  \"blanket-fire\": 58330,\n  \"blanket\": 62616,\n  \"blender-phone\": 63158,\n  \"blender\": 62743,\n  \"blind\": 62109,\n  \"blinds-open\": 63740,\n  \"blinds-raised\": 63741,\n  \"blinds\": 63739,\n  \"block-brick-fire\": 58332,\n  \"block-brick\": 58331,\n  \"block-question\": 58333,\n  \"block-quote\": 57525,\n  \"block\": 58474,\n  \"blog\": 63361,\n  \"blueberries\": 58088,\n  \"bluetooth\": 62099,\n  \"bold\": 61490,\n  \"bolt-auto\": 57526,\n  \"bolt-lightning\": 57527,\n  \"bolt-slash\": 57528,\n  \"bolt\": 61671,\n  \"bomb\": 61922,\n  \"bone-break\": 62936,\n  \"bone\": 62935,\n  \"bong\": 62812,\n  \"book-alt\": 62937,\n  \"book-arrow-right\": 57529,\n  \"book-arrow-up\": 57530,\n  \"book-atlas\": 62808,\n  \"book-bible\": 63047,\n  \"book-blank\": 62937,\n  \"book-bookmark\": 57531,\n  \"book-circle-arrow-right\": 57532,\n  \"book-circle-arrow-up\": 57533,\n  \"book-circle\": 57599,\n  \"book-copy\": 57534,\n  \"book-dead\": 63159,\n  \"book-font\": 57535,\n  \"book-heart\": 62617,\n  \"book-journal-whills\": 63082,\n  \"book-law\": 57537,\n  \"book-medical\": 63462,\n  \"book-open-alt\": 57536,\n  \"book-open-cover\": 57536,\n  \"book-open-lines\": 59219,\n  \"book-open-reader\": 62938,\n  \"book-open\": 62744,\n  \"book-quran\": 63111,\n  \"book-reader\": 62938,\n  \"book-section\": 57537,\n  \"book-skull\": 63159,\n  \"book-sparkles\": 63160,\n  \"book-spells\": 63160,\n  \"book-spine\": 59220,\n  \"book-tanakh\": 63527,\n  \"book-user\": 63463,\n  \"book\": 61485,\n  \"bookmark-circle\": 57600,\n  \"bookmark-plus\": 59221,\n  \"bookmark-slash\": 57538,\n  \"bookmark\": 61486,\n  \"books-medical\": 63464,\n  \"books\": 62939,\n  \"boombox\": 63653,\n  \"boot-heeled\": 58175,\n  \"boot\": 63362,\n  \"booth-curtain\": 63284,\n  \"border-all\": 63564,\n  \"border-bottom-right\": 63572,\n  \"border-bottom\": 63565,\n  \"border-center-h\": 63644,\n  \"border-center-v\": 63645,\n  \"border-inner\": 63566,\n  \"border-left\": 63567,\n  \"border-none\": 63568,\n  \"border-outer\": 63569,\n  \"border-right\": 63570,\n  \"border-style-alt\": 63572,\n  \"border-style\": 63571,\n  \"border-top-left\": 63571,\n  \"border-top\": 63573,\n  \"bore-hole\": 58563,\n  \"bottle-baby\": 58995,\n  \"bottle-droplet\": 58564,\n  \"bottle-water\": 58565,\n  \"bow-archery\": 59450,\n  \"bow-arrow\": 63161,\n  \"bowl-chopsticks-noodles\": 58090,\n  \"bowl-chopsticks\": 58089,\n  \"bowl-food\": 58566,\n  \"bowl-hot\": 63523,\n  \"bowl-rice\": 58091,\n  \"bowl-salad\": 63518,\n  \"bowl-scoop\": 58334,\n  \"bowl-scoops\": 58335,\n  \"bowl-shaved-ice\": 58334,\n  \"bowl-soft-serve\": 58475,\n  \"bowl-spoon\": 58336,\n  \"bowling-ball-pin\": 57539,\n  \"bowling-ball\": 62518,\n  \"bowling-pins\": 62519,\n  \"box-alt\": 62618,\n  \"box-archive\": 61831,\n  \"box-arrow-down-arrow-up\": 59285,\n  \"box-arrow-down-magnifying-glass\": 59286,\n  \"box-arrow-down\": 59284,\n  \"box-arrow-up\": 59431,\n  \"box-ballot\": 63285,\n  \"box-check\": 62567,\n  \"box-circle-check\": 57540,\n  \"box-dollar\": 62624,\n  \"box-fragile\": 62619,\n  \"box-full\": 62620,\n  \"box-heart\": 62621,\n  \"box-isometric-tape\": 59288,\n  \"box-isometric\": 59287,\n  \"box-magnifying-glass\": 59432,\n  \"box-open-full\": 62620,\n  \"box-open\": 62622,\n  \"box-taped\": 62618,\n  \"box-tissue\": 57435,\n  \"box-up\": 62623,\n  \"box-usd\": 62624,\n  \"box\": 62566,\n  \"boxes-alt\": 62568,\n  \"boxes-packing\": 58567,\n  \"boxes-stacked\": 62568,\n  \"boxes\": 62568,\n  \"boxing-glove\": 62520,\n  \"bra\": 59087,\n  \"bracket-curly-left\": 123,\n  \"bracket-curly-right\": 125,\n  \"bracket-curly\": 123,\n  \"bracket-left\": 91,\n  \"bracket-round-right\": 41,\n  \"bracket-round\": 40,\n  \"bracket-square-right\": 93,\n  \"bracket-square\": 91,\n  \"bracket\": 91,\n  \"brackets-curly\": 63466,\n  \"brackets-round\": 57541,\n  \"brackets-square\": 63465,\n  \"brackets\": 63465,\n  \"braille\": 62113,\n  \"brain-arrow-curved-right\": 63095,\n  \"brain-circuit\": 57542,\n  \"brain\": 62940,\n  \"brake-warning\": 57543,\n  \"brazilian-real-sign\": 58476,\n  \"bread-loaf\": 63467,\n  \"bread-slice-butter\": 58337,\n  \"bread-slice\": 63468,\n  \"bridge-circle-check\": 58569,\n  \"bridge-circle-exclamation\": 58570,\n  \"bridge-circle-xmark\": 58571,\n  \"bridge-lock\": 58572,\n  \"bridge-suspension\": 58573,\n  \"bridge-water\": 58574,\n  \"bridge\": 58568,\n  \"briefcase-arrow-right\": 58098,\n  \"briefcase-blank\": 57544,\n  \"briefcase-clock\": 63050,\n  \"briefcase-medical\": 62569,\n  \"briefcase\": 61617,\n  \"briefs\": 59088,\n  \"brightness-low\": 57546,\n  \"brightness\": 57545,\n  \"bring-forward\": 63574,\n  \"bring-front\": 63575,\n  \"broadcast-tower\": 62745,\n  \"broccoli\": 58338,\n  \"broom-ball\": 62552,\n  \"broom-wide\": 58833,\n  \"broom\": 62746,\n  \"browser\": 62334,\n  \"browsers\": 57547,\n  \"brush\": 62813,\n  \"bucket\": 58575,\n  \"bug-slash\": 58512,\n  \"bug\": 61832,\n  \"bugs\": 58576,\n  \"building-circle-arrow-right\": 58577,\n  \"building-circle-check\": 58578,\n  \"building-circle-exclamation\": 58579,\n  \"building-circle-xmark\": 58580,\n  \"building-columns\": 61852,\n  \"building-flag\": 58581,\n  \"building-lock\": 58582,\n  \"building-magnifying-glass\": 58908,\n  \"building-memo\": 58910,\n  \"building-ngo\": 58583,\n  \"building-shield\": 58584,\n  \"building-un\": 58585,\n  \"building-user\": 58586,\n  \"building-wheat\": 58587,\n  \"building\": 61869,\n  \"buildings\": 57548,\n  \"bulldozer\": 58965,\n  \"bullhorn\": 61601,\n  \"bullseye-arrow\": 63048,\n  \"bullseye-pointer\": 63049,\n  \"bullseye\": 61760,\n  \"buoy-mooring\": 58806,\n  \"buoy\": 58805,\n  \"burger-cheese\": 63473,\n  \"burger-fries\": 57549,\n  \"burger-glass\": 57550,\n  \"burger-lettuce\": 58339,\n  \"burger-soda\": 63576,\n  \"burger\": 63493,\n  \"burn\": 62570,\n  \"burrito\": 63469,\n  \"burst-new\": 59512,\n  \"burst\": 58588,\n  \"bus-alt\": 62814,\n  \"bus-school\": 62941,\n  \"bus-side\": 59421,\n  \"bus-simple\": 62814,\n  \"bus-stop\": 59422,\n  \"bus\": 61959,\n  \"business-front\": 58460,\n  \"business-time\": 63050,\n  \"butter\": 58340,\n  \"butterfly\": 59409,\n  \"c\": 67,\n  \"cab\": 61882,\n  \"cabin\": 58477,\n  \"cabinet-filing\": 63051,\n  \"cable-car\": 63450,\n  \"cactus\": 63655,\n  \"caduceus\": 59009,\n  \"cake-candles\": 61949,\n  \"cake-slice\": 58341,\n  \"cake\": 61949,\n  \"calculator-alt\": 63052,\n  \"calculator-simple\": 63052,\n  \"calculator\": 61932,\n  \"calendar-alt\": 61555,\n  \"calendar-arrow-down\": 57552,\n  \"calendar-arrow-up\": 57553,\n  \"calendar-check\": 62068,\n  \"calendar-circle-exclamation\": 58478,\n  \"calendar-circle-minus\": 58479,\n  \"calendar-circle-plus\": 58480,\n  \"calendar-circle-user\": 58481,\n  \"calendar-circle\": 57602,\n  \"calendar-clock\": 57554,\n  \"calendar-day\": 63363,\n  \"calendar-days\": 61555,\n  \"calendar-download\": 57552,\n  \"calendar-edit\": 62259,\n  \"calendar-exclamation\": 62260,\n  \"calendar-heart\": 57555,\n  \"calendar-image\": 57556,\n  \"calendar-lines-pen\": 58482,\n  \"calendar-lines\": 57557,\n  \"calendar-minus\": 62066,\n  \"calendar-note\": 57557,\n  \"calendar-pen\": 62259,\n  \"calendar-plus\": 62065,\n  \"calendar-range\": 57558,\n  \"calendar-star\": 63286,\n  \"calendar-time\": 57554,\n  \"calendar-times\": 62067,\n  \"calendar-upload\": 57553,\n  \"calendar-users\": 58850,\n  \"calendar-week\": 63364,\n  \"calendar-xmark\": 62067,\n  \"calendar\": 61747,\n  \"calendars\": 57559,\n  \"camcorder\": 63656,\n  \"camera-alt\": 61488,\n  \"camera-cctv\": 63660,\n  \"camera-circle-ellipsis\": 59238,\n  \"camera-circle\": 57603,\n  \"camera-clock\": 59239,\n  \"camera-home\": 63742,\n  \"camera-movie\": 63657,\n  \"camera-polaroid\": 63658,\n  \"camera-retro\": 61571,\n  \"camera-rotate\": 57560,\n  \"camera-security\": 63742,\n  \"camera-shutter\": 59240,\n  \"camera-slash\": 57561,\n  \"camera-viewfinder\": 57562,\n  \"camera-web-slash\": 63539,\n  \"camera-web\": 63538,\n  \"camera\": 61488,\n  \"campfire\": 63162,\n  \"campground\": 63163,\n  \"can-food\": 58342,\n  \"cancel\": 61534,\n  \"cancer\": 59463,\n  \"candle-holder\": 63164,\n  \"candy-bar\": 58344,\n  \"candy-cane\": 63366,\n  \"candy-corn\": 63165,\n  \"candy\": 58343,\n  \"cannabis\": 62815,\n  \"cannon\": 58946,\n  \"canoe-person\": 59548,\n  \"capricorn\": 59464,\n  \"capsule\": 59226,\n  \"capsules\": 62571,\n  \"car-alt\": 62942,\n  \"car-battery\": 62943,\n  \"car-bolt\": 58177,\n  \"car-building\": 63577,\n  \"car-bump\": 62944,\n  \"car-burst\": 62945,\n  \"car-bus\": 63578,\n  \"car-circle-bolt\": 58178,\n  \"car-crash\": 62945,\n  \"car-garage\": 62946,\n  \"car-key\": 59328,\n  \"car-mechanic\": 62947,\n  \"car-mirrors\": 58179,\n  \"car-on\": 58589,\n  \"car-people\": 59036,\n  \"car-rear\": 62942,\n  \"car-side-bolt\": 58180,\n  \"car-side\": 62948,\n  \"car-siren-on\": 59330,\n  \"car-siren\": 59329,\n  \"car-tilt\": 62949,\n  \"car-tunnel\": 58590,\n  \"car-wash\": 62950,\n  \"car-wrench\": 62947,\n  \"car\": 61881,\n  \"caravan-alt\": 57344,\n  \"caravan-simple\": 57344,\n  \"caravan\": 63743,\n  \"card-club\": 58345,\n  \"card-diamond\": 58346,\n  \"card-heart\": 58347,\n  \"card-spade\": 58348,\n  \"cards-blank\": 58591,\n  \"cards\": 58349,\n  \"caret-circle-down\": 62253,\n  \"caret-circle-left\": 62254,\n  \"caret-circle-right\": 62256,\n  \"caret-circle-up\": 62257,\n  \"caret-down\": 61655,\n  \"caret-large-down\": 59436,\n  \"caret-large-left\": 59437,\n  \"caret-large-right\": 59438,\n  \"caret-large-up\": 59439,\n  \"caret-left\": 61657,\n  \"caret-right\": 61658,\n  \"caret-square-down\": 61776,\n  \"caret-square-left\": 61841,\n  \"caret-square-right\": 61778,\n  \"caret-square-up\": 61777,\n  \"caret-up\": 61656,\n  \"carpool\": 59036,\n  \"carriage-baby\": 63357,\n  \"carrot\": 63367,\n  \"cars\": 63579,\n  \"cart-arrow-down\": 61976,\n  \"cart-arrow-up\": 58350,\n  \"cart-circle-arrow-down\": 58351,\n  \"cart-circle-arrow-up\": 58352,\n  \"cart-circle-check\": 58353,\n  \"cart-circle-exclamation\": 58354,\n  \"cart-circle-plus\": 58355,\n  \"cart-circle-xmark\": 58356,\n  \"cart-flatbed-boxes\": 62581,\n  \"cart-flatbed-empty\": 62582,\n  \"cart-flatbed-suitcase\": 62877,\n  \"cart-flatbed\": 62580,\n  \"cart-minus\": 57563,\n  \"cart-plus\": 61975,\n  \"cart-shopping-fast\": 57564,\n  \"cart-shopping\": 61562,\n  \"cart-xmark\": 57565,\n  \"cash-register\": 63368,\n  \"cassette-betamax\": 63652,\n  \"cassette-tape\": 63659,\n  \"cassette-vhs\": 63724,\n  \"castle\": 57566,\n  \"cat-space\": 57345,\n  \"cat\": 63166,\n  \"cauldron\": 63167,\n  \"cctv\": 63660,\n  \"cedi-sign\": 57567,\n  \"cent-sign\": 58357,\n  \"certificate\": 61603,\n  \"chain-broken\": 61735,\n  \"chain-horizontal-slash\": 57804,\n  \"chain-horizontal\": 57803,\n  \"chain-slash\": 61735,\n  \"chain\": 61633,\n  \"chair-office\": 63169,\n  \"chair\": 63168,\n  \"chalkboard-teacher\": 62748,\n  \"chalkboard-user\": 62748,\n  \"chalkboard\": 62747,\n  \"champagne-glass\": 63390,\n  \"champagne-glasses\": 63391,\n  \"charging-station\": 62951,\n  \"chart-area\": 61950,\n  \"chart-bar\": 61568,\n  \"chart-bullet\": 57569,\n  \"chart-candlestick\": 57570,\n  \"chart-column\": 57571,\n  \"chart-diagram\": 59029,\n  \"chart-fft\": 59038,\n  \"chart-gantt\": 57572,\n  \"chart-kanban\": 58959,\n  \"chart-line-down\": 63053,\n  \"chart-line-up-down\": 58839,\n  \"chart-line-up\": 57573,\n  \"chart-line\": 61953,\n  \"chart-mixed-up-circle-currency\": 58840,\n  \"chart-mixed-up-circle-dollar\": 58841,\n  \"chart-mixed\": 63043,\n  \"chart-network\": 63370,\n  \"chart-pie-alt\": 63054,\n  \"chart-pie-simple-circle-currency\": 58884,\n  \"chart-pie-simple-circle-dollar\": 58885,\n  \"chart-pie-simple\": 63054,\n  \"chart-pie\": 61952,\n  \"chart-pyramid\": 57574,\n  \"chart-radar\": 57575,\n  \"chart-scatter-3d\": 57576,\n  \"chart-scatter-bubble\": 57577,\n  \"chart-scatter\": 63470,\n  \"chart-simple-horizontal\": 58484,\n  \"chart-simple\": 58483,\n  \"chart-sine\": 59037,\n  \"chart-tree-map\": 57578,\n  \"chart-user\": 63139,\n  \"chart-waterfall\": 57579,\n  \"check-circle\": 61528,\n  \"check-double\": 62816,\n  \"check-square\": 61770,\n  \"check-to-slot\": 63346,\n  \"check\": 61452,\n  \"cheese-swiss\": 63472,\n  \"cheese\": 63471,\n  \"cheeseburger\": 63473,\n  \"chemex\": 59440,\n  \"cherries\": 57580,\n  \"chess-bishop-alt\": 62523,\n  \"chess-bishop-piece\": 62523,\n  \"chess-bishop\": 62522,\n  \"chess-board\": 62524,\n  \"chess-clock-alt\": 62526,\n  \"chess-clock-flip\": 62526,\n  \"chess-clock\": 62525,\n  \"chess-king-alt\": 62528,\n  \"chess-king-piece\": 62528,\n  \"chess-king\": 62527,\n  \"chess-knight-alt\": 62530,\n  \"chess-knight-piece\": 62530,\n  \"chess-knight\": 62529,\n  \"chess-pawn-alt\": 62532,\n  \"chess-pawn-piece\": 62532,\n  \"chess-pawn\": 62531,\n  \"chess-queen-alt\": 62534,\n  \"chess-queen-piece\": 62534,\n  \"chess-queen\": 62533,\n  \"chess-rook-alt\": 62536,\n  \"chess-rook-piece\": 62536,\n  \"chess-rook\": 62535,\n  \"chess\": 62521,\n  \"chest-drawers\": 59523,\n  \"chestnut\": 58358,\n  \"chevron-circle-down\": 61754,\n  \"chevron-circle-left\": 61751,\n  \"chevron-circle-right\": 61752,\n  \"chevron-circle-up\": 61753,\n  \"chevron-double-down\": 62242,\n  \"chevron-double-left\": 62243,\n  \"chevron-double-right\": 62244,\n  \"chevron-double-up\": 62245,\n  \"chevron-down\": 61560,\n  \"chevron-left\": 61523,\n  \"chevron-right\": 61524,\n  \"chevron-square-down\": 62249,\n  \"chevron-square-left\": 62250,\n  \"chevron-square-right\": 62251,\n  \"chevron-square-up\": 62252,\n  \"chevron-up\": 61559,\n  \"chevrons-down\": 62242,\n  \"chevrons-left\": 62243,\n  \"chevrons-right\": 62244,\n  \"chevrons-up\": 62245,\n  \"chf-sign\": 58882,\n  \"child-combatant\": 58592,\n  \"child-dress\": 58780,\n  \"child-reaching\": 58781,\n  \"child-rifle\": 58592,\n  \"child\": 61870,\n  \"children\": 58593,\n  \"chimney\": 63371,\n  \"chocolate-bar\": 58344,\n  \"chopsticks\": 58359,\n  \"church\": 62749,\n  \"circle-0\": 57581,\n  \"circle-1\": 57582,\n  \"circle-2\": 57583,\n  \"circle-3\": 57584,\n  \"circle-4\": 57585,\n  \"circle-5\": 57586,\n  \"circle-6\": 57587,\n  \"circle-7\": 57588,\n  \"circle-8\": 57589,\n  \"circle-9\": 57590,\n  \"circle-a\": 57591,\n  \"circle-ampersand\": 57592,\n  \"circle-arrow-down-left\": 57593,\n  \"circle-arrow-down-right\": 57594,\n  \"circle-arrow-down\": 61611,\n  \"circle-arrow-left\": 61608,\n  \"circle-arrow-right\": 61609,\n  \"circle-arrow-up-left\": 57595,\n  \"circle-arrow-up-right\": 57596,\n  \"circle-arrow-up\": 61610,\n  \"circle-austral\": 59163,\n  \"circle-australian-dollar\": 59184,\n  \"circle-b\": 57597,\n  \"circle-baht\": 59181,\n  \"circle-bangladeshi-taka\": 59137,\n  \"circle-bitcoin\": 59191,\n  \"circle-bolt\": 57598,\n  \"circle-book-open\": 57599,\n  \"circle-bookmark\": 57600,\n  \"circle-brazilian-real\": 59115,\n  \"circle-c\": 57601,\n  \"circle-calendar\": 57602,\n  \"circle-camera\": 57603,\n  \"circle-caret-down\": 62253,\n  \"circle-caret-left\": 62254,\n  \"circle-caret-right\": 62256,\n  \"circle-caret-up\": 62257,\n  \"circle-cedi\": 59202,\n  \"circle-cent\": 59178,\n  \"circle-check\": 61528,\n  \"circle-chevron-down\": 61754,\n  \"circle-chevron-left\": 61751,\n  \"circle-chevron-right\": 61752,\n  \"circle-chevron-up\": 61753,\n  \"circle-chf\": 59180,\n  \"circle-colon\": 59132,\n  \"circle-cruzeiro\": 59170,\n  \"circle-currency\": 59118,\n  \"circle-d\": 57604,\n  \"circle-danish-krone\": 59206,\n  \"circle-dashed\": 57605,\n  \"circle-divide\": 57606,\n  \"circle-dollar-to-slot\": 62649,\n  \"circle-dollar\": 62184,\n  \"circle-dong\": 59171,\n  \"circle-dot\": 61842,\n  \"circle-down-left\": 57607,\n  \"circle-down-right\": 57608,\n  \"circle-down\": 62296,\n  \"circle-e\": 57609,\n  \"circle-ellipsis-vertical\": 57611,\n  \"circle-ellipsis\": 57610,\n  \"circle-envelope\": 57612,\n  \"circle-equals\": 59057,\n  \"circle-euro\": 58830,\n  \"circle-eurozone\": 59205,\n  \"circle-exclamation-check\": 57613,\n  \"circle-exclamation\": 61546,\n  \"circle-f\": 57614,\n  \"circle-florin\": 59108,\n  \"circle-franc\": 59169,\n  \"circle-g\": 57615,\n  \"circle-gf\": 59007,\n  \"circle-guarani\": 59195,\n  \"circle-h\": 62590,\n  \"circle-half-horizontal\": 59404,\n  \"circle-half-stroke-horizontal\": 59405,\n  \"circle-half-stroke\": 61506,\n  \"circle-half\": 57616,\n  \"circle-heart\": 62663,\n  \"circle-house\": 59080,\n  \"circle-hryvnia\": 59119,\n  \"circle-i\": 57617,\n  \"circle-indian-rupee\": 59188,\n  \"circle-info\": 61530,\n  \"circle-j\": 57618,\n  \"circle-k\": 57619,\n  \"circle-kip\": 59133,\n  \"circle-l\": 57620,\n  \"circle-lari\": 59165,\n  \"circle-left\": 62297,\n  \"circle-lira\": 59126,\n  \"circle-litecoin\": 59124,\n  \"circle-location-arrow\": 62978,\n  \"circle-m\": 57621,\n  \"circle-malaysian-ringgit\": 59129,\n  \"circle-manat\": 59131,\n  \"circle-microphone-lines\": 57623,\n  \"circle-microphone\": 57622,\n  \"circle-mill\": 59138,\n  \"circle-minus\": 61526,\n  \"circle-moon\": 59360,\n  \"circle-n\": 57624,\n  \"circle-naira\": 59209,\n  \"circle-nodes\": 58594,\n  \"circle-norwegian-krone\": 59192,\n  \"circle-notch\": 61902,\n  \"circle-o\": 57625,\n  \"circle-p\": 57626,\n  \"circle-parking\": 62997,\n  \"circle-pause\": 62091,\n  \"circle-peruvian-soles\": 59123,\n  \"circle-peseta\": 59201,\n  \"circle-peso\": 59135,\n  \"circle-phone-flip\": 57628,\n  \"circle-phone-hangup\": 57629,\n  \"circle-phone\": 57627,\n  \"circle-play\": 61764,\n  \"circle-plus\": 61525,\n  \"circle-polish-zloty\": 59136,\n  \"circle-q\": 57630,\n  \"circle-quarter-stroke\": 58835,\n  \"circle-quarter\": 57631,\n  \"circle-quarters\": 58360,\n  \"circle-question\": 61529,\n  \"circle-r\": 57632,\n  \"circle-radiation\": 63418,\n  \"circle-renminbi\": 59113,\n  \"circle-right\": 62298,\n  \"circle-ruble\": 59109,\n  \"circle-rupee\": 59156,\n  \"circle-rupiah\": 59142,\n  \"circle-s\": 57633,\n  \"circle-share-nodes\": 59099,\n  \"circle-shekel\": 59139,\n  \"circle-small\": 57634,\n  \"circle-sort-down\": 57393,\n  \"circle-sort-up\": 57394,\n  \"circle-sort\": 57392,\n  \"circle-star\": 57635,\n  \"circle-sterling\": 58831,\n  \"circle-stop\": 62093,\n  \"circle-swedish-krona\": 59203,\n  \"circle-t\": 57636,\n  \"circle-tenge\": 59173,\n  \"circle-three-quarters-stroke\": 58836,\n  \"circle-three-quarters\": 57637,\n  \"circle-trash\": 57638,\n  \"circle-tugrik\": 59153,\n  \"circle-turkish-lira\": 59193,\n  \"circle-u\": 57639,\n  \"circle-up-left\": 57640,\n  \"circle-up-right\": 57641,\n  \"circle-up\": 62299,\n  \"circle-user-circle-check\": 59295,\n  \"circle-user-circle-exclamation\": 59296,\n  \"circle-user-circle-minus\": 59297,\n  \"circle-user-circle-moon\": 59298,\n  \"circle-user-circle-plus\": 59299,\n  \"circle-user-circle-question\": 59300,\n  \"circle-user-circle-user\": 59301,\n  \"circle-user-circle-xmark\": 59302,\n  \"circle-user-clock\": 59303,\n  \"circle-user\": 62141,\n  \"circle-v\": 57642,\n  \"circle-video\": 57643,\n  \"circle-w\": 57644,\n  \"circle-waveform-lines\": 57645,\n  \"circle-wifi-circle-wifi\": 59006,\n  \"circle-wifi-group\": 59006,\n  \"circle-wifi\": 59005,\n  \"circle-won\": 59116,\n  \"circle-x\": 57646,\n  \"circle-xmark\": 61527,\n  \"circle-y\": 57647,\n  \"circle-yen\": 58832,\n  \"circle-z\": 57648,\n  \"circle\": 61713,\n  \"circleapore-dollar\": 59166,\n  \"circles-overlap-3\": 59041,\n  \"circles-overlap\": 58880,\n  \"citrus-slice\": 58101,\n  \"citrus\": 58100,\n  \"city\": 63055,\n  \"clapperboard-play\": 57650,\n  \"clapperboard\": 57649,\n  \"clarinet\": 63661,\n  \"claw-marks\": 63170,\n  \"clinic-medical\": 63474,\n  \"clipboard-check\": 62572,\n  \"clipboard-clock\": 59222,\n  \"clipboard-exclamation\": 59223,\n  \"clipboard-list-check\": 63287,\n  \"clipboard-list\": 62573,\n  \"clipboard-medical\": 57651,\n  \"clipboard-prescription\": 62952,\n  \"clipboard-question\": 58595,\n  \"clipboard-user\": 63475,\n  \"clipboard\": 62248,\n  \"clock-desk\": 57652,\n  \"clock-eight-thirty\": 58182,\n  \"clock-eight\": 58181,\n  \"clock-eleven-thirty\": 58184,\n  \"clock-eleven\": 58183,\n  \"clock-five-thirty\": 58186,\n  \"clock-five\": 58185,\n  \"clock-four-thirty\": 58187,\n  \"clock-four\": 61463,\n  \"clock-nine-thirty\": 58189,\n  \"clock-nine\": 58188,\n  \"clock-one-thirty\": 58191,\n  \"clock-one\": 58190,\n  \"clock-rotate-left\": 61914,\n  \"clock-seven-thirty\": 58193,\n  \"clock-seven\": 58192,\n  \"clock-six-thirty\": 58195,\n  \"clock-six\": 58194,\n  \"clock-ten-thirty\": 58197,\n  \"clock-ten\": 58196,\n  \"clock-three-thirty\": 58199,\n  \"clock-three\": 58198,\n  \"clock-twelve-thirty\": 58201,\n  \"clock-twelve\": 58200,\n  \"clock-two-thirty\": 58203,\n  \"clock-two\": 58202,\n  \"clock\": 61463,\n  \"clone-plus\": 59212,\n  \"clone\": 62029,\n  \"close\": 61453,\n  \"closed-captioning-slash\": 57653,\n  \"closed-captioning\": 61962,\n  \"clothes-hanger\": 57654,\n  \"cloud-arrow-down\": 61677,\n  \"cloud-arrow-up\": 61678,\n  \"cloud-binary\": 58881,\n  \"cloud-bolt-moon\": 63341,\n  \"cloud-bolt-sun\": 63342,\n  \"cloud-bolt\": 63340,\n  \"cloud-check\": 58204,\n  \"cloud-download-alt\": 61677,\n  \"cloud-download\": 61677,\n  \"cloud-drizzle\": 63288,\n  \"cloud-exclamation\": 58513,\n  \"cloud-fog\": 63310,\n  \"cloud-hail-mixed\": 63290,\n  \"cloud-hail\": 63289,\n  \"cloud-meatball\": 63291,\n  \"cloud-minus\": 58205,\n  \"cloud-moon-rain\": 63292,\n  \"cloud-moon\": 63171,\n  \"cloud-music\": 63662,\n  \"cloud-plus\": 58206,\n  \"cloud-question\": 58514,\n  \"cloud-rain\": 63293,\n  \"cloud-rainbow\": 63294,\n  \"cloud-showers-heavy\": 63296,\n  \"cloud-showers-water\": 58596,\n  \"cloud-showers\": 63295,\n  \"cloud-slash\": 57655,\n  \"cloud-sleet\": 63297,\n  \"cloud-snow\": 63298,\n  \"cloud-sun-rain\": 63299,\n  \"cloud-sun\": 63172,\n  \"cloud-upload-alt\": 61678,\n  \"cloud-upload\": 61678,\n  \"cloud-word\": 57656,\n  \"cloud-xmark\": 58207,\n  \"cloud\": 61634,\n  \"clouds-moon\": 63301,\n  \"clouds-sun\": 63302,\n  \"clouds\": 63300,\n  \"clover\": 57657,\n  \"club\": 62247,\n  \"cny\": 61783,\n  \"cocktail\": 62817,\n  \"coconut\": 58102,\n  \"code-branch\": 61734,\n  \"code-commit\": 62342,\n  \"code-compare\": 57658,\n  \"code-fork\": 57659,\n  \"code-merge\": 62343,\n  \"code-pull-request-closed\": 58361,\n  \"code-pull-request-draft\": 58362,\n  \"code-pull-request\": 57660,\n  \"code-simple\": 57661,\n  \"code\": 61729,\n  \"coffee-bean\": 57662,\n  \"coffee-beans\": 57663,\n  \"coffee-pot\": 57346,\n  \"coffee-togo\": 63173,\n  \"coffee\": 61684,\n  \"coffin-cross\": 57425,\n  \"coffin\": 63174,\n  \"cog\": 61459,\n  \"cogs\": 61573,\n  \"coin-blank\": 58363,\n  \"coin-front\": 58364,\n  \"coin-vertical\": 58365,\n  \"coin\": 63580,\n  \"coins\": 62750,\n  \"colon-sign\": 57664,\n  \"colon\": 58,\n  \"columns-3\": 58209,\n  \"columns\": 61659,\n  \"comet\": 57347,\n  \"comma\": 44,\n  \"command\": 57666,\n  \"comment-alt-arrow-down\": 57819,\n  \"comment-alt-arrow-up\": 57820,\n  \"comment-alt-captions\": 57822,\n  \"comment-alt-check\": 62626,\n  \"comment-alt-dollar\": 63056,\n  \"comment-alt-dots\": 62627,\n  \"comment-alt-edit\": 62628,\n  \"comment-alt-exclamation\": 62629,\n  \"comment-alt-image\": 57824,\n  \"comment-alt-lines\": 62630,\n  \"comment-alt-medical\": 63476,\n  \"comment-alt-minus\": 62631,\n  \"comment-alt-music\": 63663,\n  \"comment-alt-plus\": 62632,\n  \"comment-alt-quote\": 57828,\n  \"comment-alt-slash\": 62633,\n  \"comment-alt-smile\": 62634,\n  \"comment-alt-text\": 57830,\n  \"comment-alt-times\": 62635,\n  \"comment-alt\": 62074,\n  \"comment-arrow-down\": 57667,\n  \"comment-arrow-up-right\": 57669,\n  \"comment-arrow-up\": 57668,\n  \"comment-captions\": 57670,\n  \"comment-check\": 62636,\n  \"comment-code\": 57671,\n  \"comment-dollar\": 63057,\n  \"comment-dot\": 59100,\n  \"comment-dots\": 62637,\n  \"comment-edit\": 62638,\n  \"comment-exclamation\": 62639,\n  \"comment-heart\": 58824,\n  \"comment-image\": 57672,\n  \"comment-lines\": 62640,\n  \"comment-medical\": 63477,\n  \"comment-middle-alt\": 57825,\n  \"comment-middle-top-alt\": 57826,\n  \"comment-middle-top\": 57674,\n  \"comment-middle\": 57673,\n  \"comment-minus\": 62641,\n  \"comment-music\": 63664,\n  \"comment-nodes\": 59030,\n  \"comment-pen\": 62638,\n  \"comment-plus\": 62642,\n  \"comment-question\": 57675,\n  \"comment-quote\": 57676,\n  \"comment-slash\": 62643,\n  \"comment-smile\": 62644,\n  \"comment-sms\": 63437,\n  \"comment-text\": 57677,\n  \"comment-times\": 62645,\n  \"comment-waveform\": 59101,\n  \"comment-xmark\": 62645,\n  \"comment\": 61557,\n  \"commenting\": 62637,\n  \"comments-alt-dollar\": 63058,\n  \"comments-alt\": 62646,\n  \"comments-dollar\": 63059,\n  \"comments-question-check\": 57679,\n  \"comments-question\": 57678,\n  \"comments\": 61574,\n  \"compact-disc\": 62751,\n  \"compass-drafting\": 62824,\n  \"compass-slash\": 62953,\n  \"compass\": 61774,\n  \"compress-alt\": 62498,\n  \"compress-arrows-alt\": 63372,\n  \"compress-arrows\": 57509,\n  \"compress-wide\": 62246,\n  \"compress\": 61542,\n  \"computer-classic\": 63665,\n  \"computer-mouse-button-left\": 59341,\n  \"computer-mouse-button-right\": 59342,\n  \"computer-mouse-scrollwheel\": 63693,\n  \"computer-mouse\": 63692,\n  \"computer-speaker\": 63666,\n  \"computer\": 58597,\n  \"concierge-bell\": 62818,\n  \"construction\": 63581,\n  \"contact-book\": 62137,\n  \"contact-card\": 62139,\n  \"container-storage\": 62647,\n  \"conveyor-belt-alt\": 62575,\n  \"conveyor-belt-arm\": 58872,\n  \"conveyor-belt-boxes\": 62575,\n  \"conveyor-belt-empty\": 57680,\n  \"conveyor-belt\": 62574,\n  \"cookie-bite\": 62820,\n  \"cookie\": 62819,\n  \"copy\": 61637,\n  \"copyright\": 61945,\n  \"corn\": 63175,\n  \"corner\": 58366,\n  \"couch-small\": 62668,\n  \"couch\": 62648,\n  \"court-sport\": 58947,\n  \"cow\": 63176,\n  \"cowbell-circle-plus\": 63668,\n  \"cowbell-more\": 63668,\n  \"cowbell\": 63667,\n  \"crab\": 58367,\n  \"crate-apple\": 63153,\n  \"crate-empty\": 57681,\n  \"credit-card-alt\": 61597,\n  \"credit-card-blank\": 62345,\n  \"credit-card-front\": 62346,\n  \"credit-card\": 61597,\n  \"creemee\": 58368,\n  \"cricket-bat-ball\": 62537,\n  \"cricket\": 62537,\n  \"croissant\": 63478,\n  \"crop-alt\": 62821,\n  \"crop-simple\": 62821,\n  \"crop\": 61733,\n  \"cross\": 63060,\n  \"crosshairs-simple\": 58783,\n  \"crosshairs\": 61531,\n  \"crow\": 62752,\n  \"crown\": 62753,\n  \"crutch\": 63479,\n  \"crutches\": 63480,\n  \"cruzeiro-sign\": 57682,\n  \"crystal-ball\": 58210,\n  \"cube\": 61874,\n  \"cubes-stacked\": 58598,\n  \"cubes\": 61875,\n  \"cucumber\": 58369,\n  \"cup-straw-swoosh\": 58212,\n  \"cup-straw\": 58211,\n  \"cup-togo\": 63173,\n  \"cupcake\": 58370,\n  \"curling-stone\": 62538,\n  \"curling\": 62538,\n  \"currency-sign\": 59179,\n  \"custard\": 58371,\n  \"cut\": 61636,\n  \"cutlery\": 62183,\n  \"d\": 68,\n  \"dagger\": 63179,\n  \"danish-krone-sign\": 59168,\n  \"dash\": 58372,\n  \"dashboard\": 63012,\n  \"database\": 61888,\n  \"deaf\": 62116,\n  \"deafness\": 62116,\n  \"debug\": 63481,\n  \"dedent\": 61499,\n  \"deer-rudolph\": 63375,\n  \"deer\": 63374,\n  \"delete-left\": 62810,\n  \"delete-right\": 57684,\n  \"democrat\": 63303,\n  \"desk\": 59518,\n  \"desktop-alt\": 62352,\n  \"desktop-arrow-down\": 57685,\n  \"desktop-code\": 57701,\n  \"desktop-medical\": 57702,\n  \"desktop-slash\": 58106,\n  \"desktop\": 62352,\n  \"dewpoint\": 63304,\n  \"dharmachakra\": 63061,\n  \"diagnoses\": 62576,\n  \"diagram-cells\": 58485,\n  \"diagram-lean-canvas\": 57686,\n  \"diagram-nested\": 57687,\n  \"diagram-next\": 58486,\n  \"diagram-predecessor\": 58487,\n  \"diagram-previous\": 58488,\n  \"diagram-project\": 62786,\n  \"diagram-sankey\": 57688,\n  \"diagram-subtask\": 58489,\n  \"diagram-successor\": 58490,\n  \"diagram-venn\": 57690,\n  \"dial-high\": 57692,\n  \"dial-low\": 57693,\n  \"dial-max\": 57694,\n  \"dial-med-high\": 57691,\n  \"dial-med-low\": 57696,\n  \"dial-med\": 57695,\n  \"dial-min\": 57697,\n  \"dial-off\": 57698,\n  \"dial\": 57691,\n  \"dialpad\": 59340,\n  \"diamond-exclamation\": 58373,\n  \"diamond-half-stroke\": 58808,\n  \"diamond-half\": 58807,\n  \"diamond-turn-right\": 62955,\n  \"diamond\": 61977,\n  \"diamonds-4\": 59019,\n  \"dice-d10\": 63181,\n  \"dice-d12\": 63182,\n  \"dice-d20\": 63183,\n  \"dice-d4\": 63184,\n  \"dice-d6\": 63185,\n  \"dice-d8\": 63186,\n  \"dice-five\": 62755,\n  \"dice-four\": 62756,\n  \"dice-one\": 62757,\n  \"dice-six\": 62758,\n  \"dice-three\": 62759,\n  \"dice-two\": 62760,\n  \"dice\": 62754,\n  \"digging\": 63582,\n  \"digital-tachograph\": 62822,\n  \"dinosaur\": 58878,\n  \"diploma\": 62954,\n  \"direction-left-right\": 59070,\n  \"direction-up-down\": 59071,\n  \"directions\": 62955,\n  \"disc-drive\": 63669,\n  \"disease\": 63482,\n  \"display-arrow-down\": 57700,\n  \"display-chart-up-circle-currency\": 58853,\n  \"display-chart-up-circle-dollar\": 58854,\n  \"display-chart-up\": 58851,\n  \"display-code\": 57701,\n  \"display-medical\": 57702,\n  \"display-slash\": 58106,\n  \"display\": 57699,\n  \"distribute-spacing-horizontal\": 58213,\n  \"distribute-spacing-vertical\": 58214,\n  \"ditto\": 34,\n  \"divide\": 62761,\n  \"dizzy\": 62823,\n  \"dna\": 62577,\n  \"do-not-enter\": 62956,\n  \"dog-leashed\": 63188,\n  \"dog\": 63187,\n  \"dollar-circle\": 62184,\n  \"dollar-sign\": 36,\n  \"dollar-square\": 62185,\n  \"dollar\": 36,\n  \"dolly-box\": 62578,\n  \"dolly-empty\": 62579,\n  \"dolly-flatbed-alt\": 62581,\n  \"dolly-flatbed-empty\": 62582,\n  \"dolly-flatbed\": 62580,\n  \"dolly\": 62578,\n  \"dolphin\": 57704,\n  \"donate\": 62649,\n  \"dong-sign\": 57705,\n  \"donut\": 58374,\n  \"door-closed\": 62762,\n  \"door-open\": 62763,\n  \"dot-circle\": 61842,\n  \"dot\": 59345,\n  \"doughnut\": 58374,\n  \"dove\": 62650,\n  \"down-from-bracket\": 58987,\n  \"down-from-dotted-line\": 58375,\n  \"down-from-line\": 62281,\n  \"down-left-and-up-right-to-center\": 62498,\n  \"down-left\": 57706,\n  \"down-long-to-line\": 59072,\n  \"down-long\": 62217,\n  \"down-right\": 57707,\n  \"down-to-bracket\": 58599,\n  \"down-to-dotted-line\": 58376,\n  \"down-to-line\": 62282,\n  \"down-up\": 59073,\n  \"down\": 62292,\n  \"download\": 61465,\n  \"drafting-compass\": 62824,\n  \"dragon\": 63189,\n  \"draw-circle\": 62957,\n  \"draw-polygon\": 62958,\n  \"draw-square\": 62959,\n  \"dreidel\": 63378,\n  \"dress\": 59089,\n  \"dresser\": 59519,\n  \"drivers-license\": 62146,\n  \"drone-alt\": 63584,\n  \"drone-front\": 63584,\n  \"drone\": 63583,\n  \"droplet-degree\": 63304,\n  \"droplet-percent\": 63312,\n  \"droplet-plus\": 59392,\n  \"droplet-slash\": 62919,\n  \"droplet\": 61507,\n  \"drum-steelpan\": 62826,\n  \"drum\": 62825,\n  \"drumstick-bite\": 63191,\n  \"drumstick\": 63190,\n  \"dryer-alt\": 63586,\n  \"dryer-heat\": 63586,\n  \"dryer\": 63585,\n  \"duck\": 63192,\n  \"dumbbell\": 62539,\n  \"dumpster-fire\": 63380,\n  \"dumpster\": 63379,\n  \"dungeon\": 63193,\n  \"e\": 69,\n  \"ear-circle-checkmark\": 59227,\n  \"ear-deaf\": 62116,\n  \"ear-listen\": 62114,\n  \"ear-muffs\": 63381,\n  \"ear-triangle-exclamation\": 59228,\n  \"ear-waveform\": 59229,\n  \"ear\": 62960,\n  \"earth-africa\": 62844,\n  \"earth-america\": 62845,\n  \"earth-americas\": 62845,\n  \"earth-asia\": 62846,\n  \"earth-europe\": 63394,\n  \"earth-oceania\": 58491,\n  \"earth\": 62845,\n  \"eclipse-alt\": 63306,\n  \"eclipse\": 63305,\n  \"edit\": 61508,\n  \"egg-fried\": 63484,\n  \"egg\": 63483,\n  \"eggplant\": 57708,\n  \"eject\": 61522,\n  \"elephant\": 63194,\n  \"elevator\": 57709,\n  \"ellipsis-h-alt\": 62363,\n  \"ellipsis-h\": 61761,\n  \"ellipsis-stroke-vertical\": 62364,\n  \"ellipsis-stroke\": 62363,\n  \"ellipsis-v-alt\": 62364,\n  \"ellipsis-v\": 61762,\n  \"ellipsis-vertical\": 61762,\n  \"ellipsis\": 61761,\n  \"empty-set\": 63062,\n  \"engine-exclamation\": 62962,\n  \"engine-warning\": 62962,\n  \"engine\": 57710,\n  \"envelope-badge\": 57711,\n  \"envelope-certificate\": 59433,\n  \"envelope-circle-check\": 58600,\n  \"envelope-circle-user\": 59102,\n  \"envelope-circle\": 57612,\n  \"envelope-dot\": 57711,\n  \"envelope-open-dollar\": 63063,\n  \"envelope-open-text\": 63064,\n  \"envelope-open\": 62134,\n  \"envelope-ribbon\": 59433,\n  \"envelope-square\": 61849,\n  \"envelope\": 61664,\n  \"envelopes-bulk\": 63092,\n  \"envelopes\": 57712,\n  \"equals\": 61,\n  \"eraser\": 61741,\n  \"escalator\": 57713,\n  \"ethernet\": 63382,\n  \"eur\": 61779,\n  \"euro-sign\": 61779,\n  \"euro\": 61779,\n  \"eurozone-sign\": 59200,\n  \"excavator\": 58966,\n  \"exchange-alt\": 62306,\n  \"exchange\": 61676,\n  \"exclamation-circle\": 61546,\n  \"exclamation-square\": 62241,\n  \"exclamation-triangle\": 61553,\n  \"exclamation\": 33,\n  \"expand-alt\": 62500,\n  \"expand-arrows-alt\": 62238,\n  \"expand-arrows\": 62237,\n  \"expand-wide\": 62240,\n  \"expand\": 61541,\n  \"exploding-head\": 58110,\n  \"explosion\": 58601,\n  \"external-link-alt\": 62301,\n  \"external-link-square-alt\": 62304,\n  \"external-link-square\": 61772,\n  \"external-link\": 61582,\n  \"eye-closed\": 59451,\n  \"eye-dropper-empty\": 61947,\n  \"eye-dropper-full\": 57714,\n  \"eye-dropper-half\": 57715,\n  \"eye-dropper\": 61947,\n  \"eye-evil\": 63195,\n  \"eye-low-vision\": 62120,\n  \"eye-slash\": 61552,\n  \"eye\": 61550,\n  \"eyedropper\": 61947,\n  \"eyes\": 58215,\n  \"f\": 70,\n  \"face-angry-horns\": 58216,\n  \"face-angry\": 62806,\n  \"face-anguished\": 58217,\n  \"face-anxious-sweat\": 58218,\n  \"face-astonished\": 58219,\n  \"face-awesome\": 58377,\n  \"face-beam-hand-over-mouth\": 58492,\n  \"face-clouds\": 58493,\n  \"face-confounded\": 58220,\n  \"face-confused\": 58221,\n  \"face-cowboy-hat\": 58222,\n  \"face-diagonal-mouth\": 58494,\n  \"face-disappointed\": 58223,\n  \"face-disguise\": 58224,\n  \"face-dizzy\": 62823,\n  \"face-dotted\": 58495,\n  \"face-downcast-sweat\": 58225,\n  \"face-drooling\": 58226,\n  \"face-exhaling\": 58496,\n  \"face-explode\": 58110,\n  \"face-expressionless\": 58227,\n  \"face-eyes-xmarks\": 58228,\n  \"face-fearful\": 58229,\n  \"face-flushed\": 62841,\n  \"face-frown-open\": 62842,\n  \"face-frown-slight\": 58230,\n  \"face-frown\": 61721,\n  \"face-glasses\": 58231,\n  \"face-grimace\": 62847,\n  \"face-grin-beam-sweat\": 62851,\n  \"face-grin-beam\": 62850,\n  \"face-grin-hearts\": 62852,\n  \"face-grin-squint-tears\": 62854,\n  \"face-grin-squint\": 62853,\n  \"face-grin-stars\": 62855,\n  \"face-grin-tears\": 62856,\n  \"face-grin-tongue-squint\": 62858,\n  \"face-grin-tongue-wink\": 62859,\n  \"face-grin-tongue\": 62857,\n  \"face-grin-wide\": 62849,\n  \"face-grin-wink\": 62860,\n  \"face-grin\": 62848,\n  \"face-hand-over-mouth\": 58232,\n  \"face-hand-peeking\": 58497,\n  \"face-hand-yawn\": 58233,\n  \"face-head-bandage\": 58234,\n  \"face-holding-back-tears\": 58498,\n  \"face-hushed\": 58235,\n  \"face-icicles\": 58236,\n  \"face-kiss-beam\": 62871,\n  \"face-kiss-closed-eyes\": 58237,\n  \"face-kiss-wink-heart\": 62872,\n  \"face-kiss\": 62870,\n  \"face-laugh-beam\": 62874,\n  \"face-laugh-squint\": 62875,\n  \"face-laugh-wink\": 62876,\n  \"face-laugh\": 62873,\n  \"face-lying\": 58238,\n  \"face-mask\": 58239,\n  \"face-meh-blank\": 62884,\n  \"face-meh\": 61722,\n  \"face-melting\": 58499,\n  \"face-monocle\": 58240,\n  \"face-nauseated\": 58241,\n  \"face-nose-steam\": 58242,\n  \"face-party\": 58243,\n  \"face-pensive\": 58244,\n  \"face-persevering\": 58245,\n  \"face-pleading\": 58246,\n  \"face-pouting\": 58247,\n  \"face-raised-eyebrow\": 58248,\n  \"face-relieved\": 58249,\n  \"face-rolling-eyes\": 62885,\n  \"face-sad-cry\": 62899,\n  \"face-sad-sweat\": 58250,\n  \"face-sad-tear\": 62900,\n  \"face-saluting\": 58500,\n  \"face-scream\": 58251,\n  \"face-shaking-horizontal\": 59293,\n  \"face-shaking-vertical\": 59294,\n  \"face-shaking\": 59292,\n  \"face-shush\": 58252,\n  \"face-sleeping\": 58253,\n  \"face-sleepy\": 58254,\n  \"face-smile-beam\": 62904,\n  \"face-smile-halo\": 58255,\n  \"face-smile-hearts\": 58256,\n  \"face-smile-horns\": 58257,\n  \"face-smile-plus\": 62905,\n  \"face-smile-relaxed\": 58258,\n  \"face-smile-tear\": 58259,\n  \"face-smile-tongue\": 58260,\n  \"face-smile-upside-down\": 58261,\n  \"face-smile-wink\": 62682,\n  \"face-smile\": 61720,\n  \"face-smiling-hands\": 58262,\n  \"face-smirking\": 58263,\n  \"face-spiral-eyes\": 58501,\n  \"face-sunglasses\": 58264,\n  \"face-surprise\": 62914,\n  \"face-swear\": 58265,\n  \"face-thermometer\": 58266,\n  \"face-thinking\": 58267,\n  \"face-tired\": 62920,\n  \"face-tissue\": 58268,\n  \"face-tongue-money\": 58269,\n  \"face-tongue-sweat\": 58270,\n  \"face-unamused\": 58271,\n  \"face-viewfinder\": 58111,\n  \"face-vomit\": 58272,\n  \"face-weary\": 58273,\n  \"face-woozy\": 58274,\n  \"face-worried\": 58275,\n  \"face-zany\": 58276,\n  \"face-zipper\": 58277,\n  \"falafel\": 58378,\n  \"family-dress\": 58113,\n  \"family-pants\": 58114,\n  \"family\": 58112,\n  \"fan-table\": 57348,\n  \"fan\": 63587,\n  \"farm\": 63588,\n  \"fast-backward\": 61513,\n  \"fast-forward\": 61520,\n  \"faucet-drip\": 57350,\n  \"faucet\": 57349,\n  \"fax\": 61868,\n  \"feather-alt\": 62827,\n  \"feather-pointed\": 62827,\n  \"feather\": 62765,\n  \"feed\": 61598,\n  \"female\": 61826,\n  \"fence\": 58115,\n  \"ferris-wheel\": 57716,\n  \"ferry\": 58602,\n  \"field-hockey-stick-ball\": 62540,\n  \"field-hockey\": 62540,\n  \"fighter-jet\": 61691,\n  \"file-aiff\": 59387,\n  \"file-alt\": 61788,\n  \"file-archive\": 61894,\n  \"file-arrow-down\": 62829,\n  \"file-arrow-up\": 62836,\n  \"file-audio\": 61895,\n  \"file-award\": 62963,\n  \"file-ban\": 59224,\n  \"file-binary\": 57717,\n  \"file-brackets-curly\": 59396,\n  \"file-cad\": 58994,\n  \"file-caret-down\": 58409,\n  \"file-caret-up\": 58410,\n  \"file-certificate\": 62963,\n  \"file-chart-column\": 63065,\n  \"file-chart-line\": 63065,\n  \"file-chart-pie\": 63066,\n  \"file-check\": 62230,\n  \"file-circle-check\": 58784,\n  \"file-circle-exclamation\": 58603,\n  \"file-circle-info\": 58515,\n  \"file-circle-minus\": 58605,\n  \"file-circle-plus\": 58516,\n  \"file-circle-question\": 58607,\n  \"file-circle-xmark\": 58785,\n  \"file-clipboard\": 61674,\n  \"file-code\": 61897,\n  \"file-contract\": 62828,\n  \"file-css\": 59452,\n  \"file-csv\": 63197,\n  \"file-dashed-line\": 63607,\n  \"file-doc\": 58861,\n  \"file-download\": 62829,\n  \"file-edit\": 62236,\n  \"file-eps\": 58948,\n  \"file-excel\": 61891,\n  \"file-exclamation\": 62234,\n  \"file-export\": 62830,\n  \"file-fragment\": 59031,\n  \"file-gif\": 58949,\n  \"file-half-dashed\": 59032,\n  \"file-heart\": 57718,\n  \"file-html\": 59453,\n  \"file-icns\": 59457,\n  \"file-image\": 61893,\n  \"file-import\": 62831,\n  \"file-invoice-dollar\": 62833,\n  \"file-invoice\": 62832,\n  \"file-jpg\": 58950,\n  \"file-js\": 59454,\n  \"file-lines\": 61788,\n  \"file-lock\": 58278,\n  \"file-magnifying-glass\": 63589,\n  \"file-medical-alt\": 62584,\n  \"file-medical\": 62583,\n  \"file-midi\": 59397,\n  \"file-minus\": 62232,\n  \"file-mov\": 58951,\n  \"file-mp3\": 58952,\n  \"file-mp4\": 58953,\n  \"file-music\": 63670,\n  \"file-odf\": 59388,\n  \"file-pdf\": 61889,\n  \"file-pen\": 62236,\n  \"file-plus-minus\": 57719,\n  \"file-plus\": 62233,\n  \"file-png\": 58982,\n  \"file-powerpoint\": 61892,\n  \"file-ppt\": 58954,\n  \"file-prescription\": 62834,\n  \"file-search\": 63589,\n  \"file-shield\": 58608,\n  \"file-signature\": 62835,\n  \"file-slash\": 58279,\n  \"file-spreadsheet\": 63067,\n  \"file-svg\": 58955,\n  \"file-tex\": 59389,\n  \"file-text\": 61788,\n  \"file-times\": 62231,\n  \"file-upload\": 62836,\n  \"file-user\": 63068,\n  \"file-vector\": 58956,\n  \"file-video\": 61896,\n  \"file-wav\": 59390,\n  \"file-waveform\": 62584,\n  \"file-word\": 61890,\n  \"file-xls\": 58957,\n  \"file-xmark\": 62231,\n  \"file-xml\": 58964,\n  \"file-zip\": 58862,\n  \"file-zipper\": 61894,\n  \"file\": 61787,\n  \"files-medical\": 63485,\n  \"files\": 57720,\n  \"fill-drip\": 62838,\n  \"fill\": 62837,\n  \"film-alt\": 61448,\n  \"film-canister\": 63671,\n  \"film-cannister\": 63671,\n  \"film-music\": 59241,\n  \"film-simple\": 61448,\n  \"film-slash\": 57721,\n  \"film-stack\": 59243,\n  \"film\": 61448,\n  \"films\": 57722,\n  \"filter-circle-dollar\": 63074,\n  \"filter-circle-xmark\": 57723,\n  \"filter-list\": 57724,\n  \"filter-slash\": 57725,\n  \"filter\": 61616,\n  \"filters\": 57726,\n  \"fingerprint\": 62839,\n  \"fire-alt\": 63460,\n  \"fire-burner\": 58609,\n  \"fire-extinguisher\": 61748,\n  \"fire-flame-curved\": 63460,\n  \"fire-flame-simple\": 62570,\n  \"fire-flame\": 63199,\n  \"fire-hydrant\": 57727,\n  \"fire-smoke\": 63307,\n  \"fire\": 61549,\n  \"fireplace\": 63386,\n  \"firewall\": 58332,\n  \"first-aid\": 62585,\n  \"fish-bones\": 58116,\n  \"fish-cooked\": 63486,\n  \"fish-fins\": 58610,\n  \"fish\": 62840,\n  \"fishing-rod\": 58280,\n  \"fist-raised\": 63198,\n  \"flag-alt\": 63308,\n  \"flag-checkered\": 61726,\n  \"flag-pennant\": 62550,\n  \"flag-swallowtail\": 63308,\n  \"flag-usa\": 63309,\n  \"flag\": 61476,\n  \"flame\": 63199,\n  \"flashlight\": 63672,\n  \"flask-gear\": 58865,\n  \"flask-poison\": 63200,\n  \"flask-potion\": 63201,\n  \"flask-round-poison\": 63200,\n  \"flask-round-potion\": 63201,\n  \"flask-vial\": 58611,\n  \"flask\": 61635,\n  \"flatbread-stuffed\": 58380,\n  \"flatbread\": 58379,\n  \"floppy-disk-circle-arrow-right\": 57728,\n  \"floppy-disk-circle-xmark\": 57729,\n  \"floppy-disk-pen\": 57730,\n  \"floppy-disk-times\": 57729,\n  \"floppy-disk\": 61639,\n  \"floppy-disks\": 57731,\n  \"florin-sign\": 57732,\n  \"flower-daffodil\": 63488,\n  \"flower-tulip\": 63489,\n  \"flower\": 63487,\n  \"flushed\": 62841,\n  \"flute\": 63673,\n  \"flux-capacitor\": 63674,\n  \"flying-disc\": 58281,\n  \"fog\": 63310,\n  \"folder-arrow-down\": 57427,\n  \"folder-arrow-left\": 59346,\n  \"folder-arrow-right\": 59347,\n  \"folder-arrow-up\": 57428,\n  \"folder-blank\": 61563,\n  \"folder-bookmark\": 57734,\n  \"folder-check\": 58958,\n  \"folder-closed\": 57733,\n  \"folder-cog\": 57735,\n  \"folder-download\": 57427,\n  \"folder-gear\": 57735,\n  \"folder-grid\": 57736,\n  \"folder-heart\": 57737,\n  \"folder-image\": 57738,\n  \"folder-magnifying-glass\": 57739,\n  \"folder-medical\": 57740,\n  \"folder-minus\": 63069,\n  \"folder-music\": 57741,\n  \"folder-open\": 61564,\n  \"folder-plus\": 63070,\n  \"folder-search\": 57739,\n  \"folder-times\": 63071,\n  \"folder-tree\": 63490,\n  \"folder-upload\": 57428,\n  \"folder-user\": 57742,\n  \"folder-xmark\": 63071,\n  \"folder\": 61563,\n  \"folders\": 63072,\n  \"fondue-pot\": 58381,\n  \"font-awesome-flag\": 62132,\n  \"font-awesome-logo-full\": 62132,\n  \"font-awesome\": 62132,\n  \"font-case\": 63590,\n  \"font\": 61489,\n  \"foot-wing\": 59444,\n  \"football-ball\": 62542,\n  \"football-helmet\": 62543,\n  \"football\": 62542,\n  \"fork-knife\": 62182,\n  \"fork\": 62179,\n  \"forklift\": 62586,\n  \"fort\": 58502,\n  \"forward-fast\": 61520,\n  \"forward-step\": 61521,\n  \"forward\": 61518,\n  \"fragile\": 62651,\n  \"frame\": 58517,\n  \"franc-sign\": 57743,\n  \"french-fries\": 63491,\n  \"frog\": 62766,\n  \"frosty-head\": 63387,\n  \"frown-open\": 62842,\n  \"frown\": 61721,\n  \"function\": 63073,\n  \"funnel-dollar\": 63074,\n  \"futbol-ball\": 61923,\n  \"futbol\": 61923,\n  \"g\": 71,\n  \"galaxy\": 57352,\n  \"gallery-thumbnails\": 58282,\n  \"game-board-alt\": 63592,\n  \"game-board-simple\": 63592,\n  \"game-board\": 63591,\n  \"game-console-handheld-crank\": 58809,\n  \"game-console-handheld\": 63675,\n  \"gamepad-alt\": 58786,\n  \"gamepad-modern\": 58786,\n  \"gamepad\": 61723,\n  \"garage-car\": 57354,\n  \"garage-empty\": 59081,\n  \"garage-open\": 57355,\n  \"garage\": 57353,\n  \"garlic\": 58382,\n  \"gas-pump-left\": 59256,\n  \"gas-pump-right\": 59257,\n  \"gas-pump-slash\": 62964,\n  \"gas-pump\": 62767,\n  \"gauge-circle-bolt\": 58518,\n  \"gauge-circle-minus\": 58519,\n  \"gauge-circle-plus\": 58520,\n  \"gauge-high\": 63013,\n  \"gauge-low\": 63015,\n  \"gauge-max\": 63014,\n  \"gauge-med\": 63012,\n  \"gauge-min\": 63016,\n  \"gauge-simple-high\": 63018,\n  \"gauge-simple-low\": 63020,\n  \"gauge-simple-max\": 63019,\n  \"gauge-simple-med\": 63017,\n  \"gauge-simple-min\": 63021,\n  \"gauge-simple\": 63017,\n  \"gauge\": 63012,\n  \"gave-dandy\": 58377,\n  \"gavel\": 61667,\n  \"gbp\": 61780,\n  \"gear-api\": 59556,\n  \"gear-code\": 58856,\n  \"gear-complex-api\": 59557,\n  \"gear-complex-code\": 58859,\n  \"gear-complex\": 58857,\n  \"gear\": 61459,\n  \"gears\": 61573,\n  \"gem\": 62373,\n  \"gemini\": 59465,\n  \"genderless\": 61997,\n  \"ghost\": 63202,\n  \"gif\": 57744,\n  \"gift-card\": 63075,\n  \"gift\": 61547,\n  \"gifts\": 63388,\n  \"gingerbread-man\": 63389,\n  \"glass-champagne\": 63390,\n  \"glass-cheers\": 63391,\n  \"glass-citrus\": 63593,\n  \"glass-empty\": 57745,\n  \"glass-half-empty\": 57746,\n  \"glass-half-full\": 57746,\n  \"glass-half\": 57746,\n  \"glass-martini-alt\": 62843,\n  \"glass-martini\": 61440,\n  \"glass-water-droplet\": 58613,\n  \"glass-water\": 58612,\n  \"glass-whiskey-rocks\": 63393,\n  \"glass-whiskey\": 63392,\n  \"glass\": 63492,\n  \"glasses-alt\": 62965,\n  \"glasses-round\": 62965,\n  \"glasses\": 62768,\n  \"globe-africa\": 62844,\n  \"globe-americas\": 62845,\n  \"globe-asia\": 62846,\n  \"globe-europe\": 63394,\n  \"globe-oceania\": 58491,\n  \"globe-pointer\": 58894,\n  \"globe-snow\": 63395,\n  \"globe-stand\": 62966,\n  \"globe-wifi\": 59013,\n  \"globe-www\": 59558,\n  \"globe\": 61612,\n  \"glove-boxing\": 62520,\n  \"goal-net\": 58283,\n  \"golf-ball-tee\": 62544,\n  \"golf-ball\": 62544,\n  \"golf-club\": 62545,\n  \"golf-flag-hole\": 58284,\n  \"gopuram\": 63076,\n  \"gpu\": 59459,\n  \"graduation-cap\": 61853,\n  \"gramophone\": 63677,\n  \"grapes\": 58118,\n  \"grate-droplet\": 57748,\n  \"grate\": 57747,\n  \"greater-than-equal\": 62770,\n  \"greater-than\": 62,\n  \"grid-2-minus\": 59050,\n  \"grid-2-plus\": 57751,\n  \"grid-2\": 57750,\n  \"grid-3\": 57749,\n  \"grid-4\": 57752,\n  \"grid-5\": 57753,\n  \"grid-dividers\": 58285,\n  \"grid-horizontal\": 62861,\n  \"grid-round-2-minus\": 59051,\n  \"grid-round-2-plus\": 58844,\n  \"grid-round-2\": 58843,\n  \"grid-round-4\": 58845,\n  \"grid-round-5\": 58846,\n  \"grid-round\": 58842,\n  \"grid-vertical\": 62862,\n  \"grid\": 57749,\n  \"grill-fire\": 58788,\n  \"grill-hot\": 58789,\n  \"grill\": 58787,\n  \"grimace\": 62847,\n  \"grin-alt\": 62849,\n  \"grin-beam-sweat\": 62851,\n  \"grin-beam\": 62850,\n  \"grin-hearts\": 62852,\n  \"grin-squint-tears\": 62854,\n  \"grin-squint\": 62853,\n  \"grin-stars\": 62855,\n  \"grin-tears\": 62856,\n  \"grin-tongue-squint\": 62858,\n  \"grin-tongue-wink\": 62859,\n  \"grin-tongue\": 62857,\n  \"grin-wink\": 62860,\n  \"grin\": 62848,\n  \"grip-dots-vertical\": 58385,\n  \"grip-dots\": 58384,\n  \"grip-horizontal\": 62861,\n  \"grip-lines-vertical\": 63397,\n  \"grip-lines\": 63396,\n  \"grip-vertical\": 62862,\n  \"grip\": 62861,\n  \"group-arrows-rotate\": 58614,\n  \"guarani-sign\": 57754,\n  \"guitar-electric\": 63678,\n  \"guitar\": 63398,\n  \"guitars\": 63679,\n  \"gun-slash\": 57756,\n  \"gun-squirt\": 57757,\n  \"gun\": 57755,\n  \"h-square\": 61693,\n  \"h\": 72,\n  \"h1\": 62227,\n  \"h2\": 62228,\n  \"h3\": 62229,\n  \"h4\": 63594,\n  \"h5\": 58386,\n  \"h6\": 58387,\n  \"hamburger\": 63493,\n  \"hammer-brush\": 58912,\n  \"hammer-crash\": 58388,\n  \"hammer-war\": 63204,\n  \"hammer\": 63203,\n  \"hamsa\": 63077,\n  \"hand-back-fist\": 62037,\n  \"hand-back-point-down\": 57758,\n  \"hand-back-point-left\": 57759,\n  \"hand-back-point-ribbon\": 57760,\n  \"hand-back-point-right\": 57761,\n  \"hand-back-point-up\": 57762,\n  \"hand-dots\": 62561,\n  \"hand-fingers-crossed\": 57763,\n  \"hand-fist\": 63198,\n  \"hand-heart\": 62652,\n  \"hand-holding-box\": 62587,\n  \"hand-holding-circle-dollar\": 58913,\n  \"hand-holding-dollar\": 62656,\n  \"hand-holding-droplet\": 62657,\n  \"hand-holding-hand\": 58615,\n  \"hand-holding-heart\": 62654,\n  \"hand-holding-magic\": 63205,\n  \"hand-holding-medical\": 57436,\n  \"hand-holding-seedling\": 62655,\n  \"hand-holding-skull\": 57764,\n  \"hand-holding-star\": 59393,\n  \"hand-holding-usd\": 62656,\n  \"hand-holding-water\": 62657,\n  \"hand-holding\": 62653,\n  \"hand-horns\": 57769,\n  \"hand-lizard\": 62040,\n  \"hand-love\": 57765,\n  \"hand-middle-finger\": 63494,\n  \"hand-paper\": 62038,\n  \"hand-peace\": 62043,\n  \"hand-point-down\": 61607,\n  \"hand-point-left\": 61605,\n  \"hand-point-ribbon\": 57766,\n  \"hand-point-right\": 61604,\n  \"hand-point-up\": 61606,\n  \"hand-pointer\": 62042,\n  \"hand-receiving\": 62588,\n  \"hand-rock\": 62037,\n  \"hand-scissors\": 62039,\n  \"hand-shaka\": 59441,\n  \"hand-sparkles\": 57437,\n  \"hand-spock\": 62041,\n  \"hand-wave\": 57767,\n  \"hand\": 62038,\n  \"handcuffs\": 58616,\n  \"hands-american-sign-language-interpreting\": 62115,\n  \"hands-asl-interpreting\": 62115,\n  \"hands-bound\": 58617,\n  \"hands-bubbles\": 57438,\n  \"hands-clapping\": 57768,\n  \"hands-heart\": 62659,\n  \"hands-helping\": 62660,\n  \"hands-holding-child\": 58618,\n  \"hands-holding-circle\": 58619,\n  \"hands-holding-diamond\": 62588,\n  \"hands-holding-dollar\": 62661,\n  \"hands-holding-heart\": 62659,\n  \"hands-holding\": 62658,\n  \"hands-praying\": 63108,\n  \"hands-usd\": 62661,\n  \"hands-wash\": 57438,\n  \"hands\": 62119,\n  \"handshake-alt-slash\": 57440,\n  \"handshake-alt\": 62133,\n  \"handshake-angle\": 62660,\n  \"handshake-simple-slash\": 57440,\n  \"handshake-simple\": 62133,\n  \"handshake-slash\": 57440,\n  \"handshake\": 62133,\n  \"hanukiah\": 63206,\n  \"hard-drive\": 61600,\n  \"hard-hat\": 63495,\n  \"hard-of-hearing\": 62116,\n  \"hashtag-lock\": 58389,\n  \"hashtag\": 35,\n  \"hat-beach\": 58886,\n  \"hat-chef\": 63595,\n  \"hat-cowboy-side\": 63681,\n  \"hat-cowboy\": 63680,\n  \"hat-hard\": 63495,\n  \"hat-santa\": 63399,\n  \"hat-winter\": 63400,\n  \"hat-witch\": 63207,\n  \"hat-wizard\": 63208,\n  \"haykal\": 63078,\n  \"hdd\": 61600,\n  \"head-side-brain\": 63496,\n  \"head-side-circuit\": 59230,\n  \"head-side-cough-slash\": 57442,\n  \"head-side-cough\": 57441,\n  \"head-side-gear\": 58897,\n  \"head-side-goggles\": 63210,\n  \"head-side-headphones\": 63682,\n  \"head-side-heart\": 57770,\n  \"head-side-mask\": 57443,\n  \"head-side-medical\": 63497,\n  \"head-side-speak\": 59231,\n  \"head-side-virus\": 57444,\n  \"head-side\": 63209,\n  \"head-vr\": 63210,\n  \"header\": 61916,\n  \"heading\": 61916,\n  \"headphones-alt\": 61477,\n  \"headphones-simple\": 61477,\n  \"headphones-slash\": 59260,\n  \"headphones\": 61477,\n  \"headset\": 62864,\n  \"heart-broken\": 63401,\n  \"heart-circle-bolt\": 58620,\n  \"heart-circle-check\": 58621,\n  \"heart-circle-exclamation\": 58622,\n  \"heart-circle-minus\": 58623,\n  \"heart-circle-plus\": 58624,\n  \"heart-circle-xmark\": 58625,\n  \"heart-circle\": 62663,\n  \"heart-crack\": 63401,\n  \"heart-half-alt\": 57772,\n  \"heart-half-stroke\": 57772,\n  \"heart-half\": 57771,\n  \"heart-music-camera-bolt\": 63597,\n  \"heart-pulse\": 61982,\n  \"heart-rate\": 62968,\n  \"heart-slash\": 59278,\n  \"heart-square\": 62664,\n  \"heart\": 61444,\n  \"heartbeat\": 61982,\n  \"hearts\": 59279,\n  \"heat\": 57356,\n  \"helicopter-symbol\": 58626,\n  \"helicopter\": 62771,\n  \"helmet-battle\": 63211,\n  \"helmet-safety\": 63495,\n  \"helmet-un\": 58627,\n  \"heptagon\": 59424,\n  \"hexagon-check\": 58390,\n  \"hexagon-divide\": 57773,\n  \"hexagon-equals\": 59058,\n  \"hexagon-exclamation\": 58391,\n  \"hexagon-image\": 58628,\n  \"hexagon-minus\": 62215,\n  \"hexagon-nodes-bolt\": 59034,\n  \"hexagon-nodes\": 59033,\n  \"hexagon-plus\": 62208,\n  \"hexagon-vertical-nft-slanted\": 58629,\n  \"hexagon-vertical-nft\": 58629,\n  \"hexagon-xmark\": 62190,\n  \"hexagon\": 62226,\n  \"high-definition\": 57774,\n  \"highlighter-line\": 57775,\n  \"highlighter\": 62865,\n  \"hiking\": 63212,\n  \"hill-avalanche\": 58631,\n  \"hill-rockslide\": 58632,\n  \"hippo\": 63213,\n  \"history\": 61914,\n  \"hockey-mask\": 63214,\n  \"hockey-puck\": 62547,\n  \"hockey-stick-puck\": 58286,\n  \"hockey-stick\": 59366,\n  \"hockey-sticks\": 62548,\n  \"holly-berry\": 63402,\n  \"home-alt\": 61461,\n  \"home-blank\": 58503,\n  \"home-heart\": 62665,\n  \"home-lg-alt\": 61461,\n  \"home-lg\": 58287,\n  \"home-user\": 57776,\n  \"home\": 61461,\n  \"honey-pot\": 58392,\n  \"hood-cloak\": 63215,\n  \"horizontal-rule\": 63596,\n  \"horse-head\": 63403,\n  \"horse-saddle\": 63683,\n  \"horse\": 63216,\n  \"horseshoe\": 59418,\n  \"hose-reel\": 58394,\n  \"hose\": 58393,\n  \"hospital-alt\": 61688,\n  \"hospital-symbol\": 62590,\n  \"hospital-user\": 63501,\n  \"hospital-wide\": 61688,\n  \"hospital\": 61688,\n  \"hospitals\": 63502,\n  \"hot-tub-person\": 62867,\n  \"hot-tub\": 62867,\n  \"hotdog\": 63503,\n  \"hotel\": 62868,\n  \"hourglass-1\": 62033,\n  \"hourglass-2\": 62034,\n  \"hourglass-3\": 62035,\n  \"hourglass-clock\": 58395,\n  \"hourglass-empty\": 62036,\n  \"hourglass-end\": 62035,\n  \"hourglass-half\": 62034,\n  \"hourglass-start\": 62033,\n  \"hourglass\": 62036,\n  \"house-blank\": 58503,\n  \"house-building\": 57777,\n  \"house-chimney-blank\": 58288,\n  \"house-chimney-crack\": 63217,\n  \"house-chimney-heart\": 57778,\n  \"house-chimney-medical\": 63474,\n  \"house-chimney-user\": 57445,\n  \"house-chimney-window\": 57357,\n  \"house-chimney\": 58287,\n  \"house-circle-check\": 58633,\n  \"house-circle-exclamation\": 58634,\n  \"house-circle-xmark\": 58635,\n  \"house-crack\": 58289,\n  \"house-damage\": 63217,\n  \"house-day\": 57358,\n  \"house-fire\": 58636,\n  \"house-flag\": 58637,\n  \"house-flood-water-circle-arrow-right\": 58639,\n  \"house-flood-water\": 58638,\n  \"house-flood\": 63311,\n  \"house-heart\": 62665,\n  \"house-laptop\": 57446,\n  \"house-leave\": 57359,\n  \"house-lock\": 58640,\n  \"house-medical-circle-check\": 58641,\n  \"house-medical-circle-exclamation\": 58642,\n  \"house-medical-circle-xmark\": 58643,\n  \"house-medical-flag\": 58644,\n  \"house-medical\": 58290,\n  \"house-night\": 57360,\n  \"house-person-arrive\": 57361,\n  \"house-person-depart\": 57359,\n  \"house-person-leave\": 57359,\n  \"house-person-return\": 57361,\n  \"house-return\": 57361,\n  \"house-signal\": 57362,\n  \"house-tree\": 57779,\n  \"house-tsunami\": 58645,\n  \"house-turret\": 57780,\n  \"house-unlock\": 59082,\n  \"house-user\": 57776,\n  \"house-water\": 63311,\n  \"house-window\": 58291,\n  \"house\": 61461,\n  \"hryvnia-sign\": 63218,\n  \"hryvnia\": 63218,\n  \"humidity\": 63312,\n  \"hundred-points\": 58396,\n  \"hurricane\": 63313,\n  \"hydra\": 59014,\n  \"hyphen\": 45,\n  \"i-cursor\": 62022,\n  \"i\": 73,\n  \"ice-cream\": 63504,\n  \"ice-skate\": 63404,\n  \"icicles\": 63405,\n  \"icons-alt\": 63598,\n  \"icons\": 63597,\n  \"id-badge\": 62145,\n  \"id-card-alt\": 62591,\n  \"id-card-clip\": 62591,\n  \"id-card\": 62146,\n  \"igloo\": 63406,\n  \"ils\": 61963,\n  \"image-broken\": 59562,\n  \"image-circle-arrow-down\": 59244,\n  \"image-circle-check\": 59245,\n  \"image-circle-plus\": 59246,\n  \"image-circle-xmark\": 59247,\n  \"image-landscape\": 57781,\n  \"image-music\": 59248,\n  \"image-polaroid-user\": 57782,\n  \"image-polaroid\": 63684,\n  \"image-portrait\": 62432,\n  \"image-slash\": 57783,\n  \"image-stack\": 59249,\n  \"image-user\": 57784,\n  \"image\": 61502,\n  \"images-user\": 57785,\n  \"images\": 62210,\n  \"inbox-arrow-down\": 62224,\n  \"inbox-arrow-up\": 62225,\n  \"inbox-full\": 57786,\n  \"inbox-in\": 62224,\n  \"inbox-out\": 62225,\n  \"inbox\": 61468,\n  \"inboxes\": 57787,\n  \"indent\": 61500,\n  \"indian-rupee-sign\": 57788,\n  \"indian-rupee\": 57788,\n  \"industry-alt\": 62387,\n  \"industry-windows\": 62387,\n  \"industry\": 62069,\n  \"infinity\": 62772,\n  \"info-circle\": 61530,\n  \"info-square\": 62223,\n  \"info\": 61737,\n  \"inhaler\": 62969,\n  \"input-numeric\": 57789,\n  \"input-password\": 59517,\n  \"input-pipe\": 57790,\n  \"input-text\": 57791,\n  \"inr\": 57788,\n  \"institution\": 61852,\n  \"integral\": 63079,\n  \"interrobang\": 58810,\n  \"intersection\": 63080,\n  \"inventory\": 62592,\n  \"island-tree-palm\": 63505,\n  \"island-tropical\": 63505,\n  \"italic\": 61491,\n  \"j\": 74,\n  \"jack-o-lantern\": 62222,\n  \"jar-wheat\": 58647,\n  \"jar\": 58646,\n  \"jeans-straight\": 59091,\n  \"jeans\": 59090,\n  \"jedi\": 63081,\n  \"jet-fighter-up\": 58648,\n  \"jet-fighter\": 61691,\n  \"joint\": 62869,\n  \"journal-whills\": 63082,\n  \"joystick\": 63685,\n  \"jpy\": 61783,\n  \"jug-bottle\": 58875,\n  \"jug-detergent\": 58649,\n  \"jug\": 63686,\n  \"k\": 75,\n  \"kaaba\": 63083,\n  \"kayak\": 59547,\n  \"kazoo\": 63687,\n  \"kerning\": 63599,\n  \"kettlebell\": 59442,\n  \"key-skeleton-left-right\": 58292,\n  \"key-skeleton\": 63219,\n  \"key\": 61572,\n  \"keyboard-brightness-low\": 57793,\n  \"keyboard-brightness\": 57792,\n  \"keyboard-down\": 57794,\n  \"keyboard-left\": 57795,\n  \"keyboard\": 61724,\n  \"keynote\": 63084,\n  \"khanda\": 63085,\n  \"kidneys\": 62971,\n  \"kip-sign\": 57796,\n  \"kiss-beam\": 62871,\n  \"kiss-wink-heart\": 62872,\n  \"kiss\": 62870,\n  \"kit-medical\": 62585,\n  \"kitchen-set\": 58650,\n  \"kite\": 63220,\n  \"kiwi-bird\": 62773,\n  \"kiwi-fruit\": 58124,\n  \"knife-kitchen\": 63221,\n  \"knife\": 62180,\n  \"krw\": 61785,\n  \"l\": 76,\n  \"label\": 59559,\n  \"lacrosse-stick-ball\": 58294,\n  \"lacrosse-stick\": 58293,\n  \"ladder-water\": 62917,\n  \"lambda\": 63086,\n  \"lamp-desk\": 57364,\n  \"lamp-floor\": 57365,\n  \"lamp-street\": 57797,\n  \"lamp\": 62666,\n  \"land-mine-on\": 58651,\n  \"landmark-alt\": 63314,\n  \"landmark-dome\": 63314,\n  \"landmark-flag\": 58652,\n  \"landmark-magnifying-glass\": 58914,\n  \"landmark\": 63087,\n  \"landscape\": 57781,\n  \"language\": 61867,\n  \"laptop-arrow-down\": 57798,\n  \"laptop-binary\": 58855,\n  \"laptop-code\": 62972,\n  \"laptop-file\": 58653,\n  \"laptop-house\": 57446,\n  \"laptop-medical\": 63506,\n  \"laptop-mobile\": 63610,\n  \"laptop-slash\": 57799,\n  \"laptop\": 61705,\n  \"lari-sign\": 57800,\n  \"lasso-sparkles\": 57801,\n  \"lasso\": 63688,\n  \"laugh-beam\": 62874,\n  \"laugh-squint\": 62875,\n  \"laugh-wink\": 62876,\n  \"laugh\": 62873,\n  \"layer-group-minus\": 62974,\n  \"layer-group-plus\": 62975,\n  \"layer-group\": 62973,\n  \"layer-minus\": 62974,\n  \"layer-plus\": 62975,\n  \"layer\": 59455,\n  \"leaf-heart\": 62667,\n  \"leaf-maple\": 63222,\n  \"leaf-oak\": 63223,\n  \"leaf\": 61548,\n  \"leafy-green\": 58397,\n  \"left-from-bracket\": 58988,\n  \"left-from-dotted-line\": 59074,\n  \"left-from-line\": 62280,\n  \"left-long-to-line\": 58398,\n  \"left-long\": 62218,\n  \"left-right\": 62263,\n  \"left-to-bracket\": 58989,\n  \"left-to-dotted-line\": 59075,\n  \"left-to-line\": 62283,\n  \"left\": 62293,\n  \"legal\": 61667,\n  \"lemon\": 61588,\n  \"leo\": 59466,\n  \"less-than-equal\": 62775,\n  \"less-than\": 60,\n  \"level-down-alt\": 62398,\n  \"level-down\": 61769,\n  \"level-up-alt\": 62399,\n  \"level-up\": 61768,\n  \"libra\": 59467,\n  \"life-ring\": 61901,\n  \"light-ceiling\": 57366,\n  \"light-emergency-on\": 58400,\n  \"light-emergency\": 58399,\n  \"light-switch-off\": 57368,\n  \"light-switch-on\": 57369,\n  \"light-switch\": 57367,\n  \"lightbulb-cfl-on\": 58791,\n  \"lightbulb-cfl\": 58790,\n  \"lightbulb-dollar\": 63088,\n  \"lightbulb-exclamation-on\": 57802,\n  \"lightbulb-exclamation\": 63089,\n  \"lightbulb-gear\": 58877,\n  \"lightbulb-message\": 59015,\n  \"lightbulb-on\": 63090,\n  \"lightbulb-slash\": 63091,\n  \"lightbulb\": 61675,\n  \"lighthouse\": 58898,\n  \"lights-holiday\": 63410,\n  \"line-chart\": 61953,\n  \"line-columns\": 63600,\n  \"line-height\": 63601,\n  \"lines-leaning\": 58654,\n  \"link-broken\": 59458,\n  \"link-horizontal-slash\": 57804,\n  \"link-horizontal\": 57803,\n  \"link-simple-slash\": 57806,\n  \"link-simple\": 57805,\n  \"link-slash\": 61735,\n  \"link\": 61633,\n  \"lips\": 62976,\n  \"lira-sign\": 61845,\n  \"list-1-2\": 61643,\n  \"list-alt\": 61474,\n  \"list-check\": 61614,\n  \"list-dots\": 61642,\n  \"list-dropdown\": 57807,\n  \"list-music\": 63689,\n  \"list-numeric\": 61643,\n  \"list-ol\": 61643,\n  \"list-radio\": 57808,\n  \"list-squares\": 61498,\n  \"list-timeline\": 57809,\n  \"list-tree\": 57810,\n  \"list-ul\": 61642,\n  \"list\": 61498,\n  \"litecoin-sign\": 57811,\n  \"loader\": 57812,\n  \"lobster\": 58401,\n  \"location-arrow-slash\": 59258,\n  \"location-arrow-up\": 58938,\n  \"location-arrow\": 61732,\n  \"location-check\": 62982,\n  \"location-circle\": 62978,\n  \"location-crosshairs-slash\": 62979,\n  \"location-crosshairs\": 62977,\n  \"location-dot-slash\": 62981,\n  \"location-dot\": 62405,\n  \"location-exclamation\": 62984,\n  \"location-minus\": 62985,\n  \"location-pen\": 62983,\n  \"location-pin-lock\": 58655,\n  \"location-pin-slash\": 62988,\n  \"location-pin\": 61505,\n  \"location-plus\": 62986,\n  \"location-question\": 62987,\n  \"location-slash\": 62979,\n  \"location-smile\": 62989,\n  \"location-xmark\": 62990,\n  \"location\": 62977,\n  \"lock-a\": 58402,\n  \"lock-alt\": 62221,\n  \"lock-hashtag\": 58403,\n  \"lock-keyhole-open\": 62402,\n  \"lock-keyhole\": 62221,\n  \"lock-open-alt\": 62402,\n  \"lock-open\": 62401,\n  \"lock\": 61475,\n  \"locust\": 58656,\n  \"lollipop\": 58404,\n  \"lollypop\": 58404,\n  \"long-arrow-alt-down\": 62217,\n  \"long-arrow-alt-left\": 62218,\n  \"long-arrow-alt-right\": 62219,\n  \"long-arrow-alt-up\": 62220,\n  \"long-arrow-down\": 61813,\n  \"long-arrow-left\": 61815,\n  \"long-arrow-right\": 61816,\n  \"long-arrow-up\": 61814,\n  \"loveseat\": 62668,\n  \"low-vision\": 62120,\n  \"luchador-mask\": 62549,\n  \"luchador\": 62549,\n  \"luggage-cart\": 62877,\n  \"lungs-virus\": 57447,\n  \"lungs\": 62980,\n  \"lychee\": 59428,\n  \"m\": 77,\n  \"mace\": 63224,\n  \"magic-wand-sparkles\": 58058,\n  \"magic\": 61648,\n  \"magnet\": 61558,\n  \"magnifying-glass-arrow-right\": 58657,\n  \"magnifying-glass-arrows-rotate\": 58974,\n  \"magnifying-glass-chart\": 58658,\n  \"magnifying-glass-dollar\": 63112,\n  \"magnifying-glass-location\": 63113,\n  \"magnifying-glass-minus\": 61456,\n  \"magnifying-glass-music\": 58975,\n  \"magnifying-glass-play\": 58976,\n  \"magnifying-glass-plus\": 61454,\n  \"magnifying-glass-waveform\": 58977,\n  \"magnifying-glass\": 61442,\n  \"mail-bulk\": 63092,\n  \"mail-forward\": 61540,\n  \"mail-reply-all\": 61730,\n  \"mail-reply\": 62437,\n  \"mailbox-flag-up\": 58811,\n  \"mailbox-open-empty\": 59425,\n  \"mailbox-open-letter\": 59427,\n  \"mailbox\": 63507,\n  \"maki-roll\": 58507,\n  \"makizushi\": 58507,\n  \"malaysian-ringgit-sign\": 59130,\n  \"male\": 61827,\n  \"manat-sign\": 57813,\n  \"mandolin\": 63225,\n  \"mango\": 58127,\n  \"manhole\": 57814,\n  \"map-location-dot\": 62880,\n  \"map-location\": 62879,\n  \"map-marked-alt\": 62880,\n  \"map-marked\": 62879,\n  \"map-marker-alt-slash\": 62981,\n  \"map-marker-alt\": 62405,\n  \"map-marker-check\": 62982,\n  \"map-marker-edit\": 62983,\n  \"map-marker-exclamation\": 62984,\n  \"map-marker-minus\": 62985,\n  \"map-marker-plus\": 62986,\n  \"map-marker-question\": 62987,\n  \"map-marker-slash\": 62988,\n  \"map-marker-smile\": 62989,\n  \"map-marker-times\": 62990,\n  \"map-marker-xmark\": 62990,\n  \"map-marker\": 61505,\n  \"map-pin\": 62070,\n  \"map-signs\": 62071,\n  \"map\": 62073,\n  \"marker\": 62881,\n  \"mars-and-venus-burst\": 58659,\n  \"mars-and-venus\": 61988,\n  \"mars-double\": 61991,\n  \"mars-stroke-h\": 61995,\n  \"mars-stroke-right\": 61995,\n  \"mars-stroke-up\": 61994,\n  \"mars-stroke-v\": 61994,\n  \"mars-stroke\": 61993,\n  \"mars\": 61986,\n  \"martini-glass-citrus\": 62817,\n  \"martini-glass-empty\": 61440,\n  \"martini-glass\": 62843,\n  \"mask-face\": 57815,\n  \"mask-luchador\": 62549,\n  \"mask-snorkel\": 58295,\n  \"mask-ventilator\": 58660,\n  \"mask\": 63226,\n  \"masks-theater\": 63024,\n  \"mattress-pillow\": 58661,\n  \"maximize\": 62238,\n  \"meat\": 63508,\n  \"medal\": 62882,\n  \"medkit\": 61690,\n  \"megaphone\": 63093,\n  \"meh-blank\": 62884,\n  \"meh-rolling-eyes\": 62885,\n  \"meh\": 61722,\n  \"melon-slice\": 58129,\n  \"melon\": 58128,\n  \"memo-circle-check\": 57817,\n  \"memo-circle-info\": 58522,\n  \"memo-pad\": 57818,\n  \"memo\": 57816,\n  \"memory\": 62776,\n  \"menorah\": 63094,\n  \"mercury\": 61987,\n  \"merge\": 58662,\n  \"message-arrow-down\": 57819,\n  \"message-arrow-up-right\": 57821,\n  \"message-arrow-up\": 57820,\n  \"message-bot\": 58296,\n  \"message-captions\": 57822,\n  \"message-check\": 62626,\n  \"message-code\": 57823,\n  \"message-dollar\": 63056,\n  \"message-dot\": 59103,\n  \"message-dots\": 62627,\n  \"message-edit\": 62628,\n  \"message-exclamation\": 62629,\n  \"message-heart\": 58825,\n  \"message-image\": 57824,\n  \"message-lines\": 62630,\n  \"message-medical\": 63476,\n  \"message-middle-top\": 57826,\n  \"message-middle\": 57825,\n  \"message-minus\": 62631,\n  \"message-music\": 63663,\n  \"message-pen\": 62628,\n  \"message-plus\": 62632,\n  \"message-question\": 57827,\n  \"message-quote\": 57828,\n  \"message-slash\": 62633,\n  \"message-smile\": 62634,\n  \"message-sms\": 57829,\n  \"message-text\": 57830,\n  \"message-times\": 62635,\n  \"message-waveform\": 59104,\n  \"message-xmark\": 62635,\n  \"message\": 62074,\n  \"messages-dollar\": 63058,\n  \"messages-question\": 57831,\n  \"messages\": 62646,\n  \"messaging\": 62627,\n  \"meteor\": 63315,\n  \"meter-bolt\": 57833,\n  \"meter-droplet\": 57834,\n  \"meter-fire\": 57835,\n  \"meter\": 57832,\n  \"microchip-ai\": 57836,\n  \"microchip\": 62171,\n  \"microphone-alt-slash\": 62777,\n  \"microphone-alt\": 62409,\n  \"microphone-circle-alt\": 57623,\n  \"microphone-circle-plus\": 59261,\n  \"microphone-circle-xmark\": 59262,\n  \"microphone-circle\": 57622,\n  \"microphone-lines-slash\": 62777,\n  \"microphone-lines\": 62409,\n  \"microphone-signal-meter\": 59232,\n  \"microphone-slash\": 61745,\n  \"microphone-stand\": 63691,\n  \"microphone\": 61744,\n  \"microscope\": 62992,\n  \"microwave\": 57371,\n  \"midi\": 59398,\n  \"mill-sign\": 57837,\n  \"mind-share\": 63095,\n  \"minimize\": 63372,\n  \"minus-circle\": 61526,\n  \"minus-hexagon\": 62215,\n  \"minus-large\": 58372,\n  \"minus-octagon\": 62216,\n  \"minus-square\": 61766,\n  \"minus\": 61544,\n  \"mistletoe\": 63412,\n  \"mitten\": 63413,\n  \"mobile-alt\": 62413,\n  \"mobile-android-alt\": 62415,\n  \"mobile-android\": 62414,\n  \"mobile-arrow-down\": 59211,\n  \"mobile-button\": 61707,\n  \"mobile-iphone\": 57838,\n  \"mobile-notch\": 57838,\n  \"mobile-phone\": 62414,\n  \"mobile-retro\": 58663,\n  \"mobile-rotate-reverse\": 59412,\n  \"mobile-rotate\": 59411,\n  \"mobile-screen-button\": 62413,\n  \"mobile-screen\": 62415,\n  \"mobile-signal-out\": 57840,\n  \"mobile-signal\": 57839,\n  \"mobile-slash\": 59413,\n  \"mobile-vibrate-slash\": 59415,\n  \"mobile-vibrate\": 59414,\n  \"mobile\": 62414,\n  \"money-bill-1-wave\": 62779,\n  \"money-bill-1\": 62417,\n  \"money-bill-alt\": 62417,\n  \"money-bill-simple-wave\": 57842,\n  \"money-bill-simple\": 57841,\n  \"money-bill-transfer\": 58664,\n  \"money-bill-trend-up\": 58665,\n  \"money-bill-wave-alt\": 62779,\n  \"money-bill-wave\": 62778,\n  \"money-bill-wheat\": 58666,\n  \"money-bill\": 61654,\n  \"money-bills-alt\": 57844,\n  \"money-bills-simple\": 57844,\n  \"money-bills\": 57843,\n  \"money-check-alt\": 62781,\n  \"money-check-dollar-pen\": 63603,\n  \"money-check-dollar\": 62781,\n  \"money-check-edit-alt\": 63603,\n  \"money-check-edit\": 63602,\n  \"money-check-pen\": 63602,\n  \"money-check\": 62780,\n  \"money-from-bracket\": 58130,\n  \"money-simple-from-bracket\": 58131,\n  \"monitor-heart-rate\": 62993,\n  \"monitor-waveform\": 62993,\n  \"monkey\": 63227,\n  \"monument\": 62886,\n  \"moon-cloud\": 63316,\n  \"moon-first-quarter-inverse\": 59506,\n  \"moon-first-quarter\": 59504,\n  \"moon-full-inverse\": 59507,\n  \"moon-full\": 59505,\n  \"moon-last-quarter-inverse\": 59504,\n  \"moon-last-quarter\": 59506,\n  \"moon-new-inverse\": 59505,\n  \"moon-new\": 59507,\n  \"moon-over-sun\": 63306,\n  \"moon-star\": 59337,\n  \"moon-stars\": 63317,\n  \"moon-waning-crescent-inverse\": 59511,\n  \"moon-waning-crescent\": 59508,\n  \"moon-waning-gibbous-inverse\": 59510,\n  \"moon-waning-gibbous\": 59509,\n  \"moon-waxing-crescent-inverse\": 59509,\n  \"moon-waxing-crescent\": 59510,\n  \"moon-waxing-gibbous-inverse\": 59508,\n  \"moon-waxing-gibbous\": 59511,\n  \"moon\": 61830,\n  \"moped\": 58297,\n  \"mortar-board\": 61853,\n  \"mortar-pestle\": 62887,\n  \"mosque\": 63096,\n  \"mosquito-net\": 58668,\n  \"mosquito\": 58667,\n  \"motorcycle\": 61980,\n  \"mound\": 58669,\n  \"mountain-city\": 58670,\n  \"mountain-sun\": 58671,\n  \"mountain\": 63228,\n  \"mountains\": 63229,\n  \"mouse-alt\": 63693,\n  \"mouse-field\": 58792,\n  \"mouse-pointer\": 62021,\n  \"mouse\": 63692,\n  \"mp3-player\": 63694,\n  \"mug-hot\": 63414,\n  \"mug-marshmallows\": 63415,\n  \"mug-saucer\": 61684,\n  \"mug-tea-saucer\": 57845,\n  \"mug-tea\": 63605,\n  \"mug\": 63604,\n  \"multiply\": 61453,\n  \"museum\": 61852,\n  \"mushroom\": 58405,\n  \"music-alt-slash\": 63696,\n  \"music-alt\": 63695,\n  \"music-magnifying-glass\": 58978,\n  \"music-note-slash\": 63696,\n  \"music-note\": 63695,\n  \"music-slash\": 63697,\n  \"music\": 61441,\n  \"mustache\": 58812,\n  \"n\": 78,\n  \"naira-sign\": 57846,\n  \"narwhal\": 63230,\n  \"nas\": 59553,\n  \"navicon\": 61641,\n  \"nesting-dolls\": 58298,\n  \"network-wired\": 63231,\n  \"neuter\": 61996,\n  \"newspaper\": 61930,\n  \"nfc-lock\": 57848,\n  \"nfc-magnifying-glass\": 57849,\n  \"nfc-pen\": 57850,\n  \"nfc-signal\": 57851,\n  \"nfc-slash\": 57852,\n  \"nfc-symbol\": 58673,\n  \"nfc-trash\": 57853,\n  \"nfc\": 57847,\n  \"nigiri\": 58506,\n  \"non-binary\": 59399,\n  \"norwegian-krone-sign\": 59112,\n  \"nose\": 58813,\n  \"not-equal\": 62782,\n  \"notdef\": 57854,\n  \"note-medical\": 57856,\n  \"note-sticky\": 62025,\n  \"note\": 57855,\n  \"notebook\": 57857,\n  \"notes-medical\": 62593,\n  \"notes-sticky\": 59225,\n  \"notes\": 57858,\n  \"numpad\": 59340,\n  \"o\": 79,\n  \"oar\": 59524,\n  \"oars\": 59525,\n  \"object-exclude\": 58524,\n  \"object-group\": 62023,\n  \"object-intersect\": 58525,\n  \"object-subtract\": 58526,\n  \"object-ungroup\": 62024,\n  \"object-union\": 58527,\n  \"objects-align-bottom\": 58299,\n  \"objects-align-center-horizontal\": 58300,\n  \"objects-align-center-vertical\": 58301,\n  \"objects-align-left\": 58302,\n  \"objects-align-right\": 58303,\n  \"objects-align-top\": 58304,\n  \"objects-column\": 58305,\n  \"octagon-check\": 58406,\n  \"octagon-divide\": 57859,\n  \"octagon-equals\": 59059,\n  \"octagon-exclamation\": 57860,\n  \"octagon-minus\": 62216,\n  \"octagon-plus\": 62209,\n  \"octagon-xmark\": 62192,\n  \"octagon\": 62214,\n  \"octopus\": 59016,\n  \"oil-can-drip\": 57861,\n  \"oil-can\": 62995,\n  \"oil-temp\": 62996,\n  \"oil-temperature\": 62996,\n  \"oil-well\": 58674,\n  \"olive-branch\": 58135,\n  \"olive\": 58134,\n  \"om\": 63097,\n  \"omega\": 63098,\n  \"onion\": 58407,\n  \"open-captioning\": 59263,\n  \"opossum\": 59516,\n  \"option\": 58136,\n  \"ornament\": 63416,\n  \"otter\": 63232,\n  \"outdent\": 61499,\n  \"outlet\": 57372,\n  \"oven\": 57373,\n  \"overline\": 63606,\n  \"owl\": 59551,\n  \"p\": 80,\n  \"page-break\": 63607,\n  \"page-caret-down\": 58409,\n  \"page-caret-up\": 58410,\n  \"page\": 58408,\n  \"pager\": 63509,\n  \"paint-brush-alt\": 62889,\n  \"paint-brush-fine\": 62889,\n  \"paint-brush\": 61948,\n  \"paint-roller\": 62890,\n  \"paintbrush-alt\": 62889,\n  \"paintbrush-fine-slash\": 59213,\n  \"paintbrush-fine\": 62889,\n  \"paintbrush-pencil\": 57862,\n  \"paintbrush-slash\": 59214,\n  \"paintbrush\": 61948,\n  \"palette-boxes\": 62595,\n  \"palette\": 62783,\n  \"pallet-alt\": 62595,\n  \"pallet-box\": 57864,\n  \"pallet-boxes\": 62595,\n  \"pallet\": 62594,\n  \"pan-food\": 58411,\n  \"pan-frying\": 58412,\n  \"pancakes\": 58413,\n  \"panel-ews\": 58414,\n  \"panel-fire\": 58415,\n  \"panorama\": 57865,\n  \"panties\": 59092,\n  \"pants-straight\": 59094,\n  \"pants\": 59093,\n  \"paper-plane-alt\": 57866,\n  \"paper-plane-top\": 57866,\n  \"paper-plane\": 61912,\n  \"paperclip-vertical\": 58306,\n  \"paperclip\": 61638,\n  \"parachute-box\": 62669,\n  \"paragraph-left\": 63608,\n  \"paragraph-rtl\": 63608,\n  \"paragraph\": 61917,\n  \"parentheses\": 57541,\n  \"parenthesis\": 40,\n  \"parking-circle-slash\": 62998,\n  \"parking-circle\": 62997,\n  \"parking-slash\": 62999,\n  \"parking\": 62784,\n  \"party-back\": 58460,\n  \"party-bell\": 58138,\n  \"party-horn\": 58139,\n  \"passport\": 62891,\n  \"pastafarianism\": 63099,\n  \"paste\": 61674,\n  \"pause-circle\": 62091,\n  \"pause\": 61516,\n  \"paw-alt\": 63233,\n  \"paw-claws\": 63234,\n  \"paw-simple\": 63233,\n  \"paw\": 61872,\n  \"peace\": 63100,\n  \"peach\": 57867,\n  \"peanut\": 58416,\n  \"peanuts\": 58417,\n  \"peapod\": 58140,\n  \"pear\": 57868,\n  \"pedestal\": 57869,\n  \"pegasus\": 63235,\n  \"pen-alt-slash\": 57871,\n  \"pen-alt\": 62213,\n  \"pen-circle\": 57870,\n  \"pen-clip-slash\": 57871,\n  \"pen-clip\": 62213,\n  \"pen-fancy-slash\": 57872,\n  \"pen-fancy\": 62892,\n  \"pen-field\": 57873,\n  \"pen-line\": 57874,\n  \"pen-nib-slash\": 58529,\n  \"pen-nib\": 62893,\n  \"pen-paintbrush\": 63000,\n  \"pen-ruler\": 62894,\n  \"pen-slash\": 57875,\n  \"pen-square\": 61771,\n  \"pen-swirl\": 57876,\n  \"pen-to-square\": 61508,\n  \"pen\": 62212,\n  \"pencil-alt\": 62211,\n  \"pencil-line\": 59215,\n  \"pencil-mechanical\": 58826,\n  \"pencil-paintbrush\": 63000,\n  \"pencil-ruler\": 62894,\n  \"pencil-slash\": 57877,\n  \"pencil-square\": 61771,\n  \"pencil\": 62211,\n  \"pennant\": 62550,\n  \"pentagon\": 59280,\n  \"people-arrows-left-right\": 57448,\n  \"people-arrows\": 57448,\n  \"people-carry-box\": 62670,\n  \"people-carry\": 62670,\n  \"people-dress-simple\": 57880,\n  \"people-dress\": 57879,\n  \"people-group\": 58675,\n  \"people-line\": 58676,\n  \"people-pants-simple\": 57882,\n  \"people-pants\": 57881,\n  \"people-pulling\": 58677,\n  \"people-robbery\": 58678,\n  \"people-roof\": 58679,\n  \"people-simple\": 57883,\n  \"people\": 57878,\n  \"pepper-hot\": 63510,\n  \"pepper\": 58418,\n  \"percent\": 37,\n  \"percentage\": 37,\n  \"period\": 46,\n  \"person-arms-raised\": 59267,\n  \"person-arrow-down-to-line\": 58680,\n  \"person-arrow-up-from-line\": 58681,\n  \"person-basketball\": 59268,\n  \"person-biking-mountain\": 63563,\n  \"person-biking\": 63562,\n  \"person-booth\": 63318,\n  \"person-breastfeeding\": 58682,\n  \"person-burst\": 58683,\n  \"person-cane\": 58684,\n  \"person-carry-box\": 62671,\n  \"person-carry-empty\": 59269,\n  \"person-carry\": 62671,\n  \"person-chalkboard\": 58685,\n  \"person-circle-check\": 58686,\n  \"person-circle-exclamation\": 58687,\n  \"person-circle-minus\": 58688,\n  \"person-circle-plus\": 58689,\n  \"person-circle-question\": 58690,\n  \"person-circle-xmark\": 58691,\n  \"person-digging\": 63582,\n  \"person-dolly-empty\": 62673,\n  \"person-dolly\": 62672,\n  \"person-dots-from-line\": 62576,\n  \"person-dress-burst\": 58692,\n  \"person-dress-fairy\": 58887,\n  \"person-dress-simple\": 57884,\n  \"person-dress\": 61826,\n  \"person-drowning\": 58693,\n  \"person-fairy\": 58888,\n  \"person-falling-burst\": 58695,\n  \"person-falling\": 58694,\n  \"person-from-portal\": 57379,\n  \"person-golfing\": 59270,\n  \"person-half-dress\": 58696,\n  \"person-harassing\": 58697,\n  \"person-hiking\": 63212,\n  \"person-limbs-wide\": 59271,\n  \"person-meditating\": 59361,\n  \"person-military-pointing\": 58698,\n  \"person-military-rifle\": 58699,\n  \"person-military-to-person\": 58700,\n  \"person-pinball\": 57885,\n  \"person-praying\": 63107,\n  \"person-pregnant\": 58142,\n  \"person-rays\": 58701,\n  \"person-rifle\": 58702,\n  \"person-running-fast\": 58879,\n  \"person-running\": 63244,\n  \"person-seat-reclined\": 57887,\n  \"person-seat-window\": 59272,\n  \"person-seat\": 57886,\n  \"person-shelter\": 58703,\n  \"person-sign\": 63319,\n  \"person-simple\": 57888,\n  \"person-skating\": 63429,\n  \"person-ski-jumping\": 63431,\n  \"person-ski-lift\": 63432,\n  \"person-skiing-nordic\": 63434,\n  \"person-skiing\": 63433,\n  \"person-sledding\": 63435,\n  \"person-snowboarding\": 63438,\n  \"person-snowmobiling\": 63441,\n  \"person-soccer\": 59273,\n  \"person-swimming-pool\": 59274,\n  \"person-swimming-water\": 59275,\n  \"person-swimming\": 62916,\n  \"person-through-window\": 58793,\n  \"person-to-door\": 58419,\n  \"person-to-portal\": 57378,\n  \"person-walking-arrow-loop-left\": 58705,\n  \"person-walking-arrow-right\": 58706,\n  \"person-walking-dashed-line-arrow-right\": 58707,\n  \"person-walking-luggage\": 58708,\n  \"person-walking-with-cane\": 62109,\n  \"person-walking\": 62804,\n  \"person-water-arms-raised\": 59276,\n  \"person-waving\": 59277,\n  \"person\": 61827,\n  \"peruvian-soles-sign\": 59141,\n  \"peseta-sign\": 57889,\n  \"peso-sign\": 57890,\n  \"phone-alt\": 63609,\n  \"phone-arrow-down-left\": 57891,\n  \"phone-arrow-down\": 57891,\n  \"phone-arrow-right\": 58814,\n  \"phone-arrow-up-right\": 57892,\n  \"phone-arrow-up\": 57892,\n  \"phone-circle-alt\": 57628,\n  \"phone-circle-down\": 57629,\n  \"phone-circle\": 57627,\n  \"phone-connection\": 59105,\n  \"phone-flip\": 63609,\n  \"phone-hangup\": 57893,\n  \"phone-incoming\": 57891,\n  \"phone-intercom\": 58420,\n  \"phone-laptop\": 63610,\n  \"phone-missed\": 57894,\n  \"phone-office\": 63101,\n  \"phone-outgoing\": 57892,\n  \"phone-plus\": 62674,\n  \"phone-rotary\": 63699,\n  \"phone-slash\": 62429,\n  \"phone-square-alt\": 63611,\n  \"phone-square-down\": 57978,\n  \"phone-square\": 61592,\n  \"phone-volume\": 62112,\n  \"phone-waveform\": 59106,\n  \"phone-xmark\": 57895,\n  \"phone\": 61589,\n  \"photo-film-music\": 57896,\n  \"photo-film\": 63612,\n  \"photo-video\": 63612,\n  \"pi\": 63102,\n  \"piano-keyboard\": 63701,\n  \"piano\": 63700,\n  \"pickaxe\": 58815,\n  \"pickleball\": 58421,\n  \"picture-in-picture\": 59403,\n  \"pie-chart\": 61952,\n  \"pie\": 63237,\n  \"pig\": 63238,\n  \"piggy-bank\": 62675,\n  \"pills\": 62596,\n  \"pinata\": 58307,\n  \"pinball\": 57897,\n  \"pineapple\": 58143,\n  \"ping-pong-paddle-ball\": 62557,\n  \"pipe-circle-check\": 58422,\n  \"pipe-collar\": 58423,\n  \"pipe-section\": 58424,\n  \"pipe-smoking\": 58308,\n  \"pipe-valve\": 58425,\n  \"pipe\": 124,\n  \"pisces\": 59468,\n  \"pizza-slice\": 63512,\n  \"pizza\": 63511,\n  \"place-of-worship\": 63103,\n  \"plane-alt\": 62430,\n  \"plane-arrival\": 62895,\n  \"plane-circle-check\": 58709,\n  \"plane-circle-exclamation\": 58710,\n  \"plane-circle-xmark\": 58711,\n  \"plane-departure\": 62896,\n  \"plane-engines\": 62430,\n  \"plane-flying\": 59323,\n  \"plane-landing-gear\": 59324,\n  \"plane-lock\": 58712,\n  \"plane-prop\": 57899,\n  \"plane-slash\": 57449,\n  \"plane-tail\": 57900,\n  \"plane-up-slash\": 57902,\n  \"plane-up\": 57901,\n  \"plane\": 61554,\n  \"planet-moon\": 57375,\n  \"planet-ringed\": 57376,\n  \"plant-wilt\": 58794,\n  \"plate-utensils\": 58427,\n  \"plate-wheat\": 58714,\n  \"play-circle\": 61764,\n  \"play-flip\": 59264,\n  \"play-pause\": 57903,\n  \"play\": 61515,\n  \"plug-circle-bolt\": 58715,\n  \"plug-circle-check\": 58716,\n  \"plug-circle-exclamation\": 58717,\n  \"plug-circle-minus\": 58718,\n  \"plug-circle-plus\": 58719,\n  \"plug-circle-xmark\": 58720,\n  \"plug\": 61926,\n  \"plus-circle\": 61525,\n  \"plus-hexagon\": 62208,\n  \"plus-large\": 58782,\n  \"plus-minus\": 58428,\n  \"plus-octagon\": 62209,\n  \"plus-square\": 61694,\n  \"plus\": 43,\n  \"podcast\": 62158,\n  \"podium-star\": 63320,\n  \"podium\": 63104,\n  \"poker-chip\": 59554,\n  \"police-box\": 57377,\n  \"polish-zloty-sign\": 59147,\n  \"poll-h\": 63106,\n  \"poll-people\": 63321,\n  \"poll\": 63105,\n  \"pompebled\": 58429,\n  \"poo-bolt\": 63322,\n  \"poo-storm\": 63322,\n  \"poo\": 62206,\n  \"pool-8-ball\": 58309,\n  \"poop\": 63001,\n  \"popcorn\": 63513,\n  \"popsicle\": 58430,\n  \"portal-enter\": 57378,\n  \"portal-exit\": 57379,\n  \"portrait\": 62432,\n  \"possum\": 59516,\n  \"postage-stamp\": 59107,\n  \"pot-food\": 58431,\n  \"potato\": 58432,\n  \"pound-sign\": 61780,\n  \"power-off\": 61457,\n  \"pray\": 63107,\n  \"praying-hands\": 63108,\n  \"prescription-bottle-alt\": 62598,\n  \"prescription-bottle-medical\": 62598,\n  \"prescription-bottle-pill\": 58816,\n  \"prescription-bottle\": 62597,\n  \"prescription\": 62897,\n  \"presentation-screen\": 63109,\n  \"presentation\": 63109,\n  \"pretzel\": 58433,\n  \"print-magnifying-glass\": 63514,\n  \"print-search\": 63514,\n  \"print-slash\": 63110,\n  \"print\": 61487,\n  \"pro\": 57909,\n  \"procedures\": 62599,\n  \"project-diagram\": 62786,\n  \"projector\": 63702,\n  \"pronoun\": 59041,\n  \"pump-impeller\": 59445,\n  \"pump-medical\": 57450,\n  \"pump-soap\": 57451,\n  \"pump\": 58434,\n  \"pumpkin\": 63239,\n  \"puzzle-piece-alt\": 57905,\n  \"puzzle-piece-simple\": 57905,\n  \"puzzle-piece\": 61742,\n  \"puzzle\": 58435,\n  \"q\": 81,\n  \"qrcode-read\": 59289,\n  \"qrcode\": 61481,\n  \"question-circle\": 61529,\n  \"question-square\": 62205,\n  \"question\": 63,\n  \"quidditch-broom-ball\": 62552,\n  \"quidditch\": 62552,\n  \"quote-left-alt\": 61709,\n  \"quote-left\": 61709,\n  \"quote-right-alt\": 61710,\n  \"quote-right\": 61710,\n  \"quotes\": 57908,\n  \"quran\": 63111,\n  \"r\": 82,\n  \"rabbit-fast\": 63241,\n  \"rabbit-running\": 63241,\n  \"rabbit\": 63240,\n  \"raccoon\": 58899,\n  \"racquet\": 62554,\n  \"radar\": 57380,\n  \"radiation-alt\": 63418,\n  \"radiation\": 63417,\n  \"radio-alt\": 63704,\n  \"radio-tuner\": 63704,\n  \"radio\": 63703,\n  \"rainbow-half\": 59338,\n  \"rainbow\": 63323,\n  \"raindrops\": 63324,\n  \"ram\": 63242,\n  \"ramp-loading\": 62676,\n  \"random\": 61556,\n  \"ranking-star\": 58721,\n  \"raygun\": 57381,\n  \"receipt\": 62787,\n  \"record-vinyl\": 63705,\n  \"rectangle-4k\": 59250,\n  \"rectangle-ad\": 63041,\n  \"rectangle-api\": 59552,\n  \"rectangle-barcode\": 62563,\n  \"rectangle-beta\": 59400,\n  \"rectangle-code\": 58146,\n  \"rectangle-hd\": 57774,\n  \"rectangle-hdr\": 59251,\n  \"rectangle-high-dynamic-range\": 59251,\n  \"rectangle-history-circle-plus\": 58531,\n  \"rectangle-history-circle-user\": 58532,\n  \"rectangle-history\": 58530,\n  \"rectangle-irc\": 59500,\n  \"rectangle-landscape\": 62202,\n  \"rectangle-list\": 61474,\n  \"rectangle-minus\": 59060,\n  \"rectangle-n-a\": 59560,\n  \"rectangle-new\": 59514,\n  \"rectangle-plus\": 59061,\n  \"rectangle-portrait\": 62203,\n  \"rectangle-pro\": 57909,\n  \"rectangle-sd\": 57994,\n  \"rectangle-tall\": 59281,\n  \"rectangle-terminal\": 57910,\n  \"rectangle-times\": 62480,\n  \"rectangle-vertical-history\": 57911,\n  \"rectangle-vertical\": 62203,\n  \"rectangle-video-on-demand\": 59252,\n  \"rectangle-wide\": 62204,\n  \"rectangle-xmark\": 62480,\n  \"rectangle\": 62202,\n  \"rectangles-mixed\": 58147,\n  \"recycle\": 61880,\n  \"redo-alt\": 62201,\n  \"redo\": 61470,\n  \"reel\": 57912,\n  \"reflect-both\": 58991,\n  \"reflect-horizontal\": 58980,\n  \"reflect-vertical\": 58981,\n  \"refresh\": 61473,\n  \"refrigerator\": 57382,\n  \"registered\": 62045,\n  \"remote\": 59561,\n  \"remove-format\": 63613,\n  \"remove\": 61453,\n  \"renminbi-sign\": 59196,\n  \"reorder\": 62800,\n  \"repeat-1-alt\": 62310,\n  \"repeat-1\": 62309,\n  \"repeat-alt\": 62308,\n  \"repeat\": 62307,\n  \"reply-all\": 61730,\n  \"reply-clock\": 57913,\n  \"reply-time\": 57913,\n  \"reply\": 62437,\n  \"republican\": 63326,\n  \"restroom-simple\": 57914,\n  \"restroom\": 63421,\n  \"retweet-alt\": 62305,\n  \"retweet\": 61561,\n  \"rhombus\": 57915,\n  \"ribbon\": 62678,\n  \"right-from-bracket\": 62197,\n  \"right-from-dotted-line\": 59076,\n  \"right-from-line\": 62279,\n  \"right-left-large\": 58849,\n  \"right-left\": 62306,\n  \"right-long-to-line\": 58436,\n  \"right-long\": 62219,\n  \"right-to-bracket\": 62198,\n  \"right-to-dotted-line\": 59077,\n  \"right-to-line\": 62284,\n  \"right\": 62294,\n  \"ring-diamond\": 58795,\n  \"ring\": 63243,\n  \"rings-wedding\": 63515,\n  \"rmb\": 61783,\n  \"road-barrier\": 58722,\n  \"road-bridge\": 58723,\n  \"road-circle-check\": 58724,\n  \"road-circle-exclamation\": 58725,\n  \"road-circle-xmark\": 58726,\n  \"road-lock\": 58727,\n  \"road-spikes\": 58728,\n  \"road\": 61464,\n  \"robot-astromech\": 58066,\n  \"robot\": 62788,\n  \"rocket-launch\": 57383,\n  \"rocket-vertical\": 59325,\n  \"rocket\": 61749,\n  \"rod-asclepius\": 58745,\n  \"rod-snake\": 58745,\n  \"roller-coaster\": 58148,\n  \"rotate-back\": 62186,\n  \"rotate-backward\": 62186,\n  \"rotate-exclamation\": 57916,\n  \"rotate-forward\": 62201,\n  \"rotate-left\": 62186,\n  \"rotate-reverse\": 58929,\n  \"rotate-right\": 62201,\n  \"rotate\": 62193,\n  \"rouble\": 61784,\n  \"route-highway\": 63002,\n  \"route-interstate\": 63003,\n  \"route\": 62679,\n  \"router\": 63706,\n  \"rows-3\": 59531,\n  \"rows\": 58002,\n  \"rss-square\": 61763,\n  \"rss\": 61598,\n  \"rub\": 61784,\n  \"ruble-sign\": 61784,\n  \"ruble\": 61784,\n  \"rug\": 58729,\n  \"rugby-ball\": 58310,\n  \"ruler-combined\": 62790,\n  \"ruler-horizontal\": 62791,\n  \"ruler-triangle\": 63004,\n  \"ruler-vertical\": 62792,\n  \"ruler\": 62789,\n  \"running\": 63244,\n  \"rupee-sign\": 61782,\n  \"rupee\": 61782,\n  \"rupiah-sign\": 57917,\n  \"rv\": 63422,\n  \"s\": 83,\n  \"sack-dollar\": 63517,\n  \"sack-xmark\": 58730,\n  \"sack\": 63516,\n  \"sad-cry\": 62899,\n  \"sad-tear\": 62900,\n  \"sagittarius\": 59469,\n  \"sailboat\": 58437,\n  \"salad\": 63518,\n  \"salt-shaker\": 58438,\n  \"sandwich\": 63519,\n  \"satellite-dish\": 63424,\n  \"satellite\": 63423,\n  \"sausage\": 63520,\n  \"save-circle-arrow-right\": 57728,\n  \"save-circle-xmark\": 57729,\n  \"save-times\": 57729,\n  \"save\": 61639,\n  \"sax-hot\": 63707,\n  \"saxophone-fire\": 63707,\n  \"saxophone\": 63708,\n  \"scale-balanced\": 62030,\n  \"scale-unbalanced-flip\": 62742,\n  \"scale-unbalanced\": 62741,\n  \"scalpel-line-dashed\": 63006,\n  \"scalpel-path\": 63006,\n  \"scalpel\": 63005,\n  \"scanner-gun\": 62600,\n  \"scanner-image\": 63731,\n  \"scanner-keyboard\": 62601,\n  \"scanner-touchscreen\": 62602,\n  \"scanner\": 62600,\n  \"scarecrow\": 63245,\n  \"scarf\": 63425,\n  \"school-circle-check\": 58731,\n  \"school-circle-exclamation\": 58732,\n  \"school-circle-xmark\": 58733,\n  \"school-flag\": 58734,\n  \"school-lock\": 58735,\n  \"school-unlock\": 59083,\n  \"school\": 62793,\n  \"scissors\": 61636,\n  \"scooter\": 59331,\n  \"scorpio\": 59470,\n  \"screen-users\": 63037,\n  \"screencast\": 57918,\n  \"screenshot\": 57562,\n  \"screwdriver-wrench\": 63449,\n  \"screwdriver\": 62794,\n  \"scribble\": 57919,\n  \"scroll-old\": 63247,\n  \"scroll-ribbon\": 62954,\n  \"scroll-torah\": 63136,\n  \"scroll\": 63246,\n  \"scrubber\": 62200,\n  \"scythe\": 63248,\n  \"sd-card\": 63426,\n  \"sd-cards\": 57920,\n  \"seal-exclamation\": 57922,\n  \"seal-question\": 57923,\n  \"seal\": 57921,\n  \"search-dollar\": 63112,\n  \"search-location\": 63113,\n  \"search-minus\": 61456,\n  \"search-plus\": 61454,\n  \"search\": 61442,\n  \"seat-airline-window\": 59326,\n  \"seat-airline\": 57924,\n  \"seat\": 59236,\n  \"seats\": 59237,\n  \"section\": 58439,\n  \"seedling\": 62680,\n  \"semicolon\": 59,\n  \"send-back\": 63614,\n  \"send-backward\": 63615,\n  \"send\": 57866,\n  \"sensor-alert\": 57385,\n  \"sensor-cloud\": 57388,\n  \"sensor-fire\": 57386,\n  \"sensor-on\": 57387,\n  \"sensor-smoke\": 57388,\n  \"sensor-triangle-exclamation\": 57385,\n  \"sensor\": 57384,\n  \"septagon\": 59424,\n  \"server\": 62003,\n  \"shapes\": 63007,\n  \"share-all\": 62311,\n  \"share-alt-square\": 61921,\n  \"share-alt\": 61920,\n  \"share-from-square\": 61773,\n  \"share-nodes\": 61920,\n  \"share-square\": 61773,\n  \"share\": 61540,\n  \"sheep\": 63249,\n  \"sheet-plastic\": 58737,\n  \"shekel-sign\": 61963,\n  \"shekel\": 61963,\n  \"shelves-empty\": 57926,\n  \"shelves\": 62592,\n  \"sheqel-sign\": 61963,\n  \"sheqel\": 61963,\n  \"shield-alt\": 62445,\n  \"shield-blank\": 61746,\n  \"shield-cat\": 58738,\n  \"shield-check\": 62199,\n  \"shield-cross\": 63250,\n  \"shield-dog\": 58739,\n  \"shield-exclamation\": 57927,\n  \"shield-halved\": 62445,\n  \"shield-heart\": 58740,\n  \"shield-keyhole\": 57928,\n  \"shield-minus\": 57929,\n  \"shield-plus\": 57930,\n  \"shield-quartered\": 58741,\n  \"shield-slash\": 57931,\n  \"shield-times\": 57932,\n  \"shield-user\": 59401,\n  \"shield-virus\": 57452,\n  \"shield-xmark\": 57932,\n  \"shield\": 61746,\n  \"ship-large\": 59408,\n  \"ship\": 61978,\n  \"shipping-fast\": 62603,\n  \"shipping-timed\": 62604,\n  \"shirt-jersey\": 59095,\n  \"shirt-long-sleeve\": 58311,\n  \"shirt-running\": 58312,\n  \"shirt-tank-top\": 58313,\n  \"shirt\": 62803,\n  \"shish-kebab\": 63521,\n  \"shoe-prints\": 62795,\n  \"shoe\": 59096,\n  \"shop-24\": 59290,\n  \"shop-lock\": 58533,\n  \"shop-slash\": 57456,\n  \"shop\": 62799,\n  \"shopping-bag\": 62096,\n  \"shopping-basket-alt\": 57519,\n  \"shopping-basket\": 62097,\n  \"shopping-cart\": 61562,\n  \"shortcake\": 58341,\n  \"shorts\": 59097,\n  \"shovel-snow\": 63427,\n  \"shovel\": 63251,\n  \"shower-alt\": 57933,\n  \"shower-down\": 57933,\n  \"shower\": 62156,\n  \"shredder\": 63114,\n  \"shrimp\": 58440,\n  \"shuffle\": 61556,\n  \"shutters\": 58441,\n  \"shuttle-space-vertical\": 59327,\n  \"shuttle-space\": 61847,\n  \"shuttle-van\": 62902,\n  \"shuttlecock\": 62555,\n  \"sickle\": 63522,\n  \"sidebar-flip\": 57935,\n  \"sidebar\": 57934,\n  \"sigma\": 63115,\n  \"sign-hanging\": 62681,\n  \"sign-in-alt\": 62198,\n  \"sign-in\": 61584,\n  \"sign-language\": 62119,\n  \"sign-out-alt\": 62197,\n  \"sign-out\": 61579,\n  \"sign-post\": 58916,\n  \"sign-posts-wrench\": 58918,\n  \"sign-posts\": 58917,\n  \"sign\": 62681,\n  \"signal-1\": 63116,\n  \"signal-2\": 63117,\n  \"signal-3\": 63118,\n  \"signal-4\": 63119,\n  \"signal-5\": 61458,\n  \"signal-alt-1\": 63121,\n  \"signal-alt-2\": 63122,\n  \"signal-alt-3\": 63123,\n  \"signal-alt-4\": 63120,\n  \"signal-alt-slash\": 63124,\n  \"signal-alt\": 63120,\n  \"signal-bars-fair\": 63122,\n  \"signal-bars-good\": 63123,\n  \"signal-bars-slash\": 63124,\n  \"signal-bars-strong\": 63120,\n  \"signal-bars-weak\": 63121,\n  \"signal-bars\": 63120,\n  \"signal-fair\": 63117,\n  \"signal-good\": 63118,\n  \"signal-perfect\": 61458,\n  \"signal-slash\": 63125,\n  \"signal-stream-slash\": 57936,\n  \"signal-stream\": 63709,\n  \"signal-strong\": 63119,\n  \"signal-weak\": 63116,\n  \"signal\": 61458,\n  \"signapore-dollar-sign\": 59182,\n  \"signature-lock\": 58314,\n  \"signature-slash\": 58315,\n  \"signature\": 62903,\n  \"signing\": 62119,\n  \"signs-post\": 62071,\n  \"sim-card\": 63428,\n  \"sim-cards\": 57937,\n  \"single-quote-left\": 59419,\n  \"single-quote-right\": 59420,\n  \"sink\": 57453,\n  \"siren-on\": 57390,\n  \"siren\": 57389,\n  \"sitemap\": 61672,\n  \"skating\": 63429,\n  \"skeleton-ribs\": 58827,\n  \"skeleton\": 63008,\n  \"ski-boot-ski\": 58317,\n  \"ski-boot\": 58316,\n  \"ski-jump\": 63431,\n  \"ski-lift\": 63432,\n  \"skiing-nordic\": 63434,\n  \"skiing\": 63433,\n  \"skull-cow\": 63710,\n  \"skull-crossbones\": 63252,\n  \"skull\": 62796,\n  \"slash-back\": 92,\n  \"slash-forward\": 47,\n  \"slash\": 63253,\n  \"sledding\": 63435,\n  \"sleigh\": 63436,\n  \"slider-circle\": 59216,\n  \"slider\": 57938,\n  \"sliders-h-square\": 62448,\n  \"sliders-h\": 61918,\n  \"sliders-simple\": 57939,\n  \"sliders-up\": 62449,\n  \"sliders-v-square\": 62450,\n  \"sliders-v\": 62449,\n  \"sliders\": 61918,\n  \"slot-machine\": 58318,\n  \"smile-beam\": 62904,\n  \"smile-plus\": 62905,\n  \"smile-wink\": 62682,\n  \"smile\": 61720,\n  \"smog\": 63327,\n  \"smoke\": 63328,\n  \"smoking-ban\": 62797,\n  \"smoking\": 62605,\n  \"sms\": 63437,\n  \"snake\": 63254,\n  \"sneaker-running\": 59417,\n  \"sneaker\": 59098,\n  \"snooze\": 63616,\n  \"snow-blowing\": 63329,\n  \"snowboarding\": 63438,\n  \"snowflake-droplets\": 58817,\n  \"snowflake\": 62172,\n  \"snowflakes\": 63439,\n  \"snowman-head\": 63387,\n  \"snowman\": 63440,\n  \"snowmobile-blank\": 59332,\n  \"snowmobile\": 63441,\n  \"snowplow\": 63442,\n  \"soap\": 57454,\n  \"soccer-ball\": 61923,\n  \"socks\": 63126,\n  \"soft-serve\": 58368,\n  \"solar-panel\": 62906,\n  \"solar-system\": 57391,\n  \"sort-alpha-asc\": 61789,\n  \"sort-alpha-desc\": 63617,\n  \"sort-alpha-down-alt\": 63617,\n  \"sort-alpha-down\": 61789,\n  \"sort-alpha-up-alt\": 63618,\n  \"sort-alpha-up\": 61790,\n  \"sort-alt\": 63619,\n  \"sort-amount-asc\": 61792,\n  \"sort-amount-desc\": 63620,\n  \"sort-amount-down-alt\": 63620,\n  \"sort-amount-down\": 61792,\n  \"sort-amount-up-alt\": 63621,\n  \"sort-amount-up\": 61793,\n  \"sort-asc\": 61662,\n  \"sort-circle-down\": 57393,\n  \"sort-circle-up\": 57394,\n  \"sort-circle\": 57392,\n  \"sort-desc\": 61661,\n  \"sort-down\": 61661,\n  \"sort-numeric-asc\": 61794,\n  \"sort-numeric-desc\": 63622,\n  \"sort-numeric-down-alt\": 63622,\n  \"sort-numeric-down\": 61794,\n  \"sort-numeric-up-alt\": 63623,\n  \"sort-numeric-up\": 61795,\n  \"sort-shapes-down-alt\": 63625,\n  \"sort-shapes-down\": 63624,\n  \"sort-shapes-up-alt\": 63627,\n  \"sort-shapes-up\": 63626,\n  \"sort-size-down-alt\": 63629,\n  \"sort-size-down\": 63628,\n  \"sort-size-up-alt\": 63631,\n  \"sort-size-up\": 63630,\n  \"sort-up-down\": 57497,\n  \"sort-up\": 61662,\n  \"sort\": 61660,\n  \"soup\": 63523,\n  \"spa\": 62907,\n  \"space-shuttle\": 61847,\n  \"space-station-moon-alt\": 57396,\n  \"space-station-moon-construction\": 57396,\n  \"space-station-moon\": 57395,\n  \"spade\": 62196,\n  \"spaghetti-monster-flying\": 63099,\n  \"sparkle\": 58838,\n  \"sparkles\": 63632,\n  \"speaker\": 63711,\n  \"speakers\": 63712,\n  \"spell-check\": 63633,\n  \"spider-black-widow\": 63256,\n  \"spider-web\": 63257,\n  \"spider\": 63255,\n  \"spine\": 59233,\n  \"spinner-scale\": 58922,\n  \"spinner-third\": 62452,\n  \"spinner\": 61712,\n  \"spiral\": 59402,\n  \"split\": 57940,\n  \"splotch\": 62908,\n  \"spoon\": 62181,\n  \"sportsball\": 58443,\n  \"spray-can-sparkles\": 62928,\n  \"spray-can\": 62909,\n  \"sprinkler-ceiling\": 58444,\n  \"sprinkler\": 57397,\n  \"sprout\": 62680,\n  \"square-0\": 57941,\n  \"square-1\": 57942,\n  \"square-2\": 57943,\n  \"square-3\": 57944,\n  \"square-4\": 57945,\n  \"square-5\": 57946,\n  \"square-6\": 57947,\n  \"square-7\": 57948,\n  \"square-8\": 57949,\n  \"square-9\": 57950,\n  \"square-a-lock\": 58445,\n  \"square-a\": 57951,\n  \"square-ampersand\": 57952,\n  \"square-arrow-down-left\": 57953,\n  \"square-arrow-down-right\": 57954,\n  \"square-arrow-down\": 62265,\n  \"square-arrow-left\": 62266,\n  \"square-arrow-right\": 62267,\n  \"square-arrow-up-left\": 57955,\n  \"square-arrow-up-right\": 61772,\n  \"square-arrow-up\": 62268,\n  \"square-austral\": 59174,\n  \"square-australian-dollar\": 59160,\n  \"square-b\": 57956,\n  \"square-baht\": 59161,\n  \"square-bangladeshi-taka\": 59204,\n  \"square-binary\": 59035,\n  \"square-bitcoin\": 59122,\n  \"square-bolt\": 57957,\n  \"square-brazilian-real\": 59121,\n  \"square-c\": 57958,\n  \"square-caret-down\": 61776,\n  \"square-caret-left\": 61841,\n  \"square-caret-right\": 61778,\n  \"square-caret-up\": 61777,\n  \"square-cedi\": 59177,\n  \"square-cent\": 59120,\n  \"square-check\": 61770,\n  \"square-chevron-down\": 62249,\n  \"square-chevron-left\": 62250,\n  \"square-chevron-right\": 62251,\n  \"square-chevron-up\": 62252,\n  \"square-chf\": 59110,\n  \"square-code\": 57959,\n  \"square-colon\": 59194,\n  \"square-cruzeiro\": 59117,\n  \"square-currency\": 59148,\n  \"square-d\": 57960,\n  \"square-danish-krone\": 59207,\n  \"square-dashed-circle-plus\": 58818,\n  \"square-dashed\": 57961,\n  \"square-divide\": 57962,\n  \"square-dollar\": 62185,\n  \"square-dong\": 59151,\n  \"square-down-left\": 57963,\n  \"square-down-right\": 57964,\n  \"square-down\": 62288,\n  \"square-e\": 57965,\n  \"square-ellipsis-vertical\": 57967,\n  \"square-ellipsis\": 57966,\n  \"square-envelope\": 61849,\n  \"square-equals\": 59062,\n  \"square-euro\": 59186,\n  \"square-eurozone\": 59175,\n  \"square-exclamation\": 62241,\n  \"square-f\": 57968,\n  \"square-florin\": 59159,\n  \"square-fragile\": 62619,\n  \"square-franc\": 59183,\n  \"square-full\": 62556,\n  \"square-g\": 57969,\n  \"square-guarani\": 59150,\n  \"square-h\": 61693,\n  \"square-half-horizontal\": 59406,\n  \"square-half-stroke-horizontal\": 59407,\n  \"square-half-stroke\": 59283,\n  \"square-half\": 59282,\n  \"square-heart\": 62664,\n  \"square-hryvnia\": 59152,\n  \"square-i\": 57970,\n  \"square-indian-rupee\": 59125,\n  \"square-info\": 62223,\n  \"square-j\": 57971,\n  \"square-k\": 57972,\n  \"square-kanban\": 58504,\n  \"square-kip\": 59149,\n  \"square-l\": 57973,\n  \"square-lari\": 59199,\n  \"square-left\": 62289,\n  \"square-lira\": 59111,\n  \"square-list\": 58505,\n  \"square-litecoin\": 59127,\n  \"square-m\": 57974,\n  \"square-malaysian-ringgit\": 59208,\n  \"square-manat\": 59140,\n  \"square-microphone\": 59265,\n  \"square-mill\": 59146,\n  \"square-minus\": 61766,\n  \"square-n\": 57975,\n  \"square-naira\": 59144,\n  \"square-nfi\": 58742,\n  \"square-norwegian-krone\": 59143,\n  \"square-o\": 57976,\n  \"square-p\": 57977,\n  \"square-parking-slash\": 62999,\n  \"square-parking\": 62784,\n  \"square-pen\": 61771,\n  \"square-person-confined\": 58743,\n  \"square-peruvian-soles\": 59158,\n  \"square-peseta\": 59114,\n  \"square-peso\": 59162,\n  \"square-phone-flip\": 63611,\n  \"square-phone-hangup\": 57978,\n  \"square-phone\": 61592,\n  \"square-plus\": 61694,\n  \"square-polish-zloty\": 59190,\n  \"square-poll-horizontal\": 63106,\n  \"square-poll-vertical\": 63105,\n  \"square-q\": 57979,\n  \"square-quarters\": 58446,\n  \"square-question\": 62205,\n  \"square-quote\": 58153,\n  \"square-r\": 57980,\n  \"square-renminbi\": 59197,\n  \"square-right\": 62290,\n  \"square-ring\": 58447,\n  \"square-root-alt\": 63128,\n  \"square-root-variable\": 63128,\n  \"square-root\": 63127,\n  \"square-rss\": 61763,\n  \"square-ruble\": 59128,\n  \"square-rupee\": 59157,\n  \"square-rupiah\": 59154,\n  \"square-s\": 57981,\n  \"square-share-nodes\": 61921,\n  \"square-shekel\": 59189,\n  \"square-sliders-vertical\": 62450,\n  \"square-sliders\": 62448,\n  \"square-small\": 57982,\n  \"square-star\": 57983,\n  \"square-sterling\": 59155,\n  \"square-swedish-krona\": 59164,\n  \"square-t\": 57984,\n  \"square-tenge\": 59185,\n  \"square-terminal\": 58154,\n  \"square-this-way-up\": 62623,\n  \"square-tugrik\": 59176,\n  \"square-turkish-lira\": 59167,\n  \"square-u\": 57985,\n  \"square-up-left\": 57986,\n  \"square-up-right\": 62304,\n  \"square-up\": 62291,\n  \"square-user\": 57987,\n  \"square-v\": 57988,\n  \"square-virus\": 58744,\n  \"square-w\": 57989,\n  \"square-wine-glass-crack\": 62619,\n  \"square-won\": 59145,\n  \"square-x\": 57990,\n  \"square-xmark\": 62163,\n  \"square-y\": 57991,\n  \"square-yen\": 59172,\n  \"square-z\": 57992,\n  \"square\": 61640,\n  \"squareapore-dollar\": 59187,\n  \"squid\": 58448,\n  \"squirrel\": 63258,\n  \"stadium\": 59084,\n  \"staff-aesculapius\": 58745,\n  \"staff-snake\": 58745,\n  \"staff\": 63259,\n  \"stair-car\": 59333,\n  \"stairs\": 57993,\n  \"stamp\": 62911,\n  \"standard-definition\": 57994,\n  \"stapler\": 58799,\n  \"star-and-crescent\": 63129,\n  \"star-christmas\": 63444,\n  \"star-circle\": 57635,\n  \"star-exclamation\": 62195,\n  \"star-half-alt\": 62912,\n  \"star-half-stroke\": 62912,\n  \"star-half\": 61577,\n  \"star-of-david\": 63130,\n  \"star-of-life\": 63009,\n  \"star-sharp-half-alt\": 57997,\n  \"star-sharp-half-stroke\": 57997,\n  \"star-sharp-half\": 57996,\n  \"star-sharp\": 57995,\n  \"star-shooting\": 57398,\n  \"star\": 61445,\n  \"starfighter-alt-advanced\": 57998,\n  \"starfighter-alt\": 57400,\n  \"starfighter-twin-ion-engine-advanced\": 57998,\n  \"starfighter-twin-ion-engine\": 57400,\n  \"starfighter\": 57399,\n  \"stars\": 63330,\n  \"starship-freighter\": 57402,\n  \"starship\": 57401,\n  \"steak\": 63524,\n  \"steering-wheel\": 63010,\n  \"step-backward\": 61512,\n  \"step-forward\": 61521,\n  \"sterling-sign\": 61780,\n  \"stethoscope\": 61681,\n  \"sticky-note\": 62025,\n  \"stocking\": 63445,\n  \"stomach\": 63011,\n  \"stool\": 59520,\n  \"stop-circle\": 62093,\n  \"stop\": 61517,\n  \"stopwatch-20\": 57455,\n  \"stopwatch\": 62194,\n  \"store-24\": 59291,\n  \"store-alt-slash\": 57456,\n  \"store-alt\": 62799,\n  \"store-lock\": 58534,\n  \"store-slash\": 57457,\n  \"store\": 62798,\n  \"strawberry\": 58155,\n  \"stream\": 62800,\n  \"street-view\": 61981,\n  \"stretcher\": 63525,\n  \"strikethrough\": 61644,\n  \"stroopwafel\": 62801,\n  \"subscript\": 61740,\n  \"subtitles-slash\": 58896,\n  \"subtitles\": 58895,\n  \"subtract\": 61544,\n  \"subway-tunnel\": 58019,\n  \"subway\": 62009,\n  \"suitcase-medical\": 61690,\n  \"suitcase-rolling\": 62913,\n  \"suitcase\": 61682,\n  \"sun-alt\": 57999,\n  \"sun-bright\": 57999,\n  \"sun-cloud\": 63331,\n  \"sun-dust\": 63332,\n  \"sun-haze\": 63333,\n  \"sun-plant-wilt\": 58746,\n  \"sun\": 61829,\n  \"sunglasses\": 63634,\n  \"sunrise\": 63334,\n  \"sunset\": 63335,\n  \"superscript\": 61739,\n  \"surprise\": 62914,\n  \"sushi-roll\": 58507,\n  \"sushi\": 58506,\n  \"swap-arrows\": 58890,\n  \"swap\": 58889,\n  \"swatchbook\": 62915,\n  \"swedish-krona-sign\": 59198,\n  \"swimmer\": 62916,\n  \"swimming-pool\": 62917,\n  \"sword-laser-alt\": 57404,\n  \"sword-laser\": 57403,\n  \"sword\": 63260,\n  \"swords-laser\": 57405,\n  \"swords\": 63261,\n  \"symbols\": 63598,\n  \"synagogue\": 63131,\n  \"sync-alt\": 62193,\n  \"sync\": 61473,\n  \"syringe\": 62606,\n  \"t-rex\": 58921,\n  \"t-shirt\": 62803,\n  \"t\": 84,\n  \"table-bar\": 59550,\n  \"table-cells-column-lock\": 59000,\n  \"table-cells-column-unlock\": 59024,\n  \"table-cells-columns\": 59052,\n  \"table-cells-header-lock\": 59054,\n  \"table-cells-header-unlock\": 59055,\n  \"table-cells-header\": 59053,\n  \"table-cells-large\": 61449,\n  \"table-cells-lock\": 59001,\n  \"table-cells-merge\": 59532,\n  \"table-cells-row-lock\": 59002,\n  \"table-cells-row-unlock\": 59025,\n  \"table-cells-rows\": 59056,\n  \"table-cells-split\": 59533,\n  \"table-cells-unlock\": 59026,\n  \"table-cells\": 61450,\n  \"table-columns-add-after\": 59534,\n  \"table-columns-add-before\": 59535,\n  \"table-columns-merge-next\": 59536,\n  \"table-columns-merge-previous\": 59537,\n  \"table-columns-remove-after\": 59538,\n  \"table-columns-remove-before\": 59539,\n  \"table-columns\": 61659,\n  \"table-dining\": 59522,\n  \"table-layout\": 58000,\n  \"table-list\": 61451,\n  \"table-picnic\": 58157,\n  \"table-pivot\": 58001,\n  \"table-rows-add-above\": 59540,\n  \"table-rows-add-below\": 59541,\n  \"table-rows-merge-next\": 59542,\n  \"table-rows-merge-previous\": 59543,\n  \"table-rows-remove-above\": 59544,\n  \"table-rows-remove-below\": 59545,\n  \"table-rows\": 58002,\n  \"table-slash\": 59546,\n  \"table-tennis-paddle-ball\": 62557,\n  \"table-tennis\": 62557,\n  \"table-tree\": 58003,\n  \"table\": 61646,\n  \"tablet-alt\": 62458,\n  \"tablet-android-alt\": 62460,\n  \"tablet-android\": 62459,\n  \"tablet-button\": 61706,\n  \"tablet-rugged\": 62607,\n  \"tablet-screen-button\": 62458,\n  \"tablet-screen\": 62460,\n  \"tablet\": 62459,\n  \"tablets\": 62608,\n  \"tachograph-digital\": 62822,\n  \"tachometer-alt-average\": 63012,\n  \"tachometer-alt-fast\": 63013,\n  \"tachometer-alt-fastest\": 63014,\n  \"tachometer-alt-slow\": 63015,\n  \"tachometer-alt-slowest\": 63016,\n  \"tachometer-alt\": 63013,\n  \"tachometer-average\": 63017,\n  \"tachometer-fast\": 63018,\n  \"tachometer-fastest\": 63019,\n  \"tachometer-slow\": 63020,\n  \"tachometer-slowest\": 63021,\n  \"tachometer\": 63018,\n  \"taco\": 63526,\n  \"tag\": 61483,\n  \"tags\": 61484,\n  \"tally-1\": 58004,\n  \"tally-2\": 58005,\n  \"tally-3\": 58006,\n  \"tally-4\": 58007,\n  \"tally-5\": 63132,\n  \"tally\": 63132,\n  \"tamale\": 58449,\n  \"tanakh\": 63527,\n  \"tank-recovery\": 59429,\n  \"tank-water\": 58450,\n  \"tape\": 62683,\n  \"tarp-droplet\": 58748,\n  \"tarp\": 58747,\n  \"tasks-alt\": 63528,\n  \"tasks\": 61614,\n  \"taurus\": 59471,\n  \"taxi-bus\": 58008,\n  \"taxi\": 61882,\n  \"teddy-bear\": 58319,\n  \"teeth-open\": 63023,\n  \"teeth\": 63022,\n  \"telescope\": 57406,\n  \"teletype-answer\": 58041,\n  \"teletype\": 61924,\n  \"television\": 62060,\n  \"temperature-0\": 62155,\n  \"temperature-1\": 62154,\n  \"temperature-2\": 62153,\n  \"temperature-3\": 62152,\n  \"temperature-4\": 62151,\n  \"temperature-arrow-down\": 57407,\n  \"temperature-arrow-up\": 57408,\n  \"temperature-down\": 57407,\n  \"temperature-empty\": 62155,\n  \"temperature-frigid\": 63336,\n  \"temperature-full\": 62151,\n  \"temperature-half\": 62153,\n  \"temperature-high\": 63337,\n  \"temperature-hot\": 63338,\n  \"temperature-list\": 58009,\n  \"temperature-low\": 63339,\n  \"temperature-quarter\": 62154,\n  \"temperature-slash\": 59339,\n  \"temperature-snow\": 63336,\n  \"temperature-sun\": 63338,\n  \"temperature-three-quarters\": 62152,\n  \"temperature-up\": 57408,\n  \"tenge-sign\": 63447,\n  \"tenge\": 63447,\n  \"tennis-ball\": 62558,\n  \"tent-arrow-down-to-line\": 58750,\n  \"tent-arrow-left-right\": 58751,\n  \"tent-arrow-turn-left\": 58752,\n  \"tent-arrows-down\": 58753,\n  \"tent-circus\": 59085,\n  \"tent-double-peak\": 58919,\n  \"tent\": 58749,\n  \"tents\": 58754,\n  \"terminal\": 61728,\n  \"text-height\": 61492,\n  \"text-size\": 63636,\n  \"text-slash\": 63613,\n  \"text-width\": 61493,\n  \"text\": 63635,\n  \"th-large\": 61449,\n  \"th-list\": 61451,\n  \"th\": 61450,\n  \"theater-masks\": 63024,\n  \"thermometer-0\": 62155,\n  \"thermometer-1\": 62154,\n  \"thermometer-2\": 62153,\n  \"thermometer-3\": 62152,\n  \"thermometer-4\": 62151,\n  \"thermometer-empty\": 62155,\n  \"thermometer-full\": 62151,\n  \"thermometer-half\": 62153,\n  \"thermometer-quarter\": 62154,\n  \"thermometer-three-quarters\": 62152,\n  \"thermometer\": 62609,\n  \"theta\": 63134,\n  \"thought-bubble\": 58158,\n  \"thumb-tack-slash\": 59023,\n  \"thumb-tack\": 61581,\n  \"thumbs-down\": 61797,\n  \"thumbs-up\": 61796,\n  \"thumbtack-angle-slash\": 59218,\n  \"thumbtack-angle\": 59217,\n  \"thumbtack-slash\": 59023,\n  \"thumbtack\": 61581,\n  \"thunderstorm-moon\": 63341,\n  \"thunderstorm-sun\": 63342,\n  \"thunderstorm\": 63340,\n  \"tick\": 58159,\n  \"ticket-airline\": 58010,\n  \"ticket-alt\": 62463,\n  \"ticket-perforated-plane\": 58010,\n  \"ticket-perforated\": 58942,\n  \"ticket-plane\": 58010,\n  \"ticket-simple\": 62463,\n  \"ticket\": 61765,\n  \"tickets-airline\": 58011,\n  \"tickets-perforated-plane\": 58011,\n  \"tickets-perforated\": 58943,\n  \"tickets-plane\": 58011,\n  \"tickets-simple\": 58969,\n  \"tickets\": 58968,\n  \"tilde\": 126,\n  \"timeline-arrow\": 58013,\n  \"timeline\": 58012,\n  \"timer\": 58014,\n  \"times-circle\": 61527,\n  \"times-hexagon\": 62190,\n  \"times-octagon\": 62192,\n  \"times-rectangle\": 62480,\n  \"times-square\": 62163,\n  \"times-to-slot\": 63345,\n  \"times\": 61453,\n  \"tint-slash\": 62919,\n  \"tint\": 61507,\n  \"tire-flat\": 63026,\n  \"tire-pressure-warning\": 63027,\n  \"tire-rugged\": 63028,\n  \"tire\": 63025,\n  \"tired\": 62920,\n  \"toggle-large-off\": 58800,\n  \"toggle-large-on\": 58801,\n  \"toggle-off\": 61956,\n  \"toggle-on\": 61957,\n  \"toilet-paper-alt\": 63262,\n  \"toilet-paper-blank-under\": 58016,\n  \"toilet-paper-blank\": 63262,\n  \"toilet-paper-check\": 58802,\n  \"toilet-paper-reverse-alt\": 58016,\n  \"toilet-paper-reverse-slash\": 58017,\n  \"toilet-paper-reverse\": 58016,\n  \"toilet-paper-slash\": 57458,\n  \"toilet-paper-under-slash\": 58017,\n  \"toilet-paper-under\": 58016,\n  \"toilet-paper-xmark\": 58803,\n  \"toilet-paper\": 63262,\n  \"toilet-portable\": 58755,\n  \"toilet\": 63448,\n  \"toilets-portable\": 58756,\n  \"tomato\": 58160,\n  \"tombstone-alt\": 63265,\n  \"tombstone-blank\": 63265,\n  \"tombstone\": 63264,\n  \"toolbox\": 62802,\n  \"tools\": 63449,\n  \"tooth\": 62921,\n  \"toothbrush\": 63029,\n  \"torah\": 63136,\n  \"torii-gate\": 63137,\n  \"tornado\": 63343,\n  \"tower-broadcast\": 62745,\n  \"tower-cell\": 58757,\n  \"tower-control\": 58018,\n  \"tower-observation\": 58758,\n  \"tower-receive\": 59555,\n  \"tractor\": 63266,\n  \"trademark\": 62044,\n  \"traffic-cone\": 63030,\n  \"traffic-light-go\": 63032,\n  \"traffic-light-slow\": 63033,\n  \"traffic-light-stop\": 63034,\n  \"traffic-light\": 63031,\n  \"trailer\": 57409,\n  \"train-stop\": 59423,\n  \"train-subway-tunnel\": 58019,\n  \"train-subway\": 62009,\n  \"train-track\": 58451,\n  \"train-tram\": 58804,\n  \"train-tunnel\": 58452,\n  \"train\": 62008,\n  \"tram\": 63450,\n  \"transducer\": 59430,\n  \"transformer-bolt\": 58020,\n  \"transgender-alt\": 61989,\n  \"transgender\": 61989,\n  \"transmission\": 59394,\n  \"transporter-1\": 57411,\n  \"transporter-2\": 57412,\n  \"transporter-3\": 57413,\n  \"transporter-4\": 58021,\n  \"transporter-5\": 58022,\n  \"transporter-6\": 58023,\n  \"transporter-7\": 58024,\n  \"transporter-empty\": 57414,\n  \"transporter\": 57410,\n  \"trash-alt-slash\": 58029,\n  \"trash-alt\": 62189,\n  \"trash-arrow-turn-left\": 63637,\n  \"trash-arrow-up\": 63529,\n  \"trash-can-arrow-turn-left\": 63638,\n  \"trash-can-arrow-up\": 63530,\n  \"trash-can-check\": 58025,\n  \"trash-can-clock\": 58026,\n  \"trash-can-list\": 58027,\n  \"trash-can-plus\": 58028,\n  \"trash-can-slash\": 58029,\n  \"trash-can-undo\": 63638,\n  \"trash-can-xmark\": 58030,\n  \"trash-can\": 62189,\n  \"trash-check\": 58031,\n  \"trash-circle\": 57638,\n  \"trash-clock\": 58032,\n  \"trash-list\": 58033,\n  \"trash-plus\": 58034,\n  \"trash-restore-alt\": 63530,\n  \"trash-restore\": 63529,\n  \"trash-slash\": 58035,\n  \"trash-undo-alt\": 63638,\n  \"trash-undo\": 63637,\n  \"trash-xmark\": 58036,\n  \"trash\": 61944,\n  \"treasure-chest\": 63267,\n  \"tree-alt\": 62464,\n  \"tree-christmas\": 63451,\n  \"tree-city\": 58759,\n  \"tree-deciduous\": 62464,\n  \"tree-decorated\": 63452,\n  \"tree-large\": 63453,\n  \"tree-palm\": 63531,\n  \"tree\": 61883,\n  \"trees\": 63268,\n  \"trian-balbot\": 58460,\n  \"triangle-circle-square\": 63007,\n  \"triangle-exclamation\": 61553,\n  \"triangle-instrument\": 63714,\n  \"triangle-music\": 63714,\n  \"triangle-person-digging\": 63581,\n  \"triangle\": 62188,\n  \"tricycle-adult\": 58820,\n  \"tricycle\": 58819,\n  \"trillium\": 58760,\n  \"triple-chevrons-down\": 59383,\n  \"triple-chevrons-left\": 59384,\n  \"triple-chevrons-right\": 59385,\n  \"triple-chevrons-up\": 59386,\n  \"trombone\": 59266,\n  \"trophy-alt\": 62187,\n  \"trophy-star\": 62187,\n  \"trophy\": 61585,\n  \"trowel-bricks\": 58762,\n  \"trowel\": 58761,\n  \"truck-arrow-right\": 58763,\n  \"truck-bolt\": 58320,\n  \"truck-clock\": 62604,\n  \"truck-container-empty\": 58037,\n  \"truck-container\": 62684,\n  \"truck-couch\": 62685,\n  \"truck-droplet\": 58764,\n  \"truck-fast\": 62603,\n  \"truck-field-un\": 58766,\n  \"truck-field\": 58765,\n  \"truck-fire\": 58970,\n  \"truck-flatbed\": 58038,\n  \"truck-front\": 58039,\n  \"truck-ladder\": 58967,\n  \"truck-loading\": 62686,\n  \"truck-medical\": 61689,\n  \"truck-monster\": 63035,\n  \"truck-moving\": 62687,\n  \"truck-pickup\": 63036,\n  \"truck-plane\": 58767,\n  \"truck-plow\": 63454,\n  \"truck-ramp-box\": 62686,\n  \"truck-ramp-couch\": 62685,\n  \"truck-ramp\": 62688,\n  \"truck-suv\": 59334,\n  \"truck-tow\": 58040,\n  \"truck-utensils\": 58920,\n  \"truck\": 61649,\n  \"trumpet\": 63715,\n  \"try\": 58043,\n  \"tshirt\": 62803,\n  \"tty-answer\": 58041,\n  \"tty\": 61924,\n  \"tugrik-sign\": 58042,\n  \"turkey\": 63269,\n  \"turkish-lira-sign\": 58043,\n  \"turkish-lira\": 58043,\n  \"turn-down-left\": 58161,\n  \"turn-down-right\": 58453,\n  \"turn-down\": 62398,\n  \"turn-left-down\": 58935,\n  \"turn-left-up\": 58936,\n  \"turn-left\": 58934,\n  \"turn-right\": 58937,\n  \"turn-up\": 62399,\n  \"turntable\": 63716,\n  \"turtle\": 63270,\n  \"tv-alt\": 62060,\n  \"tv-music\": 63718,\n  \"tv-retro\": 62465,\n  \"tv\": 62060,\n  \"typewriter\": 63719,\n  \"u-turn-down-left\": 59375,\n  \"u-turn-down-right\": 59376,\n  \"u-turn-left-down\": 59377,\n  \"u-turn-left-up\": 59378,\n  \"u-turn-right-down\": 59379,\n  \"u-turn-right-up\": 59380,\n  \"u-turn-up-left\": 59381,\n  \"u-turn-up-right\": 59382,\n  \"u-turn\": 59377,\n  \"u\": 85,\n  \"ufo-beam\": 57416,\n  \"ufo\": 57415,\n  \"umbrella-alt\": 58044,\n  \"umbrella-beach\": 62922,\n  \"umbrella-simple\": 58044,\n  \"umbrella\": 61673,\n  \"underline\": 61645,\n  \"undo-alt\": 62186,\n  \"undo\": 61666,\n  \"unicorn\": 63271,\n  \"unicycle\": 59335,\n  \"uniform-martial-arts\": 58321,\n  \"union\": 63138,\n  \"universal-access\": 62106,\n  \"university\": 61852,\n  \"unlink\": 61735,\n  \"unlock-alt\": 61758,\n  \"unlock-keyhole\": 61758,\n  \"unlock\": 61596,\n  \"unsorted\": 61660,\n  \"up-down-left-right\": 61618,\n  \"up-down\": 62264,\n  \"up-from-bracket\": 58768,\n  \"up-from-dotted-line\": 58454,\n  \"up-from-line\": 62278,\n  \"up-left\": 58045,\n  \"up-long-to-line\": 59078,\n  \"up-long\": 62220,\n  \"up-right-and-down-left-from-center\": 62500,\n  \"up-right-from-square\": 62301,\n  \"up-right\": 58046,\n  \"up-to-bracket\": 58990,\n  \"up-to-dotted-line\": 58455,\n  \"up-to-line\": 62285,\n  \"up\": 62295,\n  \"upload\": 61587,\n  \"usb-drive\": 63721,\n  \"usd-circle\": 62184,\n  \"usd-square\": 62185,\n  \"usd\": 36,\n  \"user-alien\": 57418,\n  \"user-alt-slash\": 62726,\n  \"user-alt\": 61447,\n  \"user-astronaut\": 62715,\n  \"user-beard-bolt\": 59017,\n  \"user-beard\": 59304,\n  \"user-bounty-hunter\": 58047,\n  \"user-chart\": 63139,\n  \"user-check\": 62716,\n  \"user-chef-hair-long\": 59305,\n  \"user-chef\": 58322,\n  \"user-circle-minus\": 59306,\n  \"user-circle-plus\": 59307,\n  \"user-circle\": 62141,\n  \"user-clock\": 62717,\n  \"user-cog\": 62718,\n  \"user-construction\": 63532,\n  \"user-cowboy\": 63722,\n  \"user-crown\": 63140,\n  \"user-dashed\": 59308,\n  \"user-doctor-hair-long\": 58457,\n  \"user-doctor-hair-mullet\": 59309,\n  \"user-doctor-hair\": 58456,\n  \"user-doctor-message\": 63534,\n  \"user-doctor\": 61680,\n  \"user-edit\": 62719,\n  \"user-friends\": 62720,\n  \"user-gear\": 62718,\n  \"user-graduate\": 62721,\n  \"user-group-crown\": 63141,\n  \"user-group-simple\": 58883,\n  \"user-group\": 62720,\n  \"user-hair-buns\": 58323,\n  \"user-hair-long\": 58459,\n  \"user-hair-mullet\": 58460,\n  \"user-hair\": 58458,\n  \"user-hard-hat\": 63532,\n  \"user-hat-tie-magnifying-glass\": 59311,\n  \"user-hat-tie\": 59310,\n  \"user-headset\": 63533,\n  \"user-helmet-safety\": 63532,\n  \"user-hoodie\": 59018,\n  \"user-injured\": 63272,\n  \"user-key\": 59312,\n  \"user-large-slash\": 62726,\n  \"user-large\": 61447,\n  \"user-lock\": 62722,\n  \"user-magnifying-glass\": 58821,\n  \"user-md-chat\": 63534,\n  \"user-md\": 61680,\n  \"user-message\": 59313,\n  \"user-microphone\": 59314,\n  \"user-minus\": 62723,\n  \"user-music\": 63723,\n  \"user-ninja\": 62724,\n  \"user-nurse-hair-long\": 58462,\n  \"user-nurse-hair\": 58461,\n  \"user-nurse\": 63535,\n  \"user-pen\": 62719,\n  \"user-pilot-hair-long\": 59315,\n  \"user-pilot-tie-hair-long\": 59316,\n  \"user-pilot-tie\": 58049,\n  \"user-pilot\": 58048,\n  \"user-plus\": 62004,\n  \"user-police-hair-long\": 59317,\n  \"user-police-tie-hair-long\": 59318,\n  \"user-police-tie\": 58164,\n  \"user-police\": 58163,\n  \"user-question\": 59319,\n  \"user-robot-xmarks\": 58535,\n  \"user-robot\": 57419,\n  \"user-secret\": 61979,\n  \"user-shakespeare\": 58050,\n  \"user-shield\": 62725,\n  \"user-sith\": 59320,\n  \"user-slash\": 62726,\n  \"user-tag\": 62727,\n  \"user-tie-hair-long\": 58464,\n  \"user-tie-hair-mullet\": 59321,\n  \"user-tie-hair\": 58463,\n  \"user-tie\": 62728,\n  \"user-times\": 62005,\n  \"user-unlock\": 57432,\n  \"user-viewfinder\": 59253,\n  \"user-visor\": 57420,\n  \"user-vneck-hair-long\": 58467,\n  \"user-vneck-hair-mullet\": 59322,\n  \"user-vneck-hair\": 58466,\n  \"user-vneck\": 58465,\n  \"user-xmark\": 62005,\n  \"user\": 61447,\n  \"users-between-lines\": 58769,\n  \"users-class\": 63037,\n  \"users-cog\": 62729,\n  \"users-crown\": 63141,\n  \"users-gear\": 62729,\n  \"users-line\": 58770,\n  \"users-medical\": 63536,\n  \"users-rays\": 58771,\n  \"users-rectangle\": 58772,\n  \"users-slash\": 57459,\n  \"users-viewfinder\": 58773,\n  \"users\": 61632,\n  \"utensil-fork\": 62179,\n  \"utensil-knife\": 62180,\n  \"utensil-spoon\": 62181,\n  \"utensils-alt\": 62182,\n  \"utensils-slash\": 58468,\n  \"utensils\": 62183,\n  \"utility-can\": 59549,\n  \"utility-pole-double\": 58052,\n  \"utility-pole\": 58051,\n  \"v\": 86,\n  \"vacuum-robot\": 57422,\n  \"vacuum\": 57421,\n  \"value-absolute\": 63142,\n  \"van-shuttle\": 62902,\n  \"van\": 59336,\n  \"vault\": 58053,\n  \"vcard\": 62139,\n  \"vector-circle\": 62957,\n  \"vector-polygon\": 62958,\n  \"vector-square\": 62959,\n  \"vent-damper\": 58469,\n  \"venus-double\": 61990,\n  \"venus-mars\": 61992,\n  \"venus\": 61985,\n  \"vest-patches\": 57478,\n  \"vest\": 57477,\n  \"vhs\": 63724,\n  \"vial-circle-check\": 58774,\n  \"vial-vertical\": 59234,\n  \"vial-virus\": 58775,\n  \"vial\": 62610,\n  \"vials\": 62611,\n  \"video-arrow-down-left\": 58056,\n  \"video-arrow-up-right\": 58057,\n  \"video-camera\": 61501,\n  \"video-circle\": 57643,\n  \"video-down-to-line\": 59254,\n  \"video-handheld\": 63656,\n  \"video-plus\": 62689,\n  \"video-question\": 59255,\n  \"video-slash\": 62690,\n  \"video\": 61501,\n  \"vihara\": 63143,\n  \"violin\": 63725,\n  \"virgo\": 59472,\n  \"virus-covid-slash\": 58537,\n  \"virus-covid\": 58536,\n  \"virus-slash\": 57461,\n  \"virus\": 57460,\n  \"viruses\": 57462,\n  \"voicemail\": 63639,\n  \"volcano\": 63344,\n  \"volleyball-ball\": 62559,\n  \"volleyball\": 62559,\n  \"volume-control-phone\": 62112,\n  \"volume-down\": 61479,\n  \"volume-high\": 61480,\n  \"volume-low\": 61479,\n  \"volume-medium\": 63144,\n  \"volume-mute\": 63145,\n  \"volume-off\": 61478,\n  \"volume-slash\": 62178,\n  \"volume-times\": 63145,\n  \"volume-up\": 61480,\n  \"volume-xmark\": 63145,\n  \"volume\": 63144,\n  \"vote-nay\": 63345,\n  \"vote-yea\": 63346,\n  \"vr-cardboard\": 63273,\n  \"w\": 87,\n  \"waffle\": 58470,\n  \"wagon-covered\": 63726,\n  \"walker\": 63537,\n  \"walkie-talkie\": 63727,\n  \"walking\": 62804,\n  \"wall-brick\": 58331,\n  \"wallet\": 62805,\n  \"wand-magic-sparkles\": 58058,\n  \"wand-magic\": 61648,\n  \"wand-sparkles\": 63275,\n  \"wand\": 63274,\n  \"wardrobe\": 59521,\n  \"warehouse-alt\": 62613,\n  \"warehouse-full\": 62613,\n  \"warehouse\": 62612,\n  \"warning\": 61553,\n  \"washer\": 63640,\n  \"washing-machine\": 63640,\n  \"watch-apple\": 58059,\n  \"watch-calculator\": 63728,\n  \"watch-fitness\": 63038,\n  \"watch-smart\": 58060,\n  \"watch\": 62177,\n  \"water-arrow-down\": 63348,\n  \"water-arrow-up\": 63349,\n  \"water-ladder\": 62917,\n  \"water-lower\": 63348,\n  \"water-rise\": 63349,\n  \"water-temp\": 59434,\n  \"water-temperature\": 59434,\n  \"water\": 63347,\n  \"watermelon-slice\": 58167,\n  \"wave-pulse\": 62968,\n  \"wave-sine\": 63641,\n  \"wave-square\": 63550,\n  \"wave-triangle\": 63642,\n  \"wave\": 58971,\n  \"waveform-circle\": 57645,\n  \"waveform-lines\": 63730,\n  \"waveform-path\": 63730,\n  \"waveform\": 63729,\n  \"waves-sine\": 58973,\n  \"web-awesome\": 59010,\n  \"webcam-slash\": 63539,\n  \"webcam\": 63538,\n  \"webhook\": 58837,\n  \"weight-hanging\": 62925,\n  \"weight-scale\": 62614,\n  \"weight\": 62614,\n  \"whale\": 63276,\n  \"wheat-alt\": 58061,\n  \"wheat-awn-circle-exclamation\": 58776,\n  \"wheat-awn-slash\": 58168,\n  \"wheat-awn\": 58061,\n  \"wheat-slash\": 58169,\n  \"wheat\": 63277,\n  \"wheelchair-alt\": 58062,\n  \"wheelchair-move\": 58062,\n  \"wheelchair\": 61843,\n  \"whiskey-glass-ice\": 63393,\n  \"whiskey-glass\": 63392,\n  \"whistle\": 62560,\n  \"wifi-1\": 63146,\n  \"wifi-2\": 63147,\n  \"wifi-3\": 61931,\n  \"wifi-exclamation\": 58063,\n  \"wifi-fair\": 63147,\n  \"wifi-slash\": 63148,\n  \"wifi-strong\": 61931,\n  \"wifi-weak\": 63146,\n  \"wifi\": 61931,\n  \"wind-circle-exclamation\": 63350,\n  \"wind-turbine\": 63643,\n  \"wind-warning\": 63350,\n  \"wind\": 63278,\n  \"window-alt\": 62479,\n  \"window-close\": 62480,\n  \"window-flip\": 62479,\n  \"window-frame-open\": 57424,\n  \"window-frame\": 57423,\n  \"window-maximize\": 62160,\n  \"window-minimize\": 62161,\n  \"window-restore\": 62162,\n  \"window\": 62478,\n  \"windsock\": 63351,\n  \"wine-bottle\": 63279,\n  \"wine-glass-alt\": 62926,\n  \"wine-glass-crack\": 62651,\n  \"wine-glass-empty\": 62926,\n  \"wine-glass\": 62691,\n  \"wireless\": 59359,\n  \"won-sign\": 61785,\n  \"won\": 61785,\n  \"worm\": 58777,\n  \"wreath-laurel\": 58834,\n  \"wreath\": 63458,\n  \"wrench-simple\": 58065,\n  \"wrench\": 61613,\n  \"x-ray\": 62615,\n  \"x\": 88,\n  \"xmark-circle\": 61527,\n  \"xmark-hexagon\": 62190,\n  \"xmark-large\": 58779,\n  \"xmark-octagon\": 62192,\n  \"xmark-square\": 62163,\n  \"xmark-to-slot\": 63345,\n  \"xmark\": 61453,\n  \"xmarks-lines\": 58778,\n  \"y\": 89,\n  \"yen-sign\": 61783,\n  \"yen\": 61783,\n  \"yin-yang\": 63149,\n  \"z\": 90,\n  \"zap\": 61671,\n  \"zzz\": 63616\n}"
  },
  {
    "path": "packages/fontawesome-pro-sharp-thin/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontawesome-pro-sharp-thin\",\n  \"version\": \"0.2.0\",\n  \"description\": \"Fontawesome Pro Sharp Thin font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"fontawesome-pro-sharp-thin\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/fontawesome-pro-sharp-thin\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-thin/react-native-vector-icons-fontawesome-pro-sharp-thin.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-fontawesome-pro-sharp-thin'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\n\n  s.script_phase = {\n    name: 'Copy Custom Fonts',\n    execution_position: :after_compile,\n    script: <<~SCRIPT\n      set -e\n\n      HEAD=\"(RNVI-fontawesome-pro-sharp-thin)\"\n\n      echo \"${HEAD} START_COPY_FONTS\"\n\n      echo \"${HEAD} PWD: $(pwd)\"\n\n      #\n      # Find the custom font Directory\n      #\n\n      # Assume the project root is always two directories above the POD_ROOT\n      echo \"${HEAD} PODS_ROOT: $PODS_ROOT\"\n\n      PROJECT_ROOT=\"${PODS_ROOT}/../..\"\n      echo \"${HEAD} PROJECT_ROOT: $PROJECT_ROOT\"\n\n      cd $PROJECT_ROOT\n      FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/\"//g')\n      if [ -z \"$FONTS_DIR\" ]; then\n        FONTS_DIR=\"rnvi-fonts\"\n      fi\n      echo \"${HEAD} FONTS_DIR: $FONTS_DIR\"\n\n      FONTS_DIR=\"${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-sharp-thin\"\n      if [ ! -d \"$FONTS_DIR\" ]; then\n        echo \"${HEAD} $FONTS_DIR not found\"\n        exit 0\n      fi\n\n      #\n      # Find the destination we copy to\n      #\n\n      echo \"${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR\"\n      XCODE_DIR=$(ls -d \"$PODS_CONFIGURATION_BUILD_DIR\"/*.app)\n      echo \"${HEAD} XCODE_DIR: $XCODE_DIR\"\n      if [ -z \"$XCODE_DIR\" ]; then\n        echo \"Could not find XCODE_DIR to copy fonts to\"\n        exit 1\n      fi\n\n      DEST_DIR=\"${XCODE_DIR}\"\n      mkdir -p \"$DEST_DIR\"\n\n      #\n      # Copy the fonts\n      #\n\n      echo \"${HEAD} Copying the following files to $DEST_DIR\"\n      ls \"$FONTS_DIR\" | sed \"s/^/${HEAD} /\"\n\n      rsync -avr --copy-links --no-relative $FONTS_DIR/ \"$DEST_DIR\"\n\n      echo \"${HEAD} END:RNVI_COPY_FONTS\"\n    SCRIPT\n  }\nend\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-thin/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProSharpThin icon set component.\n * Usage: <FontAwesomeProSharpThin name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProSharpThin.json';\n\nexport const FontAwesomeProSharpThin = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Sharp-Thin',\n  fontFileName: 'fa-sharp-thin-100.ttf',\n});\n\nexport type FontAwesomeProSharpThinIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProSharpThin;\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-thin/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProSharpThin icon set component.\n * Usage: <FontAwesomeProSharpThin name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProSharpThin.json';\n\nexport const FontAwesomeProSharpThin = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Sharp-Thin',\n  fontFileName: 'fa-sharp-thin-100.ttf',\n});\n\nexport type FontAwesomeProSharpThinIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProSharpThin;\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-thin/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-sharp-thin/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-solid/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontawesome-pro-solid\",\n    \"upstreamFont\": {\n      \"registry\": \"https://npm.fontawesome.com\",\n      \"packageName\": \"@fortawesome/fontawesome-pro\",\n      \"versionOnly\": true\n    },\n    \"copyCustomFonts\": true,\n    \"className\": \"FontAwesomeProSolid\",\n    \"postScriptName\": \"FontAwesome7Pro-Solid\",\n    \"fontFileName\": \"fa-solid-900\",\n    \"buildSteps\": {\n      \"preScript\": {\n        \"script\": \"../fontawesome-common/scripts/fetch-pro.sh 7\"\n      },\n      \"glyphmap\": {\n        \"location\": \"fa/pro/css/all.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fa-\"\n      },\n      \"postScript\": {\n        \"script\": \"../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProSolid.json fa/pro/svgs/solid\\nrm -rf fa\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"0.1.0\",\n        \"upstream\": \"7.1.0\"\n      },\n      {\n        \"rnvi\": \"0.1.1\",\n        \"upstream\": \"7.2.0\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-solid/CHANGELOG.md",
    "content": "## 0.2.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 0.1.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 0.1.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🩹 Fixes\n\n- upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 0.1.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 0.1.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontawesome-pro-solid/README.md",
    "content": "# React Native Vector Icons - Fontawesome Pro Solid\n\nFontawesome Pro Solid font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n> [!IMPORTANT]\n> This package does not include the fonts. You must provide them yourself.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/fontawesome-pro-solid\n```\n\n## Custom Fonts\n\nThis package requires you to provide the font files. Place your `.ttf` font\nfile in the following location:\n\n```\nrnvi-fonts/fontawesome-pro-solid/fa-solid-900.ttf\n```\n\nThe font will be automatically copied during the build process for both iOS and\nAndroid.\n\n## Usage\n\n```jsx\nimport { FontAwesomeProSolid } from '@react-native-vector-icons/fontawesome-pro-solid';\n\n// ...\n\n<FontAwesomeProSolid name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 0.1.0 | 7.1.0 |\n| &gt; 0.1.1 | 7.2.0 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/fontawesome-pro-solid/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.fontawesome_pro_solid\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFontAwesomeProSolid\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.fontawesome_pro_solid\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-fontawesome-pro-solid\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-solid/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-solid) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n\ntask copyExtraFonts(type: Copy) {\n  from \"${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-solid\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-solid/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-solid) Copying custom font: ${it.file}\" }\n}\n\npreBuild.dependsOn(copyExtraFonts)\n"
  },
  {
    "path": "packages/fontawesome-pro-solid/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.fontawesome_pro_solid\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-solid/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-solid/android/src/main/java/VectorIconsFontAwesomeProSolidPackage.kt",
    "content": "package com.reactnativevectoricons.fontawesome_pro_solid\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFontAwesomeProSolidPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-solid/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/fontawesome-pro-solid/glyphmaps/FontAwesomeProSolid.json",
    "content": "{\n  \"0\": 48,\n  \"1\": 49,\n  \"2\": 50,\n  \"3\": 51,\n  \"4\": 52,\n  \"5\": 53,\n  \"6\": 54,\n  \"7\": 55,\n  \"8\": 56,\n  \"9\": 57,\n  \"100\": 58396,\n  \"00\": 58471,\n  \"360-degrees\": 58076,\n  \"a\": 65,\n  \"abacus\": 63040,\n  \"accent-grave\": 96,\n  \"acorn\": 63150,\n  \"ad\": 63041,\n  \"add\": 43,\n  \"address-book\": 62137,\n  \"address-card\": 62139,\n  \"adjust\": 61506,\n  \"aeropress\": 59435,\n  \"air-conditioner\": 63732,\n  \"air-freshener\": 62928,\n  \"airplay-audio\": 59259,\n  \"airplay\": 57481,\n  \"alarm-clock\": 62286,\n  \"alarm-exclamation\": 63555,\n  \"alarm-minus\": 59395,\n  \"alarm-plus\": 63556,\n  \"alarm-snooze\": 63557,\n  \"album-circle-plus\": 58508,\n  \"album-circle-user\": 58509,\n  \"album-collection-circle-plus\": 58510,\n  \"album-collection-circle-user\": 58511,\n  \"album-collection\": 63648,\n  \"album\": 63647,\n  \"alicorn\": 63152,\n  \"alien-8bit\": 63734,\n  \"alien-monster\": 63734,\n  \"alien\": 63733,\n  \"align-center\": 61495,\n  \"align-justify\": 61497,\n  \"align-left\": 61494,\n  \"align-right\": 61496,\n  \"align-slash\": 63558,\n  \"allergies\": 62561,\n  \"almost-equal-to\": 59416,\n  \"alt\": 57482,\n  \"ambulance\": 61689,\n  \"american-sign-language-interpreting\": 62115,\n  \"amp-guitar\": 63649,\n  \"ampersand\": 38,\n  \"analytics\": 63043,\n  \"anchor-circle-check\": 58538,\n  \"anchor-circle-exclamation\": 58539,\n  \"anchor-circle-xmark\": 58540,\n  \"anchor-lock\": 58541,\n  \"anchor\": 61757,\n  \"angel\": 63353,\n  \"angle-90\": 57485,\n  \"angle-double-down\": 61699,\n  \"angle-double-left\": 61696,\n  \"angle-double-right\": 61697,\n  \"angle-double-up\": 61698,\n  \"angle-down\": 61703,\n  \"angle-left\": 61700,\n  \"angle-right\": 61701,\n  \"angle-up\": 61702,\n  \"angle\": 57484,\n  \"angles-down\": 61699,\n  \"angles-left\": 61696,\n  \"angles-right\": 61697,\n  \"angles-up-down\": 58893,\n  \"angles-up\": 61698,\n  \"angry\": 62806,\n  \"ankh\": 63044,\n  \"ant\": 59008,\n  \"apartment\": 58472,\n  \"aperture\": 58079,\n  \"apostrophe\": 39,\n  \"apple-alt\": 62929,\n  \"apple-core\": 57487,\n  \"apple-crate\": 63153,\n  \"apple-whole\": 62929,\n  \"aquarius\": 59461,\n  \"archive\": 61831,\n  \"archway\": 62807,\n  \"area-chart\": 61950,\n  \"aries\": 59462,\n  \"arrow-alt-circle-down\": 62296,\n  \"arrow-alt-circle-left\": 62297,\n  \"arrow-alt-circle-right\": 62298,\n  \"arrow-alt-circle-up\": 62299,\n  \"arrow-alt-down\": 62292,\n  \"arrow-alt-from-bottom\": 62278,\n  \"arrow-alt-from-left\": 62279,\n  \"arrow-alt-from-right\": 62280,\n  \"arrow-alt-from-top\": 62281,\n  \"arrow-alt-left\": 62293,\n  \"arrow-alt-right\": 62294,\n  \"arrow-alt-square-down\": 62288,\n  \"arrow-alt-square-left\": 62289,\n  \"arrow-alt-square-right\": 62290,\n  \"arrow-alt-square-up\": 62291,\n  \"arrow-alt-to-bottom\": 62282,\n  \"arrow-alt-to-left\": 62283,\n  \"arrow-alt-to-right\": 62284,\n  \"arrow-alt-to-top\": 62285,\n  \"arrow-alt-up\": 62295,\n  \"arrow-archery\": 59449,\n  \"arrow-circle-down\": 61611,\n  \"arrow-circle-left\": 61608,\n  \"arrow-circle-right\": 61609,\n  \"arrow-circle-up\": 61610,\n  \"arrow-down-1-9\": 61794,\n  \"arrow-down-9-1\": 63622,\n  \"arrow-down-a-z\": 61789,\n  \"arrow-down-arrow-up\": 63619,\n  \"arrow-down-big-small\": 63628,\n  \"arrow-down-from-arc\": 58900,\n  \"arrow-down-from-bracket\": 58983,\n  \"arrow-down-from-dotted-line\": 57488,\n  \"arrow-down-from-line\": 62277,\n  \"arrow-down-left-and-arrow-up-right-to-center\": 57490,\n  \"arrow-down-left\": 57489,\n  \"arrow-down-long-to-line\": 59063,\n  \"arrow-down-long\": 61813,\n  \"arrow-down-right\": 57491,\n  \"arrow-down-short-wide\": 63620,\n  \"arrow-down-small-big\": 63629,\n  \"arrow-down-square-triangle\": 63625,\n  \"arrow-down-to-arc\": 58542,\n  \"arrow-down-to-bracket\": 57492,\n  \"arrow-down-to-dotted-line\": 57493,\n  \"arrow-down-to-line\": 62269,\n  \"arrow-down-to-square\": 57494,\n  \"arrow-down-triangle-square\": 63624,\n  \"arrow-down-up-across-line\": 58543,\n  \"arrow-down-up-lock\": 58544,\n  \"arrow-down-wide-short\": 61792,\n  \"arrow-down-z-a\": 63617,\n  \"arrow-down\": 61539,\n  \"arrow-from-bottom\": 62274,\n  \"arrow-from-left\": 62275,\n  \"arrow-from-right\": 62276,\n  \"arrow-from-top\": 62277,\n  \"arrow-left-arrow-right\": 59064,\n  \"arrow-left-from-arc\": 58901,\n  \"arrow-left-from-bracket\": 58984,\n  \"arrow-left-from-dotted-line\": 59065,\n  \"arrow-left-from-line\": 62276,\n  \"arrow-left-long-to-line\": 58324,\n  \"arrow-left-long\": 61815,\n  \"arrow-left-rotate\": 61666,\n  \"arrow-left-to-arc\": 58902,\n  \"arrow-left-to-bracket\": 58985,\n  \"arrow-left-to-dotted-line\": 59066,\n  \"arrow-left-to-line\": 62270,\n  \"arrow-left\": 61536,\n  \"arrow-pointer\": 62021,\n  \"arrow-progress\": 58847,\n  \"arrow-right-arrow-left\": 61676,\n  \"arrow-right-from-arc\": 58545,\n  \"arrow-right-from-bracket\": 61579,\n  \"arrow-right-from-dotted-line\": 59067,\n  \"arrow-right-from-file\": 62830,\n  \"arrow-right-from-line\": 62275,\n  \"arrow-right-long-to-line\": 58325,\n  \"arrow-right-long\": 61816,\n  \"arrow-right-rotate\": 61470,\n  \"arrow-right-to-arc\": 58546,\n  \"arrow-right-to-bracket\": 61584,\n  \"arrow-right-to-city\": 58547,\n  \"arrow-right-to-dotted-line\": 59068,\n  \"arrow-right-to-file\": 62831,\n  \"arrow-right-to-line\": 62272,\n  \"arrow-right\": 61537,\n  \"arrow-rotate-back\": 61666,\n  \"arrow-rotate-backward\": 61666,\n  \"arrow-rotate-forward\": 61470,\n  \"arrow-rotate-left-10\": 59446,\n  \"arrow-rotate-left-15\": 59526,\n  \"arrow-rotate-left-30\": 59527,\n  \"arrow-rotate-left\": 61666,\n  \"arrow-rotate-right-10\": 59447,\n  \"arrow-rotate-right-15\": 59528,\n  \"arrow-rotate-right-30\": 59529,\n  \"arrow-rotate-right\": 61470,\n  \"arrow-square-down\": 62265,\n  \"arrow-square-left\": 62266,\n  \"arrow-square-right\": 62267,\n  \"arrow-square-up\": 62268,\n  \"arrow-to-bottom\": 62269,\n  \"arrow-to-left\": 62270,\n  \"arrow-to-right\": 62272,\n  \"arrow-to-top\": 62273,\n  \"arrow-trend-down\": 57495,\n  \"arrow-trend-up\": 57496,\n  \"arrow-turn-down-left\": 58081,\n  \"arrow-turn-down-right\": 58326,\n  \"arrow-turn-down\": 61769,\n  \"arrow-turn-left-down\": 58931,\n  \"arrow-turn-left-up\": 58932,\n  \"arrow-turn-left\": 58930,\n  \"arrow-turn-right\": 58933,\n  \"arrow-turn-up\": 61768,\n  \"arrow-u-turn-down-left\": 59367,\n  \"arrow-u-turn-down-right\": 59368,\n  \"arrow-u-turn-left-down\": 59369,\n  \"arrow-u-turn-left-up\": 59370,\n  \"arrow-u-turn-right-down\": 59371,\n  \"arrow-u-turn-right-up\": 59372,\n  \"arrow-u-turn-up-left\": 59373,\n  \"arrow-u-turn-up-right\": 59374,\n  \"arrow-up-1-9\": 61795,\n  \"arrow-up-9-1\": 63623,\n  \"arrow-up-a-z\": 61790,\n  \"arrow-up-arrow-down\": 57497,\n  \"arrow-up-big-small\": 63630,\n  \"arrow-up-from-arc\": 58548,\n  \"arrow-up-from-bracket\": 57498,\n  \"arrow-up-from-dotted-line\": 57499,\n  \"arrow-up-from-ground-water\": 58549,\n  \"arrow-up-from-line\": 62274,\n  \"arrow-up-from-square\": 57500,\n  \"arrow-up-from-water-pump\": 58550,\n  \"arrow-up-left-from-circle\": 57502,\n  \"arrow-up-left\": 57501,\n  \"arrow-up-long-to-line\": 59069,\n  \"arrow-up-long\": 61814,\n  \"arrow-up-right-and-arrow-down-left-from-center\": 57504,\n  \"arrow-up-right-dots\": 58551,\n  \"arrow-up-right-from-square\": 61582,\n  \"arrow-up-right\": 57503,\n  \"arrow-up-short-wide\": 63621,\n  \"arrow-up-small-big\": 63631,\n  \"arrow-up-square-triangle\": 63627,\n  \"arrow-up-to-arc\": 58903,\n  \"arrow-up-to-bracket\": 58986,\n  \"arrow-up-to-dotted-line\": 57505,\n  \"arrow-up-to-line\": 62273,\n  \"arrow-up-triangle-square\": 63626,\n  \"arrow-up-wide-short\": 61793,\n  \"arrow-up-z-a\": 63618,\n  \"arrow-up\": 61538,\n  \"arrows-alt-h\": 62263,\n  \"arrows-alt-v\": 62264,\n  \"arrows-alt\": 61618,\n  \"arrows-cross\": 57506,\n  \"arrows-down-to-line\": 58552,\n  \"arrows-down-to-people\": 58553,\n  \"arrows-from-dotted-line\": 57507,\n  \"arrows-from-line\": 57508,\n  \"arrows-h\": 61566,\n  \"arrows-left-right-to-line\": 58554,\n  \"arrows-left-right\": 61566,\n  \"arrows-maximize\": 62237,\n  \"arrows-minimize\": 57509,\n  \"arrows-repeat-1\": 62310,\n  \"arrows-repeat\": 62308,\n  \"arrows-retweet\": 62305,\n  \"arrows-rotate-reverse\": 58928,\n  \"arrows-rotate\": 61473,\n  \"arrows-spin\": 58555,\n  \"arrows-split-up-and-left\": 58556,\n  \"arrows-to-circle\": 58557,\n  \"arrows-to-dot\": 58558,\n  \"arrows-to-dotted-line\": 57510,\n  \"arrows-to-eye\": 58559,\n  \"arrows-to-line\": 57511,\n  \"arrows-turn-right\": 58560,\n  \"arrows-turn-to-dots\": 58561,\n  \"arrows-up-down-left-right\": 61511,\n  \"arrows-up-down\": 61565,\n  \"arrows-up-to-line\": 58562,\n  \"arrows-v\": 61565,\n  \"arrows\": 61511,\n  \"asl-interpreting\": 62115,\n  \"assistive-listening-systems\": 62114,\n  \"asterisk\": 42,\n  \"at\": 64,\n  \"atlas\": 62808,\n  \"atom-alt\": 62931,\n  \"atom-simple\": 62931,\n  \"atom\": 62930,\n  \"audio-description-slash\": 57512,\n  \"audio-description\": 62110,\n  \"austral-sign\": 57513,\n  \"australian-dollar-sign\": 59134,\n  \"automobile\": 61881,\n  \"avocado\": 57514,\n  \"award-simple\": 57515,\n  \"award\": 62809,\n  \"axe-battle\": 63155,\n  \"axe\": 63154,\n  \"b\": 66,\n  \"baby-carriage\": 63357,\n  \"baby\": 63356,\n  \"backpack\": 62932,\n  \"backspace\": 62810,\n  \"backward-fast\": 61513,\n  \"backward-step\": 61512,\n  \"backward\": 61514,\n  \"bacon\": 63461,\n  \"bacteria\": 57433,\n  \"bacterium\": 57434,\n  \"badge-check\": 62262,\n  \"badge-dollar\": 63045,\n  \"badge-percent\": 63046,\n  \"badge-sheriff\": 63650,\n  \"badge\": 62261,\n  \"badger-honey\": 63156,\n  \"badminton\": 58170,\n  \"bag-seedling\": 58866,\n  \"bag-shopping-minus\": 58960,\n  \"bag-shopping-plus\": 58961,\n  \"bag-shopping\": 62096,\n  \"bagel\": 58327,\n  \"bags-shopping\": 63559,\n  \"baguette\": 58328,\n  \"bahai\": 63078,\n  \"baht-sign\": 57516,\n  \"balance-scale-left\": 62741,\n  \"balance-scale-right\": 62742,\n  \"balance-scale\": 62030,\n  \"ball-pile\": 63358,\n  \"ball-yarn\": 59086,\n  \"balloon\": 58083,\n  \"balloons\": 58084,\n  \"ballot-check\": 63283,\n  \"ballot\": 63282,\n  \"ban-bug\": 63481,\n  \"ban-parking\": 62998,\n  \"ban-smoking\": 62797,\n  \"ban\": 61534,\n  \"banana\": 58085,\n  \"band-aid\": 62562,\n  \"bandage\": 62562,\n  \"bangladeshi-taka-sign\": 58086,\n  \"banjo\": 63651,\n  \"bank\": 61852,\n  \"bar-chart\": 61568,\n  \"bar-progress-empty\": 59045,\n  \"bar-progress-full\": 59046,\n  \"bar-progress-half\": 59047,\n  \"bar-progress-quarter\": 59048,\n  \"bar-progress-three-quarters\": 59049,\n  \"bar-progress\": 59044,\n  \"barcode-alt\": 62563,\n  \"barcode-read\": 62564,\n  \"barcode-scan\": 62565,\n  \"barcode\": 61482,\n  \"barn-silo\": 63588,\n  \"barn\": 59079,\n  \"bars-filter\": 57517,\n  \"bars-progress\": 63528,\n  \"bars-sort\": 57518,\n  \"bars-staggered\": 62800,\n  \"bars\": 61641,\n  \"baseball-ball\": 62515,\n  \"baseball-bat-ball\": 62514,\n  \"baseball-bat\": 59365,\n  \"baseball\": 62515,\n  \"basket-shopping-minus\": 58962,\n  \"basket-shopping-plus\": 58963,\n  \"basket-shopping-simple\": 57519,\n  \"basket-shopping\": 62097,\n  \"basketball-ball\": 62516,\n  \"basketball-hoop\": 62517,\n  \"basketball\": 62516,\n  \"bat\": 63157,\n  \"bath\": 62157,\n  \"bathtub\": 62157,\n  \"battery-0\": 62020,\n  \"battery-1\": 57521,\n  \"battery-2\": 62019,\n  \"battery-3\": 62018,\n  \"battery-4\": 62017,\n  \"battery-5\": 62016,\n  \"battery-bolt\": 62326,\n  \"battery-car\": 62943,\n  \"battery-empty\": 62020,\n  \"battery-exclamation\": 57520,\n  \"battery-full\": 62016,\n  \"battery-half\": 62018,\n  \"battery-low\": 57521,\n  \"battery-quarter\": 62019,\n  \"battery-slash\": 62327,\n  \"battery-three-quarters\": 62017,\n  \"battery\": 62016,\n  \"bed-alt\": 63735,\n  \"bed-bunk\": 63736,\n  \"bed-empty\": 63737,\n  \"bed-front\": 63735,\n  \"bed-pulse\": 62599,\n  \"bed\": 62006,\n  \"bee\": 57522,\n  \"beer-foam\": 57523,\n  \"beer-mug-empty\": 61692,\n  \"beer-mug\": 57523,\n  \"beer\": 61692,\n  \"bell-concierge\": 62818,\n  \"bell-exclamation\": 63560,\n  \"bell-on\": 63738,\n  \"bell-plus\": 63561,\n  \"bell-ring\": 58924,\n  \"bell-school-slash\": 62934,\n  \"bell-school\": 62933,\n  \"bell-slash\": 61942,\n  \"bell\": 61683,\n  \"bells\": 63359,\n  \"bench-tree\": 58087,\n  \"betamax\": 63652,\n  \"bezier-curve\": 62811,\n  \"bible\": 63047,\n  \"bicep\": 59490,\n  \"bicycle\": 61958,\n  \"biking-mountain\": 63563,\n  \"biking\": 63562,\n  \"billboard\": 58829,\n  \"bin-bottles-recycle\": 58870,\n  \"bin-bottles\": 58869,\n  \"bin-recycle\": 58871,\n  \"bin\": 59235,\n  \"binary-circle-check\": 58172,\n  \"binary-lock\": 58173,\n  \"binary-slash\": 58174,\n  \"binary\": 58171,\n  \"binoculars\": 61925,\n  \"biohazard\": 63360,\n  \"bird\": 58473,\n  \"birthday-cake\": 61949,\n  \"bitcoin-sign\": 57524,\n  \"blackboard\": 62747,\n  \"blanket-fire\": 58330,\n  \"blanket\": 62616,\n  \"blender-phone\": 63158,\n  \"blender\": 62743,\n  \"blind\": 62109,\n  \"blinds-open\": 63740,\n  \"blinds-raised\": 63741,\n  \"blinds\": 63739,\n  \"block-brick-fire\": 58332,\n  \"block-brick\": 58331,\n  \"block-question\": 58333,\n  \"block-quote\": 57525,\n  \"block\": 58474,\n  \"blog\": 63361,\n  \"blueberries\": 58088,\n  \"bluetooth\": 62099,\n  \"bold\": 61490,\n  \"bolt-auto\": 57526,\n  \"bolt-lightning\": 57527,\n  \"bolt-slash\": 57528,\n  \"bolt\": 61671,\n  \"bomb\": 61922,\n  \"bone-break\": 62936,\n  \"bone\": 62935,\n  \"bong\": 62812,\n  \"book-alt\": 62937,\n  \"book-arrow-right\": 57529,\n  \"book-arrow-up\": 57530,\n  \"book-atlas\": 62808,\n  \"book-bible\": 63047,\n  \"book-blank\": 62937,\n  \"book-bookmark\": 57531,\n  \"book-circle-arrow-right\": 57532,\n  \"book-circle-arrow-up\": 57533,\n  \"book-circle\": 57599,\n  \"book-copy\": 57534,\n  \"book-dead\": 63159,\n  \"book-font\": 57535,\n  \"book-heart\": 62617,\n  \"book-journal-whills\": 63082,\n  \"book-law\": 57537,\n  \"book-medical\": 63462,\n  \"book-open-alt\": 57536,\n  \"book-open-cover\": 57536,\n  \"book-open-lines\": 59219,\n  \"book-open-reader\": 62938,\n  \"book-open\": 62744,\n  \"book-quran\": 63111,\n  \"book-reader\": 62938,\n  \"book-section\": 57537,\n  \"book-skull\": 63159,\n  \"book-sparkles\": 63160,\n  \"book-spells\": 63160,\n  \"book-spine\": 59220,\n  \"book-tanakh\": 63527,\n  \"book-user\": 63463,\n  \"book\": 61485,\n  \"bookmark-circle\": 57600,\n  \"bookmark-plus\": 59221,\n  \"bookmark-slash\": 57538,\n  \"bookmark\": 61486,\n  \"books-medical\": 63464,\n  \"books\": 62939,\n  \"boombox\": 63653,\n  \"boot-heeled\": 58175,\n  \"boot\": 63362,\n  \"booth-curtain\": 63284,\n  \"border-all\": 63564,\n  \"border-bottom-right\": 63572,\n  \"border-bottom\": 63565,\n  \"border-center-h\": 63644,\n  \"border-center-v\": 63645,\n  \"border-inner\": 63566,\n  \"border-left\": 63567,\n  \"border-none\": 63568,\n  \"border-outer\": 63569,\n  \"border-right\": 63570,\n  \"border-style-alt\": 63572,\n  \"border-style\": 63571,\n  \"border-top-left\": 63571,\n  \"border-top\": 63573,\n  \"bore-hole\": 58563,\n  \"bottle-baby\": 58995,\n  \"bottle-droplet\": 58564,\n  \"bottle-water\": 58565,\n  \"bow-archery\": 59450,\n  \"bow-arrow\": 63161,\n  \"bowl-chopsticks-noodles\": 58090,\n  \"bowl-chopsticks\": 58089,\n  \"bowl-food\": 58566,\n  \"bowl-hot\": 63523,\n  \"bowl-rice\": 58091,\n  \"bowl-salad\": 63518,\n  \"bowl-scoop\": 58334,\n  \"bowl-scoops\": 58335,\n  \"bowl-shaved-ice\": 58334,\n  \"bowl-soft-serve\": 58475,\n  \"bowl-spoon\": 58336,\n  \"bowling-ball-pin\": 57539,\n  \"bowling-ball\": 62518,\n  \"bowling-pins\": 62519,\n  \"box-alt\": 62618,\n  \"box-archive\": 61831,\n  \"box-arrow-down-arrow-up\": 59285,\n  \"box-arrow-down-magnifying-glass\": 59286,\n  \"box-arrow-down\": 59284,\n  \"box-arrow-up\": 59431,\n  \"box-ballot\": 63285,\n  \"box-check\": 62567,\n  \"box-circle-check\": 57540,\n  \"box-dollar\": 62624,\n  \"box-fragile\": 62619,\n  \"box-full\": 62620,\n  \"box-heart\": 62621,\n  \"box-isometric-tape\": 59288,\n  \"box-isometric\": 59287,\n  \"box-magnifying-glass\": 59432,\n  \"box-open-full\": 62620,\n  \"box-open\": 62622,\n  \"box-taped\": 62618,\n  \"box-tissue\": 57435,\n  \"box-up\": 62623,\n  \"box-usd\": 62624,\n  \"box\": 62566,\n  \"boxes-alt\": 62568,\n  \"boxes-packing\": 58567,\n  \"boxes-stacked\": 62568,\n  \"boxes\": 62568,\n  \"boxing-glove\": 62520,\n  \"bra\": 59087,\n  \"bracket-curly-left\": 123,\n  \"bracket-curly-right\": 125,\n  \"bracket-curly\": 123,\n  \"bracket-left\": 91,\n  \"bracket-round-right\": 41,\n  \"bracket-round\": 40,\n  \"bracket-square-right\": 93,\n  \"bracket-square\": 91,\n  \"bracket\": 91,\n  \"brackets-curly\": 63466,\n  \"brackets-round\": 57541,\n  \"brackets-square\": 63465,\n  \"brackets\": 63465,\n  \"braille\": 62113,\n  \"brain-arrow-curved-right\": 63095,\n  \"brain-circuit\": 57542,\n  \"brain\": 62940,\n  \"brake-warning\": 57543,\n  \"brazilian-real-sign\": 58476,\n  \"bread-loaf\": 63467,\n  \"bread-slice-butter\": 58337,\n  \"bread-slice\": 63468,\n  \"bridge-circle-check\": 58569,\n  \"bridge-circle-exclamation\": 58570,\n  \"bridge-circle-xmark\": 58571,\n  \"bridge-lock\": 58572,\n  \"bridge-suspension\": 58573,\n  \"bridge-water\": 58574,\n  \"bridge\": 58568,\n  \"briefcase-arrow-right\": 58098,\n  \"briefcase-blank\": 57544,\n  \"briefcase-clock\": 63050,\n  \"briefcase-medical\": 62569,\n  \"briefcase\": 61617,\n  \"briefs\": 59088,\n  \"brightness-low\": 57546,\n  \"brightness\": 57545,\n  \"bring-forward\": 63574,\n  \"bring-front\": 63575,\n  \"broadcast-tower\": 62745,\n  \"broccoli\": 58338,\n  \"broom-ball\": 62552,\n  \"broom-wide\": 58833,\n  \"broom\": 62746,\n  \"browser\": 62334,\n  \"browsers\": 57547,\n  \"brush\": 62813,\n  \"bucket\": 58575,\n  \"bug-slash\": 58512,\n  \"bug\": 61832,\n  \"bugs\": 58576,\n  \"building-circle-arrow-right\": 58577,\n  \"building-circle-check\": 58578,\n  \"building-circle-exclamation\": 58579,\n  \"building-circle-xmark\": 58580,\n  \"building-columns\": 61852,\n  \"building-flag\": 58581,\n  \"building-lock\": 58582,\n  \"building-magnifying-glass\": 58908,\n  \"building-memo\": 58910,\n  \"building-ngo\": 58583,\n  \"building-shield\": 58584,\n  \"building-un\": 58585,\n  \"building-user\": 58586,\n  \"building-wheat\": 58587,\n  \"building\": 61869,\n  \"buildings\": 57548,\n  \"bulldozer\": 58965,\n  \"bullhorn\": 61601,\n  \"bullseye-arrow\": 63048,\n  \"bullseye-pointer\": 63049,\n  \"bullseye\": 61760,\n  \"buoy-mooring\": 58806,\n  \"buoy\": 58805,\n  \"burger-cheese\": 63473,\n  \"burger-fries\": 57549,\n  \"burger-glass\": 57550,\n  \"burger-lettuce\": 58339,\n  \"burger-soda\": 63576,\n  \"burger\": 63493,\n  \"burn\": 62570,\n  \"burrito\": 63469,\n  \"burst-new\": 59512,\n  \"burst\": 58588,\n  \"bus-alt\": 62814,\n  \"bus-school\": 62941,\n  \"bus-side\": 59421,\n  \"bus-simple\": 62814,\n  \"bus-stop\": 59422,\n  \"bus\": 61959,\n  \"business-front\": 58460,\n  \"business-time\": 63050,\n  \"butter\": 58340,\n  \"butterfly\": 59409,\n  \"c\": 67,\n  \"cab\": 61882,\n  \"cabin\": 58477,\n  \"cabinet-filing\": 63051,\n  \"cable-car\": 63450,\n  \"cactus\": 63655,\n  \"caduceus\": 59009,\n  \"cake-candles\": 61949,\n  \"cake-slice\": 58341,\n  \"cake\": 61949,\n  \"calculator-alt\": 63052,\n  \"calculator-simple\": 63052,\n  \"calculator\": 61932,\n  \"calendar-alt\": 61555,\n  \"calendar-arrow-down\": 57552,\n  \"calendar-arrow-up\": 57553,\n  \"calendar-check\": 62068,\n  \"calendar-circle-exclamation\": 58478,\n  \"calendar-circle-minus\": 58479,\n  \"calendar-circle-plus\": 58480,\n  \"calendar-circle-user\": 58481,\n  \"calendar-circle\": 57602,\n  \"calendar-clock\": 57554,\n  \"calendar-day\": 63363,\n  \"calendar-days\": 61555,\n  \"calendar-download\": 57552,\n  \"calendar-edit\": 62259,\n  \"calendar-exclamation\": 62260,\n  \"calendar-heart\": 57555,\n  \"calendar-image\": 57556,\n  \"calendar-lines-pen\": 58482,\n  \"calendar-lines\": 57557,\n  \"calendar-minus\": 62066,\n  \"calendar-note\": 57557,\n  \"calendar-pen\": 62259,\n  \"calendar-plus\": 62065,\n  \"calendar-range\": 57558,\n  \"calendar-star\": 63286,\n  \"calendar-time\": 57554,\n  \"calendar-times\": 62067,\n  \"calendar-upload\": 57553,\n  \"calendar-users\": 58850,\n  \"calendar-week\": 63364,\n  \"calendar-xmark\": 62067,\n  \"calendar\": 61747,\n  \"calendars\": 57559,\n  \"camcorder\": 63656,\n  \"camera-alt\": 61488,\n  \"camera-cctv\": 63660,\n  \"camera-circle-ellipsis\": 59238,\n  \"camera-circle\": 57603,\n  \"camera-clock\": 59239,\n  \"camera-home\": 63742,\n  \"camera-movie\": 63657,\n  \"camera-polaroid\": 63658,\n  \"camera-retro\": 61571,\n  \"camera-rotate\": 57560,\n  \"camera-security\": 63742,\n  \"camera-shutter\": 59240,\n  \"camera-slash\": 57561,\n  \"camera-viewfinder\": 57562,\n  \"camera-web-slash\": 63539,\n  \"camera-web\": 63538,\n  \"camera\": 61488,\n  \"campfire\": 63162,\n  \"campground\": 63163,\n  \"can-food\": 58342,\n  \"cancel\": 61534,\n  \"cancer\": 59463,\n  \"candle-holder\": 63164,\n  \"candy-bar\": 58344,\n  \"candy-cane\": 63366,\n  \"candy-corn\": 63165,\n  \"candy\": 58343,\n  \"cannabis\": 62815,\n  \"cannon\": 58946,\n  \"canoe-person\": 59548,\n  \"capricorn\": 59464,\n  \"capsule\": 59226,\n  \"capsules\": 62571,\n  \"car-alt\": 62942,\n  \"car-battery\": 62943,\n  \"car-bolt\": 58177,\n  \"car-building\": 63577,\n  \"car-bump\": 62944,\n  \"car-burst\": 62945,\n  \"car-bus\": 63578,\n  \"car-circle-bolt\": 58178,\n  \"car-crash\": 62945,\n  \"car-garage\": 62946,\n  \"car-key\": 59328,\n  \"car-mechanic\": 62947,\n  \"car-mirrors\": 58179,\n  \"car-on\": 58589,\n  \"car-people\": 59036,\n  \"car-rear\": 62942,\n  \"car-side-bolt\": 58180,\n  \"car-side\": 62948,\n  \"car-siren-on\": 59330,\n  \"car-siren\": 59329,\n  \"car-tilt\": 62949,\n  \"car-tunnel\": 58590,\n  \"car-wash\": 62950,\n  \"car-wrench\": 62947,\n  \"car\": 61881,\n  \"caravan-alt\": 57344,\n  \"caravan-simple\": 57344,\n  \"caravan\": 63743,\n  \"card-club\": 58345,\n  \"card-diamond\": 58346,\n  \"card-heart\": 58347,\n  \"card-spade\": 58348,\n  \"cards-blank\": 58591,\n  \"cards\": 58349,\n  \"caret-circle-down\": 62253,\n  \"caret-circle-left\": 62254,\n  \"caret-circle-right\": 62256,\n  \"caret-circle-up\": 62257,\n  \"caret-down\": 61655,\n  \"caret-large-down\": 59436,\n  \"caret-large-left\": 59437,\n  \"caret-large-right\": 59438,\n  \"caret-large-up\": 59439,\n  \"caret-left\": 61657,\n  \"caret-right\": 61658,\n  \"caret-square-down\": 61776,\n  \"caret-square-left\": 61841,\n  \"caret-square-right\": 61778,\n  \"caret-square-up\": 61777,\n  \"caret-up\": 61656,\n  \"carpool\": 59036,\n  \"carriage-baby\": 63357,\n  \"carrot\": 63367,\n  \"cars\": 63579,\n  \"cart-arrow-down\": 61976,\n  \"cart-arrow-up\": 58350,\n  \"cart-circle-arrow-down\": 58351,\n  \"cart-circle-arrow-up\": 58352,\n  \"cart-circle-check\": 58353,\n  \"cart-circle-exclamation\": 58354,\n  \"cart-circle-plus\": 58355,\n  \"cart-circle-xmark\": 58356,\n  \"cart-flatbed-boxes\": 62581,\n  \"cart-flatbed-empty\": 62582,\n  \"cart-flatbed-suitcase\": 62877,\n  \"cart-flatbed\": 62580,\n  \"cart-minus\": 57563,\n  \"cart-plus\": 61975,\n  \"cart-shopping-fast\": 57564,\n  \"cart-shopping\": 61562,\n  \"cart-xmark\": 57565,\n  \"cash-register\": 63368,\n  \"cassette-betamax\": 63652,\n  \"cassette-tape\": 63659,\n  \"cassette-vhs\": 63724,\n  \"castle\": 57566,\n  \"cat-space\": 57345,\n  \"cat\": 63166,\n  \"cauldron\": 63167,\n  \"cctv\": 63660,\n  \"cedi-sign\": 57567,\n  \"cent-sign\": 58357,\n  \"certificate\": 61603,\n  \"chain-broken\": 61735,\n  \"chain-horizontal-slash\": 57804,\n  \"chain-horizontal\": 57803,\n  \"chain-slash\": 61735,\n  \"chain\": 61633,\n  \"chair-office\": 63169,\n  \"chair\": 63168,\n  \"chalkboard-teacher\": 62748,\n  \"chalkboard-user\": 62748,\n  \"chalkboard\": 62747,\n  \"champagne-glass\": 63390,\n  \"champagne-glasses\": 63391,\n  \"charging-station\": 62951,\n  \"chart-area\": 61950,\n  \"chart-bar\": 61568,\n  \"chart-bullet\": 57569,\n  \"chart-candlestick\": 57570,\n  \"chart-column\": 57571,\n  \"chart-diagram\": 59029,\n  \"chart-fft\": 59038,\n  \"chart-gantt\": 57572,\n  \"chart-kanban\": 58959,\n  \"chart-line-down\": 63053,\n  \"chart-line-up-down\": 58839,\n  \"chart-line-up\": 57573,\n  \"chart-line\": 61953,\n  \"chart-mixed-up-circle-currency\": 58840,\n  \"chart-mixed-up-circle-dollar\": 58841,\n  \"chart-mixed\": 63043,\n  \"chart-network\": 63370,\n  \"chart-pie-alt\": 63054,\n  \"chart-pie-simple-circle-currency\": 58884,\n  \"chart-pie-simple-circle-dollar\": 58885,\n  \"chart-pie-simple\": 63054,\n  \"chart-pie\": 61952,\n  \"chart-pyramid\": 57574,\n  \"chart-radar\": 57575,\n  \"chart-scatter-3d\": 57576,\n  \"chart-scatter-bubble\": 57577,\n  \"chart-scatter\": 63470,\n  \"chart-simple-horizontal\": 58484,\n  \"chart-simple\": 58483,\n  \"chart-sine\": 59037,\n  \"chart-tree-map\": 57578,\n  \"chart-user\": 63139,\n  \"chart-waterfall\": 57579,\n  \"check-circle\": 61528,\n  \"check-double\": 62816,\n  \"check-square\": 61770,\n  \"check-to-slot\": 63346,\n  \"check\": 61452,\n  \"cheese-swiss\": 63472,\n  \"cheese\": 63471,\n  \"cheeseburger\": 63473,\n  \"chemex\": 59440,\n  \"cherries\": 57580,\n  \"chess-bishop-alt\": 62523,\n  \"chess-bishop-piece\": 62523,\n  \"chess-bishop\": 62522,\n  \"chess-board\": 62524,\n  \"chess-clock-alt\": 62526,\n  \"chess-clock-flip\": 62526,\n  \"chess-clock\": 62525,\n  \"chess-king-alt\": 62528,\n  \"chess-king-piece\": 62528,\n  \"chess-king\": 62527,\n  \"chess-knight-alt\": 62530,\n  \"chess-knight-piece\": 62530,\n  \"chess-knight\": 62529,\n  \"chess-pawn-alt\": 62532,\n  \"chess-pawn-piece\": 62532,\n  \"chess-pawn\": 62531,\n  \"chess-queen-alt\": 62534,\n  \"chess-queen-piece\": 62534,\n  \"chess-queen\": 62533,\n  \"chess-rook-alt\": 62536,\n  \"chess-rook-piece\": 62536,\n  \"chess-rook\": 62535,\n  \"chess\": 62521,\n  \"chest-drawers\": 59523,\n  \"chestnut\": 58358,\n  \"chevron-circle-down\": 61754,\n  \"chevron-circle-left\": 61751,\n  \"chevron-circle-right\": 61752,\n  \"chevron-circle-up\": 61753,\n  \"chevron-double-down\": 62242,\n  \"chevron-double-left\": 62243,\n  \"chevron-double-right\": 62244,\n  \"chevron-double-up\": 62245,\n  \"chevron-down\": 61560,\n  \"chevron-left\": 61523,\n  \"chevron-right\": 61524,\n  \"chevron-square-down\": 62249,\n  \"chevron-square-left\": 62250,\n  \"chevron-square-right\": 62251,\n  \"chevron-square-up\": 62252,\n  \"chevron-up\": 61559,\n  \"chevrons-down\": 62242,\n  \"chevrons-left\": 62243,\n  \"chevrons-right\": 62244,\n  \"chevrons-up\": 62245,\n  \"chf-sign\": 58882,\n  \"child-combatant\": 58592,\n  \"child-dress\": 58780,\n  \"child-reaching\": 58781,\n  \"child-rifle\": 58592,\n  \"child\": 61870,\n  \"children\": 58593,\n  \"chimney\": 63371,\n  \"chocolate-bar\": 58344,\n  \"chopsticks\": 58359,\n  \"church\": 62749,\n  \"circle-0\": 57581,\n  \"circle-1\": 57582,\n  \"circle-2\": 57583,\n  \"circle-3\": 57584,\n  \"circle-4\": 57585,\n  \"circle-5\": 57586,\n  \"circle-6\": 57587,\n  \"circle-7\": 57588,\n  \"circle-8\": 57589,\n  \"circle-9\": 57590,\n  \"circle-a\": 57591,\n  \"circle-ampersand\": 57592,\n  \"circle-arrow-down-left\": 57593,\n  \"circle-arrow-down-right\": 57594,\n  \"circle-arrow-down\": 61611,\n  \"circle-arrow-left\": 61608,\n  \"circle-arrow-right\": 61609,\n  \"circle-arrow-up-left\": 57595,\n  \"circle-arrow-up-right\": 57596,\n  \"circle-arrow-up\": 61610,\n  \"circle-austral\": 59163,\n  \"circle-australian-dollar\": 59184,\n  \"circle-b\": 57597,\n  \"circle-baht\": 59181,\n  \"circle-bangladeshi-taka\": 59137,\n  \"circle-bitcoin\": 59191,\n  \"circle-bolt\": 57598,\n  \"circle-book-open\": 57599,\n  \"circle-bookmark\": 57600,\n  \"circle-brazilian-real\": 59115,\n  \"circle-c\": 57601,\n  \"circle-calendar\": 57602,\n  \"circle-camera\": 57603,\n  \"circle-caret-down\": 62253,\n  \"circle-caret-left\": 62254,\n  \"circle-caret-right\": 62256,\n  \"circle-caret-up\": 62257,\n  \"circle-cedi\": 59202,\n  \"circle-cent\": 59178,\n  \"circle-check\": 61528,\n  \"circle-chevron-down\": 61754,\n  \"circle-chevron-left\": 61751,\n  \"circle-chevron-right\": 61752,\n  \"circle-chevron-up\": 61753,\n  \"circle-chf\": 59180,\n  \"circle-colon\": 59132,\n  \"circle-cruzeiro\": 59170,\n  \"circle-currency\": 59118,\n  \"circle-d\": 57604,\n  \"circle-danish-krone\": 59206,\n  \"circle-dashed\": 57605,\n  \"circle-divide\": 57606,\n  \"circle-dollar-to-slot\": 62649,\n  \"circle-dollar\": 62184,\n  \"circle-dong\": 59171,\n  \"circle-dot\": 61842,\n  \"circle-down-left\": 57607,\n  \"circle-down-right\": 57608,\n  \"circle-down\": 62296,\n  \"circle-e\": 57609,\n  \"circle-ellipsis-vertical\": 57611,\n  \"circle-ellipsis\": 57610,\n  \"circle-envelope\": 57612,\n  \"circle-equals\": 59057,\n  \"circle-euro\": 58830,\n  \"circle-eurozone\": 59205,\n  \"circle-exclamation-check\": 57613,\n  \"circle-exclamation\": 61546,\n  \"circle-f\": 57614,\n  \"circle-florin\": 59108,\n  \"circle-franc\": 59169,\n  \"circle-g\": 57615,\n  \"circle-gf\": 59007,\n  \"circle-guarani\": 59195,\n  \"circle-h\": 62590,\n  \"circle-half-horizontal\": 59404,\n  \"circle-half-stroke-horizontal\": 59405,\n  \"circle-half-stroke\": 61506,\n  \"circle-half\": 57616,\n  \"circle-heart\": 62663,\n  \"circle-house\": 59080,\n  \"circle-hryvnia\": 59119,\n  \"circle-i\": 57617,\n  \"circle-indian-rupee\": 59188,\n  \"circle-info\": 61530,\n  \"circle-j\": 57618,\n  \"circle-k\": 57619,\n  \"circle-kip\": 59133,\n  \"circle-l\": 57620,\n  \"circle-lari\": 59165,\n  \"circle-left\": 62297,\n  \"circle-lira\": 59126,\n  \"circle-litecoin\": 59124,\n  \"circle-location-arrow\": 62978,\n  \"circle-m\": 57621,\n  \"circle-malaysian-ringgit\": 59129,\n  \"circle-manat\": 59131,\n  \"circle-microphone-lines\": 57623,\n  \"circle-microphone\": 57622,\n  \"circle-mill\": 59138,\n  \"circle-minus\": 61526,\n  \"circle-moon\": 59360,\n  \"circle-n\": 57624,\n  \"circle-naira\": 59209,\n  \"circle-nodes\": 58594,\n  \"circle-norwegian-krone\": 59192,\n  \"circle-notch\": 61902,\n  \"circle-o\": 57625,\n  \"circle-p\": 57626,\n  \"circle-parking\": 62997,\n  \"circle-pause\": 62091,\n  \"circle-peruvian-soles\": 59123,\n  \"circle-peseta\": 59201,\n  \"circle-peso\": 59135,\n  \"circle-phone-flip\": 57628,\n  \"circle-phone-hangup\": 57629,\n  \"circle-phone\": 57627,\n  \"circle-play\": 61764,\n  \"circle-plus\": 61525,\n  \"circle-polish-zloty\": 59136,\n  \"circle-q\": 57630,\n  \"circle-quarter-stroke\": 58835,\n  \"circle-quarter\": 57631,\n  \"circle-quarters\": 58360,\n  \"circle-question\": 61529,\n  \"circle-r\": 57632,\n  \"circle-radiation\": 63418,\n  \"circle-renminbi\": 59113,\n  \"circle-right\": 62298,\n  \"circle-ruble\": 59109,\n  \"circle-rupee\": 59156,\n  \"circle-rupiah\": 59142,\n  \"circle-s\": 57633,\n  \"circle-share-nodes\": 59099,\n  \"circle-shekel\": 59139,\n  \"circle-small\": 57634,\n  \"circle-sort-down\": 57393,\n  \"circle-sort-up\": 57394,\n  \"circle-sort\": 57392,\n  \"circle-star\": 57635,\n  \"circle-sterling\": 58831,\n  \"circle-stop\": 62093,\n  \"circle-swedish-krona\": 59203,\n  \"circle-t\": 57636,\n  \"circle-tenge\": 59173,\n  \"circle-three-quarters-stroke\": 58836,\n  \"circle-three-quarters\": 57637,\n  \"circle-trash\": 57638,\n  \"circle-tugrik\": 59153,\n  \"circle-turkish-lira\": 59193,\n  \"circle-u\": 57639,\n  \"circle-up-left\": 57640,\n  \"circle-up-right\": 57641,\n  \"circle-up\": 62299,\n  \"circle-user-circle-check\": 59295,\n  \"circle-user-circle-exclamation\": 59296,\n  \"circle-user-circle-minus\": 59297,\n  \"circle-user-circle-moon\": 59298,\n  \"circle-user-circle-plus\": 59299,\n  \"circle-user-circle-question\": 59300,\n  \"circle-user-circle-user\": 59301,\n  \"circle-user-circle-xmark\": 59302,\n  \"circle-user-clock\": 59303,\n  \"circle-user\": 62141,\n  \"circle-v\": 57642,\n  \"circle-video\": 57643,\n  \"circle-w\": 57644,\n  \"circle-waveform-lines\": 57645,\n  \"circle-wifi-circle-wifi\": 59006,\n  \"circle-wifi-group\": 59006,\n  \"circle-wifi\": 59005,\n  \"circle-won\": 59116,\n  \"circle-x\": 57646,\n  \"circle-xmark\": 61527,\n  \"circle-y\": 57647,\n  \"circle-yen\": 58832,\n  \"circle-z\": 57648,\n  \"circle\": 61713,\n  \"circleapore-dollar\": 59166,\n  \"circles-overlap-3\": 59041,\n  \"circles-overlap\": 58880,\n  \"citrus-slice\": 58101,\n  \"citrus\": 58100,\n  \"city\": 63055,\n  \"clapperboard-play\": 57650,\n  \"clapperboard\": 57649,\n  \"clarinet\": 63661,\n  \"claw-marks\": 63170,\n  \"clinic-medical\": 63474,\n  \"clipboard-check\": 62572,\n  \"clipboard-clock\": 59222,\n  \"clipboard-exclamation\": 59223,\n  \"clipboard-list-check\": 63287,\n  \"clipboard-list\": 62573,\n  \"clipboard-medical\": 57651,\n  \"clipboard-prescription\": 62952,\n  \"clipboard-question\": 58595,\n  \"clipboard-user\": 63475,\n  \"clipboard\": 62248,\n  \"clock-desk\": 57652,\n  \"clock-eight-thirty\": 58182,\n  \"clock-eight\": 58181,\n  \"clock-eleven-thirty\": 58184,\n  \"clock-eleven\": 58183,\n  \"clock-five-thirty\": 58186,\n  \"clock-five\": 58185,\n  \"clock-four-thirty\": 58187,\n  \"clock-four\": 61463,\n  \"clock-nine-thirty\": 58189,\n  \"clock-nine\": 58188,\n  \"clock-one-thirty\": 58191,\n  \"clock-one\": 58190,\n  \"clock-rotate-left\": 61914,\n  \"clock-seven-thirty\": 58193,\n  \"clock-seven\": 58192,\n  \"clock-six-thirty\": 58195,\n  \"clock-six\": 58194,\n  \"clock-ten-thirty\": 58197,\n  \"clock-ten\": 58196,\n  \"clock-three-thirty\": 58199,\n  \"clock-three\": 58198,\n  \"clock-twelve-thirty\": 58201,\n  \"clock-twelve\": 58200,\n  \"clock-two-thirty\": 58203,\n  \"clock-two\": 58202,\n  \"clock\": 61463,\n  \"clone-plus\": 59212,\n  \"clone\": 62029,\n  \"close\": 61453,\n  \"closed-captioning-slash\": 57653,\n  \"closed-captioning\": 61962,\n  \"clothes-hanger\": 57654,\n  \"cloud-arrow-down\": 61677,\n  \"cloud-arrow-up\": 61678,\n  \"cloud-binary\": 58881,\n  \"cloud-bolt-moon\": 63341,\n  \"cloud-bolt-sun\": 63342,\n  \"cloud-bolt\": 63340,\n  \"cloud-check\": 58204,\n  \"cloud-download-alt\": 61677,\n  \"cloud-download\": 61677,\n  \"cloud-drizzle\": 63288,\n  \"cloud-exclamation\": 58513,\n  \"cloud-fog\": 63310,\n  \"cloud-hail-mixed\": 63290,\n  \"cloud-hail\": 63289,\n  \"cloud-meatball\": 63291,\n  \"cloud-minus\": 58205,\n  \"cloud-moon-rain\": 63292,\n  \"cloud-moon\": 63171,\n  \"cloud-music\": 63662,\n  \"cloud-plus\": 58206,\n  \"cloud-question\": 58514,\n  \"cloud-rain\": 63293,\n  \"cloud-rainbow\": 63294,\n  \"cloud-showers-heavy\": 63296,\n  \"cloud-showers-water\": 58596,\n  \"cloud-showers\": 63295,\n  \"cloud-slash\": 57655,\n  \"cloud-sleet\": 63297,\n  \"cloud-snow\": 63298,\n  \"cloud-sun-rain\": 63299,\n  \"cloud-sun\": 63172,\n  \"cloud-upload-alt\": 61678,\n  \"cloud-upload\": 61678,\n  \"cloud-word\": 57656,\n  \"cloud-xmark\": 58207,\n  \"cloud\": 61634,\n  \"clouds-moon\": 63301,\n  \"clouds-sun\": 63302,\n  \"clouds\": 63300,\n  \"clover\": 57657,\n  \"club\": 62247,\n  \"cny\": 61783,\n  \"cocktail\": 62817,\n  \"coconut\": 58102,\n  \"code-branch\": 61734,\n  \"code-commit\": 62342,\n  \"code-compare\": 57658,\n  \"code-fork\": 57659,\n  \"code-merge\": 62343,\n  \"code-pull-request-closed\": 58361,\n  \"code-pull-request-draft\": 58362,\n  \"code-pull-request\": 57660,\n  \"code-simple\": 57661,\n  \"code\": 61729,\n  \"coffee-bean\": 57662,\n  \"coffee-beans\": 57663,\n  \"coffee-pot\": 57346,\n  \"coffee-togo\": 63173,\n  \"coffee\": 61684,\n  \"coffin-cross\": 57425,\n  \"coffin\": 63174,\n  \"cog\": 61459,\n  \"cogs\": 61573,\n  \"coin-blank\": 58363,\n  \"coin-front\": 58364,\n  \"coin-vertical\": 58365,\n  \"coin\": 63580,\n  \"coins\": 62750,\n  \"colon-sign\": 57664,\n  \"colon\": 58,\n  \"columns-3\": 58209,\n  \"columns\": 61659,\n  \"comet\": 57347,\n  \"comma\": 44,\n  \"command\": 57666,\n  \"comment-alt-arrow-down\": 57819,\n  \"comment-alt-arrow-up\": 57820,\n  \"comment-alt-captions\": 57822,\n  \"comment-alt-check\": 62626,\n  \"comment-alt-dollar\": 63056,\n  \"comment-alt-dots\": 62627,\n  \"comment-alt-edit\": 62628,\n  \"comment-alt-exclamation\": 62629,\n  \"comment-alt-image\": 57824,\n  \"comment-alt-lines\": 62630,\n  \"comment-alt-medical\": 63476,\n  \"comment-alt-minus\": 62631,\n  \"comment-alt-music\": 63663,\n  \"comment-alt-plus\": 62632,\n  \"comment-alt-quote\": 57828,\n  \"comment-alt-slash\": 62633,\n  \"comment-alt-smile\": 62634,\n  \"comment-alt-text\": 57830,\n  \"comment-alt-times\": 62635,\n  \"comment-alt\": 62074,\n  \"comment-arrow-down\": 57667,\n  \"comment-arrow-up-right\": 57669,\n  \"comment-arrow-up\": 57668,\n  \"comment-captions\": 57670,\n  \"comment-check\": 62636,\n  \"comment-code\": 57671,\n  \"comment-dollar\": 63057,\n  \"comment-dot\": 59100,\n  \"comment-dots\": 62637,\n  \"comment-edit\": 62638,\n  \"comment-exclamation\": 62639,\n  \"comment-heart\": 58824,\n  \"comment-image\": 57672,\n  \"comment-lines\": 62640,\n  \"comment-medical\": 63477,\n  \"comment-middle-alt\": 57825,\n  \"comment-middle-top-alt\": 57826,\n  \"comment-middle-top\": 57674,\n  \"comment-middle\": 57673,\n  \"comment-minus\": 62641,\n  \"comment-music\": 63664,\n  \"comment-nodes\": 59030,\n  \"comment-pen\": 62638,\n  \"comment-plus\": 62642,\n  \"comment-question\": 57675,\n  \"comment-quote\": 57676,\n  \"comment-slash\": 62643,\n  \"comment-smile\": 62644,\n  \"comment-sms\": 63437,\n  \"comment-text\": 57677,\n  \"comment-times\": 62645,\n  \"comment-waveform\": 59101,\n  \"comment-xmark\": 62645,\n  \"comment\": 61557,\n  \"commenting\": 62637,\n  \"comments-alt-dollar\": 63058,\n  \"comments-alt\": 62646,\n  \"comments-dollar\": 63059,\n  \"comments-question-check\": 57679,\n  \"comments-question\": 57678,\n  \"comments\": 61574,\n  \"compact-disc\": 62751,\n  \"compass-drafting\": 62824,\n  \"compass-slash\": 62953,\n  \"compass\": 61774,\n  \"compress-alt\": 62498,\n  \"compress-arrows-alt\": 63372,\n  \"compress-arrows\": 57509,\n  \"compress-wide\": 62246,\n  \"compress\": 61542,\n  \"computer-classic\": 63665,\n  \"computer-mouse-button-left\": 59341,\n  \"computer-mouse-button-right\": 59342,\n  \"computer-mouse-scrollwheel\": 63693,\n  \"computer-mouse\": 63692,\n  \"computer-speaker\": 63666,\n  \"computer\": 58597,\n  \"concierge-bell\": 62818,\n  \"construction\": 63581,\n  \"contact-book\": 62137,\n  \"contact-card\": 62139,\n  \"container-storage\": 62647,\n  \"conveyor-belt-alt\": 62575,\n  \"conveyor-belt-arm\": 58872,\n  \"conveyor-belt-boxes\": 62575,\n  \"conveyor-belt-empty\": 57680,\n  \"conveyor-belt\": 62574,\n  \"cookie-bite\": 62820,\n  \"cookie\": 62819,\n  \"copy\": 61637,\n  \"copyright\": 61945,\n  \"corn\": 63175,\n  \"corner\": 58366,\n  \"couch-small\": 62668,\n  \"couch\": 62648,\n  \"court-sport\": 58947,\n  \"cow\": 63176,\n  \"cowbell-circle-plus\": 63668,\n  \"cowbell-more\": 63668,\n  \"cowbell\": 63667,\n  \"crab\": 58367,\n  \"crate-apple\": 63153,\n  \"crate-empty\": 57681,\n  \"credit-card-alt\": 61597,\n  \"credit-card-blank\": 62345,\n  \"credit-card-front\": 62346,\n  \"credit-card\": 61597,\n  \"creemee\": 58368,\n  \"cricket-bat-ball\": 62537,\n  \"cricket\": 62537,\n  \"croissant\": 63478,\n  \"crop-alt\": 62821,\n  \"crop-simple\": 62821,\n  \"crop\": 61733,\n  \"cross\": 63060,\n  \"crosshairs-simple\": 58783,\n  \"crosshairs\": 61531,\n  \"crow\": 62752,\n  \"crown\": 62753,\n  \"crutch\": 63479,\n  \"crutches\": 63480,\n  \"cruzeiro-sign\": 57682,\n  \"crystal-ball\": 58210,\n  \"cube\": 61874,\n  \"cubes-stacked\": 58598,\n  \"cubes\": 61875,\n  \"cucumber\": 58369,\n  \"cup-straw-swoosh\": 58212,\n  \"cup-straw\": 58211,\n  \"cup-togo\": 63173,\n  \"cupcake\": 58370,\n  \"curling-stone\": 62538,\n  \"curling\": 62538,\n  \"currency-sign\": 59179,\n  \"custard\": 58371,\n  \"cut\": 61636,\n  \"cutlery\": 62183,\n  \"d\": 68,\n  \"dagger\": 63179,\n  \"danish-krone-sign\": 59168,\n  \"dash\": 58372,\n  \"dashboard\": 63012,\n  \"database\": 61888,\n  \"deaf\": 62116,\n  \"deafness\": 62116,\n  \"debug\": 63481,\n  \"dedent\": 61499,\n  \"deer-rudolph\": 63375,\n  \"deer\": 63374,\n  \"delete-left\": 62810,\n  \"delete-right\": 57684,\n  \"democrat\": 63303,\n  \"desk\": 59518,\n  \"desktop-alt\": 62352,\n  \"desktop-arrow-down\": 57685,\n  \"desktop-code\": 57701,\n  \"desktop-medical\": 57702,\n  \"desktop-slash\": 58106,\n  \"desktop\": 62352,\n  \"dewpoint\": 63304,\n  \"dharmachakra\": 63061,\n  \"diagnoses\": 62576,\n  \"diagram-cells\": 58485,\n  \"diagram-lean-canvas\": 57686,\n  \"diagram-nested\": 57687,\n  \"diagram-next\": 58486,\n  \"diagram-predecessor\": 58487,\n  \"diagram-previous\": 58488,\n  \"diagram-project\": 62786,\n  \"diagram-sankey\": 57688,\n  \"diagram-subtask\": 58489,\n  \"diagram-successor\": 58490,\n  \"diagram-venn\": 57690,\n  \"dial-high\": 57692,\n  \"dial-low\": 57693,\n  \"dial-max\": 57694,\n  \"dial-med-high\": 57691,\n  \"dial-med-low\": 57696,\n  \"dial-med\": 57695,\n  \"dial-min\": 57697,\n  \"dial-off\": 57698,\n  \"dial\": 57691,\n  \"dialpad\": 59340,\n  \"diamond-exclamation\": 58373,\n  \"diamond-half-stroke\": 58808,\n  \"diamond-half\": 58807,\n  \"diamond-turn-right\": 62955,\n  \"diamond\": 61977,\n  \"diamonds-4\": 59019,\n  \"dice-d10\": 63181,\n  \"dice-d12\": 63182,\n  \"dice-d20\": 63183,\n  \"dice-d4\": 63184,\n  \"dice-d6\": 63185,\n  \"dice-d8\": 63186,\n  \"dice-five\": 62755,\n  \"dice-four\": 62756,\n  \"dice-one\": 62757,\n  \"dice-six\": 62758,\n  \"dice-three\": 62759,\n  \"dice-two\": 62760,\n  \"dice\": 62754,\n  \"digging\": 63582,\n  \"digital-tachograph\": 62822,\n  \"dinosaur\": 58878,\n  \"diploma\": 62954,\n  \"direction-left-right\": 59070,\n  \"direction-up-down\": 59071,\n  \"directions\": 62955,\n  \"disc-drive\": 63669,\n  \"disease\": 63482,\n  \"display-arrow-down\": 57700,\n  \"display-chart-up-circle-currency\": 58853,\n  \"display-chart-up-circle-dollar\": 58854,\n  \"display-chart-up\": 58851,\n  \"display-code\": 57701,\n  \"display-medical\": 57702,\n  \"display-slash\": 58106,\n  \"display\": 57699,\n  \"distribute-spacing-horizontal\": 58213,\n  \"distribute-spacing-vertical\": 58214,\n  \"ditto\": 34,\n  \"divide\": 62761,\n  \"dizzy\": 62823,\n  \"dna\": 62577,\n  \"do-not-enter\": 62956,\n  \"dog-leashed\": 63188,\n  \"dog\": 63187,\n  \"dollar-circle\": 62184,\n  \"dollar-sign\": 36,\n  \"dollar-square\": 62185,\n  \"dollar\": 36,\n  \"dolly-box\": 62578,\n  \"dolly-empty\": 62579,\n  \"dolly-flatbed-alt\": 62581,\n  \"dolly-flatbed-empty\": 62582,\n  \"dolly-flatbed\": 62580,\n  \"dolly\": 62578,\n  \"dolphin\": 57704,\n  \"donate\": 62649,\n  \"dong-sign\": 57705,\n  \"donut\": 58374,\n  \"door-closed\": 62762,\n  \"door-open\": 62763,\n  \"dot-circle\": 61842,\n  \"dot\": 59345,\n  \"doughnut\": 58374,\n  \"dove\": 62650,\n  \"down-from-bracket\": 58987,\n  \"down-from-dotted-line\": 58375,\n  \"down-from-line\": 62281,\n  \"down-left-and-up-right-to-center\": 62498,\n  \"down-left\": 57706,\n  \"down-long-to-line\": 59072,\n  \"down-long\": 62217,\n  \"down-right\": 57707,\n  \"down-to-bracket\": 58599,\n  \"down-to-dotted-line\": 58376,\n  \"down-to-line\": 62282,\n  \"down-up\": 59073,\n  \"down\": 62292,\n  \"download\": 61465,\n  \"drafting-compass\": 62824,\n  \"dragon\": 63189,\n  \"draw-circle\": 62957,\n  \"draw-polygon\": 62958,\n  \"draw-square\": 62959,\n  \"dreidel\": 63378,\n  \"dress\": 59089,\n  \"dresser\": 59519,\n  \"drivers-license\": 62146,\n  \"drone-alt\": 63584,\n  \"drone-front\": 63584,\n  \"drone\": 63583,\n  \"droplet-degree\": 63304,\n  \"droplet-percent\": 63312,\n  \"droplet-plus\": 59392,\n  \"droplet-slash\": 62919,\n  \"droplet\": 61507,\n  \"drum-steelpan\": 62826,\n  \"drum\": 62825,\n  \"drumstick-bite\": 63191,\n  \"drumstick\": 63190,\n  \"dryer-alt\": 63586,\n  \"dryer-heat\": 63586,\n  \"dryer\": 63585,\n  \"duck\": 63192,\n  \"dumbbell\": 62539,\n  \"dumpster-fire\": 63380,\n  \"dumpster\": 63379,\n  \"dungeon\": 63193,\n  \"e\": 69,\n  \"ear-circle-checkmark\": 59227,\n  \"ear-deaf\": 62116,\n  \"ear-listen\": 62114,\n  \"ear-muffs\": 63381,\n  \"ear-triangle-exclamation\": 59228,\n  \"ear-waveform\": 59229,\n  \"ear\": 62960,\n  \"earth-africa\": 62844,\n  \"earth-america\": 62845,\n  \"earth-americas\": 62845,\n  \"earth-asia\": 62846,\n  \"earth-europe\": 63394,\n  \"earth-oceania\": 58491,\n  \"earth\": 62845,\n  \"eclipse-alt\": 63306,\n  \"eclipse\": 63305,\n  \"edit\": 61508,\n  \"egg-fried\": 63484,\n  \"egg\": 63483,\n  \"eggplant\": 57708,\n  \"eject\": 61522,\n  \"elephant\": 63194,\n  \"elevator\": 57709,\n  \"ellipsis-h-alt\": 62363,\n  \"ellipsis-h\": 61761,\n  \"ellipsis-stroke-vertical\": 62364,\n  \"ellipsis-stroke\": 62363,\n  \"ellipsis-v-alt\": 62364,\n  \"ellipsis-v\": 61762,\n  \"ellipsis-vertical\": 61762,\n  \"ellipsis\": 61761,\n  \"empty-set\": 63062,\n  \"engine-exclamation\": 62962,\n  \"engine-warning\": 62962,\n  \"engine\": 57710,\n  \"envelope-badge\": 57711,\n  \"envelope-certificate\": 59433,\n  \"envelope-circle-check\": 58600,\n  \"envelope-circle-user\": 59102,\n  \"envelope-circle\": 57612,\n  \"envelope-dot\": 57711,\n  \"envelope-open-dollar\": 63063,\n  \"envelope-open-text\": 63064,\n  \"envelope-open\": 62134,\n  \"envelope-ribbon\": 59433,\n  \"envelope-square\": 61849,\n  \"envelope\": 61664,\n  \"envelopes-bulk\": 63092,\n  \"envelopes\": 57712,\n  \"equals\": 61,\n  \"eraser\": 61741,\n  \"escalator\": 57713,\n  \"ethernet\": 63382,\n  \"eur\": 61779,\n  \"euro-sign\": 61779,\n  \"euro\": 61779,\n  \"eurozone-sign\": 59200,\n  \"excavator\": 58966,\n  \"exchange-alt\": 62306,\n  \"exchange\": 61676,\n  \"exclamation-circle\": 61546,\n  \"exclamation-square\": 62241,\n  \"exclamation-triangle\": 61553,\n  \"exclamation\": 33,\n  \"expand-alt\": 62500,\n  \"expand-arrows-alt\": 62238,\n  \"expand-arrows\": 62237,\n  \"expand-wide\": 62240,\n  \"expand\": 61541,\n  \"exploding-head\": 58110,\n  \"explosion\": 58601,\n  \"external-link-alt\": 62301,\n  \"external-link-square-alt\": 62304,\n  \"external-link-square\": 61772,\n  \"external-link\": 61582,\n  \"eye-closed\": 59451,\n  \"eye-dropper-empty\": 61947,\n  \"eye-dropper-full\": 57714,\n  \"eye-dropper-half\": 57715,\n  \"eye-dropper\": 61947,\n  \"eye-evil\": 63195,\n  \"eye-low-vision\": 62120,\n  \"eye-slash\": 61552,\n  \"eye\": 61550,\n  \"eyedropper\": 61947,\n  \"eyes\": 58215,\n  \"f\": 70,\n  \"face-angry-horns\": 58216,\n  \"face-angry\": 62806,\n  \"face-anguished\": 58217,\n  \"face-anxious-sweat\": 58218,\n  \"face-astonished\": 58219,\n  \"face-awesome\": 58377,\n  \"face-beam-hand-over-mouth\": 58492,\n  \"face-clouds\": 58493,\n  \"face-confounded\": 58220,\n  \"face-confused\": 58221,\n  \"face-cowboy-hat\": 58222,\n  \"face-diagonal-mouth\": 58494,\n  \"face-disappointed\": 58223,\n  \"face-disguise\": 58224,\n  \"face-dizzy\": 62823,\n  \"face-dotted\": 58495,\n  \"face-downcast-sweat\": 58225,\n  \"face-drooling\": 58226,\n  \"face-exhaling\": 58496,\n  \"face-explode\": 58110,\n  \"face-expressionless\": 58227,\n  \"face-eyes-xmarks\": 58228,\n  \"face-fearful\": 58229,\n  \"face-flushed\": 62841,\n  \"face-frown-open\": 62842,\n  \"face-frown-slight\": 58230,\n  \"face-frown\": 61721,\n  \"face-glasses\": 58231,\n  \"face-grimace\": 62847,\n  \"face-grin-beam-sweat\": 62851,\n  \"face-grin-beam\": 62850,\n  \"face-grin-hearts\": 62852,\n  \"face-grin-squint-tears\": 62854,\n  \"face-grin-squint\": 62853,\n  \"face-grin-stars\": 62855,\n  \"face-grin-tears\": 62856,\n  \"face-grin-tongue-squint\": 62858,\n  \"face-grin-tongue-wink\": 62859,\n  \"face-grin-tongue\": 62857,\n  \"face-grin-wide\": 62849,\n  \"face-grin-wink\": 62860,\n  \"face-grin\": 62848,\n  \"face-hand-over-mouth\": 58232,\n  \"face-hand-peeking\": 58497,\n  \"face-hand-yawn\": 58233,\n  \"face-head-bandage\": 58234,\n  \"face-holding-back-tears\": 58498,\n  \"face-hushed\": 58235,\n  \"face-icicles\": 58236,\n  \"face-kiss-beam\": 62871,\n  \"face-kiss-closed-eyes\": 58237,\n  \"face-kiss-wink-heart\": 62872,\n  \"face-kiss\": 62870,\n  \"face-laugh-beam\": 62874,\n  \"face-laugh-squint\": 62875,\n  \"face-laugh-wink\": 62876,\n  \"face-laugh\": 62873,\n  \"face-lying\": 58238,\n  \"face-mask\": 58239,\n  \"face-meh-blank\": 62884,\n  \"face-meh\": 61722,\n  \"face-melting\": 58499,\n  \"face-monocle\": 58240,\n  \"face-nauseated\": 58241,\n  \"face-nose-steam\": 58242,\n  \"face-party\": 58243,\n  \"face-pensive\": 58244,\n  \"face-persevering\": 58245,\n  \"face-pleading\": 58246,\n  \"face-pouting\": 58247,\n  \"face-raised-eyebrow\": 58248,\n  \"face-relieved\": 58249,\n  \"face-rolling-eyes\": 62885,\n  \"face-sad-cry\": 62899,\n  \"face-sad-sweat\": 58250,\n  \"face-sad-tear\": 62900,\n  \"face-saluting\": 58500,\n  \"face-scream\": 58251,\n  \"face-shaking-horizontal\": 59293,\n  \"face-shaking-vertical\": 59294,\n  \"face-shaking\": 59292,\n  \"face-shush\": 58252,\n  \"face-sleeping\": 58253,\n  \"face-sleepy\": 58254,\n  \"face-smile-beam\": 62904,\n  \"face-smile-halo\": 58255,\n  \"face-smile-hearts\": 58256,\n  \"face-smile-horns\": 58257,\n  \"face-smile-plus\": 62905,\n  \"face-smile-relaxed\": 58258,\n  \"face-smile-tear\": 58259,\n  \"face-smile-tongue\": 58260,\n  \"face-smile-upside-down\": 58261,\n  \"face-smile-wink\": 62682,\n  \"face-smile\": 61720,\n  \"face-smiling-hands\": 58262,\n  \"face-smirking\": 58263,\n  \"face-spiral-eyes\": 58501,\n  \"face-sunglasses\": 58264,\n  \"face-surprise\": 62914,\n  \"face-swear\": 58265,\n  \"face-thermometer\": 58266,\n  \"face-thinking\": 58267,\n  \"face-tired\": 62920,\n  \"face-tissue\": 58268,\n  \"face-tongue-money\": 58269,\n  \"face-tongue-sweat\": 58270,\n  \"face-unamused\": 58271,\n  \"face-viewfinder\": 58111,\n  \"face-vomit\": 58272,\n  \"face-weary\": 58273,\n  \"face-woozy\": 58274,\n  \"face-worried\": 58275,\n  \"face-zany\": 58276,\n  \"face-zipper\": 58277,\n  \"falafel\": 58378,\n  \"family-dress\": 58113,\n  \"family-pants\": 58114,\n  \"family\": 58112,\n  \"fan-table\": 57348,\n  \"fan\": 63587,\n  \"farm\": 63588,\n  \"fast-backward\": 61513,\n  \"fast-forward\": 61520,\n  \"faucet-drip\": 57350,\n  \"faucet\": 57349,\n  \"fax\": 61868,\n  \"feather-alt\": 62827,\n  \"feather-pointed\": 62827,\n  \"feather\": 62765,\n  \"feed\": 61598,\n  \"female\": 61826,\n  \"fence\": 58115,\n  \"ferris-wheel\": 57716,\n  \"ferry\": 58602,\n  \"field-hockey-stick-ball\": 62540,\n  \"field-hockey\": 62540,\n  \"fighter-jet\": 61691,\n  \"file-aiff\": 59387,\n  \"file-alt\": 61788,\n  \"file-archive\": 61894,\n  \"file-arrow-down\": 62829,\n  \"file-arrow-up\": 62836,\n  \"file-audio\": 61895,\n  \"file-award\": 62963,\n  \"file-ban\": 59224,\n  \"file-binary\": 57717,\n  \"file-brackets-curly\": 59396,\n  \"file-cad\": 58994,\n  \"file-caret-down\": 58409,\n  \"file-caret-up\": 58410,\n  \"file-certificate\": 62963,\n  \"file-chart-column\": 63065,\n  \"file-chart-line\": 63065,\n  \"file-chart-pie\": 63066,\n  \"file-check\": 62230,\n  \"file-circle-check\": 58784,\n  \"file-circle-exclamation\": 58603,\n  \"file-circle-info\": 58515,\n  \"file-circle-minus\": 58605,\n  \"file-circle-plus\": 58516,\n  \"file-circle-question\": 58607,\n  \"file-circle-xmark\": 58785,\n  \"file-clipboard\": 61674,\n  \"file-code\": 61897,\n  \"file-contract\": 62828,\n  \"file-css\": 59452,\n  \"file-csv\": 63197,\n  \"file-dashed-line\": 63607,\n  \"file-doc\": 58861,\n  \"file-download\": 62829,\n  \"file-edit\": 62236,\n  \"file-eps\": 58948,\n  \"file-excel\": 61891,\n  \"file-exclamation\": 62234,\n  \"file-export\": 62830,\n  \"file-fragment\": 59031,\n  \"file-gif\": 58949,\n  \"file-half-dashed\": 59032,\n  \"file-heart\": 57718,\n  \"file-html\": 59453,\n  \"file-icns\": 59457,\n  \"file-image\": 61893,\n  \"file-import\": 62831,\n  \"file-invoice-dollar\": 62833,\n  \"file-invoice\": 62832,\n  \"file-jpg\": 58950,\n  \"file-js\": 59454,\n  \"file-lines\": 61788,\n  \"file-lock\": 58278,\n  \"file-magnifying-glass\": 63589,\n  \"file-medical-alt\": 62584,\n  \"file-medical\": 62583,\n  \"file-midi\": 59397,\n  \"file-minus\": 62232,\n  \"file-mov\": 58951,\n  \"file-mp3\": 58952,\n  \"file-mp4\": 58953,\n  \"file-music\": 63670,\n  \"file-odf\": 59388,\n  \"file-pdf\": 61889,\n  \"file-pen\": 62236,\n  \"file-plus-minus\": 57719,\n  \"file-plus\": 62233,\n  \"file-png\": 58982,\n  \"file-powerpoint\": 61892,\n  \"file-ppt\": 58954,\n  \"file-prescription\": 62834,\n  \"file-search\": 63589,\n  \"file-shield\": 58608,\n  \"file-signature\": 62835,\n  \"file-slash\": 58279,\n  \"file-spreadsheet\": 63067,\n  \"file-svg\": 58955,\n  \"file-tex\": 59389,\n  \"file-text\": 61788,\n  \"file-times\": 62231,\n  \"file-upload\": 62836,\n  \"file-user\": 63068,\n  \"file-vector\": 58956,\n  \"file-video\": 61896,\n  \"file-wav\": 59390,\n  \"file-waveform\": 62584,\n  \"file-word\": 61890,\n  \"file-xls\": 58957,\n  \"file-xmark\": 62231,\n  \"file-xml\": 58964,\n  \"file-zip\": 58862,\n  \"file-zipper\": 61894,\n  \"file\": 61787,\n  \"files-medical\": 63485,\n  \"files\": 57720,\n  \"fill-drip\": 62838,\n  \"fill\": 62837,\n  \"film-alt\": 61448,\n  \"film-canister\": 63671,\n  \"film-cannister\": 63671,\n  \"film-music\": 59241,\n  \"film-simple\": 61448,\n  \"film-slash\": 57721,\n  \"film-stack\": 59243,\n  \"film\": 61448,\n  \"films\": 57722,\n  \"filter-circle-dollar\": 63074,\n  \"filter-circle-xmark\": 57723,\n  \"filter-list\": 57724,\n  \"filter-slash\": 57725,\n  \"filter\": 61616,\n  \"filters\": 57726,\n  \"fingerprint\": 62839,\n  \"fire-alt\": 63460,\n  \"fire-burner\": 58609,\n  \"fire-extinguisher\": 61748,\n  \"fire-flame-curved\": 63460,\n  \"fire-flame-simple\": 62570,\n  \"fire-flame\": 63199,\n  \"fire-hydrant\": 57727,\n  \"fire-smoke\": 63307,\n  \"fire\": 61549,\n  \"fireplace\": 63386,\n  \"firewall\": 58332,\n  \"first-aid\": 62585,\n  \"fish-bones\": 58116,\n  \"fish-cooked\": 63486,\n  \"fish-fins\": 58610,\n  \"fish\": 62840,\n  \"fishing-rod\": 58280,\n  \"fist-raised\": 63198,\n  \"flag-alt\": 63308,\n  \"flag-checkered\": 61726,\n  \"flag-pennant\": 62550,\n  \"flag-swallowtail\": 63308,\n  \"flag-usa\": 63309,\n  \"flag\": 61476,\n  \"flame\": 63199,\n  \"flashlight\": 63672,\n  \"flask-gear\": 58865,\n  \"flask-poison\": 63200,\n  \"flask-potion\": 63201,\n  \"flask-round-poison\": 63200,\n  \"flask-round-potion\": 63201,\n  \"flask-vial\": 58611,\n  \"flask\": 61635,\n  \"flatbread-stuffed\": 58380,\n  \"flatbread\": 58379,\n  \"floppy-disk-circle-arrow-right\": 57728,\n  \"floppy-disk-circle-xmark\": 57729,\n  \"floppy-disk-pen\": 57730,\n  \"floppy-disk-times\": 57729,\n  \"floppy-disk\": 61639,\n  \"floppy-disks\": 57731,\n  \"florin-sign\": 57732,\n  \"flower-daffodil\": 63488,\n  \"flower-tulip\": 63489,\n  \"flower\": 63487,\n  \"flushed\": 62841,\n  \"flute\": 63673,\n  \"flux-capacitor\": 63674,\n  \"flying-disc\": 58281,\n  \"fog\": 63310,\n  \"folder-arrow-down\": 57427,\n  \"folder-arrow-left\": 59346,\n  \"folder-arrow-right\": 59347,\n  \"folder-arrow-up\": 57428,\n  \"folder-blank\": 61563,\n  \"folder-bookmark\": 57734,\n  \"folder-check\": 58958,\n  \"folder-closed\": 57733,\n  \"folder-cog\": 57735,\n  \"folder-download\": 57427,\n  \"folder-gear\": 57735,\n  \"folder-grid\": 57736,\n  \"folder-heart\": 57737,\n  \"folder-image\": 57738,\n  \"folder-magnifying-glass\": 57739,\n  \"folder-medical\": 57740,\n  \"folder-minus\": 63069,\n  \"folder-music\": 57741,\n  \"folder-open\": 61564,\n  \"folder-plus\": 63070,\n  \"folder-search\": 57739,\n  \"folder-times\": 63071,\n  \"folder-tree\": 63490,\n  \"folder-upload\": 57428,\n  \"folder-user\": 57742,\n  \"folder-xmark\": 63071,\n  \"folder\": 61563,\n  \"folders\": 63072,\n  \"fondue-pot\": 58381,\n  \"font-awesome-flag\": 62132,\n  \"font-awesome-logo-full\": 62132,\n  \"font-awesome\": 62132,\n  \"font-case\": 63590,\n  \"font\": 61489,\n  \"foot-wing\": 59444,\n  \"football-ball\": 62542,\n  \"football-helmet\": 62543,\n  \"football\": 62542,\n  \"fork-knife\": 62182,\n  \"fork\": 62179,\n  \"forklift\": 62586,\n  \"fort\": 58502,\n  \"forward-fast\": 61520,\n  \"forward-step\": 61521,\n  \"forward\": 61518,\n  \"fragile\": 62651,\n  \"frame\": 58517,\n  \"franc-sign\": 57743,\n  \"french-fries\": 63491,\n  \"frog\": 62766,\n  \"frosty-head\": 63387,\n  \"frown-open\": 62842,\n  \"frown\": 61721,\n  \"function\": 63073,\n  \"funnel-dollar\": 63074,\n  \"futbol-ball\": 61923,\n  \"futbol\": 61923,\n  \"g\": 71,\n  \"galaxy\": 57352,\n  \"gallery-thumbnails\": 58282,\n  \"game-board-alt\": 63592,\n  \"game-board-simple\": 63592,\n  \"game-board\": 63591,\n  \"game-console-handheld-crank\": 58809,\n  \"game-console-handheld\": 63675,\n  \"gamepad-alt\": 58786,\n  \"gamepad-modern\": 58786,\n  \"gamepad\": 61723,\n  \"garage-car\": 57354,\n  \"garage-empty\": 59081,\n  \"garage-open\": 57355,\n  \"garage\": 57353,\n  \"garlic\": 58382,\n  \"gas-pump-left\": 59256,\n  \"gas-pump-right\": 59257,\n  \"gas-pump-slash\": 62964,\n  \"gas-pump\": 62767,\n  \"gauge-circle-bolt\": 58518,\n  \"gauge-circle-minus\": 58519,\n  \"gauge-circle-plus\": 58520,\n  \"gauge-high\": 63013,\n  \"gauge-low\": 63015,\n  \"gauge-max\": 63014,\n  \"gauge-med\": 63012,\n  \"gauge-min\": 63016,\n  \"gauge-simple-high\": 63018,\n  \"gauge-simple-low\": 63020,\n  \"gauge-simple-max\": 63019,\n  \"gauge-simple-med\": 63017,\n  \"gauge-simple-min\": 63021,\n  \"gauge-simple\": 63017,\n  \"gauge\": 63012,\n  \"gave-dandy\": 58377,\n  \"gavel\": 61667,\n  \"gbp\": 61780,\n  \"gear-api\": 59556,\n  \"gear-code\": 58856,\n  \"gear-complex-api\": 59557,\n  \"gear-complex-code\": 58859,\n  \"gear-complex\": 58857,\n  \"gear\": 61459,\n  \"gears\": 61573,\n  \"gem\": 62373,\n  \"gemini\": 59465,\n  \"genderless\": 61997,\n  \"ghost\": 63202,\n  \"gif\": 57744,\n  \"gift-card\": 63075,\n  \"gift\": 61547,\n  \"gifts\": 63388,\n  \"gingerbread-man\": 63389,\n  \"glass-champagne\": 63390,\n  \"glass-cheers\": 63391,\n  \"glass-citrus\": 63593,\n  \"glass-empty\": 57745,\n  \"glass-half-empty\": 57746,\n  \"glass-half-full\": 57746,\n  \"glass-half\": 57746,\n  \"glass-martini-alt\": 62843,\n  \"glass-martini\": 61440,\n  \"glass-water-droplet\": 58613,\n  \"glass-water\": 58612,\n  \"glass-whiskey-rocks\": 63393,\n  \"glass-whiskey\": 63392,\n  \"glass\": 63492,\n  \"glasses-alt\": 62965,\n  \"glasses-round\": 62965,\n  \"glasses\": 62768,\n  \"globe-africa\": 62844,\n  \"globe-americas\": 62845,\n  \"globe-asia\": 62846,\n  \"globe-europe\": 63394,\n  \"globe-oceania\": 58491,\n  \"globe-pointer\": 58894,\n  \"globe-snow\": 63395,\n  \"globe-stand\": 62966,\n  \"globe-wifi\": 59013,\n  \"globe-www\": 59558,\n  \"globe\": 61612,\n  \"glove-boxing\": 62520,\n  \"goal-net\": 58283,\n  \"golf-ball-tee\": 62544,\n  \"golf-ball\": 62544,\n  \"golf-club\": 62545,\n  \"golf-flag-hole\": 58284,\n  \"gopuram\": 63076,\n  \"gpu\": 59459,\n  \"graduation-cap\": 61853,\n  \"gramophone\": 63677,\n  \"grapes\": 58118,\n  \"grate-droplet\": 57748,\n  \"grate\": 57747,\n  \"greater-than-equal\": 62770,\n  \"greater-than\": 62,\n  \"grid-2-minus\": 59050,\n  \"grid-2-plus\": 57751,\n  \"grid-2\": 57750,\n  \"grid-3\": 57749,\n  \"grid-4\": 57752,\n  \"grid-5\": 57753,\n  \"grid-dividers\": 58285,\n  \"grid-horizontal\": 62861,\n  \"grid-round-2-minus\": 59051,\n  \"grid-round-2-plus\": 58844,\n  \"grid-round-2\": 58843,\n  \"grid-round-4\": 58845,\n  \"grid-round-5\": 58846,\n  \"grid-round\": 58842,\n  \"grid-vertical\": 62862,\n  \"grid\": 57749,\n  \"grill-fire\": 58788,\n  \"grill-hot\": 58789,\n  \"grill\": 58787,\n  \"grimace\": 62847,\n  \"grin-alt\": 62849,\n  \"grin-beam-sweat\": 62851,\n  \"grin-beam\": 62850,\n  \"grin-hearts\": 62852,\n  \"grin-squint-tears\": 62854,\n  \"grin-squint\": 62853,\n  \"grin-stars\": 62855,\n  \"grin-tears\": 62856,\n  \"grin-tongue-squint\": 62858,\n  \"grin-tongue-wink\": 62859,\n  \"grin-tongue\": 62857,\n  \"grin-wink\": 62860,\n  \"grin\": 62848,\n  \"grip-dots-vertical\": 58385,\n  \"grip-dots\": 58384,\n  \"grip-horizontal\": 62861,\n  \"grip-lines-vertical\": 63397,\n  \"grip-lines\": 63396,\n  \"grip-vertical\": 62862,\n  \"grip\": 62861,\n  \"group-arrows-rotate\": 58614,\n  \"guarani-sign\": 57754,\n  \"guitar-electric\": 63678,\n  \"guitar\": 63398,\n  \"guitars\": 63679,\n  \"gun-slash\": 57756,\n  \"gun-squirt\": 57757,\n  \"gun\": 57755,\n  \"h-square\": 61693,\n  \"h\": 72,\n  \"h1\": 62227,\n  \"h2\": 62228,\n  \"h3\": 62229,\n  \"h4\": 63594,\n  \"h5\": 58386,\n  \"h6\": 58387,\n  \"hamburger\": 63493,\n  \"hammer-brush\": 58912,\n  \"hammer-crash\": 58388,\n  \"hammer-war\": 63204,\n  \"hammer\": 63203,\n  \"hamsa\": 63077,\n  \"hand-back-fist\": 62037,\n  \"hand-back-point-down\": 57758,\n  \"hand-back-point-left\": 57759,\n  \"hand-back-point-ribbon\": 57760,\n  \"hand-back-point-right\": 57761,\n  \"hand-back-point-up\": 57762,\n  \"hand-dots\": 62561,\n  \"hand-fingers-crossed\": 57763,\n  \"hand-fist\": 63198,\n  \"hand-heart\": 62652,\n  \"hand-holding-box\": 62587,\n  \"hand-holding-circle-dollar\": 58913,\n  \"hand-holding-dollar\": 62656,\n  \"hand-holding-droplet\": 62657,\n  \"hand-holding-hand\": 58615,\n  \"hand-holding-heart\": 62654,\n  \"hand-holding-magic\": 63205,\n  \"hand-holding-medical\": 57436,\n  \"hand-holding-seedling\": 62655,\n  \"hand-holding-skull\": 57764,\n  \"hand-holding-star\": 59393,\n  \"hand-holding-usd\": 62656,\n  \"hand-holding-water\": 62657,\n  \"hand-holding\": 62653,\n  \"hand-horns\": 57769,\n  \"hand-lizard\": 62040,\n  \"hand-love\": 57765,\n  \"hand-middle-finger\": 63494,\n  \"hand-paper\": 62038,\n  \"hand-peace\": 62043,\n  \"hand-point-down\": 61607,\n  \"hand-point-left\": 61605,\n  \"hand-point-ribbon\": 57766,\n  \"hand-point-right\": 61604,\n  \"hand-point-up\": 61606,\n  \"hand-pointer\": 62042,\n  \"hand-receiving\": 62588,\n  \"hand-rock\": 62037,\n  \"hand-scissors\": 62039,\n  \"hand-shaka\": 59441,\n  \"hand-sparkles\": 57437,\n  \"hand-spock\": 62041,\n  \"hand-wave\": 57767,\n  \"hand\": 62038,\n  \"handcuffs\": 58616,\n  \"hands-american-sign-language-interpreting\": 62115,\n  \"hands-asl-interpreting\": 62115,\n  \"hands-bound\": 58617,\n  \"hands-bubbles\": 57438,\n  \"hands-clapping\": 57768,\n  \"hands-heart\": 62659,\n  \"hands-helping\": 62660,\n  \"hands-holding-child\": 58618,\n  \"hands-holding-circle\": 58619,\n  \"hands-holding-diamond\": 62588,\n  \"hands-holding-dollar\": 62661,\n  \"hands-holding-heart\": 62659,\n  \"hands-holding\": 62658,\n  \"hands-praying\": 63108,\n  \"hands-usd\": 62661,\n  \"hands-wash\": 57438,\n  \"hands\": 62119,\n  \"handshake-alt-slash\": 57440,\n  \"handshake-alt\": 62133,\n  \"handshake-angle\": 62660,\n  \"handshake-simple-slash\": 57440,\n  \"handshake-simple\": 62133,\n  \"handshake-slash\": 57440,\n  \"handshake\": 62133,\n  \"hanukiah\": 63206,\n  \"hard-drive\": 61600,\n  \"hard-hat\": 63495,\n  \"hard-of-hearing\": 62116,\n  \"hashtag-lock\": 58389,\n  \"hashtag\": 35,\n  \"hat-beach\": 58886,\n  \"hat-chef\": 63595,\n  \"hat-cowboy-side\": 63681,\n  \"hat-cowboy\": 63680,\n  \"hat-hard\": 63495,\n  \"hat-santa\": 63399,\n  \"hat-winter\": 63400,\n  \"hat-witch\": 63207,\n  \"hat-wizard\": 63208,\n  \"haykal\": 63078,\n  \"hdd\": 61600,\n  \"head-side-brain\": 63496,\n  \"head-side-circuit\": 59230,\n  \"head-side-cough-slash\": 57442,\n  \"head-side-cough\": 57441,\n  \"head-side-gear\": 58897,\n  \"head-side-goggles\": 63210,\n  \"head-side-headphones\": 63682,\n  \"head-side-heart\": 57770,\n  \"head-side-mask\": 57443,\n  \"head-side-medical\": 63497,\n  \"head-side-speak\": 59231,\n  \"head-side-virus\": 57444,\n  \"head-side\": 63209,\n  \"head-vr\": 63210,\n  \"header\": 61916,\n  \"heading\": 61916,\n  \"headphones-alt\": 61477,\n  \"headphones-simple\": 61477,\n  \"headphones-slash\": 59260,\n  \"headphones\": 61477,\n  \"headset\": 62864,\n  \"heart-broken\": 63401,\n  \"heart-circle-bolt\": 58620,\n  \"heart-circle-check\": 58621,\n  \"heart-circle-exclamation\": 58622,\n  \"heart-circle-minus\": 58623,\n  \"heart-circle-plus\": 58624,\n  \"heart-circle-xmark\": 58625,\n  \"heart-circle\": 62663,\n  \"heart-crack\": 63401,\n  \"heart-half-alt\": 57772,\n  \"heart-half-stroke\": 57772,\n  \"heart-half\": 57771,\n  \"heart-music-camera-bolt\": 63597,\n  \"heart-pulse\": 61982,\n  \"heart-rate\": 62968,\n  \"heart-slash\": 59278,\n  \"heart-square\": 62664,\n  \"heart\": 61444,\n  \"heartbeat\": 61982,\n  \"hearts\": 59279,\n  \"heat\": 57356,\n  \"helicopter-symbol\": 58626,\n  \"helicopter\": 62771,\n  \"helmet-battle\": 63211,\n  \"helmet-safety\": 63495,\n  \"helmet-un\": 58627,\n  \"heptagon\": 59424,\n  \"hexagon-check\": 58390,\n  \"hexagon-divide\": 57773,\n  \"hexagon-equals\": 59058,\n  \"hexagon-exclamation\": 58391,\n  \"hexagon-image\": 58628,\n  \"hexagon-minus\": 62215,\n  \"hexagon-nodes-bolt\": 59034,\n  \"hexagon-nodes\": 59033,\n  \"hexagon-plus\": 62208,\n  \"hexagon-vertical-nft-slanted\": 58629,\n  \"hexagon-vertical-nft\": 58629,\n  \"hexagon-xmark\": 62190,\n  \"hexagon\": 62226,\n  \"high-definition\": 57774,\n  \"highlighter-line\": 57775,\n  \"highlighter\": 62865,\n  \"hiking\": 63212,\n  \"hill-avalanche\": 58631,\n  \"hill-rockslide\": 58632,\n  \"hippo\": 63213,\n  \"history\": 61914,\n  \"hockey-mask\": 63214,\n  \"hockey-puck\": 62547,\n  \"hockey-stick-puck\": 58286,\n  \"hockey-stick\": 59366,\n  \"hockey-sticks\": 62548,\n  \"holly-berry\": 63402,\n  \"home-alt\": 61461,\n  \"home-blank\": 58503,\n  \"home-heart\": 62665,\n  \"home-lg-alt\": 61461,\n  \"home-lg\": 58287,\n  \"home-user\": 57776,\n  \"home\": 61461,\n  \"honey-pot\": 58392,\n  \"hood-cloak\": 63215,\n  \"horizontal-rule\": 63596,\n  \"horse-head\": 63403,\n  \"horse-saddle\": 63683,\n  \"horse\": 63216,\n  \"horseshoe\": 59418,\n  \"hose-reel\": 58394,\n  \"hose\": 58393,\n  \"hospital-alt\": 61688,\n  \"hospital-symbol\": 62590,\n  \"hospital-user\": 63501,\n  \"hospital-wide\": 61688,\n  \"hospital\": 61688,\n  \"hospitals\": 63502,\n  \"hot-tub-person\": 62867,\n  \"hot-tub\": 62867,\n  \"hotdog\": 63503,\n  \"hotel\": 62868,\n  \"hourglass-1\": 62033,\n  \"hourglass-2\": 62034,\n  \"hourglass-3\": 62035,\n  \"hourglass-clock\": 58395,\n  \"hourglass-empty\": 62036,\n  \"hourglass-end\": 62035,\n  \"hourglass-half\": 62034,\n  \"hourglass-start\": 62033,\n  \"hourglass\": 62036,\n  \"house-blank\": 58503,\n  \"house-building\": 57777,\n  \"house-chimney-blank\": 58288,\n  \"house-chimney-crack\": 63217,\n  \"house-chimney-heart\": 57778,\n  \"house-chimney-medical\": 63474,\n  \"house-chimney-user\": 57445,\n  \"house-chimney-window\": 57357,\n  \"house-chimney\": 58287,\n  \"house-circle-check\": 58633,\n  \"house-circle-exclamation\": 58634,\n  \"house-circle-xmark\": 58635,\n  \"house-crack\": 58289,\n  \"house-damage\": 63217,\n  \"house-day\": 57358,\n  \"house-fire\": 58636,\n  \"house-flag\": 58637,\n  \"house-flood-water-circle-arrow-right\": 58639,\n  \"house-flood-water\": 58638,\n  \"house-flood\": 63311,\n  \"house-heart\": 62665,\n  \"house-laptop\": 57446,\n  \"house-leave\": 57359,\n  \"house-lock\": 58640,\n  \"house-medical-circle-check\": 58641,\n  \"house-medical-circle-exclamation\": 58642,\n  \"house-medical-circle-xmark\": 58643,\n  \"house-medical-flag\": 58644,\n  \"house-medical\": 58290,\n  \"house-night\": 57360,\n  \"house-person-arrive\": 57361,\n  \"house-person-depart\": 57359,\n  \"house-person-leave\": 57359,\n  \"house-person-return\": 57361,\n  \"house-return\": 57361,\n  \"house-signal\": 57362,\n  \"house-tree\": 57779,\n  \"house-tsunami\": 58645,\n  \"house-turret\": 57780,\n  \"house-unlock\": 59082,\n  \"house-user\": 57776,\n  \"house-water\": 63311,\n  \"house-window\": 58291,\n  \"house\": 61461,\n  \"hryvnia-sign\": 63218,\n  \"hryvnia\": 63218,\n  \"humidity\": 63312,\n  \"hundred-points\": 58396,\n  \"hurricane\": 63313,\n  \"hydra\": 59014,\n  \"hyphen\": 45,\n  \"i-cursor\": 62022,\n  \"i\": 73,\n  \"ice-cream\": 63504,\n  \"ice-skate\": 63404,\n  \"icicles\": 63405,\n  \"icons-alt\": 63598,\n  \"icons\": 63597,\n  \"id-badge\": 62145,\n  \"id-card-alt\": 62591,\n  \"id-card-clip\": 62591,\n  \"id-card\": 62146,\n  \"igloo\": 63406,\n  \"ils\": 61963,\n  \"image-broken\": 59562,\n  \"image-circle-arrow-down\": 59244,\n  \"image-circle-check\": 59245,\n  \"image-circle-plus\": 59246,\n  \"image-circle-xmark\": 59247,\n  \"image-landscape\": 57781,\n  \"image-music\": 59248,\n  \"image-polaroid-user\": 57782,\n  \"image-polaroid\": 63684,\n  \"image-portrait\": 62432,\n  \"image-slash\": 57783,\n  \"image-stack\": 59249,\n  \"image-user\": 57784,\n  \"image\": 61502,\n  \"images-user\": 57785,\n  \"images\": 62210,\n  \"inbox-arrow-down\": 62224,\n  \"inbox-arrow-up\": 62225,\n  \"inbox-full\": 57786,\n  \"inbox-in\": 62224,\n  \"inbox-out\": 62225,\n  \"inbox\": 61468,\n  \"inboxes\": 57787,\n  \"indent\": 61500,\n  \"indian-rupee-sign\": 57788,\n  \"indian-rupee\": 57788,\n  \"industry-alt\": 62387,\n  \"industry-windows\": 62387,\n  \"industry\": 62069,\n  \"infinity\": 62772,\n  \"info-circle\": 61530,\n  \"info-square\": 62223,\n  \"info\": 61737,\n  \"inhaler\": 62969,\n  \"input-numeric\": 57789,\n  \"input-password\": 59517,\n  \"input-pipe\": 57790,\n  \"input-text\": 57791,\n  \"inr\": 57788,\n  \"institution\": 61852,\n  \"integral\": 63079,\n  \"interrobang\": 58810,\n  \"intersection\": 63080,\n  \"inventory\": 62592,\n  \"island-tree-palm\": 63505,\n  \"island-tropical\": 63505,\n  \"italic\": 61491,\n  \"j\": 74,\n  \"jack-o-lantern\": 62222,\n  \"jar-wheat\": 58647,\n  \"jar\": 58646,\n  \"jeans-straight\": 59091,\n  \"jeans\": 59090,\n  \"jedi\": 63081,\n  \"jet-fighter-up\": 58648,\n  \"jet-fighter\": 61691,\n  \"joint\": 62869,\n  \"journal-whills\": 63082,\n  \"joystick\": 63685,\n  \"jpy\": 61783,\n  \"jug-bottle\": 58875,\n  \"jug-detergent\": 58649,\n  \"jug\": 63686,\n  \"k\": 75,\n  \"kaaba\": 63083,\n  \"kayak\": 59547,\n  \"kazoo\": 63687,\n  \"kerning\": 63599,\n  \"kettlebell\": 59442,\n  \"key-skeleton-left-right\": 58292,\n  \"key-skeleton\": 63219,\n  \"key\": 61572,\n  \"keyboard-brightness-low\": 57793,\n  \"keyboard-brightness\": 57792,\n  \"keyboard-down\": 57794,\n  \"keyboard-left\": 57795,\n  \"keyboard\": 61724,\n  \"keynote\": 63084,\n  \"khanda\": 63085,\n  \"kidneys\": 62971,\n  \"kip-sign\": 57796,\n  \"kiss-beam\": 62871,\n  \"kiss-wink-heart\": 62872,\n  \"kiss\": 62870,\n  \"kit-medical\": 62585,\n  \"kitchen-set\": 58650,\n  \"kite\": 63220,\n  \"kiwi-bird\": 62773,\n  \"kiwi-fruit\": 58124,\n  \"knife-kitchen\": 63221,\n  \"knife\": 62180,\n  \"krw\": 61785,\n  \"l\": 76,\n  \"label\": 59559,\n  \"lacrosse-stick-ball\": 58294,\n  \"lacrosse-stick\": 58293,\n  \"ladder-water\": 62917,\n  \"lambda\": 63086,\n  \"lamp-desk\": 57364,\n  \"lamp-floor\": 57365,\n  \"lamp-street\": 57797,\n  \"lamp\": 62666,\n  \"land-mine-on\": 58651,\n  \"landmark-alt\": 63314,\n  \"landmark-dome\": 63314,\n  \"landmark-flag\": 58652,\n  \"landmark-magnifying-glass\": 58914,\n  \"landmark\": 63087,\n  \"landscape\": 57781,\n  \"language\": 61867,\n  \"laptop-arrow-down\": 57798,\n  \"laptop-binary\": 58855,\n  \"laptop-code\": 62972,\n  \"laptop-file\": 58653,\n  \"laptop-house\": 57446,\n  \"laptop-medical\": 63506,\n  \"laptop-mobile\": 63610,\n  \"laptop-slash\": 57799,\n  \"laptop\": 61705,\n  \"lari-sign\": 57800,\n  \"lasso-sparkles\": 57801,\n  \"lasso\": 63688,\n  \"laugh-beam\": 62874,\n  \"laugh-squint\": 62875,\n  \"laugh-wink\": 62876,\n  \"laugh\": 62873,\n  \"layer-group-minus\": 62974,\n  \"layer-group-plus\": 62975,\n  \"layer-group\": 62973,\n  \"layer-minus\": 62974,\n  \"layer-plus\": 62975,\n  \"layer\": 59455,\n  \"leaf-heart\": 62667,\n  \"leaf-maple\": 63222,\n  \"leaf-oak\": 63223,\n  \"leaf\": 61548,\n  \"leafy-green\": 58397,\n  \"left-from-bracket\": 58988,\n  \"left-from-dotted-line\": 59074,\n  \"left-from-line\": 62280,\n  \"left-long-to-line\": 58398,\n  \"left-long\": 62218,\n  \"left-right\": 62263,\n  \"left-to-bracket\": 58989,\n  \"left-to-dotted-line\": 59075,\n  \"left-to-line\": 62283,\n  \"left\": 62293,\n  \"legal\": 61667,\n  \"lemon\": 61588,\n  \"leo\": 59466,\n  \"less-than-equal\": 62775,\n  \"less-than\": 60,\n  \"level-down-alt\": 62398,\n  \"level-down\": 61769,\n  \"level-up-alt\": 62399,\n  \"level-up\": 61768,\n  \"libra\": 59467,\n  \"life-ring\": 61901,\n  \"light-ceiling\": 57366,\n  \"light-emergency-on\": 58400,\n  \"light-emergency\": 58399,\n  \"light-switch-off\": 57368,\n  \"light-switch-on\": 57369,\n  \"light-switch\": 57367,\n  \"lightbulb-cfl-on\": 58791,\n  \"lightbulb-cfl\": 58790,\n  \"lightbulb-dollar\": 63088,\n  \"lightbulb-exclamation-on\": 57802,\n  \"lightbulb-exclamation\": 63089,\n  \"lightbulb-gear\": 58877,\n  \"lightbulb-message\": 59015,\n  \"lightbulb-on\": 63090,\n  \"lightbulb-slash\": 63091,\n  \"lightbulb\": 61675,\n  \"lighthouse\": 58898,\n  \"lights-holiday\": 63410,\n  \"line-chart\": 61953,\n  \"line-columns\": 63600,\n  \"line-height\": 63601,\n  \"lines-leaning\": 58654,\n  \"link-broken\": 59458,\n  \"link-horizontal-slash\": 57804,\n  \"link-horizontal\": 57803,\n  \"link-simple-slash\": 57806,\n  \"link-simple\": 57805,\n  \"link-slash\": 61735,\n  \"link\": 61633,\n  \"lips\": 62976,\n  \"lira-sign\": 61845,\n  \"list-1-2\": 61643,\n  \"list-alt\": 61474,\n  \"list-check\": 61614,\n  \"list-dots\": 61642,\n  \"list-dropdown\": 57807,\n  \"list-music\": 63689,\n  \"list-numeric\": 61643,\n  \"list-ol\": 61643,\n  \"list-radio\": 57808,\n  \"list-squares\": 61498,\n  \"list-timeline\": 57809,\n  \"list-tree\": 57810,\n  \"list-ul\": 61642,\n  \"list\": 61498,\n  \"litecoin-sign\": 57811,\n  \"loader\": 57812,\n  \"lobster\": 58401,\n  \"location-arrow-slash\": 59258,\n  \"location-arrow-up\": 58938,\n  \"location-arrow\": 61732,\n  \"location-check\": 62982,\n  \"location-circle\": 62978,\n  \"location-crosshairs-slash\": 62979,\n  \"location-crosshairs\": 62977,\n  \"location-dot-slash\": 62981,\n  \"location-dot\": 62405,\n  \"location-exclamation\": 62984,\n  \"location-minus\": 62985,\n  \"location-pen\": 62983,\n  \"location-pin-lock\": 58655,\n  \"location-pin-slash\": 62988,\n  \"location-pin\": 61505,\n  \"location-plus\": 62986,\n  \"location-question\": 62987,\n  \"location-slash\": 62979,\n  \"location-smile\": 62989,\n  \"location-xmark\": 62990,\n  \"location\": 62977,\n  \"lock-a\": 58402,\n  \"lock-alt\": 62221,\n  \"lock-hashtag\": 58403,\n  \"lock-keyhole-open\": 62402,\n  \"lock-keyhole\": 62221,\n  \"lock-open-alt\": 62402,\n  \"lock-open\": 62401,\n  \"lock\": 61475,\n  \"locust\": 58656,\n  \"lollipop\": 58404,\n  \"lollypop\": 58404,\n  \"long-arrow-alt-down\": 62217,\n  \"long-arrow-alt-left\": 62218,\n  \"long-arrow-alt-right\": 62219,\n  \"long-arrow-alt-up\": 62220,\n  \"long-arrow-down\": 61813,\n  \"long-arrow-left\": 61815,\n  \"long-arrow-right\": 61816,\n  \"long-arrow-up\": 61814,\n  \"loveseat\": 62668,\n  \"low-vision\": 62120,\n  \"luchador-mask\": 62549,\n  \"luchador\": 62549,\n  \"luggage-cart\": 62877,\n  \"lungs-virus\": 57447,\n  \"lungs\": 62980,\n  \"lychee\": 59428,\n  \"m\": 77,\n  \"mace\": 63224,\n  \"magic-wand-sparkles\": 58058,\n  \"magic\": 61648,\n  \"magnet\": 61558,\n  \"magnifying-glass-arrow-right\": 58657,\n  \"magnifying-glass-arrows-rotate\": 58974,\n  \"magnifying-glass-chart\": 58658,\n  \"magnifying-glass-dollar\": 63112,\n  \"magnifying-glass-location\": 63113,\n  \"magnifying-glass-minus\": 61456,\n  \"magnifying-glass-music\": 58975,\n  \"magnifying-glass-play\": 58976,\n  \"magnifying-glass-plus\": 61454,\n  \"magnifying-glass-waveform\": 58977,\n  \"magnifying-glass\": 61442,\n  \"mail-bulk\": 63092,\n  \"mail-forward\": 61540,\n  \"mail-reply-all\": 61730,\n  \"mail-reply\": 62437,\n  \"mailbox-flag-up\": 58811,\n  \"mailbox-open-empty\": 59425,\n  \"mailbox-open-letter\": 59427,\n  \"mailbox\": 63507,\n  \"maki-roll\": 58507,\n  \"makizushi\": 58507,\n  \"malaysian-ringgit-sign\": 59130,\n  \"male\": 61827,\n  \"manat-sign\": 57813,\n  \"mandolin\": 63225,\n  \"mango\": 58127,\n  \"manhole\": 57814,\n  \"map-location-dot\": 62880,\n  \"map-location\": 62879,\n  \"map-marked-alt\": 62880,\n  \"map-marked\": 62879,\n  \"map-marker-alt-slash\": 62981,\n  \"map-marker-alt\": 62405,\n  \"map-marker-check\": 62982,\n  \"map-marker-edit\": 62983,\n  \"map-marker-exclamation\": 62984,\n  \"map-marker-minus\": 62985,\n  \"map-marker-plus\": 62986,\n  \"map-marker-question\": 62987,\n  \"map-marker-slash\": 62988,\n  \"map-marker-smile\": 62989,\n  \"map-marker-times\": 62990,\n  \"map-marker-xmark\": 62990,\n  \"map-marker\": 61505,\n  \"map-pin\": 62070,\n  \"map-signs\": 62071,\n  \"map\": 62073,\n  \"marker\": 62881,\n  \"mars-and-venus-burst\": 58659,\n  \"mars-and-venus\": 61988,\n  \"mars-double\": 61991,\n  \"mars-stroke-h\": 61995,\n  \"mars-stroke-right\": 61995,\n  \"mars-stroke-up\": 61994,\n  \"mars-stroke-v\": 61994,\n  \"mars-stroke\": 61993,\n  \"mars\": 61986,\n  \"martini-glass-citrus\": 62817,\n  \"martini-glass-empty\": 61440,\n  \"martini-glass\": 62843,\n  \"mask-face\": 57815,\n  \"mask-luchador\": 62549,\n  \"mask-snorkel\": 58295,\n  \"mask-ventilator\": 58660,\n  \"mask\": 63226,\n  \"masks-theater\": 63024,\n  \"mattress-pillow\": 58661,\n  \"maximize\": 62238,\n  \"meat\": 63508,\n  \"medal\": 62882,\n  \"medkit\": 61690,\n  \"megaphone\": 63093,\n  \"meh-blank\": 62884,\n  \"meh-rolling-eyes\": 62885,\n  \"meh\": 61722,\n  \"melon-slice\": 58129,\n  \"melon\": 58128,\n  \"memo-circle-check\": 57817,\n  \"memo-circle-info\": 58522,\n  \"memo-pad\": 57818,\n  \"memo\": 57816,\n  \"memory\": 62776,\n  \"menorah\": 63094,\n  \"mercury\": 61987,\n  \"merge\": 58662,\n  \"message-arrow-down\": 57819,\n  \"message-arrow-up-right\": 57821,\n  \"message-arrow-up\": 57820,\n  \"message-bot\": 58296,\n  \"message-captions\": 57822,\n  \"message-check\": 62626,\n  \"message-code\": 57823,\n  \"message-dollar\": 63056,\n  \"message-dot\": 59103,\n  \"message-dots\": 62627,\n  \"message-edit\": 62628,\n  \"message-exclamation\": 62629,\n  \"message-heart\": 58825,\n  \"message-image\": 57824,\n  \"message-lines\": 62630,\n  \"message-medical\": 63476,\n  \"message-middle-top\": 57826,\n  \"message-middle\": 57825,\n  \"message-minus\": 62631,\n  \"message-music\": 63663,\n  \"message-pen\": 62628,\n  \"message-plus\": 62632,\n  \"message-question\": 57827,\n  \"message-quote\": 57828,\n  \"message-slash\": 62633,\n  \"message-smile\": 62634,\n  \"message-sms\": 57829,\n  \"message-text\": 57830,\n  \"message-times\": 62635,\n  \"message-waveform\": 59104,\n  \"message-xmark\": 62635,\n  \"message\": 62074,\n  \"messages-dollar\": 63058,\n  \"messages-question\": 57831,\n  \"messages\": 62646,\n  \"messaging\": 62627,\n  \"meteor\": 63315,\n  \"meter-bolt\": 57833,\n  \"meter-droplet\": 57834,\n  \"meter-fire\": 57835,\n  \"meter\": 57832,\n  \"microchip-ai\": 57836,\n  \"microchip\": 62171,\n  \"microphone-alt-slash\": 62777,\n  \"microphone-alt\": 62409,\n  \"microphone-circle-alt\": 57623,\n  \"microphone-circle-plus\": 59261,\n  \"microphone-circle-xmark\": 59262,\n  \"microphone-circle\": 57622,\n  \"microphone-lines-slash\": 62777,\n  \"microphone-lines\": 62409,\n  \"microphone-signal-meter\": 59232,\n  \"microphone-slash\": 61745,\n  \"microphone-stand\": 63691,\n  \"microphone\": 61744,\n  \"microscope\": 62992,\n  \"microwave\": 57371,\n  \"midi\": 59398,\n  \"mill-sign\": 57837,\n  \"mind-share\": 63095,\n  \"minimize\": 63372,\n  \"minus-circle\": 61526,\n  \"minus-hexagon\": 62215,\n  \"minus-large\": 58372,\n  \"minus-octagon\": 62216,\n  \"minus-square\": 61766,\n  \"minus\": 61544,\n  \"mistletoe\": 63412,\n  \"mitten\": 63413,\n  \"mobile-alt\": 62413,\n  \"mobile-android-alt\": 62415,\n  \"mobile-android\": 62414,\n  \"mobile-arrow-down\": 59211,\n  \"mobile-button\": 61707,\n  \"mobile-iphone\": 57838,\n  \"mobile-notch\": 57838,\n  \"mobile-phone\": 62414,\n  \"mobile-retro\": 58663,\n  \"mobile-rotate-reverse\": 59412,\n  \"mobile-rotate\": 59411,\n  \"mobile-screen-button\": 62413,\n  \"mobile-screen\": 62415,\n  \"mobile-signal-out\": 57840,\n  \"mobile-signal\": 57839,\n  \"mobile-slash\": 59413,\n  \"mobile-vibrate-slash\": 59415,\n  \"mobile-vibrate\": 59414,\n  \"mobile\": 62414,\n  \"money-bill-1-wave\": 62779,\n  \"money-bill-1\": 62417,\n  \"money-bill-alt\": 62417,\n  \"money-bill-simple-wave\": 57842,\n  \"money-bill-simple\": 57841,\n  \"money-bill-transfer\": 58664,\n  \"money-bill-trend-up\": 58665,\n  \"money-bill-wave-alt\": 62779,\n  \"money-bill-wave\": 62778,\n  \"money-bill-wheat\": 58666,\n  \"money-bill\": 61654,\n  \"money-bills-alt\": 57844,\n  \"money-bills-simple\": 57844,\n  \"money-bills\": 57843,\n  \"money-check-alt\": 62781,\n  \"money-check-dollar-pen\": 63603,\n  \"money-check-dollar\": 62781,\n  \"money-check-edit-alt\": 63603,\n  \"money-check-edit\": 63602,\n  \"money-check-pen\": 63602,\n  \"money-check\": 62780,\n  \"money-from-bracket\": 58130,\n  \"money-simple-from-bracket\": 58131,\n  \"monitor-heart-rate\": 62993,\n  \"monitor-waveform\": 62993,\n  \"monkey\": 63227,\n  \"monument\": 62886,\n  \"moon-cloud\": 63316,\n  \"moon-first-quarter-inverse\": 59506,\n  \"moon-first-quarter\": 59504,\n  \"moon-full-inverse\": 59507,\n  \"moon-full\": 59505,\n  \"moon-last-quarter-inverse\": 59504,\n  \"moon-last-quarter\": 59506,\n  \"moon-new-inverse\": 59505,\n  \"moon-new\": 59507,\n  \"moon-over-sun\": 63306,\n  \"moon-star\": 59337,\n  \"moon-stars\": 63317,\n  \"moon-waning-crescent-inverse\": 59511,\n  \"moon-waning-crescent\": 59508,\n  \"moon-waning-gibbous-inverse\": 59510,\n  \"moon-waning-gibbous\": 59509,\n  \"moon-waxing-crescent-inverse\": 59509,\n  \"moon-waxing-crescent\": 59510,\n  \"moon-waxing-gibbous-inverse\": 59508,\n  \"moon-waxing-gibbous\": 59511,\n  \"moon\": 61830,\n  \"moped\": 58297,\n  \"mortar-board\": 61853,\n  \"mortar-pestle\": 62887,\n  \"mosque\": 63096,\n  \"mosquito-net\": 58668,\n  \"mosquito\": 58667,\n  \"motorcycle\": 61980,\n  \"mound\": 58669,\n  \"mountain-city\": 58670,\n  \"mountain-sun\": 58671,\n  \"mountain\": 63228,\n  \"mountains\": 63229,\n  \"mouse-alt\": 63693,\n  \"mouse-field\": 58792,\n  \"mouse-pointer\": 62021,\n  \"mouse\": 63692,\n  \"mp3-player\": 63694,\n  \"mug-hot\": 63414,\n  \"mug-marshmallows\": 63415,\n  \"mug-saucer\": 61684,\n  \"mug-tea-saucer\": 57845,\n  \"mug-tea\": 63605,\n  \"mug\": 63604,\n  \"multiply\": 61453,\n  \"museum\": 61852,\n  \"mushroom\": 58405,\n  \"music-alt-slash\": 63696,\n  \"music-alt\": 63695,\n  \"music-magnifying-glass\": 58978,\n  \"music-note-slash\": 63696,\n  \"music-note\": 63695,\n  \"music-slash\": 63697,\n  \"music\": 61441,\n  \"mustache\": 58812,\n  \"n\": 78,\n  \"naira-sign\": 57846,\n  \"narwhal\": 63230,\n  \"nas\": 59553,\n  \"navicon\": 61641,\n  \"nesting-dolls\": 58298,\n  \"network-wired\": 63231,\n  \"neuter\": 61996,\n  \"newspaper\": 61930,\n  \"nfc-lock\": 57848,\n  \"nfc-magnifying-glass\": 57849,\n  \"nfc-pen\": 57850,\n  \"nfc-signal\": 57851,\n  \"nfc-slash\": 57852,\n  \"nfc-symbol\": 58673,\n  \"nfc-trash\": 57853,\n  \"nfc\": 57847,\n  \"nigiri\": 58506,\n  \"non-binary\": 59399,\n  \"norwegian-krone-sign\": 59112,\n  \"nose\": 58813,\n  \"not-equal\": 62782,\n  \"notdef\": 57854,\n  \"note-medical\": 57856,\n  \"note-sticky\": 62025,\n  \"note\": 57855,\n  \"notebook\": 57857,\n  \"notes-medical\": 62593,\n  \"notes-sticky\": 59225,\n  \"notes\": 57858,\n  \"numpad\": 59340,\n  \"o\": 79,\n  \"oar\": 59524,\n  \"oars\": 59525,\n  \"object-exclude\": 58524,\n  \"object-group\": 62023,\n  \"object-intersect\": 58525,\n  \"object-subtract\": 58526,\n  \"object-ungroup\": 62024,\n  \"object-union\": 58527,\n  \"objects-align-bottom\": 58299,\n  \"objects-align-center-horizontal\": 58300,\n  \"objects-align-center-vertical\": 58301,\n  \"objects-align-left\": 58302,\n  \"objects-align-right\": 58303,\n  \"objects-align-top\": 58304,\n  \"objects-column\": 58305,\n  \"octagon-check\": 58406,\n  \"octagon-divide\": 57859,\n  \"octagon-equals\": 59059,\n  \"octagon-exclamation\": 57860,\n  \"octagon-minus\": 62216,\n  \"octagon-plus\": 62209,\n  \"octagon-xmark\": 62192,\n  \"octagon\": 62214,\n  \"octopus\": 59016,\n  \"oil-can-drip\": 57861,\n  \"oil-can\": 62995,\n  \"oil-temp\": 62996,\n  \"oil-temperature\": 62996,\n  \"oil-well\": 58674,\n  \"olive-branch\": 58135,\n  \"olive\": 58134,\n  \"om\": 63097,\n  \"omega\": 63098,\n  \"onion\": 58407,\n  \"open-captioning\": 59263,\n  \"opossum\": 59516,\n  \"option\": 58136,\n  \"ornament\": 63416,\n  \"otter\": 63232,\n  \"outdent\": 61499,\n  \"outlet\": 57372,\n  \"oven\": 57373,\n  \"overline\": 63606,\n  \"owl\": 59551,\n  \"p\": 80,\n  \"page-break\": 63607,\n  \"page-caret-down\": 58409,\n  \"page-caret-up\": 58410,\n  \"page\": 58408,\n  \"pager\": 63509,\n  \"paint-brush-alt\": 62889,\n  \"paint-brush-fine\": 62889,\n  \"paint-brush\": 61948,\n  \"paint-roller\": 62890,\n  \"paintbrush-alt\": 62889,\n  \"paintbrush-fine-slash\": 59213,\n  \"paintbrush-fine\": 62889,\n  \"paintbrush-pencil\": 57862,\n  \"paintbrush-slash\": 59214,\n  \"paintbrush\": 61948,\n  \"palette-boxes\": 62595,\n  \"palette\": 62783,\n  \"pallet-alt\": 62595,\n  \"pallet-box\": 57864,\n  \"pallet-boxes\": 62595,\n  \"pallet\": 62594,\n  \"pan-food\": 58411,\n  \"pan-frying\": 58412,\n  \"pancakes\": 58413,\n  \"panel-ews\": 58414,\n  \"panel-fire\": 58415,\n  \"panorama\": 57865,\n  \"panties\": 59092,\n  \"pants-straight\": 59094,\n  \"pants\": 59093,\n  \"paper-plane-alt\": 57866,\n  \"paper-plane-top\": 57866,\n  \"paper-plane\": 61912,\n  \"paperclip-vertical\": 58306,\n  \"paperclip\": 61638,\n  \"parachute-box\": 62669,\n  \"paragraph-left\": 63608,\n  \"paragraph-rtl\": 63608,\n  \"paragraph\": 61917,\n  \"parentheses\": 57541,\n  \"parenthesis\": 40,\n  \"parking-circle-slash\": 62998,\n  \"parking-circle\": 62997,\n  \"parking-slash\": 62999,\n  \"parking\": 62784,\n  \"party-back\": 58460,\n  \"party-bell\": 58138,\n  \"party-horn\": 58139,\n  \"passport\": 62891,\n  \"pastafarianism\": 63099,\n  \"paste\": 61674,\n  \"pause-circle\": 62091,\n  \"pause\": 61516,\n  \"paw-alt\": 63233,\n  \"paw-claws\": 63234,\n  \"paw-simple\": 63233,\n  \"paw\": 61872,\n  \"peace\": 63100,\n  \"peach\": 57867,\n  \"peanut\": 58416,\n  \"peanuts\": 58417,\n  \"peapod\": 58140,\n  \"pear\": 57868,\n  \"pedestal\": 57869,\n  \"pegasus\": 63235,\n  \"pen-alt-slash\": 57871,\n  \"pen-alt\": 62213,\n  \"pen-circle\": 57870,\n  \"pen-clip-slash\": 57871,\n  \"pen-clip\": 62213,\n  \"pen-fancy-slash\": 57872,\n  \"pen-fancy\": 62892,\n  \"pen-field\": 57873,\n  \"pen-line\": 57874,\n  \"pen-nib-slash\": 58529,\n  \"pen-nib\": 62893,\n  \"pen-paintbrush\": 63000,\n  \"pen-ruler\": 62894,\n  \"pen-slash\": 57875,\n  \"pen-square\": 61771,\n  \"pen-swirl\": 57876,\n  \"pen-to-square\": 61508,\n  \"pen\": 62212,\n  \"pencil-alt\": 62211,\n  \"pencil-line\": 59215,\n  \"pencil-mechanical\": 58826,\n  \"pencil-paintbrush\": 63000,\n  \"pencil-ruler\": 62894,\n  \"pencil-slash\": 57877,\n  \"pencil-square\": 61771,\n  \"pencil\": 62211,\n  \"pennant\": 62550,\n  \"pentagon\": 59280,\n  \"people-arrows-left-right\": 57448,\n  \"people-arrows\": 57448,\n  \"people-carry-box\": 62670,\n  \"people-carry\": 62670,\n  \"people-dress-simple\": 57880,\n  \"people-dress\": 57879,\n  \"people-group\": 58675,\n  \"people-line\": 58676,\n  \"people-pants-simple\": 57882,\n  \"people-pants\": 57881,\n  \"people-pulling\": 58677,\n  \"people-robbery\": 58678,\n  \"people-roof\": 58679,\n  \"people-simple\": 57883,\n  \"people\": 57878,\n  \"pepper-hot\": 63510,\n  \"pepper\": 58418,\n  \"percent\": 37,\n  \"percentage\": 37,\n  \"period\": 46,\n  \"person-arms-raised\": 59267,\n  \"person-arrow-down-to-line\": 58680,\n  \"person-arrow-up-from-line\": 58681,\n  \"person-basketball\": 59268,\n  \"person-biking-mountain\": 63563,\n  \"person-biking\": 63562,\n  \"person-booth\": 63318,\n  \"person-breastfeeding\": 58682,\n  \"person-burst\": 58683,\n  \"person-cane\": 58684,\n  \"person-carry-box\": 62671,\n  \"person-carry-empty\": 59269,\n  \"person-carry\": 62671,\n  \"person-chalkboard\": 58685,\n  \"person-circle-check\": 58686,\n  \"person-circle-exclamation\": 58687,\n  \"person-circle-minus\": 58688,\n  \"person-circle-plus\": 58689,\n  \"person-circle-question\": 58690,\n  \"person-circle-xmark\": 58691,\n  \"person-digging\": 63582,\n  \"person-dolly-empty\": 62673,\n  \"person-dolly\": 62672,\n  \"person-dots-from-line\": 62576,\n  \"person-dress-burst\": 58692,\n  \"person-dress-fairy\": 58887,\n  \"person-dress-simple\": 57884,\n  \"person-dress\": 61826,\n  \"person-drowning\": 58693,\n  \"person-fairy\": 58888,\n  \"person-falling-burst\": 58695,\n  \"person-falling\": 58694,\n  \"person-from-portal\": 57379,\n  \"person-golfing\": 59270,\n  \"person-half-dress\": 58696,\n  \"person-harassing\": 58697,\n  \"person-hiking\": 63212,\n  \"person-limbs-wide\": 59271,\n  \"person-meditating\": 59361,\n  \"person-military-pointing\": 58698,\n  \"person-military-rifle\": 58699,\n  \"person-military-to-person\": 58700,\n  \"person-pinball\": 57885,\n  \"person-praying\": 63107,\n  \"person-pregnant\": 58142,\n  \"person-rays\": 58701,\n  \"person-rifle\": 58702,\n  \"person-running-fast\": 58879,\n  \"person-running\": 63244,\n  \"person-seat-reclined\": 57887,\n  \"person-seat-window\": 59272,\n  \"person-seat\": 57886,\n  \"person-shelter\": 58703,\n  \"person-sign\": 63319,\n  \"person-simple\": 57888,\n  \"person-skating\": 63429,\n  \"person-ski-jumping\": 63431,\n  \"person-ski-lift\": 63432,\n  \"person-skiing-nordic\": 63434,\n  \"person-skiing\": 63433,\n  \"person-sledding\": 63435,\n  \"person-snowboarding\": 63438,\n  \"person-snowmobiling\": 63441,\n  \"person-soccer\": 59273,\n  \"person-swimming-pool\": 59274,\n  \"person-swimming-water\": 59275,\n  \"person-swimming\": 62916,\n  \"person-through-window\": 58793,\n  \"person-to-door\": 58419,\n  \"person-to-portal\": 57378,\n  \"person-walking-arrow-loop-left\": 58705,\n  \"person-walking-arrow-right\": 58706,\n  \"person-walking-dashed-line-arrow-right\": 58707,\n  \"person-walking-luggage\": 58708,\n  \"person-walking-with-cane\": 62109,\n  \"person-walking\": 62804,\n  \"person-water-arms-raised\": 59276,\n  \"person-waving\": 59277,\n  \"person\": 61827,\n  \"peruvian-soles-sign\": 59141,\n  \"peseta-sign\": 57889,\n  \"peso-sign\": 57890,\n  \"phone-alt\": 63609,\n  \"phone-arrow-down-left\": 57891,\n  \"phone-arrow-down\": 57891,\n  \"phone-arrow-right\": 58814,\n  \"phone-arrow-up-right\": 57892,\n  \"phone-arrow-up\": 57892,\n  \"phone-circle-alt\": 57628,\n  \"phone-circle-down\": 57629,\n  \"phone-circle\": 57627,\n  \"phone-connection\": 59105,\n  \"phone-flip\": 63609,\n  \"phone-hangup\": 57893,\n  \"phone-incoming\": 57891,\n  \"phone-intercom\": 58420,\n  \"phone-laptop\": 63610,\n  \"phone-missed\": 57894,\n  \"phone-office\": 63101,\n  \"phone-outgoing\": 57892,\n  \"phone-plus\": 62674,\n  \"phone-rotary\": 63699,\n  \"phone-slash\": 62429,\n  \"phone-square-alt\": 63611,\n  \"phone-square-down\": 57978,\n  \"phone-square\": 61592,\n  \"phone-volume\": 62112,\n  \"phone-waveform\": 59106,\n  \"phone-xmark\": 57895,\n  \"phone\": 61589,\n  \"photo-film-music\": 57896,\n  \"photo-film\": 63612,\n  \"photo-video\": 63612,\n  \"pi\": 63102,\n  \"piano-keyboard\": 63701,\n  \"piano\": 63700,\n  \"pickaxe\": 58815,\n  \"pickleball\": 58421,\n  \"picture-in-picture\": 59403,\n  \"pie-chart\": 61952,\n  \"pie\": 63237,\n  \"pig\": 63238,\n  \"piggy-bank\": 62675,\n  \"pills\": 62596,\n  \"pinata\": 58307,\n  \"pinball\": 57897,\n  \"pineapple\": 58143,\n  \"ping-pong-paddle-ball\": 62557,\n  \"pipe-circle-check\": 58422,\n  \"pipe-collar\": 58423,\n  \"pipe-section\": 58424,\n  \"pipe-smoking\": 58308,\n  \"pipe-valve\": 58425,\n  \"pipe\": 124,\n  \"pisces\": 59468,\n  \"pizza-slice\": 63512,\n  \"pizza\": 63511,\n  \"place-of-worship\": 63103,\n  \"plane-alt\": 62430,\n  \"plane-arrival\": 62895,\n  \"plane-circle-check\": 58709,\n  \"plane-circle-exclamation\": 58710,\n  \"plane-circle-xmark\": 58711,\n  \"plane-departure\": 62896,\n  \"plane-engines\": 62430,\n  \"plane-flying\": 59323,\n  \"plane-landing-gear\": 59324,\n  \"plane-lock\": 58712,\n  \"plane-prop\": 57899,\n  \"plane-slash\": 57449,\n  \"plane-tail\": 57900,\n  \"plane-up-slash\": 57902,\n  \"plane-up\": 57901,\n  \"plane\": 61554,\n  \"planet-moon\": 57375,\n  \"planet-ringed\": 57376,\n  \"plant-wilt\": 58794,\n  \"plate-utensils\": 58427,\n  \"plate-wheat\": 58714,\n  \"play-circle\": 61764,\n  \"play-flip\": 59264,\n  \"play-pause\": 57903,\n  \"play\": 61515,\n  \"plug-circle-bolt\": 58715,\n  \"plug-circle-check\": 58716,\n  \"plug-circle-exclamation\": 58717,\n  \"plug-circle-minus\": 58718,\n  \"plug-circle-plus\": 58719,\n  \"plug-circle-xmark\": 58720,\n  \"plug\": 61926,\n  \"plus-circle\": 61525,\n  \"plus-hexagon\": 62208,\n  \"plus-large\": 58782,\n  \"plus-minus\": 58428,\n  \"plus-octagon\": 62209,\n  \"plus-square\": 61694,\n  \"plus\": 43,\n  \"podcast\": 62158,\n  \"podium-star\": 63320,\n  \"podium\": 63104,\n  \"poker-chip\": 59554,\n  \"police-box\": 57377,\n  \"polish-zloty-sign\": 59147,\n  \"poll-h\": 63106,\n  \"poll-people\": 63321,\n  \"poll\": 63105,\n  \"pompebled\": 58429,\n  \"poo-bolt\": 63322,\n  \"poo-storm\": 63322,\n  \"poo\": 62206,\n  \"pool-8-ball\": 58309,\n  \"poop\": 63001,\n  \"popcorn\": 63513,\n  \"popsicle\": 58430,\n  \"portal-enter\": 57378,\n  \"portal-exit\": 57379,\n  \"portrait\": 62432,\n  \"possum\": 59516,\n  \"postage-stamp\": 59107,\n  \"pot-food\": 58431,\n  \"potato\": 58432,\n  \"pound-sign\": 61780,\n  \"power-off\": 61457,\n  \"pray\": 63107,\n  \"praying-hands\": 63108,\n  \"prescription-bottle-alt\": 62598,\n  \"prescription-bottle-medical\": 62598,\n  \"prescription-bottle-pill\": 58816,\n  \"prescription-bottle\": 62597,\n  \"prescription\": 62897,\n  \"presentation-screen\": 63109,\n  \"presentation\": 63109,\n  \"pretzel\": 58433,\n  \"print-magnifying-glass\": 63514,\n  \"print-search\": 63514,\n  \"print-slash\": 63110,\n  \"print\": 61487,\n  \"pro\": 57909,\n  \"procedures\": 62599,\n  \"project-diagram\": 62786,\n  \"projector\": 63702,\n  \"pronoun\": 59041,\n  \"pump-impeller\": 59445,\n  \"pump-medical\": 57450,\n  \"pump-soap\": 57451,\n  \"pump\": 58434,\n  \"pumpkin\": 63239,\n  \"puzzle-piece-alt\": 57905,\n  \"puzzle-piece-simple\": 57905,\n  \"puzzle-piece\": 61742,\n  \"puzzle\": 58435,\n  \"q\": 81,\n  \"qrcode-read\": 59289,\n  \"qrcode\": 61481,\n  \"question-circle\": 61529,\n  \"question-square\": 62205,\n  \"question\": 63,\n  \"quidditch-broom-ball\": 62552,\n  \"quidditch\": 62552,\n  \"quote-left-alt\": 61709,\n  \"quote-left\": 61709,\n  \"quote-right-alt\": 61710,\n  \"quote-right\": 61710,\n  \"quotes\": 57908,\n  \"quran\": 63111,\n  \"r\": 82,\n  \"rabbit-fast\": 63241,\n  \"rabbit-running\": 63241,\n  \"rabbit\": 63240,\n  \"raccoon\": 58899,\n  \"racquet\": 62554,\n  \"radar\": 57380,\n  \"radiation-alt\": 63418,\n  \"radiation\": 63417,\n  \"radio-alt\": 63704,\n  \"radio-tuner\": 63704,\n  \"radio\": 63703,\n  \"rainbow-half\": 59338,\n  \"rainbow\": 63323,\n  \"raindrops\": 63324,\n  \"ram\": 63242,\n  \"ramp-loading\": 62676,\n  \"random\": 61556,\n  \"ranking-star\": 58721,\n  \"raygun\": 57381,\n  \"receipt\": 62787,\n  \"record-vinyl\": 63705,\n  \"rectangle-4k\": 59250,\n  \"rectangle-ad\": 63041,\n  \"rectangle-api\": 59552,\n  \"rectangle-barcode\": 62563,\n  \"rectangle-beta\": 59400,\n  \"rectangle-code\": 58146,\n  \"rectangle-hd\": 57774,\n  \"rectangle-hdr\": 59251,\n  \"rectangle-high-dynamic-range\": 59251,\n  \"rectangle-history-circle-plus\": 58531,\n  \"rectangle-history-circle-user\": 58532,\n  \"rectangle-history\": 58530,\n  \"rectangle-irc\": 59500,\n  \"rectangle-landscape\": 62202,\n  \"rectangle-list\": 61474,\n  \"rectangle-minus\": 59060,\n  \"rectangle-n-a\": 59560,\n  \"rectangle-new\": 59514,\n  \"rectangle-plus\": 59061,\n  \"rectangle-portrait\": 62203,\n  \"rectangle-pro\": 57909,\n  \"rectangle-sd\": 57994,\n  \"rectangle-tall\": 59281,\n  \"rectangle-terminal\": 57910,\n  \"rectangle-times\": 62480,\n  \"rectangle-vertical-history\": 57911,\n  \"rectangle-vertical\": 62203,\n  \"rectangle-video-on-demand\": 59252,\n  \"rectangle-wide\": 62204,\n  \"rectangle-xmark\": 62480,\n  \"rectangle\": 62202,\n  \"rectangles-mixed\": 58147,\n  \"recycle\": 61880,\n  \"redo-alt\": 62201,\n  \"redo\": 61470,\n  \"reel\": 57912,\n  \"reflect-both\": 58991,\n  \"reflect-horizontal\": 58980,\n  \"reflect-vertical\": 58981,\n  \"refresh\": 61473,\n  \"refrigerator\": 57382,\n  \"registered\": 62045,\n  \"remote\": 59561,\n  \"remove-format\": 63613,\n  \"remove\": 61453,\n  \"renminbi-sign\": 59196,\n  \"reorder\": 62800,\n  \"repeat-1-alt\": 62310,\n  \"repeat-1\": 62309,\n  \"repeat-alt\": 62308,\n  \"repeat\": 62307,\n  \"reply-all\": 61730,\n  \"reply-clock\": 57913,\n  \"reply-time\": 57913,\n  \"reply\": 62437,\n  \"republican\": 63326,\n  \"restroom-simple\": 57914,\n  \"restroom\": 63421,\n  \"retweet-alt\": 62305,\n  \"retweet\": 61561,\n  \"rhombus\": 57915,\n  \"ribbon\": 62678,\n  \"right-from-bracket\": 62197,\n  \"right-from-dotted-line\": 59076,\n  \"right-from-line\": 62279,\n  \"right-left-large\": 58849,\n  \"right-left\": 62306,\n  \"right-long-to-line\": 58436,\n  \"right-long\": 62219,\n  \"right-to-bracket\": 62198,\n  \"right-to-dotted-line\": 59077,\n  \"right-to-line\": 62284,\n  \"right\": 62294,\n  \"ring-diamond\": 58795,\n  \"ring\": 63243,\n  \"rings-wedding\": 63515,\n  \"rmb\": 61783,\n  \"road-barrier\": 58722,\n  \"road-bridge\": 58723,\n  \"road-circle-check\": 58724,\n  \"road-circle-exclamation\": 58725,\n  \"road-circle-xmark\": 58726,\n  \"road-lock\": 58727,\n  \"road-spikes\": 58728,\n  \"road\": 61464,\n  \"robot-astromech\": 58066,\n  \"robot\": 62788,\n  \"rocket-launch\": 57383,\n  \"rocket-vertical\": 59325,\n  \"rocket\": 61749,\n  \"rod-asclepius\": 58745,\n  \"rod-snake\": 58745,\n  \"roller-coaster\": 58148,\n  \"rotate-back\": 62186,\n  \"rotate-backward\": 62186,\n  \"rotate-exclamation\": 57916,\n  \"rotate-forward\": 62201,\n  \"rotate-left\": 62186,\n  \"rotate-reverse\": 58929,\n  \"rotate-right\": 62201,\n  \"rotate\": 62193,\n  \"rouble\": 61784,\n  \"route-highway\": 63002,\n  \"route-interstate\": 63003,\n  \"route\": 62679,\n  \"router\": 63706,\n  \"rows-3\": 59531,\n  \"rows\": 58002,\n  \"rss-square\": 61763,\n  \"rss\": 61598,\n  \"rub\": 61784,\n  \"ruble-sign\": 61784,\n  \"ruble\": 61784,\n  \"rug\": 58729,\n  \"rugby-ball\": 58310,\n  \"ruler-combined\": 62790,\n  \"ruler-horizontal\": 62791,\n  \"ruler-triangle\": 63004,\n  \"ruler-vertical\": 62792,\n  \"ruler\": 62789,\n  \"running\": 63244,\n  \"rupee-sign\": 61782,\n  \"rupee\": 61782,\n  \"rupiah-sign\": 57917,\n  \"rv\": 63422,\n  \"s\": 83,\n  \"sack-dollar\": 63517,\n  \"sack-xmark\": 58730,\n  \"sack\": 63516,\n  \"sad-cry\": 62899,\n  \"sad-tear\": 62900,\n  \"sagittarius\": 59469,\n  \"sailboat\": 58437,\n  \"salad\": 63518,\n  \"salt-shaker\": 58438,\n  \"sandwich\": 63519,\n  \"satellite-dish\": 63424,\n  \"satellite\": 63423,\n  \"sausage\": 63520,\n  \"save-circle-arrow-right\": 57728,\n  \"save-circle-xmark\": 57729,\n  \"save-times\": 57729,\n  \"save\": 61639,\n  \"sax-hot\": 63707,\n  \"saxophone-fire\": 63707,\n  \"saxophone\": 63708,\n  \"scale-balanced\": 62030,\n  \"scale-unbalanced-flip\": 62742,\n  \"scale-unbalanced\": 62741,\n  \"scalpel-line-dashed\": 63006,\n  \"scalpel-path\": 63006,\n  \"scalpel\": 63005,\n  \"scanner-gun\": 62600,\n  \"scanner-image\": 63731,\n  \"scanner-keyboard\": 62601,\n  \"scanner-touchscreen\": 62602,\n  \"scanner\": 62600,\n  \"scarecrow\": 63245,\n  \"scarf\": 63425,\n  \"school-circle-check\": 58731,\n  \"school-circle-exclamation\": 58732,\n  \"school-circle-xmark\": 58733,\n  \"school-flag\": 58734,\n  \"school-lock\": 58735,\n  \"school-unlock\": 59083,\n  \"school\": 62793,\n  \"scissors\": 61636,\n  \"scooter\": 59331,\n  \"scorpio\": 59470,\n  \"screen-users\": 63037,\n  \"screencast\": 57918,\n  \"screenshot\": 57562,\n  \"screwdriver-wrench\": 63449,\n  \"screwdriver\": 62794,\n  \"scribble\": 57919,\n  \"scroll-old\": 63247,\n  \"scroll-ribbon\": 62954,\n  \"scroll-torah\": 63136,\n  \"scroll\": 63246,\n  \"scrubber\": 62200,\n  \"scythe\": 63248,\n  \"sd-card\": 63426,\n  \"sd-cards\": 57920,\n  \"seal-exclamation\": 57922,\n  \"seal-question\": 57923,\n  \"seal\": 57921,\n  \"search-dollar\": 63112,\n  \"search-location\": 63113,\n  \"search-minus\": 61456,\n  \"search-plus\": 61454,\n  \"search\": 61442,\n  \"seat-airline-window\": 59326,\n  \"seat-airline\": 57924,\n  \"seat\": 59236,\n  \"seats\": 59237,\n  \"section\": 58439,\n  \"seedling\": 62680,\n  \"semicolon\": 59,\n  \"send-back\": 63614,\n  \"send-backward\": 63615,\n  \"send\": 57866,\n  \"sensor-alert\": 57385,\n  \"sensor-cloud\": 57388,\n  \"sensor-fire\": 57386,\n  \"sensor-on\": 57387,\n  \"sensor-smoke\": 57388,\n  \"sensor-triangle-exclamation\": 57385,\n  \"sensor\": 57384,\n  \"septagon\": 59424,\n  \"server\": 62003,\n  \"shapes\": 63007,\n  \"share-all\": 62311,\n  \"share-alt-square\": 61921,\n  \"share-alt\": 61920,\n  \"share-from-square\": 61773,\n  \"share-nodes\": 61920,\n  \"share-square\": 61773,\n  \"share\": 61540,\n  \"sheep\": 63249,\n  \"sheet-plastic\": 58737,\n  \"shekel-sign\": 61963,\n  \"shekel\": 61963,\n  \"shelves-empty\": 57926,\n  \"shelves\": 62592,\n  \"sheqel-sign\": 61963,\n  \"sheqel\": 61963,\n  \"shield-alt\": 62445,\n  \"shield-blank\": 61746,\n  \"shield-cat\": 58738,\n  \"shield-check\": 62199,\n  \"shield-cross\": 63250,\n  \"shield-dog\": 58739,\n  \"shield-exclamation\": 57927,\n  \"shield-halved\": 62445,\n  \"shield-heart\": 58740,\n  \"shield-keyhole\": 57928,\n  \"shield-minus\": 57929,\n  \"shield-plus\": 57930,\n  \"shield-quartered\": 58741,\n  \"shield-slash\": 57931,\n  \"shield-times\": 57932,\n  \"shield-user\": 59401,\n  \"shield-virus\": 57452,\n  \"shield-xmark\": 57932,\n  \"shield\": 61746,\n  \"ship-large\": 59408,\n  \"ship\": 61978,\n  \"shipping-fast\": 62603,\n  \"shipping-timed\": 62604,\n  \"shirt-jersey\": 59095,\n  \"shirt-long-sleeve\": 58311,\n  \"shirt-running\": 58312,\n  \"shirt-tank-top\": 58313,\n  \"shirt\": 62803,\n  \"shish-kebab\": 63521,\n  \"shoe-prints\": 62795,\n  \"shoe\": 59096,\n  \"shop-24\": 59290,\n  \"shop-lock\": 58533,\n  \"shop-slash\": 57456,\n  \"shop\": 62799,\n  \"shopping-bag\": 62096,\n  \"shopping-basket-alt\": 57519,\n  \"shopping-basket\": 62097,\n  \"shopping-cart\": 61562,\n  \"shortcake\": 58341,\n  \"shorts\": 59097,\n  \"shovel-snow\": 63427,\n  \"shovel\": 63251,\n  \"shower-alt\": 57933,\n  \"shower-down\": 57933,\n  \"shower\": 62156,\n  \"shredder\": 63114,\n  \"shrimp\": 58440,\n  \"shuffle\": 61556,\n  \"shutters\": 58441,\n  \"shuttle-space-vertical\": 59327,\n  \"shuttle-space\": 61847,\n  \"shuttle-van\": 62902,\n  \"shuttlecock\": 62555,\n  \"sickle\": 63522,\n  \"sidebar-flip\": 57935,\n  \"sidebar\": 57934,\n  \"sigma\": 63115,\n  \"sign-hanging\": 62681,\n  \"sign-in-alt\": 62198,\n  \"sign-in\": 61584,\n  \"sign-language\": 62119,\n  \"sign-out-alt\": 62197,\n  \"sign-out\": 61579,\n  \"sign-post\": 58916,\n  \"sign-posts-wrench\": 58918,\n  \"sign-posts\": 58917,\n  \"sign\": 62681,\n  \"signal-1\": 63116,\n  \"signal-2\": 63117,\n  \"signal-3\": 63118,\n  \"signal-4\": 63119,\n  \"signal-5\": 61458,\n  \"signal-alt-1\": 63121,\n  \"signal-alt-2\": 63122,\n  \"signal-alt-3\": 63123,\n  \"signal-alt-4\": 63120,\n  \"signal-alt-slash\": 63124,\n  \"signal-alt\": 63120,\n  \"signal-bars-fair\": 63122,\n  \"signal-bars-good\": 63123,\n  \"signal-bars-slash\": 63124,\n  \"signal-bars-strong\": 63120,\n  \"signal-bars-weak\": 63121,\n  \"signal-bars\": 63120,\n  \"signal-fair\": 63117,\n  \"signal-good\": 63118,\n  \"signal-perfect\": 61458,\n  \"signal-slash\": 63125,\n  \"signal-stream-slash\": 57936,\n  \"signal-stream\": 63709,\n  \"signal-strong\": 63119,\n  \"signal-weak\": 63116,\n  \"signal\": 61458,\n  \"signapore-dollar-sign\": 59182,\n  \"signature-lock\": 58314,\n  \"signature-slash\": 58315,\n  \"signature\": 62903,\n  \"signing\": 62119,\n  \"signs-post\": 62071,\n  \"sim-card\": 63428,\n  \"sim-cards\": 57937,\n  \"single-quote-left\": 59419,\n  \"single-quote-right\": 59420,\n  \"sink\": 57453,\n  \"siren-on\": 57390,\n  \"siren\": 57389,\n  \"sitemap\": 61672,\n  \"skating\": 63429,\n  \"skeleton-ribs\": 58827,\n  \"skeleton\": 63008,\n  \"ski-boot-ski\": 58317,\n  \"ski-boot\": 58316,\n  \"ski-jump\": 63431,\n  \"ski-lift\": 63432,\n  \"skiing-nordic\": 63434,\n  \"skiing\": 63433,\n  \"skull-cow\": 63710,\n  \"skull-crossbones\": 63252,\n  \"skull\": 62796,\n  \"slash-back\": 92,\n  \"slash-forward\": 47,\n  \"slash\": 63253,\n  \"sledding\": 63435,\n  \"sleigh\": 63436,\n  \"slider-circle\": 59216,\n  \"slider\": 57938,\n  \"sliders-h-square\": 62448,\n  \"sliders-h\": 61918,\n  \"sliders-simple\": 57939,\n  \"sliders-up\": 62449,\n  \"sliders-v-square\": 62450,\n  \"sliders-v\": 62449,\n  \"sliders\": 61918,\n  \"slot-machine\": 58318,\n  \"smile-beam\": 62904,\n  \"smile-plus\": 62905,\n  \"smile-wink\": 62682,\n  \"smile\": 61720,\n  \"smog\": 63327,\n  \"smoke\": 63328,\n  \"smoking-ban\": 62797,\n  \"smoking\": 62605,\n  \"sms\": 63437,\n  \"snake\": 63254,\n  \"sneaker-running\": 59417,\n  \"sneaker\": 59098,\n  \"snooze\": 63616,\n  \"snow-blowing\": 63329,\n  \"snowboarding\": 63438,\n  \"snowflake-droplets\": 58817,\n  \"snowflake\": 62172,\n  \"snowflakes\": 63439,\n  \"snowman-head\": 63387,\n  \"snowman\": 63440,\n  \"snowmobile-blank\": 59332,\n  \"snowmobile\": 63441,\n  \"snowplow\": 63442,\n  \"soap\": 57454,\n  \"soccer-ball\": 61923,\n  \"socks\": 63126,\n  \"soft-serve\": 58368,\n  \"solar-panel\": 62906,\n  \"solar-system\": 57391,\n  \"sort-alpha-asc\": 61789,\n  \"sort-alpha-desc\": 63617,\n  \"sort-alpha-down-alt\": 63617,\n  \"sort-alpha-down\": 61789,\n  \"sort-alpha-up-alt\": 63618,\n  \"sort-alpha-up\": 61790,\n  \"sort-alt\": 63619,\n  \"sort-amount-asc\": 61792,\n  \"sort-amount-desc\": 63620,\n  \"sort-amount-down-alt\": 63620,\n  \"sort-amount-down\": 61792,\n  \"sort-amount-up-alt\": 63621,\n  \"sort-amount-up\": 61793,\n  \"sort-asc\": 61662,\n  \"sort-circle-down\": 57393,\n  \"sort-circle-up\": 57394,\n  \"sort-circle\": 57392,\n  \"sort-desc\": 61661,\n  \"sort-down\": 61661,\n  \"sort-numeric-asc\": 61794,\n  \"sort-numeric-desc\": 63622,\n  \"sort-numeric-down-alt\": 63622,\n  \"sort-numeric-down\": 61794,\n  \"sort-numeric-up-alt\": 63623,\n  \"sort-numeric-up\": 61795,\n  \"sort-shapes-down-alt\": 63625,\n  \"sort-shapes-down\": 63624,\n  \"sort-shapes-up-alt\": 63627,\n  \"sort-shapes-up\": 63626,\n  \"sort-size-down-alt\": 63629,\n  \"sort-size-down\": 63628,\n  \"sort-size-up-alt\": 63631,\n  \"sort-size-up\": 63630,\n  \"sort-up-down\": 57497,\n  \"sort-up\": 61662,\n  \"sort\": 61660,\n  \"soup\": 63523,\n  \"spa\": 62907,\n  \"space-shuttle\": 61847,\n  \"space-station-moon-alt\": 57396,\n  \"space-station-moon-construction\": 57396,\n  \"space-station-moon\": 57395,\n  \"spade\": 62196,\n  \"spaghetti-monster-flying\": 63099,\n  \"sparkle\": 58838,\n  \"sparkles\": 63632,\n  \"speaker\": 63711,\n  \"speakers\": 63712,\n  \"spell-check\": 63633,\n  \"spider-black-widow\": 63256,\n  \"spider-web\": 63257,\n  \"spider\": 63255,\n  \"spine\": 59233,\n  \"spinner-scale\": 58922,\n  \"spinner-third\": 62452,\n  \"spinner\": 61712,\n  \"spiral\": 59402,\n  \"split\": 57940,\n  \"splotch\": 62908,\n  \"spoon\": 62181,\n  \"sportsball\": 58443,\n  \"spray-can-sparkles\": 62928,\n  \"spray-can\": 62909,\n  \"sprinkler-ceiling\": 58444,\n  \"sprinkler\": 57397,\n  \"sprout\": 62680,\n  \"square-0\": 57941,\n  \"square-1\": 57942,\n  \"square-2\": 57943,\n  \"square-3\": 57944,\n  \"square-4\": 57945,\n  \"square-5\": 57946,\n  \"square-6\": 57947,\n  \"square-7\": 57948,\n  \"square-8\": 57949,\n  \"square-9\": 57950,\n  \"square-a-lock\": 58445,\n  \"square-a\": 57951,\n  \"square-ampersand\": 57952,\n  \"square-arrow-down-left\": 57953,\n  \"square-arrow-down-right\": 57954,\n  \"square-arrow-down\": 62265,\n  \"square-arrow-left\": 62266,\n  \"square-arrow-right\": 62267,\n  \"square-arrow-up-left\": 57955,\n  \"square-arrow-up-right\": 61772,\n  \"square-arrow-up\": 62268,\n  \"square-austral\": 59174,\n  \"square-australian-dollar\": 59160,\n  \"square-b\": 57956,\n  \"square-baht\": 59161,\n  \"square-bangladeshi-taka\": 59204,\n  \"square-binary\": 59035,\n  \"square-bitcoin\": 59122,\n  \"square-bolt\": 57957,\n  \"square-brazilian-real\": 59121,\n  \"square-c\": 57958,\n  \"square-caret-down\": 61776,\n  \"square-caret-left\": 61841,\n  \"square-caret-right\": 61778,\n  \"square-caret-up\": 61777,\n  \"square-cedi\": 59177,\n  \"square-cent\": 59120,\n  \"square-check\": 61770,\n  \"square-chevron-down\": 62249,\n  \"square-chevron-left\": 62250,\n  \"square-chevron-right\": 62251,\n  \"square-chevron-up\": 62252,\n  \"square-chf\": 59110,\n  \"square-code\": 57959,\n  \"square-colon\": 59194,\n  \"square-cruzeiro\": 59117,\n  \"square-currency\": 59148,\n  \"square-d\": 57960,\n  \"square-danish-krone\": 59207,\n  \"square-dashed-circle-plus\": 58818,\n  \"square-dashed\": 57961,\n  \"square-divide\": 57962,\n  \"square-dollar\": 62185,\n  \"square-dong\": 59151,\n  \"square-down-left\": 57963,\n  \"square-down-right\": 57964,\n  \"square-down\": 62288,\n  \"square-e\": 57965,\n  \"square-ellipsis-vertical\": 57967,\n  \"square-ellipsis\": 57966,\n  \"square-envelope\": 61849,\n  \"square-equals\": 59062,\n  \"square-euro\": 59186,\n  \"square-eurozone\": 59175,\n  \"square-exclamation\": 62241,\n  \"square-f\": 57968,\n  \"square-florin\": 59159,\n  \"square-fragile\": 62619,\n  \"square-franc\": 59183,\n  \"square-full\": 62556,\n  \"square-g\": 57969,\n  \"square-guarani\": 59150,\n  \"square-h\": 61693,\n  \"square-half-horizontal\": 59406,\n  \"square-half-stroke-horizontal\": 59407,\n  \"square-half-stroke\": 59283,\n  \"square-half\": 59282,\n  \"square-heart\": 62664,\n  \"square-hryvnia\": 59152,\n  \"square-i\": 57970,\n  \"square-indian-rupee\": 59125,\n  \"square-info\": 62223,\n  \"square-j\": 57971,\n  \"square-k\": 57972,\n  \"square-kanban\": 58504,\n  \"square-kip\": 59149,\n  \"square-l\": 57973,\n  \"square-lari\": 59199,\n  \"square-left\": 62289,\n  \"square-lira\": 59111,\n  \"square-list\": 58505,\n  \"square-litecoin\": 59127,\n  \"square-m\": 57974,\n  \"square-malaysian-ringgit\": 59208,\n  \"square-manat\": 59140,\n  \"square-microphone\": 59265,\n  \"square-mill\": 59146,\n  \"square-minus\": 61766,\n  \"square-n\": 57975,\n  \"square-naira\": 59144,\n  \"square-nfi\": 58742,\n  \"square-norwegian-krone\": 59143,\n  \"square-o\": 57976,\n  \"square-p\": 57977,\n  \"square-parking-slash\": 62999,\n  \"square-parking\": 62784,\n  \"square-pen\": 61771,\n  \"square-person-confined\": 58743,\n  \"square-peruvian-soles\": 59158,\n  \"square-peseta\": 59114,\n  \"square-peso\": 59162,\n  \"square-phone-flip\": 63611,\n  \"square-phone-hangup\": 57978,\n  \"square-phone\": 61592,\n  \"square-plus\": 61694,\n  \"square-polish-zloty\": 59190,\n  \"square-poll-horizontal\": 63106,\n  \"square-poll-vertical\": 63105,\n  \"square-q\": 57979,\n  \"square-quarters\": 58446,\n  \"square-question\": 62205,\n  \"square-quote\": 58153,\n  \"square-r\": 57980,\n  \"square-renminbi\": 59197,\n  \"square-right\": 62290,\n  \"square-ring\": 58447,\n  \"square-root-alt\": 63128,\n  \"square-root-variable\": 63128,\n  \"square-root\": 63127,\n  \"square-rss\": 61763,\n  \"square-ruble\": 59128,\n  \"square-rupee\": 59157,\n  \"square-rupiah\": 59154,\n  \"square-s\": 57981,\n  \"square-share-nodes\": 61921,\n  \"square-shekel\": 59189,\n  \"square-sliders-vertical\": 62450,\n  \"square-sliders\": 62448,\n  \"square-small\": 57982,\n  \"square-star\": 57983,\n  \"square-sterling\": 59155,\n  \"square-swedish-krona\": 59164,\n  \"square-t\": 57984,\n  \"square-tenge\": 59185,\n  \"square-terminal\": 58154,\n  \"square-this-way-up\": 62623,\n  \"square-tugrik\": 59176,\n  \"square-turkish-lira\": 59167,\n  \"square-u\": 57985,\n  \"square-up-left\": 57986,\n  \"square-up-right\": 62304,\n  \"square-up\": 62291,\n  \"square-user\": 57987,\n  \"square-v\": 57988,\n  \"square-virus\": 58744,\n  \"square-w\": 57989,\n  \"square-wine-glass-crack\": 62619,\n  \"square-won\": 59145,\n  \"square-x\": 57990,\n  \"square-xmark\": 62163,\n  \"square-y\": 57991,\n  \"square-yen\": 59172,\n  \"square-z\": 57992,\n  \"square\": 61640,\n  \"squareapore-dollar\": 59187,\n  \"squid\": 58448,\n  \"squirrel\": 63258,\n  \"stadium\": 59084,\n  \"staff-aesculapius\": 58745,\n  \"staff-snake\": 58745,\n  \"staff\": 63259,\n  \"stair-car\": 59333,\n  \"stairs\": 57993,\n  \"stamp\": 62911,\n  \"standard-definition\": 57994,\n  \"stapler\": 58799,\n  \"star-and-crescent\": 63129,\n  \"star-christmas\": 63444,\n  \"star-circle\": 57635,\n  \"star-exclamation\": 62195,\n  \"star-half-alt\": 62912,\n  \"star-half-stroke\": 62912,\n  \"star-half\": 61577,\n  \"star-of-david\": 63130,\n  \"star-of-life\": 63009,\n  \"star-sharp-half-alt\": 57997,\n  \"star-sharp-half-stroke\": 57997,\n  \"star-sharp-half\": 57996,\n  \"star-sharp\": 57995,\n  \"star-shooting\": 57398,\n  \"star\": 61445,\n  \"starfighter-alt-advanced\": 57998,\n  \"starfighter-alt\": 57400,\n  \"starfighter-twin-ion-engine-advanced\": 57998,\n  \"starfighter-twin-ion-engine\": 57400,\n  \"starfighter\": 57399,\n  \"stars\": 63330,\n  \"starship-freighter\": 57402,\n  \"starship\": 57401,\n  \"steak\": 63524,\n  \"steering-wheel\": 63010,\n  \"step-backward\": 61512,\n  \"step-forward\": 61521,\n  \"sterling-sign\": 61780,\n  \"stethoscope\": 61681,\n  \"sticky-note\": 62025,\n  \"stocking\": 63445,\n  \"stomach\": 63011,\n  \"stool\": 59520,\n  \"stop-circle\": 62093,\n  \"stop\": 61517,\n  \"stopwatch-20\": 57455,\n  \"stopwatch\": 62194,\n  \"store-24\": 59291,\n  \"store-alt-slash\": 57456,\n  \"store-alt\": 62799,\n  \"store-lock\": 58534,\n  \"store-slash\": 57457,\n  \"store\": 62798,\n  \"strawberry\": 58155,\n  \"stream\": 62800,\n  \"street-view\": 61981,\n  \"stretcher\": 63525,\n  \"strikethrough\": 61644,\n  \"stroopwafel\": 62801,\n  \"subscript\": 61740,\n  \"subtitles-slash\": 58896,\n  \"subtitles\": 58895,\n  \"subtract\": 61544,\n  \"subway-tunnel\": 58019,\n  \"subway\": 62009,\n  \"suitcase-medical\": 61690,\n  \"suitcase-rolling\": 62913,\n  \"suitcase\": 61682,\n  \"sun-alt\": 57999,\n  \"sun-bright\": 57999,\n  \"sun-cloud\": 63331,\n  \"sun-dust\": 63332,\n  \"sun-haze\": 63333,\n  \"sun-plant-wilt\": 58746,\n  \"sun\": 61829,\n  \"sunglasses\": 63634,\n  \"sunrise\": 63334,\n  \"sunset\": 63335,\n  \"superscript\": 61739,\n  \"surprise\": 62914,\n  \"sushi-roll\": 58507,\n  \"sushi\": 58506,\n  \"swap-arrows\": 58890,\n  \"swap\": 58889,\n  \"swatchbook\": 62915,\n  \"swedish-krona-sign\": 59198,\n  \"swimmer\": 62916,\n  \"swimming-pool\": 62917,\n  \"sword-laser-alt\": 57404,\n  \"sword-laser\": 57403,\n  \"sword\": 63260,\n  \"swords-laser\": 57405,\n  \"swords\": 63261,\n  \"symbols\": 63598,\n  \"synagogue\": 63131,\n  \"sync-alt\": 62193,\n  \"sync\": 61473,\n  \"syringe\": 62606,\n  \"t-rex\": 58921,\n  \"t-shirt\": 62803,\n  \"t\": 84,\n  \"table-bar\": 59550,\n  \"table-cells-column-lock\": 59000,\n  \"table-cells-column-unlock\": 59024,\n  \"table-cells-columns\": 59052,\n  \"table-cells-header-lock\": 59054,\n  \"table-cells-header-unlock\": 59055,\n  \"table-cells-header\": 59053,\n  \"table-cells-large\": 61449,\n  \"table-cells-lock\": 59001,\n  \"table-cells-merge\": 59532,\n  \"table-cells-row-lock\": 59002,\n  \"table-cells-row-unlock\": 59025,\n  \"table-cells-rows\": 59056,\n  \"table-cells-split\": 59533,\n  \"table-cells-unlock\": 59026,\n  \"table-cells\": 61450,\n  \"table-columns-add-after\": 59534,\n  \"table-columns-add-before\": 59535,\n  \"table-columns-merge-next\": 59536,\n  \"table-columns-merge-previous\": 59537,\n  \"table-columns-remove-after\": 59538,\n  \"table-columns-remove-before\": 59539,\n  \"table-columns\": 61659,\n  \"table-dining\": 59522,\n  \"table-layout\": 58000,\n  \"table-list\": 61451,\n  \"table-picnic\": 58157,\n  \"table-pivot\": 58001,\n  \"table-rows-add-above\": 59540,\n  \"table-rows-add-below\": 59541,\n  \"table-rows-merge-next\": 59542,\n  \"table-rows-merge-previous\": 59543,\n  \"table-rows-remove-above\": 59544,\n  \"table-rows-remove-below\": 59545,\n  \"table-rows\": 58002,\n  \"table-slash\": 59546,\n  \"table-tennis-paddle-ball\": 62557,\n  \"table-tennis\": 62557,\n  \"table-tree\": 58003,\n  \"table\": 61646,\n  \"tablet-alt\": 62458,\n  \"tablet-android-alt\": 62460,\n  \"tablet-android\": 62459,\n  \"tablet-button\": 61706,\n  \"tablet-rugged\": 62607,\n  \"tablet-screen-button\": 62458,\n  \"tablet-screen\": 62460,\n  \"tablet\": 62459,\n  \"tablets\": 62608,\n  \"tachograph-digital\": 62822,\n  \"tachometer-alt-average\": 63012,\n  \"tachometer-alt-fast\": 63013,\n  \"tachometer-alt-fastest\": 63014,\n  \"tachometer-alt-slow\": 63015,\n  \"tachometer-alt-slowest\": 63016,\n  \"tachometer-alt\": 63013,\n  \"tachometer-average\": 63017,\n  \"tachometer-fast\": 63018,\n  \"tachometer-fastest\": 63019,\n  \"tachometer-slow\": 63020,\n  \"tachometer-slowest\": 63021,\n  \"tachometer\": 63018,\n  \"taco\": 63526,\n  \"tag\": 61483,\n  \"tags\": 61484,\n  \"tally-1\": 58004,\n  \"tally-2\": 58005,\n  \"tally-3\": 58006,\n  \"tally-4\": 58007,\n  \"tally-5\": 63132,\n  \"tally\": 63132,\n  \"tamale\": 58449,\n  \"tanakh\": 63527,\n  \"tank-recovery\": 59429,\n  \"tank-water\": 58450,\n  \"tape\": 62683,\n  \"tarp-droplet\": 58748,\n  \"tarp\": 58747,\n  \"tasks-alt\": 63528,\n  \"tasks\": 61614,\n  \"taurus\": 59471,\n  \"taxi-bus\": 58008,\n  \"taxi\": 61882,\n  \"teddy-bear\": 58319,\n  \"teeth-open\": 63023,\n  \"teeth\": 63022,\n  \"telescope\": 57406,\n  \"teletype-answer\": 58041,\n  \"teletype\": 61924,\n  \"television\": 62060,\n  \"temperature-0\": 62155,\n  \"temperature-1\": 62154,\n  \"temperature-2\": 62153,\n  \"temperature-3\": 62152,\n  \"temperature-4\": 62151,\n  \"temperature-arrow-down\": 57407,\n  \"temperature-arrow-up\": 57408,\n  \"temperature-down\": 57407,\n  \"temperature-empty\": 62155,\n  \"temperature-frigid\": 63336,\n  \"temperature-full\": 62151,\n  \"temperature-half\": 62153,\n  \"temperature-high\": 63337,\n  \"temperature-hot\": 63338,\n  \"temperature-list\": 58009,\n  \"temperature-low\": 63339,\n  \"temperature-quarter\": 62154,\n  \"temperature-slash\": 59339,\n  \"temperature-snow\": 63336,\n  \"temperature-sun\": 63338,\n  \"temperature-three-quarters\": 62152,\n  \"temperature-up\": 57408,\n  \"tenge-sign\": 63447,\n  \"tenge\": 63447,\n  \"tennis-ball\": 62558,\n  \"tent-arrow-down-to-line\": 58750,\n  \"tent-arrow-left-right\": 58751,\n  \"tent-arrow-turn-left\": 58752,\n  \"tent-arrows-down\": 58753,\n  \"tent-circus\": 59085,\n  \"tent-double-peak\": 58919,\n  \"tent\": 58749,\n  \"tents\": 58754,\n  \"terminal\": 61728,\n  \"text-height\": 61492,\n  \"text-size\": 63636,\n  \"text-slash\": 63613,\n  \"text-width\": 61493,\n  \"text\": 63635,\n  \"th-large\": 61449,\n  \"th-list\": 61451,\n  \"th\": 61450,\n  \"theater-masks\": 63024,\n  \"thermometer-0\": 62155,\n  \"thermometer-1\": 62154,\n  \"thermometer-2\": 62153,\n  \"thermometer-3\": 62152,\n  \"thermometer-4\": 62151,\n  \"thermometer-empty\": 62155,\n  \"thermometer-full\": 62151,\n  \"thermometer-half\": 62153,\n  \"thermometer-quarter\": 62154,\n  \"thermometer-three-quarters\": 62152,\n  \"thermometer\": 62609,\n  \"theta\": 63134,\n  \"thought-bubble\": 58158,\n  \"thumb-tack-slash\": 59023,\n  \"thumb-tack\": 61581,\n  \"thumbs-down\": 61797,\n  \"thumbs-up\": 61796,\n  \"thumbtack-angle-slash\": 59218,\n  \"thumbtack-angle\": 59217,\n  \"thumbtack-slash\": 59023,\n  \"thumbtack\": 61581,\n  \"thunderstorm-moon\": 63341,\n  \"thunderstorm-sun\": 63342,\n  \"thunderstorm\": 63340,\n  \"tick\": 58159,\n  \"ticket-airline\": 58010,\n  \"ticket-alt\": 62463,\n  \"ticket-perforated-plane\": 58010,\n  \"ticket-perforated\": 58942,\n  \"ticket-plane\": 58010,\n  \"ticket-simple\": 62463,\n  \"ticket\": 61765,\n  \"tickets-airline\": 58011,\n  \"tickets-perforated-plane\": 58011,\n  \"tickets-perforated\": 58943,\n  \"tickets-plane\": 58011,\n  \"tickets-simple\": 58969,\n  \"tickets\": 58968,\n  \"tilde\": 126,\n  \"timeline-arrow\": 58013,\n  \"timeline\": 58012,\n  \"timer\": 58014,\n  \"times-circle\": 61527,\n  \"times-hexagon\": 62190,\n  \"times-octagon\": 62192,\n  \"times-rectangle\": 62480,\n  \"times-square\": 62163,\n  \"times-to-slot\": 63345,\n  \"times\": 61453,\n  \"tint-slash\": 62919,\n  \"tint\": 61507,\n  \"tire-flat\": 63026,\n  \"tire-pressure-warning\": 63027,\n  \"tire-rugged\": 63028,\n  \"tire\": 63025,\n  \"tired\": 62920,\n  \"toggle-large-off\": 58800,\n  \"toggle-large-on\": 58801,\n  \"toggle-off\": 61956,\n  \"toggle-on\": 61957,\n  \"toilet-paper-alt\": 63262,\n  \"toilet-paper-blank-under\": 58016,\n  \"toilet-paper-blank\": 63262,\n  \"toilet-paper-check\": 58802,\n  \"toilet-paper-reverse-alt\": 58016,\n  \"toilet-paper-reverse-slash\": 58017,\n  \"toilet-paper-reverse\": 58016,\n  \"toilet-paper-slash\": 57458,\n  \"toilet-paper-under-slash\": 58017,\n  \"toilet-paper-under\": 58016,\n  \"toilet-paper-xmark\": 58803,\n  \"toilet-paper\": 63262,\n  \"toilet-portable\": 58755,\n  \"toilet\": 63448,\n  \"toilets-portable\": 58756,\n  \"tomato\": 58160,\n  \"tombstone-alt\": 63265,\n  \"tombstone-blank\": 63265,\n  \"tombstone\": 63264,\n  \"toolbox\": 62802,\n  \"tools\": 63449,\n  \"tooth\": 62921,\n  \"toothbrush\": 63029,\n  \"torah\": 63136,\n  \"torii-gate\": 63137,\n  \"tornado\": 63343,\n  \"tower-broadcast\": 62745,\n  \"tower-cell\": 58757,\n  \"tower-control\": 58018,\n  \"tower-observation\": 58758,\n  \"tower-receive\": 59555,\n  \"tractor\": 63266,\n  \"trademark\": 62044,\n  \"traffic-cone\": 63030,\n  \"traffic-light-go\": 63032,\n  \"traffic-light-slow\": 63033,\n  \"traffic-light-stop\": 63034,\n  \"traffic-light\": 63031,\n  \"trailer\": 57409,\n  \"train-stop\": 59423,\n  \"train-subway-tunnel\": 58019,\n  \"train-subway\": 62009,\n  \"train-track\": 58451,\n  \"train-tram\": 58804,\n  \"train-tunnel\": 58452,\n  \"train\": 62008,\n  \"tram\": 63450,\n  \"transducer\": 59430,\n  \"transformer-bolt\": 58020,\n  \"transgender-alt\": 61989,\n  \"transgender\": 61989,\n  \"transmission\": 59394,\n  \"transporter-1\": 57411,\n  \"transporter-2\": 57412,\n  \"transporter-3\": 57413,\n  \"transporter-4\": 58021,\n  \"transporter-5\": 58022,\n  \"transporter-6\": 58023,\n  \"transporter-7\": 58024,\n  \"transporter-empty\": 57414,\n  \"transporter\": 57410,\n  \"trash-alt-slash\": 58029,\n  \"trash-alt\": 62189,\n  \"trash-arrow-turn-left\": 63637,\n  \"trash-arrow-up\": 63529,\n  \"trash-can-arrow-turn-left\": 63638,\n  \"trash-can-arrow-up\": 63530,\n  \"trash-can-check\": 58025,\n  \"trash-can-clock\": 58026,\n  \"trash-can-list\": 58027,\n  \"trash-can-plus\": 58028,\n  \"trash-can-slash\": 58029,\n  \"trash-can-undo\": 63638,\n  \"trash-can-xmark\": 58030,\n  \"trash-can\": 62189,\n  \"trash-check\": 58031,\n  \"trash-circle\": 57638,\n  \"trash-clock\": 58032,\n  \"trash-list\": 58033,\n  \"trash-plus\": 58034,\n  \"trash-restore-alt\": 63530,\n  \"trash-restore\": 63529,\n  \"trash-slash\": 58035,\n  \"trash-undo-alt\": 63638,\n  \"trash-undo\": 63637,\n  \"trash-xmark\": 58036,\n  \"trash\": 61944,\n  \"treasure-chest\": 63267,\n  \"tree-alt\": 62464,\n  \"tree-christmas\": 63451,\n  \"tree-city\": 58759,\n  \"tree-deciduous\": 62464,\n  \"tree-decorated\": 63452,\n  \"tree-large\": 63453,\n  \"tree-palm\": 63531,\n  \"tree\": 61883,\n  \"trees\": 63268,\n  \"trian-balbot\": 58460,\n  \"triangle-circle-square\": 63007,\n  \"triangle-exclamation\": 61553,\n  \"triangle-instrument\": 63714,\n  \"triangle-music\": 63714,\n  \"triangle-person-digging\": 63581,\n  \"triangle\": 62188,\n  \"tricycle-adult\": 58820,\n  \"tricycle\": 58819,\n  \"trillium\": 58760,\n  \"triple-chevrons-down\": 59383,\n  \"triple-chevrons-left\": 59384,\n  \"triple-chevrons-right\": 59385,\n  \"triple-chevrons-up\": 59386,\n  \"trombone\": 59266,\n  \"trophy-alt\": 62187,\n  \"trophy-star\": 62187,\n  \"trophy\": 61585,\n  \"trowel-bricks\": 58762,\n  \"trowel\": 58761,\n  \"truck-arrow-right\": 58763,\n  \"truck-bolt\": 58320,\n  \"truck-clock\": 62604,\n  \"truck-container-empty\": 58037,\n  \"truck-container\": 62684,\n  \"truck-couch\": 62685,\n  \"truck-droplet\": 58764,\n  \"truck-fast\": 62603,\n  \"truck-field-un\": 58766,\n  \"truck-field\": 58765,\n  \"truck-fire\": 58970,\n  \"truck-flatbed\": 58038,\n  \"truck-front\": 58039,\n  \"truck-ladder\": 58967,\n  \"truck-loading\": 62686,\n  \"truck-medical\": 61689,\n  \"truck-monster\": 63035,\n  \"truck-moving\": 62687,\n  \"truck-pickup\": 63036,\n  \"truck-plane\": 58767,\n  \"truck-plow\": 63454,\n  \"truck-ramp-box\": 62686,\n  \"truck-ramp-couch\": 62685,\n  \"truck-ramp\": 62688,\n  \"truck-suv\": 59334,\n  \"truck-tow\": 58040,\n  \"truck-utensils\": 58920,\n  \"truck\": 61649,\n  \"trumpet\": 63715,\n  \"try\": 58043,\n  \"tshirt\": 62803,\n  \"tty-answer\": 58041,\n  \"tty\": 61924,\n  \"tugrik-sign\": 58042,\n  \"turkey\": 63269,\n  \"turkish-lira-sign\": 58043,\n  \"turkish-lira\": 58043,\n  \"turn-down-left\": 58161,\n  \"turn-down-right\": 58453,\n  \"turn-down\": 62398,\n  \"turn-left-down\": 58935,\n  \"turn-left-up\": 58936,\n  \"turn-left\": 58934,\n  \"turn-right\": 58937,\n  \"turn-up\": 62399,\n  \"turntable\": 63716,\n  \"turtle\": 63270,\n  \"tv-alt\": 62060,\n  \"tv-music\": 63718,\n  \"tv-retro\": 62465,\n  \"tv\": 62060,\n  \"typewriter\": 63719,\n  \"u-turn-down-left\": 59375,\n  \"u-turn-down-right\": 59376,\n  \"u-turn-left-down\": 59377,\n  \"u-turn-left-up\": 59378,\n  \"u-turn-right-down\": 59379,\n  \"u-turn-right-up\": 59380,\n  \"u-turn-up-left\": 59381,\n  \"u-turn-up-right\": 59382,\n  \"u-turn\": 59377,\n  \"u\": 85,\n  \"ufo-beam\": 57416,\n  \"ufo\": 57415,\n  \"umbrella-alt\": 58044,\n  \"umbrella-beach\": 62922,\n  \"umbrella-simple\": 58044,\n  \"umbrella\": 61673,\n  \"underline\": 61645,\n  \"undo-alt\": 62186,\n  \"undo\": 61666,\n  \"unicorn\": 63271,\n  \"unicycle\": 59335,\n  \"uniform-martial-arts\": 58321,\n  \"union\": 63138,\n  \"universal-access\": 62106,\n  \"university\": 61852,\n  \"unlink\": 61735,\n  \"unlock-alt\": 61758,\n  \"unlock-keyhole\": 61758,\n  \"unlock\": 61596,\n  \"unsorted\": 61660,\n  \"up-down-left-right\": 61618,\n  \"up-down\": 62264,\n  \"up-from-bracket\": 58768,\n  \"up-from-dotted-line\": 58454,\n  \"up-from-line\": 62278,\n  \"up-left\": 58045,\n  \"up-long-to-line\": 59078,\n  \"up-long\": 62220,\n  \"up-right-and-down-left-from-center\": 62500,\n  \"up-right-from-square\": 62301,\n  \"up-right\": 58046,\n  \"up-to-bracket\": 58990,\n  \"up-to-dotted-line\": 58455,\n  \"up-to-line\": 62285,\n  \"up\": 62295,\n  \"upload\": 61587,\n  \"usb-drive\": 63721,\n  \"usd-circle\": 62184,\n  \"usd-square\": 62185,\n  \"usd\": 36,\n  \"user-alien\": 57418,\n  \"user-alt-slash\": 62726,\n  \"user-alt\": 61447,\n  \"user-astronaut\": 62715,\n  \"user-beard-bolt\": 59017,\n  \"user-beard\": 59304,\n  \"user-bounty-hunter\": 58047,\n  \"user-chart\": 63139,\n  \"user-check\": 62716,\n  \"user-chef-hair-long\": 59305,\n  \"user-chef\": 58322,\n  \"user-circle-minus\": 59306,\n  \"user-circle-plus\": 59307,\n  \"user-circle\": 62141,\n  \"user-clock\": 62717,\n  \"user-cog\": 62718,\n  \"user-construction\": 63532,\n  \"user-cowboy\": 63722,\n  \"user-crown\": 63140,\n  \"user-dashed\": 59308,\n  \"user-doctor-hair-long\": 58457,\n  \"user-doctor-hair-mullet\": 59309,\n  \"user-doctor-hair\": 58456,\n  \"user-doctor-message\": 63534,\n  \"user-doctor\": 61680,\n  \"user-edit\": 62719,\n  \"user-friends\": 62720,\n  \"user-gear\": 62718,\n  \"user-graduate\": 62721,\n  \"user-group-crown\": 63141,\n  \"user-group-simple\": 58883,\n  \"user-group\": 62720,\n  \"user-hair-buns\": 58323,\n  \"user-hair-long\": 58459,\n  \"user-hair-mullet\": 58460,\n  \"user-hair\": 58458,\n  \"user-hard-hat\": 63532,\n  \"user-hat-tie-magnifying-glass\": 59311,\n  \"user-hat-tie\": 59310,\n  \"user-headset\": 63533,\n  \"user-helmet-safety\": 63532,\n  \"user-hoodie\": 59018,\n  \"user-injured\": 63272,\n  \"user-key\": 59312,\n  \"user-large-slash\": 62726,\n  \"user-large\": 61447,\n  \"user-lock\": 62722,\n  \"user-magnifying-glass\": 58821,\n  \"user-md-chat\": 63534,\n  \"user-md\": 61680,\n  \"user-message\": 59313,\n  \"user-microphone\": 59314,\n  \"user-minus\": 62723,\n  \"user-music\": 63723,\n  \"user-ninja\": 62724,\n  \"user-nurse-hair-long\": 58462,\n  \"user-nurse-hair\": 58461,\n  \"user-nurse\": 63535,\n  \"user-pen\": 62719,\n  \"user-pilot-hair-long\": 59315,\n  \"user-pilot-tie-hair-long\": 59316,\n  \"user-pilot-tie\": 58049,\n  \"user-pilot\": 58048,\n  \"user-plus\": 62004,\n  \"user-police-hair-long\": 59317,\n  \"user-police-tie-hair-long\": 59318,\n  \"user-police-tie\": 58164,\n  \"user-police\": 58163,\n  \"user-question\": 59319,\n  \"user-robot-xmarks\": 58535,\n  \"user-robot\": 57419,\n  \"user-secret\": 61979,\n  \"user-shakespeare\": 58050,\n  \"user-shield\": 62725,\n  \"user-sith\": 59320,\n  \"user-slash\": 62726,\n  \"user-tag\": 62727,\n  \"user-tie-hair-long\": 58464,\n  \"user-tie-hair-mullet\": 59321,\n  \"user-tie-hair\": 58463,\n  \"user-tie\": 62728,\n  \"user-times\": 62005,\n  \"user-unlock\": 57432,\n  \"user-viewfinder\": 59253,\n  \"user-visor\": 57420,\n  \"user-vneck-hair-long\": 58467,\n  \"user-vneck-hair-mullet\": 59322,\n  \"user-vneck-hair\": 58466,\n  \"user-vneck\": 58465,\n  \"user-xmark\": 62005,\n  \"user\": 61447,\n  \"users-between-lines\": 58769,\n  \"users-class\": 63037,\n  \"users-cog\": 62729,\n  \"users-crown\": 63141,\n  \"users-gear\": 62729,\n  \"users-line\": 58770,\n  \"users-medical\": 63536,\n  \"users-rays\": 58771,\n  \"users-rectangle\": 58772,\n  \"users-slash\": 57459,\n  \"users-viewfinder\": 58773,\n  \"users\": 61632,\n  \"utensil-fork\": 62179,\n  \"utensil-knife\": 62180,\n  \"utensil-spoon\": 62181,\n  \"utensils-alt\": 62182,\n  \"utensils-slash\": 58468,\n  \"utensils\": 62183,\n  \"utility-can\": 59549,\n  \"utility-pole-double\": 58052,\n  \"utility-pole\": 58051,\n  \"v\": 86,\n  \"vacuum-robot\": 57422,\n  \"vacuum\": 57421,\n  \"value-absolute\": 63142,\n  \"van-shuttle\": 62902,\n  \"van\": 59336,\n  \"vault\": 58053,\n  \"vcard\": 62139,\n  \"vector-circle\": 62957,\n  \"vector-polygon\": 62958,\n  \"vector-square\": 62959,\n  \"vent-damper\": 58469,\n  \"venus-double\": 61990,\n  \"venus-mars\": 61992,\n  \"venus\": 61985,\n  \"vest-patches\": 57478,\n  \"vest\": 57477,\n  \"vhs\": 63724,\n  \"vial-circle-check\": 58774,\n  \"vial-vertical\": 59234,\n  \"vial-virus\": 58775,\n  \"vial\": 62610,\n  \"vials\": 62611,\n  \"video-arrow-down-left\": 58056,\n  \"video-arrow-up-right\": 58057,\n  \"video-camera\": 61501,\n  \"video-circle\": 57643,\n  \"video-down-to-line\": 59254,\n  \"video-handheld\": 63656,\n  \"video-plus\": 62689,\n  \"video-question\": 59255,\n  \"video-slash\": 62690,\n  \"video\": 61501,\n  \"vihara\": 63143,\n  \"violin\": 63725,\n  \"virgo\": 59472,\n  \"virus-covid-slash\": 58537,\n  \"virus-covid\": 58536,\n  \"virus-slash\": 57461,\n  \"virus\": 57460,\n  \"viruses\": 57462,\n  \"voicemail\": 63639,\n  \"volcano\": 63344,\n  \"volleyball-ball\": 62559,\n  \"volleyball\": 62559,\n  \"volume-control-phone\": 62112,\n  \"volume-down\": 61479,\n  \"volume-high\": 61480,\n  \"volume-low\": 61479,\n  \"volume-medium\": 63144,\n  \"volume-mute\": 63145,\n  \"volume-off\": 61478,\n  \"volume-slash\": 62178,\n  \"volume-times\": 63145,\n  \"volume-up\": 61480,\n  \"volume-xmark\": 63145,\n  \"volume\": 63144,\n  \"vote-nay\": 63345,\n  \"vote-yea\": 63346,\n  \"vr-cardboard\": 63273,\n  \"w\": 87,\n  \"waffle\": 58470,\n  \"wagon-covered\": 63726,\n  \"walker\": 63537,\n  \"walkie-talkie\": 63727,\n  \"walking\": 62804,\n  \"wall-brick\": 58331,\n  \"wallet\": 62805,\n  \"wand-magic-sparkles\": 58058,\n  \"wand-magic\": 61648,\n  \"wand-sparkles\": 63275,\n  \"wand\": 63274,\n  \"wardrobe\": 59521,\n  \"warehouse-alt\": 62613,\n  \"warehouse-full\": 62613,\n  \"warehouse\": 62612,\n  \"warning\": 61553,\n  \"washer\": 63640,\n  \"washing-machine\": 63640,\n  \"watch-apple\": 58059,\n  \"watch-calculator\": 63728,\n  \"watch-fitness\": 63038,\n  \"watch-smart\": 58060,\n  \"watch\": 62177,\n  \"water-arrow-down\": 63348,\n  \"water-arrow-up\": 63349,\n  \"water-ladder\": 62917,\n  \"water-lower\": 63348,\n  \"water-rise\": 63349,\n  \"water-temp\": 59434,\n  \"water-temperature\": 59434,\n  \"water\": 63347,\n  \"watermelon-slice\": 58167,\n  \"wave-pulse\": 62968,\n  \"wave-sine\": 63641,\n  \"wave-square\": 63550,\n  \"wave-triangle\": 63642,\n  \"wave\": 58971,\n  \"waveform-circle\": 57645,\n  \"waveform-lines\": 63730,\n  \"waveform-path\": 63730,\n  \"waveform\": 63729,\n  \"waves-sine\": 58973,\n  \"web-awesome\": 59010,\n  \"webcam-slash\": 63539,\n  \"webcam\": 63538,\n  \"webhook\": 58837,\n  \"weight-hanging\": 62925,\n  \"weight-scale\": 62614,\n  \"weight\": 62614,\n  \"whale\": 63276,\n  \"wheat-alt\": 58061,\n  \"wheat-awn-circle-exclamation\": 58776,\n  \"wheat-awn-slash\": 58168,\n  \"wheat-awn\": 58061,\n  \"wheat-slash\": 58169,\n  \"wheat\": 63277,\n  \"wheelchair-alt\": 58062,\n  \"wheelchair-move\": 58062,\n  \"wheelchair\": 61843,\n  \"whiskey-glass-ice\": 63393,\n  \"whiskey-glass\": 63392,\n  \"whistle\": 62560,\n  \"wifi-1\": 63146,\n  \"wifi-2\": 63147,\n  \"wifi-3\": 61931,\n  \"wifi-exclamation\": 58063,\n  \"wifi-fair\": 63147,\n  \"wifi-slash\": 63148,\n  \"wifi-strong\": 61931,\n  \"wifi-weak\": 63146,\n  \"wifi\": 61931,\n  \"wind-circle-exclamation\": 63350,\n  \"wind-turbine\": 63643,\n  \"wind-warning\": 63350,\n  \"wind\": 63278,\n  \"window-alt\": 62479,\n  \"window-close\": 62480,\n  \"window-flip\": 62479,\n  \"window-frame-open\": 57424,\n  \"window-frame\": 57423,\n  \"window-maximize\": 62160,\n  \"window-minimize\": 62161,\n  \"window-restore\": 62162,\n  \"window\": 62478,\n  \"windsock\": 63351,\n  \"wine-bottle\": 63279,\n  \"wine-glass-alt\": 62926,\n  \"wine-glass-crack\": 62651,\n  \"wine-glass-empty\": 62926,\n  \"wine-glass\": 62691,\n  \"wireless\": 59359,\n  \"won-sign\": 61785,\n  \"won\": 61785,\n  \"worm\": 58777,\n  \"wreath-laurel\": 58834,\n  \"wreath\": 63458,\n  \"wrench-simple\": 58065,\n  \"wrench\": 61613,\n  \"x-ray\": 62615,\n  \"x\": 88,\n  \"xmark-circle\": 61527,\n  \"xmark-hexagon\": 62190,\n  \"xmark-large\": 58779,\n  \"xmark-octagon\": 62192,\n  \"xmark-square\": 62163,\n  \"xmark-to-slot\": 63345,\n  \"xmark\": 61453,\n  \"xmarks-lines\": 58778,\n  \"y\": 89,\n  \"yen-sign\": 61783,\n  \"yen\": 61783,\n  \"yin-yang\": 63149,\n  \"z\": 90,\n  \"zap\": 61671,\n  \"zzz\": 63616\n}"
  },
  {
    "path": "packages/fontawesome-pro-solid/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontawesome-pro-solid\",\n  \"version\": \"0.2.0\",\n  \"description\": \"Fontawesome Pro Solid font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"fontawesome-pro-solid\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/fontawesome-pro-solid\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-solid/react-native-vector-icons-fontawesome-pro-solid.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-fontawesome-pro-solid'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\n\n  s.script_phase = {\n    name: 'Copy Custom Fonts',\n    execution_position: :after_compile,\n    script: <<~SCRIPT\n      set -e\n\n      HEAD=\"(RNVI-fontawesome-pro-solid)\"\n\n      echo \"${HEAD} START_COPY_FONTS\"\n\n      echo \"${HEAD} PWD: $(pwd)\"\n\n      #\n      # Find the custom font Directory\n      #\n\n      # Assume the project root is always two directories above the POD_ROOT\n      echo \"${HEAD} PODS_ROOT: $PODS_ROOT\"\n\n      PROJECT_ROOT=\"${PODS_ROOT}/../..\"\n      echo \"${HEAD} PROJECT_ROOT: $PROJECT_ROOT\"\n\n      cd $PROJECT_ROOT\n      FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/\"//g')\n      if [ -z \"$FONTS_DIR\" ]; then\n        FONTS_DIR=\"rnvi-fonts\"\n      fi\n      echo \"${HEAD} FONTS_DIR: $FONTS_DIR\"\n\n      FONTS_DIR=\"${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-solid\"\n      if [ ! -d \"$FONTS_DIR\" ]; then\n        echo \"${HEAD} $FONTS_DIR not found\"\n        exit 0\n      fi\n\n      #\n      # Find the destination we copy to\n      #\n\n      echo \"${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR\"\n      XCODE_DIR=$(ls -d \"$PODS_CONFIGURATION_BUILD_DIR\"/*.app)\n      echo \"${HEAD} XCODE_DIR: $XCODE_DIR\"\n      if [ -z \"$XCODE_DIR\" ]; then\n        echo \"Could not find XCODE_DIR to copy fonts to\"\n        exit 1\n      fi\n\n      DEST_DIR=\"${XCODE_DIR}\"\n      mkdir -p \"$DEST_DIR\"\n\n      #\n      # Copy the fonts\n      #\n\n      echo \"${HEAD} Copying the following files to $DEST_DIR\"\n      ls \"$FONTS_DIR\" | sed \"s/^/${HEAD} /\"\n\n      rsync -avr --copy-links --no-relative $FONTS_DIR/ \"$DEST_DIR\"\n\n      echo \"${HEAD} END:RNVI_COPY_FONTS\"\n    SCRIPT\n  }\nend\n"
  },
  {
    "path": "packages/fontawesome-pro-solid/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProSolid icon set component.\n * Usage: <FontAwesomeProSolid name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProSolid.json';\n\nexport const FontAwesomeProSolid = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Pro-Solid',\n  fontFileName: 'fa-solid-900.ttf',\n});\n\nexport type FontAwesomeProSolidIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProSolid;\n"
  },
  {
    "path": "packages/fontawesome-pro-solid/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProSolid icon set component.\n * Usage: <FontAwesomeProSolid name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProSolid.json';\n\nexport const FontAwesomeProSolid = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Pro-Solid',\n  fontFileName: 'fa-solid-900.ttf',\n});\n\nexport type FontAwesomeProSolidIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProSolid;\n"
  },
  {
    "path": "packages/fontawesome-pro-solid/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-solid/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-thin/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontawesome-pro-thin\",\n    \"upstreamFont\": {\n      \"registry\": \"https://npm.fontawesome.com\",\n      \"packageName\": \"@fortawesome/fontawesome-pro\",\n      \"versionOnly\": true\n    },\n    \"copyCustomFonts\": true,\n    \"className\": \"FontAwesomeProThin\",\n    \"postScriptName\": \"FontAwesome7Pro-Thin\",\n    \"fontFileName\": \"fa-thin-100\",\n    \"buildSteps\": {\n      \"preScript\": {\n        \"script\": \"../fontawesome-common/scripts/fetch-pro.sh 7\"\n      },\n      \"glyphmap\": {\n        \"location\": \"fa/pro/css/all.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fa-\"\n      },\n      \"postScript\": {\n        \"script\": \"../fontawesome-common/scripts/generate-fontawesome-glyphmap.mts FontAwesomeProThin.json fa/pro/svgs/thin\\nrm -rf fa\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"0.1.0\",\n        \"upstream\": \"7.1.0\"\n      },\n      {\n        \"rnvi\": \"0.1.1\",\n        \"upstream\": \"7.2.0\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-thin/CHANGELOG.md",
    "content": "## 0.2.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 0.1.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 0.1.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🩹 Fixes\n\n- upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 0.1.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 0.1.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontawesome-pro-thin/README.md",
    "content": "# React Native Vector Icons - Fontawesome Pro Thin\n\nFontawesome Pro Thin font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n> [!IMPORTANT]\n> This package does not include the fonts. You must provide them yourself.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/fontawesome-pro-thin\n```\n\n## Custom Fonts\n\nThis package requires you to provide the font files. Place your `.ttf` font\nfile in the following location:\n\n```\nrnvi-fonts/fontawesome-pro-thin/fa-thin-100.ttf\n```\n\nThe font will be automatically copied during the build process for both iOS and\nAndroid.\n\n## Usage\n\n```jsx\nimport { FontAwesomeProThin } from '@react-native-vector-icons/fontawesome-pro-thin';\n\n// ...\n\n<FontAwesomeProThin name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 0.1.0 | 7.1.0 |\n| &gt; 0.1.1 | 7.2.0 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/fontawesome-pro-thin/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.fontawesome_pro_thin\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFontAwesomeProThin\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.fontawesome_pro_thin\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-fontawesome-pro-thin\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-thin/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-thin) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n\ntask copyExtraFonts(type: Copy) {\n  from \"${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome-pro-thin\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome-pro-thin/fonts\"\n  eachFile { println \"(RNVI:fontawesome-pro-thin) Copying custom font: ${it.file}\" }\n}\n\npreBuild.dependsOn(copyExtraFonts)\n"
  },
  {
    "path": "packages/fontawesome-pro-thin/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.fontawesome_pro_thin\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-thin/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome-pro-thin/android/src/main/java/VectorIconsFontAwesomeProThinPackage.kt",
    "content": "package com.reactnativevectoricons.fontawesome_pro_thin\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFontAwesomeProThinPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-thin/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/fontawesome-pro-thin/glyphmaps/FontAwesomeProThin.json",
    "content": "{\n  \"0\": 48,\n  \"1\": 49,\n  \"2\": 50,\n  \"3\": 51,\n  \"4\": 52,\n  \"5\": 53,\n  \"6\": 54,\n  \"7\": 55,\n  \"8\": 56,\n  \"9\": 57,\n  \"100\": 58396,\n  \"00\": 58471,\n  \"360-degrees\": 58076,\n  \"a\": 65,\n  \"abacus\": 63040,\n  \"accent-grave\": 96,\n  \"acorn\": 63150,\n  \"ad\": 63041,\n  \"add\": 43,\n  \"address-book\": 62137,\n  \"address-card\": 62139,\n  \"adjust\": 61506,\n  \"aeropress\": 59435,\n  \"air-conditioner\": 63732,\n  \"air-freshener\": 62928,\n  \"airplay-audio\": 59259,\n  \"airplay\": 57481,\n  \"alarm-clock\": 62286,\n  \"alarm-exclamation\": 63555,\n  \"alarm-minus\": 59395,\n  \"alarm-plus\": 63556,\n  \"alarm-snooze\": 63557,\n  \"album-circle-plus\": 58508,\n  \"album-circle-user\": 58509,\n  \"album-collection-circle-plus\": 58510,\n  \"album-collection-circle-user\": 58511,\n  \"album-collection\": 63648,\n  \"album\": 63647,\n  \"alicorn\": 63152,\n  \"alien-8bit\": 63734,\n  \"alien-monster\": 63734,\n  \"alien\": 63733,\n  \"align-center\": 61495,\n  \"align-justify\": 61497,\n  \"align-left\": 61494,\n  \"align-right\": 61496,\n  \"align-slash\": 63558,\n  \"allergies\": 62561,\n  \"almost-equal-to\": 59416,\n  \"alt\": 57482,\n  \"ambulance\": 61689,\n  \"american-sign-language-interpreting\": 62115,\n  \"amp-guitar\": 63649,\n  \"ampersand\": 38,\n  \"analytics\": 63043,\n  \"anchor-circle-check\": 58538,\n  \"anchor-circle-exclamation\": 58539,\n  \"anchor-circle-xmark\": 58540,\n  \"anchor-lock\": 58541,\n  \"anchor\": 61757,\n  \"angel\": 63353,\n  \"angle-90\": 57485,\n  \"angle-double-down\": 61699,\n  \"angle-double-left\": 61696,\n  \"angle-double-right\": 61697,\n  \"angle-double-up\": 61698,\n  \"angle-down\": 61703,\n  \"angle-left\": 61700,\n  \"angle-right\": 61701,\n  \"angle-up\": 61702,\n  \"angle\": 57484,\n  \"angles-down\": 61699,\n  \"angles-left\": 61696,\n  \"angles-right\": 61697,\n  \"angles-up-down\": 58893,\n  \"angles-up\": 61698,\n  \"angry\": 62806,\n  \"ankh\": 63044,\n  \"ant\": 59008,\n  \"apartment\": 58472,\n  \"aperture\": 58079,\n  \"apostrophe\": 39,\n  \"apple-alt\": 62929,\n  \"apple-core\": 57487,\n  \"apple-crate\": 63153,\n  \"apple-whole\": 62929,\n  \"aquarius\": 59461,\n  \"archive\": 61831,\n  \"archway\": 62807,\n  \"area-chart\": 61950,\n  \"aries\": 59462,\n  \"arrow-alt-circle-down\": 62296,\n  \"arrow-alt-circle-left\": 62297,\n  \"arrow-alt-circle-right\": 62298,\n  \"arrow-alt-circle-up\": 62299,\n  \"arrow-alt-down\": 62292,\n  \"arrow-alt-from-bottom\": 62278,\n  \"arrow-alt-from-left\": 62279,\n  \"arrow-alt-from-right\": 62280,\n  \"arrow-alt-from-top\": 62281,\n  \"arrow-alt-left\": 62293,\n  \"arrow-alt-right\": 62294,\n  \"arrow-alt-square-down\": 62288,\n  \"arrow-alt-square-left\": 62289,\n  \"arrow-alt-square-right\": 62290,\n  \"arrow-alt-square-up\": 62291,\n  \"arrow-alt-to-bottom\": 62282,\n  \"arrow-alt-to-left\": 62283,\n  \"arrow-alt-to-right\": 62284,\n  \"arrow-alt-to-top\": 62285,\n  \"arrow-alt-up\": 62295,\n  \"arrow-archery\": 59449,\n  \"arrow-circle-down\": 61611,\n  \"arrow-circle-left\": 61608,\n  \"arrow-circle-right\": 61609,\n  \"arrow-circle-up\": 61610,\n  \"arrow-down-1-9\": 61794,\n  \"arrow-down-9-1\": 63622,\n  \"arrow-down-a-z\": 61789,\n  \"arrow-down-arrow-up\": 63619,\n  \"arrow-down-big-small\": 63628,\n  \"arrow-down-from-arc\": 58900,\n  \"arrow-down-from-bracket\": 58983,\n  \"arrow-down-from-dotted-line\": 57488,\n  \"arrow-down-from-line\": 62277,\n  \"arrow-down-left-and-arrow-up-right-to-center\": 57490,\n  \"arrow-down-left\": 57489,\n  \"arrow-down-long-to-line\": 59063,\n  \"arrow-down-long\": 61813,\n  \"arrow-down-right\": 57491,\n  \"arrow-down-short-wide\": 63620,\n  \"arrow-down-small-big\": 63629,\n  \"arrow-down-square-triangle\": 63625,\n  \"arrow-down-to-arc\": 58542,\n  \"arrow-down-to-bracket\": 57492,\n  \"arrow-down-to-dotted-line\": 57493,\n  \"arrow-down-to-line\": 62269,\n  \"arrow-down-to-square\": 57494,\n  \"arrow-down-triangle-square\": 63624,\n  \"arrow-down-up-across-line\": 58543,\n  \"arrow-down-up-lock\": 58544,\n  \"arrow-down-wide-short\": 61792,\n  \"arrow-down-z-a\": 63617,\n  \"arrow-down\": 61539,\n  \"arrow-from-bottom\": 62274,\n  \"arrow-from-left\": 62275,\n  \"arrow-from-right\": 62276,\n  \"arrow-from-top\": 62277,\n  \"arrow-left-arrow-right\": 59064,\n  \"arrow-left-from-arc\": 58901,\n  \"arrow-left-from-bracket\": 58984,\n  \"arrow-left-from-dotted-line\": 59065,\n  \"arrow-left-from-line\": 62276,\n  \"arrow-left-long-to-line\": 58324,\n  \"arrow-left-long\": 61815,\n  \"arrow-left-rotate\": 61666,\n  \"arrow-left-to-arc\": 58902,\n  \"arrow-left-to-bracket\": 58985,\n  \"arrow-left-to-dotted-line\": 59066,\n  \"arrow-left-to-line\": 62270,\n  \"arrow-left\": 61536,\n  \"arrow-pointer\": 62021,\n  \"arrow-progress\": 58847,\n  \"arrow-right-arrow-left\": 61676,\n  \"arrow-right-from-arc\": 58545,\n  \"arrow-right-from-bracket\": 61579,\n  \"arrow-right-from-dotted-line\": 59067,\n  \"arrow-right-from-file\": 62830,\n  \"arrow-right-from-line\": 62275,\n  \"arrow-right-long-to-line\": 58325,\n  \"arrow-right-long\": 61816,\n  \"arrow-right-rotate\": 61470,\n  \"arrow-right-to-arc\": 58546,\n  \"arrow-right-to-bracket\": 61584,\n  \"arrow-right-to-city\": 58547,\n  \"arrow-right-to-dotted-line\": 59068,\n  \"arrow-right-to-file\": 62831,\n  \"arrow-right-to-line\": 62272,\n  \"arrow-right\": 61537,\n  \"arrow-rotate-back\": 61666,\n  \"arrow-rotate-backward\": 61666,\n  \"arrow-rotate-forward\": 61470,\n  \"arrow-rotate-left-10\": 59446,\n  \"arrow-rotate-left-15\": 59526,\n  \"arrow-rotate-left-30\": 59527,\n  \"arrow-rotate-left\": 61666,\n  \"arrow-rotate-right-10\": 59447,\n  \"arrow-rotate-right-15\": 59528,\n  \"arrow-rotate-right-30\": 59529,\n  \"arrow-rotate-right\": 61470,\n  \"arrow-square-down\": 62265,\n  \"arrow-square-left\": 62266,\n  \"arrow-square-right\": 62267,\n  \"arrow-square-up\": 62268,\n  \"arrow-to-bottom\": 62269,\n  \"arrow-to-left\": 62270,\n  \"arrow-to-right\": 62272,\n  \"arrow-to-top\": 62273,\n  \"arrow-trend-down\": 57495,\n  \"arrow-trend-up\": 57496,\n  \"arrow-turn-down-left\": 58081,\n  \"arrow-turn-down-right\": 58326,\n  \"arrow-turn-down\": 61769,\n  \"arrow-turn-left-down\": 58931,\n  \"arrow-turn-left-up\": 58932,\n  \"arrow-turn-left\": 58930,\n  \"arrow-turn-right\": 58933,\n  \"arrow-turn-up\": 61768,\n  \"arrow-u-turn-down-left\": 59367,\n  \"arrow-u-turn-down-right\": 59368,\n  \"arrow-u-turn-left-down\": 59369,\n  \"arrow-u-turn-left-up\": 59370,\n  \"arrow-u-turn-right-down\": 59371,\n  \"arrow-u-turn-right-up\": 59372,\n  \"arrow-u-turn-up-left\": 59373,\n  \"arrow-u-turn-up-right\": 59374,\n  \"arrow-up-1-9\": 61795,\n  \"arrow-up-9-1\": 63623,\n  \"arrow-up-a-z\": 61790,\n  \"arrow-up-arrow-down\": 57497,\n  \"arrow-up-big-small\": 63630,\n  \"arrow-up-from-arc\": 58548,\n  \"arrow-up-from-bracket\": 57498,\n  \"arrow-up-from-dotted-line\": 57499,\n  \"arrow-up-from-ground-water\": 58549,\n  \"arrow-up-from-line\": 62274,\n  \"arrow-up-from-square\": 57500,\n  \"arrow-up-from-water-pump\": 58550,\n  \"arrow-up-left-from-circle\": 57502,\n  \"arrow-up-left\": 57501,\n  \"arrow-up-long-to-line\": 59069,\n  \"arrow-up-long\": 61814,\n  \"arrow-up-right-and-arrow-down-left-from-center\": 57504,\n  \"arrow-up-right-dots\": 58551,\n  \"arrow-up-right-from-square\": 61582,\n  \"arrow-up-right\": 57503,\n  \"arrow-up-short-wide\": 63621,\n  \"arrow-up-small-big\": 63631,\n  \"arrow-up-square-triangle\": 63627,\n  \"arrow-up-to-arc\": 58903,\n  \"arrow-up-to-bracket\": 58986,\n  \"arrow-up-to-dotted-line\": 57505,\n  \"arrow-up-to-line\": 62273,\n  \"arrow-up-triangle-square\": 63626,\n  \"arrow-up-wide-short\": 61793,\n  \"arrow-up-z-a\": 63618,\n  \"arrow-up\": 61538,\n  \"arrows-alt-h\": 62263,\n  \"arrows-alt-v\": 62264,\n  \"arrows-alt\": 61618,\n  \"arrows-cross\": 57506,\n  \"arrows-down-to-line\": 58552,\n  \"arrows-down-to-people\": 58553,\n  \"arrows-from-dotted-line\": 57507,\n  \"arrows-from-line\": 57508,\n  \"arrows-h\": 61566,\n  \"arrows-left-right-to-line\": 58554,\n  \"arrows-left-right\": 61566,\n  \"arrows-maximize\": 62237,\n  \"arrows-minimize\": 57509,\n  \"arrows-repeat-1\": 62310,\n  \"arrows-repeat\": 62308,\n  \"arrows-retweet\": 62305,\n  \"arrows-rotate-reverse\": 58928,\n  \"arrows-rotate\": 61473,\n  \"arrows-spin\": 58555,\n  \"arrows-split-up-and-left\": 58556,\n  \"arrows-to-circle\": 58557,\n  \"arrows-to-dot\": 58558,\n  \"arrows-to-dotted-line\": 57510,\n  \"arrows-to-eye\": 58559,\n  \"arrows-to-line\": 57511,\n  \"arrows-turn-right\": 58560,\n  \"arrows-turn-to-dots\": 58561,\n  \"arrows-up-down-left-right\": 61511,\n  \"arrows-up-down\": 61565,\n  \"arrows-up-to-line\": 58562,\n  \"arrows-v\": 61565,\n  \"arrows\": 61511,\n  \"asl-interpreting\": 62115,\n  \"assistive-listening-systems\": 62114,\n  \"asterisk\": 42,\n  \"at\": 64,\n  \"atlas\": 62808,\n  \"atom-alt\": 62931,\n  \"atom-simple\": 62931,\n  \"atom\": 62930,\n  \"audio-description-slash\": 57512,\n  \"audio-description\": 62110,\n  \"austral-sign\": 57513,\n  \"australian-dollar-sign\": 59134,\n  \"automobile\": 61881,\n  \"avocado\": 57514,\n  \"award-simple\": 57515,\n  \"award\": 62809,\n  \"axe-battle\": 63155,\n  \"axe\": 63154,\n  \"b\": 66,\n  \"baby-carriage\": 63357,\n  \"baby\": 63356,\n  \"backpack\": 62932,\n  \"backspace\": 62810,\n  \"backward-fast\": 61513,\n  \"backward-step\": 61512,\n  \"backward\": 61514,\n  \"bacon\": 63461,\n  \"bacteria\": 57433,\n  \"bacterium\": 57434,\n  \"badge-check\": 62262,\n  \"badge-dollar\": 63045,\n  \"badge-percent\": 63046,\n  \"badge-sheriff\": 63650,\n  \"badge\": 62261,\n  \"badger-honey\": 63156,\n  \"badminton\": 58170,\n  \"bag-seedling\": 58866,\n  \"bag-shopping-minus\": 58960,\n  \"bag-shopping-plus\": 58961,\n  \"bag-shopping\": 62096,\n  \"bagel\": 58327,\n  \"bags-shopping\": 63559,\n  \"baguette\": 58328,\n  \"bahai\": 63078,\n  \"baht-sign\": 57516,\n  \"balance-scale-left\": 62741,\n  \"balance-scale-right\": 62742,\n  \"balance-scale\": 62030,\n  \"ball-pile\": 63358,\n  \"ball-yarn\": 59086,\n  \"balloon\": 58083,\n  \"balloons\": 58084,\n  \"ballot-check\": 63283,\n  \"ballot\": 63282,\n  \"ban-bug\": 63481,\n  \"ban-parking\": 62998,\n  \"ban-smoking\": 62797,\n  \"ban\": 61534,\n  \"banana\": 58085,\n  \"band-aid\": 62562,\n  \"bandage\": 62562,\n  \"bangladeshi-taka-sign\": 58086,\n  \"banjo\": 63651,\n  \"bank\": 61852,\n  \"bar-chart\": 61568,\n  \"bar-progress-empty\": 59045,\n  \"bar-progress-full\": 59046,\n  \"bar-progress-half\": 59047,\n  \"bar-progress-quarter\": 59048,\n  \"bar-progress-three-quarters\": 59049,\n  \"bar-progress\": 59044,\n  \"barcode-alt\": 62563,\n  \"barcode-read\": 62564,\n  \"barcode-scan\": 62565,\n  \"barcode\": 61482,\n  \"barn-silo\": 63588,\n  \"barn\": 59079,\n  \"bars-filter\": 57517,\n  \"bars-progress\": 63528,\n  \"bars-sort\": 57518,\n  \"bars-staggered\": 62800,\n  \"bars\": 61641,\n  \"baseball-ball\": 62515,\n  \"baseball-bat-ball\": 62514,\n  \"baseball-bat\": 59365,\n  \"baseball\": 62515,\n  \"basket-shopping-minus\": 58962,\n  \"basket-shopping-plus\": 58963,\n  \"basket-shopping-simple\": 57519,\n  \"basket-shopping\": 62097,\n  \"basketball-ball\": 62516,\n  \"basketball-hoop\": 62517,\n  \"basketball\": 62516,\n  \"bat\": 63157,\n  \"bath\": 62157,\n  \"bathtub\": 62157,\n  \"battery-0\": 62020,\n  \"battery-1\": 57521,\n  \"battery-2\": 62019,\n  \"battery-3\": 62018,\n  \"battery-4\": 62017,\n  \"battery-5\": 62016,\n  \"battery-bolt\": 62326,\n  \"battery-car\": 62943,\n  \"battery-empty\": 62020,\n  \"battery-exclamation\": 57520,\n  \"battery-full\": 62016,\n  \"battery-half\": 62018,\n  \"battery-low\": 57521,\n  \"battery-quarter\": 62019,\n  \"battery-slash\": 62327,\n  \"battery-three-quarters\": 62017,\n  \"battery\": 62016,\n  \"bed-alt\": 63735,\n  \"bed-bunk\": 63736,\n  \"bed-empty\": 63737,\n  \"bed-front\": 63735,\n  \"bed-pulse\": 62599,\n  \"bed\": 62006,\n  \"bee\": 57522,\n  \"beer-foam\": 57523,\n  \"beer-mug-empty\": 61692,\n  \"beer-mug\": 57523,\n  \"beer\": 61692,\n  \"bell-concierge\": 62818,\n  \"bell-exclamation\": 63560,\n  \"bell-on\": 63738,\n  \"bell-plus\": 63561,\n  \"bell-ring\": 58924,\n  \"bell-school-slash\": 62934,\n  \"bell-school\": 62933,\n  \"bell-slash\": 61942,\n  \"bell\": 61683,\n  \"bells\": 63359,\n  \"bench-tree\": 58087,\n  \"betamax\": 63652,\n  \"bezier-curve\": 62811,\n  \"bible\": 63047,\n  \"bicep\": 59490,\n  \"bicycle\": 61958,\n  \"biking-mountain\": 63563,\n  \"biking\": 63562,\n  \"billboard\": 58829,\n  \"bin-bottles-recycle\": 58870,\n  \"bin-bottles\": 58869,\n  \"bin-recycle\": 58871,\n  \"bin\": 59235,\n  \"binary-circle-check\": 58172,\n  \"binary-lock\": 58173,\n  \"binary-slash\": 58174,\n  \"binary\": 58171,\n  \"binoculars\": 61925,\n  \"biohazard\": 63360,\n  \"bird\": 58473,\n  \"birthday-cake\": 61949,\n  \"bitcoin-sign\": 57524,\n  \"blackboard\": 62747,\n  \"blanket-fire\": 58330,\n  \"blanket\": 62616,\n  \"blender-phone\": 63158,\n  \"blender\": 62743,\n  \"blind\": 62109,\n  \"blinds-open\": 63740,\n  \"blinds-raised\": 63741,\n  \"blinds\": 63739,\n  \"block-brick-fire\": 58332,\n  \"block-brick\": 58331,\n  \"block-question\": 58333,\n  \"block-quote\": 57525,\n  \"block\": 58474,\n  \"blog\": 63361,\n  \"blueberries\": 58088,\n  \"bluetooth\": 62099,\n  \"bold\": 61490,\n  \"bolt-auto\": 57526,\n  \"bolt-lightning\": 57527,\n  \"bolt-slash\": 57528,\n  \"bolt\": 61671,\n  \"bomb\": 61922,\n  \"bone-break\": 62936,\n  \"bone\": 62935,\n  \"bong\": 62812,\n  \"book-alt\": 62937,\n  \"book-arrow-right\": 57529,\n  \"book-arrow-up\": 57530,\n  \"book-atlas\": 62808,\n  \"book-bible\": 63047,\n  \"book-blank\": 62937,\n  \"book-bookmark\": 57531,\n  \"book-circle-arrow-right\": 57532,\n  \"book-circle-arrow-up\": 57533,\n  \"book-circle\": 57599,\n  \"book-copy\": 57534,\n  \"book-dead\": 63159,\n  \"book-font\": 57535,\n  \"book-heart\": 62617,\n  \"book-journal-whills\": 63082,\n  \"book-law\": 57537,\n  \"book-medical\": 63462,\n  \"book-open-alt\": 57536,\n  \"book-open-cover\": 57536,\n  \"book-open-lines\": 59219,\n  \"book-open-reader\": 62938,\n  \"book-open\": 62744,\n  \"book-quran\": 63111,\n  \"book-reader\": 62938,\n  \"book-section\": 57537,\n  \"book-skull\": 63159,\n  \"book-sparkles\": 63160,\n  \"book-spells\": 63160,\n  \"book-spine\": 59220,\n  \"book-tanakh\": 63527,\n  \"book-user\": 63463,\n  \"book\": 61485,\n  \"bookmark-circle\": 57600,\n  \"bookmark-plus\": 59221,\n  \"bookmark-slash\": 57538,\n  \"bookmark\": 61486,\n  \"books-medical\": 63464,\n  \"books\": 62939,\n  \"boombox\": 63653,\n  \"boot-heeled\": 58175,\n  \"boot\": 63362,\n  \"booth-curtain\": 63284,\n  \"border-all\": 63564,\n  \"border-bottom-right\": 63572,\n  \"border-bottom\": 63565,\n  \"border-center-h\": 63644,\n  \"border-center-v\": 63645,\n  \"border-inner\": 63566,\n  \"border-left\": 63567,\n  \"border-none\": 63568,\n  \"border-outer\": 63569,\n  \"border-right\": 63570,\n  \"border-style-alt\": 63572,\n  \"border-style\": 63571,\n  \"border-top-left\": 63571,\n  \"border-top\": 63573,\n  \"bore-hole\": 58563,\n  \"bottle-baby\": 58995,\n  \"bottle-droplet\": 58564,\n  \"bottle-water\": 58565,\n  \"bow-archery\": 59450,\n  \"bow-arrow\": 63161,\n  \"bowl-chopsticks-noodles\": 58090,\n  \"bowl-chopsticks\": 58089,\n  \"bowl-food\": 58566,\n  \"bowl-hot\": 63523,\n  \"bowl-rice\": 58091,\n  \"bowl-salad\": 63518,\n  \"bowl-scoop\": 58334,\n  \"bowl-scoops\": 58335,\n  \"bowl-shaved-ice\": 58334,\n  \"bowl-soft-serve\": 58475,\n  \"bowl-spoon\": 58336,\n  \"bowling-ball-pin\": 57539,\n  \"bowling-ball\": 62518,\n  \"bowling-pins\": 62519,\n  \"box-alt\": 62618,\n  \"box-archive\": 61831,\n  \"box-arrow-down-arrow-up\": 59285,\n  \"box-arrow-down-magnifying-glass\": 59286,\n  \"box-arrow-down\": 59284,\n  \"box-arrow-up\": 59431,\n  \"box-ballot\": 63285,\n  \"box-check\": 62567,\n  \"box-circle-check\": 57540,\n  \"box-dollar\": 62624,\n  \"box-fragile\": 62619,\n  \"box-full\": 62620,\n  \"box-heart\": 62621,\n  \"box-isometric-tape\": 59288,\n  \"box-isometric\": 59287,\n  \"box-magnifying-glass\": 59432,\n  \"box-open-full\": 62620,\n  \"box-open\": 62622,\n  \"box-taped\": 62618,\n  \"box-tissue\": 57435,\n  \"box-up\": 62623,\n  \"box-usd\": 62624,\n  \"box\": 62566,\n  \"boxes-alt\": 62568,\n  \"boxes-packing\": 58567,\n  \"boxes-stacked\": 62568,\n  \"boxes\": 62568,\n  \"boxing-glove\": 62520,\n  \"bra\": 59087,\n  \"bracket-curly-left\": 123,\n  \"bracket-curly-right\": 125,\n  \"bracket-curly\": 123,\n  \"bracket-left\": 91,\n  \"bracket-round-right\": 41,\n  \"bracket-round\": 40,\n  \"bracket-square-right\": 93,\n  \"bracket-square\": 91,\n  \"bracket\": 91,\n  \"brackets-curly\": 63466,\n  \"brackets-round\": 57541,\n  \"brackets-square\": 63465,\n  \"brackets\": 63465,\n  \"braille\": 62113,\n  \"brain-arrow-curved-right\": 63095,\n  \"brain-circuit\": 57542,\n  \"brain\": 62940,\n  \"brake-warning\": 57543,\n  \"brazilian-real-sign\": 58476,\n  \"bread-loaf\": 63467,\n  \"bread-slice-butter\": 58337,\n  \"bread-slice\": 63468,\n  \"bridge-circle-check\": 58569,\n  \"bridge-circle-exclamation\": 58570,\n  \"bridge-circle-xmark\": 58571,\n  \"bridge-lock\": 58572,\n  \"bridge-suspension\": 58573,\n  \"bridge-water\": 58574,\n  \"bridge\": 58568,\n  \"briefcase-arrow-right\": 58098,\n  \"briefcase-blank\": 57544,\n  \"briefcase-clock\": 63050,\n  \"briefcase-medical\": 62569,\n  \"briefcase\": 61617,\n  \"briefs\": 59088,\n  \"brightness-low\": 57546,\n  \"brightness\": 57545,\n  \"bring-forward\": 63574,\n  \"bring-front\": 63575,\n  \"broadcast-tower\": 62745,\n  \"broccoli\": 58338,\n  \"broom-ball\": 62552,\n  \"broom-wide\": 58833,\n  \"broom\": 62746,\n  \"browser\": 62334,\n  \"browsers\": 57547,\n  \"brush\": 62813,\n  \"bucket\": 58575,\n  \"bug-slash\": 58512,\n  \"bug\": 61832,\n  \"bugs\": 58576,\n  \"building-circle-arrow-right\": 58577,\n  \"building-circle-check\": 58578,\n  \"building-circle-exclamation\": 58579,\n  \"building-circle-xmark\": 58580,\n  \"building-columns\": 61852,\n  \"building-flag\": 58581,\n  \"building-lock\": 58582,\n  \"building-magnifying-glass\": 58908,\n  \"building-memo\": 58910,\n  \"building-ngo\": 58583,\n  \"building-shield\": 58584,\n  \"building-un\": 58585,\n  \"building-user\": 58586,\n  \"building-wheat\": 58587,\n  \"building\": 61869,\n  \"buildings\": 57548,\n  \"bulldozer\": 58965,\n  \"bullhorn\": 61601,\n  \"bullseye-arrow\": 63048,\n  \"bullseye-pointer\": 63049,\n  \"bullseye\": 61760,\n  \"buoy-mooring\": 58806,\n  \"buoy\": 58805,\n  \"burger-cheese\": 63473,\n  \"burger-fries\": 57549,\n  \"burger-glass\": 57550,\n  \"burger-lettuce\": 58339,\n  \"burger-soda\": 63576,\n  \"burger\": 63493,\n  \"burn\": 62570,\n  \"burrito\": 63469,\n  \"burst-new\": 59512,\n  \"burst\": 58588,\n  \"bus-alt\": 62814,\n  \"bus-school\": 62941,\n  \"bus-side\": 59421,\n  \"bus-simple\": 62814,\n  \"bus-stop\": 59422,\n  \"bus\": 61959,\n  \"business-front\": 58460,\n  \"business-time\": 63050,\n  \"butter\": 58340,\n  \"butterfly\": 59409,\n  \"c\": 67,\n  \"cab\": 61882,\n  \"cabin\": 58477,\n  \"cabinet-filing\": 63051,\n  \"cable-car\": 63450,\n  \"cactus\": 63655,\n  \"caduceus\": 59009,\n  \"cake-candles\": 61949,\n  \"cake-slice\": 58341,\n  \"cake\": 61949,\n  \"calculator-alt\": 63052,\n  \"calculator-simple\": 63052,\n  \"calculator\": 61932,\n  \"calendar-alt\": 61555,\n  \"calendar-arrow-down\": 57552,\n  \"calendar-arrow-up\": 57553,\n  \"calendar-check\": 62068,\n  \"calendar-circle-exclamation\": 58478,\n  \"calendar-circle-minus\": 58479,\n  \"calendar-circle-plus\": 58480,\n  \"calendar-circle-user\": 58481,\n  \"calendar-circle\": 57602,\n  \"calendar-clock\": 57554,\n  \"calendar-day\": 63363,\n  \"calendar-days\": 61555,\n  \"calendar-download\": 57552,\n  \"calendar-edit\": 62259,\n  \"calendar-exclamation\": 62260,\n  \"calendar-heart\": 57555,\n  \"calendar-image\": 57556,\n  \"calendar-lines-pen\": 58482,\n  \"calendar-lines\": 57557,\n  \"calendar-minus\": 62066,\n  \"calendar-note\": 57557,\n  \"calendar-pen\": 62259,\n  \"calendar-plus\": 62065,\n  \"calendar-range\": 57558,\n  \"calendar-star\": 63286,\n  \"calendar-time\": 57554,\n  \"calendar-times\": 62067,\n  \"calendar-upload\": 57553,\n  \"calendar-users\": 58850,\n  \"calendar-week\": 63364,\n  \"calendar-xmark\": 62067,\n  \"calendar\": 61747,\n  \"calendars\": 57559,\n  \"camcorder\": 63656,\n  \"camera-alt\": 61488,\n  \"camera-cctv\": 63660,\n  \"camera-circle-ellipsis\": 59238,\n  \"camera-circle\": 57603,\n  \"camera-clock\": 59239,\n  \"camera-home\": 63742,\n  \"camera-movie\": 63657,\n  \"camera-polaroid\": 63658,\n  \"camera-retro\": 61571,\n  \"camera-rotate\": 57560,\n  \"camera-security\": 63742,\n  \"camera-shutter\": 59240,\n  \"camera-slash\": 57561,\n  \"camera-viewfinder\": 57562,\n  \"camera-web-slash\": 63539,\n  \"camera-web\": 63538,\n  \"camera\": 61488,\n  \"campfire\": 63162,\n  \"campground\": 63163,\n  \"can-food\": 58342,\n  \"cancel\": 61534,\n  \"cancer\": 59463,\n  \"candle-holder\": 63164,\n  \"candy-bar\": 58344,\n  \"candy-cane\": 63366,\n  \"candy-corn\": 63165,\n  \"candy\": 58343,\n  \"cannabis\": 62815,\n  \"cannon\": 58946,\n  \"canoe-person\": 59548,\n  \"capricorn\": 59464,\n  \"capsule\": 59226,\n  \"capsules\": 62571,\n  \"car-alt\": 62942,\n  \"car-battery\": 62943,\n  \"car-bolt\": 58177,\n  \"car-building\": 63577,\n  \"car-bump\": 62944,\n  \"car-burst\": 62945,\n  \"car-bus\": 63578,\n  \"car-circle-bolt\": 58178,\n  \"car-crash\": 62945,\n  \"car-garage\": 62946,\n  \"car-key\": 59328,\n  \"car-mechanic\": 62947,\n  \"car-mirrors\": 58179,\n  \"car-on\": 58589,\n  \"car-people\": 59036,\n  \"car-rear\": 62942,\n  \"car-side-bolt\": 58180,\n  \"car-side\": 62948,\n  \"car-siren-on\": 59330,\n  \"car-siren\": 59329,\n  \"car-tilt\": 62949,\n  \"car-tunnel\": 58590,\n  \"car-wash\": 62950,\n  \"car-wrench\": 62947,\n  \"car\": 61881,\n  \"caravan-alt\": 57344,\n  \"caravan-simple\": 57344,\n  \"caravan\": 63743,\n  \"card-club\": 58345,\n  \"card-diamond\": 58346,\n  \"card-heart\": 58347,\n  \"card-spade\": 58348,\n  \"cards-blank\": 58591,\n  \"cards\": 58349,\n  \"caret-circle-down\": 62253,\n  \"caret-circle-left\": 62254,\n  \"caret-circle-right\": 62256,\n  \"caret-circle-up\": 62257,\n  \"caret-down\": 61655,\n  \"caret-large-down\": 59436,\n  \"caret-large-left\": 59437,\n  \"caret-large-right\": 59438,\n  \"caret-large-up\": 59439,\n  \"caret-left\": 61657,\n  \"caret-right\": 61658,\n  \"caret-square-down\": 61776,\n  \"caret-square-left\": 61841,\n  \"caret-square-right\": 61778,\n  \"caret-square-up\": 61777,\n  \"caret-up\": 61656,\n  \"carpool\": 59036,\n  \"carriage-baby\": 63357,\n  \"carrot\": 63367,\n  \"cars\": 63579,\n  \"cart-arrow-down\": 61976,\n  \"cart-arrow-up\": 58350,\n  \"cart-circle-arrow-down\": 58351,\n  \"cart-circle-arrow-up\": 58352,\n  \"cart-circle-check\": 58353,\n  \"cart-circle-exclamation\": 58354,\n  \"cart-circle-plus\": 58355,\n  \"cart-circle-xmark\": 58356,\n  \"cart-flatbed-boxes\": 62581,\n  \"cart-flatbed-empty\": 62582,\n  \"cart-flatbed-suitcase\": 62877,\n  \"cart-flatbed\": 62580,\n  \"cart-minus\": 57563,\n  \"cart-plus\": 61975,\n  \"cart-shopping-fast\": 57564,\n  \"cart-shopping\": 61562,\n  \"cart-xmark\": 57565,\n  \"cash-register\": 63368,\n  \"cassette-betamax\": 63652,\n  \"cassette-tape\": 63659,\n  \"cassette-vhs\": 63724,\n  \"castle\": 57566,\n  \"cat-space\": 57345,\n  \"cat\": 63166,\n  \"cauldron\": 63167,\n  \"cctv\": 63660,\n  \"cedi-sign\": 57567,\n  \"cent-sign\": 58357,\n  \"certificate\": 61603,\n  \"chain-broken\": 61735,\n  \"chain-horizontal-slash\": 57804,\n  \"chain-horizontal\": 57803,\n  \"chain-slash\": 61735,\n  \"chain\": 61633,\n  \"chair-office\": 63169,\n  \"chair\": 63168,\n  \"chalkboard-teacher\": 62748,\n  \"chalkboard-user\": 62748,\n  \"chalkboard\": 62747,\n  \"champagne-glass\": 63390,\n  \"champagne-glasses\": 63391,\n  \"charging-station\": 62951,\n  \"chart-area\": 61950,\n  \"chart-bar\": 61568,\n  \"chart-bullet\": 57569,\n  \"chart-candlestick\": 57570,\n  \"chart-column\": 57571,\n  \"chart-diagram\": 59029,\n  \"chart-fft\": 59038,\n  \"chart-gantt\": 57572,\n  \"chart-kanban\": 58959,\n  \"chart-line-down\": 63053,\n  \"chart-line-up-down\": 58839,\n  \"chart-line-up\": 57573,\n  \"chart-line\": 61953,\n  \"chart-mixed-up-circle-currency\": 58840,\n  \"chart-mixed-up-circle-dollar\": 58841,\n  \"chart-mixed\": 63043,\n  \"chart-network\": 63370,\n  \"chart-pie-alt\": 63054,\n  \"chart-pie-simple-circle-currency\": 58884,\n  \"chart-pie-simple-circle-dollar\": 58885,\n  \"chart-pie-simple\": 63054,\n  \"chart-pie\": 61952,\n  \"chart-pyramid\": 57574,\n  \"chart-radar\": 57575,\n  \"chart-scatter-3d\": 57576,\n  \"chart-scatter-bubble\": 57577,\n  \"chart-scatter\": 63470,\n  \"chart-simple-horizontal\": 58484,\n  \"chart-simple\": 58483,\n  \"chart-sine\": 59037,\n  \"chart-tree-map\": 57578,\n  \"chart-user\": 63139,\n  \"chart-waterfall\": 57579,\n  \"check-circle\": 61528,\n  \"check-double\": 62816,\n  \"check-square\": 61770,\n  \"check-to-slot\": 63346,\n  \"check\": 61452,\n  \"cheese-swiss\": 63472,\n  \"cheese\": 63471,\n  \"cheeseburger\": 63473,\n  \"chemex\": 59440,\n  \"cherries\": 57580,\n  \"chess-bishop-alt\": 62523,\n  \"chess-bishop-piece\": 62523,\n  \"chess-bishop\": 62522,\n  \"chess-board\": 62524,\n  \"chess-clock-alt\": 62526,\n  \"chess-clock-flip\": 62526,\n  \"chess-clock\": 62525,\n  \"chess-king-alt\": 62528,\n  \"chess-king-piece\": 62528,\n  \"chess-king\": 62527,\n  \"chess-knight-alt\": 62530,\n  \"chess-knight-piece\": 62530,\n  \"chess-knight\": 62529,\n  \"chess-pawn-alt\": 62532,\n  \"chess-pawn-piece\": 62532,\n  \"chess-pawn\": 62531,\n  \"chess-queen-alt\": 62534,\n  \"chess-queen-piece\": 62534,\n  \"chess-queen\": 62533,\n  \"chess-rook-alt\": 62536,\n  \"chess-rook-piece\": 62536,\n  \"chess-rook\": 62535,\n  \"chess\": 62521,\n  \"chest-drawers\": 59523,\n  \"chestnut\": 58358,\n  \"chevron-circle-down\": 61754,\n  \"chevron-circle-left\": 61751,\n  \"chevron-circle-right\": 61752,\n  \"chevron-circle-up\": 61753,\n  \"chevron-double-down\": 62242,\n  \"chevron-double-left\": 62243,\n  \"chevron-double-right\": 62244,\n  \"chevron-double-up\": 62245,\n  \"chevron-down\": 61560,\n  \"chevron-left\": 61523,\n  \"chevron-right\": 61524,\n  \"chevron-square-down\": 62249,\n  \"chevron-square-left\": 62250,\n  \"chevron-square-right\": 62251,\n  \"chevron-square-up\": 62252,\n  \"chevron-up\": 61559,\n  \"chevrons-down\": 62242,\n  \"chevrons-left\": 62243,\n  \"chevrons-right\": 62244,\n  \"chevrons-up\": 62245,\n  \"chf-sign\": 58882,\n  \"child-combatant\": 58592,\n  \"child-dress\": 58780,\n  \"child-reaching\": 58781,\n  \"child-rifle\": 58592,\n  \"child\": 61870,\n  \"children\": 58593,\n  \"chimney\": 63371,\n  \"chocolate-bar\": 58344,\n  \"chopsticks\": 58359,\n  \"church\": 62749,\n  \"circle-0\": 57581,\n  \"circle-1\": 57582,\n  \"circle-2\": 57583,\n  \"circle-3\": 57584,\n  \"circle-4\": 57585,\n  \"circle-5\": 57586,\n  \"circle-6\": 57587,\n  \"circle-7\": 57588,\n  \"circle-8\": 57589,\n  \"circle-9\": 57590,\n  \"circle-a\": 57591,\n  \"circle-ampersand\": 57592,\n  \"circle-arrow-down-left\": 57593,\n  \"circle-arrow-down-right\": 57594,\n  \"circle-arrow-down\": 61611,\n  \"circle-arrow-left\": 61608,\n  \"circle-arrow-right\": 61609,\n  \"circle-arrow-up-left\": 57595,\n  \"circle-arrow-up-right\": 57596,\n  \"circle-arrow-up\": 61610,\n  \"circle-austral\": 59163,\n  \"circle-australian-dollar\": 59184,\n  \"circle-b\": 57597,\n  \"circle-baht\": 59181,\n  \"circle-bangladeshi-taka\": 59137,\n  \"circle-bitcoin\": 59191,\n  \"circle-bolt\": 57598,\n  \"circle-book-open\": 57599,\n  \"circle-bookmark\": 57600,\n  \"circle-brazilian-real\": 59115,\n  \"circle-c\": 57601,\n  \"circle-calendar\": 57602,\n  \"circle-camera\": 57603,\n  \"circle-caret-down\": 62253,\n  \"circle-caret-left\": 62254,\n  \"circle-caret-right\": 62256,\n  \"circle-caret-up\": 62257,\n  \"circle-cedi\": 59202,\n  \"circle-cent\": 59178,\n  \"circle-check\": 61528,\n  \"circle-chevron-down\": 61754,\n  \"circle-chevron-left\": 61751,\n  \"circle-chevron-right\": 61752,\n  \"circle-chevron-up\": 61753,\n  \"circle-chf\": 59180,\n  \"circle-colon\": 59132,\n  \"circle-cruzeiro\": 59170,\n  \"circle-currency\": 59118,\n  \"circle-d\": 57604,\n  \"circle-danish-krone\": 59206,\n  \"circle-dashed\": 57605,\n  \"circle-divide\": 57606,\n  \"circle-dollar-to-slot\": 62649,\n  \"circle-dollar\": 62184,\n  \"circle-dong\": 59171,\n  \"circle-dot\": 61842,\n  \"circle-down-left\": 57607,\n  \"circle-down-right\": 57608,\n  \"circle-down\": 62296,\n  \"circle-e\": 57609,\n  \"circle-ellipsis-vertical\": 57611,\n  \"circle-ellipsis\": 57610,\n  \"circle-envelope\": 57612,\n  \"circle-equals\": 59057,\n  \"circle-euro\": 58830,\n  \"circle-eurozone\": 59205,\n  \"circle-exclamation-check\": 57613,\n  \"circle-exclamation\": 61546,\n  \"circle-f\": 57614,\n  \"circle-florin\": 59108,\n  \"circle-franc\": 59169,\n  \"circle-g\": 57615,\n  \"circle-gf\": 59007,\n  \"circle-guarani\": 59195,\n  \"circle-h\": 62590,\n  \"circle-half-horizontal\": 59404,\n  \"circle-half-stroke-horizontal\": 59405,\n  \"circle-half-stroke\": 61506,\n  \"circle-half\": 57616,\n  \"circle-heart\": 62663,\n  \"circle-house\": 59080,\n  \"circle-hryvnia\": 59119,\n  \"circle-i\": 57617,\n  \"circle-indian-rupee\": 59188,\n  \"circle-info\": 61530,\n  \"circle-j\": 57618,\n  \"circle-k\": 57619,\n  \"circle-kip\": 59133,\n  \"circle-l\": 57620,\n  \"circle-lari\": 59165,\n  \"circle-left\": 62297,\n  \"circle-lira\": 59126,\n  \"circle-litecoin\": 59124,\n  \"circle-location-arrow\": 62978,\n  \"circle-m\": 57621,\n  \"circle-malaysian-ringgit\": 59129,\n  \"circle-manat\": 59131,\n  \"circle-microphone-lines\": 57623,\n  \"circle-microphone\": 57622,\n  \"circle-mill\": 59138,\n  \"circle-minus\": 61526,\n  \"circle-moon\": 59360,\n  \"circle-n\": 57624,\n  \"circle-naira\": 59209,\n  \"circle-nodes\": 58594,\n  \"circle-norwegian-krone\": 59192,\n  \"circle-notch\": 61902,\n  \"circle-o\": 57625,\n  \"circle-p\": 57626,\n  \"circle-parking\": 62997,\n  \"circle-pause\": 62091,\n  \"circle-peruvian-soles\": 59123,\n  \"circle-peseta\": 59201,\n  \"circle-peso\": 59135,\n  \"circle-phone-flip\": 57628,\n  \"circle-phone-hangup\": 57629,\n  \"circle-phone\": 57627,\n  \"circle-play\": 61764,\n  \"circle-plus\": 61525,\n  \"circle-polish-zloty\": 59136,\n  \"circle-q\": 57630,\n  \"circle-quarter-stroke\": 58835,\n  \"circle-quarter\": 57631,\n  \"circle-quarters\": 58360,\n  \"circle-question\": 61529,\n  \"circle-r\": 57632,\n  \"circle-radiation\": 63418,\n  \"circle-renminbi\": 59113,\n  \"circle-right\": 62298,\n  \"circle-ruble\": 59109,\n  \"circle-rupee\": 59156,\n  \"circle-rupiah\": 59142,\n  \"circle-s\": 57633,\n  \"circle-share-nodes\": 59099,\n  \"circle-shekel\": 59139,\n  \"circle-small\": 57634,\n  \"circle-sort-down\": 57393,\n  \"circle-sort-up\": 57394,\n  \"circle-sort\": 57392,\n  \"circle-star\": 57635,\n  \"circle-sterling\": 58831,\n  \"circle-stop\": 62093,\n  \"circle-swedish-krona\": 59203,\n  \"circle-t\": 57636,\n  \"circle-tenge\": 59173,\n  \"circle-three-quarters-stroke\": 58836,\n  \"circle-three-quarters\": 57637,\n  \"circle-trash\": 57638,\n  \"circle-tugrik\": 59153,\n  \"circle-turkish-lira\": 59193,\n  \"circle-u\": 57639,\n  \"circle-up-left\": 57640,\n  \"circle-up-right\": 57641,\n  \"circle-up\": 62299,\n  \"circle-user-circle-check\": 59295,\n  \"circle-user-circle-exclamation\": 59296,\n  \"circle-user-circle-minus\": 59297,\n  \"circle-user-circle-moon\": 59298,\n  \"circle-user-circle-plus\": 59299,\n  \"circle-user-circle-question\": 59300,\n  \"circle-user-circle-user\": 59301,\n  \"circle-user-circle-xmark\": 59302,\n  \"circle-user-clock\": 59303,\n  \"circle-user\": 62141,\n  \"circle-v\": 57642,\n  \"circle-video\": 57643,\n  \"circle-w\": 57644,\n  \"circle-waveform-lines\": 57645,\n  \"circle-wifi-circle-wifi\": 59006,\n  \"circle-wifi-group\": 59006,\n  \"circle-wifi\": 59005,\n  \"circle-won\": 59116,\n  \"circle-x\": 57646,\n  \"circle-xmark\": 61527,\n  \"circle-y\": 57647,\n  \"circle-yen\": 58832,\n  \"circle-z\": 57648,\n  \"circle\": 61713,\n  \"circleapore-dollar\": 59166,\n  \"circles-overlap-3\": 59041,\n  \"circles-overlap\": 58880,\n  \"citrus-slice\": 58101,\n  \"citrus\": 58100,\n  \"city\": 63055,\n  \"clapperboard-play\": 57650,\n  \"clapperboard\": 57649,\n  \"clarinet\": 63661,\n  \"claw-marks\": 63170,\n  \"clinic-medical\": 63474,\n  \"clipboard-check\": 62572,\n  \"clipboard-clock\": 59222,\n  \"clipboard-exclamation\": 59223,\n  \"clipboard-list-check\": 63287,\n  \"clipboard-list\": 62573,\n  \"clipboard-medical\": 57651,\n  \"clipboard-prescription\": 62952,\n  \"clipboard-question\": 58595,\n  \"clipboard-user\": 63475,\n  \"clipboard\": 62248,\n  \"clock-desk\": 57652,\n  \"clock-eight-thirty\": 58182,\n  \"clock-eight\": 58181,\n  \"clock-eleven-thirty\": 58184,\n  \"clock-eleven\": 58183,\n  \"clock-five-thirty\": 58186,\n  \"clock-five\": 58185,\n  \"clock-four-thirty\": 58187,\n  \"clock-four\": 61463,\n  \"clock-nine-thirty\": 58189,\n  \"clock-nine\": 58188,\n  \"clock-one-thirty\": 58191,\n  \"clock-one\": 58190,\n  \"clock-rotate-left\": 61914,\n  \"clock-seven-thirty\": 58193,\n  \"clock-seven\": 58192,\n  \"clock-six-thirty\": 58195,\n  \"clock-six\": 58194,\n  \"clock-ten-thirty\": 58197,\n  \"clock-ten\": 58196,\n  \"clock-three-thirty\": 58199,\n  \"clock-three\": 58198,\n  \"clock-twelve-thirty\": 58201,\n  \"clock-twelve\": 58200,\n  \"clock-two-thirty\": 58203,\n  \"clock-two\": 58202,\n  \"clock\": 61463,\n  \"clone-plus\": 59212,\n  \"clone\": 62029,\n  \"close\": 61453,\n  \"closed-captioning-slash\": 57653,\n  \"closed-captioning\": 61962,\n  \"clothes-hanger\": 57654,\n  \"cloud-arrow-down\": 61677,\n  \"cloud-arrow-up\": 61678,\n  \"cloud-binary\": 58881,\n  \"cloud-bolt-moon\": 63341,\n  \"cloud-bolt-sun\": 63342,\n  \"cloud-bolt\": 63340,\n  \"cloud-check\": 58204,\n  \"cloud-download-alt\": 61677,\n  \"cloud-download\": 61677,\n  \"cloud-drizzle\": 63288,\n  \"cloud-exclamation\": 58513,\n  \"cloud-fog\": 63310,\n  \"cloud-hail-mixed\": 63290,\n  \"cloud-hail\": 63289,\n  \"cloud-meatball\": 63291,\n  \"cloud-minus\": 58205,\n  \"cloud-moon-rain\": 63292,\n  \"cloud-moon\": 63171,\n  \"cloud-music\": 63662,\n  \"cloud-plus\": 58206,\n  \"cloud-question\": 58514,\n  \"cloud-rain\": 63293,\n  \"cloud-rainbow\": 63294,\n  \"cloud-showers-heavy\": 63296,\n  \"cloud-showers-water\": 58596,\n  \"cloud-showers\": 63295,\n  \"cloud-slash\": 57655,\n  \"cloud-sleet\": 63297,\n  \"cloud-snow\": 63298,\n  \"cloud-sun-rain\": 63299,\n  \"cloud-sun\": 63172,\n  \"cloud-upload-alt\": 61678,\n  \"cloud-upload\": 61678,\n  \"cloud-word\": 57656,\n  \"cloud-xmark\": 58207,\n  \"cloud\": 61634,\n  \"clouds-moon\": 63301,\n  \"clouds-sun\": 63302,\n  \"clouds\": 63300,\n  \"clover\": 57657,\n  \"club\": 62247,\n  \"cny\": 61783,\n  \"cocktail\": 62817,\n  \"coconut\": 58102,\n  \"code-branch\": 61734,\n  \"code-commit\": 62342,\n  \"code-compare\": 57658,\n  \"code-fork\": 57659,\n  \"code-merge\": 62343,\n  \"code-pull-request-closed\": 58361,\n  \"code-pull-request-draft\": 58362,\n  \"code-pull-request\": 57660,\n  \"code-simple\": 57661,\n  \"code\": 61729,\n  \"coffee-bean\": 57662,\n  \"coffee-beans\": 57663,\n  \"coffee-pot\": 57346,\n  \"coffee-togo\": 63173,\n  \"coffee\": 61684,\n  \"coffin-cross\": 57425,\n  \"coffin\": 63174,\n  \"cog\": 61459,\n  \"cogs\": 61573,\n  \"coin-blank\": 58363,\n  \"coin-front\": 58364,\n  \"coin-vertical\": 58365,\n  \"coin\": 63580,\n  \"coins\": 62750,\n  \"colon-sign\": 57664,\n  \"colon\": 58,\n  \"columns-3\": 58209,\n  \"columns\": 61659,\n  \"comet\": 57347,\n  \"comma\": 44,\n  \"command\": 57666,\n  \"comment-alt-arrow-down\": 57819,\n  \"comment-alt-arrow-up\": 57820,\n  \"comment-alt-captions\": 57822,\n  \"comment-alt-check\": 62626,\n  \"comment-alt-dollar\": 63056,\n  \"comment-alt-dots\": 62627,\n  \"comment-alt-edit\": 62628,\n  \"comment-alt-exclamation\": 62629,\n  \"comment-alt-image\": 57824,\n  \"comment-alt-lines\": 62630,\n  \"comment-alt-medical\": 63476,\n  \"comment-alt-minus\": 62631,\n  \"comment-alt-music\": 63663,\n  \"comment-alt-plus\": 62632,\n  \"comment-alt-quote\": 57828,\n  \"comment-alt-slash\": 62633,\n  \"comment-alt-smile\": 62634,\n  \"comment-alt-text\": 57830,\n  \"comment-alt-times\": 62635,\n  \"comment-alt\": 62074,\n  \"comment-arrow-down\": 57667,\n  \"comment-arrow-up-right\": 57669,\n  \"comment-arrow-up\": 57668,\n  \"comment-captions\": 57670,\n  \"comment-check\": 62636,\n  \"comment-code\": 57671,\n  \"comment-dollar\": 63057,\n  \"comment-dot\": 59100,\n  \"comment-dots\": 62637,\n  \"comment-edit\": 62638,\n  \"comment-exclamation\": 62639,\n  \"comment-heart\": 58824,\n  \"comment-image\": 57672,\n  \"comment-lines\": 62640,\n  \"comment-medical\": 63477,\n  \"comment-middle-alt\": 57825,\n  \"comment-middle-top-alt\": 57826,\n  \"comment-middle-top\": 57674,\n  \"comment-middle\": 57673,\n  \"comment-minus\": 62641,\n  \"comment-music\": 63664,\n  \"comment-nodes\": 59030,\n  \"comment-pen\": 62638,\n  \"comment-plus\": 62642,\n  \"comment-question\": 57675,\n  \"comment-quote\": 57676,\n  \"comment-slash\": 62643,\n  \"comment-smile\": 62644,\n  \"comment-sms\": 63437,\n  \"comment-text\": 57677,\n  \"comment-times\": 62645,\n  \"comment-waveform\": 59101,\n  \"comment-xmark\": 62645,\n  \"comment\": 61557,\n  \"commenting\": 62637,\n  \"comments-alt-dollar\": 63058,\n  \"comments-alt\": 62646,\n  \"comments-dollar\": 63059,\n  \"comments-question-check\": 57679,\n  \"comments-question\": 57678,\n  \"comments\": 61574,\n  \"compact-disc\": 62751,\n  \"compass-drafting\": 62824,\n  \"compass-slash\": 62953,\n  \"compass\": 61774,\n  \"compress-alt\": 62498,\n  \"compress-arrows-alt\": 63372,\n  \"compress-arrows\": 57509,\n  \"compress-wide\": 62246,\n  \"compress\": 61542,\n  \"computer-classic\": 63665,\n  \"computer-mouse-button-left\": 59341,\n  \"computer-mouse-button-right\": 59342,\n  \"computer-mouse-scrollwheel\": 63693,\n  \"computer-mouse\": 63692,\n  \"computer-speaker\": 63666,\n  \"computer\": 58597,\n  \"concierge-bell\": 62818,\n  \"construction\": 63581,\n  \"contact-book\": 62137,\n  \"contact-card\": 62139,\n  \"container-storage\": 62647,\n  \"conveyor-belt-alt\": 62575,\n  \"conveyor-belt-arm\": 58872,\n  \"conveyor-belt-boxes\": 62575,\n  \"conveyor-belt-empty\": 57680,\n  \"conveyor-belt\": 62574,\n  \"cookie-bite\": 62820,\n  \"cookie\": 62819,\n  \"copy\": 61637,\n  \"copyright\": 61945,\n  \"corn\": 63175,\n  \"corner\": 58366,\n  \"couch-small\": 62668,\n  \"couch\": 62648,\n  \"court-sport\": 58947,\n  \"cow\": 63176,\n  \"cowbell-circle-plus\": 63668,\n  \"cowbell-more\": 63668,\n  \"cowbell\": 63667,\n  \"crab\": 58367,\n  \"crate-apple\": 63153,\n  \"crate-empty\": 57681,\n  \"credit-card-alt\": 61597,\n  \"credit-card-blank\": 62345,\n  \"credit-card-front\": 62346,\n  \"credit-card\": 61597,\n  \"creemee\": 58368,\n  \"cricket-bat-ball\": 62537,\n  \"cricket\": 62537,\n  \"croissant\": 63478,\n  \"crop-alt\": 62821,\n  \"crop-simple\": 62821,\n  \"crop\": 61733,\n  \"cross\": 63060,\n  \"crosshairs-simple\": 58783,\n  \"crosshairs\": 61531,\n  \"crow\": 62752,\n  \"crown\": 62753,\n  \"crutch\": 63479,\n  \"crutches\": 63480,\n  \"cruzeiro-sign\": 57682,\n  \"crystal-ball\": 58210,\n  \"cube\": 61874,\n  \"cubes-stacked\": 58598,\n  \"cubes\": 61875,\n  \"cucumber\": 58369,\n  \"cup-straw-swoosh\": 58212,\n  \"cup-straw\": 58211,\n  \"cup-togo\": 63173,\n  \"cupcake\": 58370,\n  \"curling-stone\": 62538,\n  \"curling\": 62538,\n  \"currency-sign\": 59179,\n  \"custard\": 58371,\n  \"cut\": 61636,\n  \"cutlery\": 62183,\n  \"d\": 68,\n  \"dagger\": 63179,\n  \"danish-krone-sign\": 59168,\n  \"dash\": 58372,\n  \"dashboard\": 63012,\n  \"database\": 61888,\n  \"deaf\": 62116,\n  \"deafness\": 62116,\n  \"debug\": 63481,\n  \"dedent\": 61499,\n  \"deer-rudolph\": 63375,\n  \"deer\": 63374,\n  \"delete-left\": 62810,\n  \"delete-right\": 57684,\n  \"democrat\": 63303,\n  \"desk\": 59518,\n  \"desktop-alt\": 62352,\n  \"desktop-arrow-down\": 57685,\n  \"desktop-code\": 57701,\n  \"desktop-medical\": 57702,\n  \"desktop-slash\": 58106,\n  \"desktop\": 62352,\n  \"dewpoint\": 63304,\n  \"dharmachakra\": 63061,\n  \"diagnoses\": 62576,\n  \"diagram-cells\": 58485,\n  \"diagram-lean-canvas\": 57686,\n  \"diagram-nested\": 57687,\n  \"diagram-next\": 58486,\n  \"diagram-predecessor\": 58487,\n  \"diagram-previous\": 58488,\n  \"diagram-project\": 62786,\n  \"diagram-sankey\": 57688,\n  \"diagram-subtask\": 58489,\n  \"diagram-successor\": 58490,\n  \"diagram-venn\": 57690,\n  \"dial-high\": 57692,\n  \"dial-low\": 57693,\n  \"dial-max\": 57694,\n  \"dial-med-high\": 57691,\n  \"dial-med-low\": 57696,\n  \"dial-med\": 57695,\n  \"dial-min\": 57697,\n  \"dial-off\": 57698,\n  \"dial\": 57691,\n  \"dialpad\": 59340,\n  \"diamond-exclamation\": 58373,\n  \"diamond-half-stroke\": 58808,\n  \"diamond-half\": 58807,\n  \"diamond-turn-right\": 62955,\n  \"diamond\": 61977,\n  \"diamonds-4\": 59019,\n  \"dice-d10\": 63181,\n  \"dice-d12\": 63182,\n  \"dice-d20\": 63183,\n  \"dice-d4\": 63184,\n  \"dice-d6\": 63185,\n  \"dice-d8\": 63186,\n  \"dice-five\": 62755,\n  \"dice-four\": 62756,\n  \"dice-one\": 62757,\n  \"dice-six\": 62758,\n  \"dice-three\": 62759,\n  \"dice-two\": 62760,\n  \"dice\": 62754,\n  \"digging\": 63582,\n  \"digital-tachograph\": 62822,\n  \"dinosaur\": 58878,\n  \"diploma\": 62954,\n  \"direction-left-right\": 59070,\n  \"direction-up-down\": 59071,\n  \"directions\": 62955,\n  \"disc-drive\": 63669,\n  \"disease\": 63482,\n  \"display-arrow-down\": 57700,\n  \"display-chart-up-circle-currency\": 58853,\n  \"display-chart-up-circle-dollar\": 58854,\n  \"display-chart-up\": 58851,\n  \"display-code\": 57701,\n  \"display-medical\": 57702,\n  \"display-slash\": 58106,\n  \"display\": 57699,\n  \"distribute-spacing-horizontal\": 58213,\n  \"distribute-spacing-vertical\": 58214,\n  \"ditto\": 34,\n  \"divide\": 62761,\n  \"dizzy\": 62823,\n  \"dna\": 62577,\n  \"do-not-enter\": 62956,\n  \"dog-leashed\": 63188,\n  \"dog\": 63187,\n  \"dollar-circle\": 62184,\n  \"dollar-sign\": 36,\n  \"dollar-square\": 62185,\n  \"dollar\": 36,\n  \"dolly-box\": 62578,\n  \"dolly-empty\": 62579,\n  \"dolly-flatbed-alt\": 62581,\n  \"dolly-flatbed-empty\": 62582,\n  \"dolly-flatbed\": 62580,\n  \"dolly\": 62578,\n  \"dolphin\": 57704,\n  \"donate\": 62649,\n  \"dong-sign\": 57705,\n  \"donut\": 58374,\n  \"door-closed\": 62762,\n  \"door-open\": 62763,\n  \"dot-circle\": 61842,\n  \"dot\": 59345,\n  \"doughnut\": 58374,\n  \"dove\": 62650,\n  \"down-from-bracket\": 58987,\n  \"down-from-dotted-line\": 58375,\n  \"down-from-line\": 62281,\n  \"down-left-and-up-right-to-center\": 62498,\n  \"down-left\": 57706,\n  \"down-long-to-line\": 59072,\n  \"down-long\": 62217,\n  \"down-right\": 57707,\n  \"down-to-bracket\": 58599,\n  \"down-to-dotted-line\": 58376,\n  \"down-to-line\": 62282,\n  \"down-up\": 59073,\n  \"down\": 62292,\n  \"download\": 61465,\n  \"drafting-compass\": 62824,\n  \"dragon\": 63189,\n  \"draw-circle\": 62957,\n  \"draw-polygon\": 62958,\n  \"draw-square\": 62959,\n  \"dreidel\": 63378,\n  \"dress\": 59089,\n  \"dresser\": 59519,\n  \"drivers-license\": 62146,\n  \"drone-alt\": 63584,\n  \"drone-front\": 63584,\n  \"drone\": 63583,\n  \"droplet-degree\": 63304,\n  \"droplet-percent\": 63312,\n  \"droplet-plus\": 59392,\n  \"droplet-slash\": 62919,\n  \"droplet\": 61507,\n  \"drum-steelpan\": 62826,\n  \"drum\": 62825,\n  \"drumstick-bite\": 63191,\n  \"drumstick\": 63190,\n  \"dryer-alt\": 63586,\n  \"dryer-heat\": 63586,\n  \"dryer\": 63585,\n  \"duck\": 63192,\n  \"dumbbell\": 62539,\n  \"dumpster-fire\": 63380,\n  \"dumpster\": 63379,\n  \"dungeon\": 63193,\n  \"e\": 69,\n  \"ear-circle-checkmark\": 59227,\n  \"ear-deaf\": 62116,\n  \"ear-listen\": 62114,\n  \"ear-muffs\": 63381,\n  \"ear-triangle-exclamation\": 59228,\n  \"ear-waveform\": 59229,\n  \"ear\": 62960,\n  \"earth-africa\": 62844,\n  \"earth-america\": 62845,\n  \"earth-americas\": 62845,\n  \"earth-asia\": 62846,\n  \"earth-europe\": 63394,\n  \"earth-oceania\": 58491,\n  \"earth\": 62845,\n  \"eclipse-alt\": 63306,\n  \"eclipse\": 63305,\n  \"edit\": 61508,\n  \"egg-fried\": 63484,\n  \"egg\": 63483,\n  \"eggplant\": 57708,\n  \"eject\": 61522,\n  \"elephant\": 63194,\n  \"elevator\": 57709,\n  \"ellipsis-h-alt\": 62363,\n  \"ellipsis-h\": 61761,\n  \"ellipsis-stroke-vertical\": 62364,\n  \"ellipsis-stroke\": 62363,\n  \"ellipsis-v-alt\": 62364,\n  \"ellipsis-v\": 61762,\n  \"ellipsis-vertical\": 61762,\n  \"ellipsis\": 61761,\n  \"empty-set\": 63062,\n  \"engine-exclamation\": 62962,\n  \"engine-warning\": 62962,\n  \"engine\": 57710,\n  \"envelope-badge\": 57711,\n  \"envelope-certificate\": 59433,\n  \"envelope-circle-check\": 58600,\n  \"envelope-circle-user\": 59102,\n  \"envelope-circle\": 57612,\n  \"envelope-dot\": 57711,\n  \"envelope-open-dollar\": 63063,\n  \"envelope-open-text\": 63064,\n  \"envelope-open\": 62134,\n  \"envelope-ribbon\": 59433,\n  \"envelope-square\": 61849,\n  \"envelope\": 61664,\n  \"envelopes-bulk\": 63092,\n  \"envelopes\": 57712,\n  \"equals\": 61,\n  \"eraser\": 61741,\n  \"escalator\": 57713,\n  \"ethernet\": 63382,\n  \"eur\": 61779,\n  \"euro-sign\": 61779,\n  \"euro\": 61779,\n  \"eurozone-sign\": 59200,\n  \"excavator\": 58966,\n  \"exchange-alt\": 62306,\n  \"exchange\": 61676,\n  \"exclamation-circle\": 61546,\n  \"exclamation-square\": 62241,\n  \"exclamation-triangle\": 61553,\n  \"exclamation\": 33,\n  \"expand-alt\": 62500,\n  \"expand-arrows-alt\": 62238,\n  \"expand-arrows\": 62237,\n  \"expand-wide\": 62240,\n  \"expand\": 61541,\n  \"exploding-head\": 58110,\n  \"explosion\": 58601,\n  \"external-link-alt\": 62301,\n  \"external-link-square-alt\": 62304,\n  \"external-link-square\": 61772,\n  \"external-link\": 61582,\n  \"eye-closed\": 59451,\n  \"eye-dropper-empty\": 61947,\n  \"eye-dropper-full\": 57714,\n  \"eye-dropper-half\": 57715,\n  \"eye-dropper\": 61947,\n  \"eye-evil\": 63195,\n  \"eye-low-vision\": 62120,\n  \"eye-slash\": 61552,\n  \"eye\": 61550,\n  \"eyedropper\": 61947,\n  \"eyes\": 58215,\n  \"f\": 70,\n  \"face-angry-horns\": 58216,\n  \"face-angry\": 62806,\n  \"face-anguished\": 58217,\n  \"face-anxious-sweat\": 58218,\n  \"face-astonished\": 58219,\n  \"face-awesome\": 58377,\n  \"face-beam-hand-over-mouth\": 58492,\n  \"face-clouds\": 58493,\n  \"face-confounded\": 58220,\n  \"face-confused\": 58221,\n  \"face-cowboy-hat\": 58222,\n  \"face-diagonal-mouth\": 58494,\n  \"face-disappointed\": 58223,\n  \"face-disguise\": 58224,\n  \"face-dizzy\": 62823,\n  \"face-dotted\": 58495,\n  \"face-downcast-sweat\": 58225,\n  \"face-drooling\": 58226,\n  \"face-exhaling\": 58496,\n  \"face-explode\": 58110,\n  \"face-expressionless\": 58227,\n  \"face-eyes-xmarks\": 58228,\n  \"face-fearful\": 58229,\n  \"face-flushed\": 62841,\n  \"face-frown-open\": 62842,\n  \"face-frown-slight\": 58230,\n  \"face-frown\": 61721,\n  \"face-glasses\": 58231,\n  \"face-grimace\": 62847,\n  \"face-grin-beam-sweat\": 62851,\n  \"face-grin-beam\": 62850,\n  \"face-grin-hearts\": 62852,\n  \"face-grin-squint-tears\": 62854,\n  \"face-grin-squint\": 62853,\n  \"face-grin-stars\": 62855,\n  \"face-grin-tears\": 62856,\n  \"face-grin-tongue-squint\": 62858,\n  \"face-grin-tongue-wink\": 62859,\n  \"face-grin-tongue\": 62857,\n  \"face-grin-wide\": 62849,\n  \"face-grin-wink\": 62860,\n  \"face-grin\": 62848,\n  \"face-hand-over-mouth\": 58232,\n  \"face-hand-peeking\": 58497,\n  \"face-hand-yawn\": 58233,\n  \"face-head-bandage\": 58234,\n  \"face-holding-back-tears\": 58498,\n  \"face-hushed\": 58235,\n  \"face-icicles\": 58236,\n  \"face-kiss-beam\": 62871,\n  \"face-kiss-closed-eyes\": 58237,\n  \"face-kiss-wink-heart\": 62872,\n  \"face-kiss\": 62870,\n  \"face-laugh-beam\": 62874,\n  \"face-laugh-squint\": 62875,\n  \"face-laugh-wink\": 62876,\n  \"face-laugh\": 62873,\n  \"face-lying\": 58238,\n  \"face-mask\": 58239,\n  \"face-meh-blank\": 62884,\n  \"face-meh\": 61722,\n  \"face-melting\": 58499,\n  \"face-monocle\": 58240,\n  \"face-nauseated\": 58241,\n  \"face-nose-steam\": 58242,\n  \"face-party\": 58243,\n  \"face-pensive\": 58244,\n  \"face-persevering\": 58245,\n  \"face-pleading\": 58246,\n  \"face-pouting\": 58247,\n  \"face-raised-eyebrow\": 58248,\n  \"face-relieved\": 58249,\n  \"face-rolling-eyes\": 62885,\n  \"face-sad-cry\": 62899,\n  \"face-sad-sweat\": 58250,\n  \"face-sad-tear\": 62900,\n  \"face-saluting\": 58500,\n  \"face-scream\": 58251,\n  \"face-shaking-horizontal\": 59293,\n  \"face-shaking-vertical\": 59294,\n  \"face-shaking\": 59292,\n  \"face-shush\": 58252,\n  \"face-sleeping\": 58253,\n  \"face-sleepy\": 58254,\n  \"face-smile-beam\": 62904,\n  \"face-smile-halo\": 58255,\n  \"face-smile-hearts\": 58256,\n  \"face-smile-horns\": 58257,\n  \"face-smile-plus\": 62905,\n  \"face-smile-relaxed\": 58258,\n  \"face-smile-tear\": 58259,\n  \"face-smile-tongue\": 58260,\n  \"face-smile-upside-down\": 58261,\n  \"face-smile-wink\": 62682,\n  \"face-smile\": 61720,\n  \"face-smiling-hands\": 58262,\n  \"face-smirking\": 58263,\n  \"face-spiral-eyes\": 58501,\n  \"face-sunglasses\": 58264,\n  \"face-surprise\": 62914,\n  \"face-swear\": 58265,\n  \"face-thermometer\": 58266,\n  \"face-thinking\": 58267,\n  \"face-tired\": 62920,\n  \"face-tissue\": 58268,\n  \"face-tongue-money\": 58269,\n  \"face-tongue-sweat\": 58270,\n  \"face-unamused\": 58271,\n  \"face-viewfinder\": 58111,\n  \"face-vomit\": 58272,\n  \"face-weary\": 58273,\n  \"face-woozy\": 58274,\n  \"face-worried\": 58275,\n  \"face-zany\": 58276,\n  \"face-zipper\": 58277,\n  \"falafel\": 58378,\n  \"family-dress\": 58113,\n  \"family-pants\": 58114,\n  \"family\": 58112,\n  \"fan-table\": 57348,\n  \"fan\": 63587,\n  \"farm\": 63588,\n  \"fast-backward\": 61513,\n  \"fast-forward\": 61520,\n  \"faucet-drip\": 57350,\n  \"faucet\": 57349,\n  \"fax\": 61868,\n  \"feather-alt\": 62827,\n  \"feather-pointed\": 62827,\n  \"feather\": 62765,\n  \"feed\": 61598,\n  \"female\": 61826,\n  \"fence\": 58115,\n  \"ferris-wheel\": 57716,\n  \"ferry\": 58602,\n  \"field-hockey-stick-ball\": 62540,\n  \"field-hockey\": 62540,\n  \"fighter-jet\": 61691,\n  \"file-aiff\": 59387,\n  \"file-alt\": 61788,\n  \"file-archive\": 61894,\n  \"file-arrow-down\": 62829,\n  \"file-arrow-up\": 62836,\n  \"file-audio\": 61895,\n  \"file-award\": 62963,\n  \"file-ban\": 59224,\n  \"file-binary\": 57717,\n  \"file-brackets-curly\": 59396,\n  \"file-cad\": 58994,\n  \"file-caret-down\": 58409,\n  \"file-caret-up\": 58410,\n  \"file-certificate\": 62963,\n  \"file-chart-column\": 63065,\n  \"file-chart-line\": 63065,\n  \"file-chart-pie\": 63066,\n  \"file-check\": 62230,\n  \"file-circle-check\": 58784,\n  \"file-circle-exclamation\": 58603,\n  \"file-circle-info\": 58515,\n  \"file-circle-minus\": 58605,\n  \"file-circle-plus\": 58516,\n  \"file-circle-question\": 58607,\n  \"file-circle-xmark\": 58785,\n  \"file-clipboard\": 61674,\n  \"file-code\": 61897,\n  \"file-contract\": 62828,\n  \"file-css\": 59452,\n  \"file-csv\": 63197,\n  \"file-dashed-line\": 63607,\n  \"file-doc\": 58861,\n  \"file-download\": 62829,\n  \"file-edit\": 62236,\n  \"file-eps\": 58948,\n  \"file-excel\": 61891,\n  \"file-exclamation\": 62234,\n  \"file-export\": 62830,\n  \"file-fragment\": 59031,\n  \"file-gif\": 58949,\n  \"file-half-dashed\": 59032,\n  \"file-heart\": 57718,\n  \"file-html\": 59453,\n  \"file-icns\": 59457,\n  \"file-image\": 61893,\n  \"file-import\": 62831,\n  \"file-invoice-dollar\": 62833,\n  \"file-invoice\": 62832,\n  \"file-jpg\": 58950,\n  \"file-js\": 59454,\n  \"file-lines\": 61788,\n  \"file-lock\": 58278,\n  \"file-magnifying-glass\": 63589,\n  \"file-medical-alt\": 62584,\n  \"file-medical\": 62583,\n  \"file-midi\": 59397,\n  \"file-minus\": 62232,\n  \"file-mov\": 58951,\n  \"file-mp3\": 58952,\n  \"file-mp4\": 58953,\n  \"file-music\": 63670,\n  \"file-odf\": 59388,\n  \"file-pdf\": 61889,\n  \"file-pen\": 62236,\n  \"file-plus-minus\": 57719,\n  \"file-plus\": 62233,\n  \"file-png\": 58982,\n  \"file-powerpoint\": 61892,\n  \"file-ppt\": 58954,\n  \"file-prescription\": 62834,\n  \"file-search\": 63589,\n  \"file-shield\": 58608,\n  \"file-signature\": 62835,\n  \"file-slash\": 58279,\n  \"file-spreadsheet\": 63067,\n  \"file-svg\": 58955,\n  \"file-tex\": 59389,\n  \"file-text\": 61788,\n  \"file-times\": 62231,\n  \"file-upload\": 62836,\n  \"file-user\": 63068,\n  \"file-vector\": 58956,\n  \"file-video\": 61896,\n  \"file-wav\": 59390,\n  \"file-waveform\": 62584,\n  \"file-word\": 61890,\n  \"file-xls\": 58957,\n  \"file-xmark\": 62231,\n  \"file-xml\": 58964,\n  \"file-zip\": 58862,\n  \"file-zipper\": 61894,\n  \"file\": 61787,\n  \"files-medical\": 63485,\n  \"files\": 57720,\n  \"fill-drip\": 62838,\n  \"fill\": 62837,\n  \"film-alt\": 61448,\n  \"film-canister\": 63671,\n  \"film-cannister\": 63671,\n  \"film-music\": 59241,\n  \"film-simple\": 61448,\n  \"film-slash\": 57721,\n  \"film-stack\": 59243,\n  \"film\": 61448,\n  \"films\": 57722,\n  \"filter-circle-dollar\": 63074,\n  \"filter-circle-xmark\": 57723,\n  \"filter-list\": 57724,\n  \"filter-slash\": 57725,\n  \"filter\": 61616,\n  \"filters\": 57726,\n  \"fingerprint\": 62839,\n  \"fire-alt\": 63460,\n  \"fire-burner\": 58609,\n  \"fire-extinguisher\": 61748,\n  \"fire-flame-curved\": 63460,\n  \"fire-flame-simple\": 62570,\n  \"fire-flame\": 63199,\n  \"fire-hydrant\": 57727,\n  \"fire-smoke\": 63307,\n  \"fire\": 61549,\n  \"fireplace\": 63386,\n  \"firewall\": 58332,\n  \"first-aid\": 62585,\n  \"fish-bones\": 58116,\n  \"fish-cooked\": 63486,\n  \"fish-fins\": 58610,\n  \"fish\": 62840,\n  \"fishing-rod\": 58280,\n  \"fist-raised\": 63198,\n  \"flag-alt\": 63308,\n  \"flag-checkered\": 61726,\n  \"flag-pennant\": 62550,\n  \"flag-swallowtail\": 63308,\n  \"flag-usa\": 63309,\n  \"flag\": 61476,\n  \"flame\": 63199,\n  \"flashlight\": 63672,\n  \"flask-gear\": 58865,\n  \"flask-poison\": 63200,\n  \"flask-potion\": 63201,\n  \"flask-round-poison\": 63200,\n  \"flask-round-potion\": 63201,\n  \"flask-vial\": 58611,\n  \"flask\": 61635,\n  \"flatbread-stuffed\": 58380,\n  \"flatbread\": 58379,\n  \"floppy-disk-circle-arrow-right\": 57728,\n  \"floppy-disk-circle-xmark\": 57729,\n  \"floppy-disk-pen\": 57730,\n  \"floppy-disk-times\": 57729,\n  \"floppy-disk\": 61639,\n  \"floppy-disks\": 57731,\n  \"florin-sign\": 57732,\n  \"flower-daffodil\": 63488,\n  \"flower-tulip\": 63489,\n  \"flower\": 63487,\n  \"flushed\": 62841,\n  \"flute\": 63673,\n  \"flux-capacitor\": 63674,\n  \"flying-disc\": 58281,\n  \"fog\": 63310,\n  \"folder-arrow-down\": 57427,\n  \"folder-arrow-left\": 59346,\n  \"folder-arrow-right\": 59347,\n  \"folder-arrow-up\": 57428,\n  \"folder-blank\": 61563,\n  \"folder-bookmark\": 57734,\n  \"folder-check\": 58958,\n  \"folder-closed\": 57733,\n  \"folder-cog\": 57735,\n  \"folder-download\": 57427,\n  \"folder-gear\": 57735,\n  \"folder-grid\": 57736,\n  \"folder-heart\": 57737,\n  \"folder-image\": 57738,\n  \"folder-magnifying-glass\": 57739,\n  \"folder-medical\": 57740,\n  \"folder-minus\": 63069,\n  \"folder-music\": 57741,\n  \"folder-open\": 61564,\n  \"folder-plus\": 63070,\n  \"folder-search\": 57739,\n  \"folder-times\": 63071,\n  \"folder-tree\": 63490,\n  \"folder-upload\": 57428,\n  \"folder-user\": 57742,\n  \"folder-xmark\": 63071,\n  \"folder\": 61563,\n  \"folders\": 63072,\n  \"fondue-pot\": 58381,\n  \"font-awesome-flag\": 62132,\n  \"font-awesome-logo-full\": 62132,\n  \"font-awesome\": 62132,\n  \"font-case\": 63590,\n  \"font\": 61489,\n  \"foot-wing\": 59444,\n  \"football-ball\": 62542,\n  \"football-helmet\": 62543,\n  \"football\": 62542,\n  \"fork-knife\": 62182,\n  \"fork\": 62179,\n  \"forklift\": 62586,\n  \"fort\": 58502,\n  \"forward-fast\": 61520,\n  \"forward-step\": 61521,\n  \"forward\": 61518,\n  \"fragile\": 62651,\n  \"frame\": 58517,\n  \"franc-sign\": 57743,\n  \"french-fries\": 63491,\n  \"frog\": 62766,\n  \"frosty-head\": 63387,\n  \"frown-open\": 62842,\n  \"frown\": 61721,\n  \"function\": 63073,\n  \"funnel-dollar\": 63074,\n  \"futbol-ball\": 61923,\n  \"futbol\": 61923,\n  \"g\": 71,\n  \"galaxy\": 57352,\n  \"gallery-thumbnails\": 58282,\n  \"game-board-alt\": 63592,\n  \"game-board-simple\": 63592,\n  \"game-board\": 63591,\n  \"game-console-handheld-crank\": 58809,\n  \"game-console-handheld\": 63675,\n  \"gamepad-alt\": 58786,\n  \"gamepad-modern\": 58786,\n  \"gamepad\": 61723,\n  \"garage-car\": 57354,\n  \"garage-empty\": 59081,\n  \"garage-open\": 57355,\n  \"garage\": 57353,\n  \"garlic\": 58382,\n  \"gas-pump-left\": 59256,\n  \"gas-pump-right\": 59257,\n  \"gas-pump-slash\": 62964,\n  \"gas-pump\": 62767,\n  \"gauge-circle-bolt\": 58518,\n  \"gauge-circle-minus\": 58519,\n  \"gauge-circle-plus\": 58520,\n  \"gauge-high\": 63013,\n  \"gauge-low\": 63015,\n  \"gauge-max\": 63014,\n  \"gauge-med\": 63012,\n  \"gauge-min\": 63016,\n  \"gauge-simple-high\": 63018,\n  \"gauge-simple-low\": 63020,\n  \"gauge-simple-max\": 63019,\n  \"gauge-simple-med\": 63017,\n  \"gauge-simple-min\": 63021,\n  \"gauge-simple\": 63017,\n  \"gauge\": 63012,\n  \"gave-dandy\": 58377,\n  \"gavel\": 61667,\n  \"gbp\": 61780,\n  \"gear-api\": 59556,\n  \"gear-code\": 58856,\n  \"gear-complex-api\": 59557,\n  \"gear-complex-code\": 58859,\n  \"gear-complex\": 58857,\n  \"gear\": 61459,\n  \"gears\": 61573,\n  \"gem\": 62373,\n  \"gemini\": 59465,\n  \"genderless\": 61997,\n  \"ghost\": 63202,\n  \"gif\": 57744,\n  \"gift-card\": 63075,\n  \"gift\": 61547,\n  \"gifts\": 63388,\n  \"gingerbread-man\": 63389,\n  \"glass-champagne\": 63390,\n  \"glass-cheers\": 63391,\n  \"glass-citrus\": 63593,\n  \"glass-empty\": 57745,\n  \"glass-half-empty\": 57746,\n  \"glass-half-full\": 57746,\n  \"glass-half\": 57746,\n  \"glass-martini-alt\": 62843,\n  \"glass-martini\": 61440,\n  \"glass-water-droplet\": 58613,\n  \"glass-water\": 58612,\n  \"glass-whiskey-rocks\": 63393,\n  \"glass-whiskey\": 63392,\n  \"glass\": 63492,\n  \"glasses-alt\": 62965,\n  \"glasses-round\": 62965,\n  \"glasses\": 62768,\n  \"globe-africa\": 62844,\n  \"globe-americas\": 62845,\n  \"globe-asia\": 62846,\n  \"globe-europe\": 63394,\n  \"globe-oceania\": 58491,\n  \"globe-pointer\": 58894,\n  \"globe-snow\": 63395,\n  \"globe-stand\": 62966,\n  \"globe-wifi\": 59013,\n  \"globe-www\": 59558,\n  \"globe\": 61612,\n  \"glove-boxing\": 62520,\n  \"goal-net\": 58283,\n  \"golf-ball-tee\": 62544,\n  \"golf-ball\": 62544,\n  \"golf-club\": 62545,\n  \"golf-flag-hole\": 58284,\n  \"gopuram\": 63076,\n  \"gpu\": 59459,\n  \"graduation-cap\": 61853,\n  \"gramophone\": 63677,\n  \"grapes\": 58118,\n  \"grate-droplet\": 57748,\n  \"grate\": 57747,\n  \"greater-than-equal\": 62770,\n  \"greater-than\": 62,\n  \"grid-2-minus\": 59050,\n  \"grid-2-plus\": 57751,\n  \"grid-2\": 57750,\n  \"grid-3\": 57749,\n  \"grid-4\": 57752,\n  \"grid-5\": 57753,\n  \"grid-dividers\": 58285,\n  \"grid-horizontal\": 62861,\n  \"grid-round-2-minus\": 59051,\n  \"grid-round-2-plus\": 58844,\n  \"grid-round-2\": 58843,\n  \"grid-round-4\": 58845,\n  \"grid-round-5\": 58846,\n  \"grid-round\": 58842,\n  \"grid-vertical\": 62862,\n  \"grid\": 57749,\n  \"grill-fire\": 58788,\n  \"grill-hot\": 58789,\n  \"grill\": 58787,\n  \"grimace\": 62847,\n  \"grin-alt\": 62849,\n  \"grin-beam-sweat\": 62851,\n  \"grin-beam\": 62850,\n  \"grin-hearts\": 62852,\n  \"grin-squint-tears\": 62854,\n  \"grin-squint\": 62853,\n  \"grin-stars\": 62855,\n  \"grin-tears\": 62856,\n  \"grin-tongue-squint\": 62858,\n  \"grin-tongue-wink\": 62859,\n  \"grin-tongue\": 62857,\n  \"grin-wink\": 62860,\n  \"grin\": 62848,\n  \"grip-dots-vertical\": 58385,\n  \"grip-dots\": 58384,\n  \"grip-horizontal\": 62861,\n  \"grip-lines-vertical\": 63397,\n  \"grip-lines\": 63396,\n  \"grip-vertical\": 62862,\n  \"grip\": 62861,\n  \"group-arrows-rotate\": 58614,\n  \"guarani-sign\": 57754,\n  \"guitar-electric\": 63678,\n  \"guitar\": 63398,\n  \"guitars\": 63679,\n  \"gun-slash\": 57756,\n  \"gun-squirt\": 57757,\n  \"gun\": 57755,\n  \"h-square\": 61693,\n  \"h\": 72,\n  \"h1\": 62227,\n  \"h2\": 62228,\n  \"h3\": 62229,\n  \"h4\": 63594,\n  \"h5\": 58386,\n  \"h6\": 58387,\n  \"hamburger\": 63493,\n  \"hammer-brush\": 58912,\n  \"hammer-crash\": 58388,\n  \"hammer-war\": 63204,\n  \"hammer\": 63203,\n  \"hamsa\": 63077,\n  \"hand-back-fist\": 62037,\n  \"hand-back-point-down\": 57758,\n  \"hand-back-point-left\": 57759,\n  \"hand-back-point-ribbon\": 57760,\n  \"hand-back-point-right\": 57761,\n  \"hand-back-point-up\": 57762,\n  \"hand-dots\": 62561,\n  \"hand-fingers-crossed\": 57763,\n  \"hand-fist\": 63198,\n  \"hand-heart\": 62652,\n  \"hand-holding-box\": 62587,\n  \"hand-holding-circle-dollar\": 58913,\n  \"hand-holding-dollar\": 62656,\n  \"hand-holding-droplet\": 62657,\n  \"hand-holding-hand\": 58615,\n  \"hand-holding-heart\": 62654,\n  \"hand-holding-magic\": 63205,\n  \"hand-holding-medical\": 57436,\n  \"hand-holding-seedling\": 62655,\n  \"hand-holding-skull\": 57764,\n  \"hand-holding-star\": 59393,\n  \"hand-holding-usd\": 62656,\n  \"hand-holding-water\": 62657,\n  \"hand-holding\": 62653,\n  \"hand-horns\": 57769,\n  \"hand-lizard\": 62040,\n  \"hand-love\": 57765,\n  \"hand-middle-finger\": 63494,\n  \"hand-paper\": 62038,\n  \"hand-peace\": 62043,\n  \"hand-point-down\": 61607,\n  \"hand-point-left\": 61605,\n  \"hand-point-ribbon\": 57766,\n  \"hand-point-right\": 61604,\n  \"hand-point-up\": 61606,\n  \"hand-pointer\": 62042,\n  \"hand-receiving\": 62588,\n  \"hand-rock\": 62037,\n  \"hand-scissors\": 62039,\n  \"hand-shaka\": 59441,\n  \"hand-sparkles\": 57437,\n  \"hand-spock\": 62041,\n  \"hand-wave\": 57767,\n  \"hand\": 62038,\n  \"handcuffs\": 58616,\n  \"hands-american-sign-language-interpreting\": 62115,\n  \"hands-asl-interpreting\": 62115,\n  \"hands-bound\": 58617,\n  \"hands-bubbles\": 57438,\n  \"hands-clapping\": 57768,\n  \"hands-heart\": 62659,\n  \"hands-helping\": 62660,\n  \"hands-holding-child\": 58618,\n  \"hands-holding-circle\": 58619,\n  \"hands-holding-diamond\": 62588,\n  \"hands-holding-dollar\": 62661,\n  \"hands-holding-heart\": 62659,\n  \"hands-holding\": 62658,\n  \"hands-praying\": 63108,\n  \"hands-usd\": 62661,\n  \"hands-wash\": 57438,\n  \"hands\": 62119,\n  \"handshake-alt-slash\": 57440,\n  \"handshake-alt\": 62133,\n  \"handshake-angle\": 62660,\n  \"handshake-simple-slash\": 57440,\n  \"handshake-simple\": 62133,\n  \"handshake-slash\": 57440,\n  \"handshake\": 62133,\n  \"hanukiah\": 63206,\n  \"hard-drive\": 61600,\n  \"hard-hat\": 63495,\n  \"hard-of-hearing\": 62116,\n  \"hashtag-lock\": 58389,\n  \"hashtag\": 35,\n  \"hat-beach\": 58886,\n  \"hat-chef\": 63595,\n  \"hat-cowboy-side\": 63681,\n  \"hat-cowboy\": 63680,\n  \"hat-hard\": 63495,\n  \"hat-santa\": 63399,\n  \"hat-winter\": 63400,\n  \"hat-witch\": 63207,\n  \"hat-wizard\": 63208,\n  \"haykal\": 63078,\n  \"hdd\": 61600,\n  \"head-side-brain\": 63496,\n  \"head-side-circuit\": 59230,\n  \"head-side-cough-slash\": 57442,\n  \"head-side-cough\": 57441,\n  \"head-side-gear\": 58897,\n  \"head-side-goggles\": 63210,\n  \"head-side-headphones\": 63682,\n  \"head-side-heart\": 57770,\n  \"head-side-mask\": 57443,\n  \"head-side-medical\": 63497,\n  \"head-side-speak\": 59231,\n  \"head-side-virus\": 57444,\n  \"head-side\": 63209,\n  \"head-vr\": 63210,\n  \"header\": 61916,\n  \"heading\": 61916,\n  \"headphones-alt\": 61477,\n  \"headphones-simple\": 61477,\n  \"headphones-slash\": 59260,\n  \"headphones\": 61477,\n  \"headset\": 62864,\n  \"heart-broken\": 63401,\n  \"heart-circle-bolt\": 58620,\n  \"heart-circle-check\": 58621,\n  \"heart-circle-exclamation\": 58622,\n  \"heart-circle-minus\": 58623,\n  \"heart-circle-plus\": 58624,\n  \"heart-circle-xmark\": 58625,\n  \"heart-circle\": 62663,\n  \"heart-crack\": 63401,\n  \"heart-half-alt\": 57772,\n  \"heart-half-stroke\": 57772,\n  \"heart-half\": 57771,\n  \"heart-music-camera-bolt\": 63597,\n  \"heart-pulse\": 61982,\n  \"heart-rate\": 62968,\n  \"heart-slash\": 59278,\n  \"heart-square\": 62664,\n  \"heart\": 61444,\n  \"heartbeat\": 61982,\n  \"hearts\": 59279,\n  \"heat\": 57356,\n  \"helicopter-symbol\": 58626,\n  \"helicopter\": 62771,\n  \"helmet-battle\": 63211,\n  \"helmet-safety\": 63495,\n  \"helmet-un\": 58627,\n  \"heptagon\": 59424,\n  \"hexagon-check\": 58390,\n  \"hexagon-divide\": 57773,\n  \"hexagon-equals\": 59058,\n  \"hexagon-exclamation\": 58391,\n  \"hexagon-image\": 58628,\n  \"hexagon-minus\": 62215,\n  \"hexagon-nodes-bolt\": 59034,\n  \"hexagon-nodes\": 59033,\n  \"hexagon-plus\": 62208,\n  \"hexagon-vertical-nft-slanted\": 58629,\n  \"hexagon-vertical-nft\": 58629,\n  \"hexagon-xmark\": 62190,\n  \"hexagon\": 62226,\n  \"high-definition\": 57774,\n  \"highlighter-line\": 57775,\n  \"highlighter\": 62865,\n  \"hiking\": 63212,\n  \"hill-avalanche\": 58631,\n  \"hill-rockslide\": 58632,\n  \"hippo\": 63213,\n  \"history\": 61914,\n  \"hockey-mask\": 63214,\n  \"hockey-puck\": 62547,\n  \"hockey-stick-puck\": 58286,\n  \"hockey-stick\": 59366,\n  \"hockey-sticks\": 62548,\n  \"holly-berry\": 63402,\n  \"home-alt\": 61461,\n  \"home-blank\": 58503,\n  \"home-heart\": 62665,\n  \"home-lg-alt\": 61461,\n  \"home-lg\": 58287,\n  \"home-user\": 57776,\n  \"home\": 61461,\n  \"honey-pot\": 58392,\n  \"hood-cloak\": 63215,\n  \"horizontal-rule\": 63596,\n  \"horse-head\": 63403,\n  \"horse-saddle\": 63683,\n  \"horse\": 63216,\n  \"horseshoe\": 59418,\n  \"hose-reel\": 58394,\n  \"hose\": 58393,\n  \"hospital-alt\": 61688,\n  \"hospital-symbol\": 62590,\n  \"hospital-user\": 63501,\n  \"hospital-wide\": 61688,\n  \"hospital\": 61688,\n  \"hospitals\": 63502,\n  \"hot-tub-person\": 62867,\n  \"hot-tub\": 62867,\n  \"hotdog\": 63503,\n  \"hotel\": 62868,\n  \"hourglass-1\": 62033,\n  \"hourglass-2\": 62034,\n  \"hourglass-3\": 62035,\n  \"hourglass-clock\": 58395,\n  \"hourglass-empty\": 62036,\n  \"hourglass-end\": 62035,\n  \"hourglass-half\": 62034,\n  \"hourglass-start\": 62033,\n  \"hourglass\": 62036,\n  \"house-blank\": 58503,\n  \"house-building\": 57777,\n  \"house-chimney-blank\": 58288,\n  \"house-chimney-crack\": 63217,\n  \"house-chimney-heart\": 57778,\n  \"house-chimney-medical\": 63474,\n  \"house-chimney-user\": 57445,\n  \"house-chimney-window\": 57357,\n  \"house-chimney\": 58287,\n  \"house-circle-check\": 58633,\n  \"house-circle-exclamation\": 58634,\n  \"house-circle-xmark\": 58635,\n  \"house-crack\": 58289,\n  \"house-damage\": 63217,\n  \"house-day\": 57358,\n  \"house-fire\": 58636,\n  \"house-flag\": 58637,\n  \"house-flood-water-circle-arrow-right\": 58639,\n  \"house-flood-water\": 58638,\n  \"house-flood\": 63311,\n  \"house-heart\": 62665,\n  \"house-laptop\": 57446,\n  \"house-leave\": 57359,\n  \"house-lock\": 58640,\n  \"house-medical-circle-check\": 58641,\n  \"house-medical-circle-exclamation\": 58642,\n  \"house-medical-circle-xmark\": 58643,\n  \"house-medical-flag\": 58644,\n  \"house-medical\": 58290,\n  \"house-night\": 57360,\n  \"house-person-arrive\": 57361,\n  \"house-person-depart\": 57359,\n  \"house-person-leave\": 57359,\n  \"house-person-return\": 57361,\n  \"house-return\": 57361,\n  \"house-signal\": 57362,\n  \"house-tree\": 57779,\n  \"house-tsunami\": 58645,\n  \"house-turret\": 57780,\n  \"house-unlock\": 59082,\n  \"house-user\": 57776,\n  \"house-water\": 63311,\n  \"house-window\": 58291,\n  \"house\": 61461,\n  \"hryvnia-sign\": 63218,\n  \"hryvnia\": 63218,\n  \"humidity\": 63312,\n  \"hundred-points\": 58396,\n  \"hurricane\": 63313,\n  \"hydra\": 59014,\n  \"hyphen\": 45,\n  \"i-cursor\": 62022,\n  \"i\": 73,\n  \"ice-cream\": 63504,\n  \"ice-skate\": 63404,\n  \"icicles\": 63405,\n  \"icons-alt\": 63598,\n  \"icons\": 63597,\n  \"id-badge\": 62145,\n  \"id-card-alt\": 62591,\n  \"id-card-clip\": 62591,\n  \"id-card\": 62146,\n  \"igloo\": 63406,\n  \"ils\": 61963,\n  \"image-broken\": 59562,\n  \"image-circle-arrow-down\": 59244,\n  \"image-circle-check\": 59245,\n  \"image-circle-plus\": 59246,\n  \"image-circle-xmark\": 59247,\n  \"image-landscape\": 57781,\n  \"image-music\": 59248,\n  \"image-polaroid-user\": 57782,\n  \"image-polaroid\": 63684,\n  \"image-portrait\": 62432,\n  \"image-slash\": 57783,\n  \"image-stack\": 59249,\n  \"image-user\": 57784,\n  \"image\": 61502,\n  \"images-user\": 57785,\n  \"images\": 62210,\n  \"inbox-arrow-down\": 62224,\n  \"inbox-arrow-up\": 62225,\n  \"inbox-full\": 57786,\n  \"inbox-in\": 62224,\n  \"inbox-out\": 62225,\n  \"inbox\": 61468,\n  \"inboxes\": 57787,\n  \"indent\": 61500,\n  \"indian-rupee-sign\": 57788,\n  \"indian-rupee\": 57788,\n  \"industry-alt\": 62387,\n  \"industry-windows\": 62387,\n  \"industry\": 62069,\n  \"infinity\": 62772,\n  \"info-circle\": 61530,\n  \"info-square\": 62223,\n  \"info\": 61737,\n  \"inhaler\": 62969,\n  \"input-numeric\": 57789,\n  \"input-password\": 59517,\n  \"input-pipe\": 57790,\n  \"input-text\": 57791,\n  \"inr\": 57788,\n  \"institution\": 61852,\n  \"integral\": 63079,\n  \"interrobang\": 58810,\n  \"intersection\": 63080,\n  \"inventory\": 62592,\n  \"island-tree-palm\": 63505,\n  \"island-tropical\": 63505,\n  \"italic\": 61491,\n  \"j\": 74,\n  \"jack-o-lantern\": 62222,\n  \"jar-wheat\": 58647,\n  \"jar\": 58646,\n  \"jeans-straight\": 59091,\n  \"jeans\": 59090,\n  \"jedi\": 63081,\n  \"jet-fighter-up\": 58648,\n  \"jet-fighter\": 61691,\n  \"joint\": 62869,\n  \"journal-whills\": 63082,\n  \"joystick\": 63685,\n  \"jpy\": 61783,\n  \"jug-bottle\": 58875,\n  \"jug-detergent\": 58649,\n  \"jug\": 63686,\n  \"k\": 75,\n  \"kaaba\": 63083,\n  \"kayak\": 59547,\n  \"kazoo\": 63687,\n  \"kerning\": 63599,\n  \"kettlebell\": 59442,\n  \"key-skeleton-left-right\": 58292,\n  \"key-skeleton\": 63219,\n  \"key\": 61572,\n  \"keyboard-brightness-low\": 57793,\n  \"keyboard-brightness\": 57792,\n  \"keyboard-down\": 57794,\n  \"keyboard-left\": 57795,\n  \"keyboard\": 61724,\n  \"keynote\": 63084,\n  \"khanda\": 63085,\n  \"kidneys\": 62971,\n  \"kip-sign\": 57796,\n  \"kiss-beam\": 62871,\n  \"kiss-wink-heart\": 62872,\n  \"kiss\": 62870,\n  \"kit-medical\": 62585,\n  \"kitchen-set\": 58650,\n  \"kite\": 63220,\n  \"kiwi-bird\": 62773,\n  \"kiwi-fruit\": 58124,\n  \"knife-kitchen\": 63221,\n  \"knife\": 62180,\n  \"krw\": 61785,\n  \"l\": 76,\n  \"label\": 59559,\n  \"lacrosse-stick-ball\": 58294,\n  \"lacrosse-stick\": 58293,\n  \"ladder-water\": 62917,\n  \"lambda\": 63086,\n  \"lamp-desk\": 57364,\n  \"lamp-floor\": 57365,\n  \"lamp-street\": 57797,\n  \"lamp\": 62666,\n  \"land-mine-on\": 58651,\n  \"landmark-alt\": 63314,\n  \"landmark-dome\": 63314,\n  \"landmark-flag\": 58652,\n  \"landmark-magnifying-glass\": 58914,\n  \"landmark\": 63087,\n  \"landscape\": 57781,\n  \"language\": 61867,\n  \"laptop-arrow-down\": 57798,\n  \"laptop-binary\": 58855,\n  \"laptop-code\": 62972,\n  \"laptop-file\": 58653,\n  \"laptop-house\": 57446,\n  \"laptop-medical\": 63506,\n  \"laptop-mobile\": 63610,\n  \"laptop-slash\": 57799,\n  \"laptop\": 61705,\n  \"lari-sign\": 57800,\n  \"lasso-sparkles\": 57801,\n  \"lasso\": 63688,\n  \"laugh-beam\": 62874,\n  \"laugh-squint\": 62875,\n  \"laugh-wink\": 62876,\n  \"laugh\": 62873,\n  \"layer-group-minus\": 62974,\n  \"layer-group-plus\": 62975,\n  \"layer-group\": 62973,\n  \"layer-minus\": 62974,\n  \"layer-plus\": 62975,\n  \"layer\": 59455,\n  \"leaf-heart\": 62667,\n  \"leaf-maple\": 63222,\n  \"leaf-oak\": 63223,\n  \"leaf\": 61548,\n  \"leafy-green\": 58397,\n  \"left-from-bracket\": 58988,\n  \"left-from-dotted-line\": 59074,\n  \"left-from-line\": 62280,\n  \"left-long-to-line\": 58398,\n  \"left-long\": 62218,\n  \"left-right\": 62263,\n  \"left-to-bracket\": 58989,\n  \"left-to-dotted-line\": 59075,\n  \"left-to-line\": 62283,\n  \"left\": 62293,\n  \"legal\": 61667,\n  \"lemon\": 61588,\n  \"leo\": 59466,\n  \"less-than-equal\": 62775,\n  \"less-than\": 60,\n  \"level-down-alt\": 62398,\n  \"level-down\": 61769,\n  \"level-up-alt\": 62399,\n  \"level-up\": 61768,\n  \"libra\": 59467,\n  \"life-ring\": 61901,\n  \"light-ceiling\": 57366,\n  \"light-emergency-on\": 58400,\n  \"light-emergency\": 58399,\n  \"light-switch-off\": 57368,\n  \"light-switch-on\": 57369,\n  \"light-switch\": 57367,\n  \"lightbulb-cfl-on\": 58791,\n  \"lightbulb-cfl\": 58790,\n  \"lightbulb-dollar\": 63088,\n  \"lightbulb-exclamation-on\": 57802,\n  \"lightbulb-exclamation\": 63089,\n  \"lightbulb-gear\": 58877,\n  \"lightbulb-message\": 59015,\n  \"lightbulb-on\": 63090,\n  \"lightbulb-slash\": 63091,\n  \"lightbulb\": 61675,\n  \"lighthouse\": 58898,\n  \"lights-holiday\": 63410,\n  \"line-chart\": 61953,\n  \"line-columns\": 63600,\n  \"line-height\": 63601,\n  \"lines-leaning\": 58654,\n  \"link-broken\": 59458,\n  \"link-horizontal-slash\": 57804,\n  \"link-horizontal\": 57803,\n  \"link-simple-slash\": 57806,\n  \"link-simple\": 57805,\n  \"link-slash\": 61735,\n  \"link\": 61633,\n  \"lips\": 62976,\n  \"lira-sign\": 61845,\n  \"list-1-2\": 61643,\n  \"list-alt\": 61474,\n  \"list-check\": 61614,\n  \"list-dots\": 61642,\n  \"list-dropdown\": 57807,\n  \"list-music\": 63689,\n  \"list-numeric\": 61643,\n  \"list-ol\": 61643,\n  \"list-radio\": 57808,\n  \"list-squares\": 61498,\n  \"list-timeline\": 57809,\n  \"list-tree\": 57810,\n  \"list-ul\": 61642,\n  \"list\": 61498,\n  \"litecoin-sign\": 57811,\n  \"loader\": 57812,\n  \"lobster\": 58401,\n  \"location-arrow-slash\": 59258,\n  \"location-arrow-up\": 58938,\n  \"location-arrow\": 61732,\n  \"location-check\": 62982,\n  \"location-circle\": 62978,\n  \"location-crosshairs-slash\": 62979,\n  \"location-crosshairs\": 62977,\n  \"location-dot-slash\": 62981,\n  \"location-dot\": 62405,\n  \"location-exclamation\": 62984,\n  \"location-minus\": 62985,\n  \"location-pen\": 62983,\n  \"location-pin-lock\": 58655,\n  \"location-pin-slash\": 62988,\n  \"location-pin\": 61505,\n  \"location-plus\": 62986,\n  \"location-question\": 62987,\n  \"location-slash\": 62979,\n  \"location-smile\": 62989,\n  \"location-xmark\": 62990,\n  \"location\": 62977,\n  \"lock-a\": 58402,\n  \"lock-alt\": 62221,\n  \"lock-hashtag\": 58403,\n  \"lock-keyhole-open\": 62402,\n  \"lock-keyhole\": 62221,\n  \"lock-open-alt\": 62402,\n  \"lock-open\": 62401,\n  \"lock\": 61475,\n  \"locust\": 58656,\n  \"lollipop\": 58404,\n  \"lollypop\": 58404,\n  \"long-arrow-alt-down\": 62217,\n  \"long-arrow-alt-left\": 62218,\n  \"long-arrow-alt-right\": 62219,\n  \"long-arrow-alt-up\": 62220,\n  \"long-arrow-down\": 61813,\n  \"long-arrow-left\": 61815,\n  \"long-arrow-right\": 61816,\n  \"long-arrow-up\": 61814,\n  \"loveseat\": 62668,\n  \"low-vision\": 62120,\n  \"luchador-mask\": 62549,\n  \"luchador\": 62549,\n  \"luggage-cart\": 62877,\n  \"lungs-virus\": 57447,\n  \"lungs\": 62980,\n  \"lychee\": 59428,\n  \"m\": 77,\n  \"mace\": 63224,\n  \"magic-wand-sparkles\": 58058,\n  \"magic\": 61648,\n  \"magnet\": 61558,\n  \"magnifying-glass-arrow-right\": 58657,\n  \"magnifying-glass-arrows-rotate\": 58974,\n  \"magnifying-glass-chart\": 58658,\n  \"magnifying-glass-dollar\": 63112,\n  \"magnifying-glass-location\": 63113,\n  \"magnifying-glass-minus\": 61456,\n  \"magnifying-glass-music\": 58975,\n  \"magnifying-glass-play\": 58976,\n  \"magnifying-glass-plus\": 61454,\n  \"magnifying-glass-waveform\": 58977,\n  \"magnifying-glass\": 61442,\n  \"mail-bulk\": 63092,\n  \"mail-forward\": 61540,\n  \"mail-reply-all\": 61730,\n  \"mail-reply\": 62437,\n  \"mailbox-flag-up\": 58811,\n  \"mailbox-open-empty\": 59425,\n  \"mailbox-open-letter\": 59427,\n  \"mailbox\": 63507,\n  \"maki-roll\": 58507,\n  \"makizushi\": 58507,\n  \"malaysian-ringgit-sign\": 59130,\n  \"male\": 61827,\n  \"manat-sign\": 57813,\n  \"mandolin\": 63225,\n  \"mango\": 58127,\n  \"manhole\": 57814,\n  \"map-location-dot\": 62880,\n  \"map-location\": 62879,\n  \"map-marked-alt\": 62880,\n  \"map-marked\": 62879,\n  \"map-marker-alt-slash\": 62981,\n  \"map-marker-alt\": 62405,\n  \"map-marker-check\": 62982,\n  \"map-marker-edit\": 62983,\n  \"map-marker-exclamation\": 62984,\n  \"map-marker-minus\": 62985,\n  \"map-marker-plus\": 62986,\n  \"map-marker-question\": 62987,\n  \"map-marker-slash\": 62988,\n  \"map-marker-smile\": 62989,\n  \"map-marker-times\": 62990,\n  \"map-marker-xmark\": 62990,\n  \"map-marker\": 61505,\n  \"map-pin\": 62070,\n  \"map-signs\": 62071,\n  \"map\": 62073,\n  \"marker\": 62881,\n  \"mars-and-venus-burst\": 58659,\n  \"mars-and-venus\": 61988,\n  \"mars-double\": 61991,\n  \"mars-stroke-h\": 61995,\n  \"mars-stroke-right\": 61995,\n  \"mars-stroke-up\": 61994,\n  \"mars-stroke-v\": 61994,\n  \"mars-stroke\": 61993,\n  \"mars\": 61986,\n  \"martini-glass-citrus\": 62817,\n  \"martini-glass-empty\": 61440,\n  \"martini-glass\": 62843,\n  \"mask-face\": 57815,\n  \"mask-luchador\": 62549,\n  \"mask-snorkel\": 58295,\n  \"mask-ventilator\": 58660,\n  \"mask\": 63226,\n  \"masks-theater\": 63024,\n  \"mattress-pillow\": 58661,\n  \"maximize\": 62238,\n  \"meat\": 63508,\n  \"medal\": 62882,\n  \"medkit\": 61690,\n  \"megaphone\": 63093,\n  \"meh-blank\": 62884,\n  \"meh-rolling-eyes\": 62885,\n  \"meh\": 61722,\n  \"melon-slice\": 58129,\n  \"melon\": 58128,\n  \"memo-circle-check\": 57817,\n  \"memo-circle-info\": 58522,\n  \"memo-pad\": 57818,\n  \"memo\": 57816,\n  \"memory\": 62776,\n  \"menorah\": 63094,\n  \"mercury\": 61987,\n  \"merge\": 58662,\n  \"message-arrow-down\": 57819,\n  \"message-arrow-up-right\": 57821,\n  \"message-arrow-up\": 57820,\n  \"message-bot\": 58296,\n  \"message-captions\": 57822,\n  \"message-check\": 62626,\n  \"message-code\": 57823,\n  \"message-dollar\": 63056,\n  \"message-dot\": 59103,\n  \"message-dots\": 62627,\n  \"message-edit\": 62628,\n  \"message-exclamation\": 62629,\n  \"message-heart\": 58825,\n  \"message-image\": 57824,\n  \"message-lines\": 62630,\n  \"message-medical\": 63476,\n  \"message-middle-top\": 57826,\n  \"message-middle\": 57825,\n  \"message-minus\": 62631,\n  \"message-music\": 63663,\n  \"message-pen\": 62628,\n  \"message-plus\": 62632,\n  \"message-question\": 57827,\n  \"message-quote\": 57828,\n  \"message-slash\": 62633,\n  \"message-smile\": 62634,\n  \"message-sms\": 57829,\n  \"message-text\": 57830,\n  \"message-times\": 62635,\n  \"message-waveform\": 59104,\n  \"message-xmark\": 62635,\n  \"message\": 62074,\n  \"messages-dollar\": 63058,\n  \"messages-question\": 57831,\n  \"messages\": 62646,\n  \"messaging\": 62627,\n  \"meteor\": 63315,\n  \"meter-bolt\": 57833,\n  \"meter-droplet\": 57834,\n  \"meter-fire\": 57835,\n  \"meter\": 57832,\n  \"microchip-ai\": 57836,\n  \"microchip\": 62171,\n  \"microphone-alt-slash\": 62777,\n  \"microphone-alt\": 62409,\n  \"microphone-circle-alt\": 57623,\n  \"microphone-circle-plus\": 59261,\n  \"microphone-circle-xmark\": 59262,\n  \"microphone-circle\": 57622,\n  \"microphone-lines-slash\": 62777,\n  \"microphone-lines\": 62409,\n  \"microphone-signal-meter\": 59232,\n  \"microphone-slash\": 61745,\n  \"microphone-stand\": 63691,\n  \"microphone\": 61744,\n  \"microscope\": 62992,\n  \"microwave\": 57371,\n  \"midi\": 59398,\n  \"mill-sign\": 57837,\n  \"mind-share\": 63095,\n  \"minimize\": 63372,\n  \"minus-circle\": 61526,\n  \"minus-hexagon\": 62215,\n  \"minus-large\": 58372,\n  \"minus-octagon\": 62216,\n  \"minus-square\": 61766,\n  \"minus\": 61544,\n  \"mistletoe\": 63412,\n  \"mitten\": 63413,\n  \"mobile-alt\": 62413,\n  \"mobile-android-alt\": 62415,\n  \"mobile-android\": 62414,\n  \"mobile-arrow-down\": 59211,\n  \"mobile-button\": 61707,\n  \"mobile-iphone\": 57838,\n  \"mobile-notch\": 57838,\n  \"mobile-phone\": 62414,\n  \"mobile-retro\": 58663,\n  \"mobile-rotate-reverse\": 59412,\n  \"mobile-rotate\": 59411,\n  \"mobile-screen-button\": 62413,\n  \"mobile-screen\": 62415,\n  \"mobile-signal-out\": 57840,\n  \"mobile-signal\": 57839,\n  \"mobile-slash\": 59413,\n  \"mobile-vibrate-slash\": 59415,\n  \"mobile-vibrate\": 59414,\n  \"mobile\": 62414,\n  \"money-bill-1-wave\": 62779,\n  \"money-bill-1\": 62417,\n  \"money-bill-alt\": 62417,\n  \"money-bill-simple-wave\": 57842,\n  \"money-bill-simple\": 57841,\n  \"money-bill-transfer\": 58664,\n  \"money-bill-trend-up\": 58665,\n  \"money-bill-wave-alt\": 62779,\n  \"money-bill-wave\": 62778,\n  \"money-bill-wheat\": 58666,\n  \"money-bill\": 61654,\n  \"money-bills-alt\": 57844,\n  \"money-bills-simple\": 57844,\n  \"money-bills\": 57843,\n  \"money-check-alt\": 62781,\n  \"money-check-dollar-pen\": 63603,\n  \"money-check-dollar\": 62781,\n  \"money-check-edit-alt\": 63603,\n  \"money-check-edit\": 63602,\n  \"money-check-pen\": 63602,\n  \"money-check\": 62780,\n  \"money-from-bracket\": 58130,\n  \"money-simple-from-bracket\": 58131,\n  \"monitor-heart-rate\": 62993,\n  \"monitor-waveform\": 62993,\n  \"monkey\": 63227,\n  \"monument\": 62886,\n  \"moon-cloud\": 63316,\n  \"moon-first-quarter-inverse\": 59506,\n  \"moon-first-quarter\": 59504,\n  \"moon-full-inverse\": 59507,\n  \"moon-full\": 59505,\n  \"moon-last-quarter-inverse\": 59504,\n  \"moon-last-quarter\": 59506,\n  \"moon-new-inverse\": 59505,\n  \"moon-new\": 59507,\n  \"moon-over-sun\": 63306,\n  \"moon-star\": 59337,\n  \"moon-stars\": 63317,\n  \"moon-waning-crescent-inverse\": 59511,\n  \"moon-waning-crescent\": 59508,\n  \"moon-waning-gibbous-inverse\": 59510,\n  \"moon-waning-gibbous\": 59509,\n  \"moon-waxing-crescent-inverse\": 59509,\n  \"moon-waxing-crescent\": 59510,\n  \"moon-waxing-gibbous-inverse\": 59508,\n  \"moon-waxing-gibbous\": 59511,\n  \"moon\": 61830,\n  \"moped\": 58297,\n  \"mortar-board\": 61853,\n  \"mortar-pestle\": 62887,\n  \"mosque\": 63096,\n  \"mosquito-net\": 58668,\n  \"mosquito\": 58667,\n  \"motorcycle\": 61980,\n  \"mound\": 58669,\n  \"mountain-city\": 58670,\n  \"mountain-sun\": 58671,\n  \"mountain\": 63228,\n  \"mountains\": 63229,\n  \"mouse-alt\": 63693,\n  \"mouse-field\": 58792,\n  \"mouse-pointer\": 62021,\n  \"mouse\": 63692,\n  \"mp3-player\": 63694,\n  \"mug-hot\": 63414,\n  \"mug-marshmallows\": 63415,\n  \"mug-saucer\": 61684,\n  \"mug-tea-saucer\": 57845,\n  \"mug-tea\": 63605,\n  \"mug\": 63604,\n  \"multiply\": 61453,\n  \"museum\": 61852,\n  \"mushroom\": 58405,\n  \"music-alt-slash\": 63696,\n  \"music-alt\": 63695,\n  \"music-magnifying-glass\": 58978,\n  \"music-note-slash\": 63696,\n  \"music-note\": 63695,\n  \"music-slash\": 63697,\n  \"music\": 61441,\n  \"mustache\": 58812,\n  \"n\": 78,\n  \"naira-sign\": 57846,\n  \"narwhal\": 63230,\n  \"nas\": 59553,\n  \"navicon\": 61641,\n  \"nesting-dolls\": 58298,\n  \"network-wired\": 63231,\n  \"neuter\": 61996,\n  \"newspaper\": 61930,\n  \"nfc-lock\": 57848,\n  \"nfc-magnifying-glass\": 57849,\n  \"nfc-pen\": 57850,\n  \"nfc-signal\": 57851,\n  \"nfc-slash\": 57852,\n  \"nfc-symbol\": 58673,\n  \"nfc-trash\": 57853,\n  \"nfc\": 57847,\n  \"nigiri\": 58506,\n  \"non-binary\": 59399,\n  \"norwegian-krone-sign\": 59112,\n  \"nose\": 58813,\n  \"not-equal\": 62782,\n  \"notdef\": 57854,\n  \"note-medical\": 57856,\n  \"note-sticky\": 62025,\n  \"note\": 57855,\n  \"notebook\": 57857,\n  \"notes-medical\": 62593,\n  \"notes-sticky\": 59225,\n  \"notes\": 57858,\n  \"numpad\": 59340,\n  \"o\": 79,\n  \"oar\": 59524,\n  \"oars\": 59525,\n  \"object-exclude\": 58524,\n  \"object-group\": 62023,\n  \"object-intersect\": 58525,\n  \"object-subtract\": 58526,\n  \"object-ungroup\": 62024,\n  \"object-union\": 58527,\n  \"objects-align-bottom\": 58299,\n  \"objects-align-center-horizontal\": 58300,\n  \"objects-align-center-vertical\": 58301,\n  \"objects-align-left\": 58302,\n  \"objects-align-right\": 58303,\n  \"objects-align-top\": 58304,\n  \"objects-column\": 58305,\n  \"octagon-check\": 58406,\n  \"octagon-divide\": 57859,\n  \"octagon-equals\": 59059,\n  \"octagon-exclamation\": 57860,\n  \"octagon-minus\": 62216,\n  \"octagon-plus\": 62209,\n  \"octagon-xmark\": 62192,\n  \"octagon\": 62214,\n  \"octopus\": 59016,\n  \"oil-can-drip\": 57861,\n  \"oil-can\": 62995,\n  \"oil-temp\": 62996,\n  \"oil-temperature\": 62996,\n  \"oil-well\": 58674,\n  \"olive-branch\": 58135,\n  \"olive\": 58134,\n  \"om\": 63097,\n  \"omega\": 63098,\n  \"onion\": 58407,\n  \"open-captioning\": 59263,\n  \"opossum\": 59516,\n  \"option\": 58136,\n  \"ornament\": 63416,\n  \"otter\": 63232,\n  \"outdent\": 61499,\n  \"outlet\": 57372,\n  \"oven\": 57373,\n  \"overline\": 63606,\n  \"owl\": 59551,\n  \"p\": 80,\n  \"page-break\": 63607,\n  \"page-caret-down\": 58409,\n  \"page-caret-up\": 58410,\n  \"page\": 58408,\n  \"pager\": 63509,\n  \"paint-brush-alt\": 62889,\n  \"paint-brush-fine\": 62889,\n  \"paint-brush\": 61948,\n  \"paint-roller\": 62890,\n  \"paintbrush-alt\": 62889,\n  \"paintbrush-fine-slash\": 59213,\n  \"paintbrush-fine\": 62889,\n  \"paintbrush-pencil\": 57862,\n  \"paintbrush-slash\": 59214,\n  \"paintbrush\": 61948,\n  \"palette-boxes\": 62595,\n  \"palette\": 62783,\n  \"pallet-alt\": 62595,\n  \"pallet-box\": 57864,\n  \"pallet-boxes\": 62595,\n  \"pallet\": 62594,\n  \"pan-food\": 58411,\n  \"pan-frying\": 58412,\n  \"pancakes\": 58413,\n  \"panel-ews\": 58414,\n  \"panel-fire\": 58415,\n  \"panorama\": 57865,\n  \"panties\": 59092,\n  \"pants-straight\": 59094,\n  \"pants\": 59093,\n  \"paper-plane-alt\": 57866,\n  \"paper-plane-top\": 57866,\n  \"paper-plane\": 61912,\n  \"paperclip-vertical\": 58306,\n  \"paperclip\": 61638,\n  \"parachute-box\": 62669,\n  \"paragraph-left\": 63608,\n  \"paragraph-rtl\": 63608,\n  \"paragraph\": 61917,\n  \"parentheses\": 57541,\n  \"parenthesis\": 40,\n  \"parking-circle-slash\": 62998,\n  \"parking-circle\": 62997,\n  \"parking-slash\": 62999,\n  \"parking\": 62784,\n  \"party-back\": 58460,\n  \"party-bell\": 58138,\n  \"party-horn\": 58139,\n  \"passport\": 62891,\n  \"pastafarianism\": 63099,\n  \"paste\": 61674,\n  \"pause-circle\": 62091,\n  \"pause\": 61516,\n  \"paw-alt\": 63233,\n  \"paw-claws\": 63234,\n  \"paw-simple\": 63233,\n  \"paw\": 61872,\n  \"peace\": 63100,\n  \"peach\": 57867,\n  \"peanut\": 58416,\n  \"peanuts\": 58417,\n  \"peapod\": 58140,\n  \"pear\": 57868,\n  \"pedestal\": 57869,\n  \"pegasus\": 63235,\n  \"pen-alt-slash\": 57871,\n  \"pen-alt\": 62213,\n  \"pen-circle\": 57870,\n  \"pen-clip-slash\": 57871,\n  \"pen-clip\": 62213,\n  \"pen-fancy-slash\": 57872,\n  \"pen-fancy\": 62892,\n  \"pen-field\": 57873,\n  \"pen-line\": 57874,\n  \"pen-nib-slash\": 58529,\n  \"pen-nib\": 62893,\n  \"pen-paintbrush\": 63000,\n  \"pen-ruler\": 62894,\n  \"pen-slash\": 57875,\n  \"pen-square\": 61771,\n  \"pen-swirl\": 57876,\n  \"pen-to-square\": 61508,\n  \"pen\": 62212,\n  \"pencil-alt\": 62211,\n  \"pencil-line\": 59215,\n  \"pencil-mechanical\": 58826,\n  \"pencil-paintbrush\": 63000,\n  \"pencil-ruler\": 62894,\n  \"pencil-slash\": 57877,\n  \"pencil-square\": 61771,\n  \"pencil\": 62211,\n  \"pennant\": 62550,\n  \"pentagon\": 59280,\n  \"people-arrows-left-right\": 57448,\n  \"people-arrows\": 57448,\n  \"people-carry-box\": 62670,\n  \"people-carry\": 62670,\n  \"people-dress-simple\": 57880,\n  \"people-dress\": 57879,\n  \"people-group\": 58675,\n  \"people-line\": 58676,\n  \"people-pants-simple\": 57882,\n  \"people-pants\": 57881,\n  \"people-pulling\": 58677,\n  \"people-robbery\": 58678,\n  \"people-roof\": 58679,\n  \"people-simple\": 57883,\n  \"people\": 57878,\n  \"pepper-hot\": 63510,\n  \"pepper\": 58418,\n  \"percent\": 37,\n  \"percentage\": 37,\n  \"period\": 46,\n  \"person-arms-raised\": 59267,\n  \"person-arrow-down-to-line\": 58680,\n  \"person-arrow-up-from-line\": 58681,\n  \"person-basketball\": 59268,\n  \"person-biking-mountain\": 63563,\n  \"person-biking\": 63562,\n  \"person-booth\": 63318,\n  \"person-breastfeeding\": 58682,\n  \"person-burst\": 58683,\n  \"person-cane\": 58684,\n  \"person-carry-box\": 62671,\n  \"person-carry-empty\": 59269,\n  \"person-carry\": 62671,\n  \"person-chalkboard\": 58685,\n  \"person-circle-check\": 58686,\n  \"person-circle-exclamation\": 58687,\n  \"person-circle-minus\": 58688,\n  \"person-circle-plus\": 58689,\n  \"person-circle-question\": 58690,\n  \"person-circle-xmark\": 58691,\n  \"person-digging\": 63582,\n  \"person-dolly-empty\": 62673,\n  \"person-dolly\": 62672,\n  \"person-dots-from-line\": 62576,\n  \"person-dress-burst\": 58692,\n  \"person-dress-fairy\": 58887,\n  \"person-dress-simple\": 57884,\n  \"person-dress\": 61826,\n  \"person-drowning\": 58693,\n  \"person-fairy\": 58888,\n  \"person-falling-burst\": 58695,\n  \"person-falling\": 58694,\n  \"person-from-portal\": 57379,\n  \"person-golfing\": 59270,\n  \"person-half-dress\": 58696,\n  \"person-harassing\": 58697,\n  \"person-hiking\": 63212,\n  \"person-limbs-wide\": 59271,\n  \"person-meditating\": 59361,\n  \"person-military-pointing\": 58698,\n  \"person-military-rifle\": 58699,\n  \"person-military-to-person\": 58700,\n  \"person-pinball\": 57885,\n  \"person-praying\": 63107,\n  \"person-pregnant\": 58142,\n  \"person-rays\": 58701,\n  \"person-rifle\": 58702,\n  \"person-running-fast\": 58879,\n  \"person-running\": 63244,\n  \"person-seat-reclined\": 57887,\n  \"person-seat-window\": 59272,\n  \"person-seat\": 57886,\n  \"person-shelter\": 58703,\n  \"person-sign\": 63319,\n  \"person-simple\": 57888,\n  \"person-skating\": 63429,\n  \"person-ski-jumping\": 63431,\n  \"person-ski-lift\": 63432,\n  \"person-skiing-nordic\": 63434,\n  \"person-skiing\": 63433,\n  \"person-sledding\": 63435,\n  \"person-snowboarding\": 63438,\n  \"person-snowmobiling\": 63441,\n  \"person-soccer\": 59273,\n  \"person-swimming-pool\": 59274,\n  \"person-swimming-water\": 59275,\n  \"person-swimming\": 62916,\n  \"person-through-window\": 58793,\n  \"person-to-door\": 58419,\n  \"person-to-portal\": 57378,\n  \"person-walking-arrow-loop-left\": 58705,\n  \"person-walking-arrow-right\": 58706,\n  \"person-walking-dashed-line-arrow-right\": 58707,\n  \"person-walking-luggage\": 58708,\n  \"person-walking-with-cane\": 62109,\n  \"person-walking\": 62804,\n  \"person-water-arms-raised\": 59276,\n  \"person-waving\": 59277,\n  \"person\": 61827,\n  \"peruvian-soles-sign\": 59141,\n  \"peseta-sign\": 57889,\n  \"peso-sign\": 57890,\n  \"phone-alt\": 63609,\n  \"phone-arrow-down-left\": 57891,\n  \"phone-arrow-down\": 57891,\n  \"phone-arrow-right\": 58814,\n  \"phone-arrow-up-right\": 57892,\n  \"phone-arrow-up\": 57892,\n  \"phone-circle-alt\": 57628,\n  \"phone-circle-down\": 57629,\n  \"phone-circle\": 57627,\n  \"phone-connection\": 59105,\n  \"phone-flip\": 63609,\n  \"phone-hangup\": 57893,\n  \"phone-incoming\": 57891,\n  \"phone-intercom\": 58420,\n  \"phone-laptop\": 63610,\n  \"phone-missed\": 57894,\n  \"phone-office\": 63101,\n  \"phone-outgoing\": 57892,\n  \"phone-plus\": 62674,\n  \"phone-rotary\": 63699,\n  \"phone-slash\": 62429,\n  \"phone-square-alt\": 63611,\n  \"phone-square-down\": 57978,\n  \"phone-square\": 61592,\n  \"phone-volume\": 62112,\n  \"phone-waveform\": 59106,\n  \"phone-xmark\": 57895,\n  \"phone\": 61589,\n  \"photo-film-music\": 57896,\n  \"photo-film\": 63612,\n  \"photo-video\": 63612,\n  \"pi\": 63102,\n  \"piano-keyboard\": 63701,\n  \"piano\": 63700,\n  \"pickaxe\": 58815,\n  \"pickleball\": 58421,\n  \"picture-in-picture\": 59403,\n  \"pie-chart\": 61952,\n  \"pie\": 63237,\n  \"pig\": 63238,\n  \"piggy-bank\": 62675,\n  \"pills\": 62596,\n  \"pinata\": 58307,\n  \"pinball\": 57897,\n  \"pineapple\": 58143,\n  \"ping-pong-paddle-ball\": 62557,\n  \"pipe-circle-check\": 58422,\n  \"pipe-collar\": 58423,\n  \"pipe-section\": 58424,\n  \"pipe-smoking\": 58308,\n  \"pipe-valve\": 58425,\n  \"pipe\": 124,\n  \"pisces\": 59468,\n  \"pizza-slice\": 63512,\n  \"pizza\": 63511,\n  \"place-of-worship\": 63103,\n  \"plane-alt\": 62430,\n  \"plane-arrival\": 62895,\n  \"plane-circle-check\": 58709,\n  \"plane-circle-exclamation\": 58710,\n  \"plane-circle-xmark\": 58711,\n  \"plane-departure\": 62896,\n  \"plane-engines\": 62430,\n  \"plane-flying\": 59323,\n  \"plane-landing-gear\": 59324,\n  \"plane-lock\": 58712,\n  \"plane-prop\": 57899,\n  \"plane-slash\": 57449,\n  \"plane-tail\": 57900,\n  \"plane-up-slash\": 57902,\n  \"plane-up\": 57901,\n  \"plane\": 61554,\n  \"planet-moon\": 57375,\n  \"planet-ringed\": 57376,\n  \"plant-wilt\": 58794,\n  \"plate-utensils\": 58427,\n  \"plate-wheat\": 58714,\n  \"play-circle\": 61764,\n  \"play-flip\": 59264,\n  \"play-pause\": 57903,\n  \"play\": 61515,\n  \"plug-circle-bolt\": 58715,\n  \"plug-circle-check\": 58716,\n  \"plug-circle-exclamation\": 58717,\n  \"plug-circle-minus\": 58718,\n  \"plug-circle-plus\": 58719,\n  \"plug-circle-xmark\": 58720,\n  \"plug\": 61926,\n  \"plus-circle\": 61525,\n  \"plus-hexagon\": 62208,\n  \"plus-large\": 58782,\n  \"plus-minus\": 58428,\n  \"plus-octagon\": 62209,\n  \"plus-square\": 61694,\n  \"plus\": 43,\n  \"podcast\": 62158,\n  \"podium-star\": 63320,\n  \"podium\": 63104,\n  \"poker-chip\": 59554,\n  \"police-box\": 57377,\n  \"polish-zloty-sign\": 59147,\n  \"poll-h\": 63106,\n  \"poll-people\": 63321,\n  \"poll\": 63105,\n  \"pompebled\": 58429,\n  \"poo-bolt\": 63322,\n  \"poo-storm\": 63322,\n  \"poo\": 62206,\n  \"pool-8-ball\": 58309,\n  \"poop\": 63001,\n  \"popcorn\": 63513,\n  \"popsicle\": 58430,\n  \"portal-enter\": 57378,\n  \"portal-exit\": 57379,\n  \"portrait\": 62432,\n  \"possum\": 59516,\n  \"postage-stamp\": 59107,\n  \"pot-food\": 58431,\n  \"potato\": 58432,\n  \"pound-sign\": 61780,\n  \"power-off\": 61457,\n  \"pray\": 63107,\n  \"praying-hands\": 63108,\n  \"prescription-bottle-alt\": 62598,\n  \"prescription-bottle-medical\": 62598,\n  \"prescription-bottle-pill\": 58816,\n  \"prescription-bottle\": 62597,\n  \"prescription\": 62897,\n  \"presentation-screen\": 63109,\n  \"presentation\": 63109,\n  \"pretzel\": 58433,\n  \"print-magnifying-glass\": 63514,\n  \"print-search\": 63514,\n  \"print-slash\": 63110,\n  \"print\": 61487,\n  \"pro\": 57909,\n  \"procedures\": 62599,\n  \"project-diagram\": 62786,\n  \"projector\": 63702,\n  \"pronoun\": 59041,\n  \"pump-impeller\": 59445,\n  \"pump-medical\": 57450,\n  \"pump-soap\": 57451,\n  \"pump\": 58434,\n  \"pumpkin\": 63239,\n  \"puzzle-piece-alt\": 57905,\n  \"puzzle-piece-simple\": 57905,\n  \"puzzle-piece\": 61742,\n  \"puzzle\": 58435,\n  \"q\": 81,\n  \"qrcode-read\": 59289,\n  \"qrcode\": 61481,\n  \"question-circle\": 61529,\n  \"question-square\": 62205,\n  \"question\": 63,\n  \"quidditch-broom-ball\": 62552,\n  \"quidditch\": 62552,\n  \"quote-left-alt\": 61709,\n  \"quote-left\": 61709,\n  \"quote-right-alt\": 61710,\n  \"quote-right\": 61710,\n  \"quotes\": 57908,\n  \"quran\": 63111,\n  \"r\": 82,\n  \"rabbit-fast\": 63241,\n  \"rabbit-running\": 63241,\n  \"rabbit\": 63240,\n  \"raccoon\": 58899,\n  \"racquet\": 62554,\n  \"radar\": 57380,\n  \"radiation-alt\": 63418,\n  \"radiation\": 63417,\n  \"radio-alt\": 63704,\n  \"radio-tuner\": 63704,\n  \"radio\": 63703,\n  \"rainbow-half\": 59338,\n  \"rainbow\": 63323,\n  \"raindrops\": 63324,\n  \"ram\": 63242,\n  \"ramp-loading\": 62676,\n  \"random\": 61556,\n  \"ranking-star\": 58721,\n  \"raygun\": 57381,\n  \"receipt\": 62787,\n  \"record-vinyl\": 63705,\n  \"rectangle-4k\": 59250,\n  \"rectangle-ad\": 63041,\n  \"rectangle-api\": 59552,\n  \"rectangle-barcode\": 62563,\n  \"rectangle-beta\": 59400,\n  \"rectangle-code\": 58146,\n  \"rectangle-hd\": 57774,\n  \"rectangle-hdr\": 59251,\n  \"rectangle-high-dynamic-range\": 59251,\n  \"rectangle-history-circle-plus\": 58531,\n  \"rectangle-history-circle-user\": 58532,\n  \"rectangle-history\": 58530,\n  \"rectangle-irc\": 59500,\n  \"rectangle-landscape\": 62202,\n  \"rectangle-list\": 61474,\n  \"rectangle-minus\": 59060,\n  \"rectangle-n-a\": 59560,\n  \"rectangle-new\": 59514,\n  \"rectangle-plus\": 59061,\n  \"rectangle-portrait\": 62203,\n  \"rectangle-pro\": 57909,\n  \"rectangle-sd\": 57994,\n  \"rectangle-tall\": 59281,\n  \"rectangle-terminal\": 57910,\n  \"rectangle-times\": 62480,\n  \"rectangle-vertical-history\": 57911,\n  \"rectangle-vertical\": 62203,\n  \"rectangle-video-on-demand\": 59252,\n  \"rectangle-wide\": 62204,\n  \"rectangle-xmark\": 62480,\n  \"rectangle\": 62202,\n  \"rectangles-mixed\": 58147,\n  \"recycle\": 61880,\n  \"redo-alt\": 62201,\n  \"redo\": 61470,\n  \"reel\": 57912,\n  \"reflect-both\": 58991,\n  \"reflect-horizontal\": 58980,\n  \"reflect-vertical\": 58981,\n  \"refresh\": 61473,\n  \"refrigerator\": 57382,\n  \"registered\": 62045,\n  \"remote\": 59561,\n  \"remove-format\": 63613,\n  \"remove\": 61453,\n  \"renminbi-sign\": 59196,\n  \"reorder\": 62800,\n  \"repeat-1-alt\": 62310,\n  \"repeat-1\": 62309,\n  \"repeat-alt\": 62308,\n  \"repeat\": 62307,\n  \"reply-all\": 61730,\n  \"reply-clock\": 57913,\n  \"reply-time\": 57913,\n  \"reply\": 62437,\n  \"republican\": 63326,\n  \"restroom-simple\": 57914,\n  \"restroom\": 63421,\n  \"retweet-alt\": 62305,\n  \"retweet\": 61561,\n  \"rhombus\": 57915,\n  \"ribbon\": 62678,\n  \"right-from-bracket\": 62197,\n  \"right-from-dotted-line\": 59076,\n  \"right-from-line\": 62279,\n  \"right-left-large\": 58849,\n  \"right-left\": 62306,\n  \"right-long-to-line\": 58436,\n  \"right-long\": 62219,\n  \"right-to-bracket\": 62198,\n  \"right-to-dotted-line\": 59077,\n  \"right-to-line\": 62284,\n  \"right\": 62294,\n  \"ring-diamond\": 58795,\n  \"ring\": 63243,\n  \"rings-wedding\": 63515,\n  \"rmb\": 61783,\n  \"road-barrier\": 58722,\n  \"road-bridge\": 58723,\n  \"road-circle-check\": 58724,\n  \"road-circle-exclamation\": 58725,\n  \"road-circle-xmark\": 58726,\n  \"road-lock\": 58727,\n  \"road-spikes\": 58728,\n  \"road\": 61464,\n  \"robot-astromech\": 58066,\n  \"robot\": 62788,\n  \"rocket-launch\": 57383,\n  \"rocket-vertical\": 59325,\n  \"rocket\": 61749,\n  \"rod-asclepius\": 58745,\n  \"rod-snake\": 58745,\n  \"roller-coaster\": 58148,\n  \"rotate-back\": 62186,\n  \"rotate-backward\": 62186,\n  \"rotate-exclamation\": 57916,\n  \"rotate-forward\": 62201,\n  \"rotate-left\": 62186,\n  \"rotate-reverse\": 58929,\n  \"rotate-right\": 62201,\n  \"rotate\": 62193,\n  \"rouble\": 61784,\n  \"route-highway\": 63002,\n  \"route-interstate\": 63003,\n  \"route\": 62679,\n  \"router\": 63706,\n  \"rows-3\": 59531,\n  \"rows\": 58002,\n  \"rss-square\": 61763,\n  \"rss\": 61598,\n  \"rub\": 61784,\n  \"ruble-sign\": 61784,\n  \"ruble\": 61784,\n  \"rug\": 58729,\n  \"rugby-ball\": 58310,\n  \"ruler-combined\": 62790,\n  \"ruler-horizontal\": 62791,\n  \"ruler-triangle\": 63004,\n  \"ruler-vertical\": 62792,\n  \"ruler\": 62789,\n  \"running\": 63244,\n  \"rupee-sign\": 61782,\n  \"rupee\": 61782,\n  \"rupiah-sign\": 57917,\n  \"rv\": 63422,\n  \"s\": 83,\n  \"sack-dollar\": 63517,\n  \"sack-xmark\": 58730,\n  \"sack\": 63516,\n  \"sad-cry\": 62899,\n  \"sad-tear\": 62900,\n  \"sagittarius\": 59469,\n  \"sailboat\": 58437,\n  \"salad\": 63518,\n  \"salt-shaker\": 58438,\n  \"sandwich\": 63519,\n  \"satellite-dish\": 63424,\n  \"satellite\": 63423,\n  \"sausage\": 63520,\n  \"save-circle-arrow-right\": 57728,\n  \"save-circle-xmark\": 57729,\n  \"save-times\": 57729,\n  \"save\": 61639,\n  \"sax-hot\": 63707,\n  \"saxophone-fire\": 63707,\n  \"saxophone\": 63708,\n  \"scale-balanced\": 62030,\n  \"scale-unbalanced-flip\": 62742,\n  \"scale-unbalanced\": 62741,\n  \"scalpel-line-dashed\": 63006,\n  \"scalpel-path\": 63006,\n  \"scalpel\": 63005,\n  \"scanner-gun\": 62600,\n  \"scanner-image\": 63731,\n  \"scanner-keyboard\": 62601,\n  \"scanner-touchscreen\": 62602,\n  \"scanner\": 62600,\n  \"scarecrow\": 63245,\n  \"scarf\": 63425,\n  \"school-circle-check\": 58731,\n  \"school-circle-exclamation\": 58732,\n  \"school-circle-xmark\": 58733,\n  \"school-flag\": 58734,\n  \"school-lock\": 58735,\n  \"school-unlock\": 59083,\n  \"school\": 62793,\n  \"scissors\": 61636,\n  \"scooter\": 59331,\n  \"scorpio\": 59470,\n  \"screen-users\": 63037,\n  \"screencast\": 57918,\n  \"screenshot\": 57562,\n  \"screwdriver-wrench\": 63449,\n  \"screwdriver\": 62794,\n  \"scribble\": 57919,\n  \"scroll-old\": 63247,\n  \"scroll-ribbon\": 62954,\n  \"scroll-torah\": 63136,\n  \"scroll\": 63246,\n  \"scrubber\": 62200,\n  \"scythe\": 63248,\n  \"sd-card\": 63426,\n  \"sd-cards\": 57920,\n  \"seal-exclamation\": 57922,\n  \"seal-question\": 57923,\n  \"seal\": 57921,\n  \"search-dollar\": 63112,\n  \"search-location\": 63113,\n  \"search-minus\": 61456,\n  \"search-plus\": 61454,\n  \"search\": 61442,\n  \"seat-airline-window\": 59326,\n  \"seat-airline\": 57924,\n  \"seat\": 59236,\n  \"seats\": 59237,\n  \"section\": 58439,\n  \"seedling\": 62680,\n  \"semicolon\": 59,\n  \"send-back\": 63614,\n  \"send-backward\": 63615,\n  \"send\": 57866,\n  \"sensor-alert\": 57385,\n  \"sensor-cloud\": 57388,\n  \"sensor-fire\": 57386,\n  \"sensor-on\": 57387,\n  \"sensor-smoke\": 57388,\n  \"sensor-triangle-exclamation\": 57385,\n  \"sensor\": 57384,\n  \"septagon\": 59424,\n  \"server\": 62003,\n  \"shapes\": 63007,\n  \"share-all\": 62311,\n  \"share-alt-square\": 61921,\n  \"share-alt\": 61920,\n  \"share-from-square\": 61773,\n  \"share-nodes\": 61920,\n  \"share-square\": 61773,\n  \"share\": 61540,\n  \"sheep\": 63249,\n  \"sheet-plastic\": 58737,\n  \"shekel-sign\": 61963,\n  \"shekel\": 61963,\n  \"shelves-empty\": 57926,\n  \"shelves\": 62592,\n  \"sheqel-sign\": 61963,\n  \"sheqel\": 61963,\n  \"shield-alt\": 62445,\n  \"shield-blank\": 61746,\n  \"shield-cat\": 58738,\n  \"shield-check\": 62199,\n  \"shield-cross\": 63250,\n  \"shield-dog\": 58739,\n  \"shield-exclamation\": 57927,\n  \"shield-halved\": 62445,\n  \"shield-heart\": 58740,\n  \"shield-keyhole\": 57928,\n  \"shield-minus\": 57929,\n  \"shield-plus\": 57930,\n  \"shield-quartered\": 58741,\n  \"shield-slash\": 57931,\n  \"shield-times\": 57932,\n  \"shield-user\": 59401,\n  \"shield-virus\": 57452,\n  \"shield-xmark\": 57932,\n  \"shield\": 61746,\n  \"ship-large\": 59408,\n  \"ship\": 61978,\n  \"shipping-fast\": 62603,\n  \"shipping-timed\": 62604,\n  \"shirt-jersey\": 59095,\n  \"shirt-long-sleeve\": 58311,\n  \"shirt-running\": 58312,\n  \"shirt-tank-top\": 58313,\n  \"shirt\": 62803,\n  \"shish-kebab\": 63521,\n  \"shoe-prints\": 62795,\n  \"shoe\": 59096,\n  \"shop-24\": 59290,\n  \"shop-lock\": 58533,\n  \"shop-slash\": 57456,\n  \"shop\": 62799,\n  \"shopping-bag\": 62096,\n  \"shopping-basket-alt\": 57519,\n  \"shopping-basket\": 62097,\n  \"shopping-cart\": 61562,\n  \"shortcake\": 58341,\n  \"shorts\": 59097,\n  \"shovel-snow\": 63427,\n  \"shovel\": 63251,\n  \"shower-alt\": 57933,\n  \"shower-down\": 57933,\n  \"shower\": 62156,\n  \"shredder\": 63114,\n  \"shrimp\": 58440,\n  \"shuffle\": 61556,\n  \"shutters\": 58441,\n  \"shuttle-space-vertical\": 59327,\n  \"shuttle-space\": 61847,\n  \"shuttle-van\": 62902,\n  \"shuttlecock\": 62555,\n  \"sickle\": 63522,\n  \"sidebar-flip\": 57935,\n  \"sidebar\": 57934,\n  \"sigma\": 63115,\n  \"sign-hanging\": 62681,\n  \"sign-in-alt\": 62198,\n  \"sign-in\": 61584,\n  \"sign-language\": 62119,\n  \"sign-out-alt\": 62197,\n  \"sign-out\": 61579,\n  \"sign-post\": 58916,\n  \"sign-posts-wrench\": 58918,\n  \"sign-posts\": 58917,\n  \"sign\": 62681,\n  \"signal-1\": 63116,\n  \"signal-2\": 63117,\n  \"signal-3\": 63118,\n  \"signal-4\": 63119,\n  \"signal-5\": 61458,\n  \"signal-alt-1\": 63121,\n  \"signal-alt-2\": 63122,\n  \"signal-alt-3\": 63123,\n  \"signal-alt-4\": 63120,\n  \"signal-alt-slash\": 63124,\n  \"signal-alt\": 63120,\n  \"signal-bars-fair\": 63122,\n  \"signal-bars-good\": 63123,\n  \"signal-bars-slash\": 63124,\n  \"signal-bars-strong\": 63120,\n  \"signal-bars-weak\": 63121,\n  \"signal-bars\": 63120,\n  \"signal-fair\": 63117,\n  \"signal-good\": 63118,\n  \"signal-perfect\": 61458,\n  \"signal-slash\": 63125,\n  \"signal-stream-slash\": 57936,\n  \"signal-stream\": 63709,\n  \"signal-strong\": 63119,\n  \"signal-weak\": 63116,\n  \"signal\": 61458,\n  \"signapore-dollar-sign\": 59182,\n  \"signature-lock\": 58314,\n  \"signature-slash\": 58315,\n  \"signature\": 62903,\n  \"signing\": 62119,\n  \"signs-post\": 62071,\n  \"sim-card\": 63428,\n  \"sim-cards\": 57937,\n  \"single-quote-left\": 59419,\n  \"single-quote-right\": 59420,\n  \"sink\": 57453,\n  \"siren-on\": 57390,\n  \"siren\": 57389,\n  \"sitemap\": 61672,\n  \"skating\": 63429,\n  \"skeleton-ribs\": 58827,\n  \"skeleton\": 63008,\n  \"ski-boot-ski\": 58317,\n  \"ski-boot\": 58316,\n  \"ski-jump\": 63431,\n  \"ski-lift\": 63432,\n  \"skiing-nordic\": 63434,\n  \"skiing\": 63433,\n  \"skull-cow\": 63710,\n  \"skull-crossbones\": 63252,\n  \"skull\": 62796,\n  \"slash-back\": 92,\n  \"slash-forward\": 47,\n  \"slash\": 63253,\n  \"sledding\": 63435,\n  \"sleigh\": 63436,\n  \"slider-circle\": 59216,\n  \"slider\": 57938,\n  \"sliders-h-square\": 62448,\n  \"sliders-h\": 61918,\n  \"sliders-simple\": 57939,\n  \"sliders-up\": 62449,\n  \"sliders-v-square\": 62450,\n  \"sliders-v\": 62449,\n  \"sliders\": 61918,\n  \"slot-machine\": 58318,\n  \"smile-beam\": 62904,\n  \"smile-plus\": 62905,\n  \"smile-wink\": 62682,\n  \"smile\": 61720,\n  \"smog\": 63327,\n  \"smoke\": 63328,\n  \"smoking-ban\": 62797,\n  \"smoking\": 62605,\n  \"sms\": 63437,\n  \"snake\": 63254,\n  \"sneaker-running\": 59417,\n  \"sneaker\": 59098,\n  \"snooze\": 63616,\n  \"snow-blowing\": 63329,\n  \"snowboarding\": 63438,\n  \"snowflake-droplets\": 58817,\n  \"snowflake\": 62172,\n  \"snowflakes\": 63439,\n  \"snowman-head\": 63387,\n  \"snowman\": 63440,\n  \"snowmobile-blank\": 59332,\n  \"snowmobile\": 63441,\n  \"snowplow\": 63442,\n  \"soap\": 57454,\n  \"soccer-ball\": 61923,\n  \"socks\": 63126,\n  \"soft-serve\": 58368,\n  \"solar-panel\": 62906,\n  \"solar-system\": 57391,\n  \"sort-alpha-asc\": 61789,\n  \"sort-alpha-desc\": 63617,\n  \"sort-alpha-down-alt\": 63617,\n  \"sort-alpha-down\": 61789,\n  \"sort-alpha-up-alt\": 63618,\n  \"sort-alpha-up\": 61790,\n  \"sort-alt\": 63619,\n  \"sort-amount-asc\": 61792,\n  \"sort-amount-desc\": 63620,\n  \"sort-amount-down-alt\": 63620,\n  \"sort-amount-down\": 61792,\n  \"sort-amount-up-alt\": 63621,\n  \"sort-amount-up\": 61793,\n  \"sort-asc\": 61662,\n  \"sort-circle-down\": 57393,\n  \"sort-circle-up\": 57394,\n  \"sort-circle\": 57392,\n  \"sort-desc\": 61661,\n  \"sort-down\": 61661,\n  \"sort-numeric-asc\": 61794,\n  \"sort-numeric-desc\": 63622,\n  \"sort-numeric-down-alt\": 63622,\n  \"sort-numeric-down\": 61794,\n  \"sort-numeric-up-alt\": 63623,\n  \"sort-numeric-up\": 61795,\n  \"sort-shapes-down-alt\": 63625,\n  \"sort-shapes-down\": 63624,\n  \"sort-shapes-up-alt\": 63627,\n  \"sort-shapes-up\": 63626,\n  \"sort-size-down-alt\": 63629,\n  \"sort-size-down\": 63628,\n  \"sort-size-up-alt\": 63631,\n  \"sort-size-up\": 63630,\n  \"sort-up-down\": 57497,\n  \"sort-up\": 61662,\n  \"sort\": 61660,\n  \"soup\": 63523,\n  \"spa\": 62907,\n  \"space-shuttle\": 61847,\n  \"space-station-moon-alt\": 57396,\n  \"space-station-moon-construction\": 57396,\n  \"space-station-moon\": 57395,\n  \"spade\": 62196,\n  \"spaghetti-monster-flying\": 63099,\n  \"sparkle\": 58838,\n  \"sparkles\": 63632,\n  \"speaker\": 63711,\n  \"speakers\": 63712,\n  \"spell-check\": 63633,\n  \"spider-black-widow\": 63256,\n  \"spider-web\": 63257,\n  \"spider\": 63255,\n  \"spine\": 59233,\n  \"spinner-scale\": 58922,\n  \"spinner-third\": 62452,\n  \"spinner\": 61712,\n  \"spiral\": 59402,\n  \"split\": 57940,\n  \"splotch\": 62908,\n  \"spoon\": 62181,\n  \"sportsball\": 58443,\n  \"spray-can-sparkles\": 62928,\n  \"spray-can\": 62909,\n  \"sprinkler-ceiling\": 58444,\n  \"sprinkler\": 57397,\n  \"sprout\": 62680,\n  \"square-0\": 57941,\n  \"square-1\": 57942,\n  \"square-2\": 57943,\n  \"square-3\": 57944,\n  \"square-4\": 57945,\n  \"square-5\": 57946,\n  \"square-6\": 57947,\n  \"square-7\": 57948,\n  \"square-8\": 57949,\n  \"square-9\": 57950,\n  \"square-a-lock\": 58445,\n  \"square-a\": 57951,\n  \"square-ampersand\": 57952,\n  \"square-arrow-down-left\": 57953,\n  \"square-arrow-down-right\": 57954,\n  \"square-arrow-down\": 62265,\n  \"square-arrow-left\": 62266,\n  \"square-arrow-right\": 62267,\n  \"square-arrow-up-left\": 57955,\n  \"square-arrow-up-right\": 61772,\n  \"square-arrow-up\": 62268,\n  \"square-austral\": 59174,\n  \"square-australian-dollar\": 59160,\n  \"square-b\": 57956,\n  \"square-baht\": 59161,\n  \"square-bangladeshi-taka\": 59204,\n  \"square-binary\": 59035,\n  \"square-bitcoin\": 59122,\n  \"square-bolt\": 57957,\n  \"square-brazilian-real\": 59121,\n  \"square-c\": 57958,\n  \"square-caret-down\": 61776,\n  \"square-caret-left\": 61841,\n  \"square-caret-right\": 61778,\n  \"square-caret-up\": 61777,\n  \"square-cedi\": 59177,\n  \"square-cent\": 59120,\n  \"square-check\": 61770,\n  \"square-chevron-down\": 62249,\n  \"square-chevron-left\": 62250,\n  \"square-chevron-right\": 62251,\n  \"square-chevron-up\": 62252,\n  \"square-chf\": 59110,\n  \"square-code\": 57959,\n  \"square-colon\": 59194,\n  \"square-cruzeiro\": 59117,\n  \"square-currency\": 59148,\n  \"square-d\": 57960,\n  \"square-danish-krone\": 59207,\n  \"square-dashed-circle-plus\": 58818,\n  \"square-dashed\": 57961,\n  \"square-divide\": 57962,\n  \"square-dollar\": 62185,\n  \"square-dong\": 59151,\n  \"square-down-left\": 57963,\n  \"square-down-right\": 57964,\n  \"square-down\": 62288,\n  \"square-e\": 57965,\n  \"square-ellipsis-vertical\": 57967,\n  \"square-ellipsis\": 57966,\n  \"square-envelope\": 61849,\n  \"square-equals\": 59062,\n  \"square-euro\": 59186,\n  \"square-eurozone\": 59175,\n  \"square-exclamation\": 62241,\n  \"square-f\": 57968,\n  \"square-florin\": 59159,\n  \"square-fragile\": 62619,\n  \"square-franc\": 59183,\n  \"square-full\": 62556,\n  \"square-g\": 57969,\n  \"square-guarani\": 59150,\n  \"square-h\": 61693,\n  \"square-half-horizontal\": 59406,\n  \"square-half-stroke-horizontal\": 59407,\n  \"square-half-stroke\": 59283,\n  \"square-half\": 59282,\n  \"square-heart\": 62664,\n  \"square-hryvnia\": 59152,\n  \"square-i\": 57970,\n  \"square-indian-rupee\": 59125,\n  \"square-info\": 62223,\n  \"square-j\": 57971,\n  \"square-k\": 57972,\n  \"square-kanban\": 58504,\n  \"square-kip\": 59149,\n  \"square-l\": 57973,\n  \"square-lari\": 59199,\n  \"square-left\": 62289,\n  \"square-lira\": 59111,\n  \"square-list\": 58505,\n  \"square-litecoin\": 59127,\n  \"square-m\": 57974,\n  \"square-malaysian-ringgit\": 59208,\n  \"square-manat\": 59140,\n  \"square-microphone\": 59265,\n  \"square-mill\": 59146,\n  \"square-minus\": 61766,\n  \"square-n\": 57975,\n  \"square-naira\": 59144,\n  \"square-nfi\": 58742,\n  \"square-norwegian-krone\": 59143,\n  \"square-o\": 57976,\n  \"square-p\": 57977,\n  \"square-parking-slash\": 62999,\n  \"square-parking\": 62784,\n  \"square-pen\": 61771,\n  \"square-person-confined\": 58743,\n  \"square-peruvian-soles\": 59158,\n  \"square-peseta\": 59114,\n  \"square-peso\": 59162,\n  \"square-phone-flip\": 63611,\n  \"square-phone-hangup\": 57978,\n  \"square-phone\": 61592,\n  \"square-plus\": 61694,\n  \"square-polish-zloty\": 59190,\n  \"square-poll-horizontal\": 63106,\n  \"square-poll-vertical\": 63105,\n  \"square-q\": 57979,\n  \"square-quarters\": 58446,\n  \"square-question\": 62205,\n  \"square-quote\": 58153,\n  \"square-r\": 57980,\n  \"square-renminbi\": 59197,\n  \"square-right\": 62290,\n  \"square-ring\": 58447,\n  \"square-root-alt\": 63128,\n  \"square-root-variable\": 63128,\n  \"square-root\": 63127,\n  \"square-rss\": 61763,\n  \"square-ruble\": 59128,\n  \"square-rupee\": 59157,\n  \"square-rupiah\": 59154,\n  \"square-s\": 57981,\n  \"square-share-nodes\": 61921,\n  \"square-shekel\": 59189,\n  \"square-sliders-vertical\": 62450,\n  \"square-sliders\": 62448,\n  \"square-small\": 57982,\n  \"square-star\": 57983,\n  \"square-sterling\": 59155,\n  \"square-swedish-krona\": 59164,\n  \"square-t\": 57984,\n  \"square-tenge\": 59185,\n  \"square-terminal\": 58154,\n  \"square-this-way-up\": 62623,\n  \"square-tugrik\": 59176,\n  \"square-turkish-lira\": 59167,\n  \"square-u\": 57985,\n  \"square-up-left\": 57986,\n  \"square-up-right\": 62304,\n  \"square-up\": 62291,\n  \"square-user\": 57987,\n  \"square-v\": 57988,\n  \"square-virus\": 58744,\n  \"square-w\": 57989,\n  \"square-wine-glass-crack\": 62619,\n  \"square-won\": 59145,\n  \"square-x\": 57990,\n  \"square-xmark\": 62163,\n  \"square-y\": 57991,\n  \"square-yen\": 59172,\n  \"square-z\": 57992,\n  \"square\": 61640,\n  \"squareapore-dollar\": 59187,\n  \"squid\": 58448,\n  \"squirrel\": 63258,\n  \"stadium\": 59084,\n  \"staff-aesculapius\": 58745,\n  \"staff-snake\": 58745,\n  \"staff\": 63259,\n  \"stair-car\": 59333,\n  \"stairs\": 57993,\n  \"stamp\": 62911,\n  \"standard-definition\": 57994,\n  \"stapler\": 58799,\n  \"star-and-crescent\": 63129,\n  \"star-christmas\": 63444,\n  \"star-circle\": 57635,\n  \"star-exclamation\": 62195,\n  \"star-half-alt\": 62912,\n  \"star-half-stroke\": 62912,\n  \"star-half\": 61577,\n  \"star-of-david\": 63130,\n  \"star-of-life\": 63009,\n  \"star-sharp-half-alt\": 57997,\n  \"star-sharp-half-stroke\": 57997,\n  \"star-sharp-half\": 57996,\n  \"star-sharp\": 57995,\n  \"star-shooting\": 57398,\n  \"star\": 61445,\n  \"starfighter-alt-advanced\": 57998,\n  \"starfighter-alt\": 57400,\n  \"starfighter-twin-ion-engine-advanced\": 57998,\n  \"starfighter-twin-ion-engine\": 57400,\n  \"starfighter\": 57399,\n  \"stars\": 63330,\n  \"starship-freighter\": 57402,\n  \"starship\": 57401,\n  \"steak\": 63524,\n  \"steering-wheel\": 63010,\n  \"step-backward\": 61512,\n  \"step-forward\": 61521,\n  \"sterling-sign\": 61780,\n  \"stethoscope\": 61681,\n  \"sticky-note\": 62025,\n  \"stocking\": 63445,\n  \"stomach\": 63011,\n  \"stool\": 59520,\n  \"stop-circle\": 62093,\n  \"stop\": 61517,\n  \"stopwatch-20\": 57455,\n  \"stopwatch\": 62194,\n  \"store-24\": 59291,\n  \"store-alt-slash\": 57456,\n  \"store-alt\": 62799,\n  \"store-lock\": 58534,\n  \"store-slash\": 57457,\n  \"store\": 62798,\n  \"strawberry\": 58155,\n  \"stream\": 62800,\n  \"street-view\": 61981,\n  \"stretcher\": 63525,\n  \"strikethrough\": 61644,\n  \"stroopwafel\": 62801,\n  \"subscript\": 61740,\n  \"subtitles-slash\": 58896,\n  \"subtitles\": 58895,\n  \"subtract\": 61544,\n  \"subway-tunnel\": 58019,\n  \"subway\": 62009,\n  \"suitcase-medical\": 61690,\n  \"suitcase-rolling\": 62913,\n  \"suitcase\": 61682,\n  \"sun-alt\": 57999,\n  \"sun-bright\": 57999,\n  \"sun-cloud\": 63331,\n  \"sun-dust\": 63332,\n  \"sun-haze\": 63333,\n  \"sun-plant-wilt\": 58746,\n  \"sun\": 61829,\n  \"sunglasses\": 63634,\n  \"sunrise\": 63334,\n  \"sunset\": 63335,\n  \"superscript\": 61739,\n  \"surprise\": 62914,\n  \"sushi-roll\": 58507,\n  \"sushi\": 58506,\n  \"swap-arrows\": 58890,\n  \"swap\": 58889,\n  \"swatchbook\": 62915,\n  \"swedish-krona-sign\": 59198,\n  \"swimmer\": 62916,\n  \"swimming-pool\": 62917,\n  \"sword-laser-alt\": 57404,\n  \"sword-laser\": 57403,\n  \"sword\": 63260,\n  \"swords-laser\": 57405,\n  \"swords\": 63261,\n  \"symbols\": 63598,\n  \"synagogue\": 63131,\n  \"sync-alt\": 62193,\n  \"sync\": 61473,\n  \"syringe\": 62606,\n  \"t-rex\": 58921,\n  \"t-shirt\": 62803,\n  \"t\": 84,\n  \"table-bar\": 59550,\n  \"table-cells-column-lock\": 59000,\n  \"table-cells-column-unlock\": 59024,\n  \"table-cells-columns\": 59052,\n  \"table-cells-header-lock\": 59054,\n  \"table-cells-header-unlock\": 59055,\n  \"table-cells-header\": 59053,\n  \"table-cells-large\": 61449,\n  \"table-cells-lock\": 59001,\n  \"table-cells-merge\": 59532,\n  \"table-cells-row-lock\": 59002,\n  \"table-cells-row-unlock\": 59025,\n  \"table-cells-rows\": 59056,\n  \"table-cells-split\": 59533,\n  \"table-cells-unlock\": 59026,\n  \"table-cells\": 61450,\n  \"table-columns-add-after\": 59534,\n  \"table-columns-add-before\": 59535,\n  \"table-columns-merge-next\": 59536,\n  \"table-columns-merge-previous\": 59537,\n  \"table-columns-remove-after\": 59538,\n  \"table-columns-remove-before\": 59539,\n  \"table-columns\": 61659,\n  \"table-dining\": 59522,\n  \"table-layout\": 58000,\n  \"table-list\": 61451,\n  \"table-picnic\": 58157,\n  \"table-pivot\": 58001,\n  \"table-rows-add-above\": 59540,\n  \"table-rows-add-below\": 59541,\n  \"table-rows-merge-next\": 59542,\n  \"table-rows-merge-previous\": 59543,\n  \"table-rows-remove-above\": 59544,\n  \"table-rows-remove-below\": 59545,\n  \"table-rows\": 58002,\n  \"table-slash\": 59546,\n  \"table-tennis-paddle-ball\": 62557,\n  \"table-tennis\": 62557,\n  \"table-tree\": 58003,\n  \"table\": 61646,\n  \"tablet-alt\": 62458,\n  \"tablet-android-alt\": 62460,\n  \"tablet-android\": 62459,\n  \"tablet-button\": 61706,\n  \"tablet-rugged\": 62607,\n  \"tablet-screen-button\": 62458,\n  \"tablet-screen\": 62460,\n  \"tablet\": 62459,\n  \"tablets\": 62608,\n  \"tachograph-digital\": 62822,\n  \"tachometer-alt-average\": 63012,\n  \"tachometer-alt-fast\": 63013,\n  \"tachometer-alt-fastest\": 63014,\n  \"tachometer-alt-slow\": 63015,\n  \"tachometer-alt-slowest\": 63016,\n  \"tachometer-alt\": 63013,\n  \"tachometer-average\": 63017,\n  \"tachometer-fast\": 63018,\n  \"tachometer-fastest\": 63019,\n  \"tachometer-slow\": 63020,\n  \"tachometer-slowest\": 63021,\n  \"tachometer\": 63018,\n  \"taco\": 63526,\n  \"tag\": 61483,\n  \"tags\": 61484,\n  \"tally-1\": 58004,\n  \"tally-2\": 58005,\n  \"tally-3\": 58006,\n  \"tally-4\": 58007,\n  \"tally-5\": 63132,\n  \"tally\": 63132,\n  \"tamale\": 58449,\n  \"tanakh\": 63527,\n  \"tank-recovery\": 59429,\n  \"tank-water\": 58450,\n  \"tape\": 62683,\n  \"tarp-droplet\": 58748,\n  \"tarp\": 58747,\n  \"tasks-alt\": 63528,\n  \"tasks\": 61614,\n  \"taurus\": 59471,\n  \"taxi-bus\": 58008,\n  \"taxi\": 61882,\n  \"teddy-bear\": 58319,\n  \"teeth-open\": 63023,\n  \"teeth\": 63022,\n  \"telescope\": 57406,\n  \"teletype-answer\": 58041,\n  \"teletype\": 61924,\n  \"television\": 62060,\n  \"temperature-0\": 62155,\n  \"temperature-1\": 62154,\n  \"temperature-2\": 62153,\n  \"temperature-3\": 62152,\n  \"temperature-4\": 62151,\n  \"temperature-arrow-down\": 57407,\n  \"temperature-arrow-up\": 57408,\n  \"temperature-down\": 57407,\n  \"temperature-empty\": 62155,\n  \"temperature-frigid\": 63336,\n  \"temperature-full\": 62151,\n  \"temperature-half\": 62153,\n  \"temperature-high\": 63337,\n  \"temperature-hot\": 63338,\n  \"temperature-list\": 58009,\n  \"temperature-low\": 63339,\n  \"temperature-quarter\": 62154,\n  \"temperature-slash\": 59339,\n  \"temperature-snow\": 63336,\n  \"temperature-sun\": 63338,\n  \"temperature-three-quarters\": 62152,\n  \"temperature-up\": 57408,\n  \"tenge-sign\": 63447,\n  \"tenge\": 63447,\n  \"tennis-ball\": 62558,\n  \"tent-arrow-down-to-line\": 58750,\n  \"tent-arrow-left-right\": 58751,\n  \"tent-arrow-turn-left\": 58752,\n  \"tent-arrows-down\": 58753,\n  \"tent-circus\": 59085,\n  \"tent-double-peak\": 58919,\n  \"tent\": 58749,\n  \"tents\": 58754,\n  \"terminal\": 61728,\n  \"text-height\": 61492,\n  \"text-size\": 63636,\n  \"text-slash\": 63613,\n  \"text-width\": 61493,\n  \"text\": 63635,\n  \"th-large\": 61449,\n  \"th-list\": 61451,\n  \"th\": 61450,\n  \"theater-masks\": 63024,\n  \"thermometer-0\": 62155,\n  \"thermometer-1\": 62154,\n  \"thermometer-2\": 62153,\n  \"thermometer-3\": 62152,\n  \"thermometer-4\": 62151,\n  \"thermometer-empty\": 62155,\n  \"thermometer-full\": 62151,\n  \"thermometer-half\": 62153,\n  \"thermometer-quarter\": 62154,\n  \"thermometer-three-quarters\": 62152,\n  \"thermometer\": 62609,\n  \"theta\": 63134,\n  \"thought-bubble\": 58158,\n  \"thumb-tack-slash\": 59023,\n  \"thumb-tack\": 61581,\n  \"thumbs-down\": 61797,\n  \"thumbs-up\": 61796,\n  \"thumbtack-angle-slash\": 59218,\n  \"thumbtack-angle\": 59217,\n  \"thumbtack-slash\": 59023,\n  \"thumbtack\": 61581,\n  \"thunderstorm-moon\": 63341,\n  \"thunderstorm-sun\": 63342,\n  \"thunderstorm\": 63340,\n  \"tick\": 58159,\n  \"ticket-airline\": 58010,\n  \"ticket-alt\": 62463,\n  \"ticket-perforated-plane\": 58010,\n  \"ticket-perforated\": 58942,\n  \"ticket-plane\": 58010,\n  \"ticket-simple\": 62463,\n  \"ticket\": 61765,\n  \"tickets-airline\": 58011,\n  \"tickets-perforated-plane\": 58011,\n  \"tickets-perforated\": 58943,\n  \"tickets-plane\": 58011,\n  \"tickets-simple\": 58969,\n  \"tickets\": 58968,\n  \"tilde\": 126,\n  \"timeline-arrow\": 58013,\n  \"timeline\": 58012,\n  \"timer\": 58014,\n  \"times-circle\": 61527,\n  \"times-hexagon\": 62190,\n  \"times-octagon\": 62192,\n  \"times-rectangle\": 62480,\n  \"times-square\": 62163,\n  \"times-to-slot\": 63345,\n  \"times\": 61453,\n  \"tint-slash\": 62919,\n  \"tint\": 61507,\n  \"tire-flat\": 63026,\n  \"tire-pressure-warning\": 63027,\n  \"tire-rugged\": 63028,\n  \"tire\": 63025,\n  \"tired\": 62920,\n  \"toggle-large-off\": 58800,\n  \"toggle-large-on\": 58801,\n  \"toggle-off\": 61956,\n  \"toggle-on\": 61957,\n  \"toilet-paper-alt\": 63262,\n  \"toilet-paper-blank-under\": 58016,\n  \"toilet-paper-blank\": 63262,\n  \"toilet-paper-check\": 58802,\n  \"toilet-paper-reverse-alt\": 58016,\n  \"toilet-paper-reverse-slash\": 58017,\n  \"toilet-paper-reverse\": 58016,\n  \"toilet-paper-slash\": 57458,\n  \"toilet-paper-under-slash\": 58017,\n  \"toilet-paper-under\": 58016,\n  \"toilet-paper-xmark\": 58803,\n  \"toilet-paper\": 63262,\n  \"toilet-portable\": 58755,\n  \"toilet\": 63448,\n  \"toilets-portable\": 58756,\n  \"tomato\": 58160,\n  \"tombstone-alt\": 63265,\n  \"tombstone-blank\": 63265,\n  \"tombstone\": 63264,\n  \"toolbox\": 62802,\n  \"tools\": 63449,\n  \"tooth\": 62921,\n  \"toothbrush\": 63029,\n  \"torah\": 63136,\n  \"torii-gate\": 63137,\n  \"tornado\": 63343,\n  \"tower-broadcast\": 62745,\n  \"tower-cell\": 58757,\n  \"tower-control\": 58018,\n  \"tower-observation\": 58758,\n  \"tower-receive\": 59555,\n  \"tractor\": 63266,\n  \"trademark\": 62044,\n  \"traffic-cone\": 63030,\n  \"traffic-light-go\": 63032,\n  \"traffic-light-slow\": 63033,\n  \"traffic-light-stop\": 63034,\n  \"traffic-light\": 63031,\n  \"trailer\": 57409,\n  \"train-stop\": 59423,\n  \"train-subway-tunnel\": 58019,\n  \"train-subway\": 62009,\n  \"train-track\": 58451,\n  \"train-tram\": 58804,\n  \"train-tunnel\": 58452,\n  \"train\": 62008,\n  \"tram\": 63450,\n  \"transducer\": 59430,\n  \"transformer-bolt\": 58020,\n  \"transgender-alt\": 61989,\n  \"transgender\": 61989,\n  \"transmission\": 59394,\n  \"transporter-1\": 57411,\n  \"transporter-2\": 57412,\n  \"transporter-3\": 57413,\n  \"transporter-4\": 58021,\n  \"transporter-5\": 58022,\n  \"transporter-6\": 58023,\n  \"transporter-7\": 58024,\n  \"transporter-empty\": 57414,\n  \"transporter\": 57410,\n  \"trash-alt-slash\": 58029,\n  \"trash-alt\": 62189,\n  \"trash-arrow-turn-left\": 63637,\n  \"trash-arrow-up\": 63529,\n  \"trash-can-arrow-turn-left\": 63638,\n  \"trash-can-arrow-up\": 63530,\n  \"trash-can-check\": 58025,\n  \"trash-can-clock\": 58026,\n  \"trash-can-list\": 58027,\n  \"trash-can-plus\": 58028,\n  \"trash-can-slash\": 58029,\n  \"trash-can-undo\": 63638,\n  \"trash-can-xmark\": 58030,\n  \"trash-can\": 62189,\n  \"trash-check\": 58031,\n  \"trash-circle\": 57638,\n  \"trash-clock\": 58032,\n  \"trash-list\": 58033,\n  \"trash-plus\": 58034,\n  \"trash-restore-alt\": 63530,\n  \"trash-restore\": 63529,\n  \"trash-slash\": 58035,\n  \"trash-undo-alt\": 63638,\n  \"trash-undo\": 63637,\n  \"trash-xmark\": 58036,\n  \"trash\": 61944,\n  \"treasure-chest\": 63267,\n  \"tree-alt\": 62464,\n  \"tree-christmas\": 63451,\n  \"tree-city\": 58759,\n  \"tree-deciduous\": 62464,\n  \"tree-decorated\": 63452,\n  \"tree-large\": 63453,\n  \"tree-palm\": 63531,\n  \"tree\": 61883,\n  \"trees\": 63268,\n  \"trian-balbot\": 58460,\n  \"triangle-circle-square\": 63007,\n  \"triangle-exclamation\": 61553,\n  \"triangle-instrument\": 63714,\n  \"triangle-music\": 63714,\n  \"triangle-person-digging\": 63581,\n  \"triangle\": 62188,\n  \"tricycle-adult\": 58820,\n  \"tricycle\": 58819,\n  \"trillium\": 58760,\n  \"triple-chevrons-down\": 59383,\n  \"triple-chevrons-left\": 59384,\n  \"triple-chevrons-right\": 59385,\n  \"triple-chevrons-up\": 59386,\n  \"trombone\": 59266,\n  \"trophy-alt\": 62187,\n  \"trophy-star\": 62187,\n  \"trophy\": 61585,\n  \"trowel-bricks\": 58762,\n  \"trowel\": 58761,\n  \"truck-arrow-right\": 58763,\n  \"truck-bolt\": 58320,\n  \"truck-clock\": 62604,\n  \"truck-container-empty\": 58037,\n  \"truck-container\": 62684,\n  \"truck-couch\": 62685,\n  \"truck-droplet\": 58764,\n  \"truck-fast\": 62603,\n  \"truck-field-un\": 58766,\n  \"truck-field\": 58765,\n  \"truck-fire\": 58970,\n  \"truck-flatbed\": 58038,\n  \"truck-front\": 58039,\n  \"truck-ladder\": 58967,\n  \"truck-loading\": 62686,\n  \"truck-medical\": 61689,\n  \"truck-monster\": 63035,\n  \"truck-moving\": 62687,\n  \"truck-pickup\": 63036,\n  \"truck-plane\": 58767,\n  \"truck-plow\": 63454,\n  \"truck-ramp-box\": 62686,\n  \"truck-ramp-couch\": 62685,\n  \"truck-ramp\": 62688,\n  \"truck-suv\": 59334,\n  \"truck-tow\": 58040,\n  \"truck-utensils\": 58920,\n  \"truck\": 61649,\n  \"trumpet\": 63715,\n  \"try\": 58043,\n  \"tshirt\": 62803,\n  \"tty-answer\": 58041,\n  \"tty\": 61924,\n  \"tugrik-sign\": 58042,\n  \"turkey\": 63269,\n  \"turkish-lira-sign\": 58043,\n  \"turkish-lira\": 58043,\n  \"turn-down-left\": 58161,\n  \"turn-down-right\": 58453,\n  \"turn-down\": 62398,\n  \"turn-left-down\": 58935,\n  \"turn-left-up\": 58936,\n  \"turn-left\": 58934,\n  \"turn-right\": 58937,\n  \"turn-up\": 62399,\n  \"turntable\": 63716,\n  \"turtle\": 63270,\n  \"tv-alt\": 62060,\n  \"tv-music\": 63718,\n  \"tv-retro\": 62465,\n  \"tv\": 62060,\n  \"typewriter\": 63719,\n  \"u-turn-down-left\": 59375,\n  \"u-turn-down-right\": 59376,\n  \"u-turn-left-down\": 59377,\n  \"u-turn-left-up\": 59378,\n  \"u-turn-right-down\": 59379,\n  \"u-turn-right-up\": 59380,\n  \"u-turn-up-left\": 59381,\n  \"u-turn-up-right\": 59382,\n  \"u-turn\": 59377,\n  \"u\": 85,\n  \"ufo-beam\": 57416,\n  \"ufo\": 57415,\n  \"umbrella-alt\": 58044,\n  \"umbrella-beach\": 62922,\n  \"umbrella-simple\": 58044,\n  \"umbrella\": 61673,\n  \"underline\": 61645,\n  \"undo-alt\": 62186,\n  \"undo\": 61666,\n  \"unicorn\": 63271,\n  \"unicycle\": 59335,\n  \"uniform-martial-arts\": 58321,\n  \"union\": 63138,\n  \"universal-access\": 62106,\n  \"university\": 61852,\n  \"unlink\": 61735,\n  \"unlock-alt\": 61758,\n  \"unlock-keyhole\": 61758,\n  \"unlock\": 61596,\n  \"unsorted\": 61660,\n  \"up-down-left-right\": 61618,\n  \"up-down\": 62264,\n  \"up-from-bracket\": 58768,\n  \"up-from-dotted-line\": 58454,\n  \"up-from-line\": 62278,\n  \"up-left\": 58045,\n  \"up-long-to-line\": 59078,\n  \"up-long\": 62220,\n  \"up-right-and-down-left-from-center\": 62500,\n  \"up-right-from-square\": 62301,\n  \"up-right\": 58046,\n  \"up-to-bracket\": 58990,\n  \"up-to-dotted-line\": 58455,\n  \"up-to-line\": 62285,\n  \"up\": 62295,\n  \"upload\": 61587,\n  \"usb-drive\": 63721,\n  \"usd-circle\": 62184,\n  \"usd-square\": 62185,\n  \"usd\": 36,\n  \"user-alien\": 57418,\n  \"user-alt-slash\": 62726,\n  \"user-alt\": 61447,\n  \"user-astronaut\": 62715,\n  \"user-beard-bolt\": 59017,\n  \"user-beard\": 59304,\n  \"user-bounty-hunter\": 58047,\n  \"user-chart\": 63139,\n  \"user-check\": 62716,\n  \"user-chef-hair-long\": 59305,\n  \"user-chef\": 58322,\n  \"user-circle-minus\": 59306,\n  \"user-circle-plus\": 59307,\n  \"user-circle\": 62141,\n  \"user-clock\": 62717,\n  \"user-cog\": 62718,\n  \"user-construction\": 63532,\n  \"user-cowboy\": 63722,\n  \"user-crown\": 63140,\n  \"user-dashed\": 59308,\n  \"user-doctor-hair-long\": 58457,\n  \"user-doctor-hair-mullet\": 59309,\n  \"user-doctor-hair\": 58456,\n  \"user-doctor-message\": 63534,\n  \"user-doctor\": 61680,\n  \"user-edit\": 62719,\n  \"user-friends\": 62720,\n  \"user-gear\": 62718,\n  \"user-graduate\": 62721,\n  \"user-group-crown\": 63141,\n  \"user-group-simple\": 58883,\n  \"user-group\": 62720,\n  \"user-hair-buns\": 58323,\n  \"user-hair-long\": 58459,\n  \"user-hair-mullet\": 58460,\n  \"user-hair\": 58458,\n  \"user-hard-hat\": 63532,\n  \"user-hat-tie-magnifying-glass\": 59311,\n  \"user-hat-tie\": 59310,\n  \"user-headset\": 63533,\n  \"user-helmet-safety\": 63532,\n  \"user-hoodie\": 59018,\n  \"user-injured\": 63272,\n  \"user-key\": 59312,\n  \"user-large-slash\": 62726,\n  \"user-large\": 61447,\n  \"user-lock\": 62722,\n  \"user-magnifying-glass\": 58821,\n  \"user-md-chat\": 63534,\n  \"user-md\": 61680,\n  \"user-message\": 59313,\n  \"user-microphone\": 59314,\n  \"user-minus\": 62723,\n  \"user-music\": 63723,\n  \"user-ninja\": 62724,\n  \"user-nurse-hair-long\": 58462,\n  \"user-nurse-hair\": 58461,\n  \"user-nurse\": 63535,\n  \"user-pen\": 62719,\n  \"user-pilot-hair-long\": 59315,\n  \"user-pilot-tie-hair-long\": 59316,\n  \"user-pilot-tie\": 58049,\n  \"user-pilot\": 58048,\n  \"user-plus\": 62004,\n  \"user-police-hair-long\": 59317,\n  \"user-police-tie-hair-long\": 59318,\n  \"user-police-tie\": 58164,\n  \"user-police\": 58163,\n  \"user-question\": 59319,\n  \"user-robot-xmarks\": 58535,\n  \"user-robot\": 57419,\n  \"user-secret\": 61979,\n  \"user-shakespeare\": 58050,\n  \"user-shield\": 62725,\n  \"user-sith\": 59320,\n  \"user-slash\": 62726,\n  \"user-tag\": 62727,\n  \"user-tie-hair-long\": 58464,\n  \"user-tie-hair-mullet\": 59321,\n  \"user-tie-hair\": 58463,\n  \"user-tie\": 62728,\n  \"user-times\": 62005,\n  \"user-unlock\": 57432,\n  \"user-viewfinder\": 59253,\n  \"user-visor\": 57420,\n  \"user-vneck-hair-long\": 58467,\n  \"user-vneck-hair-mullet\": 59322,\n  \"user-vneck-hair\": 58466,\n  \"user-vneck\": 58465,\n  \"user-xmark\": 62005,\n  \"user\": 61447,\n  \"users-between-lines\": 58769,\n  \"users-class\": 63037,\n  \"users-cog\": 62729,\n  \"users-crown\": 63141,\n  \"users-gear\": 62729,\n  \"users-line\": 58770,\n  \"users-medical\": 63536,\n  \"users-rays\": 58771,\n  \"users-rectangle\": 58772,\n  \"users-slash\": 57459,\n  \"users-viewfinder\": 58773,\n  \"users\": 61632,\n  \"utensil-fork\": 62179,\n  \"utensil-knife\": 62180,\n  \"utensil-spoon\": 62181,\n  \"utensils-alt\": 62182,\n  \"utensils-slash\": 58468,\n  \"utensils\": 62183,\n  \"utility-can\": 59549,\n  \"utility-pole-double\": 58052,\n  \"utility-pole\": 58051,\n  \"v\": 86,\n  \"vacuum-robot\": 57422,\n  \"vacuum\": 57421,\n  \"value-absolute\": 63142,\n  \"van-shuttle\": 62902,\n  \"van\": 59336,\n  \"vault\": 58053,\n  \"vcard\": 62139,\n  \"vector-circle\": 62957,\n  \"vector-polygon\": 62958,\n  \"vector-square\": 62959,\n  \"vent-damper\": 58469,\n  \"venus-double\": 61990,\n  \"venus-mars\": 61992,\n  \"venus\": 61985,\n  \"vest-patches\": 57478,\n  \"vest\": 57477,\n  \"vhs\": 63724,\n  \"vial-circle-check\": 58774,\n  \"vial-vertical\": 59234,\n  \"vial-virus\": 58775,\n  \"vial\": 62610,\n  \"vials\": 62611,\n  \"video-arrow-down-left\": 58056,\n  \"video-arrow-up-right\": 58057,\n  \"video-camera\": 61501,\n  \"video-circle\": 57643,\n  \"video-down-to-line\": 59254,\n  \"video-handheld\": 63656,\n  \"video-plus\": 62689,\n  \"video-question\": 59255,\n  \"video-slash\": 62690,\n  \"video\": 61501,\n  \"vihara\": 63143,\n  \"violin\": 63725,\n  \"virgo\": 59472,\n  \"virus-covid-slash\": 58537,\n  \"virus-covid\": 58536,\n  \"virus-slash\": 57461,\n  \"virus\": 57460,\n  \"viruses\": 57462,\n  \"voicemail\": 63639,\n  \"volcano\": 63344,\n  \"volleyball-ball\": 62559,\n  \"volleyball\": 62559,\n  \"volume-control-phone\": 62112,\n  \"volume-down\": 61479,\n  \"volume-high\": 61480,\n  \"volume-low\": 61479,\n  \"volume-medium\": 63144,\n  \"volume-mute\": 63145,\n  \"volume-off\": 61478,\n  \"volume-slash\": 62178,\n  \"volume-times\": 63145,\n  \"volume-up\": 61480,\n  \"volume-xmark\": 63145,\n  \"volume\": 63144,\n  \"vote-nay\": 63345,\n  \"vote-yea\": 63346,\n  \"vr-cardboard\": 63273,\n  \"w\": 87,\n  \"waffle\": 58470,\n  \"wagon-covered\": 63726,\n  \"walker\": 63537,\n  \"walkie-talkie\": 63727,\n  \"walking\": 62804,\n  \"wall-brick\": 58331,\n  \"wallet\": 62805,\n  \"wand-magic-sparkles\": 58058,\n  \"wand-magic\": 61648,\n  \"wand-sparkles\": 63275,\n  \"wand\": 63274,\n  \"wardrobe\": 59521,\n  \"warehouse-alt\": 62613,\n  \"warehouse-full\": 62613,\n  \"warehouse\": 62612,\n  \"warning\": 61553,\n  \"washer\": 63640,\n  \"washing-machine\": 63640,\n  \"watch-apple\": 58059,\n  \"watch-calculator\": 63728,\n  \"watch-fitness\": 63038,\n  \"watch-smart\": 58060,\n  \"watch\": 62177,\n  \"water-arrow-down\": 63348,\n  \"water-arrow-up\": 63349,\n  \"water-ladder\": 62917,\n  \"water-lower\": 63348,\n  \"water-rise\": 63349,\n  \"water-temp\": 59434,\n  \"water-temperature\": 59434,\n  \"water\": 63347,\n  \"watermelon-slice\": 58167,\n  \"wave-pulse\": 62968,\n  \"wave-sine\": 63641,\n  \"wave-square\": 63550,\n  \"wave-triangle\": 63642,\n  \"wave\": 58971,\n  \"waveform-circle\": 57645,\n  \"waveform-lines\": 63730,\n  \"waveform-path\": 63730,\n  \"waveform\": 63729,\n  \"waves-sine\": 58973,\n  \"web-awesome\": 59010,\n  \"webcam-slash\": 63539,\n  \"webcam\": 63538,\n  \"webhook\": 58837,\n  \"weight-hanging\": 62925,\n  \"weight-scale\": 62614,\n  \"weight\": 62614,\n  \"whale\": 63276,\n  \"wheat-alt\": 58061,\n  \"wheat-awn-circle-exclamation\": 58776,\n  \"wheat-awn-slash\": 58168,\n  \"wheat-awn\": 58061,\n  \"wheat-slash\": 58169,\n  \"wheat\": 63277,\n  \"wheelchair-alt\": 58062,\n  \"wheelchair-move\": 58062,\n  \"wheelchair\": 61843,\n  \"whiskey-glass-ice\": 63393,\n  \"whiskey-glass\": 63392,\n  \"whistle\": 62560,\n  \"wifi-1\": 63146,\n  \"wifi-2\": 63147,\n  \"wifi-3\": 61931,\n  \"wifi-exclamation\": 58063,\n  \"wifi-fair\": 63147,\n  \"wifi-slash\": 63148,\n  \"wifi-strong\": 61931,\n  \"wifi-weak\": 63146,\n  \"wifi\": 61931,\n  \"wind-circle-exclamation\": 63350,\n  \"wind-turbine\": 63643,\n  \"wind-warning\": 63350,\n  \"wind\": 63278,\n  \"window-alt\": 62479,\n  \"window-close\": 62480,\n  \"window-flip\": 62479,\n  \"window-frame-open\": 57424,\n  \"window-frame\": 57423,\n  \"window-maximize\": 62160,\n  \"window-minimize\": 62161,\n  \"window-restore\": 62162,\n  \"window\": 62478,\n  \"windsock\": 63351,\n  \"wine-bottle\": 63279,\n  \"wine-glass-alt\": 62926,\n  \"wine-glass-crack\": 62651,\n  \"wine-glass-empty\": 62926,\n  \"wine-glass\": 62691,\n  \"wireless\": 59359,\n  \"won-sign\": 61785,\n  \"won\": 61785,\n  \"worm\": 58777,\n  \"wreath-laurel\": 58834,\n  \"wreath\": 63458,\n  \"wrench-simple\": 58065,\n  \"wrench\": 61613,\n  \"x-ray\": 62615,\n  \"x\": 88,\n  \"xmark-circle\": 61527,\n  \"xmark-hexagon\": 62190,\n  \"xmark-large\": 58779,\n  \"xmark-octagon\": 62192,\n  \"xmark-square\": 62163,\n  \"xmark-to-slot\": 63345,\n  \"xmark\": 61453,\n  \"xmarks-lines\": 58778,\n  \"y\": 89,\n  \"yen-sign\": 61783,\n  \"yen\": 61783,\n  \"yin-yang\": 63149,\n  \"z\": 90,\n  \"zap\": 61671,\n  \"zzz\": 63616\n}"
  },
  {
    "path": "packages/fontawesome-pro-thin/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontawesome-pro-thin\",\n  \"version\": \"0.2.0\",\n  \"description\": \"Fontawesome Pro Thin font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"fontawesome-pro-thin\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/fontawesome-pro-thin\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-thin/react-native-vector-icons-fontawesome-pro-thin.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-fontawesome-pro-thin'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\n\n  s.script_phase = {\n    name: 'Copy Custom Fonts',\n    execution_position: :after_compile,\n    script: <<~SCRIPT\n      set -e\n\n      HEAD=\"(RNVI-fontawesome-pro-thin)\"\n\n      echo \"${HEAD} START_COPY_FONTS\"\n\n      echo \"${HEAD} PWD: $(pwd)\"\n\n      #\n      # Find the custom font Directory\n      #\n\n      # Assume the project root is always two directories above the POD_ROOT\n      echo \"${HEAD} PODS_ROOT: $PODS_ROOT\"\n\n      PROJECT_ROOT=\"${PODS_ROOT}/../..\"\n      echo \"${HEAD} PROJECT_ROOT: $PROJECT_ROOT\"\n\n      cd $PROJECT_ROOT\n      FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/\"//g')\n      if [ -z \"$FONTS_DIR\" ]; then\n        FONTS_DIR=\"rnvi-fonts\"\n      fi\n      echo \"${HEAD} FONTS_DIR: $FONTS_DIR\"\n\n      FONTS_DIR=\"${PROJECT_ROOT}/${FONTS_DIR}/fontawesome-pro-thin\"\n      if [ ! -d \"$FONTS_DIR\" ]; then\n        echo \"${HEAD} $FONTS_DIR not found\"\n        exit 0\n      fi\n\n      #\n      # Find the destination we copy to\n      #\n\n      echo \"${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR\"\n      XCODE_DIR=$(ls -d \"$PODS_CONFIGURATION_BUILD_DIR\"/*.app)\n      echo \"${HEAD} XCODE_DIR: $XCODE_DIR\"\n      if [ -z \"$XCODE_DIR\" ]; then\n        echo \"Could not find XCODE_DIR to copy fonts to\"\n        exit 1\n      fi\n\n      DEST_DIR=\"${XCODE_DIR}\"\n      mkdir -p \"$DEST_DIR\"\n\n      #\n      # Copy the fonts\n      #\n\n      echo \"${HEAD} Copying the following files to $DEST_DIR\"\n      ls \"$FONTS_DIR\" | sed \"s/^/${HEAD} /\"\n\n      rsync -avr --copy-links --no-relative $FONTS_DIR/ \"$DEST_DIR\"\n\n      echo \"${HEAD} END:RNVI_COPY_FONTS\"\n    SCRIPT\n  }\nend\n"
  },
  {
    "path": "packages/fontawesome-pro-thin/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProThin icon set component.\n * Usage: <FontAwesomeProThin name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProThin.json';\n\nexport const FontAwesomeProThin = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Pro-Thin',\n  fontFileName: 'fa-thin-100.ttf',\n});\n\nexport type FontAwesomeProThinIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProThin;\n"
  },
  {
    "path": "packages/fontawesome-pro-thin/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * FontAwesomeProThin icon set component.\n * Usage: <FontAwesomeProThin name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/FontAwesomeProThin.json';\n\nexport const FontAwesomeProThin = createIconSet(glyphMap, {\n  postScriptName: 'FontAwesome7Pro-Thin',\n  fontFileName: 'fa-thin-100.ttf',\n});\n\nexport type FontAwesomeProThinIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default FontAwesomeProThin;\n"
  },
  {
    "path": "packages/fontawesome-pro-thin/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/fontawesome-pro-thin/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome5/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontawesome5\",\n    \"className\": \"FontAwesome5\",\n    \"commonPackage\": \"fontawesome-common/fontawesome5\",\n    \"customSrc\": \"../../../../fontawesome-common/generators/app/templates/src/index.tsx\",\n    \"customReadme\": true,\n    \"upstreamFont\": {\n      \"packageName\": \"@fortawesome/fontawesome-free\",\n      \"versionRange\": \"^5\"\n    },\n    \"meta\": {\n      \"defaultStyleName\": \"regular\",\n      \"styleNames\": [\n        \"regular\",\n        \"solid\",\n        \"brand\"\n      ],\n      \"styles\": {\n        \"regular\": {\n          \"family\": \"FontAwesome5Free-Regular\",\n          \"name\": \"FontAwesome5_Regular.ttf\",\n          \"weight\": 400\n        },\n        \"solid\": {\n          \"family\": \"FontAwesome5Free-Solid\",\n          \"name\": \"FontAwesome5_Solid.ttf\",\n          \"weight\": 900\n        },\n        \"brand\": {\n          \"family\": \"FontAwesome5Brands-Regular\",\n          \"name\": \"FontAwesome5_Brands.ttf\",\n          \"weight\": 400\n        }\n      }\n    },\n    \"buildSteps\": {\n      \"glyphmap\": {\n        \"location\": \"node_modules/@fortawesome/fontawesome-free/css/all.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fa-\"\n      },\n      \"copyFont\": {\n        \"location\": [\n          [\n            \"node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf\",\n            \"FontAwesome5_Brands\"\n          ],\n          [\n            \"node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf\",\n            \"FontAwesome5_Regular\"\n          ],\n          [\n            \"node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf\",\n            \"FontAwesome5_Solid\"\n          ]\n        ]\n      },\n      \"postScript\": {\n        \"script\": \"node ../fontawesome-common/scripts/generate-fontawesome-metadata --path node_modules/@fortawesome/fontawesome-free --output glyphmaps/FontAwesome5_meta.json\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"12.0.0\",\n        \"upstream\": \"5.15.4\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome5/CHANGELOG.md",
    "content": "## 12.4.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.3.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 12.3.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.3.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 12.3.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.2.0 (2025-08-03)\n\n### 🚀 Features\n\n- export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.3.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.1.0 (2025-07-12)\n\n### 🚀 Features\n\n- export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.1.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.2 (2025-06-15)\n\n### 🩹 Fixes\n\n- new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.2\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.1 (2025-06-15)\n\n### 🩹 Fixes\n\n- try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745))\n- update fontawesome fonts to new createIcon format so font loads in expo ([#1769](https://github.com/oblador/react-native-vector-icons/pull/1769))\n- remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767))\n- convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765))\n- updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c))\n- improve warning if glyph does not exist for default IconStyle in fontawesome fonts ([#1718](https://github.com/oblador/react-native-vector-icons/pull/1718))\n- **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.1\n\n### ❤️ Thank You\n\n- Alexander Kucheryavenko @Red1tum\n- John Ferlito @johnf\n- Lukas @WookieFPV\n- Md. Jayed Hasan @JayedHasan232\n\n# 12.0.0 (2025-05-04)\n\n### 🚀 Features\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n- add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702))\n\n### 🩹 Fixes\n\n- upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691))\n- upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690))\n- mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99))\n\n### ⚠️  Breaking Changes\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n\n### ❤️ Thank You\n\n- Chanphirom Sok @chanphiromsok\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontawesome5/README.md",
    "content": "# FontAwesome 5\n\n### Table of Content\n\n- [`Usage`](#usage)\n- [`Upgrading to Pro`](#upgrading-to-pro)\n\n# Usage\n\nUsing the standard icons works just like the standard icons in this library.\n\n```javascript\nimport { FontAwesome5 } from \"@react-native-vector-icons/fontawesome5\";\n\nconst icon = <FontAwesome5 name=\"comments\" />;\n```\n\nSomething special about the FontAwesome5 class is that you can also pass props\nto change the style of the icon:\n\n```javascript\nimport { FontAwesome5 } from \"@react-native-vector-icons/fontawesome5\";\n\nconst icon = <FontAwesome5 name=\"comments\" iconStyle=\"solid\" />;\nconst icon = <FontAwesome5 name=\"git\" iconStyle=\"brand\" />;\n```\n\n**Valid types**\n\n| Type        | Description           |\n| ----------- | --------------------- |\n| **regular** | Uses the Regular font |\n| **brand**   | Uses the Brands font  |\n| **solid**   | Uses the Solid font   |\n\nNo specified type indicates Regular font.\n\n## getImageSource\n\n`getImageSource` works a little different due to its native backend and how the\nfont is separated into different files. An extra argument to specify the font\nstyle is required.\n\nUse this to select which style the generated image should have:\n\n```javascript\nimport { FontAwesome5 } from \"@react-native-vector-icons/fontawesome5\";\n\nFontAwesome5.getImageSource(\"solid\", \"comments\", 30, \"#000\").then((source) =>\n  this.setState({ image: source }),\n);\n```\n\n# Upgrading to Pro\n\nUse the `@react-native-vector-icons/fontawesome5-pro` package instead.\n"
  },
  {
    "path": "packages/fontawesome5/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.fontawesome5\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFontAwesome5\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.fontawesome5\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-fontawesome5\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome5/fonts\"\n  eachFile { println \"(RNVI:fontawesome5) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n"
  },
  {
    "path": "packages/fontawesome5/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.fontawesome5\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome5/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome5/android/src/main/java/VectorIconsFontAwesome5Package.kt",
    "content": "package com.reactnativevectoricons.fontawesome5\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFontAwesome5Package : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/fontawesome5/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/fontawesome5/glyphmaps/FontAwesome5.json",
    "content": "{\n  \"500px\": 62062,\n  \"accessible-icon\": 62312,\n  \"accusoft\": 62313,\n  \"acquisitions-incorporated\": 63151,\n  \"ad\": 63041,\n  \"address-book\": 62137,\n  \"address-card\": 62139,\n  \"adjust\": 61506,\n  \"adn\": 61808,\n  \"adversal\": 62314,\n  \"affiliatetheme\": 62315,\n  \"air-freshener\": 62928,\n  \"airbnb\": 63540,\n  \"algolia\": 62316,\n  \"align-center\": 61495,\n  \"align-justify\": 61497,\n  \"align-left\": 61494,\n  \"align-right\": 61496,\n  \"alipay\": 63042,\n  \"allergies\": 62561,\n  \"amazon\": 62064,\n  \"amazon-pay\": 62508,\n  \"ambulance\": 61689,\n  \"american-sign-language-interpreting\": 62115,\n  \"amilia\": 62317,\n  \"anchor\": 61757,\n  \"android\": 61819,\n  \"angellist\": 61961,\n  \"angle-double-down\": 61699,\n  \"angle-double-left\": 61696,\n  \"angle-double-right\": 61697,\n  \"angle-double-up\": 61698,\n  \"angle-down\": 61703,\n  \"angle-left\": 61700,\n  \"angle-right\": 61701,\n  \"angle-up\": 61702,\n  \"angry\": 62806,\n  \"angrycreative\": 62318,\n  \"angular\": 62496,\n  \"ankh\": 63044,\n  \"app-store\": 62319,\n  \"app-store-ios\": 62320,\n  \"apper\": 62321,\n  \"apple\": 61817,\n  \"apple-alt\": 62929,\n  \"apple-pay\": 62485,\n  \"archive\": 61831,\n  \"archway\": 62807,\n  \"arrow-alt-circle-down\": 62296,\n  \"arrow-alt-circle-left\": 62297,\n  \"arrow-alt-circle-right\": 62298,\n  \"arrow-alt-circle-up\": 62299,\n  \"arrow-circle-down\": 61611,\n  \"arrow-circle-left\": 61608,\n  \"arrow-circle-right\": 61609,\n  \"arrow-circle-up\": 61610,\n  \"arrow-down\": 61539,\n  \"arrow-left\": 61536,\n  \"arrow-right\": 61537,\n  \"arrow-up\": 61538,\n  \"arrows-alt\": 61618,\n  \"arrows-alt-h\": 62263,\n  \"arrows-alt-v\": 62264,\n  \"artstation\": 63354,\n  \"assistive-listening-systems\": 62114,\n  \"asterisk\": 61545,\n  \"asymmetrik\": 62322,\n  \"at\": 61946,\n  \"atlas\": 62808,\n  \"atlassian\": 63355,\n  \"atom\": 62930,\n  \"audible\": 62323,\n  \"audio-description\": 62110,\n  \"autoprefixer\": 62492,\n  \"avianex\": 62324,\n  \"aviato\": 62497,\n  \"award\": 62809,\n  \"aws\": 62325,\n  \"baby\": 63356,\n  \"baby-carriage\": 63357,\n  \"backspace\": 62810,\n  \"backward\": 61514,\n  \"bacon\": 63461,\n  \"bacteria\": 57433,\n  \"bacterium\": 57434,\n  \"bahai\": 63078,\n  \"balance-scale\": 62030,\n  \"balance-scale-left\": 62741,\n  \"balance-scale-right\": 62742,\n  \"ban\": 61534,\n  \"band-aid\": 62562,\n  \"bandcamp\": 62165,\n  \"barcode\": 61482,\n  \"bars\": 61641,\n  \"baseball-ball\": 62515,\n  \"basketball-ball\": 62516,\n  \"bath\": 62157,\n  \"battery-empty\": 62020,\n  \"battery-full\": 62016,\n  \"battery-half\": 62018,\n  \"battery-quarter\": 62019,\n  \"battery-three-quarters\": 62017,\n  \"battle-net\": 63541,\n  \"bed\": 62006,\n  \"beer\": 61692,\n  \"behance\": 61876,\n  \"behance-square\": 61877,\n  \"bell\": 61683,\n  \"bell-slash\": 61942,\n  \"bezier-curve\": 62811,\n  \"bible\": 63047,\n  \"bicycle\": 61958,\n  \"biking\": 63562,\n  \"bimobject\": 62328,\n  \"binoculars\": 61925,\n  \"biohazard\": 63360,\n  \"birthday-cake\": 61949,\n  \"bitbucket\": 61809,\n  \"bitcoin\": 62329,\n  \"bity\": 62330,\n  \"black-tie\": 62078,\n  \"blackberry\": 62331,\n  \"blender\": 62743,\n  \"blender-phone\": 63158,\n  \"blind\": 62109,\n  \"blog\": 63361,\n  \"blogger\": 62332,\n  \"blogger-b\": 62333,\n  \"bluetooth\": 62099,\n  \"bluetooth-b\": 62100,\n  \"bold\": 61490,\n  \"bolt\": 61671,\n  \"bomb\": 61922,\n  \"bone\": 62935,\n  \"bong\": 62812,\n  \"book\": 61485,\n  \"book-dead\": 63159,\n  \"book-medical\": 63462,\n  \"book-open\": 62744,\n  \"book-reader\": 62938,\n  \"bookmark\": 61486,\n  \"bootstrap\": 63542,\n  \"border-all\": 63564,\n  \"border-none\": 63568,\n  \"border-style\": 63571,\n  \"bowling-ball\": 62518,\n  \"box\": 62566,\n  \"box-open\": 62622,\n  \"box-tissue\": 57435,\n  \"boxes\": 62568,\n  \"braille\": 62113,\n  \"brain\": 62940,\n  \"bread-slice\": 63468,\n  \"briefcase\": 61617,\n  \"briefcase-medical\": 62569,\n  \"broadcast-tower\": 62745,\n  \"broom\": 62746,\n  \"brush\": 62813,\n  \"btc\": 61786,\n  \"buffer\": 63543,\n  \"bug\": 61832,\n  \"building\": 61869,\n  \"bullhorn\": 61601,\n  \"bullseye\": 61760,\n  \"burn\": 62570,\n  \"buromobelexperte\": 62335,\n  \"bus\": 61959,\n  \"bus-alt\": 62814,\n  \"business-time\": 63050,\n  \"buy-n-large\": 63654,\n  \"buysellads\": 61965,\n  \"calculator\": 61932,\n  \"calendar\": 61747,\n  \"calendar-alt\": 61555,\n  \"calendar-check\": 62068,\n  \"calendar-day\": 63363,\n  \"calendar-minus\": 62066,\n  \"calendar-plus\": 62065,\n  \"calendar-times\": 62067,\n  \"calendar-week\": 63364,\n  \"camera\": 61488,\n  \"camera-retro\": 61571,\n  \"campground\": 63163,\n  \"canadian-maple-leaf\": 63365,\n  \"candy-cane\": 63366,\n  \"cannabis\": 62815,\n  \"capsules\": 62571,\n  \"car\": 61881,\n  \"car-alt\": 62942,\n  \"car-battery\": 62943,\n  \"car-crash\": 62945,\n  \"car-side\": 62948,\n  \"caravan\": 63743,\n  \"caret-down\": 61655,\n  \"caret-left\": 61657,\n  \"caret-right\": 61658,\n  \"caret-square-down\": 61776,\n  \"caret-square-left\": 61841,\n  \"caret-square-right\": 61778,\n  \"caret-square-up\": 61777,\n  \"caret-up\": 61656,\n  \"carrot\": 63367,\n  \"cart-arrow-down\": 61976,\n  \"cart-plus\": 61975,\n  \"cash-register\": 63368,\n  \"cat\": 63166,\n  \"cc-amazon-pay\": 62509,\n  \"cc-amex\": 61939,\n  \"cc-apple-pay\": 62486,\n  \"cc-diners-club\": 62028,\n  \"cc-discover\": 61938,\n  \"cc-jcb\": 62027,\n  \"cc-mastercard\": 61937,\n  \"cc-paypal\": 61940,\n  \"cc-stripe\": 61941,\n  \"cc-visa\": 61936,\n  \"centercode\": 62336,\n  \"centos\": 63369,\n  \"certificate\": 61603,\n  \"chair\": 63168,\n  \"chalkboard\": 62747,\n  \"chalkboard-teacher\": 62748,\n  \"charging-station\": 62951,\n  \"chart-area\": 61950,\n  \"chart-bar\": 61568,\n  \"chart-line\": 61953,\n  \"chart-pie\": 61952,\n  \"check\": 61452,\n  \"check-circle\": 61528,\n  \"check-double\": 62816,\n  \"check-square\": 61770,\n  \"cheese\": 63471,\n  \"chess\": 62521,\n  \"chess-bishop\": 62522,\n  \"chess-board\": 62524,\n  \"chess-king\": 62527,\n  \"chess-knight\": 62529,\n  \"chess-pawn\": 62531,\n  \"chess-queen\": 62533,\n  \"chess-rook\": 62535,\n  \"chevron-circle-down\": 61754,\n  \"chevron-circle-left\": 61751,\n  \"chevron-circle-right\": 61752,\n  \"chevron-circle-up\": 61753,\n  \"chevron-down\": 61560,\n  \"chevron-left\": 61523,\n  \"chevron-right\": 61524,\n  \"chevron-up\": 61559,\n  \"child\": 61870,\n  \"chrome\": 62056,\n  \"chromecast\": 63544,\n  \"church\": 62749,\n  \"circle\": 61713,\n  \"circle-notch\": 61902,\n  \"city\": 63055,\n  \"clinic-medical\": 63474,\n  \"clipboard\": 62248,\n  \"clipboard-check\": 62572,\n  \"clipboard-list\": 62573,\n  \"clock\": 61463,\n  \"clone\": 62029,\n  \"closed-captioning\": 61962,\n  \"cloud\": 61634,\n  \"cloud-download-alt\": 62337,\n  \"cloud-meatball\": 63291,\n  \"cloud-moon\": 63171,\n  \"cloud-moon-rain\": 63292,\n  \"cloud-rain\": 63293,\n  \"cloud-showers-heavy\": 63296,\n  \"cloud-sun\": 63172,\n  \"cloud-sun-rain\": 63299,\n  \"cloud-upload-alt\": 62338,\n  \"cloudflare\": 57469,\n  \"cloudscale\": 62339,\n  \"cloudsmith\": 62340,\n  \"cloudversify\": 62341,\n  \"cocktail\": 62817,\n  \"code\": 61729,\n  \"code-branch\": 61734,\n  \"codepen\": 61899,\n  \"codiepie\": 62084,\n  \"coffee\": 61684,\n  \"cog\": 61459,\n  \"cogs\": 61573,\n  \"coins\": 62750,\n  \"columns\": 61659,\n  \"comment\": 61557,\n  \"comment-alt\": 62074,\n  \"comment-dollar\": 63057,\n  \"comment-dots\": 62637,\n  \"comment-medical\": 63477,\n  \"comment-slash\": 62643,\n  \"comments\": 61574,\n  \"comments-dollar\": 63059,\n  \"compact-disc\": 62751,\n  \"compass\": 61774,\n  \"compress\": 61542,\n  \"compress-alt\": 62498,\n  \"compress-arrows-alt\": 63372,\n  \"concierge-bell\": 62818,\n  \"confluence\": 63373,\n  \"connectdevelop\": 61966,\n  \"contao\": 62061,\n  \"cookie\": 62819,\n  \"cookie-bite\": 62820,\n  \"copy\": 61637,\n  \"copyright\": 61945,\n  \"cotton-bureau\": 63646,\n  \"couch\": 62648,\n  \"cpanel\": 62344,\n  \"creative-commons\": 62046,\n  \"creative-commons-by\": 62695,\n  \"creative-commons-nc\": 62696,\n  \"creative-commons-nc-eu\": 62697,\n  \"creative-commons-nc-jp\": 62698,\n  \"creative-commons-nd\": 62699,\n  \"creative-commons-pd\": 62700,\n  \"creative-commons-pd-alt\": 62701,\n  \"creative-commons-remix\": 62702,\n  \"creative-commons-sa\": 62703,\n  \"creative-commons-sampling\": 62704,\n  \"creative-commons-sampling-plus\": 62705,\n  \"creative-commons-share\": 62706,\n  \"creative-commons-zero\": 62707,\n  \"credit-card\": 61597,\n  \"critical-role\": 63177,\n  \"crop\": 61733,\n  \"crop-alt\": 62821,\n  \"cross\": 63060,\n  \"crosshairs\": 61531,\n  \"crow\": 62752,\n  \"crown\": 62753,\n  \"crutch\": 63479,\n  \"css3\": 61756,\n  \"css3-alt\": 62347,\n  \"cube\": 61874,\n  \"cubes\": 61875,\n  \"cut\": 61636,\n  \"cuttlefish\": 62348,\n  \"d-and-d\": 62349,\n  \"d-and-d-beyond\": 63178,\n  \"dailymotion\": 57426,\n  \"dashcube\": 61968,\n  \"database\": 61888,\n  \"deaf\": 62116,\n  \"deezer\": 57463,\n  \"delicious\": 61861,\n  \"democrat\": 63303,\n  \"deploydog\": 62350,\n  \"deskpro\": 62351,\n  \"desktop\": 61704,\n  \"dev\": 63180,\n  \"deviantart\": 61885,\n  \"dharmachakra\": 63061,\n  \"dhl\": 63376,\n  \"diagnoses\": 62576,\n  \"diaspora\": 63377,\n  \"dice\": 62754,\n  \"dice-d20\": 63183,\n  \"dice-d6\": 63185,\n  \"dice-five\": 62755,\n  \"dice-four\": 62756,\n  \"dice-one\": 62757,\n  \"dice-six\": 62758,\n  \"dice-three\": 62759,\n  \"dice-two\": 62760,\n  \"digg\": 61862,\n  \"digital-ocean\": 62353,\n  \"digital-tachograph\": 62822,\n  \"directions\": 62955,\n  \"discord\": 62354,\n  \"discourse\": 62355,\n  \"disease\": 63482,\n  \"divide\": 62761,\n  \"dizzy\": 62823,\n  \"dna\": 62577,\n  \"dochub\": 62356,\n  \"docker\": 62357,\n  \"dog\": 63187,\n  \"dollar-sign\": 61781,\n  \"dolly\": 62578,\n  \"dolly-flatbed\": 62580,\n  \"donate\": 62649,\n  \"door-closed\": 62762,\n  \"door-open\": 62763,\n  \"dot-circle\": 61842,\n  \"dove\": 62650,\n  \"download\": 61465,\n  \"draft2digital\": 62358,\n  \"drafting-compass\": 62824,\n  \"dragon\": 63189,\n  \"draw-polygon\": 62958,\n  \"dribbble\": 61821,\n  \"dribbble-square\": 62359,\n  \"dropbox\": 61803,\n  \"drum\": 62825,\n  \"drum-steelpan\": 62826,\n  \"drumstick-bite\": 63191,\n  \"drupal\": 61865,\n  \"dumbbell\": 62539,\n  \"dumpster\": 63379,\n  \"dumpster-fire\": 63380,\n  \"dungeon\": 63193,\n  \"dyalog\": 62361,\n  \"earlybirds\": 62362,\n  \"ebay\": 62708,\n  \"edge\": 62082,\n  \"edge-legacy\": 57464,\n  \"edit\": 61508,\n  \"egg\": 63483,\n  \"eject\": 61522,\n  \"elementor\": 62512,\n  \"ellipsis-h\": 61761,\n  \"ellipsis-v\": 61762,\n  \"ello\": 62961,\n  \"ember\": 62499,\n  \"empire\": 61905,\n  \"envelope\": 61664,\n  \"envelope-open\": 62134,\n  \"envelope-open-text\": 63064,\n  \"envelope-square\": 61849,\n  \"envira\": 62105,\n  \"equals\": 62764,\n  \"eraser\": 61741,\n  \"erlang\": 62365,\n  \"ethereum\": 62510,\n  \"ethernet\": 63382,\n  \"etsy\": 62167,\n  \"euro-sign\": 61779,\n  \"evernote\": 63545,\n  \"exchange-alt\": 62306,\n  \"exclamation\": 61738,\n  \"exclamation-circle\": 61546,\n  \"exclamation-triangle\": 61553,\n  \"expand\": 61541,\n  \"expand-alt\": 62500,\n  \"expand-arrows-alt\": 62238,\n  \"expeditedssl\": 62014,\n  \"external-link-alt\": 62301,\n  \"external-link-square-alt\": 62304,\n  \"eye\": 61550,\n  \"eye-dropper\": 61947,\n  \"eye-slash\": 61552,\n  \"facebook\": 61594,\n  \"facebook-f\": 62366,\n  \"facebook-messenger\": 62367,\n  \"facebook-square\": 61570,\n  \"fan\": 63587,\n  \"fantasy-flight-games\": 63196,\n  \"fast-backward\": 61513,\n  \"fast-forward\": 61520,\n  \"faucet\": 57349,\n  \"fax\": 61868,\n  \"feather\": 62765,\n  \"feather-alt\": 62827,\n  \"fedex\": 63383,\n  \"fedora\": 63384,\n  \"female\": 61826,\n  \"fighter-jet\": 61691,\n  \"figma\": 63385,\n  \"file\": 61787,\n  \"file-alt\": 61788,\n  \"file-archive\": 61894,\n  \"file-audio\": 61895,\n  \"file-code\": 61897,\n  \"file-contract\": 62828,\n  \"file-csv\": 63197,\n  \"file-download\": 62829,\n  \"file-excel\": 61891,\n  \"file-export\": 62830,\n  \"file-image\": 61893,\n  \"file-import\": 62831,\n  \"file-invoice\": 62832,\n  \"file-invoice-dollar\": 62833,\n  \"file-medical\": 62583,\n  \"file-medical-alt\": 62584,\n  \"file-pdf\": 61889,\n  \"file-powerpoint\": 61892,\n  \"file-prescription\": 62834,\n  \"file-signature\": 62835,\n  \"file-upload\": 62836,\n  \"file-video\": 61896,\n  \"file-word\": 61890,\n  \"fill\": 62837,\n  \"fill-drip\": 62838,\n  \"film\": 61448,\n  \"filter\": 61616,\n  \"fingerprint\": 62839,\n  \"fire\": 61549,\n  \"fire-alt\": 63460,\n  \"fire-extinguisher\": 61748,\n  \"firefox\": 62057,\n  \"firefox-browser\": 57351,\n  \"first-aid\": 62585,\n  \"first-order\": 62128,\n  \"first-order-alt\": 62730,\n  \"firstdraft\": 62369,\n  \"fish\": 62840,\n  \"fist-raised\": 63198,\n  \"flag\": 61476,\n  \"flag-checkered\": 61726,\n  \"flag-usa\": 63309,\n  \"flask\": 61635,\n  \"flickr\": 61806,\n  \"flipboard\": 62541,\n  \"flushed\": 62841,\n  \"fly\": 62487,\n  \"folder\": 61563,\n  \"folder-minus\": 63069,\n  \"folder-open\": 61564,\n  \"folder-plus\": 63070,\n  \"font\": 61489,\n  \"font-awesome\": 62132,\n  \"font-awesome-alt\": 62300,\n  \"font-awesome-flag\": 62501,\n  \"font-awesome-logo-full\": 62694,\n  \"fonticons\": 62080,\n  \"fonticons-fi\": 62370,\n  \"football-ball\": 62542,\n  \"fort-awesome\": 62086,\n  \"fort-awesome-alt\": 62371,\n  \"forumbee\": 61969,\n  \"forward\": 61518,\n  \"foursquare\": 61824,\n  \"free-code-camp\": 62149,\n  \"freebsd\": 62372,\n  \"frog\": 62766,\n  \"frown\": 61721,\n  \"frown-open\": 62842,\n  \"fulcrum\": 62731,\n  \"funnel-dollar\": 63074,\n  \"futbol\": 61923,\n  \"galactic-republic\": 62732,\n  \"galactic-senate\": 62733,\n  \"gamepad\": 61723,\n  \"gas-pump\": 62767,\n  \"gavel\": 61667,\n  \"gem\": 62373,\n  \"genderless\": 61997,\n  \"get-pocket\": 62053,\n  \"gg\": 62048,\n  \"gg-circle\": 62049,\n  \"ghost\": 63202,\n  \"gift\": 61547,\n  \"gifts\": 63388,\n  \"git\": 61907,\n  \"git-alt\": 63553,\n  \"git-square\": 61906,\n  \"github\": 61595,\n  \"github-alt\": 61715,\n  \"github-square\": 61586,\n  \"gitkraken\": 62374,\n  \"gitlab\": 62102,\n  \"gitter\": 62502,\n  \"glass-cheers\": 63391,\n  \"glass-martini\": 61440,\n  \"glass-martini-alt\": 62843,\n  \"glass-whiskey\": 63392,\n  \"glasses\": 62768,\n  \"glide\": 62117,\n  \"glide-g\": 62118,\n  \"globe\": 61612,\n  \"globe-africa\": 62844,\n  \"globe-americas\": 62845,\n  \"globe-asia\": 62846,\n  \"globe-europe\": 63394,\n  \"gofore\": 62375,\n  \"golf-ball\": 62544,\n  \"goodreads\": 62376,\n  \"goodreads-g\": 62377,\n  \"google\": 61856,\n  \"google-drive\": 62378,\n  \"google-pay\": 57465,\n  \"google-play\": 62379,\n  \"google-plus\": 62131,\n  \"google-plus-g\": 61653,\n  \"google-plus-square\": 61652,\n  \"google-wallet\": 61934,\n  \"gopuram\": 63076,\n  \"graduation-cap\": 61853,\n  \"gratipay\": 61828,\n  \"grav\": 62166,\n  \"greater-than\": 62769,\n  \"greater-than-equal\": 62770,\n  \"grimace\": 62847,\n  \"grin\": 62848,\n  \"grin-alt\": 62849,\n  \"grin-beam\": 62850,\n  \"grin-beam-sweat\": 62851,\n  \"grin-hearts\": 62852,\n  \"grin-squint\": 62853,\n  \"grin-squint-tears\": 62854,\n  \"grin-stars\": 62855,\n  \"grin-tears\": 62856,\n  \"grin-tongue\": 62857,\n  \"grin-tongue-squint\": 62858,\n  \"grin-tongue-wink\": 62859,\n  \"grin-wink\": 62860,\n  \"grip-horizontal\": 62861,\n  \"grip-lines\": 63396,\n  \"grip-lines-vertical\": 63397,\n  \"grip-vertical\": 62862,\n  \"gripfire\": 62380,\n  \"grunt\": 62381,\n  \"guilded\": 57470,\n  \"guitar\": 63398,\n  \"gulp\": 62382,\n  \"h-square\": 61693,\n  \"hacker-news\": 61908,\n  \"hacker-news-square\": 62383,\n  \"hackerrank\": 62967,\n  \"hamburger\": 63493,\n  \"hammer\": 63203,\n  \"hamsa\": 63077,\n  \"hand-holding\": 62653,\n  \"hand-holding-heart\": 62654,\n  \"hand-holding-medical\": 57436,\n  \"hand-holding-usd\": 62656,\n  \"hand-holding-water\": 62657,\n  \"hand-lizard\": 62040,\n  \"hand-middle-finger\": 63494,\n  \"hand-paper\": 62038,\n  \"hand-peace\": 62043,\n  \"hand-point-down\": 61607,\n  \"hand-point-left\": 61605,\n  \"hand-point-right\": 61604,\n  \"hand-point-up\": 61606,\n  \"hand-pointer\": 62042,\n  \"hand-rock\": 62037,\n  \"hand-scissors\": 62039,\n  \"hand-sparkles\": 57437,\n  \"hand-spock\": 62041,\n  \"hands\": 62658,\n  \"hands-helping\": 62660,\n  \"hands-wash\": 57438,\n  \"handshake\": 62133,\n  \"handshake-alt-slash\": 57439,\n  \"handshake-slash\": 57440,\n  \"hanukiah\": 63206,\n  \"hard-hat\": 63495,\n  \"hashtag\": 62098,\n  \"hat-cowboy\": 63680,\n  \"hat-cowboy-side\": 63681,\n  \"hat-wizard\": 63208,\n  \"hdd\": 61600,\n  \"head-side-cough\": 57441,\n  \"head-side-cough-slash\": 57442,\n  \"head-side-mask\": 57443,\n  \"head-side-virus\": 57444,\n  \"heading\": 61916,\n  \"headphones\": 61477,\n  \"headphones-alt\": 62863,\n  \"headset\": 62864,\n  \"heart\": 61444,\n  \"heart-broken\": 63401,\n  \"heartbeat\": 61982,\n  \"helicopter\": 62771,\n  \"highlighter\": 62865,\n  \"hiking\": 63212,\n  \"hippo\": 63213,\n  \"hips\": 62546,\n  \"hire-a-helper\": 62384,\n  \"history\": 61914,\n  \"hive\": 57471,\n  \"hockey-puck\": 62547,\n  \"holly-berry\": 63402,\n  \"home\": 61461,\n  \"hooli\": 62503,\n  \"hornbill\": 62866,\n  \"horse\": 63216,\n  \"horse-head\": 63403,\n  \"hospital\": 61688,\n  \"hospital-alt\": 62589,\n  \"hospital-symbol\": 62590,\n  \"hospital-user\": 63501,\n  \"hot-tub\": 62867,\n  \"hotdog\": 63503,\n  \"hotel\": 62868,\n  \"hotjar\": 62385,\n  \"hourglass\": 62036,\n  \"hourglass-end\": 62035,\n  \"hourglass-half\": 62034,\n  \"hourglass-start\": 62033,\n  \"house-damage\": 63217,\n  \"house-user\": 57445,\n  \"houzz\": 62076,\n  \"hryvnia\": 63218,\n  \"html5\": 61755,\n  \"hubspot\": 62386,\n  \"i-cursor\": 62022,\n  \"ice-cream\": 63504,\n  \"icicles\": 63405,\n  \"icons\": 63597,\n  \"id-badge\": 62145,\n  \"id-card\": 62146,\n  \"id-card-alt\": 62591,\n  \"ideal\": 57363,\n  \"igloo\": 63406,\n  \"image\": 61502,\n  \"images\": 62210,\n  \"imdb\": 62168,\n  \"inbox\": 61468,\n  \"indent\": 61500,\n  \"industry\": 62069,\n  \"infinity\": 62772,\n  \"info\": 61737,\n  \"info-circle\": 61530,\n  \"innosoft\": 57472,\n  \"instagram\": 61805,\n  \"instagram-square\": 57429,\n  \"instalod\": 57473,\n  \"intercom\": 63407,\n  \"internet-explorer\": 62059,\n  \"invision\": 63408,\n  \"ioxhost\": 61960,\n  \"italic\": 61491,\n  \"itch-io\": 63546,\n  \"itunes\": 62388,\n  \"itunes-note\": 62389,\n  \"java\": 62692,\n  \"jedi\": 63081,\n  \"jedi-order\": 62734,\n  \"jenkins\": 62390,\n  \"jira\": 63409,\n  \"joget\": 62391,\n  \"joint\": 62869,\n  \"joomla\": 61866,\n  \"journal-whills\": 63082,\n  \"js\": 62392,\n  \"js-square\": 62393,\n  \"jsfiddle\": 61900,\n  \"kaaba\": 63083,\n  \"kaggle\": 62970,\n  \"key\": 61572,\n  \"keybase\": 62709,\n  \"keyboard\": 61724,\n  \"keycdn\": 62394,\n  \"khanda\": 63085,\n  \"kickstarter\": 62395,\n  \"kickstarter-k\": 62396,\n  \"kiss\": 62870,\n  \"kiss-beam\": 62871,\n  \"kiss-wink-heart\": 62872,\n  \"kiwi-bird\": 62773,\n  \"korvue\": 62511,\n  \"landmark\": 63087,\n  \"language\": 61867,\n  \"laptop\": 61705,\n  \"laptop-code\": 62972,\n  \"laptop-house\": 57446,\n  \"laptop-medical\": 63506,\n  \"laravel\": 62397,\n  \"lastfm\": 61954,\n  \"lastfm-square\": 61955,\n  \"laugh\": 62873,\n  \"laugh-beam\": 62874,\n  \"laugh-squint\": 62875,\n  \"laugh-wink\": 62876,\n  \"layer-group\": 62973,\n  \"leaf\": 61548,\n  \"leanpub\": 61970,\n  \"lemon\": 61588,\n  \"less\": 62493,\n  \"less-than\": 62774,\n  \"less-than-equal\": 62775,\n  \"level-down-alt\": 62398,\n  \"level-up-alt\": 62399,\n  \"life-ring\": 61901,\n  \"lightbulb\": 61675,\n  \"line\": 62400,\n  \"link\": 61633,\n  \"linkedin\": 61580,\n  \"linkedin-in\": 61665,\n  \"linode\": 62136,\n  \"linux\": 61820,\n  \"lira-sign\": 61845,\n  \"list\": 61498,\n  \"list-alt\": 61474,\n  \"list-ol\": 61643,\n  \"list-ul\": 61642,\n  \"location-arrow\": 61732,\n  \"lock\": 61475,\n  \"lock-open\": 62401,\n  \"long-arrow-alt-down\": 62217,\n  \"long-arrow-alt-left\": 62218,\n  \"long-arrow-alt-right\": 62219,\n  \"long-arrow-alt-up\": 62220,\n  \"low-vision\": 62120,\n  \"luggage-cart\": 62877,\n  \"lungs\": 62980,\n  \"lungs-virus\": 57447,\n  \"lyft\": 62403,\n  \"magento\": 62404,\n  \"magic\": 61648,\n  \"magnet\": 61558,\n  \"mail-bulk\": 63092,\n  \"mailchimp\": 62878,\n  \"male\": 61827,\n  \"mandalorian\": 62735,\n  \"map\": 62073,\n  \"map-marked\": 62879,\n  \"map-marked-alt\": 62880,\n  \"map-marker\": 61505,\n  \"map-marker-alt\": 62405,\n  \"map-pin\": 62070,\n  \"map-signs\": 62071,\n  \"markdown\": 62991,\n  \"marker\": 62881,\n  \"mars\": 61986,\n  \"mars-double\": 61991,\n  \"mars-stroke\": 61993,\n  \"mars-stroke-h\": 61995,\n  \"mars-stroke-v\": 61994,\n  \"mask\": 63226,\n  \"mastodon\": 62710,\n  \"maxcdn\": 61750,\n  \"mdb\": 63690,\n  \"medal\": 62882,\n  \"medapps\": 62406,\n  \"medium\": 62010,\n  \"medium-m\": 62407,\n  \"medkit\": 61690,\n  \"medrt\": 62408,\n  \"meetup\": 62176,\n  \"megaport\": 62883,\n  \"meh\": 61722,\n  \"meh-blank\": 62884,\n  \"meh-rolling-eyes\": 62885,\n  \"memory\": 62776,\n  \"mendeley\": 63411,\n  \"menorah\": 63094,\n  \"mercury\": 61987,\n  \"meteor\": 63315,\n  \"microblog\": 57370,\n  \"microchip\": 62171,\n  \"microphone\": 61744,\n  \"microphone-alt\": 62409,\n  \"microphone-alt-slash\": 62777,\n  \"microphone-slash\": 61745,\n  \"microscope\": 62992,\n  \"microsoft\": 62410,\n  \"minus\": 61544,\n  \"minus-circle\": 61526,\n  \"minus-square\": 61766,\n  \"mitten\": 63413,\n  \"mix\": 62411,\n  \"mixcloud\": 62089,\n  \"mixer\": 57430,\n  \"mizuni\": 62412,\n  \"mobile\": 61707,\n  \"mobile-alt\": 62413,\n  \"modx\": 62085,\n  \"monero\": 62416,\n  \"money-bill\": 61654,\n  \"money-bill-alt\": 62417,\n  \"money-bill-wave\": 62778,\n  \"money-bill-wave-alt\": 62779,\n  \"money-check\": 62780,\n  \"money-check-alt\": 62781,\n  \"monument\": 62886,\n  \"moon\": 61830,\n  \"mortar-pestle\": 62887,\n  \"mosque\": 63096,\n  \"motorcycle\": 61980,\n  \"mountain\": 63228,\n  \"mouse\": 63692,\n  \"mouse-pointer\": 62021,\n  \"mug-hot\": 63414,\n  \"music\": 61441,\n  \"napster\": 62418,\n  \"neos\": 62994,\n  \"network-wired\": 63231,\n  \"neuter\": 61996,\n  \"newspaper\": 61930,\n  \"nimblr\": 62888,\n  \"node\": 62489,\n  \"node-js\": 62419,\n  \"not-equal\": 62782,\n  \"notes-medical\": 62593,\n  \"npm\": 62420,\n  \"ns8\": 62421,\n  \"nutritionix\": 62422,\n  \"object-group\": 62023,\n  \"object-ungroup\": 62024,\n  \"octopus-deploy\": 57474,\n  \"odnoklassniki\": 62051,\n  \"odnoklassniki-square\": 62052,\n  \"oil-can\": 62995,\n  \"old-republic\": 62736,\n  \"om\": 63097,\n  \"opencart\": 62013,\n  \"openid\": 61851,\n  \"opera\": 62058,\n  \"optin-monster\": 62012,\n  \"orcid\": 63698,\n  \"osi\": 62490,\n  \"otter\": 63232,\n  \"outdent\": 61499,\n  \"page4\": 62423,\n  \"pagelines\": 61836,\n  \"pager\": 63509,\n  \"paint-brush\": 61948,\n  \"paint-roller\": 62890,\n  \"palette\": 62783,\n  \"palfed\": 62424,\n  \"pallet\": 62594,\n  \"paper-plane\": 61912,\n  \"paperclip\": 61638,\n  \"parachute-box\": 62669,\n  \"paragraph\": 61917,\n  \"parking\": 62784,\n  \"passport\": 62891,\n  \"pastafarianism\": 63099,\n  \"paste\": 61674,\n  \"patreon\": 62425,\n  \"pause\": 61516,\n  \"pause-circle\": 62091,\n  \"paw\": 61872,\n  \"paypal\": 61933,\n  \"peace\": 63100,\n  \"pen\": 62212,\n  \"pen-alt\": 62213,\n  \"pen-fancy\": 62892,\n  \"pen-nib\": 62893,\n  \"pen-square\": 61771,\n  \"pencil-alt\": 62211,\n  \"pencil-ruler\": 62894,\n  \"penny-arcade\": 63236,\n  \"people-arrows\": 57448,\n  \"people-carry\": 62670,\n  \"pepper-hot\": 63510,\n  \"perbyte\": 57475,\n  \"percent\": 62101,\n  \"percentage\": 62785,\n  \"periscope\": 62426,\n  \"person-booth\": 63318,\n  \"phabricator\": 62427,\n  \"phoenix-framework\": 62428,\n  \"phoenix-squadron\": 62737,\n  \"phone\": 61589,\n  \"phone-alt\": 63609,\n  \"phone-slash\": 62429,\n  \"phone-square\": 61592,\n  \"phone-square-alt\": 63611,\n  \"phone-volume\": 62112,\n  \"photo-video\": 63612,\n  \"php\": 62551,\n  \"pied-piper\": 62126,\n  \"pied-piper-alt\": 61864,\n  \"pied-piper-hat\": 62693,\n  \"pied-piper-pp\": 61863,\n  \"pied-piper-square\": 57374,\n  \"piggy-bank\": 62675,\n  \"pills\": 62596,\n  \"pinterest\": 61650,\n  \"pinterest-p\": 62001,\n  \"pinterest-square\": 61651,\n  \"pizza-slice\": 63512,\n  \"place-of-worship\": 63103,\n  \"plane\": 61554,\n  \"plane-arrival\": 62895,\n  \"plane-departure\": 62896,\n  \"plane-slash\": 57449,\n  \"play\": 61515,\n  \"play-circle\": 61764,\n  \"playstation\": 62431,\n  \"plug\": 61926,\n  \"plus\": 61543,\n  \"plus-circle\": 61525,\n  \"plus-square\": 61694,\n  \"podcast\": 62158,\n  \"poll\": 63105,\n  \"poll-h\": 63106,\n  \"poo\": 62206,\n  \"poo-storm\": 63322,\n  \"poop\": 63001,\n  \"portrait\": 62432,\n  \"pound-sign\": 61780,\n  \"power-off\": 61457,\n  \"pray\": 63107,\n  \"praying-hands\": 63108,\n  \"prescription\": 62897,\n  \"prescription-bottle\": 62597,\n  \"prescription-bottle-alt\": 62598,\n  \"print\": 61487,\n  \"procedures\": 62599,\n  \"product-hunt\": 62088,\n  \"project-diagram\": 62786,\n  \"pump-medical\": 57450,\n  \"pump-soap\": 57451,\n  \"pushed\": 62433,\n  \"puzzle-piece\": 61742,\n  \"python\": 62434,\n  \"qq\": 61910,\n  \"qrcode\": 61481,\n  \"question\": 61736,\n  \"question-circle\": 61529,\n  \"quidditch\": 62552,\n  \"quinscape\": 62553,\n  \"quora\": 62148,\n  \"quote-left\": 61709,\n  \"quote-right\": 61710,\n  \"quran\": 63111,\n  \"r-project\": 62711,\n  \"radiation\": 63417,\n  \"radiation-alt\": 63418,\n  \"rainbow\": 63323,\n  \"random\": 61556,\n  \"raspberry-pi\": 63419,\n  \"ravelry\": 62169,\n  \"react\": 62491,\n  \"reacteurope\": 63325,\n  \"readme\": 62677,\n  \"rebel\": 61904,\n  \"receipt\": 62787,\n  \"record-vinyl\": 63705,\n  \"recycle\": 61880,\n  \"red-river\": 62435,\n  \"reddit\": 61857,\n  \"reddit-alien\": 62081,\n  \"reddit-square\": 61858,\n  \"redhat\": 63420,\n  \"redo\": 61470,\n  \"redo-alt\": 62201,\n  \"registered\": 62045,\n  \"remove-format\": 63613,\n  \"renren\": 61835,\n  \"reply\": 62437,\n  \"reply-all\": 61730,\n  \"replyd\": 62438,\n  \"republican\": 63326,\n  \"researchgate\": 62712,\n  \"resolving\": 62439,\n  \"restroom\": 63421,\n  \"retweet\": 61561,\n  \"rev\": 62898,\n  \"ribbon\": 62678,\n  \"ring\": 63243,\n  \"road\": 61464,\n  \"robot\": 62788,\n  \"rocket\": 61749,\n  \"rocketchat\": 62440,\n  \"rockrms\": 62441,\n  \"route\": 62679,\n  \"rss\": 61598,\n  \"rss-square\": 61763,\n  \"ruble-sign\": 61784,\n  \"ruler\": 62789,\n  \"ruler-combined\": 62790,\n  \"ruler-horizontal\": 62791,\n  \"ruler-vertical\": 62792,\n  \"running\": 63244,\n  \"rupee-sign\": 61782,\n  \"rust\": 57466,\n  \"sad-cry\": 62899,\n  \"sad-tear\": 62900,\n  \"safari\": 62055,\n  \"salesforce\": 63547,\n  \"sass\": 62494,\n  \"satellite\": 63423,\n  \"satellite-dish\": 63424,\n  \"save\": 61639,\n  \"schlix\": 62442,\n  \"school\": 62793,\n  \"screwdriver\": 62794,\n  \"scribd\": 62090,\n  \"scroll\": 63246,\n  \"sd-card\": 63426,\n  \"search\": 61442,\n  \"search-dollar\": 63112,\n  \"search-location\": 63113,\n  \"search-minus\": 61456,\n  \"search-plus\": 61454,\n  \"searchengin\": 62443,\n  \"seedling\": 62680,\n  \"sellcast\": 62170,\n  \"sellsy\": 61971,\n  \"server\": 62003,\n  \"servicestack\": 62444,\n  \"shapes\": 63007,\n  \"share\": 61540,\n  \"share-alt\": 61920,\n  \"share-alt-square\": 61921,\n  \"share-square\": 61773,\n  \"shekel-sign\": 61963,\n  \"shield-alt\": 62445,\n  \"shield-virus\": 57452,\n  \"ship\": 61978,\n  \"shipping-fast\": 62603,\n  \"shirtsinbulk\": 61972,\n  \"shoe-prints\": 62795,\n  \"shopify\": 57431,\n  \"shopping-bag\": 62096,\n  \"shopping-basket\": 62097,\n  \"shopping-cart\": 61562,\n  \"shopware\": 62901,\n  \"shower\": 62156,\n  \"shuttle-van\": 62902,\n  \"sign\": 62681,\n  \"sign-in-alt\": 62198,\n  \"sign-language\": 62119,\n  \"sign-out-alt\": 62197,\n  \"signal\": 61458,\n  \"signature\": 62903,\n  \"sim-card\": 63428,\n  \"simplybuilt\": 61973,\n  \"sink\": 57453,\n  \"sistrix\": 62446,\n  \"sitemap\": 61672,\n  \"sith\": 62738,\n  \"skating\": 63429,\n  \"sketch\": 63430,\n  \"skiing\": 63433,\n  \"skiing-nordic\": 63434,\n  \"skull\": 62796,\n  \"skull-crossbones\": 63252,\n  \"skyatlas\": 61974,\n  \"skype\": 61822,\n  \"slack\": 61848,\n  \"slack-hash\": 62447,\n  \"slash\": 63253,\n  \"sleigh\": 63436,\n  \"sliders-h\": 61918,\n  \"slideshare\": 61927,\n  \"smile\": 61720,\n  \"smile-beam\": 62904,\n  \"smile-wink\": 62682,\n  \"smog\": 63327,\n  \"smoking\": 62605,\n  \"smoking-ban\": 62797,\n  \"sms\": 63437,\n  \"snapchat\": 62123,\n  \"snapchat-ghost\": 62124,\n  \"snapchat-square\": 62125,\n  \"snowboarding\": 63438,\n  \"snowflake\": 62172,\n  \"snowman\": 63440,\n  \"snowplow\": 63442,\n  \"soap\": 57454,\n  \"socks\": 63126,\n  \"solar-panel\": 62906,\n  \"sort\": 61660,\n  \"sort-alpha-down\": 61789,\n  \"sort-alpha-down-alt\": 63617,\n  \"sort-alpha-up\": 61790,\n  \"sort-alpha-up-alt\": 63618,\n  \"sort-amount-down\": 61792,\n  \"sort-amount-down-alt\": 63620,\n  \"sort-amount-up\": 61793,\n  \"sort-amount-up-alt\": 63621,\n  \"sort-down\": 61661,\n  \"sort-numeric-down\": 61794,\n  \"sort-numeric-down-alt\": 63622,\n  \"sort-numeric-up\": 61795,\n  \"sort-numeric-up-alt\": 63623,\n  \"sort-up\": 61662,\n  \"soundcloud\": 61886,\n  \"sourcetree\": 63443,\n  \"spa\": 62907,\n  \"space-shuttle\": 61847,\n  \"speakap\": 62451,\n  \"speaker-deck\": 63548,\n  \"spell-check\": 63633,\n  \"spider\": 63255,\n  \"spinner\": 61712,\n  \"splotch\": 62908,\n  \"spotify\": 61884,\n  \"spray-can\": 62909,\n  \"square\": 61640,\n  \"square-full\": 62556,\n  \"square-root-alt\": 63128,\n  \"squarespace\": 62910,\n  \"stack-exchange\": 61837,\n  \"stack-overflow\": 61804,\n  \"stackpath\": 63554,\n  \"stamp\": 62911,\n  \"star\": 61445,\n  \"star-and-crescent\": 63129,\n  \"star-half\": 61577,\n  \"star-half-alt\": 62912,\n  \"star-of-david\": 63130,\n  \"star-of-life\": 63009,\n  \"staylinked\": 62453,\n  \"steam\": 61878,\n  \"steam-square\": 61879,\n  \"steam-symbol\": 62454,\n  \"step-backward\": 61512,\n  \"step-forward\": 61521,\n  \"stethoscope\": 61681,\n  \"sticker-mule\": 62455,\n  \"sticky-note\": 62025,\n  \"stop\": 61517,\n  \"stop-circle\": 62093,\n  \"stopwatch\": 62194,\n  \"stopwatch-20\": 57455,\n  \"store\": 62798,\n  \"store-alt\": 62799,\n  \"store-alt-slash\": 57456,\n  \"store-slash\": 57457,\n  \"strava\": 62504,\n  \"stream\": 62800,\n  \"street-view\": 61981,\n  \"strikethrough\": 61644,\n  \"stripe\": 62505,\n  \"stripe-s\": 62506,\n  \"stroopwafel\": 62801,\n  \"studiovinari\": 62456,\n  \"stumbleupon\": 61860,\n  \"stumbleupon-circle\": 61859,\n  \"subscript\": 61740,\n  \"subway\": 62009,\n  \"suitcase\": 61682,\n  \"suitcase-rolling\": 62913,\n  \"sun\": 61829,\n  \"superpowers\": 62173,\n  \"superscript\": 61739,\n  \"supple\": 62457,\n  \"surprise\": 62914,\n  \"suse\": 63446,\n  \"swatchbook\": 62915,\n  \"swift\": 63713,\n  \"swimmer\": 62916,\n  \"swimming-pool\": 62917,\n  \"symfony\": 63549,\n  \"synagogue\": 63131,\n  \"sync\": 61473,\n  \"sync-alt\": 62193,\n  \"syringe\": 62606,\n  \"table\": 61646,\n  \"table-tennis\": 62557,\n  \"tablet\": 61706,\n  \"tablet-alt\": 62458,\n  \"tablets\": 62608,\n  \"tachometer-alt\": 62461,\n  \"tag\": 61483,\n  \"tags\": 61484,\n  \"tape\": 62683,\n  \"tasks\": 61614,\n  \"taxi\": 61882,\n  \"teamspeak\": 62713,\n  \"teeth\": 63022,\n  \"teeth-open\": 63023,\n  \"telegram\": 62150,\n  \"telegram-plane\": 62462,\n  \"temperature-high\": 63337,\n  \"temperature-low\": 63339,\n  \"tencent-weibo\": 61909,\n  \"tenge\": 63447,\n  \"terminal\": 61728,\n  \"text-height\": 61492,\n  \"text-width\": 61493,\n  \"th\": 61450,\n  \"th-large\": 61449,\n  \"th-list\": 61451,\n  \"the-red-yeti\": 63133,\n  \"theater-masks\": 63024,\n  \"themeco\": 62918,\n  \"themeisle\": 62130,\n  \"thermometer\": 62609,\n  \"thermometer-empty\": 62155,\n  \"thermometer-full\": 62151,\n  \"thermometer-half\": 62153,\n  \"thermometer-quarter\": 62154,\n  \"thermometer-three-quarters\": 62152,\n  \"think-peaks\": 63281,\n  \"thumbs-down\": 61797,\n  \"thumbs-up\": 61796,\n  \"thumbtack\": 61581,\n  \"ticket-alt\": 62463,\n  \"tiktok\": 57467,\n  \"times\": 61453,\n  \"times-circle\": 61527,\n  \"tint\": 61507,\n  \"tint-slash\": 62919,\n  \"tired\": 62920,\n  \"toggle-off\": 61956,\n  \"toggle-on\": 61957,\n  \"toilet\": 63448,\n  \"toilet-paper\": 63262,\n  \"toilet-paper-slash\": 57458,\n  \"toolbox\": 62802,\n  \"tools\": 63449,\n  \"tooth\": 62921,\n  \"torah\": 63136,\n  \"torii-gate\": 63137,\n  \"tractor\": 63266,\n  \"trade-federation\": 62739,\n  \"trademark\": 62044,\n  \"traffic-light\": 63031,\n  \"trailer\": 57409,\n  \"train\": 62008,\n  \"tram\": 63450,\n  \"transgender\": 61988,\n  \"transgender-alt\": 61989,\n  \"trash\": 61944,\n  \"trash-alt\": 62189,\n  \"trash-restore\": 63529,\n  \"trash-restore-alt\": 63530,\n  \"tree\": 61883,\n  \"trello\": 61825,\n  \"trophy\": 61585,\n  \"truck\": 61649,\n  \"truck-loading\": 62686,\n  \"truck-monster\": 63035,\n  \"truck-moving\": 62687,\n  \"truck-pickup\": 63036,\n  \"tshirt\": 62803,\n  \"tty\": 61924,\n  \"tumblr\": 61811,\n  \"tumblr-square\": 61812,\n  \"tv\": 62060,\n  \"twitch\": 61928,\n  \"twitter\": 61593,\n  \"twitter-square\": 61569,\n  \"typo3\": 62507,\n  \"uber\": 62466,\n  \"ubuntu\": 63455,\n  \"uikit\": 62467,\n  \"umbraco\": 63720,\n  \"umbrella\": 61673,\n  \"umbrella-beach\": 62922,\n  \"uncharted\": 57476,\n  \"underline\": 61645,\n  \"undo\": 61666,\n  \"undo-alt\": 62186,\n  \"uniregistry\": 62468,\n  \"unity\": 57417,\n  \"universal-access\": 62106,\n  \"university\": 61852,\n  \"unlink\": 61735,\n  \"unlock\": 61596,\n  \"unlock-alt\": 61758,\n  \"unsplash\": 57468,\n  \"untappd\": 62469,\n  \"upload\": 61587,\n  \"ups\": 63456,\n  \"usb\": 62087,\n  \"user\": 61447,\n  \"user-alt\": 62470,\n  \"user-alt-slash\": 62714,\n  \"user-astronaut\": 62715,\n  \"user-check\": 62716,\n  \"user-circle\": 62141,\n  \"user-clock\": 62717,\n  \"user-cog\": 62718,\n  \"user-edit\": 62719,\n  \"user-friends\": 62720,\n  \"user-graduate\": 62721,\n  \"user-injured\": 63272,\n  \"user-lock\": 62722,\n  \"user-md\": 61680,\n  \"user-minus\": 62723,\n  \"user-ninja\": 62724,\n  \"user-nurse\": 63535,\n  \"user-plus\": 62004,\n  \"user-secret\": 61979,\n  \"user-shield\": 62725,\n  \"user-slash\": 62726,\n  \"user-tag\": 62727,\n  \"user-tie\": 62728,\n  \"user-times\": 62005,\n  \"users\": 61632,\n  \"users-cog\": 62729,\n  \"users-slash\": 57459,\n  \"usps\": 63457,\n  \"ussunnah\": 62471,\n  \"utensil-spoon\": 62181,\n  \"utensils\": 62183,\n  \"vaadin\": 62472,\n  \"vector-square\": 62923,\n  \"venus\": 61985,\n  \"venus-double\": 61990,\n  \"venus-mars\": 61992,\n  \"vest\": 57477,\n  \"vest-patches\": 57478,\n  \"viacoin\": 62007,\n  \"viadeo\": 62121,\n  \"viadeo-square\": 62122,\n  \"vial\": 62610,\n  \"vials\": 62611,\n  \"viber\": 62473,\n  \"video\": 61501,\n  \"video-slash\": 62690,\n  \"vihara\": 63143,\n  \"vimeo\": 62474,\n  \"vimeo-square\": 61844,\n  \"vimeo-v\": 62077,\n  \"vine\": 61898,\n  \"virus\": 57460,\n  \"virus-slash\": 57461,\n  \"viruses\": 57462,\n  \"vk\": 61833,\n  \"vnv\": 62475,\n  \"voicemail\": 63639,\n  \"volleyball-ball\": 62559,\n  \"volume-down\": 61479,\n  \"volume-mute\": 63145,\n  \"volume-off\": 61478,\n  \"volume-up\": 61480,\n  \"vote-yea\": 63346,\n  \"vr-cardboard\": 63273,\n  \"vuejs\": 62495,\n  \"walking\": 62804,\n  \"wallet\": 62805,\n  \"warehouse\": 62612,\n  \"watchman-monitoring\": 57479,\n  \"water\": 63347,\n  \"wave-square\": 63550,\n  \"waze\": 63551,\n  \"weebly\": 62924,\n  \"weibo\": 61834,\n  \"weight\": 62614,\n  \"weight-hanging\": 62925,\n  \"weixin\": 61911,\n  \"whatsapp\": 62002,\n  \"whatsapp-square\": 62476,\n  \"wheelchair\": 61843,\n  \"whmcs\": 62477,\n  \"wifi\": 61931,\n  \"wikipedia-w\": 62054,\n  \"wind\": 63278,\n  \"window-close\": 62480,\n  \"window-maximize\": 62160,\n  \"window-minimize\": 62161,\n  \"window-restore\": 62162,\n  \"windows\": 61818,\n  \"wine-bottle\": 63279,\n  \"wine-glass\": 62691,\n  \"wine-glass-alt\": 62926,\n  \"wix\": 62927,\n  \"wizards-of-the-coast\": 63280,\n  \"wodu\": 57480,\n  \"wolf-pack-battalion\": 62740,\n  \"won-sign\": 61785,\n  \"wordpress\": 61850,\n  \"wordpress-simple\": 62481,\n  \"wpbeginner\": 62103,\n  \"wpexplorer\": 62174,\n  \"wpforms\": 62104,\n  \"wpressr\": 62436,\n  \"wrench\": 61613,\n  \"x-ray\": 62615,\n  \"xbox\": 62482,\n  \"xing\": 61800,\n  \"xing-square\": 61801,\n  \"y-combinator\": 62011,\n  \"yahoo\": 61854,\n  \"yammer\": 63552,\n  \"yandex\": 62483,\n  \"yandex-international\": 62484,\n  \"yarn\": 63459,\n  \"yelp\": 61929,\n  \"yen-sign\": 61783,\n  \"yin-yang\": 63149,\n  \"yoast\": 62129,\n  \"youtube\": 61799,\n  \"youtube-square\": 62513,\n  \"zhihu\": 63039\n}"
  },
  {
    "path": "packages/fontawesome5/glyphmaps/FontAwesome5_brand.json",
    "content": "{\"500px\":62062,\"accessible-icon\":62312,\"accusoft\":62313,\"acquisitions-incorporated\":63151,\"adn\":61808,\"adversal\":62314,\"affiliatetheme\":62315,\"airbnb\":63540,\"algolia\":62316,\"alipay\":63042,\"amazon-pay\":62508,\"amazon\":62064,\"amilia\":62317,\"android\":61819,\"angellist\":61961,\"angrycreative\":62318,\"angular\":62496,\"app-store-ios\":62320,\"app-store\":62319,\"apper\":62321,\"apple-pay\":62485,\"apple\":61817,\"artstation\":63354,\"asymmetrik\":62322,\"atlassian\":63355,\"audible\":62323,\"autoprefixer\":62492,\"avianex\":62324,\"aviato\":62497,\"aws\":62325,\"bandcamp\":62165,\"battle-net\":63541,\"behance-square\":61877,\"behance\":61876,\"bimobject\":62328,\"bitbucket\":61809,\"bitcoin\":62329,\"bity\":62330,\"black-tie\":62078,\"blackberry\":62331,\"blogger-b\":62333,\"blogger\":62332,\"bluetooth-b\":62100,\"bluetooth\":62099,\"bootstrap\":63542,\"btc\":61786,\"buffer\":63543,\"buromobelexperte\":62335,\"buy-n-large\":63654,\"buysellads\":61965,\"canadian-maple-leaf\":63365,\"cc-amazon-pay\":62509,\"cc-amex\":61939,\"cc-apple-pay\":62486,\"cc-diners-club\":62028,\"cc-discover\":61938,\"cc-jcb\":62027,\"cc-mastercard\":61937,\"cc-paypal\":61940,\"cc-stripe\":61941,\"cc-visa\":61936,\"centercode\":62336,\"centos\":63369,\"chrome\":62056,\"chromecast\":63544,\"cloudflare\":57469,\"cloudscale\":62339,\"cloudsmith\":62340,\"cloudversify\":62341,\"codepen\":61899,\"codiepie\":62084,\"confluence\":63373,\"connectdevelop\":61966,\"contao\":62061,\"cotton-bureau\":63646,\"cpanel\":62344,\"creative-commons-by\":62695,\"creative-commons-nc-eu\":62697,\"creative-commons-nc-jp\":62698,\"creative-commons-nc\":62696,\"creative-commons-nd\":62699,\"creative-commons-pd-alt\":62701,\"creative-commons-pd\":62700,\"creative-commons-remix\":62702,\"creative-commons-sa\":62703,\"creative-commons-sampling-plus\":62705,\"creative-commons-sampling\":62704,\"creative-commons-share\":62706,\"creative-commons-zero\":62707,\"creative-commons\":62046,\"critical-role\":63177,\"css3-alt\":62347,\"css3\":61756,\"cuttlefish\":62348,\"d-and-d-beyond\":63178,\"d-and-d\":62349,\"dailymotion\":57426,\"dashcube\":61968,\"deezer\":57463,\"delicious\":61861,\"deploydog\":62350,\"deskpro\":62351,\"dev\":63180,\"deviantart\":61885,\"dhl\":63376,\"diaspora\":63377,\"digg\":61862,\"digital-ocean\":62353,\"discord\":62354,\"discourse\":62355,\"dochub\":62356,\"docker\":62357,\"draft2digital\":62358,\"dribbble-square\":62359,\"dribbble\":61821,\"dropbox\":61803,\"drupal\":61865,\"dyalog\":62361,\"earlybirds\":62362,\"ebay\":62708,\"edge-legacy\":57464,\"edge\":62082,\"elementor\":62512,\"ello\":62961,\"ember\":62499,\"empire\":61905,\"envira\":62105,\"erlang\":62365,\"ethereum\":62510,\"etsy\":62167,\"evernote\":63545,\"expeditedssl\":62014,\"facebook-f\":62366,\"facebook-messenger\":62367,\"facebook-square\":61570,\"facebook\":61594,\"fantasy-flight-games\":63196,\"fedex\":63383,\"fedora\":63384,\"figma\":63385,\"firefox-browser\":57351,\"firefox\":62057,\"first-order-alt\":62730,\"first-order\":62128,\"firstdraft\":62369,\"flickr\":61806,\"flipboard\":62541,\"fly\":62487,\"font-awesome-alt\":62300,\"font-awesome-flag\":62501,\"font-awesome-logo-full\":62694,\"font-awesome\":62132,\"fonticons-fi\":62370,\"fonticons\":62080,\"fort-awesome-alt\":62371,\"fort-awesome\":62086,\"forumbee\":61969,\"foursquare\":61824,\"free-code-camp\":62149,\"freebsd\":62372,\"fulcrum\":62731,\"galactic-republic\":62732,\"galactic-senate\":62733,\"get-pocket\":62053,\"gg-circle\":62049,\"gg\":62048,\"git-alt\":63553,\"git-square\":61906,\"git\":61907,\"github-alt\":61715,\"github-square\":61586,\"github\":61595,\"gitkraken\":62374,\"gitlab\":62102,\"gitter\":62502,\"glide-g\":62118,\"glide\":62117,\"gofore\":62375,\"goodreads-g\":62377,\"goodreads\":62376,\"google-drive\":62378,\"google-pay\":57465,\"google-play\":62379,\"google-plus-g\":61653,\"google-plus-square\":61652,\"google-plus\":62131,\"google-wallet\":61934,\"google\":61856,\"gratipay\":61828,\"grav\":62166,\"gripfire\":62380,\"grunt\":62381,\"guilded\":57470,\"gulp\":62382,\"hacker-news-square\":62383,\"hacker-news\":61908,\"hackerrank\":62967,\"hips\":62546,\"hire-a-helper\":62384,\"hive\":57471,\"hooli\":62503,\"hornbill\":62866,\"hotjar\":62385,\"houzz\":62076,\"html5\":61755,\"hubspot\":62386,\"ideal\":57363,\"imdb\":62168,\"innosoft\":57472,\"instagram-square\":57429,\"instagram\":61805,\"instalod\":57473,\"intercom\":63407,\"internet-explorer\":62059,\"invision\":63408,\"ioxhost\":61960,\"itch-io\":63546,\"itunes-note\":62389,\"itunes\":62388,\"java\":62692,\"jedi-order\":62734,\"jenkins\":62390,\"jira\":63409,\"joget\":62391,\"joomla\":61866,\"js-square\":62393,\"js\":62392,\"jsfiddle\":61900,\"kaggle\":62970,\"keybase\":62709,\"keycdn\":62394,\"kickstarter-k\":62396,\"kickstarter\":62395,\"korvue\":62511,\"laravel\":62397,\"lastfm-square\":61955,\"lastfm\":61954,\"leanpub\":61970,\"less\":62493,\"line\":62400,\"linkedin-in\":61665,\"linkedin\":61580,\"linode\":62136,\"linux\":61820,\"lyft\":62403,\"magento\":62404,\"mailchimp\":62878,\"mandalorian\":62735,\"markdown\":62991,\"mastodon\":62710,\"maxcdn\":61750,\"mdb\":63690,\"medapps\":62406,\"medium-m\":62407,\"medium\":62010,\"medrt\":62408,\"meetup\":62176,\"megaport\":62883,\"mendeley\":63411,\"microblog\":57370,\"microsoft\":62410,\"mix\":62411,\"mixcloud\":62089,\"mixer\":57430,\"mizuni\":62412,\"modx\":62085,\"monero\":62416,\"napster\":62418,\"neos\":62994,\"nimblr\":62888,\"node-js\":62419,\"node\":62489,\"npm\":62420,\"ns8\":62421,\"nutritionix\":62422,\"octopus-deploy\":57474,\"odnoklassniki-square\":62052,\"odnoklassniki\":62051,\"old-republic\":62736,\"opencart\":62013,\"openid\":61851,\"opera\":62058,\"optin-monster\":62012,\"orcid\":63698,\"osi\":62490,\"page4\":62423,\"pagelines\":61836,\"palfed\":62424,\"patreon\":62425,\"paypal\":61933,\"penny-arcade\":63236,\"perbyte\":57475,\"periscope\":62426,\"phabricator\":62427,\"phoenix-framework\":62428,\"phoenix-squadron\":62737,\"php\":62551,\"pied-piper-alt\":61864,\"pied-piper-hat\":62693,\"pied-piper-pp\":61863,\"pied-piper-square\":57374,\"pied-piper\":62126,\"pinterest-p\":62001,\"pinterest-square\":61651,\"pinterest\":61650,\"playstation\":62431,\"product-hunt\":62088,\"pushed\":62433,\"python\":62434,\"qq\":61910,\"quinscape\":62553,\"quora\":62148,\"r-project\":62711,\"raspberry-pi\":63419,\"ravelry\":62169,\"react\":62491,\"reacteurope\":63325,\"readme\":62677,\"rebel\":61904,\"red-river\":62435,\"reddit-alien\":62081,\"reddit-square\":61858,\"reddit\":61857,\"redhat\":63420,\"renren\":61835,\"replyd\":62438,\"researchgate\":62712,\"resolving\":62439,\"rev\":62898,\"rocketchat\":62440,\"rockrms\":62441,\"rust\":57466,\"safari\":62055,\"salesforce\":63547,\"sass\":62494,\"schlix\":62442,\"scribd\":62090,\"searchengin\":62443,\"sellcast\":62170,\"sellsy\":61971,\"servicestack\":62444,\"shirtsinbulk\":61972,\"shopify\":57431,\"shopware\":62901,\"simplybuilt\":61973,\"sistrix\":62446,\"sith\":62738,\"sketch\":63430,\"skyatlas\":61974,\"skype\":61822,\"slack-hash\":62447,\"slack\":61848,\"slideshare\":61927,\"snapchat-ghost\":62124,\"snapchat-square\":62125,\"snapchat\":62123,\"soundcloud\":61886,\"sourcetree\":63443,\"speakap\":62451,\"speaker-deck\":63548,\"spotify\":61884,\"squarespace\":62910,\"stack-exchange\":61837,\"stack-overflow\":61804,\"stackpath\":63554,\"staylinked\":62453,\"steam-square\":61879,\"steam-symbol\":62454,\"steam\":61878,\"sticker-mule\":62455,\"strava\":62504,\"stripe-s\":62506,\"stripe\":62505,\"studiovinari\":62456,\"stumbleupon-circle\":61859,\"stumbleupon\":61860,\"superpowers\":62173,\"supple\":62457,\"suse\":63446,\"swift\":63713,\"symfony\":63549,\"teamspeak\":62713,\"telegram-plane\":62462,\"telegram\":62150,\"tencent-weibo\":61909,\"the-red-yeti\":63133,\"themeco\":62918,\"themeisle\":62130,\"think-peaks\":63281,\"tiktok\":57467,\"trade-federation\":62739,\"trello\":61825,\"tumblr-square\":61812,\"tumblr\":61811,\"twitch\":61928,\"twitter-square\":61569,\"twitter\":61593,\"typo3\":62507,\"uber\":62466,\"ubuntu\":63455,\"uikit\":62467,\"umbraco\":63720,\"uncharted\":57476,\"uniregistry\":62468,\"unity\":57417,\"unsplash\":57468,\"untappd\":62469,\"ups\":63456,\"usb\":62087,\"usps\":63457,\"ussunnah\":62471,\"vaadin\":62472,\"viacoin\":62007,\"viadeo-square\":62122,\"viadeo\":62121,\"viber\":62473,\"vimeo-square\":61844,\"vimeo-v\":62077,\"vimeo\":62474,\"vine\":61898,\"vk\":61833,\"vnv\":62475,\"vuejs\":62495,\"watchman-monitoring\":57479,\"waze\":63551,\"weebly\":62924,\"weibo\":61834,\"weixin\":61911,\"whatsapp-square\":62476,\"whatsapp\":62002,\"whmcs\":62477,\"wikipedia-w\":62054,\"windows\":61818,\"wix\":62927,\"wizards-of-the-coast\":63280,\"wodu\":57480,\"wolf-pack-battalion\":62740,\"wordpress-simple\":62481,\"wordpress\":61850,\"wpbeginner\":62103,\"wpexplorer\":62174,\"wpforms\":62104,\"wpressr\":62436,\"xbox\":62482,\"xing-square\":61801,\"xing\":61800,\"y-combinator\":62011,\"yahoo\":61854,\"yammer\":63552,\"yandex-international\":62484,\"yandex\":62483,\"yarn\":63459,\"yelp\":61929,\"yoast\":62129,\"youtube-square\":62513,\"youtube\":61799,\"zhihu\":63039}"
  },
  {
    "path": "packages/fontawesome5/glyphmaps/FontAwesome5_meta.json",
    "content": "{\n  \"brand\": [\n    \"500px\",\n    \"accessible-icon\",\n    \"accusoft\",\n    \"acquisitions-incorporated\",\n    \"adn\",\n    \"adversal\",\n    \"affiliatetheme\",\n    \"airbnb\",\n    \"algolia\",\n    \"alipay\",\n    \"amazon-pay\",\n    \"amazon\",\n    \"amilia\",\n    \"android\",\n    \"angellist\",\n    \"angrycreative\",\n    \"angular\",\n    \"app-store-ios\",\n    \"app-store\",\n    \"apper\",\n    \"apple-pay\",\n    \"apple\",\n    \"artstation\",\n    \"asymmetrik\",\n    \"atlassian\",\n    \"audible\",\n    \"autoprefixer\",\n    \"avianex\",\n    \"aviato\",\n    \"aws\",\n    \"bandcamp\",\n    \"battle-net\",\n    \"behance-square\",\n    \"behance\",\n    \"bimobject\",\n    \"bitbucket\",\n    \"bitcoin\",\n    \"bity\",\n    \"black-tie\",\n    \"blackberry\",\n    \"blogger-b\",\n    \"blogger\",\n    \"bluetooth-b\",\n    \"bluetooth\",\n    \"bootstrap\",\n    \"btc\",\n    \"buffer\",\n    \"buromobelexperte\",\n    \"buy-n-large\",\n    \"buysellads\",\n    \"canadian-maple-leaf\",\n    \"cc-amazon-pay\",\n    \"cc-amex\",\n    \"cc-apple-pay\",\n    \"cc-diners-club\",\n    \"cc-discover\",\n    \"cc-jcb\",\n    \"cc-mastercard\",\n    \"cc-paypal\",\n    \"cc-stripe\",\n    \"cc-visa\",\n    \"centercode\",\n    \"centos\",\n    \"chrome\",\n    \"chromecast\",\n    \"cloudflare\",\n    \"cloudscale\",\n    \"cloudsmith\",\n    \"cloudversify\",\n    \"codepen\",\n    \"codiepie\",\n    \"confluence\",\n    \"connectdevelop\",\n    \"contao\",\n    \"cotton-bureau\",\n    \"cpanel\",\n    \"creative-commons-by\",\n    \"creative-commons-nc-eu\",\n    \"creative-commons-nc-jp\",\n    \"creative-commons-nc\",\n    \"creative-commons-nd\",\n    \"creative-commons-pd-alt\",\n    \"creative-commons-pd\",\n    \"creative-commons-remix\",\n    \"creative-commons-sa\",\n    \"creative-commons-sampling-plus\",\n    \"creative-commons-sampling\",\n    \"creative-commons-share\",\n    \"creative-commons-zero\",\n    \"creative-commons\",\n    \"critical-role\",\n    \"css3-alt\",\n    \"css3\",\n    \"cuttlefish\",\n    \"d-and-d-beyond\",\n    \"d-and-d\",\n    \"dailymotion\",\n    \"dashcube\",\n    \"deezer\",\n    \"delicious\",\n    \"deploydog\",\n    \"deskpro\",\n    \"dev\",\n    \"deviantart\",\n    \"dhl\",\n    \"diaspora\",\n    \"digg\",\n    \"digital-ocean\",\n    \"discord\",\n    \"discourse\",\n    \"dochub\",\n    \"docker\",\n    \"draft2digital\",\n    \"dribbble-square\",\n    \"dribbble\",\n    \"dropbox\",\n    \"drupal\",\n    \"dyalog\",\n    \"earlybirds\",\n    \"ebay\",\n    \"edge-legacy\",\n    \"edge\",\n    \"elementor\",\n    \"ello\",\n    \"ember\",\n    \"empire\",\n    \"envira\",\n    \"erlang\",\n    \"ethereum\",\n    \"etsy\",\n    \"evernote\",\n    \"expeditedssl\",\n    \"facebook-f\",\n    \"facebook-messenger\",\n    \"facebook-square\",\n    \"facebook\",\n    \"fantasy-flight-games\",\n    \"fedex\",\n    \"fedora\",\n    \"figma\",\n    \"firefox-browser\",\n    \"firefox\",\n    \"first-order-alt\",\n    \"first-order\",\n    \"firstdraft\",\n    \"flickr\",\n    \"flipboard\",\n    \"fly\",\n    \"font-awesome-alt\",\n    \"font-awesome-flag\",\n    \"font-awesome-logo-full\",\n    \"font-awesome\",\n    \"fonticons-fi\",\n    \"fonticons\",\n    \"fort-awesome-alt\",\n    \"fort-awesome\",\n    \"forumbee\",\n    \"foursquare\",\n    \"free-code-camp\",\n    \"freebsd\",\n    \"fulcrum\",\n    \"galactic-republic\",\n    \"galactic-senate\",\n    \"get-pocket\",\n    \"gg-circle\",\n    \"gg\",\n    \"git-alt\",\n    \"git-square\",\n    \"git\",\n    \"github-alt\",\n    \"github-square\",\n    \"github\",\n    \"gitkraken\",\n    \"gitlab\",\n    \"gitter\",\n    \"glide-g\",\n    \"glide\",\n    \"gofore\",\n    \"goodreads-g\",\n    \"goodreads\",\n    \"google-drive\",\n    \"google-pay\",\n    \"google-play\",\n    \"google-plus-g\",\n    \"google-plus-square\",\n    \"google-plus\",\n    \"google-wallet\",\n    \"google\",\n    \"gratipay\",\n    \"grav\",\n    \"gripfire\",\n    \"grunt\",\n    \"guilded\",\n    \"gulp\",\n    \"hacker-news-square\",\n    \"hacker-news\",\n    \"hackerrank\",\n    \"hips\",\n    \"hire-a-helper\",\n    \"hive\",\n    \"hooli\",\n    \"hornbill\",\n    \"hotjar\",\n    \"houzz\",\n    \"html5\",\n    \"hubspot\",\n    \"ideal\",\n    \"imdb\",\n    \"innosoft\",\n    \"instagram-square\",\n    \"instagram\",\n    \"instalod\",\n    \"intercom\",\n    \"internet-explorer\",\n    \"invision\",\n    \"ioxhost\",\n    \"itch-io\",\n    \"itunes-note\",\n    \"itunes\",\n    \"java\",\n    \"jedi-order\",\n    \"jenkins\",\n    \"jira\",\n    \"joget\",\n    \"joomla\",\n    \"js-square\",\n    \"js\",\n    \"jsfiddle\",\n    \"kaggle\",\n    \"keybase\",\n    \"keycdn\",\n    \"kickstarter-k\",\n    \"kickstarter\",\n    \"korvue\",\n    \"laravel\",\n    \"lastfm-square\",\n    \"lastfm\",\n    \"leanpub\",\n    \"less\",\n    \"line\",\n    \"linkedin-in\",\n    \"linkedin\",\n    \"linode\",\n    \"linux\",\n    \"lyft\",\n    \"magento\",\n    \"mailchimp\",\n    \"mandalorian\",\n    \"markdown\",\n    \"mastodon\",\n    \"maxcdn\",\n    \"mdb\",\n    \"medapps\",\n    \"medium-m\",\n    \"medium\",\n    \"medrt\",\n    \"meetup\",\n    \"megaport\",\n    \"mendeley\",\n    \"microblog\",\n    \"microsoft\",\n    \"mix\",\n    \"mixcloud\",\n    \"mixer\",\n    \"mizuni\",\n    \"modx\",\n    \"monero\",\n    \"napster\",\n    \"neos\",\n    \"nimblr\",\n    \"node-js\",\n    \"node\",\n    \"npm\",\n    \"ns8\",\n    \"nutritionix\",\n    \"octopus-deploy\",\n    \"odnoklassniki-square\",\n    \"odnoklassniki\",\n    \"old-republic\",\n    \"opencart\",\n    \"openid\",\n    \"opera\",\n    \"optin-monster\",\n    \"orcid\",\n    \"osi\",\n    \"page4\",\n    \"pagelines\",\n    \"palfed\",\n    \"patreon\",\n    \"paypal\",\n    \"penny-arcade\",\n    \"perbyte\",\n    \"periscope\",\n    \"phabricator\",\n    \"phoenix-framework\",\n    \"phoenix-squadron\",\n    \"php\",\n    \"pied-piper-alt\",\n    \"pied-piper-hat\",\n    \"pied-piper-pp\",\n    \"pied-piper-square\",\n    \"pied-piper\",\n    \"pinterest-p\",\n    \"pinterest-square\",\n    \"pinterest\",\n    \"playstation\",\n    \"product-hunt\",\n    \"pushed\",\n    \"python\",\n    \"qq\",\n    \"quinscape\",\n    \"quora\",\n    \"r-project\",\n    \"raspberry-pi\",\n    \"ravelry\",\n    \"react\",\n    \"reacteurope\",\n    \"readme\",\n    \"rebel\",\n    \"red-river\",\n    \"reddit-alien\",\n    \"reddit-square\",\n    \"reddit\",\n    \"redhat\",\n    \"renren\",\n    \"replyd\",\n    \"researchgate\",\n    \"resolving\",\n    \"rev\",\n    \"rocketchat\",\n    \"rockrms\",\n    \"rust\",\n    \"safari\",\n    \"salesforce\",\n    \"sass\",\n    \"schlix\",\n    \"scribd\",\n    \"searchengin\",\n    \"sellcast\",\n    \"sellsy\",\n    \"servicestack\",\n    \"shirtsinbulk\",\n    \"shopify\",\n    \"shopware\",\n    \"simplybuilt\",\n    \"sistrix\",\n    \"sith\",\n    \"sketch\",\n    \"skyatlas\",\n    \"skype\",\n    \"slack-hash\",\n    \"slack\",\n    \"slideshare\",\n    \"snapchat-ghost\",\n    \"snapchat-square\",\n    \"snapchat\",\n    \"soundcloud\",\n    \"sourcetree\",\n    \"speakap\",\n    \"speaker-deck\",\n    \"spotify\",\n    \"squarespace\",\n    \"stack-exchange\",\n    \"stack-overflow\",\n    \"stackpath\",\n    \"staylinked\",\n    \"steam-square\",\n    \"steam-symbol\",\n    \"steam\",\n    \"sticker-mule\",\n    \"strava\",\n    \"stripe-s\",\n    \"stripe\",\n    \"studiovinari\",\n    \"stumbleupon-circle\",\n    \"stumbleupon\",\n    \"superpowers\",\n    \"supple\",\n    \"suse\",\n    \"swift\",\n    \"symfony\",\n    \"teamspeak\",\n    \"telegram-plane\",\n    \"telegram\",\n    \"tencent-weibo\",\n    \"the-red-yeti\",\n    \"themeco\",\n    \"themeisle\",\n    \"think-peaks\",\n    \"tiktok\",\n    \"trade-federation\",\n    \"trello\",\n    \"tumblr-square\",\n    \"tumblr\",\n    \"twitch\",\n    \"twitter-square\",\n    \"twitter\",\n    \"typo3\",\n    \"uber\",\n    \"ubuntu\",\n    \"uikit\",\n    \"umbraco\",\n    \"uncharted\",\n    \"uniregistry\",\n    \"unity\",\n    \"unsplash\",\n    \"untappd\",\n    \"ups\",\n    \"usb\",\n    \"usps\",\n    \"ussunnah\",\n    \"vaadin\",\n    \"viacoin\",\n    \"viadeo-square\",\n    \"viadeo\",\n    \"viber\",\n    \"vimeo-square\",\n    \"vimeo-v\",\n    \"vimeo\",\n    \"vine\",\n    \"vk\",\n    \"vnv\",\n    \"vuejs\",\n    \"watchman-monitoring\",\n    \"waze\",\n    \"weebly\",\n    \"weibo\",\n    \"weixin\",\n    \"whatsapp-square\",\n    \"whatsapp\",\n    \"whmcs\",\n    \"wikipedia-w\",\n    \"windows\",\n    \"wix\",\n    \"wizards-of-the-coast\",\n    \"wodu\",\n    \"wolf-pack-battalion\",\n    \"wordpress-simple\",\n    \"wordpress\",\n    \"wpbeginner\",\n    \"wpexplorer\",\n    \"wpforms\",\n    \"wpressr\",\n    \"xbox\",\n    \"xing-square\",\n    \"xing\",\n    \"y-combinator\",\n    \"yahoo\",\n    \"yammer\",\n    \"yandex-international\",\n    \"yandex\",\n    \"yarn\",\n    \"yelp\",\n    \"yoast\",\n    \"youtube-square\",\n    \"youtube\",\n    \"zhihu\"\n  ],\n  \"regular\": [\n    \"address-book\",\n    \"address-card\",\n    \"angry\",\n    \"arrow-alt-circle-down\",\n    \"arrow-alt-circle-left\",\n    \"arrow-alt-circle-right\",\n    \"arrow-alt-circle-up\",\n    \"bell-slash\",\n    \"bell\",\n    \"bookmark\",\n    \"building\",\n    \"calendar-alt\",\n    \"calendar-check\",\n    \"calendar-minus\",\n    \"calendar-plus\",\n    \"calendar-times\",\n    \"calendar\",\n    \"caret-square-down\",\n    \"caret-square-left\",\n    \"caret-square-right\",\n    \"caret-square-up\",\n    \"chart-bar\",\n    \"check-circle\",\n    \"check-square\",\n    \"circle\",\n    \"clipboard\",\n    \"clock\",\n    \"clone\",\n    \"closed-captioning\",\n    \"comment-alt\",\n    \"comment-dots\",\n    \"comment\",\n    \"comments\",\n    \"compass\",\n    \"copy\",\n    \"copyright\",\n    \"credit-card\",\n    \"dizzy\",\n    \"dot-circle\",\n    \"edit\",\n    \"envelope-open\",\n    \"envelope\",\n    \"eye-slash\",\n    \"eye\",\n    \"file-alt\",\n    \"file-archive\",\n    \"file-audio\",\n    \"file-code\",\n    \"file-excel\",\n    \"file-image\",\n    \"file-pdf\",\n    \"file-powerpoint\",\n    \"file-video\",\n    \"file-word\",\n    \"file\",\n    \"flag\",\n    \"flushed\",\n    \"folder-open\",\n    \"folder\",\n    \"font-awesome-logo-full\",\n    \"frown-open\",\n    \"frown\",\n    \"futbol\",\n    \"gem\",\n    \"grimace\",\n    \"grin-alt\",\n    \"grin-beam-sweat\",\n    \"grin-beam\",\n    \"grin-hearts\",\n    \"grin-squint-tears\",\n    \"grin-squint\",\n    \"grin-stars\",\n    \"grin-tears\",\n    \"grin-tongue-squint\",\n    \"grin-tongue-wink\",\n    \"grin-tongue\",\n    \"grin-wink\",\n    \"grin\",\n    \"hand-lizard\",\n    \"hand-paper\",\n    \"hand-peace\",\n    \"hand-point-down\",\n    \"hand-point-left\",\n    \"hand-point-right\",\n    \"hand-point-up\",\n    \"hand-pointer\",\n    \"hand-rock\",\n    \"hand-scissors\",\n    \"hand-spock\",\n    \"handshake\",\n    \"hdd\",\n    \"heart\",\n    \"hospital\",\n    \"hourglass\",\n    \"id-badge\",\n    \"id-card\",\n    \"image\",\n    \"images\",\n    \"keyboard\",\n    \"kiss-beam\",\n    \"kiss-wink-heart\",\n    \"kiss\",\n    \"laugh-beam\",\n    \"laugh-squint\",\n    \"laugh-wink\",\n    \"laugh\",\n    \"lemon\",\n    \"life-ring\",\n    \"lightbulb\",\n    \"list-alt\",\n    \"map\",\n    \"meh-blank\",\n    \"meh-rolling-eyes\",\n    \"meh\",\n    \"minus-square\",\n    \"money-bill-alt\",\n    \"moon\",\n    \"newspaper\",\n    \"object-group\",\n    \"object-ungroup\",\n    \"paper-plane\",\n    \"pause-circle\",\n    \"play-circle\",\n    \"plus-square\",\n    \"question-circle\",\n    \"registered\",\n    \"sad-cry\",\n    \"sad-tear\",\n    \"save\",\n    \"share-square\",\n    \"smile-beam\",\n    \"smile-wink\",\n    \"smile\",\n    \"snowflake\",\n    \"square\",\n    \"star-half\",\n    \"star\",\n    \"sticky-note\",\n    \"stop-circle\",\n    \"sun\",\n    \"surprise\",\n    \"thumbs-down\",\n    \"thumbs-up\",\n    \"times-circle\",\n    \"tired\",\n    \"trash-alt\",\n    \"user-circle\",\n    \"user\",\n    \"window-close\",\n    \"window-maximize\",\n    \"window-minimize\",\n    \"window-restore\"\n  ],\n  \"solid\": [\n    \"ad\",\n    \"address-book\",\n    \"address-card\",\n    \"adjust\",\n    \"air-freshener\",\n    \"align-center\",\n    \"align-justify\",\n    \"align-left\",\n    \"align-right\",\n    \"allergies\",\n    \"ambulance\",\n    \"american-sign-language-interpreting\",\n    \"anchor\",\n    \"angle-double-down\",\n    \"angle-double-left\",\n    \"angle-double-right\",\n    \"angle-double-up\",\n    \"angle-down\",\n    \"angle-left\",\n    \"angle-right\",\n    \"angle-up\",\n    \"angry\",\n    \"ankh\",\n    \"apple-alt\",\n    \"archive\",\n    \"archway\",\n    \"arrow-alt-circle-down\",\n    \"arrow-alt-circle-left\",\n    \"arrow-alt-circle-right\",\n    \"arrow-alt-circle-up\",\n    \"arrow-circle-down\",\n    \"arrow-circle-left\",\n    \"arrow-circle-right\",\n    \"arrow-circle-up\",\n    \"arrow-down\",\n    \"arrow-left\",\n    \"arrow-right\",\n    \"arrow-up\",\n    \"arrows-alt-h\",\n    \"arrows-alt-v\",\n    \"arrows-alt\",\n    \"assistive-listening-systems\",\n    \"asterisk\",\n    \"at\",\n    \"atlas\",\n    \"atom\",\n    \"audio-description\",\n    \"award\",\n    \"baby-carriage\",\n    \"baby\",\n    \"backspace\",\n    \"backward\",\n    \"bacon\",\n    \"bacteria\",\n    \"bacterium\",\n    \"bahai\",\n    \"balance-scale-left\",\n    \"balance-scale-right\",\n    \"balance-scale\",\n    \"ban\",\n    \"band-aid\",\n    \"barcode\",\n    \"bars\",\n    \"baseball-ball\",\n    \"basketball-ball\",\n    \"bath\",\n    \"battery-empty\",\n    \"battery-full\",\n    \"battery-half\",\n    \"battery-quarter\",\n    \"battery-three-quarters\",\n    \"bed\",\n    \"beer\",\n    \"bell-slash\",\n    \"bell\",\n    \"bezier-curve\",\n    \"bible\",\n    \"bicycle\",\n    \"biking\",\n    \"binoculars\",\n    \"biohazard\",\n    \"birthday-cake\",\n    \"blender-phone\",\n    \"blender\",\n    \"blind\",\n    \"blog\",\n    \"bold\",\n    \"bolt\",\n    \"bomb\",\n    \"bone\",\n    \"bong\",\n    \"book-dead\",\n    \"book-medical\",\n    \"book-open\",\n    \"book-reader\",\n    \"book\",\n    \"bookmark\",\n    \"border-all\",\n    \"border-none\",\n    \"border-style\",\n    \"bowling-ball\",\n    \"box-open\",\n    \"box-tissue\",\n    \"box\",\n    \"boxes\",\n    \"braille\",\n    \"brain\",\n    \"bread-slice\",\n    \"briefcase-medical\",\n    \"briefcase\",\n    \"broadcast-tower\",\n    \"broom\",\n    \"brush\",\n    \"bug\",\n    \"building\",\n    \"bullhorn\",\n    \"bullseye\",\n    \"burn\",\n    \"bus-alt\",\n    \"bus\",\n    \"business-time\",\n    \"calculator\",\n    \"calendar-alt\",\n    \"calendar-check\",\n    \"calendar-day\",\n    \"calendar-minus\",\n    \"calendar-plus\",\n    \"calendar-times\",\n    \"calendar-week\",\n    \"calendar\",\n    \"camera-retro\",\n    \"camera\",\n    \"campground\",\n    \"candy-cane\",\n    \"cannabis\",\n    \"capsules\",\n    \"car-alt\",\n    \"car-battery\",\n    \"car-crash\",\n    \"car-side\",\n    \"car\",\n    \"caravan\",\n    \"caret-down\",\n    \"caret-left\",\n    \"caret-right\",\n    \"caret-square-down\",\n    \"caret-square-left\",\n    \"caret-square-right\",\n    \"caret-square-up\",\n    \"caret-up\",\n    \"carrot\",\n    \"cart-arrow-down\",\n    \"cart-plus\",\n    \"cash-register\",\n    \"cat\",\n    \"certificate\",\n    \"chair\",\n    \"chalkboard-teacher\",\n    \"chalkboard\",\n    \"charging-station\",\n    \"chart-area\",\n    \"chart-bar\",\n    \"chart-line\",\n    \"chart-pie\",\n    \"check-circle\",\n    \"check-double\",\n    \"check-square\",\n    \"check\",\n    \"cheese\",\n    \"chess-bishop\",\n    \"chess-board\",\n    \"chess-king\",\n    \"chess-knight\",\n    \"chess-pawn\",\n    \"chess-queen\",\n    \"chess-rook\",\n    \"chess\",\n    \"chevron-circle-down\",\n    \"chevron-circle-left\",\n    \"chevron-circle-right\",\n    \"chevron-circle-up\",\n    \"chevron-down\",\n    \"chevron-left\",\n    \"chevron-right\",\n    \"chevron-up\",\n    \"child\",\n    \"church\",\n    \"circle-notch\",\n    \"circle\",\n    \"city\",\n    \"clinic-medical\",\n    \"clipboard-check\",\n    \"clipboard-list\",\n    \"clipboard\",\n    \"clock\",\n    \"clone\",\n    \"closed-captioning\",\n    \"cloud-download-alt\",\n    \"cloud-meatball\",\n    \"cloud-moon-rain\",\n    \"cloud-moon\",\n    \"cloud-rain\",\n    \"cloud-showers-heavy\",\n    \"cloud-sun-rain\",\n    \"cloud-sun\",\n    \"cloud-upload-alt\",\n    \"cloud\",\n    \"cocktail\",\n    \"code-branch\",\n    \"code\",\n    \"coffee\",\n    \"cog\",\n    \"cogs\",\n    \"coins\",\n    \"columns\",\n    \"comment-alt\",\n    \"comment-dollar\",\n    \"comment-dots\",\n    \"comment-medical\",\n    \"comment-slash\",\n    \"comment\",\n    \"comments-dollar\",\n    \"comments\",\n    \"compact-disc\",\n    \"compass\",\n    \"compress-alt\",\n    \"compress-arrows-alt\",\n    \"compress\",\n    \"concierge-bell\",\n    \"cookie-bite\",\n    \"cookie\",\n    \"copy\",\n    \"copyright\",\n    \"couch\",\n    \"credit-card\",\n    \"crop-alt\",\n    \"crop\",\n    \"cross\",\n    \"crosshairs\",\n    \"crow\",\n    \"crown\",\n    \"crutch\",\n    \"cube\",\n    \"cubes\",\n    \"cut\",\n    \"database\",\n    \"deaf\",\n    \"democrat\",\n    \"desktop\",\n    \"dharmachakra\",\n    \"diagnoses\",\n    \"dice-d20\",\n    \"dice-d6\",\n    \"dice-five\",\n    \"dice-four\",\n    \"dice-one\",\n    \"dice-six\",\n    \"dice-three\",\n    \"dice-two\",\n    \"dice\",\n    \"digital-tachograph\",\n    \"directions\",\n    \"disease\",\n    \"divide\",\n    \"dizzy\",\n    \"dna\",\n    \"dog\",\n    \"dollar-sign\",\n    \"dolly-flatbed\",\n    \"dolly\",\n    \"donate\",\n    \"door-closed\",\n    \"door-open\",\n    \"dot-circle\",\n    \"dove\",\n    \"download\",\n    \"drafting-compass\",\n    \"dragon\",\n    \"draw-polygon\",\n    \"drum-steelpan\",\n    \"drum\",\n    \"drumstick-bite\",\n    \"dumbbell\",\n    \"dumpster-fire\",\n    \"dumpster\",\n    \"dungeon\",\n    \"edit\",\n    \"egg\",\n    \"eject\",\n    \"ellipsis-h\",\n    \"ellipsis-v\",\n    \"envelope-open-text\",\n    \"envelope-open\",\n    \"envelope-square\",\n    \"envelope\",\n    \"equals\",\n    \"eraser\",\n    \"ethernet\",\n    \"euro-sign\",\n    \"exchange-alt\",\n    \"exclamation-circle\",\n    \"exclamation-triangle\",\n    \"exclamation\",\n    \"expand-alt\",\n    \"expand-arrows-alt\",\n    \"expand\",\n    \"external-link-alt\",\n    \"external-link-square-alt\",\n    \"eye-dropper\",\n    \"eye-slash\",\n    \"eye\",\n    \"fan\",\n    \"fast-backward\",\n    \"fast-forward\",\n    \"faucet\",\n    \"fax\",\n    \"feather-alt\",\n    \"feather\",\n    \"female\",\n    \"fighter-jet\",\n    \"file-alt\",\n    \"file-archive\",\n    \"file-audio\",\n    \"file-code\",\n    \"file-contract\",\n    \"file-csv\",\n    \"file-download\",\n    \"file-excel\",\n    \"file-export\",\n    \"file-image\",\n    \"file-import\",\n    \"file-invoice-dollar\",\n    \"file-invoice\",\n    \"file-medical-alt\",\n    \"file-medical\",\n    \"file-pdf\",\n    \"file-powerpoint\",\n    \"file-prescription\",\n    \"file-signature\",\n    \"file-upload\",\n    \"file-video\",\n    \"file-word\",\n    \"file\",\n    \"fill-drip\",\n    \"fill\",\n    \"film\",\n    \"filter\",\n    \"fingerprint\",\n    \"fire-alt\",\n    \"fire-extinguisher\",\n    \"fire\",\n    \"first-aid\",\n    \"fish\",\n    \"fist-raised\",\n    \"flag-checkered\",\n    \"flag-usa\",\n    \"flag\",\n    \"flask\",\n    \"flushed\",\n    \"folder-minus\",\n    \"folder-open\",\n    \"folder-plus\",\n    \"folder\",\n    \"font-awesome-logo-full\",\n    \"font\",\n    \"football-ball\",\n    \"forward\",\n    \"frog\",\n    \"frown-open\",\n    \"frown\",\n    \"funnel-dollar\",\n    \"futbol\",\n    \"gamepad\",\n    \"gas-pump\",\n    \"gavel\",\n    \"gem\",\n    \"genderless\",\n    \"ghost\",\n    \"gift\",\n    \"gifts\",\n    \"glass-cheers\",\n    \"glass-martini-alt\",\n    \"glass-martini\",\n    \"glass-whiskey\",\n    \"glasses\",\n    \"globe-africa\",\n    \"globe-americas\",\n    \"globe-asia\",\n    \"globe-europe\",\n    \"globe\",\n    \"golf-ball\",\n    \"gopuram\",\n    \"graduation-cap\",\n    \"greater-than-equal\",\n    \"greater-than\",\n    \"grimace\",\n    \"grin-alt\",\n    \"grin-beam-sweat\",\n    \"grin-beam\",\n    \"grin-hearts\",\n    \"grin-squint-tears\",\n    \"grin-squint\",\n    \"grin-stars\",\n    \"grin-tears\",\n    \"grin-tongue-squint\",\n    \"grin-tongue-wink\",\n    \"grin-tongue\",\n    \"grin-wink\",\n    \"grin\",\n    \"grip-horizontal\",\n    \"grip-lines-vertical\",\n    \"grip-lines\",\n    \"grip-vertical\",\n    \"guitar\",\n    \"h-square\",\n    \"hamburger\",\n    \"hammer\",\n    \"hamsa\",\n    \"hand-holding-heart\",\n    \"hand-holding-medical\",\n    \"hand-holding-usd\",\n    \"hand-holding-water\",\n    \"hand-holding\",\n    \"hand-lizard\",\n    \"hand-middle-finger\",\n    \"hand-paper\",\n    \"hand-peace\",\n    \"hand-point-down\",\n    \"hand-point-left\",\n    \"hand-point-right\",\n    \"hand-point-up\",\n    \"hand-pointer\",\n    \"hand-rock\",\n    \"hand-scissors\",\n    \"hand-sparkles\",\n    \"hand-spock\",\n    \"hands-helping\",\n    \"hands-wash\",\n    \"hands\",\n    \"handshake-alt-slash\",\n    \"handshake-slash\",\n    \"handshake\",\n    \"hanukiah\",\n    \"hard-hat\",\n    \"hashtag\",\n    \"hat-cowboy-side\",\n    \"hat-cowboy\",\n    \"hat-wizard\",\n    \"hdd\",\n    \"head-side-cough-slash\",\n    \"head-side-cough\",\n    \"head-side-mask\",\n    \"head-side-virus\",\n    \"heading\",\n    \"headphones-alt\",\n    \"headphones\",\n    \"headset\",\n    \"heart-broken\",\n    \"heart\",\n    \"heartbeat\",\n    \"helicopter\",\n    \"highlighter\",\n    \"hiking\",\n    \"hippo\",\n    \"history\",\n    \"hockey-puck\",\n    \"holly-berry\",\n    \"home\",\n    \"horse-head\",\n    \"horse\",\n    \"hospital-alt\",\n    \"hospital-symbol\",\n    \"hospital-user\",\n    \"hospital\",\n    \"hot-tub\",\n    \"hotdog\",\n    \"hotel\",\n    \"hourglass-end\",\n    \"hourglass-half\",\n    \"hourglass-start\",\n    \"hourglass\",\n    \"house-damage\",\n    \"house-user\",\n    \"hryvnia\",\n    \"i-cursor\",\n    \"ice-cream\",\n    \"icicles\",\n    \"icons\",\n    \"id-badge\",\n    \"id-card-alt\",\n    \"id-card\",\n    \"igloo\",\n    \"image\",\n    \"images\",\n    \"inbox\",\n    \"indent\",\n    \"industry\",\n    \"infinity\",\n    \"info-circle\",\n    \"info\",\n    \"italic\",\n    \"jedi\",\n    \"joint\",\n    \"journal-whills\",\n    \"kaaba\",\n    \"key\",\n    \"keyboard\",\n    \"khanda\",\n    \"kiss-beam\",\n    \"kiss-wink-heart\",\n    \"kiss\",\n    \"kiwi-bird\",\n    \"landmark\",\n    \"language\",\n    \"laptop-code\",\n    \"laptop-house\",\n    \"laptop-medical\",\n    \"laptop\",\n    \"laugh-beam\",\n    \"laugh-squint\",\n    \"laugh-wink\",\n    \"laugh\",\n    \"layer-group\",\n    \"leaf\",\n    \"lemon\",\n    \"less-than-equal\",\n    \"less-than\",\n    \"level-down-alt\",\n    \"level-up-alt\",\n    \"life-ring\",\n    \"lightbulb\",\n    \"link\",\n    \"lira-sign\",\n    \"list-alt\",\n    \"list-ol\",\n    \"list-ul\",\n    \"list\",\n    \"location-arrow\",\n    \"lock-open\",\n    \"lock\",\n    \"long-arrow-alt-down\",\n    \"long-arrow-alt-left\",\n    \"long-arrow-alt-right\",\n    \"long-arrow-alt-up\",\n    \"low-vision\",\n    \"luggage-cart\",\n    \"lungs-virus\",\n    \"lungs\",\n    \"magic\",\n    \"magnet\",\n    \"mail-bulk\",\n    \"male\",\n    \"map-marked-alt\",\n    \"map-marked\",\n    \"map-marker-alt\",\n    \"map-marker\",\n    \"map-pin\",\n    \"map-signs\",\n    \"map\",\n    \"marker\",\n    \"mars-double\",\n    \"mars-stroke-h\",\n    \"mars-stroke-v\",\n    \"mars-stroke\",\n    \"mars\",\n    \"mask\",\n    \"medal\",\n    \"medkit\",\n    \"meh-blank\",\n    \"meh-rolling-eyes\",\n    \"meh\",\n    \"memory\",\n    \"menorah\",\n    \"mercury\",\n    \"meteor\",\n    \"microchip\",\n    \"microphone-alt-slash\",\n    \"microphone-alt\",\n    \"microphone-slash\",\n    \"microphone\",\n    \"microscope\",\n    \"minus-circle\",\n    \"minus-square\",\n    \"minus\",\n    \"mitten\",\n    \"mobile-alt\",\n    \"mobile\",\n    \"money-bill-alt\",\n    \"money-bill-wave-alt\",\n    \"money-bill-wave\",\n    \"money-bill\",\n    \"money-check-alt\",\n    \"money-check\",\n    \"monument\",\n    \"moon\",\n    \"mortar-pestle\",\n    \"mosque\",\n    \"motorcycle\",\n    \"mountain\",\n    \"mouse-pointer\",\n    \"mouse\",\n    \"mug-hot\",\n    \"music\",\n    \"network-wired\",\n    \"neuter\",\n    \"newspaper\",\n    \"not-equal\",\n    \"notes-medical\",\n    \"object-group\",\n    \"object-ungroup\",\n    \"oil-can\",\n    \"om\",\n    \"otter\",\n    \"outdent\",\n    \"pager\",\n    \"paint-brush\",\n    \"paint-roller\",\n    \"palette\",\n    \"pallet\",\n    \"paper-plane\",\n    \"paperclip\",\n    \"parachute-box\",\n    \"paragraph\",\n    \"parking\",\n    \"passport\",\n    \"pastafarianism\",\n    \"paste\",\n    \"pause-circle\",\n    \"pause\",\n    \"paw\",\n    \"peace\",\n    \"pen-alt\",\n    \"pen-fancy\",\n    \"pen-nib\",\n    \"pen-square\",\n    \"pen\",\n    \"pencil-alt\",\n    \"pencil-ruler\",\n    \"people-arrows\",\n    \"people-carry\",\n    \"pepper-hot\",\n    \"percent\",\n    \"percentage\",\n    \"person-booth\",\n    \"phone-alt\",\n    \"phone-slash\",\n    \"phone-square-alt\",\n    \"phone-square\",\n    \"phone-volume\",\n    \"phone\",\n    \"photo-video\",\n    \"piggy-bank\",\n    \"pills\",\n    \"pizza-slice\",\n    \"place-of-worship\",\n    \"plane-arrival\",\n    \"plane-departure\",\n    \"plane-slash\",\n    \"plane\",\n    \"play-circle\",\n    \"play\",\n    \"plug\",\n    \"plus-circle\",\n    \"plus-square\",\n    \"plus\",\n    \"podcast\",\n    \"poll-h\",\n    \"poll\",\n    \"poo-storm\",\n    \"poo\",\n    \"poop\",\n    \"portrait\",\n    \"pound-sign\",\n    \"power-off\",\n    \"pray\",\n    \"praying-hands\",\n    \"prescription-bottle-alt\",\n    \"prescription-bottle\",\n    \"prescription\",\n    \"print\",\n    \"procedures\",\n    \"project-diagram\",\n    \"pump-medical\",\n    \"pump-soap\",\n    \"puzzle-piece\",\n    \"qrcode\",\n    \"question-circle\",\n    \"question\",\n    \"quidditch\",\n    \"quote-left\",\n    \"quote-right\",\n    \"quran\",\n    \"radiation-alt\",\n    \"radiation\",\n    \"rainbow\",\n    \"random\",\n    \"receipt\",\n    \"record-vinyl\",\n    \"recycle\",\n    \"redo-alt\",\n    \"redo\",\n    \"registered\",\n    \"remove-format\",\n    \"reply-all\",\n    \"reply\",\n    \"republican\",\n    \"restroom\",\n    \"retweet\",\n    \"ribbon\",\n    \"ring\",\n    \"road\",\n    \"robot\",\n    \"rocket\",\n    \"route\",\n    \"rss-square\",\n    \"rss\",\n    \"ruble-sign\",\n    \"ruler-combined\",\n    \"ruler-horizontal\",\n    \"ruler-vertical\",\n    \"ruler\",\n    \"running\",\n    \"rupee-sign\",\n    \"sad-cry\",\n    \"sad-tear\",\n    \"satellite-dish\",\n    \"satellite\",\n    \"save\",\n    \"school\",\n    \"screwdriver\",\n    \"scroll\",\n    \"sd-card\",\n    \"search-dollar\",\n    \"search-location\",\n    \"search-minus\",\n    \"search-plus\",\n    \"search\",\n    \"seedling\",\n    \"server\",\n    \"shapes\",\n    \"share-alt-square\",\n    \"share-alt\",\n    \"share-square\",\n    \"share\",\n    \"shekel-sign\",\n    \"shield-alt\",\n    \"shield-virus\",\n    \"ship\",\n    \"shipping-fast\",\n    \"shoe-prints\",\n    \"shopping-bag\",\n    \"shopping-basket\",\n    \"shopping-cart\",\n    \"shower\",\n    \"shuttle-van\",\n    \"sign-in-alt\",\n    \"sign-language\",\n    \"sign-out-alt\",\n    \"sign\",\n    \"signal\",\n    \"signature\",\n    \"sim-card\",\n    \"sink\",\n    \"sitemap\",\n    \"skating\",\n    \"skiing-nordic\",\n    \"skiing\",\n    \"skull-crossbones\",\n    \"skull\",\n    \"slash\",\n    \"sleigh\",\n    \"sliders-h\",\n    \"smile-beam\",\n    \"smile-wink\",\n    \"smile\",\n    \"smog\",\n    \"smoking-ban\",\n    \"smoking\",\n    \"sms\",\n    \"snowboarding\",\n    \"snowflake\",\n    \"snowman\",\n    \"snowplow\",\n    \"soap\",\n    \"socks\",\n    \"solar-panel\",\n    \"sort-alpha-down-alt\",\n    \"sort-alpha-down\",\n    \"sort-alpha-up-alt\",\n    \"sort-alpha-up\",\n    \"sort-amount-down-alt\",\n    \"sort-amount-down\",\n    \"sort-amount-up-alt\",\n    \"sort-amount-up\",\n    \"sort-down\",\n    \"sort-numeric-down-alt\",\n    \"sort-numeric-down\",\n    \"sort-numeric-up-alt\",\n    \"sort-numeric-up\",\n    \"sort-up\",\n    \"sort\",\n    \"spa\",\n    \"space-shuttle\",\n    \"spell-check\",\n    \"spider\",\n    \"spinner\",\n    \"splotch\",\n    \"spray-can\",\n    \"square-full\",\n    \"square-root-alt\",\n    \"square\",\n    \"stamp\",\n    \"star-and-crescent\",\n    \"star-half-alt\",\n    \"star-half\",\n    \"star-of-david\",\n    \"star-of-life\",\n    \"star\",\n    \"step-backward\",\n    \"step-forward\",\n    \"stethoscope\",\n    \"sticky-note\",\n    \"stop-circle\",\n    \"stop\",\n    \"stopwatch-20\",\n    \"stopwatch\",\n    \"store-alt-slash\",\n    \"store-alt\",\n    \"store-slash\",\n    \"store\",\n    \"stream\",\n    \"street-view\",\n    \"strikethrough\",\n    \"stroopwafel\",\n    \"subscript\",\n    \"subway\",\n    \"suitcase-rolling\",\n    \"suitcase\",\n    \"sun\",\n    \"superscript\",\n    \"surprise\",\n    \"swatchbook\",\n    \"swimmer\",\n    \"swimming-pool\",\n    \"synagogue\",\n    \"sync-alt\",\n    \"sync\",\n    \"syringe\",\n    \"table-tennis\",\n    \"table\",\n    \"tablet-alt\",\n    \"tablet\",\n    \"tablets\",\n    \"tachometer-alt\",\n    \"tag\",\n    \"tags\",\n    \"tape\",\n    \"tasks\",\n    \"taxi\",\n    \"teeth-open\",\n    \"teeth\",\n    \"temperature-high\",\n    \"temperature-low\",\n    \"tenge\",\n    \"terminal\",\n    \"text-height\",\n    \"text-width\",\n    \"th-large\",\n    \"th-list\",\n    \"th\",\n    \"theater-masks\",\n    \"thermometer-empty\",\n    \"thermometer-full\",\n    \"thermometer-half\",\n    \"thermometer-quarter\",\n    \"thermometer-three-quarters\",\n    \"thermometer\",\n    \"thumbs-down\",\n    \"thumbs-up\",\n    \"thumbtack\",\n    \"ticket-alt\",\n    \"times-circle\",\n    \"times\",\n    \"tint-slash\",\n    \"tint\",\n    \"tired\",\n    \"toggle-off\",\n    \"toggle-on\",\n    \"toilet-paper-slash\",\n    \"toilet-paper\",\n    \"toilet\",\n    \"toolbox\",\n    \"tools\",\n    \"tooth\",\n    \"torah\",\n    \"torii-gate\",\n    \"tractor\",\n    \"trademark\",\n    \"traffic-light\",\n    \"trailer\",\n    \"train\",\n    \"tram\",\n    \"transgender-alt\",\n    \"transgender\",\n    \"trash-alt\",\n    \"trash-restore-alt\",\n    \"trash-restore\",\n    \"trash\",\n    \"tree\",\n    \"trophy\",\n    \"truck-loading\",\n    \"truck-monster\",\n    \"truck-moving\",\n    \"truck-pickup\",\n    \"truck\",\n    \"tshirt\",\n    \"tty\",\n    \"tv\",\n    \"umbrella-beach\",\n    \"umbrella\",\n    \"underline\",\n    \"undo-alt\",\n    \"undo\",\n    \"universal-access\",\n    \"university\",\n    \"unlink\",\n    \"unlock-alt\",\n    \"unlock\",\n    \"upload\",\n    \"user-alt-slash\",\n    \"user-alt\",\n    \"user-astronaut\",\n    \"user-check\",\n    \"user-circle\",\n    \"user-clock\",\n    \"user-cog\",\n    \"user-edit\",\n    \"user-friends\",\n    \"user-graduate\",\n    \"user-injured\",\n    \"user-lock\",\n    \"user-md\",\n    \"user-minus\",\n    \"user-ninja\",\n    \"user-nurse\",\n    \"user-plus\",\n    \"user-secret\",\n    \"user-shield\",\n    \"user-slash\",\n    \"user-tag\",\n    \"user-tie\",\n    \"user-times\",\n    \"user\",\n    \"users-cog\",\n    \"users-slash\",\n    \"users\",\n    \"utensil-spoon\",\n    \"utensils\",\n    \"vector-square\",\n    \"venus-double\",\n    \"venus-mars\",\n    \"venus\",\n    \"vest-patches\",\n    \"vest\",\n    \"vial\",\n    \"vials\",\n    \"video-slash\",\n    \"video\",\n    \"vihara\",\n    \"virus-slash\",\n    \"virus\",\n    \"viruses\",\n    \"voicemail\",\n    \"volleyball-ball\",\n    \"volume-down\",\n    \"volume-mute\",\n    \"volume-off\",\n    \"volume-up\",\n    \"vote-yea\",\n    \"vr-cardboard\",\n    \"walking\",\n    \"wallet\",\n    \"warehouse\",\n    \"water\",\n    \"wave-square\",\n    \"weight-hanging\",\n    \"weight\",\n    \"wheelchair\",\n    \"wifi\",\n    \"wind\",\n    \"window-close\",\n    \"window-maximize\",\n    \"window-minimize\",\n    \"window-restore\",\n    \"wine-bottle\",\n    \"wine-glass-alt\",\n    \"wine-glass\",\n    \"won-sign\",\n    \"wrench\",\n    \"x-ray\",\n    \"yen-sign\",\n    \"yin-yang\"\n  ]\n}\r\n"
  },
  {
    "path": "packages/fontawesome5/glyphmaps/FontAwesome5_regular.json",
    "content": "{\"address-book\":62137,\"address-card\":62139,\"angry\":62806,\"arrow-alt-circle-down\":62296,\"arrow-alt-circle-left\":62297,\"arrow-alt-circle-right\":62298,\"arrow-alt-circle-up\":62299,\"bell-slash\":61942,\"bell\":61683,\"bookmark\":61486,\"building\":61869,\"calendar-alt\":61555,\"calendar-check\":62068,\"calendar-minus\":62066,\"calendar-plus\":62065,\"calendar-times\":62067,\"calendar\":61747,\"caret-square-down\":61776,\"caret-square-left\":61841,\"caret-square-right\":61778,\"caret-square-up\":61777,\"chart-bar\":61568,\"check-circle\":61528,\"check-square\":61770,\"circle\":61713,\"clipboard\":62248,\"clock\":61463,\"clone\":62029,\"closed-captioning\":61962,\"comment-alt\":62074,\"comment-dots\":62637,\"comment\":61557,\"comments\":61574,\"compass\":61774,\"copy\":61637,\"copyright\":61945,\"credit-card\":61597,\"dizzy\":62823,\"dot-circle\":61842,\"edit\":61508,\"envelope-open\":62134,\"envelope\":61664,\"eye-slash\":61552,\"eye\":61550,\"file-alt\":61788,\"file-archive\":61894,\"file-audio\":61895,\"file-code\":61897,\"file-excel\":61891,\"file-image\":61893,\"file-pdf\":61889,\"file-powerpoint\":61892,\"file-video\":61896,\"file-word\":61890,\"file\":61787,\"flag\":61476,\"flushed\":62841,\"folder-open\":61564,\"folder\":61563,\"font-awesome-logo-full\":62694,\"frown-open\":62842,\"frown\":61721,\"futbol\":61923,\"gem\":62373,\"grimace\":62847,\"grin-alt\":62849,\"grin-beam-sweat\":62851,\"grin-beam\":62850,\"grin-hearts\":62852,\"grin-squint-tears\":62854,\"grin-squint\":62853,\"grin-stars\":62855,\"grin-tears\":62856,\"grin-tongue-squint\":62858,\"grin-tongue-wink\":62859,\"grin-tongue\":62857,\"grin-wink\":62860,\"grin\":62848,\"hand-lizard\":62040,\"hand-paper\":62038,\"hand-peace\":62043,\"hand-point-down\":61607,\"hand-point-left\":61605,\"hand-point-right\":61604,\"hand-point-up\":61606,\"hand-pointer\":62042,\"hand-rock\":62037,\"hand-scissors\":62039,\"hand-spock\":62041,\"handshake\":62133,\"hdd\":61600,\"heart\":61444,\"hospital\":61688,\"hourglass\":62036,\"id-badge\":62145,\"id-card\":62146,\"image\":61502,\"images\":62210,\"keyboard\":61724,\"kiss-beam\":62871,\"kiss-wink-heart\":62872,\"kiss\":62870,\"laugh-beam\":62874,\"laugh-squint\":62875,\"laugh-wink\":62876,\"laugh\":62873,\"lemon\":61588,\"life-ring\":61901,\"lightbulb\":61675,\"list-alt\":61474,\"map\":62073,\"meh-blank\":62884,\"meh-rolling-eyes\":62885,\"meh\":61722,\"minus-square\":61766,\"money-bill-alt\":62417,\"moon\":61830,\"newspaper\":61930,\"object-group\":62023,\"object-ungroup\":62024,\"paper-plane\":61912,\"pause-circle\":62091,\"play-circle\":61764,\"plus-square\":61694,\"question-circle\":61529,\"registered\":62045,\"sad-cry\":62899,\"sad-tear\":62900,\"save\":61639,\"share-square\":61773,\"smile-beam\":62904,\"smile-wink\":62682,\"smile\":61720,\"snowflake\":62172,\"square\":61640,\"star-half\":61577,\"star\":61445,\"sticky-note\":62025,\"stop-circle\":62093,\"sun\":61829,\"surprise\":62914,\"thumbs-down\":61797,\"thumbs-up\":61796,\"times-circle\":61527,\"tired\":62920,\"trash-alt\":62189,\"user-circle\":62141,\"user\":61447,\"window-close\":62480,\"window-maximize\":62160,\"window-minimize\":62161,\"window-restore\":62162}"
  },
  {
    "path": "packages/fontawesome5/glyphmaps/FontAwesome5_solid.json",
    "content": "{\"ad\":63041,\"address-book\":62137,\"address-card\":62139,\"adjust\":61506,\"air-freshener\":62928,\"align-center\":61495,\"align-justify\":61497,\"align-left\":61494,\"align-right\":61496,\"allergies\":62561,\"ambulance\":61689,\"american-sign-language-interpreting\":62115,\"anchor\":61757,\"angle-double-down\":61699,\"angle-double-left\":61696,\"angle-double-right\":61697,\"angle-double-up\":61698,\"angle-down\":61703,\"angle-left\":61700,\"angle-right\":61701,\"angle-up\":61702,\"angry\":62806,\"ankh\":63044,\"apple-alt\":62929,\"archive\":61831,\"archway\":62807,\"arrow-alt-circle-down\":62296,\"arrow-alt-circle-left\":62297,\"arrow-alt-circle-right\":62298,\"arrow-alt-circle-up\":62299,\"arrow-circle-down\":61611,\"arrow-circle-left\":61608,\"arrow-circle-right\":61609,\"arrow-circle-up\":61610,\"arrow-down\":61539,\"arrow-left\":61536,\"arrow-right\":61537,\"arrow-up\":61538,\"arrows-alt-h\":62263,\"arrows-alt-v\":62264,\"arrows-alt\":61618,\"assistive-listening-systems\":62114,\"asterisk\":61545,\"at\":61946,\"atlas\":62808,\"atom\":62930,\"audio-description\":62110,\"award\":62809,\"baby-carriage\":63357,\"baby\":63356,\"backspace\":62810,\"backward\":61514,\"bacon\":63461,\"bacteria\":57433,\"bacterium\":57434,\"bahai\":63078,\"balance-scale-left\":62741,\"balance-scale-right\":62742,\"balance-scale\":62030,\"ban\":61534,\"band-aid\":62562,\"barcode\":61482,\"bars\":61641,\"baseball-ball\":62515,\"basketball-ball\":62516,\"bath\":62157,\"battery-empty\":62020,\"battery-full\":62016,\"battery-half\":62018,\"battery-quarter\":62019,\"battery-three-quarters\":62017,\"bed\":62006,\"beer\":61692,\"bell-slash\":61942,\"bell\":61683,\"bezier-curve\":62811,\"bible\":63047,\"bicycle\":61958,\"biking\":63562,\"binoculars\":61925,\"biohazard\":63360,\"birthday-cake\":61949,\"blender-phone\":63158,\"blender\":62743,\"blind\":62109,\"blog\":63361,\"bold\":61490,\"bolt\":61671,\"bomb\":61922,\"bone\":62935,\"bong\":62812,\"book-dead\":63159,\"book-medical\":63462,\"book-open\":62744,\"book-reader\":62938,\"book\":61485,\"bookmark\":61486,\"border-all\":63564,\"border-none\":63568,\"border-style\":63571,\"bowling-ball\":62518,\"box-open\":62622,\"box-tissue\":57435,\"box\":62566,\"boxes\":62568,\"braille\":62113,\"brain\":62940,\"bread-slice\":63468,\"briefcase-medical\":62569,\"briefcase\":61617,\"broadcast-tower\":62745,\"broom\":62746,\"brush\":62813,\"bug\":61832,\"building\":61869,\"bullhorn\":61601,\"bullseye\":61760,\"burn\":62570,\"bus-alt\":62814,\"bus\":61959,\"business-time\":63050,\"calculator\":61932,\"calendar-alt\":61555,\"calendar-check\":62068,\"calendar-day\":63363,\"calendar-minus\":62066,\"calendar-plus\":62065,\"calendar-times\":62067,\"calendar-week\":63364,\"calendar\":61747,\"camera-retro\":61571,\"camera\":61488,\"campground\":63163,\"candy-cane\":63366,\"cannabis\":62815,\"capsules\":62571,\"car-alt\":62942,\"car-battery\":62943,\"car-crash\":62945,\"car-side\":62948,\"car\":61881,\"caravan\":63743,\"caret-down\":61655,\"caret-left\":61657,\"caret-right\":61658,\"caret-square-down\":61776,\"caret-square-left\":61841,\"caret-square-right\":61778,\"caret-square-up\":61777,\"caret-up\":61656,\"carrot\":63367,\"cart-arrow-down\":61976,\"cart-plus\":61975,\"cash-register\":63368,\"cat\":63166,\"certificate\":61603,\"chair\":63168,\"chalkboard-teacher\":62748,\"chalkboard\":62747,\"charging-station\":62951,\"chart-area\":61950,\"chart-bar\":61568,\"chart-line\":61953,\"chart-pie\":61952,\"check-circle\":61528,\"check-double\":62816,\"check-square\":61770,\"check\":61452,\"cheese\":63471,\"chess-bishop\":62522,\"chess-board\":62524,\"chess-king\":62527,\"chess-knight\":62529,\"chess-pawn\":62531,\"chess-queen\":62533,\"chess-rook\":62535,\"chess\":62521,\"chevron-circle-down\":61754,\"chevron-circle-left\":61751,\"chevron-circle-right\":61752,\"chevron-circle-up\":61753,\"chevron-down\":61560,\"chevron-left\":61523,\"chevron-right\":61524,\"chevron-up\":61559,\"child\":61870,\"church\":62749,\"circle-notch\":61902,\"circle\":61713,\"city\":63055,\"clinic-medical\":63474,\"clipboard-check\":62572,\"clipboard-list\":62573,\"clipboard\":62248,\"clock\":61463,\"clone\":62029,\"closed-captioning\":61962,\"cloud-download-alt\":62337,\"cloud-meatball\":63291,\"cloud-moon-rain\":63292,\"cloud-moon\":63171,\"cloud-rain\":63293,\"cloud-showers-heavy\":63296,\"cloud-sun-rain\":63299,\"cloud-sun\":63172,\"cloud-upload-alt\":62338,\"cloud\":61634,\"cocktail\":62817,\"code-branch\":61734,\"code\":61729,\"coffee\":61684,\"cog\":61459,\"cogs\":61573,\"coins\":62750,\"columns\":61659,\"comment-alt\":62074,\"comment-dollar\":63057,\"comment-dots\":62637,\"comment-medical\":63477,\"comment-slash\":62643,\"comment\":61557,\"comments-dollar\":63059,\"comments\":61574,\"compact-disc\":62751,\"compass\":61774,\"compress-alt\":62498,\"compress-arrows-alt\":63372,\"compress\":61542,\"concierge-bell\":62818,\"cookie-bite\":62820,\"cookie\":62819,\"copy\":61637,\"copyright\":61945,\"couch\":62648,\"credit-card\":61597,\"crop-alt\":62821,\"crop\":61733,\"cross\":63060,\"crosshairs\":61531,\"crow\":62752,\"crown\":62753,\"crutch\":63479,\"cube\":61874,\"cubes\":61875,\"cut\":61636,\"database\":61888,\"deaf\":62116,\"democrat\":63303,\"desktop\":61704,\"dharmachakra\":63061,\"diagnoses\":62576,\"dice-d20\":63183,\"dice-d6\":63185,\"dice-five\":62755,\"dice-four\":62756,\"dice-one\":62757,\"dice-six\":62758,\"dice-three\":62759,\"dice-two\":62760,\"dice\":62754,\"digital-tachograph\":62822,\"directions\":62955,\"disease\":63482,\"divide\":62761,\"dizzy\":62823,\"dna\":62577,\"dog\":63187,\"dollar-sign\":61781,\"dolly-flatbed\":62580,\"dolly\":62578,\"donate\":62649,\"door-closed\":62762,\"door-open\":62763,\"dot-circle\":61842,\"dove\":62650,\"download\":61465,\"drafting-compass\":62824,\"dragon\":63189,\"draw-polygon\":62958,\"drum-steelpan\":62826,\"drum\":62825,\"drumstick-bite\":63191,\"dumbbell\":62539,\"dumpster-fire\":63380,\"dumpster\":63379,\"dungeon\":63193,\"edit\":61508,\"egg\":63483,\"eject\":61522,\"ellipsis-h\":61761,\"ellipsis-v\":61762,\"envelope-open-text\":63064,\"envelope-open\":62134,\"envelope-square\":61849,\"envelope\":61664,\"equals\":62764,\"eraser\":61741,\"ethernet\":63382,\"euro-sign\":61779,\"exchange-alt\":62306,\"exclamation-circle\":61546,\"exclamation-triangle\":61553,\"exclamation\":61738,\"expand-alt\":62500,\"expand-arrows-alt\":62238,\"expand\":61541,\"external-link-alt\":62301,\"external-link-square-alt\":62304,\"eye-dropper\":61947,\"eye-slash\":61552,\"eye\":61550,\"fan\":63587,\"fast-backward\":61513,\"fast-forward\":61520,\"faucet\":57349,\"fax\":61868,\"feather-alt\":62827,\"feather\":62765,\"female\":61826,\"fighter-jet\":61691,\"file-alt\":61788,\"file-archive\":61894,\"file-audio\":61895,\"file-code\":61897,\"file-contract\":62828,\"file-csv\":63197,\"file-download\":62829,\"file-excel\":61891,\"file-export\":62830,\"file-image\":61893,\"file-import\":62831,\"file-invoice-dollar\":62833,\"file-invoice\":62832,\"file-medical-alt\":62584,\"file-medical\":62583,\"file-pdf\":61889,\"file-powerpoint\":61892,\"file-prescription\":62834,\"file-signature\":62835,\"file-upload\":62836,\"file-video\":61896,\"file-word\":61890,\"file\":61787,\"fill-drip\":62838,\"fill\":62837,\"film\":61448,\"filter\":61616,\"fingerprint\":62839,\"fire-alt\":63460,\"fire-extinguisher\":61748,\"fire\":61549,\"first-aid\":62585,\"fish\":62840,\"fist-raised\":63198,\"flag-checkered\":61726,\"flag-usa\":63309,\"flag\":61476,\"flask\":61635,\"flushed\":62841,\"folder-minus\":63069,\"folder-open\":61564,\"folder-plus\":63070,\"folder\":61563,\"font-awesome-logo-full\":62694,\"font\":61489,\"football-ball\":62542,\"forward\":61518,\"frog\":62766,\"frown-open\":62842,\"frown\":61721,\"funnel-dollar\":63074,\"futbol\":61923,\"gamepad\":61723,\"gas-pump\":62767,\"gavel\":61667,\"gem\":62373,\"genderless\":61997,\"ghost\":63202,\"gift\":61547,\"gifts\":63388,\"glass-cheers\":63391,\"glass-martini-alt\":62843,\"glass-martini\":61440,\"glass-whiskey\":63392,\"glasses\":62768,\"globe-africa\":62844,\"globe-americas\":62845,\"globe-asia\":62846,\"globe-europe\":63394,\"globe\":61612,\"golf-ball\":62544,\"gopuram\":63076,\"graduation-cap\":61853,\"greater-than-equal\":62770,\"greater-than\":62769,\"grimace\":62847,\"grin-alt\":62849,\"grin-beam-sweat\":62851,\"grin-beam\":62850,\"grin-hearts\":62852,\"grin-squint-tears\":62854,\"grin-squint\":62853,\"grin-stars\":62855,\"grin-tears\":62856,\"grin-tongue-squint\":62858,\"grin-tongue-wink\":62859,\"grin-tongue\":62857,\"grin-wink\":62860,\"grin\":62848,\"grip-horizontal\":62861,\"grip-lines-vertical\":63397,\"grip-lines\":63396,\"grip-vertical\":62862,\"guitar\":63398,\"h-square\":61693,\"hamburger\":63493,\"hammer\":63203,\"hamsa\":63077,\"hand-holding-heart\":62654,\"hand-holding-medical\":57436,\"hand-holding-usd\":62656,\"hand-holding-water\":62657,\"hand-holding\":62653,\"hand-lizard\":62040,\"hand-middle-finger\":63494,\"hand-paper\":62038,\"hand-peace\":62043,\"hand-point-down\":61607,\"hand-point-left\":61605,\"hand-point-right\":61604,\"hand-point-up\":61606,\"hand-pointer\":62042,\"hand-rock\":62037,\"hand-scissors\":62039,\"hand-sparkles\":57437,\"hand-spock\":62041,\"hands-helping\":62660,\"hands-wash\":57438,\"hands\":62658,\"handshake-alt-slash\":57439,\"handshake-slash\":57440,\"handshake\":62133,\"hanukiah\":63206,\"hard-hat\":63495,\"hashtag\":62098,\"hat-cowboy-side\":63681,\"hat-cowboy\":63680,\"hat-wizard\":63208,\"hdd\":61600,\"head-side-cough-slash\":57442,\"head-side-cough\":57441,\"head-side-mask\":57443,\"head-side-virus\":57444,\"heading\":61916,\"headphones-alt\":62863,\"headphones\":61477,\"headset\":62864,\"heart-broken\":63401,\"heart\":61444,\"heartbeat\":61982,\"helicopter\":62771,\"highlighter\":62865,\"hiking\":63212,\"hippo\":63213,\"history\":61914,\"hockey-puck\":62547,\"holly-berry\":63402,\"home\":61461,\"horse-head\":63403,\"horse\":63216,\"hospital-alt\":62589,\"hospital-symbol\":62590,\"hospital-user\":63501,\"hospital\":61688,\"hot-tub\":62867,\"hotdog\":63503,\"hotel\":62868,\"hourglass-end\":62035,\"hourglass-half\":62034,\"hourglass-start\":62033,\"hourglass\":62036,\"house-damage\":63217,\"house-user\":57445,\"hryvnia\":63218,\"i-cursor\":62022,\"ice-cream\":63504,\"icicles\":63405,\"icons\":63597,\"id-badge\":62145,\"id-card-alt\":62591,\"id-card\":62146,\"igloo\":63406,\"image\":61502,\"images\":62210,\"inbox\":61468,\"indent\":61500,\"industry\":62069,\"infinity\":62772,\"info-circle\":61530,\"info\":61737,\"italic\":61491,\"jedi\":63081,\"joint\":62869,\"journal-whills\":63082,\"kaaba\":63083,\"key\":61572,\"keyboard\":61724,\"khanda\":63085,\"kiss-beam\":62871,\"kiss-wink-heart\":62872,\"kiss\":62870,\"kiwi-bird\":62773,\"landmark\":63087,\"language\":61867,\"laptop-code\":62972,\"laptop-house\":57446,\"laptop-medical\":63506,\"laptop\":61705,\"laugh-beam\":62874,\"laugh-squint\":62875,\"laugh-wink\":62876,\"laugh\":62873,\"layer-group\":62973,\"leaf\":61548,\"lemon\":61588,\"less-than-equal\":62775,\"less-than\":62774,\"level-down-alt\":62398,\"level-up-alt\":62399,\"life-ring\":61901,\"lightbulb\":61675,\"link\":61633,\"lira-sign\":61845,\"list-alt\":61474,\"list-ol\":61643,\"list-ul\":61642,\"list\":61498,\"location-arrow\":61732,\"lock-open\":62401,\"lock\":61475,\"long-arrow-alt-down\":62217,\"long-arrow-alt-left\":62218,\"long-arrow-alt-right\":62219,\"long-arrow-alt-up\":62220,\"low-vision\":62120,\"luggage-cart\":62877,\"lungs-virus\":57447,\"lungs\":62980,\"magic\":61648,\"magnet\":61558,\"mail-bulk\":63092,\"male\":61827,\"map-marked-alt\":62880,\"map-marked\":62879,\"map-marker-alt\":62405,\"map-marker\":61505,\"map-pin\":62070,\"map-signs\":62071,\"map\":62073,\"marker\":62881,\"mars-double\":61991,\"mars-stroke-h\":61995,\"mars-stroke-v\":61994,\"mars-stroke\":61993,\"mars\":61986,\"mask\":63226,\"medal\":62882,\"medkit\":61690,\"meh-blank\":62884,\"meh-rolling-eyes\":62885,\"meh\":61722,\"memory\":62776,\"menorah\":63094,\"mercury\":61987,\"meteor\":63315,\"microchip\":62171,\"microphone-alt-slash\":62777,\"microphone-alt\":62409,\"microphone-slash\":61745,\"microphone\":61744,\"microscope\":62992,\"minus-circle\":61526,\"minus-square\":61766,\"minus\":61544,\"mitten\":63413,\"mobile-alt\":62413,\"mobile\":61707,\"money-bill-alt\":62417,\"money-bill-wave-alt\":62779,\"money-bill-wave\":62778,\"money-bill\":61654,\"money-check-alt\":62781,\"money-check\":62780,\"monument\":62886,\"moon\":61830,\"mortar-pestle\":62887,\"mosque\":63096,\"motorcycle\":61980,\"mountain\":63228,\"mouse-pointer\":62021,\"mouse\":63692,\"mug-hot\":63414,\"music\":61441,\"network-wired\":63231,\"neuter\":61996,\"newspaper\":61930,\"not-equal\":62782,\"notes-medical\":62593,\"object-group\":62023,\"object-ungroup\":62024,\"oil-can\":62995,\"om\":63097,\"otter\":63232,\"outdent\":61499,\"pager\":63509,\"paint-brush\":61948,\"paint-roller\":62890,\"palette\":62783,\"pallet\":62594,\"paper-plane\":61912,\"paperclip\":61638,\"parachute-box\":62669,\"paragraph\":61917,\"parking\":62784,\"passport\":62891,\"pastafarianism\":63099,\"paste\":61674,\"pause-circle\":62091,\"pause\":61516,\"paw\":61872,\"peace\":63100,\"pen-alt\":62213,\"pen-fancy\":62892,\"pen-nib\":62893,\"pen-square\":61771,\"pen\":62212,\"pencil-alt\":62211,\"pencil-ruler\":62894,\"people-arrows\":57448,\"people-carry\":62670,\"pepper-hot\":63510,\"percent\":62101,\"percentage\":62785,\"person-booth\":63318,\"phone-alt\":63609,\"phone-slash\":62429,\"phone-square-alt\":63611,\"phone-square\":61592,\"phone-volume\":62112,\"phone\":61589,\"photo-video\":63612,\"piggy-bank\":62675,\"pills\":62596,\"pizza-slice\":63512,\"place-of-worship\":63103,\"plane-arrival\":62895,\"plane-departure\":62896,\"plane-slash\":57449,\"plane\":61554,\"play-circle\":61764,\"play\":61515,\"plug\":61926,\"plus-circle\":61525,\"plus-square\":61694,\"plus\":61543,\"podcast\":62158,\"poll-h\":63106,\"poll\":63105,\"poo-storm\":63322,\"poo\":62206,\"poop\":63001,\"portrait\":62432,\"pound-sign\":61780,\"power-off\":61457,\"pray\":63107,\"praying-hands\":63108,\"prescription-bottle-alt\":62598,\"prescription-bottle\":62597,\"prescription\":62897,\"print\":61487,\"procedures\":62599,\"project-diagram\":62786,\"pump-medical\":57450,\"pump-soap\":57451,\"puzzle-piece\":61742,\"qrcode\":61481,\"question-circle\":61529,\"question\":61736,\"quidditch\":62552,\"quote-left\":61709,\"quote-right\":61710,\"quran\":63111,\"radiation-alt\":63418,\"radiation\":63417,\"rainbow\":63323,\"random\":61556,\"receipt\":62787,\"record-vinyl\":63705,\"recycle\":61880,\"redo-alt\":62201,\"redo\":61470,\"registered\":62045,\"remove-format\":63613,\"reply-all\":61730,\"reply\":62437,\"republican\":63326,\"restroom\":63421,\"retweet\":61561,\"ribbon\":62678,\"ring\":63243,\"road\":61464,\"robot\":62788,\"rocket\":61749,\"route\":62679,\"rss-square\":61763,\"rss\":61598,\"ruble-sign\":61784,\"ruler-combined\":62790,\"ruler-horizontal\":62791,\"ruler-vertical\":62792,\"ruler\":62789,\"running\":63244,\"rupee-sign\":61782,\"sad-cry\":62899,\"sad-tear\":62900,\"satellite-dish\":63424,\"satellite\":63423,\"save\":61639,\"school\":62793,\"screwdriver\":62794,\"scroll\":63246,\"sd-card\":63426,\"search-dollar\":63112,\"search-location\":63113,\"search-minus\":61456,\"search-plus\":61454,\"search\":61442,\"seedling\":62680,\"server\":62003,\"shapes\":63007,\"share-alt-square\":61921,\"share-alt\":61920,\"share-square\":61773,\"share\":61540,\"shekel-sign\":61963,\"shield-alt\":62445,\"shield-virus\":57452,\"ship\":61978,\"shipping-fast\":62603,\"shoe-prints\":62795,\"shopping-bag\":62096,\"shopping-basket\":62097,\"shopping-cart\":61562,\"shower\":62156,\"shuttle-van\":62902,\"sign-in-alt\":62198,\"sign-language\":62119,\"sign-out-alt\":62197,\"sign\":62681,\"signal\":61458,\"signature\":62903,\"sim-card\":63428,\"sink\":57453,\"sitemap\":61672,\"skating\":63429,\"skiing-nordic\":63434,\"skiing\":63433,\"skull-crossbones\":63252,\"skull\":62796,\"slash\":63253,\"sleigh\":63436,\"sliders-h\":61918,\"smile-beam\":62904,\"smile-wink\":62682,\"smile\":61720,\"smog\":63327,\"smoking-ban\":62797,\"smoking\":62605,\"sms\":63437,\"snowboarding\":63438,\"snowflake\":62172,\"snowman\":63440,\"snowplow\":63442,\"soap\":57454,\"socks\":63126,\"solar-panel\":62906,\"sort-alpha-down-alt\":63617,\"sort-alpha-down\":61789,\"sort-alpha-up-alt\":63618,\"sort-alpha-up\":61790,\"sort-amount-down-alt\":63620,\"sort-amount-down\":61792,\"sort-amount-up-alt\":63621,\"sort-amount-up\":61793,\"sort-down\":61661,\"sort-numeric-down-alt\":63622,\"sort-numeric-down\":61794,\"sort-numeric-up-alt\":63623,\"sort-numeric-up\":61795,\"sort-up\":61662,\"sort\":61660,\"spa\":62907,\"space-shuttle\":61847,\"spell-check\":63633,\"spider\":63255,\"spinner\":61712,\"splotch\":62908,\"spray-can\":62909,\"square-full\":62556,\"square-root-alt\":63128,\"square\":61640,\"stamp\":62911,\"star-and-crescent\":63129,\"star-half-alt\":62912,\"star-half\":61577,\"star-of-david\":63130,\"star-of-life\":63009,\"star\":61445,\"step-backward\":61512,\"step-forward\":61521,\"stethoscope\":61681,\"sticky-note\":62025,\"stop-circle\":62093,\"stop\":61517,\"stopwatch-20\":57455,\"stopwatch\":62194,\"store-alt-slash\":57456,\"store-alt\":62799,\"store-slash\":57457,\"store\":62798,\"stream\":62800,\"street-view\":61981,\"strikethrough\":61644,\"stroopwafel\":62801,\"subscript\":61740,\"subway\":62009,\"suitcase-rolling\":62913,\"suitcase\":61682,\"sun\":61829,\"superscript\":61739,\"surprise\":62914,\"swatchbook\":62915,\"swimmer\":62916,\"swimming-pool\":62917,\"synagogue\":63131,\"sync-alt\":62193,\"sync\":61473,\"syringe\":62606,\"table-tennis\":62557,\"table\":61646,\"tablet-alt\":62458,\"tablet\":61706,\"tablets\":62608,\"tachometer-alt\":62461,\"tag\":61483,\"tags\":61484,\"tape\":62683,\"tasks\":61614,\"taxi\":61882,\"teeth-open\":63023,\"teeth\":63022,\"temperature-high\":63337,\"temperature-low\":63339,\"tenge\":63447,\"terminal\":61728,\"text-height\":61492,\"text-width\":61493,\"th-large\":61449,\"th-list\":61451,\"th\":61450,\"theater-masks\":63024,\"thermometer-empty\":62155,\"thermometer-full\":62151,\"thermometer-half\":62153,\"thermometer-quarter\":62154,\"thermometer-three-quarters\":62152,\"thermometer\":62609,\"thumbs-down\":61797,\"thumbs-up\":61796,\"thumbtack\":61581,\"ticket-alt\":62463,\"times-circle\":61527,\"times\":61453,\"tint-slash\":62919,\"tint\":61507,\"tired\":62920,\"toggle-off\":61956,\"toggle-on\":61957,\"toilet-paper-slash\":57458,\"toilet-paper\":63262,\"toilet\":63448,\"toolbox\":62802,\"tools\":63449,\"tooth\":62921,\"torah\":63136,\"torii-gate\":63137,\"tractor\":63266,\"trademark\":62044,\"traffic-light\":63031,\"trailer\":57409,\"train\":62008,\"tram\":63450,\"transgender-alt\":61989,\"transgender\":61988,\"trash-alt\":62189,\"trash-restore-alt\":63530,\"trash-restore\":63529,\"trash\":61944,\"tree\":61883,\"trophy\":61585,\"truck-loading\":62686,\"truck-monster\":63035,\"truck-moving\":62687,\"truck-pickup\":63036,\"truck\":61649,\"tshirt\":62803,\"tty\":61924,\"tv\":62060,\"umbrella-beach\":62922,\"umbrella\":61673,\"underline\":61645,\"undo-alt\":62186,\"undo\":61666,\"universal-access\":62106,\"university\":61852,\"unlink\":61735,\"unlock-alt\":61758,\"unlock\":61596,\"upload\":61587,\"user-alt-slash\":62714,\"user-alt\":62470,\"user-astronaut\":62715,\"user-check\":62716,\"user-circle\":62141,\"user-clock\":62717,\"user-cog\":62718,\"user-edit\":62719,\"user-friends\":62720,\"user-graduate\":62721,\"user-injured\":63272,\"user-lock\":62722,\"user-md\":61680,\"user-minus\":62723,\"user-ninja\":62724,\"user-nurse\":63535,\"user-plus\":62004,\"user-secret\":61979,\"user-shield\":62725,\"user-slash\":62726,\"user-tag\":62727,\"user-tie\":62728,\"user-times\":62005,\"user\":61447,\"users-cog\":62729,\"users-slash\":57459,\"users\":61632,\"utensil-spoon\":62181,\"utensils\":62183,\"vector-square\":62923,\"venus-double\":61990,\"venus-mars\":61992,\"venus\":61985,\"vest-patches\":57478,\"vest\":57477,\"vial\":62610,\"vials\":62611,\"video-slash\":62690,\"video\":61501,\"vihara\":63143,\"virus-slash\":57461,\"virus\":57460,\"viruses\":57462,\"voicemail\":63639,\"volleyball-ball\":62559,\"volume-down\":61479,\"volume-mute\":63145,\"volume-off\":61478,\"volume-up\":61480,\"vote-yea\":63346,\"vr-cardboard\":63273,\"walking\":62804,\"wallet\":62805,\"warehouse\":62612,\"water\":63347,\"wave-square\":63550,\"weight-hanging\":62925,\"weight\":62614,\"wheelchair\":61843,\"wifi\":61931,\"wind\":63278,\"window-close\":62480,\"window-maximize\":62160,\"window-minimize\":62161,\"window-restore\":62162,\"wine-bottle\":63279,\"wine-glass-alt\":62926,\"wine-glass\":62691,\"won-sign\":61785,\"wrench\":61613,\"x-ray\":62615,\"yen-sign\":61783,\"yin-yang\":63149}"
  },
  {
    "path": "packages/fontawesome5/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontawesome5\",\n  \"version\": \"12.4.0\",\n  \"description\": \"Fontawesome5 font for react native vector icons\",\n  \"source\": \"./src/index.tsx\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\",\n    \"./fonts/*.ttf\": \"./fonts/*.ttf\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"fontawesome5\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/fontawesome5\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\",\n    \"@fortawesome/fontawesome-free\": \"5.15.4\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome5/react-native-vector-icons-fontawesome5.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-fontawesome5'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\nend\n"
  },
  {
    "path": "packages/fontawesome5/src/index.tsx",
    "content": "/* eslint-disable react/jsx-pascal-case, no-console */\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * Instead, modify the template in `fontawesome-common/generator`.\n *\n * FontAwesome5 icon set component.\n * Usage: <FontAwesome5 name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport type { ComponentProps } from 'react';\nimport { Platform, type TextStyle } from 'react-native';\n\nimport { createIconSet, DEFAULT_ICON_COLOR, DEFAULT_ICON_SIZE } from '@react-native-vector-icons/common';\n\nimport brandGM from '../glyphmaps/FontAwesome5_brand.json';\nimport regularGM from '../glyphmaps/FontAwesome5_regular.json';\nimport solidGM from '../glyphmaps/FontAwesome5_solid.json';\n\nimport metadata from '../glyphmaps/FontAwesome5_meta.json';\n\nconst glyphValidator = (glyph: string, iconType: keyof typeof metadata) => metadata[iconType]?.includes(glyph);\n\nconst fontStyle = (fontWeight: TextStyle['fontWeight']) =>\n  Platform.select({\n    ios: {\n      fontWeight,\n    },\n    default: {},\n  });\n\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst RegularIcon = createIconSet(regularGM, {\n  postScriptName: 'FontAwesome5Free-Regular',\n  fontFileName: 'FontAwesome5_Regular.ttf',\n  fontSource: require('../fonts/FontAwesome5_Regular.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require\n  fontStyle: fontStyle('400')\n});\nexport type FontAwesome5RegularIconName = keyof typeof regularGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst SolidIcon = createIconSet(solidGM, {\n  postScriptName: 'FontAwesome5Free-Solid',\n  fontFileName: 'FontAwesome5_Solid.ttf',\n  fontSource: require('../fonts/FontAwesome5_Solid.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require\n  fontStyle: fontStyle('900')\n});\nexport type FontAwesome5SolidIconName = keyof typeof solidGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst BrandIcon = createIconSet(brandGM, {\n  postScriptName: 'FontAwesome5Brands-Regular',\n  fontFileName: 'FontAwesome5_Brands.ttf',\n  fontSource: require('../fonts/FontAwesome5_Brands.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require\n  fontStyle: fontStyle('400')\n});\nexport type FontAwesome5BrandIconName = keyof typeof brandGM;\ntype Props =\n  | ({ iconStyle: 'regular' } & ComponentProps<typeof RegularIcon>)\n  | ({ iconStyle: 'solid' } & ComponentProps<typeof SolidIcon>)\n  | ({ iconStyle: 'brand' } & ComponentProps<typeof BrandIcon>)\n  | ({ iconStyle?: never } & ComponentProps<typeof RegularIcon>);\n\nexport const FontAwesome5 = (props: Props) => {\n  const { iconStyle, name } = props;\n  if (!iconStyle) {\n    if (!glyphValidator(name, 'regular')) {\n      console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for 'regular' icon type for FontAwesome5`);\n    }\n    return <RegularIcon {...props} />;\n  }\n\n  if (!glyphValidator(name, iconStyle)) {\n    console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for '${iconStyle}' icon type for FontAwesome5`);\n\n    return <RegularIcon {...(props as ComponentProps<typeof RegularIcon>)} />;\n  }\n\n  switch (iconStyle) {\n    case 'brand':\n      return <BrandIcon {...props} />;\n    case 'regular':\n      return <RegularIcon {...props} />;\n    case 'solid':\n      return <SolidIcon {...props} />;\n    default:\n      console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome5`);\n      return <RegularIcon {...(props as ComponentProps<typeof RegularIcon>)} />;\n  }\n};\n\ntype GetImageSourceFunc = {\n  (\n    iconStyle: 'brand',\n    name: ComponentProps<typeof BrandIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof BrandIcon)['getImageSource']>;\n  (\n    iconStyle: 'regular',\n    name: ComponentProps<typeof RegularIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof RegularIcon)['getImageSource']>;\n  (\n    iconStyle: 'solid',\n    name: ComponentProps<typeof SolidIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SolidIcon)['getImageSource']>;\n};\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst getImageSource: GetImageSourceFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => {\n  switch (iconStyle) {\n    case 'brand':\n      return BrandIcon.getImageSource(name as keyof typeof brandGM, size, color);\n    case 'regular':\n      return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color);\n    case 'solid':\n      return SolidIcon.getImageSource(name as keyof typeof solidGM, size, color);\n    default:\n      console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome5`);\n      return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color);\n  }\n};\nFontAwesome5.getImageSource = getImageSource;\n\ntype GetImageSourceSyncFunc = {\n  (\n    iconStyle: 'brand',\n    name: ComponentProps<typeof BrandIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof BrandIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'regular',\n    name: ComponentProps<typeof RegularIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof RegularIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'solid',\n    name: ComponentProps<typeof SolidIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SolidIcon)['getImageSourceSync']>;\n};\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst getImageSourceSync: GetImageSourceSyncFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => {\n  switch (iconStyle) {\n    case 'brand':\n      return BrandIcon.getImageSourceSync(name as keyof typeof brandGM, size, color);\n    case 'regular':\n      return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color);\n    case 'solid':\n      return SolidIcon.getImageSourceSync(name as keyof typeof solidGM, size, color);\n    default:\n      console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome5`);\n      return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color);\n  }\n};\nFontAwesome5.getImageSourceSync = getImageSourceSync;\n\nexport type FontAwesome5IconName = ComponentProps<typeof FontAwesome5>['name'];\n\n/** @alias */\nexport default FontAwesome5;\n"
  },
  {
    "path": "packages/fontawesome5/src/static.tsx",
    "content": "/* eslint-disable react/jsx-pascal-case, no-console */\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * Instead, modify the template in `fontawesome-common/generator`.\n *\n * FontAwesome5 icon set component.\n * Usage: <FontAwesome5 name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport type { ComponentProps } from 'react';\nimport { Platform, type TextStyle } from 'react-native';\n\nimport { createIconSet, DEFAULT_ICON_COLOR, DEFAULT_ICON_SIZE } from '@react-native-vector-icons/common';\n\nimport brandGM from '../glyphmaps/FontAwesome5_brand.json';\nimport regularGM from '../glyphmaps/FontAwesome5_regular.json';\nimport solidGM from '../glyphmaps/FontAwesome5_solid.json';\n\nimport metadata from '../glyphmaps/FontAwesome5_meta.json';\n\nconst glyphValidator = (glyph: string, iconType: keyof typeof metadata) => metadata[iconType]?.includes(glyph);\n\nconst fontStyle = (fontWeight: TextStyle['fontWeight']) =>\n  Platform.select({\n    ios: {\n      fontWeight,\n    },\n    default: {},\n  });\n\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst RegularIcon = createIconSet(regularGM, {\n  postScriptName: 'FontAwesome5Free-Regular',\n  fontFileName: 'FontAwesome5_Regular.ttf',\n  fontStyle: fontStyle('400')\n});\nexport type FontAwesome5RegularIconName = keyof typeof regularGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst SolidIcon = createIconSet(solidGM, {\n  postScriptName: 'FontAwesome5Free-Solid',\n  fontFileName: 'FontAwesome5_Solid.ttf',\n  fontStyle: fontStyle('900')\n});\nexport type FontAwesome5SolidIconName = keyof typeof solidGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst BrandIcon = createIconSet(brandGM, {\n  postScriptName: 'FontAwesome5Brands-Regular',\n  fontFileName: 'FontAwesome5_Brands.ttf',\n  fontStyle: fontStyle('400')\n});\nexport type FontAwesome5BrandIconName = keyof typeof brandGM;\ntype Props =\n  | ({ iconStyle: 'regular' } & ComponentProps<typeof RegularIcon>)\n  | ({ iconStyle: 'solid' } & ComponentProps<typeof SolidIcon>)\n  | ({ iconStyle: 'brand' } & ComponentProps<typeof BrandIcon>)\n  | ({ iconStyle?: never } & ComponentProps<typeof RegularIcon>);\n\nexport const FontAwesome5 = (props: Props) => {\n  const { iconStyle, name } = props;\n  if (!iconStyle) {\n    if (!glyphValidator(name, 'regular')) {\n      console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for 'regular' icon type for FontAwesome5`);\n    }\n    return <RegularIcon {...props} />;\n  }\n\n  if (!glyphValidator(name, iconStyle)) {\n    console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for '${iconStyle}' icon type for FontAwesome5`);\n\n    return <RegularIcon {...(props as ComponentProps<typeof RegularIcon>)} />;\n  }\n\n  switch (iconStyle) {\n    case 'brand':\n      return <BrandIcon {...props} />;\n    case 'regular':\n      return <RegularIcon {...props} />;\n    case 'solid':\n      return <SolidIcon {...props} />;\n    default:\n      console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome5`);\n      return <RegularIcon {...(props as ComponentProps<typeof RegularIcon>)} />;\n  }\n};\n\ntype GetImageSourceFunc = {\n  (\n    iconStyle: 'brand',\n    name: ComponentProps<typeof BrandIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof BrandIcon)['getImageSource']>;\n  (\n    iconStyle: 'regular',\n    name: ComponentProps<typeof RegularIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof RegularIcon)['getImageSource']>;\n  (\n    iconStyle: 'solid',\n    name: ComponentProps<typeof SolidIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SolidIcon)['getImageSource']>;\n};\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst getImageSource: GetImageSourceFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => {\n  switch (iconStyle) {\n    case 'brand':\n      return BrandIcon.getImageSource(name as keyof typeof brandGM, size, color);\n    case 'regular':\n      return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color);\n    case 'solid':\n      return SolidIcon.getImageSource(name as keyof typeof solidGM, size, color);\n    default:\n      console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome5`);\n      return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color);\n  }\n};\nFontAwesome5.getImageSource = getImageSource;\n\ntype GetImageSourceSyncFunc = {\n  (\n    iconStyle: 'brand',\n    name: ComponentProps<typeof BrandIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof BrandIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'regular',\n    name: ComponentProps<typeof RegularIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof RegularIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'solid',\n    name: ComponentProps<typeof SolidIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SolidIcon)['getImageSourceSync']>;\n};\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst getImageSourceSync: GetImageSourceSyncFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => {\n  switch (iconStyle) {\n    case 'brand':\n      return BrandIcon.getImageSourceSync(name as keyof typeof brandGM, size, color);\n    case 'regular':\n      return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color);\n    case 'solid':\n      return SolidIcon.getImageSourceSync(name as keyof typeof solidGM, size, color);\n    default:\n      console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome5`);\n      return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color);\n  }\n};\nFontAwesome5.getImageSourceSync = getImageSourceSync;\n\nexport type FontAwesome5IconName = ComponentProps<typeof FontAwesome5>['name'];\n\n/** @alias */\nexport default FontAwesome5;\n"
  },
  {
    "path": "packages/fontawesome5/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/fontawesome5/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome5-pro/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontawesome5-pro\",\n    \"className\": \"FontAwesome5Pro\",\n    \"commonPackage\": \"fontawesome-common/fontawesome5-pro\",\n    \"customSrc\": \"../../../../fontawesome-common/generators/app/templates/src/index.tsx\",\n    \"copyCustomFonts\": true,\n    \"customReadme\": true,\n    \"upstreamFont\": {\n      \"registry\": \"https://npm.fontawesome.com\",\n      \"packageName\": \"@fortawesome/fontawesome-pro\",\n      \"versionRange\": \"^5\",\n      \"versionOnly\": true\n    },\n    \"dependencies\": {\n      \"@react-native-vector-icons/fontawesome-common\": \"workspace:^\"\n    },\n    \"meta\": {\n      \"defaultStyleName\": \"regular\",\n      \"styleNames\": [\n        \"light\",\n        \"regular\",\n        \"solid\",\n        \"brand\",\n        \"duotone\"\n      ],\n      \"styles\": {\n        \"light\": {\n          \"family\": \"FontAwesome5Pro-Light\",\n          \"name\": \"FontAwesome5_Pro_Light.ttf\",\n          \"weight\": 300\n        },\n        \"regular\": {\n          \"family\": \"FontAwesome5Pro-Regular\",\n          \"name\": \"FontAwesome5_Pro_Regular.ttf\",\n          \"weight\": 400\n        },\n        \"solid\": {\n          \"family\": \"FontAwesome5Pro-Solid\",\n          \"name\": \"FontAwesome5_Pro_Solid.ttf\",\n          \"weight\": 900\n        },\n        \"duotone\": {\n          \"family\": \"FontAwesome5Duotone-Solid\",\n          \"name\": \"FontAwesome5_Pro_Duotone.ttf\",\n          \"weight\": 900\n        },\n        \"brand\": {\n          \"family\": \"FontAwesome5Brands-Regular\",\n          \"name\": \"FontAwesome5_Pro_Brands.ttf\",\n          \"weight\": 400\n        }\n      }\n    },\n    \"buildSteps\": {\n      \"preScript\": {\n        \"script\": \"../fontawesome-common/scripts/fetch-pro.sh 5\"\n      },\n      \"glyphmap\": {\n        \"location\": \"fa/pro/css/all.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fa-\"\n      },\n      \"postScript\": {\n        \"script\": \"node ../fontawesome-common/scripts/generate-fontawesome-metadata --path fa/pro --output glyphmaps/FontAwesome5Pro_meta.json\\nrm -rf fa\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"12.0.0\",\n        \"upstream\": \"5.15.4\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome5-pro/CHANGELOG.md",
    "content": "## 12.4.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/fontawesome-common to 12.4.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.3.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/fontawesome-common to 12.3.2\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 12.3.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/fontawesome-common to 12.3.1\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.3.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 12.3.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/fontawesome-common to 12.3.0\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.2.0 (2025-08-03)\n\n### 🚀 Features\n\n- export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/fontawesome-common to 12.2.0\n- Updated @react-native-vector-icons/common to 12.3.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.1.0 (2025-07-12)\n\n### 🚀 Features\n\n- export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/fontawesome-common to 12.1.0\n- Updated @react-native-vector-icons/common to 12.1.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.2 (2025-06-15)\n\n### 🩹 Fixes\n\n- new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/fontawesome-common to 12.0.2\n- Updated @react-native-vector-icons/common to 12.0.2\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.1 (2025-06-15)\n\n### 🩹 Fixes\n\n- try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745))\n- update fontawesome fonts to new createIcon format so font loads in expo ([#1769](https://github.com/oblador/react-native-vector-icons/pull/1769))\n- remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767))\n- convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765))\n- updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c))\n- improve warning if glyph does not exist for default IconStyle in fontawesome fonts ([#1718](https://github.com/oblador/react-native-vector-icons/pull/1718))\n- **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742))\n- **fontawesome-common,fontawesome5-pro,fontawesome6-pro:** fix FA upgrade scripts (fixes: #1727) ([#1741](https://github.com/oblador/react-native-vector-icons/pull/1741), [#1727](https://github.com/oblador/react-native-vector-icons/issues/1727))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/fontawesome-common to 12.0.1\n- Updated @react-native-vector-icons/common to 12.0.1\n\n### ❤️ Thank You\n\n- Alexander Kucheryavenko @Red1tum\n- John Ferlito @johnf\n- Lukas @WookieFPV\n- Md. Jayed Hasan @JayedHasan232\n\n# 12.0.0 (2025-05-04)\n\n### 🚀 Features\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n- add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702))\n\n### 🩹 Fixes\n\n- upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691))\n- upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690))\n- mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99))\n\n### ⚠️  Breaking Changes\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n\n### ❤️ Thank You\n\n- Chanphirom Sok @chanphiromsok\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontawesome5-pro/README.md",
    "content": "# FontAwesome 5 Pro\n\n## Installing the Pro Fonts\n\nYou need your FontAwesome npm token which can be obtained by logging into your\naccount and then access the `Services` tab.\n\nRun `npx fa-upgrade5` and enter the token\nwhen asked to in order to upgrade to the Pro version. It will install the fonts\nin your repo in the `rnvi-fonts/fontawesome5-pro` directory. The top-level `rnvi-fonts` folder name can be customized by\nsetting it when executing the command: `npx fa-upgrade5 [destination]` and setting the `fontDir` in `package.json`.\n\n### Manually\n\nIf the shell script does not work you can install the Pro version manually.\nAll you really need to do is adding the Pro fonts to the `rnvi-fonts/fontawesome5-pro` directory.\n\n## Usage\n\nUsing the standard icons works just like the standard icons in this library.\n\n```javascript\nimport { FontAwesome5Pro } from \"@react-native-vector-icons/fontawesome5-pro\";\n\nconst icon = <FontAwesome5Pro name=\"comments\" />;\n```\n\nSomething special about the FontAwesome5Pro class is that you can also pass props\nto change the style of the icon:\n\n```javascript\nimport { FontAwesome5Pro } from \"@react-native-vector-icons/fontawesome5-pro\";\n\nconst icon = <FontAwesome5Pro name=\"comments\" iconStyle=\"solid\" />;\nconst icon = <FontAwesome5Pro name=\"git\" iconStyle=\"brand\" />;\n```\n\n**Valid types**\n\n| Type        | Description           |\n| ----------- | --------------------- |\n| **regular** | Uses the Regular font |\n| **brand**   | Uses the Brands font  |\n| **solid**   | Uses the Solid font   |\n| **light**   | Uses the Light font   |\n| **duotone** | Uses the Duotone font |\n\nNo specified type indicates Regular font.\n\n### getImageSource\n\n`getImageSource` works a little different due to its native backend and how the\nfont is separated into different files. An extra argument to specify the font\nstyle is required.\n\nUse this to select which style the generated image should have:\n\n```javascript\nimport { FontAwesome5Pro } from \"@react-native-vector-icons/fontawesome5-pro\";\n\nFontAwesome5Pro.getImageSource(\"solid\", \"comments\", 30, \"#000\").then((source) =>\n  this.setState({ image: source }),\n);\n```\n"
  },
  {
    "path": "packages/fontawesome5-pro/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.fontawesome5_pro\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFontAwesome5Pro\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.fontawesome5_pro\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-fontawesome5-pro\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome5-pro/fonts\"\n  eachFile { println \"(RNVI:fontawesome5-pro) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n\ntask copyExtraFonts(type: Copy) {\n  from \"${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome5-pro\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome5-pro/fonts\"\n  eachFile { println \"(RNVI:fontawesome5-pro) Copying custom font: ${it.file}\" }\n}\n\npreBuild.dependsOn(copyExtraFonts)\n"
  },
  {
    "path": "packages/fontawesome5-pro/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.fontawesome5_pro\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome5-pro/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome5-pro/android/src/main/java/VectorIconsFontAwesome5ProPackage.kt",
    "content": "package com.reactnativevectoricons.fontawesome5_pro\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFontAwesome5ProPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/fontawesome5-pro/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/fontawesome5-pro/glyphmaps/FontAwesome5Pro.json",
    "content": "{\n  \"500px\": 62062,\n  \"abacus\": 63040,\n  \"accessible-icon\": 62312,\n  \"accusoft\": 62313,\n  \"acorn\": 63150,\n  \"acquisitions-incorporated\": 63151,\n  \"ad\": 63041,\n  \"address-book\": 62137,\n  \"address-card\": 62139,\n  \"adjust\": 61506,\n  \"adn\": 61808,\n  \"adversal\": 62314,\n  \"affiliatetheme\": 62315,\n  \"air-conditioner\": 63732,\n  \"air-freshener\": 62928,\n  \"airbnb\": 63540,\n  \"alarm-clock\": 62286,\n  \"alarm-exclamation\": 63555,\n  \"alarm-plus\": 63556,\n  \"alarm-snooze\": 63557,\n  \"album\": 63647,\n  \"album-collection\": 63648,\n  \"algolia\": 62316,\n  \"alicorn\": 63152,\n  \"alien\": 63733,\n  \"alien-monster\": 63734,\n  \"align-center\": 61495,\n  \"align-justify\": 61497,\n  \"align-left\": 61494,\n  \"align-right\": 61496,\n  \"align-slash\": 63558,\n  \"alipay\": 63042,\n  \"allergies\": 62561,\n  \"amazon\": 62064,\n  \"amazon-pay\": 62508,\n  \"ambulance\": 61689,\n  \"american-sign-language-interpreting\": 62115,\n  \"amilia\": 62317,\n  \"amp-guitar\": 63649,\n  \"analytics\": 63043,\n  \"anchor\": 61757,\n  \"android\": 61819,\n  \"angel\": 63353,\n  \"angellist\": 61961,\n  \"angle-double-down\": 61699,\n  \"angle-double-left\": 61696,\n  \"angle-double-right\": 61697,\n  \"angle-double-up\": 61698,\n  \"angle-down\": 61703,\n  \"angle-left\": 61700,\n  \"angle-right\": 61701,\n  \"angle-up\": 61702,\n  \"angry\": 62806,\n  \"angrycreative\": 62318,\n  \"angular\": 62496,\n  \"ankh\": 63044,\n  \"app-store\": 62319,\n  \"app-store-ios\": 62320,\n  \"apper\": 62321,\n  \"apple\": 61817,\n  \"apple-alt\": 62929,\n  \"apple-crate\": 63153,\n  \"apple-pay\": 62485,\n  \"archive\": 61831,\n  \"archway\": 62807,\n  \"arrow-alt-circle-down\": 62296,\n  \"arrow-alt-circle-left\": 62297,\n  \"arrow-alt-circle-right\": 62298,\n  \"arrow-alt-circle-up\": 62299,\n  \"arrow-alt-down\": 62292,\n  \"arrow-alt-from-bottom\": 62278,\n  \"arrow-alt-from-left\": 62279,\n  \"arrow-alt-from-right\": 62280,\n  \"arrow-alt-from-top\": 62281,\n  \"arrow-alt-left\": 62293,\n  \"arrow-alt-right\": 62294,\n  \"arrow-alt-square-down\": 62288,\n  \"arrow-alt-square-left\": 62289,\n  \"arrow-alt-square-right\": 62290,\n  \"arrow-alt-square-up\": 62291,\n  \"arrow-alt-to-bottom\": 62282,\n  \"arrow-alt-to-left\": 62283,\n  \"arrow-alt-to-right\": 62284,\n  \"arrow-alt-to-top\": 62285,\n  \"arrow-alt-up\": 62295,\n  \"arrow-circle-down\": 61611,\n  \"arrow-circle-left\": 61608,\n  \"arrow-circle-right\": 61609,\n  \"arrow-circle-up\": 61610,\n  \"arrow-down\": 61539,\n  \"arrow-from-bottom\": 62274,\n  \"arrow-from-left\": 62275,\n  \"arrow-from-right\": 62276,\n  \"arrow-from-top\": 62277,\n  \"arrow-left\": 61536,\n  \"arrow-right\": 61537,\n  \"arrow-square-down\": 62265,\n  \"arrow-square-left\": 62266,\n  \"arrow-square-right\": 62267,\n  \"arrow-square-up\": 62268,\n  \"arrow-to-bottom\": 62269,\n  \"arrow-to-left\": 62270,\n  \"arrow-to-right\": 62272,\n  \"arrow-to-top\": 62273,\n  \"arrow-up\": 61538,\n  \"arrows\": 61511,\n  \"arrows-alt\": 61618,\n  \"arrows-alt-h\": 62263,\n  \"arrows-alt-v\": 62264,\n  \"arrows-h\": 61566,\n  \"arrows-v\": 61565,\n  \"artstation\": 63354,\n  \"assistive-listening-systems\": 62114,\n  \"asterisk\": 61545,\n  \"asymmetrik\": 62322,\n  \"at\": 61946,\n  \"atlas\": 62808,\n  \"atlassian\": 63355,\n  \"atom\": 62930,\n  \"atom-alt\": 62931,\n  \"audible\": 62323,\n  \"audio-description\": 62110,\n  \"autoprefixer\": 62492,\n  \"avianex\": 62324,\n  \"aviato\": 62497,\n  \"award\": 62809,\n  \"aws\": 62325,\n  \"axe\": 63154,\n  \"axe-battle\": 63155,\n  \"baby\": 63356,\n  \"baby-carriage\": 63357,\n  \"backpack\": 62932,\n  \"backspace\": 62810,\n  \"backward\": 61514,\n  \"bacon\": 63461,\n  \"bacteria\": 57433,\n  \"bacterium\": 57434,\n  \"badge\": 62261,\n  \"badge-check\": 62262,\n  \"badge-dollar\": 63045,\n  \"badge-percent\": 63046,\n  \"badge-sheriff\": 63650,\n  \"badger-honey\": 63156,\n  \"bags-shopping\": 63559,\n  \"bahai\": 63078,\n  \"balance-scale\": 62030,\n  \"balance-scale-left\": 62741,\n  \"balance-scale-right\": 62742,\n  \"ball-pile\": 63358,\n  \"ballot\": 63282,\n  \"ballot-check\": 63283,\n  \"ban\": 61534,\n  \"band-aid\": 62562,\n  \"bandcamp\": 62165,\n  \"banjo\": 63651,\n  \"barcode\": 61482,\n  \"barcode-alt\": 62563,\n  \"barcode-read\": 62564,\n  \"barcode-scan\": 62565,\n  \"bars\": 61641,\n  \"baseball\": 62514,\n  \"baseball-ball\": 62515,\n  \"basketball-ball\": 62516,\n  \"basketball-hoop\": 62517,\n  \"bat\": 63157,\n  \"bath\": 62157,\n  \"battery-bolt\": 62326,\n  \"battery-empty\": 62020,\n  \"battery-full\": 62016,\n  \"battery-half\": 62018,\n  \"battery-quarter\": 62019,\n  \"battery-slash\": 62327,\n  \"battery-three-quarters\": 62017,\n  \"battle-net\": 63541,\n  \"bed\": 62006,\n  \"bed-alt\": 63735,\n  \"bed-bunk\": 63736,\n  \"bed-empty\": 63737,\n  \"beer\": 61692,\n  \"behance\": 61876,\n  \"behance-square\": 61877,\n  \"bell\": 61683,\n  \"bell-exclamation\": 63560,\n  \"bell-on\": 63738,\n  \"bell-plus\": 63561,\n  \"bell-school\": 62933,\n  \"bell-school-slash\": 62934,\n  \"bell-slash\": 61942,\n  \"bells\": 63359,\n  \"betamax\": 63652,\n  \"bezier-curve\": 62811,\n  \"bible\": 63047,\n  \"bicycle\": 61958,\n  \"biking\": 63562,\n  \"biking-mountain\": 63563,\n  \"bimobject\": 62328,\n  \"binoculars\": 61925,\n  \"biohazard\": 63360,\n  \"birthday-cake\": 61949,\n  \"bitbucket\": 61809,\n  \"bitcoin\": 62329,\n  \"bity\": 62330,\n  \"black-tie\": 62078,\n  \"blackberry\": 62331,\n  \"blanket\": 62616,\n  \"blender\": 62743,\n  \"blender-phone\": 63158,\n  \"blind\": 62109,\n  \"blinds\": 63739,\n  \"blinds-open\": 63740,\n  \"blinds-raised\": 63741,\n  \"blog\": 63361,\n  \"blogger\": 62332,\n  \"blogger-b\": 62333,\n  \"bluetooth\": 62099,\n  \"bluetooth-b\": 62100,\n  \"bold\": 61490,\n  \"bolt\": 61671,\n  \"bomb\": 61922,\n  \"bone\": 62935,\n  \"bone-break\": 62936,\n  \"bong\": 62812,\n  \"book\": 61485,\n  \"book-alt\": 62937,\n  \"book-dead\": 63159,\n  \"book-heart\": 62617,\n  \"book-medical\": 63462,\n  \"book-open\": 62744,\n  \"book-reader\": 62938,\n  \"book-spells\": 63160,\n  \"book-user\": 63463,\n  \"bookmark\": 61486,\n  \"books\": 62939,\n  \"books-medical\": 63464,\n  \"boombox\": 63653,\n  \"boot\": 63362,\n  \"booth-curtain\": 63284,\n  \"bootstrap\": 63542,\n  \"border-all\": 63564,\n  \"border-bottom\": 63565,\n  \"border-center-h\": 63644,\n  \"border-center-v\": 63645,\n  \"border-inner\": 63566,\n  \"border-left\": 63567,\n  \"border-none\": 63568,\n  \"border-outer\": 63569,\n  \"border-right\": 63570,\n  \"border-style\": 63571,\n  \"border-style-alt\": 63572,\n  \"border-top\": 63573,\n  \"bow-arrow\": 63161,\n  \"bowling-ball\": 62518,\n  \"bowling-pins\": 62519,\n  \"box\": 62566,\n  \"box-alt\": 62618,\n  \"box-ballot\": 63285,\n  \"box-check\": 62567,\n  \"box-fragile\": 62619,\n  \"box-full\": 62620,\n  \"box-heart\": 62621,\n  \"box-open\": 62622,\n  \"box-tissue\": 57435,\n  \"box-up\": 62623,\n  \"box-usd\": 62624,\n  \"boxes\": 62568,\n  \"boxes-alt\": 62625,\n  \"boxing-glove\": 62520,\n  \"brackets\": 63465,\n  \"brackets-curly\": 63466,\n  \"braille\": 62113,\n  \"brain\": 62940,\n  \"bread-loaf\": 63467,\n  \"bread-slice\": 63468,\n  \"briefcase\": 61617,\n  \"briefcase-medical\": 62569,\n  \"bring-forward\": 63574,\n  \"bring-front\": 63575,\n  \"broadcast-tower\": 62745,\n  \"broom\": 62746,\n  \"browser\": 62334,\n  \"brush\": 62813,\n  \"btc\": 61786,\n  \"buffer\": 63543,\n  \"bug\": 61832,\n  \"building\": 61869,\n  \"bullhorn\": 61601,\n  \"bullseye\": 61760,\n  \"bullseye-arrow\": 63048,\n  \"bullseye-pointer\": 63049,\n  \"burger-soda\": 63576,\n  \"burn\": 62570,\n  \"buromobelexperte\": 62335,\n  \"burrito\": 63469,\n  \"bus\": 61959,\n  \"bus-alt\": 62814,\n  \"bus-school\": 62941,\n  \"business-time\": 63050,\n  \"buy-n-large\": 63654,\n  \"buysellads\": 61965,\n  \"cabinet-filing\": 63051,\n  \"cactus\": 63655,\n  \"calculator\": 61932,\n  \"calculator-alt\": 63052,\n  \"calendar\": 61747,\n  \"calendar-alt\": 61555,\n  \"calendar-check\": 62068,\n  \"calendar-day\": 63363,\n  \"calendar-edit\": 62259,\n  \"calendar-exclamation\": 62260,\n  \"calendar-minus\": 62066,\n  \"calendar-plus\": 62065,\n  \"calendar-star\": 63286,\n  \"calendar-times\": 62067,\n  \"calendar-week\": 63364,\n  \"camcorder\": 63656,\n  \"camera\": 61488,\n  \"camera-alt\": 62258,\n  \"camera-home\": 63742,\n  \"camera-movie\": 63657,\n  \"camera-polaroid\": 63658,\n  \"camera-retro\": 61571,\n  \"campfire\": 63162,\n  \"campground\": 63163,\n  \"canadian-maple-leaf\": 63365,\n  \"candle-holder\": 63164,\n  \"candy-cane\": 63366,\n  \"candy-corn\": 63165,\n  \"cannabis\": 62815,\n  \"capsules\": 62571,\n  \"car\": 61881,\n  \"car-alt\": 62942,\n  \"car-battery\": 62943,\n  \"car-building\": 63577,\n  \"car-bump\": 62944,\n  \"car-bus\": 63578,\n  \"car-crash\": 62945,\n  \"car-garage\": 62946,\n  \"car-mechanic\": 62947,\n  \"car-side\": 62948,\n  \"car-tilt\": 62949,\n  \"car-wash\": 62950,\n  \"caravan\": 63743,\n  \"caravan-alt\": 57344,\n  \"caret-circle-down\": 62253,\n  \"caret-circle-left\": 62254,\n  \"caret-circle-right\": 62256,\n  \"caret-circle-up\": 62257,\n  \"caret-down\": 61655,\n  \"caret-left\": 61657,\n  \"caret-right\": 61658,\n  \"caret-square-down\": 61776,\n  \"caret-square-left\": 61841,\n  \"caret-square-right\": 61778,\n  \"caret-square-up\": 61777,\n  \"caret-up\": 61656,\n  \"carrot\": 63367,\n  \"cars\": 63579,\n  \"cart-arrow-down\": 61976,\n  \"cart-plus\": 61975,\n  \"cash-register\": 63368,\n  \"cassette-tape\": 63659,\n  \"cat\": 63166,\n  \"cat-space\": 57345,\n  \"cauldron\": 63167,\n  \"cc-amazon-pay\": 62509,\n  \"cc-amex\": 61939,\n  \"cc-apple-pay\": 62486,\n  \"cc-diners-club\": 62028,\n  \"cc-discover\": 61938,\n  \"cc-jcb\": 62027,\n  \"cc-mastercard\": 61937,\n  \"cc-paypal\": 61940,\n  \"cc-stripe\": 61941,\n  \"cc-visa\": 61936,\n  \"cctv\": 63660,\n  \"centercode\": 62336,\n  \"centos\": 63369,\n  \"certificate\": 61603,\n  \"chair\": 63168,\n  \"chair-office\": 63169,\n  \"chalkboard\": 62747,\n  \"chalkboard-teacher\": 62748,\n  \"charging-station\": 62951,\n  \"chart-area\": 61950,\n  \"chart-bar\": 61568,\n  \"chart-line\": 61953,\n  \"chart-line-down\": 63053,\n  \"chart-network\": 63370,\n  \"chart-pie\": 61952,\n  \"chart-pie-alt\": 63054,\n  \"chart-scatter\": 63470,\n  \"check\": 61452,\n  \"check-circle\": 61528,\n  \"check-double\": 62816,\n  \"check-square\": 61770,\n  \"cheese\": 63471,\n  \"cheese-swiss\": 63472,\n  \"cheeseburger\": 63473,\n  \"chess\": 62521,\n  \"chess-bishop\": 62522,\n  \"chess-bishop-alt\": 62523,\n  \"chess-board\": 62524,\n  \"chess-clock\": 62525,\n  \"chess-clock-alt\": 62526,\n  \"chess-king\": 62527,\n  \"chess-king-alt\": 62528,\n  \"chess-knight\": 62529,\n  \"chess-knight-alt\": 62530,\n  \"chess-pawn\": 62531,\n  \"chess-pawn-alt\": 62532,\n  \"chess-queen\": 62533,\n  \"chess-queen-alt\": 62534,\n  \"chess-rook\": 62535,\n  \"chess-rook-alt\": 62536,\n  \"chevron-circle-down\": 61754,\n  \"chevron-circle-left\": 61751,\n  \"chevron-circle-right\": 61752,\n  \"chevron-circle-up\": 61753,\n  \"chevron-double-down\": 62242,\n  \"chevron-double-left\": 62243,\n  \"chevron-double-right\": 62244,\n  \"chevron-double-up\": 62245,\n  \"chevron-down\": 61560,\n  \"chevron-left\": 61523,\n  \"chevron-right\": 61524,\n  \"chevron-square-down\": 62249,\n  \"chevron-square-left\": 62250,\n  \"chevron-square-right\": 62251,\n  \"chevron-square-up\": 62252,\n  \"chevron-up\": 61559,\n  \"child\": 61870,\n  \"chimney\": 63371,\n  \"chrome\": 62056,\n  \"chromecast\": 63544,\n  \"church\": 62749,\n  \"circle\": 61713,\n  \"circle-notch\": 61902,\n  \"city\": 63055,\n  \"clarinet\": 63661,\n  \"claw-marks\": 63170,\n  \"clinic-medical\": 63474,\n  \"clipboard\": 62248,\n  \"clipboard-check\": 62572,\n  \"clipboard-list\": 62573,\n  \"clipboard-list-check\": 63287,\n  \"clipboard-prescription\": 62952,\n  \"clipboard-user\": 63475,\n  \"clock\": 61463,\n  \"clone\": 62029,\n  \"closed-captioning\": 61962,\n  \"cloud\": 61634,\n  \"cloud-download\": 61677,\n  \"cloud-download-alt\": 62337,\n  \"cloud-drizzle\": 63288,\n  \"cloud-hail\": 63289,\n  \"cloud-hail-mixed\": 63290,\n  \"cloud-meatball\": 63291,\n  \"cloud-moon\": 63171,\n  \"cloud-moon-rain\": 63292,\n  \"cloud-music\": 63662,\n  \"cloud-rain\": 63293,\n  \"cloud-rainbow\": 63294,\n  \"cloud-showers\": 63295,\n  \"cloud-showers-heavy\": 63296,\n  \"cloud-sleet\": 63297,\n  \"cloud-snow\": 63298,\n  \"cloud-sun\": 63172,\n  \"cloud-sun-rain\": 63299,\n  \"cloud-upload\": 61678,\n  \"cloud-upload-alt\": 62338,\n  \"cloudflare\": 57469,\n  \"clouds\": 63300,\n  \"clouds-moon\": 63301,\n  \"clouds-sun\": 63302,\n  \"cloudscale\": 62339,\n  \"cloudsmith\": 62340,\n  \"cloudversify\": 62341,\n  \"club\": 62247,\n  \"cocktail\": 62817,\n  \"code\": 61729,\n  \"code-branch\": 61734,\n  \"code-commit\": 62342,\n  \"code-merge\": 62343,\n  \"codepen\": 61899,\n  \"codiepie\": 62084,\n  \"coffee\": 61684,\n  \"coffee-pot\": 57346,\n  \"coffee-togo\": 63173,\n  \"coffin\": 63174,\n  \"coffin-cross\": 57425,\n  \"cog\": 61459,\n  \"cogs\": 61573,\n  \"coin\": 63580,\n  \"coins\": 62750,\n  \"columns\": 61659,\n  \"comet\": 57347,\n  \"comment\": 61557,\n  \"comment-alt\": 62074,\n  \"comment-alt-check\": 62626,\n  \"comment-alt-dollar\": 63056,\n  \"comment-alt-dots\": 62627,\n  \"comment-alt-edit\": 62628,\n  \"comment-alt-exclamation\": 62629,\n  \"comment-alt-lines\": 62630,\n  \"comment-alt-medical\": 63476,\n  \"comment-alt-minus\": 62631,\n  \"comment-alt-music\": 63663,\n  \"comment-alt-plus\": 62632,\n  \"comment-alt-slash\": 62633,\n  \"comment-alt-smile\": 62634,\n  \"comment-alt-times\": 62635,\n  \"comment-check\": 62636,\n  \"comment-dollar\": 63057,\n  \"comment-dots\": 62637,\n  \"comment-edit\": 62638,\n  \"comment-exclamation\": 62639,\n  \"comment-lines\": 62640,\n  \"comment-medical\": 63477,\n  \"comment-minus\": 62641,\n  \"comment-music\": 63664,\n  \"comment-plus\": 62642,\n  \"comment-slash\": 62643,\n  \"comment-smile\": 62644,\n  \"comment-times\": 62645,\n  \"comments\": 61574,\n  \"comments-alt\": 62646,\n  \"comments-alt-dollar\": 63058,\n  \"comments-dollar\": 63059,\n  \"compact-disc\": 62751,\n  \"compass\": 61774,\n  \"compass-slash\": 62953,\n  \"compress\": 61542,\n  \"compress-alt\": 62498,\n  \"compress-arrows-alt\": 63372,\n  \"compress-wide\": 62246,\n  \"computer-classic\": 63665,\n  \"computer-speaker\": 63666,\n  \"concierge-bell\": 62818,\n  \"confluence\": 63373,\n  \"connectdevelop\": 61966,\n  \"construction\": 63581,\n  \"container-storage\": 62647,\n  \"contao\": 62061,\n  \"conveyor-belt\": 62574,\n  \"conveyor-belt-alt\": 62575,\n  \"cookie\": 62819,\n  \"cookie-bite\": 62820,\n  \"copy\": 61637,\n  \"copyright\": 61945,\n  \"corn\": 63175,\n  \"cotton-bureau\": 63646,\n  \"couch\": 62648,\n  \"cow\": 63176,\n  \"cowbell\": 63667,\n  \"cowbell-more\": 63668,\n  \"cpanel\": 62344,\n  \"creative-commons\": 62046,\n  \"creative-commons-by\": 62695,\n  \"creative-commons-nc\": 62696,\n  \"creative-commons-nc-eu\": 62697,\n  \"creative-commons-nc-jp\": 62698,\n  \"creative-commons-nd\": 62699,\n  \"creative-commons-pd\": 62700,\n  \"creative-commons-pd-alt\": 62701,\n  \"creative-commons-remix\": 62702,\n  \"creative-commons-sa\": 62703,\n  \"creative-commons-sampling\": 62704,\n  \"creative-commons-sampling-plus\": 62705,\n  \"creative-commons-share\": 62706,\n  \"creative-commons-zero\": 62707,\n  \"credit-card\": 61597,\n  \"credit-card-blank\": 62345,\n  \"credit-card-front\": 62346,\n  \"cricket\": 62537,\n  \"critical-role\": 63177,\n  \"croissant\": 63478,\n  \"crop\": 61733,\n  \"crop-alt\": 62821,\n  \"cross\": 63060,\n  \"crosshairs\": 61531,\n  \"crow\": 62752,\n  \"crown\": 62753,\n  \"crutch\": 63479,\n  \"crutches\": 63480,\n  \"css3\": 61756,\n  \"css3-alt\": 62347,\n  \"cube\": 61874,\n  \"cubes\": 61875,\n  \"curling\": 62538,\n  \"cut\": 61636,\n  \"cuttlefish\": 62348,\n  \"d-and-d\": 62349,\n  \"d-and-d-beyond\": 63178,\n  \"dagger\": 63179,\n  \"dailymotion\": 57426,\n  \"dashcube\": 61968,\n  \"database\": 61888,\n  \"deaf\": 62116,\n  \"debug\": 63481,\n  \"deer\": 63374,\n  \"deer-rudolph\": 63375,\n  \"deezer\": 57463,\n  \"delicious\": 61861,\n  \"democrat\": 63303,\n  \"deploydog\": 62350,\n  \"deskpro\": 62351,\n  \"desktop\": 61704,\n  \"desktop-alt\": 62352,\n  \"dev\": 63180,\n  \"deviantart\": 61885,\n  \"dewpoint\": 63304,\n  \"dharmachakra\": 63061,\n  \"dhl\": 63376,\n  \"diagnoses\": 62576,\n  \"diamond\": 61977,\n  \"diaspora\": 63377,\n  \"dice\": 62754,\n  \"dice-d10\": 63181,\n  \"dice-d12\": 63182,\n  \"dice-d20\": 63183,\n  \"dice-d4\": 63184,\n  \"dice-d6\": 63185,\n  \"dice-d8\": 63186,\n  \"dice-five\": 62755,\n  \"dice-four\": 62756,\n  \"dice-one\": 62757,\n  \"dice-six\": 62758,\n  \"dice-three\": 62759,\n  \"dice-two\": 62760,\n  \"digg\": 61862,\n  \"digging\": 63582,\n  \"digital-ocean\": 62353,\n  \"digital-tachograph\": 62822,\n  \"diploma\": 62954,\n  \"directions\": 62955,\n  \"disc-drive\": 63669,\n  \"discord\": 62354,\n  \"discourse\": 62355,\n  \"disease\": 63482,\n  \"divide\": 62761,\n  \"dizzy\": 62823,\n  \"dna\": 62577,\n  \"do-not-enter\": 62956,\n  \"dochub\": 62356,\n  \"docker\": 62357,\n  \"dog\": 63187,\n  \"dog-leashed\": 63188,\n  \"dollar-sign\": 61781,\n  \"dolly\": 62578,\n  \"dolly-empty\": 62579,\n  \"dolly-flatbed\": 62580,\n  \"dolly-flatbed-alt\": 62581,\n  \"dolly-flatbed-empty\": 62582,\n  \"donate\": 62649,\n  \"door-closed\": 62762,\n  \"door-open\": 62763,\n  \"dot-circle\": 61842,\n  \"dove\": 62650,\n  \"download\": 61465,\n  \"draft2digital\": 62358,\n  \"drafting-compass\": 62824,\n  \"dragon\": 63189,\n  \"draw-circle\": 62957,\n  \"draw-polygon\": 62958,\n  \"draw-square\": 62959,\n  \"dreidel\": 63378,\n  \"dribbble\": 61821,\n  \"dribbble-square\": 62359,\n  \"drone\": 63583,\n  \"drone-alt\": 63584,\n  \"dropbox\": 61803,\n  \"drum\": 62825,\n  \"drum-steelpan\": 62826,\n  \"drumstick\": 63190,\n  \"drumstick-bite\": 63191,\n  \"drupal\": 61865,\n  \"dryer\": 63585,\n  \"dryer-alt\": 63586,\n  \"duck\": 63192,\n  \"dumbbell\": 62539,\n  \"dumpster\": 63379,\n  \"dumpster-fire\": 63380,\n  \"dungeon\": 63193,\n  \"dyalog\": 62361,\n  \"ear\": 62960,\n  \"ear-muffs\": 63381,\n  \"earlybirds\": 62362,\n  \"ebay\": 62708,\n  \"eclipse\": 63305,\n  \"eclipse-alt\": 63306,\n  \"edge\": 62082,\n  \"edge-legacy\": 57464,\n  \"edit\": 61508,\n  \"egg\": 63483,\n  \"egg-fried\": 63484,\n  \"eject\": 61522,\n  \"elementor\": 62512,\n  \"elephant\": 63194,\n  \"ellipsis-h\": 61761,\n  \"ellipsis-h-alt\": 62363,\n  \"ellipsis-v\": 61762,\n  \"ellipsis-v-alt\": 62364,\n  \"ello\": 62961,\n  \"ember\": 62499,\n  \"empire\": 61905,\n  \"empty-set\": 63062,\n  \"engine-warning\": 62962,\n  \"envelope\": 61664,\n  \"envelope-open\": 62134,\n  \"envelope-open-dollar\": 63063,\n  \"envelope-open-text\": 63064,\n  \"envelope-square\": 61849,\n  \"envira\": 62105,\n  \"equals\": 62764,\n  \"eraser\": 61741,\n  \"erlang\": 62365,\n  \"ethereum\": 62510,\n  \"ethernet\": 63382,\n  \"etsy\": 62167,\n  \"euro-sign\": 61779,\n  \"evernote\": 63545,\n  \"exchange\": 61676,\n  \"exchange-alt\": 62306,\n  \"exclamation\": 61738,\n  \"exclamation-circle\": 61546,\n  \"exclamation-square\": 62241,\n  \"exclamation-triangle\": 61553,\n  \"expand\": 61541,\n  \"expand-alt\": 62500,\n  \"expand-arrows\": 62237,\n  \"expand-arrows-alt\": 62238,\n  \"expand-wide\": 62240,\n  \"expeditedssl\": 62014,\n  \"external-link\": 61582,\n  \"external-link-alt\": 62301,\n  \"external-link-square\": 61772,\n  \"external-link-square-alt\": 62304,\n  \"eye\": 61550,\n  \"eye-dropper\": 61947,\n  \"eye-evil\": 63195,\n  \"eye-slash\": 61552,\n  \"facebook\": 61594,\n  \"facebook-f\": 62366,\n  \"facebook-messenger\": 62367,\n  \"facebook-square\": 61570,\n  \"fan\": 63587,\n  \"fan-table\": 57348,\n  \"fantasy-flight-games\": 63196,\n  \"farm\": 63588,\n  \"fast-backward\": 61513,\n  \"fast-forward\": 61520,\n  \"faucet\": 57349,\n  \"faucet-drip\": 57350,\n  \"fax\": 61868,\n  \"feather\": 62765,\n  \"feather-alt\": 62827,\n  \"fedex\": 63383,\n  \"fedora\": 63384,\n  \"female\": 61826,\n  \"field-hockey\": 62540,\n  \"fighter-jet\": 61691,\n  \"figma\": 63385,\n  \"file\": 61787,\n  \"file-alt\": 61788,\n  \"file-archive\": 61894,\n  \"file-audio\": 61895,\n  \"file-certificate\": 62963,\n  \"file-chart-line\": 63065,\n  \"file-chart-pie\": 63066,\n  \"file-check\": 62230,\n  \"file-code\": 61897,\n  \"file-contract\": 62828,\n  \"file-csv\": 63197,\n  \"file-download\": 62829,\n  \"file-edit\": 62236,\n  \"file-excel\": 61891,\n  \"file-exclamation\": 62234,\n  \"file-export\": 62830,\n  \"file-image\": 61893,\n  \"file-import\": 62831,\n  \"file-invoice\": 62832,\n  \"file-invoice-dollar\": 62833,\n  \"file-medical\": 62583,\n  \"file-medical-alt\": 62584,\n  \"file-minus\": 62232,\n  \"file-music\": 63670,\n  \"file-pdf\": 61889,\n  \"file-plus\": 62233,\n  \"file-powerpoint\": 61892,\n  \"file-prescription\": 62834,\n  \"file-search\": 63589,\n  \"file-signature\": 62835,\n  \"file-spreadsheet\": 63067,\n  \"file-times\": 62231,\n  \"file-upload\": 62836,\n  \"file-user\": 63068,\n  \"file-video\": 61896,\n  \"file-word\": 61890,\n  \"files-medical\": 63485,\n  \"fill\": 62837,\n  \"fill-drip\": 62838,\n  \"film\": 61448,\n  \"film-alt\": 62368,\n  \"film-canister\": 63671,\n  \"filter\": 61616,\n  \"fingerprint\": 62839,\n  \"fire\": 61549,\n  \"fire-alt\": 63460,\n  \"fire-extinguisher\": 61748,\n  \"fire-smoke\": 63307,\n  \"firefox\": 62057,\n  \"firefox-browser\": 57351,\n  \"fireplace\": 63386,\n  \"first-aid\": 62585,\n  \"first-order\": 62128,\n  \"first-order-alt\": 62730,\n  \"firstdraft\": 62369,\n  \"fish\": 62840,\n  \"fish-cooked\": 63486,\n  \"fist-raised\": 63198,\n  \"flag\": 61476,\n  \"flag-alt\": 63308,\n  \"flag-checkered\": 61726,\n  \"flag-usa\": 63309,\n  \"flame\": 63199,\n  \"flashlight\": 63672,\n  \"flask\": 61635,\n  \"flask-poison\": 63200,\n  \"flask-potion\": 63201,\n  \"flickr\": 61806,\n  \"flipboard\": 62541,\n  \"flower\": 63487,\n  \"flower-daffodil\": 63488,\n  \"flower-tulip\": 63489,\n  \"flushed\": 62841,\n  \"flute\": 63673,\n  \"flux-capacitor\": 63674,\n  \"fly\": 62487,\n  \"fog\": 63310,\n  \"folder\": 61563,\n  \"folder-download\": 57427,\n  \"folder-minus\": 63069,\n  \"folder-open\": 61564,\n  \"folder-plus\": 63070,\n  \"folder-times\": 63071,\n  \"folder-tree\": 63490,\n  \"folder-upload\": 57428,\n  \"folders\": 63072,\n  \"font\": 61489,\n  \"font-awesome\": 62132,\n  \"font-awesome-alt\": 62300,\n  \"font-awesome-flag\": 62501,\n  \"font-awesome-logo-full\": 62694,\n  \"font-case\": 63590,\n  \"fonticons\": 62080,\n  \"fonticons-fi\": 62370,\n  \"football-ball\": 62542,\n  \"football-helmet\": 62543,\n  \"forklift\": 62586,\n  \"fort-awesome\": 62086,\n  \"fort-awesome-alt\": 62371,\n  \"forumbee\": 61969,\n  \"forward\": 61518,\n  \"foursquare\": 61824,\n  \"fragile\": 62651,\n  \"free-code-camp\": 62149,\n  \"freebsd\": 62372,\n  \"french-fries\": 63491,\n  \"frog\": 62766,\n  \"frosty-head\": 63387,\n  \"frown\": 61721,\n  \"frown-open\": 62842,\n  \"fulcrum\": 62731,\n  \"function\": 63073,\n  \"funnel-dollar\": 63074,\n  \"futbol\": 61923,\n  \"galactic-republic\": 62732,\n  \"galactic-senate\": 62733,\n  \"galaxy\": 57352,\n  \"game-board\": 63591,\n  \"game-board-alt\": 63592,\n  \"game-console-handheld\": 63675,\n  \"gamepad\": 61723,\n  \"gamepad-alt\": 63676,\n  \"garage\": 57353,\n  \"garage-car\": 57354,\n  \"garage-open\": 57355,\n  \"gas-pump\": 62767,\n  \"gas-pump-slash\": 62964,\n  \"gavel\": 61667,\n  \"gem\": 62373,\n  \"genderless\": 61997,\n  \"get-pocket\": 62053,\n  \"gg\": 62048,\n  \"gg-circle\": 62049,\n  \"ghost\": 63202,\n  \"gift\": 61547,\n  \"gift-card\": 63075,\n  \"gifts\": 63388,\n  \"gingerbread-man\": 63389,\n  \"git\": 61907,\n  \"git-alt\": 63553,\n  \"git-square\": 61906,\n  \"github\": 61595,\n  \"github-alt\": 61715,\n  \"github-square\": 61586,\n  \"gitkraken\": 62374,\n  \"gitlab\": 62102,\n  \"gitter\": 62502,\n  \"glass\": 63492,\n  \"glass-champagne\": 63390,\n  \"glass-cheers\": 63391,\n  \"glass-citrus\": 63593,\n  \"glass-martini\": 61440,\n  \"glass-martini-alt\": 62843,\n  \"glass-whiskey\": 63392,\n  \"glass-whiskey-rocks\": 63393,\n  \"glasses\": 62768,\n  \"glasses-alt\": 62965,\n  \"glide\": 62117,\n  \"glide-g\": 62118,\n  \"globe\": 61612,\n  \"globe-africa\": 62844,\n  \"globe-americas\": 62845,\n  \"globe-asia\": 62846,\n  \"globe-europe\": 63394,\n  \"globe-snow\": 63395,\n  \"globe-stand\": 62966,\n  \"gofore\": 62375,\n  \"golf-ball\": 62544,\n  \"golf-club\": 62545,\n  \"goodreads\": 62376,\n  \"goodreads-g\": 62377,\n  \"google\": 61856,\n  \"google-drive\": 62378,\n  \"google-pay\": 57465,\n  \"google-play\": 62379,\n  \"google-plus\": 62131,\n  \"google-plus-g\": 61653,\n  \"google-plus-square\": 61652,\n  \"google-wallet\": 61934,\n  \"gopuram\": 63076,\n  \"graduation-cap\": 61853,\n  \"gramophone\": 63677,\n  \"gratipay\": 61828,\n  \"grav\": 62166,\n  \"greater-than\": 62769,\n  \"greater-than-equal\": 62770,\n  \"grimace\": 62847,\n  \"grin\": 62848,\n  \"grin-alt\": 62849,\n  \"grin-beam\": 62850,\n  \"grin-beam-sweat\": 62851,\n  \"grin-hearts\": 62852,\n  \"grin-squint\": 62853,\n  \"grin-squint-tears\": 62854,\n  \"grin-stars\": 62855,\n  \"grin-tears\": 62856,\n  \"grin-tongue\": 62857,\n  \"grin-tongue-squint\": 62858,\n  \"grin-tongue-wink\": 62859,\n  \"grin-wink\": 62860,\n  \"grip-horizontal\": 62861,\n  \"grip-lines\": 63396,\n  \"grip-lines-vertical\": 63397,\n  \"grip-vertical\": 62862,\n  \"gripfire\": 62380,\n  \"grunt\": 62381,\n  \"guilded\": 57470,\n  \"guitar\": 63398,\n  \"guitar-electric\": 63678,\n  \"guitars\": 63679,\n  \"gulp\": 62382,\n  \"h-square\": 61693,\n  \"h1\": 62227,\n  \"h2\": 62228,\n  \"h3\": 62229,\n  \"h4\": 63594,\n  \"hacker-news\": 61908,\n  \"hacker-news-square\": 62383,\n  \"hackerrank\": 62967,\n  \"hamburger\": 63493,\n  \"hammer\": 63203,\n  \"hammer-war\": 63204,\n  \"hamsa\": 63077,\n  \"hand-heart\": 62652,\n  \"hand-holding\": 62653,\n  \"hand-holding-box\": 62587,\n  \"hand-holding-heart\": 62654,\n  \"hand-holding-magic\": 63205,\n  \"hand-holding-medical\": 57436,\n  \"hand-holding-seedling\": 62655,\n  \"hand-holding-usd\": 62656,\n  \"hand-holding-water\": 62657,\n  \"hand-lizard\": 62040,\n  \"hand-middle-finger\": 63494,\n  \"hand-paper\": 62038,\n  \"hand-peace\": 62043,\n  \"hand-point-down\": 61607,\n  \"hand-point-left\": 61605,\n  \"hand-point-right\": 61604,\n  \"hand-point-up\": 61606,\n  \"hand-pointer\": 62042,\n  \"hand-receiving\": 62588,\n  \"hand-rock\": 62037,\n  \"hand-scissors\": 62039,\n  \"hand-sparkles\": 57437,\n  \"hand-spock\": 62041,\n  \"hands\": 62658,\n  \"hands-heart\": 62659,\n  \"hands-helping\": 62660,\n  \"hands-usd\": 62661,\n  \"hands-wash\": 57438,\n  \"handshake\": 62133,\n  \"handshake-alt\": 62662,\n  \"handshake-alt-slash\": 57439,\n  \"handshake-slash\": 57440,\n  \"hanukiah\": 63206,\n  \"hard-hat\": 63495,\n  \"hashtag\": 62098,\n  \"hat-chef\": 63595,\n  \"hat-cowboy\": 63680,\n  \"hat-cowboy-side\": 63681,\n  \"hat-santa\": 63399,\n  \"hat-winter\": 63400,\n  \"hat-witch\": 63207,\n  \"hat-wizard\": 63208,\n  \"hdd\": 61600,\n  \"head-side\": 63209,\n  \"head-side-brain\": 63496,\n  \"head-side-cough\": 57441,\n  \"head-side-cough-slash\": 57442,\n  \"head-side-headphones\": 63682,\n  \"head-side-mask\": 57443,\n  \"head-side-medical\": 63497,\n  \"head-side-virus\": 57444,\n  \"head-vr\": 63210,\n  \"heading\": 61916,\n  \"headphones\": 61477,\n  \"headphones-alt\": 62863,\n  \"headset\": 62864,\n  \"heart\": 61444,\n  \"heart-broken\": 63401,\n  \"heart-circle\": 62663,\n  \"heart-rate\": 62968,\n  \"heart-square\": 62664,\n  \"heartbeat\": 61982,\n  \"heat\": 57356,\n  \"helicopter\": 62771,\n  \"helmet-battle\": 63211,\n  \"hexagon\": 62226,\n  \"highlighter\": 62865,\n  \"hiking\": 63212,\n  \"hippo\": 63213,\n  \"hips\": 62546,\n  \"hire-a-helper\": 62384,\n  \"history\": 61914,\n  \"hive\": 57471,\n  \"hockey-mask\": 63214,\n  \"hockey-puck\": 62547,\n  \"hockey-sticks\": 62548,\n  \"holly-berry\": 63402,\n  \"home\": 61461,\n  \"home-alt\": 63498,\n  \"home-heart\": 62665,\n  \"home-lg\": 63499,\n  \"home-lg-alt\": 63500,\n  \"hood-cloak\": 63215,\n  \"hooli\": 62503,\n  \"horizontal-rule\": 63596,\n  \"hornbill\": 62866,\n  \"horse\": 63216,\n  \"horse-head\": 63403,\n  \"horse-saddle\": 63683,\n  \"hospital\": 61688,\n  \"hospital-alt\": 62589,\n  \"hospital-symbol\": 62590,\n  \"hospital-user\": 63501,\n  \"hospitals\": 63502,\n  \"hot-tub\": 62867,\n  \"hotdog\": 63503,\n  \"hotel\": 62868,\n  \"hotjar\": 62385,\n  \"hourglass\": 62036,\n  \"hourglass-end\": 62035,\n  \"hourglass-half\": 62034,\n  \"hourglass-start\": 62033,\n  \"house\": 57357,\n  \"house-damage\": 63217,\n  \"house-day\": 57358,\n  \"house-flood\": 63311,\n  \"house-leave\": 57359,\n  \"house-night\": 57360,\n  \"house-return\": 57361,\n  \"house-signal\": 57362,\n  \"house-user\": 57445,\n  \"houzz\": 62076,\n  \"hryvnia\": 63218,\n  \"html5\": 61755,\n  \"hubspot\": 62386,\n  \"humidity\": 63312,\n  \"hurricane\": 63313,\n  \"i-cursor\": 62022,\n  \"ice-cream\": 63504,\n  \"ice-skate\": 63404,\n  \"icicles\": 63405,\n  \"icons\": 63597,\n  \"icons-alt\": 63598,\n  \"id-badge\": 62145,\n  \"id-card\": 62146,\n  \"id-card-alt\": 62591,\n  \"ideal\": 57363,\n  \"igloo\": 63406,\n  \"image\": 61502,\n  \"image-polaroid\": 63684,\n  \"images\": 62210,\n  \"imdb\": 62168,\n  \"inbox\": 61468,\n  \"inbox-in\": 62224,\n  \"inbox-out\": 62225,\n  \"indent\": 61500,\n  \"industry\": 62069,\n  \"industry-alt\": 62387,\n  \"infinity\": 62772,\n  \"info\": 61737,\n  \"info-circle\": 61530,\n  \"info-square\": 62223,\n  \"inhaler\": 62969,\n  \"innosoft\": 57472,\n  \"instagram\": 61805,\n  \"instagram-square\": 57429,\n  \"instalod\": 57473,\n  \"integral\": 63079,\n  \"intercom\": 63407,\n  \"internet-explorer\": 62059,\n  \"intersection\": 63080,\n  \"inventory\": 62592,\n  \"invision\": 63408,\n  \"ioxhost\": 61960,\n  \"island-tropical\": 63505,\n  \"italic\": 61491,\n  \"itch-io\": 63546,\n  \"itunes\": 62388,\n  \"itunes-note\": 62389,\n  \"jack-o-lantern\": 62222,\n  \"java\": 62692,\n  \"jedi\": 63081,\n  \"jedi-order\": 62734,\n  \"jenkins\": 62390,\n  \"jira\": 63409,\n  \"joget\": 62391,\n  \"joint\": 62869,\n  \"joomla\": 61866,\n  \"journal-whills\": 63082,\n  \"joystick\": 63685,\n  \"js\": 62392,\n  \"js-square\": 62393,\n  \"jsfiddle\": 61900,\n  \"jug\": 63686,\n  \"kaaba\": 63083,\n  \"kaggle\": 62970,\n  \"kazoo\": 63687,\n  \"kerning\": 63599,\n  \"key\": 61572,\n  \"key-skeleton\": 63219,\n  \"keybase\": 62709,\n  \"keyboard\": 61724,\n  \"keycdn\": 62394,\n  \"keynote\": 63084,\n  \"khanda\": 63085,\n  \"kickstarter\": 62395,\n  \"kickstarter-k\": 62396,\n  \"kidneys\": 62971,\n  \"kiss\": 62870,\n  \"kiss-beam\": 62871,\n  \"kiss-wink-heart\": 62872,\n  \"kite\": 63220,\n  \"kiwi-bird\": 62773,\n  \"knife-kitchen\": 63221,\n  \"korvue\": 62511,\n  \"lambda\": 63086,\n  \"lamp\": 62666,\n  \"lamp-desk\": 57364,\n  \"lamp-floor\": 57365,\n  \"landmark\": 63087,\n  \"landmark-alt\": 63314,\n  \"language\": 61867,\n  \"laptop\": 61705,\n  \"laptop-code\": 62972,\n  \"laptop-house\": 57446,\n  \"laptop-medical\": 63506,\n  \"laravel\": 62397,\n  \"lasso\": 63688,\n  \"lastfm\": 61954,\n  \"lastfm-square\": 61955,\n  \"laugh\": 62873,\n  \"laugh-beam\": 62874,\n  \"laugh-squint\": 62875,\n  \"laugh-wink\": 62876,\n  \"layer-group\": 62973,\n  \"layer-minus\": 62974,\n  \"layer-plus\": 62975,\n  \"leaf\": 61548,\n  \"leaf-heart\": 62667,\n  \"leaf-maple\": 63222,\n  \"leaf-oak\": 63223,\n  \"leanpub\": 61970,\n  \"lemon\": 61588,\n  \"less\": 62493,\n  \"less-than\": 62774,\n  \"less-than-equal\": 62775,\n  \"level-down\": 61769,\n  \"level-down-alt\": 62398,\n  \"level-up\": 61768,\n  \"level-up-alt\": 62399,\n  \"life-ring\": 61901,\n  \"light-ceiling\": 57366,\n  \"light-switch\": 57367,\n  \"light-switch-off\": 57368,\n  \"light-switch-on\": 57369,\n  \"lightbulb\": 61675,\n  \"lightbulb-dollar\": 63088,\n  \"lightbulb-exclamation\": 63089,\n  \"lightbulb-on\": 63090,\n  \"lightbulb-slash\": 63091,\n  \"lights-holiday\": 63410,\n  \"line\": 62400,\n  \"line-columns\": 63600,\n  \"line-height\": 63601,\n  \"link\": 61633,\n  \"linkedin\": 61580,\n  \"linkedin-in\": 61665,\n  \"linode\": 62136,\n  \"linux\": 61820,\n  \"lips\": 62976,\n  \"lira-sign\": 61845,\n  \"list\": 61498,\n  \"list-alt\": 61474,\n  \"list-music\": 63689,\n  \"list-ol\": 61643,\n  \"list-ul\": 61642,\n  \"location\": 62977,\n  \"location-arrow\": 61732,\n  \"location-circle\": 62978,\n  \"location-slash\": 62979,\n  \"lock\": 61475,\n  \"lock-alt\": 62221,\n  \"lock-open\": 62401,\n  \"lock-open-alt\": 62402,\n  \"long-arrow-alt-down\": 62217,\n  \"long-arrow-alt-left\": 62218,\n  \"long-arrow-alt-right\": 62219,\n  \"long-arrow-alt-up\": 62220,\n  \"long-arrow-down\": 61813,\n  \"long-arrow-left\": 61815,\n  \"long-arrow-right\": 61816,\n  \"long-arrow-up\": 61814,\n  \"loveseat\": 62668,\n  \"low-vision\": 62120,\n  \"luchador\": 62549,\n  \"luggage-cart\": 62877,\n  \"lungs\": 62980,\n  \"lungs-virus\": 57447,\n  \"lyft\": 62403,\n  \"mace\": 63224,\n  \"magento\": 62404,\n  \"magic\": 61648,\n  \"magnet\": 61558,\n  \"mail-bulk\": 63092,\n  \"mailbox\": 63507,\n  \"mailchimp\": 62878,\n  \"male\": 61827,\n  \"mandalorian\": 62735,\n  \"mandolin\": 63225,\n  \"map\": 62073,\n  \"map-marked\": 62879,\n  \"map-marked-alt\": 62880,\n  \"map-marker\": 61505,\n  \"map-marker-alt\": 62405,\n  \"map-marker-alt-slash\": 62981,\n  \"map-marker-check\": 62982,\n  \"map-marker-edit\": 62983,\n  \"map-marker-exclamation\": 62984,\n  \"map-marker-minus\": 62985,\n  \"map-marker-plus\": 62986,\n  \"map-marker-question\": 62987,\n  \"map-marker-slash\": 62988,\n  \"map-marker-smile\": 62989,\n  \"map-marker-times\": 62990,\n  \"map-pin\": 62070,\n  \"map-signs\": 62071,\n  \"markdown\": 62991,\n  \"marker\": 62881,\n  \"mars\": 61986,\n  \"mars-double\": 61991,\n  \"mars-stroke\": 61993,\n  \"mars-stroke-h\": 61995,\n  \"mars-stroke-v\": 61994,\n  \"mask\": 63226,\n  \"mastodon\": 62710,\n  \"maxcdn\": 61750,\n  \"mdb\": 63690,\n  \"meat\": 63508,\n  \"medal\": 62882,\n  \"medapps\": 62406,\n  \"medium\": 62010,\n  \"medium-m\": 62407,\n  \"medkit\": 61690,\n  \"medrt\": 62408,\n  \"meetup\": 62176,\n  \"megaphone\": 63093,\n  \"megaport\": 62883,\n  \"meh\": 61722,\n  \"meh-blank\": 62884,\n  \"meh-rolling-eyes\": 62885,\n  \"memory\": 62776,\n  \"mendeley\": 63411,\n  \"menorah\": 63094,\n  \"mercury\": 61987,\n  \"meteor\": 63315,\n  \"microblog\": 57370,\n  \"microchip\": 62171,\n  \"microphone\": 61744,\n  \"microphone-alt\": 62409,\n  \"microphone-alt-slash\": 62777,\n  \"microphone-slash\": 61745,\n  \"microphone-stand\": 63691,\n  \"microscope\": 62992,\n  \"microsoft\": 62410,\n  \"microwave\": 57371,\n  \"mind-share\": 63095,\n  \"minus\": 61544,\n  \"minus-circle\": 61526,\n  \"minus-hexagon\": 62215,\n  \"minus-octagon\": 62216,\n  \"minus-square\": 61766,\n  \"mistletoe\": 63412,\n  \"mitten\": 63413,\n  \"mix\": 62411,\n  \"mixcloud\": 62089,\n  \"mixer\": 57430,\n  \"mizuni\": 62412,\n  \"mobile\": 61707,\n  \"mobile-alt\": 62413,\n  \"mobile-android\": 62414,\n  \"mobile-android-alt\": 62415,\n  \"modx\": 62085,\n  \"monero\": 62416,\n  \"money-bill\": 61654,\n  \"money-bill-alt\": 62417,\n  \"money-bill-wave\": 62778,\n  \"money-bill-wave-alt\": 62779,\n  \"money-check\": 62780,\n  \"money-check-alt\": 62781,\n  \"money-check-edit\": 63602,\n  \"money-check-edit-alt\": 63603,\n  \"monitor-heart-rate\": 62993,\n  \"monkey\": 63227,\n  \"monument\": 62886,\n  \"moon\": 61830,\n  \"moon-cloud\": 63316,\n  \"moon-stars\": 63317,\n  \"mortar-pestle\": 62887,\n  \"mosque\": 63096,\n  \"motorcycle\": 61980,\n  \"mountain\": 63228,\n  \"mountains\": 63229,\n  \"mouse\": 63692,\n  \"mouse-alt\": 63693,\n  \"mouse-pointer\": 62021,\n  \"mp3-player\": 63694,\n  \"mug\": 63604,\n  \"mug-hot\": 63414,\n  \"mug-marshmallows\": 63415,\n  \"mug-tea\": 63605,\n  \"music\": 61441,\n  \"music-alt\": 63695,\n  \"music-alt-slash\": 63696,\n  \"music-slash\": 63697,\n  \"napster\": 62418,\n  \"narwhal\": 63230,\n  \"neos\": 62994,\n  \"network-wired\": 63231,\n  \"neuter\": 61996,\n  \"newspaper\": 61930,\n  \"nimblr\": 62888,\n  \"node\": 62489,\n  \"node-js\": 62419,\n  \"not-equal\": 62782,\n  \"notes-medical\": 62593,\n  \"npm\": 62420,\n  \"ns8\": 62421,\n  \"nutritionix\": 62422,\n  \"object-group\": 62023,\n  \"object-ungroup\": 62024,\n  \"octagon\": 62214,\n  \"octopus-deploy\": 57474,\n  \"odnoklassniki\": 62051,\n  \"odnoklassniki-square\": 62052,\n  \"oil-can\": 62995,\n  \"oil-temp\": 62996,\n  \"old-republic\": 62736,\n  \"om\": 63097,\n  \"omega\": 63098,\n  \"opencart\": 62013,\n  \"openid\": 61851,\n  \"opera\": 62058,\n  \"optin-monster\": 62012,\n  \"orcid\": 63698,\n  \"ornament\": 63416,\n  \"osi\": 62490,\n  \"otter\": 63232,\n  \"outdent\": 61499,\n  \"outlet\": 57372,\n  \"oven\": 57373,\n  \"overline\": 63606,\n  \"page-break\": 63607,\n  \"page4\": 62423,\n  \"pagelines\": 61836,\n  \"pager\": 63509,\n  \"paint-brush\": 61948,\n  \"paint-brush-alt\": 62889,\n  \"paint-roller\": 62890,\n  \"palette\": 62783,\n  \"palfed\": 62424,\n  \"pallet\": 62594,\n  \"pallet-alt\": 62595,\n  \"paper-plane\": 61912,\n  \"paperclip\": 61638,\n  \"parachute-box\": 62669,\n  \"paragraph\": 61917,\n  \"paragraph-rtl\": 63608,\n  \"parking\": 62784,\n  \"parking-circle\": 62997,\n  \"parking-circle-slash\": 62998,\n  \"parking-slash\": 62999,\n  \"passport\": 62891,\n  \"pastafarianism\": 63099,\n  \"paste\": 61674,\n  \"patreon\": 62425,\n  \"pause\": 61516,\n  \"pause-circle\": 62091,\n  \"paw\": 61872,\n  \"paw-alt\": 63233,\n  \"paw-claws\": 63234,\n  \"paypal\": 61933,\n  \"peace\": 63100,\n  \"pegasus\": 63235,\n  \"pen\": 62212,\n  \"pen-alt\": 62213,\n  \"pen-fancy\": 62892,\n  \"pen-nib\": 62893,\n  \"pen-square\": 61771,\n  \"pencil\": 61504,\n  \"pencil-alt\": 62211,\n  \"pencil-paintbrush\": 63000,\n  \"pencil-ruler\": 62894,\n  \"pennant\": 62550,\n  \"penny-arcade\": 63236,\n  \"people-arrows\": 57448,\n  \"people-carry\": 62670,\n  \"pepper-hot\": 63510,\n  \"perbyte\": 57475,\n  \"percent\": 62101,\n  \"percentage\": 62785,\n  \"periscope\": 62426,\n  \"person-booth\": 63318,\n  \"person-carry\": 62671,\n  \"person-dolly\": 62672,\n  \"person-dolly-empty\": 62673,\n  \"person-sign\": 63319,\n  \"phabricator\": 62427,\n  \"phoenix-framework\": 62428,\n  \"phoenix-squadron\": 62737,\n  \"phone\": 61589,\n  \"phone-alt\": 63609,\n  \"phone-laptop\": 63610,\n  \"phone-office\": 63101,\n  \"phone-plus\": 62674,\n  \"phone-rotary\": 63699,\n  \"phone-slash\": 62429,\n  \"phone-square\": 61592,\n  \"phone-square-alt\": 63611,\n  \"phone-volume\": 62112,\n  \"photo-video\": 63612,\n  \"php\": 62551,\n  \"pi\": 63102,\n  \"piano\": 63700,\n  \"piano-keyboard\": 63701,\n  \"pie\": 63237,\n  \"pied-piper\": 62126,\n  \"pied-piper-alt\": 61864,\n  \"pied-piper-hat\": 62693,\n  \"pied-piper-pp\": 61863,\n  \"pied-piper-square\": 57374,\n  \"pig\": 63238,\n  \"piggy-bank\": 62675,\n  \"pills\": 62596,\n  \"pinterest\": 61650,\n  \"pinterest-p\": 62001,\n  \"pinterest-square\": 61651,\n  \"pizza\": 63511,\n  \"pizza-slice\": 63512,\n  \"place-of-worship\": 63103,\n  \"plane\": 61554,\n  \"plane-alt\": 62430,\n  \"plane-arrival\": 62895,\n  \"plane-departure\": 62896,\n  \"plane-slash\": 57449,\n  \"planet-moon\": 57375,\n  \"planet-ringed\": 57376,\n  \"play\": 61515,\n  \"play-circle\": 61764,\n  \"playstation\": 62431,\n  \"plug\": 61926,\n  \"plus\": 61543,\n  \"plus-circle\": 61525,\n  \"plus-hexagon\": 62208,\n  \"plus-octagon\": 62209,\n  \"plus-square\": 61694,\n  \"podcast\": 62158,\n  \"podium\": 63104,\n  \"podium-star\": 63320,\n  \"police-box\": 57377,\n  \"poll\": 63105,\n  \"poll-h\": 63106,\n  \"poll-people\": 63321,\n  \"poo\": 62206,\n  \"poo-storm\": 63322,\n  \"poop\": 63001,\n  \"popcorn\": 63513,\n  \"portal-enter\": 57378,\n  \"portal-exit\": 57379,\n  \"portrait\": 62432,\n  \"pound-sign\": 61780,\n  \"power-off\": 61457,\n  \"pray\": 63107,\n  \"praying-hands\": 63108,\n  \"prescription\": 62897,\n  \"prescription-bottle\": 62597,\n  \"prescription-bottle-alt\": 62598,\n  \"presentation\": 63109,\n  \"print\": 61487,\n  \"print-search\": 63514,\n  \"print-slash\": 63110,\n  \"procedures\": 62599,\n  \"product-hunt\": 62088,\n  \"project-diagram\": 62786,\n  \"projector\": 63702,\n  \"pump-medical\": 57450,\n  \"pump-soap\": 57451,\n  \"pumpkin\": 63239,\n  \"pushed\": 62433,\n  \"puzzle-piece\": 61742,\n  \"python\": 62434,\n  \"qq\": 61910,\n  \"qrcode\": 61481,\n  \"question\": 61736,\n  \"question-circle\": 61529,\n  \"question-square\": 62205,\n  \"quidditch\": 62552,\n  \"quinscape\": 62553,\n  \"quora\": 62148,\n  \"quote-left\": 61709,\n  \"quote-right\": 61710,\n  \"quran\": 63111,\n  \"r-project\": 62711,\n  \"rabbit\": 63240,\n  \"rabbit-fast\": 63241,\n  \"racquet\": 62554,\n  \"radar\": 57380,\n  \"radiation\": 63417,\n  \"radiation-alt\": 63418,\n  \"radio\": 63703,\n  \"radio-alt\": 63704,\n  \"rainbow\": 63323,\n  \"raindrops\": 63324,\n  \"ram\": 63242,\n  \"ramp-loading\": 62676,\n  \"random\": 61556,\n  \"raspberry-pi\": 63419,\n  \"ravelry\": 62169,\n  \"raygun\": 57381,\n  \"react\": 62491,\n  \"reacteurope\": 63325,\n  \"readme\": 62677,\n  \"rebel\": 61904,\n  \"receipt\": 62787,\n  \"record-vinyl\": 63705,\n  \"rectangle-landscape\": 62202,\n  \"rectangle-portrait\": 62203,\n  \"rectangle-wide\": 62204,\n  \"recycle\": 61880,\n  \"red-river\": 62435,\n  \"reddit\": 61857,\n  \"reddit-alien\": 62081,\n  \"reddit-square\": 61858,\n  \"redhat\": 63420,\n  \"redo\": 61470,\n  \"redo-alt\": 62201,\n  \"refrigerator\": 57382,\n  \"registered\": 62045,\n  \"remove-format\": 63613,\n  \"renren\": 61835,\n  \"repeat\": 62307,\n  \"repeat-1\": 62309,\n  \"repeat-1-alt\": 62310,\n  \"repeat-alt\": 62308,\n  \"reply\": 62437,\n  \"reply-all\": 61730,\n  \"replyd\": 62438,\n  \"republican\": 63326,\n  \"researchgate\": 62712,\n  \"resolving\": 62439,\n  \"restroom\": 63421,\n  \"retweet\": 61561,\n  \"retweet-alt\": 62305,\n  \"rev\": 62898,\n  \"ribbon\": 62678,\n  \"ring\": 63243,\n  \"rings-wedding\": 63515,\n  \"road\": 61464,\n  \"robot\": 62788,\n  \"rocket\": 61749,\n  \"rocket-launch\": 57383,\n  \"rocketchat\": 62440,\n  \"rockrms\": 62441,\n  \"route\": 62679,\n  \"route-highway\": 63002,\n  \"route-interstate\": 63003,\n  \"router\": 63706,\n  \"rss\": 61598,\n  \"rss-square\": 61763,\n  \"ruble-sign\": 61784,\n  \"ruler\": 62789,\n  \"ruler-combined\": 62790,\n  \"ruler-horizontal\": 62791,\n  \"ruler-triangle\": 63004,\n  \"ruler-vertical\": 62792,\n  \"running\": 63244,\n  \"rupee-sign\": 61782,\n  \"rust\": 57466,\n  \"rv\": 63422,\n  \"sack\": 63516,\n  \"sack-dollar\": 63517,\n  \"sad-cry\": 62899,\n  \"sad-tear\": 62900,\n  \"safari\": 62055,\n  \"salad\": 63518,\n  \"salesforce\": 63547,\n  \"sandwich\": 63519,\n  \"sass\": 62494,\n  \"satellite\": 63423,\n  \"satellite-dish\": 63424,\n  \"sausage\": 63520,\n  \"save\": 61639,\n  \"sax-hot\": 63707,\n  \"saxophone\": 63708,\n  \"scalpel\": 63005,\n  \"scalpel-path\": 63006,\n  \"scanner\": 62600,\n  \"scanner-image\": 63731,\n  \"scanner-keyboard\": 62601,\n  \"scanner-touchscreen\": 62602,\n  \"scarecrow\": 63245,\n  \"scarf\": 63425,\n  \"schlix\": 62442,\n  \"school\": 62793,\n  \"screwdriver\": 62794,\n  \"scribd\": 62090,\n  \"scroll\": 63246,\n  \"scroll-old\": 63247,\n  \"scrubber\": 62200,\n  \"scythe\": 63248,\n  \"sd-card\": 63426,\n  \"search\": 61442,\n  \"search-dollar\": 63112,\n  \"search-location\": 63113,\n  \"search-minus\": 61456,\n  \"search-plus\": 61454,\n  \"searchengin\": 62443,\n  \"seedling\": 62680,\n  \"sellcast\": 62170,\n  \"sellsy\": 61971,\n  \"send-back\": 63614,\n  \"send-backward\": 63615,\n  \"sensor\": 57384,\n  \"sensor-alert\": 57385,\n  \"sensor-fire\": 57386,\n  \"sensor-on\": 57387,\n  \"sensor-smoke\": 57388,\n  \"server\": 62003,\n  \"servicestack\": 62444,\n  \"shapes\": 63007,\n  \"share\": 61540,\n  \"share-all\": 62311,\n  \"share-alt\": 61920,\n  \"share-alt-square\": 61921,\n  \"share-square\": 61773,\n  \"sheep\": 63249,\n  \"shekel-sign\": 61963,\n  \"shield\": 61746,\n  \"shield-alt\": 62445,\n  \"shield-check\": 62199,\n  \"shield-cross\": 63250,\n  \"shield-virus\": 57452,\n  \"ship\": 61978,\n  \"shipping-fast\": 62603,\n  \"shipping-timed\": 62604,\n  \"shirtsinbulk\": 61972,\n  \"shish-kebab\": 63521,\n  \"shoe-prints\": 62795,\n  \"shopify\": 57431,\n  \"shopping-bag\": 62096,\n  \"shopping-basket\": 62097,\n  \"shopping-cart\": 61562,\n  \"shopware\": 62901,\n  \"shovel\": 63251,\n  \"shovel-snow\": 63427,\n  \"shower\": 62156,\n  \"shredder\": 63114,\n  \"shuttle-van\": 62902,\n  \"shuttlecock\": 62555,\n  \"sickle\": 63522,\n  \"sigma\": 63115,\n  \"sign\": 62681,\n  \"sign-in\": 61584,\n  \"sign-in-alt\": 62198,\n  \"sign-language\": 62119,\n  \"sign-out\": 61579,\n  \"sign-out-alt\": 62197,\n  \"signal\": 61458,\n  \"signal-1\": 63116,\n  \"signal-2\": 63117,\n  \"signal-3\": 63118,\n  \"signal-4\": 63119,\n  \"signal-alt\": 63120,\n  \"signal-alt-1\": 63121,\n  \"signal-alt-2\": 63122,\n  \"signal-alt-3\": 63123,\n  \"signal-alt-slash\": 63124,\n  \"signal-slash\": 63125,\n  \"signal-stream\": 63709,\n  \"signature\": 62903,\n  \"sim-card\": 63428,\n  \"simplybuilt\": 61973,\n  \"sink\": 57453,\n  \"siren\": 57389,\n  \"siren-on\": 57390,\n  \"sistrix\": 62446,\n  \"sitemap\": 61672,\n  \"sith\": 62738,\n  \"skating\": 63429,\n  \"skeleton\": 63008,\n  \"sketch\": 63430,\n  \"ski-jump\": 63431,\n  \"ski-lift\": 63432,\n  \"skiing\": 63433,\n  \"skiing-nordic\": 63434,\n  \"skull\": 62796,\n  \"skull-cow\": 63710,\n  \"skull-crossbones\": 63252,\n  \"skyatlas\": 61974,\n  \"skype\": 61822,\n  \"slack\": 61848,\n  \"slack-hash\": 62447,\n  \"slash\": 63253,\n  \"sledding\": 63435,\n  \"sleigh\": 63436,\n  \"sliders-h\": 61918,\n  \"sliders-h-square\": 62448,\n  \"sliders-v\": 62449,\n  \"sliders-v-square\": 62450,\n  \"slideshare\": 61927,\n  \"smile\": 61720,\n  \"smile-beam\": 62904,\n  \"smile-plus\": 62905,\n  \"smile-wink\": 62682,\n  \"smog\": 63327,\n  \"smoke\": 63328,\n  \"smoking\": 62605,\n  \"smoking-ban\": 62797,\n  \"sms\": 63437,\n  \"snake\": 63254,\n  \"snapchat\": 62123,\n  \"snapchat-ghost\": 62124,\n  \"snapchat-square\": 62125,\n  \"snooze\": 63616,\n  \"snow-blowing\": 63329,\n  \"snowboarding\": 63438,\n  \"snowflake\": 62172,\n  \"snowflakes\": 63439,\n  \"snowman\": 63440,\n  \"snowmobile\": 63441,\n  \"snowplow\": 63442,\n  \"soap\": 57454,\n  \"socks\": 63126,\n  \"solar-panel\": 62906,\n  \"solar-system\": 57391,\n  \"sort\": 61660,\n  \"sort-alpha-down\": 61789,\n  \"sort-alpha-down-alt\": 63617,\n  \"sort-alpha-up\": 61790,\n  \"sort-alpha-up-alt\": 63618,\n  \"sort-alt\": 63619,\n  \"sort-amount-down\": 61792,\n  \"sort-amount-down-alt\": 63620,\n  \"sort-amount-up\": 61793,\n  \"sort-amount-up-alt\": 63621,\n  \"sort-circle\": 57392,\n  \"sort-circle-down\": 57393,\n  \"sort-circle-up\": 57394,\n  \"sort-down\": 61661,\n  \"sort-numeric-down\": 61794,\n  \"sort-numeric-down-alt\": 63622,\n  \"sort-numeric-up\": 61795,\n  \"sort-numeric-up-alt\": 63623,\n  \"sort-shapes-down\": 63624,\n  \"sort-shapes-down-alt\": 63625,\n  \"sort-shapes-up\": 63626,\n  \"sort-shapes-up-alt\": 63627,\n  \"sort-size-down\": 63628,\n  \"sort-size-down-alt\": 63629,\n  \"sort-size-up\": 63630,\n  \"sort-size-up-alt\": 63631,\n  \"sort-up\": 61662,\n  \"soundcloud\": 61886,\n  \"soup\": 63523,\n  \"sourcetree\": 63443,\n  \"spa\": 62907,\n  \"space-shuttle\": 61847,\n  \"space-station-moon\": 57395,\n  \"space-station-moon-alt\": 57396,\n  \"spade\": 62196,\n  \"sparkles\": 63632,\n  \"speakap\": 62451,\n  \"speaker\": 63711,\n  \"speaker-deck\": 63548,\n  \"speakers\": 63712,\n  \"spell-check\": 63633,\n  \"spider\": 63255,\n  \"spider-black-widow\": 63256,\n  \"spider-web\": 63257,\n  \"spinner\": 61712,\n  \"spinner-third\": 62452,\n  \"splotch\": 62908,\n  \"spotify\": 61884,\n  \"spray-can\": 62909,\n  \"sprinkler\": 57397,\n  \"square\": 61640,\n  \"square-full\": 62556,\n  \"square-root\": 63127,\n  \"square-root-alt\": 63128,\n  \"squarespace\": 62910,\n  \"squirrel\": 63258,\n  \"stack-exchange\": 61837,\n  \"stack-overflow\": 61804,\n  \"stackpath\": 63554,\n  \"staff\": 63259,\n  \"stamp\": 62911,\n  \"star\": 61445,\n  \"star-and-crescent\": 63129,\n  \"star-christmas\": 63444,\n  \"star-exclamation\": 62195,\n  \"star-half\": 61577,\n  \"star-half-alt\": 62912,\n  \"star-of-david\": 63130,\n  \"star-of-life\": 63009,\n  \"star-shooting\": 57398,\n  \"starfighter\": 57399,\n  \"starfighter-alt\": 57400,\n  \"stars\": 63330,\n  \"starship\": 57401,\n  \"starship-freighter\": 57402,\n  \"staylinked\": 62453,\n  \"steak\": 63524,\n  \"steam\": 61878,\n  \"steam-square\": 61879,\n  \"steam-symbol\": 62454,\n  \"steering-wheel\": 63010,\n  \"step-backward\": 61512,\n  \"step-forward\": 61521,\n  \"stethoscope\": 61681,\n  \"sticker-mule\": 62455,\n  \"sticky-note\": 62025,\n  \"stocking\": 63445,\n  \"stomach\": 63011,\n  \"stop\": 61517,\n  \"stop-circle\": 62093,\n  \"stopwatch\": 62194,\n  \"stopwatch-20\": 57455,\n  \"store\": 62798,\n  \"store-alt\": 62799,\n  \"store-alt-slash\": 57456,\n  \"store-slash\": 57457,\n  \"strava\": 62504,\n  \"stream\": 62800,\n  \"street-view\": 61981,\n  \"stretcher\": 63525,\n  \"strikethrough\": 61644,\n  \"stripe\": 62505,\n  \"stripe-s\": 62506,\n  \"stroopwafel\": 62801,\n  \"studiovinari\": 62456,\n  \"stumbleupon\": 61860,\n  \"stumbleupon-circle\": 61859,\n  \"subscript\": 61740,\n  \"subway\": 62009,\n  \"suitcase\": 61682,\n  \"suitcase-rolling\": 62913,\n  \"sun\": 61829,\n  \"sun-cloud\": 63331,\n  \"sun-dust\": 63332,\n  \"sun-haze\": 63333,\n  \"sunglasses\": 63634,\n  \"sunrise\": 63334,\n  \"sunset\": 63335,\n  \"superpowers\": 62173,\n  \"superscript\": 61739,\n  \"supple\": 62457,\n  \"surprise\": 62914,\n  \"suse\": 63446,\n  \"swatchbook\": 62915,\n  \"swift\": 63713,\n  \"swimmer\": 62916,\n  \"swimming-pool\": 62917,\n  \"sword\": 63260,\n  \"sword-laser\": 57403,\n  \"sword-laser-alt\": 57404,\n  \"swords\": 63261,\n  \"swords-laser\": 57405,\n  \"symfony\": 63549,\n  \"synagogue\": 63131,\n  \"sync\": 61473,\n  \"sync-alt\": 62193,\n  \"syringe\": 62606,\n  \"table\": 61646,\n  \"table-tennis\": 62557,\n  \"tablet\": 61706,\n  \"tablet-alt\": 62458,\n  \"tablet-android\": 62459,\n  \"tablet-android-alt\": 62460,\n  \"tablet-rugged\": 62607,\n  \"tablets\": 62608,\n  \"tachometer\": 61668,\n  \"tachometer-alt\": 62461,\n  \"tachometer-alt-average\": 63012,\n  \"tachometer-alt-fast\": 63013,\n  \"tachometer-alt-fastest\": 63014,\n  \"tachometer-alt-slow\": 63015,\n  \"tachometer-alt-slowest\": 63016,\n  \"tachometer-average\": 63017,\n  \"tachometer-fast\": 63018,\n  \"tachometer-fastest\": 63019,\n  \"tachometer-slow\": 63020,\n  \"tachometer-slowest\": 63021,\n  \"taco\": 63526,\n  \"tag\": 61483,\n  \"tags\": 61484,\n  \"tally\": 63132,\n  \"tanakh\": 63527,\n  \"tape\": 62683,\n  \"tasks\": 61614,\n  \"tasks-alt\": 63528,\n  \"taxi\": 61882,\n  \"teamspeak\": 62713,\n  \"teeth\": 63022,\n  \"teeth-open\": 63023,\n  \"telegram\": 62150,\n  \"telegram-plane\": 62462,\n  \"telescope\": 57406,\n  \"temperature-down\": 57407,\n  \"temperature-frigid\": 63336,\n  \"temperature-high\": 63337,\n  \"temperature-hot\": 63338,\n  \"temperature-low\": 63339,\n  \"temperature-up\": 57408,\n  \"tencent-weibo\": 61909,\n  \"tenge\": 63447,\n  \"tennis-ball\": 62558,\n  \"terminal\": 61728,\n  \"text\": 63635,\n  \"text-height\": 61492,\n  \"text-size\": 63636,\n  \"text-width\": 61493,\n  \"th\": 61450,\n  \"th-large\": 61449,\n  \"th-list\": 61451,\n  \"the-red-yeti\": 63133,\n  \"theater-masks\": 63024,\n  \"themeco\": 62918,\n  \"themeisle\": 62130,\n  \"thermometer\": 62609,\n  \"thermometer-empty\": 62155,\n  \"thermometer-full\": 62151,\n  \"thermometer-half\": 62153,\n  \"thermometer-quarter\": 62154,\n  \"thermometer-three-quarters\": 62152,\n  \"theta\": 63134,\n  \"think-peaks\": 63281,\n  \"thumbs-down\": 61797,\n  \"thumbs-up\": 61796,\n  \"thumbtack\": 61581,\n  \"thunderstorm\": 63340,\n  \"thunderstorm-moon\": 63341,\n  \"thunderstorm-sun\": 63342,\n  \"ticket\": 61765,\n  \"ticket-alt\": 62463,\n  \"tiktok\": 57467,\n  \"tilde\": 63135,\n  \"times\": 61453,\n  \"times-circle\": 61527,\n  \"times-hexagon\": 62190,\n  \"times-octagon\": 62192,\n  \"times-square\": 62163,\n  \"tint\": 61507,\n  \"tint-slash\": 62919,\n  \"tire\": 63025,\n  \"tire-flat\": 63026,\n  \"tire-pressure-warning\": 63027,\n  \"tire-rugged\": 63028,\n  \"tired\": 62920,\n  \"toggle-off\": 61956,\n  \"toggle-on\": 61957,\n  \"toilet\": 63448,\n  \"toilet-paper\": 63262,\n  \"toilet-paper-alt\": 63263,\n  \"toilet-paper-slash\": 57458,\n  \"tombstone\": 63264,\n  \"tombstone-alt\": 63265,\n  \"toolbox\": 62802,\n  \"tools\": 63449,\n  \"tooth\": 62921,\n  \"toothbrush\": 63029,\n  \"torah\": 63136,\n  \"torii-gate\": 63137,\n  \"tornado\": 63343,\n  \"tractor\": 63266,\n  \"trade-federation\": 62739,\n  \"trademark\": 62044,\n  \"traffic-cone\": 63030,\n  \"traffic-light\": 63031,\n  \"traffic-light-go\": 63032,\n  \"traffic-light-slow\": 63033,\n  \"traffic-light-stop\": 63034,\n  \"trailer\": 57409,\n  \"train\": 62008,\n  \"tram\": 63450,\n  \"transgender\": 61988,\n  \"transgender-alt\": 61989,\n  \"transporter\": 57410,\n  \"transporter-1\": 57411,\n  \"transporter-2\": 57412,\n  \"transporter-3\": 57413,\n  \"transporter-empty\": 57414,\n  \"trash\": 61944,\n  \"trash-alt\": 62189,\n  \"trash-restore\": 63529,\n  \"trash-restore-alt\": 63530,\n  \"trash-undo\": 63637,\n  \"trash-undo-alt\": 63638,\n  \"treasure-chest\": 63267,\n  \"tree\": 61883,\n  \"tree-alt\": 62464,\n  \"tree-christmas\": 63451,\n  \"tree-decorated\": 63452,\n  \"tree-large\": 63453,\n  \"tree-palm\": 63531,\n  \"trees\": 63268,\n  \"trello\": 61825,\n  \"triangle\": 62188,\n  \"triangle-music\": 63714,\n  \"trophy\": 61585,\n  \"trophy-alt\": 62187,\n  \"truck\": 61649,\n  \"truck-container\": 62684,\n  \"truck-couch\": 62685,\n  \"truck-loading\": 62686,\n  \"truck-monster\": 63035,\n  \"truck-moving\": 62687,\n  \"truck-pickup\": 63036,\n  \"truck-plow\": 63454,\n  \"truck-ramp\": 62688,\n  \"trumpet\": 63715,\n  \"tshirt\": 62803,\n  \"tty\": 61924,\n  \"tumblr\": 61811,\n  \"tumblr-square\": 61812,\n  \"turkey\": 63269,\n  \"turntable\": 63716,\n  \"turtle\": 63270,\n  \"tv\": 62060,\n  \"tv-alt\": 63717,\n  \"tv-music\": 63718,\n  \"tv-retro\": 62465,\n  \"twitch\": 61928,\n  \"twitter\": 61593,\n  \"twitter-square\": 61569,\n  \"typewriter\": 63719,\n  \"typo3\": 62507,\n  \"uber\": 62466,\n  \"ubuntu\": 63455,\n  \"ufo\": 57415,\n  \"ufo-beam\": 57416,\n  \"uikit\": 62467,\n  \"umbraco\": 63720,\n  \"umbrella\": 61673,\n  \"umbrella-beach\": 62922,\n  \"uncharted\": 57476,\n  \"underline\": 61645,\n  \"undo\": 61666,\n  \"undo-alt\": 62186,\n  \"unicorn\": 63271,\n  \"union\": 63138,\n  \"uniregistry\": 62468,\n  \"unity\": 57417,\n  \"universal-access\": 62106,\n  \"university\": 61852,\n  \"unlink\": 61735,\n  \"unlock\": 61596,\n  \"unlock-alt\": 61758,\n  \"unsplash\": 57468,\n  \"untappd\": 62469,\n  \"upload\": 61587,\n  \"ups\": 63456,\n  \"usb\": 62087,\n  \"usb-drive\": 63721,\n  \"usd-circle\": 62184,\n  \"usd-square\": 62185,\n  \"user\": 61447,\n  \"user-alien\": 57418,\n  \"user-alt\": 62470,\n  \"user-alt-slash\": 62714,\n  \"user-astronaut\": 62715,\n  \"user-chart\": 63139,\n  \"user-check\": 62716,\n  \"user-circle\": 62141,\n  \"user-clock\": 62717,\n  \"user-cog\": 62718,\n  \"user-cowboy\": 63722,\n  \"user-crown\": 63140,\n  \"user-edit\": 62719,\n  \"user-friends\": 62720,\n  \"user-graduate\": 62721,\n  \"user-hard-hat\": 63532,\n  \"user-headset\": 63533,\n  \"user-injured\": 63272,\n  \"user-lock\": 62722,\n  \"user-md\": 61680,\n  \"user-md-chat\": 63534,\n  \"user-minus\": 62723,\n  \"user-music\": 63723,\n  \"user-ninja\": 62724,\n  \"user-nurse\": 63535,\n  \"user-plus\": 62004,\n  \"user-robot\": 57419,\n  \"user-secret\": 61979,\n  \"user-shield\": 62725,\n  \"user-slash\": 62726,\n  \"user-tag\": 62727,\n  \"user-tie\": 62728,\n  \"user-times\": 62005,\n  \"user-unlock\": 57432,\n  \"user-visor\": 57420,\n  \"users\": 61632,\n  \"users-class\": 63037,\n  \"users-cog\": 62729,\n  \"users-crown\": 63141,\n  \"users-medical\": 63536,\n  \"users-slash\": 57459,\n  \"usps\": 63457,\n  \"ussunnah\": 62471,\n  \"utensil-fork\": 62179,\n  \"utensil-knife\": 62180,\n  \"utensil-spoon\": 62181,\n  \"utensils\": 62183,\n  \"utensils-alt\": 62182,\n  \"vaadin\": 62472,\n  \"vacuum\": 57421,\n  \"vacuum-robot\": 57422,\n  \"value-absolute\": 63142,\n  \"vector-square\": 62923,\n  \"venus\": 61985,\n  \"venus-double\": 61990,\n  \"venus-mars\": 61992,\n  \"vest\": 57477,\n  \"vest-patches\": 57478,\n  \"vhs\": 63724,\n  \"viacoin\": 62007,\n  \"viadeo\": 62121,\n  \"viadeo-square\": 62122,\n  \"vial\": 62610,\n  \"vials\": 62611,\n  \"viber\": 62473,\n  \"video\": 61501,\n  \"video-plus\": 62689,\n  \"video-slash\": 62690,\n  \"vihara\": 63143,\n  \"vimeo\": 62474,\n  \"vimeo-square\": 61844,\n  \"vimeo-v\": 62077,\n  \"vine\": 61898,\n  \"violin\": 63725,\n  \"virus\": 57460,\n  \"virus-slash\": 57461,\n  \"viruses\": 57462,\n  \"vk\": 61833,\n  \"vnv\": 62475,\n  \"voicemail\": 63639,\n  \"volcano\": 63344,\n  \"volleyball-ball\": 62559,\n  \"volume\": 63144,\n  \"volume-down\": 61479,\n  \"volume-mute\": 63145,\n  \"volume-off\": 61478,\n  \"volume-slash\": 62178,\n  \"volume-up\": 61480,\n  \"vote-nay\": 63345,\n  \"vote-yea\": 63346,\n  \"vr-cardboard\": 63273,\n  \"vuejs\": 62495,\n  \"wagon-covered\": 63726,\n  \"walker\": 63537,\n  \"walkie-talkie\": 63727,\n  \"walking\": 62804,\n  \"wallet\": 62805,\n  \"wand\": 63274,\n  \"wand-magic\": 63275,\n  \"warehouse\": 62612,\n  \"warehouse-alt\": 62613,\n  \"washer\": 63640,\n  \"watch\": 62177,\n  \"watch-calculator\": 63728,\n  \"watch-fitness\": 63038,\n  \"watchman-monitoring\": 57479,\n  \"water\": 63347,\n  \"water-lower\": 63348,\n  \"water-rise\": 63349,\n  \"wave-sine\": 63641,\n  \"wave-square\": 63550,\n  \"wave-triangle\": 63642,\n  \"waveform\": 63729,\n  \"waveform-path\": 63730,\n  \"waze\": 63551,\n  \"webcam\": 63538,\n  \"webcam-slash\": 63539,\n  \"weebly\": 62924,\n  \"weibo\": 61834,\n  \"weight\": 62614,\n  \"weight-hanging\": 62925,\n  \"weixin\": 61911,\n  \"whale\": 63276,\n  \"whatsapp\": 62002,\n  \"whatsapp-square\": 62476,\n  \"wheat\": 63277,\n  \"wheelchair\": 61843,\n  \"whistle\": 62560,\n  \"whmcs\": 62477,\n  \"wifi\": 61931,\n  \"wifi-1\": 63146,\n  \"wifi-2\": 63147,\n  \"wifi-slash\": 63148,\n  \"wikipedia-w\": 62054,\n  \"wind\": 63278,\n  \"wind-turbine\": 63643,\n  \"wind-warning\": 63350,\n  \"window\": 62478,\n  \"window-alt\": 62479,\n  \"window-close\": 62480,\n  \"window-frame\": 57423,\n  \"window-frame-open\": 57424,\n  \"window-maximize\": 62160,\n  \"window-minimize\": 62161,\n  \"window-restore\": 62162,\n  \"windows\": 61818,\n  \"windsock\": 63351,\n  \"wine-bottle\": 63279,\n  \"wine-glass\": 62691,\n  \"wine-glass-alt\": 62926,\n  \"wix\": 62927,\n  \"wizards-of-the-coast\": 63280,\n  \"wodu\": 57480,\n  \"wolf-pack-battalion\": 62740,\n  \"won-sign\": 61785,\n  \"wordpress\": 61850,\n  \"wordpress-simple\": 62481,\n  \"wpbeginner\": 62103,\n  \"wpexplorer\": 62174,\n  \"wpforms\": 62104,\n  \"wpressr\": 62436,\n  \"wreath\": 63458,\n  \"wrench\": 61613,\n  \"x-ray\": 62615,\n  \"xbox\": 62482,\n  \"xing\": 61800,\n  \"xing-square\": 61801,\n  \"y-combinator\": 62011,\n  \"yahoo\": 61854,\n  \"yammer\": 63552,\n  \"yandex\": 62483,\n  \"yandex-international\": 62484,\n  \"yarn\": 63459,\n  \"yelp\": 61929,\n  \"yen-sign\": 61783,\n  \"yin-yang\": 63149,\n  \"yoast\": 62129,\n  \"youtube\": 61799,\n  \"youtube-square\": 62513,\n  \"zhihu\": 63039\n}"
  },
  {
    "path": "packages/fontawesome5-pro/glyphmaps/FontAwesome5Pro_brand.json",
    "content": "{\"500px\":62062,\"accessible-icon\":62312,\"accusoft\":62313,\"acquisitions-incorporated\":63151,\"adn\":61808,\"adversal\":62314,\"affiliatetheme\":62315,\"airbnb\":63540,\"algolia\":62316,\"alipay\":63042,\"amazon-pay\":62508,\"amazon\":62064,\"amilia\":62317,\"android\":61819,\"angellist\":61961,\"angrycreative\":62318,\"angular\":62496,\"app-store-ios\":62320,\"app-store\":62319,\"apper\":62321,\"apple-pay\":62485,\"apple\":61817,\"artstation\":63354,\"asymmetrik\":62322,\"atlassian\":63355,\"audible\":62323,\"autoprefixer\":62492,\"avianex\":62324,\"aviato\":62497,\"aws\":62325,\"bandcamp\":62165,\"battle-net\":63541,\"behance-square\":61877,\"behance\":61876,\"bimobject\":62328,\"bitbucket\":61809,\"bitcoin\":62329,\"bity\":62330,\"black-tie\":62078,\"blackberry\":62331,\"blogger-b\":62333,\"blogger\":62332,\"bluetooth-b\":62100,\"bluetooth\":62099,\"bootstrap\":63542,\"btc\":61786,\"buffer\":63543,\"buromobelexperte\":62335,\"buy-n-large\":63654,\"buysellads\":61965,\"canadian-maple-leaf\":63365,\"cc-amazon-pay\":62509,\"cc-amex\":61939,\"cc-apple-pay\":62486,\"cc-diners-club\":62028,\"cc-discover\":61938,\"cc-jcb\":62027,\"cc-mastercard\":61937,\"cc-paypal\":61940,\"cc-stripe\":61941,\"cc-visa\":61936,\"centercode\":62336,\"centos\":63369,\"chrome\":62056,\"chromecast\":63544,\"cloudflare\":57469,\"cloudscale\":62339,\"cloudsmith\":62340,\"cloudversify\":62341,\"codepen\":61899,\"codiepie\":62084,\"confluence\":63373,\"connectdevelop\":61966,\"contao\":62061,\"cotton-bureau\":63646,\"cpanel\":62344,\"creative-commons-by\":62695,\"creative-commons-nc-eu\":62697,\"creative-commons-nc-jp\":62698,\"creative-commons-nc\":62696,\"creative-commons-nd\":62699,\"creative-commons-pd-alt\":62701,\"creative-commons-pd\":62700,\"creative-commons-remix\":62702,\"creative-commons-sa\":62703,\"creative-commons-sampling-plus\":62705,\"creative-commons-sampling\":62704,\"creative-commons-share\":62706,\"creative-commons-zero\":62707,\"creative-commons\":62046,\"critical-role\":63177,\"css3-alt\":62347,\"css3\":61756,\"cuttlefish\":62348,\"d-and-d-beyond\":63178,\"d-and-d\":62349,\"dailymotion\":57426,\"dashcube\":61968,\"deezer\":57463,\"delicious\":61861,\"deploydog\":62350,\"deskpro\":62351,\"dev\":63180,\"deviantart\":61885,\"dhl\":63376,\"diaspora\":63377,\"digg\":61862,\"digital-ocean\":62353,\"discord\":62354,\"discourse\":62355,\"dochub\":62356,\"docker\":62357,\"draft2digital\":62358,\"dribbble-square\":62359,\"dribbble\":61821,\"dropbox\":61803,\"drupal\":61865,\"dyalog\":62361,\"earlybirds\":62362,\"ebay\":62708,\"edge-legacy\":57464,\"edge\":62082,\"elementor\":62512,\"ello\":62961,\"ember\":62499,\"empire\":61905,\"envira\":62105,\"erlang\":62365,\"ethereum\":62510,\"etsy\":62167,\"evernote\":63545,\"expeditedssl\":62014,\"facebook-f\":62366,\"facebook-messenger\":62367,\"facebook-square\":61570,\"facebook\":61594,\"fantasy-flight-games\":63196,\"fedex\":63383,\"fedora\":63384,\"figma\":63385,\"firefox-browser\":57351,\"firefox\":62057,\"first-order-alt\":62730,\"first-order\":62128,\"firstdraft\":62369,\"flickr\":61806,\"flipboard\":62541,\"fly\":62487,\"font-awesome-alt\":62300,\"font-awesome-flag\":62501,\"font-awesome-logo-full\":62694,\"font-awesome\":62132,\"fonticons-fi\":62370,\"fonticons\":62080,\"fort-awesome-alt\":62371,\"fort-awesome\":62086,\"forumbee\":61969,\"foursquare\":61824,\"free-code-camp\":62149,\"freebsd\":62372,\"fulcrum\":62731,\"galactic-republic\":62732,\"galactic-senate\":62733,\"get-pocket\":62053,\"gg-circle\":62049,\"gg\":62048,\"git-alt\":63553,\"git-square\":61906,\"git\":61907,\"github-alt\":61715,\"github-square\":61586,\"github\":61595,\"gitkraken\":62374,\"gitlab\":62102,\"gitter\":62502,\"glide-g\":62118,\"glide\":62117,\"gofore\":62375,\"goodreads-g\":62377,\"goodreads\":62376,\"google-drive\":62378,\"google-pay\":57465,\"google-play\":62379,\"google-plus-g\":61653,\"google-plus-square\":61652,\"google-plus\":62131,\"google-wallet\":61934,\"google\":61856,\"gratipay\":61828,\"grav\":62166,\"gripfire\":62380,\"grunt\":62381,\"guilded\":57470,\"gulp\":62382,\"hacker-news-square\":62383,\"hacker-news\":61908,\"hackerrank\":62967,\"hips\":62546,\"hire-a-helper\":62384,\"hive\":57471,\"hooli\":62503,\"hornbill\":62866,\"hotjar\":62385,\"houzz\":62076,\"html5\":61755,\"hubspot\":62386,\"ideal\":57363,\"imdb\":62168,\"innosoft\":57472,\"instagram-square\":57429,\"instagram\":61805,\"instalod\":57473,\"intercom\":63407,\"internet-explorer\":62059,\"invision\":63408,\"ioxhost\":61960,\"itch-io\":63546,\"itunes-note\":62389,\"itunes\":62388,\"java\":62692,\"jedi-order\":62734,\"jenkins\":62390,\"jira\":63409,\"joget\":62391,\"joomla\":61866,\"js-square\":62393,\"js\":62392,\"jsfiddle\":61900,\"kaggle\":62970,\"keybase\":62709,\"keycdn\":62394,\"kickstarter-k\":62396,\"kickstarter\":62395,\"korvue\":62511,\"laravel\":62397,\"lastfm-square\":61955,\"lastfm\":61954,\"leanpub\":61970,\"less\":62493,\"line\":62400,\"linkedin-in\":61665,\"linkedin\":61580,\"linode\":62136,\"linux\":61820,\"lyft\":62403,\"magento\":62404,\"mailchimp\":62878,\"mandalorian\":62735,\"markdown\":62991,\"mastodon\":62710,\"maxcdn\":61750,\"mdb\":63690,\"medapps\":62406,\"medium-m\":62407,\"medium\":62010,\"medrt\":62408,\"meetup\":62176,\"megaport\":62883,\"mendeley\":63411,\"microblog\":57370,\"microsoft\":62410,\"mix\":62411,\"mixcloud\":62089,\"mixer\":57430,\"mizuni\":62412,\"modx\":62085,\"monero\":62416,\"napster\":62418,\"neos\":62994,\"nimblr\":62888,\"node-js\":62419,\"node\":62489,\"npm\":62420,\"ns8\":62421,\"nutritionix\":62422,\"octopus-deploy\":57474,\"odnoklassniki-square\":62052,\"odnoklassniki\":62051,\"old-republic\":62736,\"opencart\":62013,\"openid\":61851,\"opera\":62058,\"optin-monster\":62012,\"orcid\":63698,\"osi\":62490,\"page4\":62423,\"pagelines\":61836,\"palfed\":62424,\"patreon\":62425,\"paypal\":61933,\"penny-arcade\":63236,\"perbyte\":57475,\"periscope\":62426,\"phabricator\":62427,\"phoenix-framework\":62428,\"phoenix-squadron\":62737,\"php\":62551,\"pied-piper-alt\":61864,\"pied-piper-hat\":62693,\"pied-piper-pp\":61863,\"pied-piper-square\":57374,\"pied-piper\":62126,\"pinterest-p\":62001,\"pinterest-square\":61651,\"pinterest\":61650,\"playstation\":62431,\"product-hunt\":62088,\"pushed\":62433,\"python\":62434,\"qq\":61910,\"quinscape\":62553,\"quora\":62148,\"r-project\":62711,\"raspberry-pi\":63419,\"ravelry\":62169,\"react\":62491,\"reacteurope\":63325,\"readme\":62677,\"rebel\":61904,\"red-river\":62435,\"reddit-alien\":62081,\"reddit-square\":61858,\"reddit\":61857,\"redhat\":63420,\"renren\":61835,\"replyd\":62438,\"researchgate\":62712,\"resolving\":62439,\"rev\":62898,\"rocketchat\":62440,\"rockrms\":62441,\"rust\":57466,\"safari\":62055,\"salesforce\":63547,\"sass\":62494,\"schlix\":62442,\"scribd\":62090,\"searchengin\":62443,\"sellcast\":62170,\"sellsy\":61971,\"servicestack\":62444,\"shirtsinbulk\":61972,\"shopify\":57431,\"shopware\":62901,\"simplybuilt\":61973,\"sistrix\":62446,\"sith\":62738,\"sketch\":63430,\"skyatlas\":61974,\"skype\":61822,\"slack-hash\":62447,\"slack\":61848,\"slideshare\":61927,\"snapchat-ghost\":62124,\"snapchat-square\":62125,\"snapchat\":62123,\"soundcloud\":61886,\"sourcetree\":63443,\"speakap\":62451,\"speaker-deck\":63548,\"spotify\":61884,\"squarespace\":62910,\"stack-exchange\":61837,\"stack-overflow\":61804,\"stackpath\":63554,\"staylinked\":62453,\"steam-square\":61879,\"steam-symbol\":62454,\"steam\":61878,\"sticker-mule\":62455,\"strava\":62504,\"stripe-s\":62506,\"stripe\":62505,\"studiovinari\":62456,\"stumbleupon-circle\":61859,\"stumbleupon\":61860,\"superpowers\":62173,\"supple\":62457,\"suse\":63446,\"swift\":63713,\"symfony\":63549,\"teamspeak\":62713,\"telegram-plane\":62462,\"telegram\":62150,\"tencent-weibo\":61909,\"the-red-yeti\":63133,\"themeco\":62918,\"themeisle\":62130,\"think-peaks\":63281,\"tiktok\":57467,\"trade-federation\":62739,\"trello\":61825,\"tumblr-square\":61812,\"tumblr\":61811,\"twitch\":61928,\"twitter-square\":61569,\"twitter\":61593,\"typo3\":62507,\"uber\":62466,\"ubuntu\":63455,\"uikit\":62467,\"umbraco\":63720,\"uncharted\":57476,\"uniregistry\":62468,\"unity\":57417,\"unsplash\":57468,\"untappd\":62469,\"ups\":63456,\"usb\":62087,\"usps\":63457,\"ussunnah\":62471,\"vaadin\":62472,\"viacoin\":62007,\"viadeo-square\":62122,\"viadeo\":62121,\"viber\":62473,\"vimeo-square\":61844,\"vimeo-v\":62077,\"vimeo\":62474,\"vine\":61898,\"vk\":61833,\"vnv\":62475,\"vuejs\":62495,\"watchman-monitoring\":57479,\"waze\":63551,\"weebly\":62924,\"weibo\":61834,\"weixin\":61911,\"whatsapp-square\":62476,\"whatsapp\":62002,\"whmcs\":62477,\"wikipedia-w\":62054,\"windows\":61818,\"wix\":62927,\"wizards-of-the-coast\":63280,\"wodu\":57480,\"wolf-pack-battalion\":62740,\"wordpress-simple\":62481,\"wordpress\":61850,\"wpbeginner\":62103,\"wpexplorer\":62174,\"wpforms\":62104,\"wpressr\":62436,\"xbox\":62482,\"xing-square\":61801,\"xing\":61800,\"y-combinator\":62011,\"yahoo\":61854,\"yammer\":63552,\"yandex-international\":62484,\"yandex\":62483,\"yarn\":63459,\"yelp\":61929,\"yoast\":62129,\"youtube-square\":62513,\"youtube\":61799,\"zhihu\":63039}"
  },
  {
    "path": "packages/fontawesome5-pro/glyphmaps/FontAwesome5Pro_duotone.json",
    "content": "{\"abacus\":63040,\"acorn\":63150,\"ad\":63041,\"address-book\":62137,\"address-card\":62139,\"adjust\":61506,\"air-conditioner\":63732,\"air-freshener\":62928,\"alarm-clock\":62286,\"alarm-exclamation\":63555,\"alarm-plus\":63556,\"alarm-snooze\":63557,\"album-collection\":63648,\"album\":63647,\"alicorn\":63152,\"alien-monster\":63734,\"alien\":63733,\"align-center\":61495,\"align-justify\":61497,\"align-left\":61494,\"align-right\":61496,\"align-slash\":63558,\"allergies\":62561,\"ambulance\":61689,\"american-sign-language-interpreting\":62115,\"amp-guitar\":63649,\"analytics\":63043,\"anchor\":61757,\"angel\":63353,\"angle-double-down\":61699,\"angle-double-left\":61696,\"angle-double-right\":61697,\"angle-double-up\":61698,\"angle-down\":61703,\"angle-left\":61700,\"angle-right\":61701,\"angle-up\":61702,\"angry\":62806,\"ankh\":63044,\"apple-alt\":62929,\"apple-crate\":63153,\"archive\":61831,\"archway\":62807,\"arrow-alt-circle-down\":62296,\"arrow-alt-circle-left\":62297,\"arrow-alt-circle-right\":62298,\"arrow-alt-circle-up\":62299,\"arrow-alt-down\":62292,\"arrow-alt-from-bottom\":62278,\"arrow-alt-from-left\":62279,\"arrow-alt-from-right\":62280,\"arrow-alt-from-top\":62281,\"arrow-alt-left\":62293,\"arrow-alt-right\":62294,\"arrow-alt-square-down\":62288,\"arrow-alt-square-left\":62289,\"arrow-alt-square-right\":62290,\"arrow-alt-square-up\":62291,\"arrow-alt-to-bottom\":62282,\"arrow-alt-to-left\":62283,\"arrow-alt-to-right\":62284,\"arrow-alt-to-top\":62285,\"arrow-alt-up\":62295,\"arrow-circle-down\":61611,\"arrow-circle-left\":61608,\"arrow-circle-right\":61609,\"arrow-circle-up\":61610,\"arrow-down\":61539,\"arrow-from-bottom\":62274,\"arrow-from-left\":62275,\"arrow-from-right\":62276,\"arrow-from-top\":62277,\"arrow-left\":61536,\"arrow-right\":61537,\"arrow-square-down\":62265,\"arrow-square-left\":62266,\"arrow-square-right\":62267,\"arrow-square-up\":62268,\"arrow-to-bottom\":62269,\"arrow-to-left\":62270,\"arrow-to-right\":62272,\"arrow-to-top\":62273,\"arrow-up\":61538,\"arrows-alt-h\":62263,\"arrows-alt-v\":62264,\"arrows-alt\":61618,\"arrows-h\":61566,\"arrows-v\":61565,\"arrows\":61511,\"assistive-listening-systems\":62114,\"asterisk\":61545,\"at\":61946,\"atlas\":62808,\"atom-alt\":62931,\"atom\":62930,\"audio-description\":62110,\"award\":62809,\"axe-battle\":63155,\"axe\":63154,\"baby-carriage\":63357,\"baby\":63356,\"backpack\":62932,\"backspace\":62810,\"backward\":61514,\"bacon\":63461,\"bacteria\":57433,\"bacterium\":57434,\"badge-check\":62262,\"badge-dollar\":63045,\"badge-percent\":63046,\"badge-sheriff\":63650,\"badge\":62261,\"badger-honey\":63156,\"bags-shopping\":63559,\"bahai\":63078,\"balance-scale-left\":62741,\"balance-scale-right\":62742,\"balance-scale\":62030,\"ball-pile\":63358,\"ballot-check\":63283,\"ballot\":63282,\"ban\":61534,\"band-aid\":62562,\"banjo\":63651,\"barcode-alt\":62563,\"barcode-read\":62564,\"barcode-scan\":62565,\"barcode\":61482,\"bars\":61641,\"baseball-ball\":62515,\"baseball\":62514,\"basketball-ball\":62516,\"basketball-hoop\":62517,\"bat\":63157,\"bath\":62157,\"battery-bolt\":62326,\"battery-empty\":62020,\"battery-full\":62016,\"battery-half\":62018,\"battery-quarter\":62019,\"battery-slash\":62327,\"battery-three-quarters\":62017,\"bed-alt\":63735,\"bed-bunk\":63736,\"bed-empty\":63737,\"bed\":62006,\"beer\":61692,\"bell-exclamation\":63560,\"bell-on\":63738,\"bell-plus\":63561,\"bell-school-slash\":62934,\"bell-school\":62933,\"bell-slash\":61942,\"bell\":61683,\"bells\":63359,\"betamax\":63652,\"bezier-curve\":62811,\"bible\":63047,\"bicycle\":61958,\"biking-mountain\":63563,\"biking\":63562,\"binoculars\":61925,\"biohazard\":63360,\"birthday-cake\":61949,\"blanket\":62616,\"blender-phone\":63158,\"blender\":62743,\"blind\":62109,\"blinds-open\":63740,\"blinds-raised\":63741,\"blinds\":63739,\"blog\":63361,\"bold\":61490,\"bolt\":61671,\"bomb\":61922,\"bone-break\":62936,\"bone\":62935,\"bong\":62812,\"book-alt\":62937,\"book-dead\":63159,\"book-heart\":62617,\"book-medical\":63462,\"book-open\":62744,\"book-reader\":62938,\"book-spells\":63160,\"book-user\":63463,\"book\":61485,\"bookmark\":61486,\"books-medical\":63464,\"books\":62939,\"boombox\":63653,\"boot\":63362,\"booth-curtain\":63284,\"border-all\":63564,\"border-bottom\":63565,\"border-center-h\":63644,\"border-center-v\":63645,\"border-inner\":63566,\"border-left\":63567,\"border-none\":63568,\"border-outer\":63569,\"border-right\":63570,\"border-style-alt\":63572,\"border-style\":63571,\"border-top\":63573,\"bow-arrow\":63161,\"bowling-ball\":62518,\"bowling-pins\":62519,\"box-alt\":62618,\"box-ballot\":63285,\"box-check\":62567,\"box-fragile\":62619,\"box-full\":62620,\"box-heart\":62621,\"box-open\":62622,\"box-tissue\":57435,\"box-up\":62623,\"box-usd\":62624,\"box\":62566,\"boxes-alt\":62625,\"boxes\":62568,\"boxing-glove\":62520,\"brackets-curly\":63466,\"brackets\":63465,\"braille\":62113,\"brain\":62940,\"bread-loaf\":63467,\"bread-slice\":63468,\"briefcase-medical\":62569,\"briefcase\":61617,\"bring-forward\":63574,\"bring-front\":63575,\"broadcast-tower\":62745,\"broom\":62746,\"browser\":62334,\"brush\":62813,\"bug\":61832,\"building\":61869,\"bullhorn\":61601,\"bullseye-arrow\":63048,\"bullseye-pointer\":63049,\"bullseye\":61760,\"burger-soda\":63576,\"burn\":62570,\"burrito\":63469,\"bus-alt\":62814,\"bus-school\":62941,\"bus\":61959,\"business-time\":63050,\"cabinet-filing\":63051,\"cactus\":63655,\"calculator-alt\":63052,\"calculator\":61932,\"calendar-alt\":61555,\"calendar-check\":62068,\"calendar-day\":63363,\"calendar-edit\":62259,\"calendar-exclamation\":62260,\"calendar-minus\":62066,\"calendar-plus\":62065,\"calendar-star\":63286,\"calendar-times\":62067,\"calendar-week\":63364,\"calendar\":61747,\"camcorder\":63656,\"camera-alt\":62258,\"camera-home\":63742,\"camera-movie\":63657,\"camera-polaroid\":63658,\"camera-retro\":61571,\"camera\":61488,\"campfire\":63162,\"campground\":63163,\"candle-holder\":63164,\"candy-cane\":63366,\"candy-corn\":63165,\"cannabis\":62815,\"capsules\":62571,\"car-alt\":62942,\"car-battery\":62943,\"car-building\":63577,\"car-bump\":62944,\"car-bus\":63578,\"car-crash\":62945,\"car-garage\":62946,\"car-mechanic\":62947,\"car-side\":62948,\"car-tilt\":62949,\"car-wash\":62950,\"car\":61881,\"caravan-alt\":57344,\"caravan\":63743,\"caret-circle-down\":62253,\"caret-circle-left\":62254,\"caret-circle-right\":62256,\"caret-circle-up\":62257,\"caret-down\":61655,\"caret-left\":61657,\"caret-right\":61658,\"caret-square-down\":61776,\"caret-square-left\":61841,\"caret-square-right\":61778,\"caret-square-up\":61777,\"caret-up\":61656,\"carrot\":63367,\"cars\":63579,\"cart-arrow-down\":61976,\"cart-plus\":61975,\"cash-register\":63368,\"cassette-tape\":63659,\"cat-space\":57345,\"cat\":63166,\"cauldron\":63167,\"cctv\":63660,\"certificate\":61603,\"chair-office\":63169,\"chair\":63168,\"chalkboard-teacher\":62748,\"chalkboard\":62747,\"charging-station\":62951,\"chart-area\":61950,\"chart-bar\":61568,\"chart-line-down\":63053,\"chart-line\":61953,\"chart-network\":63370,\"chart-pie-alt\":63054,\"chart-pie\":61952,\"chart-scatter\":63470,\"check-circle\":61528,\"check-double\":62816,\"check-square\":61770,\"check\":61452,\"cheese-swiss\":63472,\"cheese\":63471,\"cheeseburger\":63473,\"chess-bishop-alt\":62523,\"chess-bishop\":62522,\"chess-board\":62524,\"chess-clock-alt\":62526,\"chess-clock\":62525,\"chess-king-alt\":62528,\"chess-king\":62527,\"chess-knight-alt\":62530,\"chess-knight\":62529,\"chess-pawn-alt\":62532,\"chess-pawn\":62531,\"chess-queen-alt\":62534,\"chess-queen\":62533,\"chess-rook-alt\":62536,\"chess-rook\":62535,\"chess\":62521,\"chevron-circle-down\":61754,\"chevron-circle-left\":61751,\"chevron-circle-right\":61752,\"chevron-circle-up\":61753,\"chevron-double-down\":62242,\"chevron-double-left\":62243,\"chevron-double-right\":62244,\"chevron-double-up\":62245,\"chevron-down\":61560,\"chevron-left\":61523,\"chevron-right\":61524,\"chevron-square-down\":62249,\"chevron-square-left\":62250,\"chevron-square-right\":62251,\"chevron-square-up\":62252,\"chevron-up\":61559,\"child\":61870,\"chimney\":63371,\"church\":62749,\"circle-notch\":61902,\"circle\":61713,\"city\":63055,\"clarinet\":63661,\"claw-marks\":63170,\"clinic-medical\":63474,\"clipboard-check\":62572,\"clipboard-list-check\":63287,\"clipboard-list\":62573,\"clipboard-prescription\":62952,\"clipboard-user\":63475,\"clipboard\":62248,\"clock\":61463,\"clone\":62029,\"closed-captioning\":61962,\"cloud-download-alt\":62337,\"cloud-download\":61677,\"cloud-drizzle\":63288,\"cloud-hail-mixed\":63290,\"cloud-hail\":63289,\"cloud-meatball\":63291,\"cloud-moon-rain\":63292,\"cloud-moon\":63171,\"cloud-music\":63662,\"cloud-rain\":63293,\"cloud-rainbow\":63294,\"cloud-showers-heavy\":63296,\"cloud-showers\":63295,\"cloud-sleet\":63297,\"cloud-snow\":63298,\"cloud-sun-rain\":63299,\"cloud-sun\":63172,\"cloud-upload-alt\":62338,\"cloud-upload\":61678,\"cloud\":61634,\"clouds-moon\":63301,\"clouds-sun\":63302,\"clouds\":63300,\"club\":62247,\"cocktail\":62817,\"code-branch\":61734,\"code-commit\":62342,\"code-merge\":62343,\"code\":61729,\"coffee-pot\":57346,\"coffee-togo\":63173,\"coffee\":61684,\"coffin-cross\":57425,\"coffin\":63174,\"cog\":61459,\"cogs\":61573,\"coin\":63580,\"coins\":62750,\"columns\":61659,\"comet\":57347,\"comment-alt-check\":62626,\"comment-alt-dollar\":63056,\"comment-alt-dots\":62627,\"comment-alt-edit\":62628,\"comment-alt-exclamation\":62629,\"comment-alt-lines\":62630,\"comment-alt-medical\":63476,\"comment-alt-minus\":62631,\"comment-alt-music\":63663,\"comment-alt-plus\":62632,\"comment-alt-slash\":62633,\"comment-alt-smile\":62634,\"comment-alt-times\":62635,\"comment-alt\":62074,\"comment-check\":62636,\"comment-dollar\":63057,\"comment-dots\":62637,\"comment-edit\":62638,\"comment-exclamation\":62639,\"comment-lines\":62640,\"comment-medical\":63477,\"comment-minus\":62641,\"comment-music\":63664,\"comment-plus\":62642,\"comment-slash\":62643,\"comment-smile\":62644,\"comment-times\":62645,\"comment\":61557,\"comments-alt-dollar\":63058,\"comments-alt\":62646,\"comments-dollar\":63059,\"comments\":61574,\"compact-disc\":62751,\"compass-slash\":62953,\"compass\":61774,\"compress-alt\":62498,\"compress-arrows-alt\":63372,\"compress-wide\":62246,\"compress\":61542,\"computer-classic\":63665,\"computer-speaker\":63666,\"concierge-bell\":62818,\"construction\":63581,\"container-storage\":62647,\"conveyor-belt-alt\":62575,\"conveyor-belt\":62574,\"cookie-bite\":62820,\"cookie\":62819,\"copy\":61637,\"copyright\":61945,\"corn\":63175,\"couch\":62648,\"cow\":63176,\"cowbell-more\":63668,\"cowbell\":63667,\"credit-card-blank\":62345,\"credit-card-front\":62346,\"credit-card\":61597,\"cricket\":62537,\"croissant\":63478,\"crop-alt\":62821,\"crop\":61733,\"cross\":63060,\"crosshairs\":61531,\"crow\":62752,\"crown\":62753,\"crutch\":63479,\"crutches\":63480,\"cube\":61874,\"cubes\":61875,\"curling\":62538,\"cut\":61636,\"dagger\":63179,\"database\":61888,\"deaf\":62116,\"debug\":63481,\"deer-rudolph\":63375,\"deer\":63374,\"democrat\":63303,\"desktop-alt\":62352,\"desktop\":61704,\"dewpoint\":63304,\"dharmachakra\":63061,\"diagnoses\":62576,\"diamond\":61977,\"dice-d10\":63181,\"dice-d12\":63182,\"dice-d20\":63183,\"dice-d4\":63184,\"dice-d6\":63185,\"dice-d8\":63186,\"dice-five\":62755,\"dice-four\":62756,\"dice-one\":62757,\"dice-six\":62758,\"dice-three\":62759,\"dice-two\":62760,\"dice\":62754,\"digging\":63582,\"digital-tachograph\":62822,\"diploma\":62954,\"directions\":62955,\"disc-drive\":63669,\"disease\":63482,\"divide\":62761,\"dizzy\":62823,\"dna\":62577,\"do-not-enter\":62956,\"dog-leashed\":63188,\"dog\":63187,\"dollar-sign\":61781,\"dolly-empty\":62579,\"dolly-flatbed-alt\":62581,\"dolly-flatbed-empty\":62582,\"dolly-flatbed\":62580,\"dolly\":62578,\"donate\":62649,\"door-closed\":62762,\"door-open\":62763,\"dot-circle\":61842,\"dove\":62650,\"download\":61465,\"drafting-compass\":62824,\"dragon\":63189,\"draw-circle\":62957,\"draw-polygon\":62958,\"draw-square\":62959,\"dreidel\":63378,\"drone-alt\":63584,\"drone\":63583,\"drum-steelpan\":62826,\"drum\":62825,\"drumstick-bite\":63191,\"drumstick\":63190,\"dryer-alt\":63586,\"dryer\":63585,\"duck\":63192,\"dumbbell\":62539,\"dumpster-fire\":63380,\"dumpster\":63379,\"dungeon\":63193,\"ear-muffs\":63381,\"ear\":62960,\"eclipse-alt\":63306,\"eclipse\":63305,\"edit\":61508,\"egg-fried\":63484,\"egg\":63483,\"eject\":61522,\"elephant\":63194,\"ellipsis-h-alt\":62363,\"ellipsis-h\":61761,\"ellipsis-v-alt\":62364,\"ellipsis-v\":61762,\"empty-set\":63062,\"engine-warning\":62962,\"envelope-open-dollar\":63063,\"envelope-open-text\":63064,\"envelope-open\":62134,\"envelope-square\":61849,\"envelope\":61664,\"equals\":62764,\"eraser\":61741,\"ethernet\":63382,\"euro-sign\":61779,\"exchange-alt\":62306,\"exchange\":61676,\"exclamation-circle\":61546,\"exclamation-square\":62241,\"exclamation-triangle\":61553,\"exclamation\":61738,\"expand-alt\":62500,\"expand-arrows-alt\":62238,\"expand-arrows\":62237,\"expand-wide\":62240,\"expand\":61541,\"external-link-alt\":62301,\"external-link-square-alt\":62304,\"external-link-square\":61772,\"external-link\":61582,\"eye-dropper\":61947,\"eye-evil\":63195,\"eye-slash\":61552,\"eye\":61550,\"fan-table\":57348,\"fan\":63587,\"farm\":63588,\"fast-backward\":61513,\"fast-forward\":61520,\"faucet-drip\":57350,\"faucet\":57349,\"fax\":61868,\"feather-alt\":62827,\"feather\":62765,\"female\":61826,\"field-hockey\":62540,\"fighter-jet\":61691,\"file-alt\":61788,\"file-archive\":61894,\"file-audio\":61895,\"file-certificate\":62963,\"file-chart-line\":63065,\"file-chart-pie\":63066,\"file-check\":62230,\"file-code\":61897,\"file-contract\":62828,\"file-csv\":63197,\"file-download\":62829,\"file-edit\":62236,\"file-excel\":61891,\"file-exclamation\":62234,\"file-export\":62830,\"file-image\":61893,\"file-import\":62831,\"file-invoice-dollar\":62833,\"file-invoice\":62832,\"file-medical-alt\":62584,\"file-medical\":62583,\"file-minus\":62232,\"file-music\":63670,\"file-pdf\":61889,\"file-plus\":62233,\"file-powerpoint\":61892,\"file-prescription\":62834,\"file-search\":63589,\"file-signature\":62835,\"file-spreadsheet\":63067,\"file-times\":62231,\"file-upload\":62836,\"file-user\":63068,\"file-video\":61896,\"file-word\":61890,\"file\":61787,\"files-medical\":63485,\"fill-drip\":62838,\"fill\":62837,\"film-alt\":62368,\"film-canister\":63671,\"film\":61448,\"filter\":61616,\"fingerprint\":62839,\"fire-alt\":63460,\"fire-extinguisher\":61748,\"fire-smoke\":63307,\"fire\":61549,\"fireplace\":63386,\"first-aid\":62585,\"fish-cooked\":63486,\"fish\":62840,\"fist-raised\":63198,\"flag-alt\":63308,\"flag-checkered\":61726,\"flag-usa\":63309,\"flag\":61476,\"flame\":63199,\"flashlight\":63672,\"flask-poison\":63200,\"flask-potion\":63201,\"flask\":61635,\"flower-daffodil\":63488,\"flower-tulip\":63489,\"flower\":63487,\"flushed\":62841,\"flute\":63673,\"flux-capacitor\":63674,\"fog\":63310,\"folder-download\":57427,\"folder-minus\":63069,\"folder-open\":61564,\"folder-plus\":63070,\"folder-times\":63071,\"folder-tree\":63490,\"folder-upload\":57428,\"folder\":61563,\"folders\":63072,\"font-awesome-logo-full\":62694,\"font-case\":63590,\"font\":61489,\"football-ball\":62542,\"football-helmet\":62543,\"forklift\":62586,\"forward\":61518,\"fragile\":62651,\"french-fries\":63491,\"frog\":62766,\"frosty-head\":63387,\"frown-open\":62842,\"frown\":61721,\"function\":63073,\"funnel-dollar\":63074,\"futbol\":61923,\"galaxy\":57352,\"game-board-alt\":63592,\"game-board\":63591,\"game-console-handheld\":63675,\"gamepad-alt\":63676,\"gamepad\":61723,\"garage-car\":57354,\"garage-open\":57355,\"garage\":57353,\"gas-pump-slash\":62964,\"gas-pump\":62767,\"gavel\":61667,\"gem\":62373,\"genderless\":61997,\"ghost\":63202,\"gift-card\":63075,\"gift\":61547,\"gifts\":63388,\"gingerbread-man\":63389,\"glass-champagne\":63390,\"glass-cheers\":63391,\"glass-citrus\":63593,\"glass-martini-alt\":62843,\"glass-martini\":61440,\"glass-whiskey-rocks\":63393,\"glass-whiskey\":63392,\"glass\":63492,\"glasses-alt\":62965,\"glasses\":62768,\"globe-africa\":62844,\"globe-americas\":62845,\"globe-asia\":62846,\"globe-europe\":63394,\"globe-snow\":63395,\"globe-stand\":62966,\"globe\":61612,\"golf-ball\":62544,\"golf-club\":62545,\"gopuram\":63076,\"graduation-cap\":61853,\"gramophone\":63677,\"greater-than-equal\":62770,\"greater-than\":62769,\"grimace\":62847,\"grin-alt\":62849,\"grin-beam-sweat\":62851,\"grin-beam\":62850,\"grin-hearts\":62852,\"grin-squint-tears\":62854,\"grin-squint\":62853,\"grin-stars\":62855,\"grin-tears\":62856,\"grin-tongue-squint\":62858,\"grin-tongue-wink\":62859,\"grin-tongue\":62857,\"grin-wink\":62860,\"grin\":62848,\"grip-horizontal\":62861,\"grip-lines-vertical\":63397,\"grip-lines\":63396,\"grip-vertical\":62862,\"guitar-electric\":63678,\"guitar\":63398,\"guitars\":63679,\"h-square\":61693,\"h1\":62227,\"h2\":62228,\"h3\":62229,\"h4\":63594,\"hamburger\":63493,\"hammer-war\":63204,\"hammer\":63203,\"hamsa\":63077,\"hand-heart\":62652,\"hand-holding-box\":62587,\"hand-holding-heart\":62654,\"hand-holding-magic\":63205,\"hand-holding-medical\":57436,\"hand-holding-seedling\":62655,\"hand-holding-usd\":62656,\"hand-holding-water\":62657,\"hand-holding\":62653,\"hand-lizard\":62040,\"hand-middle-finger\":63494,\"hand-paper\":62038,\"hand-peace\":62043,\"hand-point-down\":61607,\"hand-point-left\":61605,\"hand-point-right\":61604,\"hand-point-up\":61606,\"hand-pointer\":62042,\"hand-receiving\":62588,\"hand-rock\":62037,\"hand-scissors\":62039,\"hand-sparkles\":57437,\"hand-spock\":62041,\"hands-heart\":62659,\"hands-helping\":62660,\"hands-usd\":62661,\"hands-wash\":57438,\"hands\":62658,\"handshake-alt-slash\":57439,\"handshake-alt\":62662,\"handshake-slash\":57440,\"handshake\":62133,\"hanukiah\":63206,\"hard-hat\":63495,\"hashtag\":62098,\"hat-chef\":63595,\"hat-cowboy-side\":63681,\"hat-cowboy\":63680,\"hat-santa\":63399,\"hat-winter\":63400,\"hat-witch\":63207,\"hat-wizard\":63208,\"hdd\":61600,\"head-side-brain\":63496,\"head-side-cough-slash\":57442,\"head-side-cough\":57441,\"head-side-headphones\":63682,\"head-side-mask\":57443,\"head-side-medical\":63497,\"head-side-virus\":57444,\"head-side\":63209,\"head-vr\":63210,\"heading\":61916,\"headphones-alt\":62863,\"headphones\":61477,\"headset\":62864,\"heart-broken\":63401,\"heart-circle\":62663,\"heart-rate\":62968,\"heart-square\":62664,\"heart\":61444,\"heartbeat\":61982,\"heat\":57356,\"helicopter\":62771,\"helmet-battle\":63211,\"hexagon\":62226,\"highlighter\":62865,\"hiking\":63212,\"hippo\":63213,\"history\":61914,\"hockey-mask\":63214,\"hockey-puck\":62547,\"hockey-sticks\":62548,\"holly-berry\":63402,\"home-alt\":63498,\"home-heart\":62665,\"home-lg-alt\":63500,\"home-lg\":63499,\"home\":61461,\"hood-cloak\":63215,\"horizontal-rule\":63596,\"horse-head\":63403,\"horse-saddle\":63683,\"horse\":63216,\"hospital-alt\":62589,\"hospital-symbol\":62590,\"hospital-user\":63501,\"hospital\":61688,\"hospitals\":63502,\"hot-tub\":62867,\"hotdog\":63503,\"hotel\":62868,\"hourglass-end\":62035,\"hourglass-half\":62034,\"hourglass-start\":62033,\"hourglass\":62036,\"house-damage\":63217,\"house-day\":57358,\"house-flood\":63311,\"house-leave\":57359,\"house-night\":57360,\"house-return\":57361,\"house-signal\":57362,\"house-user\":57445,\"house\":57357,\"hryvnia\":63218,\"humidity\":63312,\"hurricane\":63313,\"i-cursor\":62022,\"ice-cream\":63504,\"ice-skate\":63404,\"icicles\":63405,\"icons-alt\":63598,\"icons\":63597,\"id-badge\":62145,\"id-card-alt\":62591,\"id-card\":62146,\"igloo\":63406,\"image-polaroid\":63684,\"image\":61502,\"images\":62210,\"inbox-in\":62224,\"inbox-out\":62225,\"inbox\":61468,\"indent\":61500,\"industry-alt\":62387,\"industry\":62069,\"infinity\":62772,\"info-circle\":61530,\"info-square\":62223,\"info\":61737,\"inhaler\":62969,\"integral\":63079,\"intersection\":63080,\"inventory\":62592,\"island-tropical\":63505,\"italic\":61491,\"jack-o-lantern\":62222,\"jedi\":63081,\"joint\":62869,\"journal-whills\":63082,\"joystick\":63685,\"jug\":63686,\"kaaba\":63083,\"kazoo\":63687,\"kerning\":63599,\"key-skeleton\":63219,\"key\":61572,\"keyboard\":61724,\"keynote\":63084,\"khanda\":63085,\"kidneys\":62971,\"kiss-beam\":62871,\"kiss-wink-heart\":62872,\"kiss\":62870,\"kite\":63220,\"kiwi-bird\":62773,\"knife-kitchen\":63221,\"lambda\":63086,\"lamp-desk\":57364,\"lamp-floor\":57365,\"lamp\":62666,\"landmark-alt\":63314,\"landmark\":63087,\"language\":61867,\"laptop-code\":62972,\"laptop-house\":57446,\"laptop-medical\":63506,\"laptop\":61705,\"lasso\":63688,\"laugh-beam\":62874,\"laugh-squint\":62875,\"laugh-wink\":62876,\"laugh\":62873,\"layer-group\":62973,\"layer-minus\":62974,\"layer-plus\":62975,\"leaf-heart\":62667,\"leaf-maple\":63222,\"leaf-oak\":63223,\"leaf\":61548,\"lemon\":61588,\"less-than-equal\":62775,\"less-than\":62774,\"level-down-alt\":62398,\"level-down\":61769,\"level-up-alt\":62399,\"level-up\":61768,\"life-ring\":61901,\"light-ceiling\":57366,\"light-switch-off\":57368,\"light-switch-on\":57369,\"light-switch\":57367,\"lightbulb-dollar\":63088,\"lightbulb-exclamation\":63089,\"lightbulb-on\":63090,\"lightbulb-slash\":63091,\"lightbulb\":61675,\"lights-holiday\":63410,\"line-columns\":63600,\"line-height\":63601,\"link\":61633,\"lips\":62976,\"lira-sign\":61845,\"list-alt\":61474,\"list-music\":63689,\"list-ol\":61643,\"list-ul\":61642,\"list\":61498,\"location-arrow\":61732,\"location-circle\":62978,\"location-slash\":62979,\"location\":62977,\"lock-alt\":62221,\"lock-open-alt\":62402,\"lock-open\":62401,\"lock\":61475,\"long-arrow-alt-down\":62217,\"long-arrow-alt-left\":62218,\"long-arrow-alt-right\":62219,\"long-arrow-alt-up\":62220,\"long-arrow-down\":61813,\"long-arrow-left\":61815,\"long-arrow-right\":61816,\"long-arrow-up\":61814,\"loveseat\":62668,\"low-vision\":62120,\"luchador\":62549,\"luggage-cart\":62877,\"lungs-virus\":57447,\"lungs\":62980,\"mace\":63224,\"magic\":61648,\"magnet\":61558,\"mail-bulk\":63092,\"mailbox\":63507,\"male\":61827,\"mandolin\":63225,\"map-marked-alt\":62880,\"map-marked\":62879,\"map-marker-alt-slash\":62981,\"map-marker-alt\":62405,\"map-marker-check\":62982,\"map-marker-edit\":62983,\"map-marker-exclamation\":62984,\"map-marker-minus\":62985,\"map-marker-plus\":62986,\"map-marker-question\":62987,\"map-marker-slash\":62988,\"map-marker-smile\":62989,\"map-marker-times\":62990,\"map-marker\":61505,\"map-pin\":62070,\"map-signs\":62071,\"map\":62073,\"marker\":62881,\"mars-double\":61991,\"mars-stroke-h\":61995,\"mars-stroke-v\":61994,\"mars-stroke\":61993,\"mars\":61986,\"mask\":63226,\"meat\":63508,\"medal\":62882,\"medkit\":61690,\"megaphone\":63093,\"meh-blank\":62884,\"meh-rolling-eyes\":62885,\"meh\":61722,\"memory\":62776,\"menorah\":63094,\"mercury\":61987,\"meteor\":63315,\"microchip\":62171,\"microphone-alt-slash\":62777,\"microphone-alt\":62409,\"microphone-slash\":61745,\"microphone-stand\":63691,\"microphone\":61744,\"microscope\":62992,\"microwave\":57371,\"mind-share\":63095,\"minus-circle\":61526,\"minus-hexagon\":62215,\"minus-octagon\":62216,\"minus-square\":61766,\"minus\":61544,\"mistletoe\":63412,\"mitten\":63413,\"mobile-alt\":62413,\"mobile-android-alt\":62415,\"mobile-android\":62414,\"mobile\":61707,\"money-bill-alt\":62417,\"money-bill-wave-alt\":62779,\"money-bill-wave\":62778,\"money-bill\":61654,\"money-check-alt\":62781,\"money-check-edit-alt\":63603,\"money-check-edit\":63602,\"money-check\":62780,\"monitor-heart-rate\":62993,\"monkey\":63227,\"monument\":62886,\"moon-cloud\":63316,\"moon-stars\":63317,\"moon\":61830,\"mortar-pestle\":62887,\"mosque\":63096,\"motorcycle\":61980,\"mountain\":63228,\"mountains\":63229,\"mouse-alt\":63693,\"mouse-pointer\":62021,\"mouse\":63692,\"mp3-player\":63694,\"mug-hot\":63414,\"mug-marshmallows\":63415,\"mug-tea\":63605,\"mug\":63604,\"music-alt-slash\":63696,\"music-alt\":63695,\"music-slash\":63697,\"music\":61441,\"narwhal\":63230,\"network-wired\":63231,\"neuter\":61996,\"newspaper\":61930,\"not-equal\":62782,\"notes-medical\":62593,\"object-group\":62023,\"object-ungroup\":62024,\"octagon\":62214,\"oil-can\":62995,\"oil-temp\":62996,\"om\":63097,\"omega\":63098,\"ornament\":63416,\"otter\":63232,\"outdent\":61499,\"outlet\":57372,\"oven\":57373,\"overline\":63606,\"page-break\":63607,\"pager\":63509,\"paint-brush-alt\":62889,\"paint-brush\":61948,\"paint-roller\":62890,\"palette\":62783,\"pallet-alt\":62595,\"pallet\":62594,\"paper-plane\":61912,\"paperclip\":61638,\"parachute-box\":62669,\"paragraph-rtl\":63608,\"paragraph\":61917,\"parking-circle-slash\":62998,\"parking-circle\":62997,\"parking-slash\":62999,\"parking\":62784,\"passport\":62891,\"pastafarianism\":63099,\"paste\":61674,\"pause-circle\":62091,\"pause\":61516,\"paw-alt\":63233,\"paw-claws\":63234,\"paw\":61872,\"peace\":63100,\"pegasus\":63235,\"pen-alt\":62213,\"pen-fancy\":62892,\"pen-nib\":62893,\"pen-square\":61771,\"pen\":62212,\"pencil-alt\":62211,\"pencil-paintbrush\":63000,\"pencil-ruler\":62894,\"pencil\":61504,\"pennant\":62550,\"people-arrows\":57448,\"people-carry\":62670,\"pepper-hot\":63510,\"percent\":62101,\"percentage\":62785,\"person-booth\":63318,\"person-carry\":62671,\"person-dolly-empty\":62673,\"person-dolly\":62672,\"person-sign\":63319,\"phone-alt\":63609,\"phone-laptop\":63610,\"phone-office\":63101,\"phone-plus\":62674,\"phone-rotary\":63699,\"phone-slash\":62429,\"phone-square-alt\":63611,\"phone-square\":61592,\"phone-volume\":62112,\"phone\":61589,\"photo-video\":63612,\"pi\":63102,\"piano-keyboard\":63701,\"piano\":63700,\"pie\":63237,\"pig\":63238,\"piggy-bank\":62675,\"pills\":62596,\"pizza-slice\":63512,\"pizza\":63511,\"place-of-worship\":63103,\"plane-alt\":62430,\"plane-arrival\":62895,\"plane-departure\":62896,\"plane-slash\":57449,\"plane\":61554,\"planet-moon\":57375,\"planet-ringed\":57376,\"play-circle\":61764,\"play\":61515,\"plug\":61926,\"plus-circle\":61525,\"plus-hexagon\":62208,\"plus-octagon\":62209,\"plus-square\":61694,\"plus\":61543,\"podcast\":62158,\"podium-star\":63320,\"podium\":63104,\"police-box\":57377,\"poll-h\":63106,\"poll-people\":63321,\"poll\":63105,\"poo-storm\":63322,\"poo\":62206,\"poop\":63001,\"popcorn\":63513,\"portal-enter\":57378,\"portal-exit\":57379,\"portrait\":62432,\"pound-sign\":61780,\"power-off\":61457,\"pray\":63107,\"praying-hands\":63108,\"prescription-bottle-alt\":62598,\"prescription-bottle\":62597,\"prescription\":62897,\"presentation\":63109,\"print-search\":63514,\"print-slash\":63110,\"print\":61487,\"procedures\":62599,\"project-diagram\":62786,\"projector\":63702,\"pump-medical\":57450,\"pump-soap\":57451,\"pumpkin\":63239,\"puzzle-piece\":61742,\"qrcode\":61481,\"question-circle\":61529,\"question-square\":62205,\"question\":61736,\"quidditch\":62552,\"quote-left\":61709,\"quote-right\":61710,\"quran\":63111,\"rabbit-fast\":63241,\"rabbit\":63240,\"racquet\":62554,\"radar\":57380,\"radiation-alt\":63418,\"radiation\":63417,\"radio-alt\":63704,\"radio\":63703,\"rainbow\":63323,\"raindrops\":63324,\"ram\":63242,\"ramp-loading\":62676,\"random\":61556,\"raygun\":57381,\"receipt\":62787,\"record-vinyl\":63705,\"rectangle-landscape\":62202,\"rectangle-portrait\":62203,\"rectangle-wide\":62204,\"recycle\":61880,\"redo-alt\":62201,\"redo\":61470,\"refrigerator\":57382,\"registered\":62045,\"remove-format\":63613,\"repeat-1-alt\":62310,\"repeat-1\":62309,\"repeat-alt\":62308,\"repeat\":62307,\"reply-all\":61730,\"reply\":62437,\"republican\":63326,\"restroom\":63421,\"retweet-alt\":62305,\"retweet\":61561,\"ribbon\":62678,\"ring\":63243,\"rings-wedding\":63515,\"road\":61464,\"robot\":62788,\"rocket-launch\":57383,\"rocket\":61749,\"route-highway\":63002,\"route-interstate\":63003,\"route\":62679,\"router\":63706,\"rss-square\":61763,\"rss\":61598,\"ruble-sign\":61784,\"ruler-combined\":62790,\"ruler-horizontal\":62791,\"ruler-triangle\":63004,\"ruler-vertical\":62792,\"ruler\":62789,\"running\":63244,\"rupee-sign\":61782,\"rv\":63422,\"sack-dollar\":63517,\"sack\":63516,\"sad-cry\":62899,\"sad-tear\":62900,\"salad\":63518,\"sandwich\":63519,\"satellite-dish\":63424,\"satellite\":63423,\"sausage\":63520,\"save\":61639,\"sax-hot\":63707,\"saxophone\":63708,\"scalpel-path\":63006,\"scalpel\":63005,\"scanner-image\":63731,\"scanner-keyboard\":62601,\"scanner-touchscreen\":62602,\"scanner\":62600,\"scarecrow\":63245,\"scarf\":63425,\"school\":62793,\"screwdriver\":62794,\"scroll-old\":63247,\"scroll\":63246,\"scrubber\":62200,\"scythe\":63248,\"sd-card\":63426,\"search-dollar\":63112,\"search-location\":63113,\"search-minus\":61456,\"search-plus\":61454,\"search\":61442,\"seedling\":62680,\"send-back\":63614,\"send-backward\":63615,\"sensor-alert\":57385,\"sensor-fire\":57386,\"sensor-on\":57387,\"sensor-smoke\":57388,\"sensor\":57384,\"server\":62003,\"shapes\":63007,\"share-all\":62311,\"share-alt-square\":61921,\"share-alt\":61920,\"share-square\":61773,\"share\":61540,\"sheep\":63249,\"shekel-sign\":61963,\"shield-alt\":62445,\"shield-check\":62199,\"shield-cross\":63250,\"shield-virus\":57452,\"shield\":61746,\"ship\":61978,\"shipping-fast\":62603,\"shipping-timed\":62604,\"shish-kebab\":63521,\"shoe-prints\":62795,\"shopping-bag\":62096,\"shopping-basket\":62097,\"shopping-cart\":61562,\"shovel-snow\":63427,\"shovel\":63251,\"shower\":62156,\"shredder\":63114,\"shuttle-van\":62902,\"shuttlecock\":62555,\"sickle\":63522,\"sigma\":63115,\"sign-in-alt\":62198,\"sign-in\":61584,\"sign-language\":62119,\"sign-out-alt\":62197,\"sign-out\":61579,\"sign\":62681,\"signal-1\":63116,\"signal-2\":63117,\"signal-3\":63118,\"signal-4\":63119,\"signal-alt-1\":63121,\"signal-alt-2\":63122,\"signal-alt-3\":63123,\"signal-alt-slash\":63124,\"signal-alt\":63120,\"signal-slash\":63125,\"signal-stream\":63709,\"signal\":61458,\"signature\":62903,\"sim-card\":63428,\"sink\":57453,\"siren-on\":57390,\"siren\":57389,\"sitemap\":61672,\"skating\":63429,\"skeleton\":63008,\"ski-jump\":63431,\"ski-lift\":63432,\"skiing-nordic\":63434,\"skiing\":63433,\"skull-cow\":63710,\"skull-crossbones\":63252,\"skull\":62796,\"slash\":63253,\"sledding\":63435,\"sleigh\":63436,\"sliders-h-square\":62448,\"sliders-h\":61918,\"sliders-v-square\":62450,\"sliders-v\":62449,\"smile-beam\":62904,\"smile-plus\":62905,\"smile-wink\":62682,\"smile\":61720,\"smog\":63327,\"smoke\":63328,\"smoking-ban\":62797,\"smoking\":62605,\"sms\":63437,\"snake\":63254,\"snooze\":63616,\"snow-blowing\":63329,\"snowboarding\":63438,\"snowflake\":62172,\"snowflakes\":63439,\"snowman\":63440,\"snowmobile\":63441,\"snowplow\":63442,\"soap\":57454,\"socks\":63126,\"solar-panel\":62906,\"solar-system\":57391,\"sort-alpha-down-alt\":63617,\"sort-alpha-down\":61789,\"sort-alpha-up-alt\":63618,\"sort-alpha-up\":61790,\"sort-alt\":63619,\"sort-amount-down-alt\":63620,\"sort-amount-down\":61792,\"sort-amount-up-alt\":63621,\"sort-amount-up\":61793,\"sort-circle-down\":57393,\"sort-circle-up\":57394,\"sort-circle\":57392,\"sort-down\":61661,\"sort-numeric-down-alt\":63622,\"sort-numeric-down\":61794,\"sort-numeric-up-alt\":63623,\"sort-numeric-up\":61795,\"sort-shapes-down-alt\":63625,\"sort-shapes-down\":63624,\"sort-shapes-up-alt\":63627,\"sort-shapes-up\":63626,\"sort-size-down-alt\":63629,\"sort-size-down\":63628,\"sort-size-up-alt\":63631,\"sort-size-up\":63630,\"sort-up\":61662,\"sort\":61660,\"soup\":63523,\"spa\":62907,\"space-shuttle\":61847,\"space-station-moon-alt\":57396,\"space-station-moon\":57395,\"spade\":62196,\"sparkles\":63632,\"speaker\":63711,\"speakers\":63712,\"spell-check\":63633,\"spider-black-widow\":63256,\"spider-web\":63257,\"spider\":63255,\"spinner-third\":62452,\"spinner\":61712,\"splotch\":62908,\"spray-can\":62909,\"sprinkler\":57397,\"square-full\":62556,\"square-root-alt\":63128,\"square-root\":63127,\"square\":61640,\"squirrel\":63258,\"staff\":63259,\"stamp\":62911,\"star-and-crescent\":63129,\"star-christmas\":63444,\"star-exclamation\":62195,\"star-half-alt\":62912,\"star-half\":61577,\"star-of-david\":63130,\"star-of-life\":63009,\"star-shooting\":57398,\"star\":61445,\"starfighter-alt\":57400,\"starfighter\":57399,\"stars\":63330,\"starship-freighter\":57402,\"starship\":57401,\"steak\":63524,\"steering-wheel\":63010,\"step-backward\":61512,\"step-forward\":61521,\"stethoscope\":61681,\"sticky-note\":62025,\"stocking\":63445,\"stomach\":63011,\"stop-circle\":62093,\"stop\":61517,\"stopwatch-20\":57455,\"stopwatch\":62194,\"store-alt-slash\":57456,\"store-alt\":62799,\"store-slash\":57457,\"store\":62798,\"stream\":62800,\"street-view\":61981,\"stretcher\":63525,\"strikethrough\":61644,\"stroopwafel\":62801,\"subscript\":61740,\"subway\":62009,\"suitcase-rolling\":62913,\"suitcase\":61682,\"sun-cloud\":63331,\"sun-dust\":63332,\"sun-haze\":63333,\"sun\":61829,\"sunglasses\":63634,\"sunrise\":63334,\"sunset\":63335,\"superscript\":61739,\"surprise\":62914,\"swatchbook\":62915,\"swimmer\":62916,\"swimming-pool\":62917,\"sword-laser-alt\":57404,\"sword-laser\":57403,\"sword\":63260,\"swords-laser\":57405,\"swords\":63261,\"synagogue\":63131,\"sync-alt\":62193,\"sync\":61473,\"syringe\":62606,\"table-tennis\":62557,\"table\":61646,\"tablet-alt\":62458,\"tablet-android-alt\":62460,\"tablet-android\":62459,\"tablet-rugged\":62607,\"tablet\":61706,\"tablets\":62608,\"tachometer-alt-average\":63012,\"tachometer-alt-fast\":63013,\"tachometer-alt-fastest\":63014,\"tachometer-alt-slow\":63015,\"tachometer-alt-slowest\":63016,\"tachometer-alt\":62461,\"tachometer-average\":63017,\"tachometer-fast\":63018,\"tachometer-fastest\":63019,\"tachometer-slow\":63020,\"tachometer-slowest\":63021,\"tachometer\":61668,\"taco\":63526,\"tag\":61483,\"tags\":61484,\"tally\":63132,\"tanakh\":63527,\"tape\":62683,\"tasks-alt\":63528,\"tasks\":61614,\"taxi\":61882,\"teeth-open\":63023,\"teeth\":63022,\"telescope\":57406,\"temperature-down\":57407,\"temperature-frigid\":63336,\"temperature-high\":63337,\"temperature-hot\":63338,\"temperature-low\":63339,\"temperature-up\":57408,\"tenge\":63447,\"tennis-ball\":62558,\"terminal\":61728,\"text-height\":61492,\"text-size\":63636,\"text-width\":61493,\"text\":63635,\"th-large\":61449,\"th-list\":61451,\"th\":61450,\"theater-masks\":63024,\"thermometer-empty\":62155,\"thermometer-full\":62151,\"thermometer-half\":62153,\"thermometer-quarter\":62154,\"thermometer-three-quarters\":62152,\"thermometer\":62609,\"theta\":63134,\"thumbs-down\":61797,\"thumbs-up\":61796,\"thumbtack\":61581,\"thunderstorm-moon\":63341,\"thunderstorm-sun\":63342,\"thunderstorm\":63340,\"ticket-alt\":62463,\"ticket\":61765,\"tilde\":63135,\"times-circle\":61527,\"times-hexagon\":62190,\"times-octagon\":62192,\"times-square\":62163,\"times\":61453,\"tint-slash\":62919,\"tint\":61507,\"tire-flat\":63026,\"tire-pressure-warning\":63027,\"tire-rugged\":63028,\"tire\":63025,\"tired\":62920,\"toggle-off\":61956,\"toggle-on\":61957,\"toilet-paper-alt\":63263,\"toilet-paper-slash\":57458,\"toilet-paper\":63262,\"toilet\":63448,\"tombstone-alt\":63265,\"tombstone\":63264,\"toolbox\":62802,\"tools\":63449,\"tooth\":62921,\"toothbrush\":63029,\"torah\":63136,\"torii-gate\":63137,\"tornado\":63343,\"tractor\":63266,\"trademark\":62044,\"traffic-cone\":63030,\"traffic-light-go\":63032,\"traffic-light-slow\":63033,\"traffic-light-stop\":63034,\"traffic-light\":63031,\"trailer\":57409,\"train\":62008,\"tram\":63450,\"transgender-alt\":61989,\"transgender\":61988,\"transporter-1\":57411,\"transporter-2\":57412,\"transporter-3\":57413,\"transporter-empty\":57414,\"transporter\":57410,\"trash-alt\":62189,\"trash-restore-alt\":63530,\"trash-restore\":63529,\"trash-undo-alt\":63638,\"trash-undo\":63637,\"trash\":61944,\"treasure-chest\":63267,\"tree-alt\":62464,\"tree-christmas\":63451,\"tree-decorated\":63452,\"tree-large\":63453,\"tree-palm\":63531,\"tree\":61883,\"trees\":63268,\"triangle-music\":63714,\"triangle\":62188,\"trophy-alt\":62187,\"trophy\":61585,\"truck-container\":62684,\"truck-couch\":62685,\"truck-loading\":62686,\"truck-monster\":63035,\"truck-moving\":62687,\"truck-pickup\":63036,\"truck-plow\":63454,\"truck-ramp\":62688,\"truck\":61649,\"trumpet\":63715,\"tshirt\":62803,\"tty\":61924,\"turkey\":63269,\"turntable\":63716,\"turtle\":63270,\"tv-alt\":63717,\"tv-music\":63718,\"tv-retro\":62465,\"tv\":62060,\"typewriter\":63719,\"ufo-beam\":57416,\"ufo\":57415,\"umbrella-beach\":62922,\"umbrella\":61673,\"underline\":61645,\"undo-alt\":62186,\"undo\":61666,\"unicorn\":63271,\"union\":63138,\"universal-access\":62106,\"university\":61852,\"unlink\":61735,\"unlock-alt\":61758,\"unlock\":61596,\"upload\":61587,\"usb-drive\":63721,\"usd-circle\":62184,\"usd-square\":62185,\"user-alien\":57418,\"user-alt-slash\":62714,\"user-alt\":62470,\"user-astronaut\":62715,\"user-chart\":63139,\"user-check\":62716,\"user-circle\":62141,\"user-clock\":62717,\"user-cog\":62718,\"user-cowboy\":63722,\"user-crown\":63140,\"user-edit\":62719,\"user-friends\":62720,\"user-graduate\":62721,\"user-hard-hat\":63532,\"user-headset\":63533,\"user-injured\":63272,\"user-lock\":62722,\"user-md-chat\":63534,\"user-md\":61680,\"user-minus\":62723,\"user-music\":63723,\"user-ninja\":62724,\"user-nurse\":63535,\"user-plus\":62004,\"user-robot\":57419,\"user-secret\":61979,\"user-shield\":62725,\"user-slash\":62726,\"user-tag\":62727,\"user-tie\":62728,\"user-times\":62005,\"user-unlock\":57432,\"user-visor\":57420,\"user\":61447,\"users-class\":63037,\"users-cog\":62729,\"users-crown\":63141,\"users-medical\":63536,\"users-slash\":57459,\"users\":61632,\"utensil-fork\":62179,\"utensil-knife\":62180,\"utensil-spoon\":62181,\"utensils-alt\":62182,\"utensils\":62183,\"vacuum-robot\":57422,\"vacuum\":57421,\"value-absolute\":63142,\"vector-square\":62923,\"venus-double\":61990,\"venus-mars\":61992,\"venus\":61985,\"vest-patches\":57478,\"vest\":57477,\"vhs\":63724,\"vial\":62610,\"vials\":62611,\"video-plus\":62689,\"video-slash\":62690,\"video\":61501,\"vihara\":63143,\"violin\":63725,\"virus-slash\":57461,\"virus\":57460,\"viruses\":57462,\"voicemail\":63639,\"volcano\":63344,\"volleyball-ball\":62559,\"volume-down\":61479,\"volume-mute\":63145,\"volume-off\":61478,\"volume-slash\":62178,\"volume-up\":61480,\"volume\":63144,\"vote-nay\":63345,\"vote-yea\":63346,\"vr-cardboard\":63273,\"wagon-covered\":63726,\"walker\":63537,\"walkie-talkie\":63727,\"walking\":62804,\"wallet\":62805,\"wand-magic\":63275,\"wand\":63274,\"warehouse-alt\":62613,\"warehouse\":62612,\"washer\":63640,\"watch-calculator\":63728,\"watch-fitness\":63038,\"watch\":62177,\"water-lower\":63348,\"water-rise\":63349,\"water\":63347,\"wave-sine\":63641,\"wave-square\":63550,\"wave-triangle\":63642,\"waveform-path\":63730,\"waveform\":63729,\"webcam-slash\":63539,\"webcam\":63538,\"weight-hanging\":62925,\"weight\":62614,\"whale\":63276,\"wheat\":63277,\"wheelchair\":61843,\"whistle\":62560,\"wifi-1\":63146,\"wifi-2\":63147,\"wifi-slash\":63148,\"wifi\":61931,\"wind-turbine\":63643,\"wind-warning\":63350,\"wind\":63278,\"window-alt\":62479,\"window-close\":62480,\"window-frame-open\":57424,\"window-frame\":57423,\"window-maximize\":62160,\"window-minimize\":62161,\"window-restore\":62162,\"window\":62478,\"windsock\":63351,\"wine-bottle\":63279,\"wine-glass-alt\":62926,\"wine-glass\":62691,\"won-sign\":61785,\"wreath\":63458,\"wrench\":61613,\"x-ray\":62615,\"yen-sign\":61783,\"yin-yang\":63149}"
  },
  {
    "path": "packages/fontawesome5-pro/glyphmaps/FontAwesome5Pro_light.json",
    "content": "{\"abacus\":63040,\"acorn\":63150,\"ad\":63041,\"address-book\":62137,\"address-card\":62139,\"adjust\":61506,\"air-conditioner\":63732,\"air-freshener\":62928,\"alarm-clock\":62286,\"alarm-exclamation\":63555,\"alarm-plus\":63556,\"alarm-snooze\":63557,\"album-collection\":63648,\"album\":63647,\"alicorn\":63152,\"alien-monster\":63734,\"alien\":63733,\"align-center\":61495,\"align-justify\":61497,\"align-left\":61494,\"align-right\":61496,\"align-slash\":63558,\"allergies\":62561,\"ambulance\":61689,\"american-sign-language-interpreting\":62115,\"amp-guitar\":63649,\"analytics\":63043,\"anchor\":61757,\"angel\":63353,\"angle-double-down\":61699,\"angle-double-left\":61696,\"angle-double-right\":61697,\"angle-double-up\":61698,\"angle-down\":61703,\"angle-left\":61700,\"angle-right\":61701,\"angle-up\":61702,\"angry\":62806,\"ankh\":63044,\"apple-alt\":62929,\"apple-crate\":63153,\"archive\":61831,\"archway\":62807,\"arrow-alt-circle-down\":62296,\"arrow-alt-circle-left\":62297,\"arrow-alt-circle-right\":62298,\"arrow-alt-circle-up\":62299,\"arrow-alt-down\":62292,\"arrow-alt-from-bottom\":62278,\"arrow-alt-from-left\":62279,\"arrow-alt-from-right\":62280,\"arrow-alt-from-top\":62281,\"arrow-alt-left\":62293,\"arrow-alt-right\":62294,\"arrow-alt-square-down\":62288,\"arrow-alt-square-left\":62289,\"arrow-alt-square-right\":62290,\"arrow-alt-square-up\":62291,\"arrow-alt-to-bottom\":62282,\"arrow-alt-to-left\":62283,\"arrow-alt-to-right\":62284,\"arrow-alt-to-top\":62285,\"arrow-alt-up\":62295,\"arrow-circle-down\":61611,\"arrow-circle-left\":61608,\"arrow-circle-right\":61609,\"arrow-circle-up\":61610,\"arrow-down\":61539,\"arrow-from-bottom\":62274,\"arrow-from-left\":62275,\"arrow-from-right\":62276,\"arrow-from-top\":62277,\"arrow-left\":61536,\"arrow-right\":61537,\"arrow-square-down\":62265,\"arrow-square-left\":62266,\"arrow-square-right\":62267,\"arrow-square-up\":62268,\"arrow-to-bottom\":62269,\"arrow-to-left\":62270,\"arrow-to-right\":62272,\"arrow-to-top\":62273,\"arrow-up\":61538,\"arrows-alt-h\":62263,\"arrows-alt-v\":62264,\"arrows-alt\":61618,\"arrows-h\":61566,\"arrows-v\":61565,\"arrows\":61511,\"assistive-listening-systems\":62114,\"asterisk\":61545,\"at\":61946,\"atlas\":62808,\"atom-alt\":62931,\"atom\":62930,\"audio-description\":62110,\"award\":62809,\"axe-battle\":63155,\"axe\":63154,\"baby-carriage\":63357,\"baby\":63356,\"backpack\":62932,\"backspace\":62810,\"backward\":61514,\"bacon\":63461,\"bacteria\":57433,\"bacterium\":57434,\"badge-check\":62262,\"badge-dollar\":63045,\"badge-percent\":63046,\"badge-sheriff\":63650,\"badge\":62261,\"badger-honey\":63156,\"bags-shopping\":63559,\"bahai\":63078,\"balance-scale-left\":62741,\"balance-scale-right\":62742,\"balance-scale\":62030,\"ball-pile\":63358,\"ballot-check\":63283,\"ballot\":63282,\"ban\":61534,\"band-aid\":62562,\"banjo\":63651,\"barcode-alt\":62563,\"barcode-read\":62564,\"barcode-scan\":62565,\"barcode\":61482,\"bars\":61641,\"baseball-ball\":62515,\"baseball\":62514,\"basketball-ball\":62516,\"basketball-hoop\":62517,\"bat\":63157,\"bath\":62157,\"battery-bolt\":62326,\"battery-empty\":62020,\"battery-full\":62016,\"battery-half\":62018,\"battery-quarter\":62019,\"battery-slash\":62327,\"battery-three-quarters\":62017,\"bed-alt\":63735,\"bed-bunk\":63736,\"bed-empty\":63737,\"bed\":62006,\"beer\":61692,\"bell-exclamation\":63560,\"bell-on\":63738,\"bell-plus\":63561,\"bell-school-slash\":62934,\"bell-school\":62933,\"bell-slash\":61942,\"bell\":61683,\"bells\":63359,\"betamax\":63652,\"bezier-curve\":62811,\"bible\":63047,\"bicycle\":61958,\"biking-mountain\":63563,\"biking\":63562,\"binoculars\":61925,\"biohazard\":63360,\"birthday-cake\":61949,\"blanket\":62616,\"blender-phone\":63158,\"blender\":62743,\"blind\":62109,\"blinds-open\":63740,\"blinds-raised\":63741,\"blinds\":63739,\"blog\":63361,\"bold\":61490,\"bolt\":61671,\"bomb\":61922,\"bone-break\":62936,\"bone\":62935,\"bong\":62812,\"book-alt\":62937,\"book-dead\":63159,\"book-heart\":62617,\"book-medical\":63462,\"book-open\":62744,\"book-reader\":62938,\"book-spells\":63160,\"book-user\":63463,\"book\":61485,\"bookmark\":61486,\"books-medical\":63464,\"books\":62939,\"boombox\":63653,\"boot\":63362,\"booth-curtain\":63284,\"border-all\":63564,\"border-bottom\":63565,\"border-center-h\":63644,\"border-center-v\":63645,\"border-inner\":63566,\"border-left\":63567,\"border-none\":63568,\"border-outer\":63569,\"border-right\":63570,\"border-style-alt\":63572,\"border-style\":63571,\"border-top\":63573,\"bow-arrow\":63161,\"bowling-ball\":62518,\"bowling-pins\":62519,\"box-alt\":62618,\"box-ballot\":63285,\"box-check\":62567,\"box-fragile\":62619,\"box-full\":62620,\"box-heart\":62621,\"box-open\":62622,\"box-tissue\":57435,\"box-up\":62623,\"box-usd\":62624,\"box\":62566,\"boxes-alt\":62625,\"boxes\":62568,\"boxing-glove\":62520,\"brackets-curly\":63466,\"brackets\":63465,\"braille\":62113,\"brain\":62940,\"bread-loaf\":63467,\"bread-slice\":63468,\"briefcase-medical\":62569,\"briefcase\":61617,\"bring-forward\":63574,\"bring-front\":63575,\"broadcast-tower\":62745,\"broom\":62746,\"browser\":62334,\"brush\":62813,\"bug\":61832,\"building\":61869,\"bullhorn\":61601,\"bullseye-arrow\":63048,\"bullseye-pointer\":63049,\"bullseye\":61760,\"burger-soda\":63576,\"burn\":62570,\"burrito\":63469,\"bus-alt\":62814,\"bus-school\":62941,\"bus\":61959,\"business-time\":63050,\"cabinet-filing\":63051,\"cactus\":63655,\"calculator-alt\":63052,\"calculator\":61932,\"calendar-alt\":61555,\"calendar-check\":62068,\"calendar-day\":63363,\"calendar-edit\":62259,\"calendar-exclamation\":62260,\"calendar-minus\":62066,\"calendar-plus\":62065,\"calendar-star\":63286,\"calendar-times\":62067,\"calendar-week\":63364,\"calendar\":61747,\"camcorder\":63656,\"camera-alt\":62258,\"camera-home\":63742,\"camera-movie\":63657,\"camera-polaroid\":63658,\"camera-retro\":61571,\"camera\":61488,\"campfire\":63162,\"campground\":63163,\"candle-holder\":63164,\"candy-cane\":63366,\"candy-corn\":63165,\"cannabis\":62815,\"capsules\":62571,\"car-alt\":62942,\"car-battery\":62943,\"car-building\":63577,\"car-bump\":62944,\"car-bus\":63578,\"car-crash\":62945,\"car-garage\":62946,\"car-mechanic\":62947,\"car-side\":62948,\"car-tilt\":62949,\"car-wash\":62950,\"car\":61881,\"caravan-alt\":57344,\"caravan\":63743,\"caret-circle-down\":62253,\"caret-circle-left\":62254,\"caret-circle-right\":62256,\"caret-circle-up\":62257,\"caret-down\":61655,\"caret-left\":61657,\"caret-right\":61658,\"caret-square-down\":61776,\"caret-square-left\":61841,\"caret-square-right\":61778,\"caret-square-up\":61777,\"caret-up\":61656,\"carrot\":63367,\"cars\":63579,\"cart-arrow-down\":61976,\"cart-plus\":61975,\"cash-register\":63368,\"cassette-tape\":63659,\"cat-space\":57345,\"cat\":63166,\"cauldron\":63167,\"cctv\":63660,\"certificate\":61603,\"chair-office\":63169,\"chair\":63168,\"chalkboard-teacher\":62748,\"chalkboard\":62747,\"charging-station\":62951,\"chart-area\":61950,\"chart-bar\":61568,\"chart-line-down\":63053,\"chart-line\":61953,\"chart-network\":63370,\"chart-pie-alt\":63054,\"chart-pie\":61952,\"chart-scatter\":63470,\"check-circle\":61528,\"check-double\":62816,\"check-square\":61770,\"check\":61452,\"cheese-swiss\":63472,\"cheese\":63471,\"cheeseburger\":63473,\"chess-bishop-alt\":62523,\"chess-bishop\":62522,\"chess-board\":62524,\"chess-clock-alt\":62526,\"chess-clock\":62525,\"chess-king-alt\":62528,\"chess-king\":62527,\"chess-knight-alt\":62530,\"chess-knight\":62529,\"chess-pawn-alt\":62532,\"chess-pawn\":62531,\"chess-queen-alt\":62534,\"chess-queen\":62533,\"chess-rook-alt\":62536,\"chess-rook\":62535,\"chess\":62521,\"chevron-circle-down\":61754,\"chevron-circle-left\":61751,\"chevron-circle-right\":61752,\"chevron-circle-up\":61753,\"chevron-double-down\":62242,\"chevron-double-left\":62243,\"chevron-double-right\":62244,\"chevron-double-up\":62245,\"chevron-down\":61560,\"chevron-left\":61523,\"chevron-right\":61524,\"chevron-square-down\":62249,\"chevron-square-left\":62250,\"chevron-square-right\":62251,\"chevron-square-up\":62252,\"chevron-up\":61559,\"child\":61870,\"chimney\":63371,\"church\":62749,\"circle-notch\":61902,\"circle\":61713,\"city\":63055,\"clarinet\":63661,\"claw-marks\":63170,\"clinic-medical\":63474,\"clipboard-check\":62572,\"clipboard-list-check\":63287,\"clipboard-list\":62573,\"clipboard-prescription\":62952,\"clipboard-user\":63475,\"clipboard\":62248,\"clock\":61463,\"clone\":62029,\"closed-captioning\":61962,\"cloud-download-alt\":62337,\"cloud-download\":61677,\"cloud-drizzle\":63288,\"cloud-hail-mixed\":63290,\"cloud-hail\":63289,\"cloud-meatball\":63291,\"cloud-moon-rain\":63292,\"cloud-moon\":63171,\"cloud-music\":63662,\"cloud-rain\":63293,\"cloud-rainbow\":63294,\"cloud-showers-heavy\":63296,\"cloud-showers\":63295,\"cloud-sleet\":63297,\"cloud-snow\":63298,\"cloud-sun-rain\":63299,\"cloud-sun\":63172,\"cloud-upload-alt\":62338,\"cloud-upload\":61678,\"cloud\":61634,\"clouds-moon\":63301,\"clouds-sun\":63302,\"clouds\":63300,\"club\":62247,\"cocktail\":62817,\"code-branch\":61734,\"code-commit\":62342,\"code-merge\":62343,\"code\":61729,\"coffee-pot\":57346,\"coffee-togo\":63173,\"coffee\":61684,\"coffin-cross\":57425,\"coffin\":63174,\"cog\":61459,\"cogs\":61573,\"coin\":63580,\"coins\":62750,\"columns\":61659,\"comet\":57347,\"comment-alt-check\":62626,\"comment-alt-dollar\":63056,\"comment-alt-dots\":62627,\"comment-alt-edit\":62628,\"comment-alt-exclamation\":62629,\"comment-alt-lines\":62630,\"comment-alt-medical\":63476,\"comment-alt-minus\":62631,\"comment-alt-music\":63663,\"comment-alt-plus\":62632,\"comment-alt-slash\":62633,\"comment-alt-smile\":62634,\"comment-alt-times\":62635,\"comment-alt\":62074,\"comment-check\":62636,\"comment-dollar\":63057,\"comment-dots\":62637,\"comment-edit\":62638,\"comment-exclamation\":62639,\"comment-lines\":62640,\"comment-medical\":63477,\"comment-minus\":62641,\"comment-music\":63664,\"comment-plus\":62642,\"comment-slash\":62643,\"comment-smile\":62644,\"comment-times\":62645,\"comment\":61557,\"comments-alt-dollar\":63058,\"comments-alt\":62646,\"comments-dollar\":63059,\"comments\":61574,\"compact-disc\":62751,\"compass-slash\":62953,\"compass\":61774,\"compress-alt\":62498,\"compress-arrows-alt\":63372,\"compress-wide\":62246,\"compress\":61542,\"computer-classic\":63665,\"computer-speaker\":63666,\"concierge-bell\":62818,\"construction\":63581,\"container-storage\":62647,\"conveyor-belt-alt\":62575,\"conveyor-belt\":62574,\"cookie-bite\":62820,\"cookie\":62819,\"copy\":61637,\"copyright\":61945,\"corn\":63175,\"couch\":62648,\"cow\":63176,\"cowbell-more\":63668,\"cowbell\":63667,\"credit-card-blank\":62345,\"credit-card-front\":62346,\"credit-card\":61597,\"cricket\":62537,\"croissant\":63478,\"crop-alt\":62821,\"crop\":61733,\"cross\":63060,\"crosshairs\":61531,\"crow\":62752,\"crown\":62753,\"crutch\":63479,\"crutches\":63480,\"cube\":61874,\"cubes\":61875,\"curling\":62538,\"cut\":61636,\"dagger\":63179,\"database\":61888,\"deaf\":62116,\"debug\":63481,\"deer-rudolph\":63375,\"deer\":63374,\"democrat\":63303,\"desktop-alt\":62352,\"desktop\":61704,\"dewpoint\":63304,\"dharmachakra\":63061,\"diagnoses\":62576,\"diamond\":61977,\"dice-d10\":63181,\"dice-d12\":63182,\"dice-d20\":63183,\"dice-d4\":63184,\"dice-d6\":63185,\"dice-d8\":63186,\"dice-five\":62755,\"dice-four\":62756,\"dice-one\":62757,\"dice-six\":62758,\"dice-three\":62759,\"dice-two\":62760,\"dice\":62754,\"digging\":63582,\"digital-tachograph\":62822,\"diploma\":62954,\"directions\":62955,\"disc-drive\":63669,\"disease\":63482,\"divide\":62761,\"dizzy\":62823,\"dna\":62577,\"do-not-enter\":62956,\"dog-leashed\":63188,\"dog\":63187,\"dollar-sign\":61781,\"dolly-empty\":62579,\"dolly-flatbed-alt\":62581,\"dolly-flatbed-empty\":62582,\"dolly-flatbed\":62580,\"dolly\":62578,\"donate\":62649,\"door-closed\":62762,\"door-open\":62763,\"dot-circle\":61842,\"dove\":62650,\"download\":61465,\"drafting-compass\":62824,\"dragon\":63189,\"draw-circle\":62957,\"draw-polygon\":62958,\"draw-square\":62959,\"dreidel\":63378,\"drone-alt\":63584,\"drone\":63583,\"drum-steelpan\":62826,\"drum\":62825,\"drumstick-bite\":63191,\"drumstick\":63190,\"dryer-alt\":63586,\"dryer\":63585,\"duck\":63192,\"dumbbell\":62539,\"dumpster-fire\":63380,\"dumpster\":63379,\"dungeon\":63193,\"ear-muffs\":63381,\"ear\":62960,\"eclipse-alt\":63306,\"eclipse\":63305,\"edit\":61508,\"egg-fried\":63484,\"egg\":63483,\"eject\":61522,\"elephant\":63194,\"ellipsis-h-alt\":62363,\"ellipsis-h\":61761,\"ellipsis-v-alt\":62364,\"ellipsis-v\":61762,\"empty-set\":63062,\"engine-warning\":62962,\"envelope-open-dollar\":63063,\"envelope-open-text\":63064,\"envelope-open\":62134,\"envelope-square\":61849,\"envelope\":61664,\"equals\":62764,\"eraser\":61741,\"ethernet\":63382,\"euro-sign\":61779,\"exchange-alt\":62306,\"exchange\":61676,\"exclamation-circle\":61546,\"exclamation-square\":62241,\"exclamation-triangle\":61553,\"exclamation\":61738,\"expand-alt\":62500,\"expand-arrows-alt\":62238,\"expand-arrows\":62237,\"expand-wide\":62240,\"expand\":61541,\"external-link-alt\":62301,\"external-link-square-alt\":62304,\"external-link-square\":61772,\"external-link\":61582,\"eye-dropper\":61947,\"eye-evil\":63195,\"eye-slash\":61552,\"eye\":61550,\"fan-table\":57348,\"fan\":63587,\"farm\":63588,\"fast-backward\":61513,\"fast-forward\":61520,\"faucet-drip\":57350,\"faucet\":57349,\"fax\":61868,\"feather-alt\":62827,\"feather\":62765,\"female\":61826,\"field-hockey\":62540,\"fighter-jet\":61691,\"file-alt\":61788,\"file-archive\":61894,\"file-audio\":61895,\"file-certificate\":62963,\"file-chart-line\":63065,\"file-chart-pie\":63066,\"file-check\":62230,\"file-code\":61897,\"file-contract\":62828,\"file-csv\":63197,\"file-download\":62829,\"file-edit\":62236,\"file-excel\":61891,\"file-exclamation\":62234,\"file-export\":62830,\"file-image\":61893,\"file-import\":62831,\"file-invoice-dollar\":62833,\"file-invoice\":62832,\"file-medical-alt\":62584,\"file-medical\":62583,\"file-minus\":62232,\"file-music\":63670,\"file-pdf\":61889,\"file-plus\":62233,\"file-powerpoint\":61892,\"file-prescription\":62834,\"file-search\":63589,\"file-signature\":62835,\"file-spreadsheet\":63067,\"file-times\":62231,\"file-upload\":62836,\"file-user\":63068,\"file-video\":61896,\"file-word\":61890,\"file\":61787,\"files-medical\":63485,\"fill-drip\":62838,\"fill\":62837,\"film-alt\":62368,\"film-canister\":63671,\"film\":61448,\"filter\":61616,\"fingerprint\":62839,\"fire-alt\":63460,\"fire-extinguisher\":61748,\"fire-smoke\":63307,\"fire\":61549,\"fireplace\":63386,\"first-aid\":62585,\"fish-cooked\":63486,\"fish\":62840,\"fist-raised\":63198,\"flag-alt\":63308,\"flag-checkered\":61726,\"flag-usa\":63309,\"flag\":61476,\"flame\":63199,\"flashlight\":63672,\"flask-poison\":63200,\"flask-potion\":63201,\"flask\":61635,\"flower-daffodil\":63488,\"flower-tulip\":63489,\"flower\":63487,\"flushed\":62841,\"flute\":63673,\"flux-capacitor\":63674,\"fog\":63310,\"folder-download\":57427,\"folder-minus\":63069,\"folder-open\":61564,\"folder-plus\":63070,\"folder-times\":63071,\"folder-tree\":63490,\"folder-upload\":57428,\"folder\":61563,\"folders\":63072,\"font-awesome-logo-full\":62694,\"font-case\":63590,\"font\":61489,\"football-ball\":62542,\"football-helmet\":62543,\"forklift\":62586,\"forward\":61518,\"fragile\":62651,\"french-fries\":63491,\"frog\":62766,\"frosty-head\":63387,\"frown-open\":62842,\"frown\":61721,\"function\":63073,\"funnel-dollar\":63074,\"futbol\":61923,\"galaxy\":57352,\"game-board-alt\":63592,\"game-board\":63591,\"game-console-handheld\":63675,\"gamepad-alt\":63676,\"gamepad\":61723,\"garage-car\":57354,\"garage-open\":57355,\"garage\":57353,\"gas-pump-slash\":62964,\"gas-pump\":62767,\"gavel\":61667,\"gem\":62373,\"genderless\":61997,\"ghost\":63202,\"gift-card\":63075,\"gift\":61547,\"gifts\":63388,\"gingerbread-man\":63389,\"glass-champagne\":63390,\"glass-cheers\":63391,\"glass-citrus\":63593,\"glass-martini-alt\":62843,\"glass-martini\":61440,\"glass-whiskey-rocks\":63393,\"glass-whiskey\":63392,\"glass\":63492,\"glasses-alt\":62965,\"glasses\":62768,\"globe-africa\":62844,\"globe-americas\":62845,\"globe-asia\":62846,\"globe-europe\":63394,\"globe-snow\":63395,\"globe-stand\":62966,\"globe\":61612,\"golf-ball\":62544,\"golf-club\":62545,\"gopuram\":63076,\"graduation-cap\":61853,\"gramophone\":63677,\"greater-than-equal\":62770,\"greater-than\":62769,\"grimace\":62847,\"grin-alt\":62849,\"grin-beam-sweat\":62851,\"grin-beam\":62850,\"grin-hearts\":62852,\"grin-squint-tears\":62854,\"grin-squint\":62853,\"grin-stars\":62855,\"grin-tears\":62856,\"grin-tongue-squint\":62858,\"grin-tongue-wink\":62859,\"grin-tongue\":62857,\"grin-wink\":62860,\"grin\":62848,\"grip-horizontal\":62861,\"grip-lines-vertical\":63397,\"grip-lines\":63396,\"grip-vertical\":62862,\"guitar-electric\":63678,\"guitar\":63398,\"guitars\":63679,\"h-square\":61693,\"h1\":62227,\"h2\":62228,\"h3\":62229,\"h4\":63594,\"hamburger\":63493,\"hammer-war\":63204,\"hammer\":63203,\"hamsa\":63077,\"hand-heart\":62652,\"hand-holding-box\":62587,\"hand-holding-heart\":62654,\"hand-holding-magic\":63205,\"hand-holding-medical\":57436,\"hand-holding-seedling\":62655,\"hand-holding-usd\":62656,\"hand-holding-water\":62657,\"hand-holding\":62653,\"hand-lizard\":62040,\"hand-middle-finger\":63494,\"hand-paper\":62038,\"hand-peace\":62043,\"hand-point-down\":61607,\"hand-point-left\":61605,\"hand-point-right\":61604,\"hand-point-up\":61606,\"hand-pointer\":62042,\"hand-receiving\":62588,\"hand-rock\":62037,\"hand-scissors\":62039,\"hand-sparkles\":57437,\"hand-spock\":62041,\"hands-heart\":62659,\"hands-helping\":62660,\"hands-usd\":62661,\"hands-wash\":57438,\"hands\":62658,\"handshake-alt-slash\":57439,\"handshake-alt\":62662,\"handshake-slash\":57440,\"handshake\":62133,\"hanukiah\":63206,\"hard-hat\":63495,\"hashtag\":62098,\"hat-chef\":63595,\"hat-cowboy-side\":63681,\"hat-cowboy\":63680,\"hat-santa\":63399,\"hat-winter\":63400,\"hat-witch\":63207,\"hat-wizard\":63208,\"hdd\":61600,\"head-side-brain\":63496,\"head-side-cough-slash\":57442,\"head-side-cough\":57441,\"head-side-headphones\":63682,\"head-side-mask\":57443,\"head-side-medical\":63497,\"head-side-virus\":57444,\"head-side\":63209,\"head-vr\":63210,\"heading\":61916,\"headphones-alt\":62863,\"headphones\":61477,\"headset\":62864,\"heart-broken\":63401,\"heart-circle\":62663,\"heart-rate\":62968,\"heart-square\":62664,\"heart\":61444,\"heartbeat\":61982,\"heat\":57356,\"helicopter\":62771,\"helmet-battle\":63211,\"hexagon\":62226,\"highlighter\":62865,\"hiking\":63212,\"hippo\":63213,\"history\":61914,\"hockey-mask\":63214,\"hockey-puck\":62547,\"hockey-sticks\":62548,\"holly-berry\":63402,\"home-alt\":63498,\"home-heart\":62665,\"home-lg-alt\":63500,\"home-lg\":63499,\"home\":61461,\"hood-cloak\":63215,\"horizontal-rule\":63596,\"horse-head\":63403,\"horse-saddle\":63683,\"horse\":63216,\"hospital-alt\":62589,\"hospital-symbol\":62590,\"hospital-user\":63501,\"hospital\":61688,\"hospitals\":63502,\"hot-tub\":62867,\"hotdog\":63503,\"hotel\":62868,\"hourglass-end\":62035,\"hourglass-half\":62034,\"hourglass-start\":62033,\"hourglass\":62036,\"house-damage\":63217,\"house-day\":57358,\"house-flood\":63311,\"house-leave\":57359,\"house-night\":57360,\"house-return\":57361,\"house-signal\":57362,\"house-user\":57445,\"house\":57357,\"hryvnia\":63218,\"humidity\":63312,\"hurricane\":63313,\"i-cursor\":62022,\"ice-cream\":63504,\"ice-skate\":63404,\"icicles\":63405,\"icons-alt\":63598,\"icons\":63597,\"id-badge\":62145,\"id-card-alt\":62591,\"id-card\":62146,\"igloo\":63406,\"image-polaroid\":63684,\"image\":61502,\"images\":62210,\"inbox-in\":62224,\"inbox-out\":62225,\"inbox\":61468,\"indent\":61500,\"industry-alt\":62387,\"industry\":62069,\"infinity\":62772,\"info-circle\":61530,\"info-square\":62223,\"info\":61737,\"inhaler\":62969,\"integral\":63079,\"intersection\":63080,\"inventory\":62592,\"island-tropical\":63505,\"italic\":61491,\"jack-o-lantern\":62222,\"jedi\":63081,\"joint\":62869,\"journal-whills\":63082,\"joystick\":63685,\"jug\":63686,\"kaaba\":63083,\"kazoo\":63687,\"kerning\":63599,\"key-skeleton\":63219,\"key\":61572,\"keyboard\":61724,\"keynote\":63084,\"khanda\":63085,\"kidneys\":62971,\"kiss-beam\":62871,\"kiss-wink-heart\":62872,\"kiss\":62870,\"kite\":63220,\"kiwi-bird\":62773,\"knife-kitchen\":63221,\"lambda\":63086,\"lamp-desk\":57364,\"lamp-floor\":57365,\"lamp\":62666,\"landmark-alt\":63314,\"landmark\":63087,\"language\":61867,\"laptop-code\":62972,\"laptop-house\":57446,\"laptop-medical\":63506,\"laptop\":61705,\"lasso\":63688,\"laugh-beam\":62874,\"laugh-squint\":62875,\"laugh-wink\":62876,\"laugh\":62873,\"layer-group\":62973,\"layer-minus\":62974,\"layer-plus\":62975,\"leaf-heart\":62667,\"leaf-maple\":63222,\"leaf-oak\":63223,\"leaf\":61548,\"lemon\":61588,\"less-than-equal\":62775,\"less-than\":62774,\"level-down-alt\":62398,\"level-down\":61769,\"level-up-alt\":62399,\"level-up\":61768,\"life-ring\":61901,\"light-ceiling\":57366,\"light-switch-off\":57368,\"light-switch-on\":57369,\"light-switch\":57367,\"lightbulb-dollar\":63088,\"lightbulb-exclamation\":63089,\"lightbulb-on\":63090,\"lightbulb-slash\":63091,\"lightbulb\":61675,\"lights-holiday\":63410,\"line-columns\":63600,\"line-height\":63601,\"link\":61633,\"lips\":62976,\"lira-sign\":61845,\"list-alt\":61474,\"list-music\":63689,\"list-ol\":61643,\"list-ul\":61642,\"list\":61498,\"location-arrow\":61732,\"location-circle\":62978,\"location-slash\":62979,\"location\":62977,\"lock-alt\":62221,\"lock-open-alt\":62402,\"lock-open\":62401,\"lock\":61475,\"long-arrow-alt-down\":62217,\"long-arrow-alt-left\":62218,\"long-arrow-alt-right\":62219,\"long-arrow-alt-up\":62220,\"long-arrow-down\":61813,\"long-arrow-left\":61815,\"long-arrow-right\":61816,\"long-arrow-up\":61814,\"loveseat\":62668,\"low-vision\":62120,\"luchador\":62549,\"luggage-cart\":62877,\"lungs-virus\":57447,\"lungs\":62980,\"mace\":63224,\"magic\":61648,\"magnet\":61558,\"mail-bulk\":63092,\"mailbox\":63507,\"male\":61827,\"mandolin\":63225,\"map-marked-alt\":62880,\"map-marked\":62879,\"map-marker-alt-slash\":62981,\"map-marker-alt\":62405,\"map-marker-check\":62982,\"map-marker-edit\":62983,\"map-marker-exclamation\":62984,\"map-marker-minus\":62985,\"map-marker-plus\":62986,\"map-marker-question\":62987,\"map-marker-slash\":62988,\"map-marker-smile\":62989,\"map-marker-times\":62990,\"map-marker\":61505,\"map-pin\":62070,\"map-signs\":62071,\"map\":62073,\"marker\":62881,\"mars-double\":61991,\"mars-stroke-h\":61995,\"mars-stroke-v\":61994,\"mars-stroke\":61993,\"mars\":61986,\"mask\":63226,\"meat\":63508,\"medal\":62882,\"medkit\":61690,\"megaphone\":63093,\"meh-blank\":62884,\"meh-rolling-eyes\":62885,\"meh\":61722,\"memory\":62776,\"menorah\":63094,\"mercury\":61987,\"meteor\":63315,\"microchip\":62171,\"microphone-alt-slash\":62777,\"microphone-alt\":62409,\"microphone-slash\":61745,\"microphone-stand\":63691,\"microphone\":61744,\"microscope\":62992,\"microwave\":57371,\"mind-share\":63095,\"minus-circle\":61526,\"minus-hexagon\":62215,\"minus-octagon\":62216,\"minus-square\":61766,\"minus\":61544,\"mistletoe\":63412,\"mitten\":63413,\"mobile-alt\":62413,\"mobile-android-alt\":62415,\"mobile-android\":62414,\"mobile\":61707,\"money-bill-alt\":62417,\"money-bill-wave-alt\":62779,\"money-bill-wave\":62778,\"money-bill\":61654,\"money-check-alt\":62781,\"money-check-edit-alt\":63603,\"money-check-edit\":63602,\"money-check\":62780,\"monitor-heart-rate\":62993,\"monkey\":63227,\"monument\":62886,\"moon-cloud\":63316,\"moon-stars\":63317,\"moon\":61830,\"mortar-pestle\":62887,\"mosque\":63096,\"motorcycle\":61980,\"mountain\":63228,\"mountains\":63229,\"mouse-alt\":63693,\"mouse-pointer\":62021,\"mouse\":63692,\"mp3-player\":63694,\"mug-hot\":63414,\"mug-marshmallows\":63415,\"mug-tea\":63605,\"mug\":63604,\"music-alt-slash\":63696,\"music-alt\":63695,\"music-slash\":63697,\"music\":61441,\"narwhal\":63230,\"network-wired\":63231,\"neuter\":61996,\"newspaper\":61930,\"not-equal\":62782,\"notes-medical\":62593,\"object-group\":62023,\"object-ungroup\":62024,\"octagon\":62214,\"oil-can\":62995,\"oil-temp\":62996,\"om\":63097,\"omega\":63098,\"ornament\":63416,\"otter\":63232,\"outdent\":61499,\"outlet\":57372,\"oven\":57373,\"overline\":63606,\"page-break\":63607,\"pager\":63509,\"paint-brush-alt\":62889,\"paint-brush\":61948,\"paint-roller\":62890,\"palette\":62783,\"pallet-alt\":62595,\"pallet\":62594,\"paper-plane\":61912,\"paperclip\":61638,\"parachute-box\":62669,\"paragraph-rtl\":63608,\"paragraph\":61917,\"parking-circle-slash\":62998,\"parking-circle\":62997,\"parking-slash\":62999,\"parking\":62784,\"passport\":62891,\"pastafarianism\":63099,\"paste\":61674,\"pause-circle\":62091,\"pause\":61516,\"paw-alt\":63233,\"paw-claws\":63234,\"paw\":61872,\"peace\":63100,\"pegasus\":63235,\"pen-alt\":62213,\"pen-fancy\":62892,\"pen-nib\":62893,\"pen-square\":61771,\"pen\":62212,\"pencil-alt\":62211,\"pencil-paintbrush\":63000,\"pencil-ruler\":62894,\"pencil\":61504,\"pennant\":62550,\"people-arrows\":57448,\"people-carry\":62670,\"pepper-hot\":63510,\"percent\":62101,\"percentage\":62785,\"person-booth\":63318,\"person-carry\":62671,\"person-dolly-empty\":62673,\"person-dolly\":62672,\"person-sign\":63319,\"phone-alt\":63609,\"phone-laptop\":63610,\"phone-office\":63101,\"phone-plus\":62674,\"phone-rotary\":63699,\"phone-slash\":62429,\"phone-square-alt\":63611,\"phone-square\":61592,\"phone-volume\":62112,\"phone\":61589,\"photo-video\":63612,\"pi\":63102,\"piano-keyboard\":63701,\"piano\":63700,\"pie\":63237,\"pig\":63238,\"piggy-bank\":62675,\"pills\":62596,\"pizza-slice\":63512,\"pizza\":63511,\"place-of-worship\":63103,\"plane-alt\":62430,\"plane-arrival\":62895,\"plane-departure\":62896,\"plane-slash\":57449,\"plane\":61554,\"planet-moon\":57375,\"planet-ringed\":57376,\"play-circle\":61764,\"play\":61515,\"plug\":61926,\"plus-circle\":61525,\"plus-hexagon\":62208,\"plus-octagon\":62209,\"plus-square\":61694,\"plus\":61543,\"podcast\":62158,\"podium-star\":63320,\"podium\":63104,\"police-box\":57377,\"poll-h\":63106,\"poll-people\":63321,\"poll\":63105,\"poo-storm\":63322,\"poo\":62206,\"poop\":63001,\"popcorn\":63513,\"portal-enter\":57378,\"portal-exit\":57379,\"portrait\":62432,\"pound-sign\":61780,\"power-off\":61457,\"pray\":63107,\"praying-hands\":63108,\"prescription-bottle-alt\":62598,\"prescription-bottle\":62597,\"prescription\":62897,\"presentation\":63109,\"print-search\":63514,\"print-slash\":63110,\"print\":61487,\"procedures\":62599,\"project-diagram\":62786,\"projector\":63702,\"pump-medical\":57450,\"pump-soap\":57451,\"pumpkin\":63239,\"puzzle-piece\":61742,\"qrcode\":61481,\"question-circle\":61529,\"question-square\":62205,\"question\":61736,\"quidditch\":62552,\"quote-left\":61709,\"quote-right\":61710,\"quran\":63111,\"rabbit-fast\":63241,\"rabbit\":63240,\"racquet\":62554,\"radar\":57380,\"radiation-alt\":63418,\"radiation\":63417,\"radio-alt\":63704,\"radio\":63703,\"rainbow\":63323,\"raindrops\":63324,\"ram\":63242,\"ramp-loading\":62676,\"random\":61556,\"raygun\":57381,\"receipt\":62787,\"record-vinyl\":63705,\"rectangle-landscape\":62202,\"rectangle-portrait\":62203,\"rectangle-wide\":62204,\"recycle\":61880,\"redo-alt\":62201,\"redo\":61470,\"refrigerator\":57382,\"registered\":62045,\"remove-format\":63613,\"repeat-1-alt\":62310,\"repeat-1\":62309,\"repeat-alt\":62308,\"repeat\":62307,\"reply-all\":61730,\"reply\":62437,\"republican\":63326,\"restroom\":63421,\"retweet-alt\":62305,\"retweet\":61561,\"ribbon\":62678,\"ring\":63243,\"rings-wedding\":63515,\"road\":61464,\"robot\":62788,\"rocket-launch\":57383,\"rocket\":61749,\"route-highway\":63002,\"route-interstate\":63003,\"route\":62679,\"router\":63706,\"rss-square\":61763,\"rss\":61598,\"ruble-sign\":61784,\"ruler-combined\":62790,\"ruler-horizontal\":62791,\"ruler-triangle\":63004,\"ruler-vertical\":62792,\"ruler\":62789,\"running\":63244,\"rupee-sign\":61782,\"rv\":63422,\"sack-dollar\":63517,\"sack\":63516,\"sad-cry\":62899,\"sad-tear\":62900,\"salad\":63518,\"sandwich\":63519,\"satellite-dish\":63424,\"satellite\":63423,\"sausage\":63520,\"save\":61639,\"sax-hot\":63707,\"saxophone\":63708,\"scalpel-path\":63006,\"scalpel\":63005,\"scanner-image\":63731,\"scanner-keyboard\":62601,\"scanner-touchscreen\":62602,\"scanner\":62600,\"scarecrow\":63245,\"scarf\":63425,\"school\":62793,\"screwdriver\":62794,\"scroll-old\":63247,\"scroll\":63246,\"scrubber\":62200,\"scythe\":63248,\"sd-card\":63426,\"search-dollar\":63112,\"search-location\":63113,\"search-minus\":61456,\"search-plus\":61454,\"search\":61442,\"seedling\":62680,\"send-back\":63614,\"send-backward\":63615,\"sensor-alert\":57385,\"sensor-fire\":57386,\"sensor-on\":57387,\"sensor-smoke\":57388,\"sensor\":57384,\"server\":62003,\"shapes\":63007,\"share-all\":62311,\"share-alt-square\":61921,\"share-alt\":61920,\"share-square\":61773,\"share\":61540,\"sheep\":63249,\"shekel-sign\":61963,\"shield-alt\":62445,\"shield-check\":62199,\"shield-cross\":63250,\"shield-virus\":57452,\"shield\":61746,\"ship\":61978,\"shipping-fast\":62603,\"shipping-timed\":62604,\"shish-kebab\":63521,\"shoe-prints\":62795,\"shopping-bag\":62096,\"shopping-basket\":62097,\"shopping-cart\":61562,\"shovel-snow\":63427,\"shovel\":63251,\"shower\":62156,\"shredder\":63114,\"shuttle-van\":62902,\"shuttlecock\":62555,\"sickle\":63522,\"sigma\":63115,\"sign-in-alt\":62198,\"sign-in\":61584,\"sign-language\":62119,\"sign-out-alt\":62197,\"sign-out\":61579,\"sign\":62681,\"signal-1\":63116,\"signal-2\":63117,\"signal-3\":63118,\"signal-4\":63119,\"signal-alt-1\":63121,\"signal-alt-2\":63122,\"signal-alt-3\":63123,\"signal-alt-slash\":63124,\"signal-alt\":63120,\"signal-slash\":63125,\"signal-stream\":63709,\"signal\":61458,\"signature\":62903,\"sim-card\":63428,\"sink\":57453,\"siren-on\":57390,\"siren\":57389,\"sitemap\":61672,\"skating\":63429,\"skeleton\":63008,\"ski-jump\":63431,\"ski-lift\":63432,\"skiing-nordic\":63434,\"skiing\":63433,\"skull-cow\":63710,\"skull-crossbones\":63252,\"skull\":62796,\"slash\":63253,\"sledding\":63435,\"sleigh\":63436,\"sliders-h-square\":62448,\"sliders-h\":61918,\"sliders-v-square\":62450,\"sliders-v\":62449,\"smile-beam\":62904,\"smile-plus\":62905,\"smile-wink\":62682,\"smile\":61720,\"smog\":63327,\"smoke\":63328,\"smoking-ban\":62797,\"smoking\":62605,\"sms\":63437,\"snake\":63254,\"snooze\":63616,\"snow-blowing\":63329,\"snowboarding\":63438,\"snowflake\":62172,\"snowflakes\":63439,\"snowman\":63440,\"snowmobile\":63441,\"snowplow\":63442,\"soap\":57454,\"socks\":63126,\"solar-panel\":62906,\"solar-system\":57391,\"sort-alpha-down-alt\":63617,\"sort-alpha-down\":61789,\"sort-alpha-up-alt\":63618,\"sort-alpha-up\":61790,\"sort-alt\":63619,\"sort-amount-down-alt\":63620,\"sort-amount-down\":61792,\"sort-amount-up-alt\":63621,\"sort-amount-up\":61793,\"sort-circle-down\":57393,\"sort-circle-up\":57394,\"sort-circle\":57392,\"sort-down\":61661,\"sort-numeric-down-alt\":63622,\"sort-numeric-down\":61794,\"sort-numeric-up-alt\":63623,\"sort-numeric-up\":61795,\"sort-shapes-down-alt\":63625,\"sort-shapes-down\":63624,\"sort-shapes-up-alt\":63627,\"sort-shapes-up\":63626,\"sort-size-down-alt\":63629,\"sort-size-down\":63628,\"sort-size-up-alt\":63631,\"sort-size-up\":63630,\"sort-up\":61662,\"sort\":61660,\"soup\":63523,\"spa\":62907,\"space-shuttle\":61847,\"space-station-moon-alt\":57396,\"space-station-moon\":57395,\"spade\":62196,\"sparkles\":63632,\"speaker\":63711,\"speakers\":63712,\"spell-check\":63633,\"spider-black-widow\":63256,\"spider-web\":63257,\"spider\":63255,\"spinner-third\":62452,\"spinner\":61712,\"splotch\":62908,\"spray-can\":62909,\"sprinkler\":57397,\"square-full\":62556,\"square-root-alt\":63128,\"square-root\":63127,\"square\":61640,\"squirrel\":63258,\"staff\":63259,\"stamp\":62911,\"star-and-crescent\":63129,\"star-christmas\":63444,\"star-exclamation\":62195,\"star-half-alt\":62912,\"star-half\":61577,\"star-of-david\":63130,\"star-of-life\":63009,\"star-shooting\":57398,\"star\":61445,\"starfighter-alt\":57400,\"starfighter\":57399,\"stars\":63330,\"starship-freighter\":57402,\"starship\":57401,\"steak\":63524,\"steering-wheel\":63010,\"step-backward\":61512,\"step-forward\":61521,\"stethoscope\":61681,\"sticky-note\":62025,\"stocking\":63445,\"stomach\":63011,\"stop-circle\":62093,\"stop\":61517,\"stopwatch-20\":57455,\"stopwatch\":62194,\"store-alt-slash\":57456,\"store-alt\":62799,\"store-slash\":57457,\"store\":62798,\"stream\":62800,\"street-view\":61981,\"stretcher\":63525,\"strikethrough\":61644,\"stroopwafel\":62801,\"subscript\":61740,\"subway\":62009,\"suitcase-rolling\":62913,\"suitcase\":61682,\"sun-cloud\":63331,\"sun-dust\":63332,\"sun-haze\":63333,\"sun\":61829,\"sunglasses\":63634,\"sunrise\":63334,\"sunset\":63335,\"superscript\":61739,\"surprise\":62914,\"swatchbook\":62915,\"swimmer\":62916,\"swimming-pool\":62917,\"sword-laser-alt\":57404,\"sword-laser\":57403,\"sword\":63260,\"swords-laser\":57405,\"swords\":63261,\"synagogue\":63131,\"sync-alt\":62193,\"sync\":61473,\"syringe\":62606,\"table-tennis\":62557,\"table\":61646,\"tablet-alt\":62458,\"tablet-android-alt\":62460,\"tablet-android\":62459,\"tablet-rugged\":62607,\"tablet\":61706,\"tablets\":62608,\"tachometer-alt-average\":63012,\"tachometer-alt-fast\":63013,\"tachometer-alt-fastest\":63014,\"tachometer-alt-slow\":63015,\"tachometer-alt-slowest\":63016,\"tachometer-alt\":62461,\"tachometer-average\":63017,\"tachometer-fast\":63018,\"tachometer-fastest\":63019,\"tachometer-slow\":63020,\"tachometer-slowest\":63021,\"tachometer\":61668,\"taco\":63526,\"tag\":61483,\"tags\":61484,\"tally\":63132,\"tanakh\":63527,\"tape\":62683,\"tasks-alt\":63528,\"tasks\":61614,\"taxi\":61882,\"teeth-open\":63023,\"teeth\":63022,\"telescope\":57406,\"temperature-down\":57407,\"temperature-frigid\":63336,\"temperature-high\":63337,\"temperature-hot\":63338,\"temperature-low\":63339,\"temperature-up\":57408,\"tenge\":63447,\"tennis-ball\":62558,\"terminal\":61728,\"text-height\":61492,\"text-size\":63636,\"text-width\":61493,\"text\":63635,\"th-large\":61449,\"th-list\":61451,\"th\":61450,\"theater-masks\":63024,\"thermometer-empty\":62155,\"thermometer-full\":62151,\"thermometer-half\":62153,\"thermometer-quarter\":62154,\"thermometer-three-quarters\":62152,\"thermometer\":62609,\"theta\":63134,\"thumbs-down\":61797,\"thumbs-up\":61796,\"thumbtack\":61581,\"thunderstorm-moon\":63341,\"thunderstorm-sun\":63342,\"thunderstorm\":63340,\"ticket-alt\":62463,\"ticket\":61765,\"tilde\":63135,\"times-circle\":61527,\"times-hexagon\":62190,\"times-octagon\":62192,\"times-square\":62163,\"times\":61453,\"tint-slash\":62919,\"tint\":61507,\"tire-flat\":63026,\"tire-pressure-warning\":63027,\"tire-rugged\":63028,\"tire\":63025,\"tired\":62920,\"toggle-off\":61956,\"toggle-on\":61957,\"toilet-paper-alt\":63263,\"toilet-paper-slash\":57458,\"toilet-paper\":63262,\"toilet\":63448,\"tombstone-alt\":63265,\"tombstone\":63264,\"toolbox\":62802,\"tools\":63449,\"tooth\":62921,\"toothbrush\":63029,\"torah\":63136,\"torii-gate\":63137,\"tornado\":63343,\"tractor\":63266,\"trademark\":62044,\"traffic-cone\":63030,\"traffic-light-go\":63032,\"traffic-light-slow\":63033,\"traffic-light-stop\":63034,\"traffic-light\":63031,\"trailer\":57409,\"train\":62008,\"tram\":63450,\"transgender-alt\":61989,\"transgender\":61988,\"transporter-1\":57411,\"transporter-2\":57412,\"transporter-3\":57413,\"transporter-empty\":57414,\"transporter\":57410,\"trash-alt\":62189,\"trash-restore-alt\":63530,\"trash-restore\":63529,\"trash-undo-alt\":63638,\"trash-undo\":63637,\"trash\":61944,\"treasure-chest\":63267,\"tree-alt\":62464,\"tree-christmas\":63451,\"tree-decorated\":63452,\"tree-large\":63453,\"tree-palm\":63531,\"tree\":61883,\"trees\":63268,\"triangle-music\":63714,\"triangle\":62188,\"trophy-alt\":62187,\"trophy\":61585,\"truck-container\":62684,\"truck-couch\":62685,\"truck-loading\":62686,\"truck-monster\":63035,\"truck-moving\":62687,\"truck-pickup\":63036,\"truck-plow\":63454,\"truck-ramp\":62688,\"truck\":61649,\"trumpet\":63715,\"tshirt\":62803,\"tty\":61924,\"turkey\":63269,\"turntable\":63716,\"turtle\":63270,\"tv-alt\":63717,\"tv-music\":63718,\"tv-retro\":62465,\"tv\":62060,\"typewriter\":63719,\"ufo-beam\":57416,\"ufo\":57415,\"umbrella-beach\":62922,\"umbrella\":61673,\"underline\":61645,\"undo-alt\":62186,\"undo\":61666,\"unicorn\":63271,\"union\":63138,\"universal-access\":62106,\"university\":61852,\"unlink\":61735,\"unlock-alt\":61758,\"unlock\":61596,\"upload\":61587,\"usb-drive\":63721,\"usd-circle\":62184,\"usd-square\":62185,\"user-alien\":57418,\"user-alt-slash\":62714,\"user-alt\":62470,\"user-astronaut\":62715,\"user-chart\":63139,\"user-check\":62716,\"user-circle\":62141,\"user-clock\":62717,\"user-cog\":62718,\"user-cowboy\":63722,\"user-crown\":63140,\"user-edit\":62719,\"user-friends\":62720,\"user-graduate\":62721,\"user-hard-hat\":63532,\"user-headset\":63533,\"user-injured\":63272,\"user-lock\":62722,\"user-md-chat\":63534,\"user-md\":61680,\"user-minus\":62723,\"user-music\":63723,\"user-ninja\":62724,\"user-nurse\":63535,\"user-plus\":62004,\"user-robot\":57419,\"user-secret\":61979,\"user-shield\":62725,\"user-slash\":62726,\"user-tag\":62727,\"user-tie\":62728,\"user-times\":62005,\"user-unlock\":57432,\"user-visor\":57420,\"user\":61447,\"users-class\":63037,\"users-cog\":62729,\"users-crown\":63141,\"users-medical\":63536,\"users-slash\":57459,\"users\":61632,\"utensil-fork\":62179,\"utensil-knife\":62180,\"utensil-spoon\":62181,\"utensils-alt\":62182,\"utensils\":62183,\"vacuum-robot\":57422,\"vacuum\":57421,\"value-absolute\":63142,\"vector-square\":62923,\"venus-double\":61990,\"venus-mars\":61992,\"venus\":61985,\"vest-patches\":57478,\"vest\":57477,\"vhs\":63724,\"vial\":62610,\"vials\":62611,\"video-plus\":62689,\"video-slash\":62690,\"video\":61501,\"vihara\":63143,\"violin\":63725,\"virus-slash\":57461,\"virus\":57460,\"viruses\":57462,\"voicemail\":63639,\"volcano\":63344,\"volleyball-ball\":62559,\"volume-down\":61479,\"volume-mute\":63145,\"volume-off\":61478,\"volume-slash\":62178,\"volume-up\":61480,\"volume\":63144,\"vote-nay\":63345,\"vote-yea\":63346,\"vr-cardboard\":63273,\"wagon-covered\":63726,\"walker\":63537,\"walkie-talkie\":63727,\"walking\":62804,\"wallet\":62805,\"wand-magic\":63275,\"wand\":63274,\"warehouse-alt\":62613,\"warehouse\":62612,\"washer\":63640,\"watch-calculator\":63728,\"watch-fitness\":63038,\"watch\":62177,\"water-lower\":63348,\"water-rise\":63349,\"water\":63347,\"wave-sine\":63641,\"wave-square\":63550,\"wave-triangle\":63642,\"waveform-path\":63730,\"waveform\":63729,\"webcam-slash\":63539,\"webcam\":63538,\"weight-hanging\":62925,\"weight\":62614,\"whale\":63276,\"wheat\":63277,\"wheelchair\":61843,\"whistle\":62560,\"wifi-1\":63146,\"wifi-2\":63147,\"wifi-slash\":63148,\"wifi\":61931,\"wind-turbine\":63643,\"wind-warning\":63350,\"wind\":63278,\"window-alt\":62479,\"window-close\":62480,\"window-frame-open\":57424,\"window-frame\":57423,\"window-maximize\":62160,\"window-minimize\":62161,\"window-restore\":62162,\"window\":62478,\"windsock\":63351,\"wine-bottle\":63279,\"wine-glass-alt\":62926,\"wine-glass\":62691,\"won-sign\":61785,\"wreath\":63458,\"wrench\":61613,\"x-ray\":62615,\"yen-sign\":61783,\"yin-yang\":63149}"
  },
  {
    "path": "packages/fontawesome5-pro/glyphmaps/FontAwesome5Pro_meta.json",
    "content": "{\n  \"brand\": [\n    \"500px\",\n    \"accessible-icon\",\n    \"accusoft\",\n    \"acquisitions-incorporated\",\n    \"adn\",\n    \"adversal\",\n    \"affiliatetheme\",\n    \"airbnb\",\n    \"algolia\",\n    \"alipay\",\n    \"amazon-pay\",\n    \"amazon\",\n    \"amilia\",\n    \"android\",\n    \"angellist\",\n    \"angrycreative\",\n    \"angular\",\n    \"app-store-ios\",\n    \"app-store\",\n    \"apper\",\n    \"apple-pay\",\n    \"apple\",\n    \"artstation\",\n    \"asymmetrik\",\n    \"atlassian\",\n    \"audible\",\n    \"autoprefixer\",\n    \"avianex\",\n    \"aviato\",\n    \"aws\",\n    \"bandcamp\",\n    \"battle-net\",\n    \"behance-square\",\n    \"behance\",\n    \"bimobject\",\n    \"bitbucket\",\n    \"bitcoin\",\n    \"bity\",\n    \"black-tie\",\n    \"blackberry\",\n    \"blogger-b\",\n    \"blogger\",\n    \"bluetooth-b\",\n    \"bluetooth\",\n    \"bootstrap\",\n    \"btc\",\n    \"buffer\",\n    \"buromobelexperte\",\n    \"buy-n-large\",\n    \"buysellads\",\n    \"canadian-maple-leaf\",\n    \"cc-amazon-pay\",\n    \"cc-amex\",\n    \"cc-apple-pay\",\n    \"cc-diners-club\",\n    \"cc-discover\",\n    \"cc-jcb\",\n    \"cc-mastercard\",\n    \"cc-paypal\",\n    \"cc-stripe\",\n    \"cc-visa\",\n    \"centercode\",\n    \"centos\",\n    \"chrome\",\n    \"chromecast\",\n    \"cloudflare\",\n    \"cloudscale\",\n    \"cloudsmith\",\n    \"cloudversify\",\n    \"codepen\",\n    \"codiepie\",\n    \"confluence\",\n    \"connectdevelop\",\n    \"contao\",\n    \"cotton-bureau\",\n    \"cpanel\",\n    \"creative-commons-by\",\n    \"creative-commons-nc-eu\",\n    \"creative-commons-nc-jp\",\n    \"creative-commons-nc\",\n    \"creative-commons-nd\",\n    \"creative-commons-pd-alt\",\n    \"creative-commons-pd\",\n    \"creative-commons-remix\",\n    \"creative-commons-sa\",\n    \"creative-commons-sampling-plus\",\n    \"creative-commons-sampling\",\n    \"creative-commons-share\",\n    \"creative-commons-zero\",\n    \"creative-commons\",\n    \"critical-role\",\n    \"css3-alt\",\n    \"css3\",\n    \"cuttlefish\",\n    \"d-and-d-beyond\",\n    \"d-and-d\",\n    \"dailymotion\",\n    \"dashcube\",\n    \"deezer\",\n    \"delicious\",\n    \"deploydog\",\n    \"deskpro\",\n    \"dev\",\n    \"deviantart\",\n    \"dhl\",\n    \"diaspora\",\n    \"digg\",\n    \"digital-ocean\",\n    \"discord\",\n    \"discourse\",\n    \"dochub\",\n    \"docker\",\n    \"draft2digital\",\n    \"dribbble-square\",\n    \"dribbble\",\n    \"dropbox\",\n    \"drupal\",\n    \"dyalog\",\n    \"earlybirds\",\n    \"ebay\",\n    \"edge-legacy\",\n    \"edge\",\n    \"elementor\",\n    \"ello\",\n    \"ember\",\n    \"empire\",\n    \"envira\",\n    \"erlang\",\n    \"ethereum\",\n    \"etsy\",\n    \"evernote\",\n    \"expeditedssl\",\n    \"facebook-f\",\n    \"facebook-messenger\",\n    \"facebook-square\",\n    \"facebook\",\n    \"fantasy-flight-games\",\n    \"fedex\",\n    \"fedora\",\n    \"figma\",\n    \"firefox-browser\",\n    \"firefox\",\n    \"first-order-alt\",\n    \"first-order\",\n    \"firstdraft\",\n    \"flickr\",\n    \"flipboard\",\n    \"fly\",\n    \"font-awesome-alt\",\n    \"font-awesome-flag\",\n    \"font-awesome-logo-full\",\n    \"font-awesome\",\n    \"fonticons-fi\",\n    \"fonticons\",\n    \"fort-awesome-alt\",\n    \"fort-awesome\",\n    \"forumbee\",\n    \"foursquare\",\n    \"free-code-camp\",\n    \"freebsd\",\n    \"fulcrum\",\n    \"galactic-republic\",\n    \"galactic-senate\",\n    \"get-pocket\",\n    \"gg-circle\",\n    \"gg\",\n    \"git-alt\",\n    \"git-square\",\n    \"git\",\n    \"github-alt\",\n    \"github-square\",\n    \"github\",\n    \"gitkraken\",\n    \"gitlab\",\n    \"gitter\",\n    \"glide-g\",\n    \"glide\",\n    \"gofore\",\n    \"goodreads-g\",\n    \"goodreads\",\n    \"google-drive\",\n    \"google-pay\",\n    \"google-play\",\n    \"google-plus-g\",\n    \"google-plus-square\",\n    \"google-plus\",\n    \"google-wallet\",\n    \"google\",\n    \"gratipay\",\n    \"grav\",\n    \"gripfire\",\n    \"grunt\",\n    \"guilded\",\n    \"gulp\",\n    \"hacker-news-square\",\n    \"hacker-news\",\n    \"hackerrank\",\n    \"hips\",\n    \"hire-a-helper\",\n    \"hive\",\n    \"hooli\",\n    \"hornbill\",\n    \"hotjar\",\n    \"houzz\",\n    \"html5\",\n    \"hubspot\",\n    \"ideal\",\n    \"imdb\",\n    \"innosoft\",\n    \"instagram-square\",\n    \"instagram\",\n    \"instalod\",\n    \"intercom\",\n    \"internet-explorer\",\n    \"invision\",\n    \"ioxhost\",\n    \"itch-io\",\n    \"itunes-note\",\n    \"itunes\",\n    \"java\",\n    \"jedi-order\",\n    \"jenkins\",\n    \"jira\",\n    \"joget\",\n    \"joomla\",\n    \"js-square\",\n    \"js\",\n    \"jsfiddle\",\n    \"kaggle\",\n    \"keybase\",\n    \"keycdn\",\n    \"kickstarter-k\",\n    \"kickstarter\",\n    \"korvue\",\n    \"laravel\",\n    \"lastfm-square\",\n    \"lastfm\",\n    \"leanpub\",\n    \"less\",\n    \"line\",\n    \"linkedin-in\",\n    \"linkedin\",\n    \"linode\",\n    \"linux\",\n    \"lyft\",\n    \"magento\",\n    \"mailchimp\",\n    \"mandalorian\",\n    \"markdown\",\n    \"mastodon\",\n    \"maxcdn\",\n    \"mdb\",\n    \"medapps\",\n    \"medium-m\",\n    \"medium\",\n    \"medrt\",\n    \"meetup\",\n    \"megaport\",\n    \"mendeley\",\n    \"microblog\",\n    \"microsoft\",\n    \"mix\",\n    \"mixcloud\",\n    \"mixer\",\n    \"mizuni\",\n    \"modx\",\n    \"monero\",\n    \"napster\",\n    \"neos\",\n    \"nimblr\",\n    \"node-js\",\n    \"node\",\n    \"npm\",\n    \"ns8\",\n    \"nutritionix\",\n    \"octopus-deploy\",\n    \"odnoklassniki-square\",\n    \"odnoklassniki\",\n    \"old-republic\",\n    \"opencart\",\n    \"openid\",\n    \"opera\",\n    \"optin-monster\",\n    \"orcid\",\n    \"osi\",\n    \"page4\",\n    \"pagelines\",\n    \"palfed\",\n    \"patreon\",\n    \"paypal\",\n    \"penny-arcade\",\n    \"perbyte\",\n    \"periscope\",\n    \"phabricator\",\n    \"phoenix-framework\",\n    \"phoenix-squadron\",\n    \"php\",\n    \"pied-piper-alt\",\n    \"pied-piper-hat\",\n    \"pied-piper-pp\",\n    \"pied-piper-square\",\n    \"pied-piper\",\n    \"pinterest-p\",\n    \"pinterest-square\",\n    \"pinterest\",\n    \"playstation\",\n    \"product-hunt\",\n    \"pushed\",\n    \"python\",\n    \"qq\",\n    \"quinscape\",\n    \"quora\",\n    \"r-project\",\n    \"raspberry-pi\",\n    \"ravelry\",\n    \"react\",\n    \"reacteurope\",\n    \"readme\",\n    \"rebel\",\n    \"red-river\",\n    \"reddit-alien\",\n    \"reddit-square\",\n    \"reddit\",\n    \"redhat\",\n    \"renren\",\n    \"replyd\",\n    \"researchgate\",\n    \"resolving\",\n    \"rev\",\n    \"rocketchat\",\n    \"rockrms\",\n    \"rust\",\n    \"safari\",\n    \"salesforce\",\n    \"sass\",\n    \"schlix\",\n    \"scribd\",\n    \"searchengin\",\n    \"sellcast\",\n    \"sellsy\",\n    \"servicestack\",\n    \"shirtsinbulk\",\n    \"shopify\",\n    \"shopware\",\n    \"simplybuilt\",\n    \"sistrix\",\n    \"sith\",\n    \"sketch\",\n    \"skyatlas\",\n    \"skype\",\n    \"slack-hash\",\n    \"slack\",\n    \"slideshare\",\n    \"snapchat-ghost\",\n    \"snapchat-square\",\n    \"snapchat\",\n    \"soundcloud\",\n    \"sourcetree\",\n    \"speakap\",\n    \"speaker-deck\",\n    \"spotify\",\n    \"squarespace\",\n    \"stack-exchange\",\n    \"stack-overflow\",\n    \"stackpath\",\n    \"staylinked\",\n    \"steam-square\",\n    \"steam-symbol\",\n    \"steam\",\n    \"sticker-mule\",\n    \"strava\",\n    \"stripe-s\",\n    \"stripe\",\n    \"studiovinari\",\n    \"stumbleupon-circle\",\n    \"stumbleupon\",\n    \"superpowers\",\n    \"supple\",\n    \"suse\",\n    \"swift\",\n    \"symfony\",\n    \"teamspeak\",\n    \"telegram-plane\",\n    \"telegram\",\n    \"tencent-weibo\",\n    \"the-red-yeti\",\n    \"themeco\",\n    \"themeisle\",\n    \"think-peaks\",\n    \"tiktok\",\n    \"trade-federation\",\n    \"trello\",\n    \"tumblr-square\",\n    \"tumblr\",\n    \"twitch\",\n    \"twitter-square\",\n    \"twitter\",\n    \"typo3\",\n    \"uber\",\n    \"ubuntu\",\n    \"uikit\",\n    \"umbraco\",\n    \"uncharted\",\n    \"uniregistry\",\n    \"unity\",\n    \"unsplash\",\n    \"untappd\",\n    \"ups\",\n    \"usb\",\n    \"usps\",\n    \"ussunnah\",\n    \"vaadin\",\n    \"viacoin\",\n    \"viadeo-square\",\n    \"viadeo\",\n    \"viber\",\n    \"vimeo-square\",\n    \"vimeo-v\",\n    \"vimeo\",\n    \"vine\",\n    \"vk\",\n    \"vnv\",\n    \"vuejs\",\n    \"watchman-monitoring\",\n    \"waze\",\n    \"weebly\",\n    \"weibo\",\n    \"weixin\",\n    \"whatsapp-square\",\n    \"whatsapp\",\n    \"whmcs\",\n    \"wikipedia-w\",\n    \"windows\",\n    \"wix\",\n    \"wizards-of-the-coast\",\n    \"wodu\",\n    \"wolf-pack-battalion\",\n    \"wordpress-simple\",\n    \"wordpress\",\n    \"wpbeginner\",\n    \"wpexplorer\",\n    \"wpforms\",\n    \"wpressr\",\n    \"xbox\",\n    \"xing-square\",\n    \"xing\",\n    \"y-combinator\",\n    \"yahoo\",\n    \"yammer\",\n    \"yandex-international\",\n    \"yandex\",\n    \"yarn\",\n    \"yelp\",\n    \"yoast\",\n    \"youtube-square\",\n    \"youtube\",\n    \"zhihu\"\n  ],\n  \"duotone\": [\n    \"abacus\",\n    \"acorn\",\n    \"ad\",\n    \"address-book\",\n    \"address-card\",\n    \"adjust\",\n    \"air-conditioner\",\n    \"air-freshener\",\n    \"alarm-clock\",\n    \"alarm-exclamation\",\n    \"alarm-plus\",\n    \"alarm-snooze\",\n    \"album-collection\",\n    \"album\",\n    \"alicorn\",\n    \"alien-monster\",\n    \"alien\",\n    \"align-center\",\n    \"align-justify\",\n    \"align-left\",\n    \"align-right\",\n    \"align-slash\",\n    \"allergies\",\n    \"ambulance\",\n    \"american-sign-language-interpreting\",\n    \"amp-guitar\",\n    \"analytics\",\n    \"anchor\",\n    \"angel\",\n    \"angle-double-down\",\n    \"angle-double-left\",\n    \"angle-double-right\",\n    \"angle-double-up\",\n    \"angle-down\",\n    \"angle-left\",\n    \"angle-right\",\n    \"angle-up\",\n    \"angry\",\n    \"ankh\",\n    \"apple-alt\",\n    \"apple-crate\",\n    \"archive\",\n    \"archway\",\n    \"arrow-alt-circle-down\",\n    \"arrow-alt-circle-left\",\n    \"arrow-alt-circle-right\",\n    \"arrow-alt-circle-up\",\n    \"arrow-alt-down\",\n    \"arrow-alt-from-bottom\",\n    \"arrow-alt-from-left\",\n    \"arrow-alt-from-right\",\n    \"arrow-alt-from-top\",\n    \"arrow-alt-left\",\n    \"arrow-alt-right\",\n    \"arrow-alt-square-down\",\n    \"arrow-alt-square-left\",\n    \"arrow-alt-square-right\",\n    \"arrow-alt-square-up\",\n    \"arrow-alt-to-bottom\",\n    \"arrow-alt-to-left\",\n    \"arrow-alt-to-right\",\n    \"arrow-alt-to-top\",\n    \"arrow-alt-up\",\n    \"arrow-circle-down\",\n    \"arrow-circle-left\",\n    \"arrow-circle-right\",\n    \"arrow-circle-up\",\n    \"arrow-down\",\n    \"arrow-from-bottom\",\n    \"arrow-from-left\",\n    \"arrow-from-right\",\n    \"arrow-from-top\",\n    \"arrow-left\",\n    \"arrow-right\",\n    \"arrow-square-down\",\n    \"arrow-square-left\",\n    \"arrow-square-right\",\n    \"arrow-square-up\",\n    \"arrow-to-bottom\",\n    \"arrow-to-left\",\n    \"arrow-to-right\",\n    \"arrow-to-top\",\n    \"arrow-up\",\n    \"arrows-alt-h\",\n    \"arrows-alt-v\",\n    \"arrows-alt\",\n    \"arrows-h\",\n    \"arrows-v\",\n    \"arrows\",\n    \"assistive-listening-systems\",\n    \"asterisk\",\n    \"at\",\n    \"atlas\",\n    \"atom-alt\",\n    \"atom\",\n    \"audio-description\",\n    \"award\",\n    \"axe-battle\",\n    \"axe\",\n    \"baby-carriage\",\n    \"baby\",\n    \"backpack\",\n    \"backspace\",\n    \"backward\",\n    \"bacon\",\n    \"bacteria\",\n    \"bacterium\",\n    \"badge-check\",\n    \"badge-dollar\",\n    \"badge-percent\",\n    \"badge-sheriff\",\n    \"badge\",\n    \"badger-honey\",\n    \"bags-shopping\",\n    \"bahai\",\n    \"balance-scale-left\",\n    \"balance-scale-right\",\n    \"balance-scale\",\n    \"ball-pile\",\n    \"ballot-check\",\n    \"ballot\",\n    \"ban\",\n    \"band-aid\",\n    \"banjo\",\n    \"barcode-alt\",\n    \"barcode-read\",\n    \"barcode-scan\",\n    \"barcode\",\n    \"bars\",\n    \"baseball-ball\",\n    \"baseball\",\n    \"basketball-ball\",\n    \"basketball-hoop\",\n    \"bat\",\n    \"bath\",\n    \"battery-bolt\",\n    \"battery-empty\",\n    \"battery-full\",\n    \"battery-half\",\n    \"battery-quarter\",\n    \"battery-slash\",\n    \"battery-three-quarters\",\n    \"bed-alt\",\n    \"bed-bunk\",\n    \"bed-empty\",\n    \"bed\",\n    \"beer\",\n    \"bell-exclamation\",\n    \"bell-on\",\n    \"bell-plus\",\n    \"bell-school-slash\",\n    \"bell-school\",\n    \"bell-slash\",\n    \"bell\",\n    \"bells\",\n    \"betamax\",\n    \"bezier-curve\",\n    \"bible\",\n    \"bicycle\",\n    \"biking-mountain\",\n    \"biking\",\n    \"binoculars\",\n    \"biohazard\",\n    \"birthday-cake\",\n    \"blanket\",\n    \"blender-phone\",\n    \"blender\",\n    \"blind\",\n    \"blinds-open\",\n    \"blinds-raised\",\n    \"blinds\",\n    \"blog\",\n    \"bold\",\n    \"bolt\",\n    \"bomb\",\n    \"bone-break\",\n    \"bone\",\n    \"bong\",\n    \"book-alt\",\n    \"book-dead\",\n    \"book-heart\",\n    \"book-medical\",\n    \"book-open\",\n    \"book-reader\",\n    \"book-spells\",\n    \"book-user\",\n    \"book\",\n    \"bookmark\",\n    \"books-medical\",\n    \"books\",\n    \"boombox\",\n    \"boot\",\n    \"booth-curtain\",\n    \"border-all\",\n    \"border-bottom\",\n    \"border-center-h\",\n    \"border-center-v\",\n    \"border-inner\",\n    \"border-left\",\n    \"border-none\",\n    \"border-outer\",\n    \"border-right\",\n    \"border-style-alt\",\n    \"border-style\",\n    \"border-top\",\n    \"bow-arrow\",\n    \"bowling-ball\",\n    \"bowling-pins\",\n    \"box-alt\",\n    \"box-ballot\",\n    \"box-check\",\n    \"box-fragile\",\n    \"box-full\",\n    \"box-heart\",\n    \"box-open\",\n    \"box-tissue\",\n    \"box-up\",\n    \"box-usd\",\n    \"box\",\n    \"boxes-alt\",\n    \"boxes\",\n    \"boxing-glove\",\n    \"brackets-curly\",\n    \"brackets\",\n    \"braille\",\n    \"brain\",\n    \"bread-loaf\",\n    \"bread-slice\",\n    \"briefcase-medical\",\n    \"briefcase\",\n    \"bring-forward\",\n    \"bring-front\",\n    \"broadcast-tower\",\n    \"broom\",\n    \"browser\",\n    \"brush\",\n    \"bug\",\n    \"building\",\n    \"bullhorn\",\n    \"bullseye-arrow\",\n    \"bullseye-pointer\",\n    \"bullseye\",\n    \"burger-soda\",\n    \"burn\",\n    \"burrito\",\n    \"bus-alt\",\n    \"bus-school\",\n    \"bus\",\n    \"business-time\",\n    \"cabinet-filing\",\n    \"cactus\",\n    \"calculator-alt\",\n    \"calculator\",\n    \"calendar-alt\",\n    \"calendar-check\",\n    \"calendar-day\",\n    \"calendar-edit\",\n    \"calendar-exclamation\",\n    \"calendar-minus\",\n    \"calendar-plus\",\n    \"calendar-star\",\n    \"calendar-times\",\n    \"calendar-week\",\n    \"calendar\",\n    \"camcorder\",\n    \"camera-alt\",\n    \"camera-home\",\n    \"camera-movie\",\n    \"camera-polaroid\",\n    \"camera-retro\",\n    \"camera\",\n    \"campfire\",\n    \"campground\",\n    \"candle-holder\",\n    \"candy-cane\",\n    \"candy-corn\",\n    \"cannabis\",\n    \"capsules\",\n    \"car-alt\",\n    \"car-battery\",\n    \"car-building\",\n    \"car-bump\",\n    \"car-bus\",\n    \"car-crash\",\n    \"car-garage\",\n    \"car-mechanic\",\n    \"car-side\",\n    \"car-tilt\",\n    \"car-wash\",\n    \"car\",\n    \"caravan-alt\",\n    \"caravan\",\n    \"caret-circle-down\",\n    \"caret-circle-left\",\n    \"caret-circle-right\",\n    \"caret-circle-up\",\n    \"caret-down\",\n    \"caret-left\",\n    \"caret-right\",\n    \"caret-square-down\",\n    \"caret-square-left\",\n    \"caret-square-right\",\n    \"caret-square-up\",\n    \"caret-up\",\n    \"carrot\",\n    \"cars\",\n    \"cart-arrow-down\",\n    \"cart-plus\",\n    \"cash-register\",\n    \"cassette-tape\",\n    \"cat-space\",\n    \"cat\",\n    \"cauldron\",\n    \"cctv\",\n    \"certificate\",\n    \"chair-office\",\n    \"chair\",\n    \"chalkboard-teacher\",\n    \"chalkboard\",\n    \"charging-station\",\n    \"chart-area\",\n    \"chart-bar\",\n    \"chart-line-down\",\n    \"chart-line\",\n    \"chart-network\",\n    \"chart-pie-alt\",\n    \"chart-pie\",\n    \"chart-scatter\",\n    \"check-circle\",\n    \"check-double\",\n    \"check-square\",\n    \"check\",\n    \"cheese-swiss\",\n    \"cheese\",\n    \"cheeseburger\",\n    \"chess-bishop-alt\",\n    \"chess-bishop\",\n    \"chess-board\",\n    \"chess-clock-alt\",\n    \"chess-clock\",\n    \"chess-king-alt\",\n    \"chess-king\",\n    \"chess-knight-alt\",\n    \"chess-knight\",\n    \"chess-pawn-alt\",\n    \"chess-pawn\",\n    \"chess-queen-alt\",\n    \"chess-queen\",\n    \"chess-rook-alt\",\n    \"chess-rook\",\n    \"chess\",\n    \"chevron-circle-down\",\n    \"chevron-circle-left\",\n    \"chevron-circle-right\",\n    \"chevron-circle-up\",\n    \"chevron-double-down\",\n    \"chevron-double-left\",\n    \"chevron-double-right\",\n    \"chevron-double-up\",\n    \"chevron-down\",\n    \"chevron-left\",\n    \"chevron-right\",\n    \"chevron-square-down\",\n    \"chevron-square-left\",\n    \"chevron-square-right\",\n    \"chevron-square-up\",\n    \"chevron-up\",\n    \"child\",\n    \"chimney\",\n    \"church\",\n    \"circle-notch\",\n    \"circle\",\n    \"city\",\n    \"clarinet\",\n    \"claw-marks\",\n    \"clinic-medical\",\n    \"clipboard-check\",\n    \"clipboard-list-check\",\n    \"clipboard-list\",\n    \"clipboard-prescription\",\n    \"clipboard-user\",\n    \"clipboard\",\n    \"clock\",\n    \"clone\",\n    \"closed-captioning\",\n    \"cloud-download-alt\",\n    \"cloud-download\",\n    \"cloud-drizzle\",\n    \"cloud-hail-mixed\",\n    \"cloud-hail\",\n    \"cloud-meatball\",\n    \"cloud-moon-rain\",\n    \"cloud-moon\",\n    \"cloud-music\",\n    \"cloud-rain\",\n    \"cloud-rainbow\",\n    \"cloud-showers-heavy\",\n    \"cloud-showers\",\n    \"cloud-sleet\",\n    \"cloud-snow\",\n    \"cloud-sun-rain\",\n    \"cloud-sun\",\n    \"cloud-upload-alt\",\n    \"cloud-upload\",\n    \"cloud\",\n    \"clouds-moon\",\n    \"clouds-sun\",\n    \"clouds\",\n    \"club\",\n    \"cocktail\",\n    \"code-branch\",\n    \"code-commit\",\n    \"code-merge\",\n    \"code\",\n    \"coffee-pot\",\n    \"coffee-togo\",\n    \"coffee\",\n    \"coffin-cross\",\n    \"coffin\",\n    \"cog\",\n    \"cogs\",\n    \"coin\",\n    \"coins\",\n    \"columns\",\n    \"comet\",\n    \"comment-alt-check\",\n    \"comment-alt-dollar\",\n    \"comment-alt-dots\",\n    \"comment-alt-edit\",\n    \"comment-alt-exclamation\",\n    \"comment-alt-lines\",\n    \"comment-alt-medical\",\n    \"comment-alt-minus\",\n    \"comment-alt-music\",\n    \"comment-alt-plus\",\n    \"comment-alt-slash\",\n    \"comment-alt-smile\",\n    \"comment-alt-times\",\n    \"comment-alt\",\n    \"comment-check\",\n    \"comment-dollar\",\n    \"comment-dots\",\n    \"comment-edit\",\n    \"comment-exclamation\",\n    \"comment-lines\",\n    \"comment-medical\",\n    \"comment-minus\",\n    \"comment-music\",\n    \"comment-plus\",\n    \"comment-slash\",\n    \"comment-smile\",\n    \"comment-times\",\n    \"comment\",\n    \"comments-alt-dollar\",\n    \"comments-alt\",\n    \"comments-dollar\",\n    \"comments\",\n    \"compact-disc\",\n    \"compass-slash\",\n    \"compass\",\n    \"compress-alt\",\n    \"compress-arrows-alt\",\n    \"compress-wide\",\n    \"compress\",\n    \"computer-classic\",\n    \"computer-speaker\",\n    \"concierge-bell\",\n    \"construction\",\n    \"container-storage\",\n    \"conveyor-belt-alt\",\n    \"conveyor-belt\",\n    \"cookie-bite\",\n    \"cookie\",\n    \"copy\",\n    \"copyright\",\n    \"corn\",\n    \"couch\",\n    \"cow\",\n    \"cowbell-more\",\n    \"cowbell\",\n    \"credit-card-blank\",\n    \"credit-card-front\",\n    \"credit-card\",\n    \"cricket\",\n    \"croissant\",\n    \"crop-alt\",\n    \"crop\",\n    \"cross\",\n    \"crosshairs\",\n    \"crow\",\n    \"crown\",\n    \"crutch\",\n    \"crutches\",\n    \"cube\",\n    \"cubes\",\n    \"curling\",\n    \"cut\",\n    \"dagger\",\n    \"database\",\n    \"deaf\",\n    \"debug\",\n    \"deer-rudolph\",\n    \"deer\",\n    \"democrat\",\n    \"desktop-alt\",\n    \"desktop\",\n    \"dewpoint\",\n    \"dharmachakra\",\n    \"diagnoses\",\n    \"diamond\",\n    \"dice-d10\",\n    \"dice-d12\",\n    \"dice-d20\",\n    \"dice-d4\",\n    \"dice-d6\",\n    \"dice-d8\",\n    \"dice-five\",\n    \"dice-four\",\n    \"dice-one\",\n    \"dice-six\",\n    \"dice-three\",\n    \"dice-two\",\n    \"dice\",\n    \"digging\",\n    \"digital-tachograph\",\n    \"diploma\",\n    \"directions\",\n    \"disc-drive\",\n    \"disease\",\n    \"divide\",\n    \"dizzy\",\n    \"dna\",\n    \"do-not-enter\",\n    \"dog-leashed\",\n    \"dog\",\n    \"dollar-sign\",\n    \"dolly-empty\",\n    \"dolly-flatbed-alt\",\n    \"dolly-flatbed-empty\",\n    \"dolly-flatbed\",\n    \"dolly\",\n    \"donate\",\n    \"door-closed\",\n    \"door-open\",\n    \"dot-circle\",\n    \"dove\",\n    \"download\",\n    \"drafting-compass\",\n    \"dragon\",\n    \"draw-circle\",\n    \"draw-polygon\",\n    \"draw-square\",\n    \"dreidel\",\n    \"drone-alt\",\n    \"drone\",\n    \"drum-steelpan\",\n    \"drum\",\n    \"drumstick-bite\",\n    \"drumstick\",\n    \"dryer-alt\",\n    \"dryer\",\n    \"duck\",\n    \"dumbbell\",\n    \"dumpster-fire\",\n    \"dumpster\",\n    \"dungeon\",\n    \"ear-muffs\",\n    \"ear\",\n    \"eclipse-alt\",\n    \"eclipse\",\n    \"edit\",\n    \"egg-fried\",\n    \"egg\",\n    \"eject\",\n    \"elephant\",\n    \"ellipsis-h-alt\",\n    \"ellipsis-h\",\n    \"ellipsis-v-alt\",\n    \"ellipsis-v\",\n    \"empty-set\",\n    \"engine-warning\",\n    \"envelope-open-dollar\",\n    \"envelope-open-text\",\n    \"envelope-open\",\n    \"envelope-square\",\n    \"envelope\",\n    \"equals\",\n    \"eraser\",\n    \"ethernet\",\n    \"euro-sign\",\n    \"exchange-alt\",\n    \"exchange\",\n    \"exclamation-circle\",\n    \"exclamation-square\",\n    \"exclamation-triangle\",\n    \"exclamation\",\n    \"expand-alt\",\n    \"expand-arrows-alt\",\n    \"expand-arrows\",\n    \"expand-wide\",\n    \"expand\",\n    \"external-link-alt\",\n    \"external-link-square-alt\",\n    \"external-link-square\",\n    \"external-link\",\n    \"eye-dropper\",\n    \"eye-evil\",\n    \"eye-slash\",\n    \"eye\",\n    \"fan-table\",\n    \"fan\",\n    \"farm\",\n    \"fast-backward\",\n    \"fast-forward\",\n    \"faucet-drip\",\n    \"faucet\",\n    \"fax\",\n    \"feather-alt\",\n    \"feather\",\n    \"female\",\n    \"field-hockey\",\n    \"fighter-jet\",\n    \"file-alt\",\n    \"file-archive\",\n    \"file-audio\",\n    \"file-certificate\",\n    \"file-chart-line\",\n    \"file-chart-pie\",\n    \"file-check\",\n    \"file-code\",\n    \"file-contract\",\n    \"file-csv\",\n    \"file-download\",\n    \"file-edit\",\n    \"file-excel\",\n    \"file-exclamation\",\n    \"file-export\",\n    \"file-image\",\n    \"file-import\",\n    \"file-invoice-dollar\",\n    \"file-invoice\",\n    \"file-medical-alt\",\n    \"file-medical\",\n    \"file-minus\",\n    \"file-music\",\n    \"file-pdf\",\n    \"file-plus\",\n    \"file-powerpoint\",\n    \"file-prescription\",\n    \"file-search\",\n    \"file-signature\",\n    \"file-spreadsheet\",\n    \"file-times\",\n    \"file-upload\",\n    \"file-user\",\n    \"file-video\",\n    \"file-word\",\n    \"file\",\n    \"files-medical\",\n    \"fill-drip\",\n    \"fill\",\n    \"film-alt\",\n    \"film-canister\",\n    \"film\",\n    \"filter\",\n    \"fingerprint\",\n    \"fire-alt\",\n    \"fire-extinguisher\",\n    \"fire-smoke\",\n    \"fire\",\n    \"fireplace\",\n    \"first-aid\",\n    \"fish-cooked\",\n    \"fish\",\n    \"fist-raised\",\n    \"flag-alt\",\n    \"flag-checkered\",\n    \"flag-usa\",\n    \"flag\",\n    \"flame\",\n    \"flashlight\",\n    \"flask-poison\",\n    \"flask-potion\",\n    \"flask\",\n    \"flower-daffodil\",\n    \"flower-tulip\",\n    \"flower\",\n    \"flushed\",\n    \"flute\",\n    \"flux-capacitor\",\n    \"fog\",\n    \"folder-download\",\n    \"folder-minus\",\n    \"folder-open\",\n    \"folder-plus\",\n    \"folder-times\",\n    \"folder-tree\",\n    \"folder-upload\",\n    \"folder\",\n    \"folders\",\n    \"font-awesome-logo-full\",\n    \"font-case\",\n    \"font\",\n    \"football-ball\",\n    \"football-helmet\",\n    \"forklift\",\n    \"forward\",\n    \"fragile\",\n    \"french-fries\",\n    \"frog\",\n    \"frosty-head\",\n    \"frown-open\",\n    \"frown\",\n    \"function\",\n    \"funnel-dollar\",\n    \"futbol\",\n    \"galaxy\",\n    \"game-board-alt\",\n    \"game-board\",\n    \"game-console-handheld\",\n    \"gamepad-alt\",\n    \"gamepad\",\n    \"garage-car\",\n    \"garage-open\",\n    \"garage\",\n    \"gas-pump-slash\",\n    \"gas-pump\",\n    \"gavel\",\n    \"gem\",\n    \"genderless\",\n    \"ghost\",\n    \"gift-card\",\n    \"gift\",\n    \"gifts\",\n    \"gingerbread-man\",\n    \"glass-champagne\",\n    \"glass-cheers\",\n    \"glass-citrus\",\n    \"glass-martini-alt\",\n    \"glass-martini\",\n    \"glass-whiskey-rocks\",\n    \"glass-whiskey\",\n    \"glass\",\n    \"glasses-alt\",\n    \"glasses\",\n    \"globe-africa\",\n    \"globe-americas\",\n    \"globe-asia\",\n    \"globe-europe\",\n    \"globe-snow\",\n    \"globe-stand\",\n    \"globe\",\n    \"golf-ball\",\n    \"golf-club\",\n    \"gopuram\",\n    \"graduation-cap\",\n    \"gramophone\",\n    \"greater-than-equal\",\n    \"greater-than\",\n    \"grimace\",\n    \"grin-alt\",\n    \"grin-beam-sweat\",\n    \"grin-beam\",\n    \"grin-hearts\",\n    \"grin-squint-tears\",\n    \"grin-squint\",\n    \"grin-stars\",\n    \"grin-tears\",\n    \"grin-tongue-squint\",\n    \"grin-tongue-wink\",\n    \"grin-tongue\",\n    \"grin-wink\",\n    \"grin\",\n    \"grip-horizontal\",\n    \"grip-lines-vertical\",\n    \"grip-lines\",\n    \"grip-vertical\",\n    \"guitar-electric\",\n    \"guitar\",\n    \"guitars\",\n    \"h-square\",\n    \"h1\",\n    \"h2\",\n    \"h3\",\n    \"h4\",\n    \"hamburger\",\n    \"hammer-war\",\n    \"hammer\",\n    \"hamsa\",\n    \"hand-heart\",\n    \"hand-holding-box\",\n    \"hand-holding-heart\",\n    \"hand-holding-magic\",\n    \"hand-holding-medical\",\n    \"hand-holding-seedling\",\n    \"hand-holding-usd\",\n    \"hand-holding-water\",\n    \"hand-holding\",\n    \"hand-lizard\",\n    \"hand-middle-finger\",\n    \"hand-paper\",\n    \"hand-peace\",\n    \"hand-point-down\",\n    \"hand-point-left\",\n    \"hand-point-right\",\n    \"hand-point-up\",\n    \"hand-pointer\",\n    \"hand-receiving\",\n    \"hand-rock\",\n    \"hand-scissors\",\n    \"hand-sparkles\",\n    \"hand-spock\",\n    \"hands-heart\",\n    \"hands-helping\",\n    \"hands-usd\",\n    \"hands-wash\",\n    \"hands\",\n    \"handshake-alt-slash\",\n    \"handshake-alt\",\n    \"handshake-slash\",\n    \"handshake\",\n    \"hanukiah\",\n    \"hard-hat\",\n    \"hashtag\",\n    \"hat-chef\",\n    \"hat-cowboy-side\",\n    \"hat-cowboy\",\n    \"hat-santa\",\n    \"hat-winter\",\n    \"hat-witch\",\n    \"hat-wizard\",\n    \"hdd\",\n    \"head-side-brain\",\n    \"head-side-cough-slash\",\n    \"head-side-cough\",\n    \"head-side-headphones\",\n    \"head-side-mask\",\n    \"head-side-medical\",\n    \"head-side-virus\",\n    \"head-side\",\n    \"head-vr\",\n    \"heading\",\n    \"headphones-alt\",\n    \"headphones\",\n    \"headset\",\n    \"heart-broken\",\n    \"heart-circle\",\n    \"heart-rate\",\n    \"heart-square\",\n    \"heart\",\n    \"heartbeat\",\n    \"heat\",\n    \"helicopter\",\n    \"helmet-battle\",\n    \"hexagon\",\n    \"highlighter\",\n    \"hiking\",\n    \"hippo\",\n    \"history\",\n    \"hockey-mask\",\n    \"hockey-puck\",\n    \"hockey-sticks\",\n    \"holly-berry\",\n    \"home-alt\",\n    \"home-heart\",\n    \"home-lg-alt\",\n    \"home-lg\",\n    \"home\",\n    \"hood-cloak\",\n    \"horizontal-rule\",\n    \"horse-head\",\n    \"horse-saddle\",\n    \"horse\",\n    \"hospital-alt\",\n    \"hospital-symbol\",\n    \"hospital-user\",\n    \"hospital\",\n    \"hospitals\",\n    \"hot-tub\",\n    \"hotdog\",\n    \"hotel\",\n    \"hourglass-end\",\n    \"hourglass-half\",\n    \"hourglass-start\",\n    \"hourglass\",\n    \"house-damage\",\n    \"house-day\",\n    \"house-flood\",\n    \"house-leave\",\n    \"house-night\",\n    \"house-return\",\n    \"house-signal\",\n    \"house-user\",\n    \"house\",\n    \"hryvnia\",\n    \"humidity\",\n    \"hurricane\",\n    \"i-cursor\",\n    \"ice-cream\",\n    \"ice-skate\",\n    \"icicles\",\n    \"icons-alt\",\n    \"icons\",\n    \"id-badge\",\n    \"id-card-alt\",\n    \"id-card\",\n    \"igloo\",\n    \"image-polaroid\",\n    \"image\",\n    \"images\",\n    \"inbox-in\",\n    \"inbox-out\",\n    \"inbox\",\n    \"indent\",\n    \"industry-alt\",\n    \"industry\",\n    \"infinity\",\n    \"info-circle\",\n    \"info-square\",\n    \"info\",\n    \"inhaler\",\n    \"integral\",\n    \"intersection\",\n    \"inventory\",\n    \"island-tropical\",\n    \"italic\",\n    \"jack-o-lantern\",\n    \"jedi\",\n    \"joint\",\n    \"journal-whills\",\n    \"joystick\",\n    \"jug\",\n    \"kaaba\",\n    \"kazoo\",\n    \"kerning\",\n    \"key-skeleton\",\n    \"key\",\n    \"keyboard\",\n    \"keynote\",\n    \"khanda\",\n    \"kidneys\",\n    \"kiss-beam\",\n    \"kiss-wink-heart\",\n    \"kiss\",\n    \"kite\",\n    \"kiwi-bird\",\n    \"knife-kitchen\",\n    \"lambda\",\n    \"lamp-desk\",\n    \"lamp-floor\",\n    \"lamp\",\n    \"landmark-alt\",\n    \"landmark\",\n    \"language\",\n    \"laptop-code\",\n    \"laptop-house\",\n    \"laptop-medical\",\n    \"laptop\",\n    \"lasso\",\n    \"laugh-beam\",\n    \"laugh-squint\",\n    \"laugh-wink\",\n    \"laugh\",\n    \"layer-group\",\n    \"layer-minus\",\n    \"layer-plus\",\n    \"leaf-heart\",\n    \"leaf-maple\",\n    \"leaf-oak\",\n    \"leaf\",\n    \"lemon\",\n    \"less-than-equal\",\n    \"less-than\",\n    \"level-down-alt\",\n    \"level-down\",\n    \"level-up-alt\",\n    \"level-up\",\n    \"life-ring\",\n    \"light-ceiling\",\n    \"light-switch-off\",\n    \"light-switch-on\",\n    \"light-switch\",\n    \"lightbulb-dollar\",\n    \"lightbulb-exclamation\",\n    \"lightbulb-on\",\n    \"lightbulb-slash\",\n    \"lightbulb\",\n    \"lights-holiday\",\n    \"line-columns\",\n    \"line-height\",\n    \"link\",\n    \"lips\",\n    \"lira-sign\",\n    \"list-alt\",\n    \"list-music\",\n    \"list-ol\",\n    \"list-ul\",\n    \"list\",\n    \"location-arrow\",\n    \"location-circle\",\n    \"location-slash\",\n    \"location\",\n    \"lock-alt\",\n    \"lock-open-alt\",\n    \"lock-open\",\n    \"lock\",\n    \"long-arrow-alt-down\",\n    \"long-arrow-alt-left\",\n    \"long-arrow-alt-right\",\n    \"long-arrow-alt-up\",\n    \"long-arrow-down\",\n    \"long-arrow-left\",\n    \"long-arrow-right\",\n    \"long-arrow-up\",\n    \"loveseat\",\n    \"low-vision\",\n    \"luchador\",\n    \"luggage-cart\",\n    \"lungs-virus\",\n    \"lungs\",\n    \"mace\",\n    \"magic\",\n    \"magnet\",\n    \"mail-bulk\",\n    \"mailbox\",\n    \"male\",\n    \"mandolin\",\n    \"map-marked-alt\",\n    \"map-marked\",\n    \"map-marker-alt-slash\",\n    \"map-marker-alt\",\n    \"map-marker-check\",\n    \"map-marker-edit\",\n    \"map-marker-exclamation\",\n    \"map-marker-minus\",\n    \"map-marker-plus\",\n    \"map-marker-question\",\n    \"map-marker-slash\",\n    \"map-marker-smile\",\n    \"map-marker-times\",\n    \"map-marker\",\n    \"map-pin\",\n    \"map-signs\",\n    \"map\",\n    \"marker\",\n    \"mars-double\",\n    \"mars-stroke-h\",\n    \"mars-stroke-v\",\n    \"mars-stroke\",\n    \"mars\",\n    \"mask\",\n    \"meat\",\n    \"medal\",\n    \"medkit\",\n    \"megaphone\",\n    \"meh-blank\",\n    \"meh-rolling-eyes\",\n    \"meh\",\n    \"memory\",\n    \"menorah\",\n    \"mercury\",\n    \"meteor\",\n    \"microchip\",\n    \"microphone-alt-slash\",\n    \"microphone-alt\",\n    \"microphone-slash\",\n    \"microphone-stand\",\n    \"microphone\",\n    \"microscope\",\n    \"microwave\",\n    \"mind-share\",\n    \"minus-circle\",\n    \"minus-hexagon\",\n    \"minus-octagon\",\n    \"minus-square\",\n    \"minus\",\n    \"mistletoe\",\n    \"mitten\",\n    \"mobile-alt\",\n    \"mobile-android-alt\",\n    \"mobile-android\",\n    \"mobile\",\n    \"money-bill-alt\",\n    \"money-bill-wave-alt\",\n    \"money-bill-wave\",\n    \"money-bill\",\n    \"money-check-alt\",\n    \"money-check-edit-alt\",\n    \"money-check-edit\",\n    \"money-check\",\n    \"monitor-heart-rate\",\n    \"monkey\",\n    \"monument\",\n    \"moon-cloud\",\n    \"moon-stars\",\n    \"moon\",\n    \"mortar-pestle\",\n    \"mosque\",\n    \"motorcycle\",\n    \"mountain\",\n    \"mountains\",\n    \"mouse-alt\",\n    \"mouse-pointer\",\n    \"mouse\",\n    \"mp3-player\",\n    \"mug-hot\",\n    \"mug-marshmallows\",\n    \"mug-tea\",\n    \"mug\",\n    \"music-alt-slash\",\n    \"music-alt\",\n    \"music-slash\",\n    \"music\",\n    \"narwhal\",\n    \"network-wired\",\n    \"neuter\",\n    \"newspaper\",\n    \"not-equal\",\n    \"notes-medical\",\n    \"object-group\",\n    \"object-ungroup\",\n    \"octagon\",\n    \"oil-can\",\n    \"oil-temp\",\n    \"om\",\n    \"omega\",\n    \"ornament\",\n    \"otter\",\n    \"outdent\",\n    \"outlet\",\n    \"oven\",\n    \"overline\",\n    \"page-break\",\n    \"pager\",\n    \"paint-brush-alt\",\n    \"paint-brush\",\n    \"paint-roller\",\n    \"palette\",\n    \"pallet-alt\",\n    \"pallet\",\n    \"paper-plane\",\n    \"paperclip\",\n    \"parachute-box\",\n    \"paragraph-rtl\",\n    \"paragraph\",\n    \"parking-circle-slash\",\n    \"parking-circle\",\n    \"parking-slash\",\n    \"parking\",\n    \"passport\",\n    \"pastafarianism\",\n    \"paste\",\n    \"pause-circle\",\n    \"pause\",\n    \"paw-alt\",\n    \"paw-claws\",\n    \"paw\",\n    \"peace\",\n    \"pegasus\",\n    \"pen-alt\",\n    \"pen-fancy\",\n    \"pen-nib\",\n    \"pen-square\",\n    \"pen\",\n    \"pencil-alt\",\n    \"pencil-paintbrush\",\n    \"pencil-ruler\",\n    \"pencil\",\n    \"pennant\",\n    \"people-arrows\",\n    \"people-carry\",\n    \"pepper-hot\",\n    \"percent\",\n    \"percentage\",\n    \"person-booth\",\n    \"person-carry\",\n    \"person-dolly-empty\",\n    \"person-dolly\",\n    \"person-sign\",\n    \"phone-alt\",\n    \"phone-laptop\",\n    \"phone-office\",\n    \"phone-plus\",\n    \"phone-rotary\",\n    \"phone-slash\",\n    \"phone-square-alt\",\n    \"phone-square\",\n    \"phone-volume\",\n    \"phone\",\n    \"photo-video\",\n    \"pi\",\n    \"piano-keyboard\",\n    \"piano\",\n    \"pie\",\n    \"pig\",\n    \"piggy-bank\",\n    \"pills\",\n    \"pizza-slice\",\n    \"pizza\",\n    \"place-of-worship\",\n    \"plane-alt\",\n    \"plane-arrival\",\n    \"plane-departure\",\n    \"plane-slash\",\n    \"plane\",\n    \"planet-moon\",\n    \"planet-ringed\",\n    \"play-circle\",\n    \"play\",\n    \"plug\",\n    \"plus-circle\",\n    \"plus-hexagon\",\n    \"plus-octagon\",\n    \"plus-square\",\n    \"plus\",\n    \"podcast\",\n    \"podium-star\",\n    \"podium\",\n    \"police-box\",\n    \"poll-h\",\n    \"poll-people\",\n    \"poll\",\n    \"poo-storm\",\n    \"poo\",\n    \"poop\",\n    \"popcorn\",\n    \"portal-enter\",\n    \"portal-exit\",\n    \"portrait\",\n    \"pound-sign\",\n    \"power-off\",\n    \"pray\",\n    \"praying-hands\",\n    \"prescription-bottle-alt\",\n    \"prescription-bottle\",\n    \"prescription\",\n    \"presentation\",\n    \"print-search\",\n    \"print-slash\",\n    \"print\",\n    \"procedures\",\n    \"project-diagram\",\n    \"projector\",\n    \"pump-medical\",\n    \"pump-soap\",\n    \"pumpkin\",\n    \"puzzle-piece\",\n    \"qrcode\",\n    \"question-circle\",\n    \"question-square\",\n    \"question\",\n    \"quidditch\",\n    \"quote-left\",\n    \"quote-right\",\n    \"quran\",\n    \"rabbit-fast\",\n    \"rabbit\",\n    \"racquet\",\n    \"radar\",\n    \"radiation-alt\",\n    \"radiation\",\n    \"radio-alt\",\n    \"radio\",\n    \"rainbow\",\n    \"raindrops\",\n    \"ram\",\n    \"ramp-loading\",\n    \"random\",\n    \"raygun\",\n    \"receipt\",\n    \"record-vinyl\",\n    \"rectangle-landscape\",\n    \"rectangle-portrait\",\n    \"rectangle-wide\",\n    \"recycle\",\n    \"redo-alt\",\n    \"redo\",\n    \"refrigerator\",\n    \"registered\",\n    \"remove-format\",\n    \"repeat-1-alt\",\n    \"repeat-1\",\n    \"repeat-alt\",\n    \"repeat\",\n    \"reply-all\",\n    \"reply\",\n    \"republican\",\n    \"restroom\",\n    \"retweet-alt\",\n    \"retweet\",\n    \"ribbon\",\n    \"ring\",\n    \"rings-wedding\",\n    \"road\",\n    \"robot\",\n    \"rocket-launch\",\n    \"rocket\",\n    \"route-highway\",\n    \"route-interstate\",\n    \"route\",\n    \"router\",\n    \"rss-square\",\n    \"rss\",\n    \"ruble-sign\",\n    \"ruler-combined\",\n    \"ruler-horizontal\",\n    \"ruler-triangle\",\n    \"ruler-vertical\",\n    \"ruler\",\n    \"running\",\n    \"rupee-sign\",\n    \"rv\",\n    \"sack-dollar\",\n    \"sack\",\n    \"sad-cry\",\n    \"sad-tear\",\n    \"salad\",\n    \"sandwich\",\n    \"satellite-dish\",\n    \"satellite\",\n    \"sausage\",\n    \"save\",\n    \"sax-hot\",\n    \"saxophone\",\n    \"scalpel-path\",\n    \"scalpel\",\n    \"scanner-image\",\n    \"scanner-keyboard\",\n    \"scanner-touchscreen\",\n    \"scanner\",\n    \"scarecrow\",\n    \"scarf\",\n    \"school\",\n    \"screwdriver\",\n    \"scroll-old\",\n    \"scroll\",\n    \"scrubber\",\n    \"scythe\",\n    \"sd-card\",\n    \"search-dollar\",\n    \"search-location\",\n    \"search-minus\",\n    \"search-plus\",\n    \"search\",\n    \"seedling\",\n    \"send-back\",\n    \"send-backward\",\n    \"sensor-alert\",\n    \"sensor-fire\",\n    \"sensor-on\",\n    \"sensor-smoke\",\n    \"sensor\",\n    \"server\",\n    \"shapes\",\n    \"share-all\",\n    \"share-alt-square\",\n    \"share-alt\",\n    \"share-square\",\n    \"share\",\n    \"sheep\",\n    \"shekel-sign\",\n    \"shield-alt\",\n    \"shield-check\",\n    \"shield-cross\",\n    \"shield-virus\",\n    \"shield\",\n    \"ship\",\n    \"shipping-fast\",\n    \"shipping-timed\",\n    \"shish-kebab\",\n    \"shoe-prints\",\n    \"shopping-bag\",\n    \"shopping-basket\",\n    \"shopping-cart\",\n    \"shovel-snow\",\n    \"shovel\",\n    \"shower\",\n    \"shredder\",\n    \"shuttle-van\",\n    \"shuttlecock\",\n    \"sickle\",\n    \"sigma\",\n    \"sign-in-alt\",\n    \"sign-in\",\n    \"sign-language\",\n    \"sign-out-alt\",\n    \"sign-out\",\n    \"sign\",\n    \"signal-1\",\n    \"signal-2\",\n    \"signal-3\",\n    \"signal-4\",\n    \"signal-alt-1\",\n    \"signal-alt-2\",\n    \"signal-alt-3\",\n    \"signal-alt-slash\",\n    \"signal-alt\",\n    \"signal-slash\",\n    \"signal-stream\",\n    \"signal\",\n    \"signature\",\n    \"sim-card\",\n    \"sink\",\n    \"siren-on\",\n    \"siren\",\n    \"sitemap\",\n    \"skating\",\n    \"skeleton\",\n    \"ski-jump\",\n    \"ski-lift\",\n    \"skiing-nordic\",\n    \"skiing\",\n    \"skull-cow\",\n    \"skull-crossbones\",\n    \"skull\",\n    \"slash\",\n    \"sledding\",\n    \"sleigh\",\n    \"sliders-h-square\",\n    \"sliders-h\",\n    \"sliders-v-square\",\n    \"sliders-v\",\n    \"smile-beam\",\n    \"smile-plus\",\n    \"smile-wink\",\n    \"smile\",\n    \"smog\",\n    \"smoke\",\n    \"smoking-ban\",\n    \"smoking\",\n    \"sms\",\n    \"snake\",\n    \"snooze\",\n    \"snow-blowing\",\n    \"snowboarding\",\n    \"snowflake\",\n    \"snowflakes\",\n    \"snowman\",\n    \"snowmobile\",\n    \"snowplow\",\n    \"soap\",\n    \"socks\",\n    \"solar-panel\",\n    \"solar-system\",\n    \"sort-alpha-down-alt\",\n    \"sort-alpha-down\",\n    \"sort-alpha-up-alt\",\n    \"sort-alpha-up\",\n    \"sort-alt\",\n    \"sort-amount-down-alt\",\n    \"sort-amount-down\",\n    \"sort-amount-up-alt\",\n    \"sort-amount-up\",\n    \"sort-circle-down\",\n    \"sort-circle-up\",\n    \"sort-circle\",\n    \"sort-down\",\n    \"sort-numeric-down-alt\",\n    \"sort-numeric-down\",\n    \"sort-numeric-up-alt\",\n    \"sort-numeric-up\",\n    \"sort-shapes-down-alt\",\n    \"sort-shapes-down\",\n    \"sort-shapes-up-alt\",\n    \"sort-shapes-up\",\n    \"sort-size-down-alt\",\n    \"sort-size-down\",\n    \"sort-size-up-alt\",\n    \"sort-size-up\",\n    \"sort-up\",\n    \"sort\",\n    \"soup\",\n    \"spa\",\n    \"space-shuttle\",\n    \"space-station-moon-alt\",\n    \"space-station-moon\",\n    \"spade\",\n    \"sparkles\",\n    \"speaker\",\n    \"speakers\",\n    \"spell-check\",\n    \"spider-black-widow\",\n    \"spider-web\",\n    \"spider\",\n    \"spinner-third\",\n    \"spinner\",\n    \"splotch\",\n    \"spray-can\",\n    \"sprinkler\",\n    \"square-full\",\n    \"square-root-alt\",\n    \"square-root\",\n    \"square\",\n    \"squirrel\",\n    \"staff\",\n    \"stamp\",\n    \"star-and-crescent\",\n    \"star-christmas\",\n    \"star-exclamation\",\n    \"star-half-alt\",\n    \"star-half\",\n    \"star-of-david\",\n    \"star-of-life\",\n    \"star-shooting\",\n    \"star\",\n    \"starfighter-alt\",\n    \"starfighter\",\n    \"stars\",\n    \"starship-freighter\",\n    \"starship\",\n    \"steak\",\n    \"steering-wheel\",\n    \"step-backward\",\n    \"step-forward\",\n    \"stethoscope\",\n    \"sticky-note\",\n    \"stocking\",\n    \"stomach\",\n    \"stop-circle\",\n    \"stop\",\n    \"stopwatch-20\",\n    \"stopwatch\",\n    \"store-alt-slash\",\n    \"store-alt\",\n    \"store-slash\",\n    \"store\",\n    \"stream\",\n    \"street-view\",\n    \"stretcher\",\n    \"strikethrough\",\n    \"stroopwafel\",\n    \"subscript\",\n    \"subway\",\n    \"suitcase-rolling\",\n    \"suitcase\",\n    \"sun-cloud\",\n    \"sun-dust\",\n    \"sun-haze\",\n    \"sun\",\n    \"sunglasses\",\n    \"sunrise\",\n    \"sunset\",\n    \"superscript\",\n    \"surprise\",\n    \"swatchbook\",\n    \"swimmer\",\n    \"swimming-pool\",\n    \"sword-laser-alt\",\n    \"sword-laser\",\n    \"sword\",\n    \"swords-laser\",\n    \"swords\",\n    \"synagogue\",\n    \"sync-alt\",\n    \"sync\",\n    \"syringe\",\n    \"table-tennis\",\n    \"table\",\n    \"tablet-alt\",\n    \"tablet-android-alt\",\n    \"tablet-android\",\n    \"tablet-rugged\",\n    \"tablet\",\n    \"tablets\",\n    \"tachometer-alt-average\",\n    \"tachometer-alt-fast\",\n    \"tachometer-alt-fastest\",\n    \"tachometer-alt-slow\",\n    \"tachometer-alt-slowest\",\n    \"tachometer-alt\",\n    \"tachometer-average\",\n    \"tachometer-fast\",\n    \"tachometer-fastest\",\n    \"tachometer-slow\",\n    \"tachometer-slowest\",\n    \"tachometer\",\n    \"taco\",\n    \"tag\",\n    \"tags\",\n    \"tally\",\n    \"tanakh\",\n    \"tape\",\n    \"tasks-alt\",\n    \"tasks\",\n    \"taxi\",\n    \"teeth-open\",\n    \"teeth\",\n    \"telescope\",\n    \"temperature-down\",\n    \"temperature-frigid\",\n    \"temperature-high\",\n    \"temperature-hot\",\n    \"temperature-low\",\n    \"temperature-up\",\n    \"tenge\",\n    \"tennis-ball\",\n    \"terminal\",\n    \"text-height\",\n    \"text-size\",\n    \"text-width\",\n    \"text\",\n    \"th-large\",\n    \"th-list\",\n    \"th\",\n    \"theater-masks\",\n    \"thermometer-empty\",\n    \"thermometer-full\",\n    \"thermometer-half\",\n    \"thermometer-quarter\",\n    \"thermometer-three-quarters\",\n    \"thermometer\",\n    \"theta\",\n    \"thumbs-down\",\n    \"thumbs-up\",\n    \"thumbtack\",\n    \"thunderstorm-moon\",\n    \"thunderstorm-sun\",\n    \"thunderstorm\",\n    \"ticket-alt\",\n    \"ticket\",\n    \"tilde\",\n    \"times-circle\",\n    \"times-hexagon\",\n    \"times-octagon\",\n    \"times-square\",\n    \"times\",\n    \"tint-slash\",\n    \"tint\",\n    \"tire-flat\",\n    \"tire-pressure-warning\",\n    \"tire-rugged\",\n    \"tire\",\n    \"tired\",\n    \"toggle-off\",\n    \"toggle-on\",\n    \"toilet-paper-alt\",\n    \"toilet-paper-slash\",\n    \"toilet-paper\",\n    \"toilet\",\n    \"tombstone-alt\",\n    \"tombstone\",\n    \"toolbox\",\n    \"tools\",\n    \"tooth\",\n    \"toothbrush\",\n    \"torah\",\n    \"torii-gate\",\n    \"tornado\",\n    \"tractor\",\n    \"trademark\",\n    \"traffic-cone\",\n    \"traffic-light-go\",\n    \"traffic-light-slow\",\n    \"traffic-light-stop\",\n    \"traffic-light\",\n    \"trailer\",\n    \"train\",\n    \"tram\",\n    \"transgender-alt\",\n    \"transgender\",\n    \"transporter-1\",\n    \"transporter-2\",\n    \"transporter-3\",\n    \"transporter-empty\",\n    \"transporter\",\n    \"trash-alt\",\n    \"trash-restore-alt\",\n    \"trash-restore\",\n    \"trash-undo-alt\",\n    \"trash-undo\",\n    \"trash\",\n    \"treasure-chest\",\n    \"tree-alt\",\n    \"tree-christmas\",\n    \"tree-decorated\",\n    \"tree-large\",\n    \"tree-palm\",\n    \"tree\",\n    \"trees\",\n    \"triangle-music\",\n    \"triangle\",\n    \"trophy-alt\",\n    \"trophy\",\n    \"truck-container\",\n    \"truck-couch\",\n    \"truck-loading\",\n    \"truck-monster\",\n    \"truck-moving\",\n    \"truck-pickup\",\n    \"truck-plow\",\n    \"truck-ramp\",\n    \"truck\",\n    \"trumpet\",\n    \"tshirt\",\n    \"tty\",\n    \"turkey\",\n    \"turntable\",\n    \"turtle\",\n    \"tv-alt\",\n    \"tv-music\",\n    \"tv-retro\",\n    \"tv\",\n    \"typewriter\",\n    \"ufo-beam\",\n    \"ufo\",\n    \"umbrella-beach\",\n    \"umbrella\",\n    \"underline\",\n    \"undo-alt\",\n    \"undo\",\n    \"unicorn\",\n    \"union\",\n    \"universal-access\",\n    \"university\",\n    \"unlink\",\n    \"unlock-alt\",\n    \"unlock\",\n    \"upload\",\n    \"usb-drive\",\n    \"usd-circle\",\n    \"usd-square\",\n    \"user-alien\",\n    \"user-alt-slash\",\n    \"user-alt\",\n    \"user-astronaut\",\n    \"user-chart\",\n    \"user-check\",\n    \"user-circle\",\n    \"user-clock\",\n    \"user-cog\",\n    \"user-cowboy\",\n    \"user-crown\",\n    \"user-edit\",\n    \"user-friends\",\n    \"user-graduate\",\n    \"user-hard-hat\",\n    \"user-headset\",\n    \"user-injured\",\n    \"user-lock\",\n    \"user-md-chat\",\n    \"user-md\",\n    \"user-minus\",\n    \"user-music\",\n    \"user-ninja\",\n    \"user-nurse\",\n    \"user-plus\",\n    \"user-robot\",\n    \"user-secret\",\n    \"user-shield\",\n    \"user-slash\",\n    \"user-tag\",\n    \"user-tie\",\n    \"user-times\",\n    \"user-unlock\",\n    \"user-visor\",\n    \"user\",\n    \"users-class\",\n    \"users-cog\",\n    \"users-crown\",\n    \"users-medical\",\n    \"users-slash\",\n    \"users\",\n    \"utensil-fork\",\n    \"utensil-knife\",\n    \"utensil-spoon\",\n    \"utensils-alt\",\n    \"utensils\",\n    \"vacuum-robot\",\n    \"vacuum\",\n    \"value-absolute\",\n    \"vector-square\",\n    \"venus-double\",\n    \"venus-mars\",\n    \"venus\",\n    \"vest-patches\",\n    \"vest\",\n    \"vhs\",\n    \"vial\",\n    \"vials\",\n    \"video-plus\",\n    \"video-slash\",\n    \"video\",\n    \"vihara\",\n    \"violin\",\n    \"virus-slash\",\n    \"virus\",\n    \"viruses\",\n    \"voicemail\",\n    \"volcano\",\n    \"volleyball-ball\",\n    \"volume-down\",\n    \"volume-mute\",\n    \"volume-off\",\n    \"volume-slash\",\n    \"volume-up\",\n    \"volume\",\n    \"vote-nay\",\n    \"vote-yea\",\n    \"vr-cardboard\",\n    \"wagon-covered\",\n    \"walker\",\n    \"walkie-talkie\",\n    \"walking\",\n    \"wallet\",\n    \"wand-magic\",\n    \"wand\",\n    \"warehouse-alt\",\n    \"warehouse\",\n    \"washer\",\n    \"watch-calculator\",\n    \"watch-fitness\",\n    \"watch\",\n    \"water-lower\",\n    \"water-rise\",\n    \"water\",\n    \"wave-sine\",\n    \"wave-square\",\n    \"wave-triangle\",\n    \"waveform-path\",\n    \"waveform\",\n    \"webcam-slash\",\n    \"webcam\",\n    \"weight-hanging\",\n    \"weight\",\n    \"whale\",\n    \"wheat\",\n    \"wheelchair\",\n    \"whistle\",\n    \"wifi-1\",\n    \"wifi-2\",\n    \"wifi-slash\",\n    \"wifi\",\n    \"wind-turbine\",\n    \"wind-warning\",\n    \"wind\",\n    \"window-alt\",\n    \"window-close\",\n    \"window-frame-open\",\n    \"window-frame\",\n    \"window-maximize\",\n    \"window-minimize\",\n    \"window-restore\",\n    \"window\",\n    \"windsock\",\n    \"wine-bottle\",\n    \"wine-glass-alt\",\n    \"wine-glass\",\n    \"won-sign\",\n    \"wreath\",\n    \"wrench\",\n    \"x-ray\",\n    \"yen-sign\",\n    \"yin-yang\"\n  ],\n  \"light\": [\n    \"abacus\",\n    \"acorn\",\n    \"ad\",\n    \"address-book\",\n    \"address-card\",\n    \"adjust\",\n    \"air-conditioner\",\n    \"air-freshener\",\n    \"alarm-clock\",\n    \"alarm-exclamation\",\n    \"alarm-plus\",\n    \"alarm-snooze\",\n    \"album-collection\",\n    \"album\",\n    \"alicorn\",\n    \"alien-monster\",\n    \"alien\",\n    \"align-center\",\n    \"align-justify\",\n    \"align-left\",\n    \"align-right\",\n    \"align-slash\",\n    \"allergies\",\n    \"ambulance\",\n    \"american-sign-language-interpreting\",\n    \"amp-guitar\",\n    \"analytics\",\n    \"anchor\",\n    \"angel\",\n    \"angle-double-down\",\n    \"angle-double-left\",\n    \"angle-double-right\",\n    \"angle-double-up\",\n    \"angle-down\",\n    \"angle-left\",\n    \"angle-right\",\n    \"angle-up\",\n    \"angry\",\n    \"ankh\",\n    \"apple-alt\",\n    \"apple-crate\",\n    \"archive\",\n    \"archway\",\n    \"arrow-alt-circle-down\",\n    \"arrow-alt-circle-left\",\n    \"arrow-alt-circle-right\",\n    \"arrow-alt-circle-up\",\n    \"arrow-alt-down\",\n    \"arrow-alt-from-bottom\",\n    \"arrow-alt-from-left\",\n    \"arrow-alt-from-right\",\n    \"arrow-alt-from-top\",\n    \"arrow-alt-left\",\n    \"arrow-alt-right\",\n    \"arrow-alt-square-down\",\n    \"arrow-alt-square-left\",\n    \"arrow-alt-square-right\",\n    \"arrow-alt-square-up\",\n    \"arrow-alt-to-bottom\",\n    \"arrow-alt-to-left\",\n    \"arrow-alt-to-right\",\n    \"arrow-alt-to-top\",\n    \"arrow-alt-up\",\n    \"arrow-circle-down\",\n    \"arrow-circle-left\",\n    \"arrow-circle-right\",\n    \"arrow-circle-up\",\n    \"arrow-down\",\n    \"arrow-from-bottom\",\n    \"arrow-from-left\",\n    \"arrow-from-right\",\n    \"arrow-from-top\",\n    \"arrow-left\",\n    \"arrow-right\",\n    \"arrow-square-down\",\n    \"arrow-square-left\",\n    \"arrow-square-right\",\n    \"arrow-square-up\",\n    \"arrow-to-bottom\",\n    \"arrow-to-left\",\n    \"arrow-to-right\",\n    \"arrow-to-top\",\n    \"arrow-up\",\n    \"arrows-alt-h\",\n    \"arrows-alt-v\",\n    \"arrows-alt\",\n    \"arrows-h\",\n    \"arrows-v\",\n    \"arrows\",\n    \"assistive-listening-systems\",\n    \"asterisk\",\n    \"at\",\n    \"atlas\",\n    \"atom-alt\",\n    \"atom\",\n    \"audio-description\",\n    \"award\",\n    \"axe-battle\",\n    \"axe\",\n    \"baby-carriage\",\n    \"baby\",\n    \"backpack\",\n    \"backspace\",\n    \"backward\",\n    \"bacon\",\n    \"bacteria\",\n    \"bacterium\",\n    \"badge-check\",\n    \"badge-dollar\",\n    \"badge-percent\",\n    \"badge-sheriff\",\n    \"badge\",\n    \"badger-honey\",\n    \"bags-shopping\",\n    \"bahai\",\n    \"balance-scale-left\",\n    \"balance-scale-right\",\n    \"balance-scale\",\n    \"ball-pile\",\n    \"ballot-check\",\n    \"ballot\",\n    \"ban\",\n    \"band-aid\",\n    \"banjo\",\n    \"barcode-alt\",\n    \"barcode-read\",\n    \"barcode-scan\",\n    \"barcode\",\n    \"bars\",\n    \"baseball-ball\",\n    \"baseball\",\n    \"basketball-ball\",\n    \"basketball-hoop\",\n    \"bat\",\n    \"bath\",\n    \"battery-bolt\",\n    \"battery-empty\",\n    \"battery-full\",\n    \"battery-half\",\n    \"battery-quarter\",\n    \"battery-slash\",\n    \"battery-three-quarters\",\n    \"bed-alt\",\n    \"bed-bunk\",\n    \"bed-empty\",\n    \"bed\",\n    \"beer\",\n    \"bell-exclamation\",\n    \"bell-on\",\n    \"bell-plus\",\n    \"bell-school-slash\",\n    \"bell-school\",\n    \"bell-slash\",\n    \"bell\",\n    \"bells\",\n    \"betamax\",\n    \"bezier-curve\",\n    \"bible\",\n    \"bicycle\",\n    \"biking-mountain\",\n    \"biking\",\n    \"binoculars\",\n    \"biohazard\",\n    \"birthday-cake\",\n    \"blanket\",\n    \"blender-phone\",\n    \"blender\",\n    \"blind\",\n    \"blinds-open\",\n    \"blinds-raised\",\n    \"blinds\",\n    \"blog\",\n    \"bold\",\n    \"bolt\",\n    \"bomb\",\n    \"bone-break\",\n    \"bone\",\n    \"bong\",\n    \"book-alt\",\n    \"book-dead\",\n    \"book-heart\",\n    \"book-medical\",\n    \"book-open\",\n    \"book-reader\",\n    \"book-spells\",\n    \"book-user\",\n    \"book\",\n    \"bookmark\",\n    \"books-medical\",\n    \"books\",\n    \"boombox\",\n    \"boot\",\n    \"booth-curtain\",\n    \"border-all\",\n    \"border-bottom\",\n    \"border-center-h\",\n    \"border-center-v\",\n    \"border-inner\",\n    \"border-left\",\n    \"border-none\",\n    \"border-outer\",\n    \"border-right\",\n    \"border-style-alt\",\n    \"border-style\",\n    \"border-top\",\n    \"bow-arrow\",\n    \"bowling-ball\",\n    \"bowling-pins\",\n    \"box-alt\",\n    \"box-ballot\",\n    \"box-check\",\n    \"box-fragile\",\n    \"box-full\",\n    \"box-heart\",\n    \"box-open\",\n    \"box-tissue\",\n    \"box-up\",\n    \"box-usd\",\n    \"box\",\n    \"boxes-alt\",\n    \"boxes\",\n    \"boxing-glove\",\n    \"brackets-curly\",\n    \"brackets\",\n    \"braille\",\n    \"brain\",\n    \"bread-loaf\",\n    \"bread-slice\",\n    \"briefcase-medical\",\n    \"briefcase\",\n    \"bring-forward\",\n    \"bring-front\",\n    \"broadcast-tower\",\n    \"broom\",\n    \"browser\",\n    \"brush\",\n    \"bug\",\n    \"building\",\n    \"bullhorn\",\n    \"bullseye-arrow\",\n    \"bullseye-pointer\",\n    \"bullseye\",\n    \"burger-soda\",\n    \"burn\",\n    \"burrito\",\n    \"bus-alt\",\n    \"bus-school\",\n    \"bus\",\n    \"business-time\",\n    \"cabinet-filing\",\n    \"cactus\",\n    \"calculator-alt\",\n    \"calculator\",\n    \"calendar-alt\",\n    \"calendar-check\",\n    \"calendar-day\",\n    \"calendar-edit\",\n    \"calendar-exclamation\",\n    \"calendar-minus\",\n    \"calendar-plus\",\n    \"calendar-star\",\n    \"calendar-times\",\n    \"calendar-week\",\n    \"calendar\",\n    \"camcorder\",\n    \"camera-alt\",\n    \"camera-home\",\n    \"camera-movie\",\n    \"camera-polaroid\",\n    \"camera-retro\",\n    \"camera\",\n    \"campfire\",\n    \"campground\",\n    \"candle-holder\",\n    \"candy-cane\",\n    \"candy-corn\",\n    \"cannabis\",\n    \"capsules\",\n    \"car-alt\",\n    \"car-battery\",\n    \"car-building\",\n    \"car-bump\",\n    \"car-bus\",\n    \"car-crash\",\n    \"car-garage\",\n    \"car-mechanic\",\n    \"car-side\",\n    \"car-tilt\",\n    \"car-wash\",\n    \"car\",\n    \"caravan-alt\",\n    \"caravan\",\n    \"caret-circle-down\",\n    \"caret-circle-left\",\n    \"caret-circle-right\",\n    \"caret-circle-up\",\n    \"caret-down\",\n    \"caret-left\",\n    \"caret-right\",\n    \"caret-square-down\",\n    \"caret-square-left\",\n    \"caret-square-right\",\n    \"caret-square-up\",\n    \"caret-up\",\n    \"carrot\",\n    \"cars\",\n    \"cart-arrow-down\",\n    \"cart-plus\",\n    \"cash-register\",\n    \"cassette-tape\",\n    \"cat-space\",\n    \"cat\",\n    \"cauldron\",\n    \"cctv\",\n    \"certificate\",\n    \"chair-office\",\n    \"chair\",\n    \"chalkboard-teacher\",\n    \"chalkboard\",\n    \"charging-station\",\n    \"chart-area\",\n    \"chart-bar\",\n    \"chart-line-down\",\n    \"chart-line\",\n    \"chart-network\",\n    \"chart-pie-alt\",\n    \"chart-pie\",\n    \"chart-scatter\",\n    \"check-circle\",\n    \"check-double\",\n    \"check-square\",\n    \"check\",\n    \"cheese-swiss\",\n    \"cheese\",\n    \"cheeseburger\",\n    \"chess-bishop-alt\",\n    \"chess-bishop\",\n    \"chess-board\",\n    \"chess-clock-alt\",\n    \"chess-clock\",\n    \"chess-king-alt\",\n    \"chess-king\",\n    \"chess-knight-alt\",\n    \"chess-knight\",\n    \"chess-pawn-alt\",\n    \"chess-pawn\",\n    \"chess-queen-alt\",\n    \"chess-queen\",\n    \"chess-rook-alt\",\n    \"chess-rook\",\n    \"chess\",\n    \"chevron-circle-down\",\n    \"chevron-circle-left\",\n    \"chevron-circle-right\",\n    \"chevron-circle-up\",\n    \"chevron-double-down\",\n    \"chevron-double-left\",\n    \"chevron-double-right\",\n    \"chevron-double-up\",\n    \"chevron-down\",\n    \"chevron-left\",\n    \"chevron-right\",\n    \"chevron-square-down\",\n    \"chevron-square-left\",\n    \"chevron-square-right\",\n    \"chevron-square-up\",\n    \"chevron-up\",\n    \"child\",\n    \"chimney\",\n    \"church\",\n    \"circle-notch\",\n    \"circle\",\n    \"city\",\n    \"clarinet\",\n    \"claw-marks\",\n    \"clinic-medical\",\n    \"clipboard-check\",\n    \"clipboard-list-check\",\n    \"clipboard-list\",\n    \"clipboard-prescription\",\n    \"clipboard-user\",\n    \"clipboard\",\n    \"clock\",\n    \"clone\",\n    \"closed-captioning\",\n    \"cloud-download-alt\",\n    \"cloud-download\",\n    \"cloud-drizzle\",\n    \"cloud-hail-mixed\",\n    \"cloud-hail\",\n    \"cloud-meatball\",\n    \"cloud-moon-rain\",\n    \"cloud-moon\",\n    \"cloud-music\",\n    \"cloud-rain\",\n    \"cloud-rainbow\",\n    \"cloud-showers-heavy\",\n    \"cloud-showers\",\n    \"cloud-sleet\",\n    \"cloud-snow\",\n    \"cloud-sun-rain\",\n    \"cloud-sun\",\n    \"cloud-upload-alt\",\n    \"cloud-upload\",\n    \"cloud\",\n    \"clouds-moon\",\n    \"clouds-sun\",\n    \"clouds\",\n    \"club\",\n    \"cocktail\",\n    \"code-branch\",\n    \"code-commit\",\n    \"code-merge\",\n    \"code\",\n    \"coffee-pot\",\n    \"coffee-togo\",\n    \"coffee\",\n    \"coffin-cross\",\n    \"coffin\",\n    \"cog\",\n    \"cogs\",\n    \"coin\",\n    \"coins\",\n    \"columns\",\n    \"comet\",\n    \"comment-alt-check\",\n    \"comment-alt-dollar\",\n    \"comment-alt-dots\",\n    \"comment-alt-edit\",\n    \"comment-alt-exclamation\",\n    \"comment-alt-lines\",\n    \"comment-alt-medical\",\n    \"comment-alt-minus\",\n    \"comment-alt-music\",\n    \"comment-alt-plus\",\n    \"comment-alt-slash\",\n    \"comment-alt-smile\",\n    \"comment-alt-times\",\n    \"comment-alt\",\n    \"comment-check\",\n    \"comment-dollar\",\n    \"comment-dots\",\n    \"comment-edit\",\n    \"comment-exclamation\",\n    \"comment-lines\",\n    \"comment-medical\",\n    \"comment-minus\",\n    \"comment-music\",\n    \"comment-plus\",\n    \"comment-slash\",\n    \"comment-smile\",\n    \"comment-times\",\n    \"comment\",\n    \"comments-alt-dollar\",\n    \"comments-alt\",\n    \"comments-dollar\",\n    \"comments\",\n    \"compact-disc\",\n    \"compass-slash\",\n    \"compass\",\n    \"compress-alt\",\n    \"compress-arrows-alt\",\n    \"compress-wide\",\n    \"compress\",\n    \"computer-classic\",\n    \"computer-speaker\",\n    \"concierge-bell\",\n    \"construction\",\n    \"container-storage\",\n    \"conveyor-belt-alt\",\n    \"conveyor-belt\",\n    \"cookie-bite\",\n    \"cookie\",\n    \"copy\",\n    \"copyright\",\n    \"corn\",\n    \"couch\",\n    \"cow\",\n    \"cowbell-more\",\n    \"cowbell\",\n    \"credit-card-blank\",\n    \"credit-card-front\",\n    \"credit-card\",\n    \"cricket\",\n    \"croissant\",\n    \"crop-alt\",\n    \"crop\",\n    \"cross\",\n    \"crosshairs\",\n    \"crow\",\n    \"crown\",\n    \"crutch\",\n    \"crutches\",\n    \"cube\",\n    \"cubes\",\n    \"curling\",\n    \"cut\",\n    \"dagger\",\n    \"database\",\n    \"deaf\",\n    \"debug\",\n    \"deer-rudolph\",\n    \"deer\",\n    \"democrat\",\n    \"desktop-alt\",\n    \"desktop\",\n    \"dewpoint\",\n    \"dharmachakra\",\n    \"diagnoses\",\n    \"diamond\",\n    \"dice-d10\",\n    \"dice-d12\",\n    \"dice-d20\",\n    \"dice-d4\",\n    \"dice-d6\",\n    \"dice-d8\",\n    \"dice-five\",\n    \"dice-four\",\n    \"dice-one\",\n    \"dice-six\",\n    \"dice-three\",\n    \"dice-two\",\n    \"dice\",\n    \"digging\",\n    \"digital-tachograph\",\n    \"diploma\",\n    \"directions\",\n    \"disc-drive\",\n    \"disease\",\n    \"divide\",\n    \"dizzy\",\n    \"dna\",\n    \"do-not-enter\",\n    \"dog-leashed\",\n    \"dog\",\n    \"dollar-sign\",\n    \"dolly-empty\",\n    \"dolly-flatbed-alt\",\n    \"dolly-flatbed-empty\",\n    \"dolly-flatbed\",\n    \"dolly\",\n    \"donate\",\n    \"door-closed\",\n    \"door-open\",\n    \"dot-circle\",\n    \"dove\",\n    \"download\",\n    \"drafting-compass\",\n    \"dragon\",\n    \"draw-circle\",\n    \"draw-polygon\",\n    \"draw-square\",\n    \"dreidel\",\n    \"drone-alt\",\n    \"drone\",\n    \"drum-steelpan\",\n    \"drum\",\n    \"drumstick-bite\",\n    \"drumstick\",\n    \"dryer-alt\",\n    \"dryer\",\n    \"duck\",\n    \"dumbbell\",\n    \"dumpster-fire\",\n    \"dumpster\",\n    \"dungeon\",\n    \"ear-muffs\",\n    \"ear\",\n    \"eclipse-alt\",\n    \"eclipse\",\n    \"edit\",\n    \"egg-fried\",\n    \"egg\",\n    \"eject\",\n    \"elephant\",\n    \"ellipsis-h-alt\",\n    \"ellipsis-h\",\n    \"ellipsis-v-alt\",\n    \"ellipsis-v\",\n    \"empty-set\",\n    \"engine-warning\",\n    \"envelope-open-dollar\",\n    \"envelope-open-text\",\n    \"envelope-open\",\n    \"envelope-square\",\n    \"envelope\",\n    \"equals\",\n    \"eraser\",\n    \"ethernet\",\n    \"euro-sign\",\n    \"exchange-alt\",\n    \"exchange\",\n    \"exclamation-circle\",\n    \"exclamation-square\",\n    \"exclamation-triangle\",\n    \"exclamation\",\n    \"expand-alt\",\n    \"expand-arrows-alt\",\n    \"expand-arrows\",\n    \"expand-wide\",\n    \"expand\",\n    \"external-link-alt\",\n    \"external-link-square-alt\",\n    \"external-link-square\",\n    \"external-link\",\n    \"eye-dropper\",\n    \"eye-evil\",\n    \"eye-slash\",\n    \"eye\",\n    \"fan-table\",\n    \"fan\",\n    \"farm\",\n    \"fast-backward\",\n    \"fast-forward\",\n    \"faucet-drip\",\n    \"faucet\",\n    \"fax\",\n    \"feather-alt\",\n    \"feather\",\n    \"female\",\n    \"field-hockey\",\n    \"fighter-jet\",\n    \"file-alt\",\n    \"file-archive\",\n    \"file-audio\",\n    \"file-certificate\",\n    \"file-chart-line\",\n    \"file-chart-pie\",\n    \"file-check\",\n    \"file-code\",\n    \"file-contract\",\n    \"file-csv\",\n    \"file-download\",\n    \"file-edit\",\n    \"file-excel\",\n    \"file-exclamation\",\n    \"file-export\",\n    \"file-image\",\n    \"file-import\",\n    \"file-invoice-dollar\",\n    \"file-invoice\",\n    \"file-medical-alt\",\n    \"file-medical\",\n    \"file-minus\",\n    \"file-music\",\n    \"file-pdf\",\n    \"file-plus\",\n    \"file-powerpoint\",\n    \"file-prescription\",\n    \"file-search\",\n    \"file-signature\",\n    \"file-spreadsheet\",\n    \"file-times\",\n    \"file-upload\",\n    \"file-user\",\n    \"file-video\",\n    \"file-word\",\n    \"file\",\n    \"files-medical\",\n    \"fill-drip\",\n    \"fill\",\n    \"film-alt\",\n    \"film-canister\",\n    \"film\",\n    \"filter\",\n    \"fingerprint\",\n    \"fire-alt\",\n    \"fire-extinguisher\",\n    \"fire-smoke\",\n    \"fire\",\n    \"fireplace\",\n    \"first-aid\",\n    \"fish-cooked\",\n    \"fish\",\n    \"fist-raised\",\n    \"flag-alt\",\n    \"flag-checkered\",\n    \"flag-usa\",\n    \"flag\",\n    \"flame\",\n    \"flashlight\",\n    \"flask-poison\",\n    \"flask-potion\",\n    \"flask\",\n    \"flower-daffodil\",\n    \"flower-tulip\",\n    \"flower\",\n    \"flushed\",\n    \"flute\",\n    \"flux-capacitor\",\n    \"fog\",\n    \"folder-download\",\n    \"folder-minus\",\n    \"folder-open\",\n    \"folder-plus\",\n    \"folder-times\",\n    \"folder-tree\",\n    \"folder-upload\",\n    \"folder\",\n    \"folders\",\n    \"font-awesome-logo-full\",\n    \"font-case\",\n    \"font\",\n    \"football-ball\",\n    \"football-helmet\",\n    \"forklift\",\n    \"forward\",\n    \"fragile\",\n    \"french-fries\",\n    \"frog\",\n    \"frosty-head\",\n    \"frown-open\",\n    \"frown\",\n    \"function\",\n    \"funnel-dollar\",\n    \"futbol\",\n    \"galaxy\",\n    \"game-board-alt\",\n    \"game-board\",\n    \"game-console-handheld\",\n    \"gamepad-alt\",\n    \"gamepad\",\n    \"garage-car\",\n    \"garage-open\",\n    \"garage\",\n    \"gas-pump-slash\",\n    \"gas-pump\",\n    \"gavel\",\n    \"gem\",\n    \"genderless\",\n    \"ghost\",\n    \"gift-card\",\n    \"gift\",\n    \"gifts\",\n    \"gingerbread-man\",\n    \"glass-champagne\",\n    \"glass-cheers\",\n    \"glass-citrus\",\n    \"glass-martini-alt\",\n    \"glass-martini\",\n    \"glass-whiskey-rocks\",\n    \"glass-whiskey\",\n    \"glass\",\n    \"glasses-alt\",\n    \"glasses\",\n    \"globe-africa\",\n    \"globe-americas\",\n    \"globe-asia\",\n    \"globe-europe\",\n    \"globe-snow\",\n    \"globe-stand\",\n    \"globe\",\n    \"golf-ball\",\n    \"golf-club\",\n    \"gopuram\",\n    \"graduation-cap\",\n    \"gramophone\",\n    \"greater-than-equal\",\n    \"greater-than\",\n    \"grimace\",\n    \"grin-alt\",\n    \"grin-beam-sweat\",\n    \"grin-beam\",\n    \"grin-hearts\",\n    \"grin-squint-tears\",\n    \"grin-squint\",\n    \"grin-stars\",\n    \"grin-tears\",\n    \"grin-tongue-squint\",\n    \"grin-tongue-wink\",\n    \"grin-tongue\",\n    \"grin-wink\",\n    \"grin\",\n    \"grip-horizontal\",\n    \"grip-lines-vertical\",\n    \"grip-lines\",\n    \"grip-vertical\",\n    \"guitar-electric\",\n    \"guitar\",\n    \"guitars\",\n    \"h-square\",\n    \"h1\",\n    \"h2\",\n    \"h3\",\n    \"h4\",\n    \"hamburger\",\n    \"hammer-war\",\n    \"hammer\",\n    \"hamsa\",\n    \"hand-heart\",\n    \"hand-holding-box\",\n    \"hand-holding-heart\",\n    \"hand-holding-magic\",\n    \"hand-holding-medical\",\n    \"hand-holding-seedling\",\n    \"hand-holding-usd\",\n    \"hand-holding-water\",\n    \"hand-holding\",\n    \"hand-lizard\",\n    \"hand-middle-finger\",\n    \"hand-paper\",\n    \"hand-peace\",\n    \"hand-point-down\",\n    \"hand-point-left\",\n    \"hand-point-right\",\n    \"hand-point-up\",\n    \"hand-pointer\",\n    \"hand-receiving\",\n    \"hand-rock\",\n    \"hand-scissors\",\n    \"hand-sparkles\",\n    \"hand-spock\",\n    \"hands-heart\",\n    \"hands-helping\",\n    \"hands-usd\",\n    \"hands-wash\",\n    \"hands\",\n    \"handshake-alt-slash\",\n    \"handshake-alt\",\n    \"handshake-slash\",\n    \"handshake\",\n    \"hanukiah\",\n    \"hard-hat\",\n    \"hashtag\",\n    \"hat-chef\",\n    \"hat-cowboy-side\",\n    \"hat-cowboy\",\n    \"hat-santa\",\n    \"hat-winter\",\n    \"hat-witch\",\n    \"hat-wizard\",\n    \"hdd\",\n    \"head-side-brain\",\n    \"head-side-cough-slash\",\n    \"head-side-cough\",\n    \"head-side-headphones\",\n    \"head-side-mask\",\n    \"head-side-medical\",\n    \"head-side-virus\",\n    \"head-side\",\n    \"head-vr\",\n    \"heading\",\n    \"headphones-alt\",\n    \"headphones\",\n    \"headset\",\n    \"heart-broken\",\n    \"heart-circle\",\n    \"heart-rate\",\n    \"heart-square\",\n    \"heart\",\n    \"heartbeat\",\n    \"heat\",\n    \"helicopter\",\n    \"helmet-battle\",\n    \"hexagon\",\n    \"highlighter\",\n    \"hiking\",\n    \"hippo\",\n    \"history\",\n    \"hockey-mask\",\n    \"hockey-puck\",\n    \"hockey-sticks\",\n    \"holly-berry\",\n    \"home-alt\",\n    \"home-heart\",\n    \"home-lg-alt\",\n    \"home-lg\",\n    \"home\",\n    \"hood-cloak\",\n    \"horizontal-rule\",\n    \"horse-head\",\n    \"horse-saddle\",\n    \"horse\",\n    \"hospital-alt\",\n    \"hospital-symbol\",\n    \"hospital-user\",\n    \"hospital\",\n    \"hospitals\",\n    \"hot-tub\",\n    \"hotdog\",\n    \"hotel\",\n    \"hourglass-end\",\n    \"hourglass-half\",\n    \"hourglass-start\",\n    \"hourglass\",\n    \"house-damage\",\n    \"house-day\",\n    \"house-flood\",\n    \"house-leave\",\n    \"house-night\",\n    \"house-return\",\n    \"house-signal\",\n    \"house-user\",\n    \"house\",\n    \"hryvnia\",\n    \"humidity\",\n    \"hurricane\",\n    \"i-cursor\",\n    \"ice-cream\",\n    \"ice-skate\",\n    \"icicles\",\n    \"icons-alt\",\n    \"icons\",\n    \"id-badge\",\n    \"id-card-alt\",\n    \"id-card\",\n    \"igloo\",\n    \"image-polaroid\",\n    \"image\",\n    \"images\",\n    \"inbox-in\",\n    \"inbox-out\",\n    \"inbox\",\n    \"indent\",\n    \"industry-alt\",\n    \"industry\",\n    \"infinity\",\n    \"info-circle\",\n    \"info-square\",\n    \"info\",\n    \"inhaler\",\n    \"integral\",\n    \"intersection\",\n    \"inventory\",\n    \"island-tropical\",\n    \"italic\",\n    \"jack-o-lantern\",\n    \"jedi\",\n    \"joint\",\n    \"journal-whills\",\n    \"joystick\",\n    \"jug\",\n    \"kaaba\",\n    \"kazoo\",\n    \"kerning\",\n    \"key-skeleton\",\n    \"key\",\n    \"keyboard\",\n    \"keynote\",\n    \"khanda\",\n    \"kidneys\",\n    \"kiss-beam\",\n    \"kiss-wink-heart\",\n    \"kiss\",\n    \"kite\",\n    \"kiwi-bird\",\n    \"knife-kitchen\",\n    \"lambda\",\n    \"lamp-desk\",\n    \"lamp-floor\",\n    \"lamp\",\n    \"landmark-alt\",\n    \"landmark\",\n    \"language\",\n    \"laptop-code\",\n    \"laptop-house\",\n    \"laptop-medical\",\n    \"laptop\",\n    \"lasso\",\n    \"laugh-beam\",\n    \"laugh-squint\",\n    \"laugh-wink\",\n    \"laugh\",\n    \"layer-group\",\n    \"layer-minus\",\n    \"layer-plus\",\n    \"leaf-heart\",\n    \"leaf-maple\",\n    \"leaf-oak\",\n    \"leaf\",\n    \"lemon\",\n    \"less-than-equal\",\n    \"less-than\",\n    \"level-down-alt\",\n    \"level-down\",\n    \"level-up-alt\",\n    \"level-up\",\n    \"life-ring\",\n    \"light-ceiling\",\n    \"light-switch-off\",\n    \"light-switch-on\",\n    \"light-switch\",\n    \"lightbulb-dollar\",\n    \"lightbulb-exclamation\",\n    \"lightbulb-on\",\n    \"lightbulb-slash\",\n    \"lightbulb\",\n    \"lights-holiday\",\n    \"line-columns\",\n    \"line-height\",\n    \"link\",\n    \"lips\",\n    \"lira-sign\",\n    \"list-alt\",\n    \"list-music\",\n    \"list-ol\",\n    \"list-ul\",\n    \"list\",\n    \"location-arrow\",\n    \"location-circle\",\n    \"location-slash\",\n    \"location\",\n    \"lock-alt\",\n    \"lock-open-alt\",\n    \"lock-open\",\n    \"lock\",\n    \"long-arrow-alt-down\",\n    \"long-arrow-alt-left\",\n    \"long-arrow-alt-right\",\n    \"long-arrow-alt-up\",\n    \"long-arrow-down\",\n    \"long-arrow-left\",\n    \"long-arrow-right\",\n    \"long-arrow-up\",\n    \"loveseat\",\n    \"low-vision\",\n    \"luchador\",\n    \"luggage-cart\",\n    \"lungs-virus\",\n    \"lungs\",\n    \"mace\",\n    \"magic\",\n    \"magnet\",\n    \"mail-bulk\",\n    \"mailbox\",\n    \"male\",\n    \"mandolin\",\n    \"map-marked-alt\",\n    \"map-marked\",\n    \"map-marker-alt-slash\",\n    \"map-marker-alt\",\n    \"map-marker-check\",\n    \"map-marker-edit\",\n    \"map-marker-exclamation\",\n    \"map-marker-minus\",\n    \"map-marker-plus\",\n    \"map-marker-question\",\n    \"map-marker-slash\",\n    \"map-marker-smile\",\n    \"map-marker-times\",\n    \"map-marker\",\n    \"map-pin\",\n    \"map-signs\",\n    \"map\",\n    \"marker\",\n    \"mars-double\",\n    \"mars-stroke-h\",\n    \"mars-stroke-v\",\n    \"mars-stroke\",\n    \"mars\",\n    \"mask\",\n    \"meat\",\n    \"medal\",\n    \"medkit\",\n    \"megaphone\",\n    \"meh-blank\",\n    \"meh-rolling-eyes\",\n    \"meh\",\n    \"memory\",\n    \"menorah\",\n    \"mercury\",\n    \"meteor\",\n    \"microchip\",\n    \"microphone-alt-slash\",\n    \"microphone-alt\",\n    \"microphone-slash\",\n    \"microphone-stand\",\n    \"microphone\",\n    \"microscope\",\n    \"microwave\",\n    \"mind-share\",\n    \"minus-circle\",\n    \"minus-hexagon\",\n    \"minus-octagon\",\n    \"minus-square\",\n    \"minus\",\n    \"mistletoe\",\n    \"mitten\",\n    \"mobile-alt\",\n    \"mobile-android-alt\",\n    \"mobile-android\",\n    \"mobile\",\n    \"money-bill-alt\",\n    \"money-bill-wave-alt\",\n    \"money-bill-wave\",\n    \"money-bill\",\n    \"money-check-alt\",\n    \"money-check-edit-alt\",\n    \"money-check-edit\",\n    \"money-check\",\n    \"monitor-heart-rate\",\n    \"monkey\",\n    \"monument\",\n    \"moon-cloud\",\n    \"moon-stars\",\n    \"moon\",\n    \"mortar-pestle\",\n    \"mosque\",\n    \"motorcycle\",\n    \"mountain\",\n    \"mountains\",\n    \"mouse-alt\",\n    \"mouse-pointer\",\n    \"mouse\",\n    \"mp3-player\",\n    \"mug-hot\",\n    \"mug-marshmallows\",\n    \"mug-tea\",\n    \"mug\",\n    \"music-alt-slash\",\n    \"music-alt\",\n    \"music-slash\",\n    \"music\",\n    \"narwhal\",\n    \"network-wired\",\n    \"neuter\",\n    \"newspaper\",\n    \"not-equal\",\n    \"notes-medical\",\n    \"object-group\",\n    \"object-ungroup\",\n    \"octagon\",\n    \"oil-can\",\n    \"oil-temp\",\n    \"om\",\n    \"omega\",\n    \"ornament\",\n    \"otter\",\n    \"outdent\",\n    \"outlet\",\n    \"oven\",\n    \"overline\",\n    \"page-break\",\n    \"pager\",\n    \"paint-brush-alt\",\n    \"paint-brush\",\n    \"paint-roller\",\n    \"palette\",\n    \"pallet-alt\",\n    \"pallet\",\n    \"paper-plane\",\n    \"paperclip\",\n    \"parachute-box\",\n    \"paragraph-rtl\",\n    \"paragraph\",\n    \"parking-circle-slash\",\n    \"parking-circle\",\n    \"parking-slash\",\n    \"parking\",\n    \"passport\",\n    \"pastafarianism\",\n    \"paste\",\n    \"pause-circle\",\n    \"pause\",\n    \"paw-alt\",\n    \"paw-claws\",\n    \"paw\",\n    \"peace\",\n    \"pegasus\",\n    \"pen-alt\",\n    \"pen-fancy\",\n    \"pen-nib\",\n    \"pen-square\",\n    \"pen\",\n    \"pencil-alt\",\n    \"pencil-paintbrush\",\n    \"pencil-ruler\",\n    \"pencil\",\n    \"pennant\",\n    \"people-arrows\",\n    \"people-carry\",\n    \"pepper-hot\",\n    \"percent\",\n    \"percentage\",\n    \"person-booth\",\n    \"person-carry\",\n    \"person-dolly-empty\",\n    \"person-dolly\",\n    \"person-sign\",\n    \"phone-alt\",\n    \"phone-laptop\",\n    \"phone-office\",\n    \"phone-plus\",\n    \"phone-rotary\",\n    \"phone-slash\",\n    \"phone-square-alt\",\n    \"phone-square\",\n    \"phone-volume\",\n    \"phone\",\n    \"photo-video\",\n    \"pi\",\n    \"piano-keyboard\",\n    \"piano\",\n    \"pie\",\n    \"pig\",\n    \"piggy-bank\",\n    \"pills\",\n    \"pizza-slice\",\n    \"pizza\",\n    \"place-of-worship\",\n    \"plane-alt\",\n    \"plane-arrival\",\n    \"plane-departure\",\n    \"plane-slash\",\n    \"plane\",\n    \"planet-moon\",\n    \"planet-ringed\",\n    \"play-circle\",\n    \"play\",\n    \"plug\",\n    \"plus-circle\",\n    \"plus-hexagon\",\n    \"plus-octagon\",\n    \"plus-square\",\n    \"plus\",\n    \"podcast\",\n    \"podium-star\",\n    \"podium\",\n    \"police-box\",\n    \"poll-h\",\n    \"poll-people\",\n    \"poll\",\n    \"poo-storm\",\n    \"poo\",\n    \"poop\",\n    \"popcorn\",\n    \"portal-enter\",\n    \"portal-exit\",\n    \"portrait\",\n    \"pound-sign\",\n    \"power-off\",\n    \"pray\",\n    \"praying-hands\",\n    \"prescription-bottle-alt\",\n    \"prescription-bottle\",\n    \"prescription\",\n    \"presentation\",\n    \"print-search\",\n    \"print-slash\",\n    \"print\",\n    \"procedures\",\n    \"project-diagram\",\n    \"projector\",\n    \"pump-medical\",\n    \"pump-soap\",\n    \"pumpkin\",\n    \"puzzle-piece\",\n    \"qrcode\",\n    \"question-circle\",\n    \"question-square\",\n    \"question\",\n    \"quidditch\",\n    \"quote-left\",\n    \"quote-right\",\n    \"quran\",\n    \"rabbit-fast\",\n    \"rabbit\",\n    \"racquet\",\n    \"radar\",\n    \"radiation-alt\",\n    \"radiation\",\n    \"radio-alt\",\n    \"radio\",\n    \"rainbow\",\n    \"raindrops\",\n    \"ram\",\n    \"ramp-loading\",\n    \"random\",\n    \"raygun\",\n    \"receipt\",\n    \"record-vinyl\",\n    \"rectangle-landscape\",\n    \"rectangle-portrait\",\n    \"rectangle-wide\",\n    \"recycle\",\n    \"redo-alt\",\n    \"redo\",\n    \"refrigerator\",\n    \"registered\",\n    \"remove-format\",\n    \"repeat-1-alt\",\n    \"repeat-1\",\n    \"repeat-alt\",\n    \"repeat\",\n    \"reply-all\",\n    \"reply\",\n    \"republican\",\n    \"restroom\",\n    \"retweet-alt\",\n    \"retweet\",\n    \"ribbon\",\n    \"ring\",\n    \"rings-wedding\",\n    \"road\",\n    \"robot\",\n    \"rocket-launch\",\n    \"rocket\",\n    \"route-highway\",\n    \"route-interstate\",\n    \"route\",\n    \"router\",\n    \"rss-square\",\n    \"rss\",\n    \"ruble-sign\",\n    \"ruler-combined\",\n    \"ruler-horizontal\",\n    \"ruler-triangle\",\n    \"ruler-vertical\",\n    \"ruler\",\n    \"running\",\n    \"rupee-sign\",\n    \"rv\",\n    \"sack-dollar\",\n    \"sack\",\n    \"sad-cry\",\n    \"sad-tear\",\n    \"salad\",\n    \"sandwich\",\n    \"satellite-dish\",\n    \"satellite\",\n    \"sausage\",\n    \"save\",\n    \"sax-hot\",\n    \"saxophone\",\n    \"scalpel-path\",\n    \"scalpel\",\n    \"scanner-image\",\n    \"scanner-keyboard\",\n    \"scanner-touchscreen\",\n    \"scanner\",\n    \"scarecrow\",\n    \"scarf\",\n    \"school\",\n    \"screwdriver\",\n    \"scroll-old\",\n    \"scroll\",\n    \"scrubber\",\n    \"scythe\",\n    \"sd-card\",\n    \"search-dollar\",\n    \"search-location\",\n    \"search-minus\",\n    \"search-plus\",\n    \"search\",\n    \"seedling\",\n    \"send-back\",\n    \"send-backward\",\n    \"sensor-alert\",\n    \"sensor-fire\",\n    \"sensor-on\",\n    \"sensor-smoke\",\n    \"sensor\",\n    \"server\",\n    \"shapes\",\n    \"share-all\",\n    \"share-alt-square\",\n    \"share-alt\",\n    \"share-square\",\n    \"share\",\n    \"sheep\",\n    \"shekel-sign\",\n    \"shield-alt\",\n    \"shield-check\",\n    \"shield-cross\",\n    \"shield-virus\",\n    \"shield\",\n    \"ship\",\n    \"shipping-fast\",\n    \"shipping-timed\",\n    \"shish-kebab\",\n    \"shoe-prints\",\n    \"shopping-bag\",\n    \"shopping-basket\",\n    \"shopping-cart\",\n    \"shovel-snow\",\n    \"shovel\",\n    \"shower\",\n    \"shredder\",\n    \"shuttle-van\",\n    \"shuttlecock\",\n    \"sickle\",\n    \"sigma\",\n    \"sign-in-alt\",\n    \"sign-in\",\n    \"sign-language\",\n    \"sign-out-alt\",\n    \"sign-out\",\n    \"sign\",\n    \"signal-1\",\n    \"signal-2\",\n    \"signal-3\",\n    \"signal-4\",\n    \"signal-alt-1\",\n    \"signal-alt-2\",\n    \"signal-alt-3\",\n    \"signal-alt-slash\",\n    \"signal-alt\",\n    \"signal-slash\",\n    \"signal-stream\",\n    \"signal\",\n    \"signature\",\n    \"sim-card\",\n    \"sink\",\n    \"siren-on\",\n    \"siren\",\n    \"sitemap\",\n    \"skating\",\n    \"skeleton\",\n    \"ski-jump\",\n    \"ski-lift\",\n    \"skiing-nordic\",\n    \"skiing\",\n    \"skull-cow\",\n    \"skull-crossbones\",\n    \"skull\",\n    \"slash\",\n    \"sledding\",\n    \"sleigh\",\n    \"sliders-h-square\",\n    \"sliders-h\",\n    \"sliders-v-square\",\n    \"sliders-v\",\n    \"smile-beam\",\n    \"smile-plus\",\n    \"smile-wink\",\n    \"smile\",\n    \"smog\",\n    \"smoke\",\n    \"smoking-ban\",\n    \"smoking\",\n    \"sms\",\n    \"snake\",\n    \"snooze\",\n    \"snow-blowing\",\n    \"snowboarding\",\n    \"snowflake\",\n    \"snowflakes\",\n    \"snowman\",\n    \"snowmobile\",\n    \"snowplow\",\n    \"soap\",\n    \"socks\",\n    \"solar-panel\",\n    \"solar-system\",\n    \"sort-alpha-down-alt\",\n    \"sort-alpha-down\",\n    \"sort-alpha-up-alt\",\n    \"sort-alpha-up\",\n    \"sort-alt\",\n    \"sort-amount-down-alt\",\n    \"sort-amount-down\",\n    \"sort-amount-up-alt\",\n    \"sort-amount-up\",\n    \"sort-circle-down\",\n    \"sort-circle-up\",\n    \"sort-circle\",\n    \"sort-down\",\n    \"sort-numeric-down-alt\",\n    \"sort-numeric-down\",\n    \"sort-numeric-up-alt\",\n    \"sort-numeric-up\",\n    \"sort-shapes-down-alt\",\n    \"sort-shapes-down\",\n    \"sort-shapes-up-alt\",\n    \"sort-shapes-up\",\n    \"sort-size-down-alt\",\n    \"sort-size-down\",\n    \"sort-size-up-alt\",\n    \"sort-size-up\",\n    \"sort-up\",\n    \"sort\",\n    \"soup\",\n    \"spa\",\n    \"space-shuttle\",\n    \"space-station-moon-alt\",\n    \"space-station-moon\",\n    \"spade\",\n    \"sparkles\",\n    \"speaker\",\n    \"speakers\",\n    \"spell-check\",\n    \"spider-black-widow\",\n    \"spider-web\",\n    \"spider\",\n    \"spinner-third\",\n    \"spinner\",\n    \"splotch\",\n    \"spray-can\",\n    \"sprinkler\",\n    \"square-full\",\n    \"square-root-alt\",\n    \"square-root\",\n    \"square\",\n    \"squirrel\",\n    \"staff\",\n    \"stamp\",\n    \"star-and-crescent\",\n    \"star-christmas\",\n    \"star-exclamation\",\n    \"star-half-alt\",\n    \"star-half\",\n    \"star-of-david\",\n    \"star-of-life\",\n    \"star-shooting\",\n    \"star\",\n    \"starfighter-alt\",\n    \"starfighter\",\n    \"stars\",\n    \"starship-freighter\",\n    \"starship\",\n    \"steak\",\n    \"steering-wheel\",\n    \"step-backward\",\n    \"step-forward\",\n    \"stethoscope\",\n    \"sticky-note\",\n    \"stocking\",\n    \"stomach\",\n    \"stop-circle\",\n    \"stop\",\n    \"stopwatch-20\",\n    \"stopwatch\",\n    \"store-alt-slash\",\n    \"store-alt\",\n    \"store-slash\",\n    \"store\",\n    \"stream\",\n    \"street-view\",\n    \"stretcher\",\n    \"strikethrough\",\n    \"stroopwafel\",\n    \"subscript\",\n    \"subway\",\n    \"suitcase-rolling\",\n    \"suitcase\",\n    \"sun-cloud\",\n    \"sun-dust\",\n    \"sun-haze\",\n    \"sun\",\n    \"sunglasses\",\n    \"sunrise\",\n    \"sunset\",\n    \"superscript\",\n    \"surprise\",\n    \"swatchbook\",\n    \"swimmer\",\n    \"swimming-pool\",\n    \"sword-laser-alt\",\n    \"sword-laser\",\n    \"sword\",\n    \"swords-laser\",\n    \"swords\",\n    \"synagogue\",\n    \"sync-alt\",\n    \"sync\",\n    \"syringe\",\n    \"table-tennis\",\n    \"table\",\n    \"tablet-alt\",\n    \"tablet-android-alt\",\n    \"tablet-android\",\n    \"tablet-rugged\",\n    \"tablet\",\n    \"tablets\",\n    \"tachometer-alt-average\",\n    \"tachometer-alt-fast\",\n    \"tachometer-alt-fastest\",\n    \"tachometer-alt-slow\",\n    \"tachometer-alt-slowest\",\n    \"tachometer-alt\",\n    \"tachometer-average\",\n    \"tachometer-fast\",\n    \"tachometer-fastest\",\n    \"tachometer-slow\",\n    \"tachometer-slowest\",\n    \"tachometer\",\n    \"taco\",\n    \"tag\",\n    \"tags\",\n    \"tally\",\n    \"tanakh\",\n    \"tape\",\n    \"tasks-alt\",\n    \"tasks\",\n    \"taxi\",\n    \"teeth-open\",\n    \"teeth\",\n    \"telescope\",\n    \"temperature-down\",\n    \"temperature-frigid\",\n    \"temperature-high\",\n    \"temperature-hot\",\n    \"temperature-low\",\n    \"temperature-up\",\n    \"tenge\",\n    \"tennis-ball\",\n    \"terminal\",\n    \"text-height\",\n    \"text-size\",\n    \"text-width\",\n    \"text\",\n    \"th-large\",\n    \"th-list\",\n    \"th\",\n    \"theater-masks\",\n    \"thermometer-empty\",\n    \"thermometer-full\",\n    \"thermometer-half\",\n    \"thermometer-quarter\",\n    \"thermometer-three-quarters\",\n    \"thermometer\",\n    \"theta\",\n    \"thumbs-down\",\n    \"thumbs-up\",\n    \"thumbtack\",\n    \"thunderstorm-moon\",\n    \"thunderstorm-sun\",\n    \"thunderstorm\",\n    \"ticket-alt\",\n    \"ticket\",\n    \"tilde\",\n    \"times-circle\",\n    \"times-hexagon\",\n    \"times-octagon\",\n    \"times-square\",\n    \"times\",\n    \"tint-slash\",\n    \"tint\",\n    \"tire-flat\",\n    \"tire-pressure-warning\",\n    \"tire-rugged\",\n    \"tire\",\n    \"tired\",\n    \"toggle-off\",\n    \"toggle-on\",\n    \"toilet-paper-alt\",\n    \"toilet-paper-slash\",\n    \"toilet-paper\",\n    \"toilet\",\n    \"tombstone-alt\",\n    \"tombstone\",\n    \"toolbox\",\n    \"tools\",\n    \"tooth\",\n    \"toothbrush\",\n    \"torah\",\n    \"torii-gate\",\n    \"tornado\",\n    \"tractor\",\n    \"trademark\",\n    \"traffic-cone\",\n    \"traffic-light-go\",\n    \"traffic-light-slow\",\n    \"traffic-light-stop\",\n    \"traffic-light\",\n    \"trailer\",\n    \"train\",\n    \"tram\",\n    \"transgender-alt\",\n    \"transgender\",\n    \"transporter-1\",\n    \"transporter-2\",\n    \"transporter-3\",\n    \"transporter-empty\",\n    \"transporter\",\n    \"trash-alt\",\n    \"trash-restore-alt\",\n    \"trash-restore\",\n    \"trash-undo-alt\",\n    \"trash-undo\",\n    \"trash\",\n    \"treasure-chest\",\n    \"tree-alt\",\n    \"tree-christmas\",\n    \"tree-decorated\",\n    \"tree-large\",\n    \"tree-palm\",\n    \"tree\",\n    \"trees\",\n    \"triangle-music\",\n    \"triangle\",\n    \"trophy-alt\",\n    \"trophy\",\n    \"truck-container\",\n    \"truck-couch\",\n    \"truck-loading\",\n    \"truck-monster\",\n    \"truck-moving\",\n    \"truck-pickup\",\n    \"truck-plow\",\n    \"truck-ramp\",\n    \"truck\",\n    \"trumpet\",\n    \"tshirt\",\n    \"tty\",\n    \"turkey\",\n    \"turntable\",\n    \"turtle\",\n    \"tv-alt\",\n    \"tv-music\",\n    \"tv-retro\",\n    \"tv\",\n    \"typewriter\",\n    \"ufo-beam\",\n    \"ufo\",\n    \"umbrella-beach\",\n    \"umbrella\",\n    \"underline\",\n    \"undo-alt\",\n    \"undo\",\n    \"unicorn\",\n    \"union\",\n    \"universal-access\",\n    \"university\",\n    \"unlink\",\n    \"unlock-alt\",\n    \"unlock\",\n    \"upload\",\n    \"usb-drive\",\n    \"usd-circle\",\n    \"usd-square\",\n    \"user-alien\",\n    \"user-alt-slash\",\n    \"user-alt\",\n    \"user-astronaut\",\n    \"user-chart\",\n    \"user-check\",\n    \"user-circle\",\n    \"user-clock\",\n    \"user-cog\",\n    \"user-cowboy\",\n    \"user-crown\",\n    \"user-edit\",\n    \"user-friends\",\n    \"user-graduate\",\n    \"user-hard-hat\",\n    \"user-headset\",\n    \"user-injured\",\n    \"user-lock\",\n    \"user-md-chat\",\n    \"user-md\",\n    \"user-minus\",\n    \"user-music\",\n    \"user-ninja\",\n    \"user-nurse\",\n    \"user-plus\",\n    \"user-robot\",\n    \"user-secret\",\n    \"user-shield\",\n    \"user-slash\",\n    \"user-tag\",\n    \"user-tie\",\n    \"user-times\",\n    \"user-unlock\",\n    \"user-visor\",\n    \"user\",\n    \"users-class\",\n    \"users-cog\",\n    \"users-crown\",\n    \"users-medical\",\n    \"users-slash\",\n    \"users\",\n    \"utensil-fork\",\n    \"utensil-knife\",\n    \"utensil-spoon\",\n    \"utensils-alt\",\n    \"utensils\",\n    \"vacuum-robot\",\n    \"vacuum\",\n    \"value-absolute\",\n    \"vector-square\",\n    \"venus-double\",\n    \"venus-mars\",\n    \"venus\",\n    \"vest-patches\",\n    \"vest\",\n    \"vhs\",\n    \"vial\",\n    \"vials\",\n    \"video-plus\",\n    \"video-slash\",\n    \"video\",\n    \"vihara\",\n    \"violin\",\n    \"virus-slash\",\n    \"virus\",\n    \"viruses\",\n    \"voicemail\",\n    \"volcano\",\n    \"volleyball-ball\",\n    \"volume-down\",\n    \"volume-mute\",\n    \"volume-off\",\n    \"volume-slash\",\n    \"volume-up\",\n    \"volume\",\n    \"vote-nay\",\n    \"vote-yea\",\n    \"vr-cardboard\",\n    \"wagon-covered\",\n    \"walker\",\n    \"walkie-talkie\",\n    \"walking\",\n    \"wallet\",\n    \"wand-magic\",\n    \"wand\",\n    \"warehouse-alt\",\n    \"warehouse\",\n    \"washer\",\n    \"watch-calculator\",\n    \"watch-fitness\",\n    \"watch\",\n    \"water-lower\",\n    \"water-rise\",\n    \"water\",\n    \"wave-sine\",\n    \"wave-square\",\n    \"wave-triangle\",\n    \"waveform-path\",\n    \"waveform\",\n    \"webcam-slash\",\n    \"webcam\",\n    \"weight-hanging\",\n    \"weight\",\n    \"whale\",\n    \"wheat\",\n    \"wheelchair\",\n    \"whistle\",\n    \"wifi-1\",\n    \"wifi-2\",\n    \"wifi-slash\",\n    \"wifi\",\n    \"wind-turbine\",\n    \"wind-warning\",\n    \"wind\",\n    \"window-alt\",\n    \"window-close\",\n    \"window-frame-open\",\n    \"window-frame\",\n    \"window-maximize\",\n    \"window-minimize\",\n    \"window-restore\",\n    \"window\",\n    \"windsock\",\n    \"wine-bottle\",\n    \"wine-glass-alt\",\n    \"wine-glass\",\n    \"won-sign\",\n    \"wreath\",\n    \"wrench\",\n    \"x-ray\",\n    \"yen-sign\",\n    \"yin-yang\"\n  ],\n  \"regular\": [\n    \"abacus\",\n    \"acorn\",\n    \"ad\",\n    \"address-book\",\n    \"address-card\",\n    \"adjust\",\n    \"air-conditioner\",\n    \"air-freshener\",\n    \"alarm-clock\",\n    \"alarm-exclamation\",\n    \"alarm-plus\",\n    \"alarm-snooze\",\n    \"album-collection\",\n    \"album\",\n    \"alicorn\",\n    \"alien-monster\",\n    \"alien\",\n    \"align-center\",\n    \"align-justify\",\n    \"align-left\",\n    \"align-right\",\n    \"align-slash\",\n    \"allergies\",\n    \"ambulance\",\n    \"american-sign-language-interpreting\",\n    \"amp-guitar\",\n    \"analytics\",\n    \"anchor\",\n    \"angel\",\n    \"angle-double-down\",\n    \"angle-double-left\",\n    \"angle-double-right\",\n    \"angle-double-up\",\n    \"angle-down\",\n    \"angle-left\",\n    \"angle-right\",\n    \"angle-up\",\n    \"angry\",\n    \"ankh\",\n    \"apple-alt\",\n    \"apple-crate\",\n    \"archive\",\n    \"archway\",\n    \"arrow-alt-circle-down\",\n    \"arrow-alt-circle-left\",\n    \"arrow-alt-circle-right\",\n    \"arrow-alt-circle-up\",\n    \"arrow-alt-down\",\n    \"arrow-alt-from-bottom\",\n    \"arrow-alt-from-left\",\n    \"arrow-alt-from-right\",\n    \"arrow-alt-from-top\",\n    \"arrow-alt-left\",\n    \"arrow-alt-right\",\n    \"arrow-alt-square-down\",\n    \"arrow-alt-square-left\",\n    \"arrow-alt-square-right\",\n    \"arrow-alt-square-up\",\n    \"arrow-alt-to-bottom\",\n    \"arrow-alt-to-left\",\n    \"arrow-alt-to-right\",\n    \"arrow-alt-to-top\",\n    \"arrow-alt-up\",\n    \"arrow-circle-down\",\n    \"arrow-circle-left\",\n    \"arrow-circle-right\",\n    \"arrow-circle-up\",\n    \"arrow-down\",\n    \"arrow-from-bottom\",\n    \"arrow-from-left\",\n    \"arrow-from-right\",\n    \"arrow-from-top\",\n    \"arrow-left\",\n    \"arrow-right\",\n    \"arrow-square-down\",\n    \"arrow-square-left\",\n    \"arrow-square-right\",\n    \"arrow-square-up\",\n    \"arrow-to-bottom\",\n    \"arrow-to-left\",\n    \"arrow-to-right\",\n    \"arrow-to-top\",\n    \"arrow-up\",\n    \"arrows-alt-h\",\n    \"arrows-alt-v\",\n    \"arrows-alt\",\n    \"arrows-h\",\n    \"arrows-v\",\n    \"arrows\",\n    \"assistive-listening-systems\",\n    \"asterisk\",\n    \"at\",\n    \"atlas\",\n    \"atom-alt\",\n    \"atom\",\n    \"audio-description\",\n    \"award\",\n    \"axe-battle\",\n    \"axe\",\n    \"baby-carriage\",\n    \"baby\",\n    \"backpack\",\n    \"backspace\",\n    \"backward\",\n    \"bacon\",\n    \"bacteria\",\n    \"bacterium\",\n    \"badge-check\",\n    \"badge-dollar\",\n    \"badge-percent\",\n    \"badge-sheriff\",\n    \"badge\",\n    \"badger-honey\",\n    \"bags-shopping\",\n    \"bahai\",\n    \"balance-scale-left\",\n    \"balance-scale-right\",\n    \"balance-scale\",\n    \"ball-pile\",\n    \"ballot-check\",\n    \"ballot\",\n    \"ban\",\n    \"band-aid\",\n    \"banjo\",\n    \"barcode-alt\",\n    \"barcode-read\",\n    \"barcode-scan\",\n    \"barcode\",\n    \"bars\",\n    \"baseball-ball\",\n    \"baseball\",\n    \"basketball-ball\",\n    \"basketball-hoop\",\n    \"bat\",\n    \"bath\",\n    \"battery-bolt\",\n    \"battery-empty\",\n    \"battery-full\",\n    \"battery-half\",\n    \"battery-quarter\",\n    \"battery-slash\",\n    \"battery-three-quarters\",\n    \"bed-alt\",\n    \"bed-bunk\",\n    \"bed-empty\",\n    \"bed\",\n    \"beer\",\n    \"bell-exclamation\",\n    \"bell-on\",\n    \"bell-plus\",\n    \"bell-school-slash\",\n    \"bell-school\",\n    \"bell-slash\",\n    \"bell\",\n    \"bells\",\n    \"betamax\",\n    \"bezier-curve\",\n    \"bible\",\n    \"bicycle\",\n    \"biking-mountain\",\n    \"biking\",\n    \"binoculars\",\n    \"biohazard\",\n    \"birthday-cake\",\n    \"blanket\",\n    \"blender-phone\",\n    \"blender\",\n    \"blind\",\n    \"blinds-open\",\n    \"blinds-raised\",\n    \"blinds\",\n    \"blog\",\n    \"bold\",\n    \"bolt\",\n    \"bomb\",\n    \"bone-break\",\n    \"bone\",\n    \"bong\",\n    \"book-alt\",\n    \"book-dead\",\n    \"book-heart\",\n    \"book-medical\",\n    \"book-open\",\n    \"book-reader\",\n    \"book-spells\",\n    \"book-user\",\n    \"book\",\n    \"bookmark\",\n    \"books-medical\",\n    \"books\",\n    \"boombox\",\n    \"boot\",\n    \"booth-curtain\",\n    \"border-all\",\n    \"border-bottom\",\n    \"border-center-h\",\n    \"border-center-v\",\n    \"border-inner\",\n    \"border-left\",\n    \"border-none\",\n    \"border-outer\",\n    \"border-right\",\n    \"border-style-alt\",\n    \"border-style\",\n    \"border-top\",\n    \"bow-arrow\",\n    \"bowling-ball\",\n    \"bowling-pins\",\n    \"box-alt\",\n    \"box-ballot\",\n    \"box-check\",\n    \"box-fragile\",\n    \"box-full\",\n    \"box-heart\",\n    \"box-open\",\n    \"box-tissue\",\n    \"box-up\",\n    \"box-usd\",\n    \"box\",\n    \"boxes-alt\",\n    \"boxes\",\n    \"boxing-glove\",\n    \"brackets-curly\",\n    \"brackets\",\n    \"braille\",\n    \"brain\",\n    \"bread-loaf\",\n    \"bread-slice\",\n    \"briefcase-medical\",\n    \"briefcase\",\n    \"bring-forward\",\n    \"bring-front\",\n    \"broadcast-tower\",\n    \"broom\",\n    \"browser\",\n    \"brush\",\n    \"bug\",\n    \"building\",\n    \"bullhorn\",\n    \"bullseye-arrow\",\n    \"bullseye-pointer\",\n    \"bullseye\",\n    \"burger-soda\",\n    \"burn\",\n    \"burrito\",\n    \"bus-alt\",\n    \"bus-school\",\n    \"bus\",\n    \"business-time\",\n    \"cabinet-filing\",\n    \"cactus\",\n    \"calculator-alt\",\n    \"calculator\",\n    \"calendar-alt\",\n    \"calendar-check\",\n    \"calendar-day\",\n    \"calendar-edit\",\n    \"calendar-exclamation\",\n    \"calendar-minus\",\n    \"calendar-plus\",\n    \"calendar-star\",\n    \"calendar-times\",\n    \"calendar-week\",\n    \"calendar\",\n    \"camcorder\",\n    \"camera-alt\",\n    \"camera-home\",\n    \"camera-movie\",\n    \"camera-polaroid\",\n    \"camera-retro\",\n    \"camera\",\n    \"campfire\",\n    \"campground\",\n    \"candle-holder\",\n    \"candy-cane\",\n    \"candy-corn\",\n    \"cannabis\",\n    \"capsules\",\n    \"car-alt\",\n    \"car-battery\",\n    \"car-building\",\n    \"car-bump\",\n    \"car-bus\",\n    \"car-crash\",\n    \"car-garage\",\n    \"car-mechanic\",\n    \"car-side\",\n    \"car-tilt\",\n    \"car-wash\",\n    \"car\",\n    \"caravan-alt\",\n    \"caravan\",\n    \"caret-circle-down\",\n    \"caret-circle-left\",\n    \"caret-circle-right\",\n    \"caret-circle-up\",\n    \"caret-down\",\n    \"caret-left\",\n    \"caret-right\",\n    \"caret-square-down\",\n    \"caret-square-left\",\n    \"caret-square-right\",\n    \"caret-square-up\",\n    \"caret-up\",\n    \"carrot\",\n    \"cars\",\n    \"cart-arrow-down\",\n    \"cart-plus\",\n    \"cash-register\",\n    \"cassette-tape\",\n    \"cat-space\",\n    \"cat\",\n    \"cauldron\",\n    \"cctv\",\n    \"certificate\",\n    \"chair-office\",\n    \"chair\",\n    \"chalkboard-teacher\",\n    \"chalkboard\",\n    \"charging-station\",\n    \"chart-area\",\n    \"chart-bar\",\n    \"chart-line-down\",\n    \"chart-line\",\n    \"chart-network\",\n    \"chart-pie-alt\",\n    \"chart-pie\",\n    \"chart-scatter\",\n    \"check-circle\",\n    \"check-double\",\n    \"check-square\",\n    \"check\",\n    \"cheese-swiss\",\n    \"cheese\",\n    \"cheeseburger\",\n    \"chess-bishop-alt\",\n    \"chess-bishop\",\n    \"chess-board\",\n    \"chess-clock-alt\",\n    \"chess-clock\",\n    \"chess-king-alt\",\n    \"chess-king\",\n    \"chess-knight-alt\",\n    \"chess-knight\",\n    \"chess-pawn-alt\",\n    \"chess-pawn\",\n    \"chess-queen-alt\",\n    \"chess-queen\",\n    \"chess-rook-alt\",\n    \"chess-rook\",\n    \"chess\",\n    \"chevron-circle-down\",\n    \"chevron-circle-left\",\n    \"chevron-circle-right\",\n    \"chevron-circle-up\",\n    \"chevron-double-down\",\n    \"chevron-double-left\",\n    \"chevron-double-right\",\n    \"chevron-double-up\",\n    \"chevron-down\",\n    \"chevron-left\",\n    \"chevron-right\",\n    \"chevron-square-down\",\n    \"chevron-square-left\",\n    \"chevron-square-right\",\n    \"chevron-square-up\",\n    \"chevron-up\",\n    \"child\",\n    \"chimney\",\n    \"church\",\n    \"circle-notch\",\n    \"circle\",\n    \"city\",\n    \"clarinet\",\n    \"claw-marks\",\n    \"clinic-medical\",\n    \"clipboard-check\",\n    \"clipboard-list-check\",\n    \"clipboard-list\",\n    \"clipboard-prescription\",\n    \"clipboard-user\",\n    \"clipboard\",\n    \"clock\",\n    \"clone\",\n    \"closed-captioning\",\n    \"cloud-download-alt\",\n    \"cloud-download\",\n    \"cloud-drizzle\",\n    \"cloud-hail-mixed\",\n    \"cloud-hail\",\n    \"cloud-meatball\",\n    \"cloud-moon-rain\",\n    \"cloud-moon\",\n    \"cloud-music\",\n    \"cloud-rain\",\n    \"cloud-rainbow\",\n    \"cloud-showers-heavy\",\n    \"cloud-showers\",\n    \"cloud-sleet\",\n    \"cloud-snow\",\n    \"cloud-sun-rain\",\n    \"cloud-sun\",\n    \"cloud-upload-alt\",\n    \"cloud-upload\",\n    \"cloud\",\n    \"clouds-moon\",\n    \"clouds-sun\",\n    \"clouds\",\n    \"club\",\n    \"cocktail\",\n    \"code-branch\",\n    \"code-commit\",\n    \"code-merge\",\n    \"code\",\n    \"coffee-pot\",\n    \"coffee-togo\",\n    \"coffee\",\n    \"coffin-cross\",\n    \"coffin\",\n    \"cog\",\n    \"cogs\",\n    \"coin\",\n    \"coins\",\n    \"columns\",\n    \"comet\",\n    \"comment-alt-check\",\n    \"comment-alt-dollar\",\n    \"comment-alt-dots\",\n    \"comment-alt-edit\",\n    \"comment-alt-exclamation\",\n    \"comment-alt-lines\",\n    \"comment-alt-medical\",\n    \"comment-alt-minus\",\n    \"comment-alt-music\",\n    \"comment-alt-plus\",\n    \"comment-alt-slash\",\n    \"comment-alt-smile\",\n    \"comment-alt-times\",\n    \"comment-alt\",\n    \"comment-check\",\n    \"comment-dollar\",\n    \"comment-dots\",\n    \"comment-edit\",\n    \"comment-exclamation\",\n    \"comment-lines\",\n    \"comment-medical\",\n    \"comment-minus\",\n    \"comment-music\",\n    \"comment-plus\",\n    \"comment-slash\",\n    \"comment-smile\",\n    \"comment-times\",\n    \"comment\",\n    \"comments-alt-dollar\",\n    \"comments-alt\",\n    \"comments-dollar\",\n    \"comments\",\n    \"compact-disc\",\n    \"compass-slash\",\n    \"compass\",\n    \"compress-alt\",\n    \"compress-arrows-alt\",\n    \"compress-wide\",\n    \"compress\",\n    \"computer-classic\",\n    \"computer-speaker\",\n    \"concierge-bell\",\n    \"construction\",\n    \"container-storage\",\n    \"conveyor-belt-alt\",\n    \"conveyor-belt\",\n    \"cookie-bite\",\n    \"cookie\",\n    \"copy\",\n    \"copyright\",\n    \"corn\",\n    \"couch\",\n    \"cow\",\n    \"cowbell-more\",\n    \"cowbell\",\n    \"credit-card-blank\",\n    \"credit-card-front\",\n    \"credit-card\",\n    \"cricket\",\n    \"croissant\",\n    \"crop-alt\",\n    \"crop\",\n    \"cross\",\n    \"crosshairs\",\n    \"crow\",\n    \"crown\",\n    \"crutch\",\n    \"crutches\",\n    \"cube\",\n    \"cubes\",\n    \"curling\",\n    \"cut\",\n    \"dagger\",\n    \"database\",\n    \"deaf\",\n    \"debug\",\n    \"deer-rudolph\",\n    \"deer\",\n    \"democrat\",\n    \"desktop-alt\",\n    \"desktop\",\n    \"dewpoint\",\n    \"dharmachakra\",\n    \"diagnoses\",\n    \"diamond\",\n    \"dice-d10\",\n    \"dice-d12\",\n    \"dice-d20\",\n    \"dice-d4\",\n    \"dice-d6\",\n    \"dice-d8\",\n    \"dice-five\",\n    \"dice-four\",\n    \"dice-one\",\n    \"dice-six\",\n    \"dice-three\",\n    \"dice-two\",\n    \"dice\",\n    \"digging\",\n    \"digital-tachograph\",\n    \"diploma\",\n    \"directions\",\n    \"disc-drive\",\n    \"disease\",\n    \"divide\",\n    \"dizzy\",\n    \"dna\",\n    \"do-not-enter\",\n    \"dog-leashed\",\n    \"dog\",\n    \"dollar-sign\",\n    \"dolly-empty\",\n    \"dolly-flatbed-alt\",\n    \"dolly-flatbed-empty\",\n    \"dolly-flatbed\",\n    \"dolly\",\n    \"donate\",\n    \"door-closed\",\n    \"door-open\",\n    \"dot-circle\",\n    \"dove\",\n    \"download\",\n    \"drafting-compass\",\n    \"dragon\",\n    \"draw-circle\",\n    \"draw-polygon\",\n    \"draw-square\",\n    \"dreidel\",\n    \"drone-alt\",\n    \"drone\",\n    \"drum-steelpan\",\n    \"drum\",\n    \"drumstick-bite\",\n    \"drumstick\",\n    \"dryer-alt\",\n    \"dryer\",\n    \"duck\",\n    \"dumbbell\",\n    \"dumpster-fire\",\n    \"dumpster\",\n    \"dungeon\",\n    \"ear-muffs\",\n    \"ear\",\n    \"eclipse-alt\",\n    \"eclipse\",\n    \"edit\",\n    \"egg-fried\",\n    \"egg\",\n    \"eject\",\n    \"elephant\",\n    \"ellipsis-h-alt\",\n    \"ellipsis-h\",\n    \"ellipsis-v-alt\",\n    \"ellipsis-v\",\n    \"empty-set\",\n    \"engine-warning\",\n    \"envelope-open-dollar\",\n    \"envelope-open-text\",\n    \"envelope-open\",\n    \"envelope-square\",\n    \"envelope\",\n    \"equals\",\n    \"eraser\",\n    \"ethernet\",\n    \"euro-sign\",\n    \"exchange-alt\",\n    \"exchange\",\n    \"exclamation-circle\",\n    \"exclamation-square\",\n    \"exclamation-triangle\",\n    \"exclamation\",\n    \"expand-alt\",\n    \"expand-arrows-alt\",\n    \"expand-arrows\",\n    \"expand-wide\",\n    \"expand\",\n    \"external-link-alt\",\n    \"external-link-square-alt\",\n    \"external-link-square\",\n    \"external-link\",\n    \"eye-dropper\",\n    \"eye-evil\",\n    \"eye-slash\",\n    \"eye\",\n    \"fan-table\",\n    \"fan\",\n    \"farm\",\n    \"fast-backward\",\n    \"fast-forward\",\n    \"faucet-drip\",\n    \"faucet\",\n    \"fax\",\n    \"feather-alt\",\n    \"feather\",\n    \"female\",\n    \"field-hockey\",\n    \"fighter-jet\",\n    \"file-alt\",\n    \"file-archive\",\n    \"file-audio\",\n    \"file-certificate\",\n    \"file-chart-line\",\n    \"file-chart-pie\",\n    \"file-check\",\n    \"file-code\",\n    \"file-contract\",\n    \"file-csv\",\n    \"file-download\",\n    \"file-edit\",\n    \"file-excel\",\n    \"file-exclamation\",\n    \"file-export\",\n    \"file-image\",\n    \"file-import\",\n    \"file-invoice-dollar\",\n    \"file-invoice\",\n    \"file-medical-alt\",\n    \"file-medical\",\n    \"file-minus\",\n    \"file-music\",\n    \"file-pdf\",\n    \"file-plus\",\n    \"file-powerpoint\",\n    \"file-prescription\",\n    \"file-search\",\n    \"file-signature\",\n    \"file-spreadsheet\",\n    \"file-times\",\n    \"file-upload\",\n    \"file-user\",\n    \"file-video\",\n    \"file-word\",\n    \"file\",\n    \"files-medical\",\n    \"fill-drip\",\n    \"fill\",\n    \"film-alt\",\n    \"film-canister\",\n    \"film\",\n    \"filter\",\n    \"fingerprint\",\n    \"fire-alt\",\n    \"fire-extinguisher\",\n    \"fire-smoke\",\n    \"fire\",\n    \"fireplace\",\n    \"first-aid\",\n    \"fish-cooked\",\n    \"fish\",\n    \"fist-raised\",\n    \"flag-alt\",\n    \"flag-checkered\",\n    \"flag-usa\",\n    \"flag\",\n    \"flame\",\n    \"flashlight\",\n    \"flask-poison\",\n    \"flask-potion\",\n    \"flask\",\n    \"flower-daffodil\",\n    \"flower-tulip\",\n    \"flower\",\n    \"flushed\",\n    \"flute\",\n    \"flux-capacitor\",\n    \"fog\",\n    \"folder-download\",\n    \"folder-minus\",\n    \"folder-open\",\n    \"folder-plus\",\n    \"folder-times\",\n    \"folder-tree\",\n    \"folder-upload\",\n    \"folder\",\n    \"folders\",\n    \"font-awesome-logo-full\",\n    \"font-case\",\n    \"font\",\n    \"football-ball\",\n    \"football-helmet\",\n    \"forklift\",\n    \"forward\",\n    \"fragile\",\n    \"french-fries\",\n    \"frog\",\n    \"frosty-head\",\n    \"frown-open\",\n    \"frown\",\n    \"function\",\n    \"funnel-dollar\",\n    \"futbol\",\n    \"galaxy\",\n    \"game-board-alt\",\n    \"game-board\",\n    \"game-console-handheld\",\n    \"gamepad-alt\",\n    \"gamepad\",\n    \"garage-car\",\n    \"garage-open\",\n    \"garage\",\n    \"gas-pump-slash\",\n    \"gas-pump\",\n    \"gavel\",\n    \"gem\",\n    \"genderless\",\n    \"ghost\",\n    \"gift-card\",\n    \"gift\",\n    \"gifts\",\n    \"gingerbread-man\",\n    \"glass-champagne\",\n    \"glass-cheers\",\n    \"glass-citrus\",\n    \"glass-martini-alt\",\n    \"glass-martini\",\n    \"glass-whiskey-rocks\",\n    \"glass-whiskey\",\n    \"glass\",\n    \"glasses-alt\",\n    \"glasses\",\n    \"globe-africa\",\n    \"globe-americas\",\n    \"globe-asia\",\n    \"globe-europe\",\n    \"globe-snow\",\n    \"globe-stand\",\n    \"globe\",\n    \"golf-ball\",\n    \"golf-club\",\n    \"gopuram\",\n    \"graduation-cap\",\n    \"gramophone\",\n    \"greater-than-equal\",\n    \"greater-than\",\n    \"grimace\",\n    \"grin-alt\",\n    \"grin-beam-sweat\",\n    \"grin-beam\",\n    \"grin-hearts\",\n    \"grin-squint-tears\",\n    \"grin-squint\",\n    \"grin-stars\",\n    \"grin-tears\",\n    \"grin-tongue-squint\",\n    \"grin-tongue-wink\",\n    \"grin-tongue\",\n    \"grin-wink\",\n    \"grin\",\n    \"grip-horizontal\",\n    \"grip-lines-vertical\",\n    \"grip-lines\",\n    \"grip-vertical\",\n    \"guitar-electric\",\n    \"guitar\",\n    \"guitars\",\n    \"h-square\",\n    \"h1\",\n    \"h2\",\n    \"h3\",\n    \"h4\",\n    \"hamburger\",\n    \"hammer-war\",\n    \"hammer\",\n    \"hamsa\",\n    \"hand-heart\",\n    \"hand-holding-box\",\n    \"hand-holding-heart\",\n    \"hand-holding-magic\",\n    \"hand-holding-medical\",\n    \"hand-holding-seedling\",\n    \"hand-holding-usd\",\n    \"hand-holding-water\",\n    \"hand-holding\",\n    \"hand-lizard\",\n    \"hand-middle-finger\",\n    \"hand-paper\",\n    \"hand-peace\",\n    \"hand-point-down\",\n    \"hand-point-left\",\n    \"hand-point-right\",\n    \"hand-point-up\",\n    \"hand-pointer\",\n    \"hand-receiving\",\n    \"hand-rock\",\n    \"hand-scissors\",\n    \"hand-sparkles\",\n    \"hand-spock\",\n    \"hands-heart\",\n    \"hands-helping\",\n    \"hands-usd\",\n    \"hands-wash\",\n    \"hands\",\n    \"handshake-alt-slash\",\n    \"handshake-alt\",\n    \"handshake-slash\",\n    \"handshake\",\n    \"hanukiah\",\n    \"hard-hat\",\n    \"hashtag\",\n    \"hat-chef\",\n    \"hat-cowboy-side\",\n    \"hat-cowboy\",\n    \"hat-santa\",\n    \"hat-winter\",\n    \"hat-witch\",\n    \"hat-wizard\",\n    \"hdd\",\n    \"head-side-brain\",\n    \"head-side-cough-slash\",\n    \"head-side-cough\",\n    \"head-side-headphones\",\n    \"head-side-mask\",\n    \"head-side-medical\",\n    \"head-side-virus\",\n    \"head-side\",\n    \"head-vr\",\n    \"heading\",\n    \"headphones-alt\",\n    \"headphones\",\n    \"headset\",\n    \"heart-broken\",\n    \"heart-circle\",\n    \"heart-rate\",\n    \"heart-square\",\n    \"heart\",\n    \"heartbeat\",\n    \"heat\",\n    \"helicopter\",\n    \"helmet-battle\",\n    \"hexagon\",\n    \"highlighter\",\n    \"hiking\",\n    \"hippo\",\n    \"history\",\n    \"hockey-mask\",\n    \"hockey-puck\",\n    \"hockey-sticks\",\n    \"holly-berry\",\n    \"home-alt\",\n    \"home-heart\",\n    \"home-lg-alt\",\n    \"home-lg\",\n    \"home\",\n    \"hood-cloak\",\n    \"horizontal-rule\",\n    \"horse-head\",\n    \"horse-saddle\",\n    \"horse\",\n    \"hospital-alt\",\n    \"hospital-symbol\",\n    \"hospital-user\",\n    \"hospital\",\n    \"hospitals\",\n    \"hot-tub\",\n    \"hotdog\",\n    \"hotel\",\n    \"hourglass-end\",\n    \"hourglass-half\",\n    \"hourglass-start\",\n    \"hourglass\",\n    \"house-damage\",\n    \"house-day\",\n    \"house-flood\",\n    \"house-leave\",\n    \"house-night\",\n    \"house-return\",\n    \"house-signal\",\n    \"house-user\",\n    \"house\",\n    \"hryvnia\",\n    \"humidity\",\n    \"hurricane\",\n    \"i-cursor\",\n    \"ice-cream\",\n    \"ice-skate\",\n    \"icicles\",\n    \"icons-alt\",\n    \"icons\",\n    \"id-badge\",\n    \"id-card-alt\",\n    \"id-card\",\n    \"igloo\",\n    \"image-polaroid\",\n    \"image\",\n    \"images\",\n    \"inbox-in\",\n    \"inbox-out\",\n    \"inbox\",\n    \"indent\",\n    \"industry-alt\",\n    \"industry\",\n    \"infinity\",\n    \"info-circle\",\n    \"info-square\",\n    \"info\",\n    \"inhaler\",\n    \"integral\",\n    \"intersection\",\n    \"inventory\",\n    \"island-tropical\",\n    \"italic\",\n    \"jack-o-lantern\",\n    \"jedi\",\n    \"joint\",\n    \"journal-whills\",\n    \"joystick\",\n    \"jug\",\n    \"kaaba\",\n    \"kazoo\",\n    \"kerning\",\n    \"key-skeleton\",\n    \"key\",\n    \"keyboard\",\n    \"keynote\",\n    \"khanda\",\n    \"kidneys\",\n    \"kiss-beam\",\n    \"kiss-wink-heart\",\n    \"kiss\",\n    \"kite\",\n    \"kiwi-bird\",\n    \"knife-kitchen\",\n    \"lambda\",\n    \"lamp-desk\",\n    \"lamp-floor\",\n    \"lamp\",\n    \"landmark-alt\",\n    \"landmark\",\n    \"language\",\n    \"laptop-code\",\n    \"laptop-house\",\n    \"laptop-medical\",\n    \"laptop\",\n    \"lasso\",\n    \"laugh-beam\",\n    \"laugh-squint\",\n    \"laugh-wink\",\n    \"laugh\",\n    \"layer-group\",\n    \"layer-minus\",\n    \"layer-plus\",\n    \"leaf-heart\",\n    \"leaf-maple\",\n    \"leaf-oak\",\n    \"leaf\",\n    \"lemon\",\n    \"less-than-equal\",\n    \"less-than\",\n    \"level-down-alt\",\n    \"level-down\",\n    \"level-up-alt\",\n    \"level-up\",\n    \"life-ring\",\n    \"light-ceiling\",\n    \"light-switch-off\",\n    \"light-switch-on\",\n    \"light-switch\",\n    \"lightbulb-dollar\",\n    \"lightbulb-exclamation\",\n    \"lightbulb-on\",\n    \"lightbulb-slash\",\n    \"lightbulb\",\n    \"lights-holiday\",\n    \"line-columns\",\n    \"line-height\",\n    \"link\",\n    \"lips\",\n    \"lira-sign\",\n    \"list-alt\",\n    \"list-music\",\n    \"list-ol\",\n    \"list-ul\",\n    \"list\",\n    \"location-arrow\",\n    \"location-circle\",\n    \"location-slash\",\n    \"location\",\n    \"lock-alt\",\n    \"lock-open-alt\",\n    \"lock-open\",\n    \"lock\",\n    \"long-arrow-alt-down\",\n    \"long-arrow-alt-left\",\n    \"long-arrow-alt-right\",\n    \"long-arrow-alt-up\",\n    \"long-arrow-down\",\n    \"long-arrow-left\",\n    \"long-arrow-right\",\n    \"long-arrow-up\",\n    \"loveseat\",\n    \"low-vision\",\n    \"luchador\",\n    \"luggage-cart\",\n    \"lungs-virus\",\n    \"lungs\",\n    \"mace\",\n    \"magic\",\n    \"magnet\",\n    \"mail-bulk\",\n    \"mailbox\",\n    \"male\",\n    \"mandolin\",\n    \"map-marked-alt\",\n    \"map-marked\",\n    \"map-marker-alt-slash\",\n    \"map-marker-alt\",\n    \"map-marker-check\",\n    \"map-marker-edit\",\n    \"map-marker-exclamation\",\n    \"map-marker-minus\",\n    \"map-marker-plus\",\n    \"map-marker-question\",\n    \"map-marker-slash\",\n    \"map-marker-smile\",\n    \"map-marker-times\",\n    \"map-marker\",\n    \"map-pin\",\n    \"map-signs\",\n    \"map\",\n    \"marker\",\n    \"mars-double\",\n    \"mars-stroke-h\",\n    \"mars-stroke-v\",\n    \"mars-stroke\",\n    \"mars\",\n    \"mask\",\n    \"meat\",\n    \"medal\",\n    \"medkit\",\n    \"megaphone\",\n    \"meh-blank\",\n    \"meh-rolling-eyes\",\n    \"meh\",\n    \"memory\",\n    \"menorah\",\n    \"mercury\",\n    \"meteor\",\n    \"microchip\",\n    \"microphone-alt-slash\",\n    \"microphone-alt\",\n    \"microphone-slash\",\n    \"microphone-stand\",\n    \"microphone\",\n    \"microscope\",\n    \"microwave\",\n    \"mind-share\",\n    \"minus-circle\",\n    \"minus-hexagon\",\n    \"minus-octagon\",\n    \"minus-square\",\n    \"minus\",\n    \"mistletoe\",\n    \"mitten\",\n    \"mobile-alt\",\n    \"mobile-android-alt\",\n    \"mobile-android\",\n    \"mobile\",\n    \"money-bill-alt\",\n    \"money-bill-wave-alt\",\n    \"money-bill-wave\",\n    \"money-bill\",\n    \"money-check-alt\",\n    \"money-check-edit-alt\",\n    \"money-check-edit\",\n    \"money-check\",\n    \"monitor-heart-rate\",\n    \"monkey\",\n    \"monument\",\n    \"moon-cloud\",\n    \"moon-stars\",\n    \"moon\",\n    \"mortar-pestle\",\n    \"mosque\",\n    \"motorcycle\",\n    \"mountain\",\n    \"mountains\",\n    \"mouse-alt\",\n    \"mouse-pointer\",\n    \"mouse\",\n    \"mp3-player\",\n    \"mug-hot\",\n    \"mug-marshmallows\",\n    \"mug-tea\",\n    \"mug\",\n    \"music-alt-slash\",\n    \"music-alt\",\n    \"music-slash\",\n    \"music\",\n    \"narwhal\",\n    \"network-wired\",\n    \"neuter\",\n    \"newspaper\",\n    \"not-equal\",\n    \"notes-medical\",\n    \"object-group\",\n    \"object-ungroup\",\n    \"octagon\",\n    \"oil-can\",\n    \"oil-temp\",\n    \"om\",\n    \"omega\",\n    \"ornament\",\n    \"otter\",\n    \"outdent\",\n    \"outlet\",\n    \"oven\",\n    \"overline\",\n    \"page-break\",\n    \"pager\",\n    \"paint-brush-alt\",\n    \"paint-brush\",\n    \"paint-roller\",\n    \"palette\",\n    \"pallet-alt\",\n    \"pallet\",\n    \"paper-plane\",\n    \"paperclip\",\n    \"parachute-box\",\n    \"paragraph-rtl\",\n    \"paragraph\",\n    \"parking-circle-slash\",\n    \"parking-circle\",\n    \"parking-slash\",\n    \"parking\",\n    \"passport\",\n    \"pastafarianism\",\n    \"paste\",\n    \"pause-circle\",\n    \"pause\",\n    \"paw-alt\",\n    \"paw-claws\",\n    \"paw\",\n    \"peace\",\n    \"pegasus\",\n    \"pen-alt\",\n    \"pen-fancy\",\n    \"pen-nib\",\n    \"pen-square\",\n    \"pen\",\n    \"pencil-alt\",\n    \"pencil-paintbrush\",\n    \"pencil-ruler\",\n    \"pencil\",\n    \"pennant\",\n    \"people-arrows\",\n    \"people-carry\",\n    \"pepper-hot\",\n    \"percent\",\n    \"percentage\",\n    \"person-booth\",\n    \"person-carry\",\n    \"person-dolly-empty\",\n    \"person-dolly\",\n    \"person-sign\",\n    \"phone-alt\",\n    \"phone-laptop\",\n    \"phone-office\",\n    \"phone-plus\",\n    \"phone-rotary\",\n    \"phone-slash\",\n    \"phone-square-alt\",\n    \"phone-square\",\n    \"phone-volume\",\n    \"phone\",\n    \"photo-video\",\n    \"pi\",\n    \"piano-keyboard\",\n    \"piano\",\n    \"pie\",\n    \"pig\",\n    \"piggy-bank\",\n    \"pills\",\n    \"pizza-slice\",\n    \"pizza\",\n    \"place-of-worship\",\n    \"plane-alt\",\n    \"plane-arrival\",\n    \"plane-departure\",\n    \"plane-slash\",\n    \"plane\",\n    \"planet-moon\",\n    \"planet-ringed\",\n    \"play-circle\",\n    \"play\",\n    \"plug\",\n    \"plus-circle\",\n    \"plus-hexagon\",\n    \"plus-octagon\",\n    \"plus-square\",\n    \"plus\",\n    \"podcast\",\n    \"podium-star\",\n    \"podium\",\n    \"police-box\",\n    \"poll-h\",\n    \"poll-people\",\n    \"poll\",\n    \"poo-storm\",\n    \"poo\",\n    \"poop\",\n    \"popcorn\",\n    \"portal-enter\",\n    \"portal-exit\",\n    \"portrait\",\n    \"pound-sign\",\n    \"power-off\",\n    \"pray\",\n    \"praying-hands\",\n    \"prescription-bottle-alt\",\n    \"prescription-bottle\",\n    \"prescription\",\n    \"presentation\",\n    \"print-search\",\n    \"print-slash\",\n    \"print\",\n    \"procedures\",\n    \"project-diagram\",\n    \"projector\",\n    \"pump-medical\",\n    \"pump-soap\",\n    \"pumpkin\",\n    \"puzzle-piece\",\n    \"qrcode\",\n    \"question-circle\",\n    \"question-square\",\n    \"question\",\n    \"quidditch\",\n    \"quote-left\",\n    \"quote-right\",\n    \"quran\",\n    \"rabbit-fast\",\n    \"rabbit\",\n    \"racquet\",\n    \"radar\",\n    \"radiation-alt\",\n    \"radiation\",\n    \"radio-alt\",\n    \"radio\",\n    \"rainbow\",\n    \"raindrops\",\n    \"ram\",\n    \"ramp-loading\",\n    \"random\",\n    \"raygun\",\n    \"receipt\",\n    \"record-vinyl\",\n    \"rectangle-landscape\",\n    \"rectangle-portrait\",\n    \"rectangle-wide\",\n    \"recycle\",\n    \"redo-alt\",\n    \"redo\",\n    \"refrigerator\",\n    \"registered\",\n    \"remove-format\",\n    \"repeat-1-alt\",\n    \"repeat-1\",\n    \"repeat-alt\",\n    \"repeat\",\n    \"reply-all\",\n    \"reply\",\n    \"republican\",\n    \"restroom\",\n    \"retweet-alt\",\n    \"retweet\",\n    \"ribbon\",\n    \"ring\",\n    \"rings-wedding\",\n    \"road\",\n    \"robot\",\n    \"rocket-launch\",\n    \"rocket\",\n    \"route-highway\",\n    \"route-interstate\",\n    \"route\",\n    \"router\",\n    \"rss-square\",\n    \"rss\",\n    \"ruble-sign\",\n    \"ruler-combined\",\n    \"ruler-horizontal\",\n    \"ruler-triangle\",\n    \"ruler-vertical\",\n    \"ruler\",\n    \"running\",\n    \"rupee-sign\",\n    \"rv\",\n    \"sack-dollar\",\n    \"sack\",\n    \"sad-cry\",\n    \"sad-tear\",\n    \"salad\",\n    \"sandwich\",\n    \"satellite-dish\",\n    \"satellite\",\n    \"sausage\",\n    \"save\",\n    \"sax-hot\",\n    \"saxophone\",\n    \"scalpel-path\",\n    \"scalpel\",\n    \"scanner-image\",\n    \"scanner-keyboard\",\n    \"scanner-touchscreen\",\n    \"scanner\",\n    \"scarecrow\",\n    \"scarf\",\n    \"school\",\n    \"screwdriver\",\n    \"scroll-old\",\n    \"scroll\",\n    \"scrubber\",\n    \"scythe\",\n    \"sd-card\",\n    \"search-dollar\",\n    \"search-location\",\n    \"search-minus\",\n    \"search-plus\",\n    \"search\",\n    \"seedling\",\n    \"send-back\",\n    \"send-backward\",\n    \"sensor-alert\",\n    \"sensor-fire\",\n    \"sensor-on\",\n    \"sensor-smoke\",\n    \"sensor\",\n    \"server\",\n    \"shapes\",\n    \"share-all\",\n    \"share-alt-square\",\n    \"share-alt\",\n    \"share-square\",\n    \"share\",\n    \"sheep\",\n    \"shekel-sign\",\n    \"shield-alt\",\n    \"shield-check\",\n    \"shield-cross\",\n    \"shield-virus\",\n    \"shield\",\n    \"ship\",\n    \"shipping-fast\",\n    \"shipping-timed\",\n    \"shish-kebab\",\n    \"shoe-prints\",\n    \"shopping-bag\",\n    \"shopping-basket\",\n    \"shopping-cart\",\n    \"shovel-snow\",\n    \"shovel\",\n    \"shower\",\n    \"shredder\",\n    \"shuttle-van\",\n    \"shuttlecock\",\n    \"sickle\",\n    \"sigma\",\n    \"sign-in-alt\",\n    \"sign-in\",\n    \"sign-language\",\n    \"sign-out-alt\",\n    \"sign-out\",\n    \"sign\",\n    \"signal-1\",\n    \"signal-2\",\n    \"signal-3\",\n    \"signal-4\",\n    \"signal-alt-1\",\n    \"signal-alt-2\",\n    \"signal-alt-3\",\n    \"signal-alt-slash\",\n    \"signal-alt\",\n    \"signal-slash\",\n    \"signal-stream\",\n    \"signal\",\n    \"signature\",\n    \"sim-card\",\n    \"sink\",\n    \"siren-on\",\n    \"siren\",\n    \"sitemap\",\n    \"skating\",\n    \"skeleton\",\n    \"ski-jump\",\n    \"ski-lift\",\n    \"skiing-nordic\",\n    \"skiing\",\n    \"skull-cow\",\n    \"skull-crossbones\",\n    \"skull\",\n    \"slash\",\n    \"sledding\",\n    \"sleigh\",\n    \"sliders-h-square\",\n    \"sliders-h\",\n    \"sliders-v-square\",\n    \"sliders-v\",\n    \"smile-beam\",\n    \"smile-plus\",\n    \"smile-wink\",\n    \"smile\",\n    \"smog\",\n    \"smoke\",\n    \"smoking-ban\",\n    \"smoking\",\n    \"sms\",\n    \"snake\",\n    \"snooze\",\n    \"snow-blowing\",\n    \"snowboarding\",\n    \"snowflake\",\n    \"snowflakes\",\n    \"snowman\",\n    \"snowmobile\",\n    \"snowplow\",\n    \"soap\",\n    \"socks\",\n    \"solar-panel\",\n    \"solar-system\",\n    \"sort-alpha-down-alt\",\n    \"sort-alpha-down\",\n    \"sort-alpha-up-alt\",\n    \"sort-alpha-up\",\n    \"sort-alt\",\n    \"sort-amount-down-alt\",\n    \"sort-amount-down\",\n    \"sort-amount-up-alt\",\n    \"sort-amount-up\",\n    \"sort-circle-down\",\n    \"sort-circle-up\",\n    \"sort-circle\",\n    \"sort-down\",\n    \"sort-numeric-down-alt\",\n    \"sort-numeric-down\",\n    \"sort-numeric-up-alt\",\n    \"sort-numeric-up\",\n    \"sort-shapes-down-alt\",\n    \"sort-shapes-down\",\n    \"sort-shapes-up-alt\",\n    \"sort-shapes-up\",\n    \"sort-size-down-alt\",\n    \"sort-size-down\",\n    \"sort-size-up-alt\",\n    \"sort-size-up\",\n    \"sort-up\",\n    \"sort\",\n    \"soup\",\n    \"spa\",\n    \"space-shuttle\",\n    \"space-station-moon-alt\",\n    \"space-station-moon\",\n    \"spade\",\n    \"sparkles\",\n    \"speaker\",\n    \"speakers\",\n    \"spell-check\",\n    \"spider-black-widow\",\n    \"spider-web\",\n    \"spider\",\n    \"spinner-third\",\n    \"spinner\",\n    \"splotch\",\n    \"spray-can\",\n    \"sprinkler\",\n    \"square-full\",\n    \"square-root-alt\",\n    \"square-root\",\n    \"square\",\n    \"squirrel\",\n    \"staff\",\n    \"stamp\",\n    \"star-and-crescent\",\n    \"star-christmas\",\n    \"star-exclamation\",\n    \"star-half-alt\",\n    \"star-half\",\n    \"star-of-david\",\n    \"star-of-life\",\n    \"star-shooting\",\n    \"star\",\n    \"starfighter-alt\",\n    \"starfighter\",\n    \"stars\",\n    \"starship-freighter\",\n    \"starship\",\n    \"steak\",\n    \"steering-wheel\",\n    \"step-backward\",\n    \"step-forward\",\n    \"stethoscope\",\n    \"sticky-note\",\n    \"stocking\",\n    \"stomach\",\n    \"stop-circle\",\n    \"stop\",\n    \"stopwatch-20\",\n    \"stopwatch\",\n    \"store-alt-slash\",\n    \"store-alt\",\n    \"store-slash\",\n    \"store\",\n    \"stream\",\n    \"street-view\",\n    \"stretcher\",\n    \"strikethrough\",\n    \"stroopwafel\",\n    \"subscript\",\n    \"subway\",\n    \"suitcase-rolling\",\n    \"suitcase\",\n    \"sun-cloud\",\n    \"sun-dust\",\n    \"sun-haze\",\n    \"sun\",\n    \"sunglasses\",\n    \"sunrise\",\n    \"sunset\",\n    \"superscript\",\n    \"surprise\",\n    \"swatchbook\",\n    \"swimmer\",\n    \"swimming-pool\",\n    \"sword-laser-alt\",\n    \"sword-laser\",\n    \"sword\",\n    \"swords-laser\",\n    \"swords\",\n    \"synagogue\",\n    \"sync-alt\",\n    \"sync\",\n    \"syringe\",\n    \"table-tennis\",\n    \"table\",\n    \"tablet-alt\",\n    \"tablet-android-alt\",\n    \"tablet-android\",\n    \"tablet-rugged\",\n    \"tablet\",\n    \"tablets\",\n    \"tachometer-alt-average\",\n    \"tachometer-alt-fast\",\n    \"tachometer-alt-fastest\",\n    \"tachometer-alt-slow\",\n    \"tachometer-alt-slowest\",\n    \"tachometer-alt\",\n    \"tachometer-average\",\n    \"tachometer-fast\",\n    \"tachometer-fastest\",\n    \"tachometer-slow\",\n    \"tachometer-slowest\",\n    \"tachometer\",\n    \"taco\",\n    \"tag\",\n    \"tags\",\n    \"tally\",\n    \"tanakh\",\n    \"tape\",\n    \"tasks-alt\",\n    \"tasks\",\n    \"taxi\",\n    \"teeth-open\",\n    \"teeth\",\n    \"telescope\",\n    \"temperature-down\",\n    \"temperature-frigid\",\n    \"temperature-high\",\n    \"temperature-hot\",\n    \"temperature-low\",\n    \"temperature-up\",\n    \"tenge\",\n    \"tennis-ball\",\n    \"terminal\",\n    \"text-height\",\n    \"text-size\",\n    \"text-width\",\n    \"text\",\n    \"th-large\",\n    \"th-list\",\n    \"th\",\n    \"theater-masks\",\n    \"thermometer-empty\",\n    \"thermometer-full\",\n    \"thermometer-half\",\n    \"thermometer-quarter\",\n    \"thermometer-three-quarters\",\n    \"thermometer\",\n    \"theta\",\n    \"thumbs-down\",\n    \"thumbs-up\",\n    \"thumbtack\",\n    \"thunderstorm-moon\",\n    \"thunderstorm-sun\",\n    \"thunderstorm\",\n    \"ticket-alt\",\n    \"ticket\",\n    \"tilde\",\n    \"times-circle\",\n    \"times-hexagon\",\n    \"times-octagon\",\n    \"times-square\",\n    \"times\",\n    \"tint-slash\",\n    \"tint\",\n    \"tire-flat\",\n    \"tire-pressure-warning\",\n    \"tire-rugged\",\n    \"tire\",\n    \"tired\",\n    \"toggle-off\",\n    \"toggle-on\",\n    \"toilet-paper-alt\",\n    \"toilet-paper-slash\",\n    \"toilet-paper\",\n    \"toilet\",\n    \"tombstone-alt\",\n    \"tombstone\",\n    \"toolbox\",\n    \"tools\",\n    \"tooth\",\n    \"toothbrush\",\n    \"torah\",\n    \"torii-gate\",\n    \"tornado\",\n    \"tractor\",\n    \"trademark\",\n    \"traffic-cone\",\n    \"traffic-light-go\",\n    \"traffic-light-slow\",\n    \"traffic-light-stop\",\n    \"traffic-light\",\n    \"trailer\",\n    \"train\",\n    \"tram\",\n    \"transgender-alt\",\n    \"transgender\",\n    \"transporter-1\",\n    \"transporter-2\",\n    \"transporter-3\",\n    \"transporter-empty\",\n    \"transporter\",\n    \"trash-alt\",\n    \"trash-restore-alt\",\n    \"trash-restore\",\n    \"trash-undo-alt\",\n    \"trash-undo\",\n    \"trash\",\n    \"treasure-chest\",\n    \"tree-alt\",\n    \"tree-christmas\",\n    \"tree-decorated\",\n    \"tree-large\",\n    \"tree-palm\",\n    \"tree\",\n    \"trees\",\n    \"triangle-music\",\n    \"triangle\",\n    \"trophy-alt\",\n    \"trophy\",\n    \"truck-container\",\n    \"truck-couch\",\n    \"truck-loading\",\n    \"truck-monster\",\n    \"truck-moving\",\n    \"truck-pickup\",\n    \"truck-plow\",\n    \"truck-ramp\",\n    \"truck\",\n    \"trumpet\",\n    \"tshirt\",\n    \"tty\",\n    \"turkey\",\n    \"turntable\",\n    \"turtle\",\n    \"tv-alt\",\n    \"tv-music\",\n    \"tv-retro\",\n    \"tv\",\n    \"typewriter\",\n    \"ufo-beam\",\n    \"ufo\",\n    \"umbrella-beach\",\n    \"umbrella\",\n    \"underline\",\n    \"undo-alt\",\n    \"undo\",\n    \"unicorn\",\n    \"union\",\n    \"universal-access\",\n    \"university\",\n    \"unlink\",\n    \"unlock-alt\",\n    \"unlock\",\n    \"upload\",\n    \"usb-drive\",\n    \"usd-circle\",\n    \"usd-square\",\n    \"user-alien\",\n    \"user-alt-slash\",\n    \"user-alt\",\n    \"user-astronaut\",\n    \"user-chart\",\n    \"user-check\",\n    \"user-circle\",\n    \"user-clock\",\n    \"user-cog\",\n    \"user-cowboy\",\n    \"user-crown\",\n    \"user-edit\",\n    \"user-friends\",\n    \"user-graduate\",\n    \"user-hard-hat\",\n    \"user-headset\",\n    \"user-injured\",\n    \"user-lock\",\n    \"user-md-chat\",\n    \"user-md\",\n    \"user-minus\",\n    \"user-music\",\n    \"user-ninja\",\n    \"user-nurse\",\n    \"user-plus\",\n    \"user-robot\",\n    \"user-secret\",\n    \"user-shield\",\n    \"user-slash\",\n    \"user-tag\",\n    \"user-tie\",\n    \"user-times\",\n    \"user-unlock\",\n    \"user-visor\",\n    \"user\",\n    \"users-class\",\n    \"users-cog\",\n    \"users-crown\",\n    \"users-medical\",\n    \"users-slash\",\n    \"users\",\n    \"utensil-fork\",\n    \"utensil-knife\",\n    \"utensil-spoon\",\n    \"utensils-alt\",\n    \"utensils\",\n    \"vacuum-robot\",\n    \"vacuum\",\n    \"value-absolute\",\n    \"vector-square\",\n    \"venus-double\",\n    \"venus-mars\",\n    \"venus\",\n    \"vest-patches\",\n    \"vest\",\n    \"vhs\",\n    \"vial\",\n    \"vials\",\n    \"video-plus\",\n    \"video-slash\",\n    \"video\",\n    \"vihara\",\n    \"violin\",\n    \"virus-slash\",\n    \"virus\",\n    \"viruses\",\n    \"voicemail\",\n    \"volcano\",\n    \"volleyball-ball\",\n    \"volume-down\",\n    \"volume-mute\",\n    \"volume-off\",\n    \"volume-slash\",\n    \"volume-up\",\n    \"volume\",\n    \"vote-nay\",\n    \"vote-yea\",\n    \"vr-cardboard\",\n    \"wagon-covered\",\n    \"walker\",\n    \"walkie-talkie\",\n    \"walking\",\n    \"wallet\",\n    \"wand-magic\",\n    \"wand\",\n    \"warehouse-alt\",\n    \"warehouse\",\n    \"washer\",\n    \"watch-calculator\",\n    \"watch-fitness\",\n    \"watch\",\n    \"water-lower\",\n    \"water-rise\",\n    \"water\",\n    \"wave-sine\",\n    \"wave-square\",\n    \"wave-triangle\",\n    \"waveform-path\",\n    \"waveform\",\n    \"webcam-slash\",\n    \"webcam\",\n    \"weight-hanging\",\n    \"weight\",\n    \"whale\",\n    \"wheat\",\n    \"wheelchair\",\n    \"whistle\",\n    \"wifi-1\",\n    \"wifi-2\",\n    \"wifi-slash\",\n    \"wifi\",\n    \"wind-turbine\",\n    \"wind-warning\",\n    \"wind\",\n    \"window-alt\",\n    \"window-close\",\n    \"window-frame-open\",\n    \"window-frame\",\n    \"window-maximize\",\n    \"window-minimize\",\n    \"window-restore\",\n    \"window\",\n    \"windsock\",\n    \"wine-bottle\",\n    \"wine-glass-alt\",\n    \"wine-glass\",\n    \"won-sign\",\n    \"wreath\",\n    \"wrench\",\n    \"x-ray\",\n    \"yen-sign\",\n    \"yin-yang\"\n  ],\n  \"solid\": [\n    \"abacus\",\n    \"acorn\",\n    \"ad\",\n    \"address-book\",\n    \"address-card\",\n    \"adjust\",\n    \"air-conditioner\",\n    \"air-freshener\",\n    \"alarm-clock\",\n    \"alarm-exclamation\",\n    \"alarm-plus\",\n    \"alarm-snooze\",\n    \"album-collection\",\n    \"album\",\n    \"alicorn\",\n    \"alien-monster\",\n    \"alien\",\n    \"align-center\",\n    \"align-justify\",\n    \"align-left\",\n    \"align-right\",\n    \"align-slash\",\n    \"allergies\",\n    \"ambulance\",\n    \"american-sign-language-interpreting\",\n    \"amp-guitar\",\n    \"analytics\",\n    \"anchor\",\n    \"angel\",\n    \"angle-double-down\",\n    \"angle-double-left\",\n    \"angle-double-right\",\n    \"angle-double-up\",\n    \"angle-down\",\n    \"angle-left\",\n    \"angle-right\",\n    \"angle-up\",\n    \"angry\",\n    \"ankh\",\n    \"apple-alt\",\n    \"apple-crate\",\n    \"archive\",\n    \"archway\",\n    \"arrow-alt-circle-down\",\n    \"arrow-alt-circle-left\",\n    \"arrow-alt-circle-right\",\n    \"arrow-alt-circle-up\",\n    \"arrow-alt-down\",\n    \"arrow-alt-from-bottom\",\n    \"arrow-alt-from-left\",\n    \"arrow-alt-from-right\",\n    \"arrow-alt-from-top\",\n    \"arrow-alt-left\",\n    \"arrow-alt-right\",\n    \"arrow-alt-square-down\",\n    \"arrow-alt-square-left\",\n    \"arrow-alt-square-right\",\n    \"arrow-alt-square-up\",\n    \"arrow-alt-to-bottom\",\n    \"arrow-alt-to-left\",\n    \"arrow-alt-to-right\",\n    \"arrow-alt-to-top\",\n    \"arrow-alt-up\",\n    \"arrow-circle-down\",\n    \"arrow-circle-left\",\n    \"arrow-circle-right\",\n    \"arrow-circle-up\",\n    \"arrow-down\",\n    \"arrow-from-bottom\",\n    \"arrow-from-left\",\n    \"arrow-from-right\",\n    \"arrow-from-top\",\n    \"arrow-left\",\n    \"arrow-right\",\n    \"arrow-square-down\",\n    \"arrow-square-left\",\n    \"arrow-square-right\",\n    \"arrow-square-up\",\n    \"arrow-to-bottom\",\n    \"arrow-to-left\",\n    \"arrow-to-right\",\n    \"arrow-to-top\",\n    \"arrow-up\",\n    \"arrows-alt-h\",\n    \"arrows-alt-v\",\n    \"arrows-alt\",\n    \"arrows-h\",\n    \"arrows-v\",\n    \"arrows\",\n    \"assistive-listening-systems\",\n    \"asterisk\",\n    \"at\",\n    \"atlas\",\n    \"atom-alt\",\n    \"atom\",\n    \"audio-description\",\n    \"award\",\n    \"axe-battle\",\n    \"axe\",\n    \"baby-carriage\",\n    \"baby\",\n    \"backpack\",\n    \"backspace\",\n    \"backward\",\n    \"bacon\",\n    \"bacteria\",\n    \"bacterium\",\n    \"badge-check\",\n    \"badge-dollar\",\n    \"badge-percent\",\n    \"badge-sheriff\",\n    \"badge\",\n    \"badger-honey\",\n    \"bags-shopping\",\n    \"bahai\",\n    \"balance-scale-left\",\n    \"balance-scale-right\",\n    \"balance-scale\",\n    \"ball-pile\",\n    \"ballot-check\",\n    \"ballot\",\n    \"ban\",\n    \"band-aid\",\n    \"banjo\",\n    \"barcode-alt\",\n    \"barcode-read\",\n    \"barcode-scan\",\n    \"barcode\",\n    \"bars\",\n    \"baseball-ball\",\n    \"baseball\",\n    \"basketball-ball\",\n    \"basketball-hoop\",\n    \"bat\",\n    \"bath\",\n    \"battery-bolt\",\n    \"battery-empty\",\n    \"battery-full\",\n    \"battery-half\",\n    \"battery-quarter\",\n    \"battery-slash\",\n    \"battery-three-quarters\",\n    \"bed-alt\",\n    \"bed-bunk\",\n    \"bed-empty\",\n    \"bed\",\n    \"beer\",\n    \"bell-exclamation\",\n    \"bell-on\",\n    \"bell-plus\",\n    \"bell-school-slash\",\n    \"bell-school\",\n    \"bell-slash\",\n    \"bell\",\n    \"bells\",\n    \"betamax\",\n    \"bezier-curve\",\n    \"bible\",\n    \"bicycle\",\n    \"biking-mountain\",\n    \"biking\",\n    \"binoculars\",\n    \"biohazard\",\n    \"birthday-cake\",\n    \"blanket\",\n    \"blender-phone\",\n    \"blender\",\n    \"blind\",\n    \"blinds-open\",\n    \"blinds-raised\",\n    \"blinds\",\n    \"blog\",\n    \"bold\",\n    \"bolt\",\n    \"bomb\",\n    \"bone-break\",\n    \"bone\",\n    \"bong\",\n    \"book-alt\",\n    \"book-dead\",\n    \"book-heart\",\n    \"book-medical\",\n    \"book-open\",\n    \"book-reader\",\n    \"book-spells\",\n    \"book-user\",\n    \"book\",\n    \"bookmark\",\n    \"books-medical\",\n    \"books\",\n    \"boombox\",\n    \"boot\",\n    \"booth-curtain\",\n    \"border-all\",\n    \"border-bottom\",\n    \"border-center-h\",\n    \"border-center-v\",\n    \"border-inner\",\n    \"border-left\",\n    \"border-none\",\n    \"border-outer\",\n    \"border-right\",\n    \"border-style-alt\",\n    \"border-style\",\n    \"border-top\",\n    \"bow-arrow\",\n    \"bowling-ball\",\n    \"bowling-pins\",\n    \"box-alt\",\n    \"box-ballot\",\n    \"box-check\",\n    \"box-fragile\",\n    \"box-full\",\n    \"box-heart\",\n    \"box-open\",\n    \"box-tissue\",\n    \"box-up\",\n    \"box-usd\",\n    \"box\",\n    \"boxes-alt\",\n    \"boxes\",\n    \"boxing-glove\",\n    \"brackets-curly\",\n    \"brackets\",\n    \"braille\",\n    \"brain\",\n    \"bread-loaf\",\n    \"bread-slice\",\n    \"briefcase-medical\",\n    \"briefcase\",\n    \"bring-forward\",\n    \"bring-front\",\n    \"broadcast-tower\",\n    \"broom\",\n    \"browser\",\n    \"brush\",\n    \"bug\",\n    \"building\",\n    \"bullhorn\",\n    \"bullseye-arrow\",\n    \"bullseye-pointer\",\n    \"bullseye\",\n    \"burger-soda\",\n    \"burn\",\n    \"burrito\",\n    \"bus-alt\",\n    \"bus-school\",\n    \"bus\",\n    \"business-time\",\n    \"cabinet-filing\",\n    \"cactus\",\n    \"calculator-alt\",\n    \"calculator\",\n    \"calendar-alt\",\n    \"calendar-check\",\n    \"calendar-day\",\n    \"calendar-edit\",\n    \"calendar-exclamation\",\n    \"calendar-minus\",\n    \"calendar-plus\",\n    \"calendar-star\",\n    \"calendar-times\",\n    \"calendar-week\",\n    \"calendar\",\n    \"camcorder\",\n    \"camera-alt\",\n    \"camera-home\",\n    \"camera-movie\",\n    \"camera-polaroid\",\n    \"camera-retro\",\n    \"camera\",\n    \"campfire\",\n    \"campground\",\n    \"candle-holder\",\n    \"candy-cane\",\n    \"candy-corn\",\n    \"cannabis\",\n    \"capsules\",\n    \"car-alt\",\n    \"car-battery\",\n    \"car-building\",\n    \"car-bump\",\n    \"car-bus\",\n    \"car-crash\",\n    \"car-garage\",\n    \"car-mechanic\",\n    \"car-side\",\n    \"car-tilt\",\n    \"car-wash\",\n    \"car\",\n    \"caravan-alt\",\n    \"caravan\",\n    \"caret-circle-down\",\n    \"caret-circle-left\",\n    \"caret-circle-right\",\n    \"caret-circle-up\",\n    \"caret-down\",\n    \"caret-left\",\n    \"caret-right\",\n    \"caret-square-down\",\n    \"caret-square-left\",\n    \"caret-square-right\",\n    \"caret-square-up\",\n    \"caret-up\",\n    \"carrot\",\n    \"cars\",\n    \"cart-arrow-down\",\n    \"cart-plus\",\n    \"cash-register\",\n    \"cassette-tape\",\n    \"cat-space\",\n    \"cat\",\n    \"cauldron\",\n    \"cctv\",\n    \"certificate\",\n    \"chair-office\",\n    \"chair\",\n    \"chalkboard-teacher\",\n    \"chalkboard\",\n    \"charging-station\",\n    \"chart-area\",\n    \"chart-bar\",\n    \"chart-line-down\",\n    \"chart-line\",\n    \"chart-network\",\n    \"chart-pie-alt\",\n    \"chart-pie\",\n    \"chart-scatter\",\n    \"check-circle\",\n    \"check-double\",\n    \"check-square\",\n    \"check\",\n    \"cheese-swiss\",\n    \"cheese\",\n    \"cheeseburger\",\n    \"chess-bishop-alt\",\n    \"chess-bishop\",\n    \"chess-board\",\n    \"chess-clock-alt\",\n    \"chess-clock\",\n    \"chess-king-alt\",\n    \"chess-king\",\n    \"chess-knight-alt\",\n    \"chess-knight\",\n    \"chess-pawn-alt\",\n    \"chess-pawn\",\n    \"chess-queen-alt\",\n    \"chess-queen\",\n    \"chess-rook-alt\",\n    \"chess-rook\",\n    \"chess\",\n    \"chevron-circle-down\",\n    \"chevron-circle-left\",\n    \"chevron-circle-right\",\n    \"chevron-circle-up\",\n    \"chevron-double-down\",\n    \"chevron-double-left\",\n    \"chevron-double-right\",\n    \"chevron-double-up\",\n    \"chevron-down\",\n    \"chevron-left\",\n    \"chevron-right\",\n    \"chevron-square-down\",\n    \"chevron-square-left\",\n    \"chevron-square-right\",\n    \"chevron-square-up\",\n    \"chevron-up\",\n    \"child\",\n    \"chimney\",\n    \"church\",\n    \"circle-notch\",\n    \"circle\",\n    \"city\",\n    \"clarinet\",\n    \"claw-marks\",\n    \"clinic-medical\",\n    \"clipboard-check\",\n    \"clipboard-list-check\",\n    \"clipboard-list\",\n    \"clipboard-prescription\",\n    \"clipboard-user\",\n    \"clipboard\",\n    \"clock\",\n    \"clone\",\n    \"closed-captioning\",\n    \"cloud-download-alt\",\n    \"cloud-download\",\n    \"cloud-drizzle\",\n    \"cloud-hail-mixed\",\n    \"cloud-hail\",\n    \"cloud-meatball\",\n    \"cloud-moon-rain\",\n    \"cloud-moon\",\n    \"cloud-music\",\n    \"cloud-rain\",\n    \"cloud-rainbow\",\n    \"cloud-showers-heavy\",\n    \"cloud-showers\",\n    \"cloud-sleet\",\n    \"cloud-snow\",\n    \"cloud-sun-rain\",\n    \"cloud-sun\",\n    \"cloud-upload-alt\",\n    \"cloud-upload\",\n    \"cloud\",\n    \"clouds-moon\",\n    \"clouds-sun\",\n    \"clouds\",\n    \"club\",\n    \"cocktail\",\n    \"code-branch\",\n    \"code-commit\",\n    \"code-merge\",\n    \"code\",\n    \"coffee-pot\",\n    \"coffee-togo\",\n    \"coffee\",\n    \"coffin-cross\",\n    \"coffin\",\n    \"cog\",\n    \"cogs\",\n    \"coin\",\n    \"coins\",\n    \"columns\",\n    \"comet\",\n    \"comment-alt-check\",\n    \"comment-alt-dollar\",\n    \"comment-alt-dots\",\n    \"comment-alt-edit\",\n    \"comment-alt-exclamation\",\n    \"comment-alt-lines\",\n    \"comment-alt-medical\",\n    \"comment-alt-minus\",\n    \"comment-alt-music\",\n    \"comment-alt-plus\",\n    \"comment-alt-slash\",\n    \"comment-alt-smile\",\n    \"comment-alt-times\",\n    \"comment-alt\",\n    \"comment-check\",\n    \"comment-dollar\",\n    \"comment-dots\",\n    \"comment-edit\",\n    \"comment-exclamation\",\n    \"comment-lines\",\n    \"comment-medical\",\n    \"comment-minus\",\n    \"comment-music\",\n    \"comment-plus\",\n    \"comment-slash\",\n    \"comment-smile\",\n    \"comment-times\",\n    \"comment\",\n    \"comments-alt-dollar\",\n    \"comments-alt\",\n    \"comments-dollar\",\n    \"comments\",\n    \"compact-disc\",\n    \"compass-slash\",\n    \"compass\",\n    \"compress-alt\",\n    \"compress-arrows-alt\",\n    \"compress-wide\",\n    \"compress\",\n    \"computer-classic\",\n    \"computer-speaker\",\n    \"concierge-bell\",\n    \"construction\",\n    \"container-storage\",\n    \"conveyor-belt-alt\",\n    \"conveyor-belt\",\n    \"cookie-bite\",\n    \"cookie\",\n    \"copy\",\n    \"copyright\",\n    \"corn\",\n    \"couch\",\n    \"cow\",\n    \"cowbell-more\",\n    \"cowbell\",\n    \"credit-card-blank\",\n    \"credit-card-front\",\n    \"credit-card\",\n    \"cricket\",\n    \"croissant\",\n    \"crop-alt\",\n    \"crop\",\n    \"cross\",\n    \"crosshairs\",\n    \"crow\",\n    \"crown\",\n    \"crutch\",\n    \"crutches\",\n    \"cube\",\n    \"cubes\",\n    \"curling\",\n    \"cut\",\n    \"dagger\",\n    \"database\",\n    \"deaf\",\n    \"debug\",\n    \"deer-rudolph\",\n    \"deer\",\n    \"democrat\",\n    \"desktop-alt\",\n    \"desktop\",\n    \"dewpoint\",\n    \"dharmachakra\",\n    \"diagnoses\",\n    \"diamond\",\n    \"dice-d10\",\n    \"dice-d12\",\n    \"dice-d20\",\n    \"dice-d4\",\n    \"dice-d6\",\n    \"dice-d8\",\n    \"dice-five\",\n    \"dice-four\",\n    \"dice-one\",\n    \"dice-six\",\n    \"dice-three\",\n    \"dice-two\",\n    \"dice\",\n    \"digging\",\n    \"digital-tachograph\",\n    \"diploma\",\n    \"directions\",\n    \"disc-drive\",\n    \"disease\",\n    \"divide\",\n    \"dizzy\",\n    \"dna\",\n    \"do-not-enter\",\n    \"dog-leashed\",\n    \"dog\",\n    \"dollar-sign\",\n    \"dolly-empty\",\n    \"dolly-flatbed-alt\",\n    \"dolly-flatbed-empty\",\n    \"dolly-flatbed\",\n    \"dolly\",\n    \"donate\",\n    \"door-closed\",\n    \"door-open\",\n    \"dot-circle\",\n    \"dove\",\n    \"download\",\n    \"drafting-compass\",\n    \"dragon\",\n    \"draw-circle\",\n    \"draw-polygon\",\n    \"draw-square\",\n    \"dreidel\",\n    \"drone-alt\",\n    \"drone\",\n    \"drum-steelpan\",\n    \"drum\",\n    \"drumstick-bite\",\n    \"drumstick\",\n    \"dryer-alt\",\n    \"dryer\",\n    \"duck\",\n    \"dumbbell\",\n    \"dumpster-fire\",\n    \"dumpster\",\n    \"dungeon\",\n    \"ear-muffs\",\n    \"ear\",\n    \"eclipse-alt\",\n    \"eclipse\",\n    \"edit\",\n    \"egg-fried\",\n    \"egg\",\n    \"eject\",\n    \"elephant\",\n    \"ellipsis-h-alt\",\n    \"ellipsis-h\",\n    \"ellipsis-v-alt\",\n    \"ellipsis-v\",\n    \"empty-set\",\n    \"engine-warning\",\n    \"envelope-open-dollar\",\n    \"envelope-open-text\",\n    \"envelope-open\",\n    \"envelope-square\",\n    \"envelope\",\n    \"equals\",\n    \"eraser\",\n    \"ethernet\",\n    \"euro-sign\",\n    \"exchange-alt\",\n    \"exchange\",\n    \"exclamation-circle\",\n    \"exclamation-square\",\n    \"exclamation-triangle\",\n    \"exclamation\",\n    \"expand-alt\",\n    \"expand-arrows-alt\",\n    \"expand-arrows\",\n    \"expand-wide\",\n    \"expand\",\n    \"external-link-alt\",\n    \"external-link-square-alt\",\n    \"external-link-square\",\n    \"external-link\",\n    \"eye-dropper\",\n    \"eye-evil\",\n    \"eye-slash\",\n    \"eye\",\n    \"fan-table\",\n    \"fan\",\n    \"farm\",\n    \"fast-backward\",\n    \"fast-forward\",\n    \"faucet-drip\",\n    \"faucet\",\n    \"fax\",\n    \"feather-alt\",\n    \"feather\",\n    \"female\",\n    \"field-hockey\",\n    \"fighter-jet\",\n    \"file-alt\",\n    \"file-archive\",\n    \"file-audio\",\n    \"file-certificate\",\n    \"file-chart-line\",\n    \"file-chart-pie\",\n    \"file-check\",\n    \"file-code\",\n    \"file-contract\",\n    \"file-csv\",\n    \"file-download\",\n    \"file-edit\",\n    \"file-excel\",\n    \"file-exclamation\",\n    \"file-export\",\n    \"file-image\",\n    \"file-import\",\n    \"file-invoice-dollar\",\n    \"file-invoice\",\n    \"file-medical-alt\",\n    \"file-medical\",\n    \"file-minus\",\n    \"file-music\",\n    \"file-pdf\",\n    \"file-plus\",\n    \"file-powerpoint\",\n    \"file-prescription\",\n    \"file-search\",\n    \"file-signature\",\n    \"file-spreadsheet\",\n    \"file-times\",\n    \"file-upload\",\n    \"file-user\",\n    \"file-video\",\n    \"file-word\",\n    \"file\",\n    \"files-medical\",\n    \"fill-drip\",\n    \"fill\",\n    \"film-alt\",\n    \"film-canister\",\n    \"film\",\n    \"filter\",\n    \"fingerprint\",\n    \"fire-alt\",\n    \"fire-extinguisher\",\n    \"fire-smoke\",\n    \"fire\",\n    \"fireplace\",\n    \"first-aid\",\n    \"fish-cooked\",\n    \"fish\",\n    \"fist-raised\",\n    \"flag-alt\",\n    \"flag-checkered\",\n    \"flag-usa\",\n    \"flag\",\n    \"flame\",\n    \"flashlight\",\n    \"flask-poison\",\n    \"flask-potion\",\n    \"flask\",\n    \"flower-daffodil\",\n    \"flower-tulip\",\n    \"flower\",\n    \"flushed\",\n    \"flute\",\n    \"flux-capacitor\",\n    \"fog\",\n    \"folder-download\",\n    \"folder-minus\",\n    \"folder-open\",\n    \"folder-plus\",\n    \"folder-times\",\n    \"folder-tree\",\n    \"folder-upload\",\n    \"folder\",\n    \"folders\",\n    \"font-awesome-logo-full\",\n    \"font-case\",\n    \"font\",\n    \"football-ball\",\n    \"football-helmet\",\n    \"forklift\",\n    \"forward\",\n    \"fragile\",\n    \"french-fries\",\n    \"frog\",\n    \"frosty-head\",\n    \"frown-open\",\n    \"frown\",\n    \"function\",\n    \"funnel-dollar\",\n    \"futbol\",\n    \"galaxy\",\n    \"game-board-alt\",\n    \"game-board\",\n    \"game-console-handheld\",\n    \"gamepad-alt\",\n    \"gamepad\",\n    \"garage-car\",\n    \"garage-open\",\n    \"garage\",\n    \"gas-pump-slash\",\n    \"gas-pump\",\n    \"gavel\",\n    \"gem\",\n    \"genderless\",\n    \"ghost\",\n    \"gift-card\",\n    \"gift\",\n    \"gifts\",\n    \"gingerbread-man\",\n    \"glass-champagne\",\n    \"glass-cheers\",\n    \"glass-citrus\",\n    \"glass-martini-alt\",\n    \"glass-martini\",\n    \"glass-whiskey-rocks\",\n    \"glass-whiskey\",\n    \"glass\",\n    \"glasses-alt\",\n    \"glasses\",\n    \"globe-africa\",\n    \"globe-americas\",\n    \"globe-asia\",\n    \"globe-europe\",\n    \"globe-snow\",\n    \"globe-stand\",\n    \"globe\",\n    \"golf-ball\",\n    \"golf-club\",\n    \"gopuram\",\n    \"graduation-cap\",\n    \"gramophone\",\n    \"greater-than-equal\",\n    \"greater-than\",\n    \"grimace\",\n    \"grin-alt\",\n    \"grin-beam-sweat\",\n    \"grin-beam\",\n    \"grin-hearts\",\n    \"grin-squint-tears\",\n    \"grin-squint\",\n    \"grin-stars\",\n    \"grin-tears\",\n    \"grin-tongue-squint\",\n    \"grin-tongue-wink\",\n    \"grin-tongue\",\n    \"grin-wink\",\n    \"grin\",\n    \"grip-horizontal\",\n    \"grip-lines-vertical\",\n    \"grip-lines\",\n    \"grip-vertical\",\n    \"guitar-electric\",\n    \"guitar\",\n    \"guitars\",\n    \"h-square\",\n    \"h1\",\n    \"h2\",\n    \"h3\",\n    \"h4\",\n    \"hamburger\",\n    \"hammer-war\",\n    \"hammer\",\n    \"hamsa\",\n    \"hand-heart\",\n    \"hand-holding-box\",\n    \"hand-holding-heart\",\n    \"hand-holding-magic\",\n    \"hand-holding-medical\",\n    \"hand-holding-seedling\",\n    \"hand-holding-usd\",\n    \"hand-holding-water\",\n    \"hand-holding\",\n    \"hand-lizard\",\n    \"hand-middle-finger\",\n    \"hand-paper\",\n    \"hand-peace\",\n    \"hand-point-down\",\n    \"hand-point-left\",\n    \"hand-point-right\",\n    \"hand-point-up\",\n    \"hand-pointer\",\n    \"hand-receiving\",\n    \"hand-rock\",\n    \"hand-scissors\",\n    \"hand-sparkles\",\n    \"hand-spock\",\n    \"hands-heart\",\n    \"hands-helping\",\n    \"hands-usd\",\n    \"hands-wash\",\n    \"hands\",\n    \"handshake-alt-slash\",\n    \"handshake-alt\",\n    \"handshake-slash\",\n    \"handshake\",\n    \"hanukiah\",\n    \"hard-hat\",\n    \"hashtag\",\n    \"hat-chef\",\n    \"hat-cowboy-side\",\n    \"hat-cowboy\",\n    \"hat-santa\",\n    \"hat-winter\",\n    \"hat-witch\",\n    \"hat-wizard\",\n    \"hdd\",\n    \"head-side-brain\",\n    \"head-side-cough-slash\",\n    \"head-side-cough\",\n    \"head-side-headphones\",\n    \"head-side-mask\",\n    \"head-side-medical\",\n    \"head-side-virus\",\n    \"head-side\",\n    \"head-vr\",\n    \"heading\",\n    \"headphones-alt\",\n    \"headphones\",\n    \"headset\",\n    \"heart-broken\",\n    \"heart-circle\",\n    \"heart-rate\",\n    \"heart-square\",\n    \"heart\",\n    \"heartbeat\",\n    \"heat\",\n    \"helicopter\",\n    \"helmet-battle\",\n    \"hexagon\",\n    \"highlighter\",\n    \"hiking\",\n    \"hippo\",\n    \"history\",\n    \"hockey-mask\",\n    \"hockey-puck\",\n    \"hockey-sticks\",\n    \"holly-berry\",\n    \"home-alt\",\n    \"home-heart\",\n    \"home-lg-alt\",\n    \"home-lg\",\n    \"home\",\n    \"hood-cloak\",\n    \"horizontal-rule\",\n    \"horse-head\",\n    \"horse-saddle\",\n    \"horse\",\n    \"hospital-alt\",\n    \"hospital-symbol\",\n    \"hospital-user\",\n    \"hospital\",\n    \"hospitals\",\n    \"hot-tub\",\n    \"hotdog\",\n    \"hotel\",\n    \"hourglass-end\",\n    \"hourglass-half\",\n    \"hourglass-start\",\n    \"hourglass\",\n    \"house-damage\",\n    \"house-day\",\n    \"house-flood\",\n    \"house-leave\",\n    \"house-night\",\n    \"house-return\",\n    \"house-signal\",\n    \"house-user\",\n    \"house\",\n    \"hryvnia\",\n    \"humidity\",\n    \"hurricane\",\n    \"i-cursor\",\n    \"ice-cream\",\n    \"ice-skate\",\n    \"icicles\",\n    \"icons-alt\",\n    \"icons\",\n    \"id-badge\",\n    \"id-card-alt\",\n    \"id-card\",\n    \"igloo\",\n    \"image-polaroid\",\n    \"image\",\n    \"images\",\n    \"inbox-in\",\n    \"inbox-out\",\n    \"inbox\",\n    \"indent\",\n    \"industry-alt\",\n    \"industry\",\n    \"infinity\",\n    \"info-circle\",\n    \"info-square\",\n    \"info\",\n    \"inhaler\",\n    \"integral\",\n    \"intersection\",\n    \"inventory\",\n    \"island-tropical\",\n    \"italic\",\n    \"jack-o-lantern\",\n    \"jedi\",\n    \"joint\",\n    \"journal-whills\",\n    \"joystick\",\n    \"jug\",\n    \"kaaba\",\n    \"kazoo\",\n    \"kerning\",\n    \"key-skeleton\",\n    \"key\",\n    \"keyboard\",\n    \"keynote\",\n    \"khanda\",\n    \"kidneys\",\n    \"kiss-beam\",\n    \"kiss-wink-heart\",\n    \"kiss\",\n    \"kite\",\n    \"kiwi-bird\",\n    \"knife-kitchen\",\n    \"lambda\",\n    \"lamp-desk\",\n    \"lamp-floor\",\n    \"lamp\",\n    \"landmark-alt\",\n    \"landmark\",\n    \"language\",\n    \"laptop-code\",\n    \"laptop-house\",\n    \"laptop-medical\",\n    \"laptop\",\n    \"lasso\",\n    \"laugh-beam\",\n    \"laugh-squint\",\n    \"laugh-wink\",\n    \"laugh\",\n    \"layer-group\",\n    \"layer-minus\",\n    \"layer-plus\",\n    \"leaf-heart\",\n    \"leaf-maple\",\n    \"leaf-oak\",\n    \"leaf\",\n    \"lemon\",\n    \"less-than-equal\",\n    \"less-than\",\n    \"level-down-alt\",\n    \"level-down\",\n    \"level-up-alt\",\n    \"level-up\",\n    \"life-ring\",\n    \"light-ceiling\",\n    \"light-switch-off\",\n    \"light-switch-on\",\n    \"light-switch\",\n    \"lightbulb-dollar\",\n    \"lightbulb-exclamation\",\n    \"lightbulb-on\",\n    \"lightbulb-slash\",\n    \"lightbulb\",\n    \"lights-holiday\",\n    \"line-columns\",\n    \"line-height\",\n    \"link\",\n    \"lips\",\n    \"lira-sign\",\n    \"list-alt\",\n    \"list-music\",\n    \"list-ol\",\n    \"list-ul\",\n    \"list\",\n    \"location-arrow\",\n    \"location-circle\",\n    \"location-slash\",\n    \"location\",\n    \"lock-alt\",\n    \"lock-open-alt\",\n    \"lock-open\",\n    \"lock\",\n    \"long-arrow-alt-down\",\n    \"long-arrow-alt-left\",\n    \"long-arrow-alt-right\",\n    \"long-arrow-alt-up\",\n    \"long-arrow-down\",\n    \"long-arrow-left\",\n    \"long-arrow-right\",\n    \"long-arrow-up\",\n    \"loveseat\",\n    \"low-vision\",\n    \"luchador\",\n    \"luggage-cart\",\n    \"lungs-virus\",\n    \"lungs\",\n    \"mace\",\n    \"magic\",\n    \"magnet\",\n    \"mail-bulk\",\n    \"mailbox\",\n    \"male\",\n    \"mandolin\",\n    \"map-marked-alt\",\n    \"map-marked\",\n    \"map-marker-alt-slash\",\n    \"map-marker-alt\",\n    \"map-marker-check\",\n    \"map-marker-edit\",\n    \"map-marker-exclamation\",\n    \"map-marker-minus\",\n    \"map-marker-plus\",\n    \"map-marker-question\",\n    \"map-marker-slash\",\n    \"map-marker-smile\",\n    \"map-marker-times\",\n    \"map-marker\",\n    \"map-pin\",\n    \"map-signs\",\n    \"map\",\n    \"marker\",\n    \"mars-double\",\n    \"mars-stroke-h\",\n    \"mars-stroke-v\",\n    \"mars-stroke\",\n    \"mars\",\n    \"mask\",\n    \"meat\",\n    \"medal\",\n    \"medkit\",\n    \"megaphone\",\n    \"meh-blank\",\n    \"meh-rolling-eyes\",\n    \"meh\",\n    \"memory\",\n    \"menorah\",\n    \"mercury\",\n    \"meteor\",\n    \"microchip\",\n    \"microphone-alt-slash\",\n    \"microphone-alt\",\n    \"microphone-slash\",\n    \"microphone-stand\",\n    \"microphone\",\n    \"microscope\",\n    \"microwave\",\n    \"mind-share\",\n    \"minus-circle\",\n    \"minus-hexagon\",\n    \"minus-octagon\",\n    \"minus-square\",\n    \"minus\",\n    \"mistletoe\",\n    \"mitten\",\n    \"mobile-alt\",\n    \"mobile-android-alt\",\n    \"mobile-android\",\n    \"mobile\",\n    \"money-bill-alt\",\n    \"money-bill-wave-alt\",\n    \"money-bill-wave\",\n    \"money-bill\",\n    \"money-check-alt\",\n    \"money-check-edit-alt\",\n    \"money-check-edit\",\n    \"money-check\",\n    \"monitor-heart-rate\",\n    \"monkey\",\n    \"monument\",\n    \"moon-cloud\",\n    \"moon-stars\",\n    \"moon\",\n    \"mortar-pestle\",\n    \"mosque\",\n    \"motorcycle\",\n    \"mountain\",\n    \"mountains\",\n    \"mouse-alt\",\n    \"mouse-pointer\",\n    \"mouse\",\n    \"mp3-player\",\n    \"mug-hot\",\n    \"mug-marshmallows\",\n    \"mug-tea\",\n    \"mug\",\n    \"music-alt-slash\",\n    \"music-alt\",\n    \"music-slash\",\n    \"music\",\n    \"narwhal\",\n    \"network-wired\",\n    \"neuter\",\n    \"newspaper\",\n    \"not-equal\",\n    \"notes-medical\",\n    \"object-group\",\n    \"object-ungroup\",\n    \"octagon\",\n    \"oil-can\",\n    \"oil-temp\",\n    \"om\",\n    \"omega\",\n    \"ornament\",\n    \"otter\",\n    \"outdent\",\n    \"outlet\",\n    \"oven\",\n    \"overline\",\n    \"page-break\",\n    \"pager\",\n    \"paint-brush-alt\",\n    \"paint-brush\",\n    \"paint-roller\",\n    \"palette\",\n    \"pallet-alt\",\n    \"pallet\",\n    \"paper-plane\",\n    \"paperclip\",\n    \"parachute-box\",\n    \"paragraph-rtl\",\n    \"paragraph\",\n    \"parking-circle-slash\",\n    \"parking-circle\",\n    \"parking-slash\",\n    \"parking\",\n    \"passport\",\n    \"pastafarianism\",\n    \"paste\",\n    \"pause-circle\",\n    \"pause\",\n    \"paw-alt\",\n    \"paw-claws\",\n    \"paw\",\n    \"peace\",\n    \"pegasus\",\n    \"pen-alt\",\n    \"pen-fancy\",\n    \"pen-nib\",\n    \"pen-square\",\n    \"pen\",\n    \"pencil-alt\",\n    \"pencil-paintbrush\",\n    \"pencil-ruler\",\n    \"pencil\",\n    \"pennant\",\n    \"people-arrows\",\n    \"people-carry\",\n    \"pepper-hot\",\n    \"percent\",\n    \"percentage\",\n    \"person-booth\",\n    \"person-carry\",\n    \"person-dolly-empty\",\n    \"person-dolly\",\n    \"person-sign\",\n    \"phone-alt\",\n    \"phone-laptop\",\n    \"phone-office\",\n    \"phone-plus\",\n    \"phone-rotary\",\n    \"phone-slash\",\n    \"phone-square-alt\",\n    \"phone-square\",\n    \"phone-volume\",\n    \"phone\",\n    \"photo-video\",\n    \"pi\",\n    \"piano-keyboard\",\n    \"piano\",\n    \"pie\",\n    \"pig\",\n    \"piggy-bank\",\n    \"pills\",\n    \"pizza-slice\",\n    \"pizza\",\n    \"place-of-worship\",\n    \"plane-alt\",\n    \"plane-arrival\",\n    \"plane-departure\",\n    \"plane-slash\",\n    \"plane\",\n    \"planet-moon\",\n    \"planet-ringed\",\n    \"play-circle\",\n    \"play\",\n    \"plug\",\n    \"plus-circle\",\n    \"plus-hexagon\",\n    \"plus-octagon\",\n    \"plus-square\",\n    \"plus\",\n    \"podcast\",\n    \"podium-star\",\n    \"podium\",\n    \"police-box\",\n    \"poll-h\",\n    \"poll-people\",\n    \"poll\",\n    \"poo-storm\",\n    \"poo\",\n    \"poop\",\n    \"popcorn\",\n    \"portal-enter\",\n    \"portal-exit\",\n    \"portrait\",\n    \"pound-sign\",\n    \"power-off\",\n    \"pray\",\n    \"praying-hands\",\n    \"prescription-bottle-alt\",\n    \"prescription-bottle\",\n    \"prescription\",\n    \"presentation\",\n    \"print-search\",\n    \"print-slash\",\n    \"print\",\n    \"procedures\",\n    \"project-diagram\",\n    \"projector\",\n    \"pump-medical\",\n    \"pump-soap\",\n    \"pumpkin\",\n    \"puzzle-piece\",\n    \"qrcode\",\n    \"question-circle\",\n    \"question-square\",\n    \"question\",\n    \"quidditch\",\n    \"quote-left\",\n    \"quote-right\",\n    \"quran\",\n    \"rabbit-fast\",\n    \"rabbit\",\n    \"racquet\",\n    \"radar\",\n    \"radiation-alt\",\n    \"radiation\",\n    \"radio-alt\",\n    \"radio\",\n    \"rainbow\",\n    \"raindrops\",\n    \"ram\",\n    \"ramp-loading\",\n    \"random\",\n    \"raygun\",\n    \"receipt\",\n    \"record-vinyl\",\n    \"rectangle-landscape\",\n    \"rectangle-portrait\",\n    \"rectangle-wide\",\n    \"recycle\",\n    \"redo-alt\",\n    \"redo\",\n    \"refrigerator\",\n    \"registered\",\n    \"remove-format\",\n    \"repeat-1-alt\",\n    \"repeat-1\",\n    \"repeat-alt\",\n    \"repeat\",\n    \"reply-all\",\n    \"reply\",\n    \"republican\",\n    \"restroom\",\n    \"retweet-alt\",\n    \"retweet\",\n    \"ribbon\",\n    \"ring\",\n    \"rings-wedding\",\n    \"road\",\n    \"robot\",\n    \"rocket-launch\",\n    \"rocket\",\n    \"route-highway\",\n    \"route-interstate\",\n    \"route\",\n    \"router\",\n    \"rss-square\",\n    \"rss\",\n    \"ruble-sign\",\n    \"ruler-combined\",\n    \"ruler-horizontal\",\n    \"ruler-triangle\",\n    \"ruler-vertical\",\n    \"ruler\",\n    \"running\",\n    \"rupee-sign\",\n    \"rv\",\n    \"sack-dollar\",\n    \"sack\",\n    \"sad-cry\",\n    \"sad-tear\",\n    \"salad\",\n    \"sandwich\",\n    \"satellite-dish\",\n    \"satellite\",\n    \"sausage\",\n    \"save\",\n    \"sax-hot\",\n    \"saxophone\",\n    \"scalpel-path\",\n    \"scalpel\",\n    \"scanner-image\",\n    \"scanner-keyboard\",\n    \"scanner-touchscreen\",\n    \"scanner\",\n    \"scarecrow\",\n    \"scarf\",\n    \"school\",\n    \"screwdriver\",\n    \"scroll-old\",\n    \"scroll\",\n    \"scrubber\",\n    \"scythe\",\n    \"sd-card\",\n    \"search-dollar\",\n    \"search-location\",\n    \"search-minus\",\n    \"search-plus\",\n    \"search\",\n    \"seedling\",\n    \"send-back\",\n    \"send-backward\",\n    \"sensor-alert\",\n    \"sensor-fire\",\n    \"sensor-on\",\n    \"sensor-smoke\",\n    \"sensor\",\n    \"server\",\n    \"shapes\",\n    \"share-all\",\n    \"share-alt-square\",\n    \"share-alt\",\n    \"share-square\",\n    \"share\",\n    \"sheep\",\n    \"shekel-sign\",\n    \"shield-alt\",\n    \"shield-check\",\n    \"shield-cross\",\n    \"shield-virus\",\n    \"shield\",\n    \"ship\",\n    \"shipping-fast\",\n    \"shipping-timed\",\n    \"shish-kebab\",\n    \"shoe-prints\",\n    \"shopping-bag\",\n    \"shopping-basket\",\n    \"shopping-cart\",\n    \"shovel-snow\",\n    \"shovel\",\n    \"shower\",\n    \"shredder\",\n    \"shuttle-van\",\n    \"shuttlecock\",\n    \"sickle\",\n    \"sigma\",\n    \"sign-in-alt\",\n    \"sign-in\",\n    \"sign-language\",\n    \"sign-out-alt\",\n    \"sign-out\",\n    \"sign\",\n    \"signal-1\",\n    \"signal-2\",\n    \"signal-3\",\n    \"signal-4\",\n    \"signal-alt-1\",\n    \"signal-alt-2\",\n    \"signal-alt-3\",\n    \"signal-alt-slash\",\n    \"signal-alt\",\n    \"signal-slash\",\n    \"signal-stream\",\n    \"signal\",\n    \"signature\",\n    \"sim-card\",\n    \"sink\",\n    \"siren-on\",\n    \"siren\",\n    \"sitemap\",\n    \"skating\",\n    \"skeleton\",\n    \"ski-jump\",\n    \"ski-lift\",\n    \"skiing-nordic\",\n    \"skiing\",\n    \"skull-cow\",\n    \"skull-crossbones\",\n    \"skull\",\n    \"slash\",\n    \"sledding\",\n    \"sleigh\",\n    \"sliders-h-square\",\n    \"sliders-h\",\n    \"sliders-v-square\",\n    \"sliders-v\",\n    \"smile-beam\",\n    \"smile-plus\",\n    \"smile-wink\",\n    \"smile\",\n    \"smog\",\n    \"smoke\",\n    \"smoking-ban\",\n    \"smoking\",\n    \"sms\",\n    \"snake\",\n    \"snooze\",\n    \"snow-blowing\",\n    \"snowboarding\",\n    \"snowflake\",\n    \"snowflakes\",\n    \"snowman\",\n    \"snowmobile\",\n    \"snowplow\",\n    \"soap\",\n    \"socks\",\n    \"solar-panel\",\n    \"solar-system\",\n    \"sort-alpha-down-alt\",\n    \"sort-alpha-down\",\n    \"sort-alpha-up-alt\",\n    \"sort-alpha-up\",\n    \"sort-alt\",\n    \"sort-amount-down-alt\",\n    \"sort-amount-down\",\n    \"sort-amount-up-alt\",\n    \"sort-amount-up\",\n    \"sort-circle-down\",\n    \"sort-circle-up\",\n    \"sort-circle\",\n    \"sort-down\",\n    \"sort-numeric-down-alt\",\n    \"sort-numeric-down\",\n    \"sort-numeric-up-alt\",\n    \"sort-numeric-up\",\n    \"sort-shapes-down-alt\",\n    \"sort-shapes-down\",\n    \"sort-shapes-up-alt\",\n    \"sort-shapes-up\",\n    \"sort-size-down-alt\",\n    \"sort-size-down\",\n    \"sort-size-up-alt\",\n    \"sort-size-up\",\n    \"sort-up\",\n    \"sort\",\n    \"soup\",\n    \"spa\",\n    \"space-shuttle\",\n    \"space-station-moon-alt\",\n    \"space-station-moon\",\n    \"spade\",\n    \"sparkles\",\n    \"speaker\",\n    \"speakers\",\n    \"spell-check\",\n    \"spider-black-widow\",\n    \"spider-web\",\n    \"spider\",\n    \"spinner-third\",\n    \"spinner\",\n    \"splotch\",\n    \"spray-can\",\n    \"sprinkler\",\n    \"square-full\",\n    \"square-root-alt\",\n    \"square-root\",\n    \"square\",\n    \"squirrel\",\n    \"staff\",\n    \"stamp\",\n    \"star-and-crescent\",\n    \"star-christmas\",\n    \"star-exclamation\",\n    \"star-half-alt\",\n    \"star-half\",\n    \"star-of-david\",\n    \"star-of-life\",\n    \"star-shooting\",\n    \"star\",\n    \"starfighter-alt\",\n    \"starfighter\",\n    \"stars\",\n    \"starship-freighter\",\n    \"starship\",\n    \"steak\",\n    \"steering-wheel\",\n    \"step-backward\",\n    \"step-forward\",\n    \"stethoscope\",\n    \"sticky-note\",\n    \"stocking\",\n    \"stomach\",\n    \"stop-circle\",\n    \"stop\",\n    \"stopwatch-20\",\n    \"stopwatch\",\n    \"store-alt-slash\",\n    \"store-alt\",\n    \"store-slash\",\n    \"store\",\n    \"stream\",\n    \"street-view\",\n    \"stretcher\",\n    \"strikethrough\",\n    \"stroopwafel\",\n    \"subscript\",\n    \"subway\",\n    \"suitcase-rolling\",\n    \"suitcase\",\n    \"sun-cloud\",\n    \"sun-dust\",\n    \"sun-haze\",\n    \"sun\",\n    \"sunglasses\",\n    \"sunrise\",\n    \"sunset\",\n    \"superscript\",\n    \"surprise\",\n    \"swatchbook\",\n    \"swimmer\",\n    \"swimming-pool\",\n    \"sword-laser-alt\",\n    \"sword-laser\",\n    \"sword\",\n    \"swords-laser\",\n    \"swords\",\n    \"synagogue\",\n    \"sync-alt\",\n    \"sync\",\n    \"syringe\",\n    \"table-tennis\",\n    \"table\",\n    \"tablet-alt\",\n    \"tablet-android-alt\",\n    \"tablet-android\",\n    \"tablet-rugged\",\n    \"tablet\",\n    \"tablets\",\n    \"tachometer-alt-average\",\n    \"tachometer-alt-fast\",\n    \"tachometer-alt-fastest\",\n    \"tachometer-alt-slow\",\n    \"tachometer-alt-slowest\",\n    \"tachometer-alt\",\n    \"tachometer-average\",\n    \"tachometer-fast\",\n    \"tachometer-fastest\",\n    \"tachometer-slow\",\n    \"tachometer-slowest\",\n    \"tachometer\",\n    \"taco\",\n    \"tag\",\n    \"tags\",\n    \"tally\",\n    \"tanakh\",\n    \"tape\",\n    \"tasks-alt\",\n    \"tasks\",\n    \"taxi\",\n    \"teeth-open\",\n    \"teeth\",\n    \"telescope\",\n    \"temperature-down\",\n    \"temperature-frigid\",\n    \"temperature-high\",\n    \"temperature-hot\",\n    \"temperature-low\",\n    \"temperature-up\",\n    \"tenge\",\n    \"tennis-ball\",\n    \"terminal\",\n    \"text-height\",\n    \"text-size\",\n    \"text-width\",\n    \"text\",\n    \"th-large\",\n    \"th-list\",\n    \"th\",\n    \"theater-masks\",\n    \"thermometer-empty\",\n    \"thermometer-full\",\n    \"thermometer-half\",\n    \"thermometer-quarter\",\n    \"thermometer-three-quarters\",\n    \"thermometer\",\n    \"theta\",\n    \"thumbs-down\",\n    \"thumbs-up\",\n    \"thumbtack\",\n    \"thunderstorm-moon\",\n    \"thunderstorm-sun\",\n    \"thunderstorm\",\n    \"ticket-alt\",\n    \"ticket\",\n    \"tilde\",\n    \"times-circle\",\n    \"times-hexagon\",\n    \"times-octagon\",\n    \"times-square\",\n    \"times\",\n    \"tint-slash\",\n    \"tint\",\n    \"tire-flat\",\n    \"tire-pressure-warning\",\n    \"tire-rugged\",\n    \"tire\",\n    \"tired\",\n    \"toggle-off\",\n    \"toggle-on\",\n    \"toilet-paper-alt\",\n    \"toilet-paper-slash\",\n    \"toilet-paper\",\n    \"toilet\",\n    \"tombstone-alt\",\n    \"tombstone\",\n    \"toolbox\",\n    \"tools\",\n    \"tooth\",\n    \"toothbrush\",\n    \"torah\",\n    \"torii-gate\",\n    \"tornado\",\n    \"tractor\",\n    \"trademark\",\n    \"traffic-cone\",\n    \"traffic-light-go\",\n    \"traffic-light-slow\",\n    \"traffic-light-stop\",\n    \"traffic-light\",\n    \"trailer\",\n    \"train\",\n    \"tram\",\n    \"transgender-alt\",\n    \"transgender\",\n    \"transporter-1\",\n    \"transporter-2\",\n    \"transporter-3\",\n    \"transporter-empty\",\n    \"transporter\",\n    \"trash-alt\",\n    \"trash-restore-alt\",\n    \"trash-restore\",\n    \"trash-undo-alt\",\n    \"trash-undo\",\n    \"trash\",\n    \"treasure-chest\",\n    \"tree-alt\",\n    \"tree-christmas\",\n    \"tree-decorated\",\n    \"tree-large\",\n    \"tree-palm\",\n    \"tree\",\n    \"trees\",\n    \"triangle-music\",\n    \"triangle\",\n    \"trophy-alt\",\n    \"trophy\",\n    \"truck-container\",\n    \"truck-couch\",\n    \"truck-loading\",\n    \"truck-monster\",\n    \"truck-moving\",\n    \"truck-pickup\",\n    \"truck-plow\",\n    \"truck-ramp\",\n    \"truck\",\n    \"trumpet\",\n    \"tshirt\",\n    \"tty\",\n    \"turkey\",\n    \"turntable\",\n    \"turtle\",\n    \"tv-alt\",\n    \"tv-music\",\n    \"tv-retro\",\n    \"tv\",\n    \"typewriter\",\n    \"ufo-beam\",\n    \"ufo\",\n    \"umbrella-beach\",\n    \"umbrella\",\n    \"underline\",\n    \"undo-alt\",\n    \"undo\",\n    \"unicorn\",\n    \"union\",\n    \"universal-access\",\n    \"university\",\n    \"unlink\",\n    \"unlock-alt\",\n    \"unlock\",\n    \"upload\",\n    \"usb-drive\",\n    \"usd-circle\",\n    \"usd-square\",\n    \"user-alien\",\n    \"user-alt-slash\",\n    \"user-alt\",\n    \"user-astronaut\",\n    \"user-chart\",\n    \"user-check\",\n    \"user-circle\",\n    \"user-clock\",\n    \"user-cog\",\n    \"user-cowboy\",\n    \"user-crown\",\n    \"user-edit\",\n    \"user-friends\",\n    \"user-graduate\",\n    \"user-hard-hat\",\n    \"user-headset\",\n    \"user-injured\",\n    \"user-lock\",\n    \"user-md-chat\",\n    \"user-md\",\n    \"user-minus\",\n    \"user-music\",\n    \"user-ninja\",\n    \"user-nurse\",\n    \"user-plus\",\n    \"user-robot\",\n    \"user-secret\",\n    \"user-shield\",\n    \"user-slash\",\n    \"user-tag\",\n    \"user-tie\",\n    \"user-times\",\n    \"user-unlock\",\n    \"user-visor\",\n    \"user\",\n    \"users-class\",\n    \"users-cog\",\n    \"users-crown\",\n    \"users-medical\",\n    \"users-slash\",\n    \"users\",\n    \"utensil-fork\",\n    \"utensil-knife\",\n    \"utensil-spoon\",\n    \"utensils-alt\",\n    \"utensils\",\n    \"vacuum-robot\",\n    \"vacuum\",\n    \"value-absolute\",\n    \"vector-square\",\n    \"venus-double\",\n    \"venus-mars\",\n    \"venus\",\n    \"vest-patches\",\n    \"vest\",\n    \"vhs\",\n    \"vial\",\n    \"vials\",\n    \"video-plus\",\n    \"video-slash\",\n    \"video\",\n    \"vihara\",\n    \"violin\",\n    \"virus-slash\",\n    \"virus\",\n    \"viruses\",\n    \"voicemail\",\n    \"volcano\",\n    \"volleyball-ball\",\n    \"volume-down\",\n    \"volume-mute\",\n    \"volume-off\",\n    \"volume-slash\",\n    \"volume-up\",\n    \"volume\",\n    \"vote-nay\",\n    \"vote-yea\",\n    \"vr-cardboard\",\n    \"wagon-covered\",\n    \"walker\",\n    \"walkie-talkie\",\n    \"walking\",\n    \"wallet\",\n    \"wand-magic\",\n    \"wand\",\n    \"warehouse-alt\",\n    \"warehouse\",\n    \"washer\",\n    \"watch-calculator\",\n    \"watch-fitness\",\n    \"watch\",\n    \"water-lower\",\n    \"water-rise\",\n    \"water\",\n    \"wave-sine\",\n    \"wave-square\",\n    \"wave-triangle\",\n    \"waveform-path\",\n    \"waveform\",\n    \"webcam-slash\",\n    \"webcam\",\n    \"weight-hanging\",\n    \"weight\",\n    \"whale\",\n    \"wheat\",\n    \"wheelchair\",\n    \"whistle\",\n    \"wifi-1\",\n    \"wifi-2\",\n    \"wifi-slash\",\n    \"wifi\",\n    \"wind-turbine\",\n    \"wind-warning\",\n    \"wind\",\n    \"window-alt\",\n    \"window-close\",\n    \"window-frame-open\",\n    \"window-frame\",\n    \"window-maximize\",\n    \"window-minimize\",\n    \"window-restore\",\n    \"window\",\n    \"windsock\",\n    \"wine-bottle\",\n    \"wine-glass-alt\",\n    \"wine-glass\",\n    \"won-sign\",\n    \"wreath\",\n    \"wrench\",\n    \"x-ray\",\n    \"yen-sign\",\n    \"yin-yang\"\n  ]\n}\r\n"
  },
  {
    "path": "packages/fontawesome5-pro/glyphmaps/FontAwesome5Pro_regular.json",
    "content": "{\"abacus\":63040,\"acorn\":63150,\"ad\":63041,\"address-book\":62137,\"address-card\":62139,\"adjust\":61506,\"air-conditioner\":63732,\"air-freshener\":62928,\"alarm-clock\":62286,\"alarm-exclamation\":63555,\"alarm-plus\":63556,\"alarm-snooze\":63557,\"album-collection\":63648,\"album\":63647,\"alicorn\":63152,\"alien-monster\":63734,\"alien\":63733,\"align-center\":61495,\"align-justify\":61497,\"align-left\":61494,\"align-right\":61496,\"align-slash\":63558,\"allergies\":62561,\"ambulance\":61689,\"american-sign-language-interpreting\":62115,\"amp-guitar\":63649,\"analytics\":63043,\"anchor\":61757,\"angel\":63353,\"angle-double-down\":61699,\"angle-double-left\":61696,\"angle-double-right\":61697,\"angle-double-up\":61698,\"angle-down\":61703,\"angle-left\":61700,\"angle-right\":61701,\"angle-up\":61702,\"angry\":62806,\"ankh\":63044,\"apple-alt\":62929,\"apple-crate\":63153,\"archive\":61831,\"archway\":62807,\"arrow-alt-circle-down\":62296,\"arrow-alt-circle-left\":62297,\"arrow-alt-circle-right\":62298,\"arrow-alt-circle-up\":62299,\"arrow-alt-down\":62292,\"arrow-alt-from-bottom\":62278,\"arrow-alt-from-left\":62279,\"arrow-alt-from-right\":62280,\"arrow-alt-from-top\":62281,\"arrow-alt-left\":62293,\"arrow-alt-right\":62294,\"arrow-alt-square-down\":62288,\"arrow-alt-square-left\":62289,\"arrow-alt-square-right\":62290,\"arrow-alt-square-up\":62291,\"arrow-alt-to-bottom\":62282,\"arrow-alt-to-left\":62283,\"arrow-alt-to-right\":62284,\"arrow-alt-to-top\":62285,\"arrow-alt-up\":62295,\"arrow-circle-down\":61611,\"arrow-circle-left\":61608,\"arrow-circle-right\":61609,\"arrow-circle-up\":61610,\"arrow-down\":61539,\"arrow-from-bottom\":62274,\"arrow-from-left\":62275,\"arrow-from-right\":62276,\"arrow-from-top\":62277,\"arrow-left\":61536,\"arrow-right\":61537,\"arrow-square-down\":62265,\"arrow-square-left\":62266,\"arrow-square-right\":62267,\"arrow-square-up\":62268,\"arrow-to-bottom\":62269,\"arrow-to-left\":62270,\"arrow-to-right\":62272,\"arrow-to-top\":62273,\"arrow-up\":61538,\"arrows-alt-h\":62263,\"arrows-alt-v\":62264,\"arrows-alt\":61618,\"arrows-h\":61566,\"arrows-v\":61565,\"arrows\":61511,\"assistive-listening-systems\":62114,\"asterisk\":61545,\"at\":61946,\"atlas\":62808,\"atom-alt\":62931,\"atom\":62930,\"audio-description\":62110,\"award\":62809,\"axe-battle\":63155,\"axe\":63154,\"baby-carriage\":63357,\"baby\":63356,\"backpack\":62932,\"backspace\":62810,\"backward\":61514,\"bacon\":63461,\"bacteria\":57433,\"bacterium\":57434,\"badge-check\":62262,\"badge-dollar\":63045,\"badge-percent\":63046,\"badge-sheriff\":63650,\"badge\":62261,\"badger-honey\":63156,\"bags-shopping\":63559,\"bahai\":63078,\"balance-scale-left\":62741,\"balance-scale-right\":62742,\"balance-scale\":62030,\"ball-pile\":63358,\"ballot-check\":63283,\"ballot\":63282,\"ban\":61534,\"band-aid\":62562,\"banjo\":63651,\"barcode-alt\":62563,\"barcode-read\":62564,\"barcode-scan\":62565,\"barcode\":61482,\"bars\":61641,\"baseball-ball\":62515,\"baseball\":62514,\"basketball-ball\":62516,\"basketball-hoop\":62517,\"bat\":63157,\"bath\":62157,\"battery-bolt\":62326,\"battery-empty\":62020,\"battery-full\":62016,\"battery-half\":62018,\"battery-quarter\":62019,\"battery-slash\":62327,\"battery-three-quarters\":62017,\"bed-alt\":63735,\"bed-bunk\":63736,\"bed-empty\":63737,\"bed\":62006,\"beer\":61692,\"bell-exclamation\":63560,\"bell-on\":63738,\"bell-plus\":63561,\"bell-school-slash\":62934,\"bell-school\":62933,\"bell-slash\":61942,\"bell\":61683,\"bells\":63359,\"betamax\":63652,\"bezier-curve\":62811,\"bible\":63047,\"bicycle\":61958,\"biking-mountain\":63563,\"biking\":63562,\"binoculars\":61925,\"biohazard\":63360,\"birthday-cake\":61949,\"blanket\":62616,\"blender-phone\":63158,\"blender\":62743,\"blind\":62109,\"blinds-open\":63740,\"blinds-raised\":63741,\"blinds\":63739,\"blog\":63361,\"bold\":61490,\"bolt\":61671,\"bomb\":61922,\"bone-break\":62936,\"bone\":62935,\"bong\":62812,\"book-alt\":62937,\"book-dead\":63159,\"book-heart\":62617,\"book-medical\":63462,\"book-open\":62744,\"book-reader\":62938,\"book-spells\":63160,\"book-user\":63463,\"book\":61485,\"bookmark\":61486,\"books-medical\":63464,\"books\":62939,\"boombox\":63653,\"boot\":63362,\"booth-curtain\":63284,\"border-all\":63564,\"border-bottom\":63565,\"border-center-h\":63644,\"border-center-v\":63645,\"border-inner\":63566,\"border-left\":63567,\"border-none\":63568,\"border-outer\":63569,\"border-right\":63570,\"border-style-alt\":63572,\"border-style\":63571,\"border-top\":63573,\"bow-arrow\":63161,\"bowling-ball\":62518,\"bowling-pins\":62519,\"box-alt\":62618,\"box-ballot\":63285,\"box-check\":62567,\"box-fragile\":62619,\"box-full\":62620,\"box-heart\":62621,\"box-open\":62622,\"box-tissue\":57435,\"box-up\":62623,\"box-usd\":62624,\"box\":62566,\"boxes-alt\":62625,\"boxes\":62568,\"boxing-glove\":62520,\"brackets-curly\":63466,\"brackets\":63465,\"braille\":62113,\"brain\":62940,\"bread-loaf\":63467,\"bread-slice\":63468,\"briefcase-medical\":62569,\"briefcase\":61617,\"bring-forward\":63574,\"bring-front\":63575,\"broadcast-tower\":62745,\"broom\":62746,\"browser\":62334,\"brush\":62813,\"bug\":61832,\"building\":61869,\"bullhorn\":61601,\"bullseye-arrow\":63048,\"bullseye-pointer\":63049,\"bullseye\":61760,\"burger-soda\":63576,\"burn\":62570,\"burrito\":63469,\"bus-alt\":62814,\"bus-school\":62941,\"bus\":61959,\"business-time\":63050,\"cabinet-filing\":63051,\"cactus\":63655,\"calculator-alt\":63052,\"calculator\":61932,\"calendar-alt\":61555,\"calendar-check\":62068,\"calendar-day\":63363,\"calendar-edit\":62259,\"calendar-exclamation\":62260,\"calendar-minus\":62066,\"calendar-plus\":62065,\"calendar-star\":63286,\"calendar-times\":62067,\"calendar-week\":63364,\"calendar\":61747,\"camcorder\":63656,\"camera-alt\":62258,\"camera-home\":63742,\"camera-movie\":63657,\"camera-polaroid\":63658,\"camera-retro\":61571,\"camera\":61488,\"campfire\":63162,\"campground\":63163,\"candle-holder\":63164,\"candy-cane\":63366,\"candy-corn\":63165,\"cannabis\":62815,\"capsules\":62571,\"car-alt\":62942,\"car-battery\":62943,\"car-building\":63577,\"car-bump\":62944,\"car-bus\":63578,\"car-crash\":62945,\"car-garage\":62946,\"car-mechanic\":62947,\"car-side\":62948,\"car-tilt\":62949,\"car-wash\":62950,\"car\":61881,\"caravan-alt\":57344,\"caravan\":63743,\"caret-circle-down\":62253,\"caret-circle-left\":62254,\"caret-circle-right\":62256,\"caret-circle-up\":62257,\"caret-down\":61655,\"caret-left\":61657,\"caret-right\":61658,\"caret-square-down\":61776,\"caret-square-left\":61841,\"caret-square-right\":61778,\"caret-square-up\":61777,\"caret-up\":61656,\"carrot\":63367,\"cars\":63579,\"cart-arrow-down\":61976,\"cart-plus\":61975,\"cash-register\":63368,\"cassette-tape\":63659,\"cat-space\":57345,\"cat\":63166,\"cauldron\":63167,\"cctv\":63660,\"certificate\":61603,\"chair-office\":63169,\"chair\":63168,\"chalkboard-teacher\":62748,\"chalkboard\":62747,\"charging-station\":62951,\"chart-area\":61950,\"chart-bar\":61568,\"chart-line-down\":63053,\"chart-line\":61953,\"chart-network\":63370,\"chart-pie-alt\":63054,\"chart-pie\":61952,\"chart-scatter\":63470,\"check-circle\":61528,\"check-double\":62816,\"check-square\":61770,\"check\":61452,\"cheese-swiss\":63472,\"cheese\":63471,\"cheeseburger\":63473,\"chess-bishop-alt\":62523,\"chess-bishop\":62522,\"chess-board\":62524,\"chess-clock-alt\":62526,\"chess-clock\":62525,\"chess-king-alt\":62528,\"chess-king\":62527,\"chess-knight-alt\":62530,\"chess-knight\":62529,\"chess-pawn-alt\":62532,\"chess-pawn\":62531,\"chess-queen-alt\":62534,\"chess-queen\":62533,\"chess-rook-alt\":62536,\"chess-rook\":62535,\"chess\":62521,\"chevron-circle-down\":61754,\"chevron-circle-left\":61751,\"chevron-circle-right\":61752,\"chevron-circle-up\":61753,\"chevron-double-down\":62242,\"chevron-double-left\":62243,\"chevron-double-right\":62244,\"chevron-double-up\":62245,\"chevron-down\":61560,\"chevron-left\":61523,\"chevron-right\":61524,\"chevron-square-down\":62249,\"chevron-square-left\":62250,\"chevron-square-right\":62251,\"chevron-square-up\":62252,\"chevron-up\":61559,\"child\":61870,\"chimney\":63371,\"church\":62749,\"circle-notch\":61902,\"circle\":61713,\"city\":63055,\"clarinet\":63661,\"claw-marks\":63170,\"clinic-medical\":63474,\"clipboard-check\":62572,\"clipboard-list-check\":63287,\"clipboard-list\":62573,\"clipboard-prescription\":62952,\"clipboard-user\":63475,\"clipboard\":62248,\"clock\":61463,\"clone\":62029,\"closed-captioning\":61962,\"cloud-download-alt\":62337,\"cloud-download\":61677,\"cloud-drizzle\":63288,\"cloud-hail-mixed\":63290,\"cloud-hail\":63289,\"cloud-meatball\":63291,\"cloud-moon-rain\":63292,\"cloud-moon\":63171,\"cloud-music\":63662,\"cloud-rain\":63293,\"cloud-rainbow\":63294,\"cloud-showers-heavy\":63296,\"cloud-showers\":63295,\"cloud-sleet\":63297,\"cloud-snow\":63298,\"cloud-sun-rain\":63299,\"cloud-sun\":63172,\"cloud-upload-alt\":62338,\"cloud-upload\":61678,\"cloud\":61634,\"clouds-moon\":63301,\"clouds-sun\":63302,\"clouds\":63300,\"club\":62247,\"cocktail\":62817,\"code-branch\":61734,\"code-commit\":62342,\"code-merge\":62343,\"code\":61729,\"coffee-pot\":57346,\"coffee-togo\":63173,\"coffee\":61684,\"coffin-cross\":57425,\"coffin\":63174,\"cog\":61459,\"cogs\":61573,\"coin\":63580,\"coins\":62750,\"columns\":61659,\"comet\":57347,\"comment-alt-check\":62626,\"comment-alt-dollar\":63056,\"comment-alt-dots\":62627,\"comment-alt-edit\":62628,\"comment-alt-exclamation\":62629,\"comment-alt-lines\":62630,\"comment-alt-medical\":63476,\"comment-alt-minus\":62631,\"comment-alt-music\":63663,\"comment-alt-plus\":62632,\"comment-alt-slash\":62633,\"comment-alt-smile\":62634,\"comment-alt-times\":62635,\"comment-alt\":62074,\"comment-check\":62636,\"comment-dollar\":63057,\"comment-dots\":62637,\"comment-edit\":62638,\"comment-exclamation\":62639,\"comment-lines\":62640,\"comment-medical\":63477,\"comment-minus\":62641,\"comment-music\":63664,\"comment-plus\":62642,\"comment-slash\":62643,\"comment-smile\":62644,\"comment-times\":62645,\"comment\":61557,\"comments-alt-dollar\":63058,\"comments-alt\":62646,\"comments-dollar\":63059,\"comments\":61574,\"compact-disc\":62751,\"compass-slash\":62953,\"compass\":61774,\"compress-alt\":62498,\"compress-arrows-alt\":63372,\"compress-wide\":62246,\"compress\":61542,\"computer-classic\":63665,\"computer-speaker\":63666,\"concierge-bell\":62818,\"construction\":63581,\"container-storage\":62647,\"conveyor-belt-alt\":62575,\"conveyor-belt\":62574,\"cookie-bite\":62820,\"cookie\":62819,\"copy\":61637,\"copyright\":61945,\"corn\":63175,\"couch\":62648,\"cow\":63176,\"cowbell-more\":63668,\"cowbell\":63667,\"credit-card-blank\":62345,\"credit-card-front\":62346,\"credit-card\":61597,\"cricket\":62537,\"croissant\":63478,\"crop-alt\":62821,\"crop\":61733,\"cross\":63060,\"crosshairs\":61531,\"crow\":62752,\"crown\":62753,\"crutch\":63479,\"crutches\":63480,\"cube\":61874,\"cubes\":61875,\"curling\":62538,\"cut\":61636,\"dagger\":63179,\"database\":61888,\"deaf\":62116,\"debug\":63481,\"deer-rudolph\":63375,\"deer\":63374,\"democrat\":63303,\"desktop-alt\":62352,\"desktop\":61704,\"dewpoint\":63304,\"dharmachakra\":63061,\"diagnoses\":62576,\"diamond\":61977,\"dice-d10\":63181,\"dice-d12\":63182,\"dice-d20\":63183,\"dice-d4\":63184,\"dice-d6\":63185,\"dice-d8\":63186,\"dice-five\":62755,\"dice-four\":62756,\"dice-one\":62757,\"dice-six\":62758,\"dice-three\":62759,\"dice-two\":62760,\"dice\":62754,\"digging\":63582,\"digital-tachograph\":62822,\"diploma\":62954,\"directions\":62955,\"disc-drive\":63669,\"disease\":63482,\"divide\":62761,\"dizzy\":62823,\"dna\":62577,\"do-not-enter\":62956,\"dog-leashed\":63188,\"dog\":63187,\"dollar-sign\":61781,\"dolly-empty\":62579,\"dolly-flatbed-alt\":62581,\"dolly-flatbed-empty\":62582,\"dolly-flatbed\":62580,\"dolly\":62578,\"donate\":62649,\"door-closed\":62762,\"door-open\":62763,\"dot-circle\":61842,\"dove\":62650,\"download\":61465,\"drafting-compass\":62824,\"dragon\":63189,\"draw-circle\":62957,\"draw-polygon\":62958,\"draw-square\":62959,\"dreidel\":63378,\"drone-alt\":63584,\"drone\":63583,\"drum-steelpan\":62826,\"drum\":62825,\"drumstick-bite\":63191,\"drumstick\":63190,\"dryer-alt\":63586,\"dryer\":63585,\"duck\":63192,\"dumbbell\":62539,\"dumpster-fire\":63380,\"dumpster\":63379,\"dungeon\":63193,\"ear-muffs\":63381,\"ear\":62960,\"eclipse-alt\":63306,\"eclipse\":63305,\"edit\":61508,\"egg-fried\":63484,\"egg\":63483,\"eject\":61522,\"elephant\":63194,\"ellipsis-h-alt\":62363,\"ellipsis-h\":61761,\"ellipsis-v-alt\":62364,\"ellipsis-v\":61762,\"empty-set\":63062,\"engine-warning\":62962,\"envelope-open-dollar\":63063,\"envelope-open-text\":63064,\"envelope-open\":62134,\"envelope-square\":61849,\"envelope\":61664,\"equals\":62764,\"eraser\":61741,\"ethernet\":63382,\"euro-sign\":61779,\"exchange-alt\":62306,\"exchange\":61676,\"exclamation-circle\":61546,\"exclamation-square\":62241,\"exclamation-triangle\":61553,\"exclamation\":61738,\"expand-alt\":62500,\"expand-arrows-alt\":62238,\"expand-arrows\":62237,\"expand-wide\":62240,\"expand\":61541,\"external-link-alt\":62301,\"external-link-square-alt\":62304,\"external-link-square\":61772,\"external-link\":61582,\"eye-dropper\":61947,\"eye-evil\":63195,\"eye-slash\":61552,\"eye\":61550,\"fan-table\":57348,\"fan\":63587,\"farm\":63588,\"fast-backward\":61513,\"fast-forward\":61520,\"faucet-drip\":57350,\"faucet\":57349,\"fax\":61868,\"feather-alt\":62827,\"feather\":62765,\"female\":61826,\"field-hockey\":62540,\"fighter-jet\":61691,\"file-alt\":61788,\"file-archive\":61894,\"file-audio\":61895,\"file-certificate\":62963,\"file-chart-line\":63065,\"file-chart-pie\":63066,\"file-check\":62230,\"file-code\":61897,\"file-contract\":62828,\"file-csv\":63197,\"file-download\":62829,\"file-edit\":62236,\"file-excel\":61891,\"file-exclamation\":62234,\"file-export\":62830,\"file-image\":61893,\"file-import\":62831,\"file-invoice-dollar\":62833,\"file-invoice\":62832,\"file-medical-alt\":62584,\"file-medical\":62583,\"file-minus\":62232,\"file-music\":63670,\"file-pdf\":61889,\"file-plus\":62233,\"file-powerpoint\":61892,\"file-prescription\":62834,\"file-search\":63589,\"file-signature\":62835,\"file-spreadsheet\":63067,\"file-times\":62231,\"file-upload\":62836,\"file-user\":63068,\"file-video\":61896,\"file-word\":61890,\"file\":61787,\"files-medical\":63485,\"fill-drip\":62838,\"fill\":62837,\"film-alt\":62368,\"film-canister\":63671,\"film\":61448,\"filter\":61616,\"fingerprint\":62839,\"fire-alt\":63460,\"fire-extinguisher\":61748,\"fire-smoke\":63307,\"fire\":61549,\"fireplace\":63386,\"first-aid\":62585,\"fish-cooked\":63486,\"fish\":62840,\"fist-raised\":63198,\"flag-alt\":63308,\"flag-checkered\":61726,\"flag-usa\":63309,\"flag\":61476,\"flame\":63199,\"flashlight\":63672,\"flask-poison\":63200,\"flask-potion\":63201,\"flask\":61635,\"flower-daffodil\":63488,\"flower-tulip\":63489,\"flower\":63487,\"flushed\":62841,\"flute\":63673,\"flux-capacitor\":63674,\"fog\":63310,\"folder-download\":57427,\"folder-minus\":63069,\"folder-open\":61564,\"folder-plus\":63070,\"folder-times\":63071,\"folder-tree\":63490,\"folder-upload\":57428,\"folder\":61563,\"folders\":63072,\"font-awesome-logo-full\":62694,\"font-case\":63590,\"font\":61489,\"football-ball\":62542,\"football-helmet\":62543,\"forklift\":62586,\"forward\":61518,\"fragile\":62651,\"french-fries\":63491,\"frog\":62766,\"frosty-head\":63387,\"frown-open\":62842,\"frown\":61721,\"function\":63073,\"funnel-dollar\":63074,\"futbol\":61923,\"galaxy\":57352,\"game-board-alt\":63592,\"game-board\":63591,\"game-console-handheld\":63675,\"gamepad-alt\":63676,\"gamepad\":61723,\"garage-car\":57354,\"garage-open\":57355,\"garage\":57353,\"gas-pump-slash\":62964,\"gas-pump\":62767,\"gavel\":61667,\"gem\":62373,\"genderless\":61997,\"ghost\":63202,\"gift-card\":63075,\"gift\":61547,\"gifts\":63388,\"gingerbread-man\":63389,\"glass-champagne\":63390,\"glass-cheers\":63391,\"glass-citrus\":63593,\"glass-martini-alt\":62843,\"glass-martini\":61440,\"glass-whiskey-rocks\":63393,\"glass-whiskey\":63392,\"glass\":63492,\"glasses-alt\":62965,\"glasses\":62768,\"globe-africa\":62844,\"globe-americas\":62845,\"globe-asia\":62846,\"globe-europe\":63394,\"globe-snow\":63395,\"globe-stand\":62966,\"globe\":61612,\"golf-ball\":62544,\"golf-club\":62545,\"gopuram\":63076,\"graduation-cap\":61853,\"gramophone\":63677,\"greater-than-equal\":62770,\"greater-than\":62769,\"grimace\":62847,\"grin-alt\":62849,\"grin-beam-sweat\":62851,\"grin-beam\":62850,\"grin-hearts\":62852,\"grin-squint-tears\":62854,\"grin-squint\":62853,\"grin-stars\":62855,\"grin-tears\":62856,\"grin-tongue-squint\":62858,\"grin-tongue-wink\":62859,\"grin-tongue\":62857,\"grin-wink\":62860,\"grin\":62848,\"grip-horizontal\":62861,\"grip-lines-vertical\":63397,\"grip-lines\":63396,\"grip-vertical\":62862,\"guitar-electric\":63678,\"guitar\":63398,\"guitars\":63679,\"h-square\":61693,\"h1\":62227,\"h2\":62228,\"h3\":62229,\"h4\":63594,\"hamburger\":63493,\"hammer-war\":63204,\"hammer\":63203,\"hamsa\":63077,\"hand-heart\":62652,\"hand-holding-box\":62587,\"hand-holding-heart\":62654,\"hand-holding-magic\":63205,\"hand-holding-medical\":57436,\"hand-holding-seedling\":62655,\"hand-holding-usd\":62656,\"hand-holding-water\":62657,\"hand-holding\":62653,\"hand-lizard\":62040,\"hand-middle-finger\":63494,\"hand-paper\":62038,\"hand-peace\":62043,\"hand-point-down\":61607,\"hand-point-left\":61605,\"hand-point-right\":61604,\"hand-point-up\":61606,\"hand-pointer\":62042,\"hand-receiving\":62588,\"hand-rock\":62037,\"hand-scissors\":62039,\"hand-sparkles\":57437,\"hand-spock\":62041,\"hands-heart\":62659,\"hands-helping\":62660,\"hands-usd\":62661,\"hands-wash\":57438,\"hands\":62658,\"handshake-alt-slash\":57439,\"handshake-alt\":62662,\"handshake-slash\":57440,\"handshake\":62133,\"hanukiah\":63206,\"hard-hat\":63495,\"hashtag\":62098,\"hat-chef\":63595,\"hat-cowboy-side\":63681,\"hat-cowboy\":63680,\"hat-santa\":63399,\"hat-winter\":63400,\"hat-witch\":63207,\"hat-wizard\":63208,\"hdd\":61600,\"head-side-brain\":63496,\"head-side-cough-slash\":57442,\"head-side-cough\":57441,\"head-side-headphones\":63682,\"head-side-mask\":57443,\"head-side-medical\":63497,\"head-side-virus\":57444,\"head-side\":63209,\"head-vr\":63210,\"heading\":61916,\"headphones-alt\":62863,\"headphones\":61477,\"headset\":62864,\"heart-broken\":63401,\"heart-circle\":62663,\"heart-rate\":62968,\"heart-square\":62664,\"heart\":61444,\"heartbeat\":61982,\"heat\":57356,\"helicopter\":62771,\"helmet-battle\":63211,\"hexagon\":62226,\"highlighter\":62865,\"hiking\":63212,\"hippo\":63213,\"history\":61914,\"hockey-mask\":63214,\"hockey-puck\":62547,\"hockey-sticks\":62548,\"holly-berry\":63402,\"home-alt\":63498,\"home-heart\":62665,\"home-lg-alt\":63500,\"home-lg\":63499,\"home\":61461,\"hood-cloak\":63215,\"horizontal-rule\":63596,\"horse-head\":63403,\"horse-saddle\":63683,\"horse\":63216,\"hospital-alt\":62589,\"hospital-symbol\":62590,\"hospital-user\":63501,\"hospital\":61688,\"hospitals\":63502,\"hot-tub\":62867,\"hotdog\":63503,\"hotel\":62868,\"hourglass-end\":62035,\"hourglass-half\":62034,\"hourglass-start\":62033,\"hourglass\":62036,\"house-damage\":63217,\"house-day\":57358,\"house-flood\":63311,\"house-leave\":57359,\"house-night\":57360,\"house-return\":57361,\"house-signal\":57362,\"house-user\":57445,\"house\":57357,\"hryvnia\":63218,\"humidity\":63312,\"hurricane\":63313,\"i-cursor\":62022,\"ice-cream\":63504,\"ice-skate\":63404,\"icicles\":63405,\"icons-alt\":63598,\"icons\":63597,\"id-badge\":62145,\"id-card-alt\":62591,\"id-card\":62146,\"igloo\":63406,\"image-polaroid\":63684,\"image\":61502,\"images\":62210,\"inbox-in\":62224,\"inbox-out\":62225,\"inbox\":61468,\"indent\":61500,\"industry-alt\":62387,\"industry\":62069,\"infinity\":62772,\"info-circle\":61530,\"info-square\":62223,\"info\":61737,\"inhaler\":62969,\"integral\":63079,\"intersection\":63080,\"inventory\":62592,\"island-tropical\":63505,\"italic\":61491,\"jack-o-lantern\":62222,\"jedi\":63081,\"joint\":62869,\"journal-whills\":63082,\"joystick\":63685,\"jug\":63686,\"kaaba\":63083,\"kazoo\":63687,\"kerning\":63599,\"key-skeleton\":63219,\"key\":61572,\"keyboard\":61724,\"keynote\":63084,\"khanda\":63085,\"kidneys\":62971,\"kiss-beam\":62871,\"kiss-wink-heart\":62872,\"kiss\":62870,\"kite\":63220,\"kiwi-bird\":62773,\"knife-kitchen\":63221,\"lambda\":63086,\"lamp-desk\":57364,\"lamp-floor\":57365,\"lamp\":62666,\"landmark-alt\":63314,\"landmark\":63087,\"language\":61867,\"laptop-code\":62972,\"laptop-house\":57446,\"laptop-medical\":63506,\"laptop\":61705,\"lasso\":63688,\"laugh-beam\":62874,\"laugh-squint\":62875,\"laugh-wink\":62876,\"laugh\":62873,\"layer-group\":62973,\"layer-minus\":62974,\"layer-plus\":62975,\"leaf-heart\":62667,\"leaf-maple\":63222,\"leaf-oak\":63223,\"leaf\":61548,\"lemon\":61588,\"less-than-equal\":62775,\"less-than\":62774,\"level-down-alt\":62398,\"level-down\":61769,\"level-up-alt\":62399,\"level-up\":61768,\"life-ring\":61901,\"light-ceiling\":57366,\"light-switch-off\":57368,\"light-switch-on\":57369,\"light-switch\":57367,\"lightbulb-dollar\":63088,\"lightbulb-exclamation\":63089,\"lightbulb-on\":63090,\"lightbulb-slash\":63091,\"lightbulb\":61675,\"lights-holiday\":63410,\"line-columns\":63600,\"line-height\":63601,\"link\":61633,\"lips\":62976,\"lira-sign\":61845,\"list-alt\":61474,\"list-music\":63689,\"list-ol\":61643,\"list-ul\":61642,\"list\":61498,\"location-arrow\":61732,\"location-circle\":62978,\"location-slash\":62979,\"location\":62977,\"lock-alt\":62221,\"lock-open-alt\":62402,\"lock-open\":62401,\"lock\":61475,\"long-arrow-alt-down\":62217,\"long-arrow-alt-left\":62218,\"long-arrow-alt-right\":62219,\"long-arrow-alt-up\":62220,\"long-arrow-down\":61813,\"long-arrow-left\":61815,\"long-arrow-right\":61816,\"long-arrow-up\":61814,\"loveseat\":62668,\"low-vision\":62120,\"luchador\":62549,\"luggage-cart\":62877,\"lungs-virus\":57447,\"lungs\":62980,\"mace\":63224,\"magic\":61648,\"magnet\":61558,\"mail-bulk\":63092,\"mailbox\":63507,\"male\":61827,\"mandolin\":63225,\"map-marked-alt\":62880,\"map-marked\":62879,\"map-marker-alt-slash\":62981,\"map-marker-alt\":62405,\"map-marker-check\":62982,\"map-marker-edit\":62983,\"map-marker-exclamation\":62984,\"map-marker-minus\":62985,\"map-marker-plus\":62986,\"map-marker-question\":62987,\"map-marker-slash\":62988,\"map-marker-smile\":62989,\"map-marker-times\":62990,\"map-marker\":61505,\"map-pin\":62070,\"map-signs\":62071,\"map\":62073,\"marker\":62881,\"mars-double\":61991,\"mars-stroke-h\":61995,\"mars-stroke-v\":61994,\"mars-stroke\":61993,\"mars\":61986,\"mask\":63226,\"meat\":63508,\"medal\":62882,\"medkit\":61690,\"megaphone\":63093,\"meh-blank\":62884,\"meh-rolling-eyes\":62885,\"meh\":61722,\"memory\":62776,\"menorah\":63094,\"mercury\":61987,\"meteor\":63315,\"microchip\":62171,\"microphone-alt-slash\":62777,\"microphone-alt\":62409,\"microphone-slash\":61745,\"microphone-stand\":63691,\"microphone\":61744,\"microscope\":62992,\"microwave\":57371,\"mind-share\":63095,\"minus-circle\":61526,\"minus-hexagon\":62215,\"minus-octagon\":62216,\"minus-square\":61766,\"minus\":61544,\"mistletoe\":63412,\"mitten\":63413,\"mobile-alt\":62413,\"mobile-android-alt\":62415,\"mobile-android\":62414,\"mobile\":61707,\"money-bill-alt\":62417,\"money-bill-wave-alt\":62779,\"money-bill-wave\":62778,\"money-bill\":61654,\"money-check-alt\":62781,\"money-check-edit-alt\":63603,\"money-check-edit\":63602,\"money-check\":62780,\"monitor-heart-rate\":62993,\"monkey\":63227,\"monument\":62886,\"moon-cloud\":63316,\"moon-stars\":63317,\"moon\":61830,\"mortar-pestle\":62887,\"mosque\":63096,\"motorcycle\":61980,\"mountain\":63228,\"mountains\":63229,\"mouse-alt\":63693,\"mouse-pointer\":62021,\"mouse\":63692,\"mp3-player\":63694,\"mug-hot\":63414,\"mug-marshmallows\":63415,\"mug-tea\":63605,\"mug\":63604,\"music-alt-slash\":63696,\"music-alt\":63695,\"music-slash\":63697,\"music\":61441,\"narwhal\":63230,\"network-wired\":63231,\"neuter\":61996,\"newspaper\":61930,\"not-equal\":62782,\"notes-medical\":62593,\"object-group\":62023,\"object-ungroup\":62024,\"octagon\":62214,\"oil-can\":62995,\"oil-temp\":62996,\"om\":63097,\"omega\":63098,\"ornament\":63416,\"otter\":63232,\"outdent\":61499,\"outlet\":57372,\"oven\":57373,\"overline\":63606,\"page-break\":63607,\"pager\":63509,\"paint-brush-alt\":62889,\"paint-brush\":61948,\"paint-roller\":62890,\"palette\":62783,\"pallet-alt\":62595,\"pallet\":62594,\"paper-plane\":61912,\"paperclip\":61638,\"parachute-box\":62669,\"paragraph-rtl\":63608,\"paragraph\":61917,\"parking-circle-slash\":62998,\"parking-circle\":62997,\"parking-slash\":62999,\"parking\":62784,\"passport\":62891,\"pastafarianism\":63099,\"paste\":61674,\"pause-circle\":62091,\"pause\":61516,\"paw-alt\":63233,\"paw-claws\":63234,\"paw\":61872,\"peace\":63100,\"pegasus\":63235,\"pen-alt\":62213,\"pen-fancy\":62892,\"pen-nib\":62893,\"pen-square\":61771,\"pen\":62212,\"pencil-alt\":62211,\"pencil-paintbrush\":63000,\"pencil-ruler\":62894,\"pencil\":61504,\"pennant\":62550,\"people-arrows\":57448,\"people-carry\":62670,\"pepper-hot\":63510,\"percent\":62101,\"percentage\":62785,\"person-booth\":63318,\"person-carry\":62671,\"person-dolly-empty\":62673,\"person-dolly\":62672,\"person-sign\":63319,\"phone-alt\":63609,\"phone-laptop\":63610,\"phone-office\":63101,\"phone-plus\":62674,\"phone-rotary\":63699,\"phone-slash\":62429,\"phone-square-alt\":63611,\"phone-square\":61592,\"phone-volume\":62112,\"phone\":61589,\"photo-video\":63612,\"pi\":63102,\"piano-keyboard\":63701,\"piano\":63700,\"pie\":63237,\"pig\":63238,\"piggy-bank\":62675,\"pills\":62596,\"pizza-slice\":63512,\"pizza\":63511,\"place-of-worship\":63103,\"plane-alt\":62430,\"plane-arrival\":62895,\"plane-departure\":62896,\"plane-slash\":57449,\"plane\":61554,\"planet-moon\":57375,\"planet-ringed\":57376,\"play-circle\":61764,\"play\":61515,\"plug\":61926,\"plus-circle\":61525,\"plus-hexagon\":62208,\"plus-octagon\":62209,\"plus-square\":61694,\"plus\":61543,\"podcast\":62158,\"podium-star\":63320,\"podium\":63104,\"police-box\":57377,\"poll-h\":63106,\"poll-people\":63321,\"poll\":63105,\"poo-storm\":63322,\"poo\":62206,\"poop\":63001,\"popcorn\":63513,\"portal-enter\":57378,\"portal-exit\":57379,\"portrait\":62432,\"pound-sign\":61780,\"power-off\":61457,\"pray\":63107,\"praying-hands\":63108,\"prescription-bottle-alt\":62598,\"prescription-bottle\":62597,\"prescription\":62897,\"presentation\":63109,\"print-search\":63514,\"print-slash\":63110,\"print\":61487,\"procedures\":62599,\"project-diagram\":62786,\"projector\":63702,\"pump-medical\":57450,\"pump-soap\":57451,\"pumpkin\":63239,\"puzzle-piece\":61742,\"qrcode\":61481,\"question-circle\":61529,\"question-square\":62205,\"question\":61736,\"quidditch\":62552,\"quote-left\":61709,\"quote-right\":61710,\"quran\":63111,\"rabbit-fast\":63241,\"rabbit\":63240,\"racquet\":62554,\"radar\":57380,\"radiation-alt\":63418,\"radiation\":63417,\"radio-alt\":63704,\"radio\":63703,\"rainbow\":63323,\"raindrops\":63324,\"ram\":63242,\"ramp-loading\":62676,\"random\":61556,\"raygun\":57381,\"receipt\":62787,\"record-vinyl\":63705,\"rectangle-landscape\":62202,\"rectangle-portrait\":62203,\"rectangle-wide\":62204,\"recycle\":61880,\"redo-alt\":62201,\"redo\":61470,\"refrigerator\":57382,\"registered\":62045,\"remove-format\":63613,\"repeat-1-alt\":62310,\"repeat-1\":62309,\"repeat-alt\":62308,\"repeat\":62307,\"reply-all\":61730,\"reply\":62437,\"republican\":63326,\"restroom\":63421,\"retweet-alt\":62305,\"retweet\":61561,\"ribbon\":62678,\"ring\":63243,\"rings-wedding\":63515,\"road\":61464,\"robot\":62788,\"rocket-launch\":57383,\"rocket\":61749,\"route-highway\":63002,\"route-interstate\":63003,\"route\":62679,\"router\":63706,\"rss-square\":61763,\"rss\":61598,\"ruble-sign\":61784,\"ruler-combined\":62790,\"ruler-horizontal\":62791,\"ruler-triangle\":63004,\"ruler-vertical\":62792,\"ruler\":62789,\"running\":63244,\"rupee-sign\":61782,\"rv\":63422,\"sack-dollar\":63517,\"sack\":63516,\"sad-cry\":62899,\"sad-tear\":62900,\"salad\":63518,\"sandwich\":63519,\"satellite-dish\":63424,\"satellite\":63423,\"sausage\":63520,\"save\":61639,\"sax-hot\":63707,\"saxophone\":63708,\"scalpel-path\":63006,\"scalpel\":63005,\"scanner-image\":63731,\"scanner-keyboard\":62601,\"scanner-touchscreen\":62602,\"scanner\":62600,\"scarecrow\":63245,\"scarf\":63425,\"school\":62793,\"screwdriver\":62794,\"scroll-old\":63247,\"scroll\":63246,\"scrubber\":62200,\"scythe\":63248,\"sd-card\":63426,\"search-dollar\":63112,\"search-location\":63113,\"search-minus\":61456,\"search-plus\":61454,\"search\":61442,\"seedling\":62680,\"send-back\":63614,\"send-backward\":63615,\"sensor-alert\":57385,\"sensor-fire\":57386,\"sensor-on\":57387,\"sensor-smoke\":57388,\"sensor\":57384,\"server\":62003,\"shapes\":63007,\"share-all\":62311,\"share-alt-square\":61921,\"share-alt\":61920,\"share-square\":61773,\"share\":61540,\"sheep\":63249,\"shekel-sign\":61963,\"shield-alt\":62445,\"shield-check\":62199,\"shield-cross\":63250,\"shield-virus\":57452,\"shield\":61746,\"ship\":61978,\"shipping-fast\":62603,\"shipping-timed\":62604,\"shish-kebab\":63521,\"shoe-prints\":62795,\"shopping-bag\":62096,\"shopping-basket\":62097,\"shopping-cart\":61562,\"shovel-snow\":63427,\"shovel\":63251,\"shower\":62156,\"shredder\":63114,\"shuttle-van\":62902,\"shuttlecock\":62555,\"sickle\":63522,\"sigma\":63115,\"sign-in-alt\":62198,\"sign-in\":61584,\"sign-language\":62119,\"sign-out-alt\":62197,\"sign-out\":61579,\"sign\":62681,\"signal-1\":63116,\"signal-2\":63117,\"signal-3\":63118,\"signal-4\":63119,\"signal-alt-1\":63121,\"signal-alt-2\":63122,\"signal-alt-3\":63123,\"signal-alt-slash\":63124,\"signal-alt\":63120,\"signal-slash\":63125,\"signal-stream\":63709,\"signal\":61458,\"signature\":62903,\"sim-card\":63428,\"sink\":57453,\"siren-on\":57390,\"siren\":57389,\"sitemap\":61672,\"skating\":63429,\"skeleton\":63008,\"ski-jump\":63431,\"ski-lift\":63432,\"skiing-nordic\":63434,\"skiing\":63433,\"skull-cow\":63710,\"skull-crossbones\":63252,\"skull\":62796,\"slash\":63253,\"sledding\":63435,\"sleigh\":63436,\"sliders-h-square\":62448,\"sliders-h\":61918,\"sliders-v-square\":62450,\"sliders-v\":62449,\"smile-beam\":62904,\"smile-plus\":62905,\"smile-wink\":62682,\"smile\":61720,\"smog\":63327,\"smoke\":63328,\"smoking-ban\":62797,\"smoking\":62605,\"sms\":63437,\"snake\":63254,\"snooze\":63616,\"snow-blowing\":63329,\"snowboarding\":63438,\"snowflake\":62172,\"snowflakes\":63439,\"snowman\":63440,\"snowmobile\":63441,\"snowplow\":63442,\"soap\":57454,\"socks\":63126,\"solar-panel\":62906,\"solar-system\":57391,\"sort-alpha-down-alt\":63617,\"sort-alpha-down\":61789,\"sort-alpha-up-alt\":63618,\"sort-alpha-up\":61790,\"sort-alt\":63619,\"sort-amount-down-alt\":63620,\"sort-amount-down\":61792,\"sort-amount-up-alt\":63621,\"sort-amount-up\":61793,\"sort-circle-down\":57393,\"sort-circle-up\":57394,\"sort-circle\":57392,\"sort-down\":61661,\"sort-numeric-down-alt\":63622,\"sort-numeric-down\":61794,\"sort-numeric-up-alt\":63623,\"sort-numeric-up\":61795,\"sort-shapes-down-alt\":63625,\"sort-shapes-down\":63624,\"sort-shapes-up-alt\":63627,\"sort-shapes-up\":63626,\"sort-size-down-alt\":63629,\"sort-size-down\":63628,\"sort-size-up-alt\":63631,\"sort-size-up\":63630,\"sort-up\":61662,\"sort\":61660,\"soup\":63523,\"spa\":62907,\"space-shuttle\":61847,\"space-station-moon-alt\":57396,\"space-station-moon\":57395,\"spade\":62196,\"sparkles\":63632,\"speaker\":63711,\"speakers\":63712,\"spell-check\":63633,\"spider-black-widow\":63256,\"spider-web\":63257,\"spider\":63255,\"spinner-third\":62452,\"spinner\":61712,\"splotch\":62908,\"spray-can\":62909,\"sprinkler\":57397,\"square-full\":62556,\"square-root-alt\":63128,\"square-root\":63127,\"square\":61640,\"squirrel\":63258,\"staff\":63259,\"stamp\":62911,\"star-and-crescent\":63129,\"star-christmas\":63444,\"star-exclamation\":62195,\"star-half-alt\":62912,\"star-half\":61577,\"star-of-david\":63130,\"star-of-life\":63009,\"star-shooting\":57398,\"star\":61445,\"starfighter-alt\":57400,\"starfighter\":57399,\"stars\":63330,\"starship-freighter\":57402,\"starship\":57401,\"steak\":63524,\"steering-wheel\":63010,\"step-backward\":61512,\"step-forward\":61521,\"stethoscope\":61681,\"sticky-note\":62025,\"stocking\":63445,\"stomach\":63011,\"stop-circle\":62093,\"stop\":61517,\"stopwatch-20\":57455,\"stopwatch\":62194,\"store-alt-slash\":57456,\"store-alt\":62799,\"store-slash\":57457,\"store\":62798,\"stream\":62800,\"street-view\":61981,\"stretcher\":63525,\"strikethrough\":61644,\"stroopwafel\":62801,\"subscript\":61740,\"subway\":62009,\"suitcase-rolling\":62913,\"suitcase\":61682,\"sun-cloud\":63331,\"sun-dust\":63332,\"sun-haze\":63333,\"sun\":61829,\"sunglasses\":63634,\"sunrise\":63334,\"sunset\":63335,\"superscript\":61739,\"surprise\":62914,\"swatchbook\":62915,\"swimmer\":62916,\"swimming-pool\":62917,\"sword-laser-alt\":57404,\"sword-laser\":57403,\"sword\":63260,\"swords-laser\":57405,\"swords\":63261,\"synagogue\":63131,\"sync-alt\":62193,\"sync\":61473,\"syringe\":62606,\"table-tennis\":62557,\"table\":61646,\"tablet-alt\":62458,\"tablet-android-alt\":62460,\"tablet-android\":62459,\"tablet-rugged\":62607,\"tablet\":61706,\"tablets\":62608,\"tachometer-alt-average\":63012,\"tachometer-alt-fast\":63013,\"tachometer-alt-fastest\":63014,\"tachometer-alt-slow\":63015,\"tachometer-alt-slowest\":63016,\"tachometer-alt\":62461,\"tachometer-average\":63017,\"tachometer-fast\":63018,\"tachometer-fastest\":63019,\"tachometer-slow\":63020,\"tachometer-slowest\":63021,\"tachometer\":61668,\"taco\":63526,\"tag\":61483,\"tags\":61484,\"tally\":63132,\"tanakh\":63527,\"tape\":62683,\"tasks-alt\":63528,\"tasks\":61614,\"taxi\":61882,\"teeth-open\":63023,\"teeth\":63022,\"telescope\":57406,\"temperature-down\":57407,\"temperature-frigid\":63336,\"temperature-high\":63337,\"temperature-hot\":63338,\"temperature-low\":63339,\"temperature-up\":57408,\"tenge\":63447,\"tennis-ball\":62558,\"terminal\":61728,\"text-height\":61492,\"text-size\":63636,\"text-width\":61493,\"text\":63635,\"th-large\":61449,\"th-list\":61451,\"th\":61450,\"theater-masks\":63024,\"thermometer-empty\":62155,\"thermometer-full\":62151,\"thermometer-half\":62153,\"thermometer-quarter\":62154,\"thermometer-three-quarters\":62152,\"thermometer\":62609,\"theta\":63134,\"thumbs-down\":61797,\"thumbs-up\":61796,\"thumbtack\":61581,\"thunderstorm-moon\":63341,\"thunderstorm-sun\":63342,\"thunderstorm\":63340,\"ticket-alt\":62463,\"ticket\":61765,\"tilde\":63135,\"times-circle\":61527,\"times-hexagon\":62190,\"times-octagon\":62192,\"times-square\":62163,\"times\":61453,\"tint-slash\":62919,\"tint\":61507,\"tire-flat\":63026,\"tire-pressure-warning\":63027,\"tire-rugged\":63028,\"tire\":63025,\"tired\":62920,\"toggle-off\":61956,\"toggle-on\":61957,\"toilet-paper-alt\":63263,\"toilet-paper-slash\":57458,\"toilet-paper\":63262,\"toilet\":63448,\"tombstone-alt\":63265,\"tombstone\":63264,\"toolbox\":62802,\"tools\":63449,\"tooth\":62921,\"toothbrush\":63029,\"torah\":63136,\"torii-gate\":63137,\"tornado\":63343,\"tractor\":63266,\"trademark\":62044,\"traffic-cone\":63030,\"traffic-light-go\":63032,\"traffic-light-slow\":63033,\"traffic-light-stop\":63034,\"traffic-light\":63031,\"trailer\":57409,\"train\":62008,\"tram\":63450,\"transgender-alt\":61989,\"transgender\":61988,\"transporter-1\":57411,\"transporter-2\":57412,\"transporter-3\":57413,\"transporter-empty\":57414,\"transporter\":57410,\"trash-alt\":62189,\"trash-restore-alt\":63530,\"trash-restore\":63529,\"trash-undo-alt\":63638,\"trash-undo\":63637,\"trash\":61944,\"treasure-chest\":63267,\"tree-alt\":62464,\"tree-christmas\":63451,\"tree-decorated\":63452,\"tree-large\":63453,\"tree-palm\":63531,\"tree\":61883,\"trees\":63268,\"triangle-music\":63714,\"triangle\":62188,\"trophy-alt\":62187,\"trophy\":61585,\"truck-container\":62684,\"truck-couch\":62685,\"truck-loading\":62686,\"truck-monster\":63035,\"truck-moving\":62687,\"truck-pickup\":63036,\"truck-plow\":63454,\"truck-ramp\":62688,\"truck\":61649,\"trumpet\":63715,\"tshirt\":62803,\"tty\":61924,\"turkey\":63269,\"turntable\":63716,\"turtle\":63270,\"tv-alt\":63717,\"tv-music\":63718,\"tv-retro\":62465,\"tv\":62060,\"typewriter\":63719,\"ufo-beam\":57416,\"ufo\":57415,\"umbrella-beach\":62922,\"umbrella\":61673,\"underline\":61645,\"undo-alt\":62186,\"undo\":61666,\"unicorn\":63271,\"union\":63138,\"universal-access\":62106,\"university\":61852,\"unlink\":61735,\"unlock-alt\":61758,\"unlock\":61596,\"upload\":61587,\"usb-drive\":63721,\"usd-circle\":62184,\"usd-square\":62185,\"user-alien\":57418,\"user-alt-slash\":62714,\"user-alt\":62470,\"user-astronaut\":62715,\"user-chart\":63139,\"user-check\":62716,\"user-circle\":62141,\"user-clock\":62717,\"user-cog\":62718,\"user-cowboy\":63722,\"user-crown\":63140,\"user-edit\":62719,\"user-friends\":62720,\"user-graduate\":62721,\"user-hard-hat\":63532,\"user-headset\":63533,\"user-injured\":63272,\"user-lock\":62722,\"user-md-chat\":63534,\"user-md\":61680,\"user-minus\":62723,\"user-music\":63723,\"user-ninja\":62724,\"user-nurse\":63535,\"user-plus\":62004,\"user-robot\":57419,\"user-secret\":61979,\"user-shield\":62725,\"user-slash\":62726,\"user-tag\":62727,\"user-tie\":62728,\"user-times\":62005,\"user-unlock\":57432,\"user-visor\":57420,\"user\":61447,\"users-class\":63037,\"users-cog\":62729,\"users-crown\":63141,\"users-medical\":63536,\"users-slash\":57459,\"users\":61632,\"utensil-fork\":62179,\"utensil-knife\":62180,\"utensil-spoon\":62181,\"utensils-alt\":62182,\"utensils\":62183,\"vacuum-robot\":57422,\"vacuum\":57421,\"value-absolute\":63142,\"vector-square\":62923,\"venus-double\":61990,\"venus-mars\":61992,\"venus\":61985,\"vest-patches\":57478,\"vest\":57477,\"vhs\":63724,\"vial\":62610,\"vials\":62611,\"video-plus\":62689,\"video-slash\":62690,\"video\":61501,\"vihara\":63143,\"violin\":63725,\"virus-slash\":57461,\"virus\":57460,\"viruses\":57462,\"voicemail\":63639,\"volcano\":63344,\"volleyball-ball\":62559,\"volume-down\":61479,\"volume-mute\":63145,\"volume-off\":61478,\"volume-slash\":62178,\"volume-up\":61480,\"volume\":63144,\"vote-nay\":63345,\"vote-yea\":63346,\"vr-cardboard\":63273,\"wagon-covered\":63726,\"walker\":63537,\"walkie-talkie\":63727,\"walking\":62804,\"wallet\":62805,\"wand-magic\":63275,\"wand\":63274,\"warehouse-alt\":62613,\"warehouse\":62612,\"washer\":63640,\"watch-calculator\":63728,\"watch-fitness\":63038,\"watch\":62177,\"water-lower\":63348,\"water-rise\":63349,\"water\":63347,\"wave-sine\":63641,\"wave-square\":63550,\"wave-triangle\":63642,\"waveform-path\":63730,\"waveform\":63729,\"webcam-slash\":63539,\"webcam\":63538,\"weight-hanging\":62925,\"weight\":62614,\"whale\":63276,\"wheat\":63277,\"wheelchair\":61843,\"whistle\":62560,\"wifi-1\":63146,\"wifi-2\":63147,\"wifi-slash\":63148,\"wifi\":61931,\"wind-turbine\":63643,\"wind-warning\":63350,\"wind\":63278,\"window-alt\":62479,\"window-close\":62480,\"window-frame-open\":57424,\"window-frame\":57423,\"window-maximize\":62160,\"window-minimize\":62161,\"window-restore\":62162,\"window\":62478,\"windsock\":63351,\"wine-bottle\":63279,\"wine-glass-alt\":62926,\"wine-glass\":62691,\"won-sign\":61785,\"wreath\":63458,\"wrench\":61613,\"x-ray\":62615,\"yen-sign\":61783,\"yin-yang\":63149}"
  },
  {
    "path": "packages/fontawesome5-pro/glyphmaps/FontAwesome5Pro_solid.json",
    "content": "{\"abacus\":63040,\"acorn\":63150,\"ad\":63041,\"address-book\":62137,\"address-card\":62139,\"adjust\":61506,\"air-conditioner\":63732,\"air-freshener\":62928,\"alarm-clock\":62286,\"alarm-exclamation\":63555,\"alarm-plus\":63556,\"alarm-snooze\":63557,\"album-collection\":63648,\"album\":63647,\"alicorn\":63152,\"alien-monster\":63734,\"alien\":63733,\"align-center\":61495,\"align-justify\":61497,\"align-left\":61494,\"align-right\":61496,\"align-slash\":63558,\"allergies\":62561,\"ambulance\":61689,\"american-sign-language-interpreting\":62115,\"amp-guitar\":63649,\"analytics\":63043,\"anchor\":61757,\"angel\":63353,\"angle-double-down\":61699,\"angle-double-left\":61696,\"angle-double-right\":61697,\"angle-double-up\":61698,\"angle-down\":61703,\"angle-left\":61700,\"angle-right\":61701,\"angle-up\":61702,\"angry\":62806,\"ankh\":63044,\"apple-alt\":62929,\"apple-crate\":63153,\"archive\":61831,\"archway\":62807,\"arrow-alt-circle-down\":62296,\"arrow-alt-circle-left\":62297,\"arrow-alt-circle-right\":62298,\"arrow-alt-circle-up\":62299,\"arrow-alt-down\":62292,\"arrow-alt-from-bottom\":62278,\"arrow-alt-from-left\":62279,\"arrow-alt-from-right\":62280,\"arrow-alt-from-top\":62281,\"arrow-alt-left\":62293,\"arrow-alt-right\":62294,\"arrow-alt-square-down\":62288,\"arrow-alt-square-left\":62289,\"arrow-alt-square-right\":62290,\"arrow-alt-square-up\":62291,\"arrow-alt-to-bottom\":62282,\"arrow-alt-to-left\":62283,\"arrow-alt-to-right\":62284,\"arrow-alt-to-top\":62285,\"arrow-alt-up\":62295,\"arrow-circle-down\":61611,\"arrow-circle-left\":61608,\"arrow-circle-right\":61609,\"arrow-circle-up\":61610,\"arrow-down\":61539,\"arrow-from-bottom\":62274,\"arrow-from-left\":62275,\"arrow-from-right\":62276,\"arrow-from-top\":62277,\"arrow-left\":61536,\"arrow-right\":61537,\"arrow-square-down\":62265,\"arrow-square-left\":62266,\"arrow-square-right\":62267,\"arrow-square-up\":62268,\"arrow-to-bottom\":62269,\"arrow-to-left\":62270,\"arrow-to-right\":62272,\"arrow-to-top\":62273,\"arrow-up\":61538,\"arrows-alt-h\":62263,\"arrows-alt-v\":62264,\"arrows-alt\":61618,\"arrows-h\":61566,\"arrows-v\":61565,\"arrows\":61511,\"assistive-listening-systems\":62114,\"asterisk\":61545,\"at\":61946,\"atlas\":62808,\"atom-alt\":62931,\"atom\":62930,\"audio-description\":62110,\"award\":62809,\"axe-battle\":63155,\"axe\":63154,\"baby-carriage\":63357,\"baby\":63356,\"backpack\":62932,\"backspace\":62810,\"backward\":61514,\"bacon\":63461,\"bacteria\":57433,\"bacterium\":57434,\"badge-check\":62262,\"badge-dollar\":63045,\"badge-percent\":63046,\"badge-sheriff\":63650,\"badge\":62261,\"badger-honey\":63156,\"bags-shopping\":63559,\"bahai\":63078,\"balance-scale-left\":62741,\"balance-scale-right\":62742,\"balance-scale\":62030,\"ball-pile\":63358,\"ballot-check\":63283,\"ballot\":63282,\"ban\":61534,\"band-aid\":62562,\"banjo\":63651,\"barcode-alt\":62563,\"barcode-read\":62564,\"barcode-scan\":62565,\"barcode\":61482,\"bars\":61641,\"baseball-ball\":62515,\"baseball\":62514,\"basketball-ball\":62516,\"basketball-hoop\":62517,\"bat\":63157,\"bath\":62157,\"battery-bolt\":62326,\"battery-empty\":62020,\"battery-full\":62016,\"battery-half\":62018,\"battery-quarter\":62019,\"battery-slash\":62327,\"battery-three-quarters\":62017,\"bed-alt\":63735,\"bed-bunk\":63736,\"bed-empty\":63737,\"bed\":62006,\"beer\":61692,\"bell-exclamation\":63560,\"bell-on\":63738,\"bell-plus\":63561,\"bell-school-slash\":62934,\"bell-school\":62933,\"bell-slash\":61942,\"bell\":61683,\"bells\":63359,\"betamax\":63652,\"bezier-curve\":62811,\"bible\":63047,\"bicycle\":61958,\"biking-mountain\":63563,\"biking\":63562,\"binoculars\":61925,\"biohazard\":63360,\"birthday-cake\":61949,\"blanket\":62616,\"blender-phone\":63158,\"blender\":62743,\"blind\":62109,\"blinds-open\":63740,\"blinds-raised\":63741,\"blinds\":63739,\"blog\":63361,\"bold\":61490,\"bolt\":61671,\"bomb\":61922,\"bone-break\":62936,\"bone\":62935,\"bong\":62812,\"book-alt\":62937,\"book-dead\":63159,\"book-heart\":62617,\"book-medical\":63462,\"book-open\":62744,\"book-reader\":62938,\"book-spells\":63160,\"book-user\":63463,\"book\":61485,\"bookmark\":61486,\"books-medical\":63464,\"books\":62939,\"boombox\":63653,\"boot\":63362,\"booth-curtain\":63284,\"border-all\":63564,\"border-bottom\":63565,\"border-center-h\":63644,\"border-center-v\":63645,\"border-inner\":63566,\"border-left\":63567,\"border-none\":63568,\"border-outer\":63569,\"border-right\":63570,\"border-style-alt\":63572,\"border-style\":63571,\"border-top\":63573,\"bow-arrow\":63161,\"bowling-ball\":62518,\"bowling-pins\":62519,\"box-alt\":62618,\"box-ballot\":63285,\"box-check\":62567,\"box-fragile\":62619,\"box-full\":62620,\"box-heart\":62621,\"box-open\":62622,\"box-tissue\":57435,\"box-up\":62623,\"box-usd\":62624,\"box\":62566,\"boxes-alt\":62625,\"boxes\":62568,\"boxing-glove\":62520,\"brackets-curly\":63466,\"brackets\":63465,\"braille\":62113,\"brain\":62940,\"bread-loaf\":63467,\"bread-slice\":63468,\"briefcase-medical\":62569,\"briefcase\":61617,\"bring-forward\":63574,\"bring-front\":63575,\"broadcast-tower\":62745,\"broom\":62746,\"browser\":62334,\"brush\":62813,\"bug\":61832,\"building\":61869,\"bullhorn\":61601,\"bullseye-arrow\":63048,\"bullseye-pointer\":63049,\"bullseye\":61760,\"burger-soda\":63576,\"burn\":62570,\"burrito\":63469,\"bus-alt\":62814,\"bus-school\":62941,\"bus\":61959,\"business-time\":63050,\"cabinet-filing\":63051,\"cactus\":63655,\"calculator-alt\":63052,\"calculator\":61932,\"calendar-alt\":61555,\"calendar-check\":62068,\"calendar-day\":63363,\"calendar-edit\":62259,\"calendar-exclamation\":62260,\"calendar-minus\":62066,\"calendar-plus\":62065,\"calendar-star\":63286,\"calendar-times\":62067,\"calendar-week\":63364,\"calendar\":61747,\"camcorder\":63656,\"camera-alt\":62258,\"camera-home\":63742,\"camera-movie\":63657,\"camera-polaroid\":63658,\"camera-retro\":61571,\"camera\":61488,\"campfire\":63162,\"campground\":63163,\"candle-holder\":63164,\"candy-cane\":63366,\"candy-corn\":63165,\"cannabis\":62815,\"capsules\":62571,\"car-alt\":62942,\"car-battery\":62943,\"car-building\":63577,\"car-bump\":62944,\"car-bus\":63578,\"car-crash\":62945,\"car-garage\":62946,\"car-mechanic\":62947,\"car-side\":62948,\"car-tilt\":62949,\"car-wash\":62950,\"car\":61881,\"caravan-alt\":57344,\"caravan\":63743,\"caret-circle-down\":62253,\"caret-circle-left\":62254,\"caret-circle-right\":62256,\"caret-circle-up\":62257,\"caret-down\":61655,\"caret-left\":61657,\"caret-right\":61658,\"caret-square-down\":61776,\"caret-square-left\":61841,\"caret-square-right\":61778,\"caret-square-up\":61777,\"caret-up\":61656,\"carrot\":63367,\"cars\":63579,\"cart-arrow-down\":61976,\"cart-plus\":61975,\"cash-register\":63368,\"cassette-tape\":63659,\"cat-space\":57345,\"cat\":63166,\"cauldron\":63167,\"cctv\":63660,\"certificate\":61603,\"chair-office\":63169,\"chair\":63168,\"chalkboard-teacher\":62748,\"chalkboard\":62747,\"charging-station\":62951,\"chart-area\":61950,\"chart-bar\":61568,\"chart-line-down\":63053,\"chart-line\":61953,\"chart-network\":63370,\"chart-pie-alt\":63054,\"chart-pie\":61952,\"chart-scatter\":63470,\"check-circle\":61528,\"check-double\":62816,\"check-square\":61770,\"check\":61452,\"cheese-swiss\":63472,\"cheese\":63471,\"cheeseburger\":63473,\"chess-bishop-alt\":62523,\"chess-bishop\":62522,\"chess-board\":62524,\"chess-clock-alt\":62526,\"chess-clock\":62525,\"chess-king-alt\":62528,\"chess-king\":62527,\"chess-knight-alt\":62530,\"chess-knight\":62529,\"chess-pawn-alt\":62532,\"chess-pawn\":62531,\"chess-queen-alt\":62534,\"chess-queen\":62533,\"chess-rook-alt\":62536,\"chess-rook\":62535,\"chess\":62521,\"chevron-circle-down\":61754,\"chevron-circle-left\":61751,\"chevron-circle-right\":61752,\"chevron-circle-up\":61753,\"chevron-double-down\":62242,\"chevron-double-left\":62243,\"chevron-double-right\":62244,\"chevron-double-up\":62245,\"chevron-down\":61560,\"chevron-left\":61523,\"chevron-right\":61524,\"chevron-square-down\":62249,\"chevron-square-left\":62250,\"chevron-square-right\":62251,\"chevron-square-up\":62252,\"chevron-up\":61559,\"child\":61870,\"chimney\":63371,\"church\":62749,\"circle-notch\":61902,\"circle\":61713,\"city\":63055,\"clarinet\":63661,\"claw-marks\":63170,\"clinic-medical\":63474,\"clipboard-check\":62572,\"clipboard-list-check\":63287,\"clipboard-list\":62573,\"clipboard-prescription\":62952,\"clipboard-user\":63475,\"clipboard\":62248,\"clock\":61463,\"clone\":62029,\"closed-captioning\":61962,\"cloud-download-alt\":62337,\"cloud-download\":61677,\"cloud-drizzle\":63288,\"cloud-hail-mixed\":63290,\"cloud-hail\":63289,\"cloud-meatball\":63291,\"cloud-moon-rain\":63292,\"cloud-moon\":63171,\"cloud-music\":63662,\"cloud-rain\":63293,\"cloud-rainbow\":63294,\"cloud-showers-heavy\":63296,\"cloud-showers\":63295,\"cloud-sleet\":63297,\"cloud-snow\":63298,\"cloud-sun-rain\":63299,\"cloud-sun\":63172,\"cloud-upload-alt\":62338,\"cloud-upload\":61678,\"cloud\":61634,\"clouds-moon\":63301,\"clouds-sun\":63302,\"clouds\":63300,\"club\":62247,\"cocktail\":62817,\"code-branch\":61734,\"code-commit\":62342,\"code-merge\":62343,\"code\":61729,\"coffee-pot\":57346,\"coffee-togo\":63173,\"coffee\":61684,\"coffin-cross\":57425,\"coffin\":63174,\"cog\":61459,\"cogs\":61573,\"coin\":63580,\"coins\":62750,\"columns\":61659,\"comet\":57347,\"comment-alt-check\":62626,\"comment-alt-dollar\":63056,\"comment-alt-dots\":62627,\"comment-alt-edit\":62628,\"comment-alt-exclamation\":62629,\"comment-alt-lines\":62630,\"comment-alt-medical\":63476,\"comment-alt-minus\":62631,\"comment-alt-music\":63663,\"comment-alt-plus\":62632,\"comment-alt-slash\":62633,\"comment-alt-smile\":62634,\"comment-alt-times\":62635,\"comment-alt\":62074,\"comment-check\":62636,\"comment-dollar\":63057,\"comment-dots\":62637,\"comment-edit\":62638,\"comment-exclamation\":62639,\"comment-lines\":62640,\"comment-medical\":63477,\"comment-minus\":62641,\"comment-music\":63664,\"comment-plus\":62642,\"comment-slash\":62643,\"comment-smile\":62644,\"comment-times\":62645,\"comment\":61557,\"comments-alt-dollar\":63058,\"comments-alt\":62646,\"comments-dollar\":63059,\"comments\":61574,\"compact-disc\":62751,\"compass-slash\":62953,\"compass\":61774,\"compress-alt\":62498,\"compress-arrows-alt\":63372,\"compress-wide\":62246,\"compress\":61542,\"computer-classic\":63665,\"computer-speaker\":63666,\"concierge-bell\":62818,\"construction\":63581,\"container-storage\":62647,\"conveyor-belt-alt\":62575,\"conveyor-belt\":62574,\"cookie-bite\":62820,\"cookie\":62819,\"copy\":61637,\"copyright\":61945,\"corn\":63175,\"couch\":62648,\"cow\":63176,\"cowbell-more\":63668,\"cowbell\":63667,\"credit-card-blank\":62345,\"credit-card-front\":62346,\"credit-card\":61597,\"cricket\":62537,\"croissant\":63478,\"crop-alt\":62821,\"crop\":61733,\"cross\":63060,\"crosshairs\":61531,\"crow\":62752,\"crown\":62753,\"crutch\":63479,\"crutches\":63480,\"cube\":61874,\"cubes\":61875,\"curling\":62538,\"cut\":61636,\"dagger\":63179,\"database\":61888,\"deaf\":62116,\"debug\":63481,\"deer-rudolph\":63375,\"deer\":63374,\"democrat\":63303,\"desktop-alt\":62352,\"desktop\":61704,\"dewpoint\":63304,\"dharmachakra\":63061,\"diagnoses\":62576,\"diamond\":61977,\"dice-d10\":63181,\"dice-d12\":63182,\"dice-d20\":63183,\"dice-d4\":63184,\"dice-d6\":63185,\"dice-d8\":63186,\"dice-five\":62755,\"dice-four\":62756,\"dice-one\":62757,\"dice-six\":62758,\"dice-three\":62759,\"dice-two\":62760,\"dice\":62754,\"digging\":63582,\"digital-tachograph\":62822,\"diploma\":62954,\"directions\":62955,\"disc-drive\":63669,\"disease\":63482,\"divide\":62761,\"dizzy\":62823,\"dna\":62577,\"do-not-enter\":62956,\"dog-leashed\":63188,\"dog\":63187,\"dollar-sign\":61781,\"dolly-empty\":62579,\"dolly-flatbed-alt\":62581,\"dolly-flatbed-empty\":62582,\"dolly-flatbed\":62580,\"dolly\":62578,\"donate\":62649,\"door-closed\":62762,\"door-open\":62763,\"dot-circle\":61842,\"dove\":62650,\"download\":61465,\"drafting-compass\":62824,\"dragon\":63189,\"draw-circle\":62957,\"draw-polygon\":62958,\"draw-square\":62959,\"dreidel\":63378,\"drone-alt\":63584,\"drone\":63583,\"drum-steelpan\":62826,\"drum\":62825,\"drumstick-bite\":63191,\"drumstick\":63190,\"dryer-alt\":63586,\"dryer\":63585,\"duck\":63192,\"dumbbell\":62539,\"dumpster-fire\":63380,\"dumpster\":63379,\"dungeon\":63193,\"ear-muffs\":63381,\"ear\":62960,\"eclipse-alt\":63306,\"eclipse\":63305,\"edit\":61508,\"egg-fried\":63484,\"egg\":63483,\"eject\":61522,\"elephant\":63194,\"ellipsis-h-alt\":62363,\"ellipsis-h\":61761,\"ellipsis-v-alt\":62364,\"ellipsis-v\":61762,\"empty-set\":63062,\"engine-warning\":62962,\"envelope-open-dollar\":63063,\"envelope-open-text\":63064,\"envelope-open\":62134,\"envelope-square\":61849,\"envelope\":61664,\"equals\":62764,\"eraser\":61741,\"ethernet\":63382,\"euro-sign\":61779,\"exchange-alt\":62306,\"exchange\":61676,\"exclamation-circle\":61546,\"exclamation-square\":62241,\"exclamation-triangle\":61553,\"exclamation\":61738,\"expand-alt\":62500,\"expand-arrows-alt\":62238,\"expand-arrows\":62237,\"expand-wide\":62240,\"expand\":61541,\"external-link-alt\":62301,\"external-link-square-alt\":62304,\"external-link-square\":61772,\"external-link\":61582,\"eye-dropper\":61947,\"eye-evil\":63195,\"eye-slash\":61552,\"eye\":61550,\"fan-table\":57348,\"fan\":63587,\"farm\":63588,\"fast-backward\":61513,\"fast-forward\":61520,\"faucet-drip\":57350,\"faucet\":57349,\"fax\":61868,\"feather-alt\":62827,\"feather\":62765,\"female\":61826,\"field-hockey\":62540,\"fighter-jet\":61691,\"file-alt\":61788,\"file-archive\":61894,\"file-audio\":61895,\"file-certificate\":62963,\"file-chart-line\":63065,\"file-chart-pie\":63066,\"file-check\":62230,\"file-code\":61897,\"file-contract\":62828,\"file-csv\":63197,\"file-download\":62829,\"file-edit\":62236,\"file-excel\":61891,\"file-exclamation\":62234,\"file-export\":62830,\"file-image\":61893,\"file-import\":62831,\"file-invoice-dollar\":62833,\"file-invoice\":62832,\"file-medical-alt\":62584,\"file-medical\":62583,\"file-minus\":62232,\"file-music\":63670,\"file-pdf\":61889,\"file-plus\":62233,\"file-powerpoint\":61892,\"file-prescription\":62834,\"file-search\":63589,\"file-signature\":62835,\"file-spreadsheet\":63067,\"file-times\":62231,\"file-upload\":62836,\"file-user\":63068,\"file-video\":61896,\"file-word\":61890,\"file\":61787,\"files-medical\":63485,\"fill-drip\":62838,\"fill\":62837,\"film-alt\":62368,\"film-canister\":63671,\"film\":61448,\"filter\":61616,\"fingerprint\":62839,\"fire-alt\":63460,\"fire-extinguisher\":61748,\"fire-smoke\":63307,\"fire\":61549,\"fireplace\":63386,\"first-aid\":62585,\"fish-cooked\":63486,\"fish\":62840,\"fist-raised\":63198,\"flag-alt\":63308,\"flag-checkered\":61726,\"flag-usa\":63309,\"flag\":61476,\"flame\":63199,\"flashlight\":63672,\"flask-poison\":63200,\"flask-potion\":63201,\"flask\":61635,\"flower-daffodil\":63488,\"flower-tulip\":63489,\"flower\":63487,\"flushed\":62841,\"flute\":63673,\"flux-capacitor\":63674,\"fog\":63310,\"folder-download\":57427,\"folder-minus\":63069,\"folder-open\":61564,\"folder-plus\":63070,\"folder-times\":63071,\"folder-tree\":63490,\"folder-upload\":57428,\"folder\":61563,\"folders\":63072,\"font-awesome-logo-full\":62694,\"font-case\":63590,\"font\":61489,\"football-ball\":62542,\"football-helmet\":62543,\"forklift\":62586,\"forward\":61518,\"fragile\":62651,\"french-fries\":63491,\"frog\":62766,\"frosty-head\":63387,\"frown-open\":62842,\"frown\":61721,\"function\":63073,\"funnel-dollar\":63074,\"futbol\":61923,\"galaxy\":57352,\"game-board-alt\":63592,\"game-board\":63591,\"game-console-handheld\":63675,\"gamepad-alt\":63676,\"gamepad\":61723,\"garage-car\":57354,\"garage-open\":57355,\"garage\":57353,\"gas-pump-slash\":62964,\"gas-pump\":62767,\"gavel\":61667,\"gem\":62373,\"genderless\":61997,\"ghost\":63202,\"gift-card\":63075,\"gift\":61547,\"gifts\":63388,\"gingerbread-man\":63389,\"glass-champagne\":63390,\"glass-cheers\":63391,\"glass-citrus\":63593,\"glass-martini-alt\":62843,\"glass-martini\":61440,\"glass-whiskey-rocks\":63393,\"glass-whiskey\":63392,\"glass\":63492,\"glasses-alt\":62965,\"glasses\":62768,\"globe-africa\":62844,\"globe-americas\":62845,\"globe-asia\":62846,\"globe-europe\":63394,\"globe-snow\":63395,\"globe-stand\":62966,\"globe\":61612,\"golf-ball\":62544,\"golf-club\":62545,\"gopuram\":63076,\"graduation-cap\":61853,\"gramophone\":63677,\"greater-than-equal\":62770,\"greater-than\":62769,\"grimace\":62847,\"grin-alt\":62849,\"grin-beam-sweat\":62851,\"grin-beam\":62850,\"grin-hearts\":62852,\"grin-squint-tears\":62854,\"grin-squint\":62853,\"grin-stars\":62855,\"grin-tears\":62856,\"grin-tongue-squint\":62858,\"grin-tongue-wink\":62859,\"grin-tongue\":62857,\"grin-wink\":62860,\"grin\":62848,\"grip-horizontal\":62861,\"grip-lines-vertical\":63397,\"grip-lines\":63396,\"grip-vertical\":62862,\"guitar-electric\":63678,\"guitar\":63398,\"guitars\":63679,\"h-square\":61693,\"h1\":62227,\"h2\":62228,\"h3\":62229,\"h4\":63594,\"hamburger\":63493,\"hammer-war\":63204,\"hammer\":63203,\"hamsa\":63077,\"hand-heart\":62652,\"hand-holding-box\":62587,\"hand-holding-heart\":62654,\"hand-holding-magic\":63205,\"hand-holding-medical\":57436,\"hand-holding-seedling\":62655,\"hand-holding-usd\":62656,\"hand-holding-water\":62657,\"hand-holding\":62653,\"hand-lizard\":62040,\"hand-middle-finger\":63494,\"hand-paper\":62038,\"hand-peace\":62043,\"hand-point-down\":61607,\"hand-point-left\":61605,\"hand-point-right\":61604,\"hand-point-up\":61606,\"hand-pointer\":62042,\"hand-receiving\":62588,\"hand-rock\":62037,\"hand-scissors\":62039,\"hand-sparkles\":57437,\"hand-spock\":62041,\"hands-heart\":62659,\"hands-helping\":62660,\"hands-usd\":62661,\"hands-wash\":57438,\"hands\":62658,\"handshake-alt-slash\":57439,\"handshake-alt\":62662,\"handshake-slash\":57440,\"handshake\":62133,\"hanukiah\":63206,\"hard-hat\":63495,\"hashtag\":62098,\"hat-chef\":63595,\"hat-cowboy-side\":63681,\"hat-cowboy\":63680,\"hat-santa\":63399,\"hat-winter\":63400,\"hat-witch\":63207,\"hat-wizard\":63208,\"hdd\":61600,\"head-side-brain\":63496,\"head-side-cough-slash\":57442,\"head-side-cough\":57441,\"head-side-headphones\":63682,\"head-side-mask\":57443,\"head-side-medical\":63497,\"head-side-virus\":57444,\"head-side\":63209,\"head-vr\":63210,\"heading\":61916,\"headphones-alt\":62863,\"headphones\":61477,\"headset\":62864,\"heart-broken\":63401,\"heart-circle\":62663,\"heart-rate\":62968,\"heart-square\":62664,\"heart\":61444,\"heartbeat\":61982,\"heat\":57356,\"helicopter\":62771,\"helmet-battle\":63211,\"hexagon\":62226,\"highlighter\":62865,\"hiking\":63212,\"hippo\":63213,\"history\":61914,\"hockey-mask\":63214,\"hockey-puck\":62547,\"hockey-sticks\":62548,\"holly-berry\":63402,\"home-alt\":63498,\"home-heart\":62665,\"home-lg-alt\":63500,\"home-lg\":63499,\"home\":61461,\"hood-cloak\":63215,\"horizontal-rule\":63596,\"horse-head\":63403,\"horse-saddle\":63683,\"horse\":63216,\"hospital-alt\":62589,\"hospital-symbol\":62590,\"hospital-user\":63501,\"hospital\":61688,\"hospitals\":63502,\"hot-tub\":62867,\"hotdog\":63503,\"hotel\":62868,\"hourglass-end\":62035,\"hourglass-half\":62034,\"hourglass-start\":62033,\"hourglass\":62036,\"house-damage\":63217,\"house-day\":57358,\"house-flood\":63311,\"house-leave\":57359,\"house-night\":57360,\"house-return\":57361,\"house-signal\":57362,\"house-user\":57445,\"house\":57357,\"hryvnia\":63218,\"humidity\":63312,\"hurricane\":63313,\"i-cursor\":62022,\"ice-cream\":63504,\"ice-skate\":63404,\"icicles\":63405,\"icons-alt\":63598,\"icons\":63597,\"id-badge\":62145,\"id-card-alt\":62591,\"id-card\":62146,\"igloo\":63406,\"image-polaroid\":63684,\"image\":61502,\"images\":62210,\"inbox-in\":62224,\"inbox-out\":62225,\"inbox\":61468,\"indent\":61500,\"industry-alt\":62387,\"industry\":62069,\"infinity\":62772,\"info-circle\":61530,\"info-square\":62223,\"info\":61737,\"inhaler\":62969,\"integral\":63079,\"intersection\":63080,\"inventory\":62592,\"island-tropical\":63505,\"italic\":61491,\"jack-o-lantern\":62222,\"jedi\":63081,\"joint\":62869,\"journal-whills\":63082,\"joystick\":63685,\"jug\":63686,\"kaaba\":63083,\"kazoo\":63687,\"kerning\":63599,\"key-skeleton\":63219,\"key\":61572,\"keyboard\":61724,\"keynote\":63084,\"khanda\":63085,\"kidneys\":62971,\"kiss-beam\":62871,\"kiss-wink-heart\":62872,\"kiss\":62870,\"kite\":63220,\"kiwi-bird\":62773,\"knife-kitchen\":63221,\"lambda\":63086,\"lamp-desk\":57364,\"lamp-floor\":57365,\"lamp\":62666,\"landmark-alt\":63314,\"landmark\":63087,\"language\":61867,\"laptop-code\":62972,\"laptop-house\":57446,\"laptop-medical\":63506,\"laptop\":61705,\"lasso\":63688,\"laugh-beam\":62874,\"laugh-squint\":62875,\"laugh-wink\":62876,\"laugh\":62873,\"layer-group\":62973,\"layer-minus\":62974,\"layer-plus\":62975,\"leaf-heart\":62667,\"leaf-maple\":63222,\"leaf-oak\":63223,\"leaf\":61548,\"lemon\":61588,\"less-than-equal\":62775,\"less-than\":62774,\"level-down-alt\":62398,\"level-down\":61769,\"level-up-alt\":62399,\"level-up\":61768,\"life-ring\":61901,\"light-ceiling\":57366,\"light-switch-off\":57368,\"light-switch-on\":57369,\"light-switch\":57367,\"lightbulb-dollar\":63088,\"lightbulb-exclamation\":63089,\"lightbulb-on\":63090,\"lightbulb-slash\":63091,\"lightbulb\":61675,\"lights-holiday\":63410,\"line-columns\":63600,\"line-height\":63601,\"link\":61633,\"lips\":62976,\"lira-sign\":61845,\"list-alt\":61474,\"list-music\":63689,\"list-ol\":61643,\"list-ul\":61642,\"list\":61498,\"location-arrow\":61732,\"location-circle\":62978,\"location-slash\":62979,\"location\":62977,\"lock-alt\":62221,\"lock-open-alt\":62402,\"lock-open\":62401,\"lock\":61475,\"long-arrow-alt-down\":62217,\"long-arrow-alt-left\":62218,\"long-arrow-alt-right\":62219,\"long-arrow-alt-up\":62220,\"long-arrow-down\":61813,\"long-arrow-left\":61815,\"long-arrow-right\":61816,\"long-arrow-up\":61814,\"loveseat\":62668,\"low-vision\":62120,\"luchador\":62549,\"luggage-cart\":62877,\"lungs-virus\":57447,\"lungs\":62980,\"mace\":63224,\"magic\":61648,\"magnet\":61558,\"mail-bulk\":63092,\"mailbox\":63507,\"male\":61827,\"mandolin\":63225,\"map-marked-alt\":62880,\"map-marked\":62879,\"map-marker-alt-slash\":62981,\"map-marker-alt\":62405,\"map-marker-check\":62982,\"map-marker-edit\":62983,\"map-marker-exclamation\":62984,\"map-marker-minus\":62985,\"map-marker-plus\":62986,\"map-marker-question\":62987,\"map-marker-slash\":62988,\"map-marker-smile\":62989,\"map-marker-times\":62990,\"map-marker\":61505,\"map-pin\":62070,\"map-signs\":62071,\"map\":62073,\"marker\":62881,\"mars-double\":61991,\"mars-stroke-h\":61995,\"mars-stroke-v\":61994,\"mars-stroke\":61993,\"mars\":61986,\"mask\":63226,\"meat\":63508,\"medal\":62882,\"medkit\":61690,\"megaphone\":63093,\"meh-blank\":62884,\"meh-rolling-eyes\":62885,\"meh\":61722,\"memory\":62776,\"menorah\":63094,\"mercury\":61987,\"meteor\":63315,\"microchip\":62171,\"microphone-alt-slash\":62777,\"microphone-alt\":62409,\"microphone-slash\":61745,\"microphone-stand\":63691,\"microphone\":61744,\"microscope\":62992,\"microwave\":57371,\"mind-share\":63095,\"minus-circle\":61526,\"minus-hexagon\":62215,\"minus-octagon\":62216,\"minus-square\":61766,\"minus\":61544,\"mistletoe\":63412,\"mitten\":63413,\"mobile-alt\":62413,\"mobile-android-alt\":62415,\"mobile-android\":62414,\"mobile\":61707,\"money-bill-alt\":62417,\"money-bill-wave-alt\":62779,\"money-bill-wave\":62778,\"money-bill\":61654,\"money-check-alt\":62781,\"money-check-edit-alt\":63603,\"money-check-edit\":63602,\"money-check\":62780,\"monitor-heart-rate\":62993,\"monkey\":63227,\"monument\":62886,\"moon-cloud\":63316,\"moon-stars\":63317,\"moon\":61830,\"mortar-pestle\":62887,\"mosque\":63096,\"motorcycle\":61980,\"mountain\":63228,\"mountains\":63229,\"mouse-alt\":63693,\"mouse-pointer\":62021,\"mouse\":63692,\"mp3-player\":63694,\"mug-hot\":63414,\"mug-marshmallows\":63415,\"mug-tea\":63605,\"mug\":63604,\"music-alt-slash\":63696,\"music-alt\":63695,\"music-slash\":63697,\"music\":61441,\"narwhal\":63230,\"network-wired\":63231,\"neuter\":61996,\"newspaper\":61930,\"not-equal\":62782,\"notes-medical\":62593,\"object-group\":62023,\"object-ungroup\":62024,\"octagon\":62214,\"oil-can\":62995,\"oil-temp\":62996,\"om\":63097,\"omega\":63098,\"ornament\":63416,\"otter\":63232,\"outdent\":61499,\"outlet\":57372,\"oven\":57373,\"overline\":63606,\"page-break\":63607,\"pager\":63509,\"paint-brush-alt\":62889,\"paint-brush\":61948,\"paint-roller\":62890,\"palette\":62783,\"pallet-alt\":62595,\"pallet\":62594,\"paper-plane\":61912,\"paperclip\":61638,\"parachute-box\":62669,\"paragraph-rtl\":63608,\"paragraph\":61917,\"parking-circle-slash\":62998,\"parking-circle\":62997,\"parking-slash\":62999,\"parking\":62784,\"passport\":62891,\"pastafarianism\":63099,\"paste\":61674,\"pause-circle\":62091,\"pause\":61516,\"paw-alt\":63233,\"paw-claws\":63234,\"paw\":61872,\"peace\":63100,\"pegasus\":63235,\"pen-alt\":62213,\"pen-fancy\":62892,\"pen-nib\":62893,\"pen-square\":61771,\"pen\":62212,\"pencil-alt\":62211,\"pencil-paintbrush\":63000,\"pencil-ruler\":62894,\"pencil\":61504,\"pennant\":62550,\"people-arrows\":57448,\"people-carry\":62670,\"pepper-hot\":63510,\"percent\":62101,\"percentage\":62785,\"person-booth\":63318,\"person-carry\":62671,\"person-dolly-empty\":62673,\"person-dolly\":62672,\"person-sign\":63319,\"phone-alt\":63609,\"phone-laptop\":63610,\"phone-office\":63101,\"phone-plus\":62674,\"phone-rotary\":63699,\"phone-slash\":62429,\"phone-square-alt\":63611,\"phone-square\":61592,\"phone-volume\":62112,\"phone\":61589,\"photo-video\":63612,\"pi\":63102,\"piano-keyboard\":63701,\"piano\":63700,\"pie\":63237,\"pig\":63238,\"piggy-bank\":62675,\"pills\":62596,\"pizza-slice\":63512,\"pizza\":63511,\"place-of-worship\":63103,\"plane-alt\":62430,\"plane-arrival\":62895,\"plane-departure\":62896,\"plane-slash\":57449,\"plane\":61554,\"planet-moon\":57375,\"planet-ringed\":57376,\"play-circle\":61764,\"play\":61515,\"plug\":61926,\"plus-circle\":61525,\"plus-hexagon\":62208,\"plus-octagon\":62209,\"plus-square\":61694,\"plus\":61543,\"podcast\":62158,\"podium-star\":63320,\"podium\":63104,\"police-box\":57377,\"poll-h\":63106,\"poll-people\":63321,\"poll\":63105,\"poo-storm\":63322,\"poo\":62206,\"poop\":63001,\"popcorn\":63513,\"portal-enter\":57378,\"portal-exit\":57379,\"portrait\":62432,\"pound-sign\":61780,\"power-off\":61457,\"pray\":63107,\"praying-hands\":63108,\"prescription-bottle-alt\":62598,\"prescription-bottle\":62597,\"prescription\":62897,\"presentation\":63109,\"print-search\":63514,\"print-slash\":63110,\"print\":61487,\"procedures\":62599,\"project-diagram\":62786,\"projector\":63702,\"pump-medical\":57450,\"pump-soap\":57451,\"pumpkin\":63239,\"puzzle-piece\":61742,\"qrcode\":61481,\"question-circle\":61529,\"question-square\":62205,\"question\":61736,\"quidditch\":62552,\"quote-left\":61709,\"quote-right\":61710,\"quran\":63111,\"rabbit-fast\":63241,\"rabbit\":63240,\"racquet\":62554,\"radar\":57380,\"radiation-alt\":63418,\"radiation\":63417,\"radio-alt\":63704,\"radio\":63703,\"rainbow\":63323,\"raindrops\":63324,\"ram\":63242,\"ramp-loading\":62676,\"random\":61556,\"raygun\":57381,\"receipt\":62787,\"record-vinyl\":63705,\"rectangle-landscape\":62202,\"rectangle-portrait\":62203,\"rectangle-wide\":62204,\"recycle\":61880,\"redo-alt\":62201,\"redo\":61470,\"refrigerator\":57382,\"registered\":62045,\"remove-format\":63613,\"repeat-1-alt\":62310,\"repeat-1\":62309,\"repeat-alt\":62308,\"repeat\":62307,\"reply-all\":61730,\"reply\":62437,\"republican\":63326,\"restroom\":63421,\"retweet-alt\":62305,\"retweet\":61561,\"ribbon\":62678,\"ring\":63243,\"rings-wedding\":63515,\"road\":61464,\"robot\":62788,\"rocket-launch\":57383,\"rocket\":61749,\"route-highway\":63002,\"route-interstate\":63003,\"route\":62679,\"router\":63706,\"rss-square\":61763,\"rss\":61598,\"ruble-sign\":61784,\"ruler-combined\":62790,\"ruler-horizontal\":62791,\"ruler-triangle\":63004,\"ruler-vertical\":62792,\"ruler\":62789,\"running\":63244,\"rupee-sign\":61782,\"rv\":63422,\"sack-dollar\":63517,\"sack\":63516,\"sad-cry\":62899,\"sad-tear\":62900,\"salad\":63518,\"sandwich\":63519,\"satellite-dish\":63424,\"satellite\":63423,\"sausage\":63520,\"save\":61639,\"sax-hot\":63707,\"saxophone\":63708,\"scalpel-path\":63006,\"scalpel\":63005,\"scanner-image\":63731,\"scanner-keyboard\":62601,\"scanner-touchscreen\":62602,\"scanner\":62600,\"scarecrow\":63245,\"scarf\":63425,\"school\":62793,\"screwdriver\":62794,\"scroll-old\":63247,\"scroll\":63246,\"scrubber\":62200,\"scythe\":63248,\"sd-card\":63426,\"search-dollar\":63112,\"search-location\":63113,\"search-minus\":61456,\"search-plus\":61454,\"search\":61442,\"seedling\":62680,\"send-back\":63614,\"send-backward\":63615,\"sensor-alert\":57385,\"sensor-fire\":57386,\"sensor-on\":57387,\"sensor-smoke\":57388,\"sensor\":57384,\"server\":62003,\"shapes\":63007,\"share-all\":62311,\"share-alt-square\":61921,\"share-alt\":61920,\"share-square\":61773,\"share\":61540,\"sheep\":63249,\"shekel-sign\":61963,\"shield-alt\":62445,\"shield-check\":62199,\"shield-cross\":63250,\"shield-virus\":57452,\"shield\":61746,\"ship\":61978,\"shipping-fast\":62603,\"shipping-timed\":62604,\"shish-kebab\":63521,\"shoe-prints\":62795,\"shopping-bag\":62096,\"shopping-basket\":62097,\"shopping-cart\":61562,\"shovel-snow\":63427,\"shovel\":63251,\"shower\":62156,\"shredder\":63114,\"shuttle-van\":62902,\"shuttlecock\":62555,\"sickle\":63522,\"sigma\":63115,\"sign-in-alt\":62198,\"sign-in\":61584,\"sign-language\":62119,\"sign-out-alt\":62197,\"sign-out\":61579,\"sign\":62681,\"signal-1\":63116,\"signal-2\":63117,\"signal-3\":63118,\"signal-4\":63119,\"signal-alt-1\":63121,\"signal-alt-2\":63122,\"signal-alt-3\":63123,\"signal-alt-slash\":63124,\"signal-alt\":63120,\"signal-slash\":63125,\"signal-stream\":63709,\"signal\":61458,\"signature\":62903,\"sim-card\":63428,\"sink\":57453,\"siren-on\":57390,\"siren\":57389,\"sitemap\":61672,\"skating\":63429,\"skeleton\":63008,\"ski-jump\":63431,\"ski-lift\":63432,\"skiing-nordic\":63434,\"skiing\":63433,\"skull-cow\":63710,\"skull-crossbones\":63252,\"skull\":62796,\"slash\":63253,\"sledding\":63435,\"sleigh\":63436,\"sliders-h-square\":62448,\"sliders-h\":61918,\"sliders-v-square\":62450,\"sliders-v\":62449,\"smile-beam\":62904,\"smile-plus\":62905,\"smile-wink\":62682,\"smile\":61720,\"smog\":63327,\"smoke\":63328,\"smoking-ban\":62797,\"smoking\":62605,\"sms\":63437,\"snake\":63254,\"snooze\":63616,\"snow-blowing\":63329,\"snowboarding\":63438,\"snowflake\":62172,\"snowflakes\":63439,\"snowman\":63440,\"snowmobile\":63441,\"snowplow\":63442,\"soap\":57454,\"socks\":63126,\"solar-panel\":62906,\"solar-system\":57391,\"sort-alpha-down-alt\":63617,\"sort-alpha-down\":61789,\"sort-alpha-up-alt\":63618,\"sort-alpha-up\":61790,\"sort-alt\":63619,\"sort-amount-down-alt\":63620,\"sort-amount-down\":61792,\"sort-amount-up-alt\":63621,\"sort-amount-up\":61793,\"sort-circle-down\":57393,\"sort-circle-up\":57394,\"sort-circle\":57392,\"sort-down\":61661,\"sort-numeric-down-alt\":63622,\"sort-numeric-down\":61794,\"sort-numeric-up-alt\":63623,\"sort-numeric-up\":61795,\"sort-shapes-down-alt\":63625,\"sort-shapes-down\":63624,\"sort-shapes-up-alt\":63627,\"sort-shapes-up\":63626,\"sort-size-down-alt\":63629,\"sort-size-down\":63628,\"sort-size-up-alt\":63631,\"sort-size-up\":63630,\"sort-up\":61662,\"sort\":61660,\"soup\":63523,\"spa\":62907,\"space-shuttle\":61847,\"space-station-moon-alt\":57396,\"space-station-moon\":57395,\"spade\":62196,\"sparkles\":63632,\"speaker\":63711,\"speakers\":63712,\"spell-check\":63633,\"spider-black-widow\":63256,\"spider-web\":63257,\"spider\":63255,\"spinner-third\":62452,\"spinner\":61712,\"splotch\":62908,\"spray-can\":62909,\"sprinkler\":57397,\"square-full\":62556,\"square-root-alt\":63128,\"square-root\":63127,\"square\":61640,\"squirrel\":63258,\"staff\":63259,\"stamp\":62911,\"star-and-crescent\":63129,\"star-christmas\":63444,\"star-exclamation\":62195,\"star-half-alt\":62912,\"star-half\":61577,\"star-of-david\":63130,\"star-of-life\":63009,\"star-shooting\":57398,\"star\":61445,\"starfighter-alt\":57400,\"starfighter\":57399,\"stars\":63330,\"starship-freighter\":57402,\"starship\":57401,\"steak\":63524,\"steering-wheel\":63010,\"step-backward\":61512,\"step-forward\":61521,\"stethoscope\":61681,\"sticky-note\":62025,\"stocking\":63445,\"stomach\":63011,\"stop-circle\":62093,\"stop\":61517,\"stopwatch-20\":57455,\"stopwatch\":62194,\"store-alt-slash\":57456,\"store-alt\":62799,\"store-slash\":57457,\"store\":62798,\"stream\":62800,\"street-view\":61981,\"stretcher\":63525,\"strikethrough\":61644,\"stroopwafel\":62801,\"subscript\":61740,\"subway\":62009,\"suitcase-rolling\":62913,\"suitcase\":61682,\"sun-cloud\":63331,\"sun-dust\":63332,\"sun-haze\":63333,\"sun\":61829,\"sunglasses\":63634,\"sunrise\":63334,\"sunset\":63335,\"superscript\":61739,\"surprise\":62914,\"swatchbook\":62915,\"swimmer\":62916,\"swimming-pool\":62917,\"sword-laser-alt\":57404,\"sword-laser\":57403,\"sword\":63260,\"swords-laser\":57405,\"swords\":63261,\"synagogue\":63131,\"sync-alt\":62193,\"sync\":61473,\"syringe\":62606,\"table-tennis\":62557,\"table\":61646,\"tablet-alt\":62458,\"tablet-android-alt\":62460,\"tablet-android\":62459,\"tablet-rugged\":62607,\"tablet\":61706,\"tablets\":62608,\"tachometer-alt-average\":63012,\"tachometer-alt-fast\":63013,\"tachometer-alt-fastest\":63014,\"tachometer-alt-slow\":63015,\"tachometer-alt-slowest\":63016,\"tachometer-alt\":62461,\"tachometer-average\":63017,\"tachometer-fast\":63018,\"tachometer-fastest\":63019,\"tachometer-slow\":63020,\"tachometer-slowest\":63021,\"tachometer\":61668,\"taco\":63526,\"tag\":61483,\"tags\":61484,\"tally\":63132,\"tanakh\":63527,\"tape\":62683,\"tasks-alt\":63528,\"tasks\":61614,\"taxi\":61882,\"teeth-open\":63023,\"teeth\":63022,\"telescope\":57406,\"temperature-down\":57407,\"temperature-frigid\":63336,\"temperature-high\":63337,\"temperature-hot\":63338,\"temperature-low\":63339,\"temperature-up\":57408,\"tenge\":63447,\"tennis-ball\":62558,\"terminal\":61728,\"text-height\":61492,\"text-size\":63636,\"text-width\":61493,\"text\":63635,\"th-large\":61449,\"th-list\":61451,\"th\":61450,\"theater-masks\":63024,\"thermometer-empty\":62155,\"thermometer-full\":62151,\"thermometer-half\":62153,\"thermometer-quarter\":62154,\"thermometer-three-quarters\":62152,\"thermometer\":62609,\"theta\":63134,\"thumbs-down\":61797,\"thumbs-up\":61796,\"thumbtack\":61581,\"thunderstorm-moon\":63341,\"thunderstorm-sun\":63342,\"thunderstorm\":63340,\"ticket-alt\":62463,\"ticket\":61765,\"tilde\":63135,\"times-circle\":61527,\"times-hexagon\":62190,\"times-octagon\":62192,\"times-square\":62163,\"times\":61453,\"tint-slash\":62919,\"tint\":61507,\"tire-flat\":63026,\"tire-pressure-warning\":63027,\"tire-rugged\":63028,\"tire\":63025,\"tired\":62920,\"toggle-off\":61956,\"toggle-on\":61957,\"toilet-paper-alt\":63263,\"toilet-paper-slash\":57458,\"toilet-paper\":63262,\"toilet\":63448,\"tombstone-alt\":63265,\"tombstone\":63264,\"toolbox\":62802,\"tools\":63449,\"tooth\":62921,\"toothbrush\":63029,\"torah\":63136,\"torii-gate\":63137,\"tornado\":63343,\"tractor\":63266,\"trademark\":62044,\"traffic-cone\":63030,\"traffic-light-go\":63032,\"traffic-light-slow\":63033,\"traffic-light-stop\":63034,\"traffic-light\":63031,\"trailer\":57409,\"train\":62008,\"tram\":63450,\"transgender-alt\":61989,\"transgender\":61988,\"transporter-1\":57411,\"transporter-2\":57412,\"transporter-3\":57413,\"transporter-empty\":57414,\"transporter\":57410,\"trash-alt\":62189,\"trash-restore-alt\":63530,\"trash-restore\":63529,\"trash-undo-alt\":63638,\"trash-undo\":63637,\"trash\":61944,\"treasure-chest\":63267,\"tree-alt\":62464,\"tree-christmas\":63451,\"tree-decorated\":63452,\"tree-large\":63453,\"tree-palm\":63531,\"tree\":61883,\"trees\":63268,\"triangle-music\":63714,\"triangle\":62188,\"trophy-alt\":62187,\"trophy\":61585,\"truck-container\":62684,\"truck-couch\":62685,\"truck-loading\":62686,\"truck-monster\":63035,\"truck-moving\":62687,\"truck-pickup\":63036,\"truck-plow\":63454,\"truck-ramp\":62688,\"truck\":61649,\"trumpet\":63715,\"tshirt\":62803,\"tty\":61924,\"turkey\":63269,\"turntable\":63716,\"turtle\":63270,\"tv-alt\":63717,\"tv-music\":63718,\"tv-retro\":62465,\"tv\":62060,\"typewriter\":63719,\"ufo-beam\":57416,\"ufo\":57415,\"umbrella-beach\":62922,\"umbrella\":61673,\"underline\":61645,\"undo-alt\":62186,\"undo\":61666,\"unicorn\":63271,\"union\":63138,\"universal-access\":62106,\"university\":61852,\"unlink\":61735,\"unlock-alt\":61758,\"unlock\":61596,\"upload\":61587,\"usb-drive\":63721,\"usd-circle\":62184,\"usd-square\":62185,\"user-alien\":57418,\"user-alt-slash\":62714,\"user-alt\":62470,\"user-astronaut\":62715,\"user-chart\":63139,\"user-check\":62716,\"user-circle\":62141,\"user-clock\":62717,\"user-cog\":62718,\"user-cowboy\":63722,\"user-crown\":63140,\"user-edit\":62719,\"user-friends\":62720,\"user-graduate\":62721,\"user-hard-hat\":63532,\"user-headset\":63533,\"user-injured\":63272,\"user-lock\":62722,\"user-md-chat\":63534,\"user-md\":61680,\"user-minus\":62723,\"user-music\":63723,\"user-ninja\":62724,\"user-nurse\":63535,\"user-plus\":62004,\"user-robot\":57419,\"user-secret\":61979,\"user-shield\":62725,\"user-slash\":62726,\"user-tag\":62727,\"user-tie\":62728,\"user-times\":62005,\"user-unlock\":57432,\"user-visor\":57420,\"user\":61447,\"users-class\":63037,\"users-cog\":62729,\"users-crown\":63141,\"users-medical\":63536,\"users-slash\":57459,\"users\":61632,\"utensil-fork\":62179,\"utensil-knife\":62180,\"utensil-spoon\":62181,\"utensils-alt\":62182,\"utensils\":62183,\"vacuum-robot\":57422,\"vacuum\":57421,\"value-absolute\":63142,\"vector-square\":62923,\"venus-double\":61990,\"venus-mars\":61992,\"venus\":61985,\"vest-patches\":57478,\"vest\":57477,\"vhs\":63724,\"vial\":62610,\"vials\":62611,\"video-plus\":62689,\"video-slash\":62690,\"video\":61501,\"vihara\":63143,\"violin\":63725,\"virus-slash\":57461,\"virus\":57460,\"viruses\":57462,\"voicemail\":63639,\"volcano\":63344,\"volleyball-ball\":62559,\"volume-down\":61479,\"volume-mute\":63145,\"volume-off\":61478,\"volume-slash\":62178,\"volume-up\":61480,\"volume\":63144,\"vote-nay\":63345,\"vote-yea\":63346,\"vr-cardboard\":63273,\"wagon-covered\":63726,\"walker\":63537,\"walkie-talkie\":63727,\"walking\":62804,\"wallet\":62805,\"wand-magic\":63275,\"wand\":63274,\"warehouse-alt\":62613,\"warehouse\":62612,\"washer\":63640,\"watch-calculator\":63728,\"watch-fitness\":63038,\"watch\":62177,\"water-lower\":63348,\"water-rise\":63349,\"water\":63347,\"wave-sine\":63641,\"wave-square\":63550,\"wave-triangle\":63642,\"waveform-path\":63730,\"waveform\":63729,\"webcam-slash\":63539,\"webcam\":63538,\"weight-hanging\":62925,\"weight\":62614,\"whale\":63276,\"wheat\":63277,\"wheelchair\":61843,\"whistle\":62560,\"wifi-1\":63146,\"wifi-2\":63147,\"wifi-slash\":63148,\"wifi\":61931,\"wind-turbine\":63643,\"wind-warning\":63350,\"wind\":63278,\"window-alt\":62479,\"window-close\":62480,\"window-frame-open\":57424,\"window-frame\":57423,\"window-maximize\":62160,\"window-minimize\":62161,\"window-restore\":62162,\"window\":62478,\"windsock\":63351,\"wine-bottle\":63279,\"wine-glass-alt\":62926,\"wine-glass\":62691,\"won-sign\":61785,\"wreath\":63458,\"wrench\":61613,\"x-ray\":62615,\"yen-sign\":61783,\"yin-yang\":63149}"
  },
  {
    "path": "packages/fontawesome5-pro/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontawesome5-pro\",\n  \"version\": \"12.4.0\",\n  \"description\": \"Fontawesome5 Pro font for react native vector icons\",\n  \"source\": \"./src/index.tsx\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"fontawesome5-pro\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/fontawesome5-pro\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\",\n    \"@react-native-vector-icons/fontawesome-common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome5-pro/react-native-vector-icons-fontawesome5-pro.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-fontawesome5-pro'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\n\n  s.script_phase = {\n    name: 'Copy Custom Fonts',\n    execution_position: :after_compile,\n    script: <<~SCRIPT\n      set -e\n\n      HEAD=\"(RNVI-fontawesome5-pro)\"\n\n      echo \"${HEAD} START_COPY_FONTS\"\n\n      echo \"${HEAD} PWD: $(pwd)\"\n\n      #\n      # Find the custom font Directory\n      #\n\n      # Assume the project root is always two directories above the POD_ROOT\n      echo \"${HEAD} PODS_ROOT: $PODS_ROOT\"\n\n      PROJECT_ROOT=\"${PODS_ROOT}/../..\"\n      echo \"${HEAD} PROJECT_ROOT: $PROJECT_ROOT\"\n\n      cd $PROJECT_ROOT\n      FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/\"//g')\n      if [ -z \"$FONTS_DIR\" ]; then\n        FONTS_DIR=\"rnvi-fonts\"\n      fi\n      echo \"${HEAD} FONTS_DIR: $FONTS_DIR\"\n\n      FONTS_DIR=\"${PROJECT_ROOT}/${FONTS_DIR}/fontawesome5-pro\"\n      if [ ! -d \"$FONTS_DIR\" ]; then\n        echo \"${HEAD} $FONTS_DIR not found\"\n        exit 0\n      fi\n\n      #\n      # Find the destination we copy to\n      #\n\n      echo \"${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR\"\n      XCODE_DIR=$(ls -d \"$PODS_CONFIGURATION_BUILD_DIR\"/*.app)\n      echo \"${HEAD} XCODE_DIR: $XCODE_DIR\"\n      if [ -z \"$XCODE_DIR\" ]; then\n        echo \"Could not find XCODE_DIR to copy fonts to\"\n        exit 1\n      fi\n\n      DEST_DIR=\"${XCODE_DIR}\"\n      mkdir -p \"$DEST_DIR\"\n\n      #\n      # Copy the fonts\n      #\n\n      echo \"${HEAD} Copying the following files to $DEST_DIR\"\n      ls \"$FONTS_DIR\" | sed \"s/^/${HEAD} /\"\n\n      rsync -avr --copy-links --no-relative $FONTS_DIR/ \"$DEST_DIR\"\n\n      echo \"${HEAD} END:RNVI_COPY_FONTS\"\n    SCRIPT\n  }\nend\n"
  },
  {
    "path": "packages/fontawesome5-pro/src/index.tsx",
    "content": "/* eslint-disable react/jsx-pascal-case, no-console */\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * Instead, modify the template in `fontawesome-common/generator`.\n *\n * FontAwesome5Pro icon set component.\n * Usage: <FontAwesome5Pro name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport type { ComponentProps } from 'react';\nimport { Platform, type TextStyle } from 'react-native';\n\nimport { createIconSet, DEFAULT_ICON_COLOR, DEFAULT_ICON_SIZE } from '@react-native-vector-icons/common';\n\nimport brandGM from '../glyphmaps/FontAwesome5Pro_brand.json';\nimport duotoneGM from '../glyphmaps/FontAwesome5Pro_duotone.json';\nimport lightGM from '../glyphmaps/FontAwesome5Pro_light.json';\nimport regularGM from '../glyphmaps/FontAwesome5Pro_regular.json';\nimport solidGM from '../glyphmaps/FontAwesome5Pro_solid.json';\n\nimport metadata from '../glyphmaps/FontAwesome5Pro_meta.json';\n\nconst glyphValidator = (glyph: string, iconType: keyof typeof metadata) => metadata[iconType]?.includes(glyph);\n\nconst fontStyle = (fontWeight: TextStyle['fontWeight']) =>\n  Platform.select({\n    ios: {\n      fontWeight,\n    },\n    default: {},\n  });\n\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst LightIcon = createIconSet(lightGM, {\n  postScriptName: 'FontAwesome5Pro-Light',\n  fontFileName: 'FontAwesome5_Pro_Light.ttf',\n  fontStyle: fontStyle('300')\n});\nexport type FontAwesome5ProLightIconName = keyof typeof lightGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst RegularIcon = createIconSet(regularGM, {\n  postScriptName: 'FontAwesome5Pro-Regular',\n  fontFileName: 'FontAwesome5_Pro_Regular.ttf',\n  fontStyle: fontStyle('400')\n});\nexport type FontAwesome5ProRegularIconName = keyof typeof regularGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst SolidIcon = createIconSet(solidGM, {\n  postScriptName: 'FontAwesome5Pro-Solid',\n  fontFileName: 'FontAwesome5_Pro_Solid.ttf',\n  fontStyle: fontStyle('900')\n});\nexport type FontAwesome5ProSolidIconName = keyof typeof solidGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst DuotoneIcon = createIconSet(duotoneGM, {\n  postScriptName: 'FontAwesome5Duotone-Solid',\n  fontFileName: 'FontAwesome5_Pro_Duotone.ttf',\n  fontStyle: fontStyle('900')\n});\nexport type FontAwesome5ProDuotoneIconName = keyof typeof duotoneGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst BrandIcon = createIconSet(brandGM, {\n  postScriptName: 'FontAwesome5Brands-Regular',\n  fontFileName: 'FontAwesome5_Pro_Brands.ttf',\n  fontStyle: fontStyle('400')\n});\nexport type FontAwesome5ProBrandIconName = keyof typeof brandGM;\ntype Props =\n  | ({ iconStyle: 'light' } & ComponentProps<typeof LightIcon>)\n  | ({ iconStyle: 'regular' } & ComponentProps<typeof RegularIcon>)\n  | ({ iconStyle: 'solid' } & ComponentProps<typeof SolidIcon>)\n  | ({ iconStyle: 'duotone' } & ComponentProps<typeof DuotoneIcon>)\n  | ({ iconStyle: 'brand' } & ComponentProps<typeof BrandIcon>)\n  | ({ iconStyle?: never } & ComponentProps<typeof RegularIcon>);\n\nexport const FontAwesome5Pro = (props: Props) => {\n  const { iconStyle, name } = props;\n  if (!iconStyle) {\n    if (!glyphValidator(name, 'regular')) {\n      console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for 'regular' icon type for FontAwesome5Pro`);\n    }\n    return <RegularIcon {...props} />;\n  }\n\n  if (!glyphValidator(name, iconStyle)) {\n    console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for '${iconStyle}' icon type for FontAwesome5Pro`);\n\n    return <RegularIcon {...(props as ComponentProps<typeof RegularIcon>)} />;\n  }\n\n  switch (iconStyle) {\n    case 'brand':\n      return <BrandIcon {...props} />;\n    case 'duotone':\n      return <DuotoneIcon {...props} />;\n    case 'light':\n      return <LightIcon {...props} />;\n    case 'regular':\n      return <RegularIcon {...props} />;\n    case 'solid':\n      return <SolidIcon {...props} />;\n    default:\n      console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome5Pro`);\n      return <RegularIcon {...(props as ComponentProps<typeof RegularIcon>)} />;\n  }\n};\n\ntype GetImageSourceFunc = {\n  (\n    iconStyle: 'brand',\n    name: ComponentProps<typeof BrandIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof BrandIcon)['getImageSource']>;\n  (\n    iconStyle: 'duotone',\n    name: ComponentProps<typeof DuotoneIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof DuotoneIcon)['getImageSource']>;\n  (\n    iconStyle: 'light',\n    name: ComponentProps<typeof LightIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof LightIcon)['getImageSource']>;\n  (\n    iconStyle: 'regular',\n    name: ComponentProps<typeof RegularIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof RegularIcon)['getImageSource']>;\n  (\n    iconStyle: 'solid',\n    name: ComponentProps<typeof SolidIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SolidIcon)['getImageSource']>;\n};\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst getImageSource: GetImageSourceFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => {\n  switch (iconStyle) {\n    case 'brand':\n      return BrandIcon.getImageSource(name as keyof typeof brandGM, size, color);\n    case 'duotone':\n      return DuotoneIcon.getImageSource(name as keyof typeof duotoneGM, size, color);\n    case 'light':\n      return LightIcon.getImageSource(name as keyof typeof lightGM, size, color);\n    case 'regular':\n      return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color);\n    case 'solid':\n      return SolidIcon.getImageSource(name as keyof typeof solidGM, size, color);\n    default:\n      console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome5Pro`);\n      return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color);\n  }\n};\nFontAwesome5Pro.getImageSource = getImageSource;\n\ntype GetImageSourceSyncFunc = {\n  (\n    iconStyle: 'brand',\n    name: ComponentProps<typeof BrandIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof BrandIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'duotone',\n    name: ComponentProps<typeof DuotoneIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof DuotoneIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'light',\n    name: ComponentProps<typeof LightIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof LightIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'regular',\n    name: ComponentProps<typeof RegularIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof RegularIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'solid',\n    name: ComponentProps<typeof SolidIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SolidIcon)['getImageSourceSync']>;\n};\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst getImageSourceSync: GetImageSourceSyncFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => {\n  switch (iconStyle) {\n    case 'brand':\n      return BrandIcon.getImageSourceSync(name as keyof typeof brandGM, size, color);\n    case 'duotone':\n      return DuotoneIcon.getImageSourceSync(name as keyof typeof duotoneGM, size, color);\n    case 'light':\n      return LightIcon.getImageSourceSync(name as keyof typeof lightGM, size, color);\n    case 'regular':\n      return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color);\n    case 'solid':\n      return SolidIcon.getImageSourceSync(name as keyof typeof solidGM, size, color);\n    default:\n      console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome5Pro`);\n      return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color);\n  }\n};\nFontAwesome5Pro.getImageSourceSync = getImageSourceSync;\n\nexport type FontAwesome5ProIconName = ComponentProps<typeof FontAwesome5Pro>['name'];\n\n/** @alias */\nexport default FontAwesome5Pro;\n"
  },
  {
    "path": "packages/fontawesome5-pro/src/static.tsx",
    "content": "/* eslint-disable react/jsx-pascal-case, no-console */\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * Instead, modify the template in `fontawesome-common/generator`.\n *\n * FontAwesome5Pro icon set component.\n * Usage: <FontAwesome5Pro name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport type { ComponentProps } from 'react';\nimport { Platform, type TextStyle } from 'react-native';\n\nimport { createIconSet, DEFAULT_ICON_COLOR, DEFAULT_ICON_SIZE } from '@react-native-vector-icons/common';\n\nimport brandGM from '../glyphmaps/FontAwesome5Pro_brand.json';\nimport duotoneGM from '../glyphmaps/FontAwesome5Pro_duotone.json';\nimport lightGM from '../glyphmaps/FontAwesome5Pro_light.json';\nimport regularGM from '../glyphmaps/FontAwesome5Pro_regular.json';\nimport solidGM from '../glyphmaps/FontAwesome5Pro_solid.json';\n\nimport metadata from '../glyphmaps/FontAwesome5Pro_meta.json';\n\nconst glyphValidator = (glyph: string, iconType: keyof typeof metadata) => metadata[iconType]?.includes(glyph);\n\nconst fontStyle = (fontWeight: TextStyle['fontWeight']) =>\n  Platform.select({\n    ios: {\n      fontWeight,\n    },\n    default: {},\n  });\n\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst LightIcon = createIconSet(lightGM, {\n  postScriptName: 'FontAwesome5Pro-Light',\n  fontFileName: 'FontAwesome5_Pro_Light.ttf',\n  fontStyle: fontStyle('300')\n});\nexport type FontAwesome5ProLightIconName = keyof typeof lightGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst RegularIcon = createIconSet(regularGM, {\n  postScriptName: 'FontAwesome5Pro-Regular',\n  fontFileName: 'FontAwesome5_Pro_Regular.ttf',\n  fontStyle: fontStyle('400')\n});\nexport type FontAwesome5ProRegularIconName = keyof typeof regularGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst SolidIcon = createIconSet(solidGM, {\n  postScriptName: 'FontAwesome5Pro-Solid',\n  fontFileName: 'FontAwesome5_Pro_Solid.ttf',\n  fontStyle: fontStyle('900')\n});\nexport type FontAwesome5ProSolidIconName = keyof typeof solidGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst DuotoneIcon = createIconSet(duotoneGM, {\n  postScriptName: 'FontAwesome5Duotone-Solid',\n  fontFileName: 'FontAwesome5_Pro_Duotone.ttf',\n  fontStyle: fontStyle('900')\n});\nexport type FontAwesome5ProDuotoneIconName = keyof typeof duotoneGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst BrandIcon = createIconSet(brandGM, {\n  postScriptName: 'FontAwesome5Brands-Regular',\n  fontFileName: 'FontAwesome5_Pro_Brands.ttf',\n  fontStyle: fontStyle('400')\n});\nexport type FontAwesome5ProBrandIconName = keyof typeof brandGM;\ntype Props =\n  | ({ iconStyle: 'light' } & ComponentProps<typeof LightIcon>)\n  | ({ iconStyle: 'regular' } & ComponentProps<typeof RegularIcon>)\n  | ({ iconStyle: 'solid' } & ComponentProps<typeof SolidIcon>)\n  | ({ iconStyle: 'duotone' } & ComponentProps<typeof DuotoneIcon>)\n  | ({ iconStyle: 'brand' } & ComponentProps<typeof BrandIcon>)\n  | ({ iconStyle?: never } & ComponentProps<typeof RegularIcon>);\n\nexport const FontAwesome5Pro = (props: Props) => {\n  const { iconStyle, name } = props;\n  if (!iconStyle) {\n    if (!glyphValidator(name, 'regular')) {\n      console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for 'regular' icon type for FontAwesome5Pro`);\n    }\n    return <RegularIcon {...props} />;\n  }\n\n  if (!glyphValidator(name, iconStyle)) {\n    console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for '${iconStyle}' icon type for FontAwesome5Pro`);\n\n    return <RegularIcon {...(props as ComponentProps<typeof RegularIcon>)} />;\n  }\n\n  switch (iconStyle) {\n    case 'brand':\n      return <BrandIcon {...props} />;\n    case 'duotone':\n      return <DuotoneIcon {...props} />;\n    case 'light':\n      return <LightIcon {...props} />;\n    case 'regular':\n      return <RegularIcon {...props} />;\n    case 'solid':\n      return <SolidIcon {...props} />;\n    default:\n      console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome5Pro`);\n      return <RegularIcon {...(props as ComponentProps<typeof RegularIcon>)} />;\n  }\n};\n\ntype GetImageSourceFunc = {\n  (\n    iconStyle: 'brand',\n    name: ComponentProps<typeof BrandIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof BrandIcon)['getImageSource']>;\n  (\n    iconStyle: 'duotone',\n    name: ComponentProps<typeof DuotoneIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof DuotoneIcon)['getImageSource']>;\n  (\n    iconStyle: 'light',\n    name: ComponentProps<typeof LightIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof LightIcon)['getImageSource']>;\n  (\n    iconStyle: 'regular',\n    name: ComponentProps<typeof RegularIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof RegularIcon)['getImageSource']>;\n  (\n    iconStyle: 'solid',\n    name: ComponentProps<typeof SolidIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SolidIcon)['getImageSource']>;\n};\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst getImageSource: GetImageSourceFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => {\n  switch (iconStyle) {\n    case 'brand':\n      return BrandIcon.getImageSource(name as keyof typeof brandGM, size, color);\n    case 'duotone':\n      return DuotoneIcon.getImageSource(name as keyof typeof duotoneGM, size, color);\n    case 'light':\n      return LightIcon.getImageSource(name as keyof typeof lightGM, size, color);\n    case 'regular':\n      return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color);\n    case 'solid':\n      return SolidIcon.getImageSource(name as keyof typeof solidGM, size, color);\n    default:\n      console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome5Pro`);\n      return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color);\n  }\n};\nFontAwesome5Pro.getImageSource = getImageSource;\n\ntype GetImageSourceSyncFunc = {\n  (\n    iconStyle: 'brand',\n    name: ComponentProps<typeof BrandIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof BrandIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'duotone',\n    name: ComponentProps<typeof DuotoneIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof DuotoneIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'light',\n    name: ComponentProps<typeof LightIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof LightIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'regular',\n    name: ComponentProps<typeof RegularIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof RegularIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'solid',\n    name: ComponentProps<typeof SolidIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SolidIcon)['getImageSourceSync']>;\n};\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst getImageSourceSync: GetImageSourceSyncFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => {\n  switch (iconStyle) {\n    case 'brand':\n      return BrandIcon.getImageSourceSync(name as keyof typeof brandGM, size, color);\n    case 'duotone':\n      return DuotoneIcon.getImageSourceSync(name as keyof typeof duotoneGM, size, color);\n    case 'light':\n      return LightIcon.getImageSourceSync(name as keyof typeof lightGM, size, color);\n    case 'regular':\n      return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color);\n    case 'solid':\n      return SolidIcon.getImageSourceSync(name as keyof typeof solidGM, size, color);\n    default:\n      console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome5Pro`);\n      return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color);\n  }\n};\nFontAwesome5Pro.getImageSourceSync = getImageSourceSync;\n\nexport type FontAwesome5ProIconName = ComponentProps<typeof FontAwesome5Pro>['name'];\n\n/** @alias */\nexport default FontAwesome5Pro;\n"
  },
  {
    "path": "packages/fontawesome5-pro/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/fontawesome5-pro/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome6/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontawesome6\",\n    \"className\": \"FontAwesome6\",\n    \"commonPackage\": \"fontawesome-common/fontawesome6\",\n    \"customSrc\": \"../../../../fontawesome-common/generators/app/templates/src/index.tsx\",\n    \"customReadme\": true,\n    \"upstreamFont\": {\n      \"packageName\": \"@fortawesome/fontawesome-free\",\n      \"versionRange\": \"^6\"\n    },\n    \"meta\": {\n      \"defaultStyleName\": \"regular\",\n      \"styleNames\": [\n        \"regular\",\n        \"solid\",\n        \"brand\"\n      ],\n      \"styles\": {\n        \"regular\": {\n          \"family\": \"FontAwesome6Free-Regular\",\n          \"name\": \"FontAwesome6_Regular.ttf\",\n          \"weight\": 400\n        },\n        \"solid\": {\n          \"family\": \"FontAwesome6Free-Solid\",\n          \"name\": \"FontAwesome6_Solid.ttf\",\n          \"weight\": 900\n        },\n        \"brand\": {\n          \"family\": \"FontAwesome6Brands-Regular\",\n          \"name\": \"FontAwesome6_Brands.ttf\",\n          \"weight\": 400\n        }\n      }\n    },\n    \"buildSteps\": {\n      \"glyphmap\": {\n        \"location\": \"node_modules/@fortawesome/fontawesome-free/css/all.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fa-\"\n      },\n      \"copyFont\": {\n        \"location\": [\n          [\n            \"node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf\",\n            \"FontAwesome6_Brands\"\n          ],\n          [\n            \"node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf\",\n            \"FontAwesome6_Regular\"\n          ],\n          [\n            \"node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf\",\n            \"FontAwesome6_Solid\"\n          ]\n        ]\n      },\n      \"postScript\": {\n        \"script\": \"node ../fontawesome-common/scripts/generate-fontawesome-metadata --path node_modules/@fortawesome/fontawesome-free --output glyphmaps/FontAwesome6_meta.json\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"12.0.0\",\n        \"upstream\": \"6.7.2\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome6/CHANGELOG.md",
    "content": "## 12.4.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.3.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 12.3.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.3.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 12.3.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.2.0 (2025-08-03)\n\n### 🚀 Features\n\n- export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.3.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.1.0 (2025-07-12)\n\n### 🚀 Features\n\n- export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.1.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.2 (2025-06-15)\n\n### 🩹 Fixes\n\n- new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.2\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.1 (2025-06-15)\n\n### 🩹 Fixes\n\n- try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745))\n- update fontawesome fonts to new createIcon format so font loads in expo ([#1769](https://github.com/oblador/react-native-vector-icons/pull/1769))\n- remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767))\n- convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765))\n- updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c))\n- improve warning if glyph does not exist for default IconStyle in fontawesome fonts ([#1718](https://github.com/oblador/react-native-vector-icons/pull/1718))\n- **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.1\n\n### ❤️ Thank You\n\n- Alexander Kucheryavenko @Red1tum\n- John Ferlito @johnf\n- Lukas @WookieFPV\n- Md. Jayed Hasan @JayedHasan232\n\n# 12.0.0 (2025-05-04)\n\n### 🚀 Features\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n- add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702))\n\n### 🩹 Fixes\n\n- upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691))\n- upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690))\n- mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99))\n\n### ⚠️  Breaking Changes\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n\n### ❤️ Thank You\n\n- Chanphirom Sok @chanphiromsok\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontawesome6/README.md",
    "content": "# FontAwesome 6\n\n### Table of Content\n\n- [`Usage`](#usage)\n- [`Upgrading to Pro`](#upgrading-to-pro)\n\n# Usage\n\nUsing the standard icons works just like the standard icons in this library.\n\n```javascript\nimport { FontAwesome6 } from \"@react-native-vector-icons/fontawesome6\";\n\nconst icon = <FontAwesome6 name=\"comments\" />;\n```\n\nSomething special about the FontAwesome6 class is that you can also pass props\nto change the style of the icon:\n\n```javascript\nimport { FontAwesome6 } from \"@react-native-vector-icons/fontawesome6\";\n\nconst icon = <FontAwesome6 name=\"comments\" iconStyle=\"solid\" />;\nconst icon = <FontAwesome6 name=\"git\" iconStyle=\"brand\" />;\n```\n\n**Valid types**\n\n| Type        | Description           |\n| ----------- | --------------------- |\n| **regular** | Uses the Regular font |\n| **brand**   | Uses the Brands font  |\n| **solid**   | Uses the Solid font   |\n\nNo specified type indicates Regular font.\n\n## getImageSource\n\n`getImageSource` works a little different due to its native backend and how the\nfont is separated into different files. An extra argument to specify the font\nstyle is required.\n\nUse this to select which style the generated image should have:\n\n```javascript\nimport { FontAwesome6 } from \"@react-native-vector-icons/fontawesome6\";\n\nFontAwesome6.getImageSource(\"solid\", \"comments\", 30, \"#000\").then((source) =>\n  this.setState({ image: source }),\n);\n```\n\n# Upgrading to Pro\n\nUse the `@react-native-vector-icons/fontawesome6-pro` package instead.\n"
  },
  {
    "path": "packages/fontawesome6/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.fontawesome6\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFontAwesome6\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.fontawesome6\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-fontawesome6\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome6/fonts\"\n  eachFile { println \"(RNVI:fontawesome6) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n"
  },
  {
    "path": "packages/fontawesome6/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.fontawesome6\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome6/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome6/android/src/main/java/VectorIconsFontAwesome6Package.kt",
    "content": "package com.reactnativevectoricons.fontawesome6\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFontAwesome6Package : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/fontawesome6/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/fontawesome6/glyphmaps/FontAwesome6.json",
    "content": "{\n  \"0\": 48,\n  \"1\": 49,\n  \"2\": 50,\n  \"3\": 51,\n  \"4\": 52,\n  \"5\": 53,\n  \"6\": 54,\n  \"7\": 55,\n  \"8\": 56,\n  \"9\": 57,\n  \"fill-drip\": 62838,\n  \"arrows-to-circle\": 58557,\n  \"circle-chevron-right\": 61752,\n  \"chevron-circle-right\": 61752,\n  \"at\": 64,\n  \"trash-can\": 62189,\n  \"trash-alt\": 62189,\n  \"text-height\": 61492,\n  \"user-xmark\": 62005,\n  \"user-times\": 62005,\n  \"stethoscope\": 61681,\n  \"message\": 62074,\n  \"comment-alt\": 62074,\n  \"info\": 61737,\n  \"down-left-and-up-right-to-center\": 62498,\n  \"compress-alt\": 62498,\n  \"explosion\": 58601,\n  \"file-lines\": 61788,\n  \"file-alt\": 61788,\n  \"file-text\": 61788,\n  \"wave-square\": 63550,\n  \"ring\": 63243,\n  \"building-un\": 58585,\n  \"dice-three\": 62759,\n  \"calendar-days\": 61555,\n  \"calendar-alt\": 61555,\n  \"anchor-circle-check\": 58538,\n  \"building-circle-arrow-right\": 58577,\n  \"volleyball\": 62559,\n  \"volleyball-ball\": 62559,\n  \"arrows-up-to-line\": 58562,\n  \"sort-down\": 61661,\n  \"sort-desc\": 61661,\n  \"circle-minus\": 61526,\n  \"minus-circle\": 61526,\n  \"door-open\": 62763,\n  \"right-from-bracket\": 62197,\n  \"sign-out-alt\": 62197,\n  \"atom\": 62930,\n  \"soap\": 57454,\n  \"icons\": 63597,\n  \"heart-music-camera-bolt\": 63597,\n  \"microphone-lines-slash\": 62777,\n  \"microphone-alt-slash\": 62777,\n  \"bridge-circle-check\": 58569,\n  \"pump-medical\": 57450,\n  \"fingerprint\": 62839,\n  \"hand-point-right\": 61604,\n  \"magnifying-glass-location\": 63113,\n  \"search-location\": 63113,\n  \"forward-step\": 61521,\n  \"step-forward\": 61521,\n  \"face-smile-beam\": 62904,\n  \"smile-beam\": 62904,\n  \"flag-checkered\": 61726,\n  \"football\": 62542,\n  \"football-ball\": 62542,\n  \"school-circle-exclamation\": 58732,\n  \"crop\": 61733,\n  \"angles-down\": 61699,\n  \"angle-double-down\": 61699,\n  \"users-rectangle\": 58772,\n  \"people-roof\": 58679,\n  \"people-line\": 58676,\n  \"beer-mug-empty\": 61692,\n  \"beer\": 61692,\n  \"diagram-predecessor\": 58487,\n  \"arrow-up-long\": 61814,\n  \"long-arrow-up\": 61814,\n  \"fire-flame-simple\": 62570,\n  \"burn\": 62570,\n  \"person\": 61827,\n  \"male\": 61827,\n  \"laptop\": 61705,\n  \"file-csv\": 63197,\n  \"menorah\": 63094,\n  \"truck-plane\": 58767,\n  \"record-vinyl\": 63705,\n  \"face-grin-stars\": 62855,\n  \"grin-stars\": 62855,\n  \"bong\": 62812,\n  \"spaghetti-monster-flying\": 63099,\n  \"pastafarianism\": 63099,\n  \"arrow-down-up-across-line\": 58543,\n  \"spoon\": 62181,\n  \"utensil-spoon\": 62181,\n  \"jar-wheat\": 58647,\n  \"envelopes-bulk\": 63092,\n  \"mail-bulk\": 63092,\n  \"file-circle-exclamation\": 58603,\n  \"circle-h\": 62590,\n  \"hospital-symbol\": 62590,\n  \"pager\": 63509,\n  \"address-book\": 62137,\n  \"contact-book\": 62137,\n  \"strikethrough\": 61644,\n  \"k\": 75,\n  \"landmark-flag\": 58652,\n  \"pencil\": 62211,\n  \"pencil-alt\": 62211,\n  \"backward\": 61514,\n  \"caret-right\": 61658,\n  \"comments\": 61574,\n  \"paste\": 61674,\n  \"file-clipboard\": 61674,\n  \"code-pull-request\": 57660,\n  \"clipboard-list\": 62573,\n  \"truck-ramp-box\": 62686,\n  \"truck-loading\": 62686,\n  \"user-check\": 62716,\n  \"vial-virus\": 58775,\n  \"sheet-plastic\": 58737,\n  \"blog\": 63361,\n  \"user-ninja\": 62724,\n  \"person-arrow-up-from-line\": 58681,\n  \"scroll-torah\": 63136,\n  \"torah\": 63136,\n  \"broom-ball\": 62552,\n  \"quidditch\": 62552,\n  \"quidditch-broom-ball\": 62552,\n  \"toggle-off\": 61956,\n  \"box-archive\": 61831,\n  \"archive\": 61831,\n  \"person-drowning\": 58693,\n  \"arrow-down-9-1\": 63622,\n  \"sort-numeric-desc\": 63622,\n  \"sort-numeric-down-alt\": 63622,\n  \"face-grin-tongue-squint\": 62858,\n  \"grin-tongue-squint\": 62858,\n  \"spray-can\": 62909,\n  \"truck-monster\": 63035,\n  \"w\": 87,\n  \"earth-africa\": 62844,\n  \"globe-africa\": 62844,\n  \"rainbow\": 63323,\n  \"circle-notch\": 61902,\n  \"tablet-screen-button\": 62458,\n  \"tablet-alt\": 62458,\n  \"paw\": 61872,\n  \"cloud\": 61634,\n  \"trowel-bricks\": 58762,\n  \"face-flushed\": 62841,\n  \"flushed\": 62841,\n  \"hospital-user\": 63501,\n  \"tent-arrow-left-right\": 58751,\n  \"gavel\": 61667,\n  \"legal\": 61667,\n  \"binoculars\": 61925,\n  \"microphone-slash\": 61745,\n  \"box-tissue\": 57435,\n  \"motorcycle\": 61980,\n  \"bell-concierge\": 62818,\n  \"concierge-bell\": 62818,\n  \"pen-ruler\": 62894,\n  \"pencil-ruler\": 62894,\n  \"people-arrows\": 57448,\n  \"people-arrows-left-right\": 57448,\n  \"mars-and-venus-burst\": 58659,\n  \"square-caret-right\": 61778,\n  \"caret-square-right\": 61778,\n  \"scissors\": 61636,\n  \"cut\": 61636,\n  \"sun-plant-wilt\": 58746,\n  \"toilets-portable\": 58756,\n  \"hockey-puck\": 62547,\n  \"table\": 61646,\n  \"magnifying-glass-arrow-right\": 58657,\n  \"tachograph-digital\": 62822,\n  \"digital-tachograph\": 62822,\n  \"users-slash\": 57459,\n  \"clover\": 57657,\n  \"reply\": 62437,\n  \"mail-reply\": 62437,\n  \"star-and-crescent\": 63129,\n  \"house-fire\": 58636,\n  \"square-minus\": 61766,\n  \"minus-square\": 61766,\n  \"helicopter\": 62771,\n  \"compass\": 61774,\n  \"square-caret-down\": 61776,\n  \"caret-square-down\": 61776,\n  \"file-circle-question\": 58607,\n  \"laptop-code\": 62972,\n  \"swatchbook\": 62915,\n  \"prescription-bottle\": 62597,\n  \"bars\": 61641,\n  \"navicon\": 61641,\n  \"people-group\": 58675,\n  \"hourglass-end\": 62035,\n  \"hourglass-3\": 62035,\n  \"heart-crack\": 63401,\n  \"heart-broken\": 63401,\n  \"square-up-right\": 62304,\n  \"external-link-square-alt\": 62304,\n  \"face-kiss-beam\": 62871,\n  \"kiss-beam\": 62871,\n  \"film\": 61448,\n  \"ruler-horizontal\": 62791,\n  \"people-robbery\": 58678,\n  \"lightbulb\": 61675,\n  \"caret-left\": 61657,\n  \"circle-exclamation\": 61546,\n  \"exclamation-circle\": 61546,\n  \"school-circle-xmark\": 58733,\n  \"arrow-right-from-bracket\": 61579,\n  \"sign-out\": 61579,\n  \"circle-chevron-down\": 61754,\n  \"chevron-circle-down\": 61754,\n  \"unlock-keyhole\": 61758,\n  \"unlock-alt\": 61758,\n  \"cloud-showers-heavy\": 63296,\n  \"headphones-simple\": 62863,\n  \"headphones-alt\": 62863,\n  \"sitemap\": 61672,\n  \"circle-dollar-to-slot\": 62649,\n  \"donate\": 62649,\n  \"memory\": 62776,\n  \"road-spikes\": 58728,\n  \"fire-burner\": 58609,\n  \"flag\": 61476,\n  \"hanukiah\": 63206,\n  \"feather\": 62765,\n  \"volume-low\": 61479,\n  \"volume-down\": 61479,\n  \"comment-slash\": 62643,\n  \"cloud-sun-rain\": 63299,\n  \"compress\": 61542,\n  \"wheat-awn\": 58061,\n  \"wheat-alt\": 58061,\n  \"ankh\": 63044,\n  \"hands-holding-child\": 58618,\n  \"asterisk\": 42,\n  \"square-check\": 61770,\n  \"check-square\": 61770,\n  \"peseta-sign\": 57889,\n  \"heading\": 61916,\n  \"header\": 61916,\n  \"ghost\": 63202,\n  \"list\": 61498,\n  \"list-squares\": 61498,\n  \"square-phone-flip\": 63611,\n  \"phone-square-alt\": 63611,\n  \"cart-plus\": 61975,\n  \"gamepad\": 61723,\n  \"circle-dot\": 61842,\n  \"dot-circle\": 61842,\n  \"face-dizzy\": 62823,\n  \"dizzy\": 62823,\n  \"egg\": 63483,\n  \"house-medical-circle-xmark\": 58643,\n  \"campground\": 63163,\n  \"folder-plus\": 63070,\n  \"futbol\": 61923,\n  \"futbol-ball\": 61923,\n  \"soccer-ball\": 61923,\n  \"paintbrush\": 61948,\n  \"paint-brush\": 61948,\n  \"lock\": 61475,\n  \"gas-pump\": 62767,\n  \"hot-tub-person\": 62867,\n  \"hot-tub\": 62867,\n  \"map-location\": 62879,\n  \"map-marked\": 62879,\n  \"house-flood-water\": 58638,\n  \"tree\": 61883,\n  \"bridge-lock\": 58572,\n  \"sack-dollar\": 63517,\n  \"pen-to-square\": 61508,\n  \"edit\": 61508,\n  \"car-side\": 62948,\n  \"share-nodes\": 61920,\n  \"share-alt\": 61920,\n  \"heart-circle-minus\": 58623,\n  \"hourglass-half\": 62034,\n  \"hourglass-2\": 62034,\n  \"microscope\": 62992,\n  \"sink\": 57453,\n  \"bag-shopping\": 62096,\n  \"shopping-bag\": 62096,\n  \"arrow-down-z-a\": 63617,\n  \"sort-alpha-desc\": 63617,\n  \"sort-alpha-down-alt\": 63617,\n  \"mitten\": 63413,\n  \"person-rays\": 58701,\n  \"users\": 61632,\n  \"eye-slash\": 61552,\n  \"flask-vial\": 58611,\n  \"hand\": 62038,\n  \"hand-paper\": 62038,\n  \"om\": 63097,\n  \"worm\": 58777,\n  \"house-circle-xmark\": 58635,\n  \"plug\": 61926,\n  \"chevron-up\": 61559,\n  \"hand-spock\": 62041,\n  \"stopwatch\": 62194,\n  \"face-kiss\": 62870,\n  \"kiss\": 62870,\n  \"bridge-circle-xmark\": 58571,\n  \"face-grin-tongue\": 62857,\n  \"grin-tongue\": 62857,\n  \"chess-bishop\": 62522,\n  \"face-grin-wink\": 62860,\n  \"grin-wink\": 62860,\n  \"ear-deaf\": 62116,\n  \"deaf\": 62116,\n  \"deafness\": 62116,\n  \"hard-of-hearing\": 62116,\n  \"road-circle-check\": 58724,\n  \"dice-five\": 62755,\n  \"square-rss\": 61763,\n  \"rss-square\": 61763,\n  \"land-mine-on\": 58651,\n  \"i-cursor\": 62022,\n  \"stamp\": 62911,\n  \"stairs\": 57993,\n  \"i\": 73,\n  \"hryvnia-sign\": 63218,\n  \"hryvnia\": 63218,\n  \"pills\": 62596,\n  \"face-grin-wide\": 62849,\n  \"grin-alt\": 62849,\n  \"tooth\": 62921,\n  \"v\": 86,\n  \"bangladeshi-taka-sign\": 58086,\n  \"bicycle\": 61958,\n  \"staff-snake\": 58745,\n  \"rod-asclepius\": 58745,\n  \"rod-snake\": 58745,\n  \"staff-aesculapius\": 58745,\n  \"head-side-cough-slash\": 57442,\n  \"truck-medical\": 61689,\n  \"ambulance\": 61689,\n  \"wheat-awn-circle-exclamation\": 58776,\n  \"snowman\": 63440,\n  \"mortar-pestle\": 62887,\n  \"road-barrier\": 58722,\n  \"school\": 62793,\n  \"igloo\": 63406,\n  \"joint\": 62869,\n  \"angle-right\": 61701,\n  \"horse\": 63216,\n  \"q\": 81,\n  \"g\": 71,\n  \"notes-medical\": 62593,\n  \"temperature-half\": 62153,\n  \"temperature-2\": 62153,\n  \"thermometer-2\": 62153,\n  \"thermometer-half\": 62153,\n  \"dong-sign\": 57705,\n  \"capsules\": 62571,\n  \"poo-storm\": 63322,\n  \"poo-bolt\": 63322,\n  \"face-frown-open\": 62842,\n  \"frown-open\": 62842,\n  \"hand-point-up\": 61606,\n  \"money-bill\": 61654,\n  \"bookmark\": 61486,\n  \"align-justify\": 61497,\n  \"umbrella-beach\": 62922,\n  \"helmet-un\": 58627,\n  \"bullseye\": 61760,\n  \"bacon\": 63461,\n  \"hand-point-down\": 61607,\n  \"arrow-up-from-bracket\": 57498,\n  \"folder\": 61563,\n  \"folder-blank\": 61563,\n  \"file-waveform\": 62584,\n  \"file-medical-alt\": 62584,\n  \"radiation\": 63417,\n  \"chart-simple\": 58483,\n  \"mars-stroke\": 61993,\n  \"vial\": 62610,\n  \"gauge\": 63012,\n  \"dashboard\": 63012,\n  \"gauge-med\": 63012,\n  \"tachometer-alt-average\": 63012,\n  \"wand-magic-sparkles\": 58058,\n  \"magic-wand-sparkles\": 58058,\n  \"e\": 69,\n  \"pen-clip\": 62213,\n  \"pen-alt\": 62213,\n  \"bridge-circle-exclamation\": 58570,\n  \"user\": 61447,\n  \"school-circle-check\": 58731,\n  \"dumpster\": 63379,\n  \"van-shuttle\": 62902,\n  \"shuttle-van\": 62902,\n  \"building-user\": 58586,\n  \"square-caret-left\": 61841,\n  \"caret-square-left\": 61841,\n  \"highlighter\": 62865,\n  \"key\": 61572,\n  \"bullhorn\": 61601,\n  \"globe\": 61612,\n  \"synagogue\": 63131,\n  \"person-half-dress\": 58696,\n  \"road-bridge\": 58723,\n  \"location-arrow\": 61732,\n  \"c\": 67,\n  \"tablet-button\": 61706,\n  \"building-lock\": 58582,\n  \"pizza-slice\": 63512,\n  \"money-bill-wave\": 62778,\n  \"chart-area\": 61950,\n  \"area-chart\": 61950,\n  \"house-flag\": 58637,\n  \"person-circle-minus\": 58688,\n  \"ban\": 61534,\n  \"cancel\": 61534,\n  \"camera-rotate\": 57560,\n  \"spray-can-sparkles\": 62928,\n  \"air-freshener\": 62928,\n  \"star\": 61445,\n  \"repeat\": 62307,\n  \"cross\": 63060,\n  \"box\": 62566,\n  \"venus-mars\": 61992,\n  \"arrow-pointer\": 62021,\n  \"mouse-pointer\": 62021,\n  \"maximize\": 62238,\n  \"expand-arrows-alt\": 62238,\n  \"charging-station\": 62951,\n  \"shapes\": 63007,\n  \"triangle-circle-square\": 63007,\n  \"shuffle\": 61556,\n  \"random\": 61556,\n  \"person-running\": 63244,\n  \"running\": 63244,\n  \"mobile-retro\": 58663,\n  \"grip-lines-vertical\": 63397,\n  \"spider\": 63255,\n  \"hands-bound\": 58617,\n  \"file-invoice-dollar\": 62833,\n  \"plane-circle-exclamation\": 58710,\n  \"x-ray\": 62615,\n  \"spell-check\": 63633,\n  \"slash\": 63253,\n  \"computer-mouse\": 63692,\n  \"mouse\": 63692,\n  \"arrow-right-to-bracket\": 61584,\n  \"sign-in\": 61584,\n  \"shop-slash\": 57456,\n  \"store-alt-slash\": 57456,\n  \"server\": 62003,\n  \"virus-covid-slash\": 58537,\n  \"shop-lock\": 58533,\n  \"hourglass-start\": 62033,\n  \"hourglass-1\": 62033,\n  \"blender-phone\": 63158,\n  \"building-wheat\": 58587,\n  \"person-breastfeeding\": 58682,\n  \"right-to-bracket\": 62198,\n  \"sign-in-alt\": 62198,\n  \"venus\": 61985,\n  \"passport\": 62891,\n  \"thumbtack-slash\": 59023,\n  \"thumb-tack-slash\": 59023,\n  \"heart-pulse\": 61982,\n  \"heartbeat\": 61982,\n  \"people-carry-box\": 62670,\n  \"people-carry\": 62670,\n  \"temperature-high\": 63337,\n  \"microchip\": 62171,\n  \"crown\": 62753,\n  \"weight-hanging\": 62925,\n  \"xmarks-lines\": 58778,\n  \"file-prescription\": 62834,\n  \"weight-scale\": 62614,\n  \"weight\": 62614,\n  \"user-group\": 62720,\n  \"user-friends\": 62720,\n  \"arrow-up-a-z\": 61790,\n  \"sort-alpha-up\": 61790,\n  \"chess-knight\": 62529,\n  \"face-laugh-squint\": 62875,\n  \"laugh-squint\": 62875,\n  \"wheelchair\": 61843,\n  \"circle-arrow-up\": 61610,\n  \"arrow-circle-up\": 61610,\n  \"toggle-on\": 61957,\n  \"person-walking\": 62804,\n  \"walking\": 62804,\n  \"l\": 76,\n  \"fire\": 61549,\n  \"bed-pulse\": 62599,\n  \"procedures\": 62599,\n  \"shuttle-space\": 61847,\n  \"space-shuttle\": 61847,\n  \"face-laugh\": 62873,\n  \"laugh\": 62873,\n  \"folder-open\": 61564,\n  \"heart-circle-plus\": 58624,\n  \"code-fork\": 57659,\n  \"city\": 63055,\n  \"microphone-lines\": 62409,\n  \"microphone-alt\": 62409,\n  \"pepper-hot\": 63510,\n  \"unlock\": 61596,\n  \"colon-sign\": 57664,\n  \"headset\": 62864,\n  \"store-slash\": 57457,\n  \"road-circle-xmark\": 58726,\n  \"user-minus\": 62723,\n  \"mars-stroke-up\": 61994,\n  \"mars-stroke-v\": 61994,\n  \"champagne-glasses\": 63391,\n  \"glass-cheers\": 63391,\n  \"clipboard\": 62248,\n  \"house-circle-exclamation\": 58634,\n  \"file-arrow-up\": 62836,\n  \"file-upload\": 62836,\n  \"wifi\": 61931,\n  \"wifi-3\": 61931,\n  \"wifi-strong\": 61931,\n  \"bath\": 62157,\n  \"bathtub\": 62157,\n  \"underline\": 61645,\n  \"user-pen\": 62719,\n  \"user-edit\": 62719,\n  \"signature\": 62903,\n  \"stroopwafel\": 62801,\n  \"bold\": 61490,\n  \"anchor-lock\": 58541,\n  \"building-ngo\": 58583,\n  \"manat-sign\": 57813,\n  \"not-equal\": 62782,\n  \"border-top-left\": 63571,\n  \"border-style\": 63571,\n  \"map-location-dot\": 62880,\n  \"map-marked-alt\": 62880,\n  \"jedi\": 63081,\n  \"square-poll-vertical\": 63105,\n  \"poll\": 63105,\n  \"mug-hot\": 63414,\n  \"car-battery\": 62943,\n  \"battery-car\": 62943,\n  \"gift\": 61547,\n  \"dice-two\": 62760,\n  \"chess-queen\": 62533,\n  \"glasses\": 62768,\n  \"chess-board\": 62524,\n  \"building-circle-check\": 58578,\n  \"person-chalkboard\": 58685,\n  \"mars-stroke-right\": 61995,\n  \"mars-stroke-h\": 61995,\n  \"hand-back-fist\": 62037,\n  \"hand-rock\": 62037,\n  \"square-caret-up\": 61777,\n  \"caret-square-up\": 61777,\n  \"cloud-showers-water\": 58596,\n  \"chart-bar\": 61568,\n  \"bar-chart\": 61568,\n  \"hands-bubbles\": 57438,\n  \"hands-wash\": 57438,\n  \"less-than-equal\": 62775,\n  \"train\": 62008,\n  \"eye-low-vision\": 62120,\n  \"low-vision\": 62120,\n  \"crow\": 62752,\n  \"sailboat\": 58437,\n  \"window-restore\": 62162,\n  \"square-plus\": 61694,\n  \"plus-square\": 61694,\n  \"torii-gate\": 63137,\n  \"frog\": 62766,\n  \"bucket\": 58575,\n  \"image\": 61502,\n  \"microphone\": 61744,\n  \"cow\": 63176,\n  \"caret-up\": 61656,\n  \"screwdriver\": 62794,\n  \"folder-closed\": 57733,\n  \"house-tsunami\": 58645,\n  \"square-nfi\": 58742,\n  \"arrow-up-from-ground-water\": 58549,\n  \"martini-glass\": 62843,\n  \"glass-martini-alt\": 62843,\n  \"square-binary\": 59035,\n  \"rotate-left\": 62186,\n  \"rotate-back\": 62186,\n  \"rotate-backward\": 62186,\n  \"undo-alt\": 62186,\n  \"table-columns\": 61659,\n  \"columns\": 61659,\n  \"lemon\": 61588,\n  \"head-side-mask\": 57443,\n  \"handshake\": 62133,\n  \"gem\": 62373,\n  \"dolly\": 62578,\n  \"dolly-box\": 62578,\n  \"smoking\": 62605,\n  \"minimize\": 63372,\n  \"compress-arrows-alt\": 63372,\n  \"monument\": 62886,\n  \"snowplow\": 63442,\n  \"angles-right\": 61697,\n  \"angle-double-right\": 61697,\n  \"cannabis\": 62815,\n  \"circle-play\": 61764,\n  \"play-circle\": 61764,\n  \"tablets\": 62608,\n  \"ethernet\": 63382,\n  \"euro-sign\": 61779,\n  \"eur\": 61779,\n  \"euro\": 61779,\n  \"chair\": 63168,\n  \"circle-check\": 61528,\n  \"check-circle\": 61528,\n  \"circle-stop\": 62093,\n  \"stop-circle\": 62093,\n  \"compass-drafting\": 62824,\n  \"drafting-compass\": 62824,\n  \"plate-wheat\": 58714,\n  \"icicles\": 63405,\n  \"person-shelter\": 58703,\n  \"neuter\": 61996,\n  \"id-badge\": 62145,\n  \"marker\": 62881,\n  \"face-laugh-beam\": 62874,\n  \"laugh-beam\": 62874,\n  \"helicopter-symbol\": 58626,\n  \"universal-access\": 62106,\n  \"circle-chevron-up\": 61753,\n  \"chevron-circle-up\": 61753,\n  \"lari-sign\": 57800,\n  \"volcano\": 63344,\n  \"person-walking-dashed-line-arrow-right\": 58707,\n  \"sterling-sign\": 61780,\n  \"gbp\": 61780,\n  \"pound-sign\": 61780,\n  \"viruses\": 57462,\n  \"square-person-confined\": 58743,\n  \"user-tie\": 62728,\n  \"arrow-down-long\": 61813,\n  \"long-arrow-down\": 61813,\n  \"tent-arrow-down-to-line\": 58750,\n  \"certificate\": 61603,\n  \"reply-all\": 61730,\n  \"mail-reply-all\": 61730,\n  \"suitcase\": 61682,\n  \"person-skating\": 63429,\n  \"skating\": 63429,\n  \"filter-circle-dollar\": 63074,\n  \"funnel-dollar\": 63074,\n  \"camera-retro\": 61571,\n  \"circle-arrow-down\": 61611,\n  \"arrow-circle-down\": 61611,\n  \"file-import\": 62831,\n  \"arrow-right-to-file\": 62831,\n  \"square-arrow-up-right\": 61772,\n  \"external-link-square\": 61772,\n  \"box-open\": 62622,\n  \"scroll\": 63246,\n  \"spa\": 62907,\n  \"location-pin-lock\": 58655,\n  \"pause\": 61516,\n  \"hill-avalanche\": 58631,\n  \"temperature-empty\": 62155,\n  \"temperature-0\": 62155,\n  \"thermometer-0\": 62155,\n  \"thermometer-empty\": 62155,\n  \"bomb\": 61922,\n  \"registered\": 62045,\n  \"address-card\": 62139,\n  \"contact-card\": 62139,\n  \"vcard\": 62139,\n  \"scale-unbalanced-flip\": 62742,\n  \"balance-scale-right\": 62742,\n  \"subscript\": 61740,\n  \"diamond-turn-right\": 62955,\n  \"directions\": 62955,\n  \"burst\": 58588,\n  \"house-laptop\": 57446,\n  \"laptop-house\": 57446,\n  \"face-tired\": 62920,\n  \"tired\": 62920,\n  \"money-bills\": 57843,\n  \"smog\": 63327,\n  \"crutch\": 63479,\n  \"cloud-arrow-up\": 61678,\n  \"cloud-upload\": 61678,\n  \"cloud-upload-alt\": 61678,\n  \"palette\": 62783,\n  \"arrows-turn-right\": 58560,\n  \"vest\": 57477,\n  \"ferry\": 58602,\n  \"arrows-down-to-people\": 58553,\n  \"seedling\": 62680,\n  \"sprout\": 62680,\n  \"left-right\": 62263,\n  \"arrows-alt-h\": 62263,\n  \"boxes-packing\": 58567,\n  \"circle-arrow-left\": 61608,\n  \"arrow-circle-left\": 61608,\n  \"group-arrows-rotate\": 58614,\n  \"bowl-food\": 58566,\n  \"candy-cane\": 63366,\n  \"arrow-down-wide-short\": 61792,\n  \"sort-amount-asc\": 61792,\n  \"sort-amount-down\": 61792,\n  \"cloud-bolt\": 63340,\n  \"thunderstorm\": 63340,\n  \"text-slash\": 63613,\n  \"remove-format\": 63613,\n  \"face-smile-wink\": 62682,\n  \"smile-wink\": 62682,\n  \"file-word\": 61890,\n  \"file-powerpoint\": 61892,\n  \"arrows-left-right\": 61566,\n  \"arrows-h\": 61566,\n  \"house-lock\": 58640,\n  \"cloud-arrow-down\": 61677,\n  \"cloud-download\": 61677,\n  \"cloud-download-alt\": 61677,\n  \"children\": 58593,\n  \"chalkboard\": 62747,\n  \"blackboard\": 62747,\n  \"user-large-slash\": 62714,\n  \"user-alt-slash\": 62714,\n  \"envelope-open\": 62134,\n  \"handshake-simple-slash\": 57439,\n  \"handshake-alt-slash\": 57439,\n  \"mattress-pillow\": 58661,\n  \"guarani-sign\": 57754,\n  \"arrows-rotate\": 61473,\n  \"refresh\": 61473,\n  \"sync\": 61473,\n  \"fire-extinguisher\": 61748,\n  \"cruzeiro-sign\": 57682,\n  \"greater-than-equal\": 62770,\n  \"shield-halved\": 62445,\n  \"shield-alt\": 62445,\n  \"book-atlas\": 62808,\n  \"atlas\": 62808,\n  \"virus\": 57460,\n  \"envelope-circle-check\": 58600,\n  \"layer-group\": 62973,\n  \"arrows-to-dot\": 58558,\n  \"archway\": 62807,\n  \"heart-circle-check\": 58621,\n  \"house-chimney-crack\": 63217,\n  \"house-damage\": 63217,\n  \"file-zipper\": 61894,\n  \"file-archive\": 61894,\n  \"square\": 61640,\n  \"martini-glass-empty\": 61440,\n  \"glass-martini\": 61440,\n  \"couch\": 62648,\n  \"cedi-sign\": 57567,\n  \"italic\": 61491,\n  \"table-cells-column-lock\": 59000,\n  \"church\": 62749,\n  \"comments-dollar\": 63059,\n  \"democrat\": 63303,\n  \"z\": 90,\n  \"person-skiing\": 63433,\n  \"skiing\": 63433,\n  \"road-lock\": 58727,\n  \"a\": 65,\n  \"temperature-arrow-down\": 57407,\n  \"temperature-down\": 57407,\n  \"feather-pointed\": 62827,\n  \"feather-alt\": 62827,\n  \"p\": 80,\n  \"snowflake\": 62172,\n  \"newspaper\": 61930,\n  \"rectangle-ad\": 63041,\n  \"ad\": 63041,\n  \"circle-arrow-right\": 61609,\n  \"arrow-circle-right\": 61609,\n  \"filter-circle-xmark\": 57723,\n  \"locust\": 58656,\n  \"sort\": 61660,\n  \"unsorted\": 61660,\n  \"list-ol\": 61643,\n  \"list-1-2\": 61643,\n  \"list-numeric\": 61643,\n  \"person-dress-burst\": 58692,\n  \"money-check-dollar\": 62781,\n  \"money-check-alt\": 62781,\n  \"vector-square\": 62923,\n  \"bread-slice\": 63468,\n  \"language\": 61867,\n  \"face-kiss-wink-heart\": 62872,\n  \"kiss-wink-heart\": 62872,\n  \"filter\": 61616,\n  \"question\": 63,\n  \"file-signature\": 62835,\n  \"up-down-left-right\": 61618,\n  \"arrows-alt\": 61618,\n  \"house-chimney-user\": 57445,\n  \"hand-holding-heart\": 62654,\n  \"puzzle-piece\": 61742,\n  \"money-check\": 62780,\n  \"star-half-stroke\": 62912,\n  \"star-half-alt\": 62912,\n  \"code\": 61729,\n  \"whiskey-glass\": 63392,\n  \"glass-whiskey\": 63392,\n  \"building-circle-exclamation\": 58579,\n  \"magnifying-glass-chart\": 58658,\n  \"arrow-up-right-from-square\": 61582,\n  \"external-link\": 61582,\n  \"cubes-stacked\": 58598,\n  \"won-sign\": 61785,\n  \"krw\": 61785,\n  \"won\": 61785,\n  \"virus-covid\": 58536,\n  \"austral-sign\": 57513,\n  \"f\": 70,\n  \"leaf\": 61548,\n  \"road\": 61464,\n  \"taxi\": 61882,\n  \"cab\": 61882,\n  \"person-circle-plus\": 58689,\n  \"chart-pie\": 61952,\n  \"pie-chart\": 61952,\n  \"bolt-lightning\": 57527,\n  \"sack-xmark\": 58730,\n  \"file-excel\": 61891,\n  \"file-contract\": 62828,\n  \"fish-fins\": 58610,\n  \"building-flag\": 58581,\n  \"face-grin-beam\": 62850,\n  \"grin-beam\": 62850,\n  \"object-ungroup\": 62024,\n  \"poop\": 63001,\n  \"location-pin\": 61505,\n  \"map-marker\": 61505,\n  \"kaaba\": 63083,\n  \"toilet-paper\": 63262,\n  \"helmet-safety\": 63495,\n  \"hard-hat\": 63495,\n  \"hat-hard\": 63495,\n  \"eject\": 61522,\n  \"circle-right\": 62298,\n  \"arrow-alt-circle-right\": 62298,\n  \"plane-circle-check\": 58709,\n  \"face-rolling-eyes\": 62885,\n  \"meh-rolling-eyes\": 62885,\n  \"object-group\": 62023,\n  \"chart-line\": 61953,\n  \"line-chart\": 61953,\n  \"mask-ventilator\": 58660,\n  \"arrow-right\": 61537,\n  \"signs-post\": 62071,\n  \"map-signs\": 62071,\n  \"cash-register\": 63368,\n  \"person-circle-question\": 58690,\n  \"h\": 72,\n  \"tarp\": 58747,\n  \"screwdriver-wrench\": 63449,\n  \"tools\": 63449,\n  \"arrows-to-eye\": 58559,\n  \"plug-circle-bolt\": 58715,\n  \"heart\": 61444,\n  \"mars-and-venus\": 61988,\n  \"house-user\": 57776,\n  \"home-user\": 57776,\n  \"dumpster-fire\": 63380,\n  \"house-crack\": 58289,\n  \"martini-glass-citrus\": 62817,\n  \"cocktail\": 62817,\n  \"face-surprise\": 62914,\n  \"surprise\": 62914,\n  \"bottle-water\": 58565,\n  \"circle-pause\": 62091,\n  \"pause-circle\": 62091,\n  \"toilet-paper-slash\": 57458,\n  \"apple-whole\": 62929,\n  \"apple-alt\": 62929,\n  \"kitchen-set\": 58650,\n  \"r\": 82,\n  \"temperature-quarter\": 62154,\n  \"temperature-1\": 62154,\n  \"thermometer-1\": 62154,\n  \"thermometer-quarter\": 62154,\n  \"cube\": 61874,\n  \"bitcoin-sign\": 57524,\n  \"shield-dog\": 58739,\n  \"solar-panel\": 62906,\n  \"lock-open\": 62401,\n  \"elevator\": 57709,\n  \"money-bill-transfer\": 58664,\n  \"money-bill-trend-up\": 58665,\n  \"house-flood-water-circle-arrow-right\": 58639,\n  \"square-poll-horizontal\": 63106,\n  \"poll-h\": 63106,\n  \"circle\": 61713,\n  \"backward-fast\": 61513,\n  \"fast-backward\": 61513,\n  \"recycle\": 61880,\n  \"user-astronaut\": 62715,\n  \"plane-slash\": 57449,\n  \"trademark\": 62044,\n  \"basketball\": 62516,\n  \"basketball-ball\": 62516,\n  \"satellite-dish\": 63424,\n  \"circle-up\": 62299,\n  \"arrow-alt-circle-up\": 62299,\n  \"mobile-screen-button\": 62413,\n  \"mobile-alt\": 62413,\n  \"volume-high\": 61480,\n  \"volume-up\": 61480,\n  \"users-rays\": 58771,\n  \"wallet\": 62805,\n  \"clipboard-check\": 62572,\n  \"file-audio\": 61895,\n  \"burger\": 63493,\n  \"hamburger\": 63493,\n  \"wrench\": 61613,\n  \"bugs\": 58576,\n  \"rupee-sign\": 61782,\n  \"rupee\": 61782,\n  \"file-image\": 61893,\n  \"circle-question\": 61529,\n  \"question-circle\": 61529,\n  \"plane-departure\": 62896,\n  \"handshake-slash\": 57440,\n  \"book-bookmark\": 57531,\n  \"code-branch\": 61734,\n  \"hat-cowboy\": 63680,\n  \"bridge\": 58568,\n  \"phone-flip\": 63609,\n  \"phone-alt\": 63609,\n  \"truck-front\": 58039,\n  \"cat\": 63166,\n  \"anchor-circle-exclamation\": 58539,\n  \"truck-field\": 58765,\n  \"route\": 62679,\n  \"clipboard-question\": 58595,\n  \"panorama\": 57865,\n  \"comment-medical\": 63477,\n  \"teeth-open\": 63023,\n  \"file-circle-minus\": 58605,\n  \"tags\": 61484,\n  \"wine-glass\": 62691,\n  \"forward-fast\": 61520,\n  \"fast-forward\": 61520,\n  \"face-meh-blank\": 62884,\n  \"meh-blank\": 62884,\n  \"square-parking\": 62784,\n  \"parking\": 62784,\n  \"house-signal\": 57362,\n  \"bars-progress\": 63528,\n  \"tasks-alt\": 63528,\n  \"faucet-drip\": 57350,\n  \"cart-flatbed\": 62580,\n  \"dolly-flatbed\": 62580,\n  \"ban-smoking\": 62797,\n  \"smoking-ban\": 62797,\n  \"terminal\": 61728,\n  \"mobile-button\": 61707,\n  \"house-medical-flag\": 58644,\n  \"basket-shopping\": 62097,\n  \"shopping-basket\": 62097,\n  \"tape\": 62683,\n  \"bus-simple\": 62814,\n  \"bus-alt\": 62814,\n  \"eye\": 61550,\n  \"face-sad-cry\": 62899,\n  \"sad-cry\": 62899,\n  \"audio-description\": 62110,\n  \"person-military-to-person\": 58700,\n  \"file-shield\": 58608,\n  \"user-slash\": 62726,\n  \"pen\": 62212,\n  \"tower-observation\": 58758,\n  \"file-code\": 61897,\n  \"signal\": 61458,\n  \"signal-5\": 61458,\n  \"signal-perfect\": 61458,\n  \"bus\": 61959,\n  \"heart-circle-xmark\": 58625,\n  \"house-chimney\": 58287,\n  \"home-lg\": 58287,\n  \"window-maximize\": 62160,\n  \"face-frown\": 61721,\n  \"frown\": 61721,\n  \"prescription\": 62897,\n  \"shop\": 62799,\n  \"store-alt\": 62799,\n  \"floppy-disk\": 61639,\n  \"save\": 61639,\n  \"vihara\": 63143,\n  \"scale-unbalanced\": 62741,\n  \"balance-scale-left\": 62741,\n  \"sort-up\": 61662,\n  \"sort-asc\": 61662,\n  \"comment-dots\": 62637,\n  \"commenting\": 62637,\n  \"plant-wilt\": 58794,\n  \"diamond\": 61977,\n  \"face-grin-squint\": 62853,\n  \"grin-squint\": 62853,\n  \"hand-holding-dollar\": 62656,\n  \"hand-holding-usd\": 62656,\n  \"chart-diagram\": 59029,\n  \"bacterium\": 57434,\n  \"hand-pointer\": 62042,\n  \"drum-steelpan\": 62826,\n  \"hand-scissors\": 62039,\n  \"hands-praying\": 63108,\n  \"praying-hands\": 63108,\n  \"arrow-rotate-right\": 61470,\n  \"arrow-right-rotate\": 61470,\n  \"arrow-rotate-forward\": 61470,\n  \"redo\": 61470,\n  \"biohazard\": 63360,\n  \"location-crosshairs\": 62977,\n  \"location\": 62977,\n  \"mars-double\": 61991,\n  \"child-dress\": 58780,\n  \"users-between-lines\": 58769,\n  \"lungs-virus\": 57447,\n  \"face-grin-tears\": 62856,\n  \"grin-tears\": 62856,\n  \"phone\": 61589,\n  \"calendar-xmark\": 62067,\n  \"calendar-times\": 62067,\n  \"child-reaching\": 58781,\n  \"head-side-virus\": 57444,\n  \"user-gear\": 62718,\n  \"user-cog\": 62718,\n  \"arrow-up-1-9\": 61795,\n  \"sort-numeric-up\": 61795,\n  \"door-closed\": 62762,\n  \"shield-virus\": 57452,\n  \"dice-six\": 62758,\n  \"mosquito-net\": 58668,\n  \"file-fragment\": 59031,\n  \"bridge-water\": 58574,\n  \"person-booth\": 63318,\n  \"text-width\": 61493,\n  \"hat-wizard\": 63208,\n  \"pen-fancy\": 62892,\n  \"person-digging\": 63582,\n  \"digging\": 63582,\n  \"trash\": 61944,\n  \"gauge-simple\": 63017,\n  \"gauge-simple-med\": 63017,\n  \"tachometer-average\": 63017,\n  \"book-medical\": 63462,\n  \"poo\": 62206,\n  \"quote-right\": 61710,\n  \"quote-right-alt\": 61710,\n  \"shirt\": 62803,\n  \"t-shirt\": 62803,\n  \"tshirt\": 62803,\n  \"cubes\": 61875,\n  \"divide\": 62761,\n  \"tenge-sign\": 63447,\n  \"tenge\": 63447,\n  \"headphones\": 61477,\n  \"hands-holding\": 62658,\n  \"hands-clapping\": 57768,\n  \"republican\": 63326,\n  \"arrow-left\": 61536,\n  \"person-circle-xmark\": 58691,\n  \"ruler\": 62789,\n  \"align-left\": 61494,\n  \"dice-d6\": 63185,\n  \"restroom\": 63421,\n  \"j\": 74,\n  \"users-viewfinder\": 58773,\n  \"file-video\": 61896,\n  \"up-right-from-square\": 62301,\n  \"external-link-alt\": 62301,\n  \"table-cells\": 61450,\n  \"th\": 61450,\n  \"file-pdf\": 61889,\n  \"book-bible\": 63047,\n  \"bible\": 63047,\n  \"o\": 79,\n  \"suitcase-medical\": 61690,\n  \"medkit\": 61690,\n  \"user-secret\": 61979,\n  \"otter\": 63232,\n  \"person-dress\": 61826,\n  \"female\": 61826,\n  \"comment-dollar\": 63057,\n  \"business-time\": 63050,\n  \"briefcase-clock\": 63050,\n  \"table-cells-large\": 61449,\n  \"th-large\": 61449,\n  \"book-tanakh\": 63527,\n  \"tanakh\": 63527,\n  \"phone-volume\": 62112,\n  \"volume-control-phone\": 62112,\n  \"hat-cowboy-side\": 63681,\n  \"clipboard-user\": 63475,\n  \"child\": 61870,\n  \"lira-sign\": 61845,\n  \"satellite\": 63423,\n  \"plane-lock\": 58712,\n  \"tag\": 61483,\n  \"comment\": 61557,\n  \"cake-candles\": 61949,\n  \"birthday-cake\": 61949,\n  \"cake\": 61949,\n  \"envelope\": 61664,\n  \"angles-up\": 61698,\n  \"angle-double-up\": 61698,\n  \"paperclip\": 61638,\n  \"arrow-right-to-city\": 58547,\n  \"ribbon\": 62678,\n  \"lungs\": 62980,\n  \"arrow-up-9-1\": 63623,\n  \"sort-numeric-up-alt\": 63623,\n  \"litecoin-sign\": 57811,\n  \"border-none\": 63568,\n  \"circle-nodes\": 58594,\n  \"parachute-box\": 62669,\n  \"indent\": 61500,\n  \"truck-field-un\": 58766,\n  \"hourglass\": 62036,\n  \"hourglass-empty\": 62036,\n  \"mountain\": 63228,\n  \"user-doctor\": 61680,\n  \"user-md\": 61680,\n  \"circle-info\": 61530,\n  \"info-circle\": 61530,\n  \"cloud-meatball\": 63291,\n  \"camera\": 61488,\n  \"camera-alt\": 61488,\n  \"square-virus\": 58744,\n  \"meteor\": 63315,\n  \"car-on\": 58589,\n  \"sleigh\": 63436,\n  \"arrow-down-1-9\": 61794,\n  \"sort-numeric-asc\": 61794,\n  \"sort-numeric-down\": 61794,\n  \"hand-holding-droplet\": 62657,\n  \"hand-holding-water\": 62657,\n  \"water\": 63347,\n  \"calendar-check\": 62068,\n  \"braille\": 62113,\n  \"prescription-bottle-medical\": 62598,\n  \"prescription-bottle-alt\": 62598,\n  \"landmark\": 63087,\n  \"truck\": 61649,\n  \"crosshairs\": 61531,\n  \"person-cane\": 58684,\n  \"tent\": 58749,\n  \"vest-patches\": 57478,\n  \"check-double\": 62816,\n  \"arrow-down-a-z\": 61789,\n  \"sort-alpha-asc\": 61789,\n  \"sort-alpha-down\": 61789,\n  \"money-bill-wheat\": 58666,\n  \"cookie\": 62819,\n  \"arrow-rotate-left\": 61666,\n  \"arrow-left-rotate\": 61666,\n  \"arrow-rotate-back\": 61666,\n  \"arrow-rotate-backward\": 61666,\n  \"undo\": 61666,\n  \"hard-drive\": 61600,\n  \"hdd\": 61600,\n  \"face-grin-squint-tears\": 62854,\n  \"grin-squint-tears\": 62854,\n  \"dumbbell\": 62539,\n  \"rectangle-list\": 61474,\n  \"list-alt\": 61474,\n  \"tarp-droplet\": 58748,\n  \"house-medical-circle-check\": 58641,\n  \"person-skiing-nordic\": 63434,\n  \"skiing-nordic\": 63434,\n  \"calendar-plus\": 62065,\n  \"plane-arrival\": 62895,\n  \"circle-left\": 62297,\n  \"arrow-alt-circle-left\": 62297,\n  \"train-subway\": 62009,\n  \"subway\": 62009,\n  \"chart-gantt\": 57572,\n  \"indian-rupee-sign\": 57788,\n  \"indian-rupee\": 57788,\n  \"inr\": 57788,\n  \"crop-simple\": 62821,\n  \"crop-alt\": 62821,\n  \"money-bill-1\": 62417,\n  \"money-bill-alt\": 62417,\n  \"left-long\": 62218,\n  \"long-arrow-alt-left\": 62218,\n  \"dna\": 62577,\n  \"virus-slash\": 57461,\n  \"minus\": 61544,\n  \"subtract\": 61544,\n  \"chess\": 62521,\n  \"arrow-left-long\": 61815,\n  \"long-arrow-left\": 61815,\n  \"plug-circle-check\": 58716,\n  \"street-view\": 61981,\n  \"franc-sign\": 57743,\n  \"volume-off\": 61478,\n  \"hands-asl-interpreting\": 62115,\n  \"american-sign-language-interpreting\": 62115,\n  \"asl-interpreting\": 62115,\n  \"hands-american-sign-language-interpreting\": 62115,\n  \"gear\": 61459,\n  \"cog\": 61459,\n  \"droplet-slash\": 62919,\n  \"tint-slash\": 62919,\n  \"mosque\": 63096,\n  \"mosquito\": 58667,\n  \"star-of-david\": 63130,\n  \"person-military-rifle\": 58699,\n  \"cart-shopping\": 61562,\n  \"shopping-cart\": 61562,\n  \"vials\": 62611,\n  \"plug-circle-plus\": 58719,\n  \"place-of-worship\": 63103,\n  \"grip-vertical\": 62862,\n  \"hexagon-nodes\": 59033,\n  \"arrow-turn-up\": 61768,\n  \"level-up\": 61768,\n  \"u\": 85,\n  \"square-root-variable\": 63128,\n  \"square-root-alt\": 63128,\n  \"clock\": 61463,\n  \"clock-four\": 61463,\n  \"backward-step\": 61512,\n  \"step-backward\": 61512,\n  \"pallet\": 62594,\n  \"faucet\": 57349,\n  \"baseball-bat-ball\": 62514,\n  \"s\": 83,\n  \"timeline\": 58012,\n  \"keyboard\": 61724,\n  \"caret-down\": 61655,\n  \"house-chimney-medical\": 63474,\n  \"clinic-medical\": 63474,\n  \"temperature-three-quarters\": 62152,\n  \"temperature-3\": 62152,\n  \"thermometer-3\": 62152,\n  \"thermometer-three-quarters\": 62152,\n  \"mobile-screen\": 62415,\n  \"mobile-android-alt\": 62415,\n  \"plane-up\": 57901,\n  \"piggy-bank\": 62675,\n  \"battery-half\": 62018,\n  \"battery-3\": 62018,\n  \"mountain-city\": 58670,\n  \"coins\": 62750,\n  \"khanda\": 63085,\n  \"sliders\": 61918,\n  \"sliders-h\": 61918,\n  \"folder-tree\": 63490,\n  \"network-wired\": 63231,\n  \"map-pin\": 62070,\n  \"hamsa\": 63077,\n  \"cent-sign\": 58357,\n  \"flask\": 61635,\n  \"person-pregnant\": 58142,\n  \"wand-sparkles\": 63275,\n  \"ellipsis-vertical\": 61762,\n  \"ellipsis-v\": 61762,\n  \"ticket\": 61765,\n  \"power-off\": 61457,\n  \"right-long\": 62219,\n  \"long-arrow-alt-right\": 62219,\n  \"flag-usa\": 63309,\n  \"laptop-file\": 58653,\n  \"tty\": 61924,\n  \"teletype\": 61924,\n  \"diagram-next\": 58486,\n  \"person-rifle\": 58702,\n  \"house-medical-circle-exclamation\": 58642,\n  \"closed-captioning\": 61962,\n  \"person-hiking\": 63212,\n  \"hiking\": 63212,\n  \"venus-double\": 61990,\n  \"images\": 62210,\n  \"calculator\": 61932,\n  \"people-pulling\": 58677,\n  \"n\": 78,\n  \"cable-car\": 63450,\n  \"tram\": 63450,\n  \"cloud-rain\": 63293,\n  \"building-circle-xmark\": 58580,\n  \"ship\": 61978,\n  \"arrows-down-to-line\": 58552,\n  \"download\": 61465,\n  \"face-grin\": 62848,\n  \"grin\": 62848,\n  \"delete-left\": 62810,\n  \"backspace\": 62810,\n  \"eye-dropper\": 61947,\n  \"eye-dropper-empty\": 61947,\n  \"eyedropper\": 61947,\n  \"file-circle-check\": 58784,\n  \"forward\": 61518,\n  \"mobile\": 62414,\n  \"mobile-android\": 62414,\n  \"mobile-phone\": 62414,\n  \"face-meh\": 61722,\n  \"meh\": 61722,\n  \"align-center\": 61495,\n  \"book-skull\": 63159,\n  \"book-dead\": 63159,\n  \"id-card\": 62146,\n  \"drivers-license\": 62146,\n  \"outdent\": 61499,\n  \"dedent\": 61499,\n  \"heart-circle-exclamation\": 58622,\n  \"house\": 61461,\n  \"home\": 61461,\n  \"home-alt\": 61461,\n  \"home-lg-alt\": 61461,\n  \"calendar-week\": 63364,\n  \"laptop-medical\": 63506,\n  \"b\": 66,\n  \"file-medical\": 62583,\n  \"dice-one\": 62757,\n  \"kiwi-bird\": 62773,\n  \"arrow-right-arrow-left\": 61676,\n  \"exchange\": 61676,\n  \"rotate-right\": 62201,\n  \"redo-alt\": 62201,\n  \"rotate-forward\": 62201,\n  \"utensils\": 62183,\n  \"cutlery\": 62183,\n  \"arrow-up-wide-short\": 61793,\n  \"sort-amount-up\": 61793,\n  \"mill-sign\": 57837,\n  \"bowl-rice\": 58091,\n  \"skull\": 62796,\n  \"tower-broadcast\": 62745,\n  \"broadcast-tower\": 62745,\n  \"truck-pickup\": 63036,\n  \"up-long\": 62220,\n  \"long-arrow-alt-up\": 62220,\n  \"stop\": 61517,\n  \"code-merge\": 62343,\n  \"upload\": 61587,\n  \"hurricane\": 63313,\n  \"mound\": 58669,\n  \"toilet-portable\": 58755,\n  \"compact-disc\": 62751,\n  \"file-arrow-down\": 62829,\n  \"file-download\": 62829,\n  \"caravan\": 63743,\n  \"shield-cat\": 58738,\n  \"bolt\": 61671,\n  \"zap\": 61671,\n  \"glass-water\": 58612,\n  \"oil-well\": 58674,\n  \"vault\": 58053,\n  \"mars\": 61986,\n  \"toilet\": 63448,\n  \"plane-circle-xmark\": 58711,\n  \"yen-sign\": 61783,\n  \"cny\": 61783,\n  \"jpy\": 61783,\n  \"rmb\": 61783,\n  \"yen\": 61783,\n  \"ruble-sign\": 61784,\n  \"rouble\": 61784,\n  \"rub\": 61784,\n  \"ruble\": 61784,\n  \"sun\": 61829,\n  \"guitar\": 63398,\n  \"face-laugh-wink\": 62876,\n  \"laugh-wink\": 62876,\n  \"horse-head\": 63403,\n  \"bore-hole\": 58563,\n  \"industry\": 62069,\n  \"circle-down\": 62296,\n  \"arrow-alt-circle-down\": 62296,\n  \"arrows-turn-to-dots\": 58561,\n  \"florin-sign\": 57732,\n  \"arrow-down-short-wide\": 63620,\n  \"sort-amount-desc\": 63620,\n  \"sort-amount-down-alt\": 63620,\n  \"less-than\": 60,\n  \"angle-down\": 61703,\n  \"car-tunnel\": 58590,\n  \"head-side-cough\": 57441,\n  \"grip-lines\": 63396,\n  \"thumbs-down\": 61797,\n  \"user-lock\": 62722,\n  \"arrow-right-long\": 61816,\n  \"long-arrow-right\": 61816,\n  \"anchor-circle-xmark\": 58540,\n  \"ellipsis\": 61761,\n  \"ellipsis-h\": 61761,\n  \"chess-pawn\": 62531,\n  \"kit-medical\": 62585,\n  \"first-aid\": 62585,\n  \"person-through-window\": 58793,\n  \"toolbox\": 62802,\n  \"hands-holding-circle\": 58619,\n  \"bug\": 61832,\n  \"credit-card\": 61597,\n  \"credit-card-alt\": 61597,\n  \"car\": 61881,\n  \"automobile\": 61881,\n  \"hand-holding-hand\": 58615,\n  \"book-open-reader\": 62938,\n  \"book-reader\": 62938,\n  \"mountain-sun\": 58671,\n  \"arrows-left-right-to-line\": 58554,\n  \"dice-d20\": 63183,\n  \"truck-droplet\": 58764,\n  \"file-circle-xmark\": 58785,\n  \"temperature-arrow-up\": 57408,\n  \"temperature-up\": 57408,\n  \"medal\": 62882,\n  \"bed\": 62006,\n  \"square-h\": 61693,\n  \"h-square\": 61693,\n  \"podcast\": 62158,\n  \"temperature-full\": 62151,\n  \"temperature-4\": 62151,\n  \"thermometer-4\": 62151,\n  \"thermometer-full\": 62151,\n  \"bell\": 61683,\n  \"superscript\": 61739,\n  \"plug-circle-xmark\": 58720,\n  \"star-of-life\": 63009,\n  \"phone-slash\": 62429,\n  \"paint-roller\": 62890,\n  \"handshake-angle\": 62660,\n  \"hands-helping\": 62660,\n  \"location-dot\": 62405,\n  \"map-marker-alt\": 62405,\n  \"file\": 61787,\n  \"greater-than\": 62,\n  \"person-swimming\": 62916,\n  \"swimmer\": 62916,\n  \"arrow-down\": 61539,\n  \"droplet\": 61507,\n  \"tint\": 61507,\n  \"eraser\": 61741,\n  \"earth-americas\": 62845,\n  \"earth\": 62845,\n  \"earth-america\": 62845,\n  \"globe-americas\": 62845,\n  \"person-burst\": 58683,\n  \"dove\": 62650,\n  \"battery-empty\": 62020,\n  \"battery-0\": 62020,\n  \"socks\": 63126,\n  \"inbox\": 61468,\n  \"section\": 58439,\n  \"gauge-high\": 63013,\n  \"tachometer-alt\": 63013,\n  \"tachometer-alt-fast\": 63013,\n  \"envelope-open-text\": 63064,\n  \"hospital\": 61688,\n  \"hospital-alt\": 61688,\n  \"hospital-wide\": 61688,\n  \"wine-bottle\": 63279,\n  \"chess-rook\": 62535,\n  \"bars-staggered\": 62800,\n  \"reorder\": 62800,\n  \"stream\": 62800,\n  \"dharmachakra\": 63061,\n  \"hotdog\": 63503,\n  \"person-walking-with-cane\": 62109,\n  \"blind\": 62109,\n  \"drum\": 62825,\n  \"ice-cream\": 63504,\n  \"heart-circle-bolt\": 58620,\n  \"fax\": 61868,\n  \"paragraph\": 61917,\n  \"check-to-slot\": 63346,\n  \"vote-yea\": 63346,\n  \"star-half\": 61577,\n  \"boxes-stacked\": 62568,\n  \"boxes\": 62568,\n  \"boxes-alt\": 62568,\n  \"link\": 61633,\n  \"chain\": 61633,\n  \"ear-listen\": 62114,\n  \"assistive-listening-systems\": 62114,\n  \"tree-city\": 58759,\n  \"play\": 61515,\n  \"font\": 61489,\n  \"table-cells-row-lock\": 59002,\n  \"rupiah-sign\": 57917,\n  \"magnifying-glass\": 61442,\n  \"search\": 61442,\n  \"table-tennis-paddle-ball\": 62557,\n  \"ping-pong-paddle-ball\": 62557,\n  \"table-tennis\": 62557,\n  \"person-dots-from-line\": 62576,\n  \"diagnoses\": 62576,\n  \"trash-can-arrow-up\": 63530,\n  \"trash-restore-alt\": 63530,\n  \"naira-sign\": 57846,\n  \"cart-arrow-down\": 61976,\n  \"walkie-talkie\": 63727,\n  \"file-pen\": 62236,\n  \"file-edit\": 62236,\n  \"receipt\": 62787,\n  \"square-pen\": 61771,\n  \"pen-square\": 61771,\n  \"pencil-square\": 61771,\n  \"suitcase-rolling\": 62913,\n  \"person-circle-exclamation\": 58687,\n  \"chevron-down\": 61560,\n  \"battery-full\": 62016,\n  \"battery\": 62016,\n  \"battery-5\": 62016,\n  \"skull-crossbones\": 63252,\n  \"code-compare\": 57658,\n  \"list-ul\": 61642,\n  \"list-dots\": 61642,\n  \"school-lock\": 58735,\n  \"tower-cell\": 58757,\n  \"down-long\": 62217,\n  \"long-arrow-alt-down\": 62217,\n  \"ranking-star\": 58721,\n  \"chess-king\": 62527,\n  \"person-harassing\": 58697,\n  \"brazilian-real-sign\": 58476,\n  \"landmark-dome\": 63314,\n  \"landmark-alt\": 63314,\n  \"arrow-up\": 61538,\n  \"tv\": 62060,\n  \"television\": 62060,\n  \"tv-alt\": 62060,\n  \"shrimp\": 58440,\n  \"list-check\": 61614,\n  \"tasks\": 61614,\n  \"jug-detergent\": 58649,\n  \"circle-user\": 62141,\n  \"user-circle\": 62141,\n  \"user-shield\": 62725,\n  \"wind\": 63278,\n  \"car-burst\": 62945,\n  \"car-crash\": 62945,\n  \"y\": 89,\n  \"person-snowboarding\": 63438,\n  \"snowboarding\": 63438,\n  \"truck-fast\": 62603,\n  \"shipping-fast\": 62603,\n  \"fish\": 62840,\n  \"user-graduate\": 62721,\n  \"circle-half-stroke\": 61506,\n  \"adjust\": 61506,\n  \"clapperboard\": 57649,\n  \"circle-radiation\": 63418,\n  \"radiation-alt\": 63418,\n  \"baseball\": 62515,\n  \"baseball-ball\": 62515,\n  \"jet-fighter-up\": 58648,\n  \"diagram-project\": 62786,\n  \"project-diagram\": 62786,\n  \"copy\": 61637,\n  \"volume-xmark\": 63145,\n  \"volume-mute\": 63145,\n  \"volume-times\": 63145,\n  \"hand-sparkles\": 57437,\n  \"grip\": 62861,\n  \"grip-horizontal\": 62861,\n  \"share-from-square\": 61773,\n  \"share-square\": 61773,\n  \"child-combatant\": 58592,\n  \"child-rifle\": 58592,\n  \"gun\": 57755,\n  \"square-phone\": 61592,\n  \"phone-square\": 61592,\n  \"plus\": 43,\n  \"add\": 43,\n  \"expand\": 61541,\n  \"computer\": 58597,\n  \"xmark\": 61453,\n  \"close\": 61453,\n  \"multiply\": 61453,\n  \"remove\": 61453,\n  \"times\": 61453,\n  \"arrows-up-down-left-right\": 61511,\n  \"arrows\": 61511,\n  \"chalkboard-user\": 62748,\n  \"chalkboard-teacher\": 62748,\n  \"peso-sign\": 57890,\n  \"building-shield\": 58584,\n  \"baby\": 63356,\n  \"users-line\": 58770,\n  \"quote-left\": 61709,\n  \"quote-left-alt\": 61709,\n  \"tractor\": 63266,\n  \"trash-arrow-up\": 63529,\n  \"trash-restore\": 63529,\n  \"arrow-down-up-lock\": 58544,\n  \"lines-leaning\": 58654,\n  \"ruler-combined\": 62790,\n  \"copyright\": 61945,\n  \"equals\": 61,\n  \"blender\": 62743,\n  \"teeth\": 63022,\n  \"shekel-sign\": 61963,\n  \"ils\": 61963,\n  \"shekel\": 61963,\n  \"sheqel\": 61963,\n  \"sheqel-sign\": 61963,\n  \"map\": 62073,\n  \"rocket\": 61749,\n  \"photo-film\": 63612,\n  \"photo-video\": 63612,\n  \"folder-minus\": 63069,\n  \"hexagon-nodes-bolt\": 59034,\n  \"store\": 62798,\n  \"arrow-trend-up\": 57496,\n  \"plug-circle-minus\": 58718,\n  \"sign-hanging\": 62681,\n  \"sign\": 62681,\n  \"bezier-curve\": 62811,\n  \"bell-slash\": 61942,\n  \"tablet\": 62459,\n  \"tablet-android\": 62459,\n  \"school-flag\": 58734,\n  \"fill\": 62837,\n  \"angle-up\": 61702,\n  \"drumstick-bite\": 63191,\n  \"holly-berry\": 63402,\n  \"chevron-left\": 61523,\n  \"bacteria\": 57433,\n  \"hand-lizard\": 62040,\n  \"notdef\": 57854,\n  \"disease\": 63482,\n  \"briefcase-medical\": 62569,\n  \"genderless\": 61997,\n  \"chevron-right\": 61524,\n  \"retweet\": 61561,\n  \"car-rear\": 62942,\n  \"car-alt\": 62942,\n  \"pump-soap\": 57451,\n  \"video-slash\": 62690,\n  \"battery-quarter\": 62019,\n  \"battery-2\": 62019,\n  \"radio\": 63703,\n  \"baby-carriage\": 63357,\n  \"carriage-baby\": 63357,\n  \"traffic-light\": 63031,\n  \"thermometer\": 62609,\n  \"vr-cardboard\": 63273,\n  \"hand-middle-finger\": 63494,\n  \"percent\": 37,\n  \"percentage\": 37,\n  \"truck-moving\": 62687,\n  \"glass-water-droplet\": 58613,\n  \"display\": 57699,\n  \"face-smile\": 61720,\n  \"smile\": 61720,\n  \"thumbtack\": 61581,\n  \"thumb-tack\": 61581,\n  \"trophy\": 61585,\n  \"person-praying\": 63107,\n  \"pray\": 63107,\n  \"hammer\": 63203,\n  \"hand-peace\": 62043,\n  \"rotate\": 62193,\n  \"sync-alt\": 62193,\n  \"spinner\": 61712,\n  \"robot\": 62788,\n  \"peace\": 63100,\n  \"gears\": 61573,\n  \"cogs\": 61573,\n  \"warehouse\": 62612,\n  \"arrow-up-right-dots\": 58551,\n  \"splotch\": 62908,\n  \"face-grin-hearts\": 62852,\n  \"grin-hearts\": 62852,\n  \"dice-four\": 62756,\n  \"sim-card\": 63428,\n  \"transgender\": 61989,\n  \"transgender-alt\": 61989,\n  \"mercury\": 61987,\n  \"arrow-turn-down\": 61769,\n  \"level-down\": 61769,\n  \"person-falling-burst\": 58695,\n  \"award\": 62809,\n  \"ticket-simple\": 62463,\n  \"ticket-alt\": 62463,\n  \"building\": 61869,\n  \"angles-left\": 61696,\n  \"angle-double-left\": 61696,\n  \"qrcode\": 61481,\n  \"clock-rotate-left\": 61914,\n  \"history\": 61914,\n  \"face-grin-beam-sweat\": 62851,\n  \"grin-beam-sweat\": 62851,\n  \"file-export\": 62830,\n  \"arrow-right-from-file\": 62830,\n  \"shield\": 61746,\n  \"shield-blank\": 61746,\n  \"arrow-up-short-wide\": 63621,\n  \"sort-amount-up-alt\": 63621,\n  \"comment-nodes\": 59030,\n  \"house-medical\": 58290,\n  \"golf-ball-tee\": 62544,\n  \"golf-ball\": 62544,\n  \"circle-chevron-left\": 61751,\n  \"chevron-circle-left\": 61751,\n  \"house-chimney-window\": 57357,\n  \"pen-nib\": 62893,\n  \"tent-arrow-turn-left\": 58752,\n  \"tents\": 58754,\n  \"wand-magic\": 61648,\n  \"magic\": 61648,\n  \"dog\": 63187,\n  \"carrot\": 63367,\n  \"moon\": 61830,\n  \"wine-glass-empty\": 62926,\n  \"wine-glass-alt\": 62926,\n  \"cheese\": 63471,\n  \"yin-yang\": 63149,\n  \"music\": 61441,\n  \"code-commit\": 62342,\n  \"temperature-low\": 63339,\n  \"person-biking\": 63562,\n  \"biking\": 63562,\n  \"broom\": 62746,\n  \"shield-heart\": 58740,\n  \"gopuram\": 63076,\n  \"earth-oceania\": 58491,\n  \"globe-oceania\": 58491,\n  \"square-xmark\": 62163,\n  \"times-square\": 62163,\n  \"xmark-square\": 62163,\n  \"hashtag\": 35,\n  \"up-right-and-down-left-from-center\": 62500,\n  \"expand-alt\": 62500,\n  \"oil-can\": 62995,\n  \"t\": 84,\n  \"hippo\": 63213,\n  \"chart-column\": 57571,\n  \"infinity\": 62772,\n  \"vial-circle-check\": 58774,\n  \"person-arrow-down-to-line\": 58680,\n  \"voicemail\": 63639,\n  \"fan\": 63587,\n  \"person-walking-luggage\": 58708,\n  \"up-down\": 62264,\n  \"arrows-alt-v\": 62264,\n  \"cloud-moon-rain\": 63292,\n  \"calendar\": 61747,\n  \"trailer\": 57409,\n  \"bahai\": 63078,\n  \"haykal\": 63078,\n  \"sd-card\": 63426,\n  \"dragon\": 63189,\n  \"shoe-prints\": 62795,\n  \"circle-plus\": 61525,\n  \"plus-circle\": 61525,\n  \"face-grin-tongue-wink\": 62859,\n  \"grin-tongue-wink\": 62859,\n  \"hand-holding\": 62653,\n  \"plug-circle-exclamation\": 58717,\n  \"link-slash\": 61735,\n  \"chain-broken\": 61735,\n  \"chain-slash\": 61735,\n  \"unlink\": 61735,\n  \"clone\": 62029,\n  \"person-walking-arrow-loop-left\": 58705,\n  \"arrow-up-z-a\": 63618,\n  \"sort-alpha-up-alt\": 63618,\n  \"fire-flame-curved\": 63460,\n  \"fire-alt\": 63460,\n  \"tornado\": 63343,\n  \"file-circle-plus\": 58516,\n  \"book-quran\": 63111,\n  \"quran\": 63111,\n  \"anchor\": 61757,\n  \"border-all\": 63564,\n  \"face-angry\": 62806,\n  \"angry\": 62806,\n  \"cookie-bite\": 62820,\n  \"arrow-trend-down\": 57495,\n  \"rss\": 61598,\n  \"feed\": 61598,\n  \"draw-polygon\": 62958,\n  \"scale-balanced\": 62030,\n  \"balance-scale\": 62030,\n  \"gauge-simple-high\": 63018,\n  \"tachometer\": 63018,\n  \"tachometer-fast\": 63018,\n  \"shower\": 62156,\n  \"desktop\": 62352,\n  \"desktop-alt\": 62352,\n  \"m\": 77,\n  \"table-list\": 61451,\n  \"th-list\": 61451,\n  \"comment-sms\": 63437,\n  \"sms\": 63437,\n  \"book\": 61485,\n  \"user-plus\": 62004,\n  \"check\": 61452,\n  \"battery-three-quarters\": 62017,\n  \"battery-4\": 62017,\n  \"house-circle-check\": 58633,\n  \"angle-left\": 61700,\n  \"diagram-successor\": 58490,\n  \"truck-arrow-right\": 58763,\n  \"arrows-split-up-and-left\": 58556,\n  \"hand-fist\": 63198,\n  \"fist-raised\": 63198,\n  \"cloud-moon\": 63171,\n  \"briefcase\": 61617,\n  \"person-falling\": 58694,\n  \"image-portrait\": 62432,\n  \"portrait\": 62432,\n  \"user-tag\": 62727,\n  \"rug\": 58729,\n  \"earth-europe\": 63394,\n  \"globe-europe\": 63394,\n  \"cart-flatbed-suitcase\": 62877,\n  \"luggage-cart\": 62877,\n  \"rectangle-xmark\": 62480,\n  \"rectangle-times\": 62480,\n  \"times-rectangle\": 62480,\n  \"window-close\": 62480,\n  \"baht-sign\": 57516,\n  \"book-open\": 62744,\n  \"book-journal-whills\": 63082,\n  \"journal-whills\": 63082,\n  \"handcuffs\": 58616,\n  \"triangle-exclamation\": 61553,\n  \"exclamation-triangle\": 61553,\n  \"warning\": 61553,\n  \"database\": 61888,\n  \"share\": 61540,\n  \"mail-forward\": 61540,\n  \"bottle-droplet\": 58564,\n  \"mask-face\": 57815,\n  \"hill-rockslide\": 58632,\n  \"right-left\": 62306,\n  \"exchange-alt\": 62306,\n  \"paper-plane\": 61912,\n  \"road-circle-exclamation\": 58725,\n  \"dungeon\": 63193,\n  \"align-right\": 61496,\n  \"money-bill-1-wave\": 62779,\n  \"money-bill-wave-alt\": 62779,\n  \"life-ring\": 61901,\n  \"hands\": 62119,\n  \"sign-language\": 62119,\n  \"signing\": 62119,\n  \"calendar-day\": 63363,\n  \"water-ladder\": 62917,\n  \"ladder-water\": 62917,\n  \"swimming-pool\": 62917,\n  \"arrows-up-down\": 61565,\n  \"arrows-v\": 61565,\n  \"face-grimace\": 62847,\n  \"grimace\": 62847,\n  \"wheelchair-move\": 58062,\n  \"wheelchair-alt\": 58062,\n  \"turn-down\": 62398,\n  \"level-down-alt\": 62398,\n  \"person-walking-arrow-right\": 58706,\n  \"square-envelope\": 61849,\n  \"envelope-square\": 61849,\n  \"dice\": 62754,\n  \"bowling-ball\": 62518,\n  \"brain\": 62940,\n  \"bandage\": 62562,\n  \"band-aid\": 62562,\n  \"calendar-minus\": 62066,\n  \"circle-xmark\": 61527,\n  \"times-circle\": 61527,\n  \"xmark-circle\": 61527,\n  \"gifts\": 63388,\n  \"hotel\": 62868,\n  \"earth-asia\": 62846,\n  \"globe-asia\": 62846,\n  \"id-card-clip\": 62591,\n  \"id-card-alt\": 62591,\n  \"magnifying-glass-plus\": 61454,\n  \"search-plus\": 61454,\n  \"thumbs-up\": 61796,\n  \"user-clock\": 62717,\n  \"hand-dots\": 62561,\n  \"allergies\": 62561,\n  \"file-invoice\": 62832,\n  \"window-minimize\": 62161,\n  \"mug-saucer\": 61684,\n  \"coffee\": 61684,\n  \"brush\": 62813,\n  \"file-half-dashed\": 59032,\n  \"mask\": 63226,\n  \"magnifying-glass-minus\": 61456,\n  \"search-minus\": 61456,\n  \"ruler-vertical\": 62792,\n  \"user-large\": 62470,\n  \"user-alt\": 62470,\n  \"train-tram\": 58804,\n  \"user-nurse\": 63535,\n  \"syringe\": 62606,\n  \"cloud-sun\": 63172,\n  \"stopwatch-20\": 57455,\n  \"square-full\": 62556,\n  \"magnet\": 61558,\n  \"jar\": 58646,\n  \"note-sticky\": 62025,\n  \"sticky-note\": 62025,\n  \"bug-slash\": 58512,\n  \"arrow-up-from-water-pump\": 58550,\n  \"bone\": 62935,\n  \"table-cells-row-unlock\": 59025,\n  \"user-injured\": 63272,\n  \"face-sad-tear\": 62900,\n  \"sad-tear\": 62900,\n  \"plane\": 61554,\n  \"tent-arrows-down\": 58753,\n  \"exclamation\": 33,\n  \"arrows-spin\": 58555,\n  \"print\": 61487,\n  \"turkish-lira-sign\": 58043,\n  \"try\": 58043,\n  \"turkish-lira\": 58043,\n  \"dollar-sign\": 36,\n  \"dollar\": 36,\n  \"usd\": 36,\n  \"x\": 88,\n  \"magnifying-glass-dollar\": 63112,\n  \"search-dollar\": 63112,\n  \"users-gear\": 62729,\n  \"users-cog\": 62729,\n  \"person-military-pointing\": 58698,\n  \"building-columns\": 61852,\n  \"bank\": 61852,\n  \"institution\": 61852,\n  \"museum\": 61852,\n  \"university\": 61852,\n  \"umbrella\": 61673,\n  \"trowel\": 58761,\n  \"d\": 68,\n  \"stapler\": 58799,\n  \"masks-theater\": 63024,\n  \"theater-masks\": 63024,\n  \"kip-sign\": 57796,\n  \"hand-point-left\": 61605,\n  \"handshake-simple\": 62662,\n  \"handshake-alt\": 62662,\n  \"jet-fighter\": 61691,\n  \"fighter-jet\": 61691,\n  \"square-share-nodes\": 61921,\n  \"share-alt-square\": 61921,\n  \"barcode\": 61482,\n  \"plus-minus\": 58428,\n  \"video\": 61501,\n  \"video-camera\": 61501,\n  \"graduation-cap\": 61853,\n  \"mortar-board\": 61853,\n  \"hand-holding-medical\": 57436,\n  \"person-circle-check\": 58686,\n  \"turn-up\": 62399,\n  \"level-up-alt\": 62399,\n  \"monero\": 62416,\n  \"hooli\": 62503,\n  \"yelp\": 61929,\n  \"cc-visa\": 61936,\n  \"lastfm\": 61954,\n  \"shopware\": 62901,\n  \"creative-commons-nc\": 62696,\n  \"aws\": 62325,\n  \"redhat\": 63420,\n  \"yoast\": 62129,\n  \"cloudflare\": 57469,\n  \"ups\": 63456,\n  \"pixiv\": 58944,\n  \"wpexplorer\": 62174,\n  \"dyalog\": 62361,\n  \"bity\": 62330,\n  \"stackpath\": 63554,\n  \"buysellads\": 61965,\n  \"first-order\": 62128,\n  \"modx\": 62085,\n  \"guilded\": 57470,\n  \"vnv\": 62475,\n  \"square-js\": 62393,\n  \"js-square\": 62393,\n  \"microsoft\": 62410,\n  \"qq\": 61910,\n  \"orcid\": 63698,\n  \"java\": 62692,\n  \"invision\": 63408,\n  \"creative-commons-pd-alt\": 62701,\n  \"centercode\": 62336,\n  \"glide-g\": 62118,\n  \"drupal\": 61865,\n  \"jxl\": 59003,\n  \"dart-lang\": 59027,\n  \"hire-a-helper\": 62384,\n  \"creative-commons-by\": 62695,\n  \"unity\": 57417,\n  \"whmcs\": 62477,\n  \"rocketchat\": 62440,\n  \"vk\": 61833,\n  \"untappd\": 62469,\n  \"mailchimp\": 62878,\n  \"css3-alt\": 62347,\n  \"square-reddit\": 61858,\n  \"reddit-square\": 61858,\n  \"vimeo-v\": 62077,\n  \"contao\": 62061,\n  \"square-font-awesome\": 58797,\n  \"deskpro\": 62351,\n  \"brave\": 58940,\n  \"sistrix\": 62446,\n  \"square-instagram\": 57429,\n  \"instagram-square\": 57429,\n  \"battle-net\": 63541,\n  \"the-red-yeti\": 63133,\n  \"square-hacker-news\": 62383,\n  \"hacker-news-square\": 62383,\n  \"edge\": 62082,\n  \"threads\": 58904,\n  \"napster\": 62418,\n  \"square-snapchat\": 62125,\n  \"snapchat-square\": 62125,\n  \"google-plus-g\": 61653,\n  \"artstation\": 63354,\n  \"markdown\": 62991,\n  \"sourcetree\": 63443,\n  \"google-plus\": 62131,\n  \"diaspora\": 63377,\n  \"foursquare\": 61824,\n  \"stack-overflow\": 61804,\n  \"github-alt\": 61715,\n  \"phoenix-squadron\": 62737,\n  \"pagelines\": 61836,\n  \"algolia\": 62316,\n  \"red-river\": 62435,\n  \"creative-commons-sa\": 62703,\n  \"safari\": 62055,\n  \"google\": 61856,\n  \"square-font-awesome-stroke\": 62300,\n  \"font-awesome-alt\": 62300,\n  \"atlassian\": 63355,\n  \"linkedin-in\": 61665,\n  \"digital-ocean\": 62353,\n  \"nimblr\": 62888,\n  \"chromecast\": 63544,\n  \"evernote\": 63545,\n  \"hacker-news\": 61908,\n  \"creative-commons-sampling\": 62704,\n  \"adversal\": 62314,\n  \"creative-commons\": 62046,\n  \"watchman-monitoring\": 57479,\n  \"fonticons\": 62080,\n  \"weixin\": 61911,\n  \"shirtsinbulk\": 61972,\n  \"codepen\": 61899,\n  \"git-alt\": 63553,\n  \"lyft\": 62403,\n  \"rev\": 62898,\n  \"windows\": 61818,\n  \"wizards-of-the-coast\": 63280,\n  \"square-viadeo\": 62122,\n  \"viadeo-square\": 62122,\n  \"meetup\": 62176,\n  \"centos\": 63369,\n  \"adn\": 61808,\n  \"cloudsmith\": 62340,\n  \"opensuse\": 58923,\n  \"pied-piper-alt\": 61864,\n  \"square-dribbble\": 62359,\n  \"dribbble-square\": 62359,\n  \"codiepie\": 62084,\n  \"node\": 62489,\n  \"mix\": 62411,\n  \"steam\": 61878,\n  \"cc-apple-pay\": 62486,\n  \"scribd\": 62090,\n  \"debian\": 58891,\n  \"openid\": 61851,\n  \"instalod\": 57473,\n  \"files-pinwheel\": 59039,\n  \"expeditedssl\": 62014,\n  \"sellcast\": 62170,\n  \"square-twitter\": 61569,\n  \"twitter-square\": 61569,\n  \"r-project\": 62711,\n  \"delicious\": 61861,\n  \"freebsd\": 62372,\n  \"vuejs\": 62495,\n  \"accusoft\": 62313,\n  \"ioxhost\": 61960,\n  \"fonticons-fi\": 62370,\n  \"app-store\": 62319,\n  \"cc-mastercard\": 61937,\n  \"itunes-note\": 62389,\n  \"golang\": 58383,\n  \"kickstarter\": 62395,\n  \"square-kickstarter\": 62395,\n  \"grav\": 62166,\n  \"weibo\": 61834,\n  \"uncharted\": 57476,\n  \"firstdraft\": 62369,\n  \"square-youtube\": 62513,\n  \"youtube-square\": 62513,\n  \"wikipedia-w\": 62054,\n  \"wpressr\": 62436,\n  \"rendact\": 62436,\n  \"angellist\": 61961,\n  \"galactic-republic\": 62732,\n  \"nfc-directional\": 58672,\n  \"skype\": 61822,\n  \"joget\": 62391,\n  \"fedora\": 63384,\n  \"stripe-s\": 62506,\n  \"meta\": 58523,\n  \"laravel\": 62397,\n  \"hotjar\": 62385,\n  \"bluetooth-b\": 62100,\n  \"square-letterboxd\": 58926,\n  \"sticker-mule\": 62455,\n  \"creative-commons-zero\": 62707,\n  \"hips\": 62546,\n  \"css\": 59042,\n  \"behance\": 61876,\n  \"reddit\": 61857,\n  \"discord\": 62354,\n  \"chrome\": 62056,\n  \"app-store-ios\": 62320,\n  \"cc-discover\": 61938,\n  \"wpbeginner\": 62103,\n  \"confluence\": 63373,\n  \"shoelace\": 58892,\n  \"mdb\": 63690,\n  \"dochub\": 62356,\n  \"accessible-icon\": 62312,\n  \"ebay\": 62708,\n  \"amazon\": 62064,\n  \"unsplash\": 57468,\n  \"yarn\": 63459,\n  \"square-steam\": 61879,\n  \"steam-square\": 61879,\n  \"500px\": 62062,\n  \"square-vimeo\": 61844,\n  \"vimeo-square\": 61844,\n  \"asymmetrik\": 62322,\n  \"font-awesome\": 62132,\n  \"font-awesome-flag\": 62132,\n  \"font-awesome-logo-full\": 62132,\n  \"gratipay\": 61828,\n  \"apple\": 61817,\n  \"hive\": 57471,\n  \"gitkraken\": 62374,\n  \"keybase\": 62709,\n  \"apple-pay\": 62485,\n  \"padlet\": 58528,\n  \"amazon-pay\": 62508,\n  \"square-github\": 61586,\n  \"github-square\": 61586,\n  \"stumbleupon\": 61860,\n  \"fedex\": 63383,\n  \"phoenix-framework\": 62428,\n  \"shopify\": 57431,\n  \"neos\": 62994,\n  \"square-threads\": 58905,\n  \"hackerrank\": 62967,\n  \"researchgate\": 62712,\n  \"swift\": 63713,\n  \"angular\": 62496,\n  \"speakap\": 62451,\n  \"angrycreative\": 62318,\n  \"y-combinator\": 62011,\n  \"empire\": 61905,\n  \"envira\": 62105,\n  \"google-scholar\": 58939,\n  \"square-gitlab\": 58798,\n  \"gitlab-square\": 58798,\n  \"studiovinari\": 62456,\n  \"pied-piper\": 62126,\n  \"wordpress\": 61850,\n  \"product-hunt\": 62088,\n  \"firefox\": 62057,\n  \"linode\": 62136,\n  \"goodreads\": 62376,\n  \"square-odnoklassniki\": 62052,\n  \"odnoklassniki-square\": 62052,\n  \"jsfiddle\": 61900,\n  \"sith\": 62738,\n  \"themeisle\": 62130,\n  \"page4\": 62423,\n  \"hashnode\": 58521,\n  \"react\": 62491,\n  \"cc-paypal\": 61940,\n  \"squarespace\": 62910,\n  \"cc-stripe\": 61941,\n  \"creative-commons-share\": 62706,\n  \"bitcoin\": 62329,\n  \"keycdn\": 62394,\n  \"opera\": 62058,\n  \"itch-io\": 63546,\n  \"umbraco\": 63720,\n  \"galactic-senate\": 62733,\n  \"ubuntu\": 63455,\n  \"draft2digital\": 62358,\n  \"stripe\": 62505,\n  \"houzz\": 62076,\n  \"gg\": 62048,\n  \"dhl\": 63376,\n  \"square-pinterest\": 61651,\n  \"pinterest-square\": 61651,\n  \"xing\": 61800,\n  \"blackberry\": 62331,\n  \"creative-commons-pd\": 62700,\n  \"playstation\": 62431,\n  \"quinscape\": 62553,\n  \"less\": 62493,\n  \"blogger-b\": 62333,\n  \"opencart\": 62013,\n  \"vine\": 61898,\n  \"signal-messenger\": 58979,\n  \"paypal\": 61933,\n  \"gitlab\": 62102,\n  \"typo3\": 62507,\n  \"reddit-alien\": 62081,\n  \"yahoo\": 61854,\n  \"dailymotion\": 57426,\n  \"affiliatetheme\": 62315,\n  \"pied-piper-pp\": 61863,\n  \"bootstrap\": 63542,\n  \"odnoklassniki\": 62051,\n  \"nfc-symbol\": 58673,\n  \"mintbit\": 58927,\n  \"ethereum\": 62510,\n  \"speaker-deck\": 63548,\n  \"creative-commons-nc-eu\": 62697,\n  \"patreon\": 62425,\n  \"avianex\": 62324,\n  \"ello\": 62961,\n  \"gofore\": 62375,\n  \"bimobject\": 62328,\n  \"brave-reverse\": 58941,\n  \"facebook-f\": 62366,\n  \"square-google-plus\": 61652,\n  \"google-plus-square\": 61652,\n  \"web-awesome\": 59010,\n  \"mandalorian\": 62735,\n  \"first-order-alt\": 62730,\n  \"osi\": 62490,\n  \"google-wallet\": 61934,\n  \"d-and-d-beyond\": 63178,\n  \"periscope\": 62426,\n  \"fulcrum\": 62731,\n  \"cloudscale\": 62339,\n  \"forumbee\": 61969,\n  \"mizuni\": 62412,\n  \"schlix\": 62442,\n  \"square-xing\": 61801,\n  \"xing-square\": 61801,\n  \"bandcamp\": 62165,\n  \"wpforms\": 62104,\n  \"cloudversify\": 62341,\n  \"usps\": 63457,\n  \"megaport\": 62883,\n  \"magento\": 62404,\n  \"spotify\": 61884,\n  \"optin-monster\": 62012,\n  \"fly\": 62487,\n  \"square-bluesky\": 59043,\n  \"aviato\": 62497,\n  \"itunes\": 62388,\n  \"cuttlefish\": 62348,\n  \"blogger\": 62332,\n  \"flickr\": 61806,\n  \"viber\": 62473,\n  \"soundcloud\": 61886,\n  \"digg\": 61862,\n  \"tencent-weibo\": 61909,\n  \"letterboxd\": 58925,\n  \"symfony\": 63549,\n  \"maxcdn\": 61750,\n  \"etsy\": 62167,\n  \"facebook-messenger\": 62367,\n  \"audible\": 62323,\n  \"think-peaks\": 63281,\n  \"bilibili\": 58329,\n  \"erlang\": 62365,\n  \"x-twitter\": 58907,\n  \"cotton-bureau\": 63646,\n  \"dashcube\": 61968,\n  \"42-group\": 57472,\n  \"innosoft\": 57472,\n  \"stack-exchange\": 61837,\n  \"elementor\": 62512,\n  \"square-pied-piper\": 57374,\n  \"pied-piper-square\": 57374,\n  \"creative-commons-nd\": 62699,\n  \"palfed\": 62424,\n  \"superpowers\": 62173,\n  \"resolving\": 62439,\n  \"xbox\": 62482,\n  \"square-web-awesome-stroke\": 59012,\n  \"searchengin\": 62443,\n  \"tiktok\": 57467,\n  \"square-facebook\": 61570,\n  \"facebook-square\": 61570,\n  \"renren\": 61835,\n  \"linux\": 61820,\n  \"glide\": 62117,\n  \"linkedin\": 61580,\n  \"hubspot\": 62386,\n  \"deploydog\": 62350,\n  \"twitch\": 61928,\n  \"flutter\": 59028,\n  \"ravelry\": 62169,\n  \"mixer\": 57430,\n  \"square-lastfm\": 61955,\n  \"lastfm-square\": 61955,\n  \"vimeo\": 62474,\n  \"mendeley\": 63411,\n  \"uniregistry\": 62468,\n  \"figma\": 63385,\n  \"creative-commons-remix\": 62702,\n  \"cc-amazon-pay\": 62509,\n  \"dropbox\": 61803,\n  \"instagram\": 61805,\n  \"cmplid\": 58208,\n  \"upwork\": 58945,\n  \"facebook\": 61594,\n  \"gripfire\": 62380,\n  \"jedi-order\": 62734,\n  \"uikit\": 62467,\n  \"fort-awesome-alt\": 62371,\n  \"phabricator\": 62427,\n  \"ussunnah\": 62471,\n  \"earlybirds\": 62362,\n  \"trade-federation\": 62739,\n  \"autoprefixer\": 62492,\n  \"whatsapp\": 62002,\n  \"square-upwork\": 59004,\n  \"slideshare\": 61927,\n  \"google-play\": 62379,\n  \"viadeo\": 62121,\n  \"line\": 62400,\n  \"google-drive\": 62378,\n  \"servicestack\": 62444,\n  \"simplybuilt\": 61973,\n  \"bitbucket\": 61809,\n  \"imdb\": 62168,\n  \"deezer\": 57463,\n  \"raspberry-pi\": 63419,\n  \"jira\": 63409,\n  \"docker\": 62357,\n  \"screenpal\": 58736,\n  \"bluetooth\": 62099,\n  \"gitter\": 62502,\n  \"d-and-d\": 62349,\n  \"microblog\": 57370,\n  \"cc-diners-club\": 62028,\n  \"gg-circle\": 62049,\n  \"pied-piper-hat\": 62693,\n  \"kickstarter-k\": 62396,\n  \"yandex\": 62483,\n  \"readme\": 62677,\n  \"html5\": 61755,\n  \"sellsy\": 61971,\n  \"square-web-awesome\": 59011,\n  \"sass\": 62494,\n  \"wirsindhandwerk\": 58064,\n  \"wsh\": 58064,\n  \"buromobelexperte\": 62335,\n  \"salesforce\": 63547,\n  \"octopus-deploy\": 57474,\n  \"medapps\": 62406,\n  \"ns8\": 62421,\n  \"pinterest-p\": 62001,\n  \"apper\": 62321,\n  \"fort-awesome\": 62086,\n  \"waze\": 63551,\n  \"bluesky\": 58993,\n  \"cc-jcb\": 62027,\n  \"snapchat\": 62123,\n  \"snapchat-ghost\": 62123,\n  \"fantasy-flight-games\": 63196,\n  \"rust\": 57466,\n  \"wix\": 62927,\n  \"square-behance\": 61877,\n  \"behance-square\": 61877,\n  \"supple\": 62457,\n  \"webflow\": 58972,\n  \"rebel\": 61904,\n  \"css3\": 61756,\n  \"staylinked\": 62453,\n  \"kaggle\": 62970,\n  \"space-awesome\": 58796,\n  \"deviantart\": 61885,\n  \"cpanel\": 62344,\n  \"goodreads-g\": 62377,\n  \"square-git\": 61906,\n  \"git-square\": 61906,\n  \"square-tumblr\": 61812,\n  \"tumblr-square\": 61812,\n  \"trello\": 61825,\n  \"creative-commons-nc-jp\": 62698,\n  \"get-pocket\": 62053,\n  \"perbyte\": 57475,\n  \"grunt\": 62381,\n  \"weebly\": 62924,\n  \"connectdevelop\": 61966,\n  \"leanpub\": 61970,\n  \"black-tie\": 62078,\n  \"themeco\": 62918,\n  \"python\": 62434,\n  \"android\": 61819,\n  \"bots\": 58176,\n  \"free-code-camp\": 62149,\n  \"hornbill\": 62866,\n  \"js\": 62392,\n  \"ideal\": 57363,\n  \"git\": 61907,\n  \"dev\": 63180,\n  \"sketch\": 63430,\n  \"yandex-international\": 62484,\n  \"cc-amex\": 61939,\n  \"uber\": 62466,\n  \"github\": 61595,\n  \"php\": 62551,\n  \"alipay\": 63042,\n  \"youtube\": 61799,\n  \"skyatlas\": 61974,\n  \"firefox-browser\": 57351,\n  \"replyd\": 62438,\n  \"suse\": 63446,\n  \"jenkins\": 62390,\n  \"twitter\": 61593,\n  \"rockrms\": 62441,\n  \"pinterest\": 61650,\n  \"buffer\": 63543,\n  \"npm\": 62420,\n  \"yammer\": 63552,\n  \"btc\": 61786,\n  \"dribbble\": 61821,\n  \"stumbleupon-circle\": 61859,\n  \"internet-explorer\": 62059,\n  \"stubber\": 58823,\n  \"telegram\": 62150,\n  \"telegram-plane\": 62150,\n  \"old-republic\": 62736,\n  \"odysee\": 58822,\n  \"square-whatsapp\": 62476,\n  \"whatsapp-square\": 62476,\n  \"node-js\": 62419,\n  \"edge-legacy\": 57464,\n  \"slack\": 61848,\n  \"slack-hash\": 61848,\n  \"medrt\": 62408,\n  \"usb\": 62087,\n  \"tumblr\": 61811,\n  \"vaadin\": 62472,\n  \"quora\": 62148,\n  \"square-x-twitter\": 58906,\n  \"reacteurope\": 63325,\n  \"medium\": 62010,\n  \"medium-m\": 62010,\n  \"amilia\": 62317,\n  \"mixcloud\": 62089,\n  \"flipboard\": 62541,\n  \"viacoin\": 62007,\n  \"critical-role\": 63177,\n  \"sitrox\": 58442,\n  \"discourse\": 62355,\n  \"joomla\": 61866,\n  \"mastodon\": 62710,\n  \"airbnb\": 63540,\n  \"wolf-pack-battalion\": 62740,\n  \"buy-n-large\": 63654,\n  \"gulp\": 62382,\n  \"creative-commons-sampling-plus\": 62705,\n  \"strava\": 62504,\n  \"ember\": 62499,\n  \"canadian-maple-leaf\": 63365,\n  \"teamspeak\": 62713,\n  \"pushed\": 62433,\n  \"wordpress-simple\": 62481,\n  \"nutritionix\": 62422,\n  \"wodu\": 57480,\n  \"google-pay\": 57465,\n  \"intercom\": 63407,\n  \"zhihu\": 63039,\n  \"korvue\": 62511,\n  \"pix\": 58426,\n  \"steam-symbol\": 62454\n}"
  },
  {
    "path": "packages/fontawesome6/glyphmaps/FontAwesome6_brand.json",
    "content": "{\"42-group\":57472,\"500px\":62062,\"accessible-icon\":62312,\"accusoft\":62313,\"adn\":61808,\"adversal\":62314,\"affiliatetheme\":62315,\"airbnb\":63540,\"algolia\":62316,\"alipay\":63042,\"amazon-pay\":62508,\"amazon\":62064,\"amilia\":62317,\"android\":61819,\"angellist\":61961,\"angrycreative\":62318,\"angular\":62496,\"app-store-ios\":62320,\"app-store\":62319,\"apper\":62321,\"apple-pay\":62485,\"apple\":61817,\"artstation\":63354,\"asymmetrik\":62322,\"atlassian\":63355,\"audible\":62323,\"autoprefixer\":62492,\"avianex\":62324,\"aviato\":62497,\"aws\":62325,\"bandcamp\":62165,\"battle-net\":63541,\"behance\":61876,\"bilibili\":58329,\"bimobject\":62328,\"bitbucket\":61809,\"bitcoin\":62329,\"bity\":62330,\"black-tie\":62078,\"blackberry\":62331,\"blogger-b\":62333,\"blogger\":62332,\"bluesky\":58993,\"bluetooth-b\":62100,\"bluetooth\":62099,\"bootstrap\":63542,\"bots\":58176,\"brave-reverse\":58941,\"brave\":58940,\"btc\":61786,\"buffer\":63543,\"buromobelexperte\":62335,\"buy-n-large\":63654,\"buysellads\":61965,\"canadian-maple-leaf\":63365,\"cc-amazon-pay\":62509,\"cc-amex\":61939,\"cc-apple-pay\":62486,\"cc-diners-club\":62028,\"cc-discover\":61938,\"cc-jcb\":62027,\"cc-mastercard\":61937,\"cc-paypal\":61940,\"cc-stripe\":61941,\"cc-visa\":61936,\"centercode\":62336,\"centos\":63369,\"chrome\":62056,\"chromecast\":63544,\"cloudflare\":57469,\"cloudscale\":62339,\"cloudsmith\":62340,\"cloudversify\":62341,\"cmplid\":58208,\"codepen\":61899,\"codiepie\":62084,\"confluence\":63373,\"connectdevelop\":61966,\"contao\":62061,\"cotton-bureau\":63646,\"cpanel\":62344,\"creative-commons-by\":62695,\"creative-commons-nc-eu\":62697,\"creative-commons-nc-jp\":62698,\"creative-commons-nc\":62696,\"creative-commons-nd\":62699,\"creative-commons-pd-alt\":62701,\"creative-commons-pd\":62700,\"creative-commons-remix\":62702,\"creative-commons-sa\":62703,\"creative-commons-sampling-plus\":62705,\"creative-commons-sampling\":62704,\"creative-commons-share\":62706,\"creative-commons-zero\":62707,\"creative-commons\":62046,\"critical-role\":63177,\"css\":59042,\"css3-alt\":62347,\"css3\":61756,\"cuttlefish\":62348,\"d-and-d-beyond\":63178,\"d-and-d\":62349,\"dailymotion\":57426,\"dart-lang\":59027,\"dashcube\":61968,\"debian\":58891,\"deezer\":57463,\"delicious\":61861,\"deploydog\":62350,\"deskpro\":62351,\"dev\":63180,\"deviantart\":61885,\"dhl\":63376,\"diaspora\":63377,\"digg\":61862,\"digital-ocean\":62353,\"discord\":62354,\"discourse\":62355,\"dochub\":62356,\"docker\":62357,\"draft2digital\":62358,\"dribbble\":61821,\"dropbox\":61803,\"drupal\":61865,\"dyalog\":62361,\"earlybirds\":62362,\"ebay\":62708,\"edge-legacy\":57464,\"edge\":62082,\"elementor\":62512,\"ello\":62961,\"ember\":62499,\"empire\":61905,\"envira\":62105,\"erlang\":62365,\"ethereum\":62510,\"etsy\":62167,\"evernote\":63545,\"expeditedssl\":62014,\"facebook-f\":62366,\"facebook-messenger\":62367,\"facebook\":61594,\"fantasy-flight-games\":63196,\"fedex\":63383,\"fedora\":63384,\"figma\":63385,\"files-pinwheel\":59039,\"firefox-browser\":57351,\"firefox\":62057,\"first-order-alt\":62730,\"first-order\":62128,\"firstdraft\":62369,\"flickr\":61806,\"flipboard\":62541,\"flutter\":59028,\"fly\":62487,\"font-awesome\":62132,\"fonticons-fi\":62370,\"fonticons\":62080,\"fort-awesome-alt\":62371,\"fort-awesome\":62086,\"forumbee\":61969,\"foursquare\":61824,\"free-code-camp\":62149,\"freebsd\":62372,\"fulcrum\":62731,\"galactic-republic\":62732,\"galactic-senate\":62733,\"get-pocket\":62053,\"gg-circle\":62049,\"gg\":62048,\"git-alt\":63553,\"git\":61907,\"github-alt\":61715,\"github\":61595,\"gitkraken\":62374,\"gitlab\":62102,\"gitter\":62502,\"glide-g\":62118,\"glide\":62117,\"gofore\":62375,\"golang\":58383,\"goodreads-g\":62377,\"goodreads\":62376,\"google-drive\":62378,\"google-pay\":57465,\"google-play\":62379,\"google-plus-g\":61653,\"google-plus\":62131,\"google-scholar\":58939,\"google-wallet\":61934,\"google\":61856,\"gratipay\":61828,\"grav\":62166,\"gripfire\":62380,\"grunt\":62381,\"guilded\":57470,\"gulp\":62382,\"hacker-news\":61908,\"hackerrank\":62967,\"hashnode\":58521,\"hips\":62546,\"hire-a-helper\":62384,\"hive\":57471,\"hooli\":62503,\"hornbill\":62866,\"hotjar\":62385,\"houzz\":62076,\"html5\":61755,\"hubspot\":62386,\"ideal\":57363,\"imdb\":62168,\"instagram\":61805,\"instalod\":57473,\"intercom\":63407,\"internet-explorer\":62059,\"invision\":63408,\"ioxhost\":61960,\"itch-io\":63546,\"itunes-note\":62389,\"itunes\":62388,\"java\":62692,\"jedi-order\":62734,\"jenkins\":62390,\"jira\":63409,\"joget\":62391,\"joomla\":61866,\"js\":62392,\"jsfiddle\":61900,\"jxl\":59003,\"kaggle\":62970,\"keybase\":62709,\"keycdn\":62394,\"kickstarter-k\":62396,\"kickstarter\":62395,\"korvue\":62511,\"laravel\":62397,\"lastfm\":61954,\"leanpub\":61970,\"less\":62493,\"letterboxd\":58925,\"line\":62400,\"linkedin-in\":61665,\"linkedin\":61580,\"linode\":62136,\"linux\":61820,\"lyft\":62403,\"magento\":62404,\"mailchimp\":62878,\"mandalorian\":62735,\"markdown\":62991,\"mastodon\":62710,\"maxcdn\":61750,\"mdb\":63690,\"medapps\":62406,\"medium\":62010,\"medrt\":62408,\"meetup\":62176,\"megaport\":62883,\"mendeley\":63411,\"meta\":58523,\"microblog\":57370,\"microsoft\":62410,\"mintbit\":58927,\"mix\":62411,\"mixcloud\":62089,\"mixer\":57430,\"mizuni\":62412,\"modx\":62085,\"monero\":62416,\"napster\":62418,\"neos\":62994,\"nfc-directional\":58672,\"nfc-symbol\":58673,\"nimblr\":62888,\"node-js\":62419,\"node\":62489,\"npm\":62420,\"ns8\":62421,\"nutritionix\":62422,\"octopus-deploy\":57474,\"odnoklassniki\":62051,\"odysee\":58822,\"old-republic\":62736,\"opencart\":62013,\"openid\":61851,\"opensuse\":58923,\"opera\":62058,\"optin-monster\":62012,\"orcid\":63698,\"osi\":62490,\"padlet\":58528,\"page4\":62423,\"pagelines\":61836,\"palfed\":62424,\"patreon\":62425,\"paypal\":61933,\"perbyte\":57475,\"periscope\":62426,\"phabricator\":62427,\"phoenix-framework\":62428,\"phoenix-squadron\":62737,\"php\":62551,\"pied-piper-alt\":61864,\"pied-piper-hat\":62693,\"pied-piper-pp\":61863,\"pied-piper\":62126,\"pinterest-p\":62001,\"pinterest\":61650,\"pix\":58426,\"pixiv\":58944,\"playstation\":62431,\"product-hunt\":62088,\"pushed\":62433,\"python\":62434,\"qq\":61910,\"quinscape\":62553,\"quora\":62148,\"r-project\":62711,\"raspberry-pi\":63419,\"ravelry\":62169,\"react\":62491,\"reacteurope\":63325,\"readme\":62677,\"rebel\":61904,\"red-river\":62435,\"reddit-alien\":62081,\"reddit\":61857,\"redhat\":63420,\"renren\":61835,\"replyd\":62438,\"researchgate\":62712,\"resolving\":62439,\"rev\":62898,\"rocketchat\":62440,\"rockrms\":62441,\"rust\":57466,\"safari\":62055,\"salesforce\":63547,\"sass\":62494,\"schlix\":62442,\"screenpal\":58736,\"scribd\":62090,\"searchengin\":62443,\"sellcast\":62170,\"sellsy\":61971,\"servicestack\":62444,\"shirtsinbulk\":61972,\"shoelace\":58892,\"shopify\":57431,\"shopware\":62901,\"signal-messenger\":58979,\"simplybuilt\":61973,\"sistrix\":62446,\"sith\":62738,\"sitrox\":58442,\"sketch\":63430,\"skyatlas\":61974,\"skype\":61822,\"slack\":61848,\"slideshare\":61927,\"snapchat\":62123,\"soundcloud\":61886,\"sourcetree\":63443,\"space-awesome\":58796,\"speakap\":62451,\"speaker-deck\":63548,\"spotify\":61884,\"square-behance\":61877,\"square-bluesky\":59043,\"square-dribbble\":62359,\"square-facebook\":61570,\"square-font-awesome-stroke\":62300,\"square-font-awesome\":58797,\"square-git\":61906,\"square-github\":61586,\"square-gitlab\":58798,\"square-google-plus\":61652,\"square-hacker-news\":62383,\"square-instagram\":57429,\"square-js\":62393,\"square-lastfm\":61955,\"square-letterboxd\":58926,\"square-odnoklassniki\":62052,\"square-pied-piper\":57374,\"square-pinterest\":61651,\"square-reddit\":61858,\"square-snapchat\":62125,\"square-steam\":61879,\"square-threads\":58905,\"square-tumblr\":61812,\"square-twitter\":61569,\"square-upwork\":59004,\"square-viadeo\":62122,\"square-vimeo\":61844,\"square-web-awesome-stroke\":59012,\"square-web-awesome\":59011,\"square-whatsapp\":62476,\"square-x-twitter\":58906,\"square-xing\":61801,\"square-youtube\":62513,\"squarespace\":62910,\"stack-exchange\":61837,\"stack-overflow\":61804,\"stackpath\":63554,\"staylinked\":62453,\"steam-symbol\":62454,\"steam\":61878,\"sticker-mule\":62455,\"strava\":62504,\"stripe-s\":62506,\"stripe\":62505,\"stubber\":58823,\"studiovinari\":62456,\"stumbleupon-circle\":61859,\"stumbleupon\":61860,\"superpowers\":62173,\"supple\":62457,\"suse\":63446,\"swift\":63713,\"symfony\":63549,\"teamspeak\":62713,\"telegram\":62150,\"tencent-weibo\":61909,\"the-red-yeti\":63133,\"themeco\":62918,\"themeisle\":62130,\"think-peaks\":63281,\"threads\":58904,\"tiktok\":57467,\"trade-federation\":62739,\"trello\":61825,\"tumblr\":61811,\"twitch\":61928,\"twitter\":61593,\"typo3\":62507,\"uber\":62466,\"ubuntu\":63455,\"uikit\":62467,\"umbraco\":63720,\"uncharted\":57476,\"uniregistry\":62468,\"unity\":57417,\"unsplash\":57468,\"untappd\":62469,\"ups\":63456,\"upwork\":58945,\"usb\":62087,\"usps\":63457,\"ussunnah\":62471,\"vaadin\":62472,\"viacoin\":62007,\"viadeo\":62121,\"viber\":62473,\"vimeo-v\":62077,\"vimeo\":62474,\"vine\":61898,\"vk\":61833,\"vnv\":62475,\"vuejs\":62495,\"watchman-monitoring\":57479,\"waze\":63551,\"web-awesome\":59010,\"webflow\":58972,\"weebly\":62924,\"weibo\":61834,\"weixin\":61911,\"whatsapp\":62002,\"whmcs\":62477,\"wikipedia-w\":62054,\"windows\":61818,\"wirsindhandwerk\":58064,\"wix\":62927,\"wizards-of-the-coast\":63280,\"wodu\":57480,\"wolf-pack-battalion\":62740,\"wordpress-simple\":62481,\"wordpress\":61850,\"wpbeginner\":62103,\"wpexplorer\":62174,\"wpforms\":62104,\"wpressr\":62436,\"x-twitter\":58907,\"xbox\":62482,\"xing\":61800,\"y-combinator\":62011,\"yahoo\":61854,\"yammer\":63552,\"yandex-international\":62484,\"yandex\":62483,\"yarn\":63459,\"yelp\":61929,\"yoast\":62129,\"youtube\":61799,\"zhihu\":63039}"
  },
  {
    "path": "packages/fontawesome6/glyphmaps/FontAwesome6_meta.json",
    "content": "{\n  \"brand\": [\n    \"42-group\",\n    \"500px\",\n    \"accessible-icon\",\n    \"accusoft\",\n    \"adn\",\n    \"adversal\",\n    \"affiliatetheme\",\n    \"airbnb\",\n    \"algolia\",\n    \"alipay\",\n    \"amazon-pay\",\n    \"amazon\",\n    \"amilia\",\n    \"android\",\n    \"angellist\",\n    \"angrycreative\",\n    \"angular\",\n    \"app-store-ios\",\n    \"app-store\",\n    \"apper\",\n    \"apple-pay\",\n    \"apple\",\n    \"artstation\",\n    \"asymmetrik\",\n    \"atlassian\",\n    \"audible\",\n    \"autoprefixer\",\n    \"avianex\",\n    \"aviato\",\n    \"aws\",\n    \"bandcamp\",\n    \"battle-net\",\n    \"behance\",\n    \"bilibili\",\n    \"bimobject\",\n    \"bitbucket\",\n    \"bitcoin\",\n    \"bity\",\n    \"black-tie\",\n    \"blackberry\",\n    \"blogger-b\",\n    \"blogger\",\n    \"bluesky\",\n    \"bluetooth-b\",\n    \"bluetooth\",\n    \"bootstrap\",\n    \"bots\",\n    \"brave-reverse\",\n    \"brave\",\n    \"btc\",\n    \"buffer\",\n    \"buromobelexperte\",\n    \"buy-n-large\",\n    \"buysellads\",\n    \"canadian-maple-leaf\",\n    \"cc-amazon-pay\",\n    \"cc-amex\",\n    \"cc-apple-pay\",\n    \"cc-diners-club\",\n    \"cc-discover\",\n    \"cc-jcb\",\n    \"cc-mastercard\",\n    \"cc-paypal\",\n    \"cc-stripe\",\n    \"cc-visa\",\n    \"centercode\",\n    \"centos\",\n    \"chrome\",\n    \"chromecast\",\n    \"cloudflare\",\n    \"cloudscale\",\n    \"cloudsmith\",\n    \"cloudversify\",\n    \"cmplid\",\n    \"codepen\",\n    \"codiepie\",\n    \"confluence\",\n    \"connectdevelop\",\n    \"contao\",\n    \"cotton-bureau\",\n    \"cpanel\",\n    \"creative-commons-by\",\n    \"creative-commons-nc-eu\",\n    \"creative-commons-nc-jp\",\n    \"creative-commons-nc\",\n    \"creative-commons-nd\",\n    \"creative-commons-pd-alt\",\n    \"creative-commons-pd\",\n    \"creative-commons-remix\",\n    \"creative-commons-sa\",\n    \"creative-commons-sampling-plus\",\n    \"creative-commons-sampling\",\n    \"creative-commons-share\",\n    \"creative-commons-zero\",\n    \"creative-commons\",\n    \"critical-role\",\n    \"css\",\n    \"css3-alt\",\n    \"css3\",\n    \"cuttlefish\",\n    \"d-and-d-beyond\",\n    \"d-and-d\",\n    \"dailymotion\",\n    \"dart-lang\",\n    \"dashcube\",\n    \"debian\",\n    \"deezer\",\n    \"delicious\",\n    \"deploydog\",\n    \"deskpro\",\n    \"dev\",\n    \"deviantart\",\n    \"dhl\",\n    \"diaspora\",\n    \"digg\",\n    \"digital-ocean\",\n    \"discord\",\n    \"discourse\",\n    \"dochub\",\n    \"docker\",\n    \"draft2digital\",\n    \"dribbble\",\n    \"dropbox\",\n    \"drupal\",\n    \"dyalog\",\n    \"earlybirds\",\n    \"ebay\",\n    \"edge-legacy\",\n    \"edge\",\n    \"elementor\",\n    \"ello\",\n    \"ember\",\n    \"empire\",\n    \"envira\",\n    \"erlang\",\n    \"ethereum\",\n    \"etsy\",\n    \"evernote\",\n    \"expeditedssl\",\n    \"facebook-f\",\n    \"facebook-messenger\",\n    \"facebook\",\n    \"fantasy-flight-games\",\n    \"fedex\",\n    \"fedora\",\n    \"figma\",\n    \"files-pinwheel\",\n    \"firefox-browser\",\n    \"firefox\",\n    \"first-order-alt\",\n    \"first-order\",\n    \"firstdraft\",\n    \"flickr\",\n    \"flipboard\",\n    \"flutter\",\n    \"fly\",\n    \"font-awesome\",\n    \"fonticons-fi\",\n    \"fonticons\",\n    \"fort-awesome-alt\",\n    \"fort-awesome\",\n    \"forumbee\",\n    \"foursquare\",\n    \"free-code-camp\",\n    \"freebsd\",\n    \"fulcrum\",\n    \"galactic-republic\",\n    \"galactic-senate\",\n    \"get-pocket\",\n    \"gg-circle\",\n    \"gg\",\n    \"git-alt\",\n    \"git\",\n    \"github-alt\",\n    \"github\",\n    \"gitkraken\",\n    \"gitlab\",\n    \"gitter\",\n    \"glide-g\",\n    \"glide\",\n    \"gofore\",\n    \"golang\",\n    \"goodreads-g\",\n    \"goodreads\",\n    \"google-drive\",\n    \"google-pay\",\n    \"google-play\",\n    \"google-plus-g\",\n    \"google-plus\",\n    \"google-scholar\",\n    \"google-wallet\",\n    \"google\",\n    \"gratipay\",\n    \"grav\",\n    \"gripfire\",\n    \"grunt\",\n    \"guilded\",\n    \"gulp\",\n    \"hacker-news\",\n    \"hackerrank\",\n    \"hashnode\",\n    \"hips\",\n    \"hire-a-helper\",\n    \"hive\",\n    \"hooli\",\n    \"hornbill\",\n    \"hotjar\",\n    \"houzz\",\n    \"html5\",\n    \"hubspot\",\n    \"ideal\",\n    \"imdb\",\n    \"instagram\",\n    \"instalod\",\n    \"intercom\",\n    \"internet-explorer\",\n    \"invision\",\n    \"ioxhost\",\n    \"itch-io\",\n    \"itunes-note\",\n    \"itunes\",\n    \"java\",\n    \"jedi-order\",\n    \"jenkins\",\n    \"jira\",\n    \"joget\",\n    \"joomla\",\n    \"js\",\n    \"jsfiddle\",\n    \"jxl\",\n    \"kaggle\",\n    \"keybase\",\n    \"keycdn\",\n    \"kickstarter-k\",\n    \"kickstarter\",\n    \"korvue\",\n    \"laravel\",\n    \"lastfm\",\n    \"leanpub\",\n    \"less\",\n    \"letterboxd\",\n    \"line\",\n    \"linkedin-in\",\n    \"linkedin\",\n    \"linode\",\n    \"linux\",\n    \"lyft\",\n    \"magento\",\n    \"mailchimp\",\n    \"mandalorian\",\n    \"markdown\",\n    \"mastodon\",\n    \"maxcdn\",\n    \"mdb\",\n    \"medapps\",\n    \"medium\",\n    \"medrt\",\n    \"meetup\",\n    \"megaport\",\n    \"mendeley\",\n    \"meta\",\n    \"microblog\",\n    \"microsoft\",\n    \"mintbit\",\n    \"mix\",\n    \"mixcloud\",\n    \"mixer\",\n    \"mizuni\",\n    \"modx\",\n    \"monero\",\n    \"napster\",\n    \"neos\",\n    \"nfc-directional\",\n    \"nfc-symbol\",\n    \"nimblr\",\n    \"node-js\",\n    \"node\",\n    \"npm\",\n    \"ns8\",\n    \"nutritionix\",\n    \"octopus-deploy\",\n    \"odnoklassniki\",\n    \"odysee\",\n    \"old-republic\",\n    \"opencart\",\n    \"openid\",\n    \"opensuse\",\n    \"opera\",\n    \"optin-monster\",\n    \"orcid\",\n    \"osi\",\n    \"padlet\",\n    \"page4\",\n    \"pagelines\",\n    \"palfed\",\n    \"patreon\",\n    \"paypal\",\n    \"perbyte\",\n    \"periscope\",\n    \"phabricator\",\n    \"phoenix-framework\",\n    \"phoenix-squadron\",\n    \"php\",\n    \"pied-piper-alt\",\n    \"pied-piper-hat\",\n    \"pied-piper-pp\",\n    \"pied-piper\",\n    \"pinterest-p\",\n    \"pinterest\",\n    \"pix\",\n    \"pixiv\",\n    \"playstation\",\n    \"product-hunt\",\n    \"pushed\",\n    \"python\",\n    \"qq\",\n    \"quinscape\",\n    \"quora\",\n    \"r-project\",\n    \"raspberry-pi\",\n    \"ravelry\",\n    \"react\",\n    \"reacteurope\",\n    \"readme\",\n    \"rebel\",\n    \"red-river\",\n    \"reddit-alien\",\n    \"reddit\",\n    \"redhat\",\n    \"renren\",\n    \"replyd\",\n    \"researchgate\",\n    \"resolving\",\n    \"rev\",\n    \"rocketchat\",\n    \"rockrms\",\n    \"rust\",\n    \"safari\",\n    \"salesforce\",\n    \"sass\",\n    \"schlix\",\n    \"screenpal\",\n    \"scribd\",\n    \"searchengin\",\n    \"sellcast\",\n    \"sellsy\",\n    \"servicestack\",\n    \"shirtsinbulk\",\n    \"shoelace\",\n    \"shopify\",\n    \"shopware\",\n    \"signal-messenger\",\n    \"simplybuilt\",\n    \"sistrix\",\n    \"sith\",\n    \"sitrox\",\n    \"sketch\",\n    \"skyatlas\",\n    \"skype\",\n    \"slack\",\n    \"slideshare\",\n    \"snapchat\",\n    \"soundcloud\",\n    \"sourcetree\",\n    \"space-awesome\",\n    \"speakap\",\n    \"speaker-deck\",\n    \"spotify\",\n    \"square-behance\",\n    \"square-bluesky\",\n    \"square-dribbble\",\n    \"square-facebook\",\n    \"square-font-awesome-stroke\",\n    \"square-font-awesome\",\n    \"square-git\",\n    \"square-github\",\n    \"square-gitlab\",\n    \"square-google-plus\",\n    \"square-hacker-news\",\n    \"square-instagram\",\n    \"square-js\",\n    \"square-lastfm\",\n    \"square-letterboxd\",\n    \"square-odnoklassniki\",\n    \"square-pied-piper\",\n    \"square-pinterest\",\n    \"square-reddit\",\n    \"square-snapchat\",\n    \"square-steam\",\n    \"square-threads\",\n    \"square-tumblr\",\n    \"square-twitter\",\n    \"square-upwork\",\n    \"square-viadeo\",\n    \"square-vimeo\",\n    \"square-web-awesome-stroke\",\n    \"square-web-awesome\",\n    \"square-whatsapp\",\n    \"square-x-twitter\",\n    \"square-xing\",\n    \"square-youtube\",\n    \"squarespace\",\n    \"stack-exchange\",\n    \"stack-overflow\",\n    \"stackpath\",\n    \"staylinked\",\n    \"steam-symbol\",\n    \"steam\",\n    \"sticker-mule\",\n    \"strava\",\n    \"stripe-s\",\n    \"stripe\",\n    \"stubber\",\n    \"studiovinari\",\n    \"stumbleupon-circle\",\n    \"stumbleupon\",\n    \"superpowers\",\n    \"supple\",\n    \"suse\",\n    \"swift\",\n    \"symfony\",\n    \"teamspeak\",\n    \"telegram\",\n    \"tencent-weibo\",\n    \"the-red-yeti\",\n    \"themeco\",\n    \"themeisle\",\n    \"think-peaks\",\n    \"threads\",\n    \"tiktok\",\n    \"trade-federation\",\n    \"trello\",\n    \"tumblr\",\n    \"twitch\",\n    \"twitter\",\n    \"typo3\",\n    \"uber\",\n    \"ubuntu\",\n    \"uikit\",\n    \"umbraco\",\n    \"uncharted\",\n    \"uniregistry\",\n    \"unity\",\n    \"unsplash\",\n    \"untappd\",\n    \"ups\",\n    \"upwork\",\n    \"usb\",\n    \"usps\",\n    \"ussunnah\",\n    \"vaadin\",\n    \"viacoin\",\n    \"viadeo\",\n    \"viber\",\n    \"vimeo-v\",\n    \"vimeo\",\n    \"vine\",\n    \"vk\",\n    \"vnv\",\n    \"vuejs\",\n    \"watchman-monitoring\",\n    \"waze\",\n    \"web-awesome\",\n    \"webflow\",\n    \"weebly\",\n    \"weibo\",\n    \"weixin\",\n    \"whatsapp\",\n    \"whmcs\",\n    \"wikipedia-w\",\n    \"windows\",\n    \"wirsindhandwerk\",\n    \"wix\",\n    \"wizards-of-the-coast\",\n    \"wodu\",\n    \"wolf-pack-battalion\",\n    \"wordpress-simple\",\n    \"wordpress\",\n    \"wpbeginner\",\n    \"wpexplorer\",\n    \"wpforms\",\n    \"wpressr\",\n    \"x-twitter\",\n    \"xbox\",\n    \"xing\",\n    \"y-combinator\",\n    \"yahoo\",\n    \"yammer\",\n    \"yandex-international\",\n    \"yandex\",\n    \"yarn\",\n    \"yelp\",\n    \"yoast\",\n    \"youtube\",\n    \"zhihu\"\n  ],\n  \"regular\": [\n    \"address-book\",\n    \"address-card\",\n    \"bell-slash\",\n    \"bell\",\n    \"bookmark\",\n    \"building\",\n    \"calendar-check\",\n    \"calendar-days\",\n    \"calendar-minus\",\n    \"calendar-plus\",\n    \"calendar-xmark\",\n    \"calendar\",\n    \"chart-bar\",\n    \"chess-bishop\",\n    \"chess-king\",\n    \"chess-knight\",\n    \"chess-pawn\",\n    \"chess-queen\",\n    \"chess-rook\",\n    \"circle-check\",\n    \"circle-dot\",\n    \"circle-down\",\n    \"circle-left\",\n    \"circle-pause\",\n    \"circle-play\",\n    \"circle-question\",\n    \"circle-right\",\n    \"circle-stop\",\n    \"circle-up\",\n    \"circle-user\",\n    \"circle-xmark\",\n    \"circle\",\n    \"clipboard\",\n    \"clock\",\n    \"clone\",\n    \"closed-captioning\",\n    \"comment-dots\",\n    \"comment\",\n    \"comments\",\n    \"compass\",\n    \"copy\",\n    \"copyright\",\n    \"credit-card\",\n    \"envelope-open\",\n    \"envelope\",\n    \"eye-slash\",\n    \"eye\",\n    \"face-angry\",\n    \"face-dizzy\",\n    \"face-flushed\",\n    \"face-frown-open\",\n    \"face-frown\",\n    \"face-grimace\",\n    \"face-grin-beam-sweat\",\n    \"face-grin-beam\",\n    \"face-grin-hearts\",\n    \"face-grin-squint-tears\",\n    \"face-grin-squint\",\n    \"face-grin-stars\",\n    \"face-grin-tears\",\n    \"face-grin-tongue-squint\",\n    \"face-grin-tongue-wink\",\n    \"face-grin-tongue\",\n    \"face-grin-wide\",\n    \"face-grin-wink\",\n    \"face-grin\",\n    \"face-kiss-beam\",\n    \"face-kiss-wink-heart\",\n    \"face-kiss\",\n    \"face-laugh-beam\",\n    \"face-laugh-squint\",\n    \"face-laugh-wink\",\n    \"face-laugh\",\n    \"face-meh-blank\",\n    \"face-meh\",\n    \"face-rolling-eyes\",\n    \"face-sad-cry\",\n    \"face-sad-tear\",\n    \"face-smile-beam\",\n    \"face-smile-wink\",\n    \"face-smile\",\n    \"face-surprise\",\n    \"face-tired\",\n    \"file-audio\",\n    \"file-code\",\n    \"file-excel\",\n    \"file-image\",\n    \"file-lines\",\n    \"file-pdf\",\n    \"file-powerpoint\",\n    \"file-video\",\n    \"file-word\",\n    \"file-zipper\",\n    \"file\",\n    \"flag\",\n    \"floppy-disk\",\n    \"folder-closed\",\n    \"folder-open\",\n    \"folder\",\n    \"font-awesome\",\n    \"futbol\",\n    \"gem\",\n    \"hand-back-fist\",\n    \"hand-lizard\",\n    \"hand-peace\",\n    \"hand-point-down\",\n    \"hand-point-left\",\n    \"hand-point-right\",\n    \"hand-point-up\",\n    \"hand-pointer\",\n    \"hand-scissors\",\n    \"hand-spock\",\n    \"hand\",\n    \"handshake\",\n    \"hard-drive\",\n    \"heart\",\n    \"hospital\",\n    \"hourglass-half\",\n    \"hourglass\",\n    \"id-badge\",\n    \"id-card\",\n    \"image\",\n    \"images\",\n    \"keyboard\",\n    \"lemon\",\n    \"life-ring\",\n    \"lightbulb\",\n    \"map\",\n    \"message\",\n    \"money-bill-1\",\n    \"moon\",\n    \"newspaper\",\n    \"note-sticky\",\n    \"object-group\",\n    \"object-ungroup\",\n    \"paper-plane\",\n    \"paste\",\n    \"pen-to-square\",\n    \"rectangle-list\",\n    \"rectangle-xmark\",\n    \"registered\",\n    \"share-from-square\",\n    \"snowflake\",\n    \"square-caret-down\",\n    \"square-caret-left\",\n    \"square-caret-right\",\n    \"square-caret-up\",\n    \"square-check\",\n    \"square-full\",\n    \"square-minus\",\n    \"square-plus\",\n    \"square\",\n    \"star-half-stroke\",\n    \"star-half\",\n    \"star\",\n    \"sun\",\n    \"thumbs-down\",\n    \"thumbs-up\",\n    \"trash-can\",\n    \"user\",\n    \"window-maximize\",\n    \"window-minimize\",\n    \"window-restore\"\n  ],\n  \"solid\": [\n    \"0\",\n    \"1\",\n    \"2\",\n    \"3\",\n    \"4\",\n    \"5\",\n    \"6\",\n    \"7\",\n    \"8\",\n    \"9\",\n    \"a\",\n    \"address-book\",\n    \"address-card\",\n    \"align-center\",\n    \"align-justify\",\n    \"align-left\",\n    \"align-right\",\n    \"anchor-circle-check\",\n    \"anchor-circle-exclamation\",\n    \"anchor-circle-xmark\",\n    \"anchor-lock\",\n    \"anchor\",\n    \"angle-down\",\n    \"angle-left\",\n    \"angle-right\",\n    \"angle-up\",\n    \"angles-down\",\n    \"angles-left\",\n    \"angles-right\",\n    \"angles-up\",\n    \"ankh\",\n    \"apple-whole\",\n    \"archway\",\n    \"arrow-down-1-9\",\n    \"arrow-down-9-1\",\n    \"arrow-down-a-z\",\n    \"arrow-down-long\",\n    \"arrow-down-short-wide\",\n    \"arrow-down-up-across-line\",\n    \"arrow-down-up-lock\",\n    \"arrow-down-wide-short\",\n    \"arrow-down-z-a\",\n    \"arrow-down\",\n    \"arrow-left-long\",\n    \"arrow-left\",\n    \"arrow-pointer\",\n    \"arrow-right-arrow-left\",\n    \"arrow-right-from-bracket\",\n    \"arrow-right-long\",\n    \"arrow-right-to-bracket\",\n    \"arrow-right-to-city\",\n    \"arrow-right\",\n    \"arrow-rotate-left\",\n    \"arrow-rotate-right\",\n    \"arrow-trend-down\",\n    \"arrow-trend-up\",\n    \"arrow-turn-down\",\n    \"arrow-turn-up\",\n    \"arrow-up-1-9\",\n    \"arrow-up-9-1\",\n    \"arrow-up-a-z\",\n    \"arrow-up-from-bracket\",\n    \"arrow-up-from-ground-water\",\n    \"arrow-up-from-water-pump\",\n    \"arrow-up-long\",\n    \"arrow-up-right-dots\",\n    \"arrow-up-right-from-square\",\n    \"arrow-up-short-wide\",\n    \"arrow-up-wide-short\",\n    \"arrow-up-z-a\",\n    \"arrow-up\",\n    \"arrows-down-to-line\",\n    \"arrows-down-to-people\",\n    \"arrows-left-right-to-line\",\n    \"arrows-left-right\",\n    \"arrows-rotate\",\n    \"arrows-spin\",\n    \"arrows-split-up-and-left\",\n    \"arrows-to-circle\",\n    \"arrows-to-dot\",\n    \"arrows-to-eye\",\n    \"arrows-turn-right\",\n    \"arrows-turn-to-dots\",\n    \"arrows-up-down-left-right\",\n    \"arrows-up-down\",\n    \"arrows-up-to-line\",\n    \"asterisk\",\n    \"at\",\n    \"atom\",\n    \"audio-description\",\n    \"austral-sign\",\n    \"award\",\n    \"b\",\n    \"baby-carriage\",\n    \"baby\",\n    \"backward-fast\",\n    \"backward-step\",\n    \"backward\",\n    \"bacon\",\n    \"bacteria\",\n    \"bacterium\",\n    \"bag-shopping\",\n    \"bahai\",\n    \"baht-sign\",\n    \"ban-smoking\",\n    \"ban\",\n    \"bandage\",\n    \"bangladeshi-taka-sign\",\n    \"barcode\",\n    \"bars-progress\",\n    \"bars-staggered\",\n    \"bars\",\n    \"baseball-bat-ball\",\n    \"baseball\",\n    \"basket-shopping\",\n    \"basketball\",\n    \"bath\",\n    \"battery-empty\",\n    \"battery-full\",\n    \"battery-half\",\n    \"battery-quarter\",\n    \"battery-three-quarters\",\n    \"bed-pulse\",\n    \"bed\",\n    \"beer-mug-empty\",\n    \"bell-concierge\",\n    \"bell-slash\",\n    \"bell\",\n    \"bezier-curve\",\n    \"bicycle\",\n    \"binoculars\",\n    \"biohazard\",\n    \"bitcoin-sign\",\n    \"blender-phone\",\n    \"blender\",\n    \"blog\",\n    \"bold\",\n    \"bolt-lightning\",\n    \"bolt\",\n    \"bomb\",\n    \"bone\",\n    \"bong\",\n    \"book-atlas\",\n    \"book-bible\",\n    \"book-bookmark\",\n    \"book-journal-whills\",\n    \"book-medical\",\n    \"book-open-reader\",\n    \"book-open\",\n    \"book-quran\",\n    \"book-skull\",\n    \"book-tanakh\",\n    \"book\",\n    \"bookmark\",\n    \"border-all\",\n    \"border-none\",\n    \"border-top-left\",\n    \"bore-hole\",\n    \"bottle-droplet\",\n    \"bottle-water\",\n    \"bowl-food\",\n    \"bowl-rice\",\n    \"bowling-ball\",\n    \"box-archive\",\n    \"box-open\",\n    \"box-tissue\",\n    \"box\",\n    \"boxes-packing\",\n    \"boxes-stacked\",\n    \"braille\",\n    \"brain\",\n    \"brazilian-real-sign\",\n    \"bread-slice\",\n    \"bridge-circle-check\",\n    \"bridge-circle-exclamation\",\n    \"bridge-circle-xmark\",\n    \"bridge-lock\",\n    \"bridge-water\",\n    \"bridge\",\n    \"briefcase-medical\",\n    \"briefcase\",\n    \"broom-ball\",\n    \"broom\",\n    \"brush\",\n    \"bucket\",\n    \"bug-slash\",\n    \"bug\",\n    \"bugs\",\n    \"building-circle-arrow-right\",\n    \"building-circle-check\",\n    \"building-circle-exclamation\",\n    \"building-circle-xmark\",\n    \"building-columns\",\n    \"building-flag\",\n    \"building-lock\",\n    \"building-ngo\",\n    \"building-shield\",\n    \"building-un\",\n    \"building-user\",\n    \"building-wheat\",\n    \"building\",\n    \"bullhorn\",\n    \"bullseye\",\n    \"burger\",\n    \"burst\",\n    \"bus-simple\",\n    \"bus\",\n    \"business-time\",\n    \"c\",\n    \"cable-car\",\n    \"cake-candles\",\n    \"calculator\",\n    \"calendar-check\",\n    \"calendar-day\",\n    \"calendar-days\",\n    \"calendar-minus\",\n    \"calendar-plus\",\n    \"calendar-week\",\n    \"calendar-xmark\",\n    \"calendar\",\n    \"camera-retro\",\n    \"camera-rotate\",\n    \"camera\",\n    \"campground\",\n    \"candy-cane\",\n    \"cannabis\",\n    \"capsules\",\n    \"car-battery\",\n    \"car-burst\",\n    \"car-on\",\n    \"car-rear\",\n    \"car-side\",\n    \"car-tunnel\",\n    \"car\",\n    \"caravan\",\n    \"caret-down\",\n    \"caret-left\",\n    \"caret-right\",\n    \"caret-up\",\n    \"carrot\",\n    \"cart-arrow-down\",\n    \"cart-flatbed-suitcase\",\n    \"cart-flatbed\",\n    \"cart-plus\",\n    \"cart-shopping\",\n    \"cash-register\",\n    \"cat\",\n    \"cedi-sign\",\n    \"cent-sign\",\n    \"certificate\",\n    \"chair\",\n    \"chalkboard-user\",\n    \"chalkboard\",\n    \"champagne-glasses\",\n    \"charging-station\",\n    \"chart-area\",\n    \"chart-bar\",\n    \"chart-column\",\n    \"chart-diagram\",\n    \"chart-gantt\",\n    \"chart-line\",\n    \"chart-pie\",\n    \"chart-simple\",\n    \"check-double\",\n    \"check-to-slot\",\n    \"check\",\n    \"cheese\",\n    \"chess-bishop\",\n    \"chess-board\",\n    \"chess-king\",\n    \"chess-knight\",\n    \"chess-pawn\",\n    \"chess-queen\",\n    \"chess-rook\",\n    \"chess\",\n    \"chevron-down\",\n    \"chevron-left\",\n    \"chevron-right\",\n    \"chevron-up\",\n    \"child-combatant\",\n    \"child-dress\",\n    \"child-reaching\",\n    \"child\",\n    \"children\",\n    \"church\",\n    \"circle-arrow-down\",\n    \"circle-arrow-left\",\n    \"circle-arrow-right\",\n    \"circle-arrow-up\",\n    \"circle-check\",\n    \"circle-chevron-down\",\n    \"circle-chevron-left\",\n    \"circle-chevron-right\",\n    \"circle-chevron-up\",\n    \"circle-dollar-to-slot\",\n    \"circle-dot\",\n    \"circle-down\",\n    \"circle-exclamation\",\n    \"circle-h\",\n    \"circle-half-stroke\",\n    \"circle-info\",\n    \"circle-left\",\n    \"circle-minus\",\n    \"circle-nodes\",\n    \"circle-notch\",\n    \"circle-pause\",\n    \"circle-play\",\n    \"circle-plus\",\n    \"circle-question\",\n    \"circle-radiation\",\n    \"circle-right\",\n    \"circle-stop\",\n    \"circle-up\",\n    \"circle-user\",\n    \"circle-xmark\",\n    \"circle\",\n    \"city\",\n    \"clapperboard\",\n    \"clipboard-check\",\n    \"clipboard-list\",\n    \"clipboard-question\",\n    \"clipboard-user\",\n    \"clipboard\",\n    \"clock-rotate-left\",\n    \"clock\",\n    \"clone\",\n    \"closed-captioning\",\n    \"cloud-arrow-down\",\n    \"cloud-arrow-up\",\n    \"cloud-bolt\",\n    \"cloud-meatball\",\n    \"cloud-moon-rain\",\n    \"cloud-moon\",\n    \"cloud-rain\",\n    \"cloud-showers-heavy\",\n    \"cloud-showers-water\",\n    \"cloud-sun-rain\",\n    \"cloud-sun\",\n    \"cloud\",\n    \"clover\",\n    \"code-branch\",\n    \"code-commit\",\n    \"code-compare\",\n    \"code-fork\",\n    \"code-merge\",\n    \"code-pull-request\",\n    \"code\",\n    \"coins\",\n    \"colon-sign\",\n    \"comment-dollar\",\n    \"comment-dots\",\n    \"comment-medical\",\n    \"comment-nodes\",\n    \"comment-slash\",\n    \"comment-sms\",\n    \"comment\",\n    \"comments-dollar\",\n    \"comments\",\n    \"compact-disc\",\n    \"compass-drafting\",\n    \"compass\",\n    \"compress\",\n    \"computer-mouse\",\n    \"computer\",\n    \"cookie-bite\",\n    \"cookie\",\n    \"copy\",\n    \"copyright\",\n    \"couch\",\n    \"cow\",\n    \"credit-card\",\n    \"crop-simple\",\n    \"crop\",\n    \"cross\",\n    \"crosshairs\",\n    \"crow\",\n    \"crown\",\n    \"crutch\",\n    \"cruzeiro-sign\",\n    \"cube\",\n    \"cubes-stacked\",\n    \"cubes\",\n    \"d\",\n    \"database\",\n    \"delete-left\",\n    \"democrat\",\n    \"desktop\",\n    \"dharmachakra\",\n    \"diagram-next\",\n    \"diagram-predecessor\",\n    \"diagram-project\",\n    \"diagram-successor\",\n    \"diamond-turn-right\",\n    \"diamond\",\n    \"dice-d20\",\n    \"dice-d6\",\n    \"dice-five\",\n    \"dice-four\",\n    \"dice-one\",\n    \"dice-six\",\n    \"dice-three\",\n    \"dice-two\",\n    \"dice\",\n    \"disease\",\n    \"display\",\n    \"divide\",\n    \"dna\",\n    \"dog\",\n    \"dollar-sign\",\n    \"dolly\",\n    \"dong-sign\",\n    \"door-closed\",\n    \"door-open\",\n    \"dove\",\n    \"down-left-and-up-right-to-center\",\n    \"down-long\",\n    \"download\",\n    \"dragon\",\n    \"draw-polygon\",\n    \"droplet-slash\",\n    \"droplet\",\n    \"drum-steelpan\",\n    \"drum\",\n    \"drumstick-bite\",\n    \"dumbbell\",\n    \"dumpster-fire\",\n    \"dumpster\",\n    \"dungeon\",\n    \"e\",\n    \"ear-deaf\",\n    \"ear-listen\",\n    \"earth-africa\",\n    \"earth-americas\",\n    \"earth-asia\",\n    \"earth-europe\",\n    \"earth-oceania\",\n    \"egg\",\n    \"eject\",\n    \"elevator\",\n    \"ellipsis-vertical\",\n    \"ellipsis\",\n    \"envelope-circle-check\",\n    \"envelope-open-text\",\n    \"envelope-open\",\n    \"envelope\",\n    \"envelopes-bulk\",\n    \"equals\",\n    \"eraser\",\n    \"ethernet\",\n    \"euro-sign\",\n    \"exclamation\",\n    \"expand\",\n    \"explosion\",\n    \"eye-dropper\",\n    \"eye-low-vision\",\n    \"eye-slash\",\n    \"eye\",\n    \"f\",\n    \"face-angry\",\n    \"face-dizzy\",\n    \"face-flushed\",\n    \"face-frown-open\",\n    \"face-frown\",\n    \"face-grimace\",\n    \"face-grin-beam-sweat\",\n    \"face-grin-beam\",\n    \"face-grin-hearts\",\n    \"face-grin-squint-tears\",\n    \"face-grin-squint\",\n    \"face-grin-stars\",\n    \"face-grin-tears\",\n    \"face-grin-tongue-squint\",\n    \"face-grin-tongue-wink\",\n    \"face-grin-tongue\",\n    \"face-grin-wide\",\n    \"face-grin-wink\",\n    \"face-grin\",\n    \"face-kiss-beam\",\n    \"face-kiss-wink-heart\",\n    \"face-kiss\",\n    \"face-laugh-beam\",\n    \"face-laugh-squint\",\n    \"face-laugh-wink\",\n    \"face-laugh\",\n    \"face-meh-blank\",\n    \"face-meh\",\n    \"face-rolling-eyes\",\n    \"face-sad-cry\",\n    \"face-sad-tear\",\n    \"face-smile-beam\",\n    \"face-smile-wink\",\n    \"face-smile\",\n    \"face-surprise\",\n    \"face-tired\",\n    \"fan\",\n    \"faucet-drip\",\n    \"faucet\",\n    \"fax\",\n    \"feather-pointed\",\n    \"feather\",\n    \"ferry\",\n    \"file-arrow-down\",\n    \"file-arrow-up\",\n    \"file-audio\",\n    \"file-circle-check\",\n    \"file-circle-exclamation\",\n    \"file-circle-minus\",\n    \"file-circle-plus\",\n    \"file-circle-question\",\n    \"file-circle-xmark\",\n    \"file-code\",\n    \"file-contract\",\n    \"file-csv\",\n    \"file-excel\",\n    \"file-export\",\n    \"file-fragment\",\n    \"file-half-dashed\",\n    \"file-image\",\n    \"file-import\",\n    \"file-invoice-dollar\",\n    \"file-invoice\",\n    \"file-lines\",\n    \"file-medical\",\n    \"file-pdf\",\n    \"file-pen\",\n    \"file-powerpoint\",\n    \"file-prescription\",\n    \"file-shield\",\n    \"file-signature\",\n    \"file-video\",\n    \"file-waveform\",\n    \"file-word\",\n    \"file-zipper\",\n    \"file\",\n    \"fill-drip\",\n    \"fill\",\n    \"film\",\n    \"filter-circle-dollar\",\n    \"filter-circle-xmark\",\n    \"filter\",\n    \"fingerprint\",\n    \"fire-burner\",\n    \"fire-extinguisher\",\n    \"fire-flame-curved\",\n    \"fire-flame-simple\",\n    \"fire\",\n    \"fish-fins\",\n    \"fish\",\n    \"flag-checkered\",\n    \"flag-usa\",\n    \"flag\",\n    \"flask-vial\",\n    \"flask\",\n    \"floppy-disk\",\n    \"florin-sign\",\n    \"folder-closed\",\n    \"folder-minus\",\n    \"folder-open\",\n    \"folder-plus\",\n    \"folder-tree\",\n    \"folder\",\n    \"font-awesome\",\n    \"font\",\n    \"football\",\n    \"forward-fast\",\n    \"forward-step\",\n    \"forward\",\n    \"franc-sign\",\n    \"frog\",\n    \"futbol\",\n    \"g\",\n    \"gamepad\",\n    \"gas-pump\",\n    \"gauge-high\",\n    \"gauge-simple-high\",\n    \"gauge-simple\",\n    \"gauge\",\n    \"gavel\",\n    \"gear\",\n    \"gears\",\n    \"gem\",\n    \"genderless\",\n    \"ghost\",\n    \"gift\",\n    \"gifts\",\n    \"glass-water-droplet\",\n    \"glass-water\",\n    \"glasses\",\n    \"globe\",\n    \"golf-ball-tee\",\n    \"gopuram\",\n    \"graduation-cap\",\n    \"greater-than-equal\",\n    \"greater-than\",\n    \"grip-lines-vertical\",\n    \"grip-lines\",\n    \"grip-vertical\",\n    \"grip\",\n    \"group-arrows-rotate\",\n    \"guarani-sign\",\n    \"guitar\",\n    \"gun\",\n    \"h\",\n    \"hammer\",\n    \"hamsa\",\n    \"hand-back-fist\",\n    \"hand-dots\",\n    \"hand-fist\",\n    \"hand-holding-dollar\",\n    \"hand-holding-droplet\",\n    \"hand-holding-hand\",\n    \"hand-holding-heart\",\n    \"hand-holding-medical\",\n    \"hand-holding\",\n    \"hand-lizard\",\n    \"hand-middle-finger\",\n    \"hand-peace\",\n    \"hand-point-down\",\n    \"hand-point-left\",\n    \"hand-point-right\",\n    \"hand-point-up\",\n    \"hand-pointer\",\n    \"hand-scissors\",\n    \"hand-sparkles\",\n    \"hand-spock\",\n    \"hand\",\n    \"handcuffs\",\n    \"hands-asl-interpreting\",\n    \"hands-bound\",\n    \"hands-bubbles\",\n    \"hands-clapping\",\n    \"hands-holding-child\",\n    \"hands-holding-circle\",\n    \"hands-holding\",\n    \"hands-praying\",\n    \"hands\",\n    \"handshake-angle\",\n    \"handshake-simple-slash\",\n    \"handshake-simple\",\n    \"handshake-slash\",\n    \"handshake\",\n    \"hanukiah\",\n    \"hard-drive\",\n    \"hashtag\",\n    \"hat-cowboy-side\",\n    \"hat-cowboy\",\n    \"hat-wizard\",\n    \"head-side-cough-slash\",\n    \"head-side-cough\",\n    \"head-side-mask\",\n    \"head-side-virus\",\n    \"heading\",\n    \"headphones-simple\",\n    \"headphones\",\n    \"headset\",\n    \"heart-circle-bolt\",\n    \"heart-circle-check\",\n    \"heart-circle-exclamation\",\n    \"heart-circle-minus\",\n    \"heart-circle-plus\",\n    \"heart-circle-xmark\",\n    \"heart-crack\",\n    \"heart-pulse\",\n    \"heart\",\n    \"helicopter-symbol\",\n    \"helicopter\",\n    \"helmet-safety\",\n    \"helmet-un\",\n    \"hexagon-nodes-bolt\",\n    \"hexagon-nodes\",\n    \"highlighter\",\n    \"hill-avalanche\",\n    \"hill-rockslide\",\n    \"hippo\",\n    \"hockey-puck\",\n    \"holly-berry\",\n    \"horse-head\",\n    \"horse\",\n    \"hospital-user\",\n    \"hospital\",\n    \"hot-tub-person\",\n    \"hotdog\",\n    \"hotel\",\n    \"hourglass-end\",\n    \"hourglass-half\",\n    \"hourglass-start\",\n    \"hourglass\",\n    \"house-chimney-crack\",\n    \"house-chimney-medical\",\n    \"house-chimney-user\",\n    \"house-chimney-window\",\n    \"house-chimney\",\n    \"house-circle-check\",\n    \"house-circle-exclamation\",\n    \"house-circle-xmark\",\n    \"house-crack\",\n    \"house-fire\",\n    \"house-flag\",\n    \"house-flood-water-circle-arrow-right\",\n    \"house-flood-water\",\n    \"house-laptop\",\n    \"house-lock\",\n    \"house-medical-circle-check\",\n    \"house-medical-circle-exclamation\",\n    \"house-medical-circle-xmark\",\n    \"house-medical-flag\",\n    \"house-medical\",\n    \"house-signal\",\n    \"house-tsunami\",\n    \"house-user\",\n    \"house\",\n    \"hryvnia-sign\",\n    \"hurricane\",\n    \"i-cursor\",\n    \"i\",\n    \"ice-cream\",\n    \"icicles\",\n    \"icons\",\n    \"id-badge\",\n    \"id-card-clip\",\n    \"id-card\",\n    \"igloo\",\n    \"image-portrait\",\n    \"image\",\n    \"images\",\n    \"inbox\",\n    \"indent\",\n    \"indian-rupee-sign\",\n    \"industry\",\n    \"infinity\",\n    \"info\",\n    \"italic\",\n    \"j\",\n    \"jar-wheat\",\n    \"jar\",\n    \"jedi\",\n    \"jet-fighter-up\",\n    \"jet-fighter\",\n    \"joint\",\n    \"jug-detergent\",\n    \"k\",\n    \"kaaba\",\n    \"key\",\n    \"keyboard\",\n    \"khanda\",\n    \"kip-sign\",\n    \"kit-medical\",\n    \"kitchen-set\",\n    \"kiwi-bird\",\n    \"l\",\n    \"land-mine-on\",\n    \"landmark-dome\",\n    \"landmark-flag\",\n    \"landmark\",\n    \"language\",\n    \"laptop-code\",\n    \"laptop-file\",\n    \"laptop-medical\",\n    \"laptop\",\n    \"lari-sign\",\n    \"layer-group\",\n    \"leaf\",\n    \"left-long\",\n    \"left-right\",\n    \"lemon\",\n    \"less-than-equal\",\n    \"less-than\",\n    \"life-ring\",\n    \"lightbulb\",\n    \"lines-leaning\",\n    \"link-slash\",\n    \"link\",\n    \"lira-sign\",\n    \"list-check\",\n    \"list-ol\",\n    \"list-ul\",\n    \"list\",\n    \"litecoin-sign\",\n    \"location-arrow\",\n    \"location-crosshairs\",\n    \"location-dot\",\n    \"location-pin-lock\",\n    \"location-pin\",\n    \"lock-open\",\n    \"lock\",\n    \"locust\",\n    \"lungs-virus\",\n    \"lungs\",\n    \"m\",\n    \"magnet\",\n    \"magnifying-glass-arrow-right\",\n    \"magnifying-glass-chart\",\n    \"magnifying-glass-dollar\",\n    \"magnifying-glass-location\",\n    \"magnifying-glass-minus\",\n    \"magnifying-glass-plus\",\n    \"magnifying-glass\",\n    \"manat-sign\",\n    \"map-location-dot\",\n    \"map-location\",\n    \"map-pin\",\n    \"map\",\n    \"marker\",\n    \"mars-and-venus-burst\",\n    \"mars-and-venus\",\n    \"mars-double\",\n    \"mars-stroke-right\",\n    \"mars-stroke-up\",\n    \"mars-stroke\",\n    \"mars\",\n    \"martini-glass-citrus\",\n    \"martini-glass-empty\",\n    \"martini-glass\",\n    \"mask-face\",\n    \"mask-ventilator\",\n    \"mask\",\n    \"masks-theater\",\n    \"mattress-pillow\",\n    \"maximize\",\n    \"medal\",\n    \"memory\",\n    \"menorah\",\n    \"mercury\",\n    \"message\",\n    \"meteor\",\n    \"microchip\",\n    \"microphone-lines-slash\",\n    \"microphone-lines\",\n    \"microphone-slash\",\n    \"microphone\",\n    \"microscope\",\n    \"mill-sign\",\n    \"minimize\",\n    \"minus\",\n    \"mitten\",\n    \"mobile-button\",\n    \"mobile-retro\",\n    \"mobile-screen-button\",\n    \"mobile-screen\",\n    \"mobile\",\n    \"money-bill-1-wave\",\n    \"money-bill-1\",\n    \"money-bill-transfer\",\n    \"money-bill-trend-up\",\n    \"money-bill-wave\",\n    \"money-bill-wheat\",\n    \"money-bill\",\n    \"money-bills\",\n    \"money-check-dollar\",\n    \"money-check\",\n    \"monument\",\n    \"moon\",\n    \"mortar-pestle\",\n    \"mosque\",\n    \"mosquito-net\",\n    \"mosquito\",\n    \"motorcycle\",\n    \"mound\",\n    \"mountain-city\",\n    \"mountain-sun\",\n    \"mountain\",\n    \"mug-hot\",\n    \"mug-saucer\",\n    \"music\",\n    \"n\",\n    \"naira-sign\",\n    \"network-wired\",\n    \"neuter\",\n    \"newspaper\",\n    \"not-equal\",\n    \"notdef\",\n    \"note-sticky\",\n    \"notes-medical\",\n    \"o\",\n    \"object-group\",\n    \"object-ungroup\",\n    \"oil-can\",\n    \"oil-well\",\n    \"om\",\n    \"otter\",\n    \"outdent\",\n    \"p\",\n    \"pager\",\n    \"paint-roller\",\n    \"paintbrush\",\n    \"palette\",\n    \"pallet\",\n    \"panorama\",\n    \"paper-plane\",\n    \"paperclip\",\n    \"parachute-box\",\n    \"paragraph\",\n    \"passport\",\n    \"paste\",\n    \"pause\",\n    \"paw\",\n    \"peace\",\n    \"pen-clip\",\n    \"pen-fancy\",\n    \"pen-nib\",\n    \"pen-ruler\",\n    \"pen-to-square\",\n    \"pen\",\n    \"pencil\",\n    \"people-arrows\",\n    \"people-carry-box\",\n    \"people-group\",\n    \"people-line\",\n    \"people-pulling\",\n    \"people-robbery\",\n    \"people-roof\",\n    \"pepper-hot\",\n    \"percent\",\n    \"person-arrow-down-to-line\",\n    \"person-arrow-up-from-line\",\n    \"person-biking\",\n    \"person-booth\",\n    \"person-breastfeeding\",\n    \"person-burst\",\n    \"person-cane\",\n    \"person-chalkboard\",\n    \"person-circle-check\",\n    \"person-circle-exclamation\",\n    \"person-circle-minus\",\n    \"person-circle-plus\",\n    \"person-circle-question\",\n    \"person-circle-xmark\",\n    \"person-digging\",\n    \"person-dots-from-line\",\n    \"person-dress-burst\",\n    \"person-dress\",\n    \"person-drowning\",\n    \"person-falling-burst\",\n    \"person-falling\",\n    \"person-half-dress\",\n    \"person-harassing\",\n    \"person-hiking\",\n    \"person-military-pointing\",\n    \"person-military-rifle\",\n    \"person-military-to-person\",\n    \"person-praying\",\n    \"person-pregnant\",\n    \"person-rays\",\n    \"person-rifle\",\n    \"person-running\",\n    \"person-shelter\",\n    \"person-skating\",\n    \"person-skiing-nordic\",\n    \"person-skiing\",\n    \"person-snowboarding\",\n    \"person-swimming\",\n    \"person-through-window\",\n    \"person-walking-arrow-loop-left\",\n    \"person-walking-arrow-right\",\n    \"person-walking-dashed-line-arrow-right\",\n    \"person-walking-luggage\",\n    \"person-walking-with-cane\",\n    \"person-walking\",\n    \"person\",\n    \"peseta-sign\",\n    \"peso-sign\",\n    \"phone-flip\",\n    \"phone-slash\",\n    \"phone-volume\",\n    \"phone\",\n    \"photo-film\",\n    \"piggy-bank\",\n    \"pills\",\n    \"pizza-slice\",\n    \"place-of-worship\",\n    \"plane-arrival\",\n    \"plane-circle-check\",\n    \"plane-circle-exclamation\",\n    \"plane-circle-xmark\",\n    \"plane-departure\",\n    \"plane-lock\",\n    \"plane-slash\",\n    \"plane-up\",\n    \"plane\",\n    \"plant-wilt\",\n    \"plate-wheat\",\n    \"play\",\n    \"plug-circle-bolt\",\n    \"plug-circle-check\",\n    \"plug-circle-exclamation\",\n    \"plug-circle-minus\",\n    \"plug-circle-plus\",\n    \"plug-circle-xmark\",\n    \"plug\",\n    \"plus-minus\",\n    \"plus\",\n    \"podcast\",\n    \"poo-storm\",\n    \"poo\",\n    \"poop\",\n    \"power-off\",\n    \"prescription-bottle-medical\",\n    \"prescription-bottle\",\n    \"prescription\",\n    \"print\",\n    \"pump-medical\",\n    \"pump-soap\",\n    \"puzzle-piece\",\n    \"q\",\n    \"qrcode\",\n    \"question\",\n    \"quote-left\",\n    \"quote-right\",\n    \"r\",\n    \"radiation\",\n    \"radio\",\n    \"rainbow\",\n    \"ranking-star\",\n    \"receipt\",\n    \"record-vinyl\",\n    \"rectangle-ad\",\n    \"rectangle-list\",\n    \"rectangle-xmark\",\n    \"recycle\",\n    \"registered\",\n    \"repeat\",\n    \"reply-all\",\n    \"reply\",\n    \"republican\",\n    \"restroom\",\n    \"retweet\",\n    \"ribbon\",\n    \"right-from-bracket\",\n    \"right-left\",\n    \"right-long\",\n    \"right-to-bracket\",\n    \"ring\",\n    \"road-barrier\",\n    \"road-bridge\",\n    \"road-circle-check\",\n    \"road-circle-exclamation\",\n    \"road-circle-xmark\",\n    \"road-lock\",\n    \"road-spikes\",\n    \"road\",\n    \"robot\",\n    \"rocket\",\n    \"rotate-left\",\n    \"rotate-right\",\n    \"rotate\",\n    \"route\",\n    \"rss\",\n    \"ruble-sign\",\n    \"rug\",\n    \"ruler-combined\",\n    \"ruler-horizontal\",\n    \"ruler-vertical\",\n    \"ruler\",\n    \"rupee-sign\",\n    \"rupiah-sign\",\n    \"s\",\n    \"sack-dollar\",\n    \"sack-xmark\",\n    \"sailboat\",\n    \"satellite-dish\",\n    \"satellite\",\n    \"scale-balanced\",\n    \"scale-unbalanced-flip\",\n    \"scale-unbalanced\",\n    \"school-circle-check\",\n    \"school-circle-exclamation\",\n    \"school-circle-xmark\",\n    \"school-flag\",\n    \"school-lock\",\n    \"school\",\n    \"scissors\",\n    \"screwdriver-wrench\",\n    \"screwdriver\",\n    \"scroll-torah\",\n    \"scroll\",\n    \"sd-card\",\n    \"section\",\n    \"seedling\",\n    \"server\",\n    \"shapes\",\n    \"share-from-square\",\n    \"share-nodes\",\n    \"share\",\n    \"sheet-plastic\",\n    \"shekel-sign\",\n    \"shield-cat\",\n    \"shield-dog\",\n    \"shield-halved\",\n    \"shield-heart\",\n    \"shield-virus\",\n    \"shield\",\n    \"ship\",\n    \"shirt\",\n    \"shoe-prints\",\n    \"shop-lock\",\n    \"shop-slash\",\n    \"shop\",\n    \"shower\",\n    \"shrimp\",\n    \"shuffle\",\n    \"shuttle-space\",\n    \"sign-hanging\",\n    \"signal\",\n    \"signature\",\n    \"signs-post\",\n    \"sim-card\",\n    \"sink\",\n    \"sitemap\",\n    \"skull-crossbones\",\n    \"skull\",\n    \"slash\",\n    \"sleigh\",\n    \"sliders\",\n    \"smog\",\n    \"smoking\",\n    \"snowflake\",\n    \"snowman\",\n    \"snowplow\",\n    \"soap\",\n    \"socks\",\n    \"solar-panel\",\n    \"sort-down\",\n    \"sort-up\",\n    \"sort\",\n    \"spa\",\n    \"spaghetti-monster-flying\",\n    \"spell-check\",\n    \"spider\",\n    \"spinner\",\n    \"splotch\",\n    \"spoon\",\n    \"spray-can-sparkles\",\n    \"spray-can\",\n    \"square-arrow-up-right\",\n    \"square-binary\",\n    \"square-caret-down\",\n    \"square-caret-left\",\n    \"square-caret-right\",\n    \"square-caret-up\",\n    \"square-check\",\n    \"square-envelope\",\n    \"square-full\",\n    \"square-h\",\n    \"square-minus\",\n    \"square-nfi\",\n    \"square-parking\",\n    \"square-pen\",\n    \"square-person-confined\",\n    \"square-phone-flip\",\n    \"square-phone\",\n    \"square-plus\",\n    \"square-poll-horizontal\",\n    \"square-poll-vertical\",\n    \"square-root-variable\",\n    \"square-rss\",\n    \"square-share-nodes\",\n    \"square-up-right\",\n    \"square-virus\",\n    \"square-xmark\",\n    \"square\",\n    \"staff-snake\",\n    \"stairs\",\n    \"stamp\",\n    \"stapler\",\n    \"star-and-crescent\",\n    \"star-half-stroke\",\n    \"star-half\",\n    \"star-of-david\",\n    \"star-of-life\",\n    \"star\",\n    \"sterling-sign\",\n    \"stethoscope\",\n    \"stop\",\n    \"stopwatch-20\",\n    \"stopwatch\",\n    \"store-slash\",\n    \"store\",\n    \"street-view\",\n    \"strikethrough\",\n    \"stroopwafel\",\n    \"subscript\",\n    \"suitcase-medical\",\n    \"suitcase-rolling\",\n    \"suitcase\",\n    \"sun-plant-wilt\",\n    \"sun\",\n    \"superscript\",\n    \"swatchbook\",\n    \"synagogue\",\n    \"syringe\",\n    \"t\",\n    \"table-cells-column-lock\",\n    \"table-cells-large\",\n    \"table-cells-row-lock\",\n    \"table-cells-row-unlock\",\n    \"table-cells\",\n    \"table-columns\",\n    \"table-list\",\n    \"table-tennis-paddle-ball\",\n    \"table\",\n    \"tablet-button\",\n    \"tablet-screen-button\",\n    \"tablet\",\n    \"tablets\",\n    \"tachograph-digital\",\n    \"tag\",\n    \"tags\",\n    \"tape\",\n    \"tarp-droplet\",\n    \"tarp\",\n    \"taxi\",\n    \"teeth-open\",\n    \"teeth\",\n    \"temperature-arrow-down\",\n    \"temperature-arrow-up\",\n    \"temperature-empty\",\n    \"temperature-full\",\n    \"temperature-half\",\n    \"temperature-high\",\n    \"temperature-low\",\n    \"temperature-quarter\",\n    \"temperature-three-quarters\",\n    \"tenge-sign\",\n    \"tent-arrow-down-to-line\",\n    \"tent-arrow-left-right\",\n    \"tent-arrow-turn-left\",\n    \"tent-arrows-down\",\n    \"tent\",\n    \"tents\",\n    \"terminal\",\n    \"text-height\",\n    \"text-slash\",\n    \"text-width\",\n    \"thermometer\",\n    \"thumbs-down\",\n    \"thumbs-up\",\n    \"thumbtack-slash\",\n    \"thumbtack\",\n    \"ticket-simple\",\n    \"ticket\",\n    \"timeline\",\n    \"toggle-off\",\n    \"toggle-on\",\n    \"toilet-paper-slash\",\n    \"toilet-paper\",\n    \"toilet-portable\",\n    \"toilet\",\n    \"toilets-portable\",\n    \"toolbox\",\n    \"tooth\",\n    \"torii-gate\",\n    \"tornado\",\n    \"tower-broadcast\",\n    \"tower-cell\",\n    \"tower-observation\",\n    \"tractor\",\n    \"trademark\",\n    \"traffic-light\",\n    \"trailer\",\n    \"train-subway\",\n    \"train-tram\",\n    \"train\",\n    \"transgender\",\n    \"trash-arrow-up\",\n    \"trash-can-arrow-up\",\n    \"trash-can\",\n    \"trash\",\n    \"tree-city\",\n    \"tree\",\n    \"triangle-exclamation\",\n    \"trophy\",\n    \"trowel-bricks\",\n    \"trowel\",\n    \"truck-arrow-right\",\n    \"truck-droplet\",\n    \"truck-fast\",\n    \"truck-field-un\",\n    \"truck-field\",\n    \"truck-front\",\n    \"truck-medical\",\n    \"truck-monster\",\n    \"truck-moving\",\n    \"truck-pickup\",\n    \"truck-plane\",\n    \"truck-ramp-box\",\n    \"truck\",\n    \"tty\",\n    \"turkish-lira-sign\",\n    \"turn-down\",\n    \"turn-up\",\n    \"tv\",\n    \"u\",\n    \"umbrella-beach\",\n    \"umbrella\",\n    \"underline\",\n    \"universal-access\",\n    \"unlock-keyhole\",\n    \"unlock\",\n    \"up-down-left-right\",\n    \"up-down\",\n    \"up-long\",\n    \"up-right-and-down-left-from-center\",\n    \"up-right-from-square\",\n    \"upload\",\n    \"user-astronaut\",\n    \"user-check\",\n    \"user-clock\",\n    \"user-doctor\",\n    \"user-gear\",\n    \"user-graduate\",\n    \"user-group\",\n    \"user-injured\",\n    \"user-large-slash\",\n    \"user-large\",\n    \"user-lock\",\n    \"user-minus\",\n    \"user-ninja\",\n    \"user-nurse\",\n    \"user-pen\",\n    \"user-plus\",\n    \"user-secret\",\n    \"user-shield\",\n    \"user-slash\",\n    \"user-tag\",\n    \"user-tie\",\n    \"user-xmark\",\n    \"user\",\n    \"users-between-lines\",\n    \"users-gear\",\n    \"users-line\",\n    \"users-rays\",\n    \"users-rectangle\",\n    \"users-slash\",\n    \"users-viewfinder\",\n    \"users\",\n    \"utensils\",\n    \"v\",\n    \"van-shuttle\",\n    \"vault\",\n    \"vector-square\",\n    \"venus-double\",\n    \"venus-mars\",\n    \"venus\",\n    \"vest-patches\",\n    \"vest\",\n    \"vial-circle-check\",\n    \"vial-virus\",\n    \"vial\",\n    \"vials\",\n    \"video-slash\",\n    \"video\",\n    \"vihara\",\n    \"virus-covid-slash\",\n    \"virus-covid\",\n    \"virus-slash\",\n    \"virus\",\n    \"viruses\",\n    \"voicemail\",\n    \"volcano\",\n    \"volleyball\",\n    \"volume-high\",\n    \"volume-low\",\n    \"volume-off\",\n    \"volume-xmark\",\n    \"vr-cardboard\",\n    \"w\",\n    \"walkie-talkie\",\n    \"wallet\",\n    \"wand-magic-sparkles\",\n    \"wand-magic\",\n    \"wand-sparkles\",\n    \"warehouse\",\n    \"water-ladder\",\n    \"water\",\n    \"wave-square\",\n    \"web-awesome\",\n    \"weight-hanging\",\n    \"weight-scale\",\n    \"wheat-awn-circle-exclamation\",\n    \"wheat-awn\",\n    \"wheelchair-move\",\n    \"wheelchair\",\n    \"whiskey-glass\",\n    \"wifi\",\n    \"wind\",\n    \"window-maximize\",\n    \"window-minimize\",\n    \"window-restore\",\n    \"wine-bottle\",\n    \"wine-glass-empty\",\n    \"wine-glass\",\n    \"won-sign\",\n    \"worm\",\n    \"wrench\",\n    \"x-ray\",\n    \"x\",\n    \"xmark\",\n    \"xmarks-lines\",\n    \"y\",\n    \"yen-sign\",\n    \"yin-yang\",\n    \"z\"\n  ]\n}\r\n"
  },
  {
    "path": "packages/fontawesome6/glyphmaps/FontAwesome6_regular.json",
    "content": "{\"address-book\":62137,\"address-card\":62139,\"bell-slash\":61942,\"bell\":61683,\"bookmark\":61486,\"building\":61869,\"calendar-check\":62068,\"calendar-days\":61555,\"calendar-minus\":62066,\"calendar-plus\":62065,\"calendar-xmark\":62067,\"calendar\":61747,\"chart-bar\":61568,\"chess-bishop\":62522,\"chess-king\":62527,\"chess-knight\":62529,\"chess-pawn\":62531,\"chess-queen\":62533,\"chess-rook\":62535,\"circle-check\":61528,\"circle-dot\":61842,\"circle-down\":62296,\"circle-left\":62297,\"circle-pause\":62091,\"circle-play\":61764,\"circle-question\":61529,\"circle-right\":62298,\"circle-stop\":62093,\"circle-up\":62299,\"circle-user\":62141,\"circle-xmark\":61527,\"circle\":61713,\"clipboard\":62248,\"clock\":61463,\"clone\":62029,\"closed-captioning\":61962,\"comment-dots\":62637,\"comment\":61557,\"comments\":61574,\"compass\":61774,\"copy\":61637,\"copyright\":61945,\"credit-card\":61597,\"envelope-open\":62134,\"envelope\":61664,\"eye-slash\":61552,\"eye\":61550,\"face-angry\":62806,\"face-dizzy\":62823,\"face-flushed\":62841,\"face-frown-open\":62842,\"face-frown\":61721,\"face-grimace\":62847,\"face-grin-beam-sweat\":62851,\"face-grin-beam\":62850,\"face-grin-hearts\":62852,\"face-grin-squint-tears\":62854,\"face-grin-squint\":62853,\"face-grin-stars\":62855,\"face-grin-tears\":62856,\"face-grin-tongue-squint\":62858,\"face-grin-tongue-wink\":62859,\"face-grin-tongue\":62857,\"face-grin-wide\":62849,\"face-grin-wink\":62860,\"face-grin\":62848,\"face-kiss-beam\":62871,\"face-kiss-wink-heart\":62872,\"face-kiss\":62870,\"face-laugh-beam\":62874,\"face-laugh-squint\":62875,\"face-laugh-wink\":62876,\"face-laugh\":62873,\"face-meh-blank\":62884,\"face-meh\":61722,\"face-rolling-eyes\":62885,\"face-sad-cry\":62899,\"face-sad-tear\":62900,\"face-smile-beam\":62904,\"face-smile-wink\":62682,\"face-smile\":61720,\"face-surprise\":62914,\"face-tired\":62920,\"file-audio\":61895,\"file-code\":61897,\"file-excel\":61891,\"file-image\":61893,\"file-lines\":61788,\"file-pdf\":61889,\"file-powerpoint\":61892,\"file-video\":61896,\"file-word\":61890,\"file-zipper\":61894,\"file\":61787,\"flag\":61476,\"floppy-disk\":61639,\"folder-closed\":57733,\"folder-open\":61564,\"folder\":61563,\"font-awesome\":62132,\"futbol\":61923,\"gem\":62373,\"hand-back-fist\":62037,\"hand-lizard\":62040,\"hand-peace\":62043,\"hand-point-down\":61607,\"hand-point-left\":61605,\"hand-point-right\":61604,\"hand-point-up\":61606,\"hand-pointer\":62042,\"hand-scissors\":62039,\"hand-spock\":62041,\"hand\":62038,\"handshake\":62133,\"hard-drive\":61600,\"heart\":61444,\"hospital\":61688,\"hourglass-half\":62034,\"hourglass\":62036,\"id-badge\":62145,\"id-card\":62146,\"image\":61502,\"images\":62210,\"keyboard\":61724,\"lemon\":61588,\"life-ring\":61901,\"lightbulb\":61675,\"map\":62073,\"message\":62074,\"money-bill-1\":62417,\"moon\":61830,\"newspaper\":61930,\"note-sticky\":62025,\"object-group\":62023,\"object-ungroup\":62024,\"paper-plane\":61912,\"paste\":61674,\"pen-to-square\":61508,\"rectangle-list\":61474,\"rectangle-xmark\":62480,\"registered\":62045,\"share-from-square\":61773,\"snowflake\":62172,\"square-caret-down\":61776,\"square-caret-left\":61841,\"square-caret-right\":61778,\"square-caret-up\":61777,\"square-check\":61770,\"square-full\":62556,\"square-minus\":61766,\"square-plus\":61694,\"square\":61640,\"star-half-stroke\":62912,\"star-half\":61577,\"star\":61445,\"sun\":61829,\"thumbs-down\":61797,\"thumbs-up\":61796,\"trash-can\":62189,\"user\":61447,\"window-maximize\":62160,\"window-minimize\":62161,\"window-restore\":62162}"
  },
  {
    "path": "packages/fontawesome6/glyphmaps/FontAwesome6_solid.json",
    "content": "{\"0\":48,\"1\":49,\"2\":50,\"3\":51,\"4\":52,\"5\":53,\"6\":54,\"7\":55,\"8\":56,\"9\":57,\"a\":65,\"address-book\":62137,\"address-card\":62139,\"align-center\":61495,\"align-justify\":61497,\"align-left\":61494,\"align-right\":61496,\"anchor-circle-check\":58538,\"anchor-circle-exclamation\":58539,\"anchor-circle-xmark\":58540,\"anchor-lock\":58541,\"anchor\":61757,\"angle-down\":61703,\"angle-left\":61700,\"angle-right\":61701,\"angle-up\":61702,\"angles-down\":61699,\"angles-left\":61696,\"angles-right\":61697,\"angles-up\":61698,\"ankh\":63044,\"apple-whole\":62929,\"archway\":62807,\"arrow-down-1-9\":61794,\"arrow-down-9-1\":63622,\"arrow-down-a-z\":61789,\"arrow-down-long\":61813,\"arrow-down-short-wide\":63620,\"arrow-down-up-across-line\":58543,\"arrow-down-up-lock\":58544,\"arrow-down-wide-short\":61792,\"arrow-down-z-a\":63617,\"arrow-down\":61539,\"arrow-left-long\":61815,\"arrow-left\":61536,\"arrow-pointer\":62021,\"arrow-right-arrow-left\":61676,\"arrow-right-from-bracket\":61579,\"arrow-right-long\":61816,\"arrow-right-to-bracket\":61584,\"arrow-right-to-city\":58547,\"arrow-right\":61537,\"arrow-rotate-left\":61666,\"arrow-rotate-right\":61470,\"arrow-trend-down\":57495,\"arrow-trend-up\":57496,\"arrow-turn-down\":61769,\"arrow-turn-up\":61768,\"arrow-up-1-9\":61795,\"arrow-up-9-1\":63623,\"arrow-up-a-z\":61790,\"arrow-up-from-bracket\":57498,\"arrow-up-from-ground-water\":58549,\"arrow-up-from-water-pump\":58550,\"arrow-up-long\":61814,\"arrow-up-right-dots\":58551,\"arrow-up-right-from-square\":61582,\"arrow-up-short-wide\":63621,\"arrow-up-wide-short\":61793,\"arrow-up-z-a\":63618,\"arrow-up\":61538,\"arrows-down-to-line\":58552,\"arrows-down-to-people\":58553,\"arrows-left-right-to-line\":58554,\"arrows-left-right\":61566,\"arrows-rotate\":61473,\"arrows-spin\":58555,\"arrows-split-up-and-left\":58556,\"arrows-to-circle\":58557,\"arrows-to-dot\":58558,\"arrows-to-eye\":58559,\"arrows-turn-right\":58560,\"arrows-turn-to-dots\":58561,\"arrows-up-down-left-right\":61511,\"arrows-up-down\":61565,\"arrows-up-to-line\":58562,\"asterisk\":42,\"at\":64,\"atom\":62930,\"audio-description\":62110,\"austral-sign\":57513,\"award\":62809,\"b\":66,\"baby-carriage\":63357,\"baby\":63356,\"backward-fast\":61513,\"backward-step\":61512,\"backward\":61514,\"bacon\":63461,\"bacteria\":57433,\"bacterium\":57434,\"bag-shopping\":62096,\"bahai\":63078,\"baht-sign\":57516,\"ban-smoking\":62797,\"ban\":61534,\"bandage\":62562,\"bangladeshi-taka-sign\":58086,\"barcode\":61482,\"bars-progress\":63528,\"bars-staggered\":62800,\"bars\":61641,\"baseball-bat-ball\":62514,\"baseball\":62515,\"basket-shopping\":62097,\"basketball\":62516,\"bath\":62157,\"battery-empty\":62020,\"battery-full\":62016,\"battery-half\":62018,\"battery-quarter\":62019,\"battery-three-quarters\":62017,\"bed-pulse\":62599,\"bed\":62006,\"beer-mug-empty\":61692,\"bell-concierge\":62818,\"bell-slash\":61942,\"bell\":61683,\"bezier-curve\":62811,\"bicycle\":61958,\"binoculars\":61925,\"biohazard\":63360,\"bitcoin-sign\":57524,\"blender-phone\":63158,\"blender\":62743,\"blog\":63361,\"bold\":61490,\"bolt-lightning\":57527,\"bolt\":61671,\"bomb\":61922,\"bone\":62935,\"bong\":62812,\"book-atlas\":62808,\"book-bible\":63047,\"book-bookmark\":57531,\"book-journal-whills\":63082,\"book-medical\":63462,\"book-open-reader\":62938,\"book-open\":62744,\"book-quran\":63111,\"book-skull\":63159,\"book-tanakh\":63527,\"book\":61485,\"bookmark\":61486,\"border-all\":63564,\"border-none\":63568,\"border-top-left\":63571,\"bore-hole\":58563,\"bottle-droplet\":58564,\"bottle-water\":58565,\"bowl-food\":58566,\"bowl-rice\":58091,\"bowling-ball\":62518,\"box-archive\":61831,\"box-open\":62622,\"box-tissue\":57435,\"box\":62566,\"boxes-packing\":58567,\"boxes-stacked\":62568,\"braille\":62113,\"brain\":62940,\"brazilian-real-sign\":58476,\"bread-slice\":63468,\"bridge-circle-check\":58569,\"bridge-circle-exclamation\":58570,\"bridge-circle-xmark\":58571,\"bridge-lock\":58572,\"bridge-water\":58574,\"bridge\":58568,\"briefcase-medical\":62569,\"briefcase\":61617,\"broom-ball\":62552,\"broom\":62746,\"brush\":62813,\"bucket\":58575,\"bug-slash\":58512,\"bug\":61832,\"bugs\":58576,\"building-circle-arrow-right\":58577,\"building-circle-check\":58578,\"building-circle-exclamation\":58579,\"building-circle-xmark\":58580,\"building-columns\":61852,\"building-flag\":58581,\"building-lock\":58582,\"building-ngo\":58583,\"building-shield\":58584,\"building-un\":58585,\"building-user\":58586,\"building-wheat\":58587,\"building\":61869,\"bullhorn\":61601,\"bullseye\":61760,\"burger\":63493,\"burst\":58588,\"bus-simple\":62814,\"bus\":61959,\"business-time\":63050,\"c\":67,\"cable-car\":63450,\"cake-candles\":61949,\"calculator\":61932,\"calendar-check\":62068,\"calendar-day\":63363,\"calendar-days\":61555,\"calendar-minus\":62066,\"calendar-plus\":62065,\"calendar-week\":63364,\"calendar-xmark\":62067,\"calendar\":61747,\"camera-retro\":61571,\"camera-rotate\":57560,\"camera\":61488,\"campground\":63163,\"candy-cane\":63366,\"cannabis\":62815,\"capsules\":62571,\"car-battery\":62943,\"car-burst\":62945,\"car-on\":58589,\"car-rear\":62942,\"car-side\":62948,\"car-tunnel\":58590,\"car\":61881,\"caravan\":63743,\"caret-down\":61655,\"caret-left\":61657,\"caret-right\":61658,\"caret-up\":61656,\"carrot\":63367,\"cart-arrow-down\":61976,\"cart-flatbed-suitcase\":62877,\"cart-flatbed\":62580,\"cart-plus\":61975,\"cart-shopping\":61562,\"cash-register\":63368,\"cat\":63166,\"cedi-sign\":57567,\"cent-sign\":58357,\"certificate\":61603,\"chair\":63168,\"chalkboard-user\":62748,\"chalkboard\":62747,\"champagne-glasses\":63391,\"charging-station\":62951,\"chart-area\":61950,\"chart-bar\":61568,\"chart-column\":57571,\"chart-diagram\":59029,\"chart-gantt\":57572,\"chart-line\":61953,\"chart-pie\":61952,\"chart-simple\":58483,\"check-double\":62816,\"check-to-slot\":63346,\"check\":61452,\"cheese\":63471,\"chess-bishop\":62522,\"chess-board\":62524,\"chess-king\":62527,\"chess-knight\":62529,\"chess-pawn\":62531,\"chess-queen\":62533,\"chess-rook\":62535,\"chess\":62521,\"chevron-down\":61560,\"chevron-left\":61523,\"chevron-right\":61524,\"chevron-up\":61559,\"child-combatant\":58592,\"child-dress\":58780,\"child-reaching\":58781,\"child\":61870,\"children\":58593,\"church\":62749,\"circle-arrow-down\":61611,\"circle-arrow-left\":61608,\"circle-arrow-right\":61609,\"circle-arrow-up\":61610,\"circle-check\":61528,\"circle-chevron-down\":61754,\"circle-chevron-left\":61751,\"circle-chevron-right\":61752,\"circle-chevron-up\":61753,\"circle-dollar-to-slot\":62649,\"circle-dot\":61842,\"circle-down\":62296,\"circle-exclamation\":61546,\"circle-h\":62590,\"circle-half-stroke\":61506,\"circle-info\":61530,\"circle-left\":62297,\"circle-minus\":61526,\"circle-nodes\":58594,\"circle-notch\":61902,\"circle-pause\":62091,\"circle-play\":61764,\"circle-plus\":61525,\"circle-question\":61529,\"circle-radiation\":63418,\"circle-right\":62298,\"circle-stop\":62093,\"circle-up\":62299,\"circle-user\":62141,\"circle-xmark\":61527,\"circle\":61713,\"city\":63055,\"clapperboard\":57649,\"clipboard-check\":62572,\"clipboard-list\":62573,\"clipboard-question\":58595,\"clipboard-user\":63475,\"clipboard\":62248,\"clock-rotate-left\":61914,\"clock\":61463,\"clone\":62029,\"closed-captioning\":61962,\"cloud-arrow-down\":61677,\"cloud-arrow-up\":61678,\"cloud-bolt\":63340,\"cloud-meatball\":63291,\"cloud-moon-rain\":63292,\"cloud-moon\":63171,\"cloud-rain\":63293,\"cloud-showers-heavy\":63296,\"cloud-showers-water\":58596,\"cloud-sun-rain\":63299,\"cloud-sun\":63172,\"cloud\":61634,\"clover\":57657,\"code-branch\":61734,\"code-commit\":62342,\"code-compare\":57658,\"code-fork\":57659,\"code-merge\":62343,\"code-pull-request\":57660,\"code\":61729,\"coins\":62750,\"colon-sign\":57664,\"comment-dollar\":63057,\"comment-dots\":62637,\"comment-medical\":63477,\"comment-nodes\":59030,\"comment-slash\":62643,\"comment-sms\":63437,\"comment\":61557,\"comments-dollar\":63059,\"comments\":61574,\"compact-disc\":62751,\"compass-drafting\":62824,\"compass\":61774,\"compress\":61542,\"computer-mouse\":63692,\"computer\":58597,\"cookie-bite\":62820,\"cookie\":62819,\"copy\":61637,\"copyright\":61945,\"couch\":62648,\"cow\":63176,\"credit-card\":61597,\"crop-simple\":62821,\"crop\":61733,\"cross\":63060,\"crosshairs\":61531,\"crow\":62752,\"crown\":62753,\"crutch\":63479,\"cruzeiro-sign\":57682,\"cube\":61874,\"cubes-stacked\":58598,\"cubes\":61875,\"d\":68,\"database\":61888,\"delete-left\":62810,\"democrat\":63303,\"desktop\":62352,\"dharmachakra\":63061,\"diagram-next\":58486,\"diagram-predecessor\":58487,\"diagram-project\":62786,\"diagram-successor\":58490,\"diamond-turn-right\":62955,\"diamond\":61977,\"dice-d20\":63183,\"dice-d6\":63185,\"dice-five\":62755,\"dice-four\":62756,\"dice-one\":62757,\"dice-six\":62758,\"dice-three\":62759,\"dice-two\":62760,\"dice\":62754,\"disease\":63482,\"display\":57699,\"divide\":62761,\"dna\":62577,\"dog\":63187,\"dollar-sign\":36,\"dolly\":62578,\"dong-sign\":57705,\"door-closed\":62762,\"door-open\":62763,\"dove\":62650,\"down-left-and-up-right-to-center\":62498,\"down-long\":62217,\"download\":61465,\"dragon\":63189,\"draw-polygon\":62958,\"droplet-slash\":62919,\"droplet\":61507,\"drum-steelpan\":62826,\"drum\":62825,\"drumstick-bite\":63191,\"dumbbell\":62539,\"dumpster-fire\":63380,\"dumpster\":63379,\"dungeon\":63193,\"e\":69,\"ear-deaf\":62116,\"ear-listen\":62114,\"earth-africa\":62844,\"earth-americas\":62845,\"earth-asia\":62846,\"earth-europe\":63394,\"earth-oceania\":58491,\"egg\":63483,\"eject\":61522,\"elevator\":57709,\"ellipsis-vertical\":61762,\"ellipsis\":61761,\"envelope-circle-check\":58600,\"envelope-open-text\":63064,\"envelope-open\":62134,\"envelope\":61664,\"envelopes-bulk\":63092,\"equals\":61,\"eraser\":61741,\"ethernet\":63382,\"euro-sign\":61779,\"exclamation\":33,\"expand\":61541,\"explosion\":58601,\"eye-dropper\":61947,\"eye-low-vision\":62120,\"eye-slash\":61552,\"eye\":61550,\"f\":70,\"face-angry\":62806,\"face-dizzy\":62823,\"face-flushed\":62841,\"face-frown-open\":62842,\"face-frown\":61721,\"face-grimace\":62847,\"face-grin-beam-sweat\":62851,\"face-grin-beam\":62850,\"face-grin-hearts\":62852,\"face-grin-squint-tears\":62854,\"face-grin-squint\":62853,\"face-grin-stars\":62855,\"face-grin-tears\":62856,\"face-grin-tongue-squint\":62858,\"face-grin-tongue-wink\":62859,\"face-grin-tongue\":62857,\"face-grin-wide\":62849,\"face-grin-wink\":62860,\"face-grin\":62848,\"face-kiss-beam\":62871,\"face-kiss-wink-heart\":62872,\"face-kiss\":62870,\"face-laugh-beam\":62874,\"face-laugh-squint\":62875,\"face-laugh-wink\":62876,\"face-laugh\":62873,\"face-meh-blank\":62884,\"face-meh\":61722,\"face-rolling-eyes\":62885,\"face-sad-cry\":62899,\"face-sad-tear\":62900,\"face-smile-beam\":62904,\"face-smile-wink\":62682,\"face-smile\":61720,\"face-surprise\":62914,\"face-tired\":62920,\"fan\":63587,\"faucet-drip\":57350,\"faucet\":57349,\"fax\":61868,\"feather-pointed\":62827,\"feather\":62765,\"ferry\":58602,\"file-arrow-down\":62829,\"file-arrow-up\":62836,\"file-audio\":61895,\"file-circle-check\":58784,\"file-circle-exclamation\":58603,\"file-circle-minus\":58605,\"file-circle-plus\":58516,\"file-circle-question\":58607,\"file-circle-xmark\":58785,\"file-code\":61897,\"file-contract\":62828,\"file-csv\":63197,\"file-excel\":61891,\"file-export\":62830,\"file-fragment\":59031,\"file-half-dashed\":59032,\"file-image\":61893,\"file-import\":62831,\"file-invoice-dollar\":62833,\"file-invoice\":62832,\"file-lines\":61788,\"file-medical\":62583,\"file-pdf\":61889,\"file-pen\":62236,\"file-powerpoint\":61892,\"file-prescription\":62834,\"file-shield\":58608,\"file-signature\":62835,\"file-video\":61896,\"file-waveform\":62584,\"file-word\":61890,\"file-zipper\":61894,\"file\":61787,\"fill-drip\":62838,\"fill\":62837,\"film\":61448,\"filter-circle-dollar\":63074,\"filter-circle-xmark\":57723,\"filter\":61616,\"fingerprint\":62839,\"fire-burner\":58609,\"fire-extinguisher\":61748,\"fire-flame-curved\":63460,\"fire-flame-simple\":62570,\"fire\":61549,\"fish-fins\":58610,\"fish\":62840,\"flag-checkered\":61726,\"flag-usa\":63309,\"flag\":61476,\"flask-vial\":58611,\"flask\":61635,\"floppy-disk\":61639,\"florin-sign\":57732,\"folder-closed\":57733,\"folder-minus\":63069,\"folder-open\":61564,\"folder-plus\":63070,\"folder-tree\":63490,\"folder\":61563,\"font-awesome\":62132,\"font\":61489,\"football\":62542,\"forward-fast\":61520,\"forward-step\":61521,\"forward\":61518,\"franc-sign\":57743,\"frog\":62766,\"futbol\":61923,\"g\":71,\"gamepad\":61723,\"gas-pump\":62767,\"gauge-high\":63013,\"gauge-simple-high\":63018,\"gauge-simple\":63017,\"gauge\":63012,\"gavel\":61667,\"gear\":61459,\"gears\":61573,\"gem\":62373,\"genderless\":61997,\"ghost\":63202,\"gift\":61547,\"gifts\":63388,\"glass-water-droplet\":58613,\"glass-water\":58612,\"glasses\":62768,\"globe\":61612,\"golf-ball-tee\":62544,\"gopuram\":63076,\"graduation-cap\":61853,\"greater-than-equal\":62770,\"greater-than\":62,\"grip-lines-vertical\":63397,\"grip-lines\":63396,\"grip-vertical\":62862,\"grip\":62861,\"group-arrows-rotate\":58614,\"guarani-sign\":57754,\"guitar\":63398,\"gun\":57755,\"h\":72,\"hammer\":63203,\"hamsa\":63077,\"hand-back-fist\":62037,\"hand-dots\":62561,\"hand-fist\":63198,\"hand-holding-dollar\":62656,\"hand-holding-droplet\":62657,\"hand-holding-hand\":58615,\"hand-holding-heart\":62654,\"hand-holding-medical\":57436,\"hand-holding\":62653,\"hand-lizard\":62040,\"hand-middle-finger\":63494,\"hand-peace\":62043,\"hand-point-down\":61607,\"hand-point-left\":61605,\"hand-point-right\":61604,\"hand-point-up\":61606,\"hand-pointer\":62042,\"hand-scissors\":62039,\"hand-sparkles\":57437,\"hand-spock\":62041,\"hand\":62038,\"handcuffs\":58616,\"hands-asl-interpreting\":62115,\"hands-bound\":58617,\"hands-bubbles\":57438,\"hands-clapping\":57768,\"hands-holding-child\":58618,\"hands-holding-circle\":58619,\"hands-holding\":62658,\"hands-praying\":63108,\"hands\":62119,\"handshake-angle\":62660,\"handshake-simple-slash\":57439,\"handshake-simple\":62662,\"handshake-slash\":57440,\"handshake\":62133,\"hanukiah\":63206,\"hard-drive\":61600,\"hashtag\":35,\"hat-cowboy-side\":63681,\"hat-cowboy\":63680,\"hat-wizard\":63208,\"head-side-cough-slash\":57442,\"head-side-cough\":57441,\"head-side-mask\":57443,\"head-side-virus\":57444,\"heading\":61916,\"headphones-simple\":62863,\"headphones\":61477,\"headset\":62864,\"heart-circle-bolt\":58620,\"heart-circle-check\":58621,\"heart-circle-exclamation\":58622,\"heart-circle-minus\":58623,\"heart-circle-plus\":58624,\"heart-circle-xmark\":58625,\"heart-crack\":63401,\"heart-pulse\":61982,\"heart\":61444,\"helicopter-symbol\":58626,\"helicopter\":62771,\"helmet-safety\":63495,\"helmet-un\":58627,\"hexagon-nodes-bolt\":59034,\"hexagon-nodes\":59033,\"highlighter\":62865,\"hill-avalanche\":58631,\"hill-rockslide\":58632,\"hippo\":63213,\"hockey-puck\":62547,\"holly-berry\":63402,\"horse-head\":63403,\"horse\":63216,\"hospital-user\":63501,\"hospital\":61688,\"hot-tub-person\":62867,\"hotdog\":63503,\"hotel\":62868,\"hourglass-end\":62035,\"hourglass-half\":62034,\"hourglass-start\":62033,\"hourglass\":62036,\"house-chimney-crack\":63217,\"house-chimney-medical\":63474,\"house-chimney-user\":57445,\"house-chimney-window\":57357,\"house-chimney\":58287,\"house-circle-check\":58633,\"house-circle-exclamation\":58634,\"house-circle-xmark\":58635,\"house-crack\":58289,\"house-fire\":58636,\"house-flag\":58637,\"house-flood-water-circle-arrow-right\":58639,\"house-flood-water\":58638,\"house-laptop\":57446,\"house-lock\":58640,\"house-medical-circle-check\":58641,\"house-medical-circle-exclamation\":58642,\"house-medical-circle-xmark\":58643,\"house-medical-flag\":58644,\"house-medical\":58290,\"house-signal\":57362,\"house-tsunami\":58645,\"house-user\":57776,\"house\":61461,\"hryvnia-sign\":63218,\"hurricane\":63313,\"i-cursor\":62022,\"i\":73,\"ice-cream\":63504,\"icicles\":63405,\"icons\":63597,\"id-badge\":62145,\"id-card-clip\":62591,\"id-card\":62146,\"igloo\":63406,\"image-portrait\":62432,\"image\":61502,\"images\":62210,\"inbox\":61468,\"indent\":61500,\"indian-rupee-sign\":57788,\"industry\":62069,\"infinity\":62772,\"info\":61737,\"italic\":61491,\"j\":74,\"jar-wheat\":58647,\"jar\":58646,\"jedi\":63081,\"jet-fighter-up\":58648,\"jet-fighter\":61691,\"joint\":62869,\"jug-detergent\":58649,\"k\":75,\"kaaba\":63083,\"key\":61572,\"keyboard\":61724,\"khanda\":63085,\"kip-sign\":57796,\"kit-medical\":62585,\"kitchen-set\":58650,\"kiwi-bird\":62773,\"l\":76,\"land-mine-on\":58651,\"landmark-dome\":63314,\"landmark-flag\":58652,\"landmark\":63087,\"language\":61867,\"laptop-code\":62972,\"laptop-file\":58653,\"laptop-medical\":63506,\"laptop\":61705,\"lari-sign\":57800,\"layer-group\":62973,\"leaf\":61548,\"left-long\":62218,\"left-right\":62263,\"lemon\":61588,\"less-than-equal\":62775,\"less-than\":60,\"life-ring\":61901,\"lightbulb\":61675,\"lines-leaning\":58654,\"link-slash\":61735,\"link\":61633,\"lira-sign\":61845,\"list-check\":61614,\"list-ol\":61643,\"list-ul\":61642,\"list\":61498,\"litecoin-sign\":57811,\"location-arrow\":61732,\"location-crosshairs\":62977,\"location-dot\":62405,\"location-pin-lock\":58655,\"location-pin\":61505,\"lock-open\":62401,\"lock\":61475,\"locust\":58656,\"lungs-virus\":57447,\"lungs\":62980,\"m\":77,\"magnet\":61558,\"magnifying-glass-arrow-right\":58657,\"magnifying-glass-chart\":58658,\"magnifying-glass-dollar\":63112,\"magnifying-glass-location\":63113,\"magnifying-glass-minus\":61456,\"magnifying-glass-plus\":61454,\"magnifying-glass\":61442,\"manat-sign\":57813,\"map-location-dot\":62880,\"map-location\":62879,\"map-pin\":62070,\"map\":62073,\"marker\":62881,\"mars-and-venus-burst\":58659,\"mars-and-venus\":61988,\"mars-double\":61991,\"mars-stroke-right\":61995,\"mars-stroke-up\":61994,\"mars-stroke\":61993,\"mars\":61986,\"martini-glass-citrus\":62817,\"martini-glass-empty\":61440,\"martini-glass\":62843,\"mask-face\":57815,\"mask-ventilator\":58660,\"mask\":63226,\"masks-theater\":63024,\"mattress-pillow\":58661,\"maximize\":62238,\"medal\":62882,\"memory\":62776,\"menorah\":63094,\"mercury\":61987,\"message\":62074,\"meteor\":63315,\"microchip\":62171,\"microphone-lines-slash\":62777,\"microphone-lines\":62409,\"microphone-slash\":61745,\"microphone\":61744,\"microscope\":62992,\"mill-sign\":57837,\"minimize\":63372,\"minus\":61544,\"mitten\":63413,\"mobile-button\":61707,\"mobile-retro\":58663,\"mobile-screen-button\":62413,\"mobile-screen\":62415,\"mobile\":62414,\"money-bill-1-wave\":62779,\"money-bill-1\":62417,\"money-bill-transfer\":58664,\"money-bill-trend-up\":58665,\"money-bill-wave\":62778,\"money-bill-wheat\":58666,\"money-bill\":61654,\"money-bills\":57843,\"money-check-dollar\":62781,\"money-check\":62780,\"monument\":62886,\"moon\":61830,\"mortar-pestle\":62887,\"mosque\":63096,\"mosquito-net\":58668,\"mosquito\":58667,\"motorcycle\":61980,\"mound\":58669,\"mountain-city\":58670,\"mountain-sun\":58671,\"mountain\":63228,\"mug-hot\":63414,\"mug-saucer\":61684,\"music\":61441,\"n\":78,\"naira-sign\":57846,\"network-wired\":63231,\"neuter\":61996,\"newspaper\":61930,\"not-equal\":62782,\"notdef\":57854,\"note-sticky\":62025,\"notes-medical\":62593,\"o\":79,\"object-group\":62023,\"object-ungroup\":62024,\"oil-can\":62995,\"oil-well\":58674,\"om\":63097,\"otter\":63232,\"outdent\":61499,\"p\":80,\"pager\":63509,\"paint-roller\":62890,\"paintbrush\":61948,\"palette\":62783,\"pallet\":62594,\"panorama\":57865,\"paper-plane\":61912,\"paperclip\":61638,\"parachute-box\":62669,\"paragraph\":61917,\"passport\":62891,\"paste\":61674,\"pause\":61516,\"paw\":61872,\"peace\":63100,\"pen-clip\":62213,\"pen-fancy\":62892,\"pen-nib\":62893,\"pen-ruler\":62894,\"pen-to-square\":61508,\"pen\":62212,\"pencil\":62211,\"people-arrows\":57448,\"people-carry-box\":62670,\"people-group\":58675,\"people-line\":58676,\"people-pulling\":58677,\"people-robbery\":58678,\"people-roof\":58679,\"pepper-hot\":63510,\"percent\":37,\"person-arrow-down-to-line\":58680,\"person-arrow-up-from-line\":58681,\"person-biking\":63562,\"person-booth\":63318,\"person-breastfeeding\":58682,\"person-burst\":58683,\"person-cane\":58684,\"person-chalkboard\":58685,\"person-circle-check\":58686,\"person-circle-exclamation\":58687,\"person-circle-minus\":58688,\"person-circle-plus\":58689,\"person-circle-question\":58690,\"person-circle-xmark\":58691,\"person-digging\":63582,\"person-dots-from-line\":62576,\"person-dress-burst\":58692,\"person-dress\":61826,\"person-drowning\":58693,\"person-falling-burst\":58695,\"person-falling\":58694,\"person-half-dress\":58696,\"person-harassing\":58697,\"person-hiking\":63212,\"person-military-pointing\":58698,\"person-military-rifle\":58699,\"person-military-to-person\":58700,\"person-praying\":63107,\"person-pregnant\":58142,\"person-rays\":58701,\"person-rifle\":58702,\"person-running\":63244,\"person-shelter\":58703,\"person-skating\":63429,\"person-skiing-nordic\":63434,\"person-skiing\":63433,\"person-snowboarding\":63438,\"person-swimming\":62916,\"person-through-window\":58793,\"person-walking-arrow-loop-left\":58705,\"person-walking-arrow-right\":58706,\"person-walking-dashed-line-arrow-right\":58707,\"person-walking-luggage\":58708,\"person-walking-with-cane\":62109,\"person-walking\":62804,\"person\":61827,\"peseta-sign\":57889,\"peso-sign\":57890,\"phone-flip\":63609,\"phone-slash\":62429,\"phone-volume\":62112,\"phone\":61589,\"photo-film\":63612,\"piggy-bank\":62675,\"pills\":62596,\"pizza-slice\":63512,\"place-of-worship\":63103,\"plane-arrival\":62895,\"plane-circle-check\":58709,\"plane-circle-exclamation\":58710,\"plane-circle-xmark\":58711,\"plane-departure\":62896,\"plane-lock\":58712,\"plane-slash\":57449,\"plane-up\":57901,\"plane\":61554,\"plant-wilt\":58794,\"plate-wheat\":58714,\"play\":61515,\"plug-circle-bolt\":58715,\"plug-circle-check\":58716,\"plug-circle-exclamation\":58717,\"plug-circle-minus\":58718,\"plug-circle-plus\":58719,\"plug-circle-xmark\":58720,\"plug\":61926,\"plus-minus\":58428,\"plus\":43,\"podcast\":62158,\"poo-storm\":63322,\"poo\":62206,\"poop\":63001,\"power-off\":61457,\"prescription-bottle-medical\":62598,\"prescription-bottle\":62597,\"prescription\":62897,\"print\":61487,\"pump-medical\":57450,\"pump-soap\":57451,\"puzzle-piece\":61742,\"q\":81,\"qrcode\":61481,\"question\":63,\"quote-left\":61709,\"quote-right\":61710,\"r\":82,\"radiation\":63417,\"radio\":63703,\"rainbow\":63323,\"ranking-star\":58721,\"receipt\":62787,\"record-vinyl\":63705,\"rectangle-ad\":63041,\"rectangle-list\":61474,\"rectangle-xmark\":62480,\"recycle\":61880,\"registered\":62045,\"repeat\":62307,\"reply-all\":61730,\"reply\":62437,\"republican\":63326,\"restroom\":63421,\"retweet\":61561,\"ribbon\":62678,\"right-from-bracket\":62197,\"right-left\":62306,\"right-long\":62219,\"right-to-bracket\":62198,\"ring\":63243,\"road-barrier\":58722,\"road-bridge\":58723,\"road-circle-check\":58724,\"road-circle-exclamation\":58725,\"road-circle-xmark\":58726,\"road-lock\":58727,\"road-spikes\":58728,\"road\":61464,\"robot\":62788,\"rocket\":61749,\"rotate-left\":62186,\"rotate-right\":62201,\"rotate\":62193,\"route\":62679,\"rss\":61598,\"ruble-sign\":61784,\"rug\":58729,\"ruler-combined\":62790,\"ruler-horizontal\":62791,\"ruler-vertical\":62792,\"ruler\":62789,\"rupee-sign\":61782,\"rupiah-sign\":57917,\"s\":83,\"sack-dollar\":63517,\"sack-xmark\":58730,\"sailboat\":58437,\"satellite-dish\":63424,\"satellite\":63423,\"scale-balanced\":62030,\"scale-unbalanced-flip\":62742,\"scale-unbalanced\":62741,\"school-circle-check\":58731,\"school-circle-exclamation\":58732,\"school-circle-xmark\":58733,\"school-flag\":58734,\"school-lock\":58735,\"school\":62793,\"scissors\":61636,\"screwdriver-wrench\":63449,\"screwdriver\":62794,\"scroll-torah\":63136,\"scroll\":63246,\"sd-card\":63426,\"section\":58439,\"seedling\":62680,\"server\":62003,\"shapes\":63007,\"share-from-square\":61773,\"share-nodes\":61920,\"share\":61540,\"sheet-plastic\":58737,\"shekel-sign\":61963,\"shield-cat\":58738,\"shield-dog\":58739,\"shield-halved\":62445,\"shield-heart\":58740,\"shield-virus\":57452,\"shield\":61746,\"ship\":61978,\"shirt\":62803,\"shoe-prints\":62795,\"shop-lock\":58533,\"shop-slash\":57456,\"shop\":62799,\"shower\":62156,\"shrimp\":58440,\"shuffle\":61556,\"shuttle-space\":61847,\"sign-hanging\":62681,\"signal\":61458,\"signature\":62903,\"signs-post\":62071,\"sim-card\":63428,\"sink\":57453,\"sitemap\":61672,\"skull-crossbones\":63252,\"skull\":62796,\"slash\":63253,\"sleigh\":63436,\"sliders\":61918,\"smog\":63327,\"smoking\":62605,\"snowflake\":62172,\"snowman\":63440,\"snowplow\":63442,\"soap\":57454,\"socks\":63126,\"solar-panel\":62906,\"sort-down\":61661,\"sort-up\":61662,\"sort\":61660,\"spa\":62907,\"spaghetti-monster-flying\":63099,\"spell-check\":63633,\"spider\":63255,\"spinner\":61712,\"splotch\":62908,\"spoon\":62181,\"spray-can-sparkles\":62928,\"spray-can\":62909,\"square-arrow-up-right\":61772,\"square-binary\":59035,\"square-caret-down\":61776,\"square-caret-left\":61841,\"square-caret-right\":61778,\"square-caret-up\":61777,\"square-check\":61770,\"square-envelope\":61849,\"square-full\":62556,\"square-h\":61693,\"square-minus\":61766,\"square-nfi\":58742,\"square-parking\":62784,\"square-pen\":61771,\"square-person-confined\":58743,\"square-phone-flip\":63611,\"square-phone\":61592,\"square-plus\":61694,\"square-poll-horizontal\":63106,\"square-poll-vertical\":63105,\"square-root-variable\":63128,\"square-rss\":61763,\"square-share-nodes\":61921,\"square-up-right\":62304,\"square-virus\":58744,\"square-xmark\":62163,\"square\":61640,\"staff-snake\":58745,\"stairs\":57993,\"stamp\":62911,\"stapler\":58799,\"star-and-crescent\":63129,\"star-half-stroke\":62912,\"star-half\":61577,\"star-of-david\":63130,\"star-of-life\":63009,\"star\":61445,\"sterling-sign\":61780,\"stethoscope\":61681,\"stop\":61517,\"stopwatch-20\":57455,\"stopwatch\":62194,\"store-slash\":57457,\"store\":62798,\"street-view\":61981,\"strikethrough\":61644,\"stroopwafel\":62801,\"subscript\":61740,\"suitcase-medical\":61690,\"suitcase-rolling\":62913,\"suitcase\":61682,\"sun-plant-wilt\":58746,\"sun\":61829,\"superscript\":61739,\"swatchbook\":62915,\"synagogue\":63131,\"syringe\":62606,\"t\":84,\"table-cells-column-lock\":59000,\"table-cells-large\":61449,\"table-cells-row-lock\":59002,\"table-cells-row-unlock\":59025,\"table-cells\":61450,\"table-columns\":61659,\"table-list\":61451,\"table-tennis-paddle-ball\":62557,\"table\":61646,\"tablet-button\":61706,\"tablet-screen-button\":62458,\"tablet\":62459,\"tablets\":62608,\"tachograph-digital\":62822,\"tag\":61483,\"tags\":61484,\"tape\":62683,\"tarp-droplet\":58748,\"tarp\":58747,\"taxi\":61882,\"teeth-open\":63023,\"teeth\":63022,\"temperature-arrow-down\":57407,\"temperature-arrow-up\":57408,\"temperature-empty\":62155,\"temperature-full\":62151,\"temperature-half\":62153,\"temperature-high\":63337,\"temperature-low\":63339,\"temperature-quarter\":62154,\"temperature-three-quarters\":62152,\"tenge-sign\":63447,\"tent-arrow-down-to-line\":58750,\"tent-arrow-left-right\":58751,\"tent-arrow-turn-left\":58752,\"tent-arrows-down\":58753,\"tent\":58749,\"tents\":58754,\"terminal\":61728,\"text-height\":61492,\"text-slash\":63613,\"text-width\":61493,\"thermometer\":62609,\"thumbs-down\":61797,\"thumbs-up\":61796,\"thumbtack-slash\":59023,\"thumbtack\":61581,\"ticket-simple\":62463,\"ticket\":61765,\"timeline\":58012,\"toggle-off\":61956,\"toggle-on\":61957,\"toilet-paper-slash\":57458,\"toilet-paper\":63262,\"toilet-portable\":58755,\"toilet\":63448,\"toilets-portable\":58756,\"toolbox\":62802,\"tooth\":62921,\"torii-gate\":63137,\"tornado\":63343,\"tower-broadcast\":62745,\"tower-cell\":58757,\"tower-observation\":58758,\"tractor\":63266,\"trademark\":62044,\"traffic-light\":63031,\"trailer\":57409,\"train-subway\":62009,\"train-tram\":58804,\"train\":62008,\"transgender\":61989,\"trash-arrow-up\":63529,\"trash-can-arrow-up\":63530,\"trash-can\":62189,\"trash\":61944,\"tree-city\":58759,\"tree\":61883,\"triangle-exclamation\":61553,\"trophy\":61585,\"trowel-bricks\":58762,\"trowel\":58761,\"truck-arrow-right\":58763,\"truck-droplet\":58764,\"truck-fast\":62603,\"truck-field-un\":58766,\"truck-field\":58765,\"truck-front\":58039,\"truck-medical\":61689,\"truck-monster\":63035,\"truck-moving\":62687,\"truck-pickup\":63036,\"truck-plane\":58767,\"truck-ramp-box\":62686,\"truck\":61649,\"tty\":61924,\"turkish-lira-sign\":58043,\"turn-down\":62398,\"turn-up\":62399,\"tv\":62060,\"u\":85,\"umbrella-beach\":62922,\"umbrella\":61673,\"underline\":61645,\"universal-access\":62106,\"unlock-keyhole\":61758,\"unlock\":61596,\"up-down-left-right\":61618,\"up-down\":62264,\"up-long\":62220,\"up-right-and-down-left-from-center\":62500,\"up-right-from-square\":62301,\"upload\":61587,\"user-astronaut\":62715,\"user-check\":62716,\"user-clock\":62717,\"user-doctor\":61680,\"user-gear\":62718,\"user-graduate\":62721,\"user-group\":62720,\"user-injured\":63272,\"user-large-slash\":62714,\"user-large\":62470,\"user-lock\":62722,\"user-minus\":62723,\"user-ninja\":62724,\"user-nurse\":63535,\"user-pen\":62719,\"user-plus\":62004,\"user-secret\":61979,\"user-shield\":62725,\"user-slash\":62726,\"user-tag\":62727,\"user-tie\":62728,\"user-xmark\":62005,\"user\":61447,\"users-between-lines\":58769,\"users-gear\":62729,\"users-line\":58770,\"users-rays\":58771,\"users-rectangle\":58772,\"users-slash\":57459,\"users-viewfinder\":58773,\"users\":61632,\"utensils\":62183,\"v\":86,\"van-shuttle\":62902,\"vault\":58053,\"vector-square\":62923,\"venus-double\":61990,\"venus-mars\":61992,\"venus\":61985,\"vest-patches\":57478,\"vest\":57477,\"vial-circle-check\":58774,\"vial-virus\":58775,\"vial\":62610,\"vials\":62611,\"video-slash\":62690,\"video\":61501,\"vihara\":63143,\"virus-covid-slash\":58537,\"virus-covid\":58536,\"virus-slash\":57461,\"virus\":57460,\"viruses\":57462,\"voicemail\":63639,\"volcano\":63344,\"volleyball\":62559,\"volume-high\":61480,\"volume-low\":61479,\"volume-off\":61478,\"volume-xmark\":63145,\"vr-cardboard\":63273,\"w\":87,\"walkie-talkie\":63727,\"wallet\":62805,\"wand-magic-sparkles\":58058,\"wand-magic\":61648,\"wand-sparkles\":63275,\"warehouse\":62612,\"water-ladder\":62917,\"water\":63347,\"wave-square\":63550,\"web-awesome\":59010,\"weight-hanging\":62925,\"weight-scale\":62614,\"wheat-awn-circle-exclamation\":58776,\"wheat-awn\":58061,\"wheelchair-move\":58062,\"wheelchair\":61843,\"whiskey-glass\":63392,\"wifi\":61931,\"wind\":63278,\"window-maximize\":62160,\"window-minimize\":62161,\"window-restore\":62162,\"wine-bottle\":63279,\"wine-glass-empty\":62926,\"wine-glass\":62691,\"won-sign\":61785,\"worm\":58777,\"wrench\":61613,\"x-ray\":62615,\"x\":88,\"xmark\":61453,\"xmarks-lines\":58778,\"y\":89,\"yen-sign\":61783,\"yin-yang\":63149,\"z\":90}"
  },
  {
    "path": "packages/fontawesome6/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontawesome6\",\n  \"version\": \"12.4.0\",\n  \"description\": \"Fontawesome6 font for react native vector icons\",\n  \"source\": \"./src/index.tsx\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\",\n    \"./fonts/*.ttf\": \"./fonts/*.ttf\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"fontawesome6\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/fontawesome6\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\",\n    \"@fortawesome/fontawesome-free\": \"6.7.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome6/react-native-vector-icons-fontawesome6.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-fontawesome6'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\nend\n"
  },
  {
    "path": "packages/fontawesome6/src/index.tsx",
    "content": "/* eslint-disable react/jsx-pascal-case, no-console */\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * Instead, modify the template in `fontawesome-common/generator`.\n *\n * FontAwesome6 icon set component.\n * Usage: <FontAwesome6 name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport type { ComponentProps } from 'react';\nimport { Platform, type TextStyle } from 'react-native';\n\nimport { createIconSet, DEFAULT_ICON_COLOR, DEFAULT_ICON_SIZE } from '@react-native-vector-icons/common';\n\nimport brandGM from '../glyphmaps/FontAwesome6_brand.json';\nimport regularGM from '../glyphmaps/FontAwesome6_regular.json';\nimport solidGM from '../glyphmaps/FontAwesome6_solid.json';\n\nimport metadata from '../glyphmaps/FontAwesome6_meta.json';\n\nconst glyphValidator = (glyph: string, iconType: keyof typeof metadata) => metadata[iconType]?.includes(glyph);\n\nconst fontStyle = (fontWeight: TextStyle['fontWeight']) =>\n  Platform.select({\n    ios: {\n      fontWeight,\n    },\n    default: {},\n  });\n\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst RegularIcon = createIconSet(regularGM, {\n  postScriptName: 'FontAwesome6Free-Regular',\n  fontFileName: 'FontAwesome6_Regular.ttf',\n  fontSource: require('../fonts/FontAwesome6_Regular.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require\n  fontStyle: fontStyle('400')\n});\nexport type FontAwesome6RegularIconName = keyof typeof regularGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst SolidIcon = createIconSet(solidGM, {\n  postScriptName: 'FontAwesome6Free-Solid',\n  fontFileName: 'FontAwesome6_Solid.ttf',\n  fontSource: require('../fonts/FontAwesome6_Solid.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require\n  fontStyle: fontStyle('900')\n});\nexport type FontAwesome6SolidIconName = keyof typeof solidGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst BrandIcon = createIconSet(brandGM, {\n  postScriptName: 'FontAwesome6Brands-Regular',\n  fontFileName: 'FontAwesome6_Brands.ttf',\n  fontSource: require('../fonts/FontAwesome6_Brands.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require\n  fontStyle: fontStyle('400')\n});\nexport type FontAwesome6BrandIconName = keyof typeof brandGM;\ntype Props =\n  | ({ iconStyle: 'regular' } & ComponentProps<typeof RegularIcon>)\n  | ({ iconStyle: 'solid' } & ComponentProps<typeof SolidIcon>)\n  | ({ iconStyle: 'brand' } & ComponentProps<typeof BrandIcon>)\n  | ({ iconStyle?: never } & ComponentProps<typeof RegularIcon>);\n\nexport const FontAwesome6 = (props: Props) => {\n  const { iconStyle, name } = props;\n  if (!iconStyle) {\n    if (!glyphValidator(name, 'regular')) {\n      console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for 'regular' icon type for FontAwesome6`);\n    }\n    return <RegularIcon {...props} />;\n  }\n\n  if (!glyphValidator(name, iconStyle)) {\n    console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for '${iconStyle}' icon type for FontAwesome6`);\n\n    return <RegularIcon {...(props as ComponentProps<typeof RegularIcon>)} />;\n  }\n\n  switch (iconStyle) {\n    case 'brand':\n      return <BrandIcon {...props} />;\n    case 'regular':\n      return <RegularIcon {...props} />;\n    case 'solid':\n      return <SolidIcon {...props} />;\n    default:\n      console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome6`);\n      return <RegularIcon {...(props as ComponentProps<typeof RegularIcon>)} />;\n  }\n};\n\ntype GetImageSourceFunc = {\n  (\n    iconStyle: 'brand',\n    name: ComponentProps<typeof BrandIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof BrandIcon)['getImageSource']>;\n  (\n    iconStyle: 'regular',\n    name: ComponentProps<typeof RegularIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof RegularIcon)['getImageSource']>;\n  (\n    iconStyle: 'solid',\n    name: ComponentProps<typeof SolidIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SolidIcon)['getImageSource']>;\n};\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst getImageSource: GetImageSourceFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => {\n  switch (iconStyle) {\n    case 'brand':\n      return BrandIcon.getImageSource(name as keyof typeof brandGM, size, color);\n    case 'regular':\n      return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color);\n    case 'solid':\n      return SolidIcon.getImageSource(name as keyof typeof solidGM, size, color);\n    default:\n      console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome6`);\n      return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color);\n  }\n};\nFontAwesome6.getImageSource = getImageSource;\n\ntype GetImageSourceSyncFunc = {\n  (\n    iconStyle: 'brand',\n    name: ComponentProps<typeof BrandIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof BrandIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'regular',\n    name: ComponentProps<typeof RegularIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof RegularIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'solid',\n    name: ComponentProps<typeof SolidIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SolidIcon)['getImageSourceSync']>;\n};\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst getImageSourceSync: GetImageSourceSyncFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => {\n  switch (iconStyle) {\n    case 'brand':\n      return BrandIcon.getImageSourceSync(name as keyof typeof brandGM, size, color);\n    case 'regular':\n      return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color);\n    case 'solid':\n      return SolidIcon.getImageSourceSync(name as keyof typeof solidGM, size, color);\n    default:\n      console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome6`);\n      return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color);\n  }\n};\nFontAwesome6.getImageSourceSync = getImageSourceSync;\n\nexport type FontAwesome6IconName = ComponentProps<typeof FontAwesome6>['name'];\n\n/** @alias */\nexport default FontAwesome6;\n"
  },
  {
    "path": "packages/fontawesome6/src/static.tsx",
    "content": "/* eslint-disable react/jsx-pascal-case, no-console */\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * Instead, modify the template in `fontawesome-common/generator`.\n *\n * FontAwesome6 icon set component.\n * Usage: <FontAwesome6 name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport type { ComponentProps } from 'react';\nimport { Platform, type TextStyle } from 'react-native';\n\nimport { createIconSet, DEFAULT_ICON_COLOR, DEFAULT_ICON_SIZE } from '@react-native-vector-icons/common';\n\nimport brandGM from '../glyphmaps/FontAwesome6_brand.json';\nimport regularGM from '../glyphmaps/FontAwesome6_regular.json';\nimport solidGM from '../glyphmaps/FontAwesome6_solid.json';\n\nimport metadata from '../glyphmaps/FontAwesome6_meta.json';\n\nconst glyphValidator = (glyph: string, iconType: keyof typeof metadata) => metadata[iconType]?.includes(glyph);\n\nconst fontStyle = (fontWeight: TextStyle['fontWeight']) =>\n  Platform.select({\n    ios: {\n      fontWeight,\n    },\n    default: {},\n  });\n\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst RegularIcon = createIconSet(regularGM, {\n  postScriptName: 'FontAwesome6Free-Regular',\n  fontFileName: 'FontAwesome6_Regular.ttf',\n  fontStyle: fontStyle('400')\n});\nexport type FontAwesome6RegularIconName = keyof typeof regularGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst SolidIcon = createIconSet(solidGM, {\n  postScriptName: 'FontAwesome6Free-Solid',\n  fontFileName: 'FontAwesome6_Solid.ttf',\n  fontStyle: fontStyle('900')\n});\nexport type FontAwesome6SolidIconName = keyof typeof solidGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst BrandIcon = createIconSet(brandGM, {\n  postScriptName: 'FontAwesome6Brands-Regular',\n  fontFileName: 'FontAwesome6_Brands.ttf',\n  fontStyle: fontStyle('400')\n});\nexport type FontAwesome6BrandIconName = keyof typeof brandGM;\ntype Props =\n  | ({ iconStyle: 'regular' } & ComponentProps<typeof RegularIcon>)\n  | ({ iconStyle: 'solid' } & ComponentProps<typeof SolidIcon>)\n  | ({ iconStyle: 'brand' } & ComponentProps<typeof BrandIcon>)\n  | ({ iconStyle?: never } & ComponentProps<typeof RegularIcon>);\n\nexport const FontAwesome6 = (props: Props) => {\n  const { iconStyle, name } = props;\n  if (!iconStyle) {\n    if (!glyphValidator(name, 'regular')) {\n      console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for 'regular' icon type for FontAwesome6`);\n    }\n    return <RegularIcon {...props} />;\n  }\n\n  if (!glyphValidator(name, iconStyle)) {\n    console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for '${iconStyle}' icon type for FontAwesome6`);\n\n    return <RegularIcon {...(props as ComponentProps<typeof RegularIcon>)} />;\n  }\n\n  switch (iconStyle) {\n    case 'brand':\n      return <BrandIcon {...props} />;\n    case 'regular':\n      return <RegularIcon {...props} />;\n    case 'solid':\n      return <SolidIcon {...props} />;\n    default:\n      console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome6`);\n      return <RegularIcon {...(props as ComponentProps<typeof RegularIcon>)} />;\n  }\n};\n\ntype GetImageSourceFunc = {\n  (\n    iconStyle: 'brand',\n    name: ComponentProps<typeof BrandIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof BrandIcon)['getImageSource']>;\n  (\n    iconStyle: 'regular',\n    name: ComponentProps<typeof RegularIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof RegularIcon)['getImageSource']>;\n  (\n    iconStyle: 'solid',\n    name: ComponentProps<typeof SolidIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SolidIcon)['getImageSource']>;\n};\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst getImageSource: GetImageSourceFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => {\n  switch (iconStyle) {\n    case 'brand':\n      return BrandIcon.getImageSource(name as keyof typeof brandGM, size, color);\n    case 'regular':\n      return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color);\n    case 'solid':\n      return SolidIcon.getImageSource(name as keyof typeof solidGM, size, color);\n    default:\n      console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome6`);\n      return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color);\n  }\n};\nFontAwesome6.getImageSource = getImageSource;\n\ntype GetImageSourceSyncFunc = {\n  (\n    iconStyle: 'brand',\n    name: ComponentProps<typeof BrandIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof BrandIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'regular',\n    name: ComponentProps<typeof RegularIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof RegularIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'solid',\n    name: ComponentProps<typeof SolidIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SolidIcon)['getImageSourceSync']>;\n};\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst getImageSourceSync: GetImageSourceSyncFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => {\n  switch (iconStyle) {\n    case 'brand':\n      return BrandIcon.getImageSourceSync(name as keyof typeof brandGM, size, color);\n    case 'regular':\n      return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color);\n    case 'solid':\n      return SolidIcon.getImageSourceSync(name as keyof typeof solidGM, size, color);\n    default:\n      console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome6`);\n      return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color);\n  }\n};\nFontAwesome6.getImageSourceSync = getImageSourceSync;\n\nexport type FontAwesome6IconName = ComponentProps<typeof FontAwesome6>['name'];\n\n/** @alias */\nexport default FontAwesome6;\n"
  },
  {
    "path": "packages/fontawesome6/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/fontawesome6/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome6-pro/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontawesome6-pro\",\n    \"className\": \"FontAwesome6Pro\",\n    \"commonPackage\": \"fontawesome-common/fontawesome6-pro\",\n    \"customSrc\": \"../../../../fontawesome-common/generators/app/templates/src/index.tsx\",\n    \"copyCustomFonts\": true,\n    \"customReadme\": true,\n    \"upstreamFont\": {\n      \"registry\": \"https://npm.fontawesome.com\",\n      \"packageName\": \"@fortawesome/fontawesome-pro\",\n      \"versionRange\": \"^6\",\n      \"versionOnly\": true\n    },\n    \"dependencies\": {\n      \"@react-native-vector-icons/fontawesome-common\": \"workspace:^\"\n    },\n    \"meta\": {\n      \"defaultStyleName\": \"regular\",\n      \"styleNames\": [\n        \"thin\",\n        \"light\",\n        \"regular\",\n        \"solid\",\n        \"sharpThin\",\n        \"sharpLight\",\n        \"sharp\",\n        \"sharpSolid\",\n        \"duotone\",\n        \"brand\"\n      ],\n      \"styles\": {\n        \"thin\": {\n          \"family\": \"FontAwesome6Pro-Thin\",\n          \"name\": \"FontAwesome6_Pro_Thin.ttf\",\n          \"weight\": 100\n        },\n        \"light\": {\n          \"family\": \"FontAwesome6Pro-Light\",\n          \"name\": \"FontAwesome6_Pro_Light.ttf\",\n          \"weight\": 300\n        },\n        \"regular\": {\n          \"family\": \"FontAwesome6Pro-Regular\",\n          \"name\": \"FontAwesome6_Pro_Regular.ttf\",\n          \"weight\": 400\n        },\n        \"solid\": {\n          \"family\": \"FontAwesome6Pro-Solid\",\n          \"name\": \"FontAwesome6_Pro_Solid.ttf\",\n          \"weight\": 900\n        },\n        \"sharpThin\": {\n          \"family\": \"FontAwesome6Sharp-Thin\",\n          \"name\": \"FontAwesome6_Pro_Sharp_Thin.ttf\",\n          \"weight\": 100\n        },\n        \"sharpLight\": {\n          \"family\": \"FontAwesome6Sharp-Light\",\n          \"name\": \"FontAwesome6_Pro_Sharp_Light.ttf\",\n          \"weight\": 300\n        },\n        \"sharp\": {\n          \"family\": \"FontAwesome6Sharp-Regular\",\n          \"name\": \"FontAwesome6_Pro_Sharp_Regular.ttf\",\n          \"weight\": 400\n        },\n        \"sharpSolid\": {\n          \"family\": \"FontAwesome6Sharp-Solid\",\n          \"name\": \"FontAwesome6_Pro_Sharp_Solid.ttf\",\n          \"weight\": 900\n        },\n        \"duotone\": {\n          \"family\": \"FontAwesome6Duotone-Solid\",\n          \"name\": \"FontAwesome6_Pro_Duotone.ttf\",\n          \"weight\": 900\n        },\n        \"brand\": {\n          \"family\": \"FontAwesome6Brands-Regular\",\n          \"name\": \"FontAwesome6_Pro_Brands.ttf\",\n          \"weight\": 400\n        }\n      }\n    },\n    \"buildSteps\": {\n      \"preScript\": {\n        \"script\": \"../fontawesome-common/scripts/fetch-pro.sh 6\"\n      },\n      \"glyphmap\": {\n        \"location\": \"fa/pro/css/all.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fa-\"\n      },\n      \"postScript\": {\n        \"script\": \"node ../fontawesome-common/scripts/generate-fontawesome-metadata --path fa/pro --output glyphmaps/FontAwesome6Pro_meta.json\\nrm -rf fa\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"12.0.0\",\n        \"upstream\": \"6.7.2\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome6-pro/CHANGELOG.md",
    "content": "## 12.4.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/fontawesome-common to 12.4.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.3.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/fontawesome-common to 12.3.2\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 12.3.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/fontawesome-common to 12.3.1\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.3.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 12.3.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/fontawesome-common to 12.3.0\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.2.0 (2025-08-03)\n\n### 🚀 Features\n\n- export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/fontawesome-common to 12.2.0\n- Updated @react-native-vector-icons/common to 12.3.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.1.0 (2025-07-12)\n\n### 🚀 Features\n\n- export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/fontawesome-common to 12.1.0\n- Updated @react-native-vector-icons/common to 12.1.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.2 (2025-06-15)\n\n### 🩹 Fixes\n\n- new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/fontawesome-common to 12.0.2\n- Updated @react-native-vector-icons/common to 12.0.2\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.1 (2025-06-15)\n\n### 🩹 Fixes\n\n- try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745))\n- update fontawesome fonts to new createIcon format so font loads in expo ([#1769](https://github.com/oblador/react-native-vector-icons/pull/1769))\n- remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767))\n- convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765))\n- updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c))\n- improve warning if glyph does not exist for default IconStyle in fontawesome fonts ([#1718](https://github.com/oblador/react-native-vector-icons/pull/1718))\n- **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742))\n- **fontawesome-common,fontawesome5-pro,fontawesome6-pro:** fix FA upgrade scripts (fixes: #1727) ([#1741](https://github.com/oblador/react-native-vector-icons/pull/1741), [#1727](https://github.com/oblador/react-native-vector-icons/issues/1727))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/fontawesome-common to 12.0.1\n- Updated @react-native-vector-icons/common to 12.0.1\n\n### ❤️ Thank You\n\n- Alexander Kucheryavenko @Red1tum\n- John Ferlito @johnf\n- Lukas @WookieFPV\n- Md. Jayed Hasan @JayedHasan232\n\n# 12.0.0 (2025-05-04)\n\n### 🚀 Features\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n- add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702))\n\n### 🩹 Fixes\n\n- upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691))\n- upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690))\n- mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99))\n\n### ⚠️  Breaking Changes\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n\n### ❤️ Thank You\n\n- Chanphirom Sok @chanphiromsok\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontawesome6-pro/README.md",
    "content": "# FontAwesome 6 Pro\n\n## Installing the Pro Fonts\n\nYou need your FontAwesome npm token which can be obtained by logging into your\naccount and then access the `Services` tab.\n\nRun `npx fa-upgrade6` and enter the token\nwhen asked to in order to upgrade to the Pro version. It will install the fonts\nin your repo in the `rnvi-fonts/fontawesome6-pro` directory. The top-level `rnvi-fonts` folder name can be customized by\nsetting it when executing the command: `npx fa-upgrade6 [destination]` and setting the `fontDir` in `package.json`.\n\n### Manually\n\nIf the shell script does not work you can install the Pro version manually.\nAll you really need to do is adding the Pro fonts to the `rnvi-fonts/fontawesome6-pro` directory.\n\n## Usage\n\nUsing the standard icons works just like the standard icons in this library.\n\n```javascript\nimport { FontAwesome6Pro } from \"@react-native-vector-icons/fontawesome6-pro\";\n\nconst icon = <FontAwesome6Pro name=\"comments\" />;\n```\n\nSomething special about the FontAwesome6Pro class is that you can also pass props\nto change the style of the icon:\n\n```javascript\nimport { FontAwesome6Pro } from \"@react-native-vector-icons/fontawesome6-pro\";\n\nconst icon = <FontAwesome6Pro name=\"comments\" iconStyle=\"solid\" />;\nconst icon = <FontAwesome6Pro name=\"git\" iconStyle=\"brand\" />;\n```\n\n**Valid types**\n\n| Type           | Description               |\n| -------------- | ------------------------- |\n| **brand**      | Uses the Brands font      |\n| **solid**      | Uses the Solid font       |\n| **light**      | Uses the Light font       |\n| **thin**       | Uses the Thin font        |\n| **duotone**    | Uses the Duotone font     |\n| **sharpSolid** | Uses the Sharp Solid font |\n| **sharpThin**  | Uses the Sharp Thin font  |\n| **sharpLight** | Uses the Sharp Light font |\n| **sharp**      | Uses the Sharp font       |\n\nNo specified type indicates Regular font.\n\n### getImageSource\n\n`getImageSource` works a little different due to its native backend and how the\nfont is separated into different files. An extra argument to specify the font\nstyle is required.\n\nUse this to select which style the generated image should have:\n\n```javascript\nimport { FontAwesome6Pro } from \"@react-native-vector-icons/fontawesome6-pro\";\n\nFontAwesome6Pro.getImageSource(\"solid\", \"comments\", 30, \"#000\").then((source) =>\n  this.setState({ image: source }),\n);\n```\n"
  },
  {
    "path": "packages/fontawesome6-pro/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.fontawesome6_pro\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFontAwesome6Pro\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.fontawesome6_pro\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-fontawesome6-pro\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome6-pro/fonts\"\n  eachFile { println \"(RNVI:fontawesome6-pro) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n\ntask copyExtraFonts(type: Copy) {\n  from \"${rootDir.parentFile.absolutePath}/rnvi-fonts/fontawesome6-pro\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontawesome6-pro/fonts\"\n  eachFile { println \"(RNVI:fontawesome6-pro) Copying custom font: ${it.file}\" }\n}\n\npreBuild.dependsOn(copyExtraFonts)\n"
  },
  {
    "path": "packages/fontawesome6-pro/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.fontawesome6_pro\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome6-pro/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/fontawesome6-pro/android/src/main/java/VectorIconsFontAwesome6ProPackage.kt",
    "content": "package com.reactnativevectoricons.fontawesome6_pro\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFontAwesome6ProPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/fontawesome6-pro/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro.json",
    "content": "{\n  \"0\": 48,\n  \"1\": 49,\n  \"2\": 50,\n  \"3\": 51,\n  \"4\": 52,\n  \"5\": 53,\n  \"6\": 54,\n  \"7\": 55,\n  \"8\": 56,\n  \"9\": 57,\n  \"100\": 58396,\n  \"fill-drip\": 62838,\n  \"arrows-to-circle\": 58557,\n  \"circle-chevron-right\": 61752,\n  \"chevron-circle-right\": 61752,\n  \"wagon-covered\": 63726,\n  \"line-height\": 63601,\n  \"bagel\": 58327,\n  \"transporter-7\": 58024,\n  \"at\": 64,\n  \"rectangles-mixed\": 58147,\n  \"phone-arrow-up-right\": 57892,\n  \"phone-arrow-up\": 57892,\n  \"phone-outgoing\": 57892,\n  \"trash-can\": 62189,\n  \"trash-alt\": 62189,\n  \"circle-l\": 57620,\n  \"head-side-goggles\": 63210,\n  \"head-vr\": 63210,\n  \"text-height\": 61492,\n  \"user-xmark\": 62005,\n  \"user-times\": 62005,\n  \"face-hand-yawn\": 58233,\n  \"gauge-simple-min\": 63021,\n  \"tachometer-slowest\": 63021,\n  \"stethoscope\": 61681,\n  \"coffin\": 63174,\n  \"message\": 62074,\n  \"comment-alt\": 62074,\n  \"salad\": 63518,\n  \"bowl-salad\": 63518,\n  \"info\": 61737,\n  \"robot-astromech\": 58066,\n  \"ring-diamond\": 58795,\n  \"fondue-pot\": 58381,\n  \"theta\": 63134,\n  \"face-hand-peeking\": 58497,\n  \"square-user\": 57987,\n  \"down-left-and-up-right-to-center\": 62498,\n  \"compress-alt\": 62498,\n  \"explosion\": 58601,\n  \"file-lines\": 61788,\n  \"file-alt\": 61788,\n  \"file-text\": 61788,\n  \"wave-square\": 63550,\n  \"ring\": 63243,\n  \"building-un\": 58585,\n  \"dice-three\": 62759,\n  \"tire-pressure-warning\": 63027,\n  \"wifi-fair\": 63147,\n  \"wifi-2\": 63147,\n  \"calendar-days\": 61555,\n  \"calendar-alt\": 61555,\n  \"mp3-player\": 63694,\n  \"anchor-circle-check\": 58538,\n  \"tally-4\": 58007,\n  \"rectangle-history\": 58530,\n  \"building-circle-arrow-right\": 58577,\n  \"volleyball\": 62559,\n  \"volleyball-ball\": 62559,\n  \"sun-haze\": 63333,\n  \"text-size\": 63636,\n  \"ufo\": 57415,\n  \"fork\": 62179,\n  \"utensil-fork\": 62179,\n  \"arrows-up-to-line\": 58562,\n  \"mobile-signal\": 57839,\n  \"barcode-scan\": 62565,\n  \"sort-down\": 61661,\n  \"sort-desc\": 61661,\n  \"folder-arrow-down\": 57427,\n  \"folder-download\": 57427,\n  \"circle-minus\": 61526,\n  \"minus-circle\": 61526,\n  \"face-icicles\": 58236,\n  \"shovel\": 63251,\n  \"door-open\": 62763,\n  \"films\": 57722,\n  \"right-from-bracket\": 62197,\n  \"sign-out-alt\": 62197,\n  \"face-glasses\": 58231,\n  \"nfc\": 57847,\n  \"atom\": 62930,\n  \"soap\": 57454,\n  \"icons\": 63597,\n  \"heart-music-camera-bolt\": 63597,\n  \"microphone-lines-slash\": 62777,\n  \"microphone-alt-slash\": 62777,\n  \"closed-captioning-slash\": 57653,\n  \"calculator-simple\": 63052,\n  \"calculator-alt\": 63052,\n  \"bridge-circle-check\": 58569,\n  \"sliders-up\": 62449,\n  \"sliders-v\": 62449,\n  \"location-minus\": 62985,\n  \"map-marker-minus\": 62985,\n  \"pump-medical\": 57450,\n  \"fingerprint\": 62839,\n  \"ski-boot\": 58316,\n  \"standard-definition\": 57994,\n  \"rectangle-sd\": 57994,\n  \"h1\": 62227,\n  \"hand-point-right\": 61604,\n  \"magnifying-glass-location\": 63113,\n  \"search-location\": 63113,\n  \"message-bot\": 58296,\n  \"forward-step\": 61521,\n  \"step-forward\": 61521,\n  \"face-smile-beam\": 62904,\n  \"smile-beam\": 62904,\n  \"light-ceiling\": 57366,\n  \"message-exclamation\": 62629,\n  \"comment-alt-exclamation\": 62629,\n  \"bowl-scoop\": 58334,\n  \"bowl-shaved-ice\": 58334,\n  \"square-x\": 57990,\n  \"building-memo\": 58910,\n  \"utility-pole-double\": 58052,\n  \"flag-checkered\": 61726,\n  \"chevrons-up\": 62245,\n  \"chevron-double-up\": 62245,\n  \"football\": 62542,\n  \"football-ball\": 62542,\n  \"user-vneck\": 58465,\n  \"school-circle-exclamation\": 58732,\n  \"crop\": 61733,\n  \"angles-down\": 61699,\n  \"angle-double-down\": 61699,\n  \"users-rectangle\": 58772,\n  \"people-roof\": 58679,\n  \"square-arrow-right\": 62267,\n  \"arrow-square-right\": 62267,\n  \"location-plus\": 62986,\n  \"map-marker-plus\": 62986,\n  \"lightbulb-exclamation-on\": 57802,\n  \"people-line\": 58676,\n  \"beer-mug-empty\": 61692,\n  \"beer\": 61692,\n  \"carpool\": 59036,\n  \"car-people\": 59036,\n  \"crate-empty\": 57681,\n  \"diagram-predecessor\": 58487,\n  \"transporter\": 57410,\n  \"calendar-circle-user\": 58481,\n  \"arrow-up-long\": 61814,\n  \"long-arrow-up\": 61814,\n  \"person-carry-box\": 62671,\n  \"person-carry\": 62671,\n  \"fire-flame-simple\": 62570,\n  \"burn\": 62570,\n  \"person\": 61827,\n  \"male\": 61827,\n  \"laptop\": 61705,\n  \"file-csv\": 63197,\n  \"menorah\": 63094,\n  \"union\": 63138,\n  \"chevrons-left\": 62243,\n  \"chevron-double-left\": 62243,\n  \"circle-heart\": 62663,\n  \"heart-circle\": 62663,\n  \"truck-plane\": 58767,\n  \"record-vinyl\": 63705,\n  \"bring-forward\": 63574,\n  \"square-p\": 57977,\n  \"face-grin-stars\": 62855,\n  \"grin-stars\": 62855,\n  \"sigma\": 63115,\n  \"camera-movie\": 63657,\n  \"bong\": 62812,\n  \"clarinet\": 63661,\n  \"truck-flatbed\": 58038,\n  \"spaghetti-monster-flying\": 63099,\n  \"pastafarianism\": 63099,\n  \"arrow-down-up-across-line\": 58543,\n  \"arrows-rotate-reverse\": 58928,\n  \"leaf-heart\": 62667,\n  \"house-building\": 57777,\n  \"cheese-swiss\": 63472,\n  \"spoon\": 62181,\n  \"utensil-spoon\": 62181,\n  \"jar-wheat\": 58647,\n  \"envelopes-bulk\": 63092,\n  \"mail-bulk\": 63092,\n  \"file-circle-exclamation\": 58603,\n  \"bow-arrow\": 63161,\n  \"cart-xmark\": 57565,\n  \"hexagon-xmark\": 62190,\n  \"times-hexagon\": 62190,\n  \"xmark-hexagon\": 62190,\n  \"circle-h\": 62590,\n  \"hospital-symbol\": 62590,\n  \"merge\": 58662,\n  \"pager\": 63509,\n  \"cart-minus\": 57563,\n  \"address-book\": 62137,\n  \"contact-book\": 62137,\n  \"pan-frying\": 58412,\n  \"grid\": 57749,\n  \"grid-3\": 57749,\n  \"football-helmet\": 62543,\n  \"hand-love\": 57765,\n  \"trees\": 63268,\n  \"strikethrough\": 61644,\n  \"page\": 58408,\n  \"k\": 75,\n  \"diagram-previous\": 58488,\n  \"gauge-min\": 63016,\n  \"tachometer-alt-slowest\": 63016,\n  \"folder-grid\": 57736,\n  \"eggplant\": 57708,\n  \"excavator\": 58966,\n  \"ram\": 63242,\n  \"landmark-flag\": 58652,\n  \"lips\": 62976,\n  \"pencil\": 62211,\n  \"pencil-alt\": 62211,\n  \"backward\": 61514,\n  \"caret-right\": 61658,\n  \"comments\": 61574,\n  \"paste\": 61674,\n  \"file-clipboard\": 61674,\n  \"desktop-arrow-down\": 57685,\n  \"code-pull-request\": 57660,\n  \"pumpkin\": 63239,\n  \"clipboard-list\": 62573,\n  \"pen-field\": 57873,\n  \"chart-sine\": 59037,\n  \"blueberries\": 58088,\n  \"truck-ramp-box\": 62686,\n  \"truck-loading\": 62686,\n  \"note\": 57855,\n  \"arrow-down-to-square\": 57494,\n  \"user-check\": 62716,\n  \"cloud-xmark\": 58207,\n  \"vial-virus\": 58775,\n  \"book-blank\": 62937,\n  \"book-alt\": 62937,\n  \"golf-flag-hole\": 58284,\n  \"message-arrow-down\": 57819,\n  \"comment-alt-arrow-down\": 57819,\n  \"face-unamused\": 58271,\n  \"sheet-plastic\": 58737,\n  \"circle-9\": 57590,\n  \"blog\": 63361,\n  \"user-ninja\": 62724,\n  \"pencil-slash\": 57877,\n  \"bowling-pins\": 62519,\n  \"person-arrow-up-from-line\": 58681,\n  \"down-right\": 57707,\n  \"scroll-torah\": 63136,\n  \"torah\": 63136,\n  \"webhook\": 58837,\n  \"blinds-open\": 63740,\n  \"fence\": 58115,\n  \"up\": 62295,\n  \"arrow-alt-up\": 62295,\n  \"broom-ball\": 62552,\n  \"quidditch\": 62552,\n  \"quidditch-broom-ball\": 62552,\n  \"drumstick\": 63190,\n  \"square-v\": 57988,\n  \"face-awesome\": 58377,\n  \"gave-dandy\": 58377,\n  \"dial-off\": 57698,\n  \"toggle-off\": 61956,\n  \"face-smile-horns\": 58257,\n  \"box-archive\": 61831,\n  \"archive\": 61831,\n  \"grapes\": 58118,\n  \"person-drowning\": 58693,\n  \"dial-max\": 57694,\n  \"circle-m\": 57621,\n  \"calendar-image\": 57556,\n  \"circle-caret-down\": 62253,\n  \"caret-circle-down\": 62253,\n  \"arrow-down-9-1\": 63622,\n  \"sort-numeric-desc\": 63622,\n  \"sort-numeric-down-alt\": 63622,\n  \"face-grin-tongue-squint\": 62858,\n  \"grin-tongue-squint\": 62858,\n  \"shish-kebab\": 63521,\n  \"spray-can\": 62909,\n  \"alarm-snooze\": 63557,\n  \"scarecrow\": 63245,\n  \"truck-monster\": 63035,\n  \"gift-card\": 63075,\n  \"w\": 87,\n  \"code-pull-request-draft\": 58362,\n  \"square-b\": 57956,\n  \"elephant\": 63194,\n  \"earth-africa\": 62844,\n  \"globe-africa\": 62844,\n  \"rainbow\": 63323,\n  \"circle-notch\": 61902,\n  \"tablet-screen-button\": 62458,\n  \"tablet-alt\": 62458,\n  \"paw\": 61872,\n  \"message-question\": 57827,\n  \"cloud\": 61634,\n  \"trowel-bricks\": 58762,\n  \"square-3\": 57944,\n  \"face-flushed\": 62841,\n  \"flushed\": 62841,\n  \"hospital-user\": 63501,\n  \"microwave\": 57371,\n  \"chf-sign\": 58882,\n  \"tent-arrow-left-right\": 58751,\n  \"cart-circle-arrow-up\": 58352,\n  \"trash-clock\": 58032,\n  \"reflect-both\": 58991,\n  \"gavel\": 61667,\n  \"legal\": 61667,\n  \"sprinkler-ceiling\": 58444,\n  \"browsers\": 57547,\n  \"trillium\": 58760,\n  \"table-cells-unlock\": 59026,\n  \"music-slash\": 63697,\n  \"truck-ramp\": 62688,\n  \"binoculars\": 61925,\n  \"microphone-slash\": 61745,\n  \"box-tissue\": 57435,\n  \"circle-c\": 57601,\n  \"star-christmas\": 63444,\n  \"chart-bullet\": 57569,\n  \"motorcycle\": 61980,\n  \"tree-christmas\": 63451,\n  \"tire-flat\": 63026,\n  \"sunglasses\": 63634,\n  \"badge\": 62261,\n  \"message-pen\": 62628,\n  \"comment-alt-edit\": 62628,\n  \"message-edit\": 62628,\n  \"bell-concierge\": 62818,\n  \"concierge-bell\": 62818,\n  \"pen-ruler\": 62894,\n  \"pencil-ruler\": 62894,\n  \"file-mp3\": 58952,\n  \"arrow-progress\": 58847,\n  \"chess-rook-piece\": 62536,\n  \"chess-rook-alt\": 62536,\n  \"square-root\": 63127,\n  \"album-collection-circle-plus\": 58510,\n  \"people-arrows\": 57448,\n  \"people-arrows-left-right\": 57448,\n  \"sign-post\": 58916,\n  \"face-angry-horns\": 58216,\n  \"mars-and-venus-burst\": 58659,\n  \"tombstone\": 63264,\n  \"square-caret-right\": 61778,\n  \"caret-square-right\": 61778,\n  \"scissors\": 61636,\n  \"cut\": 61636,\n  \"list-music\": 63689,\n  \"sun-plant-wilt\": 58746,\n  \"toilets-portable\": 58756,\n  \"hockey-puck\": 62547,\n  \"mustache\": 58812,\n  \"hyphen\": 45,\n  \"table\": 61646,\n  \"user-chef\": 58322,\n  \"message-image\": 57824,\n  \"comment-alt-image\": 57824,\n  \"users-medical\": 63536,\n  \"sensor-triangle-exclamation\": 57385,\n  \"sensor-alert\": 57385,\n  \"magnifying-glass-arrow-right\": 58657,\n  \"tachograph-digital\": 62822,\n  \"digital-tachograph\": 62822,\n  \"face-mask\": 58239,\n  \"pickleball\": 58421,\n  \"star-sharp-half\": 57996,\n  \"users-slash\": 57459,\n  \"clover\": 57657,\n  \"meat\": 63508,\n  \"reply\": 62437,\n  \"mail-reply\": 62437,\n  \"star-and-crescent\": 63129,\n  \"empty-set\": 63062,\n  \"house-fire\": 58636,\n  \"square-minus\": 61766,\n  \"minus-square\": 61766,\n  \"helicopter\": 62771,\n  \"bird\": 58473,\n  \"compass\": 61774,\n  \"square-caret-down\": 61776,\n  \"caret-square-down\": 61776,\n  \"heart-half-stroke\": 57772,\n  \"heart-half-alt\": 57772,\n  \"file-circle-question\": 58607,\n  \"truck-utensils\": 58920,\n  \"laptop-code\": 62972,\n  \"joystick\": 63685,\n  \"grill-fire\": 58788,\n  \"rectangle-vertical-history\": 57911,\n  \"swatchbook\": 62915,\n  \"prescription-bottle\": 62597,\n  \"bars\": 61641,\n  \"navicon\": 61641,\n  \"keyboard-left\": 57795,\n  \"people-group\": 58675,\n  \"hourglass-end\": 62035,\n  \"hourglass-3\": 62035,\n  \"heart-crack\": 63401,\n  \"heart-broken\": 63401,\n  \"face-beam-hand-over-mouth\": 58492,\n  \"droplet-percent\": 63312,\n  \"humidity\": 63312,\n  \"square-up-right\": 62304,\n  \"external-link-square-alt\": 62304,\n  \"face-kiss-beam\": 62871,\n  \"kiss-beam\": 62871,\n  \"corn\": 63175,\n  \"roller-coaster\": 58148,\n  \"photo-film-music\": 57896,\n  \"radar\": 57380,\n  \"sickle\": 63522,\n  \"film\": 61448,\n  \"coconut\": 58102,\n  \"ruler-horizontal\": 62791,\n  \"shield-cross\": 63250,\n  \"cassette-tape\": 63659,\n  \"square-terminal\": 58154,\n  \"people-robbery\": 58678,\n  \"lightbulb\": 61675,\n  \"caret-left\": 61657,\n  \"comment-middle\": 57673,\n  \"trash-can-list\": 58027,\n  \"block\": 58474,\n  \"circle-exclamation\": 61546,\n  \"exclamation-circle\": 61546,\n  \"school-circle-xmark\": 58733,\n  \"arrow-right-from-bracket\": 61579,\n  \"sign-out\": 61579,\n  \"face-frown-slight\": 58230,\n  \"circle-chevron-down\": 61754,\n  \"chevron-circle-down\": 61754,\n  \"sidebar-flip\": 57935,\n  \"unlock-keyhole\": 61758,\n  \"unlock-alt\": 61758,\n  \"temperature-list\": 58009,\n  \"cloud-showers-heavy\": 63296,\n  \"headphones-simple\": 62863,\n  \"headphones-alt\": 62863,\n  \"sitemap\": 61672,\n  \"pipe-section\": 58424,\n  \"space-station-moon-construction\": 57396,\n  \"space-station-moon-alt\": 57396,\n  \"circle-dollar-to-slot\": 62649,\n  \"donate\": 62649,\n  \"memory\": 62776,\n  \"face-sleeping\": 58253,\n  \"road-spikes\": 58728,\n  \"fire-burner\": 58609,\n  \"squirrel\": 63258,\n  \"arrow-up-to-line\": 62273,\n  \"arrow-to-top\": 62273,\n  \"flag\": 61476,\n  \"face-cowboy-hat\": 58222,\n  \"hanukiah\": 63206,\n  \"chart-scatter-3d\": 57576,\n  \"display-chart-up\": 58851,\n  \"square-code\": 57959,\n  \"feather\": 62765,\n  \"volume-low\": 61479,\n  \"volume-down\": 61479,\n  \"xmark-to-slot\": 63345,\n  \"times-to-slot\": 63345,\n  \"vote-nay\": 63345,\n  \"box-taped\": 62618,\n  \"box-alt\": 62618,\n  \"comment-slash\": 62643,\n  \"swords\": 63261,\n  \"cloud-sun-rain\": 63299,\n  \"album\": 63647,\n  \"circle-n\": 57624,\n  \"compress\": 61542,\n  \"wheat-awn\": 58061,\n  \"wheat-alt\": 58061,\n  \"ankh\": 63044,\n  \"hands-holding-child\": 58618,\n  \"asterisk\": 42,\n  \"key-skeleton-left-right\": 58292,\n  \"comment-lines\": 62640,\n  \"luchador-mask\": 62549,\n  \"luchador\": 62549,\n  \"mask-luchador\": 62549,\n  \"square-check\": 61770,\n  \"check-square\": 61770,\n  \"shredder\": 63114,\n  \"book-open-cover\": 57536,\n  \"book-open-alt\": 57536,\n  \"sandwich\": 63519,\n  \"peseta-sign\": 57889,\n  \"square-parking-slash\": 62999,\n  \"parking-slash\": 62999,\n  \"train-tunnel\": 58452,\n  \"heading\": 61916,\n  \"header\": 61916,\n  \"ghost\": 63202,\n  \"face-anguished\": 58217,\n  \"hockey-sticks\": 62548,\n  \"abacus\": 63040,\n  \"film-simple\": 62368,\n  \"film-alt\": 62368,\n  \"list\": 61498,\n  \"list-squares\": 61498,\n  \"tree-palm\": 63531,\n  \"square-phone-flip\": 63611,\n  \"phone-square-alt\": 63611,\n  \"user-beard-bolt\": 59017,\n  \"cart-plus\": 61975,\n  \"gamepad\": 61723,\n  \"border-center-v\": 63645,\n  \"circle-dot\": 61842,\n  \"dot-circle\": 61842,\n  \"clipboard-medical\": 57651,\n  \"face-dizzy\": 62823,\n  \"dizzy\": 62823,\n  \"egg\": 63483,\n  \"up-to-line\": 62285,\n  \"arrow-alt-to-top\": 62285,\n  \"house-medical-circle-xmark\": 58643,\n  \"watch-fitness\": 63038,\n  \"clock-nine-thirty\": 58189,\n  \"campground\": 63163,\n  \"folder-plus\": 63070,\n  \"jug\": 63686,\n  \"futbol\": 61923,\n  \"futbol-ball\": 61923,\n  \"soccer-ball\": 61923,\n  \"snow-blowing\": 63329,\n  \"paintbrush\": 61948,\n  \"paint-brush\": 61948,\n  \"lock\": 61475,\n  \"arrow-down-from-line\": 62277,\n  \"arrow-from-top\": 62277,\n  \"gas-pump\": 62767,\n  \"signal-bars-slash\": 63124,\n  \"signal-alt-slash\": 63124,\n  \"monkey\": 63227,\n  \"rectangle-pro\": 57909,\n  \"pro\": 57909,\n  \"house-night\": 57360,\n  \"hot-tub-person\": 62867,\n  \"hot-tub\": 62867,\n  \"globe-pointer\": 58894,\n  \"blanket\": 62616,\n  \"map-location\": 62879,\n  \"map-marked\": 62879,\n  \"house-flood-water\": 58638,\n  \"comments-question-check\": 57679,\n  \"tree\": 61883,\n  \"arrows-cross\": 57506,\n  \"backpack\": 62932,\n  \"square-small\": 57982,\n  \"folder-arrow-up\": 57428,\n  \"folder-upload\": 57428,\n  \"bridge-lock\": 58572,\n  \"crosshairs-simple\": 58783,\n  \"sack-dollar\": 63517,\n  \"pen-to-square\": 61508,\n  \"edit\": 61508,\n  \"square-sliders\": 62448,\n  \"sliders-h-square\": 62448,\n  \"car-side\": 62948,\n  \"message-middle-top\": 57826,\n  \"comment-middle-top-alt\": 57826,\n  \"lightbulb-on\": 63090,\n  \"knife\": 62180,\n  \"utensil-knife\": 62180,\n  \"share-nodes\": 61920,\n  \"share-alt\": 61920,\n  \"display-chart-up-circle-dollar\": 58854,\n  \"wave-sine\": 63641,\n  \"heart-circle-minus\": 58623,\n  \"circle-w\": 57644,\n  \"circle-calendar\": 57602,\n  \"calendar-circle\": 57602,\n  \"hourglass-half\": 62034,\n  \"hourglass-2\": 62034,\n  \"microscope\": 62992,\n  \"sunset\": 63335,\n  \"sink\": 57453,\n  \"calendar-exclamation\": 62260,\n  \"truck-container-empty\": 58037,\n  \"hand-heart\": 62652,\n  \"bag-shopping\": 62096,\n  \"shopping-bag\": 62096,\n  \"arrow-down-z-a\": 63617,\n  \"sort-alpha-desc\": 63617,\n  \"sort-alpha-down-alt\": 63617,\n  \"mitten\": 63413,\n  \"reply-clock\": 57913,\n  \"reply-time\": 57913,\n  \"person-rays\": 58701,\n  \"right\": 62294,\n  \"arrow-alt-right\": 62294,\n  \"circle-f\": 57614,\n  \"users\": 61632,\n  \"face-pleading\": 58246,\n  \"eye-slash\": 61552,\n  \"flask-vial\": 58611,\n  \"police-box\": 57377,\n  \"cucumber\": 58369,\n  \"head-side-brain\": 63496,\n  \"hand\": 62038,\n  \"hand-paper\": 62038,\n  \"person-biking-mountain\": 63563,\n  \"biking-mountain\": 63563,\n  \"utensils-slash\": 58468,\n  \"print-magnifying-glass\": 63514,\n  \"print-search\": 63514,\n  \"turn-right\": 58937,\n  \"folder-bookmark\": 57734,\n  \"arrow-turn-left-down\": 58931,\n  \"om\": 63097,\n  \"pi\": 63102,\n  \"flask-round-potion\": 63201,\n  \"flask-potion\": 63201,\n  \"face-shush\": 58252,\n  \"worm\": 58777,\n  \"house-circle-xmark\": 58635,\n  \"plug\": 61926,\n  \"calendar-circle-exclamation\": 58478,\n  \"square-i\": 57970,\n  \"chevron-up\": 61559,\n  \"face-saluting\": 58500,\n  \"gauge-simple-low\": 63020,\n  \"tachometer-slow\": 63020,\n  \"face-persevering\": 58245,\n  \"circle-camera\": 57603,\n  \"camera-circle\": 57603,\n  \"hand-spock\": 62041,\n  \"spider-web\": 63257,\n  \"circle-microphone\": 57622,\n  \"microphone-circle\": 57622,\n  \"book-arrow-up\": 57530,\n  \"popsicle\": 58430,\n  \"command\": 57666,\n  \"blinds\": 63739,\n  \"stopwatch\": 62194,\n  \"saxophone\": 63708,\n  \"square-2\": 57943,\n  \"field-hockey-stick-ball\": 62540,\n  \"field-hockey\": 62540,\n  \"arrow-up-square-triangle\": 63627,\n  \"sort-shapes-up-alt\": 63627,\n  \"face-scream\": 58251,\n  \"square-m\": 57974,\n  \"camera-web\": 63538,\n  \"webcam\": 63538,\n  \"comment-arrow-down\": 57667,\n  \"lightbulb-cfl\": 58790,\n  \"window-frame-open\": 57424,\n  \"face-kiss\": 62870,\n  \"kiss\": 62870,\n  \"bridge-circle-xmark\": 58571,\n  \"period\": 46,\n  \"face-grin-tongue\": 62857,\n  \"grin-tongue\": 62857,\n  \"up-to-dotted-line\": 58455,\n  \"thought-bubble\": 58158,\n  \"skeleton-ribs\": 58827,\n  \"raygun\": 57381,\n  \"flute\": 63673,\n  \"acorn\": 63150,\n  \"video-arrow-up-right\": 58057,\n  \"grate-droplet\": 57748,\n  \"seal-exclamation\": 57922,\n  \"chess-bishop\": 62522,\n  \"message-sms\": 57829,\n  \"coffee-beans\": 57663,\n  \"hat-witch\": 63207,\n  \"face-grin-wink\": 62860,\n  \"grin-wink\": 62860,\n  \"clock-three-thirty\": 58199,\n  \"ear-deaf\": 62116,\n  \"deaf\": 62116,\n  \"deafness\": 62116,\n  \"hard-of-hearing\": 62116,\n  \"alarm-clock\": 62286,\n  \"eclipse\": 63305,\n  \"face-relieved\": 58249,\n  \"road-circle-check\": 58724,\n  \"dice-five\": 62755,\n  \"octagon-minus\": 62216,\n  \"minus-octagon\": 62216,\n  \"square-rss\": 61763,\n  \"rss-square\": 61763,\n  \"face-zany\": 58276,\n  \"tricycle\": 58819,\n  \"land-mine-on\": 58651,\n  \"square-arrow-up-left\": 57955,\n  \"i-cursor\": 62022,\n  \"chart-mixed-up-circle-dollar\": 58841,\n  \"salt-shaker\": 58438,\n  \"stamp\": 62911,\n  \"file-plus\": 62233,\n  \"draw-square\": 62959,\n  \"toilet-paper-under-slash\": 58017,\n  \"toilet-paper-reverse-slash\": 58017,\n  \"stairs\": 57993,\n  \"drone-front\": 63584,\n  \"drone-alt\": 63584,\n  \"glass-empty\": 57745,\n  \"dial-high\": 57692,\n  \"user-helmet-safety\": 63532,\n  \"user-construction\": 63532,\n  \"user-hard-hat\": 63532,\n  \"i\": 73,\n  \"hryvnia-sign\": 63218,\n  \"hryvnia\": 63218,\n  \"arrow-down-left-and-arrow-up-right-to-center\": 57490,\n  \"pills\": 62596,\n  \"face-grin-wide\": 62849,\n  \"grin-alt\": 62849,\n  \"tooth\": 62921,\n  \"basketball-hoop\": 62517,\n  \"objects-align-bottom\": 58299,\n  \"v\": 86,\n  \"sparkles\": 63632,\n  \"squid\": 58448,\n  \"leafy-green\": 58397,\n  \"circle-arrow-up-right\": 57596,\n  \"calendars\": 57559,\n  \"bangladeshi-taka-sign\": 58086,\n  \"bicycle\": 61958,\n  \"hammer-war\": 63204,\n  \"circle-d\": 57604,\n  \"spider-black-widow\": 63256,\n  \"staff-snake\": 58745,\n  \"rod-asclepius\": 58745,\n  \"rod-snake\": 58745,\n  \"staff-aesculapius\": 58745,\n  \"pear\": 57868,\n  \"head-side-cough-slash\": 57442,\n  \"file-mov\": 58951,\n  \"triangle\": 62188,\n  \"apartment\": 58472,\n  \"truck-medical\": 61689,\n  \"ambulance\": 61689,\n  \"pepper\": 58418,\n  \"piano\": 63700,\n  \"gun-squirt\": 57757,\n  \"wheat-awn-circle-exclamation\": 58776,\n  \"snowman\": 63440,\n  \"user-alien\": 57418,\n  \"shield-check\": 62199,\n  \"mortar-pestle\": 62887,\n  \"road-barrier\": 58722,\n  \"chart-candlestick\": 57570,\n  \"briefcase-blank\": 57544,\n  \"school\": 62793,\n  \"igloo\": 63406,\n  \"bracket-round\": 40,\n  \"parenthesis\": 40,\n  \"joint\": 62869,\n  \"horse-saddle\": 63683,\n  \"mug-marshmallows\": 63415,\n  \"filters\": 57726,\n  \"bell-on\": 63738,\n  \"angle-right\": 61701,\n  \"dial-med\": 57695,\n  \"horse\": 63216,\n  \"q\": 81,\n  \"monitor-waveform\": 62993,\n  \"monitor-heart-rate\": 62993,\n  \"link-simple\": 57805,\n  \"whistle\": 62560,\n  \"g\": 71,\n  \"wine-glass-crack\": 62651,\n  \"fragile\": 62651,\n  \"slot-machine\": 58318,\n  \"notes-medical\": 62593,\n  \"car-wash\": 62950,\n  \"escalator\": 57713,\n  \"comment-image\": 57672,\n  \"temperature-half\": 62153,\n  \"temperature-2\": 62153,\n  \"thermometer-2\": 62153,\n  \"thermometer-half\": 62153,\n  \"dong-sign\": 57705,\n  \"donut\": 58374,\n  \"doughnut\": 58374,\n  \"capsules\": 62571,\n  \"poo-storm\": 63322,\n  \"poo-bolt\": 63322,\n  \"tally-1\": 58004,\n  \"file-vector\": 58956,\n  \"face-frown-open\": 62842,\n  \"frown-open\": 62842,\n  \"square-dashed\": 57961,\n  \"bag-shopping-plus\": 58961,\n  \"square-j\": 57971,\n  \"hand-point-up\": 61606,\n  \"money-bill\": 61654,\n  \"arrow-up-big-small\": 63630,\n  \"sort-size-up\": 63630,\n  \"barcode-read\": 62564,\n  \"baguette\": 58328,\n  \"bowl-soft-serve\": 58475,\n  \"face-holding-back-tears\": 58498,\n  \"square-up\": 62291,\n  \"arrow-alt-square-up\": 62291,\n  \"train-subway-tunnel\": 58019,\n  \"subway-tunnel\": 58019,\n  \"square-exclamation\": 62241,\n  \"exclamation-square\": 62241,\n  \"semicolon\": 59,\n  \"bookmark\": 61486,\n  \"fan-table\": 57348,\n  \"align-justify\": 61497,\n  \"battery-low\": 57521,\n  \"battery-1\": 57521,\n  \"credit-card-front\": 62346,\n  \"brain-arrow-curved-right\": 63095,\n  \"mind-share\": 63095,\n  \"umbrella-beach\": 62922,\n  \"helmet-un\": 58627,\n  \"location-smile\": 62989,\n  \"map-marker-smile\": 62989,\n  \"arrow-left-to-line\": 62270,\n  \"arrow-to-left\": 62270,\n  \"bullseye\": 61760,\n  \"sushi\": 58506,\n  \"nigiri\": 58506,\n  \"message-captions\": 57822,\n  \"comment-alt-captions\": 57822,\n  \"trash-list\": 58033,\n  \"bacon\": 63461,\n  \"option\": 58136,\n  \"raccoon\": 58899,\n  \"hand-point-down\": 61607,\n  \"arrow-up-from-bracket\": 57498,\n  \"head-side-gear\": 58897,\n  \"trash-plus\": 58034,\n  \"file-cad\": 58994,\n  \"objects-align-top\": 58304,\n  \"folder\": 61563,\n  \"folder-blank\": 61563,\n  \"face-anxious-sweat\": 58218,\n  \"credit-card-blank\": 62345,\n  \"file-waveform\": 62584,\n  \"file-medical-alt\": 62584,\n  \"microchip-ai\": 57836,\n  \"mug\": 63604,\n  \"plane-up-slash\": 57902,\n  \"radiation\": 63417,\n  \"pen-circle\": 57870,\n  \"bag-seedling\": 58866,\n  \"chart-simple\": 58483,\n  \"crutches\": 63480,\n  \"circle-parking\": 62997,\n  \"parking-circle\": 62997,\n  \"mars-stroke\": 61993,\n  \"leaf-oak\": 63223,\n  \"square-bolt\": 57957,\n  \"vial\": 62610,\n  \"gauge\": 63012,\n  \"dashboard\": 63012,\n  \"gauge-med\": 63012,\n  \"tachometer-alt-average\": 63012,\n  \"wand-magic-sparkles\": 58058,\n  \"magic-wand-sparkles\": 58058,\n  \"lambda\": 63086,\n  \"e\": 69,\n  \"pizza\": 63511,\n  \"bowl-chopsticks-noodles\": 58090,\n  \"h3\": 62229,\n  \"pen-clip\": 62213,\n  \"pen-alt\": 62213,\n  \"bridge-circle-exclamation\": 58570,\n  \"badge-percent\": 63046,\n  \"rotate-reverse\": 58929,\n  \"user\": 61447,\n  \"sensor\": 57384,\n  \"comma\": 44,\n  \"school-circle-check\": 58731,\n  \"toilet-paper-under\": 58016,\n  \"toilet-paper-reverse\": 58016,\n  \"light-emergency\": 58399,\n  \"arrow-down-to-arc\": 58542,\n  \"dumpster\": 63379,\n  \"van-shuttle\": 62902,\n  \"shuttle-van\": 62902,\n  \"building-user\": 58586,\n  \"light-switch\": 57367,\n  \"square-caret-left\": 61841,\n  \"caret-square-left\": 61841,\n  \"highlighter\": 62865,\n  \"wave-pulse\": 62968,\n  \"heart-rate\": 62968,\n  \"key\": 61572,\n  \"arrow-left-to-bracket\": 58985,\n  \"hat-santa\": 63399,\n  \"tamale\": 58449,\n  \"box-check\": 62567,\n  \"bullhorn\": 61601,\n  \"steak\": 63524,\n  \"location-crosshairs-slash\": 62979,\n  \"location-slash\": 62979,\n  \"person-dolly\": 62672,\n  \"globe\": 61612,\n  \"synagogue\": 63131,\n  \"file-chart-column\": 63065,\n  \"file-chart-line\": 63065,\n  \"person-half-dress\": 58696,\n  \"folder-image\": 57738,\n  \"calendar-pen\": 62259,\n  \"calendar-edit\": 62259,\n  \"road-bridge\": 58723,\n  \"face-smile-tear\": 58259,\n  \"message-plus\": 62632,\n  \"comment-alt-plus\": 62632,\n  \"location-arrow\": 61732,\n  \"c\": 67,\n  \"tablet-button\": 61706,\n  \"person-dress-fairy\": 58887,\n  \"rectangle-history-circle-user\": 58532,\n  \"building-lock\": 58582,\n  \"chart-line-up\": 57573,\n  \"mailbox\": 63507,\n  \"sign-posts\": 58917,\n  \"truck-bolt\": 58320,\n  \"pizza-slice\": 63512,\n  \"money-bill-wave\": 62778,\n  \"chart-area\": 61950,\n  \"area-chart\": 61950,\n  \"house-flag\": 58637,\n  \"circle-three-quarters-stroke\": 58836,\n  \"person-circle-minus\": 58688,\n  \"scalpel\": 63005,\n  \"ban\": 61534,\n  \"cancel\": 61534,\n  \"bell-exclamation\": 63560,\n  \"circle-bookmark\": 57600,\n  \"bookmark-circle\": 57600,\n  \"egg-fried\": 63484,\n  \"face-weary\": 58273,\n  \"uniform-martial-arts\": 58321,\n  \"camera-rotate\": 57560,\n  \"sun-dust\": 63332,\n  \"comment-text\": 57677,\n  \"spray-can-sparkles\": 62928,\n  \"air-freshener\": 62928,\n  \"signal-bars\": 63120,\n  \"signal-alt\": 63120,\n  \"signal-alt-4\": 63120,\n  \"signal-bars-strong\": 63120,\n  \"diamond-exclamation\": 58373,\n  \"star\": 61445,\n  \"dial-min\": 57697,\n  \"repeat\": 62307,\n  \"cross\": 63060,\n  \"page-caret-down\": 58409,\n  \"file-caret-down\": 58409,\n  \"box\": 62566,\n  \"venus-mars\": 61992,\n  \"clock-seven-thirty\": 58193,\n  \"arrow-pointer\": 62021,\n  \"mouse-pointer\": 62021,\n  \"clock-four-thirty\": 58187,\n  \"signal-bars-good\": 63123,\n  \"signal-alt-3\": 63123,\n  \"cactus\": 63655,\n  \"lightbulb-gear\": 58877,\n  \"maximize\": 62238,\n  \"expand-arrows-alt\": 62238,\n  \"charging-station\": 62951,\n  \"shapes\": 63007,\n  \"triangle-circle-square\": 63007,\n  \"plane-tail\": 57900,\n  \"gauge-simple-max\": 63019,\n  \"tachometer-fastest\": 63019,\n  \"circle-u\": 57639,\n  \"shield-slash\": 57931,\n  \"square-phone-hangup\": 57978,\n  \"phone-square-down\": 57978,\n  \"arrow-up-left\": 57501,\n  \"transporter-1\": 57411,\n  \"peanuts\": 58417,\n  \"shuffle\": 61556,\n  \"random\": 61556,\n  \"person-running\": 63244,\n  \"running\": 63244,\n  \"mobile-retro\": 58663,\n  \"grip-lines-vertical\": 63397,\n  \"bin-bottles-recycle\": 58870,\n  \"arrow-up-from-square\": 57500,\n  \"file-dashed-line\": 63607,\n  \"page-break\": 63607,\n  \"bracket-curly-right\": 125,\n  \"spider\": 63255,\n  \"clock-three\": 58198,\n  \"hands-bound\": 58617,\n  \"scalpel-line-dashed\": 63006,\n  \"scalpel-path\": 63006,\n  \"file-invoice-dollar\": 62833,\n  \"pipe-smoking\": 58308,\n  \"face-astonished\": 58219,\n  \"window\": 62478,\n  \"plane-circle-exclamation\": 58710,\n  \"ear\": 62960,\n  \"file-lock\": 58278,\n  \"diagram-venn\": 57690,\n  \"arrow-down-from-bracket\": 58983,\n  \"x-ray\": 62615,\n  \"goal-net\": 58283,\n  \"coffin-cross\": 57425,\n  \"octopus\": 59016,\n  \"spell-check\": 63633,\n  \"location-xmark\": 62990,\n  \"map-marker-times\": 62990,\n  \"map-marker-xmark\": 62990,\n  \"circle-quarter-stroke\": 58835,\n  \"lasso\": 63688,\n  \"slash\": 63253,\n  \"person-to-portal\": 57378,\n  \"portal-enter\": 57378,\n  \"calendar-star\": 63286,\n  \"computer-mouse\": 63692,\n  \"mouse\": 63692,\n  \"arrow-right-to-bracket\": 61584,\n  \"sign-in\": 61584,\n  \"pegasus\": 63235,\n  \"files-medical\": 63485,\n  \"cannon\": 58946,\n  \"nfc-lock\": 57848,\n  \"person-ski-lift\": 63432,\n  \"ski-lift\": 63432,\n  \"square-6\": 57947,\n  \"shop-slash\": 57456,\n  \"store-alt-slash\": 57456,\n  \"wind-turbine\": 63643,\n  \"sliders-simple\": 57939,\n  \"grid-round\": 58842,\n  \"badge-sheriff\": 63650,\n  \"server\": 62003,\n  \"virus-covid-slash\": 58537,\n  \"intersection\": 63080,\n  \"shop-lock\": 58533,\n  \"family\": 58112,\n  \"hourglass-start\": 62033,\n  \"hourglass-1\": 62033,\n  \"user-hair-buns\": 58323,\n  \"blender-phone\": 63158,\n  \"hourglass-clock\": 58395,\n  \"person-seat-reclined\": 57887,\n  \"paper-plane-top\": 57866,\n  \"paper-plane-alt\": 57866,\n  \"send\": 57866,\n  \"message-arrow-up\": 57820,\n  \"comment-alt-arrow-up\": 57820,\n  \"lightbulb-exclamation\": 63089,\n  \"layer-minus\": 62974,\n  \"layer-group-minus\": 62974,\n  \"chart-pie-simple-circle-currency\": 58884,\n  \"circle-e\": 57609,\n  \"building-wheat\": 58587,\n  \"gauge-max\": 63014,\n  \"tachometer-alt-fastest\": 63014,\n  \"person-breastfeeding\": 58682,\n  \"apostrophe\": 39,\n  \"file-png\": 58982,\n  \"fire-hydrant\": 57727,\n  \"right-to-bracket\": 62198,\n  \"sign-in-alt\": 62198,\n  \"video-plus\": 62689,\n  \"square-right\": 62290,\n  \"arrow-alt-square-right\": 62290,\n  \"comment-smile\": 62644,\n  \"venus\": 61985,\n  \"passport\": 62891,\n  \"thumbtack-slash\": 59023,\n  \"thumb-tack-slash\": 59023,\n  \"inbox-in\": 62224,\n  \"inbox-arrow-down\": 62224,\n  \"heart-pulse\": 61982,\n  \"heartbeat\": 61982,\n  \"circle-8\": 57589,\n  \"clouds-moon\": 63301,\n  \"clock-ten-thirty\": 58197,\n  \"people-carry-box\": 62670,\n  \"people-carry\": 62670,\n  \"folder-user\": 57742,\n  \"trash-can-xmark\": 58030,\n  \"temperature-high\": 63337,\n  \"microchip\": 62171,\n  \"left-long-to-line\": 58398,\n  \"crown\": 62753,\n  \"weight-hanging\": 62925,\n  \"xmarks-lines\": 58778,\n  \"file-prescription\": 62834,\n  \"table-cells-lock\": 59001,\n  \"calendar-range\": 57558,\n  \"flower-daffodil\": 63488,\n  \"hand-back-point-up\": 57762,\n  \"weight-scale\": 62614,\n  \"weight\": 62614,\n  \"arrow-up-to-arc\": 58903,\n  \"star-exclamation\": 62195,\n  \"books\": 62939,\n  \"user-group\": 62720,\n  \"user-friends\": 62720,\n  \"arrow-up-a-z\": 61790,\n  \"sort-alpha-up\": 61790,\n  \"layer-plus\": 62975,\n  \"layer-group-plus\": 62975,\n  \"play-pause\": 57903,\n  \"block-question\": 58333,\n  \"snooze\": 63616,\n  \"zzz\": 63616,\n  \"scanner-image\": 63731,\n  \"tv-retro\": 62465,\n  \"square-t\": 57984,\n  \"farm\": 63588,\n  \"barn-silo\": 63588,\n  \"chess-knight\": 62529,\n  \"bars-sort\": 57518,\n  \"pallet-boxes\": 62595,\n  \"palette-boxes\": 62595,\n  \"pallet-alt\": 62595,\n  \"face-laugh-squint\": 62875,\n  \"laugh-squint\": 62875,\n  \"code-simple\": 57661,\n  \"bolt-slash\": 57528,\n  \"panel-fire\": 58415,\n  \"binary-circle-check\": 58172,\n  \"comment-minus\": 62641,\n  \"burrito\": 63469,\n  \"violin\": 63725,\n  \"objects-column\": 58305,\n  \"square-chevron-down\": 62249,\n  \"chevron-square-down\": 62249,\n  \"comment-plus\": 62642,\n  \"triangle-instrument\": 63714,\n  \"triangle-music\": 63714,\n  \"wheelchair\": 61843,\n  \"user-pilot-tie\": 58049,\n  \"piano-keyboard\": 63701,\n  \"bed-empty\": 63737,\n  \"circle-arrow-up\": 61610,\n  \"arrow-circle-up\": 61610,\n  \"toggle-on\": 61957,\n  \"rectangle-vertical\": 62203,\n  \"rectangle-portrait\": 62203,\n  \"person-walking\": 62804,\n  \"walking\": 62804,\n  \"l\": 76,\n  \"signal-stream\": 63709,\n  \"down-to-bracket\": 58599,\n  \"circle-z\": 57648,\n  \"stars\": 63330,\n  \"fire\": 61549,\n  \"bed-pulse\": 62599,\n  \"procedures\": 62599,\n  \"house-day\": 57358,\n  \"shuttle-space\": 61847,\n  \"space-shuttle\": 61847,\n  \"shirt-long-sleeve\": 58311,\n  \"chart-pie-simple\": 63054,\n  \"chart-pie-alt\": 63054,\n  \"face-laugh\": 62873,\n  \"laugh\": 62873,\n  \"folder-open\": 61564,\n  \"album-collection-circle-user\": 58511,\n  \"candy\": 58343,\n  \"bowl-hot\": 63523,\n  \"soup\": 63523,\n  \"flatbread\": 58379,\n  \"heart-circle-plus\": 58624,\n  \"code-fork\": 57659,\n  \"city\": 63055,\n  \"signal-bars-weak\": 63121,\n  \"signal-alt-1\": 63121,\n  \"microphone-lines\": 62409,\n  \"microphone-alt\": 62409,\n  \"clock-twelve\": 58200,\n  \"pepper-hot\": 63510,\n  \"citrus-slice\": 58101,\n  \"sheep\": 63249,\n  \"unlock\": 61596,\n  \"colon-sign\": 57664,\n  \"headset\": 62864,\n  \"badger-honey\": 63156,\n  \"h4\": 63594,\n  \"store-slash\": 57457,\n  \"road-circle-xmark\": 58726,\n  \"signal-slash\": 63125,\n  \"user-minus\": 62723,\n  \"mars-stroke-up\": 61994,\n  \"mars-stroke-v\": 61994,\n  \"champagne-glasses\": 63391,\n  \"glass-cheers\": 63391,\n  \"taco\": 63526,\n  \"hexagon-plus\": 62208,\n  \"plus-hexagon\": 62208,\n  \"clipboard\": 62248,\n  \"house-circle-exclamation\": 58634,\n  \"file-arrow-up\": 62836,\n  \"file-upload\": 62836,\n  \"wifi\": 61931,\n  \"wifi-3\": 61931,\n  \"wifi-strong\": 61931,\n  \"messages\": 62646,\n  \"comments-alt\": 62646,\n  \"bath\": 62157,\n  \"bathtub\": 62157,\n  \"umbrella-simple\": 58044,\n  \"umbrella-alt\": 58044,\n  \"rectangle-history-circle-plus\": 58531,\n  \"underline\": 61645,\n  \"prescription-bottle-pill\": 58816,\n  \"user-pen\": 62719,\n  \"user-edit\": 62719,\n  \"binary-slash\": 58174,\n  \"square-o\": 57976,\n  \"caduceus\": 59009,\n  \"signature\": 62903,\n  \"stroopwafel\": 62801,\n  \"bold\": 61490,\n  \"anchor-lock\": 58541,\n  \"building-ngo\": 58583,\n  \"transporter-3\": 57413,\n  \"engine-warning\": 62962,\n  \"engine-exclamation\": 62962,\n  \"circle-down-right\": 57608,\n  \"square-k\": 57972,\n  \"manat-sign\": 57813,\n  \"money-check-pen\": 63602,\n  \"money-check-edit\": 63602,\n  \"not-equal\": 62782,\n  \"border-top-left\": 63571,\n  \"border-style\": 63571,\n  \"map-location-dot\": 62880,\n  \"map-marked-alt\": 62880,\n  \"tilde\": 126,\n  \"jedi\": 63081,\n  \"square-poll-vertical\": 63105,\n  \"poll\": 63105,\n  \"arrow-down-square-triangle\": 63625,\n  \"sort-shapes-down-alt\": 63625,\n  \"mug-hot\": 63414,\n  \"dog-leashed\": 63188,\n  \"car-battery\": 62943,\n  \"battery-car\": 62943,\n  \"face-downcast-sweat\": 58225,\n  \"mailbox-flag-up\": 58811,\n  \"memo-circle-info\": 58522,\n  \"gift\": 61547,\n  \"dice-two\": 62760,\n  \"volume\": 63144,\n  \"volume-medium\": 63144,\n  \"transporter-5\": 58022,\n  \"gauge-circle-bolt\": 58518,\n  \"coin-front\": 58364,\n  \"file-slash\": 58279,\n  \"message-arrow-up-right\": 57821,\n  \"treasure-chest\": 63267,\n  \"chess-queen\": 62533,\n  \"paintbrush-fine\": 62889,\n  \"paint-brush-alt\": 62889,\n  \"paint-brush-fine\": 62889,\n  \"paintbrush-alt\": 62889,\n  \"glasses\": 62768,\n  \"hood-cloak\": 63215,\n  \"square-quote\": 58153,\n  \"up-left\": 58045,\n  \"bring-front\": 63575,\n  \"chess-board\": 62524,\n  \"burger-cheese\": 63473,\n  \"cheeseburger\": 63473,\n  \"building-circle-check\": 58578,\n  \"repeat-1\": 62309,\n  \"arrow-down-to-line\": 62269,\n  \"arrow-to-bottom\": 62269,\n  \"grid-5\": 57753,\n  \"swap-arrows\": 58890,\n  \"right-long-to-line\": 58436,\n  \"person-chalkboard\": 58685,\n  \"mars-stroke-right\": 61995,\n  \"mars-stroke-h\": 61995,\n  \"hand-back-fist\": 62037,\n  \"hand-rock\": 62037,\n  \"grid-round-5\": 58846,\n  \"tally\": 63132,\n  \"tally-5\": 63132,\n  \"square-caret-up\": 61777,\n  \"caret-square-up\": 61777,\n  \"cloud-showers-water\": 58596,\n  \"chart-bar\": 61568,\n  \"bar-chart\": 61568,\n  \"hands-bubbles\": 57438,\n  \"hands-wash\": 57438,\n  \"less-than-equal\": 62775,\n  \"train\": 62008,\n  \"up-from-dotted-line\": 58454,\n  \"eye-low-vision\": 62120,\n  \"low-vision\": 62120,\n  \"traffic-light-go\": 63032,\n  \"face-exhaling\": 58496,\n  \"sensor-fire\": 57386,\n  \"user-unlock\": 57432,\n  \"hexagon-divide\": 57773,\n  \"00\": 58471,\n  \"crow\": 62752,\n  \"cassette-betamax\": 63652,\n  \"betamax\": 63652,\n  \"sailboat\": 58437,\n  \"window-restore\": 62162,\n  \"nfc-magnifying-glass\": 57849,\n  \"file-binary\": 57717,\n  \"circle-v\": 57642,\n  \"square-plus\": 61694,\n  \"plus-square\": 61694,\n  \"bowl-scoops\": 58335,\n  \"mistletoe\": 63412,\n  \"custard\": 58371,\n  \"lacrosse-stick\": 58293,\n  \"hockey-mask\": 63214,\n  \"sunrise\": 63334,\n  \"subtitles\": 58895,\n  \"panel-ews\": 58414,\n  \"torii-gate\": 63137,\n  \"cloud-exclamation\": 58513,\n  \"message-lines\": 62630,\n  \"comment-alt-lines\": 62630,\n  \"frog\": 62766,\n  \"bucket\": 58575,\n  \"floppy-disk-pen\": 57730,\n  \"image\": 61502,\n  \"window-frame\": 57423,\n  \"microphone\": 61744,\n  \"cow\": 63176,\n  \"file-zip\": 58862,\n  \"square-ring\": 58447,\n  \"down-from-line\": 62281,\n  \"arrow-alt-from-top\": 62281,\n  \"caret-up\": 61656,\n  \"shield-xmark\": 57932,\n  \"shield-times\": 57932,\n  \"screwdriver\": 62794,\n  \"circle-sort-down\": 57393,\n  \"sort-circle-down\": 57393,\n  \"folder-closed\": 57733,\n  \"house-tsunami\": 58645,\n  \"square-nfi\": 58742,\n  \"forklift\": 62586,\n  \"arrow-up-from-ground-water\": 58549,\n  \"bracket-square-right\": 93,\n  \"martini-glass\": 62843,\n  \"glass-martini-alt\": 62843,\n  \"square-binary\": 59035,\n  \"rotate-left\": 62186,\n  \"rotate-back\": 62186,\n  \"rotate-backward\": 62186,\n  \"undo-alt\": 62186,\n  \"table-columns\": 61659,\n  \"columns\": 61659,\n  \"square-a\": 57951,\n  \"tick\": 58159,\n  \"lemon\": 61588,\n  \"head-side-mask\": 57443,\n  \"handshake\": 62133,\n  \"gem\": 62373,\n  \"dolly\": 62578,\n  \"dolly-box\": 62578,\n  \"smoking\": 62605,\n  \"minimize\": 63372,\n  \"compress-arrows-alt\": 63372,\n  \"refrigerator\": 57382,\n  \"monument\": 62886,\n  \"octagon-xmark\": 62192,\n  \"times-octagon\": 62192,\n  \"xmark-octagon\": 62192,\n  \"align-slash\": 63558,\n  \"snowplow\": 63442,\n  \"angles-right\": 61697,\n  \"angle-double-right\": 61697,\n  \"truck-ramp-couch\": 62685,\n  \"truck-couch\": 62685,\n  \"cannabis\": 62815,\n  \"circle-play\": 61764,\n  \"play-circle\": 61764,\n  \"arrow-up-right-and-arrow-down-left-from-center\": 57504,\n  \"location-arrow-up\": 58938,\n  \"tablets\": 62608,\n  \"360-degrees\": 58076,\n  \"ethernet\": 63382,\n  \"euro-sign\": 61779,\n  \"eur\": 61779,\n  \"euro\": 61779,\n  \"chair\": 63168,\n  \"circle-check\": 61528,\n  \"check-circle\": 61528,\n  \"square-dashed-circle-plus\": 58818,\n  \"hand-holding-circle-dollar\": 58913,\n  \"money-simple-from-bracket\": 58131,\n  \"bat\": 63157,\n  \"circle-stop\": 62093,\n  \"stop-circle\": 62093,\n  \"head-side-headphones\": 63682,\n  \"phone-rotary\": 63699,\n  \"arrow-up-to-bracket\": 58986,\n  \"compass-drafting\": 62824,\n  \"drafting-compass\": 62824,\n  \"plate-wheat\": 58714,\n  \"calendar-circle-minus\": 58479,\n  \"chopsticks\": 58359,\n  \"car-wrench\": 62947,\n  \"car-mechanic\": 62947,\n  \"icicles\": 63405,\n  \"person-shelter\": 58703,\n  \"neuter\": 61996,\n  \"id-badge\": 62145,\n  \"kazoo\": 63687,\n  \"marker\": 62881,\n  \"bin-bottles\": 58869,\n  \"face-laugh-beam\": 62874,\n  \"laugh-beam\": 62874,\n  \"square-arrow-down-left\": 57953,\n  \"battery-bolt\": 62326,\n  \"tree-large\": 63453,\n  \"helicopter-symbol\": 58626,\n  \"aperture\": 58079,\n  \"universal-access\": 62106,\n  \"gear-complex\": 58857,\n  \"file-magnifying-glass\": 63589,\n  \"file-search\": 63589,\n  \"up-right\": 58046,\n  \"circle-chevron-up\": 61753,\n  \"chevron-circle-up\": 61753,\n  \"user-police\": 58163,\n  \"lari-sign\": 57800,\n  \"volcano\": 63344,\n  \"teddy-bear\": 58319,\n  \"stocking\": 63445,\n  \"person-walking-dashed-line-arrow-right\": 58707,\n  \"image-slash\": 57783,\n  \"mask-snorkel\": 58295,\n  \"smoke\": 63328,\n  \"sterling-sign\": 61780,\n  \"gbp\": 61780,\n  \"pound-sign\": 61780,\n  \"battery-exclamation\": 57520,\n  \"viruses\": 57462,\n  \"square-person-confined\": 58743,\n  \"user-tie\": 62728,\n  \"up-to-bracket\": 58990,\n  \"arrow-down-long\": 61813,\n  \"long-arrow-down\": 61813,\n  \"tent-arrow-down-to-line\": 58750,\n  \"certificate\": 61603,\n  \"crystal-ball\": 58210,\n  \"reply-all\": 61730,\n  \"mail-reply-all\": 61730,\n  \"suitcase\": 61682,\n  \"person-skating\": 63429,\n  \"skating\": 63429,\n  \"star-shooting\": 57398,\n  \"binary-lock\": 58173,\n  \"filter-circle-dollar\": 63074,\n  \"funnel-dollar\": 63074,\n  \"camera-retro\": 61571,\n  \"circle-arrow-down\": 61611,\n  \"arrow-circle-down\": 61611,\n  \"comment-pen\": 62638,\n  \"comment-edit\": 62638,\n  \"file-import\": 62831,\n  \"arrow-right-to-file\": 62831,\n  \"banjo\": 63651,\n  \"square-arrow-up-right\": 61772,\n  \"external-link-square\": 61772,\n  \"light-emergency-on\": 58400,\n  \"kerning\": 63599,\n  \"box-open\": 62622,\n  \"square-f\": 57968,\n  \"scroll\": 63246,\n  \"spa\": 62907,\n  \"arrow-left-from-line\": 62276,\n  \"arrow-from-right\": 62276,\n  \"strawberry\": 58155,\n  \"location-pin-lock\": 58655,\n  \"pause\": 61516,\n  \"clock-eight-thirty\": 58182,\n  \"plane-engines\": 62430,\n  \"plane-alt\": 62430,\n  \"hill-avalanche\": 58631,\n  \"temperature-empty\": 62155,\n  \"temperature-0\": 62155,\n  \"thermometer-0\": 62155,\n  \"thermometer-empty\": 62155,\n  \"bomb\": 61922,\n  \"gauge-low\": 63015,\n  \"tachometer-alt-slow\": 63015,\n  \"registered\": 62045,\n  \"trash-can-plus\": 58028,\n  \"address-card\": 62139,\n  \"contact-card\": 62139,\n  \"vcard\": 62139,\n  \"chart-fft\": 59038,\n  \"scale-unbalanced-flip\": 62742,\n  \"balance-scale-right\": 62742,\n  \"globe-snow\": 63395,\n  \"subscript\": 61740,\n  \"diamond-turn-right\": 62955,\n  \"directions\": 62955,\n  \"integral\": 63079,\n  \"burst\": 58588,\n  \"house-laptop\": 57446,\n  \"laptop-house\": 57446,\n  \"face-tired\": 62920,\n  \"tired\": 62920,\n  \"money-bills\": 57843,\n  \"blinds-raised\": 63741,\n  \"smog\": 63327,\n  \"ufo-beam\": 57416,\n  \"hydra\": 59014,\n  \"circle-caret-up\": 62257,\n  \"caret-circle-up\": 62257,\n  \"user-vneck-hair-long\": 58467,\n  \"square-a-lock\": 58445,\n  \"crutch\": 63479,\n  \"gas-pump-slash\": 62964,\n  \"cloud-arrow-up\": 61678,\n  \"cloud-upload\": 61678,\n  \"cloud-upload-alt\": 61678,\n  \"palette\": 62783,\n  \"transporter-4\": 58021,\n  \"chart-mixed-up-circle-currency\": 58840,\n  \"objects-align-right\": 58303,\n  \"arrows-turn-right\": 58560,\n  \"vest\": 57477,\n  \"pig\": 63238,\n  \"inbox-full\": 57786,\n  \"circle-envelope\": 57612,\n  \"envelope-circle\": 57612,\n  \"triangle-person-digging\": 63581,\n  \"construction\": 63581,\n  \"ferry\": 58602,\n  \"bullseye-arrow\": 63048,\n  \"arrows-down-to-people\": 58553,\n  \"seedling\": 62680,\n  \"sprout\": 62680,\n  \"clock-seven\": 58192,\n  \"left-right\": 62263,\n  \"arrows-alt-h\": 62263,\n  \"boxes-packing\": 58567,\n  \"circle-arrow-left\": 61608,\n  \"arrow-circle-left\": 61608,\n  \"flashlight\": 63672,\n  \"file-jpg\": 58950,\n  \"group-arrows-rotate\": 58614,\n  \"bowl-food\": 58566,\n  \"square-9\": 57950,\n  \"candy-cane\": 63366,\n  \"arrow-down-wide-short\": 61792,\n  \"sort-amount-asc\": 61792,\n  \"sort-amount-down\": 61792,\n  \"square-dollar\": 62185,\n  \"dollar-square\": 62185,\n  \"usd-square\": 62185,\n  \"phone-arrow-right\": 58814,\n  \"hand-holding-seedling\": 62655,\n  \"message-check\": 62626,\n  \"comment-alt-check\": 62626,\n  \"cloud-bolt\": 63340,\n  \"thunderstorm\": 63340,\n  \"chart-line-up-down\": 58839,\n  \"text-slash\": 63613,\n  \"remove-format\": 63613,\n  \"watch\": 62177,\n  \"circle-down-left\": 57607,\n  \"text\": 63635,\n  \"projector\": 63702,\n  \"face-smile-wink\": 62682,\n  \"smile-wink\": 62682,\n  \"tombstone-blank\": 63265,\n  \"tombstone-alt\": 63265,\n  \"chess-king-piece\": 62528,\n  \"chess-king-alt\": 62528,\n  \"circle-6\": 57587,\n  \"waves-sine\": 58973,\n  \"left\": 62293,\n  \"arrow-alt-left\": 62293,\n  \"file-word\": 61890,\n  \"file-powerpoint\": 61892,\n  \"square-down\": 62288,\n  \"arrow-alt-square-down\": 62288,\n  \"objects-align-center-vertical\": 58301,\n  \"arrows-left-right\": 61566,\n  \"arrows-h\": 61566,\n  \"house-lock\": 58640,\n  \"cloud-arrow-down\": 61677,\n  \"cloud-download\": 61677,\n  \"cloud-download-alt\": 61677,\n  \"wreath\": 63458,\n  \"children\": 58593,\n  \"meter-droplet\": 57834,\n  \"chalkboard\": 62747,\n  \"blackboard\": 62747,\n  \"user-large-slash\": 62714,\n  \"user-alt-slash\": 62714,\n  \"signal-strong\": 63119,\n  \"signal-4\": 63119,\n  \"lollipop\": 58404,\n  \"lollypop\": 58404,\n  \"list-tree\": 57810,\n  \"envelope-open\": 62134,\n  \"draw-circle\": 62957,\n  \"cat-space\": 57345,\n  \"handshake-simple-slash\": 57439,\n  \"handshake-alt-slash\": 57439,\n  \"rabbit-running\": 63241,\n  \"rabbit-fast\": 63241,\n  \"memo-pad\": 57818,\n  \"mattress-pillow\": 58661,\n  \"alarm-plus\": 63556,\n  \"alicorn\": 63152,\n  \"comment-question\": 57675,\n  \"gingerbread-man\": 63389,\n  \"guarani-sign\": 57754,\n  \"burger-fries\": 57549,\n  \"mug-tea\": 63605,\n  \"border-top\": 63573,\n  \"arrows-rotate\": 61473,\n  \"refresh\": 61473,\n  \"sync\": 61473,\n  \"circle-book-open\": 57599,\n  \"book-circle\": 57599,\n  \"arrows-to-dotted-line\": 57510,\n  \"fire-extinguisher\": 61748,\n  \"magnifying-glass-arrows-rotate\": 58974,\n  \"garage-open\": 57355,\n  \"shelves-empty\": 57926,\n  \"cruzeiro-sign\": 57682,\n  \"watch-apple\": 58059,\n  \"watch-calculator\": 63728,\n  \"list-dropdown\": 57807,\n  \"cabinet-filing\": 63051,\n  \"burger-soda\": 63576,\n  \"square-arrow-up\": 62268,\n  \"arrow-square-up\": 62268,\n  \"greater-than-equal\": 62770,\n  \"pallet-box\": 57864,\n  \"face-confounded\": 58220,\n  \"shield-halved\": 62445,\n  \"shield-alt\": 62445,\n  \"truck-plow\": 63454,\n  \"book-atlas\": 62808,\n  \"atlas\": 62808,\n  \"virus\": 57460,\n  \"grid-round-2\": 58843,\n  \"comment-middle-top\": 57674,\n  \"wave\": 58971,\n  \"envelope-circle-check\": 58600,\n  \"layer-group\": 62973,\n  \"restroom-simple\": 57914,\n  \"arrows-to-dot\": 58558,\n  \"border-outer\": 63569,\n  \"hashtag-lock\": 58389,\n  \"clock-two-thirty\": 58203,\n  \"archway\": 62807,\n  \"heart-circle-check\": 58621,\n  \"house-chimney-crack\": 63217,\n  \"house-damage\": 63217,\n  \"file-zipper\": 61894,\n  \"file-archive\": 61894,\n  \"ticket-perforated\": 58942,\n  \"heart-half\": 57771,\n  \"comment-check\": 62636,\n  \"square\": 61640,\n  \"memo\": 57816,\n  \"martini-glass-empty\": 61440,\n  \"glass-martini\": 61440,\n  \"couch\": 62648,\n  \"cedi-sign\": 57567,\n  \"italic\": 61491,\n  \"glass-citrus\": 63593,\n  \"calendar-lines-pen\": 58482,\n  \"table-cells-column-lock\": 59000,\n  \"church\": 62749,\n  \"person-snowmobiling\": 63441,\n  \"snowmobile\": 63441,\n  \"face-hushed\": 58235,\n  \"comments-dollar\": 63059,\n  \"tickets-simple\": 58969,\n  \"pickaxe\": 58815,\n  \"link-simple-slash\": 57806,\n  \"democrat\": 63303,\n  \"face-confused\": 58221,\n  \"pinball\": 57897,\n  \"z\": 90,\n  \"person-skiing\": 63433,\n  \"skiing\": 63433,\n  \"deer\": 63374,\n  \"input-pipe\": 57790,\n  \"road-lock\": 58727,\n  \"a\": 65,\n  \"bookmark-slash\": 57538,\n  \"temperature-arrow-down\": 57407,\n  \"temperature-down\": 57407,\n  \"mace\": 63224,\n  \"feather-pointed\": 62827,\n  \"feather-alt\": 62827,\n  \"sausage\": 63520,\n  \"trash-can-clock\": 58026,\n  \"p\": 80,\n  \"broom-wide\": 58833,\n  \"snowflake\": 62172,\n  \"stomach\": 63011,\n  \"newspaper\": 61930,\n  \"rectangle-ad\": 63041,\n  \"ad\": 63041,\n  \"guitar-electric\": 63678,\n  \"arrow-turn-down-right\": 58326,\n  \"moon-cloud\": 63316,\n  \"bread-slice-butter\": 58337,\n  \"circle-arrow-right\": 61609,\n  \"arrow-circle-right\": 61609,\n  \"user-group-crown\": 63141,\n  \"users-crown\": 63141,\n  \"circle-i\": 57617,\n  \"toilet-paper-check\": 58802,\n  \"filter-circle-xmark\": 57723,\n  \"locust\": 58656,\n  \"sort\": 61660,\n  \"unsorted\": 61660,\n  \"list-ol\": 61643,\n  \"list-1-2\": 61643,\n  \"list-numeric\": 61643,\n  \"chart-waterfall\": 57579,\n  \"sparkle\": 58838,\n  \"face-party\": 58243,\n  \"kidneys\": 62971,\n  \"wifi-exclamation\": 58063,\n  \"chart-network\": 63370,\n  \"person-dress-burst\": 58692,\n  \"dice-d4\": 63184,\n  \"money-check-dollar\": 62781,\n  \"money-check-alt\": 62781,\n  \"vector-square\": 62923,\n  \"bread-slice\": 63468,\n  \"language\": 61867,\n  \"wheat-awn-slash\": 58168,\n  \"face-kiss-wink-heart\": 62872,\n  \"kiss-wink-heart\": 62872,\n  \"dagger\": 63179,\n  \"podium\": 63104,\n  \"diamonds-4\": 59019,\n  \"memo-circle-check\": 57817,\n  \"route-highway\": 63002,\n  \"down-to-line\": 62282,\n  \"arrow-alt-to-bottom\": 62282,\n  \"filter\": 61616,\n  \"square-g\": 57969,\n  \"circle-phone\": 57627,\n  \"phone-circle\": 57627,\n  \"clipboard-prescription\": 62952,\n  \"user-nurse-hair\": 58461,\n  \"question\": 63,\n  \"file-signature\": 62835,\n  \"toggle-large-on\": 58801,\n  \"up-down-left-right\": 61618,\n  \"arrows-alt\": 61618,\n  \"dryer-heat\": 63586,\n  \"dryer-alt\": 63586,\n  \"house-chimney-user\": 57445,\n  \"hand-holding-heart\": 62654,\n  \"arrow-up-small-big\": 63631,\n  \"sort-size-up-alt\": 63631,\n  \"train-track\": 58451,\n  \"puzzle-piece\": 61742,\n  \"money-check\": 62780,\n  \"star-half-stroke\": 62912,\n  \"star-half-alt\": 62912,\n  \"file-exclamation\": 62234,\n  \"code\": 61729,\n  \"whiskey-glass\": 63392,\n  \"glass-whiskey\": 63392,\n  \"moon-stars\": 63317,\n  \"building-circle-exclamation\": 58579,\n  \"clothes-hanger\": 57654,\n  \"mobile-notch\": 57838,\n  \"mobile-iphone\": 57838,\n  \"magnifying-glass-chart\": 58658,\n  \"arrow-up-right-from-square\": 61582,\n  \"external-link\": 61582,\n  \"cubes-stacked\": 58598,\n  \"images-user\": 57785,\n  \"won-sign\": 61785,\n  \"krw\": 61785,\n  \"won\": 61785,\n  \"image-polaroid-user\": 57782,\n  \"virus-covid\": 58536,\n  \"square-ellipsis\": 57966,\n  \"pie\": 63237,\n  \"chess-knight-piece\": 62530,\n  \"chess-knight-alt\": 62530,\n  \"austral-sign\": 57513,\n  \"cloud-plus\": 58206,\n  \"f\": 70,\n  \"leaf\": 61548,\n  \"bed-bunk\": 63736,\n  \"road\": 61464,\n  \"taxi\": 61882,\n  \"cab\": 61882,\n  \"person-circle-plus\": 58689,\n  \"chart-pie\": 61952,\n  \"pie-chart\": 61952,\n  \"bolt-lightning\": 57527,\n  \"clock-eight\": 58181,\n  \"sack-xmark\": 58730,\n  \"file-xls\": 58957,\n  \"file-excel\": 61891,\n  \"file-contract\": 62828,\n  \"fish-fins\": 58610,\n  \"circle-q\": 57630,\n  \"building-flag\": 58581,\n  \"face-grin-beam\": 62850,\n  \"grin-beam\": 62850,\n  \"object-ungroup\": 62024,\n  \"face-disguise\": 58224,\n  \"circle-arrow-down-right\": 57594,\n  \"alien-8bit\": 63734,\n  \"alien-monster\": 63734,\n  \"hand-point-ribbon\": 57766,\n  \"poop\": 63001,\n  \"object-exclude\": 58524,\n  \"telescope\": 57406,\n  \"location-pin\": 61505,\n  \"map-marker\": 61505,\n  \"square-list\": 58505,\n  \"kaaba\": 63083,\n  \"toilet-paper\": 63262,\n  \"helmet-safety\": 63495,\n  \"hard-hat\": 63495,\n  \"hat-hard\": 63495,\n  \"comment-code\": 57671,\n  \"sim-cards\": 57937,\n  \"starship\": 57401,\n  \"eject\": 61522,\n  \"circle-right\": 62298,\n  \"arrow-alt-circle-right\": 62298,\n  \"plane-circle-check\": 58709,\n  \"seal\": 57921,\n  \"user-cowboy\": 63722,\n  \"hexagon-vertical-nft\": 58629,\n  \"face-rolling-eyes\": 62885,\n  \"meh-rolling-eyes\": 62885,\n  \"bread-loaf\": 63467,\n  \"rings-wedding\": 63515,\n  \"object-group\": 62023,\n  \"french-fries\": 63491,\n  \"chart-line\": 61953,\n  \"line-chart\": 61953,\n  \"calendar-arrow-down\": 57552,\n  \"calendar-download\": 57552,\n  \"send-back\": 63614,\n  \"mask-ventilator\": 58660,\n  \"tickets\": 58968,\n  \"signature-lock\": 58314,\n  \"arrow-right\": 61537,\n  \"signs-post\": 62071,\n  \"map-signs\": 62071,\n  \"octagon-plus\": 62209,\n  \"plus-octagon\": 62209,\n  \"cash-register\": 63368,\n  \"person-circle-question\": 58690,\n  \"melon-slice\": 58129,\n  \"space-station-moon\": 57395,\n  \"message-smile\": 62634,\n  \"comment-alt-smile\": 62634,\n  \"cup-straw\": 58211,\n  \"left-from-line\": 62280,\n  \"arrow-alt-from-right\": 62280,\n  \"h\": 72,\n  \"basket-shopping-simple\": 57519,\n  \"shopping-basket-alt\": 57519,\n  \"hands-holding-heart\": 62659,\n  \"hands-heart\": 62659,\n  \"clock-nine\": 58188,\n  \"hammer-brush\": 58912,\n  \"tarp\": 58747,\n  \"face-sleepy\": 58254,\n  \"hand-horns\": 57769,\n  \"screwdriver-wrench\": 63449,\n  \"tools\": 63449,\n  \"arrows-to-eye\": 58559,\n  \"circle-three-quarters\": 57637,\n  \"trophy-star\": 62187,\n  \"trophy-alt\": 62187,\n  \"plug-circle-bolt\": 58715,\n  \"face-thermometer\": 58266,\n  \"grid-round-4\": 58845,\n  \"sign-posts-wrench\": 58918,\n  \"shirt-running\": 58312,\n  \"book-circle-arrow-up\": 57533,\n  \"face-nauseated\": 58241,\n  \"heart\": 61444,\n  \"file-chart-pie\": 63066,\n  \"mars-and-venus\": 61988,\n  \"house-user\": 57776,\n  \"home-user\": 57776,\n  \"circle-arrow-down-left\": 57593,\n  \"dumpster-fire\": 63380,\n  \"hexagon-minus\": 62215,\n  \"minus-hexagon\": 62215,\n  \"left-to-line\": 62283,\n  \"arrow-alt-to-left\": 62283,\n  \"house-crack\": 58289,\n  \"paw-simple\": 63233,\n  \"paw-alt\": 63233,\n  \"arrow-left-long-to-line\": 58324,\n  \"brackets-round\": 57541,\n  \"parentheses\": 57541,\n  \"martini-glass-citrus\": 62817,\n  \"cocktail\": 62817,\n  \"user-shakespeare\": 58050,\n  \"arrow-right-to-arc\": 58546,\n  \"face-surprise\": 62914,\n  \"surprise\": 62914,\n  \"bottle-water\": 58565,\n  \"circle-pause\": 62091,\n  \"pause-circle\": 62091,\n  \"gauge-circle-plus\": 58520,\n  \"folders\": 63072,\n  \"angel\": 63353,\n  \"value-absolute\": 63142,\n  \"rabbit\": 63240,\n  \"toilet-paper-slash\": 57458,\n  \"circle-euro\": 58830,\n  \"apple-whole\": 62929,\n  \"apple-alt\": 62929,\n  \"kitchen-set\": 58650,\n  \"diamond-half\": 58807,\n  \"lock-keyhole\": 62221,\n  \"lock-alt\": 62221,\n  \"r\": 82,\n  \"temperature-quarter\": 62154,\n  \"temperature-1\": 62154,\n  \"thermometer-1\": 62154,\n  \"thermometer-quarter\": 62154,\n  \"square-info\": 62223,\n  \"info-square\": 62223,\n  \"wifi-slash\": 63148,\n  \"toilet-paper-xmark\": 58803,\n  \"hands-holding-dollar\": 62661,\n  \"hands-usd\": 62661,\n  \"cube\": 61874,\n  \"arrow-down-triangle-square\": 63624,\n  \"sort-shapes-down\": 63624,\n  \"bitcoin-sign\": 57524,\n  \"shutters\": 58441,\n  \"shield-dog\": 58739,\n  \"solar-panel\": 62906,\n  \"lock-open\": 62401,\n  \"table-tree\": 58003,\n  \"house-chimney-heart\": 57778,\n  \"tally-3\": 58006,\n  \"elevator\": 57709,\n  \"money-bill-transfer\": 58664,\n  \"money-bill-trend-up\": 58665,\n  \"house-flood-water-circle-arrow-right\": 58639,\n  \"square-poll-horizontal\": 63106,\n  \"poll-h\": 63106,\n  \"circle\": 61713,\n  \"left-to-bracket\": 58989,\n  \"cart-circle-exclamation\": 58354,\n  \"sword\": 63260,\n  \"backward-fast\": 61513,\n  \"fast-backward\": 61513,\n  \"recycle\": 61880,\n  \"user-astronaut\": 62715,\n  \"interrobang\": 58810,\n  \"plane-slash\": 57449,\n  \"circle-dashed\": 57605,\n  \"trademark\": 62044,\n  \"basketball\": 62516,\n  \"basketball-ball\": 62516,\n  \"fork-knife\": 62182,\n  \"utensils-alt\": 62182,\n  \"satellite-dish\": 63424,\n  \"badge-check\": 62262,\n  \"circle-up\": 62299,\n  \"arrow-alt-circle-up\": 62299,\n  \"slider\": 57938,\n  \"mobile-screen-button\": 62413,\n  \"mobile-alt\": 62413,\n  \"clock-one-thirty\": 58191,\n  \"inbox-out\": 62225,\n  \"inbox-arrow-up\": 62225,\n  \"cloud-slash\": 57655,\n  \"volume-high\": 61480,\n  \"volume-up\": 61480,\n  \"users-rays\": 58771,\n  \"wallet\": 62805,\n  \"octagon-check\": 58406,\n  \"flatbread-stuffed\": 58380,\n  \"clipboard-check\": 62572,\n  \"cart-circle-plus\": 58355,\n  \"truck-clock\": 62604,\n  \"shipping-timed\": 62604,\n  \"pool-8-ball\": 58309,\n  \"file-audio\": 61895,\n  \"turn-down-left\": 58161,\n  \"lock-hashtag\": 58403,\n  \"chart-radar\": 57575,\n  \"staff\": 63259,\n  \"burger\": 63493,\n  \"hamburger\": 63493,\n  \"utility-pole\": 58051,\n  \"transporter-6\": 58023,\n  \"arrow-turn-left\": 58930,\n  \"wrench\": 61613,\n  \"bugs\": 58576,\n  \"vector-polygon\": 58055,\n  \"diagram-nested\": 57687,\n  \"rupee-sign\": 61782,\n  \"rupee\": 61782,\n  \"file-image\": 61893,\n  \"circle-question\": 61529,\n  \"question-circle\": 61529,\n  \"tickets-perforated\": 58943,\n  \"image-user\": 57784,\n  \"buoy\": 58805,\n  \"plane-departure\": 62896,\n  \"handshake-slash\": 57440,\n  \"book-bookmark\": 57531,\n  \"border-center-h\": 63644,\n  \"can-food\": 58342,\n  \"typewriter\": 63719,\n  \"arrow-right-from-arc\": 58545,\n  \"circle-k\": 57619,\n  \"face-hand-over-mouth\": 58232,\n  \"popcorn\": 63513,\n  \"house-water\": 63311,\n  \"house-flood\": 63311,\n  \"object-subtract\": 58526,\n  \"code-branch\": 61734,\n  \"warehouse-full\": 62613,\n  \"warehouse-alt\": 62613,\n  \"hat-cowboy\": 63680,\n  \"bridge\": 58568,\n  \"phone-flip\": 63609,\n  \"phone-alt\": 63609,\n  \"arrow-down-from-dotted-line\": 57488,\n  \"file-doc\": 58861,\n  \"square-quarters\": 58446,\n  \"truck-front\": 58039,\n  \"cat\": 63166,\n  \"trash-xmark\": 58036,\n  \"circle-caret-left\": 62254,\n  \"caret-circle-left\": 62254,\n  \"files\": 57720,\n  \"anchor-circle-exclamation\": 58539,\n  \"face-clouds\": 58493,\n  \"user-crown\": 63140,\n  \"basket-shopping-plus\": 58963,\n  \"truck-field\": 58765,\n  \"route\": 62679,\n  \"cart-circle-check\": 58353,\n  \"clipboard-question\": 58595,\n  \"panorama\": 57865,\n  \"comment-medical\": 63477,\n  \"teeth-open\": 63023,\n  \"user-tie-hair-long\": 58464,\n  \"file-circle-minus\": 58605,\n  \"head-side-medical\": 63497,\n  \"arrow-turn-right\": 58933,\n  \"tags\": 61484,\n  \"wine-glass\": 62691,\n  \"forward-fast\": 61520,\n  \"fast-forward\": 61520,\n  \"face-meh-blank\": 62884,\n  \"meh-blank\": 62884,\n  \"user-robot\": 57419,\n  \"square-parking\": 62784,\n  \"parking\": 62784,\n  \"card-diamond\": 58346,\n  \"face-zipper\": 58277,\n  \"face-raised-eyebrow\": 58248,\n  \"house-signal\": 57362,\n  \"square-chevron-up\": 62252,\n  \"chevron-square-up\": 62252,\n  \"bars-progress\": 63528,\n  \"tasks-alt\": 63528,\n  \"faucet-drip\": 57350,\n  \"arrows-to-line\": 57511,\n  \"dolphin\": 57704,\n  \"arrow-up-right\": 57503,\n  \"circle-r\": 57632,\n  \"cart-flatbed\": 62580,\n  \"dolly-flatbed\": 62580,\n  \"ban-smoking\": 62797,\n  \"smoking-ban\": 62797,\n  \"circle-sort-up\": 57394,\n  \"sort-circle-up\": 57394,\n  \"terminal\": 61728,\n  \"mobile-button\": 61707,\n  \"house-medical-flag\": 58644,\n  \"basket-shopping\": 62097,\n  \"shopping-basket\": 62097,\n  \"tape\": 62683,\n  \"chestnut\": 58358,\n  \"bus-simple\": 62814,\n  \"bus-alt\": 62814,\n  \"eye\": 61550,\n  \"face-sad-cry\": 62899,\n  \"sad-cry\": 62899,\n  \"heat\": 57356,\n  \"ticket-airline\": 58010,\n  \"ticket-perforated-plane\": 58010,\n  \"ticket-plane\": 58010,\n  \"boot-heeled\": 58175,\n  \"arrows-minimize\": 57509,\n  \"compress-arrows\": 57509,\n  \"audio-description\": 62110,\n  \"person-military-to-person\": 58700,\n  \"file-shield\": 58608,\n  \"hexagon\": 62226,\n  \"manhole\": 57814,\n  \"user-slash\": 62726,\n  \"pen\": 62212,\n  \"tower-observation\": 58758,\n  \"floppy-disks\": 57731,\n  \"toilet-paper-blank-under\": 58015,\n  \"toilet-paper-reverse-alt\": 58015,\n  \"file-code\": 61897,\n  \"signal\": 61458,\n  \"signal-5\": 61458,\n  \"signal-perfect\": 61458,\n  \"pump\": 58434,\n  \"bus\": 61959,\n  \"heart-circle-xmark\": 58625,\n  \"arrow-up-left-from-circle\": 57502,\n  \"house-chimney\": 58287,\n  \"home-lg\": 58287,\n  \"window-maximize\": 62160,\n  \"dryer\": 63585,\n  \"face-frown\": 61721,\n  \"frown\": 61721,\n  \"chess-bishop-piece\": 62523,\n  \"chess-bishop-alt\": 62523,\n  \"shirt-tank-top\": 58313,\n  \"diploma\": 62954,\n  \"scroll-ribbon\": 62954,\n  \"screencast\": 57918,\n  \"walker\": 63537,\n  \"prescription\": 62897,\n  \"shop\": 62799,\n  \"store-alt\": 62799,\n  \"floppy-disk\": 61639,\n  \"save\": 61639,\n  \"vihara\": 63143,\n  \"face-kiss-closed-eyes\": 58237,\n  \"scale-unbalanced\": 62741,\n  \"balance-scale-left\": 62741,\n  \"file-user\": 63068,\n  \"user-police-tie\": 58164,\n  \"face-tongue-money\": 58269,\n  \"tennis-ball\": 62558,\n  \"square-l\": 57973,\n  \"sort-up\": 61662,\n  \"sort-asc\": 61662,\n  \"calendar-arrow-up\": 57553,\n  \"calendar-upload\": 57553,\n  \"comment-dots\": 62637,\n  \"commenting\": 62637,\n  \"plant-wilt\": 58794,\n  \"scarf\": 63425,\n  \"album-circle-plus\": 58508,\n  \"user-nurse-hair-long\": 58462,\n  \"diamond\": 61977,\n  \"square-left\": 62289,\n  \"arrow-alt-square-left\": 62289,\n  \"face-grin-squint\": 62853,\n  \"grin-squint\": 62853,\n  \"circle-ellipsis-vertical\": 57611,\n  \"hand-holding-dollar\": 62656,\n  \"hand-holding-usd\": 62656,\n  \"grid-dividers\": 58285,\n  \"chart-diagram\": 59029,\n  \"bacterium\": 57434,\n  \"hand-pointer\": 62042,\n  \"drum-steelpan\": 62826,\n  \"hand-scissors\": 62039,\n  \"hands-praying\": 63108,\n  \"praying-hands\": 63108,\n  \"face-pensive\": 58244,\n  \"user-music\": 63723,\n  \"arrow-rotate-right\": 61470,\n  \"arrow-right-rotate\": 61470,\n  \"arrow-rotate-forward\": 61470,\n  \"redo\": 61470,\n  \"messages-dollar\": 63058,\n  \"comments-alt-dollar\": 63058,\n  \"sensor-on\": 57387,\n  \"balloon\": 58083,\n  \"biohazard\": 63360,\n  \"chess-queen-piece\": 62534,\n  \"chess-queen-alt\": 62534,\n  \"location-crosshairs\": 62977,\n  \"location\": 62977,\n  \"mars-double\": 61991,\n  \"left-from-bracket\": 58988,\n  \"house-person-leave\": 57359,\n  \"house-leave\": 57359,\n  \"house-person-depart\": 57359,\n  \"ruler-triangle\": 63004,\n  \"card-club\": 58345,\n  \"child-dress\": 58780,\n  \"users-between-lines\": 58769,\n  \"lungs-virus\": 57447,\n  \"spinner-third\": 62452,\n  \"face-grin-tears\": 62856,\n  \"grin-tears\": 62856,\n  \"phone\": 61589,\n  \"computer-mouse-scrollwheel\": 63693,\n  \"mouse-alt\": 63693,\n  \"calendar-xmark\": 62067,\n  \"calendar-times\": 62067,\n  \"child-reaching\": 58781,\n  \"table-layout\": 58000,\n  \"narwhal\": 63230,\n  \"ramp-loading\": 62676,\n  \"calendar-circle-plus\": 58480,\n  \"toothbrush\": 63029,\n  \"border-inner\": 63566,\n  \"paw-claws\": 63234,\n  \"kiwi-fruit\": 58124,\n  \"traffic-light-slow\": 63033,\n  \"rectangle-code\": 58146,\n  \"head-side-virus\": 57444,\n  \"keyboard-brightness\": 57792,\n  \"books-medical\": 63464,\n  \"lightbulb-slash\": 63091,\n  \"house-blank\": 58503,\n  \"home-blank\": 58503,\n  \"square-5\": 57946,\n  \"square-heart\": 62664,\n  \"heart-square\": 62664,\n  \"puzzle\": 58435,\n  \"user-gear\": 62718,\n  \"user-cog\": 62718,\n  \"pipe-circle-check\": 58422,\n  \"arrow-up-1-9\": 61795,\n  \"sort-numeric-up\": 61795,\n  \"octagon-exclamation\": 57860,\n  \"dial-low\": 57693,\n  \"door-closed\": 62762,\n  \"laptop-mobile\": 63610,\n  \"phone-laptop\": 63610,\n  \"conveyor-belt-boxes\": 62575,\n  \"conveyor-belt-alt\": 62575,\n  \"shield-virus\": 57452,\n  \"starfighter-twin-ion-engine-advanced\": 57998,\n  \"starfighter-alt-advanced\": 57998,\n  \"dice-six\": 62758,\n  \"starfighter-twin-ion-engine\": 57400,\n  \"starfighter-alt\": 57400,\n  \"rocket-launch\": 57383,\n  \"mosquito-net\": 58668,\n  \"file-fragment\": 59031,\n  \"vent-damper\": 58469,\n  \"bridge-water\": 58574,\n  \"ban-bug\": 63481,\n  \"debug\": 63481,\n  \"person-booth\": 63318,\n  \"text-width\": 61493,\n  \"garage-car\": 57354,\n  \"square-kanban\": 58504,\n  \"hat-wizard\": 63208,\n  \"chart-kanban\": 58959,\n  \"pen-fancy\": 62892,\n  \"coffee-pot\": 57346,\n  \"mouse-field\": 58792,\n  \"person-digging\": 63582,\n  \"digging\": 63582,\n  \"shower-down\": 57933,\n  \"shower-alt\": 57933,\n  \"box-circle-check\": 57540,\n  \"brightness\": 57545,\n  \"car-side-bolt\": 58180,\n  \"file-xml\": 58964,\n  \"ornament\": 63416,\n  \"phone-arrow-down-left\": 57891,\n  \"phone-arrow-down\": 57891,\n  \"phone-incoming\": 57891,\n  \"cloud-word\": 57656,\n  \"hand-fingers-crossed\": 57763,\n  \"trash\": 61944,\n  \"gauge-simple\": 63017,\n  \"gauge-simple-med\": 63017,\n  \"tachometer-average\": 63017,\n  \"arrow-down-small-big\": 63629,\n  \"sort-size-down-alt\": 63629,\n  \"book-medical\": 63462,\n  \"face-melting\": 58499,\n  \"poo\": 62206,\n  \"pen-clip-slash\": 57871,\n  \"pen-alt-slash\": 57871,\n  \"quote-right\": 61710,\n  \"quote-right-alt\": 61710,\n  \"scroll-old\": 63247,\n  \"guitars\": 63679,\n  \"phone-xmark\": 57895,\n  \"hose\": 58393,\n  \"clock-six\": 58194,\n  \"shirt\": 62803,\n  \"t-shirt\": 62803,\n  \"tshirt\": 62803,\n  \"billboard\": 58829,\n  \"square-r\": 57980,\n  \"cubes\": 61875,\n  \"envelope-open-dollar\": 63063,\n  \"divide\": 62761,\n  \"sun-cloud\": 63331,\n  \"lamp-floor\": 57365,\n  \"square-7\": 57948,\n  \"tenge-sign\": 63447,\n  \"tenge\": 63447,\n  \"headphones\": 61477,\n  \"hands-holding\": 62658,\n  \"campfire\": 63162,\n  \"circle-ampersand\": 57592,\n  \"snowflakes\": 63439,\n  \"hands-clapping\": 57768,\n  \"republican\": 63326,\n  \"leaf-maple\": 63222,\n  \"arrow-left\": 61536,\n  \"person-circle-xmark\": 58691,\n  \"ruler\": 62789,\n  \"arrow-left-from-bracket\": 58984,\n  \"cup-straw-swoosh\": 58212,\n  \"temperature-sun\": 63338,\n  \"temperature-hot\": 63338,\n  \"align-left\": 61494,\n  \"dice-d6\": 63185,\n  \"restroom\": 63421,\n  \"high-definition\": 57774,\n  \"rectangle-hd\": 57774,\n  \"j\": 74,\n  \"galaxy\": 57352,\n  \"users-viewfinder\": 58773,\n  \"file-video\": 61896,\n  \"cherries\": 57580,\n  \"up-right-from-square\": 62301,\n  \"external-link-alt\": 62301,\n  \"circle-sort\": 57392,\n  \"sort-circle\": 57392,\n  \"table-cells\": 61450,\n  \"th\": 61450,\n  \"bag-shopping-minus\": 58960,\n  \"file-pdf\": 61889,\n  \"siren\": 57389,\n  \"arrow-up-to-dotted-line\": 57505,\n  \"image-landscape\": 57781,\n  \"landscape\": 57781,\n  \"tank-water\": 58450,\n  \"curling-stone\": 62538,\n  \"curling\": 62538,\n  \"gamepad-modern\": 58786,\n  \"gamepad-alt\": 58786,\n  \"messages-question\": 57831,\n  \"book-bible\": 63047,\n  \"bible\": 63047,\n  \"o\": 79,\n  \"suitcase-medical\": 61690,\n  \"medkit\": 61690,\n  \"briefcase-arrow-right\": 58098,\n  \"expand-wide\": 62240,\n  \"clock-eleven-thirty\": 58184,\n  \"rv\": 63422,\n  \"user-secret\": 61979,\n  \"otter\": 63232,\n  \"dreidel\": 63378,\n  \"person-dress\": 61826,\n  \"female\": 61826,\n  \"comment-dollar\": 63057,\n  \"business-time\": 63050,\n  \"briefcase-clock\": 63050,\n  \"flower-tulip\": 63489,\n  \"people-pants-simple\": 57882,\n  \"cloud-drizzle\": 63288,\n  \"table-cells-large\": 61449,\n  \"th-large\": 61449,\n  \"book-tanakh\": 63527,\n  \"tanakh\": 63527,\n  \"solar-system\": 57391,\n  \"seal-question\": 57923,\n  \"phone-volume\": 62112,\n  \"volume-control-phone\": 62112,\n  \"disc-drive\": 63669,\n  \"hat-cowboy-side\": 63681,\n  \"table-rows\": 58002,\n  \"rows\": 58002,\n  \"location-exclamation\": 62984,\n  \"map-marker-exclamation\": 62984,\n  \"face-fearful\": 58229,\n  \"clipboard-user\": 63475,\n  \"bus-school\": 62941,\n  \"film-slash\": 57721,\n  \"square-arrow-down-right\": 57954,\n  \"book-sparkles\": 63160,\n  \"book-spells\": 63160,\n  \"washing-machine\": 63640,\n  \"washer\": 63640,\n  \"child\": 61870,\n  \"lira-sign\": 61845,\n  \"user-visor\": 57420,\n  \"file-plus-minus\": 57719,\n  \"chess-clock-flip\": 62526,\n  \"chess-clock-alt\": 62526,\n  \"satellite\": 63423,\n  \"truck-fire\": 58970,\n  \"plane-lock\": 58712,\n  \"steering-wheel\": 63010,\n  \"tag\": 61483,\n  \"stretcher\": 63525,\n  \"book-section\": 57537,\n  \"book-law\": 57537,\n  \"inboxes\": 57787,\n  \"coffee-bean\": 57662,\n  \"circle-yen\": 58832,\n  \"brackets-curly\": 63466,\n  \"ellipsis-stroke-vertical\": 62364,\n  \"ellipsis-v-alt\": 62364,\n  \"comment\": 61557,\n  \"square-1\": 57942,\n  \"cake-candles\": 61949,\n  \"birthday-cake\": 61949,\n  \"cake\": 61949,\n  \"head-side\": 63209,\n  \"truck-ladder\": 58967,\n  \"envelope\": 61664,\n  \"dolly-empty\": 62579,\n  \"face-tissue\": 58268,\n  \"angles-up\": 61698,\n  \"angle-double-up\": 61698,\n  \"bin-recycle\": 58871,\n  \"paperclip\": 61638,\n  \"chart-line-down\": 63053,\n  \"arrow-right-to-city\": 58547,\n  \"lock-a\": 58402,\n  \"ribbon\": 62678,\n  \"lungs\": 62980,\n  \"person-pinball\": 57885,\n  \"arrow-up-9-1\": 63623,\n  \"sort-numeric-up-alt\": 63623,\n  \"apple-core\": 57487,\n  \"circle-y\": 57647,\n  \"h6\": 58387,\n  \"litecoin-sign\": 57811,\n  \"bottle-baby\": 58995,\n  \"circle-small\": 57634,\n  \"border-none\": 63568,\n  \"arrow-turn-down-left\": 58081,\n  \"circle-wifi-circle-wifi\": 59006,\n  \"circle-wifi-group\": 59006,\n  \"circle-nodes\": 58594,\n  \"parachute-box\": 62669,\n  \"reflect-horizontal\": 58980,\n  \"message-medical\": 63476,\n  \"comment-alt-medical\": 63476,\n  \"rugby-ball\": 58310,\n  \"comment-music\": 63664,\n  \"indent\": 61500,\n  \"tree-deciduous\": 62464,\n  \"tree-alt\": 62464,\n  \"puzzle-piece-simple\": 57905,\n  \"puzzle-piece-alt\": 57905,\n  \"truck-field-un\": 58766,\n  \"nfc-trash\": 57853,\n  \"hourglass\": 62036,\n  \"hourglass-empty\": 62036,\n  \"mountain\": 63228,\n  \"file-xmark\": 62231,\n  \"file-times\": 62231,\n  \"house-heart\": 62665,\n  \"home-heart\": 62665,\n  \"house-chimney-blank\": 58288,\n  \"meter-bolt\": 57833,\n  \"user-doctor\": 61680,\n  \"user-md\": 61680,\n  \"slash-back\": 92,\n  \"circle-info\": 61530,\n  \"info-circle\": 61530,\n  \"fishing-rod\": 58280,\n  \"hammer-crash\": 58388,\n  \"message-heart\": 58825,\n  \"cloud-meatball\": 63291,\n  \"camera-polaroid\": 63658,\n  \"camera\": 61488,\n  \"camera-alt\": 61488,\n  \"square-virus\": 58744,\n  \"cart-arrow-up\": 58350,\n  \"meteor\": 63315,\n  \"car-on\": 58589,\n  \"sleigh\": 63436,\n  \"arrow-down-1-9\": 61794,\n  \"sort-numeric-asc\": 61794,\n  \"sort-numeric-down\": 61794,\n  \"buoy-mooring\": 58806,\n  \"square-4\": 57945,\n  \"hand-holding-droplet\": 62657,\n  \"hand-holding-water\": 62657,\n  \"file-eps\": 58948,\n  \"tricycle-adult\": 58820,\n  \"waveform\": 63729,\n  \"water\": 63347,\n  \"star-sharp-half-stroke\": 57997,\n  \"star-sharp-half-alt\": 57997,\n  \"nfc-signal\": 57851,\n  \"plane-prop\": 57899,\n  \"calendar-check\": 62068,\n  \"clock-desk\": 57652,\n  \"calendar-clock\": 57554,\n  \"calendar-time\": 57554,\n  \"braille\": 62113,\n  \"prescription-bottle-medical\": 62598,\n  \"prescription-bottle-alt\": 62598,\n  \"plate-utensils\": 58427,\n  \"family-pants\": 58114,\n  \"hose-reel\": 58394,\n  \"house-window\": 58291,\n  \"landmark\": 63087,\n  \"truck\": 61649,\n  \"music-magnifying-glass\": 58978,\n  \"crosshairs\": 61531,\n  \"cloud-rainbow\": 63294,\n  \"person-cane\": 58684,\n  \"alien\": 63733,\n  \"tent\": 58749,\n  \"laptop-binary\": 58855,\n  \"vest-patches\": 57478,\n  \"people-dress-simple\": 57880,\n  \"check-double\": 62816,\n  \"arrow-down-a-z\": 61789,\n  \"sort-alpha-asc\": 61789,\n  \"sort-alpha-down\": 61789,\n  \"bowling-ball-pin\": 57539,\n  \"bell-school-slash\": 62934,\n  \"plus-large\": 58782,\n  \"money-bill-wheat\": 58666,\n  \"camera-viewfinder\": 57562,\n  \"screenshot\": 57562,\n  \"message-music\": 63663,\n  \"comment-alt-music\": 63663,\n  \"car-building\": 63577,\n  \"border-bottom-right\": 63572,\n  \"border-style-alt\": 63572,\n  \"octagon\": 62214,\n  \"comment-arrow-up-right\": 57669,\n  \"octagon-divide\": 57859,\n  \"cookie\": 62819,\n  \"arrow-rotate-left\": 61666,\n  \"arrow-left-rotate\": 61666,\n  \"arrow-rotate-back\": 61666,\n  \"arrow-rotate-backward\": 61666,\n  \"undo\": 61666,\n  \"tv-music\": 63718,\n  \"hard-drive\": 61600,\n  \"hdd\": 61600,\n  \"reel\": 57912,\n  \"face-grin-squint-tears\": 62854,\n  \"grin-squint-tears\": 62854,\n  \"dumbbell\": 62539,\n  \"rectangle-list\": 61474,\n  \"list-alt\": 61474,\n  \"tarp-droplet\": 58748,\n  \"alarm-exclamation\": 63555,\n  \"house-medical-circle-check\": 58641,\n  \"traffic-cone\": 63030,\n  \"grate\": 57747,\n  \"arrow-down-right\": 57491,\n  \"person-skiing-nordic\": 63434,\n  \"skiing-nordic\": 63434,\n  \"calendar-plus\": 62065,\n  \"person-from-portal\": 57379,\n  \"portal-exit\": 57379,\n  \"plane-arrival\": 62895,\n  \"cowbell-circle-plus\": 63668,\n  \"cowbell-more\": 63668,\n  \"circle-left\": 62297,\n  \"arrow-alt-circle-left\": 62297,\n  \"distribute-spacing-vertical\": 58214,\n  \"signal-bars-fair\": 63122,\n  \"signal-alt-2\": 63122,\n  \"sportsball\": 58443,\n  \"game-console-handheld-crank\": 58809,\n  \"train-subway\": 62009,\n  \"subway\": 62009,\n  \"chart-gantt\": 57572,\n  \"face-smile-upside-down\": 58261,\n  \"ball-pile\": 63358,\n  \"badge-dollar\": 63045,\n  \"money-bills-simple\": 57844,\n  \"money-bills-alt\": 57844,\n  \"list-timeline\": 57809,\n  \"indian-rupee-sign\": 57788,\n  \"indian-rupee\": 57788,\n  \"inr\": 57788,\n  \"crop-simple\": 62821,\n  \"crop-alt\": 62821,\n  \"money-bill-1\": 62417,\n  \"money-bill-alt\": 62417,\n  \"left-long\": 62218,\n  \"long-arrow-alt-left\": 62218,\n  \"keyboard-down\": 57794,\n  \"circle-up-right\": 57641,\n  \"cloud-bolt-moon\": 63341,\n  \"thunderstorm-moon\": 63341,\n  \"turn-left-up\": 58936,\n  \"dna\": 62577,\n  \"virus-slash\": 57461,\n  \"bracket-round-right\": 41,\n  \"circle-sterling\": 58831,\n  \"circle-5\": 57586,\n  \"minus\": 61544,\n  \"subtract\": 61544,\n  \"fire-flame\": 63199,\n  \"flame\": 63199,\n  \"right-to-line\": 62284,\n  \"arrow-alt-to-right\": 62284,\n  \"gif\": 57744,\n  \"chess\": 62521,\n  \"trash-slash\": 58035,\n  \"arrow-left-long\": 61815,\n  \"long-arrow-left\": 61815,\n  \"plug-circle-check\": 58716,\n  \"font-case\": 63590,\n  \"street-view\": 61981,\n  \"arrow-down-left\": 57489,\n  \"franc-sign\": 57743,\n  \"flask-round-poison\": 63200,\n  \"flask-poison\": 63200,\n  \"volume-off\": 61478,\n  \"book-circle-arrow-right\": 57532,\n  \"chart-user\": 63139,\n  \"user-chart\": 63139,\n  \"hands-asl-interpreting\": 62115,\n  \"american-sign-language-interpreting\": 62115,\n  \"asl-interpreting\": 62115,\n  \"hands-american-sign-language-interpreting\": 62115,\n  \"presentation-screen\": 63109,\n  \"presentation\": 63109,\n  \"circle-bolt\": 57598,\n  \"face-smile-halo\": 58255,\n  \"cart-circle-arrow-down\": 58351,\n  \"house-person-return\": 57361,\n  \"house-person-arrive\": 57361,\n  \"house-return\": 57361,\n  \"message-xmark\": 62635,\n  \"comment-alt-times\": 62635,\n  \"message-times\": 62635,\n  \"file-certificate\": 62963,\n  \"file-award\": 62963,\n  \"user-doctor-hair-long\": 58457,\n  \"camera-security\": 63742,\n  \"camera-home\": 63742,\n  \"gear\": 61459,\n  \"cog\": 61459,\n  \"droplet-slash\": 62919,\n  \"tint-slash\": 62919,\n  \"book-heart\": 62617,\n  \"mosque\": 63096,\n  \"duck\": 63192,\n  \"mosquito\": 58667,\n  \"star-of-david\": 63130,\n  \"flag-swallowtail\": 63308,\n  \"flag-alt\": 63308,\n  \"person-military-rifle\": 58699,\n  \"car-garage\": 62946,\n  \"cart-shopping\": 61562,\n  \"shopping-cart\": 61562,\n  \"book-font\": 57535,\n  \"shield-plus\": 57930,\n  \"vials\": 62611,\n  \"eye-dropper-full\": 57714,\n  \"distribute-spacing-horizontal\": 58213,\n  \"tablet-rugged\": 62607,\n  \"temperature-snow\": 63336,\n  \"temperature-frigid\": 63336,\n  \"moped\": 58297,\n  \"face-smile-plus\": 62905,\n  \"smile-plus\": 62905,\n  \"radio-tuner\": 63704,\n  \"radio-alt\": 63704,\n  \"face-swear\": 58265,\n  \"water-arrow-down\": 63348,\n  \"water-lower\": 63348,\n  \"scanner-touchscreen\": 62602,\n  \"circle-7\": 57588,\n  \"plug-circle-plus\": 58719,\n  \"person-ski-jumping\": 63431,\n  \"ski-jump\": 63431,\n  \"place-of-worship\": 63103,\n  \"water-arrow-up\": 63349,\n  \"water-rise\": 63349,\n  \"waveform-lines\": 63730,\n  \"waveform-path\": 63730,\n  \"split\": 57940,\n  \"film-canister\": 63671,\n  \"film-cannister\": 63671,\n  \"folder-xmark\": 63071,\n  \"folder-times\": 63071,\n  \"toilet-paper-blank\": 63263,\n  \"toilet-paper-alt\": 63263,\n  \"tablet-screen\": 62460,\n  \"tablet-android-alt\": 62460,\n  \"hexagon-vertical-nft-slanted\": 58630,\n  \"folder-music\": 57741,\n  \"display-medical\": 57702,\n  \"desktop-medical\": 57702,\n  \"share-all\": 62311,\n  \"peapod\": 58140,\n  \"chess-clock\": 62525,\n  \"axe\": 63154,\n  \"square-d\": 57960,\n  \"grip-vertical\": 62862,\n  \"mobile-signal-out\": 57840,\n  \"hexagon-nodes\": 59033,\n  \"arrow-turn-up\": 61768,\n  \"level-up\": 61768,\n  \"u\": 85,\n  \"arrow-up-from-dotted-line\": 57499,\n  \"square-root-variable\": 63128,\n  \"square-root-alt\": 63128,\n  \"light-switch-on\": 57369,\n  \"arrow-down-arrow-up\": 63619,\n  \"sort-alt\": 63619,\n  \"raindrops\": 63324,\n  \"dash\": 58372,\n  \"minus-large\": 58372,\n  \"clock\": 61463,\n  \"clock-four\": 61463,\n  \"input-numeric\": 57789,\n  \"truck-tow\": 58040,\n  \"backward-step\": 61512,\n  \"step-backward\": 61512,\n  \"pallet\": 62594,\n  \"car-bolt\": 58177,\n  \"arrows-maximize\": 62237,\n  \"expand-arrows\": 62237,\n  \"faucet\": 57349,\n  \"cloud-sleet\": 63297,\n  \"lamp-street\": 57797,\n  \"list-radio\": 57808,\n  \"pen-nib-slash\": 58529,\n  \"baseball-bat-ball\": 62514,\n  \"square-up-left\": 57986,\n  \"overline\": 63606,\n  \"s\": 83,\n  \"timeline\": 58012,\n  \"keyboard\": 61724,\n  \"arrows-from-dotted-line\": 57507,\n  \"usb-drive\": 63721,\n  \"ballot\": 63282,\n  \"caret-down\": 61655,\n  \"location-dot-slash\": 62981,\n  \"map-marker-alt-slash\": 62981,\n  \"cards\": 58349,\n  \"house-chimney-medical\": 63474,\n  \"clinic-medical\": 63474,\n  \"boxing-glove\": 62520,\n  \"glove-boxing\": 62520,\n  \"temperature-three-quarters\": 62152,\n  \"temperature-3\": 62152,\n  \"thermometer-3\": 62152,\n  \"thermometer-three-quarters\": 62152,\n  \"bell-school\": 62933,\n  \"mobile-screen\": 62415,\n  \"mobile-android-alt\": 62415,\n  \"plane-up\": 57901,\n  \"folder-heart\": 57737,\n  \"circle-location-arrow\": 62978,\n  \"location-circle\": 62978,\n  \"face-head-bandage\": 58234,\n  \"sushi-roll\": 58507,\n  \"maki-roll\": 58507,\n  \"makizushi\": 58507,\n  \"car-bump\": 62944,\n  \"piggy-bank\": 62675,\n  \"racquet\": 62554,\n  \"car-mirrors\": 58179,\n  \"industry-windows\": 62387,\n  \"industry-alt\": 62387,\n  \"bolt-auto\": 57526,\n  \"battery-half\": 62018,\n  \"battery-3\": 62018,\n  \"flux-capacitor\": 63674,\n  \"mountain-city\": 58670,\n  \"coins\": 62750,\n  \"honey-pot\": 58392,\n  \"olive\": 58134,\n  \"khanda\": 63085,\n  \"filter-list\": 57724,\n  \"outlet\": 57372,\n  \"sliders\": 61918,\n  \"sliders-h\": 61918,\n  \"cauldron\": 63167,\n  \"people\": 57878,\n  \"folder-tree\": 63490,\n  \"network-wired\": 63231,\n  \"croissant\": 63478,\n  \"map-pin\": 62070,\n  \"hamsa\": 63077,\n  \"cent-sign\": 58357,\n  \"swords-laser\": 57405,\n  \"flask\": 61635,\n  \"person-pregnant\": 58142,\n  \"square-u\": 57985,\n  \"wand-sparkles\": 63275,\n  \"router\": 63706,\n  \"ellipsis-vertical\": 61762,\n  \"ellipsis-v\": 61762,\n  \"sword-laser-alt\": 57404,\n  \"ticket\": 61765,\n  \"power-off\": 61457,\n  \"coin\": 63580,\n  \"laptop-slash\": 57799,\n  \"right-long\": 62219,\n  \"long-arrow-alt-right\": 62219,\n  \"circle-b\": 57597,\n  \"person-dress-simple\": 57884,\n  \"pipe-collar\": 58423,\n  \"lights-holiday\": 63410,\n  \"citrus\": 58100,\n  \"flag-usa\": 63309,\n  \"laptop-file\": 58653,\n  \"tty\": 61924,\n  \"teletype\": 61924,\n  \"chart-tree-map\": 57578,\n  \"diagram-next\": 58486,\n  \"person-rifle\": 58702,\n  \"clock-five-thirty\": 58186,\n  \"pipe-valve\": 58425,\n  \"lightbulb-message\": 59015,\n  \"arrow-up-from-arc\": 58548,\n  \"face-spiral-eyes\": 58501,\n  \"compress-wide\": 62246,\n  \"circle-phone-hangup\": 57629,\n  \"phone-circle-down\": 57629,\n  \"gear-complex-code\": 58859,\n  \"house-medical-circle-exclamation\": 58642,\n  \"badminton\": 58170,\n  \"closed-captioning\": 61962,\n  \"person-hiking\": 63212,\n  \"hiking\": 63212,\n  \"right-from-line\": 62279,\n  \"arrow-alt-from-left\": 62279,\n  \"venus-double\": 61990,\n  \"images\": 62210,\n  \"calculator\": 61932,\n  \"shuttlecock\": 62555,\n  \"user-hair\": 58458,\n  \"eye-evil\": 63195,\n  \"people-pulling\": 58677,\n  \"n\": 78,\n  \"swap\": 58889,\n  \"garage\": 57353,\n  \"cable-car\": 63450,\n  \"tram\": 63450,\n  \"shovel-snow\": 63427,\n  \"cloud-rain\": 63293,\n  \"face-lying\": 58238,\n  \"sprinkler\": 57397,\n  \"building-circle-xmark\": 58580,\n  \"person-sledding\": 63435,\n  \"sledding\": 63435,\n  \"game-console-handheld\": 63675,\n  \"ship\": 61978,\n  \"clock-six-thirty\": 58195,\n  \"battery-slash\": 62327,\n  \"tugrik-sign\": 58042,\n  \"arrows-down-to-line\": 58552,\n  \"download\": 61465,\n  \"angles-up-down\": 58893,\n  \"shelves\": 62592,\n  \"inventory\": 62592,\n  \"cloud-snow\": 63298,\n  \"face-grin\": 62848,\n  \"grin\": 62848,\n  \"delete-left\": 62810,\n  \"backspace\": 62810,\n  \"oven\": 57373,\n  \"cloud-binary\": 58881,\n  \"eye-dropper\": 61947,\n  \"eye-dropper-empty\": 61947,\n  \"eyedropper\": 61947,\n  \"comment-captions\": 57670,\n  \"comments-question\": 57678,\n  \"scribble\": 57919,\n  \"rotate-exclamation\": 57916,\n  \"file-circle-check\": 58784,\n  \"glass\": 63492,\n  \"loader\": 57812,\n  \"forward\": 61518,\n  \"user-pilot\": 58048,\n  \"mobile\": 62414,\n  \"mobile-android\": 62414,\n  \"mobile-phone\": 62414,\n  \"code-pull-request-closed\": 58361,\n  \"face-meh\": 61722,\n  \"meh\": 61722,\n  \"align-center\": 61495,\n  \"book-skull\": 63159,\n  \"book-dead\": 63159,\n  \"id-card\": 62146,\n  \"drivers-license\": 62146,\n  \"face-dotted\": 58495,\n  \"face-worried\": 58275,\n  \"outdent\": 61499,\n  \"dedent\": 61499,\n  \"court-sport\": 58947,\n  \"heart-circle-exclamation\": 58622,\n  \"house\": 61461,\n  \"home\": 61461,\n  \"home-alt\": 61461,\n  \"home-lg-alt\": 61461,\n  \"vector-circle\": 58054,\n  \"car-circle-bolt\": 58178,\n  \"calendar-week\": 63364,\n  \"flying-disc\": 58281,\n  \"laptop-medical\": 63506,\n  \"square-down-right\": 57964,\n  \"b\": 66,\n  \"seat-airline\": 57924,\n  \"moon-over-sun\": 63306,\n  \"eclipse-alt\": 63306,\n  \"pipe\": 124,\n  \"file-medical\": 62583,\n  \"potato\": 58432,\n  \"dice-one\": 62757,\n  \"circle-a\": 57591,\n  \"helmet-battle\": 63211,\n  \"butter\": 58340,\n  \"blanket-fire\": 58330,\n  \"kiwi-bird\": 62773,\n  \"castle\": 57566,\n  \"golf-club\": 62545,\n  \"arrow-right-arrow-left\": 61676,\n  \"exchange\": 61676,\n  \"rotate-right\": 62201,\n  \"redo-alt\": 62201,\n  \"rotate-forward\": 62201,\n  \"utensils\": 62183,\n  \"cutlery\": 62183,\n  \"arrow-up-wide-short\": 61793,\n  \"sort-amount-up\": 61793,\n  \"chart-pie-simple-circle-dollar\": 58885,\n  \"balloons\": 58084,\n  \"mill-sign\": 57837,\n  \"bowl-rice\": 58091,\n  \"timeline-arrow\": 58013,\n  \"skull\": 62796,\n  \"game-board-simple\": 63592,\n  \"game-board-alt\": 63592,\n  \"circle-video\": 57643,\n  \"video-circle\": 57643,\n  \"chart-scatter-bubble\": 57577,\n  \"house-turret\": 57780,\n  \"banana\": 58085,\n  \"hand-holding-skull\": 57764,\n  \"people-dress\": 57879,\n  \"loveseat\": 62668,\n  \"couch-small\": 62668,\n  \"tower-broadcast\": 62745,\n  \"broadcast-tower\": 62745,\n  \"truck-pickup\": 63036,\n  \"block-quote\": 57525,\n  \"up-long\": 62220,\n  \"long-arrow-alt-up\": 62220,\n  \"stop\": 61517,\n  \"code-merge\": 62343,\n  \"money-check-dollar-pen\": 63603,\n  \"money-check-edit-alt\": 63603,\n  \"up-from-line\": 62278,\n  \"arrow-alt-from-bottom\": 62278,\n  \"upload\": 61587,\n  \"hurricane\": 63313,\n  \"grid-round-2-plus\": 58844,\n  \"people-pants\": 57881,\n  \"mound\": 58669,\n  \"windsock\": 63351,\n  \"circle-half\": 57616,\n  \"brake-warning\": 57543,\n  \"toilet-portable\": 58755,\n  \"compact-disc\": 62751,\n  \"file-arrow-down\": 62829,\n  \"file-download\": 62829,\n  \"saxophone-fire\": 63707,\n  \"sax-hot\": 63707,\n  \"camera-web-slash\": 63539,\n  \"webcam-slash\": 63539,\n  \"folder-medical\": 57740,\n  \"folder-gear\": 57735,\n  \"folder-cog\": 57735,\n  \"hand-wave\": 57767,\n  \"arrow-up-arrow-down\": 57497,\n  \"sort-up-down\": 57497,\n  \"caravan\": 63743,\n  \"shield-cat\": 58738,\n  \"message-slash\": 62633,\n  \"comment-alt-slash\": 62633,\n  \"bolt\": 61671,\n  \"zap\": 61671,\n  \"trash-can-check\": 58025,\n  \"glass-water\": 58612,\n  \"oil-well\": 58674,\n  \"table-cells-column-unlock\": 59024,\n  \"person-simple\": 57888,\n  \"arrow-turn-left-up\": 58932,\n  \"vault\": 58053,\n  \"mars\": 61986,\n  \"toilet\": 63448,\n  \"plane-circle-xmark\": 58711,\n  \"yen-sign\": 61783,\n  \"cny\": 61783,\n  \"jpy\": 61783,\n  \"rmb\": 61783,\n  \"yen\": 61783,\n  \"gear-code\": 58856,\n  \"notes\": 57858,\n  \"ruble-sign\": 61784,\n  \"rouble\": 61784,\n  \"rub\": 61784,\n  \"ruble\": 61784,\n  \"trash-undo\": 63637,\n  \"trash-arrow-turn-left\": 63637,\n  \"champagne-glass\": 63390,\n  \"glass-champagne\": 63390,\n  \"objects-align-center-horizontal\": 58300,\n  \"sun\": 61829,\n  \"trash-can-slash\": 58029,\n  \"trash-alt-slash\": 58029,\n  \"screen-users\": 63037,\n  \"users-class\": 63037,\n  \"guitar\": 63398,\n  \"square-arrow-left\": 62266,\n  \"arrow-square-left\": 62266,\n  \"square-8\": 57949,\n  \"face-smile-hearts\": 58256,\n  \"brackets-square\": 63465,\n  \"brackets\": 63465,\n  \"laptop-arrow-down\": 57798,\n  \"hockey-stick-puck\": 58286,\n  \"house-tree\": 57779,\n  \"signal-fair\": 63117,\n  \"signal-2\": 63117,\n  \"face-laugh-wink\": 62876,\n  \"laugh-wink\": 62876,\n  \"circle-dollar\": 62184,\n  \"dollar-circle\": 62184,\n  \"usd-circle\": 62184,\n  \"horse-head\": 63403,\n  \"arrows-repeat\": 62308,\n  \"repeat-alt\": 62308,\n  \"bore-hole\": 58563,\n  \"industry\": 62069,\n  \"image-polaroid\": 63684,\n  \"wave-triangle\": 63642,\n  \"turn-left-down\": 58935,\n  \"person-running-fast\": 58879,\n  \"circle-down\": 62296,\n  \"arrow-alt-circle-down\": 62296,\n  \"grill\": 58787,\n  \"arrows-turn-to-dots\": 58561,\n  \"chart-mixed\": 63043,\n  \"analytics\": 63043,\n  \"florin-sign\": 57732,\n  \"arrow-down-short-wide\": 63620,\n  \"sort-amount-desc\": 63620,\n  \"sort-amount-down-alt\": 63620,\n  \"less-than\": 60,\n  \"display-code\": 57701,\n  \"desktop-code\": 57701,\n  \"face-drooling\": 58226,\n  \"oil-temperature\": 62996,\n  \"oil-temp\": 62996,\n  \"square-question\": 62205,\n  \"question-square\": 62205,\n  \"air-conditioner\": 63732,\n  \"angle-down\": 61703,\n  \"mountains\": 63229,\n  \"omega\": 63098,\n  \"car-tunnel\": 58590,\n  \"person-dolly-empty\": 62673,\n  \"pan-food\": 58411,\n  \"head-side-cough\": 57441,\n  \"grip-lines\": 63396,\n  \"thumbs-down\": 61797,\n  \"user-lock\": 62722,\n  \"arrow-right-long\": 61816,\n  \"long-arrow-right\": 61816,\n  \"tickets-airline\": 58011,\n  \"tickets-perforated-plane\": 58011,\n  \"tickets-plane\": 58011,\n  \"tent-double-peak\": 58919,\n  \"anchor-circle-xmark\": 58540,\n  \"ellipsis\": 61761,\n  \"ellipsis-h\": 61761,\n  \"nfc-slash\": 57852,\n  \"chess-pawn\": 62531,\n  \"kit-medical\": 62585,\n  \"first-aid\": 62585,\n  \"grid-2-plus\": 57751,\n  \"bells\": 63359,\n  \"person-through-window\": 58793,\n  \"toolbox\": 62802,\n  \"globe-wifi\": 59013,\n  \"envelope-dot\": 57711,\n  \"envelope-badge\": 57711,\n  \"magnifying-glass-waveform\": 58977,\n  \"hands-holding-circle\": 58619,\n  \"bug\": 61832,\n  \"bowl-chopsticks\": 58089,\n  \"credit-card\": 61597,\n  \"credit-card-alt\": 61597,\n  \"circle-s\": 57633,\n  \"box-ballot\": 63285,\n  \"car\": 61881,\n  \"automobile\": 61881,\n  \"hand-holding-hand\": 58615,\n  \"user-tie-hair\": 58463,\n  \"podium-star\": 63320,\n  \"user-hair-mullet\": 58460,\n  \"business-front\": 58460,\n  \"party-back\": 58460,\n  \"trian-balbot\": 58460,\n  \"microphone-stand\": 63691,\n  \"book-open-reader\": 62938,\n  \"book-reader\": 62938,\n  \"family-dress\": 58113,\n  \"circle-x\": 57646,\n  \"cabin\": 58477,\n  \"mountain-sun\": 58671,\n  \"chart-simple-horizontal\": 58484,\n  \"arrows-left-right-to-line\": 58554,\n  \"hand-back-point-left\": 57759,\n  \"message-dots\": 62627,\n  \"comment-alt-dots\": 62627,\n  \"messaging\": 62627,\n  \"file-heart\": 57718,\n  \"beer-mug\": 57523,\n  \"beer-foam\": 57523,\n  \"dice-d20\": 63183,\n  \"drone\": 63583,\n  \"truck-droplet\": 58764,\n  \"file-circle-xmark\": 58785,\n  \"temperature-arrow-up\": 57408,\n  \"temperature-up\": 57408,\n  \"medal\": 62882,\n  \"person-fairy\": 58888,\n  \"bed\": 62006,\n  \"book-copy\": 57534,\n  \"square-h\": 61693,\n  \"h-square\": 61693,\n  \"square-c\": 57958,\n  \"clock-two\": 58202,\n  \"square-ellipsis-vertical\": 57967,\n  \"calendar-users\": 58850,\n  \"podcast\": 62158,\n  \"bee\": 57522,\n  \"temperature-full\": 62151,\n  \"temperature-4\": 62151,\n  \"thermometer-4\": 62151,\n  \"thermometer-full\": 62151,\n  \"bell\": 61683,\n  \"candy-bar\": 58344,\n  \"chocolate-bar\": 58344,\n  \"xmark-large\": 58779,\n  \"pinata\": 58307,\n  \"file-ppt\": 58954,\n  \"arrows-from-line\": 57508,\n  \"superscript\": 61739,\n  \"bowl-spoon\": 58336,\n  \"hexagon-check\": 58390,\n  \"plug-circle-xmark\": 58720,\n  \"star-of-life\": 63009,\n  \"phone-slash\": 62429,\n  \"traffic-light-stop\": 63034,\n  \"paint-roller\": 62890,\n  \"accent-grave\": 96,\n  \"handshake-angle\": 62660,\n  \"hands-helping\": 62660,\n  \"circle-0\": 57581,\n  \"dial-med-low\": 57696,\n  \"location-dot\": 62405,\n  \"map-marker-alt\": 62405,\n  \"crab\": 58367,\n  \"box-open-full\": 62620,\n  \"box-full\": 62620,\n  \"file\": 61787,\n  \"greater-than\": 62,\n  \"quotes\": 57908,\n  \"pretzel\": 58433,\n  \"t-rex\": 58921,\n  \"person-swimming\": 62916,\n  \"swimmer\": 62916,\n  \"arrow-down\": 61539,\n  \"user-robot-xmarks\": 58535,\n  \"message-quote\": 57828,\n  \"comment-alt-quote\": 57828,\n  \"candy-corn\": 63165,\n  \"folder-magnifying-glass\": 57739,\n  \"folder-search\": 57739,\n  \"notebook\": 57857,\n  \"circle-wifi\": 59005,\n  \"droplet\": 61507,\n  \"tint\": 61507,\n  \"bullseye-pointer\": 63049,\n  \"eraser\": 61741,\n  \"hexagon-image\": 58628,\n  \"earth-americas\": 62845,\n  \"earth\": 62845,\n  \"earth-america\": 62845,\n  \"globe-americas\": 62845,\n  \"file-svg\": 58955,\n  \"crate-apple\": 63153,\n  \"apple-crate\": 63153,\n  \"person-burst\": 58683,\n  \"game-board\": 63591,\n  \"hat-chef\": 63595,\n  \"hand-back-point-right\": 57761,\n  \"dove\": 62650,\n  \"snowflake-droplets\": 58817,\n  \"battery-empty\": 62020,\n  \"battery-0\": 62020,\n  \"grid-4\": 57752,\n  \"socks\": 63126,\n  \"face-sunglasses\": 58264,\n  \"inbox\": 61468,\n  \"square-0\": 57941,\n  \"section\": 58439,\n  \"square-this-way-up\": 62623,\n  \"box-up\": 62623,\n  \"gauge-high\": 63013,\n  \"tachometer-alt\": 63013,\n  \"tachometer-alt-fast\": 63013,\n  \"square-ampersand\": 57952,\n  \"envelope-open-text\": 63064,\n  \"lamp-desk\": 57364,\n  \"hospital\": 61688,\n  \"hospital-alt\": 61688,\n  \"hospital-wide\": 61688,\n  \"poll-people\": 63321,\n  \"whiskey-glass-ice\": 63393,\n  \"glass-whiskey-rocks\": 63393,\n  \"wine-bottle\": 63279,\n  \"chess-rook\": 62535,\n  \"user-bounty-hunter\": 58047,\n  \"bars-staggered\": 62800,\n  \"reorder\": 62800,\n  \"stream\": 62800,\n  \"diagram-sankey\": 57688,\n  \"cloud-hail-mixed\": 63290,\n  \"circle-up-left\": 57640,\n  \"dharmachakra\": 63061,\n  \"objects-align-left\": 58302,\n  \"oil-can-drip\": 57861,\n  \"face-smiling-hands\": 58262,\n  \"broccoli\": 58338,\n  \"route-interstate\": 63003,\n  \"ear-muffs\": 63381,\n  \"hotdog\": 63503,\n  \"transporter-empty\": 57414,\n  \"person-walking-with-cane\": 62109,\n  \"blind\": 62109,\n  \"angle-90\": 57485,\n  \"rectangle-terminal\": 57910,\n  \"kite\": 63220,\n  \"drum\": 62825,\n  \"scrubber\": 62200,\n  \"ice-cream\": 63504,\n  \"heart-circle-bolt\": 58620,\n  \"fish-bones\": 58116,\n  \"deer-rudolph\": 63375,\n  \"fax\": 61868,\n  \"paragraph\": 61917,\n  \"head-side-heart\": 57770,\n  \"square-e\": 57965,\n  \"meter-fire\": 57835,\n  \"cloud-hail\": 63289,\n  \"check-to-slot\": 63346,\n  \"vote-yea\": 63346,\n  \"money-from-bracket\": 58130,\n  \"star-half\": 61577,\n  \"car-bus\": 63578,\n  \"speaker\": 63711,\n  \"timer\": 58014,\n  \"boxes-stacked\": 62568,\n  \"boxes\": 62568,\n  \"boxes-alt\": 62568,\n  \"landmark-magnifying-glass\": 58914,\n  \"grill-hot\": 58789,\n  \"ballot-check\": 63283,\n  \"link\": 61633,\n  \"chain\": 61633,\n  \"ear-listen\": 62114,\n  \"assistive-listening-systems\": 62114,\n  \"file-minus\": 62232,\n  \"tree-city\": 58759,\n  \"play\": 61515,\n  \"font\": 61489,\n  \"cup-togo\": 63173,\n  \"coffee-togo\": 63173,\n  \"square-down-left\": 57963,\n  \"burger-lettuce\": 58339,\n  \"table-cells-row-lock\": 59002,\n  \"rupiah-sign\": 57917,\n  \"magnifying-glass\": 61442,\n  \"search\": 61442,\n  \"table-tennis-paddle-ball\": 62557,\n  \"ping-pong-paddle-ball\": 62557,\n  \"table-tennis\": 62557,\n  \"person-dots-from-line\": 62576,\n  \"diagnoses\": 62576,\n  \"chevrons-down\": 62242,\n  \"chevron-double-down\": 62242,\n  \"trash-can-arrow-up\": 63530,\n  \"trash-restore-alt\": 63530,\n  \"signal-good\": 63118,\n  \"signal-3\": 63118,\n  \"location-question\": 62987,\n  \"map-marker-question\": 62987,\n  \"floppy-disk-circle-xmark\": 57729,\n  \"floppy-disk-times\": 57729,\n  \"save-circle-xmark\": 57729,\n  \"save-times\": 57729,\n  \"naira-sign\": 57846,\n  \"peach\": 57867,\n  \"circles-overlap-3\": 59041,\n  \"pronoun\": 59041,\n  \"taxi-bus\": 58008,\n  \"bracket-curly\": 123,\n  \"bracket-curly-left\": 123,\n  \"lobster\": 58401,\n  \"cart-flatbed-empty\": 62582,\n  \"dolly-flatbed-empty\": 62582,\n  \"colon\": 58,\n  \"cart-arrow-down\": 61976,\n  \"wand\": 63274,\n  \"walkie-talkie\": 63727,\n  \"file-pen\": 62236,\n  \"file-edit\": 62236,\n  \"receipt\": 62787,\n  \"table-picnic\": 58157,\n  \"square-pen\": 61771,\n  \"pen-square\": 61771,\n  \"pencil-square\": 61771,\n  \"circle-microphone-lines\": 57623,\n  \"microphone-circle-alt\": 57623,\n  \"display-slash\": 58106,\n  \"desktop-slash\": 58106,\n  \"suitcase-rolling\": 62913,\n  \"person-circle-exclamation\": 58687,\n  \"transporter-2\": 57412,\n  \"user-hoodie\": 59018,\n  \"hands-holding-diamond\": 62588,\n  \"hand-receiving\": 62588,\n  \"money-bill-simple-wave\": 57842,\n  \"chevron-down\": 61560,\n  \"battery-full\": 62016,\n  \"battery\": 62016,\n  \"battery-5\": 62016,\n  \"bell-plus\": 63561,\n  \"book-arrow-right\": 57529,\n  \"hospitals\": 63502,\n  \"club\": 62247,\n  \"skull-crossbones\": 63252,\n  \"droplet-degree\": 63304,\n  \"dewpoint\": 63304,\n  \"code-compare\": 57658,\n  \"list-ul\": 61642,\n  \"list-dots\": 61642,\n  \"hand-holding-magic\": 63205,\n  \"watermelon-slice\": 58167,\n  \"circle-ellipsis\": 57610,\n  \"school-lock\": 58735,\n  \"tower-cell\": 58757,\n  \"sd-cards\": 57920,\n  \"jug-bottle\": 58875,\n  \"down-long\": 62217,\n  \"long-arrow-alt-down\": 62217,\n  \"envelopes\": 57712,\n  \"phone-office\": 63101,\n  \"ranking-star\": 58721,\n  \"chess-king\": 62527,\n  \"nfc-pen\": 57850,\n  \"person-harassing\": 58697,\n  \"magnifying-glass-play\": 58976,\n  \"hat-winter\": 63400,\n  \"brazilian-real-sign\": 58476,\n  \"landmark-dome\": 63314,\n  \"landmark-alt\": 63314,\n  \"bone-break\": 62936,\n  \"arrow-up\": 61538,\n  \"down-from-dotted-line\": 58375,\n  \"tv\": 62060,\n  \"television\": 62060,\n  \"tv-alt\": 62060,\n  \"border-left\": 63567,\n  \"circle-divide\": 57606,\n  \"shrimp\": 58440,\n  \"list-check\": 61614,\n  \"tasks\": 61614,\n  \"diagram-subtask\": 58489,\n  \"jug-detergent\": 58649,\n  \"circle-user\": 62141,\n  \"user-circle\": 62141,\n  \"square-y\": 57991,\n  \"user-doctor-hair\": 58456,\n  \"planet-ringed\": 57376,\n  \"mushroom\": 58405,\n  \"user-shield\": 62725,\n  \"megaphone\": 63093,\n  \"wreath-laurel\": 58834,\n  \"circle-exclamation-check\": 57613,\n  \"wind\": 63278,\n  \"box-dollar\": 62624,\n  \"box-usd\": 62624,\n  \"car-burst\": 62945,\n  \"car-crash\": 62945,\n  \"y\": 89,\n  \"user-headset\": 63533,\n  \"arrows-retweet\": 62305,\n  \"retweet-alt\": 62305,\n  \"person-snowboarding\": 63438,\n  \"snowboarding\": 63438,\n  \"square-chevron-right\": 62251,\n  \"chevron-square-right\": 62251,\n  \"lacrosse-stick-ball\": 58294,\n  \"truck-fast\": 62603,\n  \"shipping-fast\": 62603,\n  \"user-magnifying-glass\": 58821,\n  \"star-sharp\": 57995,\n  \"comment-heart\": 58824,\n  \"circle-1\": 57582,\n  \"circle-star\": 57635,\n  \"star-circle\": 57635,\n  \"fish\": 62840,\n  \"cloud-fog\": 63310,\n  \"fog\": 63310,\n  \"waffle\": 58470,\n  \"music-note\": 63695,\n  \"music-alt\": 63695,\n  \"hexagon-exclamation\": 58391,\n  \"cart-shopping-fast\": 57564,\n  \"object-union\": 58527,\n  \"user-graduate\": 62721,\n  \"starfighter\": 57399,\n  \"circle-half-stroke\": 61506,\n  \"adjust\": 61506,\n  \"arrow-right-long-to-line\": 58325,\n  \"square-arrow-down\": 62265,\n  \"arrow-square-down\": 62265,\n  \"diamond-half-stroke\": 58808,\n  \"clapperboard\": 57649,\n  \"square-chevron-left\": 62250,\n  \"chevron-square-left\": 62250,\n  \"phone-intercom\": 58420,\n  \"link-horizontal\": 57803,\n  \"chain-horizontal\": 57803,\n  \"mango\": 58127,\n  \"music-note-slash\": 63696,\n  \"music-alt-slash\": 63696,\n  \"circle-radiation\": 63418,\n  \"radiation-alt\": 63418,\n  \"face-tongue-sweat\": 58270,\n  \"globe-stand\": 62966,\n  \"baseball\": 62515,\n  \"baseball-ball\": 62515,\n  \"circle-p\": 57626,\n  \"award-simple\": 57515,\n  \"jet-fighter-up\": 58648,\n  \"diagram-project\": 62786,\n  \"project-diagram\": 62786,\n  \"pedestal\": 57869,\n  \"chart-pyramid\": 57574,\n  \"sidebar\": 57934,\n  \"snowman-head\": 63387,\n  \"frosty-head\": 63387,\n  \"copy\": 61637,\n  \"burger-glass\": 57550,\n  \"volume-xmark\": 63145,\n  \"volume-mute\": 63145,\n  \"volume-times\": 63145,\n  \"hand-sparkles\": 57437,\n  \"bars-filter\": 57517,\n  \"paintbrush-pencil\": 57862,\n  \"party-bell\": 58138,\n  \"user-vneck-hair\": 58466,\n  \"jack-o-lantern\": 62222,\n  \"grip\": 62861,\n  \"grip-horizontal\": 62861,\n  \"share-from-square\": 61773,\n  \"share-square\": 61773,\n  \"keynote\": 63084,\n  \"child-combatant\": 58592,\n  \"child-rifle\": 58592,\n  \"gun\": 57755,\n  \"square-phone\": 61592,\n  \"phone-square\": 61592,\n  \"hat-beach\": 58886,\n  \"plus\": 43,\n  \"add\": 43,\n  \"expand\": 61541,\n  \"computer\": 58597,\n  \"fort\": 58502,\n  \"cloud-check\": 58204,\n  \"xmark\": 61453,\n  \"close\": 61453,\n  \"multiply\": 61453,\n  \"remove\": 61453,\n  \"times\": 61453,\n  \"face-smirking\": 58263,\n  \"arrows-up-down-left-right\": 61511,\n  \"arrows\": 61511,\n  \"chalkboard-user\": 62748,\n  \"chalkboard-teacher\": 62748,\n  \"rhombus\": 57915,\n  \"claw-marks\": 63170,\n  \"peso-sign\": 57890,\n  \"face-smile-tongue\": 58260,\n  \"cart-circle-xmark\": 58356,\n  \"building-shield\": 58584,\n  \"circle-phone-flip\": 57628,\n  \"phone-circle-alt\": 57628,\n  \"baby\": 63356,\n  \"users-line\": 58770,\n  \"quote-left\": 61709,\n  \"quote-left-alt\": 61709,\n  \"tractor\": 63266,\n  \"down-from-bracket\": 58987,\n  \"key-skeleton\": 63219,\n  \"trash-arrow-up\": 63529,\n  \"trash-restore\": 63529,\n  \"arrow-down-up-lock\": 58544,\n  \"arrow-down-to-bracket\": 57492,\n  \"lines-leaning\": 58654,\n  \"square-q\": 57979,\n  \"ruler-combined\": 62790,\n  \"symbols\": 63598,\n  \"icons-alt\": 63598,\n  \"copyright\": 61945,\n  \"flask-gear\": 58865,\n  \"highlighter-line\": 57775,\n  \"bracket-square\": 91,\n  \"bracket\": 91,\n  \"bracket-left\": 91,\n  \"island-tropical\": 63505,\n  \"island-tree-palm\": 63505,\n  \"arrow-right-from-line\": 62275,\n  \"arrow-from-left\": 62275,\n  \"h2\": 62228,\n  \"equals\": 61,\n  \"cake-slice\": 58341,\n  \"shortcake\": 58341,\n  \"building-magnifying-glass\": 58908,\n  \"peanut\": 58416,\n  \"wrench-simple\": 58065,\n  \"blender\": 62743,\n  \"teeth\": 63022,\n  \"tally-2\": 58005,\n  \"shekel-sign\": 61963,\n  \"ils\": 61963,\n  \"shekel\": 61963,\n  \"sheqel\": 61963,\n  \"sheqel-sign\": 61963,\n  \"cars\": 63579,\n  \"axe-battle\": 63155,\n  \"user-hair-long\": 58459,\n  \"map\": 62073,\n  \"arrow-left-from-arc\": 58901,\n  \"file-circle-info\": 58515,\n  \"face-disappointed\": 58223,\n  \"lasso-sparkles\": 57801,\n  \"clock-eleven\": 58183,\n  \"rocket\": 61749,\n  \"siren-on\": 57390,\n  \"clock-ten\": 58196,\n  \"candle-holder\": 63164,\n  \"video-arrow-down-left\": 58056,\n  \"photo-film\": 63612,\n  \"photo-video\": 63612,\n  \"floppy-disk-circle-arrow-right\": 57728,\n  \"save-circle-arrow-right\": 57728,\n  \"folder-minus\": 63069,\n  \"hexagon-nodes-bolt\": 59034,\n  \"planet-moon\": 57375,\n  \"face-eyes-xmarks\": 58228,\n  \"chart-scatter\": 63470,\n  \"circle-gf\": 59007,\n  \"display-arrow-down\": 57700,\n  \"store\": 62798,\n  \"arrow-trend-up\": 57496,\n  \"plug-circle-minus\": 58718,\n  \"olive-branch\": 58135,\n  \"angle\": 57484,\n  \"vacuum-robot\": 57422,\n  \"sign-hanging\": 62681,\n  \"sign\": 62681,\n  \"square-divide\": 57962,\n  \"folder-check\": 58958,\n  \"signal-stream-slash\": 57936,\n  \"bezier-curve\": 62811,\n  \"eye-dropper-half\": 57715,\n  \"store-lock\": 58534,\n  \"bell-slash\": 61942,\n  \"cloud-bolt-sun\": 63342,\n  \"thunderstorm-sun\": 63342,\n  \"camera-slash\": 57561,\n  \"comment-quote\": 57676,\n  \"tablet\": 62459,\n  \"tablet-android\": 62459,\n  \"school-flag\": 58734,\n  \"message-code\": 57823,\n  \"glass-half\": 57746,\n  \"glass-half-empty\": 57746,\n  \"glass-half-full\": 57746,\n  \"fill\": 62837,\n  \"message-minus\": 62631,\n  \"comment-alt-minus\": 62631,\n  \"angle-up\": 61702,\n  \"dinosaur\": 58878,\n  \"drumstick-bite\": 63191,\n  \"link-horizontal-slash\": 57804,\n  \"chain-horizontal-slash\": 57804,\n  \"holly-berry\": 63402,\n  \"nose\": 58813,\n  \"arrow-left-to-arc\": 58902,\n  \"chevron-left\": 61523,\n  \"bacteria\": 57433,\n  \"clouds\": 63300,\n  \"money-bill-simple\": 57841,\n  \"hand-lizard\": 62040,\n  \"table-pivot\": 58001,\n  \"filter-slash\": 57725,\n  \"trash-can-undo\": 63638,\n  \"trash-can-arrow-turn-left\": 63638,\n  \"trash-undo-alt\": 63638,\n  \"notdef\": 57854,\n  \"disease\": 63482,\n  \"person-to-door\": 58419,\n  \"turntable\": 63716,\n  \"briefcase-medical\": 62569,\n  \"genderless\": 61997,\n  \"chevron-right\": 61524,\n  \"signal-weak\": 63116,\n  \"signal-1\": 63116,\n  \"clock-five\": 58185,\n  \"retweet\": 61561,\n  \"car-rear\": 62942,\n  \"car-alt\": 62942,\n  \"pump-soap\": 57451,\n  \"computer-classic\": 63665,\n  \"frame\": 58517,\n  \"video-slash\": 62690,\n  \"battery-quarter\": 62019,\n  \"battery-2\": 62019,\n  \"ellipsis-stroke\": 62363,\n  \"ellipsis-h-alt\": 62363,\n  \"radio\": 63703,\n  \"baby-carriage\": 63357,\n  \"carriage-baby\": 63357,\n  \"face-expressionless\": 58227,\n  \"down-to-dotted-line\": 58376,\n  \"cloud-music\": 63662,\n  \"traffic-light\": 63031,\n  \"cloud-minus\": 58205,\n  \"thermometer\": 62609,\n  \"shield-minus\": 57929,\n  \"vr-cardboard\": 63273,\n  \"car-tilt\": 62949,\n  \"gauge-circle-minus\": 58519,\n  \"brightness-low\": 57546,\n  \"hand-middle-finger\": 63494,\n  \"percent\": 37,\n  \"percentage\": 37,\n  \"truck-moving\": 62687,\n  \"glass-water-droplet\": 58613,\n  \"conveyor-belt\": 62574,\n  \"location-check\": 62982,\n  \"map-marker-check\": 62982,\n  \"coin-vertical\": 58365,\n  \"display\": 57699,\n  \"person-sign\": 63319,\n  \"face-smile\": 61720,\n  \"smile\": 61720,\n  \"phone-hangup\": 57893,\n  \"signature-slash\": 58315,\n  \"thumbtack\": 61581,\n  \"thumb-tack\": 61581,\n  \"wheat-slash\": 58169,\n  \"trophy\": 61585,\n  \"clouds-sun\": 63302,\n  \"person-praying\": 63107,\n  \"pray\": 63107,\n  \"hammer\": 63203,\n  \"face-vomit\": 58272,\n  \"speakers\": 63712,\n  \"tty-answer\": 58041,\n  \"teletype-answer\": 58041,\n  \"mug-tea-saucer\": 57845,\n  \"diagram-lean-canvas\": 57686,\n  \"alt\": 57482,\n  \"dial\": 57691,\n  \"dial-med-high\": 57691,\n  \"hand-peace\": 62043,\n  \"circle-trash\": 57638,\n  \"trash-circle\": 57638,\n  \"rotate\": 62193,\n  \"sync-alt\": 62193,\n  \"circle-quarters\": 58360,\n  \"spinner\": 61712,\n  \"tower-control\": 58018,\n  \"arrow-up-triangle-square\": 63626,\n  \"sort-shapes-up\": 63626,\n  \"whale\": 63276,\n  \"robot\": 62788,\n  \"peace\": 63100,\n  \"party-horn\": 58139,\n  \"gears\": 61573,\n  \"cogs\": 61573,\n  \"sun-bright\": 57999,\n  \"sun-alt\": 57999,\n  \"warehouse\": 62612,\n  \"conveyor-belt-arm\": 58872,\n  \"lock-keyhole-open\": 62402,\n  \"lock-open-alt\": 62402,\n  \"square-fragile\": 62619,\n  \"box-fragile\": 62619,\n  \"square-wine-glass-crack\": 62619,\n  \"arrow-up-right-dots\": 58551,\n  \"square-n\": 57975,\n  \"splotch\": 62908,\n  \"face-grin-hearts\": 62852,\n  \"grin-hearts\": 62852,\n  \"meter\": 57832,\n  \"mandolin\": 63225,\n  \"dice-four\": 62756,\n  \"sim-card\": 63428,\n  \"transgender\": 61989,\n  \"transgender-alt\": 61989,\n  \"mercury\": 61987,\n  \"up-from-bracket\": 58768,\n  \"knife-kitchen\": 63221,\n  \"border-right\": 63570,\n  \"arrow-turn-down\": 61769,\n  \"level-down\": 61769,\n  \"spade\": 62196,\n  \"card-spade\": 58348,\n  \"line-columns\": 63600,\n  \"ant\": 59008,\n  \"arrow-right-to-line\": 62272,\n  \"arrow-to-right\": 62272,\n  \"person-falling-burst\": 58695,\n  \"flag-pennant\": 62550,\n  \"pennant\": 62550,\n  \"conveyor-belt-empty\": 57680,\n  \"user-group-simple\": 58883,\n  \"award\": 62809,\n  \"ticket-simple\": 62463,\n  \"ticket-alt\": 62463,\n  \"building\": 61869,\n  \"angles-left\": 61696,\n  \"angle-double-left\": 61696,\n  \"camcorder\": 63656,\n  \"video-handheld\": 63656,\n  \"pancakes\": 58413,\n  \"album-circle-user\": 58509,\n  \"subtitles-slash\": 58896,\n  \"qrcode\": 61481,\n  \"dice-d10\": 63181,\n  \"fireplace\": 63386,\n  \"browser\": 62334,\n  \"pen-paintbrush\": 63000,\n  \"pencil-paintbrush\": 63000,\n  \"fish-cooked\": 63486,\n  \"chair-office\": 63169,\n  \"magnifying-glass-music\": 58975,\n  \"nesting-dolls\": 58298,\n  \"clock-rotate-left\": 61914,\n  \"history\": 61914,\n  \"trumpet\": 63715,\n  \"face-grin-beam-sweat\": 62851,\n  \"grin-beam-sweat\": 62851,\n  \"fire-smoke\": 63307,\n  \"phone-missed\": 57894,\n  \"file-export\": 62830,\n  \"arrow-right-from-file\": 62830,\n  \"shield\": 61746,\n  \"shield-blank\": 61746,\n  \"arrow-up-short-wide\": 63621,\n  \"sort-amount-up-alt\": 63621,\n  \"arrows-repeat-1\": 62310,\n  \"repeat-1-alt\": 62310,\n  \"gun-slash\": 57756,\n  \"avocado\": 57514,\n  \"binary\": 58171,\n  \"comment-nodes\": 59030,\n  \"glasses-round\": 62965,\n  \"glasses-alt\": 62965,\n  \"phone-plus\": 62674,\n  \"ditto\": 34,\n  \"person-seat\": 57886,\n  \"house-medical\": 58290,\n  \"golf-ball-tee\": 62544,\n  \"golf-ball\": 62544,\n  \"circle-chevron-left\": 61751,\n  \"chevron-circle-left\": 61751,\n  \"house-chimney-window\": 57357,\n  \"scythe\": 63248,\n  \"pen-nib\": 62893,\n  \"ban-parking\": 62998,\n  \"parking-circle-slash\": 62998,\n  \"tent-arrow-turn-left\": 58752,\n  \"face-diagonal-mouth\": 58494,\n  \"diagram-cells\": 58485,\n  \"cricket-bat-ball\": 62537,\n  \"cricket\": 62537,\n  \"tents\": 58754,\n  \"wand-magic\": 61648,\n  \"magic\": 61648,\n  \"dog\": 63187,\n  \"pen-line\": 57874,\n  \"atom-simple\": 62931,\n  \"atom-alt\": 62931,\n  \"ampersand\": 38,\n  \"carrot\": 63367,\n  \"arrow-up-from-line\": 62274,\n  \"arrow-from-bottom\": 62274,\n  \"moon\": 61830,\n  \"pen-slash\": 57875,\n  \"wine-glass-empty\": 62926,\n  \"wine-glass-alt\": 62926,\n  \"square-star\": 57983,\n  \"cheese\": 63471,\n  \"send-backward\": 63615,\n  \"yin-yang\": 63149,\n  \"music\": 61441,\n  \"compass-slash\": 62953,\n  \"clock-one\": 58190,\n  \"file-music\": 63670,\n  \"code-commit\": 62342,\n  \"temperature-low\": 63339,\n  \"person-biking\": 63562,\n  \"biking\": 63562,\n  \"display-chart-up-circle-currency\": 58853,\n  \"skeleton\": 63008,\n  \"circle-g\": 57615,\n  \"circle-arrow-up-left\": 57595,\n  \"coin-blank\": 58363,\n  \"broom\": 62746,\n  \"vacuum\": 57421,\n  \"shield-heart\": 58740,\n  \"card-heart\": 58347,\n  \"lightbulb-cfl-on\": 58791,\n  \"melon\": 58128,\n  \"gopuram\": 63076,\n  \"earth-oceania\": 58491,\n  \"globe-oceania\": 58491,\n  \"container-storage\": 62647,\n  \"face-pouting\": 58247,\n  \"square-xmark\": 62163,\n  \"times-square\": 62163,\n  \"xmark-square\": 62163,\n  \"face-explode\": 58110,\n  \"exploding-head\": 58110,\n  \"hashtag\": 35,\n  \"up-right-and-down-left-from-center\": 62500,\n  \"expand-alt\": 62500,\n  \"oil-can\": 62995,\n  \"t\": 84,\n  \"transformer-bolt\": 58020,\n  \"hippo\": 63213,\n  \"chart-column\": 57571,\n  \"cassette-vhs\": 63724,\n  \"vhs\": 63724,\n  \"infinity\": 62772,\n  \"vial-circle-check\": 58774,\n  \"chimney\": 63371,\n  \"object-intersect\": 58525,\n  \"person-arrow-down-to-line\": 58680,\n  \"voicemail\": 63639,\n  \"block-brick\": 58331,\n  \"wall-brick\": 58331,\n  \"fan\": 63587,\n  \"bags-shopping\": 63559,\n  \"paragraph-left\": 63608,\n  \"paragraph-rtl\": 63608,\n  \"person-walking-luggage\": 58708,\n  \"caravan-simple\": 57344,\n  \"caravan-alt\": 57344,\n  \"turtle\": 63270,\n  \"pencil-mechanical\": 58826,\n  \"up-down\": 62264,\n  \"arrows-alt-v\": 62264,\n  \"cloud-moon-rain\": 63292,\n  \"booth-curtain\": 63284,\n  \"calendar\": 61747,\n  \"box-heart\": 62621,\n  \"trailer\": 57409,\n  \"user-doctor-message\": 63534,\n  \"user-md-chat\": 63534,\n  \"bahai\": 63078,\n  \"haykal\": 63078,\n  \"lighthouse\": 58898,\n  \"amp-guitar\": 63649,\n  \"sd-card\": 63426,\n  \"volume-slash\": 62178,\n  \"border-bottom\": 63565,\n  \"wifi-weak\": 63146,\n  \"wifi-1\": 63146,\n  \"dragon\": 63189,\n  \"shoe-prints\": 62795,\n  \"circle-plus\": 61525,\n  \"plus-circle\": 61525,\n  \"face-grin-tongue-wink\": 62859,\n  \"grin-tongue-wink\": 62859,\n  \"hand-holding\": 62653,\n  \"plug-circle-exclamation\": 58717,\n  \"link-slash\": 61735,\n  \"chain-broken\": 61735,\n  \"chain-slash\": 61735,\n  \"unlink\": 61735,\n  \"clone\": 62029,\n  \"person-walking-arrow-loop-left\": 58705,\n  \"arrow-up-z-a\": 63618,\n  \"sort-alpha-up-alt\": 63618,\n  \"fire-flame-curved\": 63460,\n  \"fire-alt\": 63460,\n  \"tornado\": 63343,\n  \"file-circle-plus\": 58516,\n  \"delete-right\": 57684,\n  \"book-quran\": 63111,\n  \"quran\": 63111,\n  \"circle-quarter\": 57631,\n  \"anchor\": 61757,\n  \"border-all\": 63564,\n  \"function\": 63073,\n  \"face-angry\": 62806,\n  \"angry\": 62806,\n  \"people-simple\": 57883,\n  \"cookie-bite\": 62820,\n  \"arrow-trend-down\": 57495,\n  \"rss\": 61598,\n  \"feed\": 61598,\n  \"face-monocle\": 58240,\n  \"draw-polygon\": 62958,\n  \"scale-balanced\": 62030,\n  \"balance-scale\": 62030,\n  \"calendar-lines\": 57557,\n  \"calendar-note\": 57557,\n  \"arrow-down-big-small\": 63628,\n  \"sort-size-down\": 63628,\n  \"gauge-simple-high\": 63018,\n  \"tachometer\": 63018,\n  \"tachometer-fast\": 63018,\n  \"do-not-enter\": 62956,\n  \"shower\": 62156,\n  \"dice-d8\": 63186,\n  \"desktop\": 62352,\n  \"desktop-alt\": 62352,\n  \"m\": 77,\n  \"spinner-scale\": 58922,\n  \"grip-dots-vertical\": 58385,\n  \"face-viewfinder\": 58111,\n  \"soft-serve\": 58368,\n  \"creemee\": 58368,\n  \"h5\": 58386,\n  \"hand-back-point-down\": 57758,\n  \"table-list\": 61451,\n  \"th-list\": 61451,\n  \"basket-shopping-minus\": 58962,\n  \"comment-sms\": 63437,\n  \"sms\": 63437,\n  \"rectangle\": 62202,\n  \"rectangle-landscape\": 62202,\n  \"clipboard-list-check\": 63287,\n  \"turkey\": 63269,\n  \"book\": 61485,\n  \"user-plus\": 62004,\n  \"ice-skate\": 63404,\n  \"check\": 61452,\n  \"battery-three-quarters\": 62017,\n  \"battery-4\": 62017,\n  \"tomato\": 58160,\n  \"sword-laser\": 57403,\n  \"house-circle-check\": 58633,\n  \"buildings\": 57548,\n  \"angle-left\": 61700,\n  \"cart-flatbed-boxes\": 62581,\n  \"dolly-flatbed-alt\": 62581,\n  \"diagram-successor\": 58490,\n  \"truck-arrow-right\": 58763,\n  \"square-w\": 57989,\n  \"arrows-split-up-and-left\": 58556,\n  \"lamp\": 62666,\n  \"airplay\": 57481,\n  \"hand-fist\": 63198,\n  \"fist-raised\": 63198,\n  \"shield-quartered\": 58741,\n  \"slash-forward\": 47,\n  \"location-pen\": 62983,\n  \"map-marker-edit\": 62983,\n  \"cloud-moon\": 63171,\n  \"pot-food\": 58431,\n  \"briefcase\": 61617,\n  \"person-falling\": 58694,\n  \"image-portrait\": 62432,\n  \"portrait\": 62432,\n  \"user-tag\": 62727,\n  \"rug\": 58729,\n  \"print-slash\": 63110,\n  \"earth-europe\": 63394,\n  \"globe-europe\": 63394,\n  \"cart-flatbed-suitcase\": 62877,\n  \"luggage-cart\": 62877,\n  \"hand-back-point-ribbon\": 57760,\n  \"rectangle-xmark\": 62480,\n  \"rectangle-times\": 62480,\n  \"times-rectangle\": 62480,\n  \"window-close\": 62480,\n  \"tire-rugged\": 63028,\n  \"lightbulb-dollar\": 63088,\n  \"cowbell\": 63667,\n  \"baht-sign\": 57516,\n  \"corner\": 58366,\n  \"chevrons-right\": 62244,\n  \"chevron-double-right\": 62244,\n  \"book-open\": 62744,\n  \"book-journal-whills\": 63082,\n  \"journal-whills\": 63082,\n  \"inhaler\": 62969,\n  \"handcuffs\": 58616,\n  \"snake\": 63254,\n  \"triangle-exclamation\": 61553,\n  \"exclamation-triangle\": 61553,\n  \"warning\": 61553,\n  \"note-medical\": 57856,\n  \"database\": 61888,\n  \"down-left\": 57706,\n  \"share\": 61540,\n  \"mail-forward\": 61540,\n  \"face-thinking\": 58267,\n  \"turn-down-right\": 58453,\n  \"bottle-droplet\": 58564,\n  \"mask-face\": 57815,\n  \"hill-rockslide\": 58632,\n  \"scanner-keyboard\": 62601,\n  \"circle-o\": 57625,\n  \"grid-horizontal\": 58119,\n  \"message-dollar\": 63056,\n  \"comment-alt-dollar\": 63056,\n  \"right-left\": 62306,\n  \"exchange-alt\": 62306,\n  \"columns-3\": 58209,\n  \"paper-plane\": 61912,\n  \"road-circle-exclamation\": 58725,\n  \"dungeon\": 63193,\n  \"hand-holding-box\": 62587,\n  \"input-text\": 57791,\n  \"window-flip\": 62479,\n  \"window-alt\": 62479,\n  \"align-right\": 61496,\n  \"scanner-gun\": 62600,\n  \"scanner\": 62600,\n  \"tire\": 63025,\n  \"engine\": 57710,\n  \"money-bill-1-wave\": 62779,\n  \"money-bill-wave-alt\": 62779,\n  \"life-ring\": 61901,\n  \"hands\": 62119,\n  \"sign-language\": 62119,\n  \"signing\": 62119,\n  \"circle-caret-right\": 62256,\n  \"caret-circle-right\": 62256,\n  \"turn-left\": 58934,\n  \"wheat\": 63277,\n  \"file-spreadsheet\": 63067,\n  \"audio-description-slash\": 57512,\n  \"bell-ring\": 58924,\n  \"calendar-day\": 63363,\n  \"water-ladder\": 62917,\n  \"ladder-water\": 62917,\n  \"swimming-pool\": 62917,\n  \"arrows-up-down\": 61565,\n  \"arrows-v\": 61565,\n  \"chess-pawn-piece\": 62532,\n  \"chess-pawn-alt\": 62532,\n  \"face-grimace\": 62847,\n  \"grimace\": 62847,\n  \"wheelchair-move\": 58062,\n  \"wheelchair-alt\": 58062,\n  \"turn-down\": 62398,\n  \"level-down-alt\": 62398,\n  \"square-s\": 57981,\n  \"rectangle-barcode\": 62563,\n  \"barcode-alt\": 62563,\n  \"person-walking-arrow-right\": 58706,\n  \"square-envelope\": 61849,\n  \"envelope-square\": 61849,\n  \"dice\": 62754,\n  \"unicorn\": 63271,\n  \"bowling-ball\": 62518,\n  \"pompebled\": 58429,\n  \"brain\": 62940,\n  \"watch-smart\": 58060,\n  \"book-user\": 63463,\n  \"sensor-cloud\": 57388,\n  \"sensor-smoke\": 57388,\n  \"clapperboard-play\": 57650,\n  \"bandage\": 62562,\n  \"band-aid\": 62562,\n  \"calendar-minus\": 62066,\n  \"circle-xmark\": 61527,\n  \"times-circle\": 61527,\n  \"xmark-circle\": 61527,\n  \"circle-4\": 57585,\n  \"gifts\": 63388,\n  \"album-collection\": 63648,\n  \"hotel\": 62868,\n  \"earth-asia\": 62846,\n  \"globe-asia\": 62846,\n  \"id-card-clip\": 62591,\n  \"id-card-alt\": 62591,\n  \"magnifying-glass-plus\": 61454,\n  \"search-plus\": 61454,\n  \"thumbs-up\": 61796,\n  \"cloud-showers\": 63295,\n  \"user-clock\": 62717,\n  \"onion\": 58407,\n  \"clock-twelve-thirty\": 58201,\n  \"arrow-down-to-dotted-line\": 57493,\n  \"hand-dots\": 62561,\n  \"allergies\": 62561,\n  \"file-invoice\": 62832,\n  \"window-minimize\": 62161,\n  \"rectangle-wide\": 62204,\n  \"comment-arrow-up\": 57668,\n  \"garlic\": 58382,\n  \"mug-saucer\": 61684,\n  \"coffee\": 61684,\n  \"brush\": 62813,\n  \"file-half-dashed\": 59032,\n  \"tree-decorated\": 63452,\n  \"mask\": 63226,\n  \"calendar-heart\": 57555,\n  \"magnifying-glass-minus\": 61456,\n  \"search-minus\": 61456,\n  \"flower\": 63487,\n  \"arrow-down-from-arc\": 58900,\n  \"right-left-large\": 58849,\n  \"ruler-vertical\": 62792,\n  \"circles-overlap\": 58880,\n  \"user-large\": 62470,\n  \"user-alt\": 62470,\n  \"starship-freighter\": 57402,\n  \"train-tram\": 58804,\n  \"bridge-suspension\": 58573,\n  \"trash-check\": 58031,\n  \"user-nurse\": 63535,\n  \"boombox\": 63653,\n  \"syringe\": 62606,\n  \"cloud-sun\": 63172,\n  \"shield-exclamation\": 57927,\n  \"stopwatch-20\": 57455,\n  \"square-full\": 62556,\n  \"grip-dots\": 58384,\n  \"comment-exclamation\": 62639,\n  \"pen-swirl\": 57876,\n  \"falafel\": 58378,\n  \"circle-2\": 57583,\n  \"magnet\": 61558,\n  \"jar\": 58646,\n  \"gramophone\": 63677,\n  \"dice-d12\": 63182,\n  \"note-sticky\": 62025,\n  \"sticky-note\": 62025,\n  \"down\": 62292,\n  \"arrow-alt-down\": 62292,\n  \"hundred-points\": 58396,\n  \"paperclip-vertical\": 58306,\n  \"wind-warning\": 63350,\n  \"wind-circle-exclamation\": 63350,\n  \"location-pin-slash\": 62988,\n  \"map-marker-slash\": 62988,\n  \"face-sad-sweat\": 58250,\n  \"bug-slash\": 58512,\n  \"cupcake\": 58370,\n  \"light-switch-off\": 57368,\n  \"toggle-large-off\": 58800,\n  \"pen-fancy-slash\": 57872,\n  \"truck-container\": 62684,\n  \"boot\": 63362,\n  \"arrow-up-from-water-pump\": 58550,\n  \"file-check\": 62230,\n  \"bone\": 62935,\n  \"cards-blank\": 58591,\n  \"circle-3\": 57584,\n  \"bench-tree\": 58087,\n  \"keyboard-brightness-low\": 57793,\n  \"ski-boot-ski\": 58317,\n  \"brain-circuit\": 57542,\n  \"table-cells-row-unlock\": 59025,\n  \"user-injured\": 63272,\n  \"block-brick-fire\": 58332,\n  \"firewall\": 58332,\n  \"face-sad-tear\": 62900,\n  \"sad-tear\": 62900,\n  \"plane\": 61554,\n  \"tent-arrows-down\": 58753,\n  \"exclamation\": 33,\n  \"arrows-spin\": 58555,\n  \"face-smile-relaxed\": 58258,\n  \"comment-xmark\": 62645,\n  \"comment-times\": 62645,\n  \"print\": 61487,\n  \"turkish-lira-sign\": 58043,\n  \"try\": 58043,\n  \"turkish-lira\": 58043,\n  \"face-nose-steam\": 58242,\n  \"circle-waveform-lines\": 57645,\n  \"waveform-circle\": 57645,\n  \"dollar-sign\": 36,\n  \"dollar\": 36,\n  \"usd\": 36,\n  \"ferris-wheel\": 57716,\n  \"computer-speaker\": 63666,\n  \"skull-cow\": 63710,\n  \"x\": 88,\n  \"magnifying-glass-dollar\": 63112,\n  \"search-dollar\": 63112,\n  \"users-gear\": 62729,\n  \"users-cog\": 62729,\n  \"person-military-pointing\": 58698,\n  \"building-columns\": 61852,\n  \"bank\": 61852,\n  \"institution\": 61852,\n  \"museum\": 61852,\n  \"university\": 61852,\n  \"circle-t\": 57636,\n  \"sack\": 63516,\n  \"grid-2\": 57750,\n  \"camera-cctv\": 63660,\n  \"cctv\": 63660,\n  \"umbrella\": 61673,\n  \"trowel\": 58761,\n  \"horizontal-rule\": 63596,\n  \"bed-front\": 63735,\n  \"bed-alt\": 63735,\n  \"d\": 68,\n  \"stapler\": 58799,\n  \"masks-theater\": 63024,\n  \"theater-masks\": 63024,\n  \"file-gif\": 58949,\n  \"kip-sign\": 57796,\n  \"face-woozy\": 58274,\n  \"cloud-question\": 58514,\n  \"pineapple\": 58143,\n  \"hand-point-left\": 61605,\n  \"gallery-thumbnails\": 58282,\n  \"circle-j\": 57618,\n  \"eyes\": 58215,\n  \"handshake-simple\": 62662,\n  \"handshake-alt\": 62662,\n  \"page-caret-up\": 58410,\n  \"file-caret-up\": 58410,\n  \"jet-fighter\": 61691,\n  \"fighter-jet\": 61691,\n  \"comet\": 57347,\n  \"square-share-nodes\": 61921,\n  \"share-alt-square\": 61921,\n  \"reflect-vertical\": 58981,\n  \"shield-keyhole\": 57928,\n  \"file-mp4\": 58953,\n  \"barcode\": 61482,\n  \"bulldozer\": 58965,\n  \"plus-minus\": 58428,\n  \"square-sliders-vertical\": 62450,\n  \"sliders-v-square\": 62450,\n  \"video\": 61501,\n  \"video-camera\": 61501,\n  \"message-middle\": 57825,\n  \"comment-middle-alt\": 57825,\n  \"graduation-cap\": 61853,\n  \"mortar-board\": 61853,\n  \"hand-holding-medical\": 57436,\n  \"person-circle-check\": 58686,\n  \"square-z\": 57992,\n  \"message-text\": 57830,\n  \"comment-alt-text\": 57830,\n  \"turn-up\": 62399,\n  \"level-up-alt\": 62399,\n  \"monero\": 62416,\n  \"hooli\": 62503,\n  \"yelp\": 61929,\n  \"cc-visa\": 61936,\n  \"lastfm\": 61954,\n  \"shopware\": 62901,\n  \"creative-commons-nc\": 62696,\n  \"aws\": 62325,\n  \"redhat\": 63420,\n  \"yoast\": 62129,\n  \"cloudflare\": 57469,\n  \"ups\": 63456,\n  \"pixiv\": 58944,\n  \"wpexplorer\": 62174,\n  \"dyalog\": 62361,\n  \"bity\": 62330,\n  \"stackpath\": 63554,\n  \"buysellads\": 61965,\n  \"first-order\": 62128,\n  \"modx\": 62085,\n  \"guilded\": 57470,\n  \"vnv\": 62475,\n  \"square-js\": 62393,\n  \"js-square\": 62393,\n  \"microsoft\": 62410,\n  \"qq\": 61910,\n  \"orcid\": 63698,\n  \"java\": 62692,\n  \"invision\": 63408,\n  \"creative-commons-pd-alt\": 62701,\n  \"centercode\": 62336,\n  \"glide-g\": 62118,\n  \"drupal\": 61865,\n  \"jxl\": 59003,\n  \"dart-lang\": 59027,\n  \"hire-a-helper\": 62384,\n  \"creative-commons-by\": 62695,\n  \"unity\": 57417,\n  \"whmcs\": 62477,\n  \"rocketchat\": 62440,\n  \"vk\": 61833,\n  \"untappd\": 62469,\n  \"mailchimp\": 62878,\n  \"css3-alt\": 62347,\n  \"square-reddit\": 61858,\n  \"reddit-square\": 61858,\n  \"vimeo-v\": 62077,\n  \"contao\": 62061,\n  \"square-font-awesome\": 58797,\n  \"deskpro\": 62351,\n  \"brave\": 58940,\n  \"sistrix\": 62446,\n  \"square-instagram\": 57429,\n  \"instagram-square\": 57429,\n  \"battle-net\": 63541,\n  \"the-red-yeti\": 63133,\n  \"square-hacker-news\": 62383,\n  \"hacker-news-square\": 62383,\n  \"edge\": 62082,\n  \"threads\": 58904,\n  \"napster\": 62418,\n  \"square-snapchat\": 62125,\n  \"snapchat-square\": 62125,\n  \"google-plus-g\": 61653,\n  \"artstation\": 63354,\n  \"markdown\": 62991,\n  \"sourcetree\": 63443,\n  \"google-plus\": 62131,\n  \"diaspora\": 63377,\n  \"foursquare\": 61824,\n  \"stack-overflow\": 61804,\n  \"github-alt\": 61715,\n  \"phoenix-squadron\": 62737,\n  \"pagelines\": 61836,\n  \"algolia\": 62316,\n  \"red-river\": 62435,\n  \"creative-commons-sa\": 62703,\n  \"safari\": 62055,\n  \"google\": 61856,\n  \"square-font-awesome-stroke\": 62300,\n  \"font-awesome-alt\": 62300,\n  \"atlassian\": 63355,\n  \"linkedin-in\": 61665,\n  \"digital-ocean\": 62353,\n  \"nimblr\": 62888,\n  \"chromecast\": 63544,\n  \"evernote\": 63545,\n  \"hacker-news\": 61908,\n  \"creative-commons-sampling\": 62704,\n  \"adversal\": 62314,\n  \"creative-commons\": 62046,\n  \"watchman-monitoring\": 57479,\n  \"fonticons\": 62080,\n  \"weixin\": 61911,\n  \"shirtsinbulk\": 61972,\n  \"codepen\": 61899,\n  \"git-alt\": 63553,\n  \"lyft\": 62403,\n  \"rev\": 62898,\n  \"windows\": 61818,\n  \"wizards-of-the-coast\": 63280,\n  \"square-viadeo\": 62122,\n  \"viadeo-square\": 62122,\n  \"meetup\": 62176,\n  \"centos\": 63369,\n  \"adn\": 61808,\n  \"cloudsmith\": 62340,\n  \"opensuse\": 58923,\n  \"pied-piper-alt\": 61864,\n  \"square-dribbble\": 62359,\n  \"dribbble-square\": 62359,\n  \"codiepie\": 62084,\n  \"node\": 62489,\n  \"mix\": 62411,\n  \"steam\": 61878,\n  \"cc-apple-pay\": 62486,\n  \"scribd\": 62090,\n  \"debian\": 58891,\n  \"openid\": 61851,\n  \"instalod\": 57473,\n  \"files-pinwheel\": 59039,\n  \"expeditedssl\": 62014,\n  \"sellcast\": 62170,\n  \"square-twitter\": 61569,\n  \"twitter-square\": 61569,\n  \"r-project\": 62711,\n  \"delicious\": 61861,\n  \"freebsd\": 62372,\n  \"vuejs\": 62495,\n  \"accusoft\": 62313,\n  \"ioxhost\": 61960,\n  \"fonticons-fi\": 62370,\n  \"app-store\": 62319,\n  \"cc-mastercard\": 61937,\n  \"itunes-note\": 62389,\n  \"golang\": 58383,\n  \"kickstarter\": 62395,\n  \"square-kickstarter\": 62395,\n  \"grav\": 62166,\n  \"weibo\": 61834,\n  \"uncharted\": 57476,\n  \"firstdraft\": 62369,\n  \"square-youtube\": 62513,\n  \"youtube-square\": 62513,\n  \"wikipedia-w\": 62054,\n  \"wpressr\": 62436,\n  \"rendact\": 62436,\n  \"angellist\": 61961,\n  \"galactic-republic\": 62732,\n  \"nfc-directional\": 58672,\n  \"skype\": 61822,\n  \"joget\": 62391,\n  \"fedora\": 63384,\n  \"stripe-s\": 62506,\n  \"meta\": 58523,\n  \"laravel\": 62397,\n  \"hotjar\": 62385,\n  \"bluetooth-b\": 62100,\n  \"square-letterboxd\": 58926,\n  \"sticker-mule\": 62455,\n  \"creative-commons-zero\": 62707,\n  \"hips\": 62546,\n  \"css\": 59042,\n  \"behance\": 61876,\n  \"reddit\": 61857,\n  \"discord\": 62354,\n  \"chrome\": 62056,\n  \"app-store-ios\": 62320,\n  \"cc-discover\": 61938,\n  \"wpbeginner\": 62103,\n  \"confluence\": 63373,\n  \"shoelace\": 58892,\n  \"mdb\": 63690,\n  \"dochub\": 62356,\n  \"accessible-icon\": 62312,\n  \"ebay\": 62708,\n  \"amazon\": 62064,\n  \"unsplash\": 57468,\n  \"yarn\": 63459,\n  \"square-steam\": 61879,\n  \"steam-square\": 61879,\n  \"500px\": 62062,\n  \"square-vimeo\": 61844,\n  \"vimeo-square\": 61844,\n  \"asymmetrik\": 62322,\n  \"font-awesome\": 62132,\n  \"font-awesome-flag\": 62132,\n  \"font-awesome-logo-full\": 62132,\n  \"gratipay\": 61828,\n  \"apple\": 61817,\n  \"hive\": 57471,\n  \"gitkraken\": 62374,\n  \"keybase\": 62709,\n  \"apple-pay\": 62485,\n  \"padlet\": 58528,\n  \"amazon-pay\": 62508,\n  \"square-github\": 61586,\n  \"github-square\": 61586,\n  \"stumbleupon\": 61860,\n  \"fedex\": 63383,\n  \"phoenix-framework\": 62428,\n  \"shopify\": 57431,\n  \"neos\": 62994,\n  \"square-threads\": 58905,\n  \"hackerrank\": 62967,\n  \"researchgate\": 62712,\n  \"swift\": 63713,\n  \"angular\": 62496,\n  \"speakap\": 62451,\n  \"angrycreative\": 62318,\n  \"y-combinator\": 62011,\n  \"empire\": 61905,\n  \"envira\": 62105,\n  \"google-scholar\": 58939,\n  \"square-gitlab\": 58798,\n  \"gitlab-square\": 58798,\n  \"studiovinari\": 62456,\n  \"pied-piper\": 62126,\n  \"wordpress\": 61850,\n  \"product-hunt\": 62088,\n  \"firefox\": 62057,\n  \"linode\": 62136,\n  \"goodreads\": 62376,\n  \"square-odnoklassniki\": 62052,\n  \"odnoklassniki-square\": 62052,\n  \"jsfiddle\": 61900,\n  \"sith\": 62738,\n  \"themeisle\": 62130,\n  \"page4\": 62423,\n  \"hashnode\": 58521,\n  \"react\": 62491,\n  \"cc-paypal\": 61940,\n  \"squarespace\": 62910,\n  \"cc-stripe\": 61941,\n  \"creative-commons-share\": 62706,\n  \"bitcoin\": 62329,\n  \"keycdn\": 62394,\n  \"opera\": 62058,\n  \"itch-io\": 63546,\n  \"umbraco\": 63720,\n  \"galactic-senate\": 62733,\n  \"ubuntu\": 63455,\n  \"draft2digital\": 62358,\n  \"stripe\": 62505,\n  \"houzz\": 62076,\n  \"gg\": 62048,\n  \"dhl\": 63376,\n  \"square-pinterest\": 61651,\n  \"pinterest-square\": 61651,\n  \"xing\": 61800,\n  \"blackberry\": 62331,\n  \"creative-commons-pd\": 62700,\n  \"playstation\": 62431,\n  \"quinscape\": 62553,\n  \"less\": 62493,\n  \"blogger-b\": 62333,\n  \"opencart\": 62013,\n  \"vine\": 61898,\n  \"signal-messenger\": 58979,\n  \"paypal\": 61933,\n  \"gitlab\": 62102,\n  \"typo3\": 62507,\n  \"reddit-alien\": 62081,\n  \"yahoo\": 61854,\n  \"dailymotion\": 57426,\n  \"affiliatetheme\": 62315,\n  \"pied-piper-pp\": 61863,\n  \"bootstrap\": 63542,\n  \"odnoklassniki\": 62051,\n  \"nfc-symbol\": 58673,\n  \"mintbit\": 58927,\n  \"ethereum\": 62510,\n  \"speaker-deck\": 63548,\n  \"creative-commons-nc-eu\": 62697,\n  \"patreon\": 62425,\n  \"avianex\": 62324,\n  \"ello\": 62961,\n  \"gofore\": 62375,\n  \"bimobject\": 62328,\n  \"brave-reverse\": 58941,\n  \"facebook-f\": 62366,\n  \"square-google-plus\": 61652,\n  \"google-plus-square\": 61652,\n  \"web-awesome\": 59010,\n  \"mandalorian\": 62735,\n  \"first-order-alt\": 62730,\n  \"osi\": 62490,\n  \"google-wallet\": 61934,\n  \"d-and-d-beyond\": 63178,\n  \"periscope\": 62426,\n  \"fulcrum\": 62731,\n  \"cloudscale\": 62339,\n  \"forumbee\": 61969,\n  \"mizuni\": 62412,\n  \"schlix\": 62442,\n  \"square-xing\": 61801,\n  \"xing-square\": 61801,\n  \"bandcamp\": 62165,\n  \"wpforms\": 62104,\n  \"cloudversify\": 62341,\n  \"usps\": 63457,\n  \"megaport\": 62883,\n  \"magento\": 62404,\n  \"spotify\": 61884,\n  \"optin-monster\": 62012,\n  \"fly\": 62487,\n  \"square-bluesky\": 59043,\n  \"aviato\": 62497,\n  \"itunes\": 62388,\n  \"cuttlefish\": 62348,\n  \"blogger\": 62332,\n  \"flickr\": 61806,\n  \"viber\": 62473,\n  \"soundcloud\": 61886,\n  \"digg\": 61862,\n  \"tencent-weibo\": 61909,\n  \"letterboxd\": 58925,\n  \"symfony\": 63549,\n  \"maxcdn\": 61750,\n  \"etsy\": 62167,\n  \"facebook-messenger\": 62367,\n  \"audible\": 62323,\n  \"think-peaks\": 63281,\n  \"bilibili\": 58329,\n  \"erlang\": 62365,\n  \"x-twitter\": 58907,\n  \"cotton-bureau\": 63646,\n  \"dashcube\": 61968,\n  \"42-group\": 57472,\n  \"innosoft\": 57472,\n  \"stack-exchange\": 61837,\n  \"elementor\": 62512,\n  \"square-pied-piper\": 57374,\n  \"pied-piper-square\": 57374,\n  \"creative-commons-nd\": 62699,\n  \"palfed\": 62424,\n  \"superpowers\": 62173,\n  \"resolving\": 62439,\n  \"xbox\": 62482,\n  \"square-web-awesome-stroke\": 59012,\n  \"searchengin\": 62443,\n  \"tiktok\": 57467,\n  \"square-facebook\": 61570,\n  \"facebook-square\": 61570,\n  \"renren\": 61835,\n  \"linux\": 61820,\n  \"glide\": 62117,\n  \"linkedin\": 61580,\n  \"hubspot\": 62386,\n  \"deploydog\": 62350,\n  \"twitch\": 61928,\n  \"flutter\": 59028,\n  \"ravelry\": 62169,\n  \"mixer\": 57430,\n  \"square-lastfm\": 61955,\n  \"lastfm-square\": 61955,\n  \"vimeo\": 62474,\n  \"mendeley\": 63411,\n  \"uniregistry\": 62468,\n  \"figma\": 63385,\n  \"creative-commons-remix\": 62702,\n  \"cc-amazon-pay\": 62509,\n  \"dropbox\": 61803,\n  \"instagram\": 61805,\n  \"cmplid\": 58208,\n  \"upwork\": 58945,\n  \"facebook\": 61594,\n  \"gripfire\": 62380,\n  \"jedi-order\": 62734,\n  \"uikit\": 62467,\n  \"fort-awesome-alt\": 62371,\n  \"phabricator\": 62427,\n  \"ussunnah\": 62471,\n  \"earlybirds\": 62362,\n  \"trade-federation\": 62739,\n  \"autoprefixer\": 62492,\n  \"whatsapp\": 62002,\n  \"square-upwork\": 59004,\n  \"slideshare\": 61927,\n  \"google-play\": 62379,\n  \"viadeo\": 62121,\n  \"line\": 62400,\n  \"google-drive\": 62378,\n  \"servicestack\": 62444,\n  \"simplybuilt\": 61973,\n  \"bitbucket\": 61809,\n  \"imdb\": 62168,\n  \"deezer\": 57463,\n  \"raspberry-pi\": 63419,\n  \"jira\": 63409,\n  \"docker\": 62357,\n  \"screenpal\": 58736,\n  \"bluetooth\": 62099,\n  \"gitter\": 62502,\n  \"d-and-d\": 62349,\n  \"microblog\": 57370,\n  \"cc-diners-club\": 62028,\n  \"gg-circle\": 62049,\n  \"pied-piper-hat\": 62693,\n  \"kickstarter-k\": 62396,\n  \"yandex\": 62483,\n  \"readme\": 62677,\n  \"html5\": 61755,\n  \"sellsy\": 61971,\n  \"square-web-awesome\": 59011,\n  \"sass\": 62494,\n  \"wirsindhandwerk\": 58064,\n  \"wsh\": 58064,\n  \"buromobelexperte\": 62335,\n  \"salesforce\": 63547,\n  \"octopus-deploy\": 57474,\n  \"medapps\": 62406,\n  \"ns8\": 62421,\n  \"pinterest-p\": 62001,\n  \"apper\": 62321,\n  \"fort-awesome\": 62086,\n  \"waze\": 63551,\n  \"bluesky\": 58993,\n  \"cc-jcb\": 62027,\n  \"snapchat\": 62123,\n  \"snapchat-ghost\": 62123,\n  \"fantasy-flight-games\": 63196,\n  \"rust\": 57466,\n  \"wix\": 62927,\n  \"square-behance\": 61877,\n  \"behance-square\": 61877,\n  \"supple\": 62457,\n  \"webflow\": 58972,\n  \"rebel\": 61904,\n  \"css3\": 61756,\n  \"staylinked\": 62453,\n  \"kaggle\": 62970,\n  \"space-awesome\": 58796,\n  \"deviantart\": 61885,\n  \"cpanel\": 62344,\n  \"goodreads-g\": 62377,\n  \"square-git\": 61906,\n  \"git-square\": 61906,\n  \"square-tumblr\": 61812,\n  \"tumblr-square\": 61812,\n  \"trello\": 61825,\n  \"creative-commons-nc-jp\": 62698,\n  \"get-pocket\": 62053,\n  \"perbyte\": 57475,\n  \"grunt\": 62381,\n  \"weebly\": 62924,\n  \"connectdevelop\": 61966,\n  \"leanpub\": 61970,\n  \"black-tie\": 62078,\n  \"themeco\": 62918,\n  \"python\": 62434,\n  \"android\": 61819,\n  \"bots\": 58176,\n  \"free-code-camp\": 62149,\n  \"hornbill\": 62866,\n  \"js\": 62392,\n  \"ideal\": 57363,\n  \"git\": 61907,\n  \"dev\": 63180,\n  \"sketch\": 63430,\n  \"yandex-international\": 62484,\n  \"cc-amex\": 61939,\n  \"uber\": 62466,\n  \"github\": 61595,\n  \"php\": 62551,\n  \"alipay\": 63042,\n  \"youtube\": 61799,\n  \"skyatlas\": 61974,\n  \"firefox-browser\": 57351,\n  \"replyd\": 62438,\n  \"suse\": 63446,\n  \"jenkins\": 62390,\n  \"twitter\": 61593,\n  \"rockrms\": 62441,\n  \"pinterest\": 61650,\n  \"buffer\": 63543,\n  \"npm\": 62420,\n  \"yammer\": 63552,\n  \"btc\": 61786,\n  \"dribbble\": 61821,\n  \"stumbleupon-circle\": 61859,\n  \"internet-explorer\": 62059,\n  \"stubber\": 58823,\n  \"telegram\": 62150,\n  \"telegram-plane\": 62150,\n  \"old-republic\": 62736,\n  \"odysee\": 58822,\n  \"square-whatsapp\": 62476,\n  \"whatsapp-square\": 62476,\n  \"node-js\": 62419,\n  \"edge-legacy\": 57464,\n  \"slack\": 61848,\n  \"slack-hash\": 61848,\n  \"medrt\": 62408,\n  \"usb\": 62087,\n  \"tumblr\": 61811,\n  \"vaadin\": 62472,\n  \"quora\": 62148,\n  \"square-x-twitter\": 58906,\n  \"reacteurope\": 63325,\n  \"medium\": 62010,\n  \"medium-m\": 62010,\n  \"amilia\": 62317,\n  \"mixcloud\": 62089,\n  \"flipboard\": 62541,\n  \"viacoin\": 62007,\n  \"critical-role\": 63177,\n  \"sitrox\": 58442,\n  \"discourse\": 62355,\n  \"joomla\": 61866,\n  \"mastodon\": 62710,\n  \"airbnb\": 63540,\n  \"wolf-pack-battalion\": 62740,\n  \"buy-n-large\": 63654,\n  \"gulp\": 62382,\n  \"creative-commons-sampling-plus\": 62705,\n  \"strava\": 62504,\n  \"ember\": 62499,\n  \"canadian-maple-leaf\": 63365,\n  \"teamspeak\": 62713,\n  \"pushed\": 62433,\n  \"wordpress-simple\": 62481,\n  \"nutritionix\": 62422,\n  \"wodu\": 57480,\n  \"google-pay\": 57465,\n  \"intercom\": 63407,\n  \"zhihu\": 63039,\n  \"korvue\": 62511,\n  \"pix\": 58426,\n  \"steam-symbol\": 62454\n}"
  },
  {
    "path": "packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_brand.json",
    "content": "{\"42-group\":57472,\"500px\":62062,\"accessible-icon\":62312,\"accusoft\":62313,\"adn\":61808,\"adversal\":62314,\"affiliatetheme\":62315,\"airbnb\":63540,\"algolia\":62316,\"alipay\":63042,\"amazon-pay\":62508,\"amazon\":62064,\"amilia\":62317,\"android\":61819,\"angellist\":61961,\"angrycreative\":62318,\"angular\":62496,\"app-store-ios\":62320,\"app-store\":62319,\"apper\":62321,\"apple-pay\":62485,\"apple\":61817,\"artstation\":63354,\"asymmetrik\":62322,\"atlassian\":63355,\"audible\":62323,\"autoprefixer\":62492,\"avianex\":62324,\"aviato\":62497,\"aws\":62325,\"bandcamp\":62165,\"battle-net\":63541,\"behance\":61876,\"bilibili\":58329,\"bimobject\":62328,\"bitbucket\":61809,\"bitcoin\":62329,\"bity\":62330,\"black-tie\":62078,\"blackberry\":62331,\"blogger-b\":62333,\"blogger\":62332,\"bluesky\":58993,\"bluetooth-b\":62100,\"bluetooth\":62099,\"bootstrap\":63542,\"bots\":58176,\"brave-reverse\":58941,\"brave\":58940,\"btc\":61786,\"buffer\":63543,\"buromobelexperte\":62335,\"buy-n-large\":63654,\"buysellads\":61965,\"canadian-maple-leaf\":63365,\"cc-amazon-pay\":62509,\"cc-amex\":61939,\"cc-apple-pay\":62486,\"cc-diners-club\":62028,\"cc-discover\":61938,\"cc-jcb\":62027,\"cc-mastercard\":61937,\"cc-paypal\":61940,\"cc-stripe\":61941,\"cc-visa\":61936,\"centercode\":62336,\"centos\":63369,\"chrome\":62056,\"chromecast\":63544,\"cloudflare\":57469,\"cloudscale\":62339,\"cloudsmith\":62340,\"cloudversify\":62341,\"cmplid\":58208,\"codepen\":61899,\"codiepie\":62084,\"confluence\":63373,\"connectdevelop\":61966,\"contao\":62061,\"cotton-bureau\":63646,\"cpanel\":62344,\"creative-commons-by\":62695,\"creative-commons-nc-eu\":62697,\"creative-commons-nc-jp\":62698,\"creative-commons-nc\":62696,\"creative-commons-nd\":62699,\"creative-commons-pd-alt\":62701,\"creative-commons-pd\":62700,\"creative-commons-remix\":62702,\"creative-commons-sa\":62703,\"creative-commons-sampling-plus\":62705,\"creative-commons-sampling\":62704,\"creative-commons-share\":62706,\"creative-commons-zero\":62707,\"creative-commons\":62046,\"critical-role\":63177,\"css\":59042,\"css3-alt\":62347,\"css3\":61756,\"cuttlefish\":62348,\"d-and-d-beyond\":63178,\"d-and-d\":62349,\"dailymotion\":57426,\"dart-lang\":59027,\"dashcube\":61968,\"debian\":58891,\"deezer\":57463,\"delicious\":61861,\"deploydog\":62350,\"deskpro\":62351,\"dev\":63180,\"deviantart\":61885,\"dhl\":63376,\"diaspora\":63377,\"digg\":61862,\"digital-ocean\":62353,\"discord\":62354,\"discourse\":62355,\"dochub\":62356,\"docker\":62357,\"draft2digital\":62358,\"dribbble\":61821,\"dropbox\":61803,\"drupal\":61865,\"dyalog\":62361,\"earlybirds\":62362,\"ebay\":62708,\"edge-legacy\":57464,\"edge\":62082,\"elementor\":62512,\"ello\":62961,\"ember\":62499,\"empire\":61905,\"envira\":62105,\"erlang\":62365,\"ethereum\":62510,\"etsy\":62167,\"evernote\":63545,\"expeditedssl\":62014,\"facebook-f\":62366,\"facebook-messenger\":62367,\"facebook\":61594,\"fantasy-flight-games\":63196,\"fedex\":63383,\"fedora\":63384,\"figma\":63385,\"files-pinwheel\":59039,\"firefox-browser\":57351,\"firefox\":62057,\"first-order-alt\":62730,\"first-order\":62128,\"firstdraft\":62369,\"flickr\":61806,\"flipboard\":62541,\"flutter\":59028,\"fly\":62487,\"font-awesome\":62132,\"fonticons-fi\":62370,\"fonticons\":62080,\"fort-awesome-alt\":62371,\"fort-awesome\":62086,\"forumbee\":61969,\"foursquare\":61824,\"free-code-camp\":62149,\"freebsd\":62372,\"fulcrum\":62731,\"galactic-republic\":62732,\"galactic-senate\":62733,\"get-pocket\":62053,\"gg-circle\":62049,\"gg\":62048,\"git-alt\":63553,\"git\":61907,\"github-alt\":61715,\"github\":61595,\"gitkraken\":62374,\"gitlab\":62102,\"gitter\":62502,\"glide-g\":62118,\"glide\":62117,\"gofore\":62375,\"golang\":58383,\"goodreads-g\":62377,\"goodreads\":62376,\"google-drive\":62378,\"google-pay\":57465,\"google-play\":62379,\"google-plus-g\":61653,\"google-plus\":62131,\"google-scholar\":58939,\"google-wallet\":61934,\"google\":61856,\"gratipay\":61828,\"grav\":62166,\"gripfire\":62380,\"grunt\":62381,\"guilded\":57470,\"gulp\":62382,\"hacker-news\":61908,\"hackerrank\":62967,\"hashnode\":58521,\"hips\":62546,\"hire-a-helper\":62384,\"hive\":57471,\"hooli\":62503,\"hornbill\":62866,\"hotjar\":62385,\"houzz\":62076,\"html5\":61755,\"hubspot\":62386,\"ideal\":57363,\"imdb\":62168,\"instagram\":61805,\"instalod\":57473,\"intercom\":63407,\"internet-explorer\":62059,\"invision\":63408,\"ioxhost\":61960,\"itch-io\":63546,\"itunes-note\":62389,\"itunes\":62388,\"java\":62692,\"jedi-order\":62734,\"jenkins\":62390,\"jira\":63409,\"joget\":62391,\"joomla\":61866,\"js\":62392,\"jsfiddle\":61900,\"jxl\":59003,\"kaggle\":62970,\"keybase\":62709,\"keycdn\":62394,\"kickstarter-k\":62396,\"kickstarter\":62395,\"korvue\":62511,\"laravel\":62397,\"lastfm\":61954,\"leanpub\":61970,\"less\":62493,\"letterboxd\":58925,\"line\":62400,\"linkedin-in\":61665,\"linkedin\":61580,\"linode\":62136,\"linux\":61820,\"lyft\":62403,\"magento\":62404,\"mailchimp\":62878,\"mandalorian\":62735,\"markdown\":62991,\"mastodon\":62710,\"maxcdn\":61750,\"mdb\":63690,\"medapps\":62406,\"medium\":62010,\"medrt\":62408,\"meetup\":62176,\"megaport\":62883,\"mendeley\":63411,\"meta\":58523,\"microblog\":57370,\"microsoft\":62410,\"mintbit\":58927,\"mix\":62411,\"mixcloud\":62089,\"mixer\":57430,\"mizuni\":62412,\"modx\":62085,\"monero\":62416,\"napster\":62418,\"neos\":62994,\"nfc-directional\":58672,\"nfc-symbol\":58673,\"nimblr\":62888,\"node-js\":62419,\"node\":62489,\"npm\":62420,\"ns8\":62421,\"nutritionix\":62422,\"octopus-deploy\":57474,\"odnoklassniki\":62051,\"odysee\":58822,\"old-republic\":62736,\"opencart\":62013,\"openid\":61851,\"opensuse\":58923,\"opera\":62058,\"optin-monster\":62012,\"orcid\":63698,\"osi\":62490,\"padlet\":58528,\"page4\":62423,\"pagelines\":61836,\"palfed\":62424,\"patreon\":62425,\"paypal\":61933,\"perbyte\":57475,\"periscope\":62426,\"phabricator\":62427,\"phoenix-framework\":62428,\"phoenix-squadron\":62737,\"php\":62551,\"pied-piper-alt\":61864,\"pied-piper-hat\":62693,\"pied-piper-pp\":61863,\"pied-piper\":62126,\"pinterest-p\":62001,\"pinterest\":61650,\"pix\":58426,\"pixiv\":58944,\"playstation\":62431,\"product-hunt\":62088,\"pushed\":62433,\"python\":62434,\"qq\":61910,\"quinscape\":62553,\"quora\":62148,\"r-project\":62711,\"raspberry-pi\":63419,\"ravelry\":62169,\"react\":62491,\"reacteurope\":63325,\"readme\":62677,\"rebel\":61904,\"red-river\":62435,\"reddit-alien\":62081,\"reddit\":61857,\"redhat\":63420,\"renren\":61835,\"replyd\":62438,\"researchgate\":62712,\"resolving\":62439,\"rev\":62898,\"rocketchat\":62440,\"rockrms\":62441,\"rust\":57466,\"safari\":62055,\"salesforce\":63547,\"sass\":62494,\"schlix\":62442,\"screenpal\":58736,\"scribd\":62090,\"searchengin\":62443,\"sellcast\":62170,\"sellsy\":61971,\"servicestack\":62444,\"shirtsinbulk\":61972,\"shoelace\":58892,\"shopify\":57431,\"shopware\":62901,\"signal-messenger\":58979,\"simplybuilt\":61973,\"sistrix\":62446,\"sith\":62738,\"sitrox\":58442,\"sketch\":63430,\"skyatlas\":61974,\"skype\":61822,\"slack\":61848,\"slideshare\":61927,\"snapchat\":62123,\"soundcloud\":61886,\"sourcetree\":63443,\"space-awesome\":58796,\"speakap\":62451,\"speaker-deck\":63548,\"spotify\":61884,\"square-behance\":61877,\"square-bluesky\":59043,\"square-dribbble\":62359,\"square-facebook\":61570,\"square-font-awesome-stroke\":62300,\"square-font-awesome\":58797,\"square-git\":61906,\"square-github\":61586,\"square-gitlab\":58798,\"square-google-plus\":61652,\"square-hacker-news\":62383,\"square-instagram\":57429,\"square-js\":62393,\"square-lastfm\":61955,\"square-letterboxd\":58926,\"square-odnoklassniki\":62052,\"square-pied-piper\":57374,\"square-pinterest\":61651,\"square-reddit\":61858,\"square-snapchat\":62125,\"square-steam\":61879,\"square-threads\":58905,\"square-tumblr\":61812,\"square-twitter\":61569,\"square-upwork\":59004,\"square-viadeo\":62122,\"square-vimeo\":61844,\"square-web-awesome-stroke\":59012,\"square-web-awesome\":59011,\"square-whatsapp\":62476,\"square-x-twitter\":58906,\"square-xing\":61801,\"square-youtube\":62513,\"squarespace\":62910,\"stack-exchange\":61837,\"stack-overflow\":61804,\"stackpath\":63554,\"staylinked\":62453,\"steam-symbol\":62454,\"steam\":61878,\"sticker-mule\":62455,\"strava\":62504,\"stripe-s\":62506,\"stripe\":62505,\"stubber\":58823,\"studiovinari\":62456,\"stumbleupon-circle\":61859,\"stumbleupon\":61860,\"superpowers\":62173,\"supple\":62457,\"suse\":63446,\"swift\":63713,\"symfony\":63549,\"teamspeak\":62713,\"telegram\":62150,\"tencent-weibo\":61909,\"the-red-yeti\":63133,\"themeco\":62918,\"themeisle\":62130,\"think-peaks\":63281,\"threads\":58904,\"tiktok\":57467,\"trade-federation\":62739,\"trello\":61825,\"tumblr\":61811,\"twitch\":61928,\"twitter\":61593,\"typo3\":62507,\"uber\":62466,\"ubuntu\":63455,\"uikit\":62467,\"umbraco\":63720,\"uncharted\":57476,\"uniregistry\":62468,\"unity\":57417,\"unsplash\":57468,\"untappd\":62469,\"ups\":63456,\"upwork\":58945,\"usb\":62087,\"usps\":63457,\"ussunnah\":62471,\"vaadin\":62472,\"viacoin\":62007,\"viadeo\":62121,\"viber\":62473,\"vimeo-v\":62077,\"vimeo\":62474,\"vine\":61898,\"vk\":61833,\"vnv\":62475,\"vuejs\":62495,\"watchman-monitoring\":57479,\"waze\":63551,\"web-awesome\":59010,\"webflow\":58972,\"weebly\":62924,\"weibo\":61834,\"weixin\":61911,\"whatsapp\":62002,\"whmcs\":62477,\"wikipedia-w\":62054,\"windows\":61818,\"wirsindhandwerk\":58064,\"wix\":62927,\"wizards-of-the-coast\":63280,\"wodu\":57480,\"wolf-pack-battalion\":62740,\"wordpress-simple\":62481,\"wordpress\":61850,\"wpbeginner\":62103,\"wpexplorer\":62174,\"wpforms\":62104,\"wpressr\":62436,\"x-twitter\":58907,\"xbox\":62482,\"xing\":61800,\"y-combinator\":62011,\"yahoo\":61854,\"yammer\":63552,\"yandex-international\":62484,\"yandex\":62483,\"yarn\":63459,\"yelp\":61929,\"yoast\":62129,\"youtube\":61799,\"zhihu\":63039}"
  },
  {
    "path": "packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_duotone-light.json",
    "content": "{\"0\":48,\"1\":49,\"2\":50,\"3\":51,\"4\":52,\"5\":53,\"6\":54,\"7\":55,\"8\":56,\"9\":57,\"00\":58471,\"360-degrees\":58076,\"a\":65,\"abacus\":63040,\"accent-grave\":96,\"acorn\":63150,\"address-book\":62137,\"address-card\":62139,\"air-conditioner\":63732,\"airplay\":57481,\"alarm-clock\":62286,\"alarm-exclamation\":63555,\"alarm-plus\":63556,\"alarm-snooze\":63557,\"album-circle-plus\":58508,\"album-circle-user\":58509,\"album-collection-circle-plus\":58510,\"album-collection-circle-user\":58511,\"album-collection\":63648,\"album\":63647,\"alicorn\":63152,\"alien-8bit\":63734,\"alien\":63733,\"align-center\":61495,\"align-justify\":61497,\"align-left\":61494,\"align-right\":61496,\"align-slash\":63558,\"alt\":57482,\"amp-guitar\":63649,\"ampersand\":38,\"anchor-circle-check\":58538,\"anchor-circle-exclamation\":58539,\"anchor-circle-xmark\":58540,\"anchor-lock\":58541,\"anchor\":61757,\"angel\":63353,\"angle-90\":57485,\"angle-down\":61703,\"angle-left\":61700,\"angle-right\":61701,\"angle-up\":61702,\"angle\":57484,\"angles-down\":61699,\"angles-left\":61696,\"angles-right\":61697,\"angles-up-down\":58893,\"angles-up\":61698,\"ankh\":63044,\"ant\":59008,\"apartment\":58472,\"aperture\":58079,\"apostrophe\":39,\"apple-core\":57487,\"apple-whole\":62929,\"archway\":62807,\"arrow-down-1-9\":61794,\"arrow-down-9-1\":63622,\"arrow-down-a-z\":61789,\"arrow-down-arrow-up\":63619,\"arrow-down-big-small\":63628,\"arrow-down-from-arc\":58900,\"arrow-down-from-bracket\":58983,\"arrow-down-from-dotted-line\":57488,\"arrow-down-from-line\":62277,\"arrow-down-left-and-arrow-up-right-to-center\":57490,\"arrow-down-left\":57489,\"arrow-down-long\":61813,\"arrow-down-right\":57491,\"arrow-down-short-wide\":63620,\"arrow-down-small-big\":63629,\"arrow-down-square-triangle\":63625,\"arrow-down-to-arc\":58542,\"arrow-down-to-bracket\":57492,\"arrow-down-to-dotted-line\":57493,\"arrow-down-to-line\":62269,\"arrow-down-to-square\":57494,\"arrow-down-triangle-square\":63624,\"arrow-down-up-across-line\":58543,\"arrow-down-up-lock\":58544,\"arrow-down-wide-short\":61792,\"arrow-down-z-a\":63617,\"arrow-down\":61539,\"arrow-left-from-arc\":58901,\"arrow-left-from-bracket\":58984,\"arrow-left-from-line\":62276,\"arrow-left-long-to-line\":58324,\"arrow-left-long\":61815,\"arrow-left-to-arc\":58902,\"arrow-left-to-bracket\":58985,\"arrow-left-to-line\":62270,\"arrow-left\":61536,\"arrow-pointer\":62021,\"arrow-progress\":58847,\"arrow-right-arrow-left\":61676,\"arrow-right-from-arc\":58545,\"arrow-right-from-bracket\":61579,\"arrow-right-from-line\":62275,\"arrow-right-long-to-line\":58325,\"arrow-right-long\":61816,\"arrow-right-to-arc\":58546,\"arrow-right-to-bracket\":61584,\"arrow-right-to-city\":58547,\"arrow-right-to-line\":62272,\"arrow-right\":61537,\"arrow-rotate-left\":61666,\"arrow-rotate-right\":61470,\"arrow-trend-down\":57495,\"arrow-trend-up\":57496,\"arrow-turn-down-left\":58081,\"arrow-turn-down-right\":58326,\"arrow-turn-down\":61769,\"arrow-turn-left-down\":58931,\"arrow-turn-left-up\":58932,\"arrow-turn-left\":58930,\"arrow-turn-right\":58933,\"arrow-turn-up\":61768,\"arrow-up-1-9\":61795,\"arrow-up-9-1\":63623,\"arrow-up-a-z\":61790,\"arrow-up-arrow-down\":57497,\"arrow-up-big-small\":63630,\"arrow-up-from-arc\":58548,\"arrow-up-from-bracket\":57498,\"arrow-up-from-dotted-line\":57499,\"arrow-up-from-ground-water\":58549,\"arrow-up-from-line\":62274,\"arrow-up-from-square\":57500,\"arrow-up-from-water-pump\":58550,\"arrow-up-left-from-circle\":57502,\"arrow-up-left\":57501,\"arrow-up-long\":61814,\"arrow-up-right-and-arrow-down-left-from-center\":57504,\"arrow-up-right-dots\":58551,\"arrow-up-right-from-square\":61582,\"arrow-up-right\":57503,\"arrow-up-short-wide\":63621,\"arrow-up-small-big\":63631,\"arrow-up-square-triangle\":63627,\"arrow-up-to-arc\":58903,\"arrow-up-to-bracket\":58986,\"arrow-up-to-dotted-line\":57505,\"arrow-up-to-line\":62273,\"arrow-up-triangle-square\":63626,\"arrow-up-wide-short\":61793,\"arrow-up-z-a\":63618,\"arrow-up\":61538,\"arrows-cross\":57506,\"arrows-down-to-line\":58552,\"arrows-down-to-people\":58553,\"arrows-from-dotted-line\":57507,\"arrows-from-line\":57508,\"arrows-left-right-to-line\":58554,\"arrows-left-right\":61566,\"arrows-maximize\":62237,\"arrows-minimize\":57509,\"arrows-repeat-1\":62310,\"arrows-repeat\":62308,\"arrows-retweet\":62305,\"arrows-rotate-reverse\":58928,\"arrows-rotate\":61473,\"arrows-spin\":58555,\"arrows-split-up-and-left\":58556,\"arrows-to-circle\":58557,\"arrows-to-dot\":58558,\"arrows-to-dotted-line\":57510,\"arrows-to-eye\":58559,\"arrows-to-line\":57511,\"arrows-turn-right\":58560,\"arrows-turn-to-dots\":58561,\"arrows-up-down-left-right\":61511,\"arrows-up-down\":61565,\"arrows-up-to-line\":58562,\"asterisk\":42,\"at\":64,\"atom-simple\":62931,\"atom\":62930,\"audio-description-slash\":57512,\"audio-description\":62110,\"austral-sign\":57513,\"avocado\":57514,\"award-simple\":57515,\"award\":62809,\"axe-battle\":63155,\"axe\":63154,\"b\":66,\"baby-carriage\":63357,\"baby\":63356,\"backpack\":62932,\"backward-fast\":61513,\"backward-step\":61512,\"backward\":61514,\"bacon\":63461,\"bacteria\":57433,\"bacterium\":57434,\"badge-check\":62262,\"badge-dollar\":63045,\"badge-percent\":63046,\"badge-sheriff\":63650,\"badge\":62261,\"badger-honey\":63156,\"badminton\":58170,\"bag-seedling\":58866,\"bag-shopping-minus\":58960,\"bag-shopping-plus\":58961,\"bag-shopping\":62096,\"bagel\":58327,\"bags-shopping\":63559,\"baguette\":58328,\"bahai\":63078,\"baht-sign\":57516,\"ball-pile\":63358,\"balloon\":58083,\"balloons\":58084,\"ballot-check\":63283,\"ballot\":63282,\"ban-bug\":63481,\"ban-parking\":62998,\"ban-smoking\":62797,\"ban\":61534,\"banana\":58085,\"bandage\":62562,\"bangladeshi-taka-sign\":58086,\"banjo\":63651,\"barcode-read\":62564,\"barcode-scan\":62565,\"barcode\":61482,\"bars-filter\":57517,\"bars-progress\":63528,\"bars-sort\":57518,\"bars-staggered\":62800,\"bars\":61641,\"baseball-bat-ball\":62514,\"baseball\":62515,\"basket-shopping-minus\":58962,\"basket-shopping-plus\":58963,\"basket-shopping-simple\":57519,\"basket-shopping\":62097,\"basketball-hoop\":62517,\"basketball\":62516,\"bat\":63157,\"bath\":62157,\"battery-bolt\":62326,\"battery-empty\":62020,\"battery-exclamation\":57520,\"battery-full\":62016,\"battery-half\":62018,\"battery-low\":57521,\"battery-quarter\":62019,\"battery-slash\":62327,\"battery-three-quarters\":62017,\"bed-bunk\":63736,\"bed-empty\":63737,\"bed-front\":63735,\"bed-pulse\":62599,\"bed\":62006,\"bee\":57522,\"beer-mug-empty\":61692,\"beer-mug\":57523,\"bell-concierge\":62818,\"bell-exclamation\":63560,\"bell-on\":63738,\"bell-plus\":63561,\"bell-ring\":58924,\"bell-school-slash\":62934,\"bell-school\":62933,\"bell-slash\":61942,\"bell\":61683,\"bells\":63359,\"bench-tree\":58087,\"bezier-curve\":62811,\"bicycle\":61958,\"billboard\":58829,\"bin-bottles-recycle\":58870,\"bin-bottles\":58869,\"bin-recycle\":58871,\"binary-circle-check\":58172,\"binary-lock\":58173,\"binary-slash\":58174,\"binary\":58171,\"binoculars\":61925,\"biohazard\":63360,\"bird\":58473,\"bitcoin-sign\":57524,\"blanket-fire\":58330,\"blanket\":62616,\"blender-phone\":63158,\"blender\":62743,\"blinds-open\":63740,\"blinds-raised\":63741,\"blinds\":63739,\"block-brick-fire\":58332,\"block-brick\":58331,\"block-question\":58333,\"block-quote\":57525,\"block\":58474,\"blog\":63361,\"blueberries\":58088,\"bluetooth\":62099,\"bold\":61490,\"bolt-auto\":57526,\"bolt-lightning\":57527,\"bolt-slash\":57528,\"bolt\":61671,\"bomb\":61922,\"bone-break\":62936,\"bone\":62935,\"bong\":62812,\"book-arrow-right\":57529,\"book-arrow-up\":57530,\"book-atlas\":62808,\"book-bible\":63047,\"book-blank\":62937,\"book-bookmark\":57531,\"book-circle-arrow-right\":57532,\"book-circle-arrow-up\":57533,\"book-copy\":57534,\"book-font\":57535,\"book-heart\":62617,\"book-journal-whills\":63082,\"book-medical\":63462,\"book-open-cover\":57536,\"book-open-reader\":62938,\"book-open\":62744,\"book-quran\":63111,\"book-section\":57537,\"book-skull\":63159,\"book-sparkles\":63160,\"book-tanakh\":63527,\"book-user\":63463,\"book\":61485,\"bookmark-slash\":57538,\"bookmark\":61486,\"books-medical\":63464,\"books\":62939,\"boombox\":63653,\"boot-heeled\":58175,\"boot\":63362,\"booth-curtain\":63284,\"border-all\":63564,\"border-bottom-right\":63572,\"border-bottom\":63565,\"border-center-h\":63644,\"border-center-v\":63645,\"border-inner\":63566,\"border-left\":63567,\"border-none\":63568,\"border-outer\":63569,\"border-right\":63570,\"border-top-left\":63571,\"border-top\":63573,\"bore-hole\":58563,\"bottle-baby\":58995,\"bottle-droplet\":58564,\"bottle-water\":58565,\"bow-arrow\":63161,\"bowl-chopsticks-noodles\":58090,\"bowl-chopsticks\":58089,\"bowl-food\":58566,\"bowl-hot\":63523,\"bowl-rice\":58091,\"bowl-scoop\":58334,\"bowl-scoops\":58335,\"bowl-soft-serve\":58475,\"bowl-spoon\":58336,\"bowling-ball-pin\":57539,\"bowling-ball\":62518,\"bowling-pins\":62519,\"box-archive\":61831,\"box-ballot\":63285,\"box-check\":62567,\"box-circle-check\":57540,\"box-dollar\":62624,\"box-heart\":62621,\"box-open-full\":62620,\"box-open\":62622,\"box-taped\":62618,\"box-tissue\":57435,\"box\":62566,\"boxes-packing\":58567,\"boxes-stacked\":62568,\"boxing-glove\":62520,\"bracket-curly-right\":125,\"bracket-curly\":123,\"bracket-round-right\":41,\"bracket-round\":40,\"bracket-square-right\":93,\"bracket-square\":91,\"brackets-curly\":63466,\"brackets-round\":57541,\"brackets-square\":63465,\"braille\":62113,\"brain-arrow-curved-right\":63095,\"brain-circuit\":57542,\"brain\":62940,\"brake-warning\":57543,\"brazilian-real-sign\":58476,\"bread-loaf\":63467,\"bread-slice-butter\":58337,\"bread-slice\":63468,\"bridge-circle-check\":58569,\"bridge-circle-exclamation\":58570,\"bridge-circle-xmark\":58571,\"bridge-lock\":58572,\"bridge-suspension\":58573,\"bridge-water\":58574,\"bridge\":58568,\"briefcase-arrow-right\":58098,\"briefcase-blank\":57544,\"briefcase-medical\":62569,\"briefcase\":61617,\"brightness-low\":57546,\"brightness\":57545,\"bring-forward\":63574,\"bring-front\":63575,\"broccoli\":58338,\"broom-ball\":62552,\"broom-wide\":58833,\"broom\":62746,\"browser\":62334,\"browsers\":57547,\"brush\":62813,\"bucket\":58575,\"bug-slash\":58512,\"bug\":61832,\"bugs\":58576,\"building-circle-arrow-right\":58577,\"building-circle-check\":58578,\"building-circle-exclamation\":58579,\"building-circle-xmark\":58580,\"building-columns\":61852,\"building-flag\":58581,\"building-lock\":58582,\"building-magnifying-glass\":58908,\"building-memo\":58910,\"building-ngo\":58583,\"building-shield\":58584,\"building-un\":58585,\"building-user\":58586,\"building-wheat\":58587,\"building\":61869,\"buildings\":57548,\"bulldozer\":58965,\"bullhorn\":61601,\"bullseye-arrow\":63048,\"bullseye-pointer\":63049,\"bullseye\":61760,\"buoy-mooring\":58806,\"buoy\":58805,\"burger-cheese\":63473,\"burger-fries\":57549,\"burger-glass\":57550,\"burger-lettuce\":58339,\"burger-soda\":63576,\"burger\":63493,\"burrito\":63469,\"burst\":58588,\"bus-school\":62941,\"bus-simple\":62814,\"bus\":61959,\"business-time\":63050,\"butter\":58340,\"c\":67,\"cabin\":58477,\"cabinet-filing\":63051,\"cable-car\":63450,\"cactus\":63655,\"caduceus\":59009,\"cake-candles\":61949,\"cake-slice\":58341,\"calculator-simple\":63052,\"calculator\":61932,\"calendar-arrow-down\":57552,\"calendar-arrow-up\":57553,\"calendar-check\":62068,\"calendar-circle-exclamation\":58478,\"calendar-circle-minus\":58479,\"calendar-circle-plus\":58480,\"calendar-circle-user\":58481,\"calendar-clock\":57554,\"calendar-day\":63363,\"calendar-days\":61555,\"calendar-exclamation\":62260,\"calendar-heart\":57555,\"calendar-image\":57556,\"calendar-lines-pen\":58482,\"calendar-lines\":57557,\"calendar-minus\":62066,\"calendar-pen\":62259,\"calendar-plus\":62065,\"calendar-range\":57558,\"calendar-star\":63286,\"calendar-users\":58850,\"calendar-week\":63364,\"calendar-xmark\":62067,\"calendar\":61747,\"calendars\":57559,\"camcorder\":63656,\"camera-cctv\":63660,\"camera-movie\":63657,\"camera-polaroid\":63658,\"camera-retro\":61571,\"camera-rotate\":57560,\"camera-security\":63742,\"camera-slash\":57561,\"camera-viewfinder\":57562,\"camera-web-slash\":63539,\"camera-web\":63538,\"camera\":61488,\"campfire\":63162,\"campground\":63163,\"can-food\":58342,\"candle-holder\":63164,\"candy-bar\":58344,\"candy-cane\":63366,\"candy-corn\":63165,\"candy\":58343,\"cannabis\":62815,\"cannon\":58946,\"capsules\":62571,\"car-battery\":62943,\"car-bolt\":58177,\"car-building\":63577,\"car-bump\":62944,\"car-burst\":62945,\"car-bus\":63578,\"car-circle-bolt\":58178,\"car-garage\":62946,\"car-mirrors\":58179,\"car-on\":58589,\"car-rear\":62942,\"car-side-bolt\":58180,\"car-side\":62948,\"car-tilt\":62949,\"car-tunnel\":58590,\"car-wash\":62950,\"car-wrench\":62947,\"car\":61881,\"caravan-simple\":57344,\"caravan\":63743,\"card-club\":58345,\"card-diamond\":58346,\"card-heart\":58347,\"card-spade\":58348,\"cards-blank\":58591,\"cards\":58349,\"caret-down\":61655,\"caret-left\":61657,\"caret-right\":61658,\"caret-up\":61656,\"carpool\":59036,\"carrot\":63367,\"cars\":63579,\"cart-arrow-down\":61976,\"cart-arrow-up\":58350,\"cart-circle-arrow-down\":58351,\"cart-circle-arrow-up\":58352,\"cart-circle-check\":58353,\"cart-circle-exclamation\":58354,\"cart-circle-plus\":58355,\"cart-circle-xmark\":58356,\"cart-flatbed-boxes\":62581,\"cart-flatbed-empty\":62582,\"cart-flatbed-suitcase\":62877,\"cart-flatbed\":62580,\"cart-minus\":57563,\"cart-plus\":61975,\"cart-shopping-fast\":57564,\"cart-shopping\":61562,\"cart-xmark\":57565,\"cash-register\":63368,\"cassette-betamax\":63652,\"cassette-tape\":63659,\"cassette-vhs\":63724,\"castle\":57566,\"cat-space\":57345,\"cat\":63166,\"cauldron\":63167,\"cedi-sign\":57567,\"cent-sign\":58357,\"certificate\":61603,\"chair-office\":63169,\"chair\":63168,\"chalkboard-user\":62748,\"chalkboard\":62747,\"champagne-glass\":63390,\"champagne-glasses\":63391,\"charging-station\":62951,\"chart-area\":61950,\"chart-bar\":61568,\"chart-bullet\":57569,\"chart-candlestick\":57570,\"chart-column\":57571,\"chart-diagram\":59029,\"chart-fft\":59038,\"chart-gantt\":57572,\"chart-kanban\":58959,\"chart-line-down\":63053,\"chart-line-up-down\":58839,\"chart-line-up\":57573,\"chart-line\":61953,\"chart-mixed-up-circle-currency\":58840,\"chart-mixed-up-circle-dollar\":58841,\"chart-mixed\":63043,\"chart-network\":63370,\"chart-pie-simple-circle-currency\":58884,\"chart-pie-simple-circle-dollar\":58885,\"chart-pie-simple\":63054,\"chart-pie\":61952,\"chart-pyramid\":57574,\"chart-radar\":57575,\"chart-scatter-3d\":57576,\"chart-scatter-bubble\":57577,\"chart-scatter\":63470,\"chart-simple-horizontal\":58484,\"chart-simple\":58483,\"chart-sine\":59037,\"chart-tree-map\":57578,\"chart-user\":63139,\"chart-waterfall\":57579,\"check-double\":62816,\"check-to-slot\":63346,\"check\":61452,\"cheese-swiss\":63472,\"cheese\":63471,\"cherries\":57580,\"chess-bishop-piece\":62523,\"chess-bishop\":62522,\"chess-board\":62524,\"chess-clock-flip\":62526,\"chess-clock\":62525,\"chess-king-piece\":62528,\"chess-king\":62527,\"chess-knight-piece\":62530,\"chess-knight\":62529,\"chess-pawn-piece\":62532,\"chess-pawn\":62531,\"chess-queen-piece\":62534,\"chess-queen\":62533,\"chess-rook-piece\":62536,\"chess-rook\":62535,\"chess\":62521,\"chestnut\":58358,\"chevron-down\":61560,\"chevron-left\":61523,\"chevron-right\":61524,\"chevron-up\":61559,\"chevrons-down\":62242,\"chevrons-left\":62243,\"chevrons-right\":62244,\"chevrons-up\":62245,\"chf-sign\":58882,\"child-combatant\":58592,\"child-dress\":58780,\"child-reaching\":58781,\"child\":61870,\"children\":58593,\"chimney\":63371,\"chopsticks\":58359,\"church\":62749,\"circle-0\":57581,\"circle-1\":57582,\"circle-2\":57583,\"circle-3\":57584,\"circle-4\":57585,\"circle-5\":57586,\"circle-6\":57587,\"circle-7\":57588,\"circle-8\":57589,\"circle-9\":57590,\"circle-a\":57591,\"circle-ampersand\":57592,\"circle-arrow-down-left\":57593,\"circle-arrow-down-right\":57594,\"circle-arrow-down\":61611,\"circle-arrow-left\":61608,\"circle-arrow-right\":61609,\"circle-arrow-up-left\":57595,\"circle-arrow-up-right\":57596,\"circle-arrow-up\":61610,\"circle-b\":57597,\"circle-bolt\":57598,\"circle-book-open\":57599,\"circle-bookmark\":57600,\"circle-c\":57601,\"circle-calendar\":57602,\"circle-camera\":57603,\"circle-caret-down\":62253,\"circle-caret-left\":62254,\"circle-caret-right\":62256,\"circle-caret-up\":62257,\"circle-check\":61528,\"circle-chevron-down\":61754,\"circle-chevron-left\":61751,\"circle-chevron-right\":61752,\"circle-chevron-up\":61753,\"circle-d\":57604,\"circle-dashed\":57605,\"circle-divide\":57606,\"circle-dollar-to-slot\":62649,\"circle-dollar\":62184,\"circle-dot\":61842,\"circle-down-left\":57607,\"circle-down-right\":57608,\"circle-down\":62296,\"circle-e\":57609,\"circle-ellipsis-vertical\":57611,\"circle-ellipsis\":57610,\"circle-envelope\":57612,\"circle-euro\":58830,\"circle-exclamation-check\":57613,\"circle-exclamation\":61546,\"circle-f\":57614,\"circle-g\":57615,\"circle-gf\":59007,\"circle-h\":62590,\"circle-half-stroke\":61506,\"circle-half\":57616,\"circle-heart\":62663,\"circle-i\":57617,\"circle-info\":61530,\"circle-j\":57618,\"circle-k\":57619,\"circle-l\":57620,\"circle-left\":62297,\"circle-location-arrow\":62978,\"circle-m\":57621,\"circle-microphone-lines\":57623,\"circle-microphone\":57622,\"circle-minus\":61526,\"circle-n\":57624,\"circle-nodes\":58594,\"circle-notch\":61902,\"circle-o\":57625,\"circle-p\":57626,\"circle-parking\":62997,\"circle-pause\":62091,\"circle-phone-flip\":57628,\"circle-phone-hangup\":57629,\"circle-phone\":57627,\"circle-play\":61764,\"circle-plus\":61525,\"circle-q\":57630,\"circle-quarter-stroke\":58835,\"circle-quarter\":57631,\"circle-quarters\":58360,\"circle-question\":61529,\"circle-r\":57632,\"circle-radiation\":63418,\"circle-right\":62298,\"circle-s\":57633,\"circle-small\":57634,\"circle-sort-down\":57393,\"circle-sort-up\":57394,\"circle-sort\":57392,\"circle-star\":57635,\"circle-sterling\":58831,\"circle-stop\":62093,\"circle-t\":57636,\"circle-three-quarters-stroke\":58836,\"circle-three-quarters\":57637,\"circle-trash\":57638,\"circle-u\":57639,\"circle-up-left\":57640,\"circle-up-right\":57641,\"circle-up\":62299,\"circle-user\":62141,\"circle-v\":57642,\"circle-video\":57643,\"circle-w\":57644,\"circle-waveform-lines\":57645,\"circle-wifi-circle-wifi\":59006,\"circle-wifi\":59005,\"circle-x\":57646,\"circle-xmark\":61527,\"circle-y\":57647,\"circle-yen\":58832,\"circle-z\":57648,\"circle\":61713,\"circles-overlap-3\":59041,\"circles-overlap\":58880,\"citrus-slice\":58101,\"citrus\":58100,\"city\":63055,\"clapperboard-play\":57650,\"clapperboard\":57649,\"clarinet\":63661,\"claw-marks\":63170,\"clipboard-check\":62572,\"clipboard-list-check\":63287,\"clipboard-list\":62573,\"clipboard-medical\":57651,\"clipboard-prescription\":62952,\"clipboard-question\":58595,\"clipboard-user\":63475,\"clipboard\":62248,\"clock-desk\":57652,\"clock-eight-thirty\":58182,\"clock-eight\":58181,\"clock-eleven-thirty\":58184,\"clock-eleven\":58183,\"clock-five-thirty\":58186,\"clock-five\":58185,\"clock-four-thirty\":58187,\"clock-nine-thirty\":58189,\"clock-nine\":58188,\"clock-one-thirty\":58191,\"clock-one\":58190,\"clock-rotate-left\":61914,\"clock-seven-thirty\":58193,\"clock-seven\":58192,\"clock-six-thirty\":58195,\"clock-six\":58194,\"clock-ten-thirty\":58197,\"clock-ten\":58196,\"clock-three-thirty\":58199,\"clock-three\":58198,\"clock-twelve-thirty\":58201,\"clock-twelve\":58200,\"clock-two-thirty\":58203,\"clock-two\":58202,\"clock\":61463,\"clone\":62029,\"closed-captioning-slash\":57653,\"closed-captioning\":61962,\"clothes-hanger\":57654,\"cloud-arrow-down\":61677,\"cloud-arrow-up\":61678,\"cloud-binary\":58881,\"cloud-bolt-moon\":63341,\"cloud-bolt-sun\":63342,\"cloud-bolt\":63340,\"cloud-check\":58204,\"cloud-drizzle\":63288,\"cloud-exclamation\":58513,\"cloud-fog\":63310,\"cloud-hail-mixed\":63290,\"cloud-hail\":63289,\"cloud-meatball\":63291,\"cloud-minus\":58205,\"cloud-moon-rain\":63292,\"cloud-moon\":63171,\"cloud-music\":63662,\"cloud-plus\":58206,\"cloud-question\":58514,\"cloud-rain\":63293,\"cloud-rainbow\":63294,\"cloud-showers-heavy\":63296,\"cloud-showers-water\":58596,\"cloud-showers\":63295,\"cloud-slash\":57655,\"cloud-sleet\":63297,\"cloud-snow\":63298,\"cloud-sun-rain\":63299,\"cloud-sun\":63172,\"cloud-word\":57656,\"cloud-xmark\":58207,\"cloud\":61634,\"clouds-moon\":63301,\"clouds-sun\":63302,\"clouds\":63300,\"clover\":57657,\"club\":62247,\"coconut\":58102,\"code-branch\":61734,\"code-commit\":62342,\"code-compare\":57658,\"code-fork\":57659,\"code-merge\":62343,\"code-pull-request-closed\":58361,\"code-pull-request-draft\":58362,\"code-pull-request\":57660,\"code-simple\":57661,\"code\":61729,\"coffee-bean\":57662,\"coffee-beans\":57663,\"coffee-pot\":57346,\"coffin-cross\":57425,\"coffin\":63174,\"coin-blank\":58363,\"coin-front\":58364,\"coin-vertical\":58365,\"coin\":63580,\"coins\":62750,\"colon-sign\":57664,\"colon\":58,\"columns-3\":58209,\"comet\":57347,\"comma\":44,\"command\":57666,\"comment-arrow-down\":57667,\"comment-arrow-up-right\":57669,\"comment-arrow-up\":57668,\"comment-captions\":57670,\"comment-check\":62636,\"comment-code\":57671,\"comment-dollar\":63057,\"comment-dots\":62637,\"comment-exclamation\":62639,\"comment-heart\":58824,\"comment-image\":57672,\"comment-lines\":62640,\"comment-medical\":63477,\"comment-middle-top\":57674,\"comment-middle\":57673,\"comment-minus\":62641,\"comment-music\":63664,\"comment-nodes\":59030,\"comment-pen\":62638,\"comment-plus\":62642,\"comment-question\":57675,\"comment-quote\":57676,\"comment-slash\":62643,\"comment-smile\":62644,\"comment-sms\":63437,\"comment-text\":57677,\"comment-xmark\":62645,\"comment\":61557,\"comments-dollar\":63059,\"comments-question-check\":57679,\"comments-question\":57678,\"comments\":61574,\"compact-disc\":62751,\"compass-drafting\":62824,\"compass-slash\":62953,\"compass\":61774,\"compress-wide\":62246,\"compress\":61542,\"computer-classic\":63665,\"computer-mouse-scrollwheel\":63693,\"computer-mouse\":63692,\"computer-speaker\":63666,\"computer\":58597,\"container-storage\":62647,\"conveyor-belt-arm\":58872,\"conveyor-belt-boxes\":62575,\"conveyor-belt-empty\":57680,\"conveyor-belt\":62574,\"cookie-bite\":62820,\"cookie\":62819,\"copy\":61637,\"copyright\":61945,\"corn\":63175,\"corner\":58366,\"couch\":62648,\"court-sport\":58947,\"cow\":63176,\"cowbell-circle-plus\":63668,\"cowbell\":63667,\"crab\":58367,\"crate-apple\":63153,\"crate-empty\":57681,\"credit-card-blank\":62345,\"credit-card-front\":62346,\"credit-card\":61597,\"cricket-bat-ball\":62537,\"croissant\":63478,\"crop-simple\":62821,\"crop\":61733,\"cross\":63060,\"crosshairs-simple\":58783,\"crosshairs\":61531,\"crow\":62752,\"crown\":62753,\"crutch\":63479,\"crutches\":63480,\"cruzeiro-sign\":57682,\"crystal-ball\":58210,\"cube\":61874,\"cubes-stacked\":58598,\"cubes\":61875,\"cucumber\":58369,\"cup-straw-swoosh\":58212,\"cup-straw\":58211,\"cup-togo\":63173,\"cupcake\":58370,\"curling-stone\":62538,\"custard\":58371,\"d\":68,\"dagger\":63179,\"dash\":58372,\"database\":61888,\"deer-rudolph\":63375,\"deer\":63374,\"delete-left\":62810,\"delete-right\":57684,\"democrat\":63303,\"desktop-arrow-down\":57685,\"desktop\":62352,\"dharmachakra\":63061,\"diagram-cells\":58485,\"diagram-lean-canvas\":57686,\"diagram-nested\":57687,\"diagram-next\":58486,\"diagram-predecessor\":58487,\"diagram-previous\":58488,\"diagram-project\":62786,\"diagram-sankey\":57688,\"diagram-subtask\":58489,\"diagram-successor\":58490,\"diagram-venn\":57690,\"dial-high\":57692,\"dial-low\":57693,\"dial-max\":57694,\"dial-med-low\":57696,\"dial-med\":57695,\"dial-min\":57697,\"dial-off\":57698,\"dial\":57691,\"diamond-exclamation\":58373,\"diamond-half-stroke\":58808,\"diamond-half\":58807,\"diamond-turn-right\":62955,\"diamond\":61977,\"diamonds-4\":59019,\"dice-d10\":63181,\"dice-d12\":63182,\"dice-d20\":63183,\"dice-d4\":63184,\"dice-d6\":63185,\"dice-d8\":63186,\"dice-five\":62755,\"dice-four\":62756,\"dice-one\":62757,\"dice-six\":62758,\"dice-three\":62759,\"dice-two\":62760,\"dice\":62754,\"dinosaur\":58878,\"diploma\":62954,\"disc-drive\":63669,\"disease\":63482,\"display-arrow-down\":57700,\"display-chart-up-circle-currency\":58853,\"display-chart-up-circle-dollar\":58854,\"display-chart-up\":58851,\"display-code\":57701,\"display-medical\":57702,\"display-slash\":58106,\"display\":57699,\"distribute-spacing-horizontal\":58213,\"distribute-spacing-vertical\":58214,\"ditto\":34,\"divide\":62761,\"dna\":62577,\"do-not-enter\":62956,\"dog-leashed\":63188,\"dog\":63187,\"dollar-sign\":36,\"dolly-empty\":62579,\"dolly\":62578,\"dolphin\":57704,\"dong-sign\":57705,\"donut\":58374,\"door-closed\":62762,\"door-open\":62763,\"dove\":62650,\"down-from-bracket\":58987,\"down-from-dotted-line\":58375,\"down-from-line\":62281,\"down-left-and-up-right-to-center\":62498,\"down-left\":57706,\"down-long\":62217,\"down-right\":57707,\"down-to-bracket\":58599,\"down-to-dotted-line\":58376,\"down-to-line\":62282,\"down\":62292,\"download\":61465,\"dragon\":63189,\"draw-circle\":62957,\"draw-polygon\":62958,\"draw-square\":62959,\"dreidel\":63378,\"drone-front\":63584,\"drone\":63583,\"droplet-degree\":63304,\"droplet-percent\":63312,\"droplet-slash\":62919,\"droplet\":61507,\"drum-steelpan\":62826,\"drum\":62825,\"drumstick-bite\":63191,\"drumstick\":63190,\"dryer-heat\":63586,\"dryer\":63585,\"duck\":63192,\"dumbbell\":62539,\"dumpster-fire\":63380,\"dumpster\":63379,\"dungeon\":63193,\"e\":69,\"ear-deaf\":62116,\"ear-listen\":62114,\"ear-muffs\":63381,\"ear\":62960,\"earth-africa\":62844,\"earth-americas\":62845,\"earth-asia\":62846,\"earth-europe\":63394,\"earth-oceania\":58491,\"eclipse\":63305,\"egg-fried\":63484,\"egg\":63483,\"eggplant\":57708,\"eject\":61522,\"elephant\":63194,\"elevator\":57709,\"ellipsis-stroke-vertical\":62364,\"ellipsis-stroke\":62363,\"ellipsis-vertical\":61762,\"ellipsis\":61761,\"empty-set\":63062,\"engine-warning\":62962,\"engine\":57710,\"envelope-circle-check\":58600,\"envelope-dot\":57711,\"envelope-open-dollar\":63063,\"envelope-open-text\":63064,\"envelope-open\":62134,\"envelope\":61664,\"envelopes-bulk\":63092,\"envelopes\":57712,\"equals\":61,\"eraser\":61741,\"escalator\":57713,\"ethernet\":63382,\"euro-sign\":61779,\"excavator\":58966,\"exclamation\":33,\"expand-wide\":62240,\"expand\":61541,\"explosion\":58601,\"eye-dropper-full\":57714,\"eye-dropper-half\":57715,\"eye-dropper\":61947,\"eye-evil\":63195,\"eye-low-vision\":62120,\"eye-slash\":61552,\"eye\":61550,\"eyes\":58215,\"f\":70,\"face-angry-horns\":58216,\"face-angry\":62806,\"face-anguished\":58217,\"face-anxious-sweat\":58218,\"face-astonished\":58219,\"face-awesome\":58377,\"face-beam-hand-over-mouth\":58492,\"face-clouds\":58493,\"face-confounded\":58220,\"face-confused\":58221,\"face-cowboy-hat\":58222,\"face-diagonal-mouth\":58494,\"face-disappointed\":58223,\"face-disguise\":58224,\"face-dizzy\":62823,\"face-dotted\":58495,\"face-downcast-sweat\":58225,\"face-drooling\":58226,\"face-exhaling\":58496,\"face-explode\":58110,\"face-expressionless\":58227,\"face-eyes-xmarks\":58228,\"face-fearful\":58229,\"face-flushed\":62841,\"face-frown-open\":62842,\"face-frown-slight\":58230,\"face-frown\":61721,\"face-glasses\":58231,\"face-grimace\":62847,\"face-grin-beam-sweat\":62851,\"face-grin-beam\":62850,\"face-grin-hearts\":62852,\"face-grin-squint-tears\":62854,\"face-grin-squint\":62853,\"face-grin-stars\":62855,\"face-grin-tears\":62856,\"face-grin-tongue-squint\":62858,\"face-grin-tongue-wink\":62859,\"face-grin-tongue\":62857,\"face-grin-wide\":62849,\"face-grin-wink\":62860,\"face-grin\":62848,\"face-hand-over-mouth\":58232,\"face-hand-peeking\":58497,\"face-hand-yawn\":58233,\"face-head-bandage\":58234,\"face-holding-back-tears\":58498,\"face-hushed\":58235,\"face-icicles\":58236,\"face-kiss-beam\":62871,\"face-kiss-closed-eyes\":58237,\"face-kiss-wink-heart\":62872,\"face-kiss\":62870,\"face-laugh-beam\":62874,\"face-laugh-squint\":62875,\"face-laugh-wink\":62876,\"face-laugh\":62873,\"face-lying\":58238,\"face-mask\":58239,\"face-meh-blank\":62884,\"face-meh\":61722,\"face-melting\":58499,\"face-monocle\":58240,\"face-nauseated\":58241,\"face-nose-steam\":58242,\"face-party\":58243,\"face-pensive\":58244,\"face-persevering\":58245,\"face-pleading\":58246,\"face-pouting\":58247,\"face-raised-eyebrow\":58248,\"face-relieved\":58249,\"face-rolling-eyes\":62885,\"face-sad-cry\":62899,\"face-sad-sweat\":58250,\"face-sad-tear\":62900,\"face-saluting\":58500,\"face-scream\":58251,\"face-shush\":58252,\"face-sleeping\":58253,\"face-sleepy\":58254,\"face-smile-beam\":62904,\"face-smile-halo\":58255,\"face-smile-hearts\":58256,\"face-smile-horns\":58257,\"face-smile-plus\":62905,\"face-smile-relaxed\":58258,\"face-smile-tear\":58259,\"face-smile-tongue\":58260,\"face-smile-upside-down\":58261,\"face-smile-wink\":62682,\"face-smile\":61720,\"face-smiling-hands\":58262,\"face-smirking\":58263,\"face-spiral-eyes\":58501,\"face-sunglasses\":58264,\"face-surprise\":62914,\"face-swear\":58265,\"face-thermometer\":58266,\"face-thinking\":58267,\"face-tired\":62920,\"face-tissue\":58268,\"face-tongue-money\":58269,\"face-tongue-sweat\":58270,\"face-unamused\":58271,\"face-viewfinder\":58111,\"face-vomit\":58272,\"face-weary\":58273,\"face-woozy\":58274,\"face-worried\":58275,\"face-zany\":58276,\"face-zipper\":58277,\"falafel\":58378,\"family-dress\":58113,\"family-pants\":58114,\"family\":58112,\"fan-table\":57348,\"fan\":63587,\"farm\":63588,\"faucet-drip\":57350,\"faucet\":57349,\"fax\":61868,\"feather-pointed\":62827,\"feather\":62765,\"fence\":58115,\"ferris-wheel\":57716,\"ferry\":58602,\"field-hockey-stick-ball\":62540,\"file-arrow-down\":62829,\"file-arrow-up\":62836,\"file-audio\":61895,\"file-binary\":57717,\"file-cad\":58994,\"file-certificate\":62963,\"file-chart-column\":63065,\"file-chart-pie\":63066,\"file-check\":62230,\"file-circle-check\":58784,\"file-circle-exclamation\":58603,\"file-circle-info\":58515,\"file-circle-minus\":58605,\"file-circle-plus\":58516,\"file-circle-question\":58607,\"file-circle-xmark\":58785,\"file-code\":61897,\"file-contract\":62828,\"file-csv\":63197,\"file-dashed-line\":63607,\"file-doc\":58861,\"file-eps\":58948,\"file-excel\":61891,\"file-exclamation\":62234,\"file-export\":62830,\"file-fragment\":59031,\"file-gif\":58949,\"file-half-dashed\":59032,\"file-heart\":57718,\"file-image\":61893,\"file-import\":62831,\"file-invoice-dollar\":62833,\"file-invoice\":62832,\"file-jpg\":58950,\"file-lines\":61788,\"file-lock\":58278,\"file-magnifying-glass\":63589,\"file-medical\":62583,\"file-minus\":62232,\"file-mov\":58951,\"file-mp3\":58952,\"file-mp4\":58953,\"file-music\":63670,\"file-pdf\":61889,\"file-pen\":62236,\"file-plus-minus\":57719,\"file-plus\":62233,\"file-png\":58982,\"file-powerpoint\":61892,\"file-ppt\":58954,\"file-prescription\":62834,\"file-shield\":58608,\"file-signature\":62835,\"file-slash\":58279,\"file-spreadsheet\":63067,\"file-svg\":58955,\"file-user\":63068,\"file-vector\":58956,\"file-video\":61896,\"file-waveform\":62584,\"file-word\":61890,\"file-xls\":58957,\"file-xmark\":62231,\"file-xml\":58964,\"file-zip\":58862,\"file-zipper\":61894,\"file\":61787,\"files-medical\":63485,\"files\":57720,\"fill-drip\":62838,\"fill\":62837,\"film-canister\":63671,\"film-simple\":62368,\"film-slash\":57721,\"film\":61448,\"films\":57722,\"filter-circle-dollar\":63074,\"filter-circle-xmark\":57723,\"filter-list\":57724,\"filter-slash\":57725,\"filter\":61616,\"filters\":57726,\"fingerprint\":62839,\"fire-burner\":58609,\"fire-extinguisher\":61748,\"fire-flame-curved\":63460,\"fire-flame-simple\":62570,\"fire-flame\":63199,\"fire-hydrant\":57727,\"fire-smoke\":63307,\"fire\":61549,\"fireplace\":63386,\"fish-bones\":58116,\"fish-cooked\":63486,\"fish-fins\":58610,\"fish\":62840,\"fishing-rod\":58280,\"flag-checkered\":61726,\"flag-pennant\":62550,\"flag-swallowtail\":63308,\"flag-usa\":63309,\"flag\":61476,\"flashlight\":63672,\"flask-gear\":58865,\"flask-round-poison\":63200,\"flask-round-potion\":63201,\"flask-vial\":58611,\"flask\":61635,\"flatbread-stuffed\":58380,\"flatbread\":58379,\"floppy-disk-circle-arrow-right\":57728,\"floppy-disk-circle-xmark\":57729,\"floppy-disk-pen\":57730,\"floppy-disk\":61639,\"floppy-disks\":57731,\"florin-sign\":57732,\"flower-daffodil\":63488,\"flower-tulip\":63489,\"flower\":63487,\"flute\":63673,\"flux-capacitor\":63674,\"flying-disc\":58281,\"folder-arrow-down\":57427,\"folder-arrow-up\":57428,\"folder-bookmark\":57734,\"folder-check\":58958,\"folder-closed\":57733,\"folder-gear\":57735,\"folder-grid\":57736,\"folder-heart\":57737,\"folder-image\":57738,\"folder-magnifying-glass\":57739,\"folder-medical\":57740,\"folder-minus\":63069,\"folder-music\":57741,\"folder-open\":61564,\"folder-plus\":63070,\"folder-tree\":63490,\"folder-user\":57742,\"folder-xmark\":63071,\"folder\":61563,\"folders\":63072,\"fondue-pot\":58381,\"font-awesome\":62132,\"font-case\":63590,\"font\":61489,\"football-helmet\":62543,\"football\":62542,\"fork-knife\":62182,\"fork\":62179,\"forklift\":62586,\"fort\":58502,\"forward-fast\":61520,\"forward-step\":61521,\"forward\":61518,\"frame\":58517,\"franc-sign\":57743,\"french-fries\":63491,\"frog\":62766,\"function\":63073,\"futbol\":61923,\"g\":71,\"galaxy\":57352,\"gallery-thumbnails\":58282,\"game-board-simple\":63592,\"game-board\":63591,\"game-console-handheld-crank\":58809,\"game-console-handheld\":63675,\"gamepad-modern\":58786,\"gamepad\":61723,\"garage-car\":57354,\"garage-open\":57355,\"garage\":57353,\"garlic\":58382,\"gas-pump-slash\":62964,\"gas-pump\":62767,\"gauge-circle-bolt\":58518,\"gauge-circle-minus\":58519,\"gauge-circle-plus\":58520,\"gauge-high\":63013,\"gauge-low\":63015,\"gauge-max\":63014,\"gauge-min\":63016,\"gauge-simple-high\":63018,\"gauge-simple-low\":63020,\"gauge-simple-max\":63019,\"gauge-simple-min\":63021,\"gauge-simple\":63017,\"gauge\":63012,\"gavel\":61667,\"gear-code\":58856,\"gear-complex-code\":58859,\"gear-complex\":58857,\"gear\":61459,\"gears\":61573,\"gem\":62373,\"genderless\":61997,\"ghost\":63202,\"gif\":57744,\"gift-card\":63075,\"gift\":61547,\"gifts\":63388,\"gingerbread-man\":63389,\"glass-citrus\":63593,\"glass-empty\":57745,\"glass-half\":57746,\"glass-water-droplet\":58613,\"glass-water\":58612,\"glass\":63492,\"glasses-round\":62965,\"glasses\":62768,\"globe-pointer\":58894,\"globe-snow\":63395,\"globe-stand\":62966,\"globe-wifi\":59013,\"globe\":61612,\"goal-net\":58283,\"golf-ball-tee\":62544,\"golf-club\":62545,\"golf-flag-hole\":58284,\"gopuram\":63076,\"graduation-cap\":61853,\"gramophone\":63677,\"grapes\":58118,\"grate-droplet\":57748,\"grate\":57747,\"greater-than-equal\":62770,\"greater-than\":62,\"grid-2-plus\":57751,\"grid-2\":57750,\"grid-4\":57752,\"grid-5\":57753,\"grid-dividers\":58285,\"grid-horizontal\":58119,\"grid-round-2-plus\":58844,\"grid-round-2\":58843,\"grid-round-4\":58845,\"grid-round-5\":58846,\"grid-round\":58842,\"grid\":57749,\"grill-fire\":58788,\"grill-hot\":58789,\"grill\":58787,\"grip-dots-vertical\":58385,\"grip-dots\":58384,\"grip-lines-vertical\":63397,\"grip-lines\":63396,\"grip-vertical\":62862,\"grip\":62861,\"group-arrows-rotate\":58614,\"guarani-sign\":57754,\"guitar-electric\":63678,\"guitar\":63398,\"guitars\":63679,\"gun-slash\":57756,\"gun-squirt\":57757,\"gun\":57755,\"h\":72,\"h1\":62227,\"h2\":62228,\"h3\":62229,\"h4\":63594,\"h5\":58386,\"h6\":58387,\"hammer-brush\":58912,\"hammer-crash\":58388,\"hammer-war\":63204,\"hammer\":63203,\"hamsa\":63077,\"hand-back-fist\":62037,\"hand-back-point-down\":57758,\"hand-back-point-left\":57759,\"hand-back-point-ribbon\":57760,\"hand-back-point-right\":57761,\"hand-back-point-up\":57762,\"hand-dots\":62561,\"hand-fingers-crossed\":57763,\"hand-fist\":63198,\"hand-heart\":62652,\"hand-holding-box\":62587,\"hand-holding-circle-dollar\":58913,\"hand-holding-dollar\":62656,\"hand-holding-droplet\":62657,\"hand-holding-hand\":58615,\"hand-holding-heart\":62654,\"hand-holding-magic\":63205,\"hand-holding-medical\":57436,\"hand-holding-seedling\":62655,\"hand-holding-skull\":57764,\"hand-holding\":62653,\"hand-horns\":57769,\"hand-lizard\":62040,\"hand-love\":57765,\"hand-middle-finger\":63494,\"hand-peace\":62043,\"hand-point-down\":61607,\"hand-point-left\":61605,\"hand-point-ribbon\":57766,\"hand-point-right\":61604,\"hand-point-up\":61606,\"hand-pointer\":62042,\"hand-scissors\":62039,\"hand-sparkles\":57437,\"hand-spock\":62041,\"hand-wave\":57767,\"hand\":62038,\"handcuffs\":58616,\"hands-asl-interpreting\":62115,\"hands-bound\":58617,\"hands-bubbles\":57438,\"hands-clapping\":57768,\"hands-holding-child\":58618,\"hands-holding-circle\":58619,\"hands-holding-diamond\":62588,\"hands-holding-dollar\":62661,\"hands-holding-heart\":62659,\"hands-holding\":62658,\"hands-praying\":63108,\"hands\":62119,\"handshake-angle\":62660,\"handshake-simple-slash\":57439,\"handshake-simple\":62662,\"handshake-slash\":57440,\"handshake\":62133,\"hanukiah\":63206,\"hard-drive\":61600,\"hashtag-lock\":58389,\"hashtag\":35,\"hat-beach\":58886,\"hat-chef\":63595,\"hat-cowboy-side\":63681,\"hat-cowboy\":63680,\"hat-santa\":63399,\"hat-winter\":63400,\"hat-witch\":63207,\"hat-wizard\":63208,\"head-side-brain\":63496,\"head-side-cough-slash\":57442,\"head-side-cough\":57441,\"head-side-gear\":58897,\"head-side-goggles\":63210,\"head-side-headphones\":63682,\"head-side-heart\":57770,\"head-side-mask\":57443,\"head-side-medical\":63497,\"head-side-virus\":57444,\"head-side\":63209,\"heading\":61916,\"headphones-simple\":62863,\"headphones\":61477,\"headset\":62864,\"heart-circle-bolt\":58620,\"heart-circle-check\":58621,\"heart-circle-exclamation\":58622,\"heart-circle-minus\":58623,\"heart-circle-plus\":58624,\"heart-circle-xmark\":58625,\"heart-crack\":63401,\"heart-half-stroke\":57772,\"heart-half\":57771,\"heart-pulse\":61982,\"heart\":61444,\"heat\":57356,\"helicopter-symbol\":58626,\"helicopter\":62771,\"helmet-battle\":63211,\"helmet-safety\":63495,\"helmet-un\":58627,\"hexagon-check\":58390,\"hexagon-divide\":57773,\"hexagon-exclamation\":58391,\"hexagon-image\":58628,\"hexagon-minus\":62215,\"hexagon-nodes-bolt\":59034,\"hexagon-nodes\":59033,\"hexagon-plus\":62208,\"hexagon-vertical-nft-slanted\":58630,\"hexagon-vertical-nft\":58629,\"hexagon-xmark\":62190,\"hexagon\":62226,\"high-definition\":57774,\"highlighter-line\":57775,\"highlighter\":62865,\"hill-avalanche\":58631,\"hill-rockslide\":58632,\"hippo\":63213,\"hockey-mask\":63214,\"hockey-puck\":62547,\"hockey-stick-puck\":58286,\"hockey-sticks\":62548,\"holly-berry\":63402,\"honey-pot\":58392,\"hood-cloak\":63215,\"horizontal-rule\":63596,\"horse-head\":63403,\"horse-saddle\":63683,\"horse\":63216,\"hose-reel\":58394,\"hose\":58393,\"hospital-user\":63501,\"hospital\":61688,\"hospitals\":63502,\"hot-tub-person\":62867,\"hotdog\":63503,\"hotel\":62868,\"hourglass-clock\":58395,\"hourglass-end\":62035,\"hourglass-half\":62034,\"hourglass-start\":62033,\"hourglass\":62036,\"house-blank\":58503,\"house-building\":57777,\"house-chimney-blank\":58288,\"house-chimney-crack\":63217,\"house-chimney-heart\":57778,\"house-chimney-medical\":63474,\"house-chimney-user\":57445,\"house-chimney-window\":57357,\"house-chimney\":58287,\"house-circle-check\":58633,\"house-circle-exclamation\":58634,\"house-circle-xmark\":58635,\"house-crack\":58289,\"house-day\":57358,\"house-fire\":58636,\"house-flag\":58637,\"house-flood-water-circle-arrow-right\":58639,\"house-flood-water\":58638,\"house-heart\":62665,\"house-laptop\":57446,\"house-lock\":58640,\"house-medical-circle-check\":58641,\"house-medical-circle-exclamation\":58642,\"house-medical-circle-xmark\":58643,\"house-medical-flag\":58644,\"house-medical\":58290,\"house-night\":57360,\"house-person-leave\":57359,\"house-person-return\":57361,\"house-signal\":57362,\"house-tree\":57779,\"house-tsunami\":58645,\"house-turret\":57780,\"house-user\":57776,\"house-water\":63311,\"house-window\":58291,\"house\":61461,\"hryvnia-sign\":63218,\"hundred-points\":58396,\"hurricane\":63313,\"hydra\":59014,\"hyphen\":45,\"i-cursor\":62022,\"i\":73,\"ice-cream\":63504,\"ice-skate\":63404,\"icicles\":63405,\"icons\":63597,\"id-badge\":62145,\"id-card-clip\":62591,\"id-card\":62146,\"igloo\":63406,\"image-landscape\":57781,\"image-polaroid-user\":57782,\"image-polaroid\":63684,\"image-portrait\":62432,\"image-slash\":57783,\"image-user\":57784,\"image\":61502,\"images-user\":57785,\"images\":62210,\"inbox-full\":57786,\"inbox-in\":62224,\"inbox-out\":62225,\"inbox\":61468,\"inboxes\":57787,\"indent\":61500,\"indian-rupee-sign\":57788,\"industry-windows\":62387,\"industry\":62069,\"infinity\":62772,\"info\":61737,\"inhaler\":62969,\"input-numeric\":57789,\"input-pipe\":57790,\"input-text\":57791,\"integral\":63079,\"interrobang\":58810,\"intersection\":63080,\"island-tropical\":63505,\"italic\":61491,\"j\":74,\"jack-o-lantern\":62222,\"jar-wheat\":58647,\"jar\":58646,\"jedi\":63081,\"jet-fighter-up\":58648,\"jet-fighter\":61691,\"joint\":62869,\"joystick\":63685,\"jug-bottle\":58875,\"jug-detergent\":58649,\"jug\":63686,\"k\":75,\"kaaba\":63083,\"kazoo\":63687,\"kerning\":63599,\"key-skeleton-left-right\":58292,\"key-skeleton\":63219,\"key\":61572,\"keyboard-brightness-low\":57793,\"keyboard-brightness\":57792,\"keyboard-down\":57794,\"keyboard-left\":57795,\"keyboard\":61724,\"keynote\":63084,\"khanda\":63085,\"kidneys\":62971,\"kip-sign\":57796,\"kit-medical\":62585,\"kitchen-set\":58650,\"kite\":63220,\"kiwi-bird\":62773,\"kiwi-fruit\":58124,\"knife-kitchen\":63221,\"knife\":62180,\"l\":76,\"lacrosse-stick-ball\":58294,\"lacrosse-stick\":58293,\"lambda\":63086,\"lamp-desk\":57364,\"lamp-floor\":57365,\"lamp-street\":57797,\"lamp\":62666,\"land-mine-on\":58651,\"landmark-dome\":63314,\"landmark-flag\":58652,\"landmark-magnifying-glass\":58914,\"landmark\":63087,\"language\":61867,\"laptop-arrow-down\":57798,\"laptop-binary\":58855,\"laptop-code\":62972,\"laptop-file\":58653,\"laptop-medical\":63506,\"laptop-mobile\":63610,\"laptop-slash\":57799,\"laptop\":61705,\"lari-sign\":57800,\"lasso-sparkles\":57801,\"lasso\":63688,\"layer-group\":62973,\"layer-minus\":62974,\"layer-plus\":62975,\"leaf-heart\":62667,\"leaf-maple\":63222,\"leaf-oak\":63223,\"leaf\":61548,\"leafy-green\":58397,\"left-from-bracket\":58988,\"left-from-line\":62280,\"left-long-to-line\":58398,\"left-long\":62218,\"left-right\":62263,\"left-to-bracket\":58989,\"left-to-line\":62283,\"left\":62293,\"lemon\":61588,\"less-than-equal\":62775,\"less-than\":60,\"life-ring\":61901,\"light-ceiling\":57366,\"light-emergency-on\":58400,\"light-emergency\":58399,\"light-switch-off\":57368,\"light-switch-on\":57369,\"light-switch\":57367,\"lightbulb-cfl-on\":58791,\"lightbulb-cfl\":58790,\"lightbulb-dollar\":63088,\"lightbulb-exclamation-on\":57802,\"lightbulb-exclamation\":63089,\"lightbulb-gear\":58877,\"lightbulb-message\":59015,\"lightbulb-on\":63090,\"lightbulb-slash\":63091,\"lightbulb\":61675,\"lighthouse\":58898,\"lights-holiday\":63410,\"line-columns\":63600,\"line-height\":63601,\"lines-leaning\":58654,\"link-horizontal-slash\":57804,\"link-horizontal\":57803,\"link-simple-slash\":57806,\"link-simple\":57805,\"link-slash\":61735,\"link\":61633,\"lips\":62976,\"lira-sign\":61845,\"list-check\":61614,\"list-dropdown\":57807,\"list-music\":63689,\"list-ol\":61643,\"list-radio\":57808,\"list-timeline\":57809,\"list-tree\":57810,\"list-ul\":61642,\"list\":61498,\"litecoin-sign\":57811,\"loader\":57812,\"lobster\":58401,\"location-arrow-up\":58938,\"location-arrow\":61732,\"location-check\":62982,\"location-crosshairs-slash\":62979,\"location-crosshairs\":62977,\"location-dot-slash\":62981,\"location-dot\":62405,\"location-exclamation\":62984,\"location-minus\":62985,\"location-pen\":62983,\"location-pin-lock\":58655,\"location-pin-slash\":62988,\"location-pin\":61505,\"location-plus\":62986,\"location-question\":62987,\"location-smile\":62989,\"location-xmark\":62990,\"lock-a\":58402,\"lock-hashtag\":58403,\"lock-keyhole-open\":62402,\"lock-keyhole\":62221,\"lock-open\":62401,\"lock\":61475,\"locust\":58656,\"lollipop\":58404,\"loveseat\":62668,\"luchador-mask\":62549,\"lungs-virus\":57447,\"lungs\":62980,\"m\":77,\"mace\":63224,\"magnet\":61558,\"magnifying-glass-arrow-right\":58657,\"magnifying-glass-arrows-rotate\":58974,\"magnifying-glass-chart\":58658,\"magnifying-glass-dollar\":63112,\"magnifying-glass-location\":63113,\"magnifying-glass-minus\":61456,\"magnifying-glass-music\":58975,\"magnifying-glass-play\":58976,\"magnifying-glass-plus\":61454,\"magnifying-glass-waveform\":58977,\"magnifying-glass\":61442,\"mailbox-flag-up\":58811,\"mailbox\":63507,\"manat-sign\":57813,\"mandolin\":63225,\"mango\":58127,\"manhole\":57814,\"map-location-dot\":62880,\"map-location\":62879,\"map-pin\":62070,\"map\":62073,\"marker\":62881,\"mars-and-venus-burst\":58659,\"mars-and-venus\":61988,\"mars-double\":61991,\"mars-stroke-right\":61995,\"mars-stroke-up\":61994,\"mars-stroke\":61993,\"mars\":61986,\"martini-glass-citrus\":62817,\"martini-glass-empty\":61440,\"martini-glass\":62843,\"mask-face\":57815,\"mask-snorkel\":58295,\"mask-ventilator\":58660,\"mask\":63226,\"masks-theater\":63024,\"mattress-pillow\":58661,\"maximize\":62238,\"meat\":63508,\"medal\":62882,\"megaphone\":63093,\"melon-slice\":58129,\"melon\":58128,\"memo-circle-check\":57817,\"memo-circle-info\":58522,\"memo-pad\":57818,\"memo\":57816,\"memory\":62776,\"menorah\":63094,\"mercury\":61987,\"merge\":58662,\"message-arrow-down\":57819,\"message-arrow-up-right\":57821,\"message-arrow-up\":57820,\"message-bot\":58296,\"message-captions\":57822,\"message-check\":62626,\"message-code\":57823,\"message-dollar\":63056,\"message-dots\":62627,\"message-exclamation\":62629,\"message-heart\":58825,\"message-image\":57824,\"message-lines\":62630,\"message-medical\":63476,\"message-middle-top\":57826,\"message-middle\":57825,\"message-minus\":62631,\"message-music\":63663,\"message-pen\":62628,\"message-plus\":62632,\"message-question\":57827,\"message-quote\":57828,\"message-slash\":62633,\"message-smile\":62634,\"message-sms\":57829,\"message-text\":57830,\"message-xmark\":62635,\"message\":62074,\"messages-dollar\":63058,\"messages-question\":57831,\"messages\":62646,\"meteor\":63315,\"meter-bolt\":57833,\"meter-droplet\":57834,\"meter-fire\":57835,\"meter\":57832,\"microchip-ai\":57836,\"microchip\":62171,\"microphone-lines-slash\":62777,\"microphone-lines\":62409,\"microphone-slash\":61745,\"microphone-stand\":63691,\"microphone\":61744,\"microscope\":62992,\"microwave\":57371,\"mill-sign\":57837,\"minimize\":63372,\"minus\":61544,\"mistletoe\":63412,\"mitten\":63413,\"mobile-button\":61707,\"mobile-notch\":57838,\"mobile-retro\":58663,\"mobile-screen-button\":62413,\"mobile-screen\":62415,\"mobile-signal-out\":57840,\"mobile-signal\":57839,\"mobile\":62414,\"money-bill-1-wave\":62779,\"money-bill-1\":62417,\"money-bill-simple-wave\":57842,\"money-bill-simple\":57841,\"money-bill-transfer\":58664,\"money-bill-trend-up\":58665,\"money-bill-wave\":62778,\"money-bill-wheat\":58666,\"money-bill\":61654,\"money-bills-simple\":57844,\"money-bills\":57843,\"money-check-dollar-pen\":63603,\"money-check-dollar\":62781,\"money-check-pen\":63602,\"money-check\":62780,\"money-from-bracket\":58130,\"money-simple-from-bracket\":58131,\"monitor-waveform\":62993,\"monkey\":63227,\"monument\":62886,\"moon-cloud\":63316,\"moon-over-sun\":63306,\"moon-stars\":63317,\"moon\":61830,\"moped\":58297,\"mortar-pestle\":62887,\"mosque\":63096,\"mosquito-net\":58668,\"mosquito\":58667,\"motorcycle\":61980,\"mound\":58669,\"mountain-city\":58670,\"mountain-sun\":58671,\"mountain\":63228,\"mountains\":63229,\"mouse-field\":58792,\"mp3-player\":63694,\"mug-hot\":63414,\"mug-marshmallows\":63415,\"mug-saucer\":61684,\"mug-tea-saucer\":57845,\"mug-tea\":63605,\"mug\":63604,\"mushroom\":58405,\"music-magnifying-glass\":58978,\"music-note-slash\":63696,\"music-note\":63695,\"music-slash\":63697,\"music\":61441,\"mustache\":58812,\"n\":78,\"naira-sign\":57846,\"narwhal\":63230,\"nesting-dolls\":58298,\"network-wired\":63231,\"neuter\":61996,\"newspaper\":61930,\"nfc-lock\":57848,\"nfc-magnifying-glass\":57849,\"nfc-pen\":57850,\"nfc-signal\":57851,\"nfc-slash\":57852,\"nfc-symbol\":58673,\"nfc-trash\":57853,\"nfc\":57847,\"nose\":58813,\"not-equal\":62782,\"notdef\":57854,\"note-medical\":57856,\"note-sticky\":62025,\"note\":57855,\"notebook\":57857,\"notes-medical\":62593,\"notes\":57858,\"o\":79,\"object-exclude\":58524,\"object-group\":62023,\"object-intersect\":58525,\"object-subtract\":58526,\"object-ungroup\":62024,\"object-union\":58527,\"objects-align-bottom\":58299,\"objects-align-center-horizontal\":58300,\"objects-align-center-vertical\":58301,\"objects-align-left\":58302,\"objects-align-right\":58303,\"objects-align-top\":58304,\"objects-column\":58305,\"octagon-check\":58406,\"octagon-divide\":57859,\"octagon-exclamation\":57860,\"octagon-minus\":62216,\"octagon-plus\":62209,\"octagon-xmark\":62192,\"octagon\":62214,\"octopus\":59016,\"oil-can-drip\":57861,\"oil-can\":62995,\"oil-temperature\":62996,\"oil-well\":58674,\"olive-branch\":58135,\"olive\":58134,\"om\":63097,\"omega\":63098,\"onion\":58407,\"option\":58136,\"ornament\":63416,\"otter\":63232,\"outdent\":61499,\"outlet\":57372,\"oven\":57373,\"overline\":63606,\"p\":80,\"page-caret-down\":58409,\"page-caret-up\":58410,\"page\":58408,\"pager\":63509,\"paint-roller\":62890,\"paintbrush-fine\":62889,\"paintbrush-pencil\":57862,\"paintbrush\":61948,\"palette\":62783,\"pallet-box\":57864,\"pallet-boxes\":62595,\"pallet\":62594,\"pan-food\":58411,\"pan-frying\":58412,\"pancakes\":58413,\"panel-ews\":58414,\"panel-fire\":58415,\"panorama\":57865,\"paper-plane-top\":57866,\"paper-plane\":61912,\"paperclip-vertical\":58306,\"paperclip\":61638,\"parachute-box\":62669,\"paragraph-left\":63608,\"paragraph\":61917,\"party-bell\":58138,\"party-horn\":58139,\"passport\":62891,\"paste\":61674,\"pause\":61516,\"paw-claws\":63234,\"paw-simple\":63233,\"paw\":61872,\"peace\":63100,\"peach\":57867,\"peanut\":58416,\"peanuts\":58417,\"peapod\":58140,\"pear\":57868,\"pedestal\":57869,\"pegasus\":63235,\"pen-circle\":57870,\"pen-clip-slash\":57871,\"pen-clip\":62213,\"pen-fancy-slash\":57872,\"pen-fancy\":62892,\"pen-field\":57873,\"pen-line\":57874,\"pen-nib-slash\":58529,\"pen-nib\":62893,\"pen-paintbrush\":63000,\"pen-ruler\":62894,\"pen-slash\":57875,\"pen-swirl\":57876,\"pen-to-square\":61508,\"pen\":62212,\"pencil-mechanical\":58826,\"pencil-slash\":57877,\"pencil\":62211,\"people-arrows\":57448,\"people-carry-box\":62670,\"people-dress-simple\":57880,\"people-dress\":57879,\"people-group\":58675,\"people-line\":58676,\"people-pants-simple\":57882,\"people-pants\":57881,\"people-pulling\":58677,\"people-robbery\":58678,\"people-roof\":58679,\"people-simple\":57883,\"people\":57878,\"pepper-hot\":63510,\"pepper\":58418,\"percent\":37,\"period\":46,\"person-arrow-down-to-line\":58680,\"person-arrow-up-from-line\":58681,\"person-biking-mountain\":63563,\"person-biking\":63562,\"person-booth\":63318,\"person-breastfeeding\":58682,\"person-burst\":58683,\"person-cane\":58684,\"person-carry-box\":62671,\"person-chalkboard\":58685,\"person-circle-check\":58686,\"person-circle-exclamation\":58687,\"person-circle-minus\":58688,\"person-circle-plus\":58689,\"person-circle-question\":58690,\"person-circle-xmark\":58691,\"person-digging\":63582,\"person-dolly-empty\":62673,\"person-dolly\":62672,\"person-dots-from-line\":62576,\"person-dress-burst\":58692,\"person-dress-fairy\":58887,\"person-dress-simple\":57884,\"person-dress\":61826,\"person-drowning\":58693,\"person-fairy\":58888,\"person-falling-burst\":58695,\"person-falling\":58694,\"person-from-portal\":57379,\"person-half-dress\":58696,\"person-harassing\":58697,\"person-hiking\":63212,\"person-military-pointing\":58698,\"person-military-rifle\":58699,\"person-military-to-person\":58700,\"person-pinball\":57885,\"person-praying\":63107,\"person-pregnant\":58142,\"person-rays\":58701,\"person-rifle\":58702,\"person-running-fast\":58879,\"person-running\":63244,\"person-seat-reclined\":57887,\"person-seat\":57886,\"person-shelter\":58703,\"person-sign\":63319,\"person-simple\":57888,\"person-skating\":63429,\"person-ski-jumping\":63431,\"person-ski-lift\":63432,\"person-skiing-nordic\":63434,\"person-skiing\":63433,\"person-sledding\":63435,\"person-snowboarding\":63438,\"person-snowmobiling\":63441,\"person-swimming\":62916,\"person-through-window\":58793,\"person-to-door\":58419,\"person-to-portal\":57378,\"person-walking-arrow-loop-left\":58705,\"person-walking-arrow-right\":58706,\"person-walking-dashed-line-arrow-right\":58707,\"person-walking-luggage\":58708,\"person-walking-with-cane\":62109,\"person-walking\":62804,\"person\":61827,\"peseta-sign\":57889,\"peso-sign\":57890,\"phone-arrow-down-left\":57891,\"phone-arrow-right\":58814,\"phone-arrow-up-right\":57892,\"phone-flip\":63609,\"phone-hangup\":57893,\"phone-intercom\":58420,\"phone-missed\":57894,\"phone-office\":63101,\"phone-plus\":62674,\"phone-rotary\":63699,\"phone-slash\":62429,\"phone-volume\":62112,\"phone-xmark\":57895,\"phone\":61589,\"photo-film-music\":57896,\"photo-film\":63612,\"pi\":63102,\"piano-keyboard\":63701,\"piano\":63700,\"pickaxe\":58815,\"pickleball\":58421,\"pie\":63237,\"pig\":63238,\"piggy-bank\":62675,\"pills\":62596,\"pinata\":58307,\"pinball\":57897,\"pineapple\":58143,\"pipe-circle-check\":58422,\"pipe-collar\":58423,\"pipe-section\":58424,\"pipe-smoking\":58308,\"pipe-valve\":58425,\"pipe\":124,\"pizza-slice\":63512,\"pizza\":63511,\"place-of-worship\":63103,\"plane-arrival\":62895,\"plane-circle-check\":58709,\"plane-circle-exclamation\":58710,\"plane-circle-xmark\":58711,\"plane-departure\":62896,\"plane-engines\":62430,\"plane-lock\":58712,\"plane-prop\":57899,\"plane-slash\":57449,\"plane-tail\":57900,\"plane-up-slash\":57902,\"plane-up\":57901,\"plane\":61554,\"planet-moon\":57375,\"planet-ringed\":57376,\"plant-wilt\":58794,\"plate-utensils\":58427,\"plate-wheat\":58714,\"play-pause\":57903,\"play\":61515,\"plug-circle-bolt\":58715,\"plug-circle-check\":58716,\"plug-circle-exclamation\":58717,\"plug-circle-minus\":58718,\"plug-circle-plus\":58719,\"plug-circle-xmark\":58720,\"plug\":61926,\"plus-large\":58782,\"plus-minus\":58428,\"plus\":43,\"podcast\":62158,\"podium-star\":63320,\"podium\":63104,\"police-box\":57377,\"poll-people\":63321,\"pompebled\":58429,\"poo-storm\":63322,\"poo\":62206,\"pool-8-ball\":58309,\"poop\":63001,\"popcorn\":63513,\"popsicle\":58430,\"pot-food\":58431,\"potato\":58432,\"power-off\":61457,\"prescription-bottle-medical\":62598,\"prescription-bottle-pill\":58816,\"prescription-bottle\":62597,\"prescription\":62897,\"presentation-screen\":63109,\"pretzel\":58433,\"print-magnifying-glass\":63514,\"print-slash\":63110,\"print\":61487,\"projector\":63702,\"pump-medical\":57450,\"pump-soap\":57451,\"pump\":58434,\"pumpkin\":63239,\"puzzle-piece-simple\":57905,\"puzzle-piece\":61742,\"puzzle\":58435,\"q\":81,\"qrcode\":61481,\"question\":63,\"quote-left\":61709,\"quote-right\":61710,\"quotes\":57908,\"r\":82,\"rabbit-running\":63241,\"rabbit\":63240,\"raccoon\":58899,\"racquet\":62554,\"radar\":57380,\"radiation\":63417,\"radio-tuner\":63704,\"radio\":63703,\"rainbow\":63323,\"raindrops\":63324,\"ram\":63242,\"ramp-loading\":62676,\"ranking-star\":58721,\"raygun\":57381,\"receipt\":62787,\"record-vinyl\":63705,\"rectangle-ad\":63041,\"rectangle-barcode\":62563,\"rectangle-code\":58146,\"rectangle-history-circle-plus\":58531,\"rectangle-history-circle-user\":58532,\"rectangle-history\":58530,\"rectangle-list\":61474,\"rectangle-pro\":57909,\"rectangle-terminal\":57910,\"rectangle-vertical-history\":57911,\"rectangle-vertical\":62203,\"rectangle-wide\":62204,\"rectangle-xmark\":62480,\"rectangle\":62202,\"rectangles-mixed\":58147,\"recycle\":61880,\"reel\":57912,\"reflect-both\":58991,\"reflect-horizontal\":58980,\"reflect-vertical\":58981,\"refrigerator\":57382,\"registered\":62045,\"repeat-1\":62309,\"repeat\":62307,\"reply-all\":61730,\"reply-clock\":57913,\"reply\":62437,\"republican\":63326,\"restroom-simple\":57914,\"restroom\":63421,\"retweet\":61561,\"rhombus\":57915,\"ribbon\":62678,\"right-from-bracket\":62197,\"right-from-line\":62279,\"right-left-large\":58849,\"right-left\":62306,\"right-long-to-line\":58436,\"right-long\":62219,\"right-to-bracket\":62198,\"right-to-line\":62284,\"right\":62294,\"ring-diamond\":58795,\"ring\":63243,\"rings-wedding\":63515,\"road-barrier\":58722,\"road-bridge\":58723,\"road-circle-check\":58724,\"road-circle-exclamation\":58725,\"road-circle-xmark\":58726,\"road-lock\":58727,\"road-spikes\":58728,\"road\":61464,\"robot-astromech\":58066,\"robot\":62788,\"rocket-launch\":57383,\"rocket\":61749,\"roller-coaster\":58148,\"rotate-exclamation\":57916,\"rotate-left\":62186,\"rotate-reverse\":58929,\"rotate-right\":62201,\"rotate\":62193,\"route-highway\":63002,\"route-interstate\":63003,\"route\":62679,\"router\":63706,\"rss\":61598,\"ruble-sign\":61784,\"rug\":58729,\"rugby-ball\":58310,\"ruler-combined\":62790,\"ruler-horizontal\":62791,\"ruler-triangle\":63004,\"ruler-vertical\":62792,\"ruler\":62789,\"rupee-sign\":61782,\"rupiah-sign\":57917,\"rv\":63422,\"s\":83,\"sack-dollar\":63517,\"sack-xmark\":58730,\"sack\":63516,\"sailboat\":58437,\"salad\":63518,\"salt-shaker\":58438,\"sandwich\":63519,\"satellite-dish\":63424,\"satellite\":63423,\"sausage\":63520,\"saxophone-fire\":63707,\"saxophone\":63708,\"scale-balanced\":62030,\"scale-unbalanced-flip\":62742,\"scale-unbalanced\":62741,\"scalpel-line-dashed\":63006,\"scalpel\":63005,\"scanner-gun\":62600,\"scanner-image\":63731,\"scanner-keyboard\":62601,\"scanner-touchscreen\":62602,\"scarecrow\":63245,\"scarf\":63425,\"school-circle-check\":58731,\"school-circle-exclamation\":58732,\"school-circle-xmark\":58733,\"school-flag\":58734,\"school-lock\":58735,\"school\":62793,\"scissors\":61636,\"screen-users\":63037,\"screencast\":57918,\"screwdriver-wrench\":63449,\"screwdriver\":62794,\"scribble\":57919,\"scroll-old\":63247,\"scroll-torah\":63136,\"scroll\":63246,\"scrubber\":62200,\"scythe\":63248,\"sd-card\":63426,\"sd-cards\":57920,\"seal-exclamation\":57922,\"seal-question\":57923,\"seal\":57921,\"seat-airline\":57924,\"section\":58439,\"seedling\":62680,\"semicolon\":59,\"send-back\":63614,\"send-backward\":63615,\"sensor-cloud\":57388,\"sensor-fire\":57386,\"sensor-on\":57387,\"sensor-triangle-exclamation\":57385,\"sensor\":57384,\"server\":62003,\"shapes\":63007,\"share-all\":62311,\"share-from-square\":61773,\"share-nodes\":61920,\"share\":61540,\"sheep\":63249,\"sheet-plastic\":58737,\"shekel-sign\":61963,\"shelves-empty\":57926,\"shelves\":62592,\"shield-cat\":58738,\"shield-check\":62199,\"shield-cross\":63250,\"shield-dog\":58739,\"shield-exclamation\":57927,\"shield-halved\":62445,\"shield-heart\":58740,\"shield-keyhole\":57928,\"shield-minus\":57929,\"shield-plus\":57930,\"shield-quartered\":58741,\"shield-slash\":57931,\"shield-virus\":57452,\"shield-xmark\":57932,\"shield\":61746,\"ship\":61978,\"shirt-long-sleeve\":58311,\"shirt-running\":58312,\"shirt-tank-top\":58313,\"shirt\":62803,\"shish-kebab\":63521,\"shoe-prints\":62795,\"shop-lock\":58533,\"shop-slash\":57456,\"shop\":62799,\"shovel-snow\":63427,\"shovel\":63251,\"shower-down\":57933,\"shower\":62156,\"shredder\":63114,\"shrimp\":58440,\"shuffle\":61556,\"shutters\":58441,\"shuttle-space\":61847,\"shuttlecock\":62555,\"sickle\":63522,\"sidebar-flip\":57935,\"sidebar\":57934,\"sigma\":63115,\"sign-hanging\":62681,\"sign-post\":58916,\"sign-posts-wrench\":58918,\"sign-posts\":58917,\"signal-bars-fair\":63122,\"signal-bars-good\":63123,\"signal-bars-slash\":63124,\"signal-bars-weak\":63121,\"signal-bars\":63120,\"signal-fair\":63117,\"signal-good\":63118,\"signal-slash\":63125,\"signal-stream-slash\":57936,\"signal-stream\":63709,\"signal-strong\":63119,\"signal-weak\":63116,\"signal\":61458,\"signature-lock\":58314,\"signature-slash\":58315,\"signature\":62903,\"signs-post\":62071,\"sim-card\":63428,\"sim-cards\":57937,\"sink\":57453,\"siren-on\":57390,\"siren\":57389,\"sitemap\":61672,\"skeleton-ribs\":58827,\"skeleton\":63008,\"ski-boot-ski\":58317,\"ski-boot\":58316,\"skull-cow\":63710,\"skull-crossbones\":63252,\"skull\":62796,\"slash-back\":92,\"slash-forward\":47,\"slash\":63253,\"sleigh\":63436,\"slider\":57938,\"sliders-simple\":57939,\"sliders-up\":62449,\"sliders\":61918,\"slot-machine\":58318,\"smog\":63327,\"smoke\":63328,\"smoking\":62605,\"snake\":63254,\"snooze\":63616,\"snow-blowing\":63329,\"snowflake-droplets\":58817,\"snowflake\":62172,\"snowflakes\":63439,\"snowman-head\":63387,\"snowman\":63440,\"snowplow\":63442,\"soap\":57454,\"socks\":63126,\"soft-serve\":58368,\"solar-panel\":62906,\"solar-system\":57391,\"sort-down\":61661,\"sort-up\":61662,\"sort\":61660,\"spa\":62907,\"space-station-moon-construction\":57396,\"space-station-moon\":57395,\"spade\":62196,\"spaghetti-monster-flying\":63099,\"sparkle\":58838,\"sparkles\":63632,\"speaker\":63711,\"speakers\":63712,\"spell-check\":63633,\"spider-black-widow\":63256,\"spider-web\":63257,\"spider\":63255,\"spinner-scale\":58922,\"spinner-third\":62452,\"spinner\":61712,\"split\":57940,\"splotch\":62908,\"spoon\":62181,\"sportsball\":58443,\"spray-can-sparkles\":62928,\"spray-can\":62909,\"sprinkler-ceiling\":58444,\"sprinkler\":57397,\"square-0\":57941,\"square-1\":57942,\"square-2\":57943,\"square-3\":57944,\"square-4\":57945,\"square-5\":57946,\"square-6\":57947,\"square-7\":57948,\"square-8\":57949,\"square-9\":57950,\"square-a-lock\":58445,\"square-a\":57951,\"square-ampersand\":57952,\"square-arrow-down-left\":57953,\"square-arrow-down-right\":57954,\"square-arrow-down\":62265,\"square-arrow-left\":62266,\"square-arrow-right\":62267,\"square-arrow-up-left\":57955,\"square-arrow-up-right\":61772,\"square-arrow-up\":62268,\"square-b\":57956,\"square-binary\":59035,\"square-bolt\":57957,\"square-c\":57958,\"square-caret-down\":61776,\"square-caret-left\":61841,\"square-caret-right\":61778,\"square-caret-up\":61777,\"square-check\":61770,\"square-chevron-down\":62249,\"square-chevron-left\":62250,\"square-chevron-right\":62251,\"square-chevron-up\":62252,\"square-code\":57959,\"square-d\":57960,\"square-dashed-circle-plus\":58818,\"square-dashed\":57961,\"square-divide\":57962,\"square-dollar\":62185,\"square-down-left\":57963,\"square-down-right\":57964,\"square-down\":62288,\"square-e\":57965,\"square-ellipsis-vertical\":57967,\"square-ellipsis\":57966,\"square-envelope\":61849,\"square-exclamation\":62241,\"square-f\":57968,\"square-fragile\":62619,\"square-full\":62556,\"square-g\":57969,\"square-h\":61693,\"square-heart\":62664,\"square-i\":57970,\"square-info\":62223,\"square-j\":57971,\"square-k\":57972,\"square-kanban\":58504,\"square-l\":57973,\"square-left\":62289,\"square-list\":58505,\"square-m\":57974,\"square-minus\":61766,\"square-n\":57975,\"square-nfi\":58742,\"square-o\":57976,\"square-p\":57977,\"square-parking-slash\":62999,\"square-parking\":62784,\"square-pen\":61771,\"square-person-confined\":58743,\"square-phone-flip\":63611,\"square-phone-hangup\":57978,\"square-phone\":61592,\"square-plus\":61694,\"square-poll-horizontal\":63106,\"square-poll-vertical\":63105,\"square-q\":57979,\"square-quarters\":58446,\"square-question\":62205,\"square-quote\":58153,\"square-r\":57980,\"square-right\":62290,\"square-ring\":58447,\"square-root-variable\":63128,\"square-root\":63127,\"square-rss\":61763,\"square-s\":57981,\"square-share-nodes\":61921,\"square-sliders-vertical\":62450,\"square-sliders\":62448,\"square-small\":57982,\"square-star\":57983,\"square-t\":57984,\"square-terminal\":58154,\"square-this-way-up\":62623,\"square-u\":57985,\"square-up-left\":57986,\"square-up-right\":62304,\"square-up\":62291,\"square-user\":57987,\"square-v\":57988,\"square-virus\":58744,\"square-w\":57989,\"square-x\":57990,\"square-xmark\":62163,\"square-y\":57991,\"square-z\":57992,\"square\":61640,\"squid\":58448,\"squirrel\":63258,\"staff-snake\":58745,\"staff\":63259,\"stairs\":57993,\"stamp\":62911,\"standard-definition\":57994,\"stapler\":58799,\"star-and-crescent\":63129,\"star-christmas\":63444,\"star-exclamation\":62195,\"star-half-stroke\":62912,\"star-half\":61577,\"star-of-david\":63130,\"star-of-life\":63009,\"star-sharp-half-stroke\":57997,\"star-sharp-half\":57996,\"star-sharp\":57995,\"star-shooting\":57398,\"star\":61445,\"starfighter-twin-ion-engine-advanced\":57998,\"starfighter-twin-ion-engine\":57400,\"starfighter\":57399,\"stars\":63330,\"starship-freighter\":57402,\"starship\":57401,\"steak\":63524,\"steering-wheel\":63010,\"sterling-sign\":61780,\"stethoscope\":61681,\"stocking\":63445,\"stomach\":63011,\"stop\":61517,\"stopwatch-20\":57455,\"stopwatch\":62194,\"store-lock\":58534,\"store-slash\":57457,\"store\":62798,\"strawberry\":58155,\"street-view\":61981,\"stretcher\":63525,\"strikethrough\":61644,\"stroopwafel\":62801,\"subscript\":61740,\"subtitles-slash\":58896,\"subtitles\":58895,\"suitcase-medical\":61690,\"suitcase-rolling\":62913,\"suitcase\":61682,\"sun-bright\":57999,\"sun-cloud\":63331,\"sun-dust\":63332,\"sun-haze\":63333,\"sun-plant-wilt\":58746,\"sun\":61829,\"sunglasses\":63634,\"sunrise\":63334,\"sunset\":63335,\"superscript\":61739,\"sushi-roll\":58507,\"sushi\":58506,\"swap-arrows\":58890,\"swap\":58889,\"swatchbook\":62915,\"sword-laser-alt\":57404,\"sword-laser\":57403,\"sword\":63260,\"swords-laser\":57405,\"swords\":63261,\"symbols\":63598,\"synagogue\":63131,\"syringe\":62606,\"t-rex\":58921,\"t\":84,\"table-cells-column-lock\":59000,\"table-cells-column-unlock\":59024,\"table-cells-large\":61449,\"table-cells-lock\":59001,\"table-cells-row-lock\":59002,\"table-cells-row-unlock\":59025,\"table-cells-unlock\":59026,\"table-cells\":61450,\"table-columns\":61659,\"table-layout\":58000,\"table-list\":61451,\"table-picnic\":58157,\"table-pivot\":58001,\"table-rows\":58002,\"table-tennis-paddle-ball\":62557,\"table-tree\":58003,\"table\":61646,\"tablet-button\":61706,\"tablet-rugged\":62607,\"tablet-screen-button\":62458,\"tablet-screen\":62460,\"tablet\":62459,\"tablets\":62608,\"tachograph-digital\":62822,\"taco\":63526,\"tag\":61483,\"tags\":61484,\"tally-1\":58004,\"tally-2\":58005,\"tally-3\":58006,\"tally-4\":58007,\"tally\":63132,\"tamale\":58449,\"tank-water\":58450,\"tape\":62683,\"tarp-droplet\":58748,\"tarp\":58747,\"taxi-bus\":58008,\"taxi\":61882,\"teddy-bear\":58319,\"teeth-open\":63023,\"teeth\":63022,\"telescope\":57406,\"temperature-arrow-down\":57407,\"temperature-arrow-up\":57408,\"temperature-empty\":62155,\"temperature-full\":62151,\"temperature-half\":62153,\"temperature-high\":63337,\"temperature-list\":58009,\"temperature-low\":63339,\"temperature-quarter\":62154,\"temperature-snow\":63336,\"temperature-sun\":63338,\"temperature-three-quarters\":62152,\"tenge-sign\":63447,\"tennis-ball\":62558,\"tent-arrow-down-to-line\":58750,\"tent-arrow-left-right\":58751,\"tent-arrow-turn-left\":58752,\"tent-arrows-down\":58753,\"tent-double-peak\":58919,\"tent\":58749,\"tents\":58754,\"terminal\":61728,\"text-height\":61492,\"text-size\":63636,\"text-slash\":63613,\"text-width\":61493,\"text\":63635,\"thermometer\":62609,\"theta\":63134,\"thought-bubble\":58158,\"thumbs-down\":61797,\"thumbs-up\":61796,\"thumbtack-slash\":59023,\"thumbtack\":61581,\"tick\":58159,\"ticket-airline\":58010,\"ticket-perforated\":58942,\"ticket-simple\":62463,\"ticket\":61765,\"tickets-airline\":58011,\"tickets-perforated\":58943,\"tickets-simple\":58969,\"tickets\":58968,\"tilde\":126,\"timeline-arrow\":58013,\"timeline\":58012,\"timer\":58014,\"tire-flat\":63026,\"tire-pressure-warning\":63027,\"tire-rugged\":63028,\"tire\":63025,\"toggle-large-off\":58800,\"toggle-large-on\":58801,\"toggle-off\":61956,\"toggle-on\":61957,\"toilet-paper-blank-under\":58015,\"toilet-paper-blank\":63263,\"toilet-paper-check\":58802,\"toilet-paper-slash\":57458,\"toilet-paper-under-slash\":58017,\"toilet-paper-under\":58016,\"toilet-paper-xmark\":58803,\"toilet-paper\":63262,\"toilet-portable\":58755,\"toilet\":63448,\"toilets-portable\":58756,\"tomato\":58160,\"tombstone-blank\":63265,\"tombstone\":63264,\"toolbox\":62802,\"tooth\":62921,\"toothbrush\":63029,\"torii-gate\":63137,\"tornado\":63343,\"tower-broadcast\":62745,\"tower-cell\":58757,\"tower-control\":58018,\"tower-observation\":58758,\"tractor\":63266,\"trademark\":62044,\"traffic-cone\":63030,\"traffic-light-go\":63032,\"traffic-light-slow\":63033,\"traffic-light-stop\":63034,\"traffic-light\":63031,\"trailer\":57409,\"train-subway-tunnel\":58019,\"train-subway\":62009,\"train-track\":58451,\"train-tram\":58804,\"train-tunnel\":58452,\"train\":62008,\"transformer-bolt\":58020,\"transgender\":61989,\"transporter-1\":57411,\"transporter-2\":57412,\"transporter-3\":57413,\"transporter-4\":58021,\"transporter-5\":58022,\"transporter-6\":58023,\"transporter-7\":58024,\"transporter-empty\":57414,\"transporter\":57410,\"trash-arrow-up\":63529,\"trash-can-arrow-up\":63530,\"trash-can-check\":58025,\"trash-can-clock\":58026,\"trash-can-list\":58027,\"trash-can-plus\":58028,\"trash-can-slash\":58029,\"trash-can-undo\":63638,\"trash-can-xmark\":58030,\"trash-can\":62189,\"trash-check\":58031,\"trash-clock\":58032,\"trash-list\":58033,\"trash-plus\":58034,\"trash-slash\":58035,\"trash-undo\":63637,\"trash-xmark\":58036,\"trash\":61944,\"treasure-chest\":63267,\"tree-christmas\":63451,\"tree-city\":58759,\"tree-deciduous\":62464,\"tree-decorated\":63452,\"tree-large\":63453,\"tree-palm\":63531,\"tree\":61883,\"trees\":63268,\"triangle-exclamation\":61553,\"triangle-instrument\":63714,\"triangle-person-digging\":63581,\"triangle\":62188,\"tricycle-adult\":58820,\"tricycle\":58819,\"trillium\":58760,\"trophy-star\":62187,\"trophy\":61585,\"trowel-bricks\":58762,\"trowel\":58761,\"truck-arrow-right\":58763,\"truck-bolt\":58320,\"truck-clock\":62604,\"truck-container-empty\":58037,\"truck-container\":62684,\"truck-droplet\":58764,\"truck-fast\":62603,\"truck-field-un\":58766,\"truck-field\":58765,\"truck-fire\":58970,\"truck-flatbed\":58038,\"truck-front\":58039,\"truck-ladder\":58967,\"truck-medical\":61689,\"truck-monster\":63035,\"truck-moving\":62687,\"truck-pickup\":63036,\"truck-plane\":58767,\"truck-plow\":63454,\"truck-ramp-box\":62686,\"truck-ramp-couch\":62685,\"truck-ramp\":62688,\"truck-tow\":58040,\"truck-utensils\":58920,\"truck\":61649,\"trumpet\":63715,\"tty-answer\":58041,\"tty\":61924,\"tugrik-sign\":58042,\"turkey\":63269,\"turkish-lira-sign\":58043,\"turn-down-left\":58161,\"turn-down-right\":58453,\"turn-down\":62398,\"turn-left-down\":58935,\"turn-left-up\":58936,\"turn-left\":58934,\"turn-right\":58937,\"turn-up\":62399,\"turntable\":63716,\"turtle\":63270,\"tv-music\":63718,\"tv-retro\":62465,\"tv\":62060,\"typewriter\":63719,\"u\":85,\"ufo-beam\":57416,\"ufo\":57415,\"umbrella-beach\":62922,\"umbrella-simple\":58044,\"umbrella\":61673,\"underline\":61645,\"unicorn\":63271,\"uniform-martial-arts\":58321,\"union\":63138,\"universal-access\":62106,\"unlock-keyhole\":61758,\"unlock\":61596,\"up-down-left-right\":61618,\"up-down\":62264,\"up-from-bracket\":58768,\"up-from-dotted-line\":58454,\"up-from-line\":62278,\"up-left\":58045,\"up-long\":62220,\"up-right-and-down-left-from-center\":62500,\"up-right-from-square\":62301,\"up-right\":58046,\"up-to-bracket\":58990,\"up-to-dotted-line\":58455,\"up-to-line\":62285,\"up\":62295,\"upload\":61587,\"usb-drive\":63721,\"user-alien\":57418,\"user-astronaut\":62715,\"user-beard-bolt\":59017,\"user-bounty-hunter\":58047,\"user-check\":62716,\"user-chef\":58322,\"user-clock\":62717,\"user-cowboy\":63722,\"user-crown\":63140,\"user-doctor-hair-long\":58457,\"user-doctor-hair\":58456,\"user-doctor-message\":63534,\"user-doctor\":61680,\"user-gear\":62718,\"user-graduate\":62721,\"user-group-crown\":63141,\"user-group-simple\":58883,\"user-group\":62720,\"user-hair-buns\":58323,\"user-hair-long\":58459,\"user-hair-mullet\":58460,\"user-hair\":58458,\"user-headset\":63533,\"user-helmet-safety\":63532,\"user-hoodie\":59018,\"user-injured\":63272,\"user-large-slash\":62714,\"user-large\":62470,\"user-lock\":62722,\"user-magnifying-glass\":58821,\"user-minus\":62723,\"user-music\":63723,\"user-ninja\":62724,\"user-nurse-hair-long\":58462,\"user-nurse-hair\":58461,\"user-nurse\":63535,\"user-pen\":62719,\"user-pilot-tie\":58049,\"user-pilot\":58048,\"user-plus\":62004,\"user-police-tie\":58164,\"user-police\":58163,\"user-robot-xmarks\":58535,\"user-robot\":57419,\"user-secret\":61979,\"user-shakespeare\":58050,\"user-shield\":62725,\"user-slash\":62726,\"user-tag\":62727,\"user-tie-hair-long\":58464,\"user-tie-hair\":58463,\"user-tie\":62728,\"user-unlock\":57432,\"user-visor\":57420,\"user-vneck-hair-long\":58467,\"user-vneck-hair\":58466,\"user-vneck\":58465,\"user-xmark\":62005,\"user\":61447,\"users-between-lines\":58769,\"users-gear\":62729,\"users-line\":58770,\"users-medical\":63536,\"users-rays\":58771,\"users-rectangle\":58772,\"users-slash\":57459,\"users-viewfinder\":58773,\"users\":61632,\"utensils-slash\":58468,\"utensils\":62183,\"utility-pole-double\":58052,\"utility-pole\":58051,\"v\":86,\"vacuum-robot\":57422,\"vacuum\":57421,\"value-absolute\":63142,\"van-shuttle\":62902,\"vault\":58053,\"vector-circle\":58054,\"vector-polygon\":58055,\"vector-square\":62923,\"vent-damper\":58469,\"venus-double\":61990,\"venus-mars\":61992,\"venus\":61985,\"vest-patches\":57478,\"vest\":57477,\"vial-circle-check\":58774,\"vial-virus\":58775,\"vial\":62610,\"vials\":62611,\"video-arrow-down-left\":58056,\"video-arrow-up-right\":58057,\"video-plus\":62689,\"video-slash\":62690,\"video\":61501,\"vihara\":63143,\"violin\":63725,\"virus-covid-slash\":58537,\"virus-covid\":58536,\"virus-slash\":57461,\"virus\":57460,\"viruses\":57462,\"voicemail\":63639,\"volcano\":63344,\"volleyball\":62559,\"volume-high\":61480,\"volume-low\":61479,\"volume-off\":61478,\"volume-slash\":62178,\"volume-xmark\":63145,\"volume\":63144,\"vr-cardboard\":63273,\"w\":87,\"waffle\":58470,\"wagon-covered\":63726,\"walker\":63537,\"walkie-talkie\":63727,\"wallet\":62805,\"wand-magic-sparkles\":58058,\"wand-magic\":61648,\"wand-sparkles\":63275,\"wand\":63274,\"warehouse-full\":62613,\"warehouse\":62612,\"washing-machine\":63640,\"watch-apple\":58059,\"watch-calculator\":63728,\"watch-fitness\":63038,\"watch-smart\":58060,\"watch\":62177,\"water-arrow-down\":63348,\"water-arrow-up\":63349,\"water-ladder\":62917,\"water\":63347,\"watermelon-slice\":58167,\"wave-pulse\":62968,\"wave-sine\":63641,\"wave-square\":63550,\"wave-triangle\":63642,\"wave\":58971,\"waveform-lines\":63730,\"waveform\":63729,\"waves-sine\":58973,\"web-awesome\":59010,\"webhook\":58837,\"weight-hanging\":62925,\"weight-scale\":62614,\"whale\":63276,\"wheat-awn-circle-exclamation\":58776,\"wheat-awn-slash\":58168,\"wheat-awn\":58061,\"wheat-slash\":58169,\"wheat\":63277,\"wheelchair-move\":58062,\"wheelchair\":61843,\"whiskey-glass-ice\":63393,\"whiskey-glass\":63392,\"whistle\":62560,\"wifi-exclamation\":58063,\"wifi-fair\":63147,\"wifi-slash\":63148,\"wifi-weak\":63146,\"wifi\":61931,\"wind-turbine\":63643,\"wind-warning\":63350,\"wind\":63278,\"window-flip\":62479,\"window-frame-open\":57424,\"window-frame\":57423,\"window-maximize\":62160,\"window-minimize\":62161,\"window-restore\":62162,\"window\":62478,\"windsock\":63351,\"wine-bottle\":63279,\"wine-glass-crack\":62651,\"wine-glass-empty\":62926,\"wine-glass\":62691,\"won-sign\":61785,\"worm\":58777,\"wreath-laurel\":58834,\"wreath\":63458,\"wrench-simple\":58065,\"wrench\":61613,\"x-ray\":62615,\"x\":88,\"xmark-large\":58779,\"xmark-to-slot\":63345,\"xmark\":61453,\"xmarks-lines\":58778,\"y\":89,\"yen-sign\":61783,\"yin-yang\":63149,\"z\":90}"
  },
  {
    "path": "packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_duotone-regular.json",
    "content": "{\"0\":48,\"1\":49,\"2\":50,\"3\":51,\"4\":52,\"5\":53,\"6\":54,\"7\":55,\"8\":56,\"9\":57,\"00\":58471,\"360-degrees\":58076,\"a\":65,\"abacus\":63040,\"accent-grave\":96,\"acorn\":63150,\"address-book\":62137,\"address-card\":62139,\"air-conditioner\":63732,\"airplay\":57481,\"alarm-clock\":62286,\"alarm-exclamation\":63555,\"alarm-plus\":63556,\"alarm-snooze\":63557,\"album-circle-plus\":58508,\"album-circle-user\":58509,\"album-collection-circle-plus\":58510,\"album-collection-circle-user\":58511,\"album-collection\":63648,\"album\":63647,\"alicorn\":63152,\"alien-8bit\":63734,\"alien\":63733,\"align-center\":61495,\"align-justify\":61497,\"align-left\":61494,\"align-right\":61496,\"align-slash\":63558,\"alt\":57482,\"amp-guitar\":63649,\"ampersand\":38,\"anchor-circle-check\":58538,\"anchor-circle-exclamation\":58539,\"anchor-circle-xmark\":58540,\"anchor-lock\":58541,\"anchor\":61757,\"angel\":63353,\"angle-90\":57485,\"angle-down\":61703,\"angle-left\":61700,\"angle-right\":61701,\"angle-up\":61702,\"angle\":57484,\"angles-down\":61699,\"angles-left\":61696,\"angles-right\":61697,\"angles-up-down\":58893,\"angles-up\":61698,\"ankh\":63044,\"ant\":59008,\"apartment\":58472,\"aperture\":58079,\"apostrophe\":39,\"apple-core\":57487,\"apple-whole\":62929,\"archway\":62807,\"arrow-down-1-9\":61794,\"arrow-down-9-1\":63622,\"arrow-down-a-z\":61789,\"arrow-down-arrow-up\":63619,\"arrow-down-big-small\":63628,\"arrow-down-from-arc\":58900,\"arrow-down-from-bracket\":58983,\"arrow-down-from-dotted-line\":57488,\"arrow-down-from-line\":62277,\"arrow-down-left-and-arrow-up-right-to-center\":57490,\"arrow-down-left\":57489,\"arrow-down-long\":61813,\"arrow-down-right\":57491,\"arrow-down-short-wide\":63620,\"arrow-down-small-big\":63629,\"arrow-down-square-triangle\":63625,\"arrow-down-to-arc\":58542,\"arrow-down-to-bracket\":57492,\"arrow-down-to-dotted-line\":57493,\"arrow-down-to-line\":62269,\"arrow-down-to-square\":57494,\"arrow-down-triangle-square\":63624,\"arrow-down-up-across-line\":58543,\"arrow-down-up-lock\":58544,\"arrow-down-wide-short\":61792,\"arrow-down-z-a\":63617,\"arrow-down\":61539,\"arrow-left-from-arc\":58901,\"arrow-left-from-bracket\":58984,\"arrow-left-from-line\":62276,\"arrow-left-long-to-line\":58324,\"arrow-left-long\":61815,\"arrow-left-to-arc\":58902,\"arrow-left-to-bracket\":58985,\"arrow-left-to-line\":62270,\"arrow-left\":61536,\"arrow-pointer\":62021,\"arrow-progress\":58847,\"arrow-right-arrow-left\":61676,\"arrow-right-from-arc\":58545,\"arrow-right-from-bracket\":61579,\"arrow-right-from-line\":62275,\"arrow-right-long-to-line\":58325,\"arrow-right-long\":61816,\"arrow-right-to-arc\":58546,\"arrow-right-to-bracket\":61584,\"arrow-right-to-city\":58547,\"arrow-right-to-line\":62272,\"arrow-right\":61537,\"arrow-rotate-left\":61666,\"arrow-rotate-right\":61470,\"arrow-trend-down\":57495,\"arrow-trend-up\":57496,\"arrow-turn-down-left\":58081,\"arrow-turn-down-right\":58326,\"arrow-turn-down\":61769,\"arrow-turn-left-down\":58931,\"arrow-turn-left-up\":58932,\"arrow-turn-left\":58930,\"arrow-turn-right\":58933,\"arrow-turn-up\":61768,\"arrow-up-1-9\":61795,\"arrow-up-9-1\":63623,\"arrow-up-a-z\":61790,\"arrow-up-arrow-down\":57497,\"arrow-up-big-small\":63630,\"arrow-up-from-arc\":58548,\"arrow-up-from-bracket\":57498,\"arrow-up-from-dotted-line\":57499,\"arrow-up-from-ground-water\":58549,\"arrow-up-from-line\":62274,\"arrow-up-from-square\":57500,\"arrow-up-from-water-pump\":58550,\"arrow-up-left-from-circle\":57502,\"arrow-up-left\":57501,\"arrow-up-long\":61814,\"arrow-up-right-and-arrow-down-left-from-center\":57504,\"arrow-up-right-dots\":58551,\"arrow-up-right-from-square\":61582,\"arrow-up-right\":57503,\"arrow-up-short-wide\":63621,\"arrow-up-small-big\":63631,\"arrow-up-square-triangle\":63627,\"arrow-up-to-arc\":58903,\"arrow-up-to-bracket\":58986,\"arrow-up-to-dotted-line\":57505,\"arrow-up-to-line\":62273,\"arrow-up-triangle-square\":63626,\"arrow-up-wide-short\":61793,\"arrow-up-z-a\":63618,\"arrow-up\":61538,\"arrows-cross\":57506,\"arrows-down-to-line\":58552,\"arrows-down-to-people\":58553,\"arrows-from-dotted-line\":57507,\"arrows-from-line\":57508,\"arrows-left-right-to-line\":58554,\"arrows-left-right\":61566,\"arrows-maximize\":62237,\"arrows-minimize\":57509,\"arrows-repeat-1\":62310,\"arrows-repeat\":62308,\"arrows-retweet\":62305,\"arrows-rotate-reverse\":58928,\"arrows-rotate\":61473,\"arrows-spin\":58555,\"arrows-split-up-and-left\":58556,\"arrows-to-circle\":58557,\"arrows-to-dot\":58558,\"arrows-to-dotted-line\":57510,\"arrows-to-eye\":58559,\"arrows-to-line\":57511,\"arrows-turn-right\":58560,\"arrows-turn-to-dots\":58561,\"arrows-up-down-left-right\":61511,\"arrows-up-down\":61565,\"arrows-up-to-line\":58562,\"asterisk\":42,\"at\":64,\"atom-simple\":62931,\"atom\":62930,\"audio-description-slash\":57512,\"audio-description\":62110,\"austral-sign\":57513,\"avocado\":57514,\"award-simple\":57515,\"award\":62809,\"axe-battle\":63155,\"axe\":63154,\"b\":66,\"baby-carriage\":63357,\"baby\":63356,\"backpack\":62932,\"backward-fast\":61513,\"backward-step\":61512,\"backward\":61514,\"bacon\":63461,\"bacteria\":57433,\"bacterium\":57434,\"badge-check\":62262,\"badge-dollar\":63045,\"badge-percent\":63046,\"badge-sheriff\":63650,\"badge\":62261,\"badger-honey\":63156,\"badminton\":58170,\"bag-seedling\":58866,\"bag-shopping-minus\":58960,\"bag-shopping-plus\":58961,\"bag-shopping\":62096,\"bagel\":58327,\"bags-shopping\":63559,\"baguette\":58328,\"bahai\":63078,\"baht-sign\":57516,\"ball-pile\":63358,\"balloon\":58083,\"balloons\":58084,\"ballot-check\":63283,\"ballot\":63282,\"ban-bug\":63481,\"ban-parking\":62998,\"ban-smoking\":62797,\"ban\":61534,\"banana\":58085,\"bandage\":62562,\"bangladeshi-taka-sign\":58086,\"banjo\":63651,\"barcode-read\":62564,\"barcode-scan\":62565,\"barcode\":61482,\"bars-filter\":57517,\"bars-progress\":63528,\"bars-sort\":57518,\"bars-staggered\":62800,\"bars\":61641,\"baseball-bat-ball\":62514,\"baseball\":62515,\"basket-shopping-minus\":58962,\"basket-shopping-plus\":58963,\"basket-shopping-simple\":57519,\"basket-shopping\":62097,\"basketball-hoop\":62517,\"basketball\":62516,\"bat\":63157,\"bath\":62157,\"battery-bolt\":62326,\"battery-empty\":62020,\"battery-exclamation\":57520,\"battery-full\":62016,\"battery-half\":62018,\"battery-low\":57521,\"battery-quarter\":62019,\"battery-slash\":62327,\"battery-three-quarters\":62017,\"bed-bunk\":63736,\"bed-empty\":63737,\"bed-front\":63735,\"bed-pulse\":62599,\"bed\":62006,\"bee\":57522,\"beer-mug-empty\":61692,\"beer-mug\":57523,\"bell-concierge\":62818,\"bell-exclamation\":63560,\"bell-on\":63738,\"bell-plus\":63561,\"bell-ring\":58924,\"bell-school-slash\":62934,\"bell-school\":62933,\"bell-slash\":61942,\"bell\":61683,\"bells\":63359,\"bench-tree\":58087,\"bezier-curve\":62811,\"bicycle\":61958,\"billboard\":58829,\"bin-bottles-recycle\":58870,\"bin-bottles\":58869,\"bin-recycle\":58871,\"binary-circle-check\":58172,\"binary-lock\":58173,\"binary-slash\":58174,\"binary\":58171,\"binoculars\":61925,\"biohazard\":63360,\"bird\":58473,\"bitcoin-sign\":57524,\"blanket-fire\":58330,\"blanket\":62616,\"blender-phone\":63158,\"blender\":62743,\"blinds-open\":63740,\"blinds-raised\":63741,\"blinds\":63739,\"block-brick-fire\":58332,\"block-brick\":58331,\"block-question\":58333,\"block-quote\":57525,\"block\":58474,\"blog\":63361,\"blueberries\":58088,\"bluetooth\":62099,\"bold\":61490,\"bolt-auto\":57526,\"bolt-lightning\":57527,\"bolt-slash\":57528,\"bolt\":61671,\"bomb\":61922,\"bone-break\":62936,\"bone\":62935,\"bong\":62812,\"book-arrow-right\":57529,\"book-arrow-up\":57530,\"book-atlas\":62808,\"book-bible\":63047,\"book-blank\":62937,\"book-bookmark\":57531,\"book-circle-arrow-right\":57532,\"book-circle-arrow-up\":57533,\"book-copy\":57534,\"book-font\":57535,\"book-heart\":62617,\"book-journal-whills\":63082,\"book-medical\":63462,\"book-open-cover\":57536,\"book-open-reader\":62938,\"book-open\":62744,\"book-quran\":63111,\"book-section\":57537,\"book-skull\":63159,\"book-sparkles\":63160,\"book-tanakh\":63527,\"book-user\":63463,\"book\":61485,\"bookmark-slash\":57538,\"bookmark\":61486,\"books-medical\":63464,\"books\":62939,\"boombox\":63653,\"boot-heeled\":58175,\"boot\":63362,\"booth-curtain\":63284,\"border-all\":63564,\"border-bottom-right\":63572,\"border-bottom\":63565,\"border-center-h\":63644,\"border-center-v\":63645,\"border-inner\":63566,\"border-left\":63567,\"border-none\":63568,\"border-outer\":63569,\"border-right\":63570,\"border-top-left\":63571,\"border-top\":63573,\"bore-hole\":58563,\"bottle-baby\":58995,\"bottle-droplet\":58564,\"bottle-water\":58565,\"bow-arrow\":63161,\"bowl-chopsticks-noodles\":58090,\"bowl-chopsticks\":58089,\"bowl-food\":58566,\"bowl-hot\":63523,\"bowl-rice\":58091,\"bowl-scoop\":58334,\"bowl-scoops\":58335,\"bowl-soft-serve\":58475,\"bowl-spoon\":58336,\"bowling-ball-pin\":57539,\"bowling-ball\":62518,\"bowling-pins\":62519,\"box-archive\":61831,\"box-ballot\":63285,\"box-check\":62567,\"box-circle-check\":57540,\"box-dollar\":62624,\"box-heart\":62621,\"box-open-full\":62620,\"box-open\":62622,\"box-taped\":62618,\"box-tissue\":57435,\"box\":62566,\"boxes-packing\":58567,\"boxes-stacked\":62568,\"boxing-glove\":62520,\"bracket-curly-right\":125,\"bracket-curly\":123,\"bracket-round-right\":41,\"bracket-round\":40,\"bracket-square-right\":93,\"bracket-square\":91,\"brackets-curly\":63466,\"brackets-round\":57541,\"brackets-square\":63465,\"braille\":62113,\"brain-arrow-curved-right\":63095,\"brain-circuit\":57542,\"brain\":62940,\"brake-warning\":57543,\"brazilian-real-sign\":58476,\"bread-loaf\":63467,\"bread-slice-butter\":58337,\"bread-slice\":63468,\"bridge-circle-check\":58569,\"bridge-circle-exclamation\":58570,\"bridge-circle-xmark\":58571,\"bridge-lock\":58572,\"bridge-suspension\":58573,\"bridge-water\":58574,\"bridge\":58568,\"briefcase-arrow-right\":58098,\"briefcase-blank\":57544,\"briefcase-medical\":62569,\"briefcase\":61617,\"brightness-low\":57546,\"brightness\":57545,\"bring-forward\":63574,\"bring-front\":63575,\"broccoli\":58338,\"broom-ball\":62552,\"broom-wide\":58833,\"broom\":62746,\"browser\":62334,\"browsers\":57547,\"brush\":62813,\"bucket\":58575,\"bug-slash\":58512,\"bug\":61832,\"bugs\":58576,\"building-circle-arrow-right\":58577,\"building-circle-check\":58578,\"building-circle-exclamation\":58579,\"building-circle-xmark\":58580,\"building-columns\":61852,\"building-flag\":58581,\"building-lock\":58582,\"building-magnifying-glass\":58908,\"building-memo\":58910,\"building-ngo\":58583,\"building-shield\":58584,\"building-un\":58585,\"building-user\":58586,\"building-wheat\":58587,\"building\":61869,\"buildings\":57548,\"bulldozer\":58965,\"bullhorn\":61601,\"bullseye-arrow\":63048,\"bullseye-pointer\":63049,\"bullseye\":61760,\"buoy-mooring\":58806,\"buoy\":58805,\"burger-cheese\":63473,\"burger-fries\":57549,\"burger-glass\":57550,\"burger-lettuce\":58339,\"burger-soda\":63576,\"burger\":63493,\"burrito\":63469,\"burst\":58588,\"bus-school\":62941,\"bus-simple\":62814,\"bus\":61959,\"business-time\":63050,\"butter\":58340,\"c\":67,\"cabin\":58477,\"cabinet-filing\":63051,\"cable-car\":63450,\"cactus\":63655,\"caduceus\":59009,\"cake-candles\":61949,\"cake-slice\":58341,\"calculator-simple\":63052,\"calculator\":61932,\"calendar-arrow-down\":57552,\"calendar-arrow-up\":57553,\"calendar-check\":62068,\"calendar-circle-exclamation\":58478,\"calendar-circle-minus\":58479,\"calendar-circle-plus\":58480,\"calendar-circle-user\":58481,\"calendar-clock\":57554,\"calendar-day\":63363,\"calendar-days\":61555,\"calendar-exclamation\":62260,\"calendar-heart\":57555,\"calendar-image\":57556,\"calendar-lines-pen\":58482,\"calendar-lines\":57557,\"calendar-minus\":62066,\"calendar-pen\":62259,\"calendar-plus\":62065,\"calendar-range\":57558,\"calendar-star\":63286,\"calendar-users\":58850,\"calendar-week\":63364,\"calendar-xmark\":62067,\"calendar\":61747,\"calendars\":57559,\"camcorder\":63656,\"camera-cctv\":63660,\"camera-movie\":63657,\"camera-polaroid\":63658,\"camera-retro\":61571,\"camera-rotate\":57560,\"camera-security\":63742,\"camera-slash\":57561,\"camera-viewfinder\":57562,\"camera-web-slash\":63539,\"camera-web\":63538,\"camera\":61488,\"campfire\":63162,\"campground\":63163,\"can-food\":58342,\"candle-holder\":63164,\"candy-bar\":58344,\"candy-cane\":63366,\"candy-corn\":63165,\"candy\":58343,\"cannabis\":62815,\"cannon\":58946,\"capsules\":62571,\"car-battery\":62943,\"car-bolt\":58177,\"car-building\":63577,\"car-bump\":62944,\"car-burst\":62945,\"car-bus\":63578,\"car-circle-bolt\":58178,\"car-garage\":62946,\"car-mirrors\":58179,\"car-on\":58589,\"car-rear\":62942,\"car-side-bolt\":58180,\"car-side\":62948,\"car-tilt\":62949,\"car-tunnel\":58590,\"car-wash\":62950,\"car-wrench\":62947,\"car\":61881,\"caravan-simple\":57344,\"caravan\":63743,\"card-club\":58345,\"card-diamond\":58346,\"card-heart\":58347,\"card-spade\":58348,\"cards-blank\":58591,\"cards\":58349,\"caret-down\":61655,\"caret-left\":61657,\"caret-right\":61658,\"caret-up\":61656,\"carpool\":59036,\"carrot\":63367,\"cars\":63579,\"cart-arrow-down\":61976,\"cart-arrow-up\":58350,\"cart-circle-arrow-down\":58351,\"cart-circle-arrow-up\":58352,\"cart-circle-check\":58353,\"cart-circle-exclamation\":58354,\"cart-circle-plus\":58355,\"cart-circle-xmark\":58356,\"cart-flatbed-boxes\":62581,\"cart-flatbed-empty\":62582,\"cart-flatbed-suitcase\":62877,\"cart-flatbed\":62580,\"cart-minus\":57563,\"cart-plus\":61975,\"cart-shopping-fast\":57564,\"cart-shopping\":61562,\"cart-xmark\":57565,\"cash-register\":63368,\"cassette-betamax\":63652,\"cassette-tape\":63659,\"cassette-vhs\":63724,\"castle\":57566,\"cat-space\":57345,\"cat\":63166,\"cauldron\":63167,\"cedi-sign\":57567,\"cent-sign\":58357,\"certificate\":61603,\"chair-office\":63169,\"chair\":63168,\"chalkboard-user\":62748,\"chalkboard\":62747,\"champagne-glass\":63390,\"champagne-glasses\":63391,\"charging-station\":62951,\"chart-area\":61950,\"chart-bar\":61568,\"chart-bullet\":57569,\"chart-candlestick\":57570,\"chart-column\":57571,\"chart-diagram\":59029,\"chart-fft\":59038,\"chart-gantt\":57572,\"chart-kanban\":58959,\"chart-line-down\":63053,\"chart-line-up-down\":58839,\"chart-line-up\":57573,\"chart-line\":61953,\"chart-mixed-up-circle-currency\":58840,\"chart-mixed-up-circle-dollar\":58841,\"chart-mixed\":63043,\"chart-network\":63370,\"chart-pie-simple-circle-currency\":58884,\"chart-pie-simple-circle-dollar\":58885,\"chart-pie-simple\":63054,\"chart-pie\":61952,\"chart-pyramid\":57574,\"chart-radar\":57575,\"chart-scatter-3d\":57576,\"chart-scatter-bubble\":57577,\"chart-scatter\":63470,\"chart-simple-horizontal\":58484,\"chart-simple\":58483,\"chart-sine\":59037,\"chart-tree-map\":57578,\"chart-user\":63139,\"chart-waterfall\":57579,\"check-double\":62816,\"check-to-slot\":63346,\"check\":61452,\"cheese-swiss\":63472,\"cheese\":63471,\"cherries\":57580,\"chess-bishop-piece\":62523,\"chess-bishop\":62522,\"chess-board\":62524,\"chess-clock-flip\":62526,\"chess-clock\":62525,\"chess-king-piece\":62528,\"chess-king\":62527,\"chess-knight-piece\":62530,\"chess-knight\":62529,\"chess-pawn-piece\":62532,\"chess-pawn\":62531,\"chess-queen-piece\":62534,\"chess-queen\":62533,\"chess-rook-piece\":62536,\"chess-rook\":62535,\"chess\":62521,\"chestnut\":58358,\"chevron-down\":61560,\"chevron-left\":61523,\"chevron-right\":61524,\"chevron-up\":61559,\"chevrons-down\":62242,\"chevrons-left\":62243,\"chevrons-right\":62244,\"chevrons-up\":62245,\"chf-sign\":58882,\"child-combatant\":58592,\"child-dress\":58780,\"child-reaching\":58781,\"child\":61870,\"children\":58593,\"chimney\":63371,\"chopsticks\":58359,\"church\":62749,\"circle-0\":57581,\"circle-1\":57582,\"circle-2\":57583,\"circle-3\":57584,\"circle-4\":57585,\"circle-5\":57586,\"circle-6\":57587,\"circle-7\":57588,\"circle-8\":57589,\"circle-9\":57590,\"circle-a\":57591,\"circle-ampersand\":57592,\"circle-arrow-down-left\":57593,\"circle-arrow-down-right\":57594,\"circle-arrow-down\":61611,\"circle-arrow-left\":61608,\"circle-arrow-right\":61609,\"circle-arrow-up-left\":57595,\"circle-arrow-up-right\":57596,\"circle-arrow-up\":61610,\"circle-b\":57597,\"circle-bolt\":57598,\"circle-book-open\":57599,\"circle-bookmark\":57600,\"circle-c\":57601,\"circle-calendar\":57602,\"circle-camera\":57603,\"circle-caret-down\":62253,\"circle-caret-left\":62254,\"circle-caret-right\":62256,\"circle-caret-up\":62257,\"circle-check\":61528,\"circle-chevron-down\":61754,\"circle-chevron-left\":61751,\"circle-chevron-right\":61752,\"circle-chevron-up\":61753,\"circle-d\":57604,\"circle-dashed\":57605,\"circle-divide\":57606,\"circle-dollar-to-slot\":62649,\"circle-dollar\":62184,\"circle-dot\":61842,\"circle-down-left\":57607,\"circle-down-right\":57608,\"circle-down\":62296,\"circle-e\":57609,\"circle-ellipsis-vertical\":57611,\"circle-ellipsis\":57610,\"circle-envelope\":57612,\"circle-euro\":58830,\"circle-exclamation-check\":57613,\"circle-exclamation\":61546,\"circle-f\":57614,\"circle-g\":57615,\"circle-gf\":59007,\"circle-h\":62590,\"circle-half-stroke\":61506,\"circle-half\":57616,\"circle-heart\":62663,\"circle-i\":57617,\"circle-info\":61530,\"circle-j\":57618,\"circle-k\":57619,\"circle-l\":57620,\"circle-left\":62297,\"circle-location-arrow\":62978,\"circle-m\":57621,\"circle-microphone-lines\":57623,\"circle-microphone\":57622,\"circle-minus\":61526,\"circle-n\":57624,\"circle-nodes\":58594,\"circle-notch\":61902,\"circle-o\":57625,\"circle-p\":57626,\"circle-parking\":62997,\"circle-pause\":62091,\"circle-phone-flip\":57628,\"circle-phone-hangup\":57629,\"circle-phone\":57627,\"circle-play\":61764,\"circle-plus\":61525,\"circle-q\":57630,\"circle-quarter-stroke\":58835,\"circle-quarter\":57631,\"circle-quarters\":58360,\"circle-question\":61529,\"circle-r\":57632,\"circle-radiation\":63418,\"circle-right\":62298,\"circle-s\":57633,\"circle-small\":57634,\"circle-sort-down\":57393,\"circle-sort-up\":57394,\"circle-sort\":57392,\"circle-star\":57635,\"circle-sterling\":58831,\"circle-stop\":62093,\"circle-t\":57636,\"circle-three-quarters-stroke\":58836,\"circle-three-quarters\":57637,\"circle-trash\":57638,\"circle-u\":57639,\"circle-up-left\":57640,\"circle-up-right\":57641,\"circle-up\":62299,\"circle-user\":62141,\"circle-v\":57642,\"circle-video\":57643,\"circle-w\":57644,\"circle-waveform-lines\":57645,\"circle-wifi-circle-wifi\":59006,\"circle-wifi\":59005,\"circle-x\":57646,\"circle-xmark\":61527,\"circle-y\":57647,\"circle-yen\":58832,\"circle-z\":57648,\"circle\":61713,\"circles-overlap-3\":59041,\"circles-overlap\":58880,\"citrus-slice\":58101,\"citrus\":58100,\"city\":63055,\"clapperboard-play\":57650,\"clapperboard\":57649,\"clarinet\":63661,\"claw-marks\":63170,\"clipboard-check\":62572,\"clipboard-list-check\":63287,\"clipboard-list\":62573,\"clipboard-medical\":57651,\"clipboard-prescription\":62952,\"clipboard-question\":58595,\"clipboard-user\":63475,\"clipboard\":62248,\"clock-desk\":57652,\"clock-eight-thirty\":58182,\"clock-eight\":58181,\"clock-eleven-thirty\":58184,\"clock-eleven\":58183,\"clock-five-thirty\":58186,\"clock-five\":58185,\"clock-four-thirty\":58187,\"clock-nine-thirty\":58189,\"clock-nine\":58188,\"clock-one-thirty\":58191,\"clock-one\":58190,\"clock-rotate-left\":61914,\"clock-seven-thirty\":58193,\"clock-seven\":58192,\"clock-six-thirty\":58195,\"clock-six\":58194,\"clock-ten-thirty\":58197,\"clock-ten\":58196,\"clock-three-thirty\":58199,\"clock-three\":58198,\"clock-twelve-thirty\":58201,\"clock-twelve\":58200,\"clock-two-thirty\":58203,\"clock-two\":58202,\"clock\":61463,\"clone\":62029,\"closed-captioning-slash\":57653,\"closed-captioning\":61962,\"clothes-hanger\":57654,\"cloud-arrow-down\":61677,\"cloud-arrow-up\":61678,\"cloud-binary\":58881,\"cloud-bolt-moon\":63341,\"cloud-bolt-sun\":63342,\"cloud-bolt\":63340,\"cloud-check\":58204,\"cloud-drizzle\":63288,\"cloud-exclamation\":58513,\"cloud-fog\":63310,\"cloud-hail-mixed\":63290,\"cloud-hail\":63289,\"cloud-meatball\":63291,\"cloud-minus\":58205,\"cloud-moon-rain\":63292,\"cloud-moon\":63171,\"cloud-music\":63662,\"cloud-plus\":58206,\"cloud-question\":58514,\"cloud-rain\":63293,\"cloud-rainbow\":63294,\"cloud-showers-heavy\":63296,\"cloud-showers-water\":58596,\"cloud-showers\":63295,\"cloud-slash\":57655,\"cloud-sleet\":63297,\"cloud-snow\":63298,\"cloud-sun-rain\":63299,\"cloud-sun\":63172,\"cloud-word\":57656,\"cloud-xmark\":58207,\"cloud\":61634,\"clouds-moon\":63301,\"clouds-sun\":63302,\"clouds\":63300,\"clover\":57657,\"club\":62247,\"coconut\":58102,\"code-branch\":61734,\"code-commit\":62342,\"code-compare\":57658,\"code-fork\":57659,\"code-merge\":62343,\"code-pull-request-closed\":58361,\"code-pull-request-draft\":58362,\"code-pull-request\":57660,\"code-simple\":57661,\"code\":61729,\"coffee-bean\":57662,\"coffee-beans\":57663,\"coffee-pot\":57346,\"coffin-cross\":57425,\"coffin\":63174,\"coin-blank\":58363,\"coin-front\":58364,\"coin-vertical\":58365,\"coin\":63580,\"coins\":62750,\"colon-sign\":57664,\"colon\":58,\"columns-3\":58209,\"comet\":57347,\"comma\":44,\"command\":57666,\"comment-arrow-down\":57667,\"comment-arrow-up-right\":57669,\"comment-arrow-up\":57668,\"comment-captions\":57670,\"comment-check\":62636,\"comment-code\":57671,\"comment-dollar\":63057,\"comment-dots\":62637,\"comment-exclamation\":62639,\"comment-heart\":58824,\"comment-image\":57672,\"comment-lines\":62640,\"comment-medical\":63477,\"comment-middle-top\":57674,\"comment-middle\":57673,\"comment-minus\":62641,\"comment-music\":63664,\"comment-nodes\":59030,\"comment-pen\":62638,\"comment-plus\":62642,\"comment-question\":57675,\"comment-quote\":57676,\"comment-slash\":62643,\"comment-smile\":62644,\"comment-sms\":63437,\"comment-text\":57677,\"comment-xmark\":62645,\"comment\":61557,\"comments-dollar\":63059,\"comments-question-check\":57679,\"comments-question\":57678,\"comments\":61574,\"compact-disc\":62751,\"compass-drafting\":62824,\"compass-slash\":62953,\"compass\":61774,\"compress-wide\":62246,\"compress\":61542,\"computer-classic\":63665,\"computer-mouse-scrollwheel\":63693,\"computer-mouse\":63692,\"computer-speaker\":63666,\"computer\":58597,\"container-storage\":62647,\"conveyor-belt-arm\":58872,\"conveyor-belt-boxes\":62575,\"conveyor-belt-empty\":57680,\"conveyor-belt\":62574,\"cookie-bite\":62820,\"cookie\":62819,\"copy\":61637,\"copyright\":61945,\"corn\":63175,\"corner\":58366,\"couch\":62648,\"court-sport\":58947,\"cow\":63176,\"cowbell-circle-plus\":63668,\"cowbell\":63667,\"crab\":58367,\"crate-apple\":63153,\"crate-empty\":57681,\"credit-card-blank\":62345,\"credit-card-front\":62346,\"credit-card\":61597,\"cricket-bat-ball\":62537,\"croissant\":63478,\"crop-simple\":62821,\"crop\":61733,\"cross\":63060,\"crosshairs-simple\":58783,\"crosshairs\":61531,\"crow\":62752,\"crown\":62753,\"crutch\":63479,\"crutches\":63480,\"cruzeiro-sign\":57682,\"crystal-ball\":58210,\"cube\":61874,\"cubes-stacked\":58598,\"cubes\":61875,\"cucumber\":58369,\"cup-straw-swoosh\":58212,\"cup-straw\":58211,\"cup-togo\":63173,\"cupcake\":58370,\"curling-stone\":62538,\"custard\":58371,\"d\":68,\"dagger\":63179,\"dash\":58372,\"database\":61888,\"deer-rudolph\":63375,\"deer\":63374,\"delete-left\":62810,\"delete-right\":57684,\"democrat\":63303,\"desktop-arrow-down\":57685,\"desktop\":62352,\"dharmachakra\":63061,\"diagram-cells\":58485,\"diagram-lean-canvas\":57686,\"diagram-nested\":57687,\"diagram-next\":58486,\"diagram-predecessor\":58487,\"diagram-previous\":58488,\"diagram-project\":62786,\"diagram-sankey\":57688,\"diagram-subtask\":58489,\"diagram-successor\":58490,\"diagram-venn\":57690,\"dial-high\":57692,\"dial-low\":57693,\"dial-max\":57694,\"dial-med-low\":57696,\"dial-med\":57695,\"dial-min\":57697,\"dial-off\":57698,\"dial\":57691,\"diamond-exclamation\":58373,\"diamond-half-stroke\":58808,\"diamond-half\":58807,\"diamond-turn-right\":62955,\"diamond\":61977,\"diamonds-4\":59019,\"dice-d10\":63181,\"dice-d12\":63182,\"dice-d20\":63183,\"dice-d4\":63184,\"dice-d6\":63185,\"dice-d8\":63186,\"dice-five\":62755,\"dice-four\":62756,\"dice-one\":62757,\"dice-six\":62758,\"dice-three\":62759,\"dice-two\":62760,\"dice\":62754,\"dinosaur\":58878,\"diploma\":62954,\"disc-drive\":63669,\"disease\":63482,\"display-arrow-down\":57700,\"display-chart-up-circle-currency\":58853,\"display-chart-up-circle-dollar\":58854,\"display-chart-up\":58851,\"display-code\":57701,\"display-medical\":57702,\"display-slash\":58106,\"display\":57699,\"distribute-spacing-horizontal\":58213,\"distribute-spacing-vertical\":58214,\"ditto\":34,\"divide\":62761,\"dna\":62577,\"do-not-enter\":62956,\"dog-leashed\":63188,\"dog\":63187,\"dollar-sign\":36,\"dolly-empty\":62579,\"dolly\":62578,\"dolphin\":57704,\"dong-sign\":57705,\"donut\":58374,\"door-closed\":62762,\"door-open\":62763,\"dove\":62650,\"down-from-bracket\":58987,\"down-from-dotted-line\":58375,\"down-from-line\":62281,\"down-left-and-up-right-to-center\":62498,\"down-left\":57706,\"down-long\":62217,\"down-right\":57707,\"down-to-bracket\":58599,\"down-to-dotted-line\":58376,\"down-to-line\":62282,\"down\":62292,\"download\":61465,\"dragon\":63189,\"draw-circle\":62957,\"draw-polygon\":62958,\"draw-square\":62959,\"dreidel\":63378,\"drone-front\":63584,\"drone\":63583,\"droplet-degree\":63304,\"droplet-percent\":63312,\"droplet-slash\":62919,\"droplet\":61507,\"drum-steelpan\":62826,\"drum\":62825,\"drumstick-bite\":63191,\"drumstick\":63190,\"dryer-heat\":63586,\"dryer\":63585,\"duck\":63192,\"dumbbell\":62539,\"dumpster-fire\":63380,\"dumpster\":63379,\"dungeon\":63193,\"e\":69,\"ear-deaf\":62116,\"ear-listen\":62114,\"ear-muffs\":63381,\"ear\":62960,\"earth-africa\":62844,\"earth-americas\":62845,\"earth-asia\":62846,\"earth-europe\":63394,\"earth-oceania\":58491,\"eclipse\":63305,\"egg-fried\":63484,\"egg\":63483,\"eggplant\":57708,\"eject\":61522,\"elephant\":63194,\"elevator\":57709,\"ellipsis-stroke-vertical\":62364,\"ellipsis-stroke\":62363,\"ellipsis-vertical\":61762,\"ellipsis\":61761,\"empty-set\":63062,\"engine-warning\":62962,\"engine\":57710,\"envelope-circle-check\":58600,\"envelope-dot\":57711,\"envelope-open-dollar\":63063,\"envelope-open-text\":63064,\"envelope-open\":62134,\"envelope\":61664,\"envelopes-bulk\":63092,\"envelopes\":57712,\"equals\":61,\"eraser\":61741,\"escalator\":57713,\"ethernet\":63382,\"euro-sign\":61779,\"excavator\":58966,\"exclamation\":33,\"expand-wide\":62240,\"expand\":61541,\"explosion\":58601,\"eye-dropper-full\":57714,\"eye-dropper-half\":57715,\"eye-dropper\":61947,\"eye-evil\":63195,\"eye-low-vision\":62120,\"eye-slash\":61552,\"eye\":61550,\"eyes\":58215,\"f\":70,\"face-angry-horns\":58216,\"face-angry\":62806,\"face-anguished\":58217,\"face-anxious-sweat\":58218,\"face-astonished\":58219,\"face-awesome\":58377,\"face-beam-hand-over-mouth\":58492,\"face-clouds\":58493,\"face-confounded\":58220,\"face-confused\":58221,\"face-cowboy-hat\":58222,\"face-diagonal-mouth\":58494,\"face-disappointed\":58223,\"face-disguise\":58224,\"face-dizzy\":62823,\"face-dotted\":58495,\"face-downcast-sweat\":58225,\"face-drooling\":58226,\"face-exhaling\":58496,\"face-explode\":58110,\"face-expressionless\":58227,\"face-eyes-xmarks\":58228,\"face-fearful\":58229,\"face-flushed\":62841,\"face-frown-open\":62842,\"face-frown-slight\":58230,\"face-frown\":61721,\"face-glasses\":58231,\"face-grimace\":62847,\"face-grin-beam-sweat\":62851,\"face-grin-beam\":62850,\"face-grin-hearts\":62852,\"face-grin-squint-tears\":62854,\"face-grin-squint\":62853,\"face-grin-stars\":62855,\"face-grin-tears\":62856,\"face-grin-tongue-squint\":62858,\"face-grin-tongue-wink\":62859,\"face-grin-tongue\":62857,\"face-grin-wide\":62849,\"face-grin-wink\":62860,\"face-grin\":62848,\"face-hand-over-mouth\":58232,\"face-hand-peeking\":58497,\"face-hand-yawn\":58233,\"face-head-bandage\":58234,\"face-holding-back-tears\":58498,\"face-hushed\":58235,\"face-icicles\":58236,\"face-kiss-beam\":62871,\"face-kiss-closed-eyes\":58237,\"face-kiss-wink-heart\":62872,\"face-kiss\":62870,\"face-laugh-beam\":62874,\"face-laugh-squint\":62875,\"face-laugh-wink\":62876,\"face-laugh\":62873,\"face-lying\":58238,\"face-mask\":58239,\"face-meh-blank\":62884,\"face-meh\":61722,\"face-melting\":58499,\"face-monocle\":58240,\"face-nauseated\":58241,\"face-nose-steam\":58242,\"face-party\":58243,\"face-pensive\":58244,\"face-persevering\":58245,\"face-pleading\":58246,\"face-pouting\":58247,\"face-raised-eyebrow\":58248,\"face-relieved\":58249,\"face-rolling-eyes\":62885,\"face-sad-cry\":62899,\"face-sad-sweat\":58250,\"face-sad-tear\":62900,\"face-saluting\":58500,\"face-scream\":58251,\"face-shush\":58252,\"face-sleeping\":58253,\"face-sleepy\":58254,\"face-smile-beam\":62904,\"face-smile-halo\":58255,\"face-smile-hearts\":58256,\"face-smile-horns\":58257,\"face-smile-plus\":62905,\"face-smile-relaxed\":58258,\"face-smile-tear\":58259,\"face-smile-tongue\":58260,\"face-smile-upside-down\":58261,\"face-smile-wink\":62682,\"face-smile\":61720,\"face-smiling-hands\":58262,\"face-smirking\":58263,\"face-spiral-eyes\":58501,\"face-sunglasses\":58264,\"face-surprise\":62914,\"face-swear\":58265,\"face-thermometer\":58266,\"face-thinking\":58267,\"face-tired\":62920,\"face-tissue\":58268,\"face-tongue-money\":58269,\"face-tongue-sweat\":58270,\"face-unamused\":58271,\"face-viewfinder\":58111,\"face-vomit\":58272,\"face-weary\":58273,\"face-woozy\":58274,\"face-worried\":58275,\"face-zany\":58276,\"face-zipper\":58277,\"falafel\":58378,\"family-dress\":58113,\"family-pants\":58114,\"family\":58112,\"fan-table\":57348,\"fan\":63587,\"farm\":63588,\"faucet-drip\":57350,\"faucet\":57349,\"fax\":61868,\"feather-pointed\":62827,\"feather\":62765,\"fence\":58115,\"ferris-wheel\":57716,\"ferry\":58602,\"field-hockey-stick-ball\":62540,\"file-arrow-down\":62829,\"file-arrow-up\":62836,\"file-audio\":61895,\"file-binary\":57717,\"file-cad\":58994,\"file-certificate\":62963,\"file-chart-column\":63065,\"file-chart-pie\":63066,\"file-check\":62230,\"file-circle-check\":58784,\"file-circle-exclamation\":58603,\"file-circle-info\":58515,\"file-circle-minus\":58605,\"file-circle-plus\":58516,\"file-circle-question\":58607,\"file-circle-xmark\":58785,\"file-code\":61897,\"file-contract\":62828,\"file-csv\":63197,\"file-dashed-line\":63607,\"file-doc\":58861,\"file-eps\":58948,\"file-excel\":61891,\"file-exclamation\":62234,\"file-export\":62830,\"file-fragment\":59031,\"file-gif\":58949,\"file-half-dashed\":59032,\"file-heart\":57718,\"file-image\":61893,\"file-import\":62831,\"file-invoice-dollar\":62833,\"file-invoice\":62832,\"file-jpg\":58950,\"file-lines\":61788,\"file-lock\":58278,\"file-magnifying-glass\":63589,\"file-medical\":62583,\"file-minus\":62232,\"file-mov\":58951,\"file-mp3\":58952,\"file-mp4\":58953,\"file-music\":63670,\"file-pdf\":61889,\"file-pen\":62236,\"file-plus-minus\":57719,\"file-plus\":62233,\"file-png\":58982,\"file-powerpoint\":61892,\"file-ppt\":58954,\"file-prescription\":62834,\"file-shield\":58608,\"file-signature\":62835,\"file-slash\":58279,\"file-spreadsheet\":63067,\"file-svg\":58955,\"file-user\":63068,\"file-vector\":58956,\"file-video\":61896,\"file-waveform\":62584,\"file-word\":61890,\"file-xls\":58957,\"file-xmark\":62231,\"file-xml\":58964,\"file-zip\":58862,\"file-zipper\":61894,\"file\":61787,\"files-medical\":63485,\"files\":57720,\"fill-drip\":62838,\"fill\":62837,\"film-canister\":63671,\"film-simple\":62368,\"film-slash\":57721,\"film\":61448,\"films\":57722,\"filter-circle-dollar\":63074,\"filter-circle-xmark\":57723,\"filter-list\":57724,\"filter-slash\":57725,\"filter\":61616,\"filters\":57726,\"fingerprint\":62839,\"fire-burner\":58609,\"fire-extinguisher\":61748,\"fire-flame-curved\":63460,\"fire-flame-simple\":62570,\"fire-flame\":63199,\"fire-hydrant\":57727,\"fire-smoke\":63307,\"fire\":61549,\"fireplace\":63386,\"fish-bones\":58116,\"fish-cooked\":63486,\"fish-fins\":58610,\"fish\":62840,\"fishing-rod\":58280,\"flag-checkered\":61726,\"flag-pennant\":62550,\"flag-swallowtail\":63308,\"flag-usa\":63309,\"flag\":61476,\"flashlight\":63672,\"flask-gear\":58865,\"flask-round-poison\":63200,\"flask-round-potion\":63201,\"flask-vial\":58611,\"flask\":61635,\"flatbread-stuffed\":58380,\"flatbread\":58379,\"floppy-disk-circle-arrow-right\":57728,\"floppy-disk-circle-xmark\":57729,\"floppy-disk-pen\":57730,\"floppy-disk\":61639,\"floppy-disks\":57731,\"florin-sign\":57732,\"flower-daffodil\":63488,\"flower-tulip\":63489,\"flower\":63487,\"flute\":63673,\"flux-capacitor\":63674,\"flying-disc\":58281,\"folder-arrow-down\":57427,\"folder-arrow-up\":57428,\"folder-bookmark\":57734,\"folder-check\":58958,\"folder-closed\":57733,\"folder-gear\":57735,\"folder-grid\":57736,\"folder-heart\":57737,\"folder-image\":57738,\"folder-magnifying-glass\":57739,\"folder-medical\":57740,\"folder-minus\":63069,\"folder-music\":57741,\"folder-open\":61564,\"folder-plus\":63070,\"folder-tree\":63490,\"folder-user\":57742,\"folder-xmark\":63071,\"folder\":61563,\"folders\":63072,\"fondue-pot\":58381,\"font-awesome\":62132,\"font-case\":63590,\"font\":61489,\"football-helmet\":62543,\"football\":62542,\"fork-knife\":62182,\"fork\":62179,\"forklift\":62586,\"fort\":58502,\"forward-fast\":61520,\"forward-step\":61521,\"forward\":61518,\"frame\":58517,\"franc-sign\":57743,\"french-fries\":63491,\"frog\":62766,\"function\":63073,\"futbol\":61923,\"g\":71,\"galaxy\":57352,\"gallery-thumbnails\":58282,\"game-board-simple\":63592,\"game-board\":63591,\"game-console-handheld-crank\":58809,\"game-console-handheld\":63675,\"gamepad-modern\":58786,\"gamepad\":61723,\"garage-car\":57354,\"garage-open\":57355,\"garage\":57353,\"garlic\":58382,\"gas-pump-slash\":62964,\"gas-pump\":62767,\"gauge-circle-bolt\":58518,\"gauge-circle-minus\":58519,\"gauge-circle-plus\":58520,\"gauge-high\":63013,\"gauge-low\":63015,\"gauge-max\":63014,\"gauge-min\":63016,\"gauge-simple-high\":63018,\"gauge-simple-low\":63020,\"gauge-simple-max\":63019,\"gauge-simple-min\":63021,\"gauge-simple\":63017,\"gauge\":63012,\"gavel\":61667,\"gear-code\":58856,\"gear-complex-code\":58859,\"gear-complex\":58857,\"gear\":61459,\"gears\":61573,\"gem\":62373,\"genderless\":61997,\"ghost\":63202,\"gif\":57744,\"gift-card\":63075,\"gift\":61547,\"gifts\":63388,\"gingerbread-man\":63389,\"glass-citrus\":63593,\"glass-empty\":57745,\"glass-half\":57746,\"glass-water-droplet\":58613,\"glass-water\":58612,\"glass\":63492,\"glasses-round\":62965,\"glasses\":62768,\"globe-pointer\":58894,\"globe-snow\":63395,\"globe-stand\":62966,\"globe-wifi\":59013,\"globe\":61612,\"goal-net\":58283,\"golf-ball-tee\":62544,\"golf-club\":62545,\"golf-flag-hole\":58284,\"gopuram\":63076,\"graduation-cap\":61853,\"gramophone\":63677,\"grapes\":58118,\"grate-droplet\":57748,\"grate\":57747,\"greater-than-equal\":62770,\"greater-than\":62,\"grid-2-plus\":57751,\"grid-2\":57750,\"grid-4\":57752,\"grid-5\":57753,\"grid-dividers\":58285,\"grid-horizontal\":58119,\"grid-round-2-plus\":58844,\"grid-round-2\":58843,\"grid-round-4\":58845,\"grid-round-5\":58846,\"grid-round\":58842,\"grid\":57749,\"grill-fire\":58788,\"grill-hot\":58789,\"grill\":58787,\"grip-dots-vertical\":58385,\"grip-dots\":58384,\"grip-lines-vertical\":63397,\"grip-lines\":63396,\"grip-vertical\":62862,\"grip\":62861,\"group-arrows-rotate\":58614,\"guarani-sign\":57754,\"guitar-electric\":63678,\"guitar\":63398,\"guitars\":63679,\"gun-slash\":57756,\"gun-squirt\":57757,\"gun\":57755,\"h\":72,\"h1\":62227,\"h2\":62228,\"h3\":62229,\"h4\":63594,\"h5\":58386,\"h6\":58387,\"hammer-brush\":58912,\"hammer-crash\":58388,\"hammer-war\":63204,\"hammer\":63203,\"hamsa\":63077,\"hand-back-fist\":62037,\"hand-back-point-down\":57758,\"hand-back-point-left\":57759,\"hand-back-point-ribbon\":57760,\"hand-back-point-right\":57761,\"hand-back-point-up\":57762,\"hand-dots\":62561,\"hand-fingers-crossed\":57763,\"hand-fist\":63198,\"hand-heart\":62652,\"hand-holding-box\":62587,\"hand-holding-circle-dollar\":58913,\"hand-holding-dollar\":62656,\"hand-holding-droplet\":62657,\"hand-holding-hand\":58615,\"hand-holding-heart\":62654,\"hand-holding-magic\":63205,\"hand-holding-medical\":57436,\"hand-holding-seedling\":62655,\"hand-holding-skull\":57764,\"hand-holding\":62653,\"hand-horns\":57769,\"hand-lizard\":62040,\"hand-love\":57765,\"hand-middle-finger\":63494,\"hand-peace\":62043,\"hand-point-down\":61607,\"hand-point-left\":61605,\"hand-point-ribbon\":57766,\"hand-point-right\":61604,\"hand-point-up\":61606,\"hand-pointer\":62042,\"hand-scissors\":62039,\"hand-sparkles\":57437,\"hand-spock\":62041,\"hand-wave\":57767,\"hand\":62038,\"handcuffs\":58616,\"hands-asl-interpreting\":62115,\"hands-bound\":58617,\"hands-bubbles\":57438,\"hands-clapping\":57768,\"hands-holding-child\":58618,\"hands-holding-circle\":58619,\"hands-holding-diamond\":62588,\"hands-holding-dollar\":62661,\"hands-holding-heart\":62659,\"hands-holding\":62658,\"hands-praying\":63108,\"hands\":62119,\"handshake-angle\":62660,\"handshake-simple-slash\":57439,\"handshake-simple\":62662,\"handshake-slash\":57440,\"handshake\":62133,\"hanukiah\":63206,\"hard-drive\":61600,\"hashtag-lock\":58389,\"hashtag\":35,\"hat-beach\":58886,\"hat-chef\":63595,\"hat-cowboy-side\":63681,\"hat-cowboy\":63680,\"hat-santa\":63399,\"hat-winter\":63400,\"hat-witch\":63207,\"hat-wizard\":63208,\"head-side-brain\":63496,\"head-side-cough-slash\":57442,\"head-side-cough\":57441,\"head-side-gear\":58897,\"head-side-goggles\":63210,\"head-side-headphones\":63682,\"head-side-heart\":57770,\"head-side-mask\":57443,\"head-side-medical\":63497,\"head-side-virus\":57444,\"head-side\":63209,\"heading\":61916,\"headphones-simple\":62863,\"headphones\":61477,\"headset\":62864,\"heart-circle-bolt\":58620,\"heart-circle-check\":58621,\"heart-circle-exclamation\":58622,\"heart-circle-minus\":58623,\"heart-circle-plus\":58624,\"heart-circle-xmark\":58625,\"heart-crack\":63401,\"heart-half-stroke\":57772,\"heart-half\":57771,\"heart-pulse\":61982,\"heart\":61444,\"heat\":57356,\"helicopter-symbol\":58626,\"helicopter\":62771,\"helmet-battle\":63211,\"helmet-safety\":63495,\"helmet-un\":58627,\"hexagon-check\":58390,\"hexagon-divide\":57773,\"hexagon-exclamation\":58391,\"hexagon-image\":58628,\"hexagon-minus\":62215,\"hexagon-nodes-bolt\":59034,\"hexagon-nodes\":59033,\"hexagon-plus\":62208,\"hexagon-vertical-nft-slanted\":58630,\"hexagon-vertical-nft\":58629,\"hexagon-xmark\":62190,\"hexagon\":62226,\"high-definition\":57774,\"highlighter-line\":57775,\"highlighter\":62865,\"hill-avalanche\":58631,\"hill-rockslide\":58632,\"hippo\":63213,\"hockey-mask\":63214,\"hockey-puck\":62547,\"hockey-stick-puck\":58286,\"hockey-sticks\":62548,\"holly-berry\":63402,\"honey-pot\":58392,\"hood-cloak\":63215,\"horizontal-rule\":63596,\"horse-head\":63403,\"horse-saddle\":63683,\"horse\":63216,\"hose-reel\":58394,\"hose\":58393,\"hospital-user\":63501,\"hospital\":61688,\"hospitals\":63502,\"hot-tub-person\":62867,\"hotdog\":63503,\"hotel\":62868,\"hourglass-clock\":58395,\"hourglass-end\":62035,\"hourglass-half\":62034,\"hourglass-start\":62033,\"hourglass\":62036,\"house-blank\":58503,\"house-building\":57777,\"house-chimney-blank\":58288,\"house-chimney-crack\":63217,\"house-chimney-heart\":57778,\"house-chimney-medical\":63474,\"house-chimney-user\":57445,\"house-chimney-window\":57357,\"house-chimney\":58287,\"house-circle-check\":58633,\"house-circle-exclamation\":58634,\"house-circle-xmark\":58635,\"house-crack\":58289,\"house-day\":57358,\"house-fire\":58636,\"house-flag\":58637,\"house-flood-water-circle-arrow-right\":58639,\"house-flood-water\":58638,\"house-heart\":62665,\"house-laptop\":57446,\"house-lock\":58640,\"house-medical-circle-check\":58641,\"house-medical-circle-exclamation\":58642,\"house-medical-circle-xmark\":58643,\"house-medical-flag\":58644,\"house-medical\":58290,\"house-night\":57360,\"house-person-leave\":57359,\"house-person-return\":57361,\"house-signal\":57362,\"house-tree\":57779,\"house-tsunami\":58645,\"house-turret\":57780,\"house-user\":57776,\"house-water\":63311,\"house-window\":58291,\"house\":61461,\"hryvnia-sign\":63218,\"hundred-points\":58396,\"hurricane\":63313,\"hydra\":59014,\"hyphen\":45,\"i-cursor\":62022,\"i\":73,\"ice-cream\":63504,\"ice-skate\":63404,\"icicles\":63405,\"icons\":63597,\"id-badge\":62145,\"id-card-clip\":62591,\"id-card\":62146,\"igloo\":63406,\"image-landscape\":57781,\"image-polaroid-user\":57782,\"image-polaroid\":63684,\"image-portrait\":62432,\"image-slash\":57783,\"image-user\":57784,\"image\":61502,\"images-user\":57785,\"images\":62210,\"inbox-full\":57786,\"inbox-in\":62224,\"inbox-out\":62225,\"inbox\":61468,\"inboxes\":57787,\"indent\":61500,\"indian-rupee-sign\":57788,\"industry-windows\":62387,\"industry\":62069,\"infinity\":62772,\"info\":61737,\"inhaler\":62969,\"input-numeric\":57789,\"input-pipe\":57790,\"input-text\":57791,\"integral\":63079,\"interrobang\":58810,\"intersection\":63080,\"island-tropical\":63505,\"italic\":61491,\"j\":74,\"jack-o-lantern\":62222,\"jar-wheat\":58647,\"jar\":58646,\"jedi\":63081,\"jet-fighter-up\":58648,\"jet-fighter\":61691,\"joint\":62869,\"joystick\":63685,\"jug-bottle\":58875,\"jug-detergent\":58649,\"jug\":63686,\"k\":75,\"kaaba\":63083,\"kazoo\":63687,\"kerning\":63599,\"key-skeleton-left-right\":58292,\"key-skeleton\":63219,\"key\":61572,\"keyboard-brightness-low\":57793,\"keyboard-brightness\":57792,\"keyboard-down\":57794,\"keyboard-left\":57795,\"keyboard\":61724,\"keynote\":63084,\"khanda\":63085,\"kidneys\":62971,\"kip-sign\":57796,\"kit-medical\":62585,\"kitchen-set\":58650,\"kite\":63220,\"kiwi-bird\":62773,\"kiwi-fruit\":58124,\"knife-kitchen\":63221,\"knife\":62180,\"l\":76,\"lacrosse-stick-ball\":58294,\"lacrosse-stick\":58293,\"lambda\":63086,\"lamp-desk\":57364,\"lamp-floor\":57365,\"lamp-street\":57797,\"lamp\":62666,\"land-mine-on\":58651,\"landmark-dome\":63314,\"landmark-flag\":58652,\"landmark-magnifying-glass\":58914,\"landmark\":63087,\"language\":61867,\"laptop-arrow-down\":57798,\"laptop-binary\":58855,\"laptop-code\":62972,\"laptop-file\":58653,\"laptop-medical\":63506,\"laptop-mobile\":63610,\"laptop-slash\":57799,\"laptop\":61705,\"lari-sign\":57800,\"lasso-sparkles\":57801,\"lasso\":63688,\"layer-group\":62973,\"layer-minus\":62974,\"layer-plus\":62975,\"leaf-heart\":62667,\"leaf-maple\":63222,\"leaf-oak\":63223,\"leaf\":61548,\"leafy-green\":58397,\"left-from-bracket\":58988,\"left-from-line\":62280,\"left-long-to-line\":58398,\"left-long\":62218,\"left-right\":62263,\"left-to-bracket\":58989,\"left-to-line\":62283,\"left\":62293,\"lemon\":61588,\"less-than-equal\":62775,\"less-than\":60,\"life-ring\":61901,\"light-ceiling\":57366,\"light-emergency-on\":58400,\"light-emergency\":58399,\"light-switch-off\":57368,\"light-switch-on\":57369,\"light-switch\":57367,\"lightbulb-cfl-on\":58791,\"lightbulb-cfl\":58790,\"lightbulb-dollar\":63088,\"lightbulb-exclamation-on\":57802,\"lightbulb-exclamation\":63089,\"lightbulb-gear\":58877,\"lightbulb-message\":59015,\"lightbulb-on\":63090,\"lightbulb-slash\":63091,\"lightbulb\":61675,\"lighthouse\":58898,\"lights-holiday\":63410,\"line-columns\":63600,\"line-height\":63601,\"lines-leaning\":58654,\"link-horizontal-slash\":57804,\"link-horizontal\":57803,\"link-simple-slash\":57806,\"link-simple\":57805,\"link-slash\":61735,\"link\":61633,\"lips\":62976,\"lira-sign\":61845,\"list-check\":61614,\"list-dropdown\":57807,\"list-music\":63689,\"list-ol\":61643,\"list-radio\":57808,\"list-timeline\":57809,\"list-tree\":57810,\"list-ul\":61642,\"list\":61498,\"litecoin-sign\":57811,\"loader\":57812,\"lobster\":58401,\"location-arrow-up\":58938,\"location-arrow\":61732,\"location-check\":62982,\"location-crosshairs-slash\":62979,\"location-crosshairs\":62977,\"location-dot-slash\":62981,\"location-dot\":62405,\"location-exclamation\":62984,\"location-minus\":62985,\"location-pen\":62983,\"location-pin-lock\":58655,\"location-pin-slash\":62988,\"location-pin\":61505,\"location-plus\":62986,\"location-question\":62987,\"location-smile\":62989,\"location-xmark\":62990,\"lock-a\":58402,\"lock-hashtag\":58403,\"lock-keyhole-open\":62402,\"lock-keyhole\":62221,\"lock-open\":62401,\"lock\":61475,\"locust\":58656,\"lollipop\":58404,\"loveseat\":62668,\"luchador-mask\":62549,\"lungs-virus\":57447,\"lungs\":62980,\"m\":77,\"mace\":63224,\"magnet\":61558,\"magnifying-glass-arrow-right\":58657,\"magnifying-glass-arrows-rotate\":58974,\"magnifying-glass-chart\":58658,\"magnifying-glass-dollar\":63112,\"magnifying-glass-location\":63113,\"magnifying-glass-minus\":61456,\"magnifying-glass-music\":58975,\"magnifying-glass-play\":58976,\"magnifying-glass-plus\":61454,\"magnifying-glass-waveform\":58977,\"magnifying-glass\":61442,\"mailbox-flag-up\":58811,\"mailbox\":63507,\"manat-sign\":57813,\"mandolin\":63225,\"mango\":58127,\"manhole\":57814,\"map-location-dot\":62880,\"map-location\":62879,\"map-pin\":62070,\"map\":62073,\"marker\":62881,\"mars-and-venus-burst\":58659,\"mars-and-venus\":61988,\"mars-double\":61991,\"mars-stroke-right\":61995,\"mars-stroke-up\":61994,\"mars-stroke\":61993,\"mars\":61986,\"martini-glass-citrus\":62817,\"martini-glass-empty\":61440,\"martini-glass\":62843,\"mask-face\":57815,\"mask-snorkel\":58295,\"mask-ventilator\":58660,\"mask\":63226,\"masks-theater\":63024,\"mattress-pillow\":58661,\"maximize\":62238,\"meat\":63508,\"medal\":62882,\"megaphone\":63093,\"melon-slice\":58129,\"melon\":58128,\"memo-circle-check\":57817,\"memo-circle-info\":58522,\"memo-pad\":57818,\"memo\":57816,\"memory\":62776,\"menorah\":63094,\"mercury\":61987,\"merge\":58662,\"message-arrow-down\":57819,\"message-arrow-up-right\":57821,\"message-arrow-up\":57820,\"message-bot\":58296,\"message-captions\":57822,\"message-check\":62626,\"message-code\":57823,\"message-dollar\":63056,\"message-dots\":62627,\"message-exclamation\":62629,\"message-heart\":58825,\"message-image\":57824,\"message-lines\":62630,\"message-medical\":63476,\"message-middle-top\":57826,\"message-middle\":57825,\"message-minus\":62631,\"message-music\":63663,\"message-pen\":62628,\"message-plus\":62632,\"message-question\":57827,\"message-quote\":57828,\"message-slash\":62633,\"message-smile\":62634,\"message-sms\":57829,\"message-text\":57830,\"message-xmark\":62635,\"message\":62074,\"messages-dollar\":63058,\"messages-question\":57831,\"messages\":62646,\"meteor\":63315,\"meter-bolt\":57833,\"meter-droplet\":57834,\"meter-fire\":57835,\"meter\":57832,\"microchip-ai\":57836,\"microchip\":62171,\"microphone-lines-slash\":62777,\"microphone-lines\":62409,\"microphone-slash\":61745,\"microphone-stand\":63691,\"microphone\":61744,\"microscope\":62992,\"microwave\":57371,\"mill-sign\":57837,\"minimize\":63372,\"minus\":61544,\"mistletoe\":63412,\"mitten\":63413,\"mobile-button\":61707,\"mobile-notch\":57838,\"mobile-retro\":58663,\"mobile-screen-button\":62413,\"mobile-screen\":62415,\"mobile-signal-out\":57840,\"mobile-signal\":57839,\"mobile\":62414,\"money-bill-1-wave\":62779,\"money-bill-1\":62417,\"money-bill-simple-wave\":57842,\"money-bill-simple\":57841,\"money-bill-transfer\":58664,\"money-bill-trend-up\":58665,\"money-bill-wave\":62778,\"money-bill-wheat\":58666,\"money-bill\":61654,\"money-bills-simple\":57844,\"money-bills\":57843,\"money-check-dollar-pen\":63603,\"money-check-dollar\":62781,\"money-check-pen\":63602,\"money-check\":62780,\"money-from-bracket\":58130,\"money-simple-from-bracket\":58131,\"monitor-waveform\":62993,\"monkey\":63227,\"monument\":62886,\"moon-cloud\":63316,\"moon-over-sun\":63306,\"moon-stars\":63317,\"moon\":61830,\"moped\":58297,\"mortar-pestle\":62887,\"mosque\":63096,\"mosquito-net\":58668,\"mosquito\":58667,\"motorcycle\":61980,\"mound\":58669,\"mountain-city\":58670,\"mountain-sun\":58671,\"mountain\":63228,\"mountains\":63229,\"mouse-field\":58792,\"mp3-player\":63694,\"mug-hot\":63414,\"mug-marshmallows\":63415,\"mug-saucer\":61684,\"mug-tea-saucer\":57845,\"mug-tea\":63605,\"mug\":63604,\"mushroom\":58405,\"music-magnifying-glass\":58978,\"music-note-slash\":63696,\"music-note\":63695,\"music-slash\":63697,\"music\":61441,\"mustache\":58812,\"n\":78,\"naira-sign\":57846,\"narwhal\":63230,\"nesting-dolls\":58298,\"network-wired\":63231,\"neuter\":61996,\"newspaper\":61930,\"nfc-lock\":57848,\"nfc-magnifying-glass\":57849,\"nfc-pen\":57850,\"nfc-signal\":57851,\"nfc-slash\":57852,\"nfc-symbol\":58673,\"nfc-trash\":57853,\"nfc\":57847,\"nose\":58813,\"not-equal\":62782,\"notdef\":57854,\"note-medical\":57856,\"note-sticky\":62025,\"note\":57855,\"notebook\":57857,\"notes-medical\":62593,\"notes\":57858,\"o\":79,\"object-exclude\":58524,\"object-group\":62023,\"object-intersect\":58525,\"object-subtract\":58526,\"object-ungroup\":62024,\"object-union\":58527,\"objects-align-bottom\":58299,\"objects-align-center-horizontal\":58300,\"objects-align-center-vertical\":58301,\"objects-align-left\":58302,\"objects-align-right\":58303,\"objects-align-top\":58304,\"objects-column\":58305,\"octagon-check\":58406,\"octagon-divide\":57859,\"octagon-exclamation\":57860,\"octagon-minus\":62216,\"octagon-plus\":62209,\"octagon-xmark\":62192,\"octagon\":62214,\"octopus\":59016,\"oil-can-drip\":57861,\"oil-can\":62995,\"oil-temperature\":62996,\"oil-well\":58674,\"olive-branch\":58135,\"olive\":58134,\"om\":63097,\"omega\":63098,\"onion\":58407,\"option\":58136,\"ornament\":63416,\"otter\":63232,\"outdent\":61499,\"outlet\":57372,\"oven\":57373,\"overline\":63606,\"p\":80,\"page-caret-down\":58409,\"page-caret-up\":58410,\"page\":58408,\"pager\":63509,\"paint-roller\":62890,\"paintbrush-fine\":62889,\"paintbrush-pencil\":57862,\"paintbrush\":61948,\"palette\":62783,\"pallet-box\":57864,\"pallet-boxes\":62595,\"pallet\":62594,\"pan-food\":58411,\"pan-frying\":58412,\"pancakes\":58413,\"panel-ews\":58414,\"panel-fire\":58415,\"panorama\":57865,\"paper-plane-top\":57866,\"paper-plane\":61912,\"paperclip-vertical\":58306,\"paperclip\":61638,\"parachute-box\":62669,\"paragraph-left\":63608,\"paragraph\":61917,\"party-bell\":58138,\"party-horn\":58139,\"passport\":62891,\"paste\":61674,\"pause\":61516,\"paw-claws\":63234,\"paw-simple\":63233,\"paw\":61872,\"peace\":63100,\"peach\":57867,\"peanut\":58416,\"peanuts\":58417,\"peapod\":58140,\"pear\":57868,\"pedestal\":57869,\"pegasus\":63235,\"pen-circle\":57870,\"pen-clip-slash\":57871,\"pen-clip\":62213,\"pen-fancy-slash\":57872,\"pen-fancy\":62892,\"pen-field\":57873,\"pen-line\":57874,\"pen-nib-slash\":58529,\"pen-nib\":62893,\"pen-paintbrush\":63000,\"pen-ruler\":62894,\"pen-slash\":57875,\"pen-swirl\":57876,\"pen-to-square\":61508,\"pen\":62212,\"pencil-mechanical\":58826,\"pencil-slash\":57877,\"pencil\":62211,\"people-arrows\":57448,\"people-carry-box\":62670,\"people-dress-simple\":57880,\"people-dress\":57879,\"people-group\":58675,\"people-line\":58676,\"people-pants-simple\":57882,\"people-pants\":57881,\"people-pulling\":58677,\"people-robbery\":58678,\"people-roof\":58679,\"people-simple\":57883,\"people\":57878,\"pepper-hot\":63510,\"pepper\":58418,\"percent\":37,\"period\":46,\"person-arrow-down-to-line\":58680,\"person-arrow-up-from-line\":58681,\"person-biking-mountain\":63563,\"person-biking\":63562,\"person-booth\":63318,\"person-breastfeeding\":58682,\"person-burst\":58683,\"person-cane\":58684,\"person-carry-box\":62671,\"person-chalkboard\":58685,\"person-circle-check\":58686,\"person-circle-exclamation\":58687,\"person-circle-minus\":58688,\"person-circle-plus\":58689,\"person-circle-question\":58690,\"person-circle-xmark\":58691,\"person-digging\":63582,\"person-dolly-empty\":62673,\"person-dolly\":62672,\"person-dots-from-line\":62576,\"person-dress-burst\":58692,\"person-dress-fairy\":58887,\"person-dress-simple\":57884,\"person-dress\":61826,\"person-drowning\":58693,\"person-fairy\":58888,\"person-falling-burst\":58695,\"person-falling\":58694,\"person-from-portal\":57379,\"person-half-dress\":58696,\"person-harassing\":58697,\"person-hiking\":63212,\"person-military-pointing\":58698,\"person-military-rifle\":58699,\"person-military-to-person\":58700,\"person-pinball\":57885,\"person-praying\":63107,\"person-pregnant\":58142,\"person-rays\":58701,\"person-rifle\":58702,\"person-running-fast\":58879,\"person-running\":63244,\"person-seat-reclined\":57887,\"person-seat\":57886,\"person-shelter\":58703,\"person-sign\":63319,\"person-simple\":57888,\"person-skating\":63429,\"person-ski-jumping\":63431,\"person-ski-lift\":63432,\"person-skiing-nordic\":63434,\"person-skiing\":63433,\"person-sledding\":63435,\"person-snowboarding\":63438,\"person-snowmobiling\":63441,\"person-swimming\":62916,\"person-through-window\":58793,\"person-to-door\":58419,\"person-to-portal\":57378,\"person-walking-arrow-loop-left\":58705,\"person-walking-arrow-right\":58706,\"person-walking-dashed-line-arrow-right\":58707,\"person-walking-luggage\":58708,\"person-walking-with-cane\":62109,\"person-walking\":62804,\"person\":61827,\"peseta-sign\":57889,\"peso-sign\":57890,\"phone-arrow-down-left\":57891,\"phone-arrow-right\":58814,\"phone-arrow-up-right\":57892,\"phone-flip\":63609,\"phone-hangup\":57893,\"phone-intercom\":58420,\"phone-missed\":57894,\"phone-office\":63101,\"phone-plus\":62674,\"phone-rotary\":63699,\"phone-slash\":62429,\"phone-volume\":62112,\"phone-xmark\":57895,\"phone\":61589,\"photo-film-music\":57896,\"photo-film\":63612,\"pi\":63102,\"piano-keyboard\":63701,\"piano\":63700,\"pickaxe\":58815,\"pickleball\":58421,\"pie\":63237,\"pig\":63238,\"piggy-bank\":62675,\"pills\":62596,\"pinata\":58307,\"pinball\":57897,\"pineapple\":58143,\"pipe-circle-check\":58422,\"pipe-collar\":58423,\"pipe-section\":58424,\"pipe-smoking\":58308,\"pipe-valve\":58425,\"pipe\":124,\"pizza-slice\":63512,\"pizza\":63511,\"place-of-worship\":63103,\"plane-arrival\":62895,\"plane-circle-check\":58709,\"plane-circle-exclamation\":58710,\"plane-circle-xmark\":58711,\"plane-departure\":62896,\"plane-engines\":62430,\"plane-lock\":58712,\"plane-prop\":57899,\"plane-slash\":57449,\"plane-tail\":57900,\"plane-up-slash\":57902,\"plane-up\":57901,\"plane\":61554,\"planet-moon\":57375,\"planet-ringed\":57376,\"plant-wilt\":58794,\"plate-utensils\":58427,\"plate-wheat\":58714,\"play-pause\":57903,\"play\":61515,\"plug-circle-bolt\":58715,\"plug-circle-check\":58716,\"plug-circle-exclamation\":58717,\"plug-circle-minus\":58718,\"plug-circle-plus\":58719,\"plug-circle-xmark\":58720,\"plug\":61926,\"plus-large\":58782,\"plus-minus\":58428,\"plus\":43,\"podcast\":62158,\"podium-star\":63320,\"podium\":63104,\"police-box\":57377,\"poll-people\":63321,\"pompebled\":58429,\"poo-storm\":63322,\"poo\":62206,\"pool-8-ball\":58309,\"poop\":63001,\"popcorn\":63513,\"popsicle\":58430,\"pot-food\":58431,\"potato\":58432,\"power-off\":61457,\"prescription-bottle-medical\":62598,\"prescription-bottle-pill\":58816,\"prescription-bottle\":62597,\"prescription\":62897,\"presentation-screen\":63109,\"pretzel\":58433,\"print-magnifying-glass\":63514,\"print-slash\":63110,\"print\":61487,\"projector\":63702,\"pump-medical\":57450,\"pump-soap\":57451,\"pump\":58434,\"pumpkin\":63239,\"puzzle-piece-simple\":57905,\"puzzle-piece\":61742,\"puzzle\":58435,\"q\":81,\"qrcode\":61481,\"question\":63,\"quote-left\":61709,\"quote-right\":61710,\"quotes\":57908,\"r\":82,\"rabbit-running\":63241,\"rabbit\":63240,\"raccoon\":58899,\"racquet\":62554,\"radar\":57380,\"radiation\":63417,\"radio-tuner\":63704,\"radio\":63703,\"rainbow\":63323,\"raindrops\":63324,\"ram\":63242,\"ramp-loading\":62676,\"ranking-star\":58721,\"raygun\":57381,\"receipt\":62787,\"record-vinyl\":63705,\"rectangle-ad\":63041,\"rectangle-barcode\":62563,\"rectangle-code\":58146,\"rectangle-history-circle-plus\":58531,\"rectangle-history-circle-user\":58532,\"rectangle-history\":58530,\"rectangle-list\":61474,\"rectangle-pro\":57909,\"rectangle-terminal\":57910,\"rectangle-vertical-history\":57911,\"rectangle-vertical\":62203,\"rectangle-wide\":62204,\"rectangle-xmark\":62480,\"rectangle\":62202,\"rectangles-mixed\":58147,\"recycle\":61880,\"reel\":57912,\"reflect-both\":58991,\"reflect-horizontal\":58980,\"reflect-vertical\":58981,\"refrigerator\":57382,\"registered\":62045,\"repeat-1\":62309,\"repeat\":62307,\"reply-all\":61730,\"reply-clock\":57913,\"reply\":62437,\"republican\":63326,\"restroom-simple\":57914,\"restroom\":63421,\"retweet\":61561,\"rhombus\":57915,\"ribbon\":62678,\"right-from-bracket\":62197,\"right-from-line\":62279,\"right-left-large\":58849,\"right-left\":62306,\"right-long-to-line\":58436,\"right-long\":62219,\"right-to-bracket\":62198,\"right-to-line\":62284,\"right\":62294,\"ring-diamond\":58795,\"ring\":63243,\"rings-wedding\":63515,\"road-barrier\":58722,\"road-bridge\":58723,\"road-circle-check\":58724,\"road-circle-exclamation\":58725,\"road-circle-xmark\":58726,\"road-lock\":58727,\"road-spikes\":58728,\"road\":61464,\"robot-astromech\":58066,\"robot\":62788,\"rocket-launch\":57383,\"rocket\":61749,\"roller-coaster\":58148,\"rotate-exclamation\":57916,\"rotate-left\":62186,\"rotate-reverse\":58929,\"rotate-right\":62201,\"rotate\":62193,\"route-highway\":63002,\"route-interstate\":63003,\"route\":62679,\"router\":63706,\"rss\":61598,\"ruble-sign\":61784,\"rug\":58729,\"rugby-ball\":58310,\"ruler-combined\":62790,\"ruler-horizontal\":62791,\"ruler-triangle\":63004,\"ruler-vertical\":62792,\"ruler\":62789,\"rupee-sign\":61782,\"rupiah-sign\":57917,\"rv\":63422,\"s\":83,\"sack-dollar\":63517,\"sack-xmark\":58730,\"sack\":63516,\"sailboat\":58437,\"salad\":63518,\"salt-shaker\":58438,\"sandwich\":63519,\"satellite-dish\":63424,\"satellite\":63423,\"sausage\":63520,\"saxophone-fire\":63707,\"saxophone\":63708,\"scale-balanced\":62030,\"scale-unbalanced-flip\":62742,\"scale-unbalanced\":62741,\"scalpel-line-dashed\":63006,\"scalpel\":63005,\"scanner-gun\":62600,\"scanner-image\":63731,\"scanner-keyboard\":62601,\"scanner-touchscreen\":62602,\"scarecrow\":63245,\"scarf\":63425,\"school-circle-check\":58731,\"school-circle-exclamation\":58732,\"school-circle-xmark\":58733,\"school-flag\":58734,\"school-lock\":58735,\"school\":62793,\"scissors\":61636,\"screen-users\":63037,\"screencast\":57918,\"screwdriver-wrench\":63449,\"screwdriver\":62794,\"scribble\":57919,\"scroll-old\":63247,\"scroll-torah\":63136,\"scroll\":63246,\"scrubber\":62200,\"scythe\":63248,\"sd-card\":63426,\"sd-cards\":57920,\"seal-exclamation\":57922,\"seal-question\":57923,\"seal\":57921,\"seat-airline\":57924,\"section\":58439,\"seedling\":62680,\"semicolon\":59,\"send-back\":63614,\"send-backward\":63615,\"sensor-cloud\":57388,\"sensor-fire\":57386,\"sensor-on\":57387,\"sensor-triangle-exclamation\":57385,\"sensor\":57384,\"server\":62003,\"shapes\":63007,\"share-all\":62311,\"share-from-square\":61773,\"share-nodes\":61920,\"share\":61540,\"sheep\":63249,\"sheet-plastic\":58737,\"shekel-sign\":61963,\"shelves-empty\":57926,\"shelves\":62592,\"shield-cat\":58738,\"shield-check\":62199,\"shield-cross\":63250,\"shield-dog\":58739,\"shield-exclamation\":57927,\"shield-halved\":62445,\"shield-heart\":58740,\"shield-keyhole\":57928,\"shield-minus\":57929,\"shield-plus\":57930,\"shield-quartered\":58741,\"shield-slash\":57931,\"shield-virus\":57452,\"shield-xmark\":57932,\"shield\":61746,\"ship\":61978,\"shirt-long-sleeve\":58311,\"shirt-running\":58312,\"shirt-tank-top\":58313,\"shirt\":62803,\"shish-kebab\":63521,\"shoe-prints\":62795,\"shop-lock\":58533,\"shop-slash\":57456,\"shop\":62799,\"shovel-snow\":63427,\"shovel\":63251,\"shower-down\":57933,\"shower\":62156,\"shredder\":63114,\"shrimp\":58440,\"shuffle\":61556,\"shutters\":58441,\"shuttle-space\":61847,\"shuttlecock\":62555,\"sickle\":63522,\"sidebar-flip\":57935,\"sidebar\":57934,\"sigma\":63115,\"sign-hanging\":62681,\"sign-post\":58916,\"sign-posts-wrench\":58918,\"sign-posts\":58917,\"signal-bars-fair\":63122,\"signal-bars-good\":63123,\"signal-bars-slash\":63124,\"signal-bars-weak\":63121,\"signal-bars\":63120,\"signal-fair\":63117,\"signal-good\":63118,\"signal-slash\":63125,\"signal-stream-slash\":57936,\"signal-stream\":63709,\"signal-strong\":63119,\"signal-weak\":63116,\"signal\":61458,\"signature-lock\":58314,\"signature-slash\":58315,\"signature\":62903,\"signs-post\":62071,\"sim-card\":63428,\"sim-cards\":57937,\"sink\":57453,\"siren-on\":57390,\"siren\":57389,\"sitemap\":61672,\"skeleton-ribs\":58827,\"skeleton\":63008,\"ski-boot-ski\":58317,\"ski-boot\":58316,\"skull-cow\":63710,\"skull-crossbones\":63252,\"skull\":62796,\"slash-back\":92,\"slash-forward\":47,\"slash\":63253,\"sleigh\":63436,\"slider\":57938,\"sliders-simple\":57939,\"sliders-up\":62449,\"sliders\":61918,\"slot-machine\":58318,\"smog\":63327,\"smoke\":63328,\"smoking\":62605,\"snake\":63254,\"snooze\":63616,\"snow-blowing\":63329,\"snowflake-droplets\":58817,\"snowflake\":62172,\"snowflakes\":63439,\"snowman-head\":63387,\"snowman\":63440,\"snowplow\":63442,\"soap\":57454,\"socks\":63126,\"soft-serve\":58368,\"solar-panel\":62906,\"solar-system\":57391,\"sort-down\":61661,\"sort-up\":61662,\"sort\":61660,\"spa\":62907,\"space-station-moon-construction\":57396,\"space-station-moon\":57395,\"spade\":62196,\"spaghetti-monster-flying\":63099,\"sparkle\":58838,\"sparkles\":63632,\"speaker\":63711,\"speakers\":63712,\"spell-check\":63633,\"spider-black-widow\":63256,\"spider-web\":63257,\"spider\":63255,\"spinner-scale\":58922,\"spinner-third\":62452,\"spinner\":61712,\"split\":57940,\"splotch\":62908,\"spoon\":62181,\"sportsball\":58443,\"spray-can-sparkles\":62928,\"spray-can\":62909,\"sprinkler-ceiling\":58444,\"sprinkler\":57397,\"square-0\":57941,\"square-1\":57942,\"square-2\":57943,\"square-3\":57944,\"square-4\":57945,\"square-5\":57946,\"square-6\":57947,\"square-7\":57948,\"square-8\":57949,\"square-9\":57950,\"square-a-lock\":58445,\"square-a\":57951,\"square-ampersand\":57952,\"square-arrow-down-left\":57953,\"square-arrow-down-right\":57954,\"square-arrow-down\":62265,\"square-arrow-left\":62266,\"square-arrow-right\":62267,\"square-arrow-up-left\":57955,\"square-arrow-up-right\":61772,\"square-arrow-up\":62268,\"square-b\":57956,\"square-binary\":59035,\"square-bolt\":57957,\"square-c\":57958,\"square-caret-down\":61776,\"square-caret-left\":61841,\"square-caret-right\":61778,\"square-caret-up\":61777,\"square-check\":61770,\"square-chevron-down\":62249,\"square-chevron-left\":62250,\"square-chevron-right\":62251,\"square-chevron-up\":62252,\"square-code\":57959,\"square-d\":57960,\"square-dashed-circle-plus\":58818,\"square-dashed\":57961,\"square-divide\":57962,\"square-dollar\":62185,\"square-down-left\":57963,\"square-down-right\":57964,\"square-down\":62288,\"square-e\":57965,\"square-ellipsis-vertical\":57967,\"square-ellipsis\":57966,\"square-envelope\":61849,\"square-exclamation\":62241,\"square-f\":57968,\"square-fragile\":62619,\"square-full\":62556,\"square-g\":57969,\"square-h\":61693,\"square-heart\":62664,\"square-i\":57970,\"square-info\":62223,\"square-j\":57971,\"square-k\":57972,\"square-kanban\":58504,\"square-l\":57973,\"square-left\":62289,\"square-list\":58505,\"square-m\":57974,\"square-minus\":61766,\"square-n\":57975,\"square-nfi\":58742,\"square-o\":57976,\"square-p\":57977,\"square-parking-slash\":62999,\"square-parking\":62784,\"square-pen\":61771,\"square-person-confined\":58743,\"square-phone-flip\":63611,\"square-phone-hangup\":57978,\"square-phone\":61592,\"square-plus\":61694,\"square-poll-horizontal\":63106,\"square-poll-vertical\":63105,\"square-q\":57979,\"square-quarters\":58446,\"square-question\":62205,\"square-quote\":58153,\"square-r\":57980,\"square-right\":62290,\"square-ring\":58447,\"square-root-variable\":63128,\"square-root\":63127,\"square-rss\":61763,\"square-s\":57981,\"square-share-nodes\":61921,\"square-sliders-vertical\":62450,\"square-sliders\":62448,\"square-small\":57982,\"square-star\":57983,\"square-t\":57984,\"square-terminal\":58154,\"square-this-way-up\":62623,\"square-u\":57985,\"square-up-left\":57986,\"square-up-right\":62304,\"square-up\":62291,\"square-user\":57987,\"square-v\":57988,\"square-virus\":58744,\"square-w\":57989,\"square-x\":57990,\"square-xmark\":62163,\"square-y\":57991,\"square-z\":57992,\"square\":61640,\"squid\":58448,\"squirrel\":63258,\"staff-snake\":58745,\"staff\":63259,\"stairs\":57993,\"stamp\":62911,\"standard-definition\":57994,\"stapler\":58799,\"star-and-crescent\":63129,\"star-christmas\":63444,\"star-exclamation\":62195,\"star-half-stroke\":62912,\"star-half\":61577,\"star-of-david\":63130,\"star-of-life\":63009,\"star-sharp-half-stroke\":57997,\"star-sharp-half\":57996,\"star-sharp\":57995,\"star-shooting\":57398,\"star\":61445,\"starfighter-twin-ion-engine-advanced\":57998,\"starfighter-twin-ion-engine\":57400,\"starfighter\":57399,\"stars\":63330,\"starship-freighter\":57402,\"starship\":57401,\"steak\":63524,\"steering-wheel\":63010,\"sterling-sign\":61780,\"stethoscope\":61681,\"stocking\":63445,\"stomach\":63011,\"stop\":61517,\"stopwatch-20\":57455,\"stopwatch\":62194,\"store-lock\":58534,\"store-slash\":57457,\"store\":62798,\"strawberry\":58155,\"street-view\":61981,\"stretcher\":63525,\"strikethrough\":61644,\"stroopwafel\":62801,\"subscript\":61740,\"subtitles-slash\":58896,\"subtitles\":58895,\"suitcase-medical\":61690,\"suitcase-rolling\":62913,\"suitcase\":61682,\"sun-bright\":57999,\"sun-cloud\":63331,\"sun-dust\":63332,\"sun-haze\":63333,\"sun-plant-wilt\":58746,\"sun\":61829,\"sunglasses\":63634,\"sunrise\":63334,\"sunset\":63335,\"superscript\":61739,\"sushi-roll\":58507,\"sushi\":58506,\"swap-arrows\":58890,\"swap\":58889,\"swatchbook\":62915,\"sword-laser-alt\":57404,\"sword-laser\":57403,\"sword\":63260,\"swords-laser\":57405,\"swords\":63261,\"symbols\":63598,\"synagogue\":63131,\"syringe\":62606,\"t-rex\":58921,\"t\":84,\"table-cells-column-lock\":59000,\"table-cells-column-unlock\":59024,\"table-cells-large\":61449,\"table-cells-lock\":59001,\"table-cells-row-lock\":59002,\"table-cells-row-unlock\":59025,\"table-cells-unlock\":59026,\"table-cells\":61450,\"table-columns\":61659,\"table-layout\":58000,\"table-list\":61451,\"table-picnic\":58157,\"table-pivot\":58001,\"table-rows\":58002,\"table-tennis-paddle-ball\":62557,\"table-tree\":58003,\"table\":61646,\"tablet-button\":61706,\"tablet-rugged\":62607,\"tablet-screen-button\":62458,\"tablet-screen\":62460,\"tablet\":62459,\"tablets\":62608,\"tachograph-digital\":62822,\"taco\":63526,\"tag\":61483,\"tags\":61484,\"tally-1\":58004,\"tally-2\":58005,\"tally-3\":58006,\"tally-4\":58007,\"tally\":63132,\"tamale\":58449,\"tank-water\":58450,\"tape\":62683,\"tarp-droplet\":58748,\"tarp\":58747,\"taxi-bus\":58008,\"taxi\":61882,\"teddy-bear\":58319,\"teeth-open\":63023,\"teeth\":63022,\"telescope\":57406,\"temperature-arrow-down\":57407,\"temperature-arrow-up\":57408,\"temperature-empty\":62155,\"temperature-full\":62151,\"temperature-half\":62153,\"temperature-high\":63337,\"temperature-list\":58009,\"temperature-low\":63339,\"temperature-quarter\":62154,\"temperature-snow\":63336,\"temperature-sun\":63338,\"temperature-three-quarters\":62152,\"tenge-sign\":63447,\"tennis-ball\":62558,\"tent-arrow-down-to-line\":58750,\"tent-arrow-left-right\":58751,\"tent-arrow-turn-left\":58752,\"tent-arrows-down\":58753,\"tent-double-peak\":58919,\"tent\":58749,\"tents\":58754,\"terminal\":61728,\"text-height\":61492,\"text-size\":63636,\"text-slash\":63613,\"text-width\":61493,\"text\":63635,\"thermometer\":62609,\"theta\":63134,\"thought-bubble\":58158,\"thumbs-down\":61797,\"thumbs-up\":61796,\"thumbtack-slash\":59023,\"thumbtack\":61581,\"tick\":58159,\"ticket-airline\":58010,\"ticket-perforated\":58942,\"ticket-simple\":62463,\"ticket\":61765,\"tickets-airline\":58011,\"tickets-perforated\":58943,\"tickets-simple\":58969,\"tickets\":58968,\"tilde\":126,\"timeline-arrow\":58013,\"timeline\":58012,\"timer\":58014,\"tire-flat\":63026,\"tire-pressure-warning\":63027,\"tire-rugged\":63028,\"tire\":63025,\"toggle-large-off\":58800,\"toggle-large-on\":58801,\"toggle-off\":61956,\"toggle-on\":61957,\"toilet-paper-blank-under\":58015,\"toilet-paper-blank\":63263,\"toilet-paper-check\":58802,\"toilet-paper-slash\":57458,\"toilet-paper-under-slash\":58017,\"toilet-paper-under\":58016,\"toilet-paper-xmark\":58803,\"toilet-paper\":63262,\"toilet-portable\":58755,\"toilet\":63448,\"toilets-portable\":58756,\"tomato\":58160,\"tombstone-blank\":63265,\"tombstone\":63264,\"toolbox\":62802,\"tooth\":62921,\"toothbrush\":63029,\"torii-gate\":63137,\"tornado\":63343,\"tower-broadcast\":62745,\"tower-cell\":58757,\"tower-control\":58018,\"tower-observation\":58758,\"tractor\":63266,\"trademark\":62044,\"traffic-cone\":63030,\"traffic-light-go\":63032,\"traffic-light-slow\":63033,\"traffic-light-stop\":63034,\"traffic-light\":63031,\"trailer\":57409,\"train-subway-tunnel\":58019,\"train-subway\":62009,\"train-track\":58451,\"train-tram\":58804,\"train-tunnel\":58452,\"train\":62008,\"transformer-bolt\":58020,\"transgender\":61989,\"transporter-1\":57411,\"transporter-2\":57412,\"transporter-3\":57413,\"transporter-4\":58021,\"transporter-5\":58022,\"transporter-6\":58023,\"transporter-7\":58024,\"transporter-empty\":57414,\"transporter\":57410,\"trash-arrow-up\":63529,\"trash-can-arrow-up\":63530,\"trash-can-check\":58025,\"trash-can-clock\":58026,\"trash-can-list\":58027,\"trash-can-plus\":58028,\"trash-can-slash\":58029,\"trash-can-undo\":63638,\"trash-can-xmark\":58030,\"trash-can\":62189,\"trash-check\":58031,\"trash-clock\":58032,\"trash-list\":58033,\"trash-plus\":58034,\"trash-slash\":58035,\"trash-undo\":63637,\"trash-xmark\":58036,\"trash\":61944,\"treasure-chest\":63267,\"tree-christmas\":63451,\"tree-city\":58759,\"tree-deciduous\":62464,\"tree-decorated\":63452,\"tree-large\":63453,\"tree-palm\":63531,\"tree\":61883,\"trees\":63268,\"triangle-exclamation\":61553,\"triangle-instrument\":63714,\"triangle-person-digging\":63581,\"triangle\":62188,\"tricycle-adult\":58820,\"tricycle\":58819,\"trillium\":58760,\"trophy-star\":62187,\"trophy\":61585,\"trowel-bricks\":58762,\"trowel\":58761,\"truck-arrow-right\":58763,\"truck-bolt\":58320,\"truck-clock\":62604,\"truck-container-empty\":58037,\"truck-container\":62684,\"truck-droplet\":58764,\"truck-fast\":62603,\"truck-field-un\":58766,\"truck-field\":58765,\"truck-fire\":58970,\"truck-flatbed\":58038,\"truck-front\":58039,\"truck-ladder\":58967,\"truck-medical\":61689,\"truck-monster\":63035,\"truck-moving\":62687,\"truck-pickup\":63036,\"truck-plane\":58767,\"truck-plow\":63454,\"truck-ramp-box\":62686,\"truck-ramp-couch\":62685,\"truck-ramp\":62688,\"truck-tow\":58040,\"truck-utensils\":58920,\"truck\":61649,\"trumpet\":63715,\"tty-answer\":58041,\"tty\":61924,\"tugrik-sign\":58042,\"turkey\":63269,\"turkish-lira-sign\":58043,\"turn-down-left\":58161,\"turn-down-right\":58453,\"turn-down\":62398,\"turn-left-down\":58935,\"turn-left-up\":58936,\"turn-left\":58934,\"turn-right\":58937,\"turn-up\":62399,\"turntable\":63716,\"turtle\":63270,\"tv-music\":63718,\"tv-retro\":62465,\"tv\":62060,\"typewriter\":63719,\"u\":85,\"ufo-beam\":57416,\"ufo\":57415,\"umbrella-beach\":62922,\"umbrella-simple\":58044,\"umbrella\":61673,\"underline\":61645,\"unicorn\":63271,\"uniform-martial-arts\":58321,\"union\":63138,\"universal-access\":62106,\"unlock-keyhole\":61758,\"unlock\":61596,\"up-down-left-right\":61618,\"up-down\":62264,\"up-from-bracket\":58768,\"up-from-dotted-line\":58454,\"up-from-line\":62278,\"up-left\":58045,\"up-long\":62220,\"up-right-and-down-left-from-center\":62500,\"up-right-from-square\":62301,\"up-right\":58046,\"up-to-bracket\":58990,\"up-to-dotted-line\":58455,\"up-to-line\":62285,\"up\":62295,\"upload\":61587,\"usb-drive\":63721,\"user-alien\":57418,\"user-astronaut\":62715,\"user-beard-bolt\":59017,\"user-bounty-hunter\":58047,\"user-check\":62716,\"user-chef\":58322,\"user-clock\":62717,\"user-cowboy\":63722,\"user-crown\":63140,\"user-doctor-hair-long\":58457,\"user-doctor-hair\":58456,\"user-doctor-message\":63534,\"user-doctor\":61680,\"user-gear\":62718,\"user-graduate\":62721,\"user-group-crown\":63141,\"user-group-simple\":58883,\"user-group\":62720,\"user-hair-buns\":58323,\"user-hair-long\":58459,\"user-hair-mullet\":58460,\"user-hair\":58458,\"user-headset\":63533,\"user-helmet-safety\":63532,\"user-hoodie\":59018,\"user-injured\":63272,\"user-large-slash\":62714,\"user-large\":62470,\"user-lock\":62722,\"user-magnifying-glass\":58821,\"user-minus\":62723,\"user-music\":63723,\"user-ninja\":62724,\"user-nurse-hair-long\":58462,\"user-nurse-hair\":58461,\"user-nurse\":63535,\"user-pen\":62719,\"user-pilot-tie\":58049,\"user-pilot\":58048,\"user-plus\":62004,\"user-police-tie\":58164,\"user-police\":58163,\"user-robot-xmarks\":58535,\"user-robot\":57419,\"user-secret\":61979,\"user-shakespeare\":58050,\"user-shield\":62725,\"user-slash\":62726,\"user-tag\":62727,\"user-tie-hair-long\":58464,\"user-tie-hair\":58463,\"user-tie\":62728,\"user-unlock\":57432,\"user-visor\":57420,\"user-vneck-hair-long\":58467,\"user-vneck-hair\":58466,\"user-vneck\":58465,\"user-xmark\":62005,\"user\":61447,\"users-between-lines\":58769,\"users-gear\":62729,\"users-line\":58770,\"users-medical\":63536,\"users-rays\":58771,\"users-rectangle\":58772,\"users-slash\":57459,\"users-viewfinder\":58773,\"users\":61632,\"utensils-slash\":58468,\"utensils\":62183,\"utility-pole-double\":58052,\"utility-pole\":58051,\"v\":86,\"vacuum-robot\":57422,\"vacuum\":57421,\"value-absolute\":63142,\"van-shuttle\":62902,\"vault\":58053,\"vector-circle\":58054,\"vector-polygon\":58055,\"vector-square\":62923,\"vent-damper\":58469,\"venus-double\":61990,\"venus-mars\":61992,\"venus\":61985,\"vest-patches\":57478,\"vest\":57477,\"vial-circle-check\":58774,\"vial-virus\":58775,\"vial\":62610,\"vials\":62611,\"video-arrow-down-left\":58056,\"video-arrow-up-right\":58057,\"video-plus\":62689,\"video-slash\":62690,\"video\":61501,\"vihara\":63143,\"violin\":63725,\"virus-covid-slash\":58537,\"virus-covid\":58536,\"virus-slash\":57461,\"virus\":57460,\"viruses\":57462,\"voicemail\":63639,\"volcano\":63344,\"volleyball\":62559,\"volume-high\":61480,\"volume-low\":61479,\"volume-off\":61478,\"volume-slash\":62178,\"volume-xmark\":63145,\"volume\":63144,\"vr-cardboard\":63273,\"w\":87,\"waffle\":58470,\"wagon-covered\":63726,\"walker\":63537,\"walkie-talkie\":63727,\"wallet\":62805,\"wand-magic-sparkles\":58058,\"wand-magic\":61648,\"wand-sparkles\":63275,\"wand\":63274,\"warehouse-full\":62613,\"warehouse\":62612,\"washing-machine\":63640,\"watch-apple\":58059,\"watch-calculator\":63728,\"watch-fitness\":63038,\"watch-smart\":58060,\"watch\":62177,\"water-arrow-down\":63348,\"water-arrow-up\":63349,\"water-ladder\":62917,\"water\":63347,\"watermelon-slice\":58167,\"wave-pulse\":62968,\"wave-sine\":63641,\"wave-square\":63550,\"wave-triangle\":63642,\"wave\":58971,\"waveform-lines\":63730,\"waveform\":63729,\"waves-sine\":58973,\"web-awesome\":59010,\"webhook\":58837,\"weight-hanging\":62925,\"weight-scale\":62614,\"whale\":63276,\"wheat-awn-circle-exclamation\":58776,\"wheat-awn-slash\":58168,\"wheat-awn\":58061,\"wheat-slash\":58169,\"wheat\":63277,\"wheelchair-move\":58062,\"wheelchair\":61843,\"whiskey-glass-ice\":63393,\"whiskey-glass\":63392,\"whistle\":62560,\"wifi-exclamation\":58063,\"wifi-fair\":63147,\"wifi-slash\":63148,\"wifi-weak\":63146,\"wifi\":61931,\"wind-turbine\":63643,\"wind-warning\":63350,\"wind\":63278,\"window-flip\":62479,\"window-frame-open\":57424,\"window-frame\":57423,\"window-maximize\":62160,\"window-minimize\":62161,\"window-restore\":62162,\"window\":62478,\"windsock\":63351,\"wine-bottle\":63279,\"wine-glass-crack\":62651,\"wine-glass-empty\":62926,\"wine-glass\":62691,\"won-sign\":61785,\"worm\":58777,\"wreath-laurel\":58834,\"wreath\":63458,\"wrench-simple\":58065,\"wrench\":61613,\"x-ray\":62615,\"x\":88,\"xmark-large\":58779,\"xmark-to-slot\":63345,\"xmark\":61453,\"xmarks-lines\":58778,\"y\":89,\"yen-sign\":61783,\"yin-yang\":63149,\"z\":90}"
  },
  {
    "path": "packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_duotone-thin.json",
    "content": "{\"0\":48,\"1\":49,\"2\":50,\"3\":51,\"4\":52,\"5\":53,\"6\":54,\"7\":55,\"8\":56,\"9\":57,\"00\":58471,\"360-degrees\":58076,\"a\":65,\"abacus\":63040,\"accent-grave\":96,\"acorn\":63150,\"address-book\":62137,\"address-card\":62139,\"air-conditioner\":63732,\"airplay\":57481,\"alarm-clock\":62286,\"alarm-exclamation\":63555,\"alarm-plus\":63556,\"alarm-snooze\":63557,\"album-circle-plus\":58508,\"album-circle-user\":58509,\"album-collection-circle-plus\":58510,\"album-collection-circle-user\":58511,\"album-collection\":63648,\"album\":63647,\"alicorn\":63152,\"alien-8bit\":63734,\"alien\":63733,\"align-center\":61495,\"align-justify\":61497,\"align-left\":61494,\"align-right\":61496,\"align-slash\":63558,\"alt\":57482,\"amp-guitar\":63649,\"ampersand\":38,\"anchor-circle-check\":58538,\"anchor-circle-exclamation\":58539,\"anchor-circle-xmark\":58540,\"anchor-lock\":58541,\"anchor\":61757,\"angel\":63353,\"angle-90\":57485,\"angle-down\":61703,\"angle-left\":61700,\"angle-right\":61701,\"angle-up\":61702,\"angle\":57484,\"angles-down\":61699,\"angles-left\":61696,\"angles-right\":61697,\"angles-up-down\":58893,\"angles-up\":61698,\"ankh\":63044,\"ant\":59008,\"apartment\":58472,\"aperture\":58079,\"apostrophe\":39,\"apple-core\":57487,\"apple-whole\":62929,\"archway\":62807,\"arrow-down-1-9\":61794,\"arrow-down-9-1\":63622,\"arrow-down-a-z\":61789,\"arrow-down-arrow-up\":63619,\"arrow-down-big-small\":63628,\"arrow-down-from-arc\":58900,\"arrow-down-from-bracket\":58983,\"arrow-down-from-dotted-line\":57488,\"arrow-down-from-line\":62277,\"arrow-down-left-and-arrow-up-right-to-center\":57490,\"arrow-down-left\":57489,\"arrow-down-long\":61813,\"arrow-down-right\":57491,\"arrow-down-short-wide\":63620,\"arrow-down-small-big\":63629,\"arrow-down-square-triangle\":63625,\"arrow-down-to-arc\":58542,\"arrow-down-to-bracket\":57492,\"arrow-down-to-dotted-line\":57493,\"arrow-down-to-line\":62269,\"arrow-down-to-square\":57494,\"arrow-down-triangle-square\":63624,\"arrow-down-up-across-line\":58543,\"arrow-down-up-lock\":58544,\"arrow-down-wide-short\":61792,\"arrow-down-z-a\":63617,\"arrow-down\":61539,\"arrow-left-from-arc\":58901,\"arrow-left-from-bracket\":58984,\"arrow-left-from-line\":62276,\"arrow-left-long-to-line\":58324,\"arrow-left-long\":61815,\"arrow-left-to-arc\":58902,\"arrow-left-to-bracket\":58985,\"arrow-left-to-line\":62270,\"arrow-left\":61536,\"arrow-pointer\":62021,\"arrow-progress\":58847,\"arrow-right-arrow-left\":61676,\"arrow-right-from-arc\":58545,\"arrow-right-from-bracket\":61579,\"arrow-right-from-line\":62275,\"arrow-right-long-to-line\":58325,\"arrow-right-long\":61816,\"arrow-right-to-arc\":58546,\"arrow-right-to-bracket\":61584,\"arrow-right-to-city\":58547,\"arrow-right-to-line\":62272,\"arrow-right\":61537,\"arrow-rotate-left\":61666,\"arrow-rotate-right\":61470,\"arrow-trend-down\":57495,\"arrow-trend-up\":57496,\"arrow-turn-down-left\":58081,\"arrow-turn-down-right\":58326,\"arrow-turn-down\":61769,\"arrow-turn-left-down\":58931,\"arrow-turn-left-up\":58932,\"arrow-turn-left\":58930,\"arrow-turn-right\":58933,\"arrow-turn-up\":61768,\"arrow-up-1-9\":61795,\"arrow-up-9-1\":63623,\"arrow-up-a-z\":61790,\"arrow-up-arrow-down\":57497,\"arrow-up-big-small\":63630,\"arrow-up-from-arc\":58548,\"arrow-up-from-bracket\":57498,\"arrow-up-from-dotted-line\":57499,\"arrow-up-from-ground-water\":58549,\"arrow-up-from-line\":62274,\"arrow-up-from-square\":57500,\"arrow-up-from-water-pump\":58550,\"arrow-up-left-from-circle\":57502,\"arrow-up-left\":57501,\"arrow-up-long\":61814,\"arrow-up-right-and-arrow-down-left-from-center\":57504,\"arrow-up-right-dots\":58551,\"arrow-up-right-from-square\":61582,\"arrow-up-right\":57503,\"arrow-up-short-wide\":63621,\"arrow-up-small-big\":63631,\"arrow-up-square-triangle\":63627,\"arrow-up-to-arc\":58903,\"arrow-up-to-bracket\":58986,\"arrow-up-to-dotted-line\":57505,\"arrow-up-to-line\":62273,\"arrow-up-triangle-square\":63626,\"arrow-up-wide-short\":61793,\"arrow-up-z-a\":63618,\"arrow-up\":61538,\"arrows-cross\":57506,\"arrows-down-to-line\":58552,\"arrows-down-to-people\":58553,\"arrows-from-dotted-line\":57507,\"arrows-from-line\":57508,\"arrows-left-right-to-line\":58554,\"arrows-left-right\":61566,\"arrows-maximize\":62237,\"arrows-minimize\":57509,\"arrows-repeat-1\":62310,\"arrows-repeat\":62308,\"arrows-retweet\":62305,\"arrows-rotate-reverse\":58928,\"arrows-rotate\":61473,\"arrows-spin\":58555,\"arrows-split-up-and-left\":58556,\"arrows-to-circle\":58557,\"arrows-to-dot\":58558,\"arrows-to-dotted-line\":57510,\"arrows-to-eye\":58559,\"arrows-to-line\":57511,\"arrows-turn-right\":58560,\"arrows-turn-to-dots\":58561,\"arrows-up-down-left-right\":61511,\"arrows-up-down\":61565,\"arrows-up-to-line\":58562,\"asterisk\":42,\"at\":64,\"atom-simple\":62931,\"atom\":62930,\"audio-description-slash\":57512,\"audio-description\":62110,\"austral-sign\":57513,\"avocado\":57514,\"award-simple\":57515,\"award\":62809,\"axe-battle\":63155,\"axe\":63154,\"b\":66,\"baby-carriage\":63357,\"baby\":63356,\"backpack\":62932,\"backward-fast\":61513,\"backward-step\":61512,\"backward\":61514,\"bacon\":63461,\"bacteria\":57433,\"bacterium\":57434,\"badge-check\":62262,\"badge-dollar\":63045,\"badge-percent\":63046,\"badge-sheriff\":63650,\"badge\":62261,\"badger-honey\":63156,\"badminton\":58170,\"bag-seedling\":58866,\"bag-shopping-minus\":58960,\"bag-shopping-plus\":58961,\"bag-shopping\":62096,\"bagel\":58327,\"bags-shopping\":63559,\"baguette\":58328,\"bahai\":63078,\"baht-sign\":57516,\"ball-pile\":63358,\"balloon\":58083,\"balloons\":58084,\"ballot-check\":63283,\"ballot\":63282,\"ban-bug\":63481,\"ban-parking\":62998,\"ban-smoking\":62797,\"ban\":61534,\"banana\":58085,\"bandage\":62562,\"bangladeshi-taka-sign\":58086,\"banjo\":63651,\"barcode-read\":62564,\"barcode-scan\":62565,\"barcode\":61482,\"bars-filter\":57517,\"bars-progress\":63528,\"bars-sort\":57518,\"bars-staggered\":62800,\"bars\":61641,\"baseball-bat-ball\":62514,\"baseball\":62515,\"basket-shopping-minus\":58962,\"basket-shopping-plus\":58963,\"basket-shopping-simple\":57519,\"basket-shopping\":62097,\"basketball-hoop\":62517,\"basketball\":62516,\"bat\":63157,\"bath\":62157,\"battery-bolt\":62326,\"battery-empty\":62020,\"battery-exclamation\":57520,\"battery-full\":62016,\"battery-half\":62018,\"battery-low\":57521,\"battery-quarter\":62019,\"battery-slash\":62327,\"battery-three-quarters\":62017,\"bed-bunk\":63736,\"bed-empty\":63737,\"bed-front\":63735,\"bed-pulse\":62599,\"bed\":62006,\"bee\":57522,\"beer-mug-empty\":61692,\"beer-mug\":57523,\"bell-concierge\":62818,\"bell-exclamation\":63560,\"bell-on\":63738,\"bell-plus\":63561,\"bell-ring\":58924,\"bell-school-slash\":62934,\"bell-school\":62933,\"bell-slash\":61942,\"bell\":61683,\"bells\":63359,\"bench-tree\":58087,\"bezier-curve\":62811,\"bicycle\":61958,\"billboard\":58829,\"bin-bottles-recycle\":58870,\"bin-bottles\":58869,\"bin-recycle\":58871,\"binary-circle-check\":58172,\"binary-lock\":58173,\"binary-slash\":58174,\"binary\":58171,\"binoculars\":61925,\"biohazard\":63360,\"bird\":58473,\"bitcoin-sign\":57524,\"blanket-fire\":58330,\"blanket\":62616,\"blender-phone\":63158,\"blender\":62743,\"blinds-open\":63740,\"blinds-raised\":63741,\"blinds\":63739,\"block-brick-fire\":58332,\"block-brick\":58331,\"block-question\":58333,\"block-quote\":57525,\"block\":58474,\"blog\":63361,\"blueberries\":58088,\"bluetooth\":62099,\"bold\":61490,\"bolt-auto\":57526,\"bolt-lightning\":57527,\"bolt-slash\":57528,\"bolt\":61671,\"bomb\":61922,\"bone-break\":62936,\"bone\":62935,\"bong\":62812,\"book-arrow-right\":57529,\"book-arrow-up\":57530,\"book-atlas\":62808,\"book-bible\":63047,\"book-blank\":62937,\"book-bookmark\":57531,\"book-circle-arrow-right\":57532,\"book-circle-arrow-up\":57533,\"book-copy\":57534,\"book-font\":57535,\"book-heart\":62617,\"book-journal-whills\":63082,\"book-medical\":63462,\"book-open-cover\":57536,\"book-open-reader\":62938,\"book-open\":62744,\"book-quran\":63111,\"book-section\":57537,\"book-skull\":63159,\"book-sparkles\":63160,\"book-tanakh\":63527,\"book-user\":63463,\"book\":61485,\"bookmark-slash\":57538,\"bookmark\":61486,\"books-medical\":63464,\"books\":62939,\"boombox\":63653,\"boot-heeled\":58175,\"boot\":63362,\"booth-curtain\":63284,\"border-all\":63564,\"border-bottom-right\":63572,\"border-bottom\":63565,\"border-center-h\":63644,\"border-center-v\":63645,\"border-inner\":63566,\"border-left\":63567,\"border-none\":63568,\"border-outer\":63569,\"border-right\":63570,\"border-top-left\":63571,\"border-top\":63573,\"bore-hole\":58563,\"bottle-baby\":58995,\"bottle-droplet\":58564,\"bottle-water\":58565,\"bow-arrow\":63161,\"bowl-chopsticks-noodles\":58090,\"bowl-chopsticks\":58089,\"bowl-food\":58566,\"bowl-hot\":63523,\"bowl-rice\":58091,\"bowl-scoop\":58334,\"bowl-scoops\":58335,\"bowl-soft-serve\":58475,\"bowl-spoon\":58336,\"bowling-ball-pin\":57539,\"bowling-ball\":62518,\"bowling-pins\":62519,\"box-archive\":61831,\"box-ballot\":63285,\"box-check\":62567,\"box-circle-check\":57540,\"box-dollar\":62624,\"box-heart\":62621,\"box-open-full\":62620,\"box-open\":62622,\"box-taped\":62618,\"box-tissue\":57435,\"box\":62566,\"boxes-packing\":58567,\"boxes-stacked\":62568,\"boxing-glove\":62520,\"bracket-curly-right\":125,\"bracket-curly\":123,\"bracket-round-right\":41,\"bracket-round\":40,\"bracket-square-right\":93,\"bracket-square\":91,\"brackets-curly\":63466,\"brackets-round\":57541,\"brackets-square\":63465,\"braille\":62113,\"brain-arrow-curved-right\":63095,\"brain-circuit\":57542,\"brain\":62940,\"brake-warning\":57543,\"brazilian-real-sign\":58476,\"bread-loaf\":63467,\"bread-slice-butter\":58337,\"bread-slice\":63468,\"bridge-circle-check\":58569,\"bridge-circle-exclamation\":58570,\"bridge-circle-xmark\":58571,\"bridge-lock\":58572,\"bridge-suspension\":58573,\"bridge-water\":58574,\"bridge\":58568,\"briefcase-arrow-right\":58098,\"briefcase-blank\":57544,\"briefcase-medical\":62569,\"briefcase\":61617,\"brightness-low\":57546,\"brightness\":57545,\"bring-forward\":63574,\"bring-front\":63575,\"broccoli\":58338,\"broom-ball\":62552,\"broom-wide\":58833,\"broom\":62746,\"browser\":62334,\"browsers\":57547,\"brush\":62813,\"bucket\":58575,\"bug-slash\":58512,\"bug\":61832,\"bugs\":58576,\"building-circle-arrow-right\":58577,\"building-circle-check\":58578,\"building-circle-exclamation\":58579,\"building-circle-xmark\":58580,\"building-columns\":61852,\"building-flag\":58581,\"building-lock\":58582,\"building-magnifying-glass\":58908,\"building-memo\":58910,\"building-ngo\":58583,\"building-shield\":58584,\"building-un\":58585,\"building-user\":58586,\"building-wheat\":58587,\"building\":61869,\"buildings\":57548,\"bulldozer\":58965,\"bullhorn\":61601,\"bullseye-arrow\":63048,\"bullseye-pointer\":63049,\"bullseye\":61760,\"buoy-mooring\":58806,\"buoy\":58805,\"burger-cheese\":63473,\"burger-fries\":57549,\"burger-glass\":57550,\"burger-lettuce\":58339,\"burger-soda\":63576,\"burger\":63493,\"burrito\":63469,\"burst\":58588,\"bus-school\":62941,\"bus-simple\":62814,\"bus\":61959,\"business-time\":63050,\"butter\":58340,\"c\":67,\"cabin\":58477,\"cabinet-filing\":63051,\"cable-car\":63450,\"cactus\":63655,\"caduceus\":59009,\"cake-candles\":61949,\"cake-slice\":58341,\"calculator-simple\":63052,\"calculator\":61932,\"calendar-arrow-down\":57552,\"calendar-arrow-up\":57553,\"calendar-check\":62068,\"calendar-circle-exclamation\":58478,\"calendar-circle-minus\":58479,\"calendar-circle-plus\":58480,\"calendar-circle-user\":58481,\"calendar-clock\":57554,\"calendar-day\":63363,\"calendar-days\":61555,\"calendar-exclamation\":62260,\"calendar-heart\":57555,\"calendar-image\":57556,\"calendar-lines-pen\":58482,\"calendar-lines\":57557,\"calendar-minus\":62066,\"calendar-pen\":62259,\"calendar-plus\":62065,\"calendar-range\":57558,\"calendar-star\":63286,\"calendar-users\":58850,\"calendar-week\":63364,\"calendar-xmark\":62067,\"calendar\":61747,\"calendars\":57559,\"camcorder\":63656,\"camera-cctv\":63660,\"camera-movie\":63657,\"camera-polaroid\":63658,\"camera-retro\":61571,\"camera-rotate\":57560,\"camera-security\":63742,\"camera-slash\":57561,\"camera-viewfinder\":57562,\"camera-web-slash\":63539,\"camera-web\":63538,\"camera\":61488,\"campfire\":63162,\"campground\":63163,\"can-food\":58342,\"candle-holder\":63164,\"candy-bar\":58344,\"candy-cane\":63366,\"candy-corn\":63165,\"candy\":58343,\"cannabis\":62815,\"cannon\":58946,\"capsules\":62571,\"car-battery\":62943,\"car-bolt\":58177,\"car-building\":63577,\"car-bump\":62944,\"car-burst\":62945,\"car-bus\":63578,\"car-circle-bolt\":58178,\"car-garage\":62946,\"car-mirrors\":58179,\"car-on\":58589,\"car-rear\":62942,\"car-side-bolt\":58180,\"car-side\":62948,\"car-tilt\":62949,\"car-tunnel\":58590,\"car-wash\":62950,\"car-wrench\":62947,\"car\":61881,\"caravan-simple\":57344,\"caravan\":63743,\"card-club\":58345,\"card-diamond\":58346,\"card-heart\":58347,\"card-spade\":58348,\"cards-blank\":58591,\"cards\":58349,\"caret-down\":61655,\"caret-left\":61657,\"caret-right\":61658,\"caret-up\":61656,\"carpool\":59036,\"carrot\":63367,\"cars\":63579,\"cart-arrow-down\":61976,\"cart-arrow-up\":58350,\"cart-circle-arrow-down\":58351,\"cart-circle-arrow-up\":58352,\"cart-circle-check\":58353,\"cart-circle-exclamation\":58354,\"cart-circle-plus\":58355,\"cart-circle-xmark\":58356,\"cart-flatbed-boxes\":62581,\"cart-flatbed-empty\":62582,\"cart-flatbed-suitcase\":62877,\"cart-flatbed\":62580,\"cart-minus\":57563,\"cart-plus\":61975,\"cart-shopping-fast\":57564,\"cart-shopping\":61562,\"cart-xmark\":57565,\"cash-register\":63368,\"cassette-betamax\":63652,\"cassette-tape\":63659,\"cassette-vhs\":63724,\"castle\":57566,\"cat-space\":57345,\"cat\":63166,\"cauldron\":63167,\"cedi-sign\":57567,\"cent-sign\":58357,\"certificate\":61603,\"chair-office\":63169,\"chair\":63168,\"chalkboard-user\":62748,\"chalkboard\":62747,\"champagne-glass\":63390,\"champagne-glasses\":63391,\"charging-station\":62951,\"chart-area\":61950,\"chart-bar\":61568,\"chart-bullet\":57569,\"chart-candlestick\":57570,\"chart-column\":57571,\"chart-diagram\":59029,\"chart-fft\":59038,\"chart-gantt\":57572,\"chart-kanban\":58959,\"chart-line-down\":63053,\"chart-line-up-down\":58839,\"chart-line-up\":57573,\"chart-line\":61953,\"chart-mixed-up-circle-currency\":58840,\"chart-mixed-up-circle-dollar\":58841,\"chart-mixed\":63043,\"chart-network\":63370,\"chart-pie-simple-circle-currency\":58884,\"chart-pie-simple-circle-dollar\":58885,\"chart-pie-simple\":63054,\"chart-pie\":61952,\"chart-pyramid\":57574,\"chart-radar\":57575,\"chart-scatter-3d\":57576,\"chart-scatter-bubble\":57577,\"chart-scatter\":63470,\"chart-simple-horizontal\":58484,\"chart-simple\":58483,\"chart-sine\":59037,\"chart-tree-map\":57578,\"chart-user\":63139,\"chart-waterfall\":57579,\"check-double\":62816,\"check-to-slot\":63346,\"check\":61452,\"cheese-swiss\":63472,\"cheese\":63471,\"cherries\":57580,\"chess-bishop-piece\":62523,\"chess-bishop\":62522,\"chess-board\":62524,\"chess-clock-flip\":62526,\"chess-clock\":62525,\"chess-king-piece\":62528,\"chess-king\":62527,\"chess-knight-piece\":62530,\"chess-knight\":62529,\"chess-pawn-piece\":62532,\"chess-pawn\":62531,\"chess-queen-piece\":62534,\"chess-queen\":62533,\"chess-rook-piece\":62536,\"chess-rook\":62535,\"chess\":62521,\"chestnut\":58358,\"chevron-down\":61560,\"chevron-left\":61523,\"chevron-right\":61524,\"chevron-up\":61559,\"chevrons-down\":62242,\"chevrons-left\":62243,\"chevrons-right\":62244,\"chevrons-up\":62245,\"chf-sign\":58882,\"child-combatant\":58592,\"child-dress\":58780,\"child-reaching\":58781,\"child\":61870,\"children\":58593,\"chimney\":63371,\"chopsticks\":58359,\"church\":62749,\"circle-0\":57581,\"circle-1\":57582,\"circle-2\":57583,\"circle-3\":57584,\"circle-4\":57585,\"circle-5\":57586,\"circle-6\":57587,\"circle-7\":57588,\"circle-8\":57589,\"circle-9\":57590,\"circle-a\":57591,\"circle-ampersand\":57592,\"circle-arrow-down-left\":57593,\"circle-arrow-down-right\":57594,\"circle-arrow-down\":61611,\"circle-arrow-left\":61608,\"circle-arrow-right\":61609,\"circle-arrow-up-left\":57595,\"circle-arrow-up-right\":57596,\"circle-arrow-up\":61610,\"circle-b\":57597,\"circle-bolt\":57598,\"circle-book-open\":57599,\"circle-bookmark\":57600,\"circle-c\":57601,\"circle-calendar\":57602,\"circle-camera\":57603,\"circle-caret-down\":62253,\"circle-caret-left\":62254,\"circle-caret-right\":62256,\"circle-caret-up\":62257,\"circle-check\":61528,\"circle-chevron-down\":61754,\"circle-chevron-left\":61751,\"circle-chevron-right\":61752,\"circle-chevron-up\":61753,\"circle-d\":57604,\"circle-dashed\":57605,\"circle-divide\":57606,\"circle-dollar-to-slot\":62649,\"circle-dollar\":62184,\"circle-dot\":61842,\"circle-down-left\":57607,\"circle-down-right\":57608,\"circle-down\":62296,\"circle-e\":57609,\"circle-ellipsis-vertical\":57611,\"circle-ellipsis\":57610,\"circle-envelope\":57612,\"circle-euro\":58830,\"circle-exclamation-check\":57613,\"circle-exclamation\":61546,\"circle-f\":57614,\"circle-g\":57615,\"circle-gf\":59007,\"circle-h\":62590,\"circle-half-stroke\":61506,\"circle-half\":57616,\"circle-heart\":62663,\"circle-i\":57617,\"circle-info\":61530,\"circle-j\":57618,\"circle-k\":57619,\"circle-l\":57620,\"circle-left\":62297,\"circle-location-arrow\":62978,\"circle-m\":57621,\"circle-microphone-lines\":57623,\"circle-microphone\":57622,\"circle-minus\":61526,\"circle-n\":57624,\"circle-nodes\":58594,\"circle-notch\":61902,\"circle-o\":57625,\"circle-p\":57626,\"circle-parking\":62997,\"circle-pause\":62091,\"circle-phone-flip\":57628,\"circle-phone-hangup\":57629,\"circle-phone\":57627,\"circle-play\":61764,\"circle-plus\":61525,\"circle-q\":57630,\"circle-quarter-stroke\":58835,\"circle-quarter\":57631,\"circle-quarters\":58360,\"circle-question\":61529,\"circle-r\":57632,\"circle-radiation\":63418,\"circle-right\":62298,\"circle-s\":57633,\"circle-small\":57634,\"circle-sort-down\":57393,\"circle-sort-up\":57394,\"circle-sort\":57392,\"circle-star\":57635,\"circle-sterling\":58831,\"circle-stop\":62093,\"circle-t\":57636,\"circle-three-quarters-stroke\":58836,\"circle-three-quarters\":57637,\"circle-trash\":57638,\"circle-u\":57639,\"circle-up-left\":57640,\"circle-up-right\":57641,\"circle-up\":62299,\"circle-user\":62141,\"circle-v\":57642,\"circle-video\":57643,\"circle-w\":57644,\"circle-waveform-lines\":57645,\"circle-wifi-circle-wifi\":59006,\"circle-wifi\":59005,\"circle-x\":57646,\"circle-xmark\":61527,\"circle-y\":57647,\"circle-yen\":58832,\"circle-z\":57648,\"circle\":61713,\"circles-overlap-3\":59041,\"circles-overlap\":58880,\"citrus-slice\":58101,\"citrus\":58100,\"city\":63055,\"clapperboard-play\":57650,\"clapperboard\":57649,\"clarinet\":63661,\"claw-marks\":63170,\"clipboard-check\":62572,\"clipboard-list-check\":63287,\"clipboard-list\":62573,\"clipboard-medical\":57651,\"clipboard-prescription\":62952,\"clipboard-question\":58595,\"clipboard-user\":63475,\"clipboard\":62248,\"clock-desk\":57652,\"clock-eight-thirty\":58182,\"clock-eight\":58181,\"clock-eleven-thirty\":58184,\"clock-eleven\":58183,\"clock-five-thirty\":58186,\"clock-five\":58185,\"clock-four-thirty\":58187,\"clock-nine-thirty\":58189,\"clock-nine\":58188,\"clock-one-thirty\":58191,\"clock-one\":58190,\"clock-rotate-left\":61914,\"clock-seven-thirty\":58193,\"clock-seven\":58192,\"clock-six-thirty\":58195,\"clock-six\":58194,\"clock-ten-thirty\":58197,\"clock-ten\":58196,\"clock-three-thirty\":58199,\"clock-three\":58198,\"clock-twelve-thirty\":58201,\"clock-twelve\":58200,\"clock-two-thirty\":58203,\"clock-two\":58202,\"clock\":61463,\"clone\":62029,\"closed-captioning-slash\":57653,\"closed-captioning\":61962,\"clothes-hanger\":57654,\"cloud-arrow-down\":61677,\"cloud-arrow-up\":61678,\"cloud-binary\":58881,\"cloud-bolt-moon\":63341,\"cloud-bolt-sun\":63342,\"cloud-bolt\":63340,\"cloud-check\":58204,\"cloud-drizzle\":63288,\"cloud-exclamation\":58513,\"cloud-fog\":63310,\"cloud-hail-mixed\":63290,\"cloud-hail\":63289,\"cloud-meatball\":63291,\"cloud-minus\":58205,\"cloud-moon-rain\":63292,\"cloud-moon\":63171,\"cloud-music\":63662,\"cloud-plus\":58206,\"cloud-question\":58514,\"cloud-rain\":63293,\"cloud-rainbow\":63294,\"cloud-showers-heavy\":63296,\"cloud-showers-water\":58596,\"cloud-showers\":63295,\"cloud-slash\":57655,\"cloud-sleet\":63297,\"cloud-snow\":63298,\"cloud-sun-rain\":63299,\"cloud-sun\":63172,\"cloud-word\":57656,\"cloud-xmark\":58207,\"cloud\":61634,\"clouds-moon\":63301,\"clouds-sun\":63302,\"clouds\":63300,\"clover\":57657,\"club\":62247,\"coconut\":58102,\"code-branch\":61734,\"code-commit\":62342,\"code-compare\":57658,\"code-fork\":57659,\"code-merge\":62343,\"code-pull-request-closed\":58361,\"code-pull-request-draft\":58362,\"code-pull-request\":57660,\"code-simple\":57661,\"code\":61729,\"coffee-bean\":57662,\"coffee-beans\":57663,\"coffee-pot\":57346,\"coffin-cross\":57425,\"coffin\":63174,\"coin-blank\":58363,\"coin-front\":58364,\"coin-vertical\":58365,\"coin\":63580,\"coins\":62750,\"colon-sign\":57664,\"colon\":58,\"columns-3\":58209,\"comet\":57347,\"comma\":44,\"command\":57666,\"comment-arrow-down\":57667,\"comment-arrow-up-right\":57669,\"comment-arrow-up\":57668,\"comment-captions\":57670,\"comment-check\":62636,\"comment-code\":57671,\"comment-dollar\":63057,\"comment-dots\":62637,\"comment-exclamation\":62639,\"comment-heart\":58824,\"comment-image\":57672,\"comment-lines\":62640,\"comment-medical\":63477,\"comment-middle-top\":57674,\"comment-middle\":57673,\"comment-minus\":62641,\"comment-music\":63664,\"comment-nodes\":59030,\"comment-pen\":62638,\"comment-plus\":62642,\"comment-question\":57675,\"comment-quote\":57676,\"comment-slash\":62643,\"comment-smile\":62644,\"comment-sms\":63437,\"comment-text\":57677,\"comment-xmark\":62645,\"comment\":61557,\"comments-dollar\":63059,\"comments-question-check\":57679,\"comments-question\":57678,\"comments\":61574,\"compact-disc\":62751,\"compass-drafting\":62824,\"compass-slash\":62953,\"compass\":61774,\"compress-wide\":62246,\"compress\":61542,\"computer-classic\":63665,\"computer-mouse-scrollwheel\":63693,\"computer-mouse\":63692,\"computer-speaker\":63666,\"computer\":58597,\"container-storage\":62647,\"conveyor-belt-arm\":58872,\"conveyor-belt-boxes\":62575,\"conveyor-belt-empty\":57680,\"conveyor-belt\":62574,\"cookie-bite\":62820,\"cookie\":62819,\"copy\":61637,\"copyright\":61945,\"corn\":63175,\"corner\":58366,\"couch\":62648,\"court-sport\":58947,\"cow\":63176,\"cowbell-circle-plus\":63668,\"cowbell\":63667,\"crab\":58367,\"crate-apple\":63153,\"crate-empty\":57681,\"credit-card-blank\":62345,\"credit-card-front\":62346,\"credit-card\":61597,\"cricket-bat-ball\":62537,\"croissant\":63478,\"crop-simple\":62821,\"crop\":61733,\"cross\":63060,\"crosshairs-simple\":58783,\"crosshairs\":61531,\"crow\":62752,\"crown\":62753,\"crutch\":63479,\"crutches\":63480,\"cruzeiro-sign\":57682,\"crystal-ball\":58210,\"cube\":61874,\"cubes-stacked\":58598,\"cubes\":61875,\"cucumber\":58369,\"cup-straw-swoosh\":58212,\"cup-straw\":58211,\"cup-togo\":63173,\"cupcake\":58370,\"curling-stone\":62538,\"custard\":58371,\"d\":68,\"dagger\":63179,\"dash\":58372,\"database\":61888,\"deer-rudolph\":63375,\"deer\":63374,\"delete-left\":62810,\"delete-right\":57684,\"democrat\":63303,\"desktop-arrow-down\":57685,\"desktop\":62352,\"dharmachakra\":63061,\"diagram-cells\":58485,\"diagram-lean-canvas\":57686,\"diagram-nested\":57687,\"diagram-next\":58486,\"diagram-predecessor\":58487,\"diagram-previous\":58488,\"diagram-project\":62786,\"diagram-sankey\":57688,\"diagram-subtask\":58489,\"diagram-successor\":58490,\"diagram-venn\":57690,\"dial-high\":57692,\"dial-low\":57693,\"dial-max\":57694,\"dial-med-low\":57696,\"dial-med\":57695,\"dial-min\":57697,\"dial-off\":57698,\"dial\":57691,\"diamond-exclamation\":58373,\"diamond-half-stroke\":58808,\"diamond-half\":58807,\"diamond-turn-right\":62955,\"diamond\":61977,\"diamonds-4\":59019,\"dice-d10\":63181,\"dice-d12\":63182,\"dice-d20\":63183,\"dice-d4\":63184,\"dice-d6\":63185,\"dice-d8\":63186,\"dice-five\":62755,\"dice-four\":62756,\"dice-one\":62757,\"dice-six\":62758,\"dice-three\":62759,\"dice-two\":62760,\"dice\":62754,\"dinosaur\":58878,\"diploma\":62954,\"disc-drive\":63669,\"disease\":63482,\"display-arrow-down\":57700,\"display-chart-up-circle-currency\":58853,\"display-chart-up-circle-dollar\":58854,\"display-chart-up\":58851,\"display-code\":57701,\"display-medical\":57702,\"display-slash\":58106,\"display\":57699,\"distribute-spacing-horizontal\":58213,\"distribute-spacing-vertical\":58214,\"ditto\":34,\"divide\":62761,\"dna\":62577,\"do-not-enter\":62956,\"dog-leashed\":63188,\"dog\":63187,\"dollar-sign\":36,\"dolly-empty\":62579,\"dolly\":62578,\"dolphin\":57704,\"dong-sign\":57705,\"donut\":58374,\"door-closed\":62762,\"door-open\":62763,\"dove\":62650,\"down-from-bracket\":58987,\"down-from-dotted-line\":58375,\"down-from-line\":62281,\"down-left-and-up-right-to-center\":62498,\"down-left\":57706,\"down-long\":62217,\"down-right\":57707,\"down-to-bracket\":58599,\"down-to-dotted-line\":58376,\"down-to-line\":62282,\"down\":62292,\"download\":61465,\"dragon\":63189,\"draw-circle\":62957,\"draw-polygon\":62958,\"draw-square\":62959,\"dreidel\":63378,\"drone-front\":63584,\"drone\":63583,\"droplet-degree\":63304,\"droplet-percent\":63312,\"droplet-slash\":62919,\"droplet\":61507,\"drum-steelpan\":62826,\"drum\":62825,\"drumstick-bite\":63191,\"drumstick\":63190,\"dryer-heat\":63586,\"dryer\":63585,\"duck\":63192,\"dumbbell\":62539,\"dumpster-fire\":63380,\"dumpster\":63379,\"dungeon\":63193,\"e\":69,\"ear-deaf\":62116,\"ear-listen\":62114,\"ear-muffs\":63381,\"ear\":62960,\"earth-africa\":62844,\"earth-americas\":62845,\"earth-asia\":62846,\"earth-europe\":63394,\"earth-oceania\":58491,\"eclipse\":63305,\"egg-fried\":63484,\"egg\":63483,\"eggplant\":57708,\"eject\":61522,\"elephant\":63194,\"elevator\":57709,\"ellipsis-stroke-vertical\":62364,\"ellipsis-stroke\":62363,\"ellipsis-vertical\":61762,\"ellipsis\":61761,\"empty-set\":63062,\"engine-warning\":62962,\"engine\":57710,\"envelope-circle-check\":58600,\"envelope-dot\":57711,\"envelope-open-dollar\":63063,\"envelope-open-text\":63064,\"envelope-open\":62134,\"envelope\":61664,\"envelopes-bulk\":63092,\"envelopes\":57712,\"equals\":61,\"eraser\":61741,\"escalator\":57713,\"ethernet\":63382,\"euro-sign\":61779,\"excavator\":58966,\"exclamation\":33,\"expand-wide\":62240,\"expand\":61541,\"explosion\":58601,\"eye-dropper-full\":57714,\"eye-dropper-half\":57715,\"eye-dropper\":61947,\"eye-evil\":63195,\"eye-low-vision\":62120,\"eye-slash\":61552,\"eye\":61550,\"eyes\":58215,\"f\":70,\"face-angry-horns\":58216,\"face-angry\":62806,\"face-anguished\":58217,\"face-anxious-sweat\":58218,\"face-astonished\":58219,\"face-awesome\":58377,\"face-beam-hand-over-mouth\":58492,\"face-clouds\":58493,\"face-confounded\":58220,\"face-confused\":58221,\"face-cowboy-hat\":58222,\"face-diagonal-mouth\":58494,\"face-disappointed\":58223,\"face-disguise\":58224,\"face-dizzy\":62823,\"face-dotted\":58495,\"face-downcast-sweat\":58225,\"face-drooling\":58226,\"face-exhaling\":58496,\"face-explode\":58110,\"face-expressionless\":58227,\"face-eyes-xmarks\":58228,\"face-fearful\":58229,\"face-flushed\":62841,\"face-frown-open\":62842,\"face-frown-slight\":58230,\"face-frown\":61721,\"face-glasses\":58231,\"face-grimace\":62847,\"face-grin-beam-sweat\":62851,\"face-grin-beam\":62850,\"face-grin-hearts\":62852,\"face-grin-squint-tears\":62854,\"face-grin-squint\":62853,\"face-grin-stars\":62855,\"face-grin-tears\":62856,\"face-grin-tongue-squint\":62858,\"face-grin-tongue-wink\":62859,\"face-grin-tongue\":62857,\"face-grin-wide\":62849,\"face-grin-wink\":62860,\"face-grin\":62848,\"face-hand-over-mouth\":58232,\"face-hand-peeking\":58497,\"face-hand-yawn\":58233,\"face-head-bandage\":58234,\"face-holding-back-tears\":58498,\"face-hushed\":58235,\"face-icicles\":58236,\"face-kiss-beam\":62871,\"face-kiss-closed-eyes\":58237,\"face-kiss-wink-heart\":62872,\"face-kiss\":62870,\"face-laugh-beam\":62874,\"face-laugh-squint\":62875,\"face-laugh-wink\":62876,\"face-laugh\":62873,\"face-lying\":58238,\"face-mask\":58239,\"face-meh-blank\":62884,\"face-meh\":61722,\"face-melting\":58499,\"face-monocle\":58240,\"face-nauseated\":58241,\"face-nose-steam\":58242,\"face-party\":58243,\"face-pensive\":58244,\"face-persevering\":58245,\"face-pleading\":58246,\"face-pouting\":58247,\"face-raised-eyebrow\":58248,\"face-relieved\":58249,\"face-rolling-eyes\":62885,\"face-sad-cry\":62899,\"face-sad-sweat\":58250,\"face-sad-tear\":62900,\"face-saluting\":58500,\"face-scream\":58251,\"face-shush\":58252,\"face-sleeping\":58253,\"face-sleepy\":58254,\"face-smile-beam\":62904,\"face-smile-halo\":58255,\"face-smile-hearts\":58256,\"face-smile-horns\":58257,\"face-smile-plus\":62905,\"face-smile-relaxed\":58258,\"face-smile-tear\":58259,\"face-smile-tongue\":58260,\"face-smile-upside-down\":58261,\"face-smile-wink\":62682,\"face-smile\":61720,\"face-smiling-hands\":58262,\"face-smirking\":58263,\"face-spiral-eyes\":58501,\"face-sunglasses\":58264,\"face-surprise\":62914,\"face-swear\":58265,\"face-thermometer\":58266,\"face-thinking\":58267,\"face-tired\":62920,\"face-tissue\":58268,\"face-tongue-money\":58269,\"face-tongue-sweat\":58270,\"face-unamused\":58271,\"face-viewfinder\":58111,\"face-vomit\":58272,\"face-weary\":58273,\"face-woozy\":58274,\"face-worried\":58275,\"face-zany\":58276,\"face-zipper\":58277,\"falafel\":58378,\"family-dress\":58113,\"family-pants\":58114,\"family\":58112,\"fan-table\":57348,\"fan\":63587,\"farm\":63588,\"faucet-drip\":57350,\"faucet\":57349,\"fax\":61868,\"feather-pointed\":62827,\"feather\":62765,\"fence\":58115,\"ferris-wheel\":57716,\"ferry\":58602,\"field-hockey-stick-ball\":62540,\"file-arrow-down\":62829,\"file-arrow-up\":62836,\"file-audio\":61895,\"file-binary\":57717,\"file-cad\":58994,\"file-certificate\":62963,\"file-chart-column\":63065,\"file-chart-pie\":63066,\"file-check\":62230,\"file-circle-check\":58784,\"file-circle-exclamation\":58603,\"file-circle-info\":58515,\"file-circle-minus\":58605,\"file-circle-plus\":58516,\"file-circle-question\":58607,\"file-circle-xmark\":58785,\"file-code\":61897,\"file-contract\":62828,\"file-csv\":63197,\"file-dashed-line\":63607,\"file-doc\":58861,\"file-eps\":58948,\"file-excel\":61891,\"file-exclamation\":62234,\"file-export\":62830,\"file-fragment\":59031,\"file-gif\":58949,\"file-half-dashed\":59032,\"file-heart\":57718,\"file-image\":61893,\"file-import\":62831,\"file-invoice-dollar\":62833,\"file-invoice\":62832,\"file-jpg\":58950,\"file-lines\":61788,\"file-lock\":58278,\"file-magnifying-glass\":63589,\"file-medical\":62583,\"file-minus\":62232,\"file-mov\":58951,\"file-mp3\":58952,\"file-mp4\":58953,\"file-music\":63670,\"file-pdf\":61889,\"file-pen\":62236,\"file-plus-minus\":57719,\"file-plus\":62233,\"file-png\":58982,\"file-powerpoint\":61892,\"file-ppt\":58954,\"file-prescription\":62834,\"file-shield\":58608,\"file-signature\":62835,\"file-slash\":58279,\"file-spreadsheet\":63067,\"file-svg\":58955,\"file-user\":63068,\"file-vector\":58956,\"file-video\":61896,\"file-waveform\":62584,\"file-word\":61890,\"file-xls\":58957,\"file-xmark\":62231,\"file-xml\":58964,\"file-zip\":58862,\"file-zipper\":61894,\"file\":61787,\"files-medical\":63485,\"files\":57720,\"fill-drip\":62838,\"fill\":62837,\"film-canister\":63671,\"film-simple\":62368,\"film-slash\":57721,\"film\":61448,\"films\":57722,\"filter-circle-dollar\":63074,\"filter-circle-xmark\":57723,\"filter-list\":57724,\"filter-slash\":57725,\"filter\":61616,\"filters\":57726,\"fingerprint\":62839,\"fire-burner\":58609,\"fire-extinguisher\":61748,\"fire-flame-curved\":63460,\"fire-flame-simple\":62570,\"fire-flame\":63199,\"fire-hydrant\":57727,\"fire-smoke\":63307,\"fire\":61549,\"fireplace\":63386,\"fish-bones\":58116,\"fish-cooked\":63486,\"fish-fins\":58610,\"fish\":62840,\"fishing-rod\":58280,\"flag-checkered\":61726,\"flag-pennant\":62550,\"flag-swallowtail\":63308,\"flag-usa\":63309,\"flag\":61476,\"flashlight\":63672,\"flask-gear\":58865,\"flask-round-poison\":63200,\"flask-round-potion\":63201,\"flask-vial\":58611,\"flask\":61635,\"flatbread-stuffed\":58380,\"flatbread\":58379,\"floppy-disk-circle-arrow-right\":57728,\"floppy-disk-circle-xmark\":57729,\"floppy-disk-pen\":57730,\"floppy-disk\":61639,\"floppy-disks\":57731,\"florin-sign\":57732,\"flower-daffodil\":63488,\"flower-tulip\":63489,\"flower\":63487,\"flute\":63673,\"flux-capacitor\":63674,\"flying-disc\":58281,\"folder-arrow-down\":57427,\"folder-arrow-up\":57428,\"folder-bookmark\":57734,\"folder-check\":58958,\"folder-closed\":57733,\"folder-gear\":57735,\"folder-grid\":57736,\"folder-heart\":57737,\"folder-image\":57738,\"folder-magnifying-glass\":57739,\"folder-medical\":57740,\"folder-minus\":63069,\"folder-music\":57741,\"folder-open\":61564,\"folder-plus\":63070,\"folder-tree\":63490,\"folder-user\":57742,\"folder-xmark\":63071,\"folder\":61563,\"folders\":63072,\"fondue-pot\":58381,\"font-awesome\":62132,\"font-case\":63590,\"font\":61489,\"football-helmet\":62543,\"football\":62542,\"fork-knife\":62182,\"fork\":62179,\"forklift\":62586,\"fort\":58502,\"forward-fast\":61520,\"forward-step\":61521,\"forward\":61518,\"frame\":58517,\"franc-sign\":57743,\"french-fries\":63491,\"frog\":62766,\"function\":63073,\"futbol\":61923,\"g\":71,\"galaxy\":57352,\"gallery-thumbnails\":58282,\"game-board-simple\":63592,\"game-board\":63591,\"game-console-handheld-crank\":58809,\"game-console-handheld\":63675,\"gamepad-modern\":58786,\"gamepad\":61723,\"garage-car\":57354,\"garage-open\":57355,\"garage\":57353,\"garlic\":58382,\"gas-pump-slash\":62964,\"gas-pump\":62767,\"gauge-circle-bolt\":58518,\"gauge-circle-minus\":58519,\"gauge-circle-plus\":58520,\"gauge-high\":63013,\"gauge-low\":63015,\"gauge-max\":63014,\"gauge-min\":63016,\"gauge-simple-high\":63018,\"gauge-simple-low\":63020,\"gauge-simple-max\":63019,\"gauge-simple-min\":63021,\"gauge-simple\":63017,\"gauge\":63012,\"gavel\":61667,\"gear-code\":58856,\"gear-complex-code\":58859,\"gear-complex\":58857,\"gear\":61459,\"gears\":61573,\"gem\":62373,\"genderless\":61997,\"ghost\":63202,\"gif\":57744,\"gift-card\":63075,\"gift\":61547,\"gifts\":63388,\"gingerbread-man\":63389,\"glass-citrus\":63593,\"glass-empty\":57745,\"glass-half\":57746,\"glass-water-droplet\":58613,\"glass-water\":58612,\"glass\":63492,\"glasses-round\":62965,\"glasses\":62768,\"globe-pointer\":58894,\"globe-snow\":63395,\"globe-stand\":62966,\"globe-wifi\":59013,\"globe\":61612,\"goal-net\":58283,\"golf-ball-tee\":62544,\"golf-club\":62545,\"golf-flag-hole\":58284,\"gopuram\":63076,\"graduation-cap\":61853,\"gramophone\":63677,\"grapes\":58118,\"grate-droplet\":57748,\"grate\":57747,\"greater-than-equal\":62770,\"greater-than\":62,\"grid-2-plus\":57751,\"grid-2\":57750,\"grid-4\":57752,\"grid-5\":57753,\"grid-dividers\":58285,\"grid-horizontal\":58119,\"grid-round-2-plus\":58844,\"grid-round-2\":58843,\"grid-round-4\":58845,\"grid-round-5\":58846,\"grid-round\":58842,\"grid\":57749,\"grill-fire\":58788,\"grill-hot\":58789,\"grill\":58787,\"grip-dots-vertical\":58385,\"grip-dots\":58384,\"grip-lines-vertical\":63397,\"grip-lines\":63396,\"grip-vertical\":62862,\"grip\":62861,\"group-arrows-rotate\":58614,\"guarani-sign\":57754,\"guitar-electric\":63678,\"guitar\":63398,\"guitars\":63679,\"gun-slash\":57756,\"gun-squirt\":57757,\"gun\":57755,\"h\":72,\"h1\":62227,\"h2\":62228,\"h3\":62229,\"h4\":63594,\"h5\":58386,\"h6\":58387,\"hammer-brush\":58912,\"hammer-crash\":58388,\"hammer-war\":63204,\"hammer\":63203,\"hamsa\":63077,\"hand-back-fist\":62037,\"hand-back-point-down\":57758,\"hand-back-point-left\":57759,\"hand-back-point-ribbon\":57760,\"hand-back-point-right\":57761,\"hand-back-point-up\":57762,\"hand-dots\":62561,\"hand-fingers-crossed\":57763,\"hand-fist\":63198,\"hand-heart\":62652,\"hand-holding-box\":62587,\"hand-holding-circle-dollar\":58913,\"hand-holding-dollar\":62656,\"hand-holding-droplet\":62657,\"hand-holding-hand\":58615,\"hand-holding-heart\":62654,\"hand-holding-magic\":63205,\"hand-holding-medical\":57436,\"hand-holding-seedling\":62655,\"hand-holding-skull\":57764,\"hand-holding\":62653,\"hand-horns\":57769,\"hand-lizard\":62040,\"hand-love\":57765,\"hand-middle-finger\":63494,\"hand-peace\":62043,\"hand-point-down\":61607,\"hand-point-left\":61605,\"hand-point-ribbon\":57766,\"hand-point-right\":61604,\"hand-point-up\":61606,\"hand-pointer\":62042,\"hand-scissors\":62039,\"hand-sparkles\":57437,\"hand-spock\":62041,\"hand-wave\":57767,\"hand\":62038,\"handcuffs\":58616,\"hands-asl-interpreting\":62115,\"hands-bound\":58617,\"hands-bubbles\":57438,\"hands-clapping\":57768,\"hands-holding-child\":58618,\"hands-holding-circle\":58619,\"hands-holding-diamond\":62588,\"hands-holding-dollar\":62661,\"hands-holding-heart\":62659,\"hands-holding\":62658,\"hands-praying\":63108,\"hands\":62119,\"handshake-angle\":62660,\"handshake-simple-slash\":57439,\"handshake-simple\":62662,\"handshake-slash\":57440,\"handshake\":62133,\"hanukiah\":63206,\"hard-drive\":61600,\"hashtag-lock\":58389,\"hashtag\":35,\"hat-beach\":58886,\"hat-chef\":63595,\"hat-cowboy-side\":63681,\"hat-cowboy\":63680,\"hat-santa\":63399,\"hat-winter\":63400,\"hat-witch\":63207,\"hat-wizard\":63208,\"head-side-brain\":63496,\"head-side-cough-slash\":57442,\"head-side-cough\":57441,\"head-side-gear\":58897,\"head-side-goggles\":63210,\"head-side-headphones\":63682,\"head-side-heart\":57770,\"head-side-mask\":57443,\"head-side-medical\":63497,\"head-side-virus\":57444,\"head-side\":63209,\"heading\":61916,\"headphones-simple\":62863,\"headphones\":61477,\"headset\":62864,\"heart-circle-bolt\":58620,\"heart-circle-check\":58621,\"heart-circle-exclamation\":58622,\"heart-circle-minus\":58623,\"heart-circle-plus\":58624,\"heart-circle-xmark\":58625,\"heart-crack\":63401,\"heart-half-stroke\":57772,\"heart-half\":57771,\"heart-pulse\":61982,\"heart\":61444,\"heat\":57356,\"helicopter-symbol\":58626,\"helicopter\":62771,\"helmet-battle\":63211,\"helmet-safety\":63495,\"helmet-un\":58627,\"hexagon-check\":58390,\"hexagon-divide\":57773,\"hexagon-exclamation\":58391,\"hexagon-image\":58628,\"hexagon-minus\":62215,\"hexagon-nodes-bolt\":59034,\"hexagon-nodes\":59033,\"hexagon-plus\":62208,\"hexagon-vertical-nft-slanted\":58630,\"hexagon-vertical-nft\":58629,\"hexagon-xmark\":62190,\"hexagon\":62226,\"high-definition\":57774,\"highlighter-line\":57775,\"highlighter\":62865,\"hill-avalanche\":58631,\"hill-rockslide\":58632,\"hippo\":63213,\"hockey-mask\":63214,\"hockey-puck\":62547,\"hockey-stick-puck\":58286,\"hockey-sticks\":62548,\"holly-berry\":63402,\"honey-pot\":58392,\"hood-cloak\":63215,\"horizontal-rule\":63596,\"horse-head\":63403,\"horse-saddle\":63683,\"horse\":63216,\"hose-reel\":58394,\"hose\":58393,\"hospital-user\":63501,\"hospital\":61688,\"hospitals\":63502,\"hot-tub-person\":62867,\"hotdog\":63503,\"hotel\":62868,\"hourglass-clock\":58395,\"hourglass-end\":62035,\"hourglass-half\":62034,\"hourglass-start\":62033,\"hourglass\":62036,\"house-blank\":58503,\"house-building\":57777,\"house-chimney-blank\":58288,\"house-chimney-crack\":63217,\"house-chimney-heart\":57778,\"house-chimney-medical\":63474,\"house-chimney-user\":57445,\"house-chimney-window\":57357,\"house-chimney\":58287,\"house-circle-check\":58633,\"house-circle-exclamation\":58634,\"house-circle-xmark\":58635,\"house-crack\":58289,\"house-day\":57358,\"house-fire\":58636,\"house-flag\":58637,\"house-flood-water-circle-arrow-right\":58639,\"house-flood-water\":58638,\"house-heart\":62665,\"house-laptop\":57446,\"house-lock\":58640,\"house-medical-circle-check\":58641,\"house-medical-circle-exclamation\":58642,\"house-medical-circle-xmark\":58643,\"house-medical-flag\":58644,\"house-medical\":58290,\"house-night\":57360,\"house-person-leave\":57359,\"house-person-return\":57361,\"house-signal\":57362,\"house-tree\":57779,\"house-tsunami\":58645,\"house-turret\":57780,\"house-user\":57776,\"house-water\":63311,\"house-window\":58291,\"house\":61461,\"hryvnia-sign\":63218,\"hundred-points\":58396,\"hurricane\":63313,\"hydra\":59014,\"hyphen\":45,\"i-cursor\":62022,\"i\":73,\"ice-cream\":63504,\"ice-skate\":63404,\"icicles\":63405,\"icons\":63597,\"id-badge\":62145,\"id-card-clip\":62591,\"id-card\":62146,\"igloo\":63406,\"image-landscape\":57781,\"image-polaroid-user\":57782,\"image-polaroid\":63684,\"image-portrait\":62432,\"image-slash\":57783,\"image-user\":57784,\"image\":61502,\"images-user\":57785,\"images\":62210,\"inbox-full\":57786,\"inbox-in\":62224,\"inbox-out\":62225,\"inbox\":61468,\"inboxes\":57787,\"indent\":61500,\"indian-rupee-sign\":57788,\"industry-windows\":62387,\"industry\":62069,\"infinity\":62772,\"info\":61737,\"inhaler\":62969,\"input-numeric\":57789,\"input-pipe\":57790,\"input-text\":57791,\"integral\":63079,\"interrobang\":58810,\"intersection\":63080,\"island-tropical\":63505,\"italic\":61491,\"j\":74,\"jack-o-lantern\":62222,\"jar-wheat\":58647,\"jar\":58646,\"jedi\":63081,\"jet-fighter-up\":58648,\"jet-fighter\":61691,\"joint\":62869,\"joystick\":63685,\"jug-bottle\":58875,\"jug-detergent\":58649,\"jug\":63686,\"k\":75,\"kaaba\":63083,\"kazoo\":63687,\"kerning\":63599,\"key-skeleton-left-right\":58292,\"key-skeleton\":63219,\"key\":61572,\"keyboard-brightness-low\":57793,\"keyboard-brightness\":57792,\"keyboard-down\":57794,\"keyboard-left\":57795,\"keyboard\":61724,\"keynote\":63084,\"khanda\":63085,\"kidneys\":62971,\"kip-sign\":57796,\"kit-medical\":62585,\"kitchen-set\":58650,\"kite\":63220,\"kiwi-bird\":62773,\"kiwi-fruit\":58124,\"knife-kitchen\":63221,\"knife\":62180,\"l\":76,\"lacrosse-stick-ball\":58294,\"lacrosse-stick\":58293,\"lambda\":63086,\"lamp-desk\":57364,\"lamp-floor\":57365,\"lamp-street\":57797,\"lamp\":62666,\"land-mine-on\":58651,\"landmark-dome\":63314,\"landmark-flag\":58652,\"landmark-magnifying-glass\":58914,\"landmark\":63087,\"language\":61867,\"laptop-arrow-down\":57798,\"laptop-binary\":58855,\"laptop-code\":62972,\"laptop-file\":58653,\"laptop-medical\":63506,\"laptop-mobile\":63610,\"laptop-slash\":57799,\"laptop\":61705,\"lari-sign\":57800,\"lasso-sparkles\":57801,\"lasso\":63688,\"layer-group\":62973,\"layer-minus\":62974,\"layer-plus\":62975,\"leaf-heart\":62667,\"leaf-maple\":63222,\"leaf-oak\":63223,\"leaf\":61548,\"leafy-green\":58397,\"left-from-bracket\":58988,\"left-from-line\":62280,\"left-long-to-line\":58398,\"left-long\":62218,\"left-right\":62263,\"left-to-bracket\":58989,\"left-to-line\":62283,\"left\":62293,\"lemon\":61588,\"less-than-equal\":62775,\"less-than\":60,\"life-ring\":61901,\"light-ceiling\":57366,\"light-emergency-on\":58400,\"light-emergency\":58399,\"light-switch-off\":57368,\"light-switch-on\":57369,\"light-switch\":57367,\"lightbulb-cfl-on\":58791,\"lightbulb-cfl\":58790,\"lightbulb-dollar\":63088,\"lightbulb-exclamation-on\":57802,\"lightbulb-exclamation\":63089,\"lightbulb-gear\":58877,\"lightbulb-message\":59015,\"lightbulb-on\":63090,\"lightbulb-slash\":63091,\"lightbulb\":61675,\"lighthouse\":58898,\"lights-holiday\":63410,\"line-columns\":63600,\"line-height\":63601,\"lines-leaning\":58654,\"link-horizontal-slash\":57804,\"link-horizontal\":57803,\"link-simple-slash\":57806,\"link-simple\":57805,\"link-slash\":61735,\"link\":61633,\"lips\":62976,\"lira-sign\":61845,\"list-check\":61614,\"list-dropdown\":57807,\"list-music\":63689,\"list-ol\":61643,\"list-radio\":57808,\"list-timeline\":57809,\"list-tree\":57810,\"list-ul\":61642,\"list\":61498,\"litecoin-sign\":57811,\"loader\":57812,\"lobster\":58401,\"location-arrow-up\":58938,\"location-arrow\":61732,\"location-check\":62982,\"location-crosshairs-slash\":62979,\"location-crosshairs\":62977,\"location-dot-slash\":62981,\"location-dot\":62405,\"location-exclamation\":62984,\"location-minus\":62985,\"location-pen\":62983,\"location-pin-lock\":58655,\"location-pin-slash\":62988,\"location-pin\":61505,\"location-plus\":62986,\"location-question\":62987,\"location-smile\":62989,\"location-xmark\":62990,\"lock-a\":58402,\"lock-hashtag\":58403,\"lock-keyhole-open\":62402,\"lock-keyhole\":62221,\"lock-open\":62401,\"lock\":61475,\"locust\":58656,\"lollipop\":58404,\"loveseat\":62668,\"luchador-mask\":62549,\"lungs-virus\":57447,\"lungs\":62980,\"m\":77,\"mace\":63224,\"magnet\":61558,\"magnifying-glass-arrow-right\":58657,\"magnifying-glass-arrows-rotate\":58974,\"magnifying-glass-chart\":58658,\"magnifying-glass-dollar\":63112,\"magnifying-glass-location\":63113,\"magnifying-glass-minus\":61456,\"magnifying-glass-music\":58975,\"magnifying-glass-play\":58976,\"magnifying-glass-plus\":61454,\"magnifying-glass-waveform\":58977,\"magnifying-glass\":61442,\"mailbox-flag-up\":58811,\"mailbox\":63507,\"manat-sign\":57813,\"mandolin\":63225,\"mango\":58127,\"manhole\":57814,\"map-location-dot\":62880,\"map-location\":62879,\"map-pin\":62070,\"map\":62073,\"marker\":62881,\"mars-and-venus-burst\":58659,\"mars-and-venus\":61988,\"mars-double\":61991,\"mars-stroke-right\":61995,\"mars-stroke-up\":61994,\"mars-stroke\":61993,\"mars\":61986,\"martini-glass-citrus\":62817,\"martini-glass-empty\":61440,\"martini-glass\":62843,\"mask-face\":57815,\"mask-snorkel\":58295,\"mask-ventilator\":58660,\"mask\":63226,\"masks-theater\":63024,\"mattress-pillow\":58661,\"maximize\":62238,\"meat\":63508,\"medal\":62882,\"megaphone\":63093,\"melon-slice\":58129,\"melon\":58128,\"memo-circle-check\":57817,\"memo-circle-info\":58522,\"memo-pad\":57818,\"memo\":57816,\"memory\":62776,\"menorah\":63094,\"mercury\":61987,\"merge\":58662,\"message-arrow-down\":57819,\"message-arrow-up-right\":57821,\"message-arrow-up\":57820,\"message-bot\":58296,\"message-captions\":57822,\"message-check\":62626,\"message-code\":57823,\"message-dollar\":63056,\"message-dots\":62627,\"message-exclamation\":62629,\"message-heart\":58825,\"message-image\":57824,\"message-lines\":62630,\"message-medical\":63476,\"message-middle-top\":57826,\"message-middle\":57825,\"message-minus\":62631,\"message-music\":63663,\"message-pen\":62628,\"message-plus\":62632,\"message-question\":57827,\"message-quote\":57828,\"message-slash\":62633,\"message-smile\":62634,\"message-sms\":57829,\"message-text\":57830,\"message-xmark\":62635,\"message\":62074,\"messages-dollar\":63058,\"messages-question\":57831,\"messages\":62646,\"meteor\":63315,\"meter-bolt\":57833,\"meter-droplet\":57834,\"meter-fire\":57835,\"meter\":57832,\"microchip-ai\":57836,\"microchip\":62171,\"microphone-lines-slash\":62777,\"microphone-lines\":62409,\"microphone-slash\":61745,\"microphone-stand\":63691,\"microphone\":61744,\"microscope\":62992,\"microwave\":57371,\"mill-sign\":57837,\"minimize\":63372,\"minus\":61544,\"mistletoe\":63412,\"mitten\":63413,\"mobile-button\":61707,\"mobile-notch\":57838,\"mobile-retro\":58663,\"mobile-screen-button\":62413,\"mobile-screen\":62415,\"mobile-signal-out\":57840,\"mobile-signal\":57839,\"mobile\":62414,\"money-bill-1-wave\":62779,\"money-bill-1\":62417,\"money-bill-simple-wave\":57842,\"money-bill-simple\":57841,\"money-bill-transfer\":58664,\"money-bill-trend-up\":58665,\"money-bill-wave\":62778,\"money-bill-wheat\":58666,\"money-bill\":61654,\"money-bills-simple\":57844,\"money-bills\":57843,\"money-check-dollar-pen\":63603,\"money-check-dollar\":62781,\"money-check-pen\":63602,\"money-check\":62780,\"money-from-bracket\":58130,\"money-simple-from-bracket\":58131,\"monitor-waveform\":62993,\"monkey\":63227,\"monument\":62886,\"moon-cloud\":63316,\"moon-over-sun\":63306,\"moon-stars\":63317,\"moon\":61830,\"moped\":58297,\"mortar-pestle\":62887,\"mosque\":63096,\"mosquito-net\":58668,\"mosquito\":58667,\"motorcycle\":61980,\"mound\":58669,\"mountain-city\":58670,\"mountain-sun\":58671,\"mountain\":63228,\"mountains\":63229,\"mouse-field\":58792,\"mp3-player\":63694,\"mug-hot\":63414,\"mug-marshmallows\":63415,\"mug-saucer\":61684,\"mug-tea-saucer\":57845,\"mug-tea\":63605,\"mug\":63604,\"mushroom\":58405,\"music-magnifying-glass\":58978,\"music-note-slash\":63696,\"music-note\":63695,\"music-slash\":63697,\"music\":61441,\"mustache\":58812,\"n\":78,\"naira-sign\":57846,\"narwhal\":63230,\"nesting-dolls\":58298,\"network-wired\":63231,\"neuter\":61996,\"newspaper\":61930,\"nfc-lock\":57848,\"nfc-magnifying-glass\":57849,\"nfc-pen\":57850,\"nfc-signal\":57851,\"nfc-slash\":57852,\"nfc-symbol\":58673,\"nfc-trash\":57853,\"nfc\":57847,\"nose\":58813,\"not-equal\":62782,\"notdef\":57854,\"note-medical\":57856,\"note-sticky\":62025,\"note\":57855,\"notebook\":57857,\"notes-medical\":62593,\"notes\":57858,\"o\":79,\"object-exclude\":58524,\"object-group\":62023,\"object-intersect\":58525,\"object-subtract\":58526,\"object-ungroup\":62024,\"object-union\":58527,\"objects-align-bottom\":58299,\"objects-align-center-horizontal\":58300,\"objects-align-center-vertical\":58301,\"objects-align-left\":58302,\"objects-align-right\":58303,\"objects-align-top\":58304,\"objects-column\":58305,\"octagon-check\":58406,\"octagon-divide\":57859,\"octagon-exclamation\":57860,\"octagon-minus\":62216,\"octagon-plus\":62209,\"octagon-xmark\":62192,\"octagon\":62214,\"octopus\":59016,\"oil-can-drip\":57861,\"oil-can\":62995,\"oil-temperature\":62996,\"oil-well\":58674,\"olive-branch\":58135,\"olive\":58134,\"om\":63097,\"omega\":63098,\"onion\":58407,\"option\":58136,\"ornament\":63416,\"otter\":63232,\"outdent\":61499,\"outlet\":57372,\"oven\":57373,\"overline\":63606,\"p\":80,\"page-caret-down\":58409,\"page-caret-up\":58410,\"page\":58408,\"pager\":63509,\"paint-roller\":62890,\"paintbrush-fine\":62889,\"paintbrush-pencil\":57862,\"paintbrush\":61948,\"palette\":62783,\"pallet-box\":57864,\"pallet-boxes\":62595,\"pallet\":62594,\"pan-food\":58411,\"pan-frying\":58412,\"pancakes\":58413,\"panel-ews\":58414,\"panel-fire\":58415,\"panorama\":57865,\"paper-plane-top\":57866,\"paper-plane\":61912,\"paperclip-vertical\":58306,\"paperclip\":61638,\"parachute-box\":62669,\"paragraph-left\":63608,\"paragraph\":61917,\"party-bell\":58138,\"party-horn\":58139,\"passport\":62891,\"paste\":61674,\"pause\":61516,\"paw-claws\":63234,\"paw-simple\":63233,\"paw\":61872,\"peace\":63100,\"peach\":57867,\"peanut\":58416,\"peanuts\":58417,\"peapod\":58140,\"pear\":57868,\"pedestal\":57869,\"pegasus\":63235,\"pen-circle\":57870,\"pen-clip-slash\":57871,\"pen-clip\":62213,\"pen-fancy-slash\":57872,\"pen-fancy\":62892,\"pen-field\":57873,\"pen-line\":57874,\"pen-nib-slash\":58529,\"pen-nib\":62893,\"pen-paintbrush\":63000,\"pen-ruler\":62894,\"pen-slash\":57875,\"pen-swirl\":57876,\"pen-to-square\":61508,\"pen\":62212,\"pencil-mechanical\":58826,\"pencil-slash\":57877,\"pencil\":62211,\"people-arrows\":57448,\"people-carry-box\":62670,\"people-dress-simple\":57880,\"people-dress\":57879,\"people-group\":58675,\"people-line\":58676,\"people-pants-simple\":57882,\"people-pants\":57881,\"people-pulling\":58677,\"people-robbery\":58678,\"people-roof\":58679,\"people-simple\":57883,\"people\":57878,\"pepper-hot\":63510,\"pepper\":58418,\"percent\":37,\"period\":46,\"person-arrow-down-to-line\":58680,\"person-arrow-up-from-line\":58681,\"person-biking-mountain\":63563,\"person-biking\":63562,\"person-booth\":63318,\"person-breastfeeding\":58682,\"person-burst\":58683,\"person-cane\":58684,\"person-carry-box\":62671,\"person-chalkboard\":58685,\"person-circle-check\":58686,\"person-circle-exclamation\":58687,\"person-circle-minus\":58688,\"person-circle-plus\":58689,\"person-circle-question\":58690,\"person-circle-xmark\":58691,\"person-digging\":63582,\"person-dolly-empty\":62673,\"person-dolly\":62672,\"person-dots-from-line\":62576,\"person-dress-burst\":58692,\"person-dress-fairy\":58887,\"person-dress-simple\":57884,\"person-dress\":61826,\"person-drowning\":58693,\"person-fairy\":58888,\"person-falling-burst\":58695,\"person-falling\":58694,\"person-from-portal\":57379,\"person-half-dress\":58696,\"person-harassing\":58697,\"person-hiking\":63212,\"person-military-pointing\":58698,\"person-military-rifle\":58699,\"person-military-to-person\":58700,\"person-pinball\":57885,\"person-praying\":63107,\"person-pregnant\":58142,\"person-rays\":58701,\"person-rifle\":58702,\"person-running-fast\":58879,\"person-running\":63244,\"person-seat-reclined\":57887,\"person-seat\":57886,\"person-shelter\":58703,\"person-sign\":63319,\"person-simple\":57888,\"person-skating\":63429,\"person-ski-jumping\":63431,\"person-ski-lift\":63432,\"person-skiing-nordic\":63434,\"person-skiing\":63433,\"person-sledding\":63435,\"person-snowboarding\":63438,\"person-snowmobiling\":63441,\"person-swimming\":62916,\"person-through-window\":58793,\"person-to-door\":58419,\"person-to-portal\":57378,\"person-walking-arrow-loop-left\":58705,\"person-walking-arrow-right\":58706,\"person-walking-dashed-line-arrow-right\":58707,\"person-walking-luggage\":58708,\"person-walking-with-cane\":62109,\"person-walking\":62804,\"person\":61827,\"peseta-sign\":57889,\"peso-sign\":57890,\"phone-arrow-down-left\":57891,\"phone-arrow-right\":58814,\"phone-arrow-up-right\":57892,\"phone-flip\":63609,\"phone-hangup\":57893,\"phone-intercom\":58420,\"phone-missed\":57894,\"phone-office\":63101,\"phone-plus\":62674,\"phone-rotary\":63699,\"phone-slash\":62429,\"phone-volume\":62112,\"phone-xmark\":57895,\"phone\":61589,\"photo-film-music\":57896,\"photo-film\":63612,\"pi\":63102,\"piano-keyboard\":63701,\"piano\":63700,\"pickaxe\":58815,\"pickleball\":58421,\"pie\":63237,\"pig\":63238,\"piggy-bank\":62675,\"pills\":62596,\"pinata\":58307,\"pinball\":57897,\"pineapple\":58143,\"pipe-circle-check\":58422,\"pipe-collar\":58423,\"pipe-section\":58424,\"pipe-smoking\":58308,\"pipe-valve\":58425,\"pipe\":124,\"pizza-slice\":63512,\"pizza\":63511,\"place-of-worship\":63103,\"plane-arrival\":62895,\"plane-circle-check\":58709,\"plane-circle-exclamation\":58710,\"plane-circle-xmark\":58711,\"plane-departure\":62896,\"plane-engines\":62430,\"plane-lock\":58712,\"plane-prop\":57899,\"plane-slash\":57449,\"plane-tail\":57900,\"plane-up-slash\":57902,\"plane-up\":57901,\"plane\":61554,\"planet-moon\":57375,\"planet-ringed\":57376,\"plant-wilt\":58794,\"plate-utensils\":58427,\"plate-wheat\":58714,\"play-pause\":57903,\"play\":61515,\"plug-circle-bolt\":58715,\"plug-circle-check\":58716,\"plug-circle-exclamation\":58717,\"plug-circle-minus\":58718,\"plug-circle-plus\":58719,\"plug-circle-xmark\":58720,\"plug\":61926,\"plus-large\":58782,\"plus-minus\":58428,\"plus\":43,\"podcast\":62158,\"podium-star\":63320,\"podium\":63104,\"police-box\":57377,\"poll-people\":63321,\"pompebled\":58429,\"poo-storm\":63322,\"poo\":62206,\"pool-8-ball\":58309,\"poop\":63001,\"popcorn\":63513,\"popsicle\":58430,\"pot-food\":58431,\"potato\":58432,\"power-off\":61457,\"prescription-bottle-medical\":62598,\"prescription-bottle-pill\":58816,\"prescription-bottle\":62597,\"prescription\":62897,\"presentation-screen\":63109,\"pretzel\":58433,\"print-magnifying-glass\":63514,\"print-slash\":63110,\"print\":61487,\"projector\":63702,\"pump-medical\":57450,\"pump-soap\":57451,\"pump\":58434,\"pumpkin\":63239,\"puzzle-piece-simple\":57905,\"puzzle-piece\":61742,\"puzzle\":58435,\"q\":81,\"qrcode\":61481,\"question\":63,\"quote-left\":61709,\"quote-right\":61710,\"quotes\":57908,\"r\":82,\"rabbit-running\":63241,\"rabbit\":63240,\"raccoon\":58899,\"racquet\":62554,\"radar\":57380,\"radiation\":63417,\"radio-tuner\":63704,\"radio\":63703,\"rainbow\":63323,\"raindrops\":63324,\"ram\":63242,\"ramp-loading\":62676,\"ranking-star\":58721,\"raygun\":57381,\"receipt\":62787,\"record-vinyl\":63705,\"rectangle-ad\":63041,\"rectangle-barcode\":62563,\"rectangle-code\":58146,\"rectangle-history-circle-plus\":58531,\"rectangle-history-circle-user\":58532,\"rectangle-history\":58530,\"rectangle-list\":61474,\"rectangle-pro\":57909,\"rectangle-terminal\":57910,\"rectangle-vertical-history\":57911,\"rectangle-vertical\":62203,\"rectangle-wide\":62204,\"rectangle-xmark\":62480,\"rectangle\":62202,\"rectangles-mixed\":58147,\"recycle\":61880,\"reel\":57912,\"reflect-both\":58991,\"reflect-horizontal\":58980,\"reflect-vertical\":58981,\"refrigerator\":57382,\"registered\":62045,\"repeat-1\":62309,\"repeat\":62307,\"reply-all\":61730,\"reply-clock\":57913,\"reply\":62437,\"republican\":63326,\"restroom-simple\":57914,\"restroom\":63421,\"retweet\":61561,\"rhombus\":57915,\"ribbon\":62678,\"right-from-bracket\":62197,\"right-from-line\":62279,\"right-left-large\":58849,\"right-left\":62306,\"right-long-to-line\":58436,\"right-long\":62219,\"right-to-bracket\":62198,\"right-to-line\":62284,\"right\":62294,\"ring-diamond\":58795,\"ring\":63243,\"rings-wedding\":63515,\"road-barrier\":58722,\"road-bridge\":58723,\"road-circle-check\":58724,\"road-circle-exclamation\":58725,\"road-circle-xmark\":58726,\"road-lock\":58727,\"road-spikes\":58728,\"road\":61464,\"robot-astromech\":58066,\"robot\":62788,\"rocket-launch\":57383,\"rocket\":61749,\"roller-coaster\":58148,\"rotate-exclamation\":57916,\"rotate-left\":62186,\"rotate-reverse\":58929,\"rotate-right\":62201,\"rotate\":62193,\"route-highway\":63002,\"route-interstate\":63003,\"route\":62679,\"router\":63706,\"rss\":61598,\"ruble-sign\":61784,\"rug\":58729,\"rugby-ball\":58310,\"ruler-combined\":62790,\"ruler-horizontal\":62791,\"ruler-triangle\":63004,\"ruler-vertical\":62792,\"ruler\":62789,\"rupee-sign\":61782,\"rupiah-sign\":57917,\"rv\":63422,\"s\":83,\"sack-dollar\":63517,\"sack-xmark\":58730,\"sack\":63516,\"sailboat\":58437,\"salad\":63518,\"salt-shaker\":58438,\"sandwich\":63519,\"satellite-dish\":63424,\"satellite\":63423,\"sausage\":63520,\"saxophone-fire\":63707,\"saxophone\":63708,\"scale-balanced\":62030,\"scale-unbalanced-flip\":62742,\"scale-unbalanced\":62741,\"scalpel-line-dashed\":63006,\"scalpel\":63005,\"scanner-gun\":62600,\"scanner-image\":63731,\"scanner-keyboard\":62601,\"scanner-touchscreen\":62602,\"scarecrow\":63245,\"scarf\":63425,\"school-circle-check\":58731,\"school-circle-exclamation\":58732,\"school-circle-xmark\":58733,\"school-flag\":58734,\"school-lock\":58735,\"school\":62793,\"scissors\":61636,\"screen-users\":63037,\"screencast\":57918,\"screwdriver-wrench\":63449,\"screwdriver\":62794,\"scribble\":57919,\"scroll-old\":63247,\"scroll-torah\":63136,\"scroll\":63246,\"scrubber\":62200,\"scythe\":63248,\"sd-card\":63426,\"sd-cards\":57920,\"seal-exclamation\":57922,\"seal-question\":57923,\"seal\":57921,\"seat-airline\":57924,\"section\":58439,\"seedling\":62680,\"semicolon\":59,\"send-back\":63614,\"send-backward\":63615,\"sensor-cloud\":57388,\"sensor-fire\":57386,\"sensor-on\":57387,\"sensor-triangle-exclamation\":57385,\"sensor\":57384,\"server\":62003,\"shapes\":63007,\"share-all\":62311,\"share-from-square\":61773,\"share-nodes\":61920,\"share\":61540,\"sheep\":63249,\"sheet-plastic\":58737,\"shekel-sign\":61963,\"shelves-empty\":57926,\"shelves\":62592,\"shield-cat\":58738,\"shield-check\":62199,\"shield-cross\":63250,\"shield-dog\":58739,\"shield-exclamation\":57927,\"shield-halved\":62445,\"shield-heart\":58740,\"shield-keyhole\":57928,\"shield-minus\":57929,\"shield-plus\":57930,\"shield-quartered\":58741,\"shield-slash\":57931,\"shield-virus\":57452,\"shield-xmark\":57932,\"shield\":61746,\"ship\":61978,\"shirt-long-sleeve\":58311,\"shirt-running\":58312,\"shirt-tank-top\":58313,\"shirt\":62803,\"shish-kebab\":63521,\"shoe-prints\":62795,\"shop-lock\":58533,\"shop-slash\":57456,\"shop\":62799,\"shovel-snow\":63427,\"shovel\":63251,\"shower-down\":57933,\"shower\":62156,\"shredder\":63114,\"shrimp\":58440,\"shuffle\":61556,\"shutters\":58441,\"shuttle-space\":61847,\"shuttlecock\":62555,\"sickle\":63522,\"sidebar-flip\":57935,\"sidebar\":57934,\"sigma\":63115,\"sign-hanging\":62681,\"sign-post\":58916,\"sign-posts-wrench\":58918,\"sign-posts\":58917,\"signal-bars-fair\":63122,\"signal-bars-good\":63123,\"signal-bars-slash\":63124,\"signal-bars-weak\":63121,\"signal-bars\":63120,\"signal-fair\":63117,\"signal-good\":63118,\"signal-slash\":63125,\"signal-stream-slash\":57936,\"signal-stream\":63709,\"signal-strong\":63119,\"signal-weak\":63116,\"signal\":61458,\"signature-lock\":58314,\"signature-slash\":58315,\"signature\":62903,\"signs-post\":62071,\"sim-card\":63428,\"sim-cards\":57937,\"sink\":57453,\"siren-on\":57390,\"siren\":57389,\"sitemap\":61672,\"skeleton-ribs\":58827,\"skeleton\":63008,\"ski-boot-ski\":58317,\"ski-boot\":58316,\"skull-cow\":63710,\"skull-crossbones\":63252,\"skull\":62796,\"slash-back\":92,\"slash-forward\":47,\"slash\":63253,\"sleigh\":63436,\"slider\":57938,\"sliders-simple\":57939,\"sliders-up\":62449,\"sliders\":61918,\"slot-machine\":58318,\"smog\":63327,\"smoke\":63328,\"smoking\":62605,\"snake\":63254,\"snooze\":63616,\"snow-blowing\":63329,\"snowflake-droplets\":58817,\"snowflake\":62172,\"snowflakes\":63439,\"snowman-head\":63387,\"snowman\":63440,\"snowplow\":63442,\"soap\":57454,\"socks\":63126,\"soft-serve\":58368,\"solar-panel\":62906,\"solar-system\":57391,\"sort-down\":61661,\"sort-up\":61662,\"sort\":61660,\"spa\":62907,\"space-station-moon-construction\":57396,\"space-station-moon\":57395,\"spade\":62196,\"spaghetti-monster-flying\":63099,\"sparkle\":58838,\"sparkles\":63632,\"speaker\":63711,\"speakers\":63712,\"spell-check\":63633,\"spider-black-widow\":63256,\"spider-web\":63257,\"spider\":63255,\"spinner-scale\":58922,\"spinner-third\":62452,\"spinner\":61712,\"split\":57940,\"splotch\":62908,\"spoon\":62181,\"sportsball\":58443,\"spray-can-sparkles\":62928,\"spray-can\":62909,\"sprinkler-ceiling\":58444,\"sprinkler\":57397,\"square-0\":57941,\"square-1\":57942,\"square-2\":57943,\"square-3\":57944,\"square-4\":57945,\"square-5\":57946,\"square-6\":57947,\"square-7\":57948,\"square-8\":57949,\"square-9\":57950,\"square-a-lock\":58445,\"square-a\":57951,\"square-ampersand\":57952,\"square-arrow-down-left\":57953,\"square-arrow-down-right\":57954,\"square-arrow-down\":62265,\"square-arrow-left\":62266,\"square-arrow-right\":62267,\"square-arrow-up-left\":57955,\"square-arrow-up-right\":61772,\"square-arrow-up\":62268,\"square-b\":57956,\"square-binary\":59035,\"square-bolt\":57957,\"square-c\":57958,\"square-caret-down\":61776,\"square-caret-left\":61841,\"square-caret-right\":61778,\"square-caret-up\":61777,\"square-check\":61770,\"square-chevron-down\":62249,\"square-chevron-left\":62250,\"square-chevron-right\":62251,\"square-chevron-up\":62252,\"square-code\":57959,\"square-d\":57960,\"square-dashed-circle-plus\":58818,\"square-dashed\":57961,\"square-divide\":57962,\"square-dollar\":62185,\"square-down-left\":57963,\"square-down-right\":57964,\"square-down\":62288,\"square-e\":57965,\"square-ellipsis-vertical\":57967,\"square-ellipsis\":57966,\"square-envelope\":61849,\"square-exclamation\":62241,\"square-f\":57968,\"square-fragile\":62619,\"square-full\":62556,\"square-g\":57969,\"square-h\":61693,\"square-heart\":62664,\"square-i\":57970,\"square-info\":62223,\"square-j\":57971,\"square-k\":57972,\"square-kanban\":58504,\"square-l\":57973,\"square-left\":62289,\"square-list\":58505,\"square-m\":57974,\"square-minus\":61766,\"square-n\":57975,\"square-nfi\":58742,\"square-o\":57976,\"square-p\":57977,\"square-parking-slash\":62999,\"square-parking\":62784,\"square-pen\":61771,\"square-person-confined\":58743,\"square-phone-flip\":63611,\"square-phone-hangup\":57978,\"square-phone\":61592,\"square-plus\":61694,\"square-poll-horizontal\":63106,\"square-poll-vertical\":63105,\"square-q\":57979,\"square-quarters\":58446,\"square-question\":62205,\"square-quote\":58153,\"square-r\":57980,\"square-right\":62290,\"square-ring\":58447,\"square-root-variable\":63128,\"square-root\":63127,\"square-rss\":61763,\"square-s\":57981,\"square-share-nodes\":61921,\"square-sliders-vertical\":62450,\"square-sliders\":62448,\"square-small\":57982,\"square-star\":57983,\"square-t\":57984,\"square-terminal\":58154,\"square-this-way-up\":62623,\"square-u\":57985,\"square-up-left\":57986,\"square-up-right\":62304,\"square-up\":62291,\"square-user\":57987,\"square-v\":57988,\"square-virus\":58744,\"square-w\":57989,\"square-x\":57990,\"square-xmark\":62163,\"square-y\":57991,\"square-z\":57992,\"square\":61640,\"squid\":58448,\"squirrel\":63258,\"staff-snake\":58745,\"staff\":63259,\"stairs\":57993,\"stamp\":62911,\"standard-definition\":57994,\"stapler\":58799,\"star-and-crescent\":63129,\"star-christmas\":63444,\"star-exclamation\":62195,\"star-half-stroke\":62912,\"star-half\":61577,\"star-of-david\":63130,\"star-of-life\":63009,\"star-sharp-half-stroke\":57997,\"star-sharp-half\":57996,\"star-sharp\":57995,\"star-shooting\":57398,\"star\":61445,\"starfighter-twin-ion-engine-advanced\":57998,\"starfighter-twin-ion-engine\":57400,\"starfighter\":57399,\"stars\":63330,\"starship-freighter\":57402,\"starship\":57401,\"steak\":63524,\"steering-wheel\":63010,\"sterling-sign\":61780,\"stethoscope\":61681,\"stocking\":63445,\"stomach\":63011,\"stop\":61517,\"stopwatch-20\":57455,\"stopwatch\":62194,\"store-lock\":58534,\"store-slash\":57457,\"store\":62798,\"strawberry\":58155,\"street-view\":61981,\"stretcher\":63525,\"strikethrough\":61644,\"stroopwafel\":62801,\"subscript\":61740,\"subtitles-slash\":58896,\"subtitles\":58895,\"suitcase-medical\":61690,\"suitcase-rolling\":62913,\"suitcase\":61682,\"sun-bright\":57999,\"sun-cloud\":63331,\"sun-dust\":63332,\"sun-haze\":63333,\"sun-plant-wilt\":58746,\"sun\":61829,\"sunglasses\":63634,\"sunrise\":63334,\"sunset\":63335,\"superscript\":61739,\"sushi-roll\":58507,\"sushi\":58506,\"swap-arrows\":58890,\"swap\":58889,\"swatchbook\":62915,\"sword-laser-alt\":57404,\"sword-laser\":57403,\"sword\":63260,\"swords-laser\":57405,\"swords\":63261,\"symbols\":63598,\"synagogue\":63131,\"syringe\":62606,\"t-rex\":58921,\"t\":84,\"table-cells-column-lock\":59000,\"table-cells-column-unlock\":59024,\"table-cells-large\":61449,\"table-cells-lock\":59001,\"table-cells-row-lock\":59002,\"table-cells-row-unlock\":59025,\"table-cells-unlock\":59026,\"table-cells\":61450,\"table-columns\":61659,\"table-layout\":58000,\"table-list\":61451,\"table-picnic\":58157,\"table-pivot\":58001,\"table-rows\":58002,\"table-tennis-paddle-ball\":62557,\"table-tree\":58003,\"table\":61646,\"tablet-button\":61706,\"tablet-rugged\":62607,\"tablet-screen-button\":62458,\"tablet-screen\":62460,\"tablet\":62459,\"tablets\":62608,\"tachograph-digital\":62822,\"taco\":63526,\"tag\":61483,\"tags\":61484,\"tally-1\":58004,\"tally-2\":58005,\"tally-3\":58006,\"tally-4\":58007,\"tally\":63132,\"tamale\":58449,\"tank-water\":58450,\"tape\":62683,\"tarp-droplet\":58748,\"tarp\":58747,\"taxi-bus\":58008,\"taxi\":61882,\"teddy-bear\":58319,\"teeth-open\":63023,\"teeth\":63022,\"telescope\":57406,\"temperature-arrow-down\":57407,\"temperature-arrow-up\":57408,\"temperature-empty\":62155,\"temperature-full\":62151,\"temperature-half\":62153,\"temperature-high\":63337,\"temperature-list\":58009,\"temperature-low\":63339,\"temperature-quarter\":62154,\"temperature-snow\":63336,\"temperature-sun\":63338,\"temperature-three-quarters\":62152,\"tenge-sign\":63447,\"tennis-ball\":62558,\"tent-arrow-down-to-line\":58750,\"tent-arrow-left-right\":58751,\"tent-arrow-turn-left\":58752,\"tent-arrows-down\":58753,\"tent-double-peak\":58919,\"tent\":58749,\"tents\":58754,\"terminal\":61728,\"text-height\":61492,\"text-size\":63636,\"text-slash\":63613,\"text-width\":61493,\"text\":63635,\"thermometer\":62609,\"theta\":63134,\"thought-bubble\":58158,\"thumbs-down\":61797,\"thumbs-up\":61796,\"thumbtack-slash\":59023,\"thumbtack\":61581,\"tick\":58159,\"ticket-airline\":58010,\"ticket-perforated\":58942,\"ticket-simple\":62463,\"ticket\":61765,\"tickets-airline\":58011,\"tickets-perforated\":58943,\"tickets-simple\":58969,\"tickets\":58968,\"tilde\":126,\"timeline-arrow\":58013,\"timeline\":58012,\"timer\":58014,\"tire-flat\":63026,\"tire-pressure-warning\":63027,\"tire-rugged\":63028,\"tire\":63025,\"toggle-large-off\":58800,\"toggle-large-on\":58801,\"toggle-off\":61956,\"toggle-on\":61957,\"toilet-paper-blank-under\":58015,\"toilet-paper-blank\":63263,\"toilet-paper-check\":58802,\"toilet-paper-slash\":57458,\"toilet-paper-under-slash\":58017,\"toilet-paper-under\":58016,\"toilet-paper-xmark\":58803,\"toilet-paper\":63262,\"toilet-portable\":58755,\"toilet\":63448,\"toilets-portable\":58756,\"tomato\":58160,\"tombstone-blank\":63265,\"tombstone\":63264,\"toolbox\":62802,\"tooth\":62921,\"toothbrush\":63029,\"torii-gate\":63137,\"tornado\":63343,\"tower-broadcast\":62745,\"tower-cell\":58757,\"tower-control\":58018,\"tower-observation\":58758,\"tractor\":63266,\"trademark\":62044,\"traffic-cone\":63030,\"traffic-light-go\":63032,\"traffic-light-slow\":63033,\"traffic-light-stop\":63034,\"traffic-light\":63031,\"trailer\":57409,\"train-subway-tunnel\":58019,\"train-subway\":62009,\"train-track\":58451,\"train-tram\":58804,\"train-tunnel\":58452,\"train\":62008,\"transformer-bolt\":58020,\"transgender\":61989,\"transporter-1\":57411,\"transporter-2\":57412,\"transporter-3\":57413,\"transporter-4\":58021,\"transporter-5\":58022,\"transporter-6\":58023,\"transporter-7\":58024,\"transporter-empty\":57414,\"transporter\":57410,\"trash-arrow-up\":63529,\"trash-can-arrow-up\":63530,\"trash-can-check\":58025,\"trash-can-clock\":58026,\"trash-can-list\":58027,\"trash-can-plus\":58028,\"trash-can-slash\":58029,\"trash-can-undo\":63638,\"trash-can-xmark\":58030,\"trash-can\":62189,\"trash-check\":58031,\"trash-clock\":58032,\"trash-list\":58033,\"trash-plus\":58034,\"trash-slash\":58035,\"trash-undo\":63637,\"trash-xmark\":58036,\"trash\":61944,\"treasure-chest\":63267,\"tree-christmas\":63451,\"tree-city\":58759,\"tree-deciduous\":62464,\"tree-decorated\":63452,\"tree-large\":63453,\"tree-palm\":63531,\"tree\":61883,\"trees\":63268,\"triangle-exclamation\":61553,\"triangle-instrument\":63714,\"triangle-person-digging\":63581,\"triangle\":62188,\"tricycle-adult\":58820,\"tricycle\":58819,\"trillium\":58760,\"trophy-star\":62187,\"trophy\":61585,\"trowel-bricks\":58762,\"trowel\":58761,\"truck-arrow-right\":58763,\"truck-bolt\":58320,\"truck-clock\":62604,\"truck-container-empty\":58037,\"truck-container\":62684,\"truck-droplet\":58764,\"truck-fast\":62603,\"truck-field-un\":58766,\"truck-field\":58765,\"truck-fire\":58970,\"truck-flatbed\":58038,\"truck-front\":58039,\"truck-ladder\":58967,\"truck-medical\":61689,\"truck-monster\":63035,\"truck-moving\":62687,\"truck-pickup\":63036,\"truck-plane\":58767,\"truck-plow\":63454,\"truck-ramp-box\":62686,\"truck-ramp-couch\":62685,\"truck-ramp\":62688,\"truck-tow\":58040,\"truck-utensils\":58920,\"truck\":61649,\"trumpet\":63715,\"tty-answer\":58041,\"tty\":61924,\"tugrik-sign\":58042,\"turkey\":63269,\"turkish-lira-sign\":58043,\"turn-down-left\":58161,\"turn-down-right\":58453,\"turn-down\":62398,\"turn-left-down\":58935,\"turn-left-up\":58936,\"turn-left\":58934,\"turn-right\":58937,\"turn-up\":62399,\"turntable\":63716,\"turtle\":63270,\"tv-music\":63718,\"tv-retro\":62465,\"tv\":62060,\"typewriter\":63719,\"u\":85,\"ufo-beam\":57416,\"ufo\":57415,\"umbrella-beach\":62922,\"umbrella-simple\":58044,\"umbrella\":61673,\"underline\":61645,\"unicorn\":63271,\"uniform-martial-arts\":58321,\"union\":63138,\"universal-access\":62106,\"unlock-keyhole\":61758,\"unlock\":61596,\"up-down-left-right\":61618,\"up-down\":62264,\"up-from-bracket\":58768,\"up-from-dotted-line\":58454,\"up-from-line\":62278,\"up-left\":58045,\"up-long\":62220,\"up-right-and-down-left-from-center\":62500,\"up-right-from-square\":62301,\"up-right\":58046,\"up-to-bracket\":58990,\"up-to-dotted-line\":58455,\"up-to-line\":62285,\"up\":62295,\"upload\":61587,\"usb-drive\":63721,\"user-alien\":57418,\"user-astronaut\":62715,\"user-beard-bolt\":59017,\"user-bounty-hunter\":58047,\"user-check\":62716,\"user-chef\":58322,\"user-clock\":62717,\"user-cowboy\":63722,\"user-crown\":63140,\"user-doctor-hair-long\":58457,\"user-doctor-hair\":58456,\"user-doctor-message\":63534,\"user-doctor\":61680,\"user-gear\":62718,\"user-graduate\":62721,\"user-group-crown\":63141,\"user-group-simple\":58883,\"user-group\":62720,\"user-hair-buns\":58323,\"user-hair-long\":58459,\"user-hair-mullet\":58460,\"user-hair\":58458,\"user-headset\":63533,\"user-helmet-safety\":63532,\"user-hoodie\":59018,\"user-injured\":63272,\"user-large-slash\":62714,\"user-large\":62470,\"user-lock\":62722,\"user-magnifying-glass\":58821,\"user-minus\":62723,\"user-music\":63723,\"user-ninja\":62724,\"user-nurse-hair-long\":58462,\"user-nurse-hair\":58461,\"user-nurse\":63535,\"user-pen\":62719,\"user-pilot-tie\":58049,\"user-pilot\":58048,\"user-plus\":62004,\"user-police-tie\":58164,\"user-police\":58163,\"user-robot-xmarks\":58535,\"user-robot\":57419,\"user-secret\":61979,\"user-shakespeare\":58050,\"user-shield\":62725,\"user-slash\":62726,\"user-tag\":62727,\"user-tie-hair-long\":58464,\"user-tie-hair\":58463,\"user-tie\":62728,\"user-unlock\":57432,\"user-visor\":57420,\"user-vneck-hair-long\":58467,\"user-vneck-hair\":58466,\"user-vneck\":58465,\"user-xmark\":62005,\"user\":61447,\"users-between-lines\":58769,\"users-gear\":62729,\"users-line\":58770,\"users-medical\":63536,\"users-rays\":58771,\"users-rectangle\":58772,\"users-slash\":57459,\"users-viewfinder\":58773,\"users\":61632,\"utensils-slash\":58468,\"utensils\":62183,\"utility-pole-double\":58052,\"utility-pole\":58051,\"v\":86,\"vacuum-robot\":57422,\"vacuum\":57421,\"value-absolute\":63142,\"van-shuttle\":62902,\"vault\":58053,\"vector-circle\":58054,\"vector-polygon\":58055,\"vector-square\":62923,\"vent-damper\":58469,\"venus-double\":61990,\"venus-mars\":61992,\"venus\":61985,\"vest-patches\":57478,\"vest\":57477,\"vial-circle-check\":58774,\"vial-virus\":58775,\"vial\":62610,\"vials\":62611,\"video-arrow-down-left\":58056,\"video-arrow-up-right\":58057,\"video-plus\":62689,\"video-slash\":62690,\"video\":61501,\"vihara\":63143,\"violin\":63725,\"virus-covid-slash\":58537,\"virus-covid\":58536,\"virus-slash\":57461,\"virus\":57460,\"viruses\":57462,\"voicemail\":63639,\"volcano\":63344,\"volleyball\":62559,\"volume-high\":61480,\"volume-low\":61479,\"volume-off\":61478,\"volume-slash\":62178,\"volume-xmark\":63145,\"volume\":63144,\"vr-cardboard\":63273,\"w\":87,\"waffle\":58470,\"wagon-covered\":63726,\"walker\":63537,\"walkie-talkie\":63727,\"wallet\":62805,\"wand-magic-sparkles\":58058,\"wand-magic\":61648,\"wand-sparkles\":63275,\"wand\":63274,\"warehouse-full\":62613,\"warehouse\":62612,\"washing-machine\":63640,\"watch-apple\":58059,\"watch-calculator\":63728,\"watch-fitness\":63038,\"watch-smart\":58060,\"watch\":62177,\"water-arrow-down\":63348,\"water-arrow-up\":63349,\"water-ladder\":62917,\"water\":63347,\"watermelon-slice\":58167,\"wave-pulse\":62968,\"wave-sine\":63641,\"wave-square\":63550,\"wave-triangle\":63642,\"wave\":58971,\"waveform-lines\":63730,\"waveform\":63729,\"waves-sine\":58973,\"web-awesome\":59010,\"webhook\":58837,\"weight-hanging\":62925,\"weight-scale\":62614,\"whale\":63276,\"wheat-awn-circle-exclamation\":58776,\"wheat-awn-slash\":58168,\"wheat-awn\":58061,\"wheat-slash\":58169,\"wheat\":63277,\"wheelchair-move\":58062,\"wheelchair\":61843,\"whiskey-glass-ice\":63393,\"whiskey-glass\":63392,\"whistle\":62560,\"wifi-exclamation\":58063,\"wifi-fair\":63147,\"wifi-slash\":63148,\"wifi-weak\":63146,\"wifi\":61931,\"wind-turbine\":63643,\"wind-warning\":63350,\"wind\":63278,\"window-flip\":62479,\"window-frame-open\":57424,\"window-frame\":57423,\"window-maximize\":62160,\"window-minimize\":62161,\"window-restore\":62162,\"window\":62478,\"windsock\":63351,\"wine-bottle\":63279,\"wine-glass-crack\":62651,\"wine-glass-empty\":62926,\"wine-glass\":62691,\"won-sign\":61785,\"worm\":58777,\"wreath-laurel\":58834,\"wreath\":63458,\"wrench-simple\":58065,\"wrench\":61613,\"x-ray\":62615,\"x\":88,\"xmark-large\":58779,\"xmark-to-slot\":63345,\"xmark\":61453,\"xmarks-lines\":58778,\"y\":89,\"yen-sign\":61783,\"yin-yang\":63149,\"z\":90}"
  },
  {
    "path": "packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_duotone.json",
    "content": "{\"0\":48,\"1\":49,\"2\":50,\"3\":51,\"4\":52,\"5\":53,\"6\":54,\"7\":55,\"8\":56,\"9\":57,\"00\":58471,\"360-degrees\":58076,\"a\":65,\"abacus\":63040,\"accent-grave\":96,\"acorn\":63150,\"address-book\":62137,\"address-card\":62139,\"air-conditioner\":63732,\"airplay\":57481,\"alarm-clock\":62286,\"alarm-exclamation\":63555,\"alarm-plus\":63556,\"alarm-snooze\":63557,\"album-circle-plus\":58508,\"album-circle-user\":58509,\"album-collection-circle-plus\":58510,\"album-collection-circle-user\":58511,\"album-collection\":63648,\"album\":63647,\"alicorn\":63152,\"alien-8bit\":63734,\"alien\":63733,\"align-center\":61495,\"align-justify\":61497,\"align-left\":61494,\"align-right\":61496,\"align-slash\":63558,\"alt\":57482,\"amp-guitar\":63649,\"ampersand\":38,\"anchor-circle-check\":58538,\"anchor-circle-exclamation\":58539,\"anchor-circle-xmark\":58540,\"anchor-lock\":58541,\"anchor\":61757,\"angel\":63353,\"angle-90\":57485,\"angle-down\":61703,\"angle-left\":61700,\"angle-right\":61701,\"angle-up\":61702,\"angle\":57484,\"angles-down\":61699,\"angles-left\":61696,\"angles-right\":61697,\"angles-up-down\":58893,\"angles-up\":61698,\"ankh\":63044,\"ant\":59008,\"apartment\":58472,\"aperture\":58079,\"apostrophe\":39,\"apple-core\":57487,\"apple-whole\":62929,\"archway\":62807,\"arrow-down-1-9\":61794,\"arrow-down-9-1\":63622,\"arrow-down-a-z\":61789,\"arrow-down-arrow-up\":63619,\"arrow-down-big-small\":63628,\"arrow-down-from-arc\":58900,\"arrow-down-from-bracket\":58983,\"arrow-down-from-dotted-line\":57488,\"arrow-down-from-line\":62277,\"arrow-down-left-and-arrow-up-right-to-center\":57490,\"arrow-down-left\":57489,\"arrow-down-long\":61813,\"arrow-down-right\":57491,\"arrow-down-short-wide\":63620,\"arrow-down-small-big\":63629,\"arrow-down-square-triangle\":63625,\"arrow-down-to-arc\":58542,\"arrow-down-to-bracket\":57492,\"arrow-down-to-dotted-line\":57493,\"arrow-down-to-line\":62269,\"arrow-down-to-square\":57494,\"arrow-down-triangle-square\":63624,\"arrow-down-up-across-line\":58543,\"arrow-down-up-lock\":58544,\"arrow-down-wide-short\":61792,\"arrow-down-z-a\":63617,\"arrow-down\":61539,\"arrow-left-from-arc\":58901,\"arrow-left-from-bracket\":58984,\"arrow-left-from-line\":62276,\"arrow-left-long-to-line\":58324,\"arrow-left-long\":61815,\"arrow-left-to-arc\":58902,\"arrow-left-to-bracket\":58985,\"arrow-left-to-line\":62270,\"arrow-left\":61536,\"arrow-pointer\":62021,\"arrow-progress\":58847,\"arrow-right-arrow-left\":61676,\"arrow-right-from-arc\":58545,\"arrow-right-from-bracket\":61579,\"arrow-right-from-line\":62275,\"arrow-right-long-to-line\":58325,\"arrow-right-long\":61816,\"arrow-right-to-arc\":58546,\"arrow-right-to-bracket\":61584,\"arrow-right-to-city\":58547,\"arrow-right-to-line\":62272,\"arrow-right\":61537,\"arrow-rotate-left\":61666,\"arrow-rotate-right\":61470,\"arrow-trend-down\":57495,\"arrow-trend-up\":57496,\"arrow-turn-down-left\":58081,\"arrow-turn-down-right\":58326,\"arrow-turn-down\":61769,\"arrow-turn-left-down\":58931,\"arrow-turn-left-up\":58932,\"arrow-turn-left\":58930,\"arrow-turn-right\":58933,\"arrow-turn-up\":61768,\"arrow-up-1-9\":61795,\"arrow-up-9-1\":63623,\"arrow-up-a-z\":61790,\"arrow-up-arrow-down\":57497,\"arrow-up-big-small\":63630,\"arrow-up-from-arc\":58548,\"arrow-up-from-bracket\":57498,\"arrow-up-from-dotted-line\":57499,\"arrow-up-from-ground-water\":58549,\"arrow-up-from-line\":62274,\"arrow-up-from-square\":57500,\"arrow-up-from-water-pump\":58550,\"arrow-up-left-from-circle\":57502,\"arrow-up-left\":57501,\"arrow-up-long\":61814,\"arrow-up-right-and-arrow-down-left-from-center\":57504,\"arrow-up-right-dots\":58551,\"arrow-up-right-from-square\":61582,\"arrow-up-right\":57503,\"arrow-up-short-wide\":63621,\"arrow-up-small-big\":63631,\"arrow-up-square-triangle\":63627,\"arrow-up-to-arc\":58903,\"arrow-up-to-bracket\":58986,\"arrow-up-to-dotted-line\":57505,\"arrow-up-to-line\":62273,\"arrow-up-triangle-square\":63626,\"arrow-up-wide-short\":61793,\"arrow-up-z-a\":63618,\"arrow-up\":61538,\"arrows-cross\":57506,\"arrows-down-to-line\":58552,\"arrows-down-to-people\":58553,\"arrows-from-dotted-line\":57507,\"arrows-from-line\":57508,\"arrows-left-right-to-line\":58554,\"arrows-left-right\":61566,\"arrows-maximize\":62237,\"arrows-minimize\":57509,\"arrows-repeat-1\":62310,\"arrows-repeat\":62308,\"arrows-retweet\":62305,\"arrows-rotate-reverse\":58928,\"arrows-rotate\":61473,\"arrows-spin\":58555,\"arrows-split-up-and-left\":58556,\"arrows-to-circle\":58557,\"arrows-to-dot\":58558,\"arrows-to-dotted-line\":57510,\"arrows-to-eye\":58559,\"arrows-to-line\":57511,\"arrows-turn-right\":58560,\"arrows-turn-to-dots\":58561,\"arrows-up-down-left-right\":61511,\"arrows-up-down\":61565,\"arrows-up-to-line\":58562,\"asterisk\":42,\"at\":64,\"atom-simple\":62931,\"atom\":62930,\"audio-description-slash\":57512,\"audio-description\":62110,\"austral-sign\":57513,\"avocado\":57514,\"award-simple\":57515,\"award\":62809,\"axe-battle\":63155,\"axe\":63154,\"b\":66,\"baby-carriage\":63357,\"baby\":63356,\"backpack\":62932,\"backward-fast\":61513,\"backward-step\":61512,\"backward\":61514,\"bacon\":63461,\"bacteria\":57433,\"bacterium\":57434,\"badge-check\":62262,\"badge-dollar\":63045,\"badge-percent\":63046,\"badge-sheriff\":63650,\"badge\":62261,\"badger-honey\":63156,\"badminton\":58170,\"bag-seedling\":58866,\"bag-shopping-minus\":58960,\"bag-shopping-plus\":58961,\"bag-shopping\":62096,\"bagel\":58327,\"bags-shopping\":63559,\"baguette\":58328,\"bahai\":63078,\"baht-sign\":57516,\"ball-pile\":63358,\"balloon\":58083,\"balloons\":58084,\"ballot-check\":63283,\"ballot\":63282,\"ban-bug\":63481,\"ban-parking\":62998,\"ban-smoking\":62797,\"ban\":61534,\"banana\":58085,\"bandage\":62562,\"bangladeshi-taka-sign\":58086,\"banjo\":63651,\"barcode-read\":62564,\"barcode-scan\":62565,\"barcode\":61482,\"bars-filter\":57517,\"bars-progress\":63528,\"bars-sort\":57518,\"bars-staggered\":62800,\"bars\":61641,\"baseball-bat-ball\":62514,\"baseball\":62515,\"basket-shopping-minus\":58962,\"basket-shopping-plus\":58963,\"basket-shopping-simple\":57519,\"basket-shopping\":62097,\"basketball-hoop\":62517,\"basketball\":62516,\"bat\":63157,\"bath\":62157,\"battery-bolt\":62326,\"battery-empty\":62020,\"battery-exclamation\":57520,\"battery-full\":62016,\"battery-half\":62018,\"battery-low\":57521,\"battery-quarter\":62019,\"battery-slash\":62327,\"battery-three-quarters\":62017,\"bed-bunk\":63736,\"bed-empty\":63737,\"bed-front\":63735,\"bed-pulse\":62599,\"bed\":62006,\"bee\":57522,\"beer-mug-empty\":61692,\"beer-mug\":57523,\"bell-concierge\":62818,\"bell-exclamation\":63560,\"bell-on\":63738,\"bell-plus\":63561,\"bell-ring\":58924,\"bell-school-slash\":62934,\"bell-school\":62933,\"bell-slash\":61942,\"bell\":61683,\"bells\":63359,\"bench-tree\":58087,\"bezier-curve\":62811,\"bicycle\":61958,\"billboard\":58829,\"bin-bottles-recycle\":58870,\"bin-bottles\":58869,\"bin-recycle\":58871,\"binary-circle-check\":58172,\"binary-lock\":58173,\"binary-slash\":58174,\"binary\":58171,\"binoculars\":61925,\"biohazard\":63360,\"bird\":58473,\"bitcoin-sign\":57524,\"blanket-fire\":58330,\"blanket\":62616,\"blender-phone\":63158,\"blender\":62743,\"blinds-open\":63740,\"blinds-raised\":63741,\"blinds\":63739,\"block-brick-fire\":58332,\"block-brick\":58331,\"block-question\":58333,\"block-quote\":57525,\"block\":58474,\"blog\":63361,\"blueberries\":58088,\"bluetooth\":62099,\"bold\":61490,\"bolt-auto\":57526,\"bolt-lightning\":57527,\"bolt-slash\":57528,\"bolt\":61671,\"bomb\":61922,\"bone-break\":62936,\"bone\":62935,\"bong\":62812,\"book-arrow-right\":57529,\"book-arrow-up\":57530,\"book-atlas\":62808,\"book-bible\":63047,\"book-blank\":62937,\"book-bookmark\":57531,\"book-circle-arrow-right\":57532,\"book-circle-arrow-up\":57533,\"book-copy\":57534,\"book-font\":57535,\"book-heart\":62617,\"book-journal-whills\":63082,\"book-medical\":63462,\"book-open-cover\":57536,\"book-open-reader\":62938,\"book-open\":62744,\"book-quran\":63111,\"book-section\":57537,\"book-skull\":63159,\"book-sparkles\":63160,\"book-tanakh\":63527,\"book-user\":63463,\"book\":61485,\"bookmark-slash\":57538,\"bookmark\":61486,\"books-medical\":63464,\"books\":62939,\"boombox\":63653,\"boot-heeled\":58175,\"boot\":63362,\"booth-curtain\":63284,\"border-all\":63564,\"border-bottom-right\":63572,\"border-bottom\":63565,\"border-center-h\":63644,\"border-center-v\":63645,\"border-inner\":63566,\"border-left\":63567,\"border-none\":63568,\"border-outer\":63569,\"border-right\":63570,\"border-top-left\":63571,\"border-top\":63573,\"bore-hole\":58563,\"bottle-baby\":58995,\"bottle-droplet\":58564,\"bottle-water\":58565,\"bow-arrow\":63161,\"bowl-chopsticks-noodles\":58090,\"bowl-chopsticks\":58089,\"bowl-food\":58566,\"bowl-hot\":63523,\"bowl-rice\":58091,\"bowl-scoop\":58334,\"bowl-scoops\":58335,\"bowl-soft-serve\":58475,\"bowl-spoon\":58336,\"bowling-ball-pin\":57539,\"bowling-ball\":62518,\"bowling-pins\":62519,\"box-archive\":61831,\"box-ballot\":63285,\"box-check\":62567,\"box-circle-check\":57540,\"box-dollar\":62624,\"box-heart\":62621,\"box-open-full\":62620,\"box-open\":62622,\"box-taped\":62618,\"box-tissue\":57435,\"box\":62566,\"boxes-packing\":58567,\"boxes-stacked\":62568,\"boxing-glove\":62520,\"bracket-curly-right\":125,\"bracket-curly\":123,\"bracket-round-right\":41,\"bracket-round\":40,\"bracket-square-right\":93,\"bracket-square\":91,\"brackets-curly\":63466,\"brackets-round\":57541,\"brackets-square\":63465,\"braille\":62113,\"brain-arrow-curved-right\":63095,\"brain-circuit\":57542,\"brain\":62940,\"brake-warning\":57543,\"brazilian-real-sign\":58476,\"bread-loaf\":63467,\"bread-slice-butter\":58337,\"bread-slice\":63468,\"bridge-circle-check\":58569,\"bridge-circle-exclamation\":58570,\"bridge-circle-xmark\":58571,\"bridge-lock\":58572,\"bridge-suspension\":58573,\"bridge-water\":58574,\"bridge\":58568,\"briefcase-arrow-right\":58098,\"briefcase-blank\":57544,\"briefcase-medical\":62569,\"briefcase\":61617,\"brightness-low\":57546,\"brightness\":57545,\"bring-forward\":63574,\"bring-front\":63575,\"broccoli\":58338,\"broom-ball\":62552,\"broom-wide\":58833,\"broom\":62746,\"browser\":62334,\"browsers\":57547,\"brush\":62813,\"bucket\":58575,\"bug-slash\":58512,\"bug\":61832,\"bugs\":58576,\"building-circle-arrow-right\":58577,\"building-circle-check\":58578,\"building-circle-exclamation\":58579,\"building-circle-xmark\":58580,\"building-columns\":61852,\"building-flag\":58581,\"building-lock\":58582,\"building-magnifying-glass\":58908,\"building-memo\":58910,\"building-ngo\":58583,\"building-shield\":58584,\"building-un\":58585,\"building-user\":58586,\"building-wheat\":58587,\"building\":61869,\"buildings\":57548,\"bulldozer\":58965,\"bullhorn\":61601,\"bullseye-arrow\":63048,\"bullseye-pointer\":63049,\"bullseye\":61760,\"buoy-mooring\":58806,\"buoy\":58805,\"burger-cheese\":63473,\"burger-fries\":57549,\"burger-glass\":57550,\"burger-lettuce\":58339,\"burger-soda\":63576,\"burger\":63493,\"burrito\":63469,\"burst\":58588,\"bus-school\":62941,\"bus-simple\":62814,\"bus\":61959,\"business-time\":63050,\"butter\":58340,\"c\":67,\"cabin\":58477,\"cabinet-filing\":63051,\"cable-car\":63450,\"cactus\":63655,\"caduceus\":59009,\"cake-candles\":61949,\"cake-slice\":58341,\"calculator-simple\":63052,\"calculator\":61932,\"calendar-arrow-down\":57552,\"calendar-arrow-up\":57553,\"calendar-check\":62068,\"calendar-circle-exclamation\":58478,\"calendar-circle-minus\":58479,\"calendar-circle-plus\":58480,\"calendar-circle-user\":58481,\"calendar-clock\":57554,\"calendar-day\":63363,\"calendar-days\":61555,\"calendar-exclamation\":62260,\"calendar-heart\":57555,\"calendar-image\":57556,\"calendar-lines-pen\":58482,\"calendar-lines\":57557,\"calendar-minus\":62066,\"calendar-pen\":62259,\"calendar-plus\":62065,\"calendar-range\":57558,\"calendar-star\":63286,\"calendar-users\":58850,\"calendar-week\":63364,\"calendar-xmark\":62067,\"calendar\":61747,\"calendars\":57559,\"camcorder\":63656,\"camera-cctv\":63660,\"camera-movie\":63657,\"camera-polaroid\":63658,\"camera-retro\":61571,\"camera-rotate\":57560,\"camera-security\":63742,\"camera-slash\":57561,\"camera-viewfinder\":57562,\"camera-web-slash\":63539,\"camera-web\":63538,\"camera\":61488,\"campfire\":63162,\"campground\":63163,\"can-food\":58342,\"candle-holder\":63164,\"candy-bar\":58344,\"candy-cane\":63366,\"candy-corn\":63165,\"candy\":58343,\"cannabis\":62815,\"cannon\":58946,\"capsules\":62571,\"car-battery\":62943,\"car-bolt\":58177,\"car-building\":63577,\"car-bump\":62944,\"car-burst\":62945,\"car-bus\":63578,\"car-circle-bolt\":58178,\"car-garage\":62946,\"car-mirrors\":58179,\"car-on\":58589,\"car-rear\":62942,\"car-side-bolt\":58180,\"car-side\":62948,\"car-tilt\":62949,\"car-tunnel\":58590,\"car-wash\":62950,\"car-wrench\":62947,\"car\":61881,\"caravan-simple\":57344,\"caravan\":63743,\"card-club\":58345,\"card-diamond\":58346,\"card-heart\":58347,\"card-spade\":58348,\"cards-blank\":58591,\"cards\":58349,\"caret-down\":61655,\"caret-left\":61657,\"caret-right\":61658,\"caret-up\":61656,\"carpool\":59036,\"carrot\":63367,\"cars\":63579,\"cart-arrow-down\":61976,\"cart-arrow-up\":58350,\"cart-circle-arrow-down\":58351,\"cart-circle-arrow-up\":58352,\"cart-circle-check\":58353,\"cart-circle-exclamation\":58354,\"cart-circle-plus\":58355,\"cart-circle-xmark\":58356,\"cart-flatbed-boxes\":62581,\"cart-flatbed-empty\":62582,\"cart-flatbed-suitcase\":62877,\"cart-flatbed\":62580,\"cart-minus\":57563,\"cart-plus\":61975,\"cart-shopping-fast\":57564,\"cart-shopping\":61562,\"cart-xmark\":57565,\"cash-register\":63368,\"cassette-betamax\":63652,\"cassette-tape\":63659,\"cassette-vhs\":63724,\"castle\":57566,\"cat-space\":57345,\"cat\":63166,\"cauldron\":63167,\"cedi-sign\":57567,\"cent-sign\":58357,\"certificate\":61603,\"chair-office\":63169,\"chair\":63168,\"chalkboard-user\":62748,\"chalkboard\":62747,\"champagne-glass\":63390,\"champagne-glasses\":63391,\"charging-station\":62951,\"chart-area\":61950,\"chart-bar\":61568,\"chart-bullet\":57569,\"chart-candlestick\":57570,\"chart-column\":57571,\"chart-diagram\":59029,\"chart-fft\":59038,\"chart-gantt\":57572,\"chart-kanban\":58959,\"chart-line-down\":63053,\"chart-line-up-down\":58839,\"chart-line-up\":57573,\"chart-line\":61953,\"chart-mixed-up-circle-currency\":58840,\"chart-mixed-up-circle-dollar\":58841,\"chart-mixed\":63043,\"chart-network\":63370,\"chart-pie-simple-circle-currency\":58884,\"chart-pie-simple-circle-dollar\":58885,\"chart-pie-simple\":63054,\"chart-pie\":61952,\"chart-pyramid\":57574,\"chart-radar\":57575,\"chart-scatter-3d\":57576,\"chart-scatter-bubble\":57577,\"chart-scatter\":63470,\"chart-simple-horizontal\":58484,\"chart-simple\":58483,\"chart-sine\":59037,\"chart-tree-map\":57578,\"chart-user\":63139,\"chart-waterfall\":57579,\"check-double\":62816,\"check-to-slot\":63346,\"check\":61452,\"cheese-swiss\":63472,\"cheese\":63471,\"cherries\":57580,\"chess-bishop-piece\":62523,\"chess-bishop\":62522,\"chess-board\":62524,\"chess-clock-flip\":62526,\"chess-clock\":62525,\"chess-king-piece\":62528,\"chess-king\":62527,\"chess-knight-piece\":62530,\"chess-knight\":62529,\"chess-pawn-piece\":62532,\"chess-pawn\":62531,\"chess-queen-piece\":62534,\"chess-queen\":62533,\"chess-rook-piece\":62536,\"chess-rook\":62535,\"chess\":62521,\"chestnut\":58358,\"chevron-down\":61560,\"chevron-left\":61523,\"chevron-right\":61524,\"chevron-up\":61559,\"chevrons-down\":62242,\"chevrons-left\":62243,\"chevrons-right\":62244,\"chevrons-up\":62245,\"chf-sign\":58882,\"child-combatant\":58592,\"child-dress\":58780,\"child-reaching\":58781,\"child\":61870,\"children\":58593,\"chimney\":63371,\"chopsticks\":58359,\"church\":62749,\"circle-0\":57581,\"circle-1\":57582,\"circle-2\":57583,\"circle-3\":57584,\"circle-4\":57585,\"circle-5\":57586,\"circle-6\":57587,\"circle-7\":57588,\"circle-8\":57589,\"circle-9\":57590,\"circle-a\":57591,\"circle-ampersand\":57592,\"circle-arrow-down-left\":57593,\"circle-arrow-down-right\":57594,\"circle-arrow-down\":61611,\"circle-arrow-left\":61608,\"circle-arrow-right\":61609,\"circle-arrow-up-left\":57595,\"circle-arrow-up-right\":57596,\"circle-arrow-up\":61610,\"circle-b\":57597,\"circle-bolt\":57598,\"circle-book-open\":57599,\"circle-bookmark\":57600,\"circle-c\":57601,\"circle-calendar\":57602,\"circle-camera\":57603,\"circle-caret-down\":62253,\"circle-caret-left\":62254,\"circle-caret-right\":62256,\"circle-caret-up\":62257,\"circle-check\":61528,\"circle-chevron-down\":61754,\"circle-chevron-left\":61751,\"circle-chevron-right\":61752,\"circle-chevron-up\":61753,\"circle-d\":57604,\"circle-dashed\":57605,\"circle-divide\":57606,\"circle-dollar-to-slot\":62649,\"circle-dollar\":62184,\"circle-dot\":61842,\"circle-down-left\":57607,\"circle-down-right\":57608,\"circle-down\":62296,\"circle-e\":57609,\"circle-ellipsis-vertical\":57611,\"circle-ellipsis\":57610,\"circle-envelope\":57612,\"circle-euro\":58830,\"circle-exclamation-check\":57613,\"circle-exclamation\":61546,\"circle-f\":57614,\"circle-g\":57615,\"circle-gf\":59007,\"circle-h\":62590,\"circle-half-stroke\":61506,\"circle-half\":57616,\"circle-heart\":62663,\"circle-i\":57617,\"circle-info\":61530,\"circle-j\":57618,\"circle-k\":57619,\"circle-l\":57620,\"circle-left\":62297,\"circle-location-arrow\":62978,\"circle-m\":57621,\"circle-microphone-lines\":57623,\"circle-microphone\":57622,\"circle-minus\":61526,\"circle-n\":57624,\"circle-nodes\":58594,\"circle-notch\":61902,\"circle-o\":57625,\"circle-p\":57626,\"circle-parking\":62997,\"circle-pause\":62091,\"circle-phone-flip\":57628,\"circle-phone-hangup\":57629,\"circle-phone\":57627,\"circle-play\":61764,\"circle-plus\":61525,\"circle-q\":57630,\"circle-quarter-stroke\":58835,\"circle-quarter\":57631,\"circle-quarters\":58360,\"circle-question\":61529,\"circle-r\":57632,\"circle-radiation\":63418,\"circle-right\":62298,\"circle-s\":57633,\"circle-small\":57634,\"circle-sort-down\":57393,\"circle-sort-up\":57394,\"circle-sort\":57392,\"circle-star\":57635,\"circle-sterling\":58831,\"circle-stop\":62093,\"circle-t\":57636,\"circle-three-quarters-stroke\":58836,\"circle-three-quarters\":57637,\"circle-trash\":57638,\"circle-u\":57639,\"circle-up-left\":57640,\"circle-up-right\":57641,\"circle-up\":62299,\"circle-user\":62141,\"circle-v\":57642,\"circle-video\":57643,\"circle-w\":57644,\"circle-waveform-lines\":57645,\"circle-wifi-circle-wifi\":59006,\"circle-wifi\":59005,\"circle-x\":57646,\"circle-xmark\":61527,\"circle-y\":57647,\"circle-yen\":58832,\"circle-z\":57648,\"circle\":61713,\"circles-overlap-3\":59041,\"circles-overlap\":58880,\"citrus-slice\":58101,\"citrus\":58100,\"city\":63055,\"clapperboard-play\":57650,\"clapperboard\":57649,\"clarinet\":63661,\"claw-marks\":63170,\"clipboard-check\":62572,\"clipboard-list-check\":63287,\"clipboard-list\":62573,\"clipboard-medical\":57651,\"clipboard-prescription\":62952,\"clipboard-question\":58595,\"clipboard-user\":63475,\"clipboard\":62248,\"clock-desk\":57652,\"clock-eight-thirty\":58182,\"clock-eight\":58181,\"clock-eleven-thirty\":58184,\"clock-eleven\":58183,\"clock-five-thirty\":58186,\"clock-five\":58185,\"clock-four-thirty\":58187,\"clock-nine-thirty\":58189,\"clock-nine\":58188,\"clock-one-thirty\":58191,\"clock-one\":58190,\"clock-rotate-left\":61914,\"clock-seven-thirty\":58193,\"clock-seven\":58192,\"clock-six-thirty\":58195,\"clock-six\":58194,\"clock-ten-thirty\":58197,\"clock-ten\":58196,\"clock-three-thirty\":58199,\"clock-three\":58198,\"clock-twelve-thirty\":58201,\"clock-twelve\":58200,\"clock-two-thirty\":58203,\"clock-two\":58202,\"clock\":61463,\"clone\":62029,\"closed-captioning-slash\":57653,\"closed-captioning\":61962,\"clothes-hanger\":57654,\"cloud-arrow-down\":61677,\"cloud-arrow-up\":61678,\"cloud-binary\":58881,\"cloud-bolt-moon\":63341,\"cloud-bolt-sun\":63342,\"cloud-bolt\":63340,\"cloud-check\":58204,\"cloud-drizzle\":63288,\"cloud-exclamation\":58513,\"cloud-fog\":63310,\"cloud-hail-mixed\":63290,\"cloud-hail\":63289,\"cloud-meatball\":63291,\"cloud-minus\":58205,\"cloud-moon-rain\":63292,\"cloud-moon\":63171,\"cloud-music\":63662,\"cloud-plus\":58206,\"cloud-question\":58514,\"cloud-rain\":63293,\"cloud-rainbow\":63294,\"cloud-showers-heavy\":63296,\"cloud-showers-water\":58596,\"cloud-showers\":63295,\"cloud-slash\":57655,\"cloud-sleet\":63297,\"cloud-snow\":63298,\"cloud-sun-rain\":63299,\"cloud-sun\":63172,\"cloud-word\":57656,\"cloud-xmark\":58207,\"cloud\":61634,\"clouds-moon\":63301,\"clouds-sun\":63302,\"clouds\":63300,\"clover\":57657,\"club\":62247,\"coconut\":58102,\"code-branch\":61734,\"code-commit\":62342,\"code-compare\":57658,\"code-fork\":57659,\"code-merge\":62343,\"code-pull-request-closed\":58361,\"code-pull-request-draft\":58362,\"code-pull-request\":57660,\"code-simple\":57661,\"code\":61729,\"coffee-bean\":57662,\"coffee-beans\":57663,\"coffee-pot\":57346,\"coffin-cross\":57425,\"coffin\":63174,\"coin-blank\":58363,\"coin-front\":58364,\"coin-vertical\":58365,\"coin\":63580,\"coins\":62750,\"colon-sign\":57664,\"colon\":58,\"columns-3\":58209,\"comet\":57347,\"comma\":44,\"command\":57666,\"comment-arrow-down\":57667,\"comment-arrow-up-right\":57669,\"comment-arrow-up\":57668,\"comment-captions\":57670,\"comment-check\":62636,\"comment-code\":57671,\"comment-dollar\":63057,\"comment-dots\":62637,\"comment-exclamation\":62639,\"comment-heart\":58824,\"comment-image\":57672,\"comment-lines\":62640,\"comment-medical\":63477,\"comment-middle-top\":57674,\"comment-middle\":57673,\"comment-minus\":62641,\"comment-music\":63664,\"comment-nodes\":59030,\"comment-pen\":62638,\"comment-plus\":62642,\"comment-question\":57675,\"comment-quote\":57676,\"comment-slash\":62643,\"comment-smile\":62644,\"comment-sms\":63437,\"comment-text\":57677,\"comment-xmark\":62645,\"comment\":61557,\"comments-dollar\":63059,\"comments-question-check\":57679,\"comments-question\":57678,\"comments\":61574,\"compact-disc\":62751,\"compass-drafting\":62824,\"compass-slash\":62953,\"compass\":61774,\"compress-wide\":62246,\"compress\":61542,\"computer-classic\":63665,\"computer-mouse-scrollwheel\":63693,\"computer-mouse\":63692,\"computer-speaker\":63666,\"computer\":58597,\"container-storage\":62647,\"conveyor-belt-arm\":58872,\"conveyor-belt-boxes\":62575,\"conveyor-belt-empty\":57680,\"conveyor-belt\":62574,\"cookie-bite\":62820,\"cookie\":62819,\"copy\":61637,\"copyright\":61945,\"corn\":63175,\"corner\":58366,\"couch\":62648,\"court-sport\":58947,\"cow\":63176,\"cowbell-circle-plus\":63668,\"cowbell\":63667,\"crab\":58367,\"crate-apple\":63153,\"crate-empty\":57681,\"credit-card-blank\":62345,\"credit-card-front\":62346,\"credit-card\":61597,\"cricket-bat-ball\":62537,\"croissant\":63478,\"crop-simple\":62821,\"crop\":61733,\"cross\":63060,\"crosshairs-simple\":58783,\"crosshairs\":61531,\"crow\":62752,\"crown\":62753,\"crutch\":63479,\"crutches\":63480,\"cruzeiro-sign\":57682,\"crystal-ball\":58210,\"cube\":61874,\"cubes-stacked\":58598,\"cubes\":61875,\"cucumber\":58369,\"cup-straw-swoosh\":58212,\"cup-straw\":58211,\"cup-togo\":63173,\"cupcake\":58370,\"curling-stone\":62538,\"custard\":58371,\"d\":68,\"dagger\":63179,\"dash\":58372,\"database\":61888,\"deer-rudolph\":63375,\"deer\":63374,\"delete-left\":62810,\"delete-right\":57684,\"democrat\":63303,\"desktop-arrow-down\":57685,\"desktop\":62352,\"dharmachakra\":63061,\"diagram-cells\":58485,\"diagram-lean-canvas\":57686,\"diagram-nested\":57687,\"diagram-next\":58486,\"diagram-predecessor\":58487,\"diagram-previous\":58488,\"diagram-project\":62786,\"diagram-sankey\":57688,\"diagram-subtask\":58489,\"diagram-successor\":58490,\"diagram-venn\":57690,\"dial-high\":57692,\"dial-low\":57693,\"dial-max\":57694,\"dial-med-low\":57696,\"dial-med\":57695,\"dial-min\":57697,\"dial-off\":57698,\"dial\":57691,\"diamond-exclamation\":58373,\"diamond-half-stroke\":58808,\"diamond-half\":58807,\"diamond-turn-right\":62955,\"diamond\":61977,\"diamonds-4\":59019,\"dice-d10\":63181,\"dice-d12\":63182,\"dice-d20\":63183,\"dice-d4\":63184,\"dice-d6\":63185,\"dice-d8\":63186,\"dice-five\":62755,\"dice-four\":62756,\"dice-one\":62757,\"dice-six\":62758,\"dice-three\":62759,\"dice-two\":62760,\"dice\":62754,\"dinosaur\":58878,\"diploma\":62954,\"disc-drive\":63669,\"disease\":63482,\"display-arrow-down\":57700,\"display-chart-up-circle-currency\":58853,\"display-chart-up-circle-dollar\":58854,\"display-chart-up\":58851,\"display-code\":57701,\"display-medical\":57702,\"display-slash\":58106,\"display\":57699,\"distribute-spacing-horizontal\":58213,\"distribute-spacing-vertical\":58214,\"ditto\":34,\"divide\":62761,\"dna\":62577,\"do-not-enter\":62956,\"dog-leashed\":63188,\"dog\":63187,\"dollar-sign\":36,\"dolly-empty\":62579,\"dolly\":62578,\"dolphin\":57704,\"dong-sign\":57705,\"donut\":58374,\"door-closed\":62762,\"door-open\":62763,\"dove\":62650,\"down-from-bracket\":58987,\"down-from-dotted-line\":58375,\"down-from-line\":62281,\"down-left-and-up-right-to-center\":62498,\"down-left\":57706,\"down-long\":62217,\"down-right\":57707,\"down-to-bracket\":58599,\"down-to-dotted-line\":58376,\"down-to-line\":62282,\"down\":62292,\"download\":61465,\"dragon\":63189,\"draw-circle\":62957,\"draw-polygon\":62958,\"draw-square\":62959,\"dreidel\":63378,\"drone-front\":63584,\"drone\":63583,\"droplet-degree\":63304,\"droplet-percent\":63312,\"droplet-slash\":62919,\"droplet\":61507,\"drum-steelpan\":62826,\"drum\":62825,\"drumstick-bite\":63191,\"drumstick\":63190,\"dryer-heat\":63586,\"dryer\":63585,\"duck\":63192,\"dumbbell\":62539,\"dumpster-fire\":63380,\"dumpster\":63379,\"dungeon\":63193,\"e\":69,\"ear-deaf\":62116,\"ear-listen\":62114,\"ear-muffs\":63381,\"ear\":62960,\"earth-africa\":62844,\"earth-americas\":62845,\"earth-asia\":62846,\"earth-europe\":63394,\"earth-oceania\":58491,\"eclipse\":63305,\"egg-fried\":63484,\"egg\":63483,\"eggplant\":57708,\"eject\":61522,\"elephant\":63194,\"elevator\":57709,\"ellipsis-stroke-vertical\":62364,\"ellipsis-stroke\":62363,\"ellipsis-vertical\":61762,\"ellipsis\":61761,\"empty-set\":63062,\"engine-warning\":62962,\"engine\":57710,\"envelope-circle-check\":58600,\"envelope-dot\":57711,\"envelope-open-dollar\":63063,\"envelope-open-text\":63064,\"envelope-open\":62134,\"envelope\":61664,\"envelopes-bulk\":63092,\"envelopes\":57712,\"equals\":61,\"eraser\":61741,\"escalator\":57713,\"ethernet\":63382,\"euro-sign\":61779,\"excavator\":58966,\"exclamation\":33,\"expand-wide\":62240,\"expand\":61541,\"explosion\":58601,\"eye-dropper-full\":57714,\"eye-dropper-half\":57715,\"eye-dropper\":61947,\"eye-evil\":63195,\"eye-low-vision\":62120,\"eye-slash\":61552,\"eye\":61550,\"eyes\":58215,\"f\":70,\"face-angry-horns\":58216,\"face-angry\":62806,\"face-anguished\":58217,\"face-anxious-sweat\":58218,\"face-astonished\":58219,\"face-awesome\":58377,\"face-beam-hand-over-mouth\":58492,\"face-clouds\":58493,\"face-confounded\":58220,\"face-confused\":58221,\"face-cowboy-hat\":58222,\"face-diagonal-mouth\":58494,\"face-disappointed\":58223,\"face-disguise\":58224,\"face-dizzy\":62823,\"face-dotted\":58495,\"face-downcast-sweat\":58225,\"face-drooling\":58226,\"face-exhaling\":58496,\"face-explode\":58110,\"face-expressionless\":58227,\"face-eyes-xmarks\":58228,\"face-fearful\":58229,\"face-flushed\":62841,\"face-frown-open\":62842,\"face-frown-slight\":58230,\"face-frown\":61721,\"face-glasses\":58231,\"face-grimace\":62847,\"face-grin-beam-sweat\":62851,\"face-grin-beam\":62850,\"face-grin-hearts\":62852,\"face-grin-squint-tears\":62854,\"face-grin-squint\":62853,\"face-grin-stars\":62855,\"face-grin-tears\":62856,\"face-grin-tongue-squint\":62858,\"face-grin-tongue-wink\":62859,\"face-grin-tongue\":62857,\"face-grin-wide\":62849,\"face-grin-wink\":62860,\"face-grin\":62848,\"face-hand-over-mouth\":58232,\"face-hand-peeking\":58497,\"face-hand-yawn\":58233,\"face-head-bandage\":58234,\"face-holding-back-tears\":58498,\"face-hushed\":58235,\"face-icicles\":58236,\"face-kiss-beam\":62871,\"face-kiss-closed-eyes\":58237,\"face-kiss-wink-heart\":62872,\"face-kiss\":62870,\"face-laugh-beam\":62874,\"face-laugh-squint\":62875,\"face-laugh-wink\":62876,\"face-laugh\":62873,\"face-lying\":58238,\"face-mask\":58239,\"face-meh-blank\":62884,\"face-meh\":61722,\"face-melting\":58499,\"face-monocle\":58240,\"face-nauseated\":58241,\"face-nose-steam\":58242,\"face-party\":58243,\"face-pensive\":58244,\"face-persevering\":58245,\"face-pleading\":58246,\"face-pouting\":58247,\"face-raised-eyebrow\":58248,\"face-relieved\":58249,\"face-rolling-eyes\":62885,\"face-sad-cry\":62899,\"face-sad-sweat\":58250,\"face-sad-tear\":62900,\"face-saluting\":58500,\"face-scream\":58251,\"face-shush\":58252,\"face-sleeping\":58253,\"face-sleepy\":58254,\"face-smile-beam\":62904,\"face-smile-halo\":58255,\"face-smile-hearts\":58256,\"face-smile-horns\":58257,\"face-smile-plus\":62905,\"face-smile-relaxed\":58258,\"face-smile-tear\":58259,\"face-smile-tongue\":58260,\"face-smile-upside-down\":58261,\"face-smile-wink\":62682,\"face-smile\":61720,\"face-smiling-hands\":58262,\"face-smirking\":58263,\"face-spiral-eyes\":58501,\"face-sunglasses\":58264,\"face-surprise\":62914,\"face-swear\":58265,\"face-thermometer\":58266,\"face-thinking\":58267,\"face-tired\":62920,\"face-tissue\":58268,\"face-tongue-money\":58269,\"face-tongue-sweat\":58270,\"face-unamused\":58271,\"face-viewfinder\":58111,\"face-vomit\":58272,\"face-weary\":58273,\"face-woozy\":58274,\"face-worried\":58275,\"face-zany\":58276,\"face-zipper\":58277,\"falafel\":58378,\"family-dress\":58113,\"family-pants\":58114,\"family\":58112,\"fan-table\":57348,\"fan\":63587,\"farm\":63588,\"faucet-drip\":57350,\"faucet\":57349,\"fax\":61868,\"feather-pointed\":62827,\"feather\":62765,\"fence\":58115,\"ferris-wheel\":57716,\"ferry\":58602,\"field-hockey-stick-ball\":62540,\"file-arrow-down\":62829,\"file-arrow-up\":62836,\"file-audio\":61895,\"file-binary\":57717,\"file-cad\":58994,\"file-certificate\":62963,\"file-chart-column\":63065,\"file-chart-pie\":63066,\"file-check\":62230,\"file-circle-check\":58784,\"file-circle-exclamation\":58603,\"file-circle-info\":58515,\"file-circle-minus\":58605,\"file-circle-plus\":58516,\"file-circle-question\":58607,\"file-circle-xmark\":58785,\"file-code\":61897,\"file-contract\":62828,\"file-csv\":63197,\"file-dashed-line\":63607,\"file-doc\":58861,\"file-eps\":58948,\"file-excel\":61891,\"file-exclamation\":62234,\"file-export\":62830,\"file-fragment\":59031,\"file-gif\":58949,\"file-half-dashed\":59032,\"file-heart\":57718,\"file-image\":61893,\"file-import\":62831,\"file-invoice-dollar\":62833,\"file-invoice\":62832,\"file-jpg\":58950,\"file-lines\":61788,\"file-lock\":58278,\"file-magnifying-glass\":63589,\"file-medical\":62583,\"file-minus\":62232,\"file-mov\":58951,\"file-mp3\":58952,\"file-mp4\":58953,\"file-music\":63670,\"file-pdf\":61889,\"file-pen\":62236,\"file-plus-minus\":57719,\"file-plus\":62233,\"file-png\":58982,\"file-powerpoint\":61892,\"file-ppt\":58954,\"file-prescription\":62834,\"file-shield\":58608,\"file-signature\":62835,\"file-slash\":58279,\"file-spreadsheet\":63067,\"file-svg\":58955,\"file-user\":63068,\"file-vector\":58956,\"file-video\":61896,\"file-waveform\":62584,\"file-word\":61890,\"file-xls\":58957,\"file-xmark\":62231,\"file-xml\":58964,\"file-zip\":58862,\"file-zipper\":61894,\"file\":61787,\"files-medical\":63485,\"files\":57720,\"fill-drip\":62838,\"fill\":62837,\"film-canister\":63671,\"film-simple\":62368,\"film-slash\":57721,\"film\":61448,\"films\":57722,\"filter-circle-dollar\":63074,\"filter-circle-xmark\":57723,\"filter-list\":57724,\"filter-slash\":57725,\"filter\":61616,\"filters\":57726,\"fingerprint\":62839,\"fire-burner\":58609,\"fire-extinguisher\":61748,\"fire-flame-curved\":63460,\"fire-flame-simple\":62570,\"fire-flame\":63199,\"fire-hydrant\":57727,\"fire-smoke\":63307,\"fire\":61549,\"fireplace\":63386,\"fish-bones\":58116,\"fish-cooked\":63486,\"fish-fins\":58610,\"fish\":62840,\"fishing-rod\":58280,\"flag-checkered\":61726,\"flag-pennant\":62550,\"flag-swallowtail\":63308,\"flag-usa\":63309,\"flag\":61476,\"flashlight\":63672,\"flask-gear\":58865,\"flask-round-poison\":63200,\"flask-round-potion\":63201,\"flask-vial\":58611,\"flask\":61635,\"flatbread-stuffed\":58380,\"flatbread\":58379,\"floppy-disk-circle-arrow-right\":57728,\"floppy-disk-circle-xmark\":57729,\"floppy-disk-pen\":57730,\"floppy-disk\":61639,\"floppy-disks\":57731,\"florin-sign\":57732,\"flower-daffodil\":63488,\"flower-tulip\":63489,\"flower\":63487,\"flute\":63673,\"flux-capacitor\":63674,\"flying-disc\":58281,\"folder-arrow-down\":57427,\"folder-arrow-up\":57428,\"folder-bookmark\":57734,\"folder-check\":58958,\"folder-closed\":57733,\"folder-gear\":57735,\"folder-grid\":57736,\"folder-heart\":57737,\"folder-image\":57738,\"folder-magnifying-glass\":57739,\"folder-medical\":57740,\"folder-minus\":63069,\"folder-music\":57741,\"folder-open\":61564,\"folder-plus\":63070,\"folder-tree\":63490,\"folder-user\":57742,\"folder-xmark\":63071,\"folder\":61563,\"folders\":63072,\"fondue-pot\":58381,\"font-awesome\":62132,\"font-case\":63590,\"font\":61489,\"football-helmet\":62543,\"football\":62542,\"fork-knife\":62182,\"fork\":62179,\"forklift\":62586,\"fort\":58502,\"forward-fast\":61520,\"forward-step\":61521,\"forward\":61518,\"frame\":58517,\"franc-sign\":57743,\"french-fries\":63491,\"frog\":62766,\"function\":63073,\"futbol\":61923,\"g\":71,\"galaxy\":57352,\"gallery-thumbnails\":58282,\"game-board-simple\":63592,\"game-board\":63591,\"game-console-handheld-crank\":58809,\"game-console-handheld\":63675,\"gamepad-modern\":58786,\"gamepad\":61723,\"garage-car\":57354,\"garage-open\":57355,\"garage\":57353,\"garlic\":58382,\"gas-pump-slash\":62964,\"gas-pump\":62767,\"gauge-circle-bolt\":58518,\"gauge-circle-minus\":58519,\"gauge-circle-plus\":58520,\"gauge-high\":63013,\"gauge-low\":63015,\"gauge-max\":63014,\"gauge-min\":63016,\"gauge-simple-high\":63018,\"gauge-simple-low\":63020,\"gauge-simple-max\":63019,\"gauge-simple-min\":63021,\"gauge-simple\":63017,\"gauge\":63012,\"gavel\":61667,\"gear-code\":58856,\"gear-complex-code\":58859,\"gear-complex\":58857,\"gear\":61459,\"gears\":61573,\"gem\":62373,\"genderless\":61997,\"ghost\":63202,\"gif\":57744,\"gift-card\":63075,\"gift\":61547,\"gifts\":63388,\"gingerbread-man\":63389,\"glass-citrus\":63593,\"glass-empty\":57745,\"glass-half\":57746,\"glass-water-droplet\":58613,\"glass-water\":58612,\"glass\":63492,\"glasses-round\":62965,\"glasses\":62768,\"globe-pointer\":58894,\"globe-snow\":63395,\"globe-stand\":62966,\"globe-wifi\":59013,\"globe\":61612,\"goal-net\":58283,\"golf-ball-tee\":62544,\"golf-club\":62545,\"golf-flag-hole\":58284,\"gopuram\":63076,\"graduation-cap\":61853,\"gramophone\":63677,\"grapes\":58118,\"grate-droplet\":57748,\"grate\":57747,\"greater-than-equal\":62770,\"greater-than\":62,\"grid-2-plus\":57751,\"grid-2\":57750,\"grid-4\":57752,\"grid-5\":57753,\"grid-dividers\":58285,\"grid-horizontal\":58119,\"grid-round-2-plus\":58844,\"grid-round-2\":58843,\"grid-round-4\":58845,\"grid-round-5\":58846,\"grid-round\":58842,\"grid\":57749,\"grill-fire\":58788,\"grill-hot\":58789,\"grill\":58787,\"grip-dots-vertical\":58385,\"grip-dots\":58384,\"grip-lines-vertical\":63397,\"grip-lines\":63396,\"grip-vertical\":62862,\"grip\":62861,\"group-arrows-rotate\":58614,\"guarani-sign\":57754,\"guitar-electric\":63678,\"guitar\":63398,\"guitars\":63679,\"gun-slash\":57756,\"gun-squirt\":57757,\"gun\":57755,\"h\":72,\"h1\":62227,\"h2\":62228,\"h3\":62229,\"h4\":63594,\"h5\":58386,\"h6\":58387,\"hammer-brush\":58912,\"hammer-crash\":58388,\"hammer-war\":63204,\"hammer\":63203,\"hamsa\":63077,\"hand-back-fist\":62037,\"hand-back-point-down\":57758,\"hand-back-point-left\":57759,\"hand-back-point-ribbon\":57760,\"hand-back-point-right\":57761,\"hand-back-point-up\":57762,\"hand-dots\":62561,\"hand-fingers-crossed\":57763,\"hand-fist\":63198,\"hand-heart\":62652,\"hand-holding-box\":62587,\"hand-holding-circle-dollar\":58913,\"hand-holding-dollar\":62656,\"hand-holding-droplet\":62657,\"hand-holding-hand\":58615,\"hand-holding-heart\":62654,\"hand-holding-magic\":63205,\"hand-holding-medical\":57436,\"hand-holding-seedling\":62655,\"hand-holding-skull\":57764,\"hand-holding\":62653,\"hand-horns\":57769,\"hand-lizard\":62040,\"hand-love\":57765,\"hand-middle-finger\":63494,\"hand-peace\":62043,\"hand-point-down\":61607,\"hand-point-left\":61605,\"hand-point-ribbon\":57766,\"hand-point-right\":61604,\"hand-point-up\":61606,\"hand-pointer\":62042,\"hand-scissors\":62039,\"hand-sparkles\":57437,\"hand-spock\":62041,\"hand-wave\":57767,\"hand\":62038,\"handcuffs\":58616,\"hands-asl-interpreting\":62115,\"hands-bound\":58617,\"hands-bubbles\":57438,\"hands-clapping\":57768,\"hands-holding-child\":58618,\"hands-holding-circle\":58619,\"hands-holding-diamond\":62588,\"hands-holding-dollar\":62661,\"hands-holding-heart\":62659,\"hands-holding\":62658,\"hands-praying\":63108,\"hands\":62119,\"handshake-angle\":62660,\"handshake-simple-slash\":57439,\"handshake-simple\":62662,\"handshake-slash\":57440,\"handshake\":62133,\"hanukiah\":63206,\"hard-drive\":61600,\"hashtag-lock\":58389,\"hashtag\":35,\"hat-beach\":58886,\"hat-chef\":63595,\"hat-cowboy-side\":63681,\"hat-cowboy\":63680,\"hat-santa\":63399,\"hat-winter\":63400,\"hat-witch\":63207,\"hat-wizard\":63208,\"head-side-brain\":63496,\"head-side-cough-slash\":57442,\"head-side-cough\":57441,\"head-side-gear\":58897,\"head-side-goggles\":63210,\"head-side-headphones\":63682,\"head-side-heart\":57770,\"head-side-mask\":57443,\"head-side-medical\":63497,\"head-side-virus\":57444,\"head-side\":63209,\"heading\":61916,\"headphones-simple\":62863,\"headphones\":61477,\"headset\":62864,\"heart-circle-bolt\":58620,\"heart-circle-check\":58621,\"heart-circle-exclamation\":58622,\"heart-circle-minus\":58623,\"heart-circle-plus\":58624,\"heart-circle-xmark\":58625,\"heart-crack\":63401,\"heart-half-stroke\":57772,\"heart-half\":57771,\"heart-pulse\":61982,\"heart\":61444,\"heat\":57356,\"helicopter-symbol\":58626,\"helicopter\":62771,\"helmet-battle\":63211,\"helmet-safety\":63495,\"helmet-un\":58627,\"hexagon-check\":58390,\"hexagon-divide\":57773,\"hexagon-exclamation\":58391,\"hexagon-image\":58628,\"hexagon-minus\":62215,\"hexagon-nodes-bolt\":59034,\"hexagon-nodes\":59033,\"hexagon-plus\":62208,\"hexagon-vertical-nft-slanted\":58630,\"hexagon-vertical-nft\":58629,\"hexagon-xmark\":62190,\"hexagon\":62226,\"high-definition\":57774,\"highlighter-line\":57775,\"highlighter\":62865,\"hill-avalanche\":58631,\"hill-rockslide\":58632,\"hippo\":63213,\"hockey-mask\":63214,\"hockey-puck\":62547,\"hockey-stick-puck\":58286,\"hockey-sticks\":62548,\"holly-berry\":63402,\"honey-pot\":58392,\"hood-cloak\":63215,\"horizontal-rule\":63596,\"horse-head\":63403,\"horse-saddle\":63683,\"horse\":63216,\"hose-reel\":58394,\"hose\":58393,\"hospital-user\":63501,\"hospital\":61688,\"hospitals\":63502,\"hot-tub-person\":62867,\"hotdog\":63503,\"hotel\":62868,\"hourglass-clock\":58395,\"hourglass-end\":62035,\"hourglass-half\":62034,\"hourglass-start\":62033,\"hourglass\":62036,\"house-blank\":58503,\"house-building\":57777,\"house-chimney-blank\":58288,\"house-chimney-crack\":63217,\"house-chimney-heart\":57778,\"house-chimney-medical\":63474,\"house-chimney-user\":57445,\"house-chimney-window\":57357,\"house-chimney\":58287,\"house-circle-check\":58633,\"house-circle-exclamation\":58634,\"house-circle-xmark\":58635,\"house-crack\":58289,\"house-day\":57358,\"house-fire\":58636,\"house-flag\":58637,\"house-flood-water-circle-arrow-right\":58639,\"house-flood-water\":58638,\"house-heart\":62665,\"house-laptop\":57446,\"house-lock\":58640,\"house-medical-circle-check\":58641,\"house-medical-circle-exclamation\":58642,\"house-medical-circle-xmark\":58643,\"house-medical-flag\":58644,\"house-medical\":58290,\"house-night\":57360,\"house-person-leave\":57359,\"house-person-return\":57361,\"house-signal\":57362,\"house-tree\":57779,\"house-tsunami\":58645,\"house-turret\":57780,\"house-user\":57776,\"house-water\":63311,\"house-window\":58291,\"house\":61461,\"hryvnia-sign\":63218,\"hundred-points\":58396,\"hurricane\":63313,\"hydra\":59014,\"hyphen\":45,\"i-cursor\":62022,\"i\":73,\"ice-cream\":63504,\"ice-skate\":63404,\"icicles\":63405,\"icons\":63597,\"id-badge\":62145,\"id-card-clip\":62591,\"id-card\":62146,\"igloo\":63406,\"image-landscape\":57781,\"image-polaroid-user\":57782,\"image-polaroid\":63684,\"image-portrait\":62432,\"image-slash\":57783,\"image-user\":57784,\"image\":61502,\"images-user\":57785,\"images\":62210,\"inbox-full\":57786,\"inbox-in\":62224,\"inbox-out\":62225,\"inbox\":61468,\"inboxes\":57787,\"indent\":61500,\"indian-rupee-sign\":57788,\"industry-windows\":62387,\"industry\":62069,\"infinity\":62772,\"info\":61737,\"inhaler\":62969,\"input-numeric\":57789,\"input-pipe\":57790,\"input-text\":57791,\"integral\":63079,\"interrobang\":58810,\"intersection\":63080,\"island-tropical\":63505,\"italic\":61491,\"j\":74,\"jack-o-lantern\":62222,\"jar-wheat\":58647,\"jar\":58646,\"jedi\":63081,\"jet-fighter-up\":58648,\"jet-fighter\":61691,\"joint\":62869,\"joystick\":63685,\"jug-bottle\":58875,\"jug-detergent\":58649,\"jug\":63686,\"k\":75,\"kaaba\":63083,\"kazoo\":63687,\"kerning\":63599,\"key-skeleton-left-right\":58292,\"key-skeleton\":63219,\"key\":61572,\"keyboard-brightness-low\":57793,\"keyboard-brightness\":57792,\"keyboard-down\":57794,\"keyboard-left\":57795,\"keyboard\":61724,\"keynote\":63084,\"khanda\":63085,\"kidneys\":62971,\"kip-sign\":57796,\"kit-medical\":62585,\"kitchen-set\":58650,\"kite\":63220,\"kiwi-bird\":62773,\"kiwi-fruit\":58124,\"knife-kitchen\":63221,\"knife\":62180,\"l\":76,\"lacrosse-stick-ball\":58294,\"lacrosse-stick\":58293,\"lambda\":63086,\"lamp-desk\":57364,\"lamp-floor\":57365,\"lamp-street\":57797,\"lamp\":62666,\"land-mine-on\":58651,\"landmark-dome\":63314,\"landmark-flag\":58652,\"landmark-magnifying-glass\":58914,\"landmark\":63087,\"language\":61867,\"laptop-arrow-down\":57798,\"laptop-binary\":58855,\"laptop-code\":62972,\"laptop-file\":58653,\"laptop-medical\":63506,\"laptop-mobile\":63610,\"laptop-slash\":57799,\"laptop\":61705,\"lari-sign\":57800,\"lasso-sparkles\":57801,\"lasso\":63688,\"layer-group\":62973,\"layer-minus\":62974,\"layer-plus\":62975,\"leaf-heart\":62667,\"leaf-maple\":63222,\"leaf-oak\":63223,\"leaf\":61548,\"leafy-green\":58397,\"left-from-bracket\":58988,\"left-from-line\":62280,\"left-long-to-line\":58398,\"left-long\":62218,\"left-right\":62263,\"left-to-bracket\":58989,\"left-to-line\":62283,\"left\":62293,\"lemon\":61588,\"less-than-equal\":62775,\"less-than\":60,\"life-ring\":61901,\"light-ceiling\":57366,\"light-emergency-on\":58400,\"light-emergency\":58399,\"light-switch-off\":57368,\"light-switch-on\":57369,\"light-switch\":57367,\"lightbulb-cfl-on\":58791,\"lightbulb-cfl\":58790,\"lightbulb-dollar\":63088,\"lightbulb-exclamation-on\":57802,\"lightbulb-exclamation\":63089,\"lightbulb-gear\":58877,\"lightbulb-message\":59015,\"lightbulb-on\":63090,\"lightbulb-slash\":63091,\"lightbulb\":61675,\"lighthouse\":58898,\"lights-holiday\":63410,\"line-columns\":63600,\"line-height\":63601,\"lines-leaning\":58654,\"link-horizontal-slash\":57804,\"link-horizontal\":57803,\"link-simple-slash\":57806,\"link-simple\":57805,\"link-slash\":61735,\"link\":61633,\"lips\":62976,\"lira-sign\":61845,\"list-check\":61614,\"list-dropdown\":57807,\"list-music\":63689,\"list-ol\":61643,\"list-radio\":57808,\"list-timeline\":57809,\"list-tree\":57810,\"list-ul\":61642,\"list\":61498,\"litecoin-sign\":57811,\"loader\":57812,\"lobster\":58401,\"location-arrow-up\":58938,\"location-arrow\":61732,\"location-check\":62982,\"location-crosshairs-slash\":62979,\"location-crosshairs\":62977,\"location-dot-slash\":62981,\"location-dot\":62405,\"location-exclamation\":62984,\"location-minus\":62985,\"location-pen\":62983,\"location-pin-lock\":58655,\"location-pin-slash\":62988,\"location-pin\":61505,\"location-plus\":62986,\"location-question\":62987,\"location-smile\":62989,\"location-xmark\":62990,\"lock-a\":58402,\"lock-hashtag\":58403,\"lock-keyhole-open\":62402,\"lock-keyhole\":62221,\"lock-open\":62401,\"lock\":61475,\"locust\":58656,\"lollipop\":58404,\"loveseat\":62668,\"luchador-mask\":62549,\"lungs-virus\":57447,\"lungs\":62980,\"m\":77,\"mace\":63224,\"magnet\":61558,\"magnifying-glass-arrow-right\":58657,\"magnifying-glass-arrows-rotate\":58974,\"magnifying-glass-chart\":58658,\"magnifying-glass-dollar\":63112,\"magnifying-glass-location\":63113,\"magnifying-glass-minus\":61456,\"magnifying-glass-music\":58975,\"magnifying-glass-play\":58976,\"magnifying-glass-plus\":61454,\"magnifying-glass-waveform\":58977,\"magnifying-glass\":61442,\"mailbox-flag-up\":58811,\"mailbox\":63507,\"manat-sign\":57813,\"mandolin\":63225,\"mango\":58127,\"manhole\":57814,\"map-location-dot\":62880,\"map-location\":62879,\"map-pin\":62070,\"map\":62073,\"marker\":62881,\"mars-and-venus-burst\":58659,\"mars-and-venus\":61988,\"mars-double\":61991,\"mars-stroke-right\":61995,\"mars-stroke-up\":61994,\"mars-stroke\":61993,\"mars\":61986,\"martini-glass-citrus\":62817,\"martini-glass-empty\":61440,\"martini-glass\":62843,\"mask-face\":57815,\"mask-snorkel\":58295,\"mask-ventilator\":58660,\"mask\":63226,\"masks-theater\":63024,\"mattress-pillow\":58661,\"maximize\":62238,\"meat\":63508,\"medal\":62882,\"megaphone\":63093,\"melon-slice\":58129,\"melon\":58128,\"memo-circle-check\":57817,\"memo-circle-info\":58522,\"memo-pad\":57818,\"memo\":57816,\"memory\":62776,\"menorah\":63094,\"mercury\":61987,\"merge\":58662,\"message-arrow-down\":57819,\"message-arrow-up-right\":57821,\"message-arrow-up\":57820,\"message-bot\":58296,\"message-captions\":57822,\"message-check\":62626,\"message-code\":57823,\"message-dollar\":63056,\"message-dots\":62627,\"message-exclamation\":62629,\"message-heart\":58825,\"message-image\":57824,\"message-lines\":62630,\"message-medical\":63476,\"message-middle-top\":57826,\"message-middle\":57825,\"message-minus\":62631,\"message-music\":63663,\"message-pen\":62628,\"message-plus\":62632,\"message-question\":57827,\"message-quote\":57828,\"message-slash\":62633,\"message-smile\":62634,\"message-sms\":57829,\"message-text\":57830,\"message-xmark\":62635,\"message\":62074,\"messages-dollar\":63058,\"messages-question\":57831,\"messages\":62646,\"meteor\":63315,\"meter-bolt\":57833,\"meter-droplet\":57834,\"meter-fire\":57835,\"meter\":57832,\"microchip-ai\":57836,\"microchip\":62171,\"microphone-lines-slash\":62777,\"microphone-lines\":62409,\"microphone-slash\":61745,\"microphone-stand\":63691,\"microphone\":61744,\"microscope\":62992,\"microwave\":57371,\"mill-sign\":57837,\"minimize\":63372,\"minus\":61544,\"mistletoe\":63412,\"mitten\":63413,\"mobile-button\":61707,\"mobile-notch\":57838,\"mobile-retro\":58663,\"mobile-screen-button\":62413,\"mobile-screen\":62415,\"mobile-signal-out\":57840,\"mobile-signal\":57839,\"mobile\":62414,\"money-bill-1-wave\":62779,\"money-bill-1\":62417,\"money-bill-simple-wave\":57842,\"money-bill-simple\":57841,\"money-bill-transfer\":58664,\"money-bill-trend-up\":58665,\"money-bill-wave\":62778,\"money-bill-wheat\":58666,\"money-bill\":61654,\"money-bills-simple\":57844,\"money-bills\":57843,\"money-check-dollar-pen\":63603,\"money-check-dollar\":62781,\"money-check-pen\":63602,\"money-check\":62780,\"money-from-bracket\":58130,\"money-simple-from-bracket\":58131,\"monitor-waveform\":62993,\"monkey\":63227,\"monument\":62886,\"moon-cloud\":63316,\"moon-over-sun\":63306,\"moon-stars\":63317,\"moon\":61830,\"moped\":58297,\"mortar-pestle\":62887,\"mosque\":63096,\"mosquito-net\":58668,\"mosquito\":58667,\"motorcycle\":61980,\"mound\":58669,\"mountain-city\":58670,\"mountain-sun\":58671,\"mountain\":63228,\"mountains\":63229,\"mouse-field\":58792,\"mp3-player\":63694,\"mug-hot\":63414,\"mug-marshmallows\":63415,\"mug-saucer\":61684,\"mug-tea-saucer\":57845,\"mug-tea\":63605,\"mug\":63604,\"mushroom\":58405,\"music-magnifying-glass\":58978,\"music-note-slash\":63696,\"music-note\":63695,\"music-slash\":63697,\"music\":61441,\"mustache\":58812,\"n\":78,\"naira-sign\":57846,\"narwhal\":63230,\"nesting-dolls\":58298,\"network-wired\":63231,\"neuter\":61996,\"newspaper\":61930,\"nfc-lock\":57848,\"nfc-magnifying-glass\":57849,\"nfc-pen\":57850,\"nfc-signal\":57851,\"nfc-slash\":57852,\"nfc-symbol\":58673,\"nfc-trash\":57853,\"nfc\":57847,\"nose\":58813,\"not-equal\":62782,\"notdef\":57854,\"note-medical\":57856,\"note-sticky\":62025,\"note\":57855,\"notebook\":57857,\"notes-medical\":62593,\"notes\":57858,\"o\":79,\"object-exclude\":58524,\"object-group\":62023,\"object-intersect\":58525,\"object-subtract\":58526,\"object-ungroup\":62024,\"object-union\":58527,\"objects-align-bottom\":58299,\"objects-align-center-horizontal\":58300,\"objects-align-center-vertical\":58301,\"objects-align-left\":58302,\"objects-align-right\":58303,\"objects-align-top\":58304,\"objects-column\":58305,\"octagon-check\":58406,\"octagon-divide\":57859,\"octagon-exclamation\":57860,\"octagon-minus\":62216,\"octagon-plus\":62209,\"octagon-xmark\":62192,\"octagon\":62214,\"octopus\":59016,\"oil-can-drip\":57861,\"oil-can\":62995,\"oil-temperature\":62996,\"oil-well\":58674,\"olive-branch\":58135,\"olive\":58134,\"om\":63097,\"omega\":63098,\"onion\":58407,\"option\":58136,\"ornament\":63416,\"otter\":63232,\"outdent\":61499,\"outlet\":57372,\"oven\":57373,\"overline\":63606,\"p\":80,\"page-caret-down\":58409,\"page-caret-up\":58410,\"page\":58408,\"pager\":63509,\"paint-roller\":62890,\"paintbrush-fine\":62889,\"paintbrush-pencil\":57862,\"paintbrush\":61948,\"palette\":62783,\"pallet-box\":57864,\"pallet-boxes\":62595,\"pallet\":62594,\"pan-food\":58411,\"pan-frying\":58412,\"pancakes\":58413,\"panel-ews\":58414,\"panel-fire\":58415,\"panorama\":57865,\"paper-plane-top\":57866,\"paper-plane\":61912,\"paperclip-vertical\":58306,\"paperclip\":61638,\"parachute-box\":62669,\"paragraph-left\":63608,\"paragraph\":61917,\"party-bell\":58138,\"party-horn\":58139,\"passport\":62891,\"paste\":61674,\"pause\":61516,\"paw-claws\":63234,\"paw-simple\":63233,\"paw\":61872,\"peace\":63100,\"peach\":57867,\"peanut\":58416,\"peanuts\":58417,\"peapod\":58140,\"pear\":57868,\"pedestal\":57869,\"pegasus\":63235,\"pen-circle\":57870,\"pen-clip-slash\":57871,\"pen-clip\":62213,\"pen-fancy-slash\":57872,\"pen-fancy\":62892,\"pen-field\":57873,\"pen-line\":57874,\"pen-nib-slash\":58529,\"pen-nib\":62893,\"pen-paintbrush\":63000,\"pen-ruler\":62894,\"pen-slash\":57875,\"pen-swirl\":57876,\"pen-to-square\":61508,\"pen\":62212,\"pencil-mechanical\":58826,\"pencil-slash\":57877,\"pencil\":62211,\"people-arrows\":57448,\"people-carry-box\":62670,\"people-dress-simple\":57880,\"people-dress\":57879,\"people-group\":58675,\"people-line\":58676,\"people-pants-simple\":57882,\"people-pants\":57881,\"people-pulling\":58677,\"people-robbery\":58678,\"people-roof\":58679,\"people-simple\":57883,\"people\":57878,\"pepper-hot\":63510,\"pepper\":58418,\"percent\":37,\"period\":46,\"person-arrow-down-to-line\":58680,\"person-arrow-up-from-line\":58681,\"person-biking-mountain\":63563,\"person-biking\":63562,\"person-booth\":63318,\"person-breastfeeding\":58682,\"person-burst\":58683,\"person-cane\":58684,\"person-carry-box\":62671,\"person-chalkboard\":58685,\"person-circle-check\":58686,\"person-circle-exclamation\":58687,\"person-circle-minus\":58688,\"person-circle-plus\":58689,\"person-circle-question\":58690,\"person-circle-xmark\":58691,\"person-digging\":63582,\"person-dolly-empty\":62673,\"person-dolly\":62672,\"person-dots-from-line\":62576,\"person-dress-burst\":58692,\"person-dress-fairy\":58887,\"person-dress-simple\":57884,\"person-dress\":61826,\"person-drowning\":58693,\"person-fairy\":58888,\"person-falling-burst\":58695,\"person-falling\":58694,\"person-from-portal\":57379,\"person-half-dress\":58696,\"person-harassing\":58697,\"person-hiking\":63212,\"person-military-pointing\":58698,\"person-military-rifle\":58699,\"person-military-to-person\":58700,\"person-pinball\":57885,\"person-praying\":63107,\"person-pregnant\":58142,\"person-rays\":58701,\"person-rifle\":58702,\"person-running-fast\":58879,\"person-running\":63244,\"person-seat-reclined\":57887,\"person-seat\":57886,\"person-shelter\":58703,\"person-sign\":63319,\"person-simple\":57888,\"person-skating\":63429,\"person-ski-jumping\":63431,\"person-ski-lift\":63432,\"person-skiing-nordic\":63434,\"person-skiing\":63433,\"person-sledding\":63435,\"person-snowboarding\":63438,\"person-snowmobiling\":63441,\"person-swimming\":62916,\"person-through-window\":58793,\"person-to-door\":58419,\"person-to-portal\":57378,\"person-walking-arrow-loop-left\":58705,\"person-walking-arrow-right\":58706,\"person-walking-dashed-line-arrow-right\":58707,\"person-walking-luggage\":58708,\"person-walking-with-cane\":62109,\"person-walking\":62804,\"person\":61827,\"peseta-sign\":57889,\"peso-sign\":57890,\"phone-arrow-down-left\":57891,\"phone-arrow-right\":58814,\"phone-arrow-up-right\":57892,\"phone-flip\":63609,\"phone-hangup\":57893,\"phone-intercom\":58420,\"phone-missed\":57894,\"phone-office\":63101,\"phone-plus\":62674,\"phone-rotary\":63699,\"phone-slash\":62429,\"phone-volume\":62112,\"phone-xmark\":57895,\"phone\":61589,\"photo-film-music\":57896,\"photo-film\":63612,\"pi\":63102,\"piano-keyboard\":63701,\"piano\":63700,\"pickaxe\":58815,\"pickleball\":58421,\"pie\":63237,\"pig\":63238,\"piggy-bank\":62675,\"pills\":62596,\"pinata\":58307,\"pinball\":57897,\"pineapple\":58143,\"pipe-circle-check\":58422,\"pipe-collar\":58423,\"pipe-section\":58424,\"pipe-smoking\":58308,\"pipe-valve\":58425,\"pipe\":124,\"pizza-slice\":63512,\"pizza\":63511,\"place-of-worship\":63103,\"plane-arrival\":62895,\"plane-circle-check\":58709,\"plane-circle-exclamation\":58710,\"plane-circle-xmark\":58711,\"plane-departure\":62896,\"plane-engines\":62430,\"plane-lock\":58712,\"plane-prop\":57899,\"plane-slash\":57449,\"plane-tail\":57900,\"plane-up-slash\":57902,\"plane-up\":57901,\"plane\":61554,\"planet-moon\":57375,\"planet-ringed\":57376,\"plant-wilt\":58794,\"plate-utensils\":58427,\"plate-wheat\":58714,\"play-pause\":57903,\"play\":61515,\"plug-circle-bolt\":58715,\"plug-circle-check\":58716,\"plug-circle-exclamation\":58717,\"plug-circle-minus\":58718,\"plug-circle-plus\":58719,\"plug-circle-xmark\":58720,\"plug\":61926,\"plus-large\":58782,\"plus-minus\":58428,\"plus\":43,\"podcast\":62158,\"podium-star\":63320,\"podium\":63104,\"police-box\":57377,\"poll-people\":63321,\"pompebled\":58429,\"poo-storm\":63322,\"poo\":62206,\"pool-8-ball\":58309,\"poop\":63001,\"popcorn\":63513,\"popsicle\":58430,\"pot-food\":58431,\"potato\":58432,\"power-off\":61457,\"prescription-bottle-medical\":62598,\"prescription-bottle-pill\":58816,\"prescription-bottle\":62597,\"prescription\":62897,\"presentation-screen\":63109,\"pretzel\":58433,\"print-magnifying-glass\":63514,\"print-slash\":63110,\"print\":61487,\"projector\":63702,\"pump-medical\":57450,\"pump-soap\":57451,\"pump\":58434,\"pumpkin\":63239,\"puzzle-piece-simple\":57905,\"puzzle-piece\":61742,\"puzzle\":58435,\"q\":81,\"qrcode\":61481,\"question\":63,\"quote-left\":61709,\"quote-right\":61710,\"quotes\":57908,\"r\":82,\"rabbit-running\":63241,\"rabbit\":63240,\"raccoon\":58899,\"racquet\":62554,\"radar\":57380,\"radiation\":63417,\"radio-tuner\":63704,\"radio\":63703,\"rainbow\":63323,\"raindrops\":63324,\"ram\":63242,\"ramp-loading\":62676,\"ranking-star\":58721,\"raygun\":57381,\"receipt\":62787,\"record-vinyl\":63705,\"rectangle-ad\":63041,\"rectangle-barcode\":62563,\"rectangle-code\":58146,\"rectangle-history-circle-plus\":58531,\"rectangle-history-circle-user\":58532,\"rectangle-history\":58530,\"rectangle-list\":61474,\"rectangle-pro\":57909,\"rectangle-terminal\":57910,\"rectangle-vertical-history\":57911,\"rectangle-vertical\":62203,\"rectangle-wide\":62204,\"rectangle-xmark\":62480,\"rectangle\":62202,\"rectangles-mixed\":58147,\"recycle\":61880,\"reel\":57912,\"reflect-both\":58991,\"reflect-horizontal\":58980,\"reflect-vertical\":58981,\"refrigerator\":57382,\"registered\":62045,\"repeat-1\":62309,\"repeat\":62307,\"reply-all\":61730,\"reply-clock\":57913,\"reply\":62437,\"republican\":63326,\"restroom-simple\":57914,\"restroom\":63421,\"retweet\":61561,\"rhombus\":57915,\"ribbon\":62678,\"right-from-bracket\":62197,\"right-from-line\":62279,\"right-left-large\":58849,\"right-left\":62306,\"right-long-to-line\":58436,\"right-long\":62219,\"right-to-bracket\":62198,\"right-to-line\":62284,\"right\":62294,\"ring-diamond\":58795,\"ring\":63243,\"rings-wedding\":63515,\"road-barrier\":58722,\"road-bridge\":58723,\"road-circle-check\":58724,\"road-circle-exclamation\":58725,\"road-circle-xmark\":58726,\"road-lock\":58727,\"road-spikes\":58728,\"road\":61464,\"robot-astromech\":58066,\"robot\":62788,\"rocket-launch\":57383,\"rocket\":61749,\"roller-coaster\":58148,\"rotate-exclamation\":57916,\"rotate-left\":62186,\"rotate-reverse\":58929,\"rotate-right\":62201,\"rotate\":62193,\"route-highway\":63002,\"route-interstate\":63003,\"route\":62679,\"router\":63706,\"rss\":61598,\"ruble-sign\":61784,\"rug\":58729,\"rugby-ball\":58310,\"ruler-combined\":62790,\"ruler-horizontal\":62791,\"ruler-triangle\":63004,\"ruler-vertical\":62792,\"ruler\":62789,\"rupee-sign\":61782,\"rupiah-sign\":57917,\"rv\":63422,\"s\":83,\"sack-dollar\":63517,\"sack-xmark\":58730,\"sack\":63516,\"sailboat\":58437,\"salad\":63518,\"salt-shaker\":58438,\"sandwich\":63519,\"satellite-dish\":63424,\"satellite\":63423,\"sausage\":63520,\"saxophone-fire\":63707,\"saxophone\":63708,\"scale-balanced\":62030,\"scale-unbalanced-flip\":62742,\"scale-unbalanced\":62741,\"scalpel-line-dashed\":63006,\"scalpel\":63005,\"scanner-gun\":62600,\"scanner-image\":63731,\"scanner-keyboard\":62601,\"scanner-touchscreen\":62602,\"scarecrow\":63245,\"scarf\":63425,\"school-circle-check\":58731,\"school-circle-exclamation\":58732,\"school-circle-xmark\":58733,\"school-flag\":58734,\"school-lock\":58735,\"school\":62793,\"scissors\":61636,\"screen-users\":63037,\"screencast\":57918,\"screwdriver-wrench\":63449,\"screwdriver\":62794,\"scribble\":57919,\"scroll-old\":63247,\"scroll-torah\":63136,\"scroll\":63246,\"scrubber\":62200,\"scythe\":63248,\"sd-card\":63426,\"sd-cards\":57920,\"seal-exclamation\":57922,\"seal-question\":57923,\"seal\":57921,\"seat-airline\":57924,\"section\":58439,\"seedling\":62680,\"semicolon\":59,\"send-back\":63614,\"send-backward\":63615,\"sensor-cloud\":57388,\"sensor-fire\":57386,\"sensor-on\":57387,\"sensor-triangle-exclamation\":57385,\"sensor\":57384,\"server\":62003,\"shapes\":63007,\"share-all\":62311,\"share-from-square\":61773,\"share-nodes\":61920,\"share\":61540,\"sheep\":63249,\"sheet-plastic\":58737,\"shekel-sign\":61963,\"shelves-empty\":57926,\"shelves\":62592,\"shield-cat\":58738,\"shield-check\":62199,\"shield-cross\":63250,\"shield-dog\":58739,\"shield-exclamation\":57927,\"shield-halved\":62445,\"shield-heart\":58740,\"shield-keyhole\":57928,\"shield-minus\":57929,\"shield-plus\":57930,\"shield-quartered\":58741,\"shield-slash\":57931,\"shield-virus\":57452,\"shield-xmark\":57932,\"shield\":61746,\"ship\":61978,\"shirt-long-sleeve\":58311,\"shirt-running\":58312,\"shirt-tank-top\":58313,\"shirt\":62803,\"shish-kebab\":63521,\"shoe-prints\":62795,\"shop-lock\":58533,\"shop-slash\":57456,\"shop\":62799,\"shovel-snow\":63427,\"shovel\":63251,\"shower-down\":57933,\"shower\":62156,\"shredder\":63114,\"shrimp\":58440,\"shuffle\":61556,\"shutters\":58441,\"shuttle-space\":61847,\"shuttlecock\":62555,\"sickle\":63522,\"sidebar-flip\":57935,\"sidebar\":57934,\"sigma\":63115,\"sign-hanging\":62681,\"sign-post\":58916,\"sign-posts-wrench\":58918,\"sign-posts\":58917,\"signal-bars-fair\":63122,\"signal-bars-good\":63123,\"signal-bars-slash\":63124,\"signal-bars-weak\":63121,\"signal-bars\":63120,\"signal-fair\":63117,\"signal-good\":63118,\"signal-slash\":63125,\"signal-stream-slash\":57936,\"signal-stream\":63709,\"signal-strong\":63119,\"signal-weak\":63116,\"signal\":61458,\"signature-lock\":58314,\"signature-slash\":58315,\"signature\":62903,\"signs-post\":62071,\"sim-card\":63428,\"sim-cards\":57937,\"sink\":57453,\"siren-on\":57390,\"siren\":57389,\"sitemap\":61672,\"skeleton-ribs\":58827,\"skeleton\":63008,\"ski-boot-ski\":58317,\"ski-boot\":58316,\"skull-cow\":63710,\"skull-crossbones\":63252,\"skull\":62796,\"slash-back\":92,\"slash-forward\":47,\"slash\":63253,\"sleigh\":63436,\"slider\":57938,\"sliders-simple\":57939,\"sliders-up\":62449,\"sliders\":61918,\"slot-machine\":58318,\"smog\":63327,\"smoke\":63328,\"smoking\":62605,\"snake\":63254,\"snooze\":63616,\"snow-blowing\":63329,\"snowflake-droplets\":58817,\"snowflake\":62172,\"snowflakes\":63439,\"snowman-head\":63387,\"snowman\":63440,\"snowplow\":63442,\"soap\":57454,\"socks\":63126,\"soft-serve\":58368,\"solar-panel\":62906,\"solar-system\":57391,\"sort-down\":61661,\"sort-up\":61662,\"sort\":61660,\"spa\":62907,\"space-station-moon-construction\":57396,\"space-station-moon\":57395,\"spade\":62196,\"spaghetti-monster-flying\":63099,\"sparkle\":58838,\"sparkles\":63632,\"speaker\":63711,\"speakers\":63712,\"spell-check\":63633,\"spider-black-widow\":63256,\"spider-web\":63257,\"spider\":63255,\"spinner-scale\":58922,\"spinner-third\":62452,\"spinner\":61712,\"split\":57940,\"splotch\":62908,\"spoon\":62181,\"sportsball\":58443,\"spray-can-sparkles\":62928,\"spray-can\":62909,\"sprinkler-ceiling\":58444,\"sprinkler\":57397,\"square-0\":57941,\"square-1\":57942,\"square-2\":57943,\"square-3\":57944,\"square-4\":57945,\"square-5\":57946,\"square-6\":57947,\"square-7\":57948,\"square-8\":57949,\"square-9\":57950,\"square-a-lock\":58445,\"square-a\":57951,\"square-ampersand\":57952,\"square-arrow-down-left\":57953,\"square-arrow-down-right\":57954,\"square-arrow-down\":62265,\"square-arrow-left\":62266,\"square-arrow-right\":62267,\"square-arrow-up-left\":57955,\"square-arrow-up-right\":61772,\"square-arrow-up\":62268,\"square-b\":57956,\"square-binary\":59035,\"square-bolt\":57957,\"square-c\":57958,\"square-caret-down\":61776,\"square-caret-left\":61841,\"square-caret-right\":61778,\"square-caret-up\":61777,\"square-check\":61770,\"square-chevron-down\":62249,\"square-chevron-left\":62250,\"square-chevron-right\":62251,\"square-chevron-up\":62252,\"square-code\":57959,\"square-d\":57960,\"square-dashed-circle-plus\":58818,\"square-dashed\":57961,\"square-divide\":57962,\"square-dollar\":62185,\"square-down-left\":57963,\"square-down-right\":57964,\"square-down\":62288,\"square-e\":57965,\"square-ellipsis-vertical\":57967,\"square-ellipsis\":57966,\"square-envelope\":61849,\"square-exclamation\":62241,\"square-f\":57968,\"square-fragile\":62619,\"square-full\":62556,\"square-g\":57969,\"square-h\":61693,\"square-heart\":62664,\"square-i\":57970,\"square-info\":62223,\"square-j\":57971,\"square-k\":57972,\"square-kanban\":58504,\"square-l\":57973,\"square-left\":62289,\"square-list\":58505,\"square-m\":57974,\"square-minus\":61766,\"square-n\":57975,\"square-nfi\":58742,\"square-o\":57976,\"square-p\":57977,\"square-parking-slash\":62999,\"square-parking\":62784,\"square-pen\":61771,\"square-person-confined\":58743,\"square-phone-flip\":63611,\"square-phone-hangup\":57978,\"square-phone\":61592,\"square-plus\":61694,\"square-poll-horizontal\":63106,\"square-poll-vertical\":63105,\"square-q\":57979,\"square-quarters\":58446,\"square-question\":62205,\"square-quote\":58153,\"square-r\":57980,\"square-right\":62290,\"square-ring\":58447,\"square-root-variable\":63128,\"square-root\":63127,\"square-rss\":61763,\"square-s\":57981,\"square-share-nodes\":61921,\"square-sliders-vertical\":62450,\"square-sliders\":62448,\"square-small\":57982,\"square-star\":57983,\"square-t\":57984,\"square-terminal\":58154,\"square-this-way-up\":62623,\"square-u\":57985,\"square-up-left\":57986,\"square-up-right\":62304,\"square-up\":62291,\"square-user\":57987,\"square-v\":57988,\"square-virus\":58744,\"square-w\":57989,\"square-x\":57990,\"square-xmark\":62163,\"square-y\":57991,\"square-z\":57992,\"square\":61640,\"squid\":58448,\"squirrel\":63258,\"staff-snake\":58745,\"staff\":63259,\"stairs\":57993,\"stamp\":62911,\"standard-definition\":57994,\"stapler\":58799,\"star-and-crescent\":63129,\"star-christmas\":63444,\"star-exclamation\":62195,\"star-half-stroke\":62912,\"star-half\":61577,\"star-of-david\":63130,\"star-of-life\":63009,\"star-sharp-half-stroke\":57997,\"star-sharp-half\":57996,\"star-sharp\":57995,\"star-shooting\":57398,\"star\":61445,\"starfighter-twin-ion-engine-advanced\":57998,\"starfighter-twin-ion-engine\":57400,\"starfighter\":57399,\"stars\":63330,\"starship-freighter\":57402,\"starship\":57401,\"steak\":63524,\"steering-wheel\":63010,\"sterling-sign\":61780,\"stethoscope\":61681,\"stocking\":63445,\"stomach\":63011,\"stop\":61517,\"stopwatch-20\":57455,\"stopwatch\":62194,\"store-lock\":58534,\"store-slash\":57457,\"store\":62798,\"strawberry\":58155,\"street-view\":61981,\"stretcher\":63525,\"strikethrough\":61644,\"stroopwafel\":62801,\"subscript\":61740,\"subtitles-slash\":58896,\"subtitles\":58895,\"suitcase-medical\":61690,\"suitcase-rolling\":62913,\"suitcase\":61682,\"sun-bright\":57999,\"sun-cloud\":63331,\"sun-dust\":63332,\"sun-haze\":63333,\"sun-plant-wilt\":58746,\"sun\":61829,\"sunglasses\":63634,\"sunrise\":63334,\"sunset\":63335,\"superscript\":61739,\"sushi-roll\":58507,\"sushi\":58506,\"swap-arrows\":58890,\"swap\":58889,\"swatchbook\":62915,\"sword-laser-alt\":57404,\"sword-laser\":57403,\"sword\":63260,\"swords-laser\":57405,\"swords\":63261,\"symbols\":63598,\"synagogue\":63131,\"syringe\":62606,\"t-rex\":58921,\"t\":84,\"table-cells-column-lock\":59000,\"table-cells-column-unlock\":59024,\"table-cells-large\":61449,\"table-cells-lock\":59001,\"table-cells-row-lock\":59002,\"table-cells-row-unlock\":59025,\"table-cells-unlock\":59026,\"table-cells\":61450,\"table-columns\":61659,\"table-layout\":58000,\"table-list\":61451,\"table-picnic\":58157,\"table-pivot\":58001,\"table-rows\":58002,\"table-tennis-paddle-ball\":62557,\"table-tree\":58003,\"table\":61646,\"tablet-button\":61706,\"tablet-rugged\":62607,\"tablet-screen-button\":62458,\"tablet-screen\":62460,\"tablet\":62459,\"tablets\":62608,\"tachograph-digital\":62822,\"taco\":63526,\"tag\":61483,\"tags\":61484,\"tally-1\":58004,\"tally-2\":58005,\"tally-3\":58006,\"tally-4\":58007,\"tally\":63132,\"tamale\":58449,\"tank-water\":58450,\"tape\":62683,\"tarp-droplet\":58748,\"tarp\":58747,\"taxi-bus\":58008,\"taxi\":61882,\"teddy-bear\":58319,\"teeth-open\":63023,\"teeth\":63022,\"telescope\":57406,\"temperature-arrow-down\":57407,\"temperature-arrow-up\":57408,\"temperature-empty\":62155,\"temperature-full\":62151,\"temperature-half\":62153,\"temperature-high\":63337,\"temperature-list\":58009,\"temperature-low\":63339,\"temperature-quarter\":62154,\"temperature-snow\":63336,\"temperature-sun\":63338,\"temperature-three-quarters\":62152,\"tenge-sign\":63447,\"tennis-ball\":62558,\"tent-arrow-down-to-line\":58750,\"tent-arrow-left-right\":58751,\"tent-arrow-turn-left\":58752,\"tent-arrows-down\":58753,\"tent-double-peak\":58919,\"tent\":58749,\"tents\":58754,\"terminal\":61728,\"text-height\":61492,\"text-size\":63636,\"text-slash\":63613,\"text-width\":61493,\"text\":63635,\"thermometer\":62609,\"theta\":63134,\"thought-bubble\":58158,\"thumbs-down\":61797,\"thumbs-up\":61796,\"thumbtack-slash\":59023,\"thumbtack\":61581,\"tick\":58159,\"ticket-airline\":58010,\"ticket-perforated\":58942,\"ticket-simple\":62463,\"ticket\":61765,\"tickets-airline\":58011,\"tickets-perforated\":58943,\"tickets-simple\":58969,\"tickets\":58968,\"tilde\":126,\"timeline-arrow\":58013,\"timeline\":58012,\"timer\":58014,\"tire-flat\":63026,\"tire-pressure-warning\":63027,\"tire-rugged\":63028,\"tire\":63025,\"toggle-large-off\":58800,\"toggle-large-on\":58801,\"toggle-off\":61956,\"toggle-on\":61957,\"toilet-paper-blank-under\":58015,\"toilet-paper-blank\":63263,\"toilet-paper-check\":58802,\"toilet-paper-slash\":57458,\"toilet-paper-under-slash\":58017,\"toilet-paper-under\":58016,\"toilet-paper-xmark\":58803,\"toilet-paper\":63262,\"toilet-portable\":58755,\"toilet\":63448,\"toilets-portable\":58756,\"tomato\":58160,\"tombstone-blank\":63265,\"tombstone\":63264,\"toolbox\":62802,\"tooth\":62921,\"toothbrush\":63029,\"torii-gate\":63137,\"tornado\":63343,\"tower-broadcast\":62745,\"tower-cell\":58757,\"tower-control\":58018,\"tower-observation\":58758,\"tractor\":63266,\"trademark\":62044,\"traffic-cone\":63030,\"traffic-light-go\":63032,\"traffic-light-slow\":63033,\"traffic-light-stop\":63034,\"traffic-light\":63031,\"trailer\":57409,\"train-subway-tunnel\":58019,\"train-subway\":62009,\"train-track\":58451,\"train-tram\":58804,\"train-tunnel\":58452,\"train\":62008,\"transformer-bolt\":58020,\"transgender\":61989,\"transporter-1\":57411,\"transporter-2\":57412,\"transporter-3\":57413,\"transporter-4\":58021,\"transporter-5\":58022,\"transporter-6\":58023,\"transporter-7\":58024,\"transporter-empty\":57414,\"transporter\":57410,\"trash-arrow-up\":63529,\"trash-can-arrow-up\":63530,\"trash-can-check\":58025,\"trash-can-clock\":58026,\"trash-can-list\":58027,\"trash-can-plus\":58028,\"trash-can-slash\":58029,\"trash-can-undo\":63638,\"trash-can-xmark\":58030,\"trash-can\":62189,\"trash-check\":58031,\"trash-clock\":58032,\"trash-list\":58033,\"trash-plus\":58034,\"trash-slash\":58035,\"trash-undo\":63637,\"trash-xmark\":58036,\"trash\":61944,\"treasure-chest\":63267,\"tree-christmas\":63451,\"tree-city\":58759,\"tree-deciduous\":62464,\"tree-decorated\":63452,\"tree-large\":63453,\"tree-palm\":63531,\"tree\":61883,\"trees\":63268,\"triangle-exclamation\":61553,\"triangle-instrument\":63714,\"triangle-person-digging\":63581,\"triangle\":62188,\"tricycle-adult\":58820,\"tricycle\":58819,\"trillium\":58760,\"trophy-star\":62187,\"trophy\":61585,\"trowel-bricks\":58762,\"trowel\":58761,\"truck-arrow-right\":58763,\"truck-bolt\":58320,\"truck-clock\":62604,\"truck-container-empty\":58037,\"truck-container\":62684,\"truck-droplet\":58764,\"truck-fast\":62603,\"truck-field-un\":58766,\"truck-field\":58765,\"truck-fire\":58970,\"truck-flatbed\":58038,\"truck-front\":58039,\"truck-ladder\":58967,\"truck-medical\":61689,\"truck-monster\":63035,\"truck-moving\":62687,\"truck-pickup\":63036,\"truck-plane\":58767,\"truck-plow\":63454,\"truck-ramp-box\":62686,\"truck-ramp-couch\":62685,\"truck-ramp\":62688,\"truck-tow\":58040,\"truck-utensils\":58920,\"truck\":61649,\"trumpet\":63715,\"tty-answer\":58041,\"tty\":61924,\"tugrik-sign\":58042,\"turkey\":63269,\"turkish-lira-sign\":58043,\"turn-down-left\":58161,\"turn-down-right\":58453,\"turn-down\":62398,\"turn-left-down\":58935,\"turn-left-up\":58936,\"turn-left\":58934,\"turn-right\":58937,\"turn-up\":62399,\"turntable\":63716,\"turtle\":63270,\"tv-music\":63718,\"tv-retro\":62465,\"tv\":62060,\"typewriter\":63719,\"u\":85,\"ufo-beam\":57416,\"ufo\":57415,\"umbrella-beach\":62922,\"umbrella-simple\":58044,\"umbrella\":61673,\"underline\":61645,\"unicorn\":63271,\"uniform-martial-arts\":58321,\"union\":63138,\"universal-access\":62106,\"unlock-keyhole\":61758,\"unlock\":61596,\"up-down-left-right\":61618,\"up-down\":62264,\"up-from-bracket\":58768,\"up-from-dotted-line\":58454,\"up-from-line\":62278,\"up-left\":58045,\"up-long\":62220,\"up-right-and-down-left-from-center\":62500,\"up-right-from-square\":62301,\"up-right\":58046,\"up-to-bracket\":58990,\"up-to-dotted-line\":58455,\"up-to-line\":62285,\"up\":62295,\"upload\":61587,\"usb-drive\":63721,\"user-alien\":57418,\"user-astronaut\":62715,\"user-beard-bolt\":59017,\"user-bounty-hunter\":58047,\"user-check\":62716,\"user-chef\":58322,\"user-clock\":62717,\"user-cowboy\":63722,\"user-crown\":63140,\"user-doctor-hair-long\":58457,\"user-doctor-hair\":58456,\"user-doctor-message\":63534,\"user-doctor\":61680,\"user-gear\":62718,\"user-graduate\":62721,\"user-group-crown\":63141,\"user-group-simple\":58883,\"user-group\":62720,\"user-hair-buns\":58323,\"user-hair-long\":58459,\"user-hair-mullet\":58460,\"user-hair\":58458,\"user-headset\":63533,\"user-helmet-safety\":63532,\"user-hoodie\":59018,\"user-injured\":63272,\"user-large-slash\":62714,\"user-large\":62470,\"user-lock\":62722,\"user-magnifying-glass\":58821,\"user-minus\":62723,\"user-music\":63723,\"user-ninja\":62724,\"user-nurse-hair-long\":58462,\"user-nurse-hair\":58461,\"user-nurse\":63535,\"user-pen\":62719,\"user-pilot-tie\":58049,\"user-pilot\":58048,\"user-plus\":62004,\"user-police-tie\":58164,\"user-police\":58163,\"user-robot-xmarks\":58535,\"user-robot\":57419,\"user-secret\":61979,\"user-shakespeare\":58050,\"user-shield\":62725,\"user-slash\":62726,\"user-tag\":62727,\"user-tie-hair-long\":58464,\"user-tie-hair\":58463,\"user-tie\":62728,\"user-unlock\":57432,\"user-visor\":57420,\"user-vneck-hair-long\":58467,\"user-vneck-hair\":58466,\"user-vneck\":58465,\"user-xmark\":62005,\"user\":61447,\"users-between-lines\":58769,\"users-gear\":62729,\"users-line\":58770,\"users-medical\":63536,\"users-rays\":58771,\"users-rectangle\":58772,\"users-slash\":57459,\"users-viewfinder\":58773,\"users\":61632,\"utensils-slash\":58468,\"utensils\":62183,\"utility-pole-double\":58052,\"utility-pole\":58051,\"v\":86,\"vacuum-robot\":57422,\"vacuum\":57421,\"value-absolute\":63142,\"van-shuttle\":62902,\"vault\":58053,\"vector-circle\":58054,\"vector-polygon\":58055,\"vector-square\":62923,\"vent-damper\":58469,\"venus-double\":61990,\"venus-mars\":61992,\"venus\":61985,\"vest-patches\":57478,\"vest\":57477,\"vial-circle-check\":58774,\"vial-virus\":58775,\"vial\":62610,\"vials\":62611,\"video-arrow-down-left\":58056,\"video-arrow-up-right\":58057,\"video-plus\":62689,\"video-slash\":62690,\"video\":61501,\"vihara\":63143,\"violin\":63725,\"virus-covid-slash\":58537,\"virus-covid\":58536,\"virus-slash\":57461,\"virus\":57460,\"viruses\":57462,\"voicemail\":63639,\"volcano\":63344,\"volleyball\":62559,\"volume-high\":61480,\"volume-low\":61479,\"volume-off\":61478,\"volume-slash\":62178,\"volume-xmark\":63145,\"volume\":63144,\"vr-cardboard\":63273,\"w\":87,\"waffle\":58470,\"wagon-covered\":63726,\"walker\":63537,\"walkie-talkie\":63727,\"wallet\":62805,\"wand-magic-sparkles\":58058,\"wand-magic\":61648,\"wand-sparkles\":63275,\"wand\":63274,\"warehouse-full\":62613,\"warehouse\":62612,\"washing-machine\":63640,\"watch-apple\":58059,\"watch-calculator\":63728,\"watch-fitness\":63038,\"watch-smart\":58060,\"watch\":62177,\"water-arrow-down\":63348,\"water-arrow-up\":63349,\"water-ladder\":62917,\"water\":63347,\"watermelon-slice\":58167,\"wave-pulse\":62968,\"wave-sine\":63641,\"wave-square\":63550,\"wave-triangle\":63642,\"wave\":58971,\"waveform-lines\":63730,\"waveform\":63729,\"waves-sine\":58973,\"web-awesome\":59010,\"webhook\":58837,\"weight-hanging\":62925,\"weight-scale\":62614,\"whale\":63276,\"wheat-awn-circle-exclamation\":58776,\"wheat-awn-slash\":58168,\"wheat-awn\":58061,\"wheat-slash\":58169,\"wheat\":63277,\"wheelchair-move\":58062,\"wheelchair\":61843,\"whiskey-glass-ice\":63393,\"whiskey-glass\":63392,\"whistle\":62560,\"wifi-exclamation\":58063,\"wifi-fair\":63147,\"wifi-slash\":63148,\"wifi-weak\":63146,\"wifi\":61931,\"wind-turbine\":63643,\"wind-warning\":63350,\"wind\":63278,\"window-flip\":62479,\"window-frame-open\":57424,\"window-frame\":57423,\"window-maximize\":62160,\"window-minimize\":62161,\"window-restore\":62162,\"window\":62478,\"windsock\":63351,\"wine-bottle\":63279,\"wine-glass-crack\":62651,\"wine-glass-empty\":62926,\"wine-glass\":62691,\"won-sign\":61785,\"worm\":58777,\"wreath-laurel\":58834,\"wreath\":63458,\"wrench-simple\":58065,\"wrench\":61613,\"x-ray\":62615,\"x\":88,\"xmark-large\":58779,\"xmark-to-slot\":63345,\"xmark\":61453,\"xmarks-lines\":58778,\"y\":89,\"yen-sign\":61783,\"yin-yang\":63149,\"z\":90}"
  },
  {
    "path": "packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_light.json",
    "content": "{\"0\":48,\"1\":49,\"2\":50,\"3\":51,\"4\":52,\"5\":53,\"6\":54,\"7\":55,\"8\":56,\"9\":57,\"00\":58471,\"360-degrees\":58076,\"a\":65,\"abacus\":63040,\"accent-grave\":96,\"acorn\":63150,\"address-book\":62137,\"address-card\":62139,\"air-conditioner\":63732,\"airplay\":57481,\"alarm-clock\":62286,\"alarm-exclamation\":63555,\"alarm-plus\":63556,\"alarm-snooze\":63557,\"album-circle-plus\":58508,\"album-circle-user\":58509,\"album-collection-circle-plus\":58510,\"album-collection-circle-user\":58511,\"album-collection\":63648,\"album\":63647,\"alicorn\":63152,\"alien-8bit\":63734,\"alien\":63733,\"align-center\":61495,\"align-justify\":61497,\"align-left\":61494,\"align-right\":61496,\"align-slash\":63558,\"alt\":57482,\"amp-guitar\":63649,\"ampersand\":38,\"anchor-circle-check\":58538,\"anchor-circle-exclamation\":58539,\"anchor-circle-xmark\":58540,\"anchor-lock\":58541,\"anchor\":61757,\"angel\":63353,\"angle-90\":57485,\"angle-down\":61703,\"angle-left\":61700,\"angle-right\":61701,\"angle-up\":61702,\"angle\":57484,\"angles-down\":61699,\"angles-left\":61696,\"angles-right\":61697,\"angles-up-down\":58893,\"angles-up\":61698,\"ankh\":63044,\"ant\":59008,\"apartment\":58472,\"aperture\":58079,\"apostrophe\":39,\"apple-core\":57487,\"apple-whole\":62929,\"archway\":62807,\"arrow-down-1-9\":61794,\"arrow-down-9-1\":63622,\"arrow-down-a-z\":61789,\"arrow-down-arrow-up\":63619,\"arrow-down-big-small\":63628,\"arrow-down-from-arc\":58900,\"arrow-down-from-bracket\":58983,\"arrow-down-from-dotted-line\":57488,\"arrow-down-from-line\":62277,\"arrow-down-left-and-arrow-up-right-to-center\":57490,\"arrow-down-left\":57489,\"arrow-down-long\":61813,\"arrow-down-right\":57491,\"arrow-down-short-wide\":63620,\"arrow-down-small-big\":63629,\"arrow-down-square-triangle\":63625,\"arrow-down-to-arc\":58542,\"arrow-down-to-bracket\":57492,\"arrow-down-to-dotted-line\":57493,\"arrow-down-to-line\":62269,\"arrow-down-to-square\":57494,\"arrow-down-triangle-square\":63624,\"arrow-down-up-across-line\":58543,\"arrow-down-up-lock\":58544,\"arrow-down-wide-short\":61792,\"arrow-down-z-a\":63617,\"arrow-down\":61539,\"arrow-left-from-arc\":58901,\"arrow-left-from-bracket\":58984,\"arrow-left-from-line\":62276,\"arrow-left-long-to-line\":58324,\"arrow-left-long\":61815,\"arrow-left-to-arc\":58902,\"arrow-left-to-bracket\":58985,\"arrow-left-to-line\":62270,\"arrow-left\":61536,\"arrow-pointer\":62021,\"arrow-progress\":58847,\"arrow-right-arrow-left\":61676,\"arrow-right-from-arc\":58545,\"arrow-right-from-bracket\":61579,\"arrow-right-from-line\":62275,\"arrow-right-long-to-line\":58325,\"arrow-right-long\":61816,\"arrow-right-to-arc\":58546,\"arrow-right-to-bracket\":61584,\"arrow-right-to-city\":58547,\"arrow-right-to-line\":62272,\"arrow-right\":61537,\"arrow-rotate-left\":61666,\"arrow-rotate-right\":61470,\"arrow-trend-down\":57495,\"arrow-trend-up\":57496,\"arrow-turn-down-left\":58081,\"arrow-turn-down-right\":58326,\"arrow-turn-down\":61769,\"arrow-turn-left-down\":58931,\"arrow-turn-left-up\":58932,\"arrow-turn-left\":58930,\"arrow-turn-right\":58933,\"arrow-turn-up\":61768,\"arrow-up-1-9\":61795,\"arrow-up-9-1\":63623,\"arrow-up-a-z\":61790,\"arrow-up-arrow-down\":57497,\"arrow-up-big-small\":63630,\"arrow-up-from-arc\":58548,\"arrow-up-from-bracket\":57498,\"arrow-up-from-dotted-line\":57499,\"arrow-up-from-ground-water\":58549,\"arrow-up-from-line\":62274,\"arrow-up-from-square\":57500,\"arrow-up-from-water-pump\":58550,\"arrow-up-left-from-circle\":57502,\"arrow-up-left\":57501,\"arrow-up-long\":61814,\"arrow-up-right-and-arrow-down-left-from-center\":57504,\"arrow-up-right-dots\":58551,\"arrow-up-right-from-square\":61582,\"arrow-up-right\":57503,\"arrow-up-short-wide\":63621,\"arrow-up-small-big\":63631,\"arrow-up-square-triangle\":63627,\"arrow-up-to-arc\":58903,\"arrow-up-to-bracket\":58986,\"arrow-up-to-dotted-line\":57505,\"arrow-up-to-line\":62273,\"arrow-up-triangle-square\":63626,\"arrow-up-wide-short\":61793,\"arrow-up-z-a\":63618,\"arrow-up\":61538,\"arrows-cross\":57506,\"arrows-down-to-line\":58552,\"arrows-down-to-people\":58553,\"arrows-from-dotted-line\":57507,\"arrows-from-line\":57508,\"arrows-left-right-to-line\":58554,\"arrows-left-right\":61566,\"arrows-maximize\":62237,\"arrows-minimize\":57509,\"arrows-repeat-1\":62310,\"arrows-repeat\":62308,\"arrows-retweet\":62305,\"arrows-rotate-reverse\":58928,\"arrows-rotate\":61473,\"arrows-spin\":58555,\"arrows-split-up-and-left\":58556,\"arrows-to-circle\":58557,\"arrows-to-dot\":58558,\"arrows-to-dotted-line\":57510,\"arrows-to-eye\":58559,\"arrows-to-line\":57511,\"arrows-turn-right\":58560,\"arrows-turn-to-dots\":58561,\"arrows-up-down-left-right\":61511,\"arrows-up-down\":61565,\"arrows-up-to-line\":58562,\"asterisk\":42,\"at\":64,\"atom-simple\":62931,\"atom\":62930,\"audio-description-slash\":57512,\"audio-description\":62110,\"austral-sign\":57513,\"avocado\":57514,\"award-simple\":57515,\"award\":62809,\"axe-battle\":63155,\"axe\":63154,\"b\":66,\"baby-carriage\":63357,\"baby\":63356,\"backpack\":62932,\"backward-fast\":61513,\"backward-step\":61512,\"backward\":61514,\"bacon\":63461,\"bacteria\":57433,\"bacterium\":57434,\"badge-check\":62262,\"badge-dollar\":63045,\"badge-percent\":63046,\"badge-sheriff\":63650,\"badge\":62261,\"badger-honey\":63156,\"badminton\":58170,\"bag-seedling\":58866,\"bag-shopping-minus\":58960,\"bag-shopping-plus\":58961,\"bag-shopping\":62096,\"bagel\":58327,\"bags-shopping\":63559,\"baguette\":58328,\"bahai\":63078,\"baht-sign\":57516,\"ball-pile\":63358,\"balloon\":58083,\"balloons\":58084,\"ballot-check\":63283,\"ballot\":63282,\"ban-bug\":63481,\"ban-parking\":62998,\"ban-smoking\":62797,\"ban\":61534,\"banana\":58085,\"bandage\":62562,\"bangladeshi-taka-sign\":58086,\"banjo\":63651,\"barcode-read\":62564,\"barcode-scan\":62565,\"barcode\":61482,\"bars-filter\":57517,\"bars-progress\":63528,\"bars-sort\":57518,\"bars-staggered\":62800,\"bars\":61641,\"baseball-bat-ball\":62514,\"baseball\":62515,\"basket-shopping-minus\":58962,\"basket-shopping-plus\":58963,\"basket-shopping-simple\":57519,\"basket-shopping\":62097,\"basketball-hoop\":62517,\"basketball\":62516,\"bat\":63157,\"bath\":62157,\"battery-bolt\":62326,\"battery-empty\":62020,\"battery-exclamation\":57520,\"battery-full\":62016,\"battery-half\":62018,\"battery-low\":57521,\"battery-quarter\":62019,\"battery-slash\":62327,\"battery-three-quarters\":62017,\"bed-bunk\":63736,\"bed-empty\":63737,\"bed-front\":63735,\"bed-pulse\":62599,\"bed\":62006,\"bee\":57522,\"beer-mug-empty\":61692,\"beer-mug\":57523,\"bell-concierge\":62818,\"bell-exclamation\":63560,\"bell-on\":63738,\"bell-plus\":63561,\"bell-ring\":58924,\"bell-school-slash\":62934,\"bell-school\":62933,\"bell-slash\":61942,\"bell\":61683,\"bells\":63359,\"bench-tree\":58087,\"bezier-curve\":62811,\"bicycle\":61958,\"billboard\":58829,\"bin-bottles-recycle\":58870,\"bin-bottles\":58869,\"bin-recycle\":58871,\"binary-circle-check\":58172,\"binary-lock\":58173,\"binary-slash\":58174,\"binary\":58171,\"binoculars\":61925,\"biohazard\":63360,\"bird\":58473,\"bitcoin-sign\":57524,\"blanket-fire\":58330,\"blanket\":62616,\"blender-phone\":63158,\"blender\":62743,\"blinds-open\":63740,\"blinds-raised\":63741,\"blinds\":63739,\"block-brick-fire\":58332,\"block-brick\":58331,\"block-question\":58333,\"block-quote\":57525,\"block\":58474,\"blog\":63361,\"blueberries\":58088,\"bluetooth\":62099,\"bold\":61490,\"bolt-auto\":57526,\"bolt-lightning\":57527,\"bolt-slash\":57528,\"bolt\":61671,\"bomb\":61922,\"bone-break\":62936,\"bone\":62935,\"bong\":62812,\"book-arrow-right\":57529,\"book-arrow-up\":57530,\"book-atlas\":62808,\"book-bible\":63047,\"book-blank\":62937,\"book-bookmark\":57531,\"book-circle-arrow-right\":57532,\"book-circle-arrow-up\":57533,\"book-copy\":57534,\"book-font\":57535,\"book-heart\":62617,\"book-journal-whills\":63082,\"book-medical\":63462,\"book-open-cover\":57536,\"book-open-reader\":62938,\"book-open\":62744,\"book-quran\":63111,\"book-section\":57537,\"book-skull\":63159,\"book-sparkles\":63160,\"book-tanakh\":63527,\"book-user\":63463,\"book\":61485,\"bookmark-slash\":57538,\"bookmark\":61486,\"books-medical\":63464,\"books\":62939,\"boombox\":63653,\"boot-heeled\":58175,\"boot\":63362,\"booth-curtain\":63284,\"border-all\":63564,\"border-bottom-right\":63572,\"border-bottom\":63565,\"border-center-h\":63644,\"border-center-v\":63645,\"border-inner\":63566,\"border-left\":63567,\"border-none\":63568,\"border-outer\":63569,\"border-right\":63570,\"border-top-left\":63571,\"border-top\":63573,\"bore-hole\":58563,\"bottle-baby\":58995,\"bottle-droplet\":58564,\"bottle-water\":58565,\"bow-arrow\":63161,\"bowl-chopsticks-noodles\":58090,\"bowl-chopsticks\":58089,\"bowl-food\":58566,\"bowl-hot\":63523,\"bowl-rice\":58091,\"bowl-scoop\":58334,\"bowl-scoops\":58335,\"bowl-soft-serve\":58475,\"bowl-spoon\":58336,\"bowling-ball-pin\":57539,\"bowling-ball\":62518,\"bowling-pins\":62519,\"box-archive\":61831,\"box-ballot\":63285,\"box-check\":62567,\"box-circle-check\":57540,\"box-dollar\":62624,\"box-heart\":62621,\"box-open-full\":62620,\"box-open\":62622,\"box-taped\":62618,\"box-tissue\":57435,\"box\":62566,\"boxes-packing\":58567,\"boxes-stacked\":62568,\"boxing-glove\":62520,\"bracket-curly-right\":125,\"bracket-curly\":123,\"bracket-round-right\":41,\"bracket-round\":40,\"bracket-square-right\":93,\"bracket-square\":91,\"brackets-curly\":63466,\"brackets-round\":57541,\"brackets-square\":63465,\"braille\":62113,\"brain-arrow-curved-right\":63095,\"brain-circuit\":57542,\"brain\":62940,\"brake-warning\":57543,\"brazilian-real-sign\":58476,\"bread-loaf\":63467,\"bread-slice-butter\":58337,\"bread-slice\":63468,\"bridge-circle-check\":58569,\"bridge-circle-exclamation\":58570,\"bridge-circle-xmark\":58571,\"bridge-lock\":58572,\"bridge-suspension\":58573,\"bridge-water\":58574,\"bridge\":58568,\"briefcase-arrow-right\":58098,\"briefcase-blank\":57544,\"briefcase-medical\":62569,\"briefcase\":61617,\"brightness-low\":57546,\"brightness\":57545,\"bring-forward\":63574,\"bring-front\":63575,\"broccoli\":58338,\"broom-ball\":62552,\"broom-wide\":58833,\"broom\":62746,\"browser\":62334,\"browsers\":57547,\"brush\":62813,\"bucket\":58575,\"bug-slash\":58512,\"bug\":61832,\"bugs\":58576,\"building-circle-arrow-right\":58577,\"building-circle-check\":58578,\"building-circle-exclamation\":58579,\"building-circle-xmark\":58580,\"building-columns\":61852,\"building-flag\":58581,\"building-lock\":58582,\"building-magnifying-glass\":58908,\"building-memo\":58910,\"building-ngo\":58583,\"building-shield\":58584,\"building-un\":58585,\"building-user\":58586,\"building-wheat\":58587,\"building\":61869,\"buildings\":57548,\"bulldozer\":58965,\"bullhorn\":61601,\"bullseye-arrow\":63048,\"bullseye-pointer\":63049,\"bullseye\":61760,\"buoy-mooring\":58806,\"buoy\":58805,\"burger-cheese\":63473,\"burger-fries\":57549,\"burger-glass\":57550,\"burger-lettuce\":58339,\"burger-soda\":63576,\"burger\":63493,\"burrito\":63469,\"burst\":58588,\"bus-school\":62941,\"bus-simple\":62814,\"bus\":61959,\"business-time\":63050,\"butter\":58340,\"c\":67,\"cabin\":58477,\"cabinet-filing\":63051,\"cable-car\":63450,\"cactus\":63655,\"caduceus\":59009,\"cake-candles\":61949,\"cake-slice\":58341,\"calculator-simple\":63052,\"calculator\":61932,\"calendar-arrow-down\":57552,\"calendar-arrow-up\":57553,\"calendar-check\":62068,\"calendar-circle-exclamation\":58478,\"calendar-circle-minus\":58479,\"calendar-circle-plus\":58480,\"calendar-circle-user\":58481,\"calendar-clock\":57554,\"calendar-day\":63363,\"calendar-days\":61555,\"calendar-exclamation\":62260,\"calendar-heart\":57555,\"calendar-image\":57556,\"calendar-lines-pen\":58482,\"calendar-lines\":57557,\"calendar-minus\":62066,\"calendar-pen\":62259,\"calendar-plus\":62065,\"calendar-range\":57558,\"calendar-star\":63286,\"calendar-users\":58850,\"calendar-week\":63364,\"calendar-xmark\":62067,\"calendar\":61747,\"calendars\":57559,\"camcorder\":63656,\"camera-cctv\":63660,\"camera-movie\":63657,\"camera-polaroid\":63658,\"camera-retro\":61571,\"camera-rotate\":57560,\"camera-security\":63742,\"camera-slash\":57561,\"camera-viewfinder\":57562,\"camera-web-slash\":63539,\"camera-web\":63538,\"camera\":61488,\"campfire\":63162,\"campground\":63163,\"can-food\":58342,\"candle-holder\":63164,\"candy-bar\":58344,\"candy-cane\":63366,\"candy-corn\":63165,\"candy\":58343,\"cannabis\":62815,\"cannon\":58946,\"capsules\":62571,\"car-battery\":62943,\"car-bolt\":58177,\"car-building\":63577,\"car-bump\":62944,\"car-burst\":62945,\"car-bus\":63578,\"car-circle-bolt\":58178,\"car-garage\":62946,\"car-mirrors\":58179,\"car-on\":58589,\"car-rear\":62942,\"car-side-bolt\":58180,\"car-side\":62948,\"car-tilt\":62949,\"car-tunnel\":58590,\"car-wash\":62950,\"car-wrench\":62947,\"car\":61881,\"caravan-simple\":57344,\"caravan\":63743,\"card-club\":58345,\"card-diamond\":58346,\"card-heart\":58347,\"card-spade\":58348,\"cards-blank\":58591,\"cards\":58349,\"caret-down\":61655,\"caret-left\":61657,\"caret-right\":61658,\"caret-up\":61656,\"carpool\":59036,\"carrot\":63367,\"cars\":63579,\"cart-arrow-down\":61976,\"cart-arrow-up\":58350,\"cart-circle-arrow-down\":58351,\"cart-circle-arrow-up\":58352,\"cart-circle-check\":58353,\"cart-circle-exclamation\":58354,\"cart-circle-plus\":58355,\"cart-circle-xmark\":58356,\"cart-flatbed-boxes\":62581,\"cart-flatbed-empty\":62582,\"cart-flatbed-suitcase\":62877,\"cart-flatbed\":62580,\"cart-minus\":57563,\"cart-plus\":61975,\"cart-shopping-fast\":57564,\"cart-shopping\":61562,\"cart-xmark\":57565,\"cash-register\":63368,\"cassette-betamax\":63652,\"cassette-tape\":63659,\"cassette-vhs\":63724,\"castle\":57566,\"cat-space\":57345,\"cat\":63166,\"cauldron\":63167,\"cedi-sign\":57567,\"cent-sign\":58357,\"certificate\":61603,\"chair-office\":63169,\"chair\":63168,\"chalkboard-user\":62748,\"chalkboard\":62747,\"champagne-glass\":63390,\"champagne-glasses\":63391,\"charging-station\":62951,\"chart-area\":61950,\"chart-bar\":61568,\"chart-bullet\":57569,\"chart-candlestick\":57570,\"chart-column\":57571,\"chart-diagram\":59029,\"chart-fft\":59038,\"chart-gantt\":57572,\"chart-kanban\":58959,\"chart-line-down\":63053,\"chart-line-up-down\":58839,\"chart-line-up\":57573,\"chart-line\":61953,\"chart-mixed-up-circle-currency\":58840,\"chart-mixed-up-circle-dollar\":58841,\"chart-mixed\":63043,\"chart-network\":63370,\"chart-pie-simple-circle-currency\":58884,\"chart-pie-simple-circle-dollar\":58885,\"chart-pie-simple\":63054,\"chart-pie\":61952,\"chart-pyramid\":57574,\"chart-radar\":57575,\"chart-scatter-3d\":57576,\"chart-scatter-bubble\":57577,\"chart-scatter\":63470,\"chart-simple-horizontal\":58484,\"chart-simple\":58483,\"chart-sine\":59037,\"chart-tree-map\":57578,\"chart-user\":63139,\"chart-waterfall\":57579,\"check-double\":62816,\"check-to-slot\":63346,\"check\":61452,\"cheese-swiss\":63472,\"cheese\":63471,\"cherries\":57580,\"chess-bishop-piece\":62523,\"chess-bishop\":62522,\"chess-board\":62524,\"chess-clock-flip\":62526,\"chess-clock\":62525,\"chess-king-piece\":62528,\"chess-king\":62527,\"chess-knight-piece\":62530,\"chess-knight\":62529,\"chess-pawn-piece\":62532,\"chess-pawn\":62531,\"chess-queen-piece\":62534,\"chess-queen\":62533,\"chess-rook-piece\":62536,\"chess-rook\":62535,\"chess\":62521,\"chestnut\":58358,\"chevron-down\":61560,\"chevron-left\":61523,\"chevron-right\":61524,\"chevron-up\":61559,\"chevrons-down\":62242,\"chevrons-left\":62243,\"chevrons-right\":62244,\"chevrons-up\":62245,\"chf-sign\":58882,\"child-combatant\":58592,\"child-dress\":58780,\"child-reaching\":58781,\"child\":61870,\"children\":58593,\"chimney\":63371,\"chopsticks\":58359,\"church\":62749,\"circle-0\":57581,\"circle-1\":57582,\"circle-2\":57583,\"circle-3\":57584,\"circle-4\":57585,\"circle-5\":57586,\"circle-6\":57587,\"circle-7\":57588,\"circle-8\":57589,\"circle-9\":57590,\"circle-a\":57591,\"circle-ampersand\":57592,\"circle-arrow-down-left\":57593,\"circle-arrow-down-right\":57594,\"circle-arrow-down\":61611,\"circle-arrow-left\":61608,\"circle-arrow-right\":61609,\"circle-arrow-up-left\":57595,\"circle-arrow-up-right\":57596,\"circle-arrow-up\":61610,\"circle-b\":57597,\"circle-bolt\":57598,\"circle-book-open\":57599,\"circle-bookmark\":57600,\"circle-c\":57601,\"circle-calendar\":57602,\"circle-camera\":57603,\"circle-caret-down\":62253,\"circle-caret-left\":62254,\"circle-caret-right\":62256,\"circle-caret-up\":62257,\"circle-check\":61528,\"circle-chevron-down\":61754,\"circle-chevron-left\":61751,\"circle-chevron-right\":61752,\"circle-chevron-up\":61753,\"circle-d\":57604,\"circle-dashed\":57605,\"circle-divide\":57606,\"circle-dollar-to-slot\":62649,\"circle-dollar\":62184,\"circle-dot\":61842,\"circle-down-left\":57607,\"circle-down-right\":57608,\"circle-down\":62296,\"circle-e\":57609,\"circle-ellipsis-vertical\":57611,\"circle-ellipsis\":57610,\"circle-envelope\":57612,\"circle-euro\":58830,\"circle-exclamation-check\":57613,\"circle-exclamation\":61546,\"circle-f\":57614,\"circle-g\":57615,\"circle-gf\":59007,\"circle-h\":62590,\"circle-half-stroke\":61506,\"circle-half\":57616,\"circle-heart\":62663,\"circle-i\":57617,\"circle-info\":61530,\"circle-j\":57618,\"circle-k\":57619,\"circle-l\":57620,\"circle-left\":62297,\"circle-location-arrow\":62978,\"circle-m\":57621,\"circle-microphone-lines\":57623,\"circle-microphone\":57622,\"circle-minus\":61526,\"circle-n\":57624,\"circle-nodes\":58594,\"circle-notch\":61902,\"circle-o\":57625,\"circle-p\":57626,\"circle-parking\":62997,\"circle-pause\":62091,\"circle-phone-flip\":57628,\"circle-phone-hangup\":57629,\"circle-phone\":57627,\"circle-play\":61764,\"circle-plus\":61525,\"circle-q\":57630,\"circle-quarter-stroke\":58835,\"circle-quarter\":57631,\"circle-quarters\":58360,\"circle-question\":61529,\"circle-r\":57632,\"circle-radiation\":63418,\"circle-right\":62298,\"circle-s\":57633,\"circle-small\":57634,\"circle-sort-down\":57393,\"circle-sort-up\":57394,\"circle-sort\":57392,\"circle-star\":57635,\"circle-sterling\":58831,\"circle-stop\":62093,\"circle-t\":57636,\"circle-three-quarters-stroke\":58836,\"circle-three-quarters\":57637,\"circle-trash\":57638,\"circle-u\":57639,\"circle-up-left\":57640,\"circle-up-right\":57641,\"circle-up\":62299,\"circle-user\":62141,\"circle-v\":57642,\"circle-video\":57643,\"circle-w\":57644,\"circle-waveform-lines\":57645,\"circle-wifi-circle-wifi\":59006,\"circle-wifi\":59005,\"circle-x\":57646,\"circle-xmark\":61527,\"circle-y\":57647,\"circle-yen\":58832,\"circle-z\":57648,\"circle\":61713,\"circles-overlap-3\":59041,\"circles-overlap\":58880,\"citrus-slice\":58101,\"citrus\":58100,\"city\":63055,\"clapperboard-play\":57650,\"clapperboard\":57649,\"clarinet\":63661,\"claw-marks\":63170,\"clipboard-check\":62572,\"clipboard-list-check\":63287,\"clipboard-list\":62573,\"clipboard-medical\":57651,\"clipboard-prescription\":62952,\"clipboard-question\":58595,\"clipboard-user\":63475,\"clipboard\":62248,\"clock-desk\":57652,\"clock-eight-thirty\":58182,\"clock-eight\":58181,\"clock-eleven-thirty\":58184,\"clock-eleven\":58183,\"clock-five-thirty\":58186,\"clock-five\":58185,\"clock-four-thirty\":58187,\"clock-nine-thirty\":58189,\"clock-nine\":58188,\"clock-one-thirty\":58191,\"clock-one\":58190,\"clock-rotate-left\":61914,\"clock-seven-thirty\":58193,\"clock-seven\":58192,\"clock-six-thirty\":58195,\"clock-six\":58194,\"clock-ten-thirty\":58197,\"clock-ten\":58196,\"clock-three-thirty\":58199,\"clock-three\":58198,\"clock-twelve-thirty\":58201,\"clock-twelve\":58200,\"clock-two-thirty\":58203,\"clock-two\":58202,\"clock\":61463,\"clone\":62029,\"closed-captioning-slash\":57653,\"closed-captioning\":61962,\"clothes-hanger\":57654,\"cloud-arrow-down\":61677,\"cloud-arrow-up\":61678,\"cloud-binary\":58881,\"cloud-bolt-moon\":63341,\"cloud-bolt-sun\":63342,\"cloud-bolt\":63340,\"cloud-check\":58204,\"cloud-drizzle\":63288,\"cloud-exclamation\":58513,\"cloud-fog\":63310,\"cloud-hail-mixed\":63290,\"cloud-hail\":63289,\"cloud-meatball\":63291,\"cloud-minus\":58205,\"cloud-moon-rain\":63292,\"cloud-moon\":63171,\"cloud-music\":63662,\"cloud-plus\":58206,\"cloud-question\":58514,\"cloud-rain\":63293,\"cloud-rainbow\":63294,\"cloud-showers-heavy\":63296,\"cloud-showers-water\":58596,\"cloud-showers\":63295,\"cloud-slash\":57655,\"cloud-sleet\":63297,\"cloud-snow\":63298,\"cloud-sun-rain\":63299,\"cloud-sun\":63172,\"cloud-word\":57656,\"cloud-xmark\":58207,\"cloud\":61634,\"clouds-moon\":63301,\"clouds-sun\":63302,\"clouds\":63300,\"clover\":57657,\"club\":62247,\"coconut\":58102,\"code-branch\":61734,\"code-commit\":62342,\"code-compare\":57658,\"code-fork\":57659,\"code-merge\":62343,\"code-pull-request-closed\":58361,\"code-pull-request-draft\":58362,\"code-pull-request\":57660,\"code-simple\":57661,\"code\":61729,\"coffee-bean\":57662,\"coffee-beans\":57663,\"coffee-pot\":57346,\"coffin-cross\":57425,\"coffin\":63174,\"coin-blank\":58363,\"coin-front\":58364,\"coin-vertical\":58365,\"coin\":63580,\"coins\":62750,\"colon-sign\":57664,\"colon\":58,\"columns-3\":58209,\"comet\":57347,\"comma\":44,\"command\":57666,\"comment-arrow-down\":57667,\"comment-arrow-up-right\":57669,\"comment-arrow-up\":57668,\"comment-captions\":57670,\"comment-check\":62636,\"comment-code\":57671,\"comment-dollar\":63057,\"comment-dots\":62637,\"comment-exclamation\":62639,\"comment-heart\":58824,\"comment-image\":57672,\"comment-lines\":62640,\"comment-medical\":63477,\"comment-middle-top\":57674,\"comment-middle\":57673,\"comment-minus\":62641,\"comment-music\":63664,\"comment-nodes\":59030,\"comment-pen\":62638,\"comment-plus\":62642,\"comment-question\":57675,\"comment-quote\":57676,\"comment-slash\":62643,\"comment-smile\":62644,\"comment-sms\":63437,\"comment-text\":57677,\"comment-xmark\":62645,\"comment\":61557,\"comments-dollar\":63059,\"comments-question-check\":57679,\"comments-question\":57678,\"comments\":61574,\"compact-disc\":62751,\"compass-drafting\":62824,\"compass-slash\":62953,\"compass\":61774,\"compress-wide\":62246,\"compress\":61542,\"computer-classic\":63665,\"computer-mouse-scrollwheel\":63693,\"computer-mouse\":63692,\"computer-speaker\":63666,\"computer\":58597,\"container-storage\":62647,\"conveyor-belt-arm\":58872,\"conveyor-belt-boxes\":62575,\"conveyor-belt-empty\":57680,\"conveyor-belt\":62574,\"cookie-bite\":62820,\"cookie\":62819,\"copy\":61637,\"copyright\":61945,\"corn\":63175,\"corner\":58366,\"couch\":62648,\"court-sport\":58947,\"cow\":63176,\"cowbell-circle-plus\":63668,\"cowbell\":63667,\"crab\":58367,\"crate-apple\":63153,\"crate-empty\":57681,\"credit-card-blank\":62345,\"credit-card-front\":62346,\"credit-card\":61597,\"cricket-bat-ball\":62537,\"croissant\":63478,\"crop-simple\":62821,\"crop\":61733,\"cross\":63060,\"crosshairs-simple\":58783,\"crosshairs\":61531,\"crow\":62752,\"crown\":62753,\"crutch\":63479,\"crutches\":63480,\"cruzeiro-sign\":57682,\"crystal-ball\":58210,\"cube\":61874,\"cubes-stacked\":58598,\"cubes\":61875,\"cucumber\":58369,\"cup-straw-swoosh\":58212,\"cup-straw\":58211,\"cup-togo\":63173,\"cupcake\":58370,\"curling-stone\":62538,\"custard\":58371,\"d\":68,\"dagger\":63179,\"dash\":58372,\"database\":61888,\"deer-rudolph\":63375,\"deer\":63374,\"delete-left\":62810,\"delete-right\":57684,\"democrat\":63303,\"desktop-arrow-down\":57685,\"desktop\":62352,\"dharmachakra\":63061,\"diagram-cells\":58485,\"diagram-lean-canvas\":57686,\"diagram-nested\":57687,\"diagram-next\":58486,\"diagram-predecessor\":58487,\"diagram-previous\":58488,\"diagram-project\":62786,\"diagram-sankey\":57688,\"diagram-subtask\":58489,\"diagram-successor\":58490,\"diagram-venn\":57690,\"dial-high\":57692,\"dial-low\":57693,\"dial-max\":57694,\"dial-med-low\":57696,\"dial-med\":57695,\"dial-min\":57697,\"dial-off\":57698,\"dial\":57691,\"diamond-exclamation\":58373,\"diamond-half-stroke\":58808,\"diamond-half\":58807,\"diamond-turn-right\":62955,\"diamond\":61977,\"diamonds-4\":59019,\"dice-d10\":63181,\"dice-d12\":63182,\"dice-d20\":63183,\"dice-d4\":63184,\"dice-d6\":63185,\"dice-d8\":63186,\"dice-five\":62755,\"dice-four\":62756,\"dice-one\":62757,\"dice-six\":62758,\"dice-three\":62759,\"dice-two\":62760,\"dice\":62754,\"dinosaur\":58878,\"diploma\":62954,\"disc-drive\":63669,\"disease\":63482,\"display-arrow-down\":57700,\"display-chart-up-circle-currency\":58853,\"display-chart-up-circle-dollar\":58854,\"display-chart-up\":58851,\"display-code\":57701,\"display-medical\":57702,\"display-slash\":58106,\"display\":57699,\"distribute-spacing-horizontal\":58213,\"distribute-spacing-vertical\":58214,\"ditto\":34,\"divide\":62761,\"dna\":62577,\"do-not-enter\":62956,\"dog-leashed\":63188,\"dog\":63187,\"dollar-sign\":36,\"dolly-empty\":62579,\"dolly\":62578,\"dolphin\":57704,\"dong-sign\":57705,\"donut\":58374,\"door-closed\":62762,\"door-open\":62763,\"dove\":62650,\"down-from-bracket\":58987,\"down-from-dotted-line\":58375,\"down-from-line\":62281,\"down-left-and-up-right-to-center\":62498,\"down-left\":57706,\"down-long\":62217,\"down-right\":57707,\"down-to-bracket\":58599,\"down-to-dotted-line\":58376,\"down-to-line\":62282,\"down\":62292,\"download\":61465,\"dragon\":63189,\"draw-circle\":62957,\"draw-polygon\":62958,\"draw-square\":62959,\"dreidel\":63378,\"drone-front\":63584,\"drone\":63583,\"droplet-degree\":63304,\"droplet-percent\":63312,\"droplet-slash\":62919,\"droplet\":61507,\"drum-steelpan\":62826,\"drum\":62825,\"drumstick-bite\":63191,\"drumstick\":63190,\"dryer-heat\":63586,\"dryer\":63585,\"duck\":63192,\"dumbbell\":62539,\"dumpster-fire\":63380,\"dumpster\":63379,\"dungeon\":63193,\"e\":69,\"ear-deaf\":62116,\"ear-listen\":62114,\"ear-muffs\":63381,\"ear\":62960,\"earth-africa\":62844,\"earth-americas\":62845,\"earth-asia\":62846,\"earth-europe\":63394,\"earth-oceania\":58491,\"eclipse\":63305,\"egg-fried\":63484,\"egg\":63483,\"eggplant\":57708,\"eject\":61522,\"elephant\":63194,\"elevator\":57709,\"ellipsis-stroke-vertical\":62364,\"ellipsis-stroke\":62363,\"ellipsis-vertical\":61762,\"ellipsis\":61761,\"empty-set\":63062,\"engine-warning\":62962,\"engine\":57710,\"envelope-circle-check\":58600,\"envelope-dot\":57711,\"envelope-open-dollar\":63063,\"envelope-open-text\":63064,\"envelope-open\":62134,\"envelope\":61664,\"envelopes-bulk\":63092,\"envelopes\":57712,\"equals\":61,\"eraser\":61741,\"escalator\":57713,\"ethernet\":63382,\"euro-sign\":61779,\"excavator\":58966,\"exclamation\":33,\"expand-wide\":62240,\"expand\":61541,\"explosion\":58601,\"eye-dropper-full\":57714,\"eye-dropper-half\":57715,\"eye-dropper\":61947,\"eye-evil\":63195,\"eye-low-vision\":62120,\"eye-slash\":61552,\"eye\":61550,\"eyes\":58215,\"f\":70,\"face-angry-horns\":58216,\"face-angry\":62806,\"face-anguished\":58217,\"face-anxious-sweat\":58218,\"face-astonished\":58219,\"face-awesome\":58377,\"face-beam-hand-over-mouth\":58492,\"face-clouds\":58493,\"face-confounded\":58220,\"face-confused\":58221,\"face-cowboy-hat\":58222,\"face-diagonal-mouth\":58494,\"face-disappointed\":58223,\"face-disguise\":58224,\"face-dizzy\":62823,\"face-dotted\":58495,\"face-downcast-sweat\":58225,\"face-drooling\":58226,\"face-exhaling\":58496,\"face-explode\":58110,\"face-expressionless\":58227,\"face-eyes-xmarks\":58228,\"face-fearful\":58229,\"face-flushed\":62841,\"face-frown-open\":62842,\"face-frown-slight\":58230,\"face-frown\":61721,\"face-glasses\":58231,\"face-grimace\":62847,\"face-grin-beam-sweat\":62851,\"face-grin-beam\":62850,\"face-grin-hearts\":62852,\"face-grin-squint-tears\":62854,\"face-grin-squint\":62853,\"face-grin-stars\":62855,\"face-grin-tears\":62856,\"face-grin-tongue-squint\":62858,\"face-grin-tongue-wink\":62859,\"face-grin-tongue\":62857,\"face-grin-wide\":62849,\"face-grin-wink\":62860,\"face-grin\":62848,\"face-hand-over-mouth\":58232,\"face-hand-peeking\":58497,\"face-hand-yawn\":58233,\"face-head-bandage\":58234,\"face-holding-back-tears\":58498,\"face-hushed\":58235,\"face-icicles\":58236,\"face-kiss-beam\":62871,\"face-kiss-closed-eyes\":58237,\"face-kiss-wink-heart\":62872,\"face-kiss\":62870,\"face-laugh-beam\":62874,\"face-laugh-squint\":62875,\"face-laugh-wink\":62876,\"face-laugh\":62873,\"face-lying\":58238,\"face-mask\":58239,\"face-meh-blank\":62884,\"face-meh\":61722,\"face-melting\":58499,\"face-monocle\":58240,\"face-nauseated\":58241,\"face-nose-steam\":58242,\"face-party\":58243,\"face-pensive\":58244,\"face-persevering\":58245,\"face-pleading\":58246,\"face-pouting\":58247,\"face-raised-eyebrow\":58248,\"face-relieved\":58249,\"face-rolling-eyes\":62885,\"face-sad-cry\":62899,\"face-sad-sweat\":58250,\"face-sad-tear\":62900,\"face-saluting\":58500,\"face-scream\":58251,\"face-shush\":58252,\"face-sleeping\":58253,\"face-sleepy\":58254,\"face-smile-beam\":62904,\"face-smile-halo\":58255,\"face-smile-hearts\":58256,\"face-smile-horns\":58257,\"face-smile-plus\":62905,\"face-smile-relaxed\":58258,\"face-smile-tear\":58259,\"face-smile-tongue\":58260,\"face-smile-upside-down\":58261,\"face-smile-wink\":62682,\"face-smile\":61720,\"face-smiling-hands\":58262,\"face-smirking\":58263,\"face-spiral-eyes\":58501,\"face-sunglasses\":58264,\"face-surprise\":62914,\"face-swear\":58265,\"face-thermometer\":58266,\"face-thinking\":58267,\"face-tired\":62920,\"face-tissue\":58268,\"face-tongue-money\":58269,\"face-tongue-sweat\":58270,\"face-unamused\":58271,\"face-viewfinder\":58111,\"face-vomit\":58272,\"face-weary\":58273,\"face-woozy\":58274,\"face-worried\":58275,\"face-zany\":58276,\"face-zipper\":58277,\"falafel\":58378,\"family-dress\":58113,\"family-pants\":58114,\"family\":58112,\"fan-table\":57348,\"fan\":63587,\"farm\":63588,\"faucet-drip\":57350,\"faucet\":57349,\"fax\":61868,\"feather-pointed\":62827,\"feather\":62765,\"fence\":58115,\"ferris-wheel\":57716,\"ferry\":58602,\"field-hockey-stick-ball\":62540,\"file-arrow-down\":62829,\"file-arrow-up\":62836,\"file-audio\":61895,\"file-binary\":57717,\"file-cad\":58994,\"file-certificate\":62963,\"file-chart-column\":63065,\"file-chart-pie\":63066,\"file-check\":62230,\"file-circle-check\":58784,\"file-circle-exclamation\":58603,\"file-circle-info\":58515,\"file-circle-minus\":58605,\"file-circle-plus\":58516,\"file-circle-question\":58607,\"file-circle-xmark\":58785,\"file-code\":61897,\"file-contract\":62828,\"file-csv\":63197,\"file-dashed-line\":63607,\"file-doc\":58861,\"file-eps\":58948,\"file-excel\":61891,\"file-exclamation\":62234,\"file-export\":62830,\"file-fragment\":59031,\"file-gif\":58949,\"file-half-dashed\":59032,\"file-heart\":57718,\"file-image\":61893,\"file-import\":62831,\"file-invoice-dollar\":62833,\"file-invoice\":62832,\"file-jpg\":58950,\"file-lines\":61788,\"file-lock\":58278,\"file-magnifying-glass\":63589,\"file-medical\":62583,\"file-minus\":62232,\"file-mov\":58951,\"file-mp3\":58952,\"file-mp4\":58953,\"file-music\":63670,\"file-pdf\":61889,\"file-pen\":62236,\"file-plus-minus\":57719,\"file-plus\":62233,\"file-png\":58982,\"file-powerpoint\":61892,\"file-ppt\":58954,\"file-prescription\":62834,\"file-shield\":58608,\"file-signature\":62835,\"file-slash\":58279,\"file-spreadsheet\":63067,\"file-svg\":58955,\"file-user\":63068,\"file-vector\":58956,\"file-video\":61896,\"file-waveform\":62584,\"file-word\":61890,\"file-xls\":58957,\"file-xmark\":62231,\"file-xml\":58964,\"file-zip\":58862,\"file-zipper\":61894,\"file\":61787,\"files-medical\":63485,\"files\":57720,\"fill-drip\":62838,\"fill\":62837,\"film-canister\":63671,\"film-simple\":62368,\"film-slash\":57721,\"film\":61448,\"films\":57722,\"filter-circle-dollar\":63074,\"filter-circle-xmark\":57723,\"filter-list\":57724,\"filter-slash\":57725,\"filter\":61616,\"filters\":57726,\"fingerprint\":62839,\"fire-burner\":58609,\"fire-extinguisher\":61748,\"fire-flame-curved\":63460,\"fire-flame-simple\":62570,\"fire-flame\":63199,\"fire-hydrant\":57727,\"fire-smoke\":63307,\"fire\":61549,\"fireplace\":63386,\"fish-bones\":58116,\"fish-cooked\":63486,\"fish-fins\":58610,\"fish\":62840,\"fishing-rod\":58280,\"flag-checkered\":61726,\"flag-pennant\":62550,\"flag-swallowtail\":63308,\"flag-usa\":63309,\"flag\":61476,\"flashlight\":63672,\"flask-gear\":58865,\"flask-round-poison\":63200,\"flask-round-potion\":63201,\"flask-vial\":58611,\"flask\":61635,\"flatbread-stuffed\":58380,\"flatbread\":58379,\"floppy-disk-circle-arrow-right\":57728,\"floppy-disk-circle-xmark\":57729,\"floppy-disk-pen\":57730,\"floppy-disk\":61639,\"floppy-disks\":57731,\"florin-sign\":57732,\"flower-daffodil\":63488,\"flower-tulip\":63489,\"flower\":63487,\"flute\":63673,\"flux-capacitor\":63674,\"flying-disc\":58281,\"folder-arrow-down\":57427,\"folder-arrow-up\":57428,\"folder-bookmark\":57734,\"folder-check\":58958,\"folder-closed\":57733,\"folder-gear\":57735,\"folder-grid\":57736,\"folder-heart\":57737,\"folder-image\":57738,\"folder-magnifying-glass\":57739,\"folder-medical\":57740,\"folder-minus\":63069,\"folder-music\":57741,\"folder-open\":61564,\"folder-plus\":63070,\"folder-tree\":63490,\"folder-user\":57742,\"folder-xmark\":63071,\"folder\":61563,\"folders\":63072,\"fondue-pot\":58381,\"font-awesome\":62132,\"font-case\":63590,\"font\":61489,\"football-helmet\":62543,\"football\":62542,\"fork-knife\":62182,\"fork\":62179,\"forklift\":62586,\"fort\":58502,\"forward-fast\":61520,\"forward-step\":61521,\"forward\":61518,\"frame\":58517,\"franc-sign\":57743,\"french-fries\":63491,\"frog\":62766,\"function\":63073,\"futbol\":61923,\"g\":71,\"galaxy\":57352,\"gallery-thumbnails\":58282,\"game-board-simple\":63592,\"game-board\":63591,\"game-console-handheld-crank\":58809,\"game-console-handheld\":63675,\"gamepad-modern\":58786,\"gamepad\":61723,\"garage-car\":57354,\"garage-open\":57355,\"garage\":57353,\"garlic\":58382,\"gas-pump-slash\":62964,\"gas-pump\":62767,\"gauge-circle-bolt\":58518,\"gauge-circle-minus\":58519,\"gauge-circle-plus\":58520,\"gauge-high\":63013,\"gauge-low\":63015,\"gauge-max\":63014,\"gauge-min\":63016,\"gauge-simple-high\":63018,\"gauge-simple-low\":63020,\"gauge-simple-max\":63019,\"gauge-simple-min\":63021,\"gauge-simple\":63017,\"gauge\":63012,\"gavel\":61667,\"gear-code\":58856,\"gear-complex-code\":58859,\"gear-complex\":58857,\"gear\":61459,\"gears\":61573,\"gem\":62373,\"genderless\":61997,\"ghost\":63202,\"gif\":57744,\"gift-card\":63075,\"gift\":61547,\"gifts\":63388,\"gingerbread-man\":63389,\"glass-citrus\":63593,\"glass-empty\":57745,\"glass-half\":57746,\"glass-water-droplet\":58613,\"glass-water\":58612,\"glass\":63492,\"glasses-round\":62965,\"glasses\":62768,\"globe-pointer\":58894,\"globe-snow\":63395,\"globe-stand\":62966,\"globe-wifi\":59013,\"globe\":61612,\"goal-net\":58283,\"golf-ball-tee\":62544,\"golf-club\":62545,\"golf-flag-hole\":58284,\"gopuram\":63076,\"graduation-cap\":61853,\"gramophone\":63677,\"grapes\":58118,\"grate-droplet\":57748,\"grate\":57747,\"greater-than-equal\":62770,\"greater-than\":62,\"grid-2-plus\":57751,\"grid-2\":57750,\"grid-4\":57752,\"grid-5\":57753,\"grid-dividers\":58285,\"grid-horizontal\":58119,\"grid-round-2-plus\":58844,\"grid-round-2\":58843,\"grid-round-4\":58845,\"grid-round-5\":58846,\"grid-round\":58842,\"grid\":57749,\"grill-fire\":58788,\"grill-hot\":58789,\"grill\":58787,\"grip-dots-vertical\":58385,\"grip-dots\":58384,\"grip-lines-vertical\":63397,\"grip-lines\":63396,\"grip-vertical\":62862,\"grip\":62861,\"group-arrows-rotate\":58614,\"guarani-sign\":57754,\"guitar-electric\":63678,\"guitar\":63398,\"guitars\":63679,\"gun-slash\":57756,\"gun-squirt\":57757,\"gun\":57755,\"h\":72,\"h1\":62227,\"h2\":62228,\"h3\":62229,\"h4\":63594,\"h5\":58386,\"h6\":58387,\"hammer-brush\":58912,\"hammer-crash\":58388,\"hammer-war\":63204,\"hammer\":63203,\"hamsa\":63077,\"hand-back-fist\":62037,\"hand-back-point-down\":57758,\"hand-back-point-left\":57759,\"hand-back-point-ribbon\":57760,\"hand-back-point-right\":57761,\"hand-back-point-up\":57762,\"hand-dots\":62561,\"hand-fingers-crossed\":57763,\"hand-fist\":63198,\"hand-heart\":62652,\"hand-holding-box\":62587,\"hand-holding-circle-dollar\":58913,\"hand-holding-dollar\":62656,\"hand-holding-droplet\":62657,\"hand-holding-hand\":58615,\"hand-holding-heart\":62654,\"hand-holding-magic\":63205,\"hand-holding-medical\":57436,\"hand-holding-seedling\":62655,\"hand-holding-skull\":57764,\"hand-holding\":62653,\"hand-horns\":57769,\"hand-lizard\":62040,\"hand-love\":57765,\"hand-middle-finger\":63494,\"hand-peace\":62043,\"hand-point-down\":61607,\"hand-point-left\":61605,\"hand-point-ribbon\":57766,\"hand-point-right\":61604,\"hand-point-up\":61606,\"hand-pointer\":62042,\"hand-scissors\":62039,\"hand-sparkles\":57437,\"hand-spock\":62041,\"hand-wave\":57767,\"hand\":62038,\"handcuffs\":58616,\"hands-asl-interpreting\":62115,\"hands-bound\":58617,\"hands-bubbles\":57438,\"hands-clapping\":57768,\"hands-holding-child\":58618,\"hands-holding-circle\":58619,\"hands-holding-diamond\":62588,\"hands-holding-dollar\":62661,\"hands-holding-heart\":62659,\"hands-holding\":62658,\"hands-praying\":63108,\"hands\":62119,\"handshake-angle\":62660,\"handshake-simple-slash\":57439,\"handshake-simple\":62662,\"handshake-slash\":57440,\"handshake\":62133,\"hanukiah\":63206,\"hard-drive\":61600,\"hashtag-lock\":58389,\"hashtag\":35,\"hat-beach\":58886,\"hat-chef\":63595,\"hat-cowboy-side\":63681,\"hat-cowboy\":63680,\"hat-santa\":63399,\"hat-winter\":63400,\"hat-witch\":63207,\"hat-wizard\":63208,\"head-side-brain\":63496,\"head-side-cough-slash\":57442,\"head-side-cough\":57441,\"head-side-gear\":58897,\"head-side-goggles\":63210,\"head-side-headphones\":63682,\"head-side-heart\":57770,\"head-side-mask\":57443,\"head-side-medical\":63497,\"head-side-virus\":57444,\"head-side\":63209,\"heading\":61916,\"headphones-simple\":62863,\"headphones\":61477,\"headset\":62864,\"heart-circle-bolt\":58620,\"heart-circle-check\":58621,\"heart-circle-exclamation\":58622,\"heart-circle-minus\":58623,\"heart-circle-plus\":58624,\"heart-circle-xmark\":58625,\"heart-crack\":63401,\"heart-half-stroke\":57772,\"heart-half\":57771,\"heart-pulse\":61982,\"heart\":61444,\"heat\":57356,\"helicopter-symbol\":58626,\"helicopter\":62771,\"helmet-battle\":63211,\"helmet-safety\":63495,\"helmet-un\":58627,\"hexagon-check\":58390,\"hexagon-divide\":57773,\"hexagon-exclamation\":58391,\"hexagon-image\":58628,\"hexagon-minus\":62215,\"hexagon-nodes-bolt\":59034,\"hexagon-nodes\":59033,\"hexagon-plus\":62208,\"hexagon-vertical-nft-slanted\":58630,\"hexagon-vertical-nft\":58629,\"hexagon-xmark\":62190,\"hexagon\":62226,\"high-definition\":57774,\"highlighter-line\":57775,\"highlighter\":62865,\"hill-avalanche\":58631,\"hill-rockslide\":58632,\"hippo\":63213,\"hockey-mask\":63214,\"hockey-puck\":62547,\"hockey-stick-puck\":58286,\"hockey-sticks\":62548,\"holly-berry\":63402,\"honey-pot\":58392,\"hood-cloak\":63215,\"horizontal-rule\":63596,\"horse-head\":63403,\"horse-saddle\":63683,\"horse\":63216,\"hose-reel\":58394,\"hose\":58393,\"hospital-user\":63501,\"hospital\":61688,\"hospitals\":63502,\"hot-tub-person\":62867,\"hotdog\":63503,\"hotel\":62868,\"hourglass-clock\":58395,\"hourglass-end\":62035,\"hourglass-half\":62034,\"hourglass-start\":62033,\"hourglass\":62036,\"house-blank\":58503,\"house-building\":57777,\"house-chimney-blank\":58288,\"house-chimney-crack\":63217,\"house-chimney-heart\":57778,\"house-chimney-medical\":63474,\"house-chimney-user\":57445,\"house-chimney-window\":57357,\"house-chimney\":58287,\"house-circle-check\":58633,\"house-circle-exclamation\":58634,\"house-circle-xmark\":58635,\"house-crack\":58289,\"house-day\":57358,\"house-fire\":58636,\"house-flag\":58637,\"house-flood-water-circle-arrow-right\":58639,\"house-flood-water\":58638,\"house-heart\":62665,\"house-laptop\":57446,\"house-lock\":58640,\"house-medical-circle-check\":58641,\"house-medical-circle-exclamation\":58642,\"house-medical-circle-xmark\":58643,\"house-medical-flag\":58644,\"house-medical\":58290,\"house-night\":57360,\"house-person-leave\":57359,\"house-person-return\":57361,\"house-signal\":57362,\"house-tree\":57779,\"house-tsunami\":58645,\"house-turret\":57780,\"house-user\":57776,\"house-water\":63311,\"house-window\":58291,\"house\":61461,\"hryvnia-sign\":63218,\"hundred-points\":58396,\"hurricane\":63313,\"hydra\":59014,\"hyphen\":45,\"i-cursor\":62022,\"i\":73,\"ice-cream\":63504,\"ice-skate\":63404,\"icicles\":63405,\"icons\":63597,\"id-badge\":62145,\"id-card-clip\":62591,\"id-card\":62146,\"igloo\":63406,\"image-landscape\":57781,\"image-polaroid-user\":57782,\"image-polaroid\":63684,\"image-portrait\":62432,\"image-slash\":57783,\"image-user\":57784,\"image\":61502,\"images-user\":57785,\"images\":62210,\"inbox-full\":57786,\"inbox-in\":62224,\"inbox-out\":62225,\"inbox\":61468,\"inboxes\":57787,\"indent\":61500,\"indian-rupee-sign\":57788,\"industry-windows\":62387,\"industry\":62069,\"infinity\":62772,\"info\":61737,\"inhaler\":62969,\"input-numeric\":57789,\"input-pipe\":57790,\"input-text\":57791,\"integral\":63079,\"interrobang\":58810,\"intersection\":63080,\"island-tropical\":63505,\"italic\":61491,\"j\":74,\"jack-o-lantern\":62222,\"jar-wheat\":58647,\"jar\":58646,\"jedi\":63081,\"jet-fighter-up\":58648,\"jet-fighter\":61691,\"joint\":62869,\"joystick\":63685,\"jug-bottle\":58875,\"jug-detergent\":58649,\"jug\":63686,\"k\":75,\"kaaba\":63083,\"kazoo\":63687,\"kerning\":63599,\"key-skeleton-left-right\":58292,\"key-skeleton\":63219,\"key\":61572,\"keyboard-brightness-low\":57793,\"keyboard-brightness\":57792,\"keyboard-down\":57794,\"keyboard-left\":57795,\"keyboard\":61724,\"keynote\":63084,\"khanda\":63085,\"kidneys\":62971,\"kip-sign\":57796,\"kit-medical\":62585,\"kitchen-set\":58650,\"kite\":63220,\"kiwi-bird\":62773,\"kiwi-fruit\":58124,\"knife-kitchen\":63221,\"knife\":62180,\"l\":76,\"lacrosse-stick-ball\":58294,\"lacrosse-stick\":58293,\"lambda\":63086,\"lamp-desk\":57364,\"lamp-floor\":57365,\"lamp-street\":57797,\"lamp\":62666,\"land-mine-on\":58651,\"landmark-dome\":63314,\"landmark-flag\":58652,\"landmark-magnifying-glass\":58914,\"landmark\":63087,\"language\":61867,\"laptop-arrow-down\":57798,\"laptop-binary\":58855,\"laptop-code\":62972,\"laptop-file\":58653,\"laptop-medical\":63506,\"laptop-mobile\":63610,\"laptop-slash\":57799,\"laptop\":61705,\"lari-sign\":57800,\"lasso-sparkles\":57801,\"lasso\":63688,\"layer-group\":62973,\"layer-minus\":62974,\"layer-plus\":62975,\"leaf-heart\":62667,\"leaf-maple\":63222,\"leaf-oak\":63223,\"leaf\":61548,\"leafy-green\":58397,\"left-from-bracket\":58988,\"left-from-line\":62280,\"left-long-to-line\":58398,\"left-long\":62218,\"left-right\":62263,\"left-to-bracket\":58989,\"left-to-line\":62283,\"left\":62293,\"lemon\":61588,\"less-than-equal\":62775,\"less-than\":60,\"life-ring\":61901,\"light-ceiling\":57366,\"light-emergency-on\":58400,\"light-emergency\":58399,\"light-switch-off\":57368,\"light-switch-on\":57369,\"light-switch\":57367,\"lightbulb-cfl-on\":58791,\"lightbulb-cfl\":58790,\"lightbulb-dollar\":63088,\"lightbulb-exclamation-on\":57802,\"lightbulb-exclamation\":63089,\"lightbulb-gear\":58877,\"lightbulb-message\":59015,\"lightbulb-on\":63090,\"lightbulb-slash\":63091,\"lightbulb\":61675,\"lighthouse\":58898,\"lights-holiday\":63410,\"line-columns\":63600,\"line-height\":63601,\"lines-leaning\":58654,\"link-horizontal-slash\":57804,\"link-horizontal\":57803,\"link-simple-slash\":57806,\"link-simple\":57805,\"link-slash\":61735,\"link\":61633,\"lips\":62976,\"lira-sign\":61845,\"list-check\":61614,\"list-dropdown\":57807,\"list-music\":63689,\"list-ol\":61643,\"list-radio\":57808,\"list-timeline\":57809,\"list-tree\":57810,\"list-ul\":61642,\"list\":61498,\"litecoin-sign\":57811,\"loader\":57812,\"lobster\":58401,\"location-arrow-up\":58938,\"location-arrow\":61732,\"location-check\":62982,\"location-crosshairs-slash\":62979,\"location-crosshairs\":62977,\"location-dot-slash\":62981,\"location-dot\":62405,\"location-exclamation\":62984,\"location-minus\":62985,\"location-pen\":62983,\"location-pin-lock\":58655,\"location-pin-slash\":62988,\"location-pin\":61505,\"location-plus\":62986,\"location-question\":62987,\"location-smile\":62989,\"location-xmark\":62990,\"lock-a\":58402,\"lock-hashtag\":58403,\"lock-keyhole-open\":62402,\"lock-keyhole\":62221,\"lock-open\":62401,\"lock\":61475,\"locust\":58656,\"lollipop\":58404,\"loveseat\":62668,\"luchador-mask\":62549,\"lungs-virus\":57447,\"lungs\":62980,\"m\":77,\"mace\":63224,\"magnet\":61558,\"magnifying-glass-arrow-right\":58657,\"magnifying-glass-arrows-rotate\":58974,\"magnifying-glass-chart\":58658,\"magnifying-glass-dollar\":63112,\"magnifying-glass-location\":63113,\"magnifying-glass-minus\":61456,\"magnifying-glass-music\":58975,\"magnifying-glass-play\":58976,\"magnifying-glass-plus\":61454,\"magnifying-glass-waveform\":58977,\"magnifying-glass\":61442,\"mailbox-flag-up\":58811,\"mailbox\":63507,\"manat-sign\":57813,\"mandolin\":63225,\"mango\":58127,\"manhole\":57814,\"map-location-dot\":62880,\"map-location\":62879,\"map-pin\":62070,\"map\":62073,\"marker\":62881,\"mars-and-venus-burst\":58659,\"mars-and-venus\":61988,\"mars-double\":61991,\"mars-stroke-right\":61995,\"mars-stroke-up\":61994,\"mars-stroke\":61993,\"mars\":61986,\"martini-glass-citrus\":62817,\"martini-glass-empty\":61440,\"martini-glass\":62843,\"mask-face\":57815,\"mask-snorkel\":58295,\"mask-ventilator\":58660,\"mask\":63226,\"masks-theater\":63024,\"mattress-pillow\":58661,\"maximize\":62238,\"meat\":63508,\"medal\":62882,\"megaphone\":63093,\"melon-slice\":58129,\"melon\":58128,\"memo-circle-check\":57817,\"memo-circle-info\":58522,\"memo-pad\":57818,\"memo\":57816,\"memory\":62776,\"menorah\":63094,\"mercury\":61987,\"merge\":58662,\"message-arrow-down\":57819,\"message-arrow-up-right\":57821,\"message-arrow-up\":57820,\"message-bot\":58296,\"message-captions\":57822,\"message-check\":62626,\"message-code\":57823,\"message-dollar\":63056,\"message-dots\":62627,\"message-exclamation\":62629,\"message-heart\":58825,\"message-image\":57824,\"message-lines\":62630,\"message-medical\":63476,\"message-middle-top\":57826,\"message-middle\":57825,\"message-minus\":62631,\"message-music\":63663,\"message-pen\":62628,\"message-plus\":62632,\"message-question\":57827,\"message-quote\":57828,\"message-slash\":62633,\"message-smile\":62634,\"message-sms\":57829,\"message-text\":57830,\"message-xmark\":62635,\"message\":62074,\"messages-dollar\":63058,\"messages-question\":57831,\"messages\":62646,\"meteor\":63315,\"meter-bolt\":57833,\"meter-droplet\":57834,\"meter-fire\":57835,\"meter\":57832,\"microchip-ai\":57836,\"microchip\":62171,\"microphone-lines-slash\":62777,\"microphone-lines\":62409,\"microphone-slash\":61745,\"microphone-stand\":63691,\"microphone\":61744,\"microscope\":62992,\"microwave\":57371,\"mill-sign\":57837,\"minimize\":63372,\"minus\":61544,\"mistletoe\":63412,\"mitten\":63413,\"mobile-button\":61707,\"mobile-notch\":57838,\"mobile-retro\":58663,\"mobile-screen-button\":62413,\"mobile-screen\":62415,\"mobile-signal-out\":57840,\"mobile-signal\":57839,\"mobile\":62414,\"money-bill-1-wave\":62779,\"money-bill-1\":62417,\"money-bill-simple-wave\":57842,\"money-bill-simple\":57841,\"money-bill-transfer\":58664,\"money-bill-trend-up\":58665,\"money-bill-wave\":62778,\"money-bill-wheat\":58666,\"money-bill\":61654,\"money-bills-simple\":57844,\"money-bills\":57843,\"money-check-dollar-pen\":63603,\"money-check-dollar\":62781,\"money-check-pen\":63602,\"money-check\":62780,\"money-from-bracket\":58130,\"money-simple-from-bracket\":58131,\"monitor-waveform\":62993,\"monkey\":63227,\"monument\":62886,\"moon-cloud\":63316,\"moon-over-sun\":63306,\"moon-stars\":63317,\"moon\":61830,\"moped\":58297,\"mortar-pestle\":62887,\"mosque\":63096,\"mosquito-net\":58668,\"mosquito\":58667,\"motorcycle\":61980,\"mound\":58669,\"mountain-city\":58670,\"mountain-sun\":58671,\"mountain\":63228,\"mountains\":63229,\"mouse-field\":58792,\"mp3-player\":63694,\"mug-hot\":63414,\"mug-marshmallows\":63415,\"mug-saucer\":61684,\"mug-tea-saucer\":57845,\"mug-tea\":63605,\"mug\":63604,\"mushroom\":58405,\"music-magnifying-glass\":58978,\"music-note-slash\":63696,\"music-note\":63695,\"music-slash\":63697,\"music\":61441,\"mustache\":58812,\"n\":78,\"naira-sign\":57846,\"narwhal\":63230,\"nesting-dolls\":58298,\"network-wired\":63231,\"neuter\":61996,\"newspaper\":61930,\"nfc-lock\":57848,\"nfc-magnifying-glass\":57849,\"nfc-pen\":57850,\"nfc-signal\":57851,\"nfc-slash\":57852,\"nfc-symbol\":58673,\"nfc-trash\":57853,\"nfc\":57847,\"nose\":58813,\"not-equal\":62782,\"notdef\":57854,\"note-medical\":57856,\"note-sticky\":62025,\"note\":57855,\"notebook\":57857,\"notes-medical\":62593,\"notes\":57858,\"o\":79,\"object-exclude\":58524,\"object-group\":62023,\"object-intersect\":58525,\"object-subtract\":58526,\"object-ungroup\":62024,\"object-union\":58527,\"objects-align-bottom\":58299,\"objects-align-center-horizontal\":58300,\"objects-align-center-vertical\":58301,\"objects-align-left\":58302,\"objects-align-right\":58303,\"objects-align-top\":58304,\"objects-column\":58305,\"octagon-check\":58406,\"octagon-divide\":57859,\"octagon-exclamation\":57860,\"octagon-minus\":62216,\"octagon-plus\":62209,\"octagon-xmark\":62192,\"octagon\":62214,\"octopus\":59016,\"oil-can-drip\":57861,\"oil-can\":62995,\"oil-temperature\":62996,\"oil-well\":58674,\"olive-branch\":58135,\"olive\":58134,\"om\":63097,\"omega\":63098,\"onion\":58407,\"option\":58136,\"ornament\":63416,\"otter\":63232,\"outdent\":61499,\"outlet\":57372,\"oven\":57373,\"overline\":63606,\"p\":80,\"page-caret-down\":58409,\"page-caret-up\":58410,\"page\":58408,\"pager\":63509,\"paint-roller\":62890,\"paintbrush-fine\":62889,\"paintbrush-pencil\":57862,\"paintbrush\":61948,\"palette\":62783,\"pallet-box\":57864,\"pallet-boxes\":62595,\"pallet\":62594,\"pan-food\":58411,\"pan-frying\":58412,\"pancakes\":58413,\"panel-ews\":58414,\"panel-fire\":58415,\"panorama\":57865,\"paper-plane-top\":57866,\"paper-plane\":61912,\"paperclip-vertical\":58306,\"paperclip\":61638,\"parachute-box\":62669,\"paragraph-left\":63608,\"paragraph\":61917,\"party-bell\":58138,\"party-horn\":58139,\"passport\":62891,\"paste\":61674,\"pause\":61516,\"paw-claws\":63234,\"paw-simple\":63233,\"paw\":61872,\"peace\":63100,\"peach\":57867,\"peanut\":58416,\"peanuts\":58417,\"peapod\":58140,\"pear\":57868,\"pedestal\":57869,\"pegasus\":63235,\"pen-circle\":57870,\"pen-clip-slash\":57871,\"pen-clip\":62213,\"pen-fancy-slash\":57872,\"pen-fancy\":62892,\"pen-field\":57873,\"pen-line\":57874,\"pen-nib-slash\":58529,\"pen-nib\":62893,\"pen-paintbrush\":63000,\"pen-ruler\":62894,\"pen-slash\":57875,\"pen-swirl\":57876,\"pen-to-square\":61508,\"pen\":62212,\"pencil-mechanical\":58826,\"pencil-slash\":57877,\"pencil\":62211,\"people-arrows\":57448,\"people-carry-box\":62670,\"people-dress-simple\":57880,\"people-dress\":57879,\"people-group\":58675,\"people-line\":58676,\"people-pants-simple\":57882,\"people-pants\":57881,\"people-pulling\":58677,\"people-robbery\":58678,\"people-roof\":58679,\"people-simple\":57883,\"people\":57878,\"pepper-hot\":63510,\"pepper\":58418,\"percent\":37,\"period\":46,\"person-arrow-down-to-line\":58680,\"person-arrow-up-from-line\":58681,\"person-biking-mountain\":63563,\"person-biking\":63562,\"person-booth\":63318,\"person-breastfeeding\":58682,\"person-burst\":58683,\"person-cane\":58684,\"person-carry-box\":62671,\"person-chalkboard\":58685,\"person-circle-check\":58686,\"person-circle-exclamation\":58687,\"person-circle-minus\":58688,\"person-circle-plus\":58689,\"person-circle-question\":58690,\"person-circle-xmark\":58691,\"person-digging\":63582,\"person-dolly-empty\":62673,\"person-dolly\":62672,\"person-dots-from-line\":62576,\"person-dress-burst\":58692,\"person-dress-fairy\":58887,\"person-dress-simple\":57884,\"person-dress\":61826,\"person-drowning\":58693,\"person-fairy\":58888,\"person-falling-burst\":58695,\"person-falling\":58694,\"person-from-portal\":57379,\"person-half-dress\":58696,\"person-harassing\":58697,\"person-hiking\":63212,\"person-military-pointing\":58698,\"person-military-rifle\":58699,\"person-military-to-person\":58700,\"person-pinball\":57885,\"person-praying\":63107,\"person-pregnant\":58142,\"person-rays\":58701,\"person-rifle\":58702,\"person-running-fast\":58879,\"person-running\":63244,\"person-seat-reclined\":57887,\"person-seat\":57886,\"person-shelter\":58703,\"person-sign\":63319,\"person-simple\":57888,\"person-skating\":63429,\"person-ski-jumping\":63431,\"person-ski-lift\":63432,\"person-skiing-nordic\":63434,\"person-skiing\":63433,\"person-sledding\":63435,\"person-snowboarding\":63438,\"person-snowmobiling\":63441,\"person-swimming\":62916,\"person-through-window\":58793,\"person-to-door\":58419,\"person-to-portal\":57378,\"person-walking-arrow-loop-left\":58705,\"person-walking-arrow-right\":58706,\"person-walking-dashed-line-arrow-right\":58707,\"person-walking-luggage\":58708,\"person-walking-with-cane\":62109,\"person-walking\":62804,\"person\":61827,\"peseta-sign\":57889,\"peso-sign\":57890,\"phone-arrow-down-left\":57891,\"phone-arrow-right\":58814,\"phone-arrow-up-right\":57892,\"phone-flip\":63609,\"phone-hangup\":57893,\"phone-intercom\":58420,\"phone-missed\":57894,\"phone-office\":63101,\"phone-plus\":62674,\"phone-rotary\":63699,\"phone-slash\":62429,\"phone-volume\":62112,\"phone-xmark\":57895,\"phone\":61589,\"photo-film-music\":57896,\"photo-film\":63612,\"pi\":63102,\"piano-keyboard\":63701,\"piano\":63700,\"pickaxe\":58815,\"pickleball\":58421,\"pie\":63237,\"pig\":63238,\"piggy-bank\":62675,\"pills\":62596,\"pinata\":58307,\"pinball\":57897,\"pineapple\":58143,\"pipe-circle-check\":58422,\"pipe-collar\":58423,\"pipe-section\":58424,\"pipe-smoking\":58308,\"pipe-valve\":58425,\"pipe\":124,\"pizza-slice\":63512,\"pizza\":63511,\"place-of-worship\":63103,\"plane-arrival\":62895,\"plane-circle-check\":58709,\"plane-circle-exclamation\":58710,\"plane-circle-xmark\":58711,\"plane-departure\":62896,\"plane-engines\":62430,\"plane-lock\":58712,\"plane-prop\":57899,\"plane-slash\":57449,\"plane-tail\":57900,\"plane-up-slash\":57902,\"plane-up\":57901,\"plane\":61554,\"planet-moon\":57375,\"planet-ringed\":57376,\"plant-wilt\":58794,\"plate-utensils\":58427,\"plate-wheat\":58714,\"play-pause\":57903,\"play\":61515,\"plug-circle-bolt\":58715,\"plug-circle-check\":58716,\"plug-circle-exclamation\":58717,\"plug-circle-minus\":58718,\"plug-circle-plus\":58719,\"plug-circle-xmark\":58720,\"plug\":61926,\"plus-large\":58782,\"plus-minus\":58428,\"plus\":43,\"podcast\":62158,\"podium-star\":63320,\"podium\":63104,\"police-box\":57377,\"poll-people\":63321,\"pompebled\":58429,\"poo-storm\":63322,\"poo\":62206,\"pool-8-ball\":58309,\"poop\":63001,\"popcorn\":63513,\"popsicle\":58430,\"pot-food\":58431,\"potato\":58432,\"power-off\":61457,\"prescription-bottle-medical\":62598,\"prescription-bottle-pill\":58816,\"prescription-bottle\":62597,\"prescription\":62897,\"presentation-screen\":63109,\"pretzel\":58433,\"print-magnifying-glass\":63514,\"print-slash\":63110,\"print\":61487,\"projector\":63702,\"pump-medical\":57450,\"pump-soap\":57451,\"pump\":58434,\"pumpkin\":63239,\"puzzle-piece-simple\":57905,\"puzzle-piece\":61742,\"puzzle\":58435,\"q\":81,\"qrcode\":61481,\"question\":63,\"quote-left\":61709,\"quote-right\":61710,\"quotes\":57908,\"r\":82,\"rabbit-running\":63241,\"rabbit\":63240,\"raccoon\":58899,\"racquet\":62554,\"radar\":57380,\"radiation\":63417,\"radio-tuner\":63704,\"radio\":63703,\"rainbow\":63323,\"raindrops\":63324,\"ram\":63242,\"ramp-loading\":62676,\"ranking-star\":58721,\"raygun\":57381,\"receipt\":62787,\"record-vinyl\":63705,\"rectangle-ad\":63041,\"rectangle-barcode\":62563,\"rectangle-code\":58146,\"rectangle-history-circle-plus\":58531,\"rectangle-history-circle-user\":58532,\"rectangle-history\":58530,\"rectangle-list\":61474,\"rectangle-pro\":57909,\"rectangle-terminal\":57910,\"rectangle-vertical-history\":57911,\"rectangle-vertical\":62203,\"rectangle-wide\":62204,\"rectangle-xmark\":62480,\"rectangle\":62202,\"rectangles-mixed\":58147,\"recycle\":61880,\"reel\":57912,\"reflect-both\":58991,\"reflect-horizontal\":58980,\"reflect-vertical\":58981,\"refrigerator\":57382,\"registered\":62045,\"repeat-1\":62309,\"repeat\":62307,\"reply-all\":61730,\"reply-clock\":57913,\"reply\":62437,\"republican\":63326,\"restroom-simple\":57914,\"restroom\":63421,\"retweet\":61561,\"rhombus\":57915,\"ribbon\":62678,\"right-from-bracket\":62197,\"right-from-line\":62279,\"right-left-large\":58849,\"right-left\":62306,\"right-long-to-line\":58436,\"right-long\":62219,\"right-to-bracket\":62198,\"right-to-line\":62284,\"right\":62294,\"ring-diamond\":58795,\"ring\":63243,\"rings-wedding\":63515,\"road-barrier\":58722,\"road-bridge\":58723,\"road-circle-check\":58724,\"road-circle-exclamation\":58725,\"road-circle-xmark\":58726,\"road-lock\":58727,\"road-spikes\":58728,\"road\":61464,\"robot-astromech\":58066,\"robot\":62788,\"rocket-launch\":57383,\"rocket\":61749,\"roller-coaster\":58148,\"rotate-exclamation\":57916,\"rotate-left\":62186,\"rotate-reverse\":58929,\"rotate-right\":62201,\"rotate\":62193,\"route-highway\":63002,\"route-interstate\":63003,\"route\":62679,\"router\":63706,\"rss\":61598,\"ruble-sign\":61784,\"rug\":58729,\"rugby-ball\":58310,\"ruler-combined\":62790,\"ruler-horizontal\":62791,\"ruler-triangle\":63004,\"ruler-vertical\":62792,\"ruler\":62789,\"rupee-sign\":61782,\"rupiah-sign\":57917,\"rv\":63422,\"s\":83,\"sack-dollar\":63517,\"sack-xmark\":58730,\"sack\":63516,\"sailboat\":58437,\"salad\":63518,\"salt-shaker\":58438,\"sandwich\":63519,\"satellite-dish\":63424,\"satellite\":63423,\"sausage\":63520,\"saxophone-fire\":63707,\"saxophone\":63708,\"scale-balanced\":62030,\"scale-unbalanced-flip\":62742,\"scale-unbalanced\":62741,\"scalpel-line-dashed\":63006,\"scalpel\":63005,\"scanner-gun\":62600,\"scanner-image\":63731,\"scanner-keyboard\":62601,\"scanner-touchscreen\":62602,\"scarecrow\":63245,\"scarf\":63425,\"school-circle-check\":58731,\"school-circle-exclamation\":58732,\"school-circle-xmark\":58733,\"school-flag\":58734,\"school-lock\":58735,\"school\":62793,\"scissors\":61636,\"screen-users\":63037,\"screencast\":57918,\"screwdriver-wrench\":63449,\"screwdriver\":62794,\"scribble\":57919,\"scroll-old\":63247,\"scroll-torah\":63136,\"scroll\":63246,\"scrubber\":62200,\"scythe\":63248,\"sd-card\":63426,\"sd-cards\":57920,\"seal-exclamation\":57922,\"seal-question\":57923,\"seal\":57921,\"seat-airline\":57924,\"section\":58439,\"seedling\":62680,\"semicolon\":59,\"send-back\":63614,\"send-backward\":63615,\"sensor-cloud\":57388,\"sensor-fire\":57386,\"sensor-on\":57387,\"sensor-triangle-exclamation\":57385,\"sensor\":57384,\"server\":62003,\"shapes\":63007,\"share-all\":62311,\"share-from-square\":61773,\"share-nodes\":61920,\"share\":61540,\"sheep\":63249,\"sheet-plastic\":58737,\"shekel-sign\":61963,\"shelves-empty\":57926,\"shelves\":62592,\"shield-cat\":58738,\"shield-check\":62199,\"shield-cross\":63250,\"shield-dog\":58739,\"shield-exclamation\":57927,\"shield-halved\":62445,\"shield-heart\":58740,\"shield-keyhole\":57928,\"shield-minus\":57929,\"shield-plus\":57930,\"shield-quartered\":58741,\"shield-slash\":57931,\"shield-virus\":57452,\"shield-xmark\":57932,\"shield\":61746,\"ship\":61978,\"shirt-long-sleeve\":58311,\"shirt-running\":58312,\"shirt-tank-top\":58313,\"shirt\":62803,\"shish-kebab\":63521,\"shoe-prints\":62795,\"shop-lock\":58533,\"shop-slash\":57456,\"shop\":62799,\"shovel-snow\":63427,\"shovel\":63251,\"shower-down\":57933,\"shower\":62156,\"shredder\":63114,\"shrimp\":58440,\"shuffle\":61556,\"shutters\":58441,\"shuttle-space\":61847,\"shuttlecock\":62555,\"sickle\":63522,\"sidebar-flip\":57935,\"sidebar\":57934,\"sigma\":63115,\"sign-hanging\":62681,\"sign-post\":58916,\"sign-posts-wrench\":58918,\"sign-posts\":58917,\"signal-bars-fair\":63122,\"signal-bars-good\":63123,\"signal-bars-slash\":63124,\"signal-bars-weak\":63121,\"signal-bars\":63120,\"signal-fair\":63117,\"signal-good\":63118,\"signal-slash\":63125,\"signal-stream-slash\":57936,\"signal-stream\":63709,\"signal-strong\":63119,\"signal-weak\":63116,\"signal\":61458,\"signature-lock\":58314,\"signature-slash\":58315,\"signature\":62903,\"signs-post\":62071,\"sim-card\":63428,\"sim-cards\":57937,\"sink\":57453,\"siren-on\":57390,\"siren\":57389,\"sitemap\":61672,\"skeleton-ribs\":58827,\"skeleton\":63008,\"ski-boot-ski\":58317,\"ski-boot\":58316,\"skull-cow\":63710,\"skull-crossbones\":63252,\"skull\":62796,\"slash-back\":92,\"slash-forward\":47,\"slash\":63253,\"sleigh\":63436,\"slider\":57938,\"sliders-simple\":57939,\"sliders-up\":62449,\"sliders\":61918,\"slot-machine\":58318,\"smog\":63327,\"smoke\":63328,\"smoking\":62605,\"snake\":63254,\"snooze\":63616,\"snow-blowing\":63329,\"snowflake-droplets\":58817,\"snowflake\":62172,\"snowflakes\":63439,\"snowman-head\":63387,\"snowman\":63440,\"snowplow\":63442,\"soap\":57454,\"socks\":63126,\"soft-serve\":58368,\"solar-panel\":62906,\"solar-system\":57391,\"sort-down\":61661,\"sort-up\":61662,\"sort\":61660,\"spa\":62907,\"space-station-moon-construction\":57396,\"space-station-moon\":57395,\"spade\":62196,\"spaghetti-monster-flying\":63099,\"sparkle\":58838,\"sparkles\":63632,\"speaker\":63711,\"speakers\":63712,\"spell-check\":63633,\"spider-black-widow\":63256,\"spider-web\":63257,\"spider\":63255,\"spinner-scale\":58922,\"spinner-third\":62452,\"spinner\":61712,\"split\":57940,\"splotch\":62908,\"spoon\":62181,\"sportsball\":58443,\"spray-can-sparkles\":62928,\"spray-can\":62909,\"sprinkler-ceiling\":58444,\"sprinkler\":57397,\"square-0\":57941,\"square-1\":57942,\"square-2\":57943,\"square-3\":57944,\"square-4\":57945,\"square-5\":57946,\"square-6\":57947,\"square-7\":57948,\"square-8\":57949,\"square-9\":57950,\"square-a-lock\":58445,\"square-a\":57951,\"square-ampersand\":57952,\"square-arrow-down-left\":57953,\"square-arrow-down-right\":57954,\"square-arrow-down\":62265,\"square-arrow-left\":62266,\"square-arrow-right\":62267,\"square-arrow-up-left\":57955,\"square-arrow-up-right\":61772,\"square-arrow-up\":62268,\"square-b\":57956,\"square-binary\":59035,\"square-bolt\":57957,\"square-c\":57958,\"square-caret-down\":61776,\"square-caret-left\":61841,\"square-caret-right\":61778,\"square-caret-up\":61777,\"square-check\":61770,\"square-chevron-down\":62249,\"square-chevron-left\":62250,\"square-chevron-right\":62251,\"square-chevron-up\":62252,\"square-code\":57959,\"square-d\":57960,\"square-dashed-circle-plus\":58818,\"square-dashed\":57961,\"square-divide\":57962,\"square-dollar\":62185,\"square-down-left\":57963,\"square-down-right\":57964,\"square-down\":62288,\"square-e\":57965,\"square-ellipsis-vertical\":57967,\"square-ellipsis\":57966,\"square-envelope\":61849,\"square-exclamation\":62241,\"square-f\":57968,\"square-fragile\":62619,\"square-full\":62556,\"square-g\":57969,\"square-h\":61693,\"square-heart\":62664,\"square-i\":57970,\"square-info\":62223,\"square-j\":57971,\"square-k\":57972,\"square-kanban\":58504,\"square-l\":57973,\"square-left\":62289,\"square-list\":58505,\"square-m\":57974,\"square-minus\":61766,\"square-n\":57975,\"square-nfi\":58742,\"square-o\":57976,\"square-p\":57977,\"square-parking-slash\":62999,\"square-parking\":62784,\"square-pen\":61771,\"square-person-confined\":58743,\"square-phone-flip\":63611,\"square-phone-hangup\":57978,\"square-phone\":61592,\"square-plus\":61694,\"square-poll-horizontal\":63106,\"square-poll-vertical\":63105,\"square-q\":57979,\"square-quarters\":58446,\"square-question\":62205,\"square-quote\":58153,\"square-r\":57980,\"square-right\":62290,\"square-ring\":58447,\"square-root-variable\":63128,\"square-root\":63127,\"square-rss\":61763,\"square-s\":57981,\"square-share-nodes\":61921,\"square-sliders-vertical\":62450,\"square-sliders\":62448,\"square-small\":57982,\"square-star\":57983,\"square-t\":57984,\"square-terminal\":58154,\"square-this-way-up\":62623,\"square-u\":57985,\"square-up-left\":57986,\"square-up-right\":62304,\"square-up\":62291,\"square-user\":57987,\"square-v\":57988,\"square-virus\":58744,\"square-w\":57989,\"square-x\":57990,\"square-xmark\":62163,\"square-y\":57991,\"square-z\":57992,\"square\":61640,\"squid\":58448,\"squirrel\":63258,\"staff-snake\":58745,\"staff\":63259,\"stairs\":57993,\"stamp\":62911,\"standard-definition\":57994,\"stapler\":58799,\"star-and-crescent\":63129,\"star-christmas\":63444,\"star-exclamation\":62195,\"star-half-stroke\":62912,\"star-half\":61577,\"star-of-david\":63130,\"star-of-life\":63009,\"star-sharp-half-stroke\":57997,\"star-sharp-half\":57996,\"star-sharp\":57995,\"star-shooting\":57398,\"star\":61445,\"starfighter-twin-ion-engine-advanced\":57998,\"starfighter-twin-ion-engine\":57400,\"starfighter\":57399,\"stars\":63330,\"starship-freighter\":57402,\"starship\":57401,\"steak\":63524,\"steering-wheel\":63010,\"sterling-sign\":61780,\"stethoscope\":61681,\"stocking\":63445,\"stomach\":63011,\"stop\":61517,\"stopwatch-20\":57455,\"stopwatch\":62194,\"store-lock\":58534,\"store-slash\":57457,\"store\":62798,\"strawberry\":58155,\"street-view\":61981,\"stretcher\":63525,\"strikethrough\":61644,\"stroopwafel\":62801,\"subscript\":61740,\"subtitles-slash\":58896,\"subtitles\":58895,\"suitcase-medical\":61690,\"suitcase-rolling\":62913,\"suitcase\":61682,\"sun-bright\":57999,\"sun-cloud\":63331,\"sun-dust\":63332,\"sun-haze\":63333,\"sun-plant-wilt\":58746,\"sun\":61829,\"sunglasses\":63634,\"sunrise\":63334,\"sunset\":63335,\"superscript\":61739,\"sushi-roll\":58507,\"sushi\":58506,\"swap-arrows\":58890,\"swap\":58889,\"swatchbook\":62915,\"sword-laser-alt\":57404,\"sword-laser\":57403,\"sword\":63260,\"swords-laser\":57405,\"swords\":63261,\"symbols\":63598,\"synagogue\":63131,\"syringe\":62606,\"t-rex\":58921,\"t\":84,\"table-cells-column-lock\":59000,\"table-cells-column-unlock\":59024,\"table-cells-large\":61449,\"table-cells-lock\":59001,\"table-cells-row-lock\":59002,\"table-cells-row-unlock\":59025,\"table-cells-unlock\":59026,\"table-cells\":61450,\"table-columns\":61659,\"table-layout\":58000,\"table-list\":61451,\"table-picnic\":58157,\"table-pivot\":58001,\"table-rows\":58002,\"table-tennis-paddle-ball\":62557,\"table-tree\":58003,\"table\":61646,\"tablet-button\":61706,\"tablet-rugged\":62607,\"tablet-screen-button\":62458,\"tablet-screen\":62460,\"tablet\":62459,\"tablets\":62608,\"tachograph-digital\":62822,\"taco\":63526,\"tag\":61483,\"tags\":61484,\"tally-1\":58004,\"tally-2\":58005,\"tally-3\":58006,\"tally-4\":58007,\"tally\":63132,\"tamale\":58449,\"tank-water\":58450,\"tape\":62683,\"tarp-droplet\":58748,\"tarp\":58747,\"taxi-bus\":58008,\"taxi\":61882,\"teddy-bear\":58319,\"teeth-open\":63023,\"teeth\":63022,\"telescope\":57406,\"temperature-arrow-down\":57407,\"temperature-arrow-up\":57408,\"temperature-empty\":62155,\"temperature-full\":62151,\"temperature-half\":62153,\"temperature-high\":63337,\"temperature-list\":58009,\"temperature-low\":63339,\"temperature-quarter\":62154,\"temperature-snow\":63336,\"temperature-sun\":63338,\"temperature-three-quarters\":62152,\"tenge-sign\":63447,\"tennis-ball\":62558,\"tent-arrow-down-to-line\":58750,\"tent-arrow-left-right\":58751,\"tent-arrow-turn-left\":58752,\"tent-arrows-down\":58753,\"tent-double-peak\":58919,\"tent\":58749,\"tents\":58754,\"terminal\":61728,\"text-height\":61492,\"text-size\":63636,\"text-slash\":63613,\"text-width\":61493,\"text\":63635,\"thermometer\":62609,\"theta\":63134,\"thought-bubble\":58158,\"thumbs-down\":61797,\"thumbs-up\":61796,\"thumbtack-slash\":59023,\"thumbtack\":61581,\"tick\":58159,\"ticket-airline\":58010,\"ticket-perforated\":58942,\"ticket-simple\":62463,\"ticket\":61765,\"tickets-airline\":58011,\"tickets-perforated\":58943,\"tickets-simple\":58969,\"tickets\":58968,\"tilde\":126,\"timeline-arrow\":58013,\"timeline\":58012,\"timer\":58014,\"tire-flat\":63026,\"tire-pressure-warning\":63027,\"tire-rugged\":63028,\"tire\":63025,\"toggle-large-off\":58800,\"toggle-large-on\":58801,\"toggle-off\":61956,\"toggle-on\":61957,\"toilet-paper-blank-under\":58015,\"toilet-paper-blank\":63263,\"toilet-paper-check\":58802,\"toilet-paper-slash\":57458,\"toilet-paper-under-slash\":58017,\"toilet-paper-under\":58016,\"toilet-paper-xmark\":58803,\"toilet-paper\":63262,\"toilet-portable\":58755,\"toilet\":63448,\"toilets-portable\":58756,\"tomato\":58160,\"tombstone-blank\":63265,\"tombstone\":63264,\"toolbox\":62802,\"tooth\":62921,\"toothbrush\":63029,\"torii-gate\":63137,\"tornado\":63343,\"tower-broadcast\":62745,\"tower-cell\":58757,\"tower-control\":58018,\"tower-observation\":58758,\"tractor\":63266,\"trademark\":62044,\"traffic-cone\":63030,\"traffic-light-go\":63032,\"traffic-light-slow\":63033,\"traffic-light-stop\":63034,\"traffic-light\":63031,\"trailer\":57409,\"train-subway-tunnel\":58019,\"train-subway\":62009,\"train-track\":58451,\"train-tram\":58804,\"train-tunnel\":58452,\"train\":62008,\"transformer-bolt\":58020,\"transgender\":61989,\"transporter-1\":57411,\"transporter-2\":57412,\"transporter-3\":57413,\"transporter-4\":58021,\"transporter-5\":58022,\"transporter-6\":58023,\"transporter-7\":58024,\"transporter-empty\":57414,\"transporter\":57410,\"trash-arrow-up\":63529,\"trash-can-arrow-up\":63530,\"trash-can-check\":58025,\"trash-can-clock\":58026,\"trash-can-list\":58027,\"trash-can-plus\":58028,\"trash-can-slash\":58029,\"trash-can-undo\":63638,\"trash-can-xmark\":58030,\"trash-can\":62189,\"trash-check\":58031,\"trash-clock\":58032,\"trash-list\":58033,\"trash-plus\":58034,\"trash-slash\":58035,\"trash-undo\":63637,\"trash-xmark\":58036,\"trash\":61944,\"treasure-chest\":63267,\"tree-christmas\":63451,\"tree-city\":58759,\"tree-deciduous\":62464,\"tree-decorated\":63452,\"tree-large\":63453,\"tree-palm\":63531,\"tree\":61883,\"trees\":63268,\"triangle-exclamation\":61553,\"triangle-instrument\":63714,\"triangle-person-digging\":63581,\"triangle\":62188,\"tricycle-adult\":58820,\"tricycle\":58819,\"trillium\":58760,\"trophy-star\":62187,\"trophy\":61585,\"trowel-bricks\":58762,\"trowel\":58761,\"truck-arrow-right\":58763,\"truck-bolt\":58320,\"truck-clock\":62604,\"truck-container-empty\":58037,\"truck-container\":62684,\"truck-droplet\":58764,\"truck-fast\":62603,\"truck-field-un\":58766,\"truck-field\":58765,\"truck-fire\":58970,\"truck-flatbed\":58038,\"truck-front\":58039,\"truck-ladder\":58967,\"truck-medical\":61689,\"truck-monster\":63035,\"truck-moving\":62687,\"truck-pickup\":63036,\"truck-plane\":58767,\"truck-plow\":63454,\"truck-ramp-box\":62686,\"truck-ramp-couch\":62685,\"truck-ramp\":62688,\"truck-tow\":58040,\"truck-utensils\":58920,\"truck\":61649,\"trumpet\":63715,\"tty-answer\":58041,\"tty\":61924,\"tugrik-sign\":58042,\"turkey\":63269,\"turkish-lira-sign\":58043,\"turn-down-left\":58161,\"turn-down-right\":58453,\"turn-down\":62398,\"turn-left-down\":58935,\"turn-left-up\":58936,\"turn-left\":58934,\"turn-right\":58937,\"turn-up\":62399,\"turntable\":63716,\"turtle\":63270,\"tv-music\":63718,\"tv-retro\":62465,\"tv\":62060,\"typewriter\":63719,\"u\":85,\"ufo-beam\":57416,\"ufo\":57415,\"umbrella-beach\":62922,\"umbrella-simple\":58044,\"umbrella\":61673,\"underline\":61645,\"unicorn\":63271,\"uniform-martial-arts\":58321,\"union\":63138,\"universal-access\":62106,\"unlock-keyhole\":61758,\"unlock\":61596,\"up-down-left-right\":61618,\"up-down\":62264,\"up-from-bracket\":58768,\"up-from-dotted-line\":58454,\"up-from-line\":62278,\"up-left\":58045,\"up-long\":62220,\"up-right-and-down-left-from-center\":62500,\"up-right-from-square\":62301,\"up-right\":58046,\"up-to-bracket\":58990,\"up-to-dotted-line\":58455,\"up-to-line\":62285,\"up\":62295,\"upload\":61587,\"usb-drive\":63721,\"user-alien\":57418,\"user-astronaut\":62715,\"user-beard-bolt\":59017,\"user-bounty-hunter\":58047,\"user-check\":62716,\"user-chef\":58322,\"user-clock\":62717,\"user-cowboy\":63722,\"user-crown\":63140,\"user-doctor-hair-long\":58457,\"user-doctor-hair\":58456,\"user-doctor-message\":63534,\"user-doctor\":61680,\"user-gear\":62718,\"user-graduate\":62721,\"user-group-crown\":63141,\"user-group-simple\":58883,\"user-group\":62720,\"user-hair-buns\":58323,\"user-hair-long\":58459,\"user-hair-mullet\":58460,\"user-hair\":58458,\"user-headset\":63533,\"user-helmet-safety\":63532,\"user-hoodie\":59018,\"user-injured\":63272,\"user-large-slash\":62714,\"user-large\":62470,\"user-lock\":62722,\"user-magnifying-glass\":58821,\"user-minus\":62723,\"user-music\":63723,\"user-ninja\":62724,\"user-nurse-hair-long\":58462,\"user-nurse-hair\":58461,\"user-nurse\":63535,\"user-pen\":62719,\"user-pilot-tie\":58049,\"user-pilot\":58048,\"user-plus\":62004,\"user-police-tie\":58164,\"user-police\":58163,\"user-robot-xmarks\":58535,\"user-robot\":57419,\"user-secret\":61979,\"user-shakespeare\":58050,\"user-shield\":62725,\"user-slash\":62726,\"user-tag\":62727,\"user-tie-hair-long\":58464,\"user-tie-hair\":58463,\"user-tie\":62728,\"user-unlock\":57432,\"user-visor\":57420,\"user-vneck-hair-long\":58467,\"user-vneck-hair\":58466,\"user-vneck\":58465,\"user-xmark\":62005,\"user\":61447,\"users-between-lines\":58769,\"users-gear\":62729,\"users-line\":58770,\"users-medical\":63536,\"users-rays\":58771,\"users-rectangle\":58772,\"users-slash\":57459,\"users-viewfinder\":58773,\"users\":61632,\"utensils-slash\":58468,\"utensils\":62183,\"utility-pole-double\":58052,\"utility-pole\":58051,\"v\":86,\"vacuum-robot\":57422,\"vacuum\":57421,\"value-absolute\":63142,\"van-shuttle\":62902,\"vault\":58053,\"vector-circle\":58054,\"vector-polygon\":58055,\"vector-square\":62923,\"vent-damper\":58469,\"venus-double\":61990,\"venus-mars\":61992,\"venus\":61985,\"vest-patches\":57478,\"vest\":57477,\"vial-circle-check\":58774,\"vial-virus\":58775,\"vial\":62610,\"vials\":62611,\"video-arrow-down-left\":58056,\"video-arrow-up-right\":58057,\"video-plus\":62689,\"video-slash\":62690,\"video\":61501,\"vihara\":63143,\"violin\":63725,\"virus-covid-slash\":58537,\"virus-covid\":58536,\"virus-slash\":57461,\"virus\":57460,\"viruses\":57462,\"voicemail\":63639,\"volcano\":63344,\"volleyball\":62559,\"volume-high\":61480,\"volume-low\":61479,\"volume-off\":61478,\"volume-slash\":62178,\"volume-xmark\":63145,\"volume\":63144,\"vr-cardboard\":63273,\"w\":87,\"waffle\":58470,\"wagon-covered\":63726,\"walker\":63537,\"walkie-talkie\":63727,\"wallet\":62805,\"wand-magic-sparkles\":58058,\"wand-magic\":61648,\"wand-sparkles\":63275,\"wand\":63274,\"warehouse-full\":62613,\"warehouse\":62612,\"washing-machine\":63640,\"watch-apple\":58059,\"watch-calculator\":63728,\"watch-fitness\":63038,\"watch-smart\":58060,\"watch\":62177,\"water-arrow-down\":63348,\"water-arrow-up\":63349,\"water-ladder\":62917,\"water\":63347,\"watermelon-slice\":58167,\"wave-pulse\":62968,\"wave-sine\":63641,\"wave-square\":63550,\"wave-triangle\":63642,\"wave\":58971,\"waveform-lines\":63730,\"waveform\":63729,\"waves-sine\":58973,\"web-awesome\":59010,\"webhook\":58837,\"weight-hanging\":62925,\"weight-scale\":62614,\"whale\":63276,\"wheat-awn-circle-exclamation\":58776,\"wheat-awn-slash\":58168,\"wheat-awn\":58061,\"wheat-slash\":58169,\"wheat\":63277,\"wheelchair-move\":58062,\"wheelchair\":61843,\"whiskey-glass-ice\":63393,\"whiskey-glass\":63392,\"whistle\":62560,\"wifi-exclamation\":58063,\"wifi-fair\":63147,\"wifi-slash\":63148,\"wifi-weak\":63146,\"wifi\":61931,\"wind-turbine\":63643,\"wind-warning\":63350,\"wind\":63278,\"window-flip\":62479,\"window-frame-open\":57424,\"window-frame\":57423,\"window-maximize\":62160,\"window-minimize\":62161,\"window-restore\":62162,\"window\":62478,\"windsock\":63351,\"wine-bottle\":63279,\"wine-glass-crack\":62651,\"wine-glass-empty\":62926,\"wine-glass\":62691,\"won-sign\":61785,\"worm\":58777,\"wreath-laurel\":58834,\"wreath\":63458,\"wrench-simple\":58065,\"wrench\":61613,\"x-ray\":62615,\"x\":88,\"xmark-large\":58779,\"xmark-to-slot\":63345,\"xmark\":61453,\"xmarks-lines\":58778,\"y\":89,\"yen-sign\":61783,\"yin-yang\":63149,\"z\":90}"
  },
  {
    "path": "packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_meta.json",
    "content": "{\n  \"brand\": [\n    \"42-group\",\n    \"500px\",\n    \"accessible-icon\",\n    \"accusoft\",\n    \"adn\",\n    \"adversal\",\n    \"affiliatetheme\",\n    \"airbnb\",\n    \"algolia\",\n    \"alipay\",\n    \"amazon-pay\",\n    \"amazon\",\n    \"amilia\",\n    \"android\",\n    \"angellist\",\n    \"angrycreative\",\n    \"angular\",\n    \"app-store-ios\",\n    \"app-store\",\n    \"apper\",\n    \"apple-pay\",\n    \"apple\",\n    \"artstation\",\n    \"asymmetrik\",\n    \"atlassian\",\n    \"audible\",\n    \"autoprefixer\",\n    \"avianex\",\n    \"aviato\",\n    \"aws\",\n    \"bandcamp\",\n    \"battle-net\",\n    \"behance\",\n    \"bilibili\",\n    \"bimobject\",\n    \"bitbucket\",\n    \"bitcoin\",\n    \"bity\",\n    \"black-tie\",\n    \"blackberry\",\n    \"blogger-b\",\n    \"blogger\",\n    \"bluesky\",\n    \"bluetooth-b\",\n    \"bluetooth\",\n    \"bootstrap\",\n    \"bots\",\n    \"brave-reverse\",\n    \"brave\",\n    \"btc\",\n    \"buffer\",\n    \"buromobelexperte\",\n    \"buy-n-large\",\n    \"buysellads\",\n    \"canadian-maple-leaf\",\n    \"cc-amazon-pay\",\n    \"cc-amex\",\n    \"cc-apple-pay\",\n    \"cc-diners-club\",\n    \"cc-discover\",\n    \"cc-jcb\",\n    \"cc-mastercard\",\n    \"cc-paypal\",\n    \"cc-stripe\",\n    \"cc-visa\",\n    \"centercode\",\n    \"centos\",\n    \"chrome\",\n    \"chromecast\",\n    \"cloudflare\",\n    \"cloudscale\",\n    \"cloudsmith\",\n    \"cloudversify\",\n    \"cmplid\",\n    \"codepen\",\n    \"codiepie\",\n    \"confluence\",\n    \"connectdevelop\",\n    \"contao\",\n    \"cotton-bureau\",\n    \"cpanel\",\n    \"creative-commons-by\",\n    \"creative-commons-nc-eu\",\n    \"creative-commons-nc-jp\",\n    \"creative-commons-nc\",\n    \"creative-commons-nd\",\n    \"creative-commons-pd-alt\",\n    \"creative-commons-pd\",\n    \"creative-commons-remix\",\n    \"creative-commons-sa\",\n    \"creative-commons-sampling-plus\",\n    \"creative-commons-sampling\",\n    \"creative-commons-share\",\n    \"creative-commons-zero\",\n    \"creative-commons\",\n    \"critical-role\",\n    \"css\",\n    \"css3-alt\",\n    \"css3\",\n    \"cuttlefish\",\n    \"d-and-d-beyond\",\n    \"d-and-d\",\n    \"dailymotion\",\n    \"dart-lang\",\n    \"dashcube\",\n    \"debian\",\n    \"deezer\",\n    \"delicious\",\n    \"deploydog\",\n    \"deskpro\",\n    \"dev\",\n    \"deviantart\",\n    \"dhl\",\n    \"diaspora\",\n    \"digg\",\n    \"digital-ocean\",\n    \"discord\",\n    \"discourse\",\n    \"dochub\",\n    \"docker\",\n    \"draft2digital\",\n    \"dribbble\",\n    \"dropbox\",\n    \"drupal\",\n    \"dyalog\",\n    \"earlybirds\",\n    \"ebay\",\n    \"edge-legacy\",\n    \"edge\",\n    \"elementor\",\n    \"ello\",\n    \"ember\",\n    \"empire\",\n    \"envira\",\n    \"erlang\",\n    \"ethereum\",\n    \"etsy\",\n    \"evernote\",\n    \"expeditedssl\",\n    \"facebook-f\",\n    \"facebook-messenger\",\n    \"facebook\",\n    \"fantasy-flight-games\",\n    \"fedex\",\n    \"fedora\",\n    \"figma\",\n    \"files-pinwheel\",\n    \"firefox-browser\",\n    \"firefox\",\n    \"first-order-alt\",\n    \"first-order\",\n    \"firstdraft\",\n    \"flickr\",\n    \"flipboard\",\n    \"flutter\",\n    \"fly\",\n    \"font-awesome\",\n    \"fonticons-fi\",\n    \"fonticons\",\n    \"fort-awesome-alt\",\n    \"fort-awesome\",\n    \"forumbee\",\n    \"foursquare\",\n    \"free-code-camp\",\n    \"freebsd\",\n    \"fulcrum\",\n    \"galactic-republic\",\n    \"galactic-senate\",\n    \"get-pocket\",\n    \"gg-circle\",\n    \"gg\",\n    \"git-alt\",\n    \"git\",\n    \"github-alt\",\n    \"github\",\n    \"gitkraken\",\n    \"gitlab\",\n    \"gitter\",\n    \"glide-g\",\n    \"glide\",\n    \"gofore\",\n    \"golang\",\n    \"goodreads-g\",\n    \"goodreads\",\n    \"google-drive\",\n    \"google-pay\",\n    \"google-play\",\n    \"google-plus-g\",\n    \"google-plus\",\n    \"google-scholar\",\n    \"google-wallet\",\n    \"google\",\n    \"gratipay\",\n    \"grav\",\n    \"gripfire\",\n    \"grunt\",\n    \"guilded\",\n    \"gulp\",\n    \"hacker-news\",\n    \"hackerrank\",\n    \"hashnode\",\n    \"hips\",\n    \"hire-a-helper\",\n    \"hive\",\n    \"hooli\",\n    \"hornbill\",\n    \"hotjar\",\n    \"houzz\",\n    \"html5\",\n    \"hubspot\",\n    \"ideal\",\n    \"imdb\",\n    \"instagram\",\n    \"instalod\",\n    \"intercom\",\n    \"internet-explorer\",\n    \"invision\",\n    \"ioxhost\",\n    \"itch-io\",\n    \"itunes-note\",\n    \"itunes\",\n    \"java\",\n    \"jedi-order\",\n    \"jenkins\",\n    \"jira\",\n    \"joget\",\n    \"joomla\",\n    \"js\",\n    \"jsfiddle\",\n    \"jxl\",\n    \"kaggle\",\n    \"keybase\",\n    \"keycdn\",\n    \"kickstarter-k\",\n    \"kickstarter\",\n    \"korvue\",\n    \"laravel\",\n    \"lastfm\",\n    \"leanpub\",\n    \"less\",\n    \"letterboxd\",\n    \"line\",\n    \"linkedin-in\",\n    \"linkedin\",\n    \"linode\",\n    \"linux\",\n    \"lyft\",\n    \"magento\",\n    \"mailchimp\",\n    \"mandalorian\",\n    \"markdown\",\n    \"mastodon\",\n    \"maxcdn\",\n    \"mdb\",\n    \"medapps\",\n    \"medium\",\n    \"medrt\",\n    \"meetup\",\n    \"megaport\",\n    \"mendeley\",\n    \"meta\",\n    \"microblog\",\n    \"microsoft\",\n    \"mintbit\",\n    \"mix\",\n    \"mixcloud\",\n    \"mixer\",\n    \"mizuni\",\n    \"modx\",\n    \"monero\",\n    \"napster\",\n    \"neos\",\n    \"nfc-directional\",\n    \"nfc-symbol\",\n    \"nimblr\",\n    \"node-js\",\n    \"node\",\n    \"npm\",\n    \"ns8\",\n    \"nutritionix\",\n    \"octopus-deploy\",\n    \"odnoklassniki\",\n    \"odysee\",\n    \"old-republic\",\n    \"opencart\",\n    \"openid\",\n    \"opensuse\",\n    \"opera\",\n    \"optin-monster\",\n    \"orcid\",\n    \"osi\",\n    \"padlet\",\n    \"page4\",\n    \"pagelines\",\n    \"palfed\",\n    \"patreon\",\n    \"paypal\",\n    \"perbyte\",\n    \"periscope\",\n    \"phabricator\",\n    \"phoenix-framework\",\n    \"phoenix-squadron\",\n    \"php\",\n    \"pied-piper-alt\",\n    \"pied-piper-hat\",\n    \"pied-piper-pp\",\n    \"pied-piper\",\n    \"pinterest-p\",\n    \"pinterest\",\n    \"pix\",\n    \"pixiv\",\n    \"playstation\",\n    \"product-hunt\",\n    \"pushed\",\n    \"python\",\n    \"qq\",\n    \"quinscape\",\n    \"quora\",\n    \"r-project\",\n    \"raspberry-pi\",\n    \"ravelry\",\n    \"react\",\n    \"reacteurope\",\n    \"readme\",\n    \"rebel\",\n    \"red-river\",\n    \"reddit-alien\",\n    \"reddit\",\n    \"redhat\",\n    \"renren\",\n    \"replyd\",\n    \"researchgate\",\n    \"resolving\",\n    \"rev\",\n    \"rocketchat\",\n    \"rockrms\",\n    \"rust\",\n    \"safari\",\n    \"salesforce\",\n    \"sass\",\n    \"schlix\",\n    \"screenpal\",\n    \"scribd\",\n    \"searchengin\",\n    \"sellcast\",\n    \"sellsy\",\n    \"servicestack\",\n    \"shirtsinbulk\",\n    \"shoelace\",\n    \"shopify\",\n    \"shopware\",\n    \"signal-messenger\",\n    \"simplybuilt\",\n    \"sistrix\",\n    \"sith\",\n    \"sitrox\",\n    \"sketch\",\n    \"skyatlas\",\n    \"skype\",\n    \"slack\",\n    \"slideshare\",\n    \"snapchat\",\n    \"soundcloud\",\n    \"sourcetree\",\n    \"space-awesome\",\n    \"speakap\",\n    \"speaker-deck\",\n    \"spotify\",\n    \"square-behance\",\n    \"square-bluesky\",\n    \"square-dribbble\",\n    \"square-facebook\",\n    \"square-font-awesome-stroke\",\n    \"square-font-awesome\",\n    \"square-git\",\n    \"square-github\",\n    \"square-gitlab\",\n    \"square-google-plus\",\n    \"square-hacker-news\",\n    \"square-instagram\",\n    \"square-js\",\n    \"square-lastfm\",\n    \"square-letterboxd\",\n    \"square-odnoklassniki\",\n    \"square-pied-piper\",\n    \"square-pinterest\",\n    \"square-reddit\",\n    \"square-snapchat\",\n    \"square-steam\",\n    \"square-threads\",\n    \"square-tumblr\",\n    \"square-twitter\",\n    \"square-upwork\",\n    \"square-viadeo\",\n    \"square-vimeo\",\n    \"square-web-awesome-stroke\",\n    \"square-web-awesome\",\n    \"square-whatsapp\",\n    \"square-x-twitter\",\n    \"square-xing\",\n    \"square-youtube\",\n    \"squarespace\",\n    \"stack-exchange\",\n    \"stack-overflow\",\n    \"stackpath\",\n    \"staylinked\",\n    \"steam-symbol\",\n    \"steam\",\n    \"sticker-mule\",\n    \"strava\",\n    \"stripe-s\",\n    \"stripe\",\n    \"stubber\",\n    \"studiovinari\",\n    \"stumbleupon-circle\",\n    \"stumbleupon\",\n    \"superpowers\",\n    \"supple\",\n    \"suse\",\n    \"swift\",\n    \"symfony\",\n    \"teamspeak\",\n    \"telegram\",\n    \"tencent-weibo\",\n    \"the-red-yeti\",\n    \"themeco\",\n    \"themeisle\",\n    \"think-peaks\",\n    \"threads\",\n    \"tiktok\",\n    \"trade-federation\",\n    \"trello\",\n    \"tumblr\",\n    \"twitch\",\n    \"twitter\",\n    \"typo3\",\n    \"uber\",\n    \"ubuntu\",\n    \"uikit\",\n    \"umbraco\",\n    \"uncharted\",\n    \"uniregistry\",\n    \"unity\",\n    \"unsplash\",\n    \"untappd\",\n    \"ups\",\n    \"upwork\",\n    \"usb\",\n    \"usps\",\n    \"ussunnah\",\n    \"vaadin\",\n    \"viacoin\",\n    \"viadeo\",\n    \"viber\",\n    \"vimeo-v\",\n    \"vimeo\",\n    \"vine\",\n    \"vk\",\n    \"vnv\",\n    \"vuejs\",\n    \"watchman-monitoring\",\n    \"waze\",\n    \"web-awesome\",\n    \"webflow\",\n    \"weebly\",\n    \"weibo\",\n    \"weixin\",\n    \"whatsapp\",\n    \"whmcs\",\n    \"wikipedia-w\",\n    \"windows\",\n    \"wirsindhandwerk\",\n    \"wix\",\n    \"wizards-of-the-coast\",\n    \"wodu\",\n    \"wolf-pack-battalion\",\n    \"wordpress-simple\",\n    \"wordpress\",\n    \"wpbeginner\",\n    \"wpexplorer\",\n    \"wpforms\",\n    \"wpressr\",\n    \"x-twitter\",\n    \"xbox\",\n    \"xing\",\n    \"y-combinator\",\n    \"yahoo\",\n    \"yammer\",\n    \"yandex-international\",\n    \"yandex\",\n    \"yarn\",\n    \"yelp\",\n    \"yoast\",\n    \"youtube\",\n    \"zhihu\"\n  ],\n  \"duotone\": [\n    \"0\",\n    \"00\",\n    \"1\",\n    \"2\",\n    \"3\",\n    \"360-degrees\",\n    \"4\",\n    \"5\",\n    \"6\",\n    \"7\",\n    \"8\",\n    \"9\",\n    \"a\",\n    \"abacus\",\n    \"accent-grave\",\n    \"acorn\",\n    \"address-book\",\n    \"address-card\",\n    \"air-conditioner\",\n    \"airplay\",\n    \"alarm-clock\",\n    \"alarm-exclamation\",\n    \"alarm-plus\",\n    \"alarm-snooze\",\n    \"album-circle-plus\",\n    \"album-circle-user\",\n    \"album-collection-circle-plus\",\n    \"album-collection-circle-user\",\n    \"album-collection\",\n    \"album\",\n    \"alicorn\",\n    \"alien-8bit\",\n    \"alien\",\n    \"align-center\",\n    \"align-justify\",\n    \"align-left\",\n    \"align-right\",\n    \"align-slash\",\n    \"alt\",\n    \"amp-guitar\",\n    \"ampersand\",\n    \"anchor-circle-check\",\n    \"anchor-circle-exclamation\",\n    \"anchor-circle-xmark\",\n    \"anchor-lock\",\n    \"anchor\",\n    \"angel\",\n    \"angle-90\",\n    \"angle-down\",\n    \"angle-left\",\n    \"angle-right\",\n    \"angle-up\",\n    \"angle\",\n    \"angles-down\",\n    \"angles-left\",\n    \"angles-right\",\n    \"angles-up-down\",\n    \"angles-up\",\n    \"ankh\",\n    \"ant\",\n    \"apartment\",\n    \"aperture\",\n    \"apostrophe\",\n    \"apple-core\",\n    \"apple-whole\",\n    \"archway\",\n    \"arrow-down-1-9\",\n    \"arrow-down-9-1\",\n    \"arrow-down-a-z\",\n    \"arrow-down-arrow-up\",\n    \"arrow-down-big-small\",\n    \"arrow-down-from-arc\",\n    \"arrow-down-from-bracket\",\n    \"arrow-down-from-dotted-line\",\n    \"arrow-down-from-line\",\n    \"arrow-down-left-and-arrow-up-right-to-center\",\n    \"arrow-down-left\",\n    \"arrow-down-long\",\n    \"arrow-down-right\",\n    \"arrow-down-short-wide\",\n    \"arrow-down-small-big\",\n    \"arrow-down-square-triangle\",\n    \"arrow-down-to-arc\",\n    \"arrow-down-to-bracket\",\n    \"arrow-down-to-dotted-line\",\n    \"arrow-down-to-line\",\n    \"arrow-down-to-square\",\n    \"arrow-down-triangle-square\",\n    \"arrow-down-up-across-line\",\n    \"arrow-down-up-lock\",\n    \"arrow-down-wide-short\",\n    \"arrow-down-z-a\",\n    \"arrow-down\",\n    \"arrow-left-from-arc\",\n    \"arrow-left-from-bracket\",\n    \"arrow-left-from-line\",\n    \"arrow-left-long-to-line\",\n    \"arrow-left-long\",\n    \"arrow-left-to-arc\",\n    \"arrow-left-to-bracket\",\n    \"arrow-left-to-line\",\n    \"arrow-left\",\n    \"arrow-pointer\",\n    \"arrow-progress\",\n    \"arrow-right-arrow-left\",\n    \"arrow-right-from-arc\",\n    \"arrow-right-from-bracket\",\n    \"arrow-right-from-line\",\n    \"arrow-right-long-to-line\",\n    \"arrow-right-long\",\n    \"arrow-right-to-arc\",\n    \"arrow-right-to-bracket\",\n    \"arrow-right-to-city\",\n    \"arrow-right-to-line\",\n    \"arrow-right\",\n    \"arrow-rotate-left\",\n    \"arrow-rotate-right\",\n    \"arrow-trend-down\",\n    \"arrow-trend-up\",\n    \"arrow-turn-down-left\",\n    \"arrow-turn-down-right\",\n    \"arrow-turn-down\",\n    \"arrow-turn-left-down\",\n    \"arrow-turn-left-up\",\n    \"arrow-turn-left\",\n    \"arrow-turn-right\",\n    \"arrow-turn-up\",\n    \"arrow-up-1-9\",\n    \"arrow-up-9-1\",\n    \"arrow-up-a-z\",\n    \"arrow-up-arrow-down\",\n    \"arrow-up-big-small\",\n    \"arrow-up-from-arc\",\n    \"arrow-up-from-bracket\",\n    \"arrow-up-from-dotted-line\",\n    \"arrow-up-from-ground-water\",\n    \"arrow-up-from-line\",\n    \"arrow-up-from-square\",\n    \"arrow-up-from-water-pump\",\n    \"arrow-up-left-from-circle\",\n    \"arrow-up-left\",\n    \"arrow-up-long\",\n    \"arrow-up-right-and-arrow-down-left-from-center\",\n    \"arrow-up-right-dots\",\n    \"arrow-up-right-from-square\",\n    \"arrow-up-right\",\n    \"arrow-up-short-wide\",\n    \"arrow-up-small-big\",\n    \"arrow-up-square-triangle\",\n    \"arrow-up-to-arc\",\n    \"arrow-up-to-bracket\",\n    \"arrow-up-to-dotted-line\",\n    \"arrow-up-to-line\",\n    \"arrow-up-triangle-square\",\n    \"arrow-up-wide-short\",\n    \"arrow-up-z-a\",\n    \"arrow-up\",\n    \"arrows-cross\",\n    \"arrows-down-to-line\",\n    \"arrows-down-to-people\",\n    \"arrows-from-dotted-line\",\n    \"arrows-from-line\",\n    \"arrows-left-right-to-line\",\n    \"arrows-left-right\",\n    \"arrows-maximize\",\n    \"arrows-minimize\",\n    \"arrows-repeat-1\",\n    \"arrows-repeat\",\n    \"arrows-retweet\",\n    \"arrows-rotate-reverse\",\n    \"arrows-rotate\",\n    \"arrows-spin\",\n    \"arrows-split-up-and-left\",\n    \"arrows-to-circle\",\n    \"arrows-to-dot\",\n    \"arrows-to-dotted-line\",\n    \"arrows-to-eye\",\n    \"arrows-to-line\",\n    \"arrows-turn-right\",\n    \"arrows-turn-to-dots\",\n    \"arrows-up-down-left-right\",\n    \"arrows-up-down\",\n    \"arrows-up-to-line\",\n    \"asterisk\",\n    \"at\",\n    \"atom-simple\",\n    \"atom\",\n    \"audio-description-slash\",\n    \"audio-description\",\n    \"austral-sign\",\n    \"avocado\",\n    \"award-simple\",\n    \"award\",\n    \"axe-battle\",\n    \"axe\",\n    \"b\",\n    \"baby-carriage\",\n    \"baby\",\n    \"backpack\",\n    \"backward-fast\",\n    \"backward-step\",\n    \"backward\",\n    \"bacon\",\n    \"bacteria\",\n    \"bacterium\",\n    \"badge-check\",\n    \"badge-dollar\",\n    \"badge-percent\",\n    \"badge-sheriff\",\n    \"badge\",\n    \"badger-honey\",\n    \"badminton\",\n    \"bag-seedling\",\n    \"bag-shopping-minus\",\n    \"bag-shopping-plus\",\n    \"bag-shopping\",\n    \"bagel\",\n    \"bags-shopping\",\n    \"baguette\",\n    \"bahai\",\n    \"baht-sign\",\n    \"ball-pile\",\n    \"balloon\",\n    \"balloons\",\n    \"ballot-check\",\n    \"ballot\",\n    \"ban-bug\",\n    \"ban-parking\",\n    \"ban-smoking\",\n    \"ban\",\n    \"banana\",\n    \"bandage\",\n    \"bangladeshi-taka-sign\",\n    \"banjo\",\n    \"barcode-read\",\n    \"barcode-scan\",\n    \"barcode\",\n    \"bars-filter\",\n    \"bars-progress\",\n    \"bars-sort\",\n    \"bars-staggered\",\n    \"bars\",\n    \"baseball-bat-ball\",\n    \"baseball\",\n    \"basket-shopping-minus\",\n    \"basket-shopping-plus\",\n    \"basket-shopping-simple\",\n    \"basket-shopping\",\n    \"basketball-hoop\",\n    \"basketball\",\n    \"bat\",\n    \"bath\",\n    \"battery-bolt\",\n    \"battery-empty\",\n    \"battery-exclamation\",\n    \"battery-full\",\n    \"battery-half\",\n    \"battery-low\",\n    \"battery-quarter\",\n    \"battery-slash\",\n    \"battery-three-quarters\",\n    \"bed-bunk\",\n    \"bed-empty\",\n    \"bed-front\",\n    \"bed-pulse\",\n    \"bed\",\n    \"bee\",\n    \"beer-mug-empty\",\n    \"beer-mug\",\n    \"bell-concierge\",\n    \"bell-exclamation\",\n    \"bell-on\",\n    \"bell-plus\",\n    \"bell-ring\",\n    \"bell-school-slash\",\n    \"bell-school\",\n    \"bell-slash\",\n    \"bell\",\n    \"bells\",\n    \"bench-tree\",\n    \"bezier-curve\",\n    \"bicycle\",\n    \"billboard\",\n    \"bin-bottles-recycle\",\n    \"bin-bottles\",\n    \"bin-recycle\",\n    \"binary-circle-check\",\n    \"binary-lock\",\n    \"binary-slash\",\n    \"binary\",\n    \"binoculars\",\n    \"biohazard\",\n    \"bird\",\n    \"bitcoin-sign\",\n    \"blanket-fire\",\n    \"blanket\",\n    \"blender-phone\",\n    \"blender\",\n    \"blinds-open\",\n    \"blinds-raised\",\n    \"blinds\",\n    \"block-brick-fire\",\n    \"block-brick\",\n    \"block-question\",\n    \"block-quote\",\n    \"block\",\n    \"blog\",\n    \"blueberries\",\n    \"bluetooth\",\n    \"bold\",\n    \"bolt-auto\",\n    \"bolt-lightning\",\n    \"bolt-slash\",\n    \"bolt\",\n    \"bomb\",\n    \"bone-break\",\n    \"bone\",\n    \"bong\",\n    \"book-arrow-right\",\n    \"book-arrow-up\",\n    \"book-atlas\",\n    \"book-bible\",\n    \"book-blank\",\n    \"book-bookmark\",\n    \"book-circle-arrow-right\",\n    \"book-circle-arrow-up\",\n    \"book-copy\",\n    \"book-font\",\n    \"book-heart\",\n    \"book-journal-whills\",\n    \"book-medical\",\n    \"book-open-cover\",\n    \"book-open-reader\",\n    \"book-open\",\n    \"book-quran\",\n    \"book-section\",\n    \"book-skull\",\n    \"book-sparkles\",\n    \"book-tanakh\",\n    \"book-user\",\n    \"book\",\n    \"bookmark-slash\",\n    \"bookmark\",\n    \"books-medical\",\n    \"books\",\n    \"boombox\",\n    \"boot-heeled\",\n    \"boot\",\n    \"booth-curtain\",\n    \"border-all\",\n    \"border-bottom-right\",\n    \"border-bottom\",\n    \"border-center-h\",\n    \"border-center-v\",\n    \"border-inner\",\n    \"border-left\",\n    \"border-none\",\n    \"border-outer\",\n    \"border-right\",\n    \"border-top-left\",\n    \"border-top\",\n    \"bore-hole\",\n    \"bottle-baby\",\n    \"bottle-droplet\",\n    \"bottle-water\",\n    \"bow-arrow\",\n    \"bowl-chopsticks-noodles\",\n    \"bowl-chopsticks\",\n    \"bowl-food\",\n    \"bowl-hot\",\n    \"bowl-rice\",\n    \"bowl-scoop\",\n    \"bowl-scoops\",\n    \"bowl-soft-serve\",\n    \"bowl-spoon\",\n    \"bowling-ball-pin\",\n    \"bowling-ball\",\n    \"bowling-pins\",\n    \"box-archive\",\n    \"box-ballot\",\n    \"box-check\",\n    \"box-circle-check\",\n    \"box-dollar\",\n    \"box-heart\",\n    \"box-open-full\",\n    \"box-open\",\n    \"box-taped\",\n    \"box-tissue\",\n    \"box\",\n    \"boxes-packing\",\n    \"boxes-stacked\",\n    \"boxing-glove\",\n    \"bracket-curly-right\",\n    \"bracket-curly\",\n    \"bracket-round-right\",\n    \"bracket-round\",\n    \"bracket-square-right\",\n    \"bracket-square\",\n    \"brackets-curly\",\n    \"brackets-round\",\n    \"brackets-square\",\n    \"braille\",\n    \"brain-arrow-curved-right\",\n    \"brain-circuit\",\n    \"brain\",\n    \"brake-warning\",\n    \"brazilian-real-sign\",\n    \"bread-loaf\",\n    \"bread-slice-butter\",\n    \"bread-slice\",\n    \"bridge-circle-check\",\n    \"bridge-circle-exclamation\",\n    \"bridge-circle-xmark\",\n    \"bridge-lock\",\n    \"bridge-suspension\",\n    \"bridge-water\",\n    \"bridge\",\n    \"briefcase-arrow-right\",\n    \"briefcase-blank\",\n    \"briefcase-medical\",\n    \"briefcase\",\n    \"brightness-low\",\n    \"brightness\",\n    \"bring-forward\",\n    \"bring-front\",\n    \"broccoli\",\n    \"broom-ball\",\n    \"broom-wide\",\n    \"broom\",\n    \"browser\",\n    \"browsers\",\n    \"brush\",\n    \"bucket\",\n    \"bug-slash\",\n    \"bug\",\n    \"bugs\",\n    \"building-circle-arrow-right\",\n    \"building-circle-check\",\n    \"building-circle-exclamation\",\n    \"building-circle-xmark\",\n    \"building-columns\",\n    \"building-flag\",\n    \"building-lock\",\n    \"building-magnifying-glass\",\n    \"building-memo\",\n    \"building-ngo\",\n    \"building-shield\",\n    \"building-un\",\n    \"building-user\",\n    \"building-wheat\",\n    \"building\",\n    \"buildings\",\n    \"bulldozer\",\n    \"bullhorn\",\n    \"bullseye-arrow\",\n    \"bullseye-pointer\",\n    \"bullseye\",\n    \"buoy-mooring\",\n    \"buoy\",\n    \"burger-cheese\",\n    \"burger-fries\",\n    \"burger-glass\",\n    \"burger-lettuce\",\n    \"burger-soda\",\n    \"burger\",\n    \"burrito\",\n    \"burst\",\n    \"bus-school\",\n    \"bus-simple\",\n    \"bus\",\n    \"business-time\",\n    \"butter\",\n    \"c\",\n    \"cabin\",\n    \"cabinet-filing\",\n    \"cable-car\",\n    \"cactus\",\n    \"caduceus\",\n    \"cake-candles\",\n    \"cake-slice\",\n    \"calculator-simple\",\n    \"calculator\",\n    \"calendar-arrow-down\",\n    \"calendar-arrow-up\",\n    \"calendar-check\",\n    \"calendar-circle-exclamation\",\n    \"calendar-circle-minus\",\n    \"calendar-circle-plus\",\n    \"calendar-circle-user\",\n    \"calendar-clock\",\n    \"calendar-day\",\n    \"calendar-days\",\n    \"calendar-exclamation\",\n    \"calendar-heart\",\n    \"calendar-image\",\n    \"calendar-lines-pen\",\n    \"calendar-lines\",\n    \"calendar-minus\",\n    \"calendar-pen\",\n    \"calendar-plus\",\n    \"calendar-range\",\n    \"calendar-star\",\n    \"calendar-users\",\n    \"calendar-week\",\n    \"calendar-xmark\",\n    \"calendar\",\n    \"calendars\",\n    \"camcorder\",\n    \"camera-cctv\",\n    \"camera-movie\",\n    \"camera-polaroid\",\n    \"camera-retro\",\n    \"camera-rotate\",\n    \"camera-security\",\n    \"camera-slash\",\n    \"camera-viewfinder\",\n    \"camera-web-slash\",\n    \"camera-web\",\n    \"camera\",\n    \"campfire\",\n    \"campground\",\n    \"can-food\",\n    \"candle-holder\",\n    \"candy-bar\",\n    \"candy-cane\",\n    \"candy-corn\",\n    \"candy\",\n    \"cannabis\",\n    \"cannon\",\n    \"capsules\",\n    \"car-battery\",\n    \"car-bolt\",\n    \"car-building\",\n    \"car-bump\",\n    \"car-burst\",\n    \"car-bus\",\n    \"car-circle-bolt\",\n    \"car-garage\",\n    \"car-mirrors\",\n    \"car-on\",\n    \"car-rear\",\n    \"car-side-bolt\",\n    \"car-side\",\n    \"car-tilt\",\n    \"car-tunnel\",\n    \"car-wash\",\n    \"car-wrench\",\n    \"car\",\n    \"caravan-simple\",\n    \"caravan\",\n    \"card-club\",\n    \"card-diamond\",\n    \"card-heart\",\n    \"card-spade\",\n    \"cards-blank\",\n    \"cards\",\n    \"caret-down\",\n    \"caret-left\",\n    \"caret-right\",\n    \"caret-up\",\n    \"carpool\",\n    \"carrot\",\n    \"cars\",\n    \"cart-arrow-down\",\n    \"cart-arrow-up\",\n    \"cart-circle-arrow-down\",\n    \"cart-circle-arrow-up\",\n    \"cart-circle-check\",\n    \"cart-circle-exclamation\",\n    \"cart-circle-plus\",\n    \"cart-circle-xmark\",\n    \"cart-flatbed-boxes\",\n    \"cart-flatbed-empty\",\n    \"cart-flatbed-suitcase\",\n    \"cart-flatbed\",\n    \"cart-minus\",\n    \"cart-plus\",\n    \"cart-shopping-fast\",\n    \"cart-shopping\",\n    \"cart-xmark\",\n    \"cash-register\",\n    \"cassette-betamax\",\n    \"cassette-tape\",\n    \"cassette-vhs\",\n    \"castle\",\n    \"cat-space\",\n    \"cat\",\n    \"cauldron\",\n    \"cedi-sign\",\n    \"cent-sign\",\n    \"certificate\",\n    \"chair-office\",\n    \"chair\",\n    \"chalkboard-user\",\n    \"chalkboard\",\n    \"champagne-glass\",\n    \"champagne-glasses\",\n    \"charging-station\",\n    \"chart-area\",\n    \"chart-bar\",\n    \"chart-bullet\",\n    \"chart-candlestick\",\n    \"chart-column\",\n    \"chart-diagram\",\n    \"chart-fft\",\n    \"chart-gantt\",\n    \"chart-kanban\",\n    \"chart-line-down\",\n    \"chart-line-up-down\",\n    \"chart-line-up\",\n    \"chart-line\",\n    \"chart-mixed-up-circle-currency\",\n    \"chart-mixed-up-circle-dollar\",\n    \"chart-mixed\",\n    \"chart-network\",\n    \"chart-pie-simple-circle-currency\",\n    \"chart-pie-simple-circle-dollar\",\n    \"chart-pie-simple\",\n    \"chart-pie\",\n    \"chart-pyramid\",\n    \"chart-radar\",\n    \"chart-scatter-3d\",\n    \"chart-scatter-bubble\",\n    \"chart-scatter\",\n    \"chart-simple-horizontal\",\n    \"chart-simple\",\n    \"chart-sine\",\n    \"chart-tree-map\",\n    \"chart-user\",\n    \"chart-waterfall\",\n    \"check-double\",\n    \"check-to-slot\",\n    \"check\",\n    \"cheese-swiss\",\n    \"cheese\",\n    \"cherries\",\n    \"chess-bishop-piece\",\n    \"chess-bishop\",\n    \"chess-board\",\n    \"chess-clock-flip\",\n    \"chess-clock\",\n    \"chess-king-piece\",\n    \"chess-king\",\n    \"chess-knight-piece\",\n    \"chess-knight\",\n    \"chess-pawn-piece\",\n    \"chess-pawn\",\n    \"chess-queen-piece\",\n    \"chess-queen\",\n    \"chess-rook-piece\",\n    \"chess-rook\",\n    \"chess\",\n    \"chestnut\",\n    \"chevron-down\",\n    \"chevron-left\",\n    \"chevron-right\",\n    \"chevron-up\",\n    \"chevrons-down\",\n    \"chevrons-left\",\n    \"chevrons-right\",\n    \"chevrons-up\",\n    \"chf-sign\",\n    \"child-combatant\",\n    \"child-dress\",\n    \"child-reaching\",\n    \"child\",\n    \"children\",\n    \"chimney\",\n    \"chopsticks\",\n    \"church\",\n    \"circle-0\",\n    \"circle-1\",\n    \"circle-2\",\n    \"circle-3\",\n    \"circle-4\",\n    \"circle-5\",\n    \"circle-6\",\n    \"circle-7\",\n    \"circle-8\",\n    \"circle-9\",\n    \"circle-a\",\n    \"circle-ampersand\",\n    \"circle-arrow-down-left\",\n    \"circle-arrow-down-right\",\n    \"circle-arrow-down\",\n    \"circle-arrow-left\",\n    \"circle-arrow-right\",\n    \"circle-arrow-up-left\",\n    \"circle-arrow-up-right\",\n    \"circle-arrow-up\",\n    \"circle-b\",\n    \"circle-bolt\",\n    \"circle-book-open\",\n    \"circle-bookmark\",\n    \"circle-c\",\n    \"circle-calendar\",\n    \"circle-camera\",\n    \"circle-caret-down\",\n    \"circle-caret-left\",\n    \"circle-caret-right\",\n    \"circle-caret-up\",\n    \"circle-check\",\n    \"circle-chevron-down\",\n    \"circle-chevron-left\",\n    \"circle-chevron-right\",\n    \"circle-chevron-up\",\n    \"circle-d\",\n    \"circle-dashed\",\n    \"circle-divide\",\n    \"circle-dollar-to-slot\",\n    \"circle-dollar\",\n    \"circle-dot\",\n    \"circle-down-left\",\n    \"circle-down-right\",\n    \"circle-down\",\n    \"circle-e\",\n    \"circle-ellipsis-vertical\",\n    \"circle-ellipsis\",\n    \"circle-envelope\",\n    \"circle-euro\",\n    \"circle-exclamation-check\",\n    \"circle-exclamation\",\n    \"circle-f\",\n    \"circle-g\",\n    \"circle-gf\",\n    \"circle-h\",\n    \"circle-half-stroke\",\n    \"circle-half\",\n    \"circle-heart\",\n    \"circle-i\",\n    \"circle-info\",\n    \"circle-j\",\n    \"circle-k\",\n    \"circle-l\",\n    \"circle-left\",\n    \"circle-location-arrow\",\n    \"circle-m\",\n    \"circle-microphone-lines\",\n    \"circle-microphone\",\n    \"circle-minus\",\n    \"circle-n\",\n    \"circle-nodes\",\n    \"circle-notch\",\n    \"circle-o\",\n    \"circle-p\",\n    \"circle-parking\",\n    \"circle-pause\",\n    \"circle-phone-flip\",\n    \"circle-phone-hangup\",\n    \"circle-phone\",\n    \"circle-play\",\n    \"circle-plus\",\n    \"circle-q\",\n    \"circle-quarter-stroke\",\n    \"circle-quarter\",\n    \"circle-quarters\",\n    \"circle-question\",\n    \"circle-r\",\n    \"circle-radiation\",\n    \"circle-right\",\n    \"circle-s\",\n    \"circle-small\",\n    \"circle-sort-down\",\n    \"circle-sort-up\",\n    \"circle-sort\",\n    \"circle-star\",\n    \"circle-sterling\",\n    \"circle-stop\",\n    \"circle-t\",\n    \"circle-three-quarters-stroke\",\n    \"circle-three-quarters\",\n    \"circle-trash\",\n    \"circle-u\",\n    \"circle-up-left\",\n    \"circle-up-right\",\n    \"circle-up\",\n    \"circle-user\",\n    \"circle-v\",\n    \"circle-video\",\n    \"circle-w\",\n    \"circle-waveform-lines\",\n    \"circle-wifi-circle-wifi\",\n    \"circle-wifi\",\n    \"circle-x\",\n    \"circle-xmark\",\n    \"circle-y\",\n    \"circle-yen\",\n    \"circle-z\",\n    \"circle\",\n    \"circles-overlap-3\",\n    \"circles-overlap\",\n    \"citrus-slice\",\n    \"citrus\",\n    \"city\",\n    \"clapperboard-play\",\n    \"clapperboard\",\n    \"clarinet\",\n    \"claw-marks\",\n    \"clipboard-check\",\n    \"clipboard-list-check\",\n    \"clipboard-list\",\n    \"clipboard-medical\",\n    \"clipboard-prescription\",\n    \"clipboard-question\",\n    \"clipboard-user\",\n    \"clipboard\",\n    \"clock-desk\",\n    \"clock-eight-thirty\",\n    \"clock-eight\",\n    \"clock-eleven-thirty\",\n    \"clock-eleven\",\n    \"clock-five-thirty\",\n    \"clock-five\",\n    \"clock-four-thirty\",\n    \"clock-nine-thirty\",\n    \"clock-nine\",\n    \"clock-one-thirty\",\n    \"clock-one\",\n    \"clock-rotate-left\",\n    \"clock-seven-thirty\",\n    \"clock-seven\",\n    \"clock-six-thirty\",\n    \"clock-six\",\n    \"clock-ten-thirty\",\n    \"clock-ten\",\n    \"clock-three-thirty\",\n    \"clock-three\",\n    \"clock-twelve-thirty\",\n    \"clock-twelve\",\n    \"clock-two-thirty\",\n    \"clock-two\",\n    \"clock\",\n    \"clone\",\n    \"closed-captioning-slash\",\n    \"closed-captioning\",\n    \"clothes-hanger\",\n    \"cloud-arrow-down\",\n    \"cloud-arrow-up\",\n    \"cloud-binary\",\n    \"cloud-bolt-moon\",\n    \"cloud-bolt-sun\",\n    \"cloud-bolt\",\n    \"cloud-check\",\n    \"cloud-drizzle\",\n    \"cloud-exclamation\",\n    \"cloud-fog\",\n    \"cloud-hail-mixed\",\n    \"cloud-hail\",\n    \"cloud-meatball\",\n    \"cloud-minus\",\n    \"cloud-moon-rain\",\n    \"cloud-moon\",\n    \"cloud-music\",\n    \"cloud-plus\",\n    \"cloud-question\",\n    \"cloud-rain\",\n    \"cloud-rainbow\",\n    \"cloud-showers-heavy\",\n    \"cloud-showers-water\",\n    \"cloud-showers\",\n    \"cloud-slash\",\n    \"cloud-sleet\",\n    \"cloud-snow\",\n    \"cloud-sun-rain\",\n    \"cloud-sun\",\n    \"cloud-word\",\n    \"cloud-xmark\",\n    \"cloud\",\n    \"clouds-moon\",\n    \"clouds-sun\",\n    \"clouds\",\n    \"clover\",\n    \"club\",\n    \"coconut\",\n    \"code-branch\",\n    \"code-commit\",\n    \"code-compare\",\n    \"code-fork\",\n    \"code-merge\",\n    \"code-pull-request-closed\",\n    \"code-pull-request-draft\",\n    \"code-pull-request\",\n    \"code-simple\",\n    \"code\",\n    \"coffee-bean\",\n    \"coffee-beans\",\n    \"coffee-pot\",\n    \"coffin-cross\",\n    \"coffin\",\n    \"coin-blank\",\n    \"coin-front\",\n    \"coin-vertical\",\n    \"coin\",\n    \"coins\",\n    \"colon-sign\",\n    \"colon\",\n    \"columns-3\",\n    \"comet\",\n    \"comma\",\n    \"command\",\n    \"comment-arrow-down\",\n    \"comment-arrow-up-right\",\n    \"comment-arrow-up\",\n    \"comment-captions\",\n    \"comment-check\",\n    \"comment-code\",\n    \"comment-dollar\",\n    \"comment-dots\",\n    \"comment-exclamation\",\n    \"comment-heart\",\n    \"comment-image\",\n    \"comment-lines\",\n    \"comment-medical\",\n    \"comment-middle-top\",\n    \"comment-middle\",\n    \"comment-minus\",\n    \"comment-music\",\n    \"comment-nodes\",\n    \"comment-pen\",\n    \"comment-plus\",\n    \"comment-question\",\n    \"comment-quote\",\n    \"comment-slash\",\n    \"comment-smile\",\n    \"comment-sms\",\n    \"comment-text\",\n    \"comment-xmark\",\n    \"comment\",\n    \"comments-dollar\",\n    \"comments-question-check\",\n    \"comments-question\",\n    \"comments\",\n    \"compact-disc\",\n    \"compass-drafting\",\n    \"compass-slash\",\n    \"compass\",\n    \"compress-wide\",\n    \"compress\",\n    \"computer-classic\",\n    \"computer-mouse-scrollwheel\",\n    \"computer-mouse\",\n    \"computer-speaker\",\n    \"computer\",\n    \"container-storage\",\n    \"conveyor-belt-arm\",\n    \"conveyor-belt-boxes\",\n    \"conveyor-belt-empty\",\n    \"conveyor-belt\",\n    \"cookie-bite\",\n    \"cookie\",\n    \"copy\",\n    \"copyright\",\n    \"corn\",\n    \"corner\",\n    \"couch\",\n    \"court-sport\",\n    \"cow\",\n    \"cowbell-circle-plus\",\n    \"cowbell\",\n    \"crab\",\n    \"crate-apple\",\n    \"crate-empty\",\n    \"credit-card-blank\",\n    \"credit-card-front\",\n    \"credit-card\",\n    \"cricket-bat-ball\",\n    \"croissant\",\n    \"crop-simple\",\n    \"crop\",\n    \"cross\",\n    \"crosshairs-simple\",\n    \"crosshairs\",\n    \"crow\",\n    \"crown\",\n    \"crutch\",\n    \"crutches\",\n    \"cruzeiro-sign\",\n    \"crystal-ball\",\n    \"cube\",\n    \"cubes-stacked\",\n    \"cubes\",\n    \"cucumber\",\n    \"cup-straw-swoosh\",\n    \"cup-straw\",\n    \"cup-togo\",\n    \"cupcake\",\n    \"curling-stone\",\n    \"custard\",\n    \"d\",\n    \"dagger\",\n    \"dash\",\n    \"database\",\n    \"deer-rudolph\",\n    \"deer\",\n    \"delete-left\",\n    \"delete-right\",\n    \"democrat\",\n    \"desktop-arrow-down\",\n    \"desktop\",\n    \"dharmachakra\",\n    \"diagram-cells\",\n    \"diagram-lean-canvas\",\n    \"diagram-nested\",\n    \"diagram-next\",\n    \"diagram-predecessor\",\n    \"diagram-previous\",\n    \"diagram-project\",\n    \"diagram-sankey\",\n    \"diagram-subtask\",\n    \"diagram-successor\",\n    \"diagram-venn\",\n    \"dial-high\",\n    \"dial-low\",\n    \"dial-max\",\n    \"dial-med-low\",\n    \"dial-med\",\n    \"dial-min\",\n    \"dial-off\",\n    \"dial\",\n    \"diamond-exclamation\",\n    \"diamond-half-stroke\",\n    \"diamond-half\",\n    \"diamond-turn-right\",\n    \"diamond\",\n    \"diamonds-4\",\n    \"dice-d10\",\n    \"dice-d12\",\n    \"dice-d20\",\n    \"dice-d4\",\n    \"dice-d6\",\n    \"dice-d8\",\n    \"dice-five\",\n    \"dice-four\",\n    \"dice-one\",\n    \"dice-six\",\n    \"dice-three\",\n    \"dice-two\",\n    \"dice\",\n    \"dinosaur\",\n    \"diploma\",\n    \"disc-drive\",\n    \"disease\",\n    \"display-arrow-down\",\n    \"display-chart-up-circle-currency\",\n    \"display-chart-up-circle-dollar\",\n    \"display-chart-up\",\n    \"display-code\",\n    \"display-medical\",\n    \"display-slash\",\n    \"display\",\n    \"distribute-spacing-horizontal\",\n    \"distribute-spacing-vertical\",\n    \"ditto\",\n    \"divide\",\n    \"dna\",\n    \"do-not-enter\",\n    \"dog-leashed\",\n    \"dog\",\n    \"dollar-sign\",\n    \"dolly-empty\",\n    \"dolly\",\n    \"dolphin\",\n    \"dong-sign\",\n    \"donut\",\n    \"door-closed\",\n    \"door-open\",\n    \"dove\",\n    \"down-from-bracket\",\n    \"down-from-dotted-line\",\n    \"down-from-line\",\n    \"down-left-and-up-right-to-center\",\n    \"down-left\",\n    \"down-long\",\n    \"down-right\",\n    \"down-to-bracket\",\n    \"down-to-dotted-line\",\n    \"down-to-line\",\n    \"down\",\n    \"download\",\n    \"dragon\",\n    \"draw-circle\",\n    \"draw-polygon\",\n    \"draw-square\",\n    \"dreidel\",\n    \"drone-front\",\n    \"drone\",\n    \"droplet-degree\",\n    \"droplet-percent\",\n    \"droplet-slash\",\n    \"droplet\",\n    \"drum-steelpan\",\n    \"drum\",\n    \"drumstick-bite\",\n    \"drumstick\",\n    \"dryer-heat\",\n    \"dryer\",\n    \"duck\",\n    \"dumbbell\",\n    \"dumpster-fire\",\n    \"dumpster\",\n    \"dungeon\",\n    \"e\",\n    \"ear-deaf\",\n    \"ear-listen\",\n    \"ear-muffs\",\n    \"ear\",\n    \"earth-africa\",\n    \"earth-americas\",\n    \"earth-asia\",\n    \"earth-europe\",\n    \"earth-oceania\",\n    \"eclipse\",\n    \"egg-fried\",\n    \"egg\",\n    \"eggplant\",\n    \"eject\",\n    \"elephant\",\n    \"elevator\",\n    \"ellipsis-stroke-vertical\",\n    \"ellipsis-stroke\",\n    \"ellipsis-vertical\",\n    \"ellipsis\",\n    \"empty-set\",\n    \"engine-warning\",\n    \"engine\",\n    \"envelope-circle-check\",\n    \"envelope-dot\",\n    \"envelope-open-dollar\",\n    \"envelope-open-text\",\n    \"envelope-open\",\n    \"envelope\",\n    \"envelopes-bulk\",\n    \"envelopes\",\n    \"equals\",\n    \"eraser\",\n    \"escalator\",\n    \"ethernet\",\n    \"euro-sign\",\n    \"excavator\",\n    \"exclamation\",\n    \"expand-wide\",\n    \"expand\",\n    \"explosion\",\n    \"eye-dropper-full\",\n    \"eye-dropper-half\",\n    \"eye-dropper\",\n    \"eye-evil\",\n    \"eye-low-vision\",\n    \"eye-slash\",\n    \"eye\",\n    \"eyes\",\n    \"f\",\n    \"face-angry-horns\",\n    \"face-angry\",\n    \"face-anguished\",\n    \"face-anxious-sweat\",\n    \"face-astonished\",\n    \"face-awesome\",\n    \"face-beam-hand-over-mouth\",\n    \"face-clouds\",\n    \"face-confounded\",\n    \"face-confused\",\n    \"face-cowboy-hat\",\n    \"face-diagonal-mouth\",\n    \"face-disappointed\",\n    \"face-disguise\",\n    \"face-dizzy\",\n    \"face-dotted\",\n    \"face-downcast-sweat\",\n    \"face-drooling\",\n    \"face-exhaling\",\n    \"face-explode\",\n    \"face-expressionless\",\n    \"face-eyes-xmarks\",\n    \"face-fearful\",\n    \"face-flushed\",\n    \"face-frown-open\",\n    \"face-frown-slight\",\n    \"face-frown\",\n    \"face-glasses\",\n    \"face-grimace\",\n    \"face-grin-beam-sweat\",\n    \"face-grin-beam\",\n    \"face-grin-hearts\",\n    \"face-grin-squint-tears\",\n    \"face-grin-squint\",\n    \"face-grin-stars\",\n    \"face-grin-tears\",\n    \"face-grin-tongue-squint\",\n    \"face-grin-tongue-wink\",\n    \"face-grin-tongue\",\n    \"face-grin-wide\",\n    \"face-grin-wink\",\n    \"face-grin\",\n    \"face-hand-over-mouth\",\n    \"face-hand-peeking\",\n    \"face-hand-yawn\",\n    \"face-head-bandage\",\n    \"face-holding-back-tears\",\n    \"face-hushed\",\n    \"face-icicles\",\n    \"face-kiss-beam\",\n    \"face-kiss-closed-eyes\",\n    \"face-kiss-wink-heart\",\n    \"face-kiss\",\n    \"face-laugh-beam\",\n    \"face-laugh-squint\",\n    \"face-laugh-wink\",\n    \"face-laugh\",\n    \"face-lying\",\n    \"face-mask\",\n    \"face-meh-blank\",\n    \"face-meh\",\n    \"face-melting\",\n    \"face-monocle\",\n    \"face-nauseated\",\n    \"face-nose-steam\",\n    \"face-party\",\n    \"face-pensive\",\n    \"face-persevering\",\n    \"face-pleading\",\n    \"face-pouting\",\n    \"face-raised-eyebrow\",\n    \"face-relieved\",\n    \"face-rolling-eyes\",\n    \"face-sad-cry\",\n    \"face-sad-sweat\",\n    \"face-sad-tear\",\n    \"face-saluting\",\n    \"face-scream\",\n    \"face-shush\",\n    \"face-sleeping\",\n    \"face-sleepy\",\n    \"face-smile-beam\",\n    \"face-smile-halo\",\n    \"face-smile-hearts\",\n    \"face-smile-horns\",\n    \"face-smile-plus\",\n    \"face-smile-relaxed\",\n    \"face-smile-tear\",\n    \"face-smile-tongue\",\n    \"face-smile-upside-down\",\n    \"face-smile-wink\",\n    \"face-smile\",\n    \"face-smiling-hands\",\n    \"face-smirking\",\n    \"face-spiral-eyes\",\n    \"face-sunglasses\",\n    \"face-surprise\",\n    \"face-swear\",\n    \"face-thermometer\",\n    \"face-thinking\",\n    \"face-tired\",\n    \"face-tissue\",\n    \"face-tongue-money\",\n    \"face-tongue-sweat\",\n    \"face-unamused\",\n    \"face-viewfinder\",\n    \"face-vomit\",\n    \"face-weary\",\n    \"face-woozy\",\n    \"face-worried\",\n    \"face-zany\",\n    \"face-zipper\",\n    \"falafel\",\n    \"family-dress\",\n    \"family-pants\",\n    \"family\",\n    \"fan-table\",\n    \"fan\",\n    \"farm\",\n    \"faucet-drip\",\n    \"faucet\",\n    \"fax\",\n    \"feather-pointed\",\n    \"feather\",\n    \"fence\",\n    \"ferris-wheel\",\n    \"ferry\",\n    \"field-hockey-stick-ball\",\n    \"file-arrow-down\",\n    \"file-arrow-up\",\n    \"file-audio\",\n    \"file-binary\",\n    \"file-cad\",\n    \"file-certificate\",\n    \"file-chart-column\",\n    \"file-chart-pie\",\n    \"file-check\",\n    \"file-circle-check\",\n    \"file-circle-exclamation\",\n    \"file-circle-info\",\n    \"file-circle-minus\",\n    \"file-circle-plus\",\n    \"file-circle-question\",\n    \"file-circle-xmark\",\n    \"file-code\",\n    \"file-contract\",\n    \"file-csv\",\n    \"file-dashed-line\",\n    \"file-doc\",\n    \"file-eps\",\n    \"file-excel\",\n    \"file-exclamation\",\n    \"file-export\",\n    \"file-fragment\",\n    \"file-gif\",\n    \"file-half-dashed\",\n    \"file-heart\",\n    \"file-image\",\n    \"file-import\",\n    \"file-invoice-dollar\",\n    \"file-invoice\",\n    \"file-jpg\",\n    \"file-lines\",\n    \"file-lock\",\n    \"file-magnifying-glass\",\n    \"file-medical\",\n    \"file-minus\",\n    \"file-mov\",\n    \"file-mp3\",\n    \"file-mp4\",\n    \"file-music\",\n    \"file-pdf\",\n    \"file-pen\",\n    \"file-plus-minus\",\n    \"file-plus\",\n    \"file-png\",\n    \"file-powerpoint\",\n    \"file-ppt\",\n    \"file-prescription\",\n    \"file-shield\",\n    \"file-signature\",\n    \"file-slash\",\n    \"file-spreadsheet\",\n    \"file-svg\",\n    \"file-user\",\n    \"file-vector\",\n    \"file-video\",\n    \"file-waveform\",\n    \"file-word\",\n    \"file-xls\",\n    \"file-xmark\",\n    \"file-xml\",\n    \"file-zip\",\n    \"file-zipper\",\n    \"file\",\n    \"files-medical\",\n    \"files\",\n    \"fill-drip\",\n    \"fill\",\n    \"film-canister\",\n    \"film-simple\",\n    \"film-slash\",\n    \"film\",\n    \"films\",\n    \"filter-circle-dollar\",\n    \"filter-circle-xmark\",\n    \"filter-list\",\n    \"filter-slash\",\n    \"filter\",\n    \"filters\",\n    \"fingerprint\",\n    \"fire-burner\",\n    \"fire-extinguisher\",\n    \"fire-flame-curved\",\n    \"fire-flame-simple\",\n    \"fire-flame\",\n    \"fire-hydrant\",\n    \"fire-smoke\",\n    \"fire\",\n    \"fireplace\",\n    \"fish-bones\",\n    \"fish-cooked\",\n    \"fish-fins\",\n    \"fish\",\n    \"fishing-rod\",\n    \"flag-checkered\",\n    \"flag-pennant\",\n    \"flag-swallowtail\",\n    \"flag-usa\",\n    \"flag\",\n    \"flashlight\",\n    \"flask-gear\",\n    \"flask-round-poison\",\n    \"flask-round-potion\",\n    \"flask-vial\",\n    \"flask\",\n    \"flatbread-stuffed\",\n    \"flatbread\",\n    \"floppy-disk-circle-arrow-right\",\n    \"floppy-disk-circle-xmark\",\n    \"floppy-disk-pen\",\n    \"floppy-disk\",\n    \"floppy-disks\",\n    \"florin-sign\",\n    \"flower-daffodil\",\n    \"flower-tulip\",\n    \"flower\",\n    \"flute\",\n    \"flux-capacitor\",\n    \"flying-disc\",\n    \"folder-arrow-down\",\n    \"folder-arrow-up\",\n    \"folder-bookmark\",\n    \"folder-check\",\n    \"folder-closed\",\n    \"folder-gear\",\n    \"folder-grid\",\n    \"folder-heart\",\n    \"folder-image\",\n    \"folder-magnifying-glass\",\n    \"folder-medical\",\n    \"folder-minus\",\n    \"folder-music\",\n    \"folder-open\",\n    \"folder-plus\",\n    \"folder-tree\",\n    \"folder-user\",\n    \"folder-xmark\",\n    \"folder\",\n    \"folders\",\n    \"fondue-pot\",\n    \"font-awesome\",\n    \"font-case\",\n    \"font\",\n    \"football-helmet\",\n    \"football\",\n    \"fork-knife\",\n    \"fork\",\n    \"forklift\",\n    \"fort\",\n    \"forward-fast\",\n    \"forward-step\",\n    \"forward\",\n    \"frame\",\n    \"franc-sign\",\n    \"french-fries\",\n    \"frog\",\n    \"function\",\n    \"futbol\",\n    \"g\",\n    \"galaxy\",\n    \"gallery-thumbnails\",\n    \"game-board-simple\",\n    \"game-board\",\n    \"game-console-handheld-crank\",\n    \"game-console-handheld\",\n    \"gamepad-modern\",\n    \"gamepad\",\n    \"garage-car\",\n    \"garage-open\",\n    \"garage\",\n    \"garlic\",\n    \"gas-pump-slash\",\n    \"gas-pump\",\n    \"gauge-circle-bolt\",\n    \"gauge-circle-minus\",\n    \"gauge-circle-plus\",\n    \"gauge-high\",\n    \"gauge-low\",\n    \"gauge-max\",\n    \"gauge-min\",\n    \"gauge-simple-high\",\n    \"gauge-simple-low\",\n    \"gauge-simple-max\",\n    \"gauge-simple-min\",\n    \"gauge-simple\",\n    \"gauge\",\n    \"gavel\",\n    \"gear-code\",\n    \"gear-complex-code\",\n    \"gear-complex\",\n    \"gear\",\n    \"gears\",\n    \"gem\",\n    \"genderless\",\n    \"ghost\",\n    \"gif\",\n    \"gift-card\",\n    \"gift\",\n    \"gifts\",\n    \"gingerbread-man\",\n    \"glass-citrus\",\n    \"glass-empty\",\n    \"glass-half\",\n    \"glass-water-droplet\",\n    \"glass-water\",\n    \"glass\",\n    \"glasses-round\",\n    \"glasses\",\n    \"globe-pointer\",\n    \"globe-snow\",\n    \"globe-stand\",\n    \"globe-wifi\",\n    \"globe\",\n    \"goal-net\",\n    \"golf-ball-tee\",\n    \"golf-club\",\n    \"golf-flag-hole\",\n    \"gopuram\",\n    \"graduation-cap\",\n    \"gramophone\",\n    \"grapes\",\n    \"grate-droplet\",\n    \"grate\",\n    \"greater-than-equal\",\n    \"greater-than\",\n    \"grid-2-plus\",\n    \"grid-2\",\n    \"grid-4\",\n    \"grid-5\",\n    \"grid-dividers\",\n    \"grid-horizontal\",\n    \"grid-round-2-plus\",\n    \"grid-round-2\",\n    \"grid-round-4\",\n    \"grid-round-5\",\n    \"grid-round\",\n    \"grid\",\n    \"grill-fire\",\n    \"grill-hot\",\n    \"grill\",\n    \"grip-dots-vertical\",\n    \"grip-dots\",\n    \"grip-lines-vertical\",\n    \"grip-lines\",\n    \"grip-vertical\",\n    \"grip\",\n    \"group-arrows-rotate\",\n    \"guarani-sign\",\n    \"guitar-electric\",\n    \"guitar\",\n    \"guitars\",\n    \"gun-slash\",\n    \"gun-squirt\",\n    \"gun\",\n    \"h\",\n    \"h1\",\n    \"h2\",\n    \"h3\",\n    \"h4\",\n    \"h5\",\n    \"h6\",\n    \"hammer-brush\",\n    \"hammer-crash\",\n    \"hammer-war\",\n    \"hammer\",\n    \"hamsa\",\n    \"hand-back-fist\",\n    \"hand-back-point-down\",\n    \"hand-back-point-left\",\n    \"hand-back-point-ribbon\",\n    \"hand-back-point-right\",\n    \"hand-back-point-up\",\n    \"hand-dots\",\n    \"hand-fingers-crossed\",\n    \"hand-fist\",\n    \"hand-heart\",\n    \"hand-holding-box\",\n    \"hand-holding-circle-dollar\",\n    \"hand-holding-dollar\",\n    \"hand-holding-droplet\",\n    \"hand-holding-hand\",\n    \"hand-holding-heart\",\n    \"hand-holding-magic\",\n    \"hand-holding-medical\",\n    \"hand-holding-seedling\",\n    \"hand-holding-skull\",\n    \"hand-holding\",\n    \"hand-horns\",\n    \"hand-lizard\",\n    \"hand-love\",\n    \"hand-middle-finger\",\n    \"hand-peace\",\n    \"hand-point-down\",\n    \"hand-point-left\",\n    \"hand-point-ribbon\",\n    \"hand-point-right\",\n    \"hand-point-up\",\n    \"hand-pointer\",\n    \"hand-scissors\",\n    \"hand-sparkles\",\n    \"hand-spock\",\n    \"hand-wave\",\n    \"hand\",\n    \"handcuffs\",\n    \"hands-asl-interpreting\",\n    \"hands-bound\",\n    \"hands-bubbles\",\n    \"hands-clapping\",\n    \"hands-holding-child\",\n    \"hands-holding-circle\",\n    \"hands-holding-diamond\",\n    \"hands-holding-dollar\",\n    \"hands-holding-heart\",\n    \"hands-holding\",\n    \"hands-praying\",\n    \"hands\",\n    \"handshake-angle\",\n    \"handshake-simple-slash\",\n    \"handshake-simple\",\n    \"handshake-slash\",\n    \"handshake\",\n    \"hanukiah\",\n    \"hard-drive\",\n    \"hashtag-lock\",\n    \"hashtag\",\n    \"hat-beach\",\n    \"hat-chef\",\n    \"hat-cowboy-side\",\n    \"hat-cowboy\",\n    \"hat-santa\",\n    \"hat-winter\",\n    \"hat-witch\",\n    \"hat-wizard\",\n    \"head-side-brain\",\n    \"head-side-cough-slash\",\n    \"head-side-cough\",\n    \"head-side-gear\",\n    \"head-side-goggles\",\n    \"head-side-headphones\",\n    \"head-side-heart\",\n    \"head-side-mask\",\n    \"head-side-medical\",\n    \"head-side-virus\",\n    \"head-side\",\n    \"heading\",\n    \"headphones-simple\",\n    \"headphones\",\n    \"headset\",\n    \"heart-circle-bolt\",\n    \"heart-circle-check\",\n    \"heart-circle-exclamation\",\n    \"heart-circle-minus\",\n    \"heart-circle-plus\",\n    \"heart-circle-xmark\",\n    \"heart-crack\",\n    \"heart-half-stroke\",\n    \"heart-half\",\n    \"heart-pulse\",\n    \"heart\",\n    \"heat\",\n    \"helicopter-symbol\",\n    \"helicopter\",\n    \"helmet-battle\",\n    \"helmet-safety\",\n    \"helmet-un\",\n    \"hexagon-check\",\n    \"hexagon-divide\",\n    \"hexagon-exclamation\",\n    \"hexagon-image\",\n    \"hexagon-minus\",\n    \"hexagon-nodes-bolt\",\n    \"hexagon-nodes\",\n    \"hexagon-plus\",\n    \"hexagon-vertical-nft-slanted\",\n    \"hexagon-vertical-nft\",\n    \"hexagon-xmark\",\n    \"hexagon\",\n    \"high-definition\",\n    \"highlighter-line\",\n    \"highlighter\",\n    \"hill-avalanche\",\n    \"hill-rockslide\",\n    \"hippo\",\n    \"hockey-mask\",\n    \"hockey-puck\",\n    \"hockey-stick-puck\",\n    \"hockey-sticks\",\n    \"holly-berry\",\n    \"honey-pot\",\n    \"hood-cloak\",\n    \"horizontal-rule\",\n    \"horse-head\",\n    \"horse-saddle\",\n    \"horse\",\n    \"hose-reel\",\n    \"hose\",\n    \"hospital-user\",\n    \"hospital\",\n    \"hospitals\",\n    \"hot-tub-person\",\n    \"hotdog\",\n    \"hotel\",\n    \"hourglass-clock\",\n    \"hourglass-end\",\n    \"hourglass-half\",\n    \"hourglass-start\",\n    \"hourglass\",\n    \"house-blank\",\n    \"house-building\",\n    \"house-chimney-blank\",\n    \"house-chimney-crack\",\n    \"house-chimney-heart\",\n    \"house-chimney-medical\",\n    \"house-chimney-user\",\n    \"house-chimney-window\",\n    \"house-chimney\",\n    \"house-circle-check\",\n    \"house-circle-exclamation\",\n    \"house-circle-xmark\",\n    \"house-crack\",\n    \"house-day\",\n    \"house-fire\",\n    \"house-flag\",\n    \"house-flood-water-circle-arrow-right\",\n    \"house-flood-water\",\n    \"house-heart\",\n    \"house-laptop\",\n    \"house-lock\",\n    \"house-medical-circle-check\",\n    \"house-medical-circle-exclamation\",\n    \"house-medical-circle-xmark\",\n    \"house-medical-flag\",\n    \"house-medical\",\n    \"house-night\",\n    \"house-person-leave\",\n    \"house-person-return\",\n    \"house-signal\",\n    \"house-tree\",\n    \"house-tsunami\",\n    \"house-turret\",\n    \"house-user\",\n    \"house-water\",\n    \"house-window\",\n    \"house\",\n    \"hryvnia-sign\",\n    \"hundred-points\",\n    \"hurricane\",\n    \"hydra\",\n    \"hyphen\",\n    \"i-cursor\",\n    \"i\",\n    \"ice-cream\",\n    \"ice-skate\",\n    \"icicles\",\n    \"icons\",\n    \"id-badge\",\n    \"id-card-clip\",\n    \"id-card\",\n    \"igloo\",\n    \"image-landscape\",\n    \"image-polaroid-user\",\n    \"image-polaroid\",\n    \"image-portrait\",\n    \"image-slash\",\n    \"image-user\",\n    \"image\",\n    \"images-user\",\n    \"images\",\n    \"inbox-full\",\n    \"inbox-in\",\n    \"inbox-out\",\n    \"inbox\",\n    \"inboxes\",\n    \"indent\",\n    \"indian-rupee-sign\",\n    \"industry-windows\",\n    \"industry\",\n    \"infinity\",\n    \"info\",\n    \"inhaler\",\n    \"input-numeric\",\n    \"input-pipe\",\n    \"input-text\",\n    \"integral\",\n    \"interrobang\",\n    \"intersection\",\n    \"island-tropical\",\n    \"italic\",\n    \"j\",\n    \"jack-o-lantern\",\n    \"jar-wheat\",\n    \"jar\",\n    \"jedi\",\n    \"jet-fighter-up\",\n    \"jet-fighter\",\n    \"joint\",\n    \"joystick\",\n    \"jug-bottle\",\n    \"jug-detergent\",\n    \"jug\",\n    \"k\",\n    \"kaaba\",\n    \"kazoo\",\n    \"kerning\",\n    \"key-skeleton-left-right\",\n    \"key-skeleton\",\n    \"key\",\n    \"keyboard-brightness-low\",\n    \"keyboard-brightness\",\n    \"keyboard-down\",\n    \"keyboard-left\",\n    \"keyboard\",\n    \"keynote\",\n    \"khanda\",\n    \"kidneys\",\n    \"kip-sign\",\n    \"kit-medical\",\n    \"kitchen-set\",\n    \"kite\",\n    \"kiwi-bird\",\n    \"kiwi-fruit\",\n    \"knife-kitchen\",\n    \"knife\",\n    \"l\",\n    \"lacrosse-stick-ball\",\n    \"lacrosse-stick\",\n    \"lambda\",\n    \"lamp-desk\",\n    \"lamp-floor\",\n    \"lamp-street\",\n    \"lamp\",\n    \"land-mine-on\",\n    \"landmark-dome\",\n    \"landmark-flag\",\n    \"landmark-magnifying-glass\",\n    \"landmark\",\n    \"language\",\n    \"laptop-arrow-down\",\n    \"laptop-binary\",\n    \"laptop-code\",\n    \"laptop-file\",\n    \"laptop-medical\",\n    \"laptop-mobile\",\n    \"laptop-slash\",\n    \"laptop\",\n    \"lari-sign\",\n    \"lasso-sparkles\",\n    \"lasso\",\n    \"layer-group\",\n    \"layer-minus\",\n    \"layer-plus\",\n    \"leaf-heart\",\n    \"leaf-maple\",\n    \"leaf-oak\",\n    \"leaf\",\n    \"leafy-green\",\n    \"left-from-bracket\",\n    \"left-from-line\",\n    \"left-long-to-line\",\n    \"left-long\",\n    \"left-right\",\n    \"left-to-bracket\",\n    \"left-to-line\",\n    \"left\",\n    \"lemon\",\n    \"less-than-equal\",\n    \"less-than\",\n    \"life-ring\",\n    \"light-ceiling\",\n    \"light-emergency-on\",\n    \"light-emergency\",\n    \"light-switch-off\",\n    \"light-switch-on\",\n    \"light-switch\",\n    \"lightbulb-cfl-on\",\n    \"lightbulb-cfl\",\n    \"lightbulb-dollar\",\n    \"lightbulb-exclamation-on\",\n    \"lightbulb-exclamation\",\n    \"lightbulb-gear\",\n    \"lightbulb-message\",\n    \"lightbulb-on\",\n    \"lightbulb-slash\",\n    \"lightbulb\",\n    \"lighthouse\",\n    \"lights-holiday\",\n    \"line-columns\",\n    \"line-height\",\n    \"lines-leaning\",\n    \"link-horizontal-slash\",\n    \"link-horizontal\",\n    \"link-simple-slash\",\n    \"link-simple\",\n    \"link-slash\",\n    \"link\",\n    \"lips\",\n    \"lira-sign\",\n    \"list-check\",\n    \"list-dropdown\",\n    \"list-music\",\n    \"list-ol\",\n    \"list-radio\",\n    \"list-timeline\",\n    \"list-tree\",\n    \"list-ul\",\n    \"list\",\n    \"litecoin-sign\",\n    \"loader\",\n    \"lobster\",\n    \"location-arrow-up\",\n    \"location-arrow\",\n    \"location-check\",\n    \"location-crosshairs-slash\",\n    \"location-crosshairs\",\n    \"location-dot-slash\",\n    \"location-dot\",\n    \"location-exclamation\",\n    \"location-minus\",\n    \"location-pen\",\n    \"location-pin-lock\",\n    \"location-pin-slash\",\n    \"location-pin\",\n    \"location-plus\",\n    \"location-question\",\n    \"location-smile\",\n    \"location-xmark\",\n    \"lock-a\",\n    \"lock-hashtag\",\n    \"lock-keyhole-open\",\n    \"lock-keyhole\",\n    \"lock-open\",\n    \"lock\",\n    \"locust\",\n    \"lollipop\",\n    \"loveseat\",\n    \"luchador-mask\",\n    \"lungs-virus\",\n    \"lungs\",\n    \"m\",\n    \"mace\",\n    \"magnet\",\n    \"magnifying-glass-arrow-right\",\n    \"magnifying-glass-arrows-rotate\",\n    \"magnifying-glass-chart\",\n    \"magnifying-glass-dollar\",\n    \"magnifying-glass-location\",\n    \"magnifying-glass-minus\",\n    \"magnifying-glass-music\",\n    \"magnifying-glass-play\",\n    \"magnifying-glass-plus\",\n    \"magnifying-glass-waveform\",\n    \"magnifying-glass\",\n    \"mailbox-flag-up\",\n    \"mailbox\",\n    \"manat-sign\",\n    \"mandolin\",\n    \"mango\",\n    \"manhole\",\n    \"map-location-dot\",\n    \"map-location\",\n    \"map-pin\",\n    \"map\",\n    \"marker\",\n    \"mars-and-venus-burst\",\n    \"mars-and-venus\",\n    \"mars-double\",\n    \"mars-stroke-right\",\n    \"mars-stroke-up\",\n    \"mars-stroke\",\n    \"mars\",\n    \"martini-glass-citrus\",\n    \"martini-glass-empty\",\n    \"martini-glass\",\n    \"mask-face\",\n    \"mask-snorkel\",\n    \"mask-ventilator\",\n    \"mask\",\n    \"masks-theater\",\n    \"mattress-pillow\",\n    \"maximize\",\n    \"meat\",\n    \"medal\",\n    \"megaphone\",\n    \"melon-slice\",\n    \"melon\",\n    \"memo-circle-check\",\n    \"memo-circle-info\",\n    \"memo-pad\",\n    \"memo\",\n    \"memory\",\n    \"menorah\",\n    \"mercury\",\n    \"merge\",\n    \"message-arrow-down\",\n    \"message-arrow-up-right\",\n    \"message-arrow-up\",\n    \"message-bot\",\n    \"message-captions\",\n    \"message-check\",\n    \"message-code\",\n    \"message-dollar\",\n    \"message-dots\",\n    \"message-exclamation\",\n    \"message-heart\",\n    \"message-image\",\n    \"message-lines\",\n    \"message-medical\",\n    \"message-middle-top\",\n    \"message-middle\",\n    \"message-minus\",\n    \"message-music\",\n    \"message-pen\",\n    \"message-plus\",\n    \"message-question\",\n    \"message-quote\",\n    \"message-slash\",\n    \"message-smile\",\n    \"message-sms\",\n    \"message-text\",\n    \"message-xmark\",\n    \"message\",\n    \"messages-dollar\",\n    \"messages-question\",\n    \"messages\",\n    \"meteor\",\n    \"meter-bolt\",\n    \"meter-droplet\",\n    \"meter-fire\",\n    \"meter\",\n    \"microchip-ai\",\n    \"microchip\",\n    \"microphone-lines-slash\",\n    \"microphone-lines\",\n    \"microphone-slash\",\n    \"microphone-stand\",\n    \"microphone\",\n    \"microscope\",\n    \"microwave\",\n    \"mill-sign\",\n    \"minimize\",\n    \"minus\",\n    \"mistletoe\",\n    \"mitten\",\n    \"mobile-button\",\n    \"mobile-notch\",\n    \"mobile-retro\",\n    \"mobile-screen-button\",\n    \"mobile-screen\",\n    \"mobile-signal-out\",\n    \"mobile-signal\",\n    \"mobile\",\n    \"money-bill-1-wave\",\n    \"money-bill-1\",\n    \"money-bill-simple-wave\",\n    \"money-bill-simple\",\n    \"money-bill-transfer\",\n    \"money-bill-trend-up\",\n    \"money-bill-wave\",\n    \"money-bill-wheat\",\n    \"money-bill\",\n    \"money-bills-simple\",\n    \"money-bills\",\n    \"money-check-dollar-pen\",\n    \"money-check-dollar\",\n    \"money-check-pen\",\n    \"money-check\",\n    \"money-from-bracket\",\n    \"money-simple-from-bracket\",\n    \"monitor-waveform\",\n    \"monkey\",\n    \"monument\",\n    \"moon-cloud\",\n    \"moon-over-sun\",\n    \"moon-stars\",\n    \"moon\",\n    \"moped\",\n    \"mortar-pestle\",\n    \"mosque\",\n    \"mosquito-net\",\n    \"mosquito\",\n    \"motorcycle\",\n    \"mound\",\n    \"mountain-city\",\n    \"mountain-sun\",\n    \"mountain\",\n    \"mountains\",\n    \"mouse-field\",\n    \"mp3-player\",\n    \"mug-hot\",\n    \"mug-marshmallows\",\n    \"mug-saucer\",\n    \"mug-tea-saucer\",\n    \"mug-tea\",\n    \"mug\",\n    \"mushroom\",\n    \"music-magnifying-glass\",\n    \"music-note-slash\",\n    \"music-note\",\n    \"music-slash\",\n    \"music\",\n    \"mustache\",\n    \"n\",\n    \"naira-sign\",\n    \"narwhal\",\n    \"nesting-dolls\",\n    \"network-wired\",\n    \"neuter\",\n    \"newspaper\",\n    \"nfc-lock\",\n    \"nfc-magnifying-glass\",\n    \"nfc-pen\",\n    \"nfc-signal\",\n    \"nfc-slash\",\n    \"nfc-symbol\",\n    \"nfc-trash\",\n    \"nfc\",\n    \"nose\",\n    \"not-equal\",\n    \"notdef\",\n    \"note-medical\",\n    \"note-sticky\",\n    \"note\",\n    \"notebook\",\n    \"notes-medical\",\n    \"notes\",\n    \"o\",\n    \"object-exclude\",\n    \"object-group\",\n    \"object-intersect\",\n    \"object-subtract\",\n    \"object-ungroup\",\n    \"object-union\",\n    \"objects-align-bottom\",\n    \"objects-align-center-horizontal\",\n    \"objects-align-center-vertical\",\n    \"objects-align-left\",\n    \"objects-align-right\",\n    \"objects-align-top\",\n    \"objects-column\",\n    \"octagon-check\",\n    \"octagon-divide\",\n    \"octagon-exclamation\",\n    \"octagon-minus\",\n    \"octagon-plus\",\n    \"octagon-xmark\",\n    \"octagon\",\n    \"octopus\",\n    \"oil-can-drip\",\n    \"oil-can\",\n    \"oil-temperature\",\n    \"oil-well\",\n    \"olive-branch\",\n    \"olive\",\n    \"om\",\n    \"omega\",\n    \"onion\",\n    \"option\",\n    \"ornament\",\n    \"otter\",\n    \"outdent\",\n    \"outlet\",\n    \"oven\",\n    \"overline\",\n    \"p\",\n    \"page-caret-down\",\n    \"page-caret-up\",\n    \"page\",\n    \"pager\",\n    \"paint-roller\",\n    \"paintbrush-fine\",\n    \"paintbrush-pencil\",\n    \"paintbrush\",\n    \"palette\",\n    \"pallet-box\",\n    \"pallet-boxes\",\n    \"pallet\",\n    \"pan-food\",\n    \"pan-frying\",\n    \"pancakes\",\n    \"panel-ews\",\n    \"panel-fire\",\n    \"panorama\",\n    \"paper-plane-top\",\n    \"paper-plane\",\n    \"paperclip-vertical\",\n    \"paperclip\",\n    \"parachute-box\",\n    \"paragraph-left\",\n    \"paragraph\",\n    \"party-bell\",\n    \"party-horn\",\n    \"passport\",\n    \"paste\",\n    \"pause\",\n    \"paw-claws\",\n    \"paw-simple\",\n    \"paw\",\n    \"peace\",\n    \"peach\",\n    \"peanut\",\n    \"peanuts\",\n    \"peapod\",\n    \"pear\",\n    \"pedestal\",\n    \"pegasus\",\n    \"pen-circle\",\n    \"pen-clip-slash\",\n    \"pen-clip\",\n    \"pen-fancy-slash\",\n    \"pen-fancy\",\n    \"pen-field\",\n    \"pen-line\",\n    \"pen-nib-slash\",\n    \"pen-nib\",\n    \"pen-paintbrush\",\n    \"pen-ruler\",\n    \"pen-slash\",\n    \"pen-swirl\",\n    \"pen-to-square\",\n    \"pen\",\n    \"pencil-mechanical\",\n    \"pencil-slash\",\n    \"pencil\",\n    \"people-arrows\",\n    \"people-carry-box\",\n    \"people-dress-simple\",\n    \"people-dress\",\n    \"people-group\",\n    \"people-line\",\n    \"people-pants-simple\",\n    \"people-pants\",\n    \"people-pulling\",\n    \"people-robbery\",\n    \"people-roof\",\n    \"people-simple\",\n    \"people\",\n    \"pepper-hot\",\n    \"pepper\",\n    \"percent\",\n    \"period\",\n    \"person-arrow-down-to-line\",\n    \"person-arrow-up-from-line\",\n    \"person-biking-mountain\",\n    \"person-biking\",\n    \"person-booth\",\n    \"person-breastfeeding\",\n    \"person-burst\",\n    \"person-cane\",\n    \"person-carry-box\",\n    \"person-chalkboard\",\n    \"person-circle-check\",\n    \"person-circle-exclamation\",\n    \"person-circle-minus\",\n    \"person-circle-plus\",\n    \"person-circle-question\",\n    \"person-circle-xmark\",\n    \"person-digging\",\n    \"person-dolly-empty\",\n    \"person-dolly\",\n    \"person-dots-from-line\",\n    \"person-dress-burst\",\n    \"person-dress-fairy\",\n    \"person-dress-simple\",\n    \"person-dress\",\n    \"person-drowning\",\n    \"person-fairy\",\n    \"person-falling-burst\",\n    \"person-falling\",\n    \"person-from-portal\",\n    \"person-half-dress\",\n    \"person-harassing\",\n    \"person-hiking\",\n    \"person-military-pointing\",\n    \"person-military-rifle\",\n    \"person-military-to-person\",\n    \"person-pinball\",\n    \"person-praying\",\n    \"person-pregnant\",\n    \"person-rays\",\n    \"person-rifle\",\n    \"person-running-fast\",\n    \"person-running\",\n    \"person-seat-reclined\",\n    \"person-seat\",\n    \"person-shelter\",\n    \"person-sign\",\n    \"person-simple\",\n    \"person-skating\",\n    \"person-ski-jumping\",\n    \"person-ski-lift\",\n    \"person-skiing-nordic\",\n    \"person-skiing\",\n    \"person-sledding\",\n    \"person-snowboarding\",\n    \"person-snowmobiling\",\n    \"person-swimming\",\n    \"person-through-window\",\n    \"person-to-door\",\n    \"person-to-portal\",\n    \"person-walking-arrow-loop-left\",\n    \"person-walking-arrow-right\",\n    \"person-walking-dashed-line-arrow-right\",\n    \"person-walking-luggage\",\n    \"person-walking-with-cane\",\n    \"person-walking\",\n    \"person\",\n    \"peseta-sign\",\n    \"peso-sign\",\n    \"phone-arrow-down-left\",\n    \"phone-arrow-right\",\n    \"phone-arrow-up-right\",\n    \"phone-flip\",\n    \"phone-hangup\",\n    \"phone-intercom\",\n    \"phone-missed\",\n    \"phone-office\",\n    \"phone-plus\",\n    \"phone-rotary\",\n    \"phone-slash\",\n    \"phone-volume\",\n    \"phone-xmark\",\n    \"phone\",\n    \"photo-film-music\",\n    \"photo-film\",\n    \"pi\",\n    \"piano-keyboard\",\n    \"piano\",\n    \"pickaxe\",\n    \"pickleball\",\n    \"pie\",\n    \"pig\",\n    \"piggy-bank\",\n    \"pills\",\n    \"pinata\",\n    \"pinball\",\n    \"pineapple\",\n    \"pipe-circle-check\",\n    \"pipe-collar\",\n    \"pipe-section\",\n    \"pipe-smoking\",\n    \"pipe-valve\",\n    \"pipe\",\n    \"pizza-slice\",\n    \"pizza\",\n    \"place-of-worship\",\n    \"plane-arrival\",\n    \"plane-circle-check\",\n    \"plane-circle-exclamation\",\n    \"plane-circle-xmark\",\n    \"plane-departure\",\n    \"plane-engines\",\n    \"plane-lock\",\n    \"plane-prop\",\n    \"plane-slash\",\n    \"plane-tail\",\n    \"plane-up-slash\",\n    \"plane-up\",\n    \"plane\",\n    \"planet-moon\",\n    \"planet-ringed\",\n    \"plant-wilt\",\n    \"plate-utensils\",\n    \"plate-wheat\",\n    \"play-pause\",\n    \"play\",\n    \"plug-circle-bolt\",\n    \"plug-circle-check\",\n    \"plug-circle-exclamation\",\n    \"plug-circle-minus\",\n    \"plug-circle-plus\",\n    \"plug-circle-xmark\",\n    \"plug\",\n    \"plus-large\",\n    \"plus-minus\",\n    \"plus\",\n    \"podcast\",\n    \"podium-star\",\n    \"podium\",\n    \"police-box\",\n    \"poll-people\",\n    \"pompebled\",\n    \"poo-storm\",\n    \"poo\",\n    \"pool-8-ball\",\n    \"poop\",\n    \"popcorn\",\n    \"popsicle\",\n    \"pot-food\",\n    \"potato\",\n    \"power-off\",\n    \"prescription-bottle-medical\",\n    \"prescription-bottle-pill\",\n    \"prescription-bottle\",\n    \"prescription\",\n    \"presentation-screen\",\n    \"pretzel\",\n    \"print-magnifying-glass\",\n    \"print-slash\",\n    \"print\",\n    \"projector\",\n    \"pump-medical\",\n    \"pump-soap\",\n    \"pump\",\n    \"pumpkin\",\n    \"puzzle-piece-simple\",\n    \"puzzle-piece\",\n    \"puzzle\",\n    \"q\",\n    \"qrcode\",\n    \"question\",\n    \"quote-left\",\n    \"quote-right\",\n    \"quotes\",\n    \"r\",\n    \"rabbit-running\",\n    \"rabbit\",\n    \"raccoon\",\n    \"racquet\",\n    \"radar\",\n    \"radiation\",\n    \"radio-tuner\",\n    \"radio\",\n    \"rainbow\",\n    \"raindrops\",\n    \"ram\",\n    \"ramp-loading\",\n    \"ranking-star\",\n    \"raygun\",\n    \"receipt\",\n    \"record-vinyl\",\n    \"rectangle-ad\",\n    \"rectangle-barcode\",\n    \"rectangle-code\",\n    \"rectangle-history-circle-plus\",\n    \"rectangle-history-circle-user\",\n    \"rectangle-history\",\n    \"rectangle-list\",\n    \"rectangle-pro\",\n    \"rectangle-terminal\",\n    \"rectangle-vertical-history\",\n    \"rectangle-vertical\",\n    \"rectangle-wide\",\n    \"rectangle-xmark\",\n    \"rectangle\",\n    \"rectangles-mixed\",\n    \"recycle\",\n    \"reel\",\n    \"reflect-both\",\n    \"reflect-horizontal\",\n    \"reflect-vertical\",\n    \"refrigerator\",\n    \"registered\",\n    \"repeat-1\",\n    \"repeat\",\n    \"reply-all\",\n    \"reply-clock\",\n    \"reply\",\n    \"republican\",\n    \"restroom-simple\",\n    \"restroom\",\n    \"retweet\",\n    \"rhombus\",\n    \"ribbon\",\n    \"right-from-bracket\",\n    \"right-from-line\",\n    \"right-left-large\",\n    \"right-left\",\n    \"right-long-to-line\",\n    \"right-long\",\n    \"right-to-bracket\",\n    \"right-to-line\",\n    \"right\",\n    \"ring-diamond\",\n    \"ring\",\n    \"rings-wedding\",\n    \"road-barrier\",\n    \"road-bridge\",\n    \"road-circle-check\",\n    \"road-circle-exclamation\",\n    \"road-circle-xmark\",\n    \"road-lock\",\n    \"road-spikes\",\n    \"road\",\n    \"robot-astromech\",\n    \"robot\",\n    \"rocket-launch\",\n    \"rocket\",\n    \"roller-coaster\",\n    \"rotate-exclamation\",\n    \"rotate-left\",\n    \"rotate-reverse\",\n    \"rotate-right\",\n    \"rotate\",\n    \"route-highway\",\n    \"route-interstate\",\n    \"route\",\n    \"router\",\n    \"rss\",\n    \"ruble-sign\",\n    \"rug\",\n    \"rugby-ball\",\n    \"ruler-combined\",\n    \"ruler-horizontal\",\n    \"ruler-triangle\",\n    \"ruler-vertical\",\n    \"ruler\",\n    \"rupee-sign\",\n    \"rupiah-sign\",\n    \"rv\",\n    \"s\",\n    \"sack-dollar\",\n    \"sack-xmark\",\n    \"sack\",\n    \"sailboat\",\n    \"salad\",\n    \"salt-shaker\",\n    \"sandwich\",\n    \"satellite-dish\",\n    \"satellite\",\n    \"sausage\",\n    \"saxophone-fire\",\n    \"saxophone\",\n    \"scale-balanced\",\n    \"scale-unbalanced-flip\",\n    \"scale-unbalanced\",\n    \"scalpel-line-dashed\",\n    \"scalpel\",\n    \"scanner-gun\",\n    \"scanner-image\",\n    \"scanner-keyboard\",\n    \"scanner-touchscreen\",\n    \"scarecrow\",\n    \"scarf\",\n    \"school-circle-check\",\n    \"school-circle-exclamation\",\n    \"school-circle-xmark\",\n    \"school-flag\",\n    \"school-lock\",\n    \"school\",\n    \"scissors\",\n    \"screen-users\",\n    \"screencast\",\n    \"screwdriver-wrench\",\n    \"screwdriver\",\n    \"scribble\",\n    \"scroll-old\",\n    \"scroll-torah\",\n    \"scroll\",\n    \"scrubber\",\n    \"scythe\",\n    \"sd-card\",\n    \"sd-cards\",\n    \"seal-exclamation\",\n    \"seal-question\",\n    \"seal\",\n    \"seat-airline\",\n    \"section\",\n    \"seedling\",\n    \"semicolon\",\n    \"send-back\",\n    \"send-backward\",\n    \"sensor-cloud\",\n    \"sensor-fire\",\n    \"sensor-on\",\n    \"sensor-triangle-exclamation\",\n    \"sensor\",\n    \"server\",\n    \"shapes\",\n    \"share-all\",\n    \"share-from-square\",\n    \"share-nodes\",\n    \"share\",\n    \"sheep\",\n    \"sheet-plastic\",\n    \"shekel-sign\",\n    \"shelves-empty\",\n    \"shelves\",\n    \"shield-cat\",\n    \"shield-check\",\n    \"shield-cross\",\n    \"shield-dog\",\n    \"shield-exclamation\",\n    \"shield-halved\",\n    \"shield-heart\",\n    \"shield-keyhole\",\n    \"shield-minus\",\n    \"shield-plus\",\n    \"shield-quartered\",\n    \"shield-slash\",\n    \"shield-virus\",\n    \"shield-xmark\",\n    \"shield\",\n    \"ship\",\n    \"shirt-long-sleeve\",\n    \"shirt-running\",\n    \"shirt-tank-top\",\n    \"shirt\",\n    \"shish-kebab\",\n    \"shoe-prints\",\n    \"shop-lock\",\n    \"shop-slash\",\n    \"shop\",\n    \"shovel-snow\",\n    \"shovel\",\n    \"shower-down\",\n    \"shower\",\n    \"shredder\",\n    \"shrimp\",\n    \"shuffle\",\n    \"shutters\",\n    \"shuttle-space\",\n    \"shuttlecock\",\n    \"sickle\",\n    \"sidebar-flip\",\n    \"sidebar\",\n    \"sigma\",\n    \"sign-hanging\",\n    \"sign-post\",\n    \"sign-posts-wrench\",\n    \"sign-posts\",\n    \"signal-bars-fair\",\n    \"signal-bars-good\",\n    \"signal-bars-slash\",\n    \"signal-bars-weak\",\n    \"signal-bars\",\n    \"signal-fair\",\n    \"signal-good\",\n    \"signal-slash\",\n    \"signal-stream-slash\",\n    \"signal-stream\",\n    \"signal-strong\",\n    \"signal-weak\",\n    \"signal\",\n    \"signature-lock\",\n    \"signature-slash\",\n    \"signature\",\n    \"signs-post\",\n    \"sim-card\",\n    \"sim-cards\",\n    \"sink\",\n    \"siren-on\",\n    \"siren\",\n    \"sitemap\",\n    \"skeleton-ribs\",\n    \"skeleton\",\n    \"ski-boot-ski\",\n    \"ski-boot\",\n    \"skull-cow\",\n    \"skull-crossbones\",\n    \"skull\",\n    \"slash-back\",\n    \"slash-forward\",\n    \"slash\",\n    \"sleigh\",\n    \"slider\",\n    \"sliders-simple\",\n    \"sliders-up\",\n    \"sliders\",\n    \"slot-machine\",\n    \"smog\",\n    \"smoke\",\n    \"smoking\",\n    \"snake\",\n    \"snooze\",\n    \"snow-blowing\",\n    \"snowflake-droplets\",\n    \"snowflake\",\n    \"snowflakes\",\n    \"snowman-head\",\n    \"snowman\",\n    \"snowplow\",\n    \"soap\",\n    \"socks\",\n    \"soft-serve\",\n    \"solar-panel\",\n    \"solar-system\",\n    \"sort-down\",\n    \"sort-up\",\n    \"sort\",\n    \"spa\",\n    \"space-station-moon-construction\",\n    \"space-station-moon\",\n    \"spade\",\n    \"spaghetti-monster-flying\",\n    \"sparkle\",\n    \"sparkles\",\n    \"speaker\",\n    \"speakers\",\n    \"spell-check\",\n    \"spider-black-widow\",\n    \"spider-web\",\n    \"spider\",\n    \"spinner-scale\",\n    \"spinner-third\",\n    \"spinner\",\n    \"split\",\n    \"splotch\",\n    \"spoon\",\n    \"sportsball\",\n    \"spray-can-sparkles\",\n    \"spray-can\",\n    \"sprinkler-ceiling\",\n    \"sprinkler\",\n    \"square-0\",\n    \"square-1\",\n    \"square-2\",\n    \"square-3\",\n    \"square-4\",\n    \"square-5\",\n    \"square-6\",\n    \"square-7\",\n    \"square-8\",\n    \"square-9\",\n    \"square-a-lock\",\n    \"square-a\",\n    \"square-ampersand\",\n    \"square-arrow-down-left\",\n    \"square-arrow-down-right\",\n    \"square-arrow-down\",\n    \"square-arrow-left\",\n    \"square-arrow-right\",\n    \"square-arrow-up-left\",\n    \"square-arrow-up-right\",\n    \"square-arrow-up\",\n    \"square-b\",\n    \"square-binary\",\n    \"square-bolt\",\n    \"square-c\",\n    \"square-caret-down\",\n    \"square-caret-left\",\n    \"square-caret-right\",\n    \"square-caret-up\",\n    \"square-check\",\n    \"square-chevron-down\",\n    \"square-chevron-left\",\n    \"square-chevron-right\",\n    \"square-chevron-up\",\n    \"square-code\",\n    \"square-d\",\n    \"square-dashed-circle-plus\",\n    \"square-dashed\",\n    \"square-divide\",\n    \"square-dollar\",\n    \"square-down-left\",\n    \"square-down-right\",\n    \"square-down\",\n    \"square-e\",\n    \"square-ellipsis-vertical\",\n    \"square-ellipsis\",\n    \"square-envelope\",\n    \"square-exclamation\",\n    \"square-f\",\n    \"square-fragile\",\n    \"square-full\",\n    \"square-g\",\n    \"square-h\",\n    \"square-heart\",\n    \"square-i\",\n    \"square-info\",\n    \"square-j\",\n    \"square-k\",\n    \"square-kanban\",\n    \"square-l\",\n    \"square-left\",\n    \"square-list\",\n    \"square-m\",\n    \"square-minus\",\n    \"square-n\",\n    \"square-nfi\",\n    \"square-o\",\n    \"square-p\",\n    \"square-parking-slash\",\n    \"square-parking\",\n    \"square-pen\",\n    \"square-person-confined\",\n    \"square-phone-flip\",\n    \"square-phone-hangup\",\n    \"square-phone\",\n    \"square-plus\",\n    \"square-poll-horizontal\",\n    \"square-poll-vertical\",\n    \"square-q\",\n    \"square-quarters\",\n    \"square-question\",\n    \"square-quote\",\n    \"square-r\",\n    \"square-right\",\n    \"square-ring\",\n    \"square-root-variable\",\n    \"square-root\",\n    \"square-rss\",\n    \"square-s\",\n    \"square-share-nodes\",\n    \"square-sliders-vertical\",\n    \"square-sliders\",\n    \"square-small\",\n    \"square-star\",\n    \"square-t\",\n    \"square-terminal\",\n    \"square-this-way-up\",\n    \"square-u\",\n    \"square-up-left\",\n    \"square-up-right\",\n    \"square-up\",\n    \"square-user\",\n    \"square-v\",\n    \"square-virus\",\n    \"square-w\",\n    \"square-x\",\n    \"square-xmark\",\n    \"square-y\",\n    \"square-z\",\n    \"square\",\n    \"squid\",\n    \"squirrel\",\n    \"staff-snake\",\n    \"staff\",\n    \"stairs\",\n    \"stamp\",\n    \"standard-definition\",\n    \"stapler\",\n    \"star-and-crescent\",\n    \"star-christmas\",\n    \"star-exclamation\",\n    \"star-half-stroke\",\n    \"star-half\",\n    \"star-of-david\",\n    \"star-of-life\",\n    \"star-sharp-half-stroke\",\n    \"star-sharp-half\",\n    \"star-sharp\",\n    \"star-shooting\",\n    \"star\",\n    \"starfighter-twin-ion-engine-advanced\",\n    \"starfighter-twin-ion-engine\",\n    \"starfighter\",\n    \"stars\",\n    \"starship-freighter\",\n    \"starship\",\n    \"steak\",\n    \"steering-wheel\",\n    \"sterling-sign\",\n    \"stethoscope\",\n    \"stocking\",\n    \"stomach\",\n    \"stop\",\n    \"stopwatch-20\",\n    \"stopwatch\",\n    \"store-lock\",\n    \"store-slash\",\n    \"store\",\n    \"strawberry\",\n    \"street-view\",\n    \"stretcher\",\n    \"strikethrough\",\n    \"stroopwafel\",\n    \"subscript\",\n    \"subtitles-slash\",\n    \"subtitles\",\n    \"suitcase-medical\",\n    \"suitcase-rolling\",\n    \"suitcase\",\n    \"sun-bright\",\n    \"sun-cloud\",\n    \"sun-dust\",\n    \"sun-haze\",\n    \"sun-plant-wilt\",\n    \"sun\",\n    \"sunglasses\",\n    \"sunrise\",\n    \"sunset\",\n    \"superscript\",\n    \"sushi-roll\",\n    \"sushi\",\n    \"swap-arrows\",\n    \"swap\",\n    \"swatchbook\",\n    \"sword-laser-alt\",\n    \"sword-laser\",\n    \"sword\",\n    \"swords-laser\",\n    \"swords\",\n    \"symbols\",\n    \"synagogue\",\n    \"syringe\",\n    \"t-rex\",\n    \"t\",\n    \"table-cells-column-lock\",\n    \"table-cells-column-unlock\",\n    \"table-cells-large\",\n    \"table-cells-lock\",\n    \"table-cells-row-lock\",\n    \"table-cells-row-unlock\",\n    \"table-cells-unlock\",\n    \"table-cells\",\n    \"table-columns\",\n    \"table-layout\",\n    \"table-list\",\n    \"table-picnic\",\n    \"table-pivot\",\n    \"table-rows\",\n    \"table-tennis-paddle-ball\",\n    \"table-tree\",\n    \"table\",\n    \"tablet-button\",\n    \"tablet-rugged\",\n    \"tablet-screen-button\",\n    \"tablet-screen\",\n    \"tablet\",\n    \"tablets\",\n    \"tachograph-digital\",\n    \"taco\",\n    \"tag\",\n    \"tags\",\n    \"tally-1\",\n    \"tally-2\",\n    \"tally-3\",\n    \"tally-4\",\n    \"tally\",\n    \"tamale\",\n    \"tank-water\",\n    \"tape\",\n    \"tarp-droplet\",\n    \"tarp\",\n    \"taxi-bus\",\n    \"taxi\",\n    \"teddy-bear\",\n    \"teeth-open\",\n    \"teeth\",\n    \"telescope\",\n    \"temperature-arrow-down\",\n    \"temperature-arrow-up\",\n    \"temperature-empty\",\n    \"temperature-full\",\n    \"temperature-half\",\n    \"temperature-high\",\n    \"temperature-list\",\n    \"temperature-low\",\n    \"temperature-quarter\",\n    \"temperature-snow\",\n    \"temperature-sun\",\n    \"temperature-three-quarters\",\n    \"tenge-sign\",\n    \"tennis-ball\",\n    \"tent-arrow-down-to-line\",\n    \"tent-arrow-left-right\",\n    \"tent-arrow-turn-left\",\n    \"tent-arrows-down\",\n    \"tent-double-peak\",\n    \"tent\",\n    \"tents\",\n    \"terminal\",\n    \"text-height\",\n    \"text-size\",\n    \"text-slash\",\n    \"text-width\",\n    \"text\",\n    \"thermometer\",\n    \"theta\",\n    \"thought-bubble\",\n    \"thumbs-down\",\n    \"thumbs-up\",\n    \"thumbtack-slash\",\n    \"thumbtack\",\n    \"tick\",\n    \"ticket-airline\",\n    \"ticket-perforated\",\n    \"ticket-simple\",\n    \"ticket\",\n    \"tickets-airline\",\n    \"tickets-perforated\",\n    \"tickets-simple\",\n    \"tickets\",\n    \"tilde\",\n    \"timeline-arrow\",\n    \"timeline\",\n    \"timer\",\n    \"tire-flat\",\n    \"tire-pressure-warning\",\n    \"tire-rugged\",\n    \"tire\",\n    \"toggle-large-off\",\n    \"toggle-large-on\",\n    \"toggle-off\",\n    \"toggle-on\",\n    \"toilet-paper-blank-under\",\n    \"toilet-paper-blank\",\n    \"toilet-paper-check\",\n    \"toilet-paper-slash\",\n    \"toilet-paper-under-slash\",\n    \"toilet-paper-under\",\n    \"toilet-paper-xmark\",\n    \"toilet-paper\",\n    \"toilet-portable\",\n    \"toilet\",\n    \"toilets-portable\",\n    \"tomato\",\n    \"tombstone-blank\",\n    \"tombstone\",\n    \"toolbox\",\n    \"tooth\",\n    \"toothbrush\",\n    \"torii-gate\",\n    \"tornado\",\n    \"tower-broadcast\",\n    \"tower-cell\",\n    \"tower-control\",\n    \"tower-observation\",\n    \"tractor\",\n    \"trademark\",\n    \"traffic-cone\",\n    \"traffic-light-go\",\n    \"traffic-light-slow\",\n    \"traffic-light-stop\",\n    \"traffic-light\",\n    \"trailer\",\n    \"train-subway-tunnel\",\n    \"train-subway\",\n    \"train-track\",\n    \"train-tram\",\n    \"train-tunnel\",\n    \"train\",\n    \"transformer-bolt\",\n    \"transgender\",\n    \"transporter-1\",\n    \"transporter-2\",\n    \"transporter-3\",\n    \"transporter-4\",\n    \"transporter-5\",\n    \"transporter-6\",\n    \"transporter-7\",\n    \"transporter-empty\",\n    \"transporter\",\n    \"trash-arrow-up\",\n    \"trash-can-arrow-up\",\n    \"trash-can-check\",\n    \"trash-can-clock\",\n    \"trash-can-list\",\n    \"trash-can-plus\",\n    \"trash-can-slash\",\n    \"trash-can-undo\",\n    \"trash-can-xmark\",\n    \"trash-can\",\n    \"trash-check\",\n    \"trash-clock\",\n    \"trash-list\",\n    \"trash-plus\",\n    \"trash-slash\",\n    \"trash-undo\",\n    \"trash-xmark\",\n    \"trash\",\n    \"treasure-chest\",\n    \"tree-christmas\",\n    \"tree-city\",\n    \"tree-deciduous\",\n    \"tree-decorated\",\n    \"tree-large\",\n    \"tree-palm\",\n    \"tree\",\n    \"trees\",\n    \"triangle-exclamation\",\n    \"triangle-instrument\",\n    \"triangle-person-digging\",\n    \"triangle\",\n    \"tricycle-adult\",\n    \"tricycle\",\n    \"trillium\",\n    \"trophy-star\",\n    \"trophy\",\n    \"trowel-bricks\",\n    \"trowel\",\n    \"truck-arrow-right\",\n    \"truck-bolt\",\n    \"truck-clock\",\n    \"truck-container-empty\",\n    \"truck-container\",\n    \"truck-droplet\",\n    \"truck-fast\",\n    \"truck-field-un\",\n    \"truck-field\",\n    \"truck-fire\",\n    \"truck-flatbed\",\n    \"truck-front\",\n    \"truck-ladder\",\n    \"truck-medical\",\n    \"truck-monster\",\n    \"truck-moving\",\n    \"truck-pickup\",\n    \"truck-plane\",\n    \"truck-plow\",\n    \"truck-ramp-box\",\n    \"truck-ramp-couch\",\n    \"truck-ramp\",\n    \"truck-tow\",\n    \"truck-utensils\",\n    \"truck\",\n    \"trumpet\",\n    \"tty-answer\",\n    \"tty\",\n    \"tugrik-sign\",\n    \"turkey\",\n    \"turkish-lira-sign\",\n    \"turn-down-left\",\n    \"turn-down-right\",\n    \"turn-down\",\n    \"turn-left-down\",\n    \"turn-left-up\",\n    \"turn-left\",\n    \"turn-right\",\n    \"turn-up\",\n    \"turntable\",\n    \"turtle\",\n    \"tv-music\",\n    \"tv-retro\",\n    \"tv\",\n    \"typewriter\",\n    \"u\",\n    \"ufo-beam\",\n    \"ufo\",\n    \"umbrella-beach\",\n    \"umbrella-simple\",\n    \"umbrella\",\n    \"underline\",\n    \"unicorn\",\n    \"uniform-martial-arts\",\n    \"union\",\n    \"universal-access\",\n    \"unlock-keyhole\",\n    \"unlock\",\n    \"up-down-left-right\",\n    \"up-down\",\n    \"up-from-bracket\",\n    \"up-from-dotted-line\",\n    \"up-from-line\",\n    \"up-left\",\n    \"up-long\",\n    \"up-right-and-down-left-from-center\",\n    \"up-right-from-square\",\n    \"up-right\",\n    \"up-to-bracket\",\n    \"up-to-dotted-line\",\n    \"up-to-line\",\n    \"up\",\n    \"upload\",\n    \"usb-drive\",\n    \"user-alien\",\n    \"user-astronaut\",\n    \"user-beard-bolt\",\n    \"user-bounty-hunter\",\n    \"user-check\",\n    \"user-chef\",\n    \"user-clock\",\n    \"user-cowboy\",\n    \"user-crown\",\n    \"user-doctor-hair-long\",\n    \"user-doctor-hair\",\n    \"user-doctor-message\",\n    \"user-doctor\",\n    \"user-gear\",\n    \"user-graduate\",\n    \"user-group-crown\",\n    \"user-group-simple\",\n    \"user-group\",\n    \"user-hair-buns\",\n    \"user-hair-long\",\n    \"user-hair-mullet\",\n    \"user-hair\",\n    \"user-headset\",\n    \"user-helmet-safety\",\n    \"user-hoodie\",\n    \"user-injured\",\n    \"user-large-slash\",\n    \"user-large\",\n    \"user-lock\",\n    \"user-magnifying-glass\",\n    \"user-minus\",\n    \"user-music\",\n    \"user-ninja\",\n    \"user-nurse-hair-long\",\n    \"user-nurse-hair\",\n    \"user-nurse\",\n    \"user-pen\",\n    \"user-pilot-tie\",\n    \"user-pilot\",\n    \"user-plus\",\n    \"user-police-tie\",\n    \"user-police\",\n    \"user-robot-xmarks\",\n    \"user-robot\",\n    \"user-secret\",\n    \"user-shakespeare\",\n    \"user-shield\",\n    \"user-slash\",\n    \"user-tag\",\n    \"user-tie-hair-long\",\n    \"user-tie-hair\",\n    \"user-tie\",\n    \"user-unlock\",\n    \"user-visor\",\n    \"user-vneck-hair-long\",\n    \"user-vneck-hair\",\n    \"user-vneck\",\n    \"user-xmark\",\n    \"user\",\n    \"users-between-lines\",\n    \"users-gear\",\n    \"users-line\",\n    \"users-medical\",\n    \"users-rays\",\n    \"users-rectangle\",\n    \"users-slash\",\n    \"users-viewfinder\",\n    \"users\",\n    \"utensils-slash\",\n    \"utensils\",\n    \"utility-pole-double\",\n    \"utility-pole\",\n    \"v\",\n    \"vacuum-robot\",\n    \"vacuum\",\n    \"value-absolute\",\n    \"van-shuttle\",\n    \"vault\",\n    \"vector-circle\",\n    \"vector-polygon\",\n    \"vector-square\",\n    \"vent-damper\",\n    \"venus-double\",\n    \"venus-mars\",\n    \"venus\",\n    \"vest-patches\",\n    \"vest\",\n    \"vial-circle-check\",\n    \"vial-virus\",\n    \"vial\",\n    \"vials\",\n    \"video-arrow-down-left\",\n    \"video-arrow-up-right\",\n    \"video-plus\",\n    \"video-slash\",\n    \"video\",\n    \"vihara\",\n    \"violin\",\n    \"virus-covid-slash\",\n    \"virus-covid\",\n    \"virus-slash\",\n    \"virus\",\n    \"viruses\",\n    \"voicemail\",\n    \"volcano\",\n    \"volleyball\",\n    \"volume-high\",\n    \"volume-low\",\n    \"volume-off\",\n    \"volume-slash\",\n    \"volume-xmark\",\n    \"volume\",\n    \"vr-cardboard\",\n    \"w\",\n    \"waffle\",\n    \"wagon-covered\",\n    \"walker\",\n    \"walkie-talkie\",\n    \"wallet\",\n    \"wand-magic-sparkles\",\n    \"wand-magic\",\n    \"wand-sparkles\",\n    \"wand\",\n    \"warehouse-full\",\n    \"warehouse\",\n    \"washing-machine\",\n    \"watch-apple\",\n    \"watch-calculator\",\n    \"watch-fitness\",\n    \"watch-smart\",\n    \"watch\",\n    \"water-arrow-down\",\n    \"water-arrow-up\",\n    \"water-ladder\",\n    \"water\",\n    \"watermelon-slice\",\n    \"wave-pulse\",\n    \"wave-sine\",\n    \"wave-square\",\n    \"wave-triangle\",\n    \"wave\",\n    \"waveform-lines\",\n    \"waveform\",\n    \"waves-sine\",\n    \"web-awesome\",\n    \"webhook\",\n    \"weight-hanging\",\n    \"weight-scale\",\n    \"whale\",\n    \"wheat-awn-circle-exclamation\",\n    \"wheat-awn-slash\",\n    \"wheat-awn\",\n    \"wheat-slash\",\n    \"wheat\",\n    \"wheelchair-move\",\n    \"wheelchair\",\n    \"whiskey-glass-ice\",\n    \"whiskey-glass\",\n    \"whistle\",\n    \"wifi-exclamation\",\n    \"wifi-fair\",\n    \"wifi-slash\",\n    \"wifi-weak\",\n    \"wifi\",\n    \"wind-turbine\",\n    \"wind-warning\",\n    \"wind\",\n    \"window-flip\",\n    \"window-frame-open\",\n    \"window-frame\",\n    \"window-maximize\",\n    \"window-minimize\",\n    \"window-restore\",\n    \"window\",\n    \"windsock\",\n    \"wine-bottle\",\n    \"wine-glass-crack\",\n    \"wine-glass-empty\",\n    \"wine-glass\",\n    \"won-sign\",\n    \"worm\",\n    \"wreath-laurel\",\n    \"wreath\",\n    \"wrench-simple\",\n    \"wrench\",\n    \"x-ray\",\n    \"x\",\n    \"xmark-large\",\n    \"xmark-to-slot\",\n    \"xmark\",\n    \"xmarks-lines\",\n    \"y\",\n    \"yen-sign\",\n    \"yin-yang\",\n    \"z\"\n  ],\n  \"duotone-light\": [\n    \"0\",\n    \"00\",\n    \"1\",\n    \"2\",\n    \"3\",\n    \"360-degrees\",\n    \"4\",\n    \"5\",\n    \"6\",\n    \"7\",\n    \"8\",\n    \"9\",\n    \"a\",\n    \"abacus\",\n    \"accent-grave\",\n    \"acorn\",\n    \"address-book\",\n    \"address-card\",\n    \"air-conditioner\",\n    \"airplay\",\n    \"alarm-clock\",\n    \"alarm-exclamation\",\n    \"alarm-plus\",\n    \"alarm-snooze\",\n    \"album-circle-plus\",\n    \"album-circle-user\",\n    \"album-collection-circle-plus\",\n    \"album-collection-circle-user\",\n    \"album-collection\",\n    \"album\",\n    \"alicorn\",\n    \"alien-8bit\",\n    \"alien\",\n    \"align-center\",\n    \"align-justify\",\n    \"align-left\",\n    \"align-right\",\n    \"align-slash\",\n    \"alt\",\n    \"amp-guitar\",\n    \"ampersand\",\n    \"anchor-circle-check\",\n    \"anchor-circle-exclamation\",\n    \"anchor-circle-xmark\",\n    \"anchor-lock\",\n    \"anchor\",\n    \"angel\",\n    \"angle-90\",\n    \"angle-down\",\n    \"angle-left\",\n    \"angle-right\",\n    \"angle-up\",\n    \"angle\",\n    \"angles-down\",\n    \"angles-left\",\n    \"angles-right\",\n    \"angles-up-down\",\n    \"angles-up\",\n    \"ankh\",\n    \"ant\",\n    \"apartment\",\n    \"aperture\",\n    \"apostrophe\",\n    \"apple-core\",\n    \"apple-whole\",\n    \"archway\",\n    \"arrow-down-1-9\",\n    \"arrow-down-9-1\",\n    \"arrow-down-a-z\",\n    \"arrow-down-arrow-up\",\n    \"arrow-down-big-small\",\n    \"arrow-down-from-arc\",\n    \"arrow-down-from-bracket\",\n    \"arrow-down-from-dotted-line\",\n    \"arrow-down-from-line\",\n    \"arrow-down-left-and-arrow-up-right-to-center\",\n    \"arrow-down-left\",\n    \"arrow-down-long\",\n    \"arrow-down-right\",\n    \"arrow-down-short-wide\",\n    \"arrow-down-small-big\",\n    \"arrow-down-square-triangle\",\n    \"arrow-down-to-arc\",\n    \"arrow-down-to-bracket\",\n    \"arrow-down-to-dotted-line\",\n    \"arrow-down-to-line\",\n    \"arrow-down-to-square\",\n    \"arrow-down-triangle-square\",\n    \"arrow-down-up-across-line\",\n    \"arrow-down-up-lock\",\n    \"arrow-down-wide-short\",\n    \"arrow-down-z-a\",\n    \"arrow-down\",\n    \"arrow-left-from-arc\",\n    \"arrow-left-from-bracket\",\n    \"arrow-left-from-line\",\n    \"arrow-left-long-to-line\",\n    \"arrow-left-long\",\n    \"arrow-left-to-arc\",\n    \"arrow-left-to-bracket\",\n    \"arrow-left-to-line\",\n    \"arrow-left\",\n    \"arrow-pointer\",\n    \"arrow-progress\",\n    \"arrow-right-arrow-left\",\n    \"arrow-right-from-arc\",\n    \"arrow-right-from-bracket\",\n    \"arrow-right-from-line\",\n    \"arrow-right-long-to-line\",\n    \"arrow-right-long\",\n    \"arrow-right-to-arc\",\n    \"arrow-right-to-bracket\",\n    \"arrow-right-to-city\",\n    \"arrow-right-to-line\",\n    \"arrow-right\",\n    \"arrow-rotate-left\",\n    \"arrow-rotate-right\",\n    \"arrow-trend-down\",\n    \"arrow-trend-up\",\n    \"arrow-turn-down-left\",\n    \"arrow-turn-down-right\",\n    \"arrow-turn-down\",\n    \"arrow-turn-left-down\",\n    \"arrow-turn-left-up\",\n    \"arrow-turn-left\",\n    \"arrow-turn-right\",\n    \"arrow-turn-up\",\n    \"arrow-up-1-9\",\n    \"arrow-up-9-1\",\n    \"arrow-up-a-z\",\n    \"arrow-up-arrow-down\",\n    \"arrow-up-big-small\",\n    \"arrow-up-from-arc\",\n    \"arrow-up-from-bracket\",\n    \"arrow-up-from-dotted-line\",\n    \"arrow-up-from-ground-water\",\n    \"arrow-up-from-line\",\n    \"arrow-up-from-square\",\n    \"arrow-up-from-water-pump\",\n    \"arrow-up-left-from-circle\",\n    \"arrow-up-left\",\n    \"arrow-up-long\",\n    \"arrow-up-right-and-arrow-down-left-from-center\",\n    \"arrow-up-right-dots\",\n    \"arrow-up-right-from-square\",\n    \"arrow-up-right\",\n    \"arrow-up-short-wide\",\n    \"arrow-up-small-big\",\n    \"arrow-up-square-triangle\",\n    \"arrow-up-to-arc\",\n    \"arrow-up-to-bracket\",\n    \"arrow-up-to-dotted-line\",\n    \"arrow-up-to-line\",\n    \"arrow-up-triangle-square\",\n    \"arrow-up-wide-short\",\n    \"arrow-up-z-a\",\n    \"arrow-up\",\n    \"arrows-cross\",\n    \"arrows-down-to-line\",\n    \"arrows-down-to-people\",\n    \"arrows-from-dotted-line\",\n    \"arrows-from-line\",\n    \"arrows-left-right-to-line\",\n    \"arrows-left-right\",\n    \"arrows-maximize\",\n    \"arrows-minimize\",\n    \"arrows-repeat-1\",\n    \"arrows-repeat\",\n    \"arrows-retweet\",\n    \"arrows-rotate-reverse\",\n    \"arrows-rotate\",\n    \"arrows-spin\",\n    \"arrows-split-up-and-left\",\n    \"arrows-to-circle\",\n    \"arrows-to-dot\",\n    \"arrows-to-dotted-line\",\n    \"arrows-to-eye\",\n    \"arrows-to-line\",\n    \"arrows-turn-right\",\n    \"arrows-turn-to-dots\",\n    \"arrows-up-down-left-right\",\n    \"arrows-up-down\",\n    \"arrows-up-to-line\",\n    \"asterisk\",\n    \"at\",\n    \"atom-simple\",\n    \"atom\",\n    \"audio-description-slash\",\n    \"audio-description\",\n    \"austral-sign\",\n    \"avocado\",\n    \"award-simple\",\n    \"award\",\n    \"axe-battle\",\n    \"axe\",\n    \"b\",\n    \"baby-carriage\",\n    \"baby\",\n    \"backpack\",\n    \"backward-fast\",\n    \"backward-step\",\n    \"backward\",\n    \"bacon\",\n    \"bacteria\",\n    \"bacterium\",\n    \"badge-check\",\n    \"badge-dollar\",\n    \"badge-percent\",\n    \"badge-sheriff\",\n    \"badge\",\n    \"badger-honey\",\n    \"badminton\",\n    \"bag-seedling\",\n    \"bag-shopping-minus\",\n    \"bag-shopping-plus\",\n    \"bag-shopping\",\n    \"bagel\",\n    \"bags-shopping\",\n    \"baguette\",\n    \"bahai\",\n    \"baht-sign\",\n    \"ball-pile\",\n    \"balloon\",\n    \"balloons\",\n    \"ballot-check\",\n    \"ballot\",\n    \"ban-bug\",\n    \"ban-parking\",\n    \"ban-smoking\",\n    \"ban\",\n    \"banana\",\n    \"bandage\",\n    \"bangladeshi-taka-sign\",\n    \"banjo\",\n    \"barcode-read\",\n    \"barcode-scan\",\n    \"barcode\",\n    \"bars-filter\",\n    \"bars-progress\",\n    \"bars-sort\",\n    \"bars-staggered\",\n    \"bars\",\n    \"baseball-bat-ball\",\n    \"baseball\",\n    \"basket-shopping-minus\",\n    \"basket-shopping-plus\",\n    \"basket-shopping-simple\",\n    \"basket-shopping\",\n    \"basketball-hoop\",\n    \"basketball\",\n    \"bat\",\n    \"bath\",\n    \"battery-bolt\",\n    \"battery-empty\",\n    \"battery-exclamation\",\n    \"battery-full\",\n    \"battery-half\",\n    \"battery-low\",\n    \"battery-quarter\",\n    \"battery-slash\",\n    \"battery-three-quarters\",\n    \"bed-bunk\",\n    \"bed-empty\",\n    \"bed-front\",\n    \"bed-pulse\",\n    \"bed\",\n    \"bee\",\n    \"beer-mug-empty\",\n    \"beer-mug\",\n    \"bell-concierge\",\n    \"bell-exclamation\",\n    \"bell-on\",\n    \"bell-plus\",\n    \"bell-ring\",\n    \"bell-school-slash\",\n    \"bell-school\",\n    \"bell-slash\",\n    \"bell\",\n    \"bells\",\n    \"bench-tree\",\n    \"bezier-curve\",\n    \"bicycle\",\n    \"billboard\",\n    \"bin-bottles-recycle\",\n    \"bin-bottles\",\n    \"bin-recycle\",\n    \"binary-circle-check\",\n    \"binary-lock\",\n    \"binary-slash\",\n    \"binary\",\n    \"binoculars\",\n    \"biohazard\",\n    \"bird\",\n    \"bitcoin-sign\",\n    \"blanket-fire\",\n    \"blanket\",\n    \"blender-phone\",\n    \"blender\",\n    \"blinds-open\",\n    \"blinds-raised\",\n    \"blinds\",\n    \"block-brick-fire\",\n    \"block-brick\",\n    \"block-question\",\n    \"block-quote\",\n    \"block\",\n    \"blog\",\n    \"blueberries\",\n    \"bluetooth\",\n    \"bold\",\n    \"bolt-auto\",\n    \"bolt-lightning\",\n    \"bolt-slash\",\n    \"bolt\",\n    \"bomb\",\n    \"bone-break\",\n    \"bone\",\n    \"bong\",\n    \"book-arrow-right\",\n    \"book-arrow-up\",\n    \"book-atlas\",\n    \"book-bible\",\n    \"book-blank\",\n    \"book-bookmark\",\n    \"book-circle-arrow-right\",\n    \"book-circle-arrow-up\",\n    \"book-copy\",\n    \"book-font\",\n    \"book-heart\",\n    \"book-journal-whills\",\n    \"book-medical\",\n    \"book-open-cover\",\n    \"book-open-reader\",\n    \"book-open\",\n    \"book-quran\",\n    \"book-section\",\n    \"book-skull\",\n    \"book-sparkles\",\n    \"book-tanakh\",\n    \"book-user\",\n    \"book\",\n    \"bookmark-slash\",\n    \"bookmark\",\n    \"books-medical\",\n    \"books\",\n    \"boombox\",\n    \"boot-heeled\",\n    \"boot\",\n    \"booth-curtain\",\n    \"border-all\",\n    \"border-bottom-right\",\n    \"border-bottom\",\n    \"border-center-h\",\n    \"border-center-v\",\n    \"border-inner\",\n    \"border-left\",\n    \"border-none\",\n    \"border-outer\",\n    \"border-right\",\n    \"border-top-left\",\n    \"border-top\",\n    \"bore-hole\",\n    \"bottle-baby\",\n    \"bottle-droplet\",\n    \"bottle-water\",\n    \"bow-arrow\",\n    \"bowl-chopsticks-noodles\",\n    \"bowl-chopsticks\",\n    \"bowl-food\",\n    \"bowl-hot\",\n    \"bowl-rice\",\n    \"bowl-scoop\",\n    \"bowl-scoops\",\n    \"bowl-soft-serve\",\n    \"bowl-spoon\",\n    \"bowling-ball-pin\",\n    \"bowling-ball\",\n    \"bowling-pins\",\n    \"box-archive\",\n    \"box-ballot\",\n    \"box-check\",\n    \"box-circle-check\",\n    \"box-dollar\",\n    \"box-heart\",\n    \"box-open-full\",\n    \"box-open\",\n    \"box-taped\",\n    \"box-tissue\",\n    \"box\",\n    \"boxes-packing\",\n    \"boxes-stacked\",\n    \"boxing-glove\",\n    \"bracket-curly-right\",\n    \"bracket-curly\",\n    \"bracket-round-right\",\n    \"bracket-round\",\n    \"bracket-square-right\",\n    \"bracket-square\",\n    \"brackets-curly\",\n    \"brackets-round\",\n    \"brackets-square\",\n    \"braille\",\n    \"brain-arrow-curved-right\",\n    \"brain-circuit\",\n    \"brain\",\n    \"brake-warning\",\n    \"brazilian-real-sign\",\n    \"bread-loaf\",\n    \"bread-slice-butter\",\n    \"bread-slice\",\n    \"bridge-circle-check\",\n    \"bridge-circle-exclamation\",\n    \"bridge-circle-xmark\",\n    \"bridge-lock\",\n    \"bridge-suspension\",\n    \"bridge-water\",\n    \"bridge\",\n    \"briefcase-arrow-right\",\n    \"briefcase-blank\",\n    \"briefcase-medical\",\n    \"briefcase\",\n    \"brightness-low\",\n    \"brightness\",\n    \"bring-forward\",\n    \"bring-front\",\n    \"broccoli\",\n    \"broom-ball\",\n    \"broom-wide\",\n    \"broom\",\n    \"browser\",\n    \"browsers\",\n    \"brush\",\n    \"bucket\",\n    \"bug-slash\",\n    \"bug\",\n    \"bugs\",\n    \"building-circle-arrow-right\",\n    \"building-circle-check\",\n    \"building-circle-exclamation\",\n    \"building-circle-xmark\",\n    \"building-columns\",\n    \"building-flag\",\n    \"building-lock\",\n    \"building-magnifying-glass\",\n    \"building-memo\",\n    \"building-ngo\",\n    \"building-shield\",\n    \"building-un\",\n    \"building-user\",\n    \"building-wheat\",\n    \"building\",\n    \"buildings\",\n    \"bulldozer\",\n    \"bullhorn\",\n    \"bullseye-arrow\",\n    \"bullseye-pointer\",\n    \"bullseye\",\n    \"buoy-mooring\",\n    \"buoy\",\n    \"burger-cheese\",\n    \"burger-fries\",\n    \"burger-glass\",\n    \"burger-lettuce\",\n    \"burger-soda\",\n    \"burger\",\n    \"burrito\",\n    \"burst\",\n    \"bus-school\",\n    \"bus-simple\",\n    \"bus\",\n    \"business-time\",\n    \"butter\",\n    \"c\",\n    \"cabin\",\n    \"cabinet-filing\",\n    \"cable-car\",\n    \"cactus\",\n    \"caduceus\",\n    \"cake-candles\",\n    \"cake-slice\",\n    \"calculator-simple\",\n    \"calculator\",\n    \"calendar-arrow-down\",\n    \"calendar-arrow-up\",\n    \"calendar-check\",\n    \"calendar-circle-exclamation\",\n    \"calendar-circle-minus\",\n    \"calendar-circle-plus\",\n    \"calendar-circle-user\",\n    \"calendar-clock\",\n    \"calendar-day\",\n    \"calendar-days\",\n    \"calendar-exclamation\",\n    \"calendar-heart\",\n    \"calendar-image\",\n    \"calendar-lines-pen\",\n    \"calendar-lines\",\n    \"calendar-minus\",\n    \"calendar-pen\",\n    \"calendar-plus\",\n    \"calendar-range\",\n    \"calendar-star\",\n    \"calendar-users\",\n    \"calendar-week\",\n    \"calendar-xmark\",\n    \"calendar\",\n    \"calendars\",\n    \"camcorder\",\n    \"camera-cctv\",\n    \"camera-movie\",\n    \"camera-polaroid\",\n    \"camera-retro\",\n    \"camera-rotate\",\n    \"camera-security\",\n    \"camera-slash\",\n    \"camera-viewfinder\",\n    \"camera-web-slash\",\n    \"camera-web\",\n    \"camera\",\n    \"campfire\",\n    \"campground\",\n    \"can-food\",\n    \"candle-holder\",\n    \"candy-bar\",\n    \"candy-cane\",\n    \"candy-corn\",\n    \"candy\",\n    \"cannabis\",\n    \"cannon\",\n    \"capsules\",\n    \"car-battery\",\n    \"car-bolt\",\n    \"car-building\",\n    \"car-bump\",\n    \"car-burst\",\n    \"car-bus\",\n    \"car-circle-bolt\",\n    \"car-garage\",\n    \"car-mirrors\",\n    \"car-on\",\n    \"car-rear\",\n    \"car-side-bolt\",\n    \"car-side\",\n    \"car-tilt\",\n    \"car-tunnel\",\n    \"car-wash\",\n    \"car-wrench\",\n    \"car\",\n    \"caravan-simple\",\n    \"caravan\",\n    \"card-club\",\n    \"card-diamond\",\n    \"card-heart\",\n    \"card-spade\",\n    \"cards-blank\",\n    \"cards\",\n    \"caret-down\",\n    \"caret-left\",\n    \"caret-right\",\n    \"caret-up\",\n    \"carpool\",\n    \"carrot\",\n    \"cars\",\n    \"cart-arrow-down\",\n    \"cart-arrow-up\",\n    \"cart-circle-arrow-down\",\n    \"cart-circle-arrow-up\",\n    \"cart-circle-check\",\n    \"cart-circle-exclamation\",\n    \"cart-circle-plus\",\n    \"cart-circle-xmark\",\n    \"cart-flatbed-boxes\",\n    \"cart-flatbed-empty\",\n    \"cart-flatbed-suitcase\",\n    \"cart-flatbed\",\n    \"cart-minus\",\n    \"cart-plus\",\n    \"cart-shopping-fast\",\n    \"cart-shopping\",\n    \"cart-xmark\",\n    \"cash-register\",\n    \"cassette-betamax\",\n    \"cassette-tape\",\n    \"cassette-vhs\",\n    \"castle\",\n    \"cat-space\",\n    \"cat\",\n    \"cauldron\",\n    \"cedi-sign\",\n    \"cent-sign\",\n    \"certificate\",\n    \"chair-office\",\n    \"chair\",\n    \"chalkboard-user\",\n    \"chalkboard\",\n    \"champagne-glass\",\n    \"champagne-glasses\",\n    \"charging-station\",\n    \"chart-area\",\n    \"chart-bar\",\n    \"chart-bullet\",\n    \"chart-candlestick\",\n    \"chart-column\",\n    \"chart-diagram\",\n    \"chart-fft\",\n    \"chart-gantt\",\n    \"chart-kanban\",\n    \"chart-line-down\",\n    \"chart-line-up-down\",\n    \"chart-line-up\",\n    \"chart-line\",\n    \"chart-mixed-up-circle-currency\",\n    \"chart-mixed-up-circle-dollar\",\n    \"chart-mixed\",\n    \"chart-network\",\n    \"chart-pie-simple-circle-currency\",\n    \"chart-pie-simple-circle-dollar\",\n    \"chart-pie-simple\",\n    \"chart-pie\",\n    \"chart-pyramid\",\n    \"chart-radar\",\n    \"chart-scatter-3d\",\n    \"chart-scatter-bubble\",\n    \"chart-scatter\",\n    \"chart-simple-horizontal\",\n    \"chart-simple\",\n    \"chart-sine\",\n    \"chart-tree-map\",\n    \"chart-user\",\n    \"chart-waterfall\",\n    \"check-double\",\n    \"check-to-slot\",\n    \"check\",\n    \"cheese-swiss\",\n    \"cheese\",\n    \"cherries\",\n    \"chess-bishop-piece\",\n    \"chess-bishop\",\n    \"chess-board\",\n    \"chess-clock-flip\",\n    \"chess-clock\",\n    \"chess-king-piece\",\n    \"chess-king\",\n    \"chess-knight-piece\",\n    \"chess-knight\",\n    \"chess-pawn-piece\",\n    \"chess-pawn\",\n    \"chess-queen-piece\",\n    \"chess-queen\",\n    \"chess-rook-piece\",\n    \"chess-rook\",\n    \"chess\",\n    \"chestnut\",\n    \"chevron-down\",\n    \"chevron-left\",\n    \"chevron-right\",\n    \"chevron-up\",\n    \"chevrons-down\",\n    \"chevrons-left\",\n    \"chevrons-right\",\n    \"chevrons-up\",\n    \"chf-sign\",\n    \"child-combatant\",\n    \"child-dress\",\n    \"child-reaching\",\n    \"child\",\n    \"children\",\n    \"chimney\",\n    \"chopsticks\",\n    \"church\",\n    \"circle-0\",\n    \"circle-1\",\n    \"circle-2\",\n    \"circle-3\",\n    \"circle-4\",\n    \"circle-5\",\n    \"circle-6\",\n    \"circle-7\",\n    \"circle-8\",\n    \"circle-9\",\n    \"circle-a\",\n    \"circle-ampersand\",\n    \"circle-arrow-down-left\",\n    \"circle-arrow-down-right\",\n    \"circle-arrow-down\",\n    \"circle-arrow-left\",\n    \"circle-arrow-right\",\n    \"circle-arrow-up-left\",\n    \"circle-arrow-up-right\",\n    \"circle-arrow-up\",\n    \"circle-b\",\n    \"circle-bolt\",\n    \"circle-book-open\",\n    \"circle-bookmark\",\n    \"circle-c\",\n    \"circle-calendar\",\n    \"circle-camera\",\n    \"circle-caret-down\",\n    \"circle-caret-left\",\n    \"circle-caret-right\",\n    \"circle-caret-up\",\n    \"circle-check\",\n    \"circle-chevron-down\",\n    \"circle-chevron-left\",\n    \"circle-chevron-right\",\n    \"circle-chevron-up\",\n    \"circle-d\",\n    \"circle-dashed\",\n    \"circle-divide\",\n    \"circle-dollar-to-slot\",\n    \"circle-dollar\",\n    \"circle-dot\",\n    \"circle-down-left\",\n    \"circle-down-right\",\n    \"circle-down\",\n    \"circle-e\",\n    \"circle-ellipsis-vertical\",\n    \"circle-ellipsis\",\n    \"circle-envelope\",\n    \"circle-euro\",\n    \"circle-exclamation-check\",\n    \"circle-exclamation\",\n    \"circle-f\",\n    \"circle-g\",\n    \"circle-gf\",\n    \"circle-h\",\n    \"circle-half-stroke\",\n    \"circle-half\",\n    \"circle-heart\",\n    \"circle-i\",\n    \"circle-info\",\n    \"circle-j\",\n    \"circle-k\",\n    \"circle-l\",\n    \"circle-left\",\n    \"circle-location-arrow\",\n    \"circle-m\",\n    \"circle-microphone-lines\",\n    \"circle-microphone\",\n    \"circle-minus\",\n    \"circle-n\",\n    \"circle-nodes\",\n    \"circle-notch\",\n    \"circle-o\",\n    \"circle-p\",\n    \"circle-parking\",\n    \"circle-pause\",\n    \"circle-phone-flip\",\n    \"circle-phone-hangup\",\n    \"circle-phone\",\n    \"circle-play\",\n    \"circle-plus\",\n    \"circle-q\",\n    \"circle-quarter-stroke\",\n    \"circle-quarter\",\n    \"circle-quarters\",\n    \"circle-question\",\n    \"circle-r\",\n    \"circle-radiation\",\n    \"circle-right\",\n    \"circle-s\",\n    \"circle-small\",\n    \"circle-sort-down\",\n    \"circle-sort-up\",\n    \"circle-sort\",\n    \"circle-star\",\n    \"circle-sterling\",\n    \"circle-stop\",\n    \"circle-t\",\n    \"circle-three-quarters-stroke\",\n    \"circle-three-quarters\",\n    \"circle-trash\",\n    \"circle-u\",\n    \"circle-up-left\",\n    \"circle-up-right\",\n    \"circle-up\",\n    \"circle-user\",\n    \"circle-v\",\n    \"circle-video\",\n    \"circle-w\",\n    \"circle-waveform-lines\",\n    \"circle-wifi-circle-wifi\",\n    \"circle-wifi\",\n    \"circle-x\",\n    \"circle-xmark\",\n    \"circle-y\",\n    \"circle-yen\",\n    \"circle-z\",\n    \"circle\",\n    \"circles-overlap-3\",\n    \"circles-overlap\",\n    \"citrus-slice\",\n    \"citrus\",\n    \"city\",\n    \"clapperboard-play\",\n    \"clapperboard\",\n    \"clarinet\",\n    \"claw-marks\",\n    \"clipboard-check\",\n    \"clipboard-list-check\",\n    \"clipboard-list\",\n    \"clipboard-medical\",\n    \"clipboard-prescription\",\n    \"clipboard-question\",\n    \"clipboard-user\",\n    \"clipboard\",\n    \"clock-desk\",\n    \"clock-eight-thirty\",\n    \"clock-eight\",\n    \"clock-eleven-thirty\",\n    \"clock-eleven\",\n    \"clock-five-thirty\",\n    \"clock-five\",\n    \"clock-four-thirty\",\n    \"clock-nine-thirty\",\n    \"clock-nine\",\n    \"clock-one-thirty\",\n    \"clock-one\",\n    \"clock-rotate-left\",\n    \"clock-seven-thirty\",\n    \"clock-seven\",\n    \"clock-six-thirty\",\n    \"clock-six\",\n    \"clock-ten-thirty\",\n    \"clock-ten\",\n    \"clock-three-thirty\",\n    \"clock-three\",\n    \"clock-twelve-thirty\",\n    \"clock-twelve\",\n    \"clock-two-thirty\",\n    \"clock-two\",\n    \"clock\",\n    \"clone\",\n    \"closed-captioning-slash\",\n    \"closed-captioning\",\n    \"clothes-hanger\",\n    \"cloud-arrow-down\",\n    \"cloud-arrow-up\",\n    \"cloud-binary\",\n    \"cloud-bolt-moon\",\n    \"cloud-bolt-sun\",\n    \"cloud-bolt\",\n    \"cloud-check\",\n    \"cloud-drizzle\",\n    \"cloud-exclamation\",\n    \"cloud-fog\",\n    \"cloud-hail-mixed\",\n    \"cloud-hail\",\n    \"cloud-meatball\",\n    \"cloud-minus\",\n    \"cloud-moon-rain\",\n    \"cloud-moon\",\n    \"cloud-music\",\n    \"cloud-plus\",\n    \"cloud-question\",\n    \"cloud-rain\",\n    \"cloud-rainbow\",\n    \"cloud-showers-heavy\",\n    \"cloud-showers-water\",\n    \"cloud-showers\",\n    \"cloud-slash\",\n    \"cloud-sleet\",\n    \"cloud-snow\",\n    \"cloud-sun-rain\",\n    \"cloud-sun\",\n    \"cloud-word\",\n    \"cloud-xmark\",\n    \"cloud\",\n    \"clouds-moon\",\n    \"clouds-sun\",\n    \"clouds\",\n    \"clover\",\n    \"club\",\n    \"coconut\",\n    \"code-branch\",\n    \"code-commit\",\n    \"code-compare\",\n    \"code-fork\",\n    \"code-merge\",\n    \"code-pull-request-closed\",\n    \"code-pull-request-draft\",\n    \"code-pull-request\",\n    \"code-simple\",\n    \"code\",\n    \"coffee-bean\",\n    \"coffee-beans\",\n    \"coffee-pot\",\n    \"coffin-cross\",\n    \"coffin\",\n    \"coin-blank\",\n    \"coin-front\",\n    \"coin-vertical\",\n    \"coin\",\n    \"coins\",\n    \"colon-sign\",\n    \"colon\",\n    \"columns-3\",\n    \"comet\",\n    \"comma\",\n    \"command\",\n    \"comment-arrow-down\",\n    \"comment-arrow-up-right\",\n    \"comment-arrow-up\",\n    \"comment-captions\",\n    \"comment-check\",\n    \"comment-code\",\n    \"comment-dollar\",\n    \"comment-dots\",\n    \"comment-exclamation\",\n    \"comment-heart\",\n    \"comment-image\",\n    \"comment-lines\",\n    \"comment-medical\",\n    \"comment-middle-top\",\n    \"comment-middle\",\n    \"comment-minus\",\n    \"comment-music\",\n    \"comment-nodes\",\n    \"comment-pen\",\n    \"comment-plus\",\n    \"comment-question\",\n    \"comment-quote\",\n    \"comment-slash\",\n    \"comment-smile\",\n    \"comment-sms\",\n    \"comment-text\",\n    \"comment-xmark\",\n    \"comment\",\n    \"comments-dollar\",\n    \"comments-question-check\",\n    \"comments-question\",\n    \"comments\",\n    \"compact-disc\",\n    \"compass-drafting\",\n    \"compass-slash\",\n    \"compass\",\n    \"compress-wide\",\n    \"compress\",\n    \"computer-classic\",\n    \"computer-mouse-scrollwheel\",\n    \"computer-mouse\",\n    \"computer-speaker\",\n    \"computer\",\n    \"container-storage\",\n    \"conveyor-belt-arm\",\n    \"conveyor-belt-boxes\",\n    \"conveyor-belt-empty\",\n    \"conveyor-belt\",\n    \"cookie-bite\",\n    \"cookie\",\n    \"copy\",\n    \"copyright\",\n    \"corn\",\n    \"corner\",\n    \"couch\",\n    \"court-sport\",\n    \"cow\",\n    \"cowbell-circle-plus\",\n    \"cowbell\",\n    \"crab\",\n    \"crate-apple\",\n    \"crate-empty\",\n    \"credit-card-blank\",\n    \"credit-card-front\",\n    \"credit-card\",\n    \"cricket-bat-ball\",\n    \"croissant\",\n    \"crop-simple\",\n    \"crop\",\n    \"cross\",\n    \"crosshairs-simple\",\n    \"crosshairs\",\n    \"crow\",\n    \"crown\",\n    \"crutch\",\n    \"crutches\",\n    \"cruzeiro-sign\",\n    \"crystal-ball\",\n    \"cube\",\n    \"cubes-stacked\",\n    \"cubes\",\n    \"cucumber\",\n    \"cup-straw-swoosh\",\n    \"cup-straw\",\n    \"cup-togo\",\n    \"cupcake\",\n    \"curling-stone\",\n    \"custard\",\n    \"d\",\n    \"dagger\",\n    \"dash\",\n    \"database\",\n    \"deer-rudolph\",\n    \"deer\",\n    \"delete-left\",\n    \"delete-right\",\n    \"democrat\",\n    \"desktop-arrow-down\",\n    \"desktop\",\n    \"dharmachakra\",\n    \"diagram-cells\",\n    \"diagram-lean-canvas\",\n    \"diagram-nested\",\n    \"diagram-next\",\n    \"diagram-predecessor\",\n    \"diagram-previous\",\n    \"diagram-project\",\n    \"diagram-sankey\",\n    \"diagram-subtask\",\n    \"diagram-successor\",\n    \"diagram-venn\",\n    \"dial-high\",\n    \"dial-low\",\n    \"dial-max\",\n    \"dial-med-low\",\n    \"dial-med\",\n    \"dial-min\",\n    \"dial-off\",\n    \"dial\",\n    \"diamond-exclamation\",\n    \"diamond-half-stroke\",\n    \"diamond-half\",\n    \"diamond-turn-right\",\n    \"diamond\",\n    \"diamonds-4\",\n    \"dice-d10\",\n    \"dice-d12\",\n    \"dice-d20\",\n    \"dice-d4\",\n    \"dice-d6\",\n    \"dice-d8\",\n    \"dice-five\",\n    \"dice-four\",\n    \"dice-one\",\n    \"dice-six\",\n    \"dice-three\",\n    \"dice-two\",\n    \"dice\",\n    \"dinosaur\",\n    \"diploma\",\n    \"disc-drive\",\n    \"disease\",\n    \"display-arrow-down\",\n    \"display-chart-up-circle-currency\",\n    \"display-chart-up-circle-dollar\",\n    \"display-chart-up\",\n    \"display-code\",\n    \"display-medical\",\n    \"display-slash\",\n    \"display\",\n    \"distribute-spacing-horizontal\",\n    \"distribute-spacing-vertical\",\n    \"ditto\",\n    \"divide\",\n    \"dna\",\n    \"do-not-enter\",\n    \"dog-leashed\",\n    \"dog\",\n    \"dollar-sign\",\n    \"dolly-empty\",\n    \"dolly\",\n    \"dolphin\",\n    \"dong-sign\",\n    \"donut\",\n    \"door-closed\",\n    \"door-open\",\n    \"dove\",\n    \"down-from-bracket\",\n    \"down-from-dotted-line\",\n    \"down-from-line\",\n    \"down-left-and-up-right-to-center\",\n    \"down-left\",\n    \"down-long\",\n    \"down-right\",\n    \"down-to-bracket\",\n    \"down-to-dotted-line\",\n    \"down-to-line\",\n    \"down\",\n    \"download\",\n    \"dragon\",\n    \"draw-circle\",\n    \"draw-polygon\",\n    \"draw-square\",\n    \"dreidel\",\n    \"drone-front\",\n    \"drone\",\n    \"droplet-degree\",\n    \"droplet-percent\",\n    \"droplet-slash\",\n    \"droplet\",\n    \"drum-steelpan\",\n    \"drum\",\n    \"drumstick-bite\",\n    \"drumstick\",\n    \"dryer-heat\",\n    \"dryer\",\n    \"duck\",\n    \"dumbbell\",\n    \"dumpster-fire\",\n    \"dumpster\",\n    \"dungeon\",\n    \"e\",\n    \"ear-deaf\",\n    \"ear-listen\",\n    \"ear-muffs\",\n    \"ear\",\n    \"earth-africa\",\n    \"earth-americas\",\n    \"earth-asia\",\n    \"earth-europe\",\n    \"earth-oceania\",\n    \"eclipse\",\n    \"egg-fried\",\n    \"egg\",\n    \"eggplant\",\n    \"eject\",\n    \"elephant\",\n    \"elevator\",\n    \"ellipsis-stroke-vertical\",\n    \"ellipsis-stroke\",\n    \"ellipsis-vertical\",\n    \"ellipsis\",\n    \"empty-set\",\n    \"engine-warning\",\n    \"engine\",\n    \"envelope-circle-check\",\n    \"envelope-dot\",\n    \"envelope-open-dollar\",\n    \"envelope-open-text\",\n    \"envelope-open\",\n    \"envelope\",\n    \"envelopes-bulk\",\n    \"envelopes\",\n    \"equals\",\n    \"eraser\",\n    \"escalator\",\n    \"ethernet\",\n    \"euro-sign\",\n    \"excavator\",\n    \"exclamation\",\n    \"expand-wide\",\n    \"expand\",\n    \"explosion\",\n    \"eye-dropper-full\",\n    \"eye-dropper-half\",\n    \"eye-dropper\",\n    \"eye-evil\",\n    \"eye-low-vision\",\n    \"eye-slash\",\n    \"eye\",\n    \"eyes\",\n    \"f\",\n    \"face-angry-horns\",\n    \"face-angry\",\n    \"face-anguished\",\n    \"face-anxious-sweat\",\n    \"face-astonished\",\n    \"face-awesome\",\n    \"face-beam-hand-over-mouth\",\n    \"face-clouds\",\n    \"face-confounded\",\n    \"face-confused\",\n    \"face-cowboy-hat\",\n    \"face-diagonal-mouth\",\n    \"face-disappointed\",\n    \"face-disguise\",\n    \"face-dizzy\",\n    \"face-dotted\",\n    \"face-downcast-sweat\",\n    \"face-drooling\",\n    \"face-exhaling\",\n    \"face-explode\",\n    \"face-expressionless\",\n    \"face-eyes-xmarks\",\n    \"face-fearful\",\n    \"face-flushed\",\n    \"face-frown-open\",\n    \"face-frown-slight\",\n    \"face-frown\",\n    \"face-glasses\",\n    \"face-grimace\",\n    \"face-grin-beam-sweat\",\n    \"face-grin-beam\",\n    \"face-grin-hearts\",\n    \"face-grin-squint-tears\",\n    \"face-grin-squint\",\n    \"face-grin-stars\",\n    \"face-grin-tears\",\n    \"face-grin-tongue-squint\",\n    \"face-grin-tongue-wink\",\n    \"face-grin-tongue\",\n    \"face-grin-wide\",\n    \"face-grin-wink\",\n    \"face-grin\",\n    \"face-hand-over-mouth\",\n    \"face-hand-peeking\",\n    \"face-hand-yawn\",\n    \"face-head-bandage\",\n    \"face-holding-back-tears\",\n    \"face-hushed\",\n    \"face-icicles\",\n    \"face-kiss-beam\",\n    \"face-kiss-closed-eyes\",\n    \"face-kiss-wink-heart\",\n    \"face-kiss\",\n    \"face-laugh-beam\",\n    \"face-laugh-squint\",\n    \"face-laugh-wink\",\n    \"face-laugh\",\n    \"face-lying\",\n    \"face-mask\",\n    \"face-meh-blank\",\n    \"face-meh\",\n    \"face-melting\",\n    \"face-monocle\",\n    \"face-nauseated\",\n    \"face-nose-steam\",\n    \"face-party\",\n    \"face-pensive\",\n    \"face-persevering\",\n    \"face-pleading\",\n    \"face-pouting\",\n    \"face-raised-eyebrow\",\n    \"face-relieved\",\n    \"face-rolling-eyes\",\n    \"face-sad-cry\",\n    \"face-sad-sweat\",\n    \"face-sad-tear\",\n    \"face-saluting\",\n    \"face-scream\",\n    \"face-shush\",\n    \"face-sleeping\",\n    \"face-sleepy\",\n    \"face-smile-beam\",\n    \"face-smile-halo\",\n    \"face-smile-hearts\",\n    \"face-smile-horns\",\n    \"face-smile-plus\",\n    \"face-smile-relaxed\",\n    \"face-smile-tear\",\n    \"face-smile-tongue\",\n    \"face-smile-upside-down\",\n    \"face-smile-wink\",\n    \"face-smile\",\n    \"face-smiling-hands\",\n    \"face-smirking\",\n    \"face-spiral-eyes\",\n    \"face-sunglasses\",\n    \"face-surprise\",\n    \"face-swear\",\n    \"face-thermometer\",\n    \"face-thinking\",\n    \"face-tired\",\n    \"face-tissue\",\n    \"face-tongue-money\",\n    \"face-tongue-sweat\",\n    \"face-unamused\",\n    \"face-viewfinder\",\n    \"face-vomit\",\n    \"face-weary\",\n    \"face-woozy\",\n    \"face-worried\",\n    \"face-zany\",\n    \"face-zipper\",\n    \"falafel\",\n    \"family-dress\",\n    \"family-pants\",\n    \"family\",\n    \"fan-table\",\n    \"fan\",\n    \"farm\",\n    \"faucet-drip\",\n    \"faucet\",\n    \"fax\",\n    \"feather-pointed\",\n    \"feather\",\n    \"fence\",\n    \"ferris-wheel\",\n    \"ferry\",\n    \"field-hockey-stick-ball\",\n    \"file-arrow-down\",\n    \"file-arrow-up\",\n    \"file-audio\",\n    \"file-binary\",\n    \"file-cad\",\n    \"file-certificate\",\n    \"file-chart-column\",\n    \"file-chart-pie\",\n    \"file-check\",\n    \"file-circle-check\",\n    \"file-circle-exclamation\",\n    \"file-circle-info\",\n    \"file-circle-minus\",\n    \"file-circle-plus\",\n    \"file-circle-question\",\n    \"file-circle-xmark\",\n    \"file-code\",\n    \"file-contract\",\n    \"file-csv\",\n    \"file-dashed-line\",\n    \"file-doc\",\n    \"file-eps\",\n    \"file-excel\",\n    \"file-exclamation\",\n    \"file-export\",\n    \"file-fragment\",\n    \"file-gif\",\n    \"file-half-dashed\",\n    \"file-heart\",\n    \"file-image\",\n    \"file-import\",\n    \"file-invoice-dollar\",\n    \"file-invoice\",\n    \"file-jpg\",\n    \"file-lines\",\n    \"file-lock\",\n    \"file-magnifying-glass\",\n    \"file-medical\",\n    \"file-minus\",\n    \"file-mov\",\n    \"file-mp3\",\n    \"file-mp4\",\n    \"file-music\",\n    \"file-pdf\",\n    \"file-pen\",\n    \"file-plus-minus\",\n    \"file-plus\",\n    \"file-png\",\n    \"file-powerpoint\",\n    \"file-ppt\",\n    \"file-prescription\",\n    \"file-shield\",\n    \"file-signature\",\n    \"file-slash\",\n    \"file-spreadsheet\",\n    \"file-svg\",\n    \"file-user\",\n    \"file-vector\",\n    \"file-video\",\n    \"file-waveform\",\n    \"file-word\",\n    \"file-xls\",\n    \"file-xmark\",\n    \"file-xml\",\n    \"file-zip\",\n    \"file-zipper\",\n    \"file\",\n    \"files-medical\",\n    \"files\",\n    \"fill-drip\",\n    \"fill\",\n    \"film-canister\",\n    \"film-simple\",\n    \"film-slash\",\n    \"film\",\n    \"films\",\n    \"filter-circle-dollar\",\n    \"filter-circle-xmark\",\n    \"filter-list\",\n    \"filter-slash\",\n    \"filter\",\n    \"filters\",\n    \"fingerprint\",\n    \"fire-burner\",\n    \"fire-extinguisher\",\n    \"fire-flame-curved\",\n    \"fire-flame-simple\",\n    \"fire-flame\",\n    \"fire-hydrant\",\n    \"fire-smoke\",\n    \"fire\",\n    \"fireplace\",\n    \"fish-bones\",\n    \"fish-cooked\",\n    \"fish-fins\",\n    \"fish\",\n    \"fishing-rod\",\n    \"flag-checkered\",\n    \"flag-pennant\",\n    \"flag-swallowtail\",\n    \"flag-usa\",\n    \"flag\",\n    \"flashlight\",\n    \"flask-gear\",\n    \"flask-round-poison\",\n    \"flask-round-potion\",\n    \"flask-vial\",\n    \"flask\",\n    \"flatbread-stuffed\",\n    \"flatbread\",\n    \"floppy-disk-circle-arrow-right\",\n    \"floppy-disk-circle-xmark\",\n    \"floppy-disk-pen\",\n    \"floppy-disk\",\n    \"floppy-disks\",\n    \"florin-sign\",\n    \"flower-daffodil\",\n    \"flower-tulip\",\n    \"flower\",\n    \"flute\",\n    \"flux-capacitor\",\n    \"flying-disc\",\n    \"folder-arrow-down\",\n    \"folder-arrow-up\",\n    \"folder-bookmark\",\n    \"folder-check\",\n    \"folder-closed\",\n    \"folder-gear\",\n    \"folder-grid\",\n    \"folder-heart\",\n    \"folder-image\",\n    \"folder-magnifying-glass\",\n    \"folder-medical\",\n    \"folder-minus\",\n    \"folder-music\",\n    \"folder-open\",\n    \"folder-plus\",\n    \"folder-tree\",\n    \"folder-user\",\n    \"folder-xmark\",\n    \"folder\",\n    \"folders\",\n    \"fondue-pot\",\n    \"font-awesome\",\n    \"font-case\",\n    \"font\",\n    \"football-helmet\",\n    \"football\",\n    \"fork-knife\",\n    \"fork\",\n    \"forklift\",\n    \"fort\",\n    \"forward-fast\",\n    \"forward-step\",\n    \"forward\",\n    \"frame\",\n    \"franc-sign\",\n    \"french-fries\",\n    \"frog\",\n    \"function\",\n    \"futbol\",\n    \"g\",\n    \"galaxy\",\n    \"gallery-thumbnails\",\n    \"game-board-simple\",\n    \"game-board\",\n    \"game-console-handheld-crank\",\n    \"game-console-handheld\",\n    \"gamepad-modern\",\n    \"gamepad\",\n    \"garage-car\",\n    \"garage-open\",\n    \"garage\",\n    \"garlic\",\n    \"gas-pump-slash\",\n    \"gas-pump\",\n    \"gauge-circle-bolt\",\n    \"gauge-circle-minus\",\n    \"gauge-circle-plus\",\n    \"gauge-high\",\n    \"gauge-low\",\n    \"gauge-max\",\n    \"gauge-min\",\n    \"gauge-simple-high\",\n    \"gauge-simple-low\",\n    \"gauge-simple-max\",\n    \"gauge-simple-min\",\n    \"gauge-simple\",\n    \"gauge\",\n    \"gavel\",\n    \"gear-code\",\n    \"gear-complex-code\",\n    \"gear-complex\",\n    \"gear\",\n    \"gears\",\n    \"gem\",\n    \"genderless\",\n    \"ghost\",\n    \"gif\",\n    \"gift-card\",\n    \"gift\",\n    \"gifts\",\n    \"gingerbread-man\",\n    \"glass-citrus\",\n    \"glass-empty\",\n    \"glass-half\",\n    \"glass-water-droplet\",\n    \"glass-water\",\n    \"glass\",\n    \"glasses-round\",\n    \"glasses\",\n    \"globe-pointer\",\n    \"globe-snow\",\n    \"globe-stand\",\n    \"globe-wifi\",\n    \"globe\",\n    \"goal-net\",\n    \"golf-ball-tee\",\n    \"golf-club\",\n    \"golf-flag-hole\",\n    \"gopuram\",\n    \"graduation-cap\",\n    \"gramophone\",\n    \"grapes\",\n    \"grate-droplet\",\n    \"grate\",\n    \"greater-than-equal\",\n    \"greater-than\",\n    \"grid-2-plus\",\n    \"grid-2\",\n    \"grid-4\",\n    \"grid-5\",\n    \"grid-dividers\",\n    \"grid-horizontal\",\n    \"grid-round-2-plus\",\n    \"grid-round-2\",\n    \"grid-round-4\",\n    \"grid-round-5\",\n    \"grid-round\",\n    \"grid\",\n    \"grill-fire\",\n    \"grill-hot\",\n    \"grill\",\n    \"grip-dots-vertical\",\n    \"grip-dots\",\n    \"grip-lines-vertical\",\n    \"grip-lines\",\n    \"grip-vertical\",\n    \"grip\",\n    \"group-arrows-rotate\",\n    \"guarani-sign\",\n    \"guitar-electric\",\n    \"guitar\",\n    \"guitars\",\n    \"gun-slash\",\n    \"gun-squirt\",\n    \"gun\",\n    \"h\",\n    \"h1\",\n    \"h2\",\n    \"h3\",\n    \"h4\",\n    \"h5\",\n    \"h6\",\n    \"hammer-brush\",\n    \"hammer-crash\",\n    \"hammer-war\",\n    \"hammer\",\n    \"hamsa\",\n    \"hand-back-fist\",\n    \"hand-back-point-down\",\n    \"hand-back-point-left\",\n    \"hand-back-point-ribbon\",\n    \"hand-back-point-right\",\n    \"hand-back-point-up\",\n    \"hand-dots\",\n    \"hand-fingers-crossed\",\n    \"hand-fist\",\n    \"hand-heart\",\n    \"hand-holding-box\",\n    \"hand-holding-circle-dollar\",\n    \"hand-holding-dollar\",\n    \"hand-holding-droplet\",\n    \"hand-holding-hand\",\n    \"hand-holding-heart\",\n    \"hand-holding-magic\",\n    \"hand-holding-medical\",\n    \"hand-holding-seedling\",\n    \"hand-holding-skull\",\n    \"hand-holding\",\n    \"hand-horns\",\n    \"hand-lizard\",\n    \"hand-love\",\n    \"hand-middle-finger\",\n    \"hand-peace\",\n    \"hand-point-down\",\n    \"hand-point-left\",\n    \"hand-point-ribbon\",\n    \"hand-point-right\",\n    \"hand-point-up\",\n    \"hand-pointer\",\n    \"hand-scissors\",\n    \"hand-sparkles\",\n    \"hand-spock\",\n    \"hand-wave\",\n    \"hand\",\n    \"handcuffs\",\n    \"hands-asl-interpreting\",\n    \"hands-bound\",\n    \"hands-bubbles\",\n    \"hands-clapping\",\n    \"hands-holding-child\",\n    \"hands-holding-circle\",\n    \"hands-holding-diamond\",\n    \"hands-holding-dollar\",\n    \"hands-holding-heart\",\n    \"hands-holding\",\n    \"hands-praying\",\n    \"hands\",\n    \"handshake-angle\",\n    \"handshake-simple-slash\",\n    \"handshake-simple\",\n    \"handshake-slash\",\n    \"handshake\",\n    \"hanukiah\",\n    \"hard-drive\",\n    \"hashtag-lock\",\n    \"hashtag\",\n    \"hat-beach\",\n    \"hat-chef\",\n    \"hat-cowboy-side\",\n    \"hat-cowboy\",\n    \"hat-santa\",\n    \"hat-winter\",\n    \"hat-witch\",\n    \"hat-wizard\",\n    \"head-side-brain\",\n    \"head-side-cough-slash\",\n    \"head-side-cough\",\n    \"head-side-gear\",\n    \"head-side-goggles\",\n    \"head-side-headphones\",\n    \"head-side-heart\",\n    \"head-side-mask\",\n    \"head-side-medical\",\n    \"head-side-virus\",\n    \"head-side\",\n    \"heading\",\n    \"headphones-simple\",\n    \"headphones\",\n    \"headset\",\n    \"heart-circle-bolt\",\n    \"heart-circle-check\",\n    \"heart-circle-exclamation\",\n    \"heart-circle-minus\",\n    \"heart-circle-plus\",\n    \"heart-circle-xmark\",\n    \"heart-crack\",\n    \"heart-half-stroke\",\n    \"heart-half\",\n    \"heart-pulse\",\n    \"heart\",\n    \"heat\",\n    \"helicopter-symbol\",\n    \"helicopter\",\n    \"helmet-battle\",\n    \"helmet-safety\",\n    \"helmet-un\",\n    \"hexagon-check\",\n    \"hexagon-divide\",\n    \"hexagon-exclamation\",\n    \"hexagon-image\",\n    \"hexagon-minus\",\n    \"hexagon-nodes-bolt\",\n    \"hexagon-nodes\",\n    \"hexagon-plus\",\n    \"hexagon-vertical-nft-slanted\",\n    \"hexagon-vertical-nft\",\n    \"hexagon-xmark\",\n    \"hexagon\",\n    \"high-definition\",\n    \"highlighter-line\",\n    \"highlighter\",\n    \"hill-avalanche\",\n    \"hill-rockslide\",\n    \"hippo\",\n    \"hockey-mask\",\n    \"hockey-puck\",\n    \"hockey-stick-puck\",\n    \"hockey-sticks\",\n    \"holly-berry\",\n    \"honey-pot\",\n    \"hood-cloak\",\n    \"horizontal-rule\",\n    \"horse-head\",\n    \"horse-saddle\",\n    \"horse\",\n    \"hose-reel\",\n    \"hose\",\n    \"hospital-user\",\n    \"hospital\",\n    \"hospitals\",\n    \"hot-tub-person\",\n    \"hotdog\",\n    \"hotel\",\n    \"hourglass-clock\",\n    \"hourglass-end\",\n    \"hourglass-half\",\n    \"hourglass-start\",\n    \"hourglass\",\n    \"house-blank\",\n    \"house-building\",\n    \"house-chimney-blank\",\n    \"house-chimney-crack\",\n    \"house-chimney-heart\",\n    \"house-chimney-medical\",\n    \"house-chimney-user\",\n    \"house-chimney-window\",\n    \"house-chimney\",\n    \"house-circle-check\",\n    \"house-circle-exclamation\",\n    \"house-circle-xmark\",\n    \"house-crack\",\n    \"house-day\",\n    \"house-fire\",\n    \"house-flag\",\n    \"house-flood-water-circle-arrow-right\",\n    \"house-flood-water\",\n    \"house-heart\",\n    \"house-laptop\",\n    \"house-lock\",\n    \"house-medical-circle-check\",\n    \"house-medical-circle-exclamation\",\n    \"house-medical-circle-xmark\",\n    \"house-medical-flag\",\n    \"house-medical\",\n    \"house-night\",\n    \"house-person-leave\",\n    \"house-person-return\",\n    \"house-signal\",\n    \"house-tree\",\n    \"house-tsunami\",\n    \"house-turret\",\n    \"house-user\",\n    \"house-water\",\n    \"house-window\",\n    \"house\",\n    \"hryvnia-sign\",\n    \"hundred-points\",\n    \"hurricane\",\n    \"hydra\",\n    \"hyphen\",\n    \"i-cursor\",\n    \"i\",\n    \"ice-cream\",\n    \"ice-skate\",\n    \"icicles\",\n    \"icons\",\n    \"id-badge\",\n    \"id-card-clip\",\n    \"id-card\",\n    \"igloo\",\n    \"image-landscape\",\n    \"image-polaroid-user\",\n    \"image-polaroid\",\n    \"image-portrait\",\n    \"image-slash\",\n    \"image-user\",\n    \"image\",\n    \"images-user\",\n    \"images\",\n    \"inbox-full\",\n    \"inbox-in\",\n    \"inbox-out\",\n    \"inbox\",\n    \"inboxes\",\n    \"indent\",\n    \"indian-rupee-sign\",\n    \"industry-windows\",\n    \"industry\",\n    \"infinity\",\n    \"info\",\n    \"inhaler\",\n    \"input-numeric\",\n    \"input-pipe\",\n    \"input-text\",\n    \"integral\",\n    \"interrobang\",\n    \"intersection\",\n    \"island-tropical\",\n    \"italic\",\n    \"j\",\n    \"jack-o-lantern\",\n    \"jar-wheat\",\n    \"jar\",\n    \"jedi\",\n    \"jet-fighter-up\",\n    \"jet-fighter\",\n    \"joint\",\n    \"joystick\",\n    \"jug-bottle\",\n    \"jug-detergent\",\n    \"jug\",\n    \"k\",\n    \"kaaba\",\n    \"kazoo\",\n    \"kerning\",\n    \"key-skeleton-left-right\",\n    \"key-skeleton\",\n    \"key\",\n    \"keyboard-brightness-low\",\n    \"keyboard-brightness\",\n    \"keyboard-down\",\n    \"keyboard-left\",\n    \"keyboard\",\n    \"keynote\",\n    \"khanda\",\n    \"kidneys\",\n    \"kip-sign\",\n    \"kit-medical\",\n    \"kitchen-set\",\n    \"kite\",\n    \"kiwi-bird\",\n    \"kiwi-fruit\",\n    \"knife-kitchen\",\n    \"knife\",\n    \"l\",\n    \"lacrosse-stick-ball\",\n    \"lacrosse-stick\",\n    \"lambda\",\n    \"lamp-desk\",\n    \"lamp-floor\",\n    \"lamp-street\",\n    \"lamp\",\n    \"land-mine-on\",\n    \"landmark-dome\",\n    \"landmark-flag\",\n    \"landmark-magnifying-glass\",\n    \"landmark\",\n    \"language\",\n    \"laptop-arrow-down\",\n    \"laptop-binary\",\n    \"laptop-code\",\n    \"laptop-file\",\n    \"laptop-medical\",\n    \"laptop-mobile\",\n    \"laptop-slash\",\n    \"laptop\",\n    \"lari-sign\",\n    \"lasso-sparkles\",\n    \"lasso\",\n    \"layer-group\",\n    \"layer-minus\",\n    \"layer-plus\",\n    \"leaf-heart\",\n    \"leaf-maple\",\n    \"leaf-oak\",\n    \"leaf\",\n    \"leafy-green\",\n    \"left-from-bracket\",\n    \"left-from-line\",\n    \"left-long-to-line\",\n    \"left-long\",\n    \"left-right\",\n    \"left-to-bracket\",\n    \"left-to-line\",\n    \"left\",\n    \"lemon\",\n    \"less-than-equal\",\n    \"less-than\",\n    \"life-ring\",\n    \"light-ceiling\",\n    \"light-emergency-on\",\n    \"light-emergency\",\n    \"light-switch-off\",\n    \"light-switch-on\",\n    \"light-switch\",\n    \"lightbulb-cfl-on\",\n    \"lightbulb-cfl\",\n    \"lightbulb-dollar\",\n    \"lightbulb-exclamation-on\",\n    \"lightbulb-exclamation\",\n    \"lightbulb-gear\",\n    \"lightbulb-message\",\n    \"lightbulb-on\",\n    \"lightbulb-slash\",\n    \"lightbulb\",\n    \"lighthouse\",\n    \"lights-holiday\",\n    \"line-columns\",\n    \"line-height\",\n    \"lines-leaning\",\n    \"link-horizontal-slash\",\n    \"link-horizontal\",\n    \"link-simple-slash\",\n    \"link-simple\",\n    \"link-slash\",\n    \"link\",\n    \"lips\",\n    \"lira-sign\",\n    \"list-check\",\n    \"list-dropdown\",\n    \"list-music\",\n    \"list-ol\",\n    \"list-radio\",\n    \"list-timeline\",\n    \"list-tree\",\n    \"list-ul\",\n    \"list\",\n    \"litecoin-sign\",\n    \"loader\",\n    \"lobster\",\n    \"location-arrow-up\",\n    \"location-arrow\",\n    \"location-check\",\n    \"location-crosshairs-slash\",\n    \"location-crosshairs\",\n    \"location-dot-slash\",\n    \"location-dot\",\n    \"location-exclamation\",\n    \"location-minus\",\n    \"location-pen\",\n    \"location-pin-lock\",\n    \"location-pin-slash\",\n    \"location-pin\",\n    \"location-plus\",\n    \"location-question\",\n    \"location-smile\",\n    \"location-xmark\",\n    \"lock-a\",\n    \"lock-hashtag\",\n    \"lock-keyhole-open\",\n    \"lock-keyhole\",\n    \"lock-open\",\n    \"lock\",\n    \"locust\",\n    \"lollipop\",\n    \"loveseat\",\n    \"luchador-mask\",\n    \"lungs-virus\",\n    \"lungs\",\n    \"m\",\n    \"mace\",\n    \"magnet\",\n    \"magnifying-glass-arrow-right\",\n    \"magnifying-glass-arrows-rotate\",\n    \"magnifying-glass-chart\",\n    \"magnifying-glass-dollar\",\n    \"magnifying-glass-location\",\n    \"magnifying-glass-minus\",\n    \"magnifying-glass-music\",\n    \"magnifying-glass-play\",\n    \"magnifying-glass-plus\",\n    \"magnifying-glass-waveform\",\n    \"magnifying-glass\",\n    \"mailbox-flag-up\",\n    \"mailbox\",\n    \"manat-sign\",\n    \"mandolin\",\n    \"mango\",\n    \"manhole\",\n    \"map-location-dot\",\n    \"map-location\",\n    \"map-pin\",\n    \"map\",\n    \"marker\",\n    \"mars-and-venus-burst\",\n    \"mars-and-venus\",\n    \"mars-double\",\n    \"mars-stroke-right\",\n    \"mars-stroke-up\",\n    \"mars-stroke\",\n    \"mars\",\n    \"martini-glass-citrus\",\n    \"martini-glass-empty\",\n    \"martini-glass\",\n    \"mask-face\",\n    \"mask-snorkel\",\n    \"mask-ventilator\",\n    \"mask\",\n    \"masks-theater\",\n    \"mattress-pillow\",\n    \"maximize\",\n    \"meat\",\n    \"medal\",\n    \"megaphone\",\n    \"melon-slice\",\n    \"melon\",\n    \"memo-circle-check\",\n    \"memo-circle-info\",\n    \"memo-pad\",\n    \"memo\",\n    \"memory\",\n    \"menorah\",\n    \"mercury\",\n    \"merge\",\n    \"message-arrow-down\",\n    \"message-arrow-up-right\",\n    \"message-arrow-up\",\n    \"message-bot\",\n    \"message-captions\",\n    \"message-check\",\n    \"message-code\",\n    \"message-dollar\",\n    \"message-dots\",\n    \"message-exclamation\",\n    \"message-heart\",\n    \"message-image\",\n    \"message-lines\",\n    \"message-medical\",\n    \"message-middle-top\",\n    \"message-middle\",\n    \"message-minus\",\n    \"message-music\",\n    \"message-pen\",\n    \"message-plus\",\n    \"message-question\",\n    \"message-quote\",\n    \"message-slash\",\n    \"message-smile\",\n    \"message-sms\",\n    \"message-text\",\n    \"message-xmark\",\n    \"message\",\n    \"messages-dollar\",\n    \"messages-question\",\n    \"messages\",\n    \"meteor\",\n    \"meter-bolt\",\n    \"meter-droplet\",\n    \"meter-fire\",\n    \"meter\",\n    \"microchip-ai\",\n    \"microchip\",\n    \"microphone-lines-slash\",\n    \"microphone-lines\",\n    \"microphone-slash\",\n    \"microphone-stand\",\n    \"microphone\",\n    \"microscope\",\n    \"microwave\",\n    \"mill-sign\",\n    \"minimize\",\n    \"minus\",\n    \"mistletoe\",\n    \"mitten\",\n    \"mobile-button\",\n    \"mobile-notch\",\n    \"mobile-retro\",\n    \"mobile-screen-button\",\n    \"mobile-screen\",\n    \"mobile-signal-out\",\n    \"mobile-signal\",\n    \"mobile\",\n    \"money-bill-1-wave\",\n    \"money-bill-1\",\n    \"money-bill-simple-wave\",\n    \"money-bill-simple\",\n    \"money-bill-transfer\",\n    \"money-bill-trend-up\",\n    \"money-bill-wave\",\n    \"money-bill-wheat\",\n    \"money-bill\",\n    \"money-bills-simple\",\n    \"money-bills\",\n    \"money-check-dollar-pen\",\n    \"money-check-dollar\",\n    \"money-check-pen\",\n    \"money-check\",\n    \"money-from-bracket\",\n    \"money-simple-from-bracket\",\n    \"monitor-waveform\",\n    \"monkey\",\n    \"monument\",\n    \"moon-cloud\",\n    \"moon-over-sun\",\n    \"moon-stars\",\n    \"moon\",\n    \"moped\",\n    \"mortar-pestle\",\n    \"mosque\",\n    \"mosquito-net\",\n    \"mosquito\",\n    \"motorcycle\",\n    \"mound\",\n    \"mountain-city\",\n    \"mountain-sun\",\n    \"mountain\",\n    \"mountains\",\n    \"mouse-field\",\n    \"mp3-player\",\n    \"mug-hot\",\n    \"mug-marshmallows\",\n    \"mug-saucer\",\n    \"mug-tea-saucer\",\n    \"mug-tea\",\n    \"mug\",\n    \"mushroom\",\n    \"music-magnifying-glass\",\n    \"music-note-slash\",\n    \"music-note\",\n    \"music-slash\",\n    \"music\",\n    \"mustache\",\n    \"n\",\n    \"naira-sign\",\n    \"narwhal\",\n    \"nesting-dolls\",\n    \"network-wired\",\n    \"neuter\",\n    \"newspaper\",\n    \"nfc-lock\",\n    \"nfc-magnifying-glass\",\n    \"nfc-pen\",\n    \"nfc-signal\",\n    \"nfc-slash\",\n    \"nfc-symbol\",\n    \"nfc-trash\",\n    \"nfc\",\n    \"nose\",\n    \"not-equal\",\n    \"notdef\",\n    \"note-medical\",\n    \"note-sticky\",\n    \"note\",\n    \"notebook\",\n    \"notes-medical\",\n    \"notes\",\n    \"o\",\n    \"object-exclude\",\n    \"object-group\",\n    \"object-intersect\",\n    \"object-subtract\",\n    \"object-ungroup\",\n    \"object-union\",\n    \"objects-align-bottom\",\n    \"objects-align-center-horizontal\",\n    \"objects-align-center-vertical\",\n    \"objects-align-left\",\n    \"objects-align-right\",\n    \"objects-align-top\",\n    \"objects-column\",\n    \"octagon-check\",\n    \"octagon-divide\",\n    \"octagon-exclamation\",\n    \"octagon-minus\",\n    \"octagon-plus\",\n    \"octagon-xmark\",\n    \"octagon\",\n    \"octopus\",\n    \"oil-can-drip\",\n    \"oil-can\",\n    \"oil-temperature\",\n    \"oil-well\",\n    \"olive-branch\",\n    \"olive\",\n    \"om\",\n    \"omega\",\n    \"onion\",\n    \"option\",\n    \"ornament\",\n    \"otter\",\n    \"outdent\",\n    \"outlet\",\n    \"oven\",\n    \"overline\",\n    \"p\",\n    \"page-caret-down\",\n    \"page-caret-up\",\n    \"page\",\n    \"pager\",\n    \"paint-roller\",\n    \"paintbrush-fine\",\n    \"paintbrush-pencil\",\n    \"paintbrush\",\n    \"palette\",\n    \"pallet-box\",\n    \"pallet-boxes\",\n    \"pallet\",\n    \"pan-food\",\n    \"pan-frying\",\n    \"pancakes\",\n    \"panel-ews\",\n    \"panel-fire\",\n    \"panorama\",\n    \"paper-plane-top\",\n    \"paper-plane\",\n    \"paperclip-vertical\",\n    \"paperclip\",\n    \"parachute-box\",\n    \"paragraph-left\",\n    \"paragraph\",\n    \"party-bell\",\n    \"party-horn\",\n    \"passport\",\n    \"paste\",\n    \"pause\",\n    \"paw-claws\",\n    \"paw-simple\",\n    \"paw\",\n    \"peace\",\n    \"peach\",\n    \"peanut\",\n    \"peanuts\",\n    \"peapod\",\n    \"pear\",\n    \"pedestal\",\n    \"pegasus\",\n    \"pen-circle\",\n    \"pen-clip-slash\",\n    \"pen-clip\",\n    \"pen-fancy-slash\",\n    \"pen-fancy\",\n    \"pen-field\",\n    \"pen-line\",\n    \"pen-nib-slash\",\n    \"pen-nib\",\n    \"pen-paintbrush\",\n    \"pen-ruler\",\n    \"pen-slash\",\n    \"pen-swirl\",\n    \"pen-to-square\",\n    \"pen\",\n    \"pencil-mechanical\",\n    \"pencil-slash\",\n    \"pencil\",\n    \"people-arrows\",\n    \"people-carry-box\",\n    \"people-dress-simple\",\n    \"people-dress\",\n    \"people-group\",\n    \"people-line\",\n    \"people-pants-simple\",\n    \"people-pants\",\n    \"people-pulling\",\n    \"people-robbery\",\n    \"people-roof\",\n    \"people-simple\",\n    \"people\",\n    \"pepper-hot\",\n    \"pepper\",\n    \"percent\",\n    \"period\",\n    \"person-arrow-down-to-line\",\n    \"person-arrow-up-from-line\",\n    \"person-biking-mountain\",\n    \"person-biking\",\n    \"person-booth\",\n    \"person-breastfeeding\",\n    \"person-burst\",\n    \"person-cane\",\n    \"person-carry-box\",\n    \"person-chalkboard\",\n    \"person-circle-check\",\n    \"person-circle-exclamation\",\n    \"person-circle-minus\",\n    \"person-circle-plus\",\n    \"person-circle-question\",\n    \"person-circle-xmark\",\n    \"person-digging\",\n    \"person-dolly-empty\",\n    \"person-dolly\",\n    \"person-dots-from-line\",\n    \"person-dress-burst\",\n    \"person-dress-fairy\",\n    \"person-dress-simple\",\n    \"person-dress\",\n    \"person-drowning\",\n    \"person-fairy\",\n    \"person-falling-burst\",\n    \"person-falling\",\n    \"person-from-portal\",\n    \"person-half-dress\",\n    \"person-harassing\",\n    \"person-hiking\",\n    \"person-military-pointing\",\n    \"person-military-rifle\",\n    \"person-military-to-person\",\n    \"person-pinball\",\n    \"person-praying\",\n    \"person-pregnant\",\n    \"person-rays\",\n    \"person-rifle\",\n    \"person-running-fast\",\n    \"person-running\",\n    \"person-seat-reclined\",\n    \"person-seat\",\n    \"person-shelter\",\n    \"person-sign\",\n    \"person-simple\",\n    \"person-skating\",\n    \"person-ski-jumping\",\n    \"person-ski-lift\",\n    \"person-skiing-nordic\",\n    \"person-skiing\",\n    \"person-sledding\",\n    \"person-snowboarding\",\n    \"person-snowmobiling\",\n    \"person-swimming\",\n    \"person-through-window\",\n    \"person-to-door\",\n    \"person-to-portal\",\n    \"person-walking-arrow-loop-left\",\n    \"person-walking-arrow-right\",\n    \"person-walking-dashed-line-arrow-right\",\n    \"person-walking-luggage\",\n    \"person-walking-with-cane\",\n    \"person-walking\",\n    \"person\",\n    \"peseta-sign\",\n    \"peso-sign\",\n    \"phone-arrow-down-left\",\n    \"phone-arrow-right\",\n    \"phone-arrow-up-right\",\n    \"phone-flip\",\n    \"phone-hangup\",\n    \"phone-intercom\",\n    \"phone-missed\",\n    \"phone-office\",\n    \"phone-plus\",\n    \"phone-rotary\",\n    \"phone-slash\",\n    \"phone-volume\",\n    \"phone-xmark\",\n    \"phone\",\n    \"photo-film-music\",\n    \"photo-film\",\n    \"pi\",\n    \"piano-keyboard\",\n    \"piano\",\n    \"pickaxe\",\n    \"pickleball\",\n    \"pie\",\n    \"pig\",\n    \"piggy-bank\",\n    \"pills\",\n    \"pinata\",\n    \"pinball\",\n    \"pineapple\",\n    \"pipe-circle-check\",\n    \"pipe-collar\",\n    \"pipe-section\",\n    \"pipe-smoking\",\n    \"pipe-valve\",\n    \"pipe\",\n    \"pizza-slice\",\n    \"pizza\",\n    \"place-of-worship\",\n    \"plane-arrival\",\n    \"plane-circle-check\",\n    \"plane-circle-exclamation\",\n    \"plane-circle-xmark\",\n    \"plane-departure\",\n    \"plane-engines\",\n    \"plane-lock\",\n    \"plane-prop\",\n    \"plane-slash\",\n    \"plane-tail\",\n    \"plane-up-slash\",\n    \"plane-up\",\n    \"plane\",\n    \"planet-moon\",\n    \"planet-ringed\",\n    \"plant-wilt\",\n    \"plate-utensils\",\n    \"plate-wheat\",\n    \"play-pause\",\n    \"play\",\n    \"plug-circle-bolt\",\n    \"plug-circle-check\",\n    \"plug-circle-exclamation\",\n    \"plug-circle-minus\",\n    \"plug-circle-plus\",\n    \"plug-circle-xmark\",\n    \"plug\",\n    \"plus-large\",\n    \"plus-minus\",\n    \"plus\",\n    \"podcast\",\n    \"podium-star\",\n    \"podium\",\n    \"police-box\",\n    \"poll-people\",\n    \"pompebled\",\n    \"poo-storm\",\n    \"poo\",\n    \"pool-8-ball\",\n    \"poop\",\n    \"popcorn\",\n    \"popsicle\",\n    \"pot-food\",\n    \"potato\",\n    \"power-off\",\n    \"prescription-bottle-medical\",\n    \"prescription-bottle-pill\",\n    \"prescription-bottle\",\n    \"prescription\",\n    \"presentation-screen\",\n    \"pretzel\",\n    \"print-magnifying-glass\",\n    \"print-slash\",\n    \"print\",\n    \"projector\",\n    \"pump-medical\",\n    \"pump-soap\",\n    \"pump\",\n    \"pumpkin\",\n    \"puzzle-piece-simple\",\n    \"puzzle-piece\",\n    \"puzzle\",\n    \"q\",\n    \"qrcode\",\n    \"question\",\n    \"quote-left\",\n    \"quote-right\",\n    \"quotes\",\n    \"r\",\n    \"rabbit-running\",\n    \"rabbit\",\n    \"raccoon\",\n    \"racquet\",\n    \"radar\",\n    \"radiation\",\n    \"radio-tuner\",\n    \"radio\",\n    \"rainbow\",\n    \"raindrops\",\n    \"ram\",\n    \"ramp-loading\",\n    \"ranking-star\",\n    \"raygun\",\n    \"receipt\",\n    \"record-vinyl\",\n    \"rectangle-ad\",\n    \"rectangle-barcode\",\n    \"rectangle-code\",\n    \"rectangle-history-circle-plus\",\n    \"rectangle-history-circle-user\",\n    \"rectangle-history\",\n    \"rectangle-list\",\n    \"rectangle-pro\",\n    \"rectangle-terminal\",\n    \"rectangle-vertical-history\",\n    \"rectangle-vertical\",\n    \"rectangle-wide\",\n    \"rectangle-xmark\",\n    \"rectangle\",\n    \"rectangles-mixed\",\n    \"recycle\",\n    \"reel\",\n    \"reflect-both\",\n    \"reflect-horizontal\",\n    \"reflect-vertical\",\n    \"refrigerator\",\n    \"registered\",\n    \"repeat-1\",\n    \"repeat\",\n    \"reply-all\",\n    \"reply-clock\",\n    \"reply\",\n    \"republican\",\n    \"restroom-simple\",\n    \"restroom\",\n    \"retweet\",\n    \"rhombus\",\n    \"ribbon\",\n    \"right-from-bracket\",\n    \"right-from-line\",\n    \"right-left-large\",\n    \"right-left\",\n    \"right-long-to-line\",\n    \"right-long\",\n    \"right-to-bracket\",\n    \"right-to-line\",\n    \"right\",\n    \"ring-diamond\",\n    \"ring\",\n    \"rings-wedding\",\n    \"road-barrier\",\n    \"road-bridge\",\n    \"road-circle-check\",\n    \"road-circle-exclamation\",\n    \"road-circle-xmark\",\n    \"road-lock\",\n    \"road-spikes\",\n    \"road\",\n    \"robot-astromech\",\n    \"robot\",\n    \"rocket-launch\",\n    \"rocket\",\n    \"roller-coaster\",\n    \"rotate-exclamation\",\n    \"rotate-left\",\n    \"rotate-reverse\",\n    \"rotate-right\",\n    \"rotate\",\n    \"route-highway\",\n    \"route-interstate\",\n    \"route\",\n    \"router\",\n    \"rss\",\n    \"ruble-sign\",\n    \"rug\",\n    \"rugby-ball\",\n    \"ruler-combined\",\n    \"ruler-horizontal\",\n    \"ruler-triangle\",\n    \"ruler-vertical\",\n    \"ruler\",\n    \"rupee-sign\",\n    \"rupiah-sign\",\n    \"rv\",\n    \"s\",\n    \"sack-dollar\",\n    \"sack-xmark\",\n    \"sack\",\n    \"sailboat\",\n    \"salad\",\n    \"salt-shaker\",\n    \"sandwich\",\n    \"satellite-dish\",\n    \"satellite\",\n    \"sausage\",\n    \"saxophone-fire\",\n    \"saxophone\",\n    \"scale-balanced\",\n    \"scale-unbalanced-flip\",\n    \"scale-unbalanced\",\n    \"scalpel-line-dashed\",\n    \"scalpel\",\n    \"scanner-gun\",\n    \"scanner-image\",\n    \"scanner-keyboard\",\n    \"scanner-touchscreen\",\n    \"scarecrow\",\n    \"scarf\",\n    \"school-circle-check\",\n    \"school-circle-exclamation\",\n    \"school-circle-xmark\",\n    \"school-flag\",\n    \"school-lock\",\n    \"school\",\n    \"scissors\",\n    \"screen-users\",\n    \"screencast\",\n    \"screwdriver-wrench\",\n    \"screwdriver\",\n    \"scribble\",\n    \"scroll-old\",\n    \"scroll-torah\",\n    \"scroll\",\n    \"scrubber\",\n    \"scythe\",\n    \"sd-card\",\n    \"sd-cards\",\n    \"seal-exclamation\",\n    \"seal-question\",\n    \"seal\",\n    \"seat-airline\",\n    \"section\",\n    \"seedling\",\n    \"semicolon\",\n    \"send-back\",\n    \"send-backward\",\n    \"sensor-cloud\",\n    \"sensor-fire\",\n    \"sensor-on\",\n    \"sensor-triangle-exclamation\",\n    \"sensor\",\n    \"server\",\n    \"shapes\",\n    \"share-all\",\n    \"share-from-square\",\n    \"share-nodes\",\n    \"share\",\n    \"sheep\",\n    \"sheet-plastic\",\n    \"shekel-sign\",\n    \"shelves-empty\",\n    \"shelves\",\n    \"shield-cat\",\n    \"shield-check\",\n    \"shield-cross\",\n    \"shield-dog\",\n    \"shield-exclamation\",\n    \"shield-halved\",\n    \"shield-heart\",\n    \"shield-keyhole\",\n    \"shield-minus\",\n    \"shield-plus\",\n    \"shield-quartered\",\n    \"shield-slash\",\n    \"shield-virus\",\n    \"shield-xmark\",\n    \"shield\",\n    \"ship\",\n    \"shirt-long-sleeve\",\n    \"shirt-running\",\n    \"shirt-tank-top\",\n    \"shirt\",\n    \"shish-kebab\",\n    \"shoe-prints\",\n    \"shop-lock\",\n    \"shop-slash\",\n    \"shop\",\n    \"shovel-snow\",\n    \"shovel\",\n    \"shower-down\",\n    \"shower\",\n    \"shredder\",\n    \"shrimp\",\n    \"shuffle\",\n    \"shutters\",\n    \"shuttle-space\",\n    \"shuttlecock\",\n    \"sickle\",\n    \"sidebar-flip\",\n    \"sidebar\",\n    \"sigma\",\n    \"sign-hanging\",\n    \"sign-post\",\n    \"sign-posts-wrench\",\n    \"sign-posts\",\n    \"signal-bars-fair\",\n    \"signal-bars-good\",\n    \"signal-bars-slash\",\n    \"signal-bars-weak\",\n    \"signal-bars\",\n    \"signal-fair\",\n    \"signal-good\",\n    \"signal-slash\",\n    \"signal-stream-slash\",\n    \"signal-stream\",\n    \"signal-strong\",\n    \"signal-weak\",\n    \"signal\",\n    \"signature-lock\",\n    \"signature-slash\",\n    \"signature\",\n    \"signs-post\",\n    \"sim-card\",\n    \"sim-cards\",\n    \"sink\",\n    \"siren-on\",\n    \"siren\",\n    \"sitemap\",\n    \"skeleton-ribs\",\n    \"skeleton\",\n    \"ski-boot-ski\",\n    \"ski-boot\",\n    \"skull-cow\",\n    \"skull-crossbones\",\n    \"skull\",\n    \"slash-back\",\n    \"slash-forward\",\n    \"slash\",\n    \"sleigh\",\n    \"slider\",\n    \"sliders-simple\",\n    \"sliders-up\",\n    \"sliders\",\n    \"slot-machine\",\n    \"smog\",\n    \"smoke\",\n    \"smoking\",\n    \"snake\",\n    \"snooze\",\n    \"snow-blowing\",\n    \"snowflake-droplets\",\n    \"snowflake\",\n    \"snowflakes\",\n    \"snowman-head\",\n    \"snowman\",\n    \"snowplow\",\n    \"soap\",\n    \"socks\",\n    \"soft-serve\",\n    \"solar-panel\",\n    \"solar-system\",\n    \"sort-down\",\n    \"sort-up\",\n    \"sort\",\n    \"spa\",\n    \"space-station-moon-construction\",\n    \"space-station-moon\",\n    \"spade\",\n    \"spaghetti-monster-flying\",\n    \"sparkle\",\n    \"sparkles\",\n    \"speaker\",\n    \"speakers\",\n    \"spell-check\",\n    \"spider-black-widow\",\n    \"spider-web\",\n    \"spider\",\n    \"spinner-scale\",\n    \"spinner-third\",\n    \"spinner\",\n    \"split\",\n    \"splotch\",\n    \"spoon\",\n    \"sportsball\",\n    \"spray-can-sparkles\",\n    \"spray-can\",\n    \"sprinkler-ceiling\",\n    \"sprinkler\",\n    \"square-0\",\n    \"square-1\",\n    \"square-2\",\n    \"square-3\",\n    \"square-4\",\n    \"square-5\",\n    \"square-6\",\n    \"square-7\",\n    \"square-8\",\n    \"square-9\",\n    \"square-a-lock\",\n    \"square-a\",\n    \"square-ampersand\",\n    \"square-arrow-down-left\",\n    \"square-arrow-down-right\",\n    \"square-arrow-down\",\n    \"square-arrow-left\",\n    \"square-arrow-right\",\n    \"square-arrow-up-left\",\n    \"square-arrow-up-right\",\n    \"square-arrow-up\",\n    \"square-b\",\n    \"square-binary\",\n    \"square-bolt\",\n    \"square-c\",\n    \"square-caret-down\",\n    \"square-caret-left\",\n    \"square-caret-right\",\n    \"square-caret-up\",\n    \"square-check\",\n    \"square-chevron-down\",\n    \"square-chevron-left\",\n    \"square-chevron-right\",\n    \"square-chevron-up\",\n    \"square-code\",\n    \"square-d\",\n    \"square-dashed-circle-plus\",\n    \"square-dashed\",\n    \"square-divide\",\n    \"square-dollar\",\n    \"square-down-left\",\n    \"square-down-right\",\n    \"square-down\",\n    \"square-e\",\n    \"square-ellipsis-vertical\",\n    \"square-ellipsis\",\n    \"square-envelope\",\n    \"square-exclamation\",\n    \"square-f\",\n    \"square-fragile\",\n    \"square-full\",\n    \"square-g\",\n    \"square-h\",\n    \"square-heart\",\n    \"square-i\",\n    \"square-info\",\n    \"square-j\",\n    \"square-k\",\n    \"square-kanban\",\n    \"square-l\",\n    \"square-left\",\n    \"square-list\",\n    \"square-m\",\n    \"square-minus\",\n    \"square-n\",\n    \"square-nfi\",\n    \"square-o\",\n    \"square-p\",\n    \"square-parking-slash\",\n    \"square-parking\",\n    \"square-pen\",\n    \"square-person-confined\",\n    \"square-phone-flip\",\n    \"square-phone-hangup\",\n    \"square-phone\",\n    \"square-plus\",\n    \"square-poll-horizontal\",\n    \"square-poll-vertical\",\n    \"square-q\",\n    \"square-quarters\",\n    \"square-question\",\n    \"square-quote\",\n    \"square-r\",\n    \"square-right\",\n    \"square-ring\",\n    \"square-root-variable\",\n    \"square-root\",\n    \"square-rss\",\n    \"square-s\",\n    \"square-share-nodes\",\n    \"square-sliders-vertical\",\n    \"square-sliders\",\n    \"square-small\",\n    \"square-star\",\n    \"square-t\",\n    \"square-terminal\",\n    \"square-this-way-up\",\n    \"square-u\",\n    \"square-up-left\",\n    \"square-up-right\",\n    \"square-up\",\n    \"square-user\",\n    \"square-v\",\n    \"square-virus\",\n    \"square-w\",\n    \"square-x\",\n    \"square-xmark\",\n    \"square-y\",\n    \"square-z\",\n    \"square\",\n    \"squid\",\n    \"squirrel\",\n    \"staff-snake\",\n    \"staff\",\n    \"stairs\",\n    \"stamp\",\n    \"standard-definition\",\n    \"stapler\",\n    \"star-and-crescent\",\n    \"star-christmas\",\n    \"star-exclamation\",\n    \"star-half-stroke\",\n    \"star-half\",\n    \"star-of-david\",\n    \"star-of-life\",\n    \"star-sharp-half-stroke\",\n    \"star-sharp-half\",\n    \"star-sharp\",\n    \"star-shooting\",\n    \"star\",\n    \"starfighter-twin-ion-engine-advanced\",\n    \"starfighter-twin-ion-engine\",\n    \"starfighter\",\n    \"stars\",\n    \"starship-freighter\",\n    \"starship\",\n    \"steak\",\n    \"steering-wheel\",\n    \"sterling-sign\",\n    \"stethoscope\",\n    \"stocking\",\n    \"stomach\",\n    \"stop\",\n    \"stopwatch-20\",\n    \"stopwatch\",\n    \"store-lock\",\n    \"store-slash\",\n    \"store\",\n    \"strawberry\",\n    \"street-view\",\n    \"stretcher\",\n    \"strikethrough\",\n    \"stroopwafel\",\n    \"subscript\",\n    \"subtitles-slash\",\n    \"subtitles\",\n    \"suitcase-medical\",\n    \"suitcase-rolling\",\n    \"suitcase\",\n    \"sun-bright\",\n    \"sun-cloud\",\n    \"sun-dust\",\n    \"sun-haze\",\n    \"sun-plant-wilt\",\n    \"sun\",\n    \"sunglasses\",\n    \"sunrise\",\n    \"sunset\",\n    \"superscript\",\n    \"sushi-roll\",\n    \"sushi\",\n    \"swap-arrows\",\n    \"swap\",\n    \"swatchbook\",\n    \"sword-laser-alt\",\n    \"sword-laser\",\n    \"sword\",\n    \"swords-laser\",\n    \"swords\",\n    \"symbols\",\n    \"synagogue\",\n    \"syringe\",\n    \"t-rex\",\n    \"t\",\n    \"table-cells-column-lock\",\n    \"table-cells-column-unlock\",\n    \"table-cells-large\",\n    \"table-cells-lock\",\n    \"table-cells-row-lock\",\n    \"table-cells-row-unlock\",\n    \"table-cells-unlock\",\n    \"table-cells\",\n    \"table-columns\",\n    \"table-layout\",\n    \"table-list\",\n    \"table-picnic\",\n    \"table-pivot\",\n    \"table-rows\",\n    \"table-tennis-paddle-ball\",\n    \"table-tree\",\n    \"table\",\n    \"tablet-button\",\n    \"tablet-rugged\",\n    \"tablet-screen-button\",\n    \"tablet-screen\",\n    \"tablet\",\n    \"tablets\",\n    \"tachograph-digital\",\n    \"taco\",\n    \"tag\",\n    \"tags\",\n    \"tally-1\",\n    \"tally-2\",\n    \"tally-3\",\n    \"tally-4\",\n    \"tally\",\n    \"tamale\",\n    \"tank-water\",\n    \"tape\",\n    \"tarp-droplet\",\n    \"tarp\",\n    \"taxi-bus\",\n    \"taxi\",\n    \"teddy-bear\",\n    \"teeth-open\",\n    \"teeth\",\n    \"telescope\",\n    \"temperature-arrow-down\",\n    \"temperature-arrow-up\",\n    \"temperature-empty\",\n    \"temperature-full\",\n    \"temperature-half\",\n    \"temperature-high\",\n    \"temperature-list\",\n    \"temperature-low\",\n    \"temperature-quarter\",\n    \"temperature-snow\",\n    \"temperature-sun\",\n    \"temperature-three-quarters\",\n    \"tenge-sign\",\n    \"tennis-ball\",\n    \"tent-arrow-down-to-line\",\n    \"tent-arrow-left-right\",\n    \"tent-arrow-turn-left\",\n    \"tent-arrows-down\",\n    \"tent-double-peak\",\n    \"tent\",\n    \"tents\",\n    \"terminal\",\n    \"text-height\",\n    \"text-size\",\n    \"text-slash\",\n    \"text-width\",\n    \"text\",\n    \"thermometer\",\n    \"theta\",\n    \"thought-bubble\",\n    \"thumbs-down\",\n    \"thumbs-up\",\n    \"thumbtack-slash\",\n    \"thumbtack\",\n    \"tick\",\n    \"ticket-airline\",\n    \"ticket-perforated\",\n    \"ticket-simple\",\n    \"ticket\",\n    \"tickets-airline\",\n    \"tickets-perforated\",\n    \"tickets-simple\",\n    \"tickets\",\n    \"tilde\",\n    \"timeline-arrow\",\n    \"timeline\",\n    \"timer\",\n    \"tire-flat\",\n    \"tire-pressure-warning\",\n    \"tire-rugged\",\n    \"tire\",\n    \"toggle-large-off\",\n    \"toggle-large-on\",\n    \"toggle-off\",\n    \"toggle-on\",\n    \"toilet-paper-blank-under\",\n    \"toilet-paper-blank\",\n    \"toilet-paper-check\",\n    \"toilet-paper-slash\",\n    \"toilet-paper-under-slash\",\n    \"toilet-paper-under\",\n    \"toilet-paper-xmark\",\n    \"toilet-paper\",\n    \"toilet-portable\",\n    \"toilet\",\n    \"toilets-portable\",\n    \"tomato\",\n    \"tombstone-blank\",\n    \"tombstone\",\n    \"toolbox\",\n    \"tooth\",\n    \"toothbrush\",\n    \"torii-gate\",\n    \"tornado\",\n    \"tower-broadcast\",\n    \"tower-cell\",\n    \"tower-control\",\n    \"tower-observation\",\n    \"tractor\",\n    \"trademark\",\n    \"traffic-cone\",\n    \"traffic-light-go\",\n    \"traffic-light-slow\",\n    \"traffic-light-stop\",\n    \"traffic-light\",\n    \"trailer\",\n    \"train-subway-tunnel\",\n    \"train-subway\",\n    \"train-track\",\n    \"train-tram\",\n    \"train-tunnel\",\n    \"train\",\n    \"transformer-bolt\",\n    \"transgender\",\n    \"transporter-1\",\n    \"transporter-2\",\n    \"transporter-3\",\n    \"transporter-4\",\n    \"transporter-5\",\n    \"transporter-6\",\n    \"transporter-7\",\n    \"transporter-empty\",\n    \"transporter\",\n    \"trash-arrow-up\",\n    \"trash-can-arrow-up\",\n    \"trash-can-check\",\n    \"trash-can-clock\",\n    \"trash-can-list\",\n    \"trash-can-plus\",\n    \"trash-can-slash\",\n    \"trash-can-undo\",\n    \"trash-can-xmark\",\n    \"trash-can\",\n    \"trash-check\",\n    \"trash-clock\",\n    \"trash-list\",\n    \"trash-plus\",\n    \"trash-slash\",\n    \"trash-undo\",\n    \"trash-xmark\",\n    \"trash\",\n    \"treasure-chest\",\n    \"tree-christmas\",\n    \"tree-city\",\n    \"tree-deciduous\",\n    \"tree-decorated\",\n    \"tree-large\",\n    \"tree-palm\",\n    \"tree\",\n    \"trees\",\n    \"triangle-exclamation\",\n    \"triangle-instrument\",\n    \"triangle-person-digging\",\n    \"triangle\",\n    \"tricycle-adult\",\n    \"tricycle\",\n    \"trillium\",\n    \"trophy-star\",\n    \"trophy\",\n    \"trowel-bricks\",\n    \"trowel\",\n    \"truck-arrow-right\",\n    \"truck-bolt\",\n    \"truck-clock\",\n    \"truck-container-empty\",\n    \"truck-container\",\n    \"truck-droplet\",\n    \"truck-fast\",\n    \"truck-field-un\",\n    \"truck-field\",\n    \"truck-fire\",\n    \"truck-flatbed\",\n    \"truck-front\",\n    \"truck-ladder\",\n    \"truck-medical\",\n    \"truck-monster\",\n    \"truck-moving\",\n    \"truck-pickup\",\n    \"truck-plane\",\n    \"truck-plow\",\n    \"truck-ramp-box\",\n    \"truck-ramp-couch\",\n    \"truck-ramp\",\n    \"truck-tow\",\n    \"truck-utensils\",\n    \"truck\",\n    \"trumpet\",\n    \"tty-answer\",\n    \"tty\",\n    \"tugrik-sign\",\n    \"turkey\",\n    \"turkish-lira-sign\",\n    \"turn-down-left\",\n    \"turn-down-right\",\n    \"turn-down\",\n    \"turn-left-down\",\n    \"turn-left-up\",\n    \"turn-left\",\n    \"turn-right\",\n    \"turn-up\",\n    \"turntable\",\n    \"turtle\",\n    \"tv-music\",\n    \"tv-retro\",\n    \"tv\",\n    \"typewriter\",\n    \"u\",\n    \"ufo-beam\",\n    \"ufo\",\n    \"umbrella-beach\",\n    \"umbrella-simple\",\n    \"umbrella\",\n    \"underline\",\n    \"unicorn\",\n    \"uniform-martial-arts\",\n    \"union\",\n    \"universal-access\",\n    \"unlock-keyhole\",\n    \"unlock\",\n    \"up-down-left-right\",\n    \"up-down\",\n    \"up-from-bracket\",\n    \"up-from-dotted-line\",\n    \"up-from-line\",\n    \"up-left\",\n    \"up-long\",\n    \"up-right-and-down-left-from-center\",\n    \"up-right-from-square\",\n    \"up-right\",\n    \"up-to-bracket\",\n    \"up-to-dotted-line\",\n    \"up-to-line\",\n    \"up\",\n    \"upload\",\n    \"usb-drive\",\n    \"user-alien\",\n    \"user-astronaut\",\n    \"user-beard-bolt\",\n    \"user-bounty-hunter\",\n    \"user-check\",\n    \"user-chef\",\n    \"user-clock\",\n    \"user-cowboy\",\n    \"user-crown\",\n    \"user-doctor-hair-long\",\n    \"user-doctor-hair\",\n    \"user-doctor-message\",\n    \"user-doctor\",\n    \"user-gear\",\n    \"user-graduate\",\n    \"user-group-crown\",\n    \"user-group-simple\",\n    \"user-group\",\n    \"user-hair-buns\",\n    \"user-hair-long\",\n    \"user-hair-mullet\",\n    \"user-hair\",\n    \"user-headset\",\n    \"user-helmet-safety\",\n    \"user-hoodie\",\n    \"user-injured\",\n    \"user-large-slash\",\n    \"user-large\",\n    \"user-lock\",\n    \"user-magnifying-glass\",\n    \"user-minus\",\n    \"user-music\",\n    \"user-ninja\",\n    \"user-nurse-hair-long\",\n    \"user-nurse-hair\",\n    \"user-nurse\",\n    \"user-pen\",\n    \"user-pilot-tie\",\n    \"user-pilot\",\n    \"user-plus\",\n    \"user-police-tie\",\n    \"user-police\",\n    \"user-robot-xmarks\",\n    \"user-robot\",\n    \"user-secret\",\n    \"user-shakespeare\",\n    \"user-shield\",\n    \"user-slash\",\n    \"user-tag\",\n    \"user-tie-hair-long\",\n    \"user-tie-hair\",\n    \"user-tie\",\n    \"user-unlock\",\n    \"user-visor\",\n    \"user-vneck-hair-long\",\n    \"user-vneck-hair\",\n    \"user-vneck\",\n    \"user-xmark\",\n    \"user\",\n    \"users-between-lines\",\n    \"users-gear\",\n    \"users-line\",\n    \"users-medical\",\n    \"users-rays\",\n    \"users-rectangle\",\n    \"users-slash\",\n    \"users-viewfinder\",\n    \"users\",\n    \"utensils-slash\",\n    \"utensils\",\n    \"utility-pole-double\",\n    \"utility-pole\",\n    \"v\",\n    \"vacuum-robot\",\n    \"vacuum\",\n    \"value-absolute\",\n    \"van-shuttle\",\n    \"vault\",\n    \"vector-circle\",\n    \"vector-polygon\",\n    \"vector-square\",\n    \"vent-damper\",\n    \"venus-double\",\n    \"venus-mars\",\n    \"venus\",\n    \"vest-patches\",\n    \"vest\",\n    \"vial-circle-check\",\n    \"vial-virus\",\n    \"vial\",\n    \"vials\",\n    \"video-arrow-down-left\",\n    \"video-arrow-up-right\",\n    \"video-plus\",\n    \"video-slash\",\n    \"video\",\n    \"vihara\",\n    \"violin\",\n    \"virus-covid-slash\",\n    \"virus-covid\",\n    \"virus-slash\",\n    \"virus\",\n    \"viruses\",\n    \"voicemail\",\n    \"volcano\",\n    \"volleyball\",\n    \"volume-high\",\n    \"volume-low\",\n    \"volume-off\",\n    \"volume-slash\",\n    \"volume-xmark\",\n    \"volume\",\n    \"vr-cardboard\",\n    \"w\",\n    \"waffle\",\n    \"wagon-covered\",\n    \"walker\",\n    \"walkie-talkie\",\n    \"wallet\",\n    \"wand-magic-sparkles\",\n    \"wand-magic\",\n    \"wand-sparkles\",\n    \"wand\",\n    \"warehouse-full\",\n    \"warehouse\",\n    \"washing-machine\",\n    \"watch-apple\",\n    \"watch-calculator\",\n    \"watch-fitness\",\n    \"watch-smart\",\n    \"watch\",\n    \"water-arrow-down\",\n    \"water-arrow-up\",\n    \"water-ladder\",\n    \"water\",\n    \"watermelon-slice\",\n    \"wave-pulse\",\n    \"wave-sine\",\n    \"wave-square\",\n    \"wave-triangle\",\n    \"wave\",\n    \"waveform-lines\",\n    \"waveform\",\n    \"waves-sine\",\n    \"web-awesome\",\n    \"webhook\",\n    \"weight-hanging\",\n    \"weight-scale\",\n    \"whale\",\n    \"wheat-awn-circle-exclamation\",\n    \"wheat-awn-slash\",\n    \"wheat-awn\",\n    \"wheat-slash\",\n    \"wheat\",\n    \"wheelchair-move\",\n    \"wheelchair\",\n    \"whiskey-glass-ice\",\n    \"whiskey-glass\",\n    \"whistle\",\n    \"wifi-exclamation\",\n    \"wifi-fair\",\n    \"wifi-slash\",\n    \"wifi-weak\",\n    \"wifi\",\n    \"wind-turbine\",\n    \"wind-warning\",\n    \"wind\",\n    \"window-flip\",\n    \"window-frame-open\",\n    \"window-frame\",\n    \"window-maximize\",\n    \"window-minimize\",\n    \"window-restore\",\n    \"window\",\n    \"windsock\",\n    \"wine-bottle\",\n    \"wine-glass-crack\",\n    \"wine-glass-empty\",\n    \"wine-glass\",\n    \"won-sign\",\n    \"worm\",\n    \"wreath-laurel\",\n    \"wreath\",\n    \"wrench-simple\",\n    \"wrench\",\n    \"x-ray\",\n    \"x\",\n    \"xmark-large\",\n    \"xmark-to-slot\",\n    \"xmark\",\n    \"xmarks-lines\",\n    \"y\",\n    \"yen-sign\",\n    \"yin-yang\",\n    \"z\"\n  ],\n  \"duotone-regular\": [\n    \"0\",\n    \"00\",\n    \"1\",\n    \"2\",\n    \"3\",\n    \"360-degrees\",\n    \"4\",\n    \"5\",\n    \"6\",\n    \"7\",\n    \"8\",\n    \"9\",\n    \"a\",\n    \"abacus\",\n    \"accent-grave\",\n    \"acorn\",\n    \"address-book\",\n    \"address-card\",\n    \"air-conditioner\",\n    \"airplay\",\n    \"alarm-clock\",\n    \"alarm-exclamation\",\n    \"alarm-plus\",\n    \"alarm-snooze\",\n    \"album-circle-plus\",\n    \"album-circle-user\",\n    \"album-collection-circle-plus\",\n    \"album-collection-circle-user\",\n    \"album-collection\",\n    \"album\",\n    \"alicorn\",\n    \"alien-8bit\",\n    \"alien\",\n    \"align-center\",\n    \"align-justify\",\n    \"align-left\",\n    \"align-right\",\n    \"align-slash\",\n    \"alt\",\n    \"amp-guitar\",\n    \"ampersand\",\n    \"anchor-circle-check\",\n    \"anchor-circle-exclamation\",\n    \"anchor-circle-xmark\",\n    \"anchor-lock\",\n    \"anchor\",\n    \"angel\",\n    \"angle-90\",\n    \"angle-down\",\n    \"angle-left\",\n    \"angle-right\",\n    \"angle-up\",\n    \"angle\",\n    \"angles-down\",\n    \"angles-left\",\n    \"angles-right\",\n    \"angles-up-down\",\n    \"angles-up\",\n    \"ankh\",\n    \"ant\",\n    \"apartment\",\n    \"aperture\",\n    \"apostrophe\",\n    \"apple-core\",\n    \"apple-whole\",\n    \"archway\",\n    \"arrow-down-1-9\",\n    \"arrow-down-9-1\",\n    \"arrow-down-a-z\",\n    \"arrow-down-arrow-up\",\n    \"arrow-down-big-small\",\n    \"arrow-down-from-arc\",\n    \"arrow-down-from-bracket\",\n    \"arrow-down-from-dotted-line\",\n    \"arrow-down-from-line\",\n    \"arrow-down-left-and-arrow-up-right-to-center\",\n    \"arrow-down-left\",\n    \"arrow-down-long\",\n    \"arrow-down-right\",\n    \"arrow-down-short-wide\",\n    \"arrow-down-small-big\",\n    \"arrow-down-square-triangle\",\n    \"arrow-down-to-arc\",\n    \"arrow-down-to-bracket\",\n    \"arrow-down-to-dotted-line\",\n    \"arrow-down-to-line\",\n    \"arrow-down-to-square\",\n    \"arrow-down-triangle-square\",\n    \"arrow-down-up-across-line\",\n    \"arrow-down-up-lock\",\n    \"arrow-down-wide-short\",\n    \"arrow-down-z-a\",\n    \"arrow-down\",\n    \"arrow-left-from-arc\",\n    \"arrow-left-from-bracket\",\n    \"arrow-left-from-line\",\n    \"arrow-left-long-to-line\",\n    \"arrow-left-long\",\n    \"arrow-left-to-arc\",\n    \"arrow-left-to-bracket\",\n    \"arrow-left-to-line\",\n    \"arrow-left\",\n    \"arrow-pointer\",\n    \"arrow-progress\",\n    \"arrow-right-arrow-left\",\n    \"arrow-right-from-arc\",\n    \"arrow-right-from-bracket\",\n    \"arrow-right-from-line\",\n    \"arrow-right-long-to-line\",\n    \"arrow-right-long\",\n    \"arrow-right-to-arc\",\n    \"arrow-right-to-bracket\",\n    \"arrow-right-to-city\",\n    \"arrow-right-to-line\",\n    \"arrow-right\",\n    \"arrow-rotate-left\",\n    \"arrow-rotate-right\",\n    \"arrow-trend-down\",\n    \"arrow-trend-up\",\n    \"arrow-turn-down-left\",\n    \"arrow-turn-down-right\",\n    \"arrow-turn-down\",\n    \"arrow-turn-left-down\",\n    \"arrow-turn-left-up\",\n    \"arrow-turn-left\",\n    \"arrow-turn-right\",\n    \"arrow-turn-up\",\n    \"arrow-up-1-9\",\n    \"arrow-up-9-1\",\n    \"arrow-up-a-z\",\n    \"arrow-up-arrow-down\",\n    \"arrow-up-big-small\",\n    \"arrow-up-from-arc\",\n    \"arrow-up-from-bracket\",\n    \"arrow-up-from-dotted-line\",\n    \"arrow-up-from-ground-water\",\n    \"arrow-up-from-line\",\n    \"arrow-up-from-square\",\n    \"arrow-up-from-water-pump\",\n    \"arrow-up-left-from-circle\",\n    \"arrow-up-left\",\n    \"arrow-up-long\",\n    \"arrow-up-right-and-arrow-down-left-from-center\",\n    \"arrow-up-right-dots\",\n    \"arrow-up-right-from-square\",\n    \"arrow-up-right\",\n    \"arrow-up-short-wide\",\n    \"arrow-up-small-big\",\n    \"arrow-up-square-triangle\",\n    \"arrow-up-to-arc\",\n    \"arrow-up-to-bracket\",\n    \"arrow-up-to-dotted-line\",\n    \"arrow-up-to-line\",\n    \"arrow-up-triangle-square\",\n    \"arrow-up-wide-short\",\n    \"arrow-up-z-a\",\n    \"arrow-up\",\n    \"arrows-cross\",\n    \"arrows-down-to-line\",\n    \"arrows-down-to-people\",\n    \"arrows-from-dotted-line\",\n    \"arrows-from-line\",\n    \"arrows-left-right-to-line\",\n    \"arrows-left-right\",\n    \"arrows-maximize\",\n    \"arrows-minimize\",\n    \"arrows-repeat-1\",\n    \"arrows-repeat\",\n    \"arrows-retweet\",\n    \"arrows-rotate-reverse\",\n    \"arrows-rotate\",\n    \"arrows-spin\",\n    \"arrows-split-up-and-left\",\n    \"arrows-to-circle\",\n    \"arrows-to-dot\",\n    \"arrows-to-dotted-line\",\n    \"arrows-to-eye\",\n    \"arrows-to-line\",\n    \"arrows-turn-right\",\n    \"arrows-turn-to-dots\",\n    \"arrows-up-down-left-right\",\n    \"arrows-up-down\",\n    \"arrows-up-to-line\",\n    \"asterisk\",\n    \"at\",\n    \"atom-simple\",\n    \"atom\",\n    \"audio-description-slash\",\n    \"audio-description\",\n    \"austral-sign\",\n    \"avocado\",\n    \"award-simple\",\n    \"award\",\n    \"axe-battle\",\n    \"axe\",\n    \"b\",\n    \"baby-carriage\",\n    \"baby\",\n    \"backpack\",\n    \"backward-fast\",\n    \"backward-step\",\n    \"backward\",\n    \"bacon\",\n    \"bacteria\",\n    \"bacterium\",\n    \"badge-check\",\n    \"badge-dollar\",\n    \"badge-percent\",\n    \"badge-sheriff\",\n    \"badge\",\n    \"badger-honey\",\n    \"badminton\",\n    \"bag-seedling\",\n    \"bag-shopping-minus\",\n    \"bag-shopping-plus\",\n    \"bag-shopping\",\n    \"bagel\",\n    \"bags-shopping\",\n    \"baguette\",\n    \"bahai\",\n    \"baht-sign\",\n    \"ball-pile\",\n    \"balloon\",\n    \"balloons\",\n    \"ballot-check\",\n    \"ballot\",\n    \"ban-bug\",\n    \"ban-parking\",\n    \"ban-smoking\",\n    \"ban\",\n    \"banana\",\n    \"bandage\",\n    \"bangladeshi-taka-sign\",\n    \"banjo\",\n    \"barcode-read\",\n    \"barcode-scan\",\n    \"barcode\",\n    \"bars-filter\",\n    \"bars-progress\",\n    \"bars-sort\",\n    \"bars-staggered\",\n    \"bars\",\n    \"baseball-bat-ball\",\n    \"baseball\",\n    \"basket-shopping-minus\",\n    \"basket-shopping-plus\",\n    \"basket-shopping-simple\",\n    \"basket-shopping\",\n    \"basketball-hoop\",\n    \"basketball\",\n    \"bat\",\n    \"bath\",\n    \"battery-bolt\",\n    \"battery-empty\",\n    \"battery-exclamation\",\n    \"battery-full\",\n    \"battery-half\",\n    \"battery-low\",\n    \"battery-quarter\",\n    \"battery-slash\",\n    \"battery-three-quarters\",\n    \"bed-bunk\",\n    \"bed-empty\",\n    \"bed-front\",\n    \"bed-pulse\",\n    \"bed\",\n    \"bee\",\n    \"beer-mug-empty\",\n    \"beer-mug\",\n    \"bell-concierge\",\n    \"bell-exclamation\",\n    \"bell-on\",\n    \"bell-plus\",\n    \"bell-ring\",\n    \"bell-school-slash\",\n    \"bell-school\",\n    \"bell-slash\",\n    \"bell\",\n    \"bells\",\n    \"bench-tree\",\n    \"bezier-curve\",\n    \"bicycle\",\n    \"billboard\",\n    \"bin-bottles-recycle\",\n    \"bin-bottles\",\n    \"bin-recycle\",\n    \"binary-circle-check\",\n    \"binary-lock\",\n    \"binary-slash\",\n    \"binary\",\n    \"binoculars\",\n    \"biohazard\",\n    \"bird\",\n    \"bitcoin-sign\",\n    \"blanket-fire\",\n    \"blanket\",\n    \"blender-phone\",\n    \"blender\",\n    \"blinds-open\",\n    \"blinds-raised\",\n    \"blinds\",\n    \"block-brick-fire\",\n    \"block-brick\",\n    \"block-question\",\n    \"block-quote\",\n    \"block\",\n    \"blog\",\n    \"blueberries\",\n    \"bluetooth\",\n    \"bold\",\n    \"bolt-auto\",\n    \"bolt-lightning\",\n    \"bolt-slash\",\n    \"bolt\",\n    \"bomb\",\n    \"bone-break\",\n    \"bone\",\n    \"bong\",\n    \"book-arrow-right\",\n    \"book-arrow-up\",\n    \"book-atlas\",\n    \"book-bible\",\n    \"book-blank\",\n    \"book-bookmark\",\n    \"book-circle-arrow-right\",\n    \"book-circle-arrow-up\",\n    \"book-copy\",\n    \"book-font\",\n    \"book-heart\",\n    \"book-journal-whills\",\n    \"book-medical\",\n    \"book-open-cover\",\n    \"book-open-reader\",\n    \"book-open\",\n    \"book-quran\",\n    \"book-section\",\n    \"book-skull\",\n    \"book-sparkles\",\n    \"book-tanakh\",\n    \"book-user\",\n    \"book\",\n    \"bookmark-slash\",\n    \"bookmark\",\n    \"books-medical\",\n    \"books\",\n    \"boombox\",\n    \"boot-heeled\",\n    \"boot\",\n    \"booth-curtain\",\n    \"border-all\",\n    \"border-bottom-right\",\n    \"border-bottom\",\n    \"border-center-h\",\n    \"border-center-v\",\n    \"border-inner\",\n    \"border-left\",\n    \"border-none\",\n    \"border-outer\",\n    \"border-right\",\n    \"border-top-left\",\n    \"border-top\",\n    \"bore-hole\",\n    \"bottle-baby\",\n    \"bottle-droplet\",\n    \"bottle-water\",\n    \"bow-arrow\",\n    \"bowl-chopsticks-noodles\",\n    \"bowl-chopsticks\",\n    \"bowl-food\",\n    \"bowl-hot\",\n    \"bowl-rice\",\n    \"bowl-scoop\",\n    \"bowl-scoops\",\n    \"bowl-soft-serve\",\n    \"bowl-spoon\",\n    \"bowling-ball-pin\",\n    \"bowling-ball\",\n    \"bowling-pins\",\n    \"box-archive\",\n    \"box-ballot\",\n    \"box-check\",\n    \"box-circle-check\",\n    \"box-dollar\",\n    \"box-heart\",\n    \"box-open-full\",\n    \"box-open\",\n    \"box-taped\",\n    \"box-tissue\",\n    \"box\",\n    \"boxes-packing\",\n    \"boxes-stacked\",\n    \"boxing-glove\",\n    \"bracket-curly-right\",\n    \"bracket-curly\",\n    \"bracket-round-right\",\n    \"bracket-round\",\n    \"bracket-square-right\",\n    \"bracket-square\",\n    \"brackets-curly\",\n    \"brackets-round\",\n    \"brackets-square\",\n    \"braille\",\n    \"brain-arrow-curved-right\",\n    \"brain-circuit\",\n    \"brain\",\n    \"brake-warning\",\n    \"brazilian-real-sign\",\n    \"bread-loaf\",\n    \"bread-slice-butter\",\n    \"bread-slice\",\n    \"bridge-circle-check\",\n    \"bridge-circle-exclamation\",\n    \"bridge-circle-xmark\",\n    \"bridge-lock\",\n    \"bridge-suspension\",\n    \"bridge-water\",\n    \"bridge\",\n    \"briefcase-arrow-right\",\n    \"briefcase-blank\",\n    \"briefcase-medical\",\n    \"briefcase\",\n    \"brightness-low\",\n    \"brightness\",\n    \"bring-forward\",\n    \"bring-front\",\n    \"broccoli\",\n    \"broom-ball\",\n    \"broom-wide\",\n    \"broom\",\n    \"browser\",\n    \"browsers\",\n    \"brush\",\n    \"bucket\",\n    \"bug-slash\",\n    \"bug\",\n    \"bugs\",\n    \"building-circle-arrow-right\",\n    \"building-circle-check\",\n    \"building-circle-exclamation\",\n    \"building-circle-xmark\",\n    \"building-columns\",\n    \"building-flag\",\n    \"building-lock\",\n    \"building-magnifying-glass\",\n    \"building-memo\",\n    \"building-ngo\",\n    \"building-shield\",\n    \"building-un\",\n    \"building-user\",\n    \"building-wheat\",\n    \"building\",\n    \"buildings\",\n    \"bulldozer\",\n    \"bullhorn\",\n    \"bullseye-arrow\",\n    \"bullseye-pointer\",\n    \"bullseye\",\n    \"buoy-mooring\",\n    \"buoy\",\n    \"burger-cheese\",\n    \"burger-fries\",\n    \"burger-glass\",\n    \"burger-lettuce\",\n    \"burger-soda\",\n    \"burger\",\n    \"burrito\",\n    \"burst\",\n    \"bus-school\",\n    \"bus-simple\",\n    \"bus\",\n    \"business-time\",\n    \"butter\",\n    \"c\",\n    \"cabin\",\n    \"cabinet-filing\",\n    \"cable-car\",\n    \"cactus\",\n    \"caduceus\",\n    \"cake-candles\",\n    \"cake-slice\",\n    \"calculator-simple\",\n    \"calculator\",\n    \"calendar-arrow-down\",\n    \"calendar-arrow-up\",\n    \"calendar-check\",\n    \"calendar-circle-exclamation\",\n    \"calendar-circle-minus\",\n    \"calendar-circle-plus\",\n    \"calendar-circle-user\",\n    \"calendar-clock\",\n    \"calendar-day\",\n    \"calendar-days\",\n    \"calendar-exclamation\",\n    \"calendar-heart\",\n    \"calendar-image\",\n    \"calendar-lines-pen\",\n    \"calendar-lines\",\n    \"calendar-minus\",\n    \"calendar-pen\",\n    \"calendar-plus\",\n    \"calendar-range\",\n    \"calendar-star\",\n    \"calendar-users\",\n    \"calendar-week\",\n    \"calendar-xmark\",\n    \"calendar\",\n    \"calendars\",\n    \"camcorder\",\n    \"camera-cctv\",\n    \"camera-movie\",\n    \"camera-polaroid\",\n    \"camera-retro\",\n    \"camera-rotate\",\n    \"camera-security\",\n    \"camera-slash\",\n    \"camera-viewfinder\",\n    \"camera-web-slash\",\n    \"camera-web\",\n    \"camera\",\n    \"campfire\",\n    \"campground\",\n    \"can-food\",\n    \"candle-holder\",\n    \"candy-bar\",\n    \"candy-cane\",\n    \"candy-corn\",\n    \"candy\",\n    \"cannabis\",\n    \"cannon\",\n    \"capsules\",\n    \"car-battery\",\n    \"car-bolt\",\n    \"car-building\",\n    \"car-bump\",\n    \"car-burst\",\n    \"car-bus\",\n    \"car-circle-bolt\",\n    \"car-garage\",\n    \"car-mirrors\",\n    \"car-on\",\n    \"car-rear\",\n    \"car-side-bolt\",\n    \"car-side\",\n    \"car-tilt\",\n    \"car-tunnel\",\n    \"car-wash\",\n    \"car-wrench\",\n    \"car\",\n    \"caravan-simple\",\n    \"caravan\",\n    \"card-club\",\n    \"card-diamond\",\n    \"card-heart\",\n    \"card-spade\",\n    \"cards-blank\",\n    \"cards\",\n    \"caret-down\",\n    \"caret-left\",\n    \"caret-right\",\n    \"caret-up\",\n    \"carpool\",\n    \"carrot\",\n    \"cars\",\n    \"cart-arrow-down\",\n    \"cart-arrow-up\",\n    \"cart-circle-arrow-down\",\n    \"cart-circle-arrow-up\",\n    \"cart-circle-check\",\n    \"cart-circle-exclamation\",\n    \"cart-circle-plus\",\n    \"cart-circle-xmark\",\n    \"cart-flatbed-boxes\",\n    \"cart-flatbed-empty\",\n    \"cart-flatbed-suitcase\",\n    \"cart-flatbed\",\n    \"cart-minus\",\n    \"cart-plus\",\n    \"cart-shopping-fast\",\n    \"cart-shopping\",\n    \"cart-xmark\",\n    \"cash-register\",\n    \"cassette-betamax\",\n    \"cassette-tape\",\n    \"cassette-vhs\",\n    \"castle\",\n    \"cat-space\",\n    \"cat\",\n    \"cauldron\",\n    \"cedi-sign\",\n    \"cent-sign\",\n    \"certificate\",\n    \"chair-office\",\n    \"chair\",\n    \"chalkboard-user\",\n    \"chalkboard\",\n    \"champagne-glass\",\n    \"champagne-glasses\",\n    \"charging-station\",\n    \"chart-area\",\n    \"chart-bar\",\n    \"chart-bullet\",\n    \"chart-candlestick\",\n    \"chart-column\",\n    \"chart-diagram\",\n    \"chart-fft\",\n    \"chart-gantt\",\n    \"chart-kanban\",\n    \"chart-line-down\",\n    \"chart-line-up-down\",\n    \"chart-line-up\",\n    \"chart-line\",\n    \"chart-mixed-up-circle-currency\",\n    \"chart-mixed-up-circle-dollar\",\n    \"chart-mixed\",\n    \"chart-network\",\n    \"chart-pie-simple-circle-currency\",\n    \"chart-pie-simple-circle-dollar\",\n    \"chart-pie-simple\",\n    \"chart-pie\",\n    \"chart-pyramid\",\n    \"chart-radar\",\n    \"chart-scatter-3d\",\n    \"chart-scatter-bubble\",\n    \"chart-scatter\",\n    \"chart-simple-horizontal\",\n    \"chart-simple\",\n    \"chart-sine\",\n    \"chart-tree-map\",\n    \"chart-user\",\n    \"chart-waterfall\",\n    \"check-double\",\n    \"check-to-slot\",\n    \"check\",\n    \"cheese-swiss\",\n    \"cheese\",\n    \"cherries\",\n    \"chess-bishop-piece\",\n    \"chess-bishop\",\n    \"chess-board\",\n    \"chess-clock-flip\",\n    \"chess-clock\",\n    \"chess-king-piece\",\n    \"chess-king\",\n    \"chess-knight-piece\",\n    \"chess-knight\",\n    \"chess-pawn-piece\",\n    \"chess-pawn\",\n    \"chess-queen-piece\",\n    \"chess-queen\",\n    \"chess-rook-piece\",\n    \"chess-rook\",\n    \"chess\",\n    \"chestnut\",\n    \"chevron-down\",\n    \"chevron-left\",\n    \"chevron-right\",\n    \"chevron-up\",\n    \"chevrons-down\",\n    \"chevrons-left\",\n    \"chevrons-right\",\n    \"chevrons-up\",\n    \"chf-sign\",\n    \"child-combatant\",\n    \"child-dress\",\n    \"child-reaching\",\n    \"child\",\n    \"children\",\n    \"chimney\",\n    \"chopsticks\",\n    \"church\",\n    \"circle-0\",\n    \"circle-1\",\n    \"circle-2\",\n    \"circle-3\",\n    \"circle-4\",\n    \"circle-5\",\n    \"circle-6\",\n    \"circle-7\",\n    \"circle-8\",\n    \"circle-9\",\n    \"circle-a\",\n    \"circle-ampersand\",\n    \"circle-arrow-down-left\",\n    \"circle-arrow-down-right\",\n    \"circle-arrow-down\",\n    \"circle-arrow-left\",\n    \"circle-arrow-right\",\n    \"circle-arrow-up-left\",\n    \"circle-arrow-up-right\",\n    \"circle-arrow-up\",\n    \"circle-b\",\n    \"circle-bolt\",\n    \"circle-book-open\",\n    \"circle-bookmark\",\n    \"circle-c\",\n    \"circle-calendar\",\n    \"circle-camera\",\n    \"circle-caret-down\",\n    \"circle-caret-left\",\n    \"circle-caret-right\",\n    \"circle-caret-up\",\n    \"circle-check\",\n    \"circle-chevron-down\",\n    \"circle-chevron-left\",\n    \"circle-chevron-right\",\n    \"circle-chevron-up\",\n    \"circle-d\",\n    \"circle-dashed\",\n    \"circle-divide\",\n    \"circle-dollar-to-slot\",\n    \"circle-dollar\",\n    \"circle-dot\",\n    \"circle-down-left\",\n    \"circle-down-right\",\n    \"circle-down\",\n    \"circle-e\",\n    \"circle-ellipsis-vertical\",\n    \"circle-ellipsis\",\n    \"circle-envelope\",\n    \"circle-euro\",\n    \"circle-exclamation-check\",\n    \"circle-exclamation\",\n    \"circle-f\",\n    \"circle-g\",\n    \"circle-gf\",\n    \"circle-h\",\n    \"circle-half-stroke\",\n    \"circle-half\",\n    \"circle-heart\",\n    \"circle-i\",\n    \"circle-info\",\n    \"circle-j\",\n    \"circle-k\",\n    \"circle-l\",\n    \"circle-left\",\n    \"circle-location-arrow\",\n    \"circle-m\",\n    \"circle-microphone-lines\",\n    \"circle-microphone\",\n    \"circle-minus\",\n    \"circle-n\",\n    \"circle-nodes\",\n    \"circle-notch\",\n    \"circle-o\",\n    \"circle-p\",\n    \"circle-parking\",\n    \"circle-pause\",\n    \"circle-phone-flip\",\n    \"circle-phone-hangup\",\n    \"circle-phone\",\n    \"circle-play\",\n    \"circle-plus\",\n    \"circle-q\",\n    \"circle-quarter-stroke\",\n    \"circle-quarter\",\n    \"circle-quarters\",\n    \"circle-question\",\n    \"circle-r\",\n    \"circle-radiation\",\n    \"circle-right\",\n    \"circle-s\",\n    \"circle-small\",\n    \"circle-sort-down\",\n    \"circle-sort-up\",\n    \"circle-sort\",\n    \"circle-star\",\n    \"circle-sterling\",\n    \"circle-stop\",\n    \"circle-t\",\n    \"circle-three-quarters-stroke\",\n    \"circle-three-quarters\",\n    \"circle-trash\",\n    \"circle-u\",\n    \"circle-up-left\",\n    \"circle-up-right\",\n    \"circle-up\",\n    \"circle-user\",\n    \"circle-v\",\n    \"circle-video\",\n    \"circle-w\",\n    \"circle-waveform-lines\",\n    \"circle-wifi-circle-wifi\",\n    \"circle-wifi\",\n    \"circle-x\",\n    \"circle-xmark\",\n    \"circle-y\",\n    \"circle-yen\",\n    \"circle-z\",\n    \"circle\",\n    \"circles-overlap-3\",\n    \"circles-overlap\",\n    \"citrus-slice\",\n    \"citrus\",\n    \"city\",\n    \"clapperboard-play\",\n    \"clapperboard\",\n    \"clarinet\",\n    \"claw-marks\",\n    \"clipboard-check\",\n    \"clipboard-list-check\",\n    \"clipboard-list\",\n    \"clipboard-medical\",\n    \"clipboard-prescription\",\n    \"clipboard-question\",\n    \"clipboard-user\",\n    \"clipboard\",\n    \"clock-desk\",\n    \"clock-eight-thirty\",\n    \"clock-eight\",\n    \"clock-eleven-thirty\",\n    \"clock-eleven\",\n    \"clock-five-thirty\",\n    \"clock-five\",\n    \"clock-four-thirty\",\n    \"clock-nine-thirty\",\n    \"clock-nine\",\n    \"clock-one-thirty\",\n    \"clock-one\",\n    \"clock-rotate-left\",\n    \"clock-seven-thirty\",\n    \"clock-seven\",\n    \"clock-six-thirty\",\n    \"clock-six\",\n    \"clock-ten-thirty\",\n    \"clock-ten\",\n    \"clock-three-thirty\",\n    \"clock-three\",\n    \"clock-twelve-thirty\",\n    \"clock-twelve\",\n    \"clock-two-thirty\",\n    \"clock-two\",\n    \"clock\",\n    \"clone\",\n    \"closed-captioning-slash\",\n    \"closed-captioning\",\n    \"clothes-hanger\",\n    \"cloud-arrow-down\",\n    \"cloud-arrow-up\",\n    \"cloud-binary\",\n    \"cloud-bolt-moon\",\n    \"cloud-bolt-sun\",\n    \"cloud-bolt\",\n    \"cloud-check\",\n    \"cloud-drizzle\",\n    \"cloud-exclamation\",\n    \"cloud-fog\",\n    \"cloud-hail-mixed\",\n    \"cloud-hail\",\n    \"cloud-meatball\",\n    \"cloud-minus\",\n    \"cloud-moon-rain\",\n    \"cloud-moon\",\n    \"cloud-music\",\n    \"cloud-plus\",\n    \"cloud-question\",\n    \"cloud-rain\",\n    \"cloud-rainbow\",\n    \"cloud-showers-heavy\",\n    \"cloud-showers-water\",\n    \"cloud-showers\",\n    \"cloud-slash\",\n    \"cloud-sleet\",\n    \"cloud-snow\",\n    \"cloud-sun-rain\",\n    \"cloud-sun\",\n    \"cloud-word\",\n    \"cloud-xmark\",\n    \"cloud\",\n    \"clouds-moon\",\n    \"clouds-sun\",\n    \"clouds\",\n    \"clover\",\n    \"club\",\n    \"coconut\",\n    \"code-branch\",\n    \"code-commit\",\n    \"code-compare\",\n    \"code-fork\",\n    \"code-merge\",\n    \"code-pull-request-closed\",\n    \"code-pull-request-draft\",\n    \"code-pull-request\",\n    \"code-simple\",\n    \"code\",\n    \"coffee-bean\",\n    \"coffee-beans\",\n    \"coffee-pot\",\n    \"coffin-cross\",\n    \"coffin\",\n    \"coin-blank\",\n    \"coin-front\",\n    \"coin-vertical\",\n    \"coin\",\n    \"coins\",\n    \"colon-sign\",\n    \"colon\",\n    \"columns-3\",\n    \"comet\",\n    \"comma\",\n    \"command\",\n    \"comment-arrow-down\",\n    \"comment-arrow-up-right\",\n    \"comment-arrow-up\",\n    \"comment-captions\",\n    \"comment-check\",\n    \"comment-code\",\n    \"comment-dollar\",\n    \"comment-dots\",\n    \"comment-exclamation\",\n    \"comment-heart\",\n    \"comment-image\",\n    \"comment-lines\",\n    \"comment-medical\",\n    \"comment-middle-top\",\n    \"comment-middle\",\n    \"comment-minus\",\n    \"comment-music\",\n    \"comment-nodes\",\n    \"comment-pen\",\n    \"comment-plus\",\n    \"comment-question\",\n    \"comment-quote\",\n    \"comment-slash\",\n    \"comment-smile\",\n    \"comment-sms\",\n    \"comment-text\",\n    \"comment-xmark\",\n    \"comment\",\n    \"comments-dollar\",\n    \"comments-question-check\",\n    \"comments-question\",\n    \"comments\",\n    \"compact-disc\",\n    \"compass-drafting\",\n    \"compass-slash\",\n    \"compass\",\n    \"compress-wide\",\n    \"compress\",\n    \"computer-classic\",\n    \"computer-mouse-scrollwheel\",\n    \"computer-mouse\",\n    \"computer-speaker\",\n    \"computer\",\n    \"container-storage\",\n    \"conveyor-belt-arm\",\n    \"conveyor-belt-boxes\",\n    \"conveyor-belt-empty\",\n    \"conveyor-belt\",\n    \"cookie-bite\",\n    \"cookie\",\n    \"copy\",\n    \"copyright\",\n    \"corn\",\n    \"corner\",\n    \"couch\",\n    \"court-sport\",\n    \"cow\",\n    \"cowbell-circle-plus\",\n    \"cowbell\",\n    \"crab\",\n    \"crate-apple\",\n    \"crate-empty\",\n    \"credit-card-blank\",\n    \"credit-card-front\",\n    \"credit-card\",\n    \"cricket-bat-ball\",\n    \"croissant\",\n    \"crop-simple\",\n    \"crop\",\n    \"cross\",\n    \"crosshairs-simple\",\n    \"crosshairs\",\n    \"crow\",\n    \"crown\",\n    \"crutch\",\n    \"crutches\",\n    \"cruzeiro-sign\",\n    \"crystal-ball\",\n    \"cube\",\n    \"cubes-stacked\",\n    \"cubes\",\n    \"cucumber\",\n    \"cup-straw-swoosh\",\n    \"cup-straw\",\n    \"cup-togo\",\n    \"cupcake\",\n    \"curling-stone\",\n    \"custard\",\n    \"d\",\n    \"dagger\",\n    \"dash\",\n    \"database\",\n    \"deer-rudolph\",\n    \"deer\",\n    \"delete-left\",\n    \"delete-right\",\n    \"democrat\",\n    \"desktop-arrow-down\",\n    \"desktop\",\n    \"dharmachakra\",\n    \"diagram-cells\",\n    \"diagram-lean-canvas\",\n    \"diagram-nested\",\n    \"diagram-next\",\n    \"diagram-predecessor\",\n    \"diagram-previous\",\n    \"diagram-project\",\n    \"diagram-sankey\",\n    \"diagram-subtask\",\n    \"diagram-successor\",\n    \"diagram-venn\",\n    \"dial-high\",\n    \"dial-low\",\n    \"dial-max\",\n    \"dial-med-low\",\n    \"dial-med\",\n    \"dial-min\",\n    \"dial-off\",\n    \"dial\",\n    \"diamond-exclamation\",\n    \"diamond-half-stroke\",\n    \"diamond-half\",\n    \"diamond-turn-right\",\n    \"diamond\",\n    \"diamonds-4\",\n    \"dice-d10\",\n    \"dice-d12\",\n    \"dice-d20\",\n    \"dice-d4\",\n    \"dice-d6\",\n    \"dice-d8\",\n    \"dice-five\",\n    \"dice-four\",\n    \"dice-one\",\n    \"dice-six\",\n    \"dice-three\",\n    \"dice-two\",\n    \"dice\",\n    \"dinosaur\",\n    \"diploma\",\n    \"disc-drive\",\n    \"disease\",\n    \"display-arrow-down\",\n    \"display-chart-up-circle-currency\",\n    \"display-chart-up-circle-dollar\",\n    \"display-chart-up\",\n    \"display-code\",\n    \"display-medical\",\n    \"display-slash\",\n    \"display\",\n    \"distribute-spacing-horizontal\",\n    \"distribute-spacing-vertical\",\n    \"ditto\",\n    \"divide\",\n    \"dna\",\n    \"do-not-enter\",\n    \"dog-leashed\",\n    \"dog\",\n    \"dollar-sign\",\n    \"dolly-empty\",\n    \"dolly\",\n    \"dolphin\",\n    \"dong-sign\",\n    \"donut\",\n    \"door-closed\",\n    \"door-open\",\n    \"dove\",\n    \"down-from-bracket\",\n    \"down-from-dotted-line\",\n    \"down-from-line\",\n    \"down-left-and-up-right-to-center\",\n    \"down-left\",\n    \"down-long\",\n    \"down-right\",\n    \"down-to-bracket\",\n    \"down-to-dotted-line\",\n    \"down-to-line\",\n    \"down\",\n    \"download\",\n    \"dragon\",\n    \"draw-circle\",\n    \"draw-polygon\",\n    \"draw-square\",\n    \"dreidel\",\n    \"drone-front\",\n    \"drone\",\n    \"droplet-degree\",\n    \"droplet-percent\",\n    \"droplet-slash\",\n    \"droplet\",\n    \"drum-steelpan\",\n    \"drum\",\n    \"drumstick-bite\",\n    \"drumstick\",\n    \"dryer-heat\",\n    \"dryer\",\n    \"duck\",\n    \"dumbbell\",\n    \"dumpster-fire\",\n    \"dumpster\",\n    \"dungeon\",\n    \"e\",\n    \"ear-deaf\",\n    \"ear-listen\",\n    \"ear-muffs\",\n    \"ear\",\n    \"earth-africa\",\n    \"earth-americas\",\n    \"earth-asia\",\n    \"earth-europe\",\n    \"earth-oceania\",\n    \"eclipse\",\n    \"egg-fried\",\n    \"egg\",\n    \"eggplant\",\n    \"eject\",\n    \"elephant\",\n    \"elevator\",\n    \"ellipsis-stroke-vertical\",\n    \"ellipsis-stroke\",\n    \"ellipsis-vertical\",\n    \"ellipsis\",\n    \"empty-set\",\n    \"engine-warning\",\n    \"engine\",\n    \"envelope-circle-check\",\n    \"envelope-dot\",\n    \"envelope-open-dollar\",\n    \"envelope-open-text\",\n    \"envelope-open\",\n    \"envelope\",\n    \"envelopes-bulk\",\n    \"envelopes\",\n    \"equals\",\n    \"eraser\",\n    \"escalator\",\n    \"ethernet\",\n    \"euro-sign\",\n    \"excavator\",\n    \"exclamation\",\n    \"expand-wide\",\n    \"expand\",\n    \"explosion\",\n    \"eye-dropper-full\",\n    \"eye-dropper-half\",\n    \"eye-dropper\",\n    \"eye-evil\",\n    \"eye-low-vision\",\n    \"eye-slash\",\n    \"eye\",\n    \"eyes\",\n    \"f\",\n    \"face-angry-horns\",\n    \"face-angry\",\n    \"face-anguished\",\n    \"face-anxious-sweat\",\n    \"face-astonished\",\n    \"face-awesome\",\n    \"face-beam-hand-over-mouth\",\n    \"face-clouds\",\n    \"face-confounded\",\n    \"face-confused\",\n    \"face-cowboy-hat\",\n    \"face-diagonal-mouth\",\n    \"face-disappointed\",\n    \"face-disguise\",\n    \"face-dizzy\",\n    \"face-dotted\",\n    \"face-downcast-sweat\",\n    \"face-drooling\",\n    \"face-exhaling\",\n    \"face-explode\",\n    \"face-expressionless\",\n    \"face-eyes-xmarks\",\n    \"face-fearful\",\n    \"face-flushed\",\n    \"face-frown-open\",\n    \"face-frown-slight\",\n    \"face-frown\",\n    \"face-glasses\",\n    \"face-grimace\",\n    \"face-grin-beam-sweat\",\n    \"face-grin-beam\",\n    \"face-grin-hearts\",\n    \"face-grin-squint-tears\",\n    \"face-grin-squint\",\n    \"face-grin-stars\",\n    \"face-grin-tears\",\n    \"face-grin-tongue-squint\",\n    \"face-grin-tongue-wink\",\n    \"face-grin-tongue\",\n    \"face-grin-wide\",\n    \"face-grin-wink\",\n    \"face-grin\",\n    \"face-hand-over-mouth\",\n    \"face-hand-peeking\",\n    \"face-hand-yawn\",\n    \"face-head-bandage\",\n    \"face-holding-back-tears\",\n    \"face-hushed\",\n    \"face-icicles\",\n    \"face-kiss-beam\",\n    \"face-kiss-closed-eyes\",\n    \"face-kiss-wink-heart\",\n    \"face-kiss\",\n    \"face-laugh-beam\",\n    \"face-laugh-squint\",\n    \"face-laugh-wink\",\n    \"face-laugh\",\n    \"face-lying\",\n    \"face-mask\",\n    \"face-meh-blank\",\n    \"face-meh\",\n    \"face-melting\",\n    \"face-monocle\",\n    \"face-nauseated\",\n    \"face-nose-steam\",\n    \"face-party\",\n    \"face-pensive\",\n    \"face-persevering\",\n    \"face-pleading\",\n    \"face-pouting\",\n    \"face-raised-eyebrow\",\n    \"face-relieved\",\n    \"face-rolling-eyes\",\n    \"face-sad-cry\",\n    \"face-sad-sweat\",\n    \"face-sad-tear\",\n    \"face-saluting\",\n    \"face-scream\",\n    \"face-shush\",\n    \"face-sleeping\",\n    \"face-sleepy\",\n    \"face-smile-beam\",\n    \"face-smile-halo\",\n    \"face-smile-hearts\",\n    \"face-smile-horns\",\n    \"face-smile-plus\",\n    \"face-smile-relaxed\",\n    \"face-smile-tear\",\n    \"face-smile-tongue\",\n    \"face-smile-upside-down\",\n    \"face-smile-wink\",\n    \"face-smile\",\n    \"face-smiling-hands\",\n    \"face-smirking\",\n    \"face-spiral-eyes\",\n    \"face-sunglasses\",\n    \"face-surprise\",\n    \"face-swear\",\n    \"face-thermometer\",\n    \"face-thinking\",\n    \"face-tired\",\n    \"face-tissue\",\n    \"face-tongue-money\",\n    \"face-tongue-sweat\",\n    \"face-unamused\",\n    \"face-viewfinder\",\n    \"face-vomit\",\n    \"face-weary\",\n    \"face-woozy\",\n    \"face-worried\",\n    \"face-zany\",\n    \"face-zipper\",\n    \"falafel\",\n    \"family-dress\",\n    \"family-pants\",\n    \"family\",\n    \"fan-table\",\n    \"fan\",\n    \"farm\",\n    \"faucet-drip\",\n    \"faucet\",\n    \"fax\",\n    \"feather-pointed\",\n    \"feather\",\n    \"fence\",\n    \"ferris-wheel\",\n    \"ferry\",\n    \"field-hockey-stick-ball\",\n    \"file-arrow-down\",\n    \"file-arrow-up\",\n    \"file-audio\",\n    \"file-binary\",\n    \"file-cad\",\n    \"file-certificate\",\n    \"file-chart-column\",\n    \"file-chart-pie\",\n    \"file-check\",\n    \"file-circle-check\",\n    \"file-circle-exclamation\",\n    \"file-circle-info\",\n    \"file-circle-minus\",\n    \"file-circle-plus\",\n    \"file-circle-question\",\n    \"file-circle-xmark\",\n    \"file-code\",\n    \"file-contract\",\n    \"file-csv\",\n    \"file-dashed-line\",\n    \"file-doc\",\n    \"file-eps\",\n    \"file-excel\",\n    \"file-exclamation\",\n    \"file-export\",\n    \"file-fragment\",\n    \"file-gif\",\n    \"file-half-dashed\",\n    \"file-heart\",\n    \"file-image\",\n    \"file-import\",\n    \"file-invoice-dollar\",\n    \"file-invoice\",\n    \"file-jpg\",\n    \"file-lines\",\n    \"file-lock\",\n    \"file-magnifying-glass\",\n    \"file-medical\",\n    \"file-minus\",\n    \"file-mov\",\n    \"file-mp3\",\n    \"file-mp4\",\n    \"file-music\",\n    \"file-pdf\",\n    \"file-pen\",\n    \"file-plus-minus\",\n    \"file-plus\",\n    \"file-png\",\n    \"file-powerpoint\",\n    \"file-ppt\",\n    \"file-prescription\",\n    \"file-shield\",\n    \"file-signature\",\n    \"file-slash\",\n    \"file-spreadsheet\",\n    \"file-svg\",\n    \"file-user\",\n    \"file-vector\",\n    \"file-video\",\n    \"file-waveform\",\n    \"file-word\",\n    \"file-xls\",\n    \"file-xmark\",\n    \"file-xml\",\n    \"file-zip\",\n    \"file-zipper\",\n    \"file\",\n    \"files-medical\",\n    \"files\",\n    \"fill-drip\",\n    \"fill\",\n    \"film-canister\",\n    \"film-simple\",\n    \"film-slash\",\n    \"film\",\n    \"films\",\n    \"filter-circle-dollar\",\n    \"filter-circle-xmark\",\n    \"filter-list\",\n    \"filter-slash\",\n    \"filter\",\n    \"filters\",\n    \"fingerprint\",\n    \"fire-burner\",\n    \"fire-extinguisher\",\n    \"fire-flame-curved\",\n    \"fire-flame-simple\",\n    \"fire-flame\",\n    \"fire-hydrant\",\n    \"fire-smoke\",\n    \"fire\",\n    \"fireplace\",\n    \"fish-bones\",\n    \"fish-cooked\",\n    \"fish-fins\",\n    \"fish\",\n    \"fishing-rod\",\n    \"flag-checkered\",\n    \"flag-pennant\",\n    \"flag-swallowtail\",\n    \"flag-usa\",\n    \"flag\",\n    \"flashlight\",\n    \"flask-gear\",\n    \"flask-round-poison\",\n    \"flask-round-potion\",\n    \"flask-vial\",\n    \"flask\",\n    \"flatbread-stuffed\",\n    \"flatbread\",\n    \"floppy-disk-circle-arrow-right\",\n    \"floppy-disk-circle-xmark\",\n    \"floppy-disk-pen\",\n    \"floppy-disk\",\n    \"floppy-disks\",\n    \"florin-sign\",\n    \"flower-daffodil\",\n    \"flower-tulip\",\n    \"flower\",\n    \"flute\",\n    \"flux-capacitor\",\n    \"flying-disc\",\n    \"folder-arrow-down\",\n    \"folder-arrow-up\",\n    \"folder-bookmark\",\n    \"folder-check\",\n    \"folder-closed\",\n    \"folder-gear\",\n    \"folder-grid\",\n    \"folder-heart\",\n    \"folder-image\",\n    \"folder-magnifying-glass\",\n    \"folder-medical\",\n    \"folder-minus\",\n    \"folder-music\",\n    \"folder-open\",\n    \"folder-plus\",\n    \"folder-tree\",\n    \"folder-user\",\n    \"folder-xmark\",\n    \"folder\",\n    \"folders\",\n    \"fondue-pot\",\n    \"font-awesome\",\n    \"font-case\",\n    \"font\",\n    \"football-helmet\",\n    \"football\",\n    \"fork-knife\",\n    \"fork\",\n    \"forklift\",\n    \"fort\",\n    \"forward-fast\",\n    \"forward-step\",\n    \"forward\",\n    \"frame\",\n    \"franc-sign\",\n    \"french-fries\",\n    \"frog\",\n    \"function\",\n    \"futbol\",\n    \"g\",\n    \"galaxy\",\n    \"gallery-thumbnails\",\n    \"game-board-simple\",\n    \"game-board\",\n    \"game-console-handheld-crank\",\n    \"game-console-handheld\",\n    \"gamepad-modern\",\n    \"gamepad\",\n    \"garage-car\",\n    \"garage-open\",\n    \"garage\",\n    \"garlic\",\n    \"gas-pump-slash\",\n    \"gas-pump\",\n    \"gauge-circle-bolt\",\n    \"gauge-circle-minus\",\n    \"gauge-circle-plus\",\n    \"gauge-high\",\n    \"gauge-low\",\n    \"gauge-max\",\n    \"gauge-min\",\n    \"gauge-simple-high\",\n    \"gauge-simple-low\",\n    \"gauge-simple-max\",\n    \"gauge-simple-min\",\n    \"gauge-simple\",\n    \"gauge\",\n    \"gavel\",\n    \"gear-code\",\n    \"gear-complex-code\",\n    \"gear-complex\",\n    \"gear\",\n    \"gears\",\n    \"gem\",\n    \"genderless\",\n    \"ghost\",\n    \"gif\",\n    \"gift-card\",\n    \"gift\",\n    \"gifts\",\n    \"gingerbread-man\",\n    \"glass-citrus\",\n    \"glass-empty\",\n    \"glass-half\",\n    \"glass-water-droplet\",\n    \"glass-water\",\n    \"glass\",\n    \"glasses-round\",\n    \"glasses\",\n    \"globe-pointer\",\n    \"globe-snow\",\n    \"globe-stand\",\n    \"globe-wifi\",\n    \"globe\",\n    \"goal-net\",\n    \"golf-ball-tee\",\n    \"golf-club\",\n    \"golf-flag-hole\",\n    \"gopuram\",\n    \"graduation-cap\",\n    \"gramophone\",\n    \"grapes\",\n    \"grate-droplet\",\n    \"grate\",\n    \"greater-than-equal\",\n    \"greater-than\",\n    \"grid-2-plus\",\n    \"grid-2\",\n    \"grid-4\",\n    \"grid-5\",\n    \"grid-dividers\",\n    \"grid-horizontal\",\n    \"grid-round-2-plus\",\n    \"grid-round-2\",\n    \"grid-round-4\",\n    \"grid-round-5\",\n    \"grid-round\",\n    \"grid\",\n    \"grill-fire\",\n    \"grill-hot\",\n    \"grill\",\n    \"grip-dots-vertical\",\n    \"grip-dots\",\n    \"grip-lines-vertical\",\n    \"grip-lines\",\n    \"grip-vertical\",\n    \"grip\",\n    \"group-arrows-rotate\",\n    \"guarani-sign\",\n    \"guitar-electric\",\n    \"guitar\",\n    \"guitars\",\n    \"gun-slash\",\n    \"gun-squirt\",\n    \"gun\",\n    \"h\",\n    \"h1\",\n    \"h2\",\n    \"h3\",\n    \"h4\",\n    \"h5\",\n    \"h6\",\n    \"hammer-brush\",\n    \"hammer-crash\",\n    \"hammer-war\",\n    \"hammer\",\n    \"hamsa\",\n    \"hand-back-fist\",\n    \"hand-back-point-down\",\n    \"hand-back-point-left\",\n    \"hand-back-point-ribbon\",\n    \"hand-back-point-right\",\n    \"hand-back-point-up\",\n    \"hand-dots\",\n    \"hand-fingers-crossed\",\n    \"hand-fist\",\n    \"hand-heart\",\n    \"hand-holding-box\",\n    \"hand-holding-circle-dollar\",\n    \"hand-holding-dollar\",\n    \"hand-holding-droplet\",\n    \"hand-holding-hand\",\n    \"hand-holding-heart\",\n    \"hand-holding-magic\",\n    \"hand-holding-medical\",\n    \"hand-holding-seedling\",\n    \"hand-holding-skull\",\n    \"hand-holding\",\n    \"hand-horns\",\n    \"hand-lizard\",\n    \"hand-love\",\n    \"hand-middle-finger\",\n    \"hand-peace\",\n    \"hand-point-down\",\n    \"hand-point-left\",\n    \"hand-point-ribbon\",\n    \"hand-point-right\",\n    \"hand-point-up\",\n    \"hand-pointer\",\n    \"hand-scissors\",\n    \"hand-sparkles\",\n    \"hand-spock\",\n    \"hand-wave\",\n    \"hand\",\n    \"handcuffs\",\n    \"hands-asl-interpreting\",\n    \"hands-bound\",\n    \"hands-bubbles\",\n    \"hands-clapping\",\n    \"hands-holding-child\",\n    \"hands-holding-circle\",\n    \"hands-holding-diamond\",\n    \"hands-holding-dollar\",\n    \"hands-holding-heart\",\n    \"hands-holding\",\n    \"hands-praying\",\n    \"hands\",\n    \"handshake-angle\",\n    \"handshake-simple-slash\",\n    \"handshake-simple\",\n    \"handshake-slash\",\n    \"handshake\",\n    \"hanukiah\",\n    \"hard-drive\",\n    \"hashtag-lock\",\n    \"hashtag\",\n    \"hat-beach\",\n    \"hat-chef\",\n    \"hat-cowboy-side\",\n    \"hat-cowboy\",\n    \"hat-santa\",\n    \"hat-winter\",\n    \"hat-witch\",\n    \"hat-wizard\",\n    \"head-side-brain\",\n    \"head-side-cough-slash\",\n    \"head-side-cough\",\n    \"head-side-gear\",\n    \"head-side-goggles\",\n    \"head-side-headphones\",\n    \"head-side-heart\",\n    \"head-side-mask\",\n    \"head-side-medical\",\n    \"head-side-virus\",\n    \"head-side\",\n    \"heading\",\n    \"headphones-simple\",\n    \"headphones\",\n    \"headset\",\n    \"heart-circle-bolt\",\n    \"heart-circle-check\",\n    \"heart-circle-exclamation\",\n    \"heart-circle-minus\",\n    \"heart-circle-plus\",\n    \"heart-circle-xmark\",\n    \"heart-crack\",\n    \"heart-half-stroke\",\n    \"heart-half\",\n    \"heart-pulse\",\n    \"heart\",\n    \"heat\",\n    \"helicopter-symbol\",\n    \"helicopter\",\n    \"helmet-battle\",\n    \"helmet-safety\",\n    \"helmet-un\",\n    \"hexagon-check\",\n    \"hexagon-divide\",\n    \"hexagon-exclamation\",\n    \"hexagon-image\",\n    \"hexagon-minus\",\n    \"hexagon-nodes-bolt\",\n    \"hexagon-nodes\",\n    \"hexagon-plus\",\n    \"hexagon-vertical-nft-slanted\",\n    \"hexagon-vertical-nft\",\n    \"hexagon-xmark\",\n    \"hexagon\",\n    \"high-definition\",\n    \"highlighter-line\",\n    \"highlighter\",\n    \"hill-avalanche\",\n    \"hill-rockslide\",\n    \"hippo\",\n    \"hockey-mask\",\n    \"hockey-puck\",\n    \"hockey-stick-puck\",\n    \"hockey-sticks\",\n    \"holly-berry\",\n    \"honey-pot\",\n    \"hood-cloak\",\n    \"horizontal-rule\",\n    \"horse-head\",\n    \"horse-saddle\",\n    \"horse\",\n    \"hose-reel\",\n    \"hose\",\n    \"hospital-user\",\n    \"hospital\",\n    \"hospitals\",\n    \"hot-tub-person\",\n    \"hotdog\",\n    \"hotel\",\n    \"hourglass-clock\",\n    \"hourglass-end\",\n    \"hourglass-half\",\n    \"hourglass-start\",\n    \"hourglass\",\n    \"house-blank\",\n    \"house-building\",\n    \"house-chimney-blank\",\n    \"house-chimney-crack\",\n    \"house-chimney-heart\",\n    \"house-chimney-medical\",\n    \"house-chimney-user\",\n    \"house-chimney-window\",\n    \"house-chimney\",\n    \"house-circle-check\",\n    \"house-circle-exclamation\",\n    \"house-circle-xmark\",\n    \"house-crack\",\n    \"house-day\",\n    \"house-fire\",\n    \"house-flag\",\n    \"house-flood-water-circle-arrow-right\",\n    \"house-flood-water\",\n    \"house-heart\",\n    \"house-laptop\",\n    \"house-lock\",\n    \"house-medical-circle-check\",\n    \"house-medical-circle-exclamation\",\n    \"house-medical-circle-xmark\",\n    \"house-medical-flag\",\n    \"house-medical\",\n    \"house-night\",\n    \"house-person-leave\",\n    \"house-person-return\",\n    \"house-signal\",\n    \"house-tree\",\n    \"house-tsunami\",\n    \"house-turret\",\n    \"house-user\",\n    \"house-water\",\n    \"house-window\",\n    \"house\",\n    \"hryvnia-sign\",\n    \"hundred-points\",\n    \"hurricane\",\n    \"hydra\",\n    \"hyphen\",\n    \"i-cursor\",\n    \"i\",\n    \"ice-cream\",\n    \"ice-skate\",\n    \"icicles\",\n    \"icons\",\n    \"id-badge\",\n    \"id-card-clip\",\n    \"id-card\",\n    \"igloo\",\n    \"image-landscape\",\n    \"image-polaroid-user\",\n    \"image-polaroid\",\n    \"image-portrait\",\n    \"image-slash\",\n    \"image-user\",\n    \"image\",\n    \"images-user\",\n    \"images\",\n    \"inbox-full\",\n    \"inbox-in\",\n    \"inbox-out\",\n    \"inbox\",\n    \"inboxes\",\n    \"indent\",\n    \"indian-rupee-sign\",\n    \"industry-windows\",\n    \"industry\",\n    \"infinity\",\n    \"info\",\n    \"inhaler\",\n    \"input-numeric\",\n    \"input-pipe\",\n    \"input-text\",\n    \"integral\",\n    \"interrobang\",\n    \"intersection\",\n    \"island-tropical\",\n    \"italic\",\n    \"j\",\n    \"jack-o-lantern\",\n    \"jar-wheat\",\n    \"jar\",\n    \"jedi\",\n    \"jet-fighter-up\",\n    \"jet-fighter\",\n    \"joint\",\n    \"joystick\",\n    \"jug-bottle\",\n    \"jug-detergent\",\n    \"jug\",\n    \"k\",\n    \"kaaba\",\n    \"kazoo\",\n    \"kerning\",\n    \"key-skeleton-left-right\",\n    \"key-skeleton\",\n    \"key\",\n    \"keyboard-brightness-low\",\n    \"keyboard-brightness\",\n    \"keyboard-down\",\n    \"keyboard-left\",\n    \"keyboard\",\n    \"keynote\",\n    \"khanda\",\n    \"kidneys\",\n    \"kip-sign\",\n    \"kit-medical\",\n    \"kitchen-set\",\n    \"kite\",\n    \"kiwi-bird\",\n    \"kiwi-fruit\",\n    \"knife-kitchen\",\n    \"knife\",\n    \"l\",\n    \"lacrosse-stick-ball\",\n    \"lacrosse-stick\",\n    \"lambda\",\n    \"lamp-desk\",\n    \"lamp-floor\",\n    \"lamp-street\",\n    \"lamp\",\n    \"land-mine-on\",\n    \"landmark-dome\",\n    \"landmark-flag\",\n    \"landmark-magnifying-glass\",\n    \"landmark\",\n    \"language\",\n    \"laptop-arrow-down\",\n    \"laptop-binary\",\n    \"laptop-code\",\n    \"laptop-file\",\n    \"laptop-medical\",\n    \"laptop-mobile\",\n    \"laptop-slash\",\n    \"laptop\",\n    \"lari-sign\",\n    \"lasso-sparkles\",\n    \"lasso\",\n    \"layer-group\",\n    \"layer-minus\",\n    \"layer-plus\",\n    \"leaf-heart\",\n    \"leaf-maple\",\n    \"leaf-oak\",\n    \"leaf\",\n    \"leafy-green\",\n    \"left-from-bracket\",\n    \"left-from-line\",\n    \"left-long-to-line\",\n    \"left-long\",\n    \"left-right\",\n    \"left-to-bracket\",\n    \"left-to-line\",\n    \"left\",\n    \"lemon\",\n    \"less-than-equal\",\n    \"less-than\",\n    \"life-ring\",\n    \"light-ceiling\",\n    \"light-emergency-on\",\n    \"light-emergency\",\n    \"light-switch-off\",\n    \"light-switch-on\",\n    \"light-switch\",\n    \"lightbulb-cfl-on\",\n    \"lightbulb-cfl\",\n    \"lightbulb-dollar\",\n    \"lightbulb-exclamation-on\",\n    \"lightbulb-exclamation\",\n    \"lightbulb-gear\",\n    \"lightbulb-message\",\n    \"lightbulb-on\",\n    \"lightbulb-slash\",\n    \"lightbulb\",\n    \"lighthouse\",\n    \"lights-holiday\",\n    \"line-columns\",\n    \"line-height\",\n    \"lines-leaning\",\n    \"link-horizontal-slash\",\n    \"link-horizontal\",\n    \"link-simple-slash\",\n    \"link-simple\",\n    \"link-slash\",\n    \"link\",\n    \"lips\",\n    \"lira-sign\",\n    \"list-check\",\n    \"list-dropdown\",\n    \"list-music\",\n    \"list-ol\",\n    \"list-radio\",\n    \"list-timeline\",\n    \"list-tree\",\n    \"list-ul\",\n    \"list\",\n    \"litecoin-sign\",\n    \"loader\",\n    \"lobster\",\n    \"location-arrow-up\",\n    \"location-arrow\",\n    \"location-check\",\n    \"location-crosshairs-slash\",\n    \"location-crosshairs\",\n    \"location-dot-slash\",\n    \"location-dot\",\n    \"location-exclamation\",\n    \"location-minus\",\n    \"location-pen\",\n    \"location-pin-lock\",\n    \"location-pin-slash\",\n    \"location-pin\",\n    \"location-plus\",\n    \"location-question\",\n    \"location-smile\",\n    \"location-xmark\",\n    \"lock-a\",\n    \"lock-hashtag\",\n    \"lock-keyhole-open\",\n    \"lock-keyhole\",\n    \"lock-open\",\n    \"lock\",\n    \"locust\",\n    \"lollipop\",\n    \"loveseat\",\n    \"luchador-mask\",\n    \"lungs-virus\",\n    \"lungs\",\n    \"m\",\n    \"mace\",\n    \"magnet\",\n    \"magnifying-glass-arrow-right\",\n    \"magnifying-glass-arrows-rotate\",\n    \"magnifying-glass-chart\",\n    \"magnifying-glass-dollar\",\n    \"magnifying-glass-location\",\n    \"magnifying-glass-minus\",\n    \"magnifying-glass-music\",\n    \"magnifying-glass-play\",\n    \"magnifying-glass-plus\",\n    \"magnifying-glass-waveform\",\n    \"magnifying-glass\",\n    \"mailbox-flag-up\",\n    \"mailbox\",\n    \"manat-sign\",\n    \"mandolin\",\n    \"mango\",\n    \"manhole\",\n    \"map-location-dot\",\n    \"map-location\",\n    \"map-pin\",\n    \"map\",\n    \"marker\",\n    \"mars-and-venus-burst\",\n    \"mars-and-venus\",\n    \"mars-double\",\n    \"mars-stroke-right\",\n    \"mars-stroke-up\",\n    \"mars-stroke\",\n    \"mars\",\n    \"martini-glass-citrus\",\n    \"martini-glass-empty\",\n    \"martini-glass\",\n    \"mask-face\",\n    \"mask-snorkel\",\n    \"mask-ventilator\",\n    \"mask\",\n    \"masks-theater\",\n    \"mattress-pillow\",\n    \"maximize\",\n    \"meat\",\n    \"medal\",\n    \"megaphone\",\n    \"melon-slice\",\n    \"melon\",\n    \"memo-circle-check\",\n    \"memo-circle-info\",\n    \"memo-pad\",\n    \"memo\",\n    \"memory\",\n    \"menorah\",\n    \"mercury\",\n    \"merge\",\n    \"message-arrow-down\",\n    \"message-arrow-up-right\",\n    \"message-arrow-up\",\n    \"message-bot\",\n    \"message-captions\",\n    \"message-check\",\n    \"message-code\",\n    \"message-dollar\",\n    \"message-dots\",\n    \"message-exclamation\",\n    \"message-heart\",\n    \"message-image\",\n    \"message-lines\",\n    \"message-medical\",\n    \"message-middle-top\",\n    \"message-middle\",\n    \"message-minus\",\n    \"message-music\",\n    \"message-pen\",\n    \"message-plus\",\n    \"message-question\",\n    \"message-quote\",\n    \"message-slash\",\n    \"message-smile\",\n    \"message-sms\",\n    \"message-text\",\n    \"message-xmark\",\n    \"message\",\n    \"messages-dollar\",\n    \"messages-question\",\n    \"messages\",\n    \"meteor\",\n    \"meter-bolt\",\n    \"meter-droplet\",\n    \"meter-fire\",\n    \"meter\",\n    \"microchip-ai\",\n    \"microchip\",\n    \"microphone-lines-slash\",\n    \"microphone-lines\",\n    \"microphone-slash\",\n    \"microphone-stand\",\n    \"microphone\",\n    \"microscope\",\n    \"microwave\",\n    \"mill-sign\",\n    \"minimize\",\n    \"minus\",\n    \"mistletoe\",\n    \"mitten\",\n    \"mobile-button\",\n    \"mobile-notch\",\n    \"mobile-retro\",\n    \"mobile-screen-button\",\n    \"mobile-screen\",\n    \"mobile-signal-out\",\n    \"mobile-signal\",\n    \"mobile\",\n    \"money-bill-1-wave\",\n    \"money-bill-1\",\n    \"money-bill-simple-wave\",\n    \"money-bill-simple\",\n    \"money-bill-transfer\",\n    \"money-bill-trend-up\",\n    \"money-bill-wave\",\n    \"money-bill-wheat\",\n    \"money-bill\",\n    \"money-bills-simple\",\n    \"money-bills\",\n    \"money-check-dollar-pen\",\n    \"money-check-dollar\",\n    \"money-check-pen\",\n    \"money-check\",\n    \"money-from-bracket\",\n    \"money-simple-from-bracket\",\n    \"monitor-waveform\",\n    \"monkey\",\n    \"monument\",\n    \"moon-cloud\",\n    \"moon-over-sun\",\n    \"moon-stars\",\n    \"moon\",\n    \"moped\",\n    \"mortar-pestle\",\n    \"mosque\",\n    \"mosquito-net\",\n    \"mosquito\",\n    \"motorcycle\",\n    \"mound\",\n    \"mountain-city\",\n    \"mountain-sun\",\n    \"mountain\",\n    \"mountains\",\n    \"mouse-field\",\n    \"mp3-player\",\n    \"mug-hot\",\n    \"mug-marshmallows\",\n    \"mug-saucer\",\n    \"mug-tea-saucer\",\n    \"mug-tea\",\n    \"mug\",\n    \"mushroom\",\n    \"music-magnifying-glass\",\n    \"music-note-slash\",\n    \"music-note\",\n    \"music-slash\",\n    \"music\",\n    \"mustache\",\n    \"n\",\n    \"naira-sign\",\n    \"narwhal\",\n    \"nesting-dolls\",\n    \"network-wired\",\n    \"neuter\",\n    \"newspaper\",\n    \"nfc-lock\",\n    \"nfc-magnifying-glass\",\n    \"nfc-pen\",\n    \"nfc-signal\",\n    \"nfc-slash\",\n    \"nfc-symbol\",\n    \"nfc-trash\",\n    \"nfc\",\n    \"nose\",\n    \"not-equal\",\n    \"notdef\",\n    \"note-medical\",\n    \"note-sticky\",\n    \"note\",\n    \"notebook\",\n    \"notes-medical\",\n    \"notes\",\n    \"o\",\n    \"object-exclude\",\n    \"object-group\",\n    \"object-intersect\",\n    \"object-subtract\",\n    \"object-ungroup\",\n    \"object-union\",\n    \"objects-align-bottom\",\n    \"objects-align-center-horizontal\",\n    \"objects-align-center-vertical\",\n    \"objects-align-left\",\n    \"objects-align-right\",\n    \"objects-align-top\",\n    \"objects-column\",\n    \"octagon-check\",\n    \"octagon-divide\",\n    \"octagon-exclamation\",\n    \"octagon-minus\",\n    \"octagon-plus\",\n    \"octagon-xmark\",\n    \"octagon\",\n    \"octopus\",\n    \"oil-can-drip\",\n    \"oil-can\",\n    \"oil-temperature\",\n    \"oil-well\",\n    \"olive-branch\",\n    \"olive\",\n    \"om\",\n    \"omega\",\n    \"onion\",\n    \"option\",\n    \"ornament\",\n    \"otter\",\n    \"outdent\",\n    \"outlet\",\n    \"oven\",\n    \"overline\",\n    \"p\",\n    \"page-caret-down\",\n    \"page-caret-up\",\n    \"page\",\n    \"pager\",\n    \"paint-roller\",\n    \"paintbrush-fine\",\n    \"paintbrush-pencil\",\n    \"paintbrush\",\n    \"palette\",\n    \"pallet-box\",\n    \"pallet-boxes\",\n    \"pallet\",\n    \"pan-food\",\n    \"pan-frying\",\n    \"pancakes\",\n    \"panel-ews\",\n    \"panel-fire\",\n    \"panorama\",\n    \"paper-plane-top\",\n    \"paper-plane\",\n    \"paperclip-vertical\",\n    \"paperclip\",\n    \"parachute-box\",\n    \"paragraph-left\",\n    \"paragraph\",\n    \"party-bell\",\n    \"party-horn\",\n    \"passport\",\n    \"paste\",\n    \"pause\",\n    \"paw-claws\",\n    \"paw-simple\",\n    \"paw\",\n    \"peace\",\n    \"peach\",\n    \"peanut\",\n    \"peanuts\",\n    \"peapod\",\n    \"pear\",\n    \"pedestal\",\n    \"pegasus\",\n    \"pen-circle\",\n    \"pen-clip-slash\",\n    \"pen-clip\",\n    \"pen-fancy-slash\",\n    \"pen-fancy\",\n    \"pen-field\",\n    \"pen-line\",\n    \"pen-nib-slash\",\n    \"pen-nib\",\n    \"pen-paintbrush\",\n    \"pen-ruler\",\n    \"pen-slash\",\n    \"pen-swirl\",\n    \"pen-to-square\",\n    \"pen\",\n    \"pencil-mechanical\",\n    \"pencil-slash\",\n    \"pencil\",\n    \"people-arrows\",\n    \"people-carry-box\",\n    \"people-dress-simple\",\n    \"people-dress\",\n    \"people-group\",\n    \"people-line\",\n    \"people-pants-simple\",\n    \"people-pants\",\n    \"people-pulling\",\n    \"people-robbery\",\n    \"people-roof\",\n    \"people-simple\",\n    \"people\",\n    \"pepper-hot\",\n    \"pepper\",\n    \"percent\",\n    \"period\",\n    \"person-arrow-down-to-line\",\n    \"person-arrow-up-from-line\",\n    \"person-biking-mountain\",\n    \"person-biking\",\n    \"person-booth\",\n    \"person-breastfeeding\",\n    \"person-burst\",\n    \"person-cane\",\n    \"person-carry-box\",\n    \"person-chalkboard\",\n    \"person-circle-check\",\n    \"person-circle-exclamation\",\n    \"person-circle-minus\",\n    \"person-circle-plus\",\n    \"person-circle-question\",\n    \"person-circle-xmark\",\n    \"person-digging\",\n    \"person-dolly-empty\",\n    \"person-dolly\",\n    \"person-dots-from-line\",\n    \"person-dress-burst\",\n    \"person-dress-fairy\",\n    \"person-dress-simple\",\n    \"person-dress\",\n    \"person-drowning\",\n    \"person-fairy\",\n    \"person-falling-burst\",\n    \"person-falling\",\n    \"person-from-portal\",\n    \"person-half-dress\",\n    \"person-harassing\",\n    \"person-hiking\",\n    \"person-military-pointing\",\n    \"person-military-rifle\",\n    \"person-military-to-person\",\n    \"person-pinball\",\n    \"person-praying\",\n    \"person-pregnant\",\n    \"person-rays\",\n    \"person-rifle\",\n    \"person-running-fast\",\n    \"person-running\",\n    \"person-seat-reclined\",\n    \"person-seat\",\n    \"person-shelter\",\n    \"person-sign\",\n    \"person-simple\",\n    \"person-skating\",\n    \"person-ski-jumping\",\n    \"person-ski-lift\",\n    \"person-skiing-nordic\",\n    \"person-skiing\",\n    \"person-sledding\",\n    \"person-snowboarding\",\n    \"person-snowmobiling\",\n    \"person-swimming\",\n    \"person-through-window\",\n    \"person-to-door\",\n    \"person-to-portal\",\n    \"person-walking-arrow-loop-left\",\n    \"person-walking-arrow-right\",\n    \"person-walking-dashed-line-arrow-right\",\n    \"person-walking-luggage\",\n    \"person-walking-with-cane\",\n    \"person-walking\",\n    \"person\",\n    \"peseta-sign\",\n    \"peso-sign\",\n    \"phone-arrow-down-left\",\n    \"phone-arrow-right\",\n    \"phone-arrow-up-right\",\n    \"phone-flip\",\n    \"phone-hangup\",\n    \"phone-intercom\",\n    \"phone-missed\",\n    \"phone-office\",\n    \"phone-plus\",\n    \"phone-rotary\",\n    \"phone-slash\",\n    \"phone-volume\",\n    \"phone-xmark\",\n    \"phone\",\n    \"photo-film-music\",\n    \"photo-film\",\n    \"pi\",\n    \"piano-keyboard\",\n    \"piano\",\n    \"pickaxe\",\n    \"pickleball\",\n    \"pie\",\n    \"pig\",\n    \"piggy-bank\",\n    \"pills\",\n    \"pinata\",\n    \"pinball\",\n    \"pineapple\",\n    \"pipe-circle-check\",\n    \"pipe-collar\",\n    \"pipe-section\",\n    \"pipe-smoking\",\n    \"pipe-valve\",\n    \"pipe\",\n    \"pizza-slice\",\n    \"pizza\",\n    \"place-of-worship\",\n    \"plane-arrival\",\n    \"plane-circle-check\",\n    \"plane-circle-exclamation\",\n    \"plane-circle-xmark\",\n    \"plane-departure\",\n    \"plane-engines\",\n    \"plane-lock\",\n    \"plane-prop\",\n    \"plane-slash\",\n    \"plane-tail\",\n    \"plane-up-slash\",\n    \"plane-up\",\n    \"plane\",\n    \"planet-moon\",\n    \"planet-ringed\",\n    \"plant-wilt\",\n    \"plate-utensils\",\n    \"plate-wheat\",\n    \"play-pause\",\n    \"play\",\n    \"plug-circle-bolt\",\n    \"plug-circle-check\",\n    \"plug-circle-exclamation\",\n    \"plug-circle-minus\",\n    \"plug-circle-plus\",\n    \"plug-circle-xmark\",\n    \"plug\",\n    \"plus-large\",\n    \"plus-minus\",\n    \"plus\",\n    \"podcast\",\n    \"podium-star\",\n    \"podium\",\n    \"police-box\",\n    \"poll-people\",\n    \"pompebled\",\n    \"poo-storm\",\n    \"poo\",\n    \"pool-8-ball\",\n    \"poop\",\n    \"popcorn\",\n    \"popsicle\",\n    \"pot-food\",\n    \"potato\",\n    \"power-off\",\n    \"prescription-bottle-medical\",\n    \"prescription-bottle-pill\",\n    \"prescription-bottle\",\n    \"prescription\",\n    \"presentation-screen\",\n    \"pretzel\",\n    \"print-magnifying-glass\",\n    \"print-slash\",\n    \"print\",\n    \"projector\",\n    \"pump-medical\",\n    \"pump-soap\",\n    \"pump\",\n    \"pumpkin\",\n    \"puzzle-piece-simple\",\n    \"puzzle-piece\",\n    \"puzzle\",\n    \"q\",\n    \"qrcode\",\n    \"question\",\n    \"quote-left\",\n    \"quote-right\",\n    \"quotes\",\n    \"r\",\n    \"rabbit-running\",\n    \"rabbit\",\n    \"raccoon\",\n    \"racquet\",\n    \"radar\",\n    \"radiation\",\n    \"radio-tuner\",\n    \"radio\",\n    \"rainbow\",\n    \"raindrops\",\n    \"ram\",\n    \"ramp-loading\",\n    \"ranking-star\",\n    \"raygun\",\n    \"receipt\",\n    \"record-vinyl\",\n    \"rectangle-ad\",\n    \"rectangle-barcode\",\n    \"rectangle-code\",\n    \"rectangle-history-circle-plus\",\n    \"rectangle-history-circle-user\",\n    \"rectangle-history\",\n    \"rectangle-list\",\n    \"rectangle-pro\",\n    \"rectangle-terminal\",\n    \"rectangle-vertical-history\",\n    \"rectangle-vertical\",\n    \"rectangle-wide\",\n    \"rectangle-xmark\",\n    \"rectangle\",\n    \"rectangles-mixed\",\n    \"recycle\",\n    \"reel\",\n    \"reflect-both\",\n    \"reflect-horizontal\",\n    \"reflect-vertical\",\n    \"refrigerator\",\n    \"registered\",\n    \"repeat-1\",\n    \"repeat\",\n    \"reply-all\",\n    \"reply-clock\",\n    \"reply\",\n    \"republican\",\n    \"restroom-simple\",\n    \"restroom\",\n    \"retweet\",\n    \"rhombus\",\n    \"ribbon\",\n    \"right-from-bracket\",\n    \"right-from-line\",\n    \"right-left-large\",\n    \"right-left\",\n    \"right-long-to-line\",\n    \"right-long\",\n    \"right-to-bracket\",\n    \"right-to-line\",\n    \"right\",\n    \"ring-diamond\",\n    \"ring\",\n    \"rings-wedding\",\n    \"road-barrier\",\n    \"road-bridge\",\n    \"road-circle-check\",\n    \"road-circle-exclamation\",\n    \"road-circle-xmark\",\n    \"road-lock\",\n    \"road-spikes\",\n    \"road\",\n    \"robot-astromech\",\n    \"robot\",\n    \"rocket-launch\",\n    \"rocket\",\n    \"roller-coaster\",\n    \"rotate-exclamation\",\n    \"rotate-left\",\n    \"rotate-reverse\",\n    \"rotate-right\",\n    \"rotate\",\n    \"route-highway\",\n    \"route-interstate\",\n    \"route\",\n    \"router\",\n    \"rss\",\n    \"ruble-sign\",\n    \"rug\",\n    \"rugby-ball\",\n    \"ruler-combined\",\n    \"ruler-horizontal\",\n    \"ruler-triangle\",\n    \"ruler-vertical\",\n    \"ruler\",\n    \"rupee-sign\",\n    \"rupiah-sign\",\n    \"rv\",\n    \"s\",\n    \"sack-dollar\",\n    \"sack-xmark\",\n    \"sack\",\n    \"sailboat\",\n    \"salad\",\n    \"salt-shaker\",\n    \"sandwich\",\n    \"satellite-dish\",\n    \"satellite\",\n    \"sausage\",\n    \"saxophone-fire\",\n    \"saxophone\",\n    \"scale-balanced\",\n    \"scale-unbalanced-flip\",\n    \"scale-unbalanced\",\n    \"scalpel-line-dashed\",\n    \"scalpel\",\n    \"scanner-gun\",\n    \"scanner-image\",\n    \"scanner-keyboard\",\n    \"scanner-touchscreen\",\n    \"scarecrow\",\n    \"scarf\",\n    \"school-circle-check\",\n    \"school-circle-exclamation\",\n    \"school-circle-xmark\",\n    \"school-flag\",\n    \"school-lock\",\n    \"school\",\n    \"scissors\",\n    \"screen-users\",\n    \"screencast\",\n    \"screwdriver-wrench\",\n    \"screwdriver\",\n    \"scribble\",\n    \"scroll-old\",\n    \"scroll-torah\",\n    \"scroll\",\n    \"scrubber\",\n    \"scythe\",\n    \"sd-card\",\n    \"sd-cards\",\n    \"seal-exclamation\",\n    \"seal-question\",\n    \"seal\",\n    \"seat-airline\",\n    \"section\",\n    \"seedling\",\n    \"semicolon\",\n    \"send-back\",\n    \"send-backward\",\n    \"sensor-cloud\",\n    \"sensor-fire\",\n    \"sensor-on\",\n    \"sensor-triangle-exclamation\",\n    \"sensor\",\n    \"server\",\n    \"shapes\",\n    \"share-all\",\n    \"share-from-square\",\n    \"share-nodes\",\n    \"share\",\n    \"sheep\",\n    \"sheet-plastic\",\n    \"shekel-sign\",\n    \"shelves-empty\",\n    \"shelves\",\n    \"shield-cat\",\n    \"shield-check\",\n    \"shield-cross\",\n    \"shield-dog\",\n    \"shield-exclamation\",\n    \"shield-halved\",\n    \"shield-heart\",\n    \"shield-keyhole\",\n    \"shield-minus\",\n    \"shield-plus\",\n    \"shield-quartered\",\n    \"shield-slash\",\n    \"shield-virus\",\n    \"shield-xmark\",\n    \"shield\",\n    \"ship\",\n    \"shirt-long-sleeve\",\n    \"shirt-running\",\n    \"shirt-tank-top\",\n    \"shirt\",\n    \"shish-kebab\",\n    \"shoe-prints\",\n    \"shop-lock\",\n    \"shop-slash\",\n    \"shop\",\n    \"shovel-snow\",\n    \"shovel\",\n    \"shower-down\",\n    \"shower\",\n    \"shredder\",\n    \"shrimp\",\n    \"shuffle\",\n    \"shutters\",\n    \"shuttle-space\",\n    \"shuttlecock\",\n    \"sickle\",\n    \"sidebar-flip\",\n    \"sidebar\",\n    \"sigma\",\n    \"sign-hanging\",\n    \"sign-post\",\n    \"sign-posts-wrench\",\n    \"sign-posts\",\n    \"signal-bars-fair\",\n    \"signal-bars-good\",\n    \"signal-bars-slash\",\n    \"signal-bars-weak\",\n    \"signal-bars\",\n    \"signal-fair\",\n    \"signal-good\",\n    \"signal-slash\",\n    \"signal-stream-slash\",\n    \"signal-stream\",\n    \"signal-strong\",\n    \"signal-weak\",\n    \"signal\",\n    \"signature-lock\",\n    \"signature-slash\",\n    \"signature\",\n    \"signs-post\",\n    \"sim-card\",\n    \"sim-cards\",\n    \"sink\",\n    \"siren-on\",\n    \"siren\",\n    \"sitemap\",\n    \"skeleton-ribs\",\n    \"skeleton\",\n    \"ski-boot-ski\",\n    \"ski-boot\",\n    \"skull-cow\",\n    \"skull-crossbones\",\n    \"skull\",\n    \"slash-back\",\n    \"slash-forward\",\n    \"slash\",\n    \"sleigh\",\n    \"slider\",\n    \"sliders-simple\",\n    \"sliders-up\",\n    \"sliders\",\n    \"slot-machine\",\n    \"smog\",\n    \"smoke\",\n    \"smoking\",\n    \"snake\",\n    \"snooze\",\n    \"snow-blowing\",\n    \"snowflake-droplets\",\n    \"snowflake\",\n    \"snowflakes\",\n    \"snowman-head\",\n    \"snowman\",\n    \"snowplow\",\n    \"soap\",\n    \"socks\",\n    \"soft-serve\",\n    \"solar-panel\",\n    \"solar-system\",\n    \"sort-down\",\n    \"sort-up\",\n    \"sort\",\n    \"spa\",\n    \"space-station-moon-construction\",\n    \"space-station-moon\",\n    \"spade\",\n    \"spaghetti-monster-flying\",\n    \"sparkle\",\n    \"sparkles\",\n    \"speaker\",\n    \"speakers\",\n    \"spell-check\",\n    \"spider-black-widow\",\n    \"spider-web\",\n    \"spider\",\n    \"spinner-scale\",\n    \"spinner-third\",\n    \"spinner\",\n    \"split\",\n    \"splotch\",\n    \"spoon\",\n    \"sportsball\",\n    \"spray-can-sparkles\",\n    \"spray-can\",\n    \"sprinkler-ceiling\",\n    \"sprinkler\",\n    \"square-0\",\n    \"square-1\",\n    \"square-2\",\n    \"square-3\",\n    \"square-4\",\n    \"square-5\",\n    \"square-6\",\n    \"square-7\",\n    \"square-8\",\n    \"square-9\",\n    \"square-a-lock\",\n    \"square-a\",\n    \"square-ampersand\",\n    \"square-arrow-down-left\",\n    \"square-arrow-down-right\",\n    \"square-arrow-down\",\n    \"square-arrow-left\",\n    \"square-arrow-right\",\n    \"square-arrow-up-left\",\n    \"square-arrow-up-right\",\n    \"square-arrow-up\",\n    \"square-b\",\n    \"square-binary\",\n    \"square-bolt\",\n    \"square-c\",\n    \"square-caret-down\",\n    \"square-caret-left\",\n    \"square-caret-right\",\n    \"square-caret-up\",\n    \"square-check\",\n    \"square-chevron-down\",\n    \"square-chevron-left\",\n    \"square-chevron-right\",\n    \"square-chevron-up\",\n    \"square-code\",\n    \"square-d\",\n    \"square-dashed-circle-plus\",\n    \"square-dashed\",\n    \"square-divide\",\n    \"square-dollar\",\n    \"square-down-left\",\n    \"square-down-right\",\n    \"square-down\",\n    \"square-e\",\n    \"square-ellipsis-vertical\",\n    \"square-ellipsis\",\n    \"square-envelope\",\n    \"square-exclamation\",\n    \"square-f\",\n    \"square-fragile\",\n    \"square-full\",\n    \"square-g\",\n    \"square-h\",\n    \"square-heart\",\n    \"square-i\",\n    \"square-info\",\n    \"square-j\",\n    \"square-k\",\n    \"square-kanban\",\n    \"square-l\",\n    \"square-left\",\n    \"square-list\",\n    \"square-m\",\n    \"square-minus\",\n    \"square-n\",\n    \"square-nfi\",\n    \"square-o\",\n    \"square-p\",\n    \"square-parking-slash\",\n    \"square-parking\",\n    \"square-pen\",\n    \"square-person-confined\",\n    \"square-phone-flip\",\n    \"square-phone-hangup\",\n    \"square-phone\",\n    \"square-plus\",\n    \"square-poll-horizontal\",\n    \"square-poll-vertical\",\n    \"square-q\",\n    \"square-quarters\",\n    \"square-question\",\n    \"square-quote\",\n    \"square-r\",\n    \"square-right\",\n    \"square-ring\",\n    \"square-root-variable\",\n    \"square-root\",\n    \"square-rss\",\n    \"square-s\",\n    \"square-share-nodes\",\n    \"square-sliders-vertical\",\n    \"square-sliders\",\n    \"square-small\",\n    \"square-star\",\n    \"square-t\",\n    \"square-terminal\",\n    \"square-this-way-up\",\n    \"square-u\",\n    \"square-up-left\",\n    \"square-up-right\",\n    \"square-up\",\n    \"square-user\",\n    \"square-v\",\n    \"square-virus\",\n    \"square-w\",\n    \"square-x\",\n    \"square-xmark\",\n    \"square-y\",\n    \"square-z\",\n    \"square\",\n    \"squid\",\n    \"squirrel\",\n    \"staff-snake\",\n    \"staff\",\n    \"stairs\",\n    \"stamp\",\n    \"standard-definition\",\n    \"stapler\",\n    \"star-and-crescent\",\n    \"star-christmas\",\n    \"star-exclamation\",\n    \"star-half-stroke\",\n    \"star-half\",\n    \"star-of-david\",\n    \"star-of-life\",\n    \"star-sharp-half-stroke\",\n    \"star-sharp-half\",\n    \"star-sharp\",\n    \"star-shooting\",\n    \"star\",\n    \"starfighter-twin-ion-engine-advanced\",\n    \"starfighter-twin-ion-engine\",\n    \"starfighter\",\n    \"stars\",\n    \"starship-freighter\",\n    \"starship\",\n    \"steak\",\n    \"steering-wheel\",\n    \"sterling-sign\",\n    \"stethoscope\",\n    \"stocking\",\n    \"stomach\",\n    \"stop\",\n    \"stopwatch-20\",\n    \"stopwatch\",\n    \"store-lock\",\n    \"store-slash\",\n    \"store\",\n    \"strawberry\",\n    \"street-view\",\n    \"stretcher\",\n    \"strikethrough\",\n    \"stroopwafel\",\n    \"subscript\",\n    \"subtitles-slash\",\n    \"subtitles\",\n    \"suitcase-medical\",\n    \"suitcase-rolling\",\n    \"suitcase\",\n    \"sun-bright\",\n    \"sun-cloud\",\n    \"sun-dust\",\n    \"sun-haze\",\n    \"sun-plant-wilt\",\n    \"sun\",\n    \"sunglasses\",\n    \"sunrise\",\n    \"sunset\",\n    \"superscript\",\n    \"sushi-roll\",\n    \"sushi\",\n    \"swap-arrows\",\n    \"swap\",\n    \"swatchbook\",\n    \"sword-laser-alt\",\n    \"sword-laser\",\n    \"sword\",\n    \"swords-laser\",\n    \"swords\",\n    \"symbols\",\n    \"synagogue\",\n    \"syringe\",\n    \"t-rex\",\n    \"t\",\n    \"table-cells-column-lock\",\n    \"table-cells-column-unlock\",\n    \"table-cells-large\",\n    \"table-cells-lock\",\n    \"table-cells-row-lock\",\n    \"table-cells-row-unlock\",\n    \"table-cells-unlock\",\n    \"table-cells\",\n    \"table-columns\",\n    \"table-layout\",\n    \"table-list\",\n    \"table-picnic\",\n    \"table-pivot\",\n    \"table-rows\",\n    \"table-tennis-paddle-ball\",\n    \"table-tree\",\n    \"table\",\n    \"tablet-button\",\n    \"tablet-rugged\",\n    \"tablet-screen-button\",\n    \"tablet-screen\",\n    \"tablet\",\n    \"tablets\",\n    \"tachograph-digital\",\n    \"taco\",\n    \"tag\",\n    \"tags\",\n    \"tally-1\",\n    \"tally-2\",\n    \"tally-3\",\n    \"tally-4\",\n    \"tally\",\n    \"tamale\",\n    \"tank-water\",\n    \"tape\",\n    \"tarp-droplet\",\n    \"tarp\",\n    \"taxi-bus\",\n    \"taxi\",\n    \"teddy-bear\",\n    \"teeth-open\",\n    \"teeth\",\n    \"telescope\",\n    \"temperature-arrow-down\",\n    \"temperature-arrow-up\",\n    \"temperature-empty\",\n    \"temperature-full\",\n    \"temperature-half\",\n    \"temperature-high\",\n    \"temperature-list\",\n    \"temperature-low\",\n    \"temperature-quarter\",\n    \"temperature-snow\",\n    \"temperature-sun\",\n    \"temperature-three-quarters\",\n    \"tenge-sign\",\n    \"tennis-ball\",\n    \"tent-arrow-down-to-line\",\n    \"tent-arrow-left-right\",\n    \"tent-arrow-turn-left\",\n    \"tent-arrows-down\",\n    \"tent-double-peak\",\n    \"tent\",\n    \"tents\",\n    \"terminal\",\n    \"text-height\",\n    \"text-size\",\n    \"text-slash\",\n    \"text-width\",\n    \"text\",\n    \"thermometer\",\n    \"theta\",\n    \"thought-bubble\",\n    \"thumbs-down\",\n    \"thumbs-up\",\n    \"thumbtack-slash\",\n    \"thumbtack\",\n    \"tick\",\n    \"ticket-airline\",\n    \"ticket-perforated\",\n    \"ticket-simple\",\n    \"ticket\",\n    \"tickets-airline\",\n    \"tickets-perforated\",\n    \"tickets-simple\",\n    \"tickets\",\n    \"tilde\",\n    \"timeline-arrow\",\n    \"timeline\",\n    \"timer\",\n    \"tire-flat\",\n    \"tire-pressure-warning\",\n    \"tire-rugged\",\n    \"tire\",\n    \"toggle-large-off\",\n    \"toggle-large-on\",\n    \"toggle-off\",\n    \"toggle-on\",\n    \"toilet-paper-blank-under\",\n    \"toilet-paper-blank\",\n    \"toilet-paper-check\",\n    \"toilet-paper-slash\",\n    \"toilet-paper-under-slash\",\n    \"toilet-paper-under\",\n    \"toilet-paper-xmark\",\n    \"toilet-paper\",\n    \"toilet-portable\",\n    \"toilet\",\n    \"toilets-portable\",\n    \"tomato\",\n    \"tombstone-blank\",\n    \"tombstone\",\n    \"toolbox\",\n    \"tooth\",\n    \"toothbrush\",\n    \"torii-gate\",\n    \"tornado\",\n    \"tower-broadcast\",\n    \"tower-cell\",\n    \"tower-control\",\n    \"tower-observation\",\n    \"tractor\",\n    \"trademark\",\n    \"traffic-cone\",\n    \"traffic-light-go\",\n    \"traffic-light-slow\",\n    \"traffic-light-stop\",\n    \"traffic-light\",\n    \"trailer\",\n    \"train-subway-tunnel\",\n    \"train-subway\",\n    \"train-track\",\n    \"train-tram\",\n    \"train-tunnel\",\n    \"train\",\n    \"transformer-bolt\",\n    \"transgender\",\n    \"transporter-1\",\n    \"transporter-2\",\n    \"transporter-3\",\n    \"transporter-4\",\n    \"transporter-5\",\n    \"transporter-6\",\n    \"transporter-7\",\n    \"transporter-empty\",\n    \"transporter\",\n    \"trash-arrow-up\",\n    \"trash-can-arrow-up\",\n    \"trash-can-check\",\n    \"trash-can-clock\",\n    \"trash-can-list\",\n    \"trash-can-plus\",\n    \"trash-can-slash\",\n    \"trash-can-undo\",\n    \"trash-can-xmark\",\n    \"trash-can\",\n    \"trash-check\",\n    \"trash-clock\",\n    \"trash-list\",\n    \"trash-plus\",\n    \"trash-slash\",\n    \"trash-undo\",\n    \"trash-xmark\",\n    \"trash\",\n    \"treasure-chest\",\n    \"tree-christmas\",\n    \"tree-city\",\n    \"tree-deciduous\",\n    \"tree-decorated\",\n    \"tree-large\",\n    \"tree-palm\",\n    \"tree\",\n    \"trees\",\n    \"triangle-exclamation\",\n    \"triangle-instrument\",\n    \"triangle-person-digging\",\n    \"triangle\",\n    \"tricycle-adult\",\n    \"tricycle\",\n    \"trillium\",\n    \"trophy-star\",\n    \"trophy\",\n    \"trowel-bricks\",\n    \"trowel\",\n    \"truck-arrow-right\",\n    \"truck-bolt\",\n    \"truck-clock\",\n    \"truck-container-empty\",\n    \"truck-container\",\n    \"truck-droplet\",\n    \"truck-fast\",\n    \"truck-field-un\",\n    \"truck-field\",\n    \"truck-fire\",\n    \"truck-flatbed\",\n    \"truck-front\",\n    \"truck-ladder\",\n    \"truck-medical\",\n    \"truck-monster\",\n    \"truck-moving\",\n    \"truck-pickup\",\n    \"truck-plane\",\n    \"truck-plow\",\n    \"truck-ramp-box\",\n    \"truck-ramp-couch\",\n    \"truck-ramp\",\n    \"truck-tow\",\n    \"truck-utensils\",\n    \"truck\",\n    \"trumpet\",\n    \"tty-answer\",\n    \"tty\",\n    \"tugrik-sign\",\n    \"turkey\",\n    \"turkish-lira-sign\",\n    \"turn-down-left\",\n    \"turn-down-right\",\n    \"turn-down\",\n    \"turn-left-down\",\n    \"turn-left-up\",\n    \"turn-left\",\n    \"turn-right\",\n    \"turn-up\",\n    \"turntable\",\n    \"turtle\",\n    \"tv-music\",\n    \"tv-retro\",\n    \"tv\",\n    \"typewriter\",\n    \"u\",\n    \"ufo-beam\",\n    \"ufo\",\n    \"umbrella-beach\",\n    \"umbrella-simple\",\n    \"umbrella\",\n    \"underline\",\n    \"unicorn\",\n    \"uniform-martial-arts\",\n    \"union\",\n    \"universal-access\",\n    \"unlock-keyhole\",\n    \"unlock\",\n    \"up-down-left-right\",\n    \"up-down\",\n    \"up-from-bracket\",\n    \"up-from-dotted-line\",\n    \"up-from-line\",\n    \"up-left\",\n    \"up-long\",\n    \"up-right-and-down-left-from-center\",\n    \"up-right-from-square\",\n    \"up-right\",\n    \"up-to-bracket\",\n    \"up-to-dotted-line\",\n    \"up-to-line\",\n    \"up\",\n    \"upload\",\n    \"usb-drive\",\n    \"user-alien\",\n    \"user-astronaut\",\n    \"user-beard-bolt\",\n    \"user-bounty-hunter\",\n    \"user-check\",\n    \"user-chef\",\n    \"user-clock\",\n    \"user-cowboy\",\n    \"user-crown\",\n    \"user-doctor-hair-long\",\n    \"user-doctor-hair\",\n    \"user-doctor-message\",\n    \"user-doctor\",\n    \"user-gear\",\n    \"user-graduate\",\n    \"user-group-crown\",\n    \"user-group-simple\",\n    \"user-group\",\n    \"user-hair-buns\",\n    \"user-hair-long\",\n    \"user-hair-mullet\",\n    \"user-hair\",\n    \"user-headset\",\n    \"user-helmet-safety\",\n    \"user-hoodie\",\n    \"user-injured\",\n    \"user-large-slash\",\n    \"user-large\",\n    \"user-lock\",\n    \"user-magnifying-glass\",\n    \"user-minus\",\n    \"user-music\",\n    \"user-ninja\",\n    \"user-nurse-hair-long\",\n    \"user-nurse-hair\",\n    \"user-nurse\",\n    \"user-pen\",\n    \"user-pilot-tie\",\n    \"user-pilot\",\n    \"user-plus\",\n    \"user-police-tie\",\n    \"user-police\",\n    \"user-robot-xmarks\",\n    \"user-robot\",\n    \"user-secret\",\n    \"user-shakespeare\",\n    \"user-shield\",\n    \"user-slash\",\n    \"user-tag\",\n    \"user-tie-hair-long\",\n    \"user-tie-hair\",\n    \"user-tie\",\n    \"user-unlock\",\n    \"user-visor\",\n    \"user-vneck-hair-long\",\n    \"user-vneck-hair\",\n    \"user-vneck\",\n    \"user-xmark\",\n    \"user\",\n    \"users-between-lines\",\n    \"users-gear\",\n    \"users-line\",\n    \"users-medical\",\n    \"users-rays\",\n    \"users-rectangle\",\n    \"users-slash\",\n    \"users-viewfinder\",\n    \"users\",\n    \"utensils-slash\",\n    \"utensils\",\n    \"utility-pole-double\",\n    \"utility-pole\",\n    \"v\",\n    \"vacuum-robot\",\n    \"vacuum\",\n    \"value-absolute\",\n    \"van-shuttle\",\n    \"vault\",\n    \"vector-circle\",\n    \"vector-polygon\",\n    \"vector-square\",\n    \"vent-damper\",\n    \"venus-double\",\n    \"venus-mars\",\n    \"venus\",\n    \"vest-patches\",\n    \"vest\",\n    \"vial-circle-check\",\n    \"vial-virus\",\n    \"vial\",\n    \"vials\",\n    \"video-arrow-down-left\",\n    \"video-arrow-up-right\",\n    \"video-plus\",\n    \"video-slash\",\n    \"video\",\n    \"vihara\",\n    \"violin\",\n    \"virus-covid-slash\",\n    \"virus-covid\",\n    \"virus-slash\",\n    \"virus\",\n    \"viruses\",\n    \"voicemail\",\n    \"volcano\",\n    \"volleyball\",\n    \"volume-high\",\n    \"volume-low\",\n    \"volume-off\",\n    \"volume-slash\",\n    \"volume-xmark\",\n    \"volume\",\n    \"vr-cardboard\",\n    \"w\",\n    \"waffle\",\n    \"wagon-covered\",\n    \"walker\",\n    \"walkie-talkie\",\n    \"wallet\",\n    \"wand-magic-sparkles\",\n    \"wand-magic\",\n    \"wand-sparkles\",\n    \"wand\",\n    \"warehouse-full\",\n    \"warehouse\",\n    \"washing-machine\",\n    \"watch-apple\",\n    \"watch-calculator\",\n    \"watch-fitness\",\n    \"watch-smart\",\n    \"watch\",\n    \"water-arrow-down\",\n    \"water-arrow-up\",\n    \"water-ladder\",\n    \"water\",\n    \"watermelon-slice\",\n    \"wave-pulse\",\n    \"wave-sine\",\n    \"wave-square\",\n    \"wave-triangle\",\n    \"wave\",\n    \"waveform-lines\",\n    \"waveform\",\n    \"waves-sine\",\n    \"web-awesome\",\n    \"webhook\",\n    \"weight-hanging\",\n    \"weight-scale\",\n    \"whale\",\n    \"wheat-awn-circle-exclamation\",\n    \"wheat-awn-slash\",\n    \"wheat-awn\",\n    \"wheat-slash\",\n    \"wheat\",\n    \"wheelchair-move\",\n    \"wheelchair\",\n    \"whiskey-glass-ice\",\n    \"whiskey-glass\",\n    \"whistle\",\n    \"wifi-exclamation\",\n    \"wifi-fair\",\n    \"wifi-slash\",\n    \"wifi-weak\",\n    \"wifi\",\n    \"wind-turbine\",\n    \"wind-warning\",\n    \"wind\",\n    \"window-flip\",\n    \"window-frame-open\",\n    \"window-frame\",\n    \"window-maximize\",\n    \"window-minimize\",\n    \"window-restore\",\n    \"window\",\n    \"windsock\",\n    \"wine-bottle\",\n    \"wine-glass-crack\",\n    \"wine-glass-empty\",\n    \"wine-glass\",\n    \"won-sign\",\n    \"worm\",\n    \"wreath-laurel\",\n    \"wreath\",\n    \"wrench-simple\",\n    \"wrench\",\n    \"x-ray\",\n    \"x\",\n    \"xmark-large\",\n    \"xmark-to-slot\",\n    \"xmark\",\n    \"xmarks-lines\",\n    \"y\",\n    \"yen-sign\",\n    \"yin-yang\",\n    \"z\"\n  ],\n  \"duotone-thin\": [\n    \"0\",\n    \"00\",\n    \"1\",\n    \"2\",\n    \"3\",\n    \"360-degrees\",\n    \"4\",\n    \"5\",\n    \"6\",\n    \"7\",\n    \"8\",\n    \"9\",\n    \"a\",\n    \"abacus\",\n    \"accent-grave\",\n    \"acorn\",\n    \"address-book\",\n    \"address-card\",\n    \"air-conditioner\",\n    \"airplay\",\n    \"alarm-clock\",\n    \"alarm-exclamation\",\n    \"alarm-plus\",\n    \"alarm-snooze\",\n    \"album-circle-plus\",\n    \"album-circle-user\",\n    \"album-collection-circle-plus\",\n    \"album-collection-circle-user\",\n    \"album-collection\",\n    \"album\",\n    \"alicorn\",\n    \"alien-8bit\",\n    \"alien\",\n    \"align-center\",\n    \"align-justify\",\n    \"align-left\",\n    \"align-right\",\n    \"align-slash\",\n    \"alt\",\n    \"amp-guitar\",\n    \"ampersand\",\n    \"anchor-circle-check\",\n    \"anchor-circle-exclamation\",\n    \"anchor-circle-xmark\",\n    \"anchor-lock\",\n    \"anchor\",\n    \"angel\",\n    \"angle-90\",\n    \"angle-down\",\n    \"angle-left\",\n    \"angle-right\",\n    \"angle-up\",\n    \"angle\",\n    \"angles-down\",\n    \"angles-left\",\n    \"angles-right\",\n    \"angles-up-down\",\n    \"angles-up\",\n    \"ankh\",\n    \"ant\",\n    \"apartment\",\n    \"aperture\",\n    \"apostrophe\",\n    \"apple-core\",\n    \"apple-whole\",\n    \"archway\",\n    \"arrow-down-1-9\",\n    \"arrow-down-9-1\",\n    \"arrow-down-a-z\",\n    \"arrow-down-arrow-up\",\n    \"arrow-down-big-small\",\n    \"arrow-down-from-arc\",\n    \"arrow-down-from-bracket\",\n    \"arrow-down-from-dotted-line\",\n    \"arrow-down-from-line\",\n    \"arrow-down-left-and-arrow-up-right-to-center\",\n    \"arrow-down-left\",\n    \"arrow-down-long\",\n    \"arrow-down-right\",\n    \"arrow-down-short-wide\",\n    \"arrow-down-small-big\",\n    \"arrow-down-square-triangle\",\n    \"arrow-down-to-arc\",\n    \"arrow-down-to-bracket\",\n    \"arrow-down-to-dotted-line\",\n    \"arrow-down-to-line\",\n    \"arrow-down-to-square\",\n    \"arrow-down-triangle-square\",\n    \"arrow-down-up-across-line\",\n    \"arrow-down-up-lock\",\n    \"arrow-down-wide-short\",\n    \"arrow-down-z-a\",\n    \"arrow-down\",\n    \"arrow-left-from-arc\",\n    \"arrow-left-from-bracket\",\n    \"arrow-left-from-line\",\n    \"arrow-left-long-to-line\",\n    \"arrow-left-long\",\n    \"arrow-left-to-arc\",\n    \"arrow-left-to-bracket\",\n    \"arrow-left-to-line\",\n    \"arrow-left\",\n    \"arrow-pointer\",\n    \"arrow-progress\",\n    \"arrow-right-arrow-left\",\n    \"arrow-right-from-arc\",\n    \"arrow-right-from-bracket\",\n    \"arrow-right-from-line\",\n    \"arrow-right-long-to-line\",\n    \"arrow-right-long\",\n    \"arrow-right-to-arc\",\n    \"arrow-right-to-bracket\",\n    \"arrow-right-to-city\",\n    \"arrow-right-to-line\",\n    \"arrow-right\",\n    \"arrow-rotate-left\",\n    \"arrow-rotate-right\",\n    \"arrow-trend-down\",\n    \"arrow-trend-up\",\n    \"arrow-turn-down-left\",\n    \"arrow-turn-down-right\",\n    \"arrow-turn-down\",\n    \"arrow-turn-left-down\",\n    \"arrow-turn-left-up\",\n    \"arrow-turn-left\",\n    \"arrow-turn-right\",\n    \"arrow-turn-up\",\n    \"arrow-up-1-9\",\n    \"arrow-up-9-1\",\n    \"arrow-up-a-z\",\n    \"arrow-up-arrow-down\",\n    \"arrow-up-big-small\",\n    \"arrow-up-from-arc\",\n    \"arrow-up-from-bracket\",\n    \"arrow-up-from-dotted-line\",\n    \"arrow-up-from-ground-water\",\n    \"arrow-up-from-line\",\n    \"arrow-up-from-square\",\n    \"arrow-up-from-water-pump\",\n    \"arrow-up-left-from-circle\",\n    \"arrow-up-left\",\n    \"arrow-up-long\",\n    \"arrow-up-right-and-arrow-down-left-from-center\",\n    \"arrow-up-right-dots\",\n    \"arrow-up-right-from-square\",\n    \"arrow-up-right\",\n    \"arrow-up-short-wide\",\n    \"arrow-up-small-big\",\n    \"arrow-up-square-triangle\",\n    \"arrow-up-to-arc\",\n    \"arrow-up-to-bracket\",\n    \"arrow-up-to-dotted-line\",\n    \"arrow-up-to-line\",\n    \"arrow-up-triangle-square\",\n    \"arrow-up-wide-short\",\n    \"arrow-up-z-a\",\n    \"arrow-up\",\n    \"arrows-cross\",\n    \"arrows-down-to-line\",\n    \"arrows-down-to-people\",\n    \"arrows-from-dotted-line\",\n    \"arrows-from-line\",\n    \"arrows-left-right-to-line\",\n    \"arrows-left-right\",\n    \"arrows-maximize\",\n    \"arrows-minimize\",\n    \"arrows-repeat-1\",\n    \"arrows-repeat\",\n    \"arrows-retweet\",\n    \"arrows-rotate-reverse\",\n    \"arrows-rotate\",\n    \"arrows-spin\",\n    \"arrows-split-up-and-left\",\n    \"arrows-to-circle\",\n    \"arrows-to-dot\",\n    \"arrows-to-dotted-line\",\n    \"arrows-to-eye\",\n    \"arrows-to-line\",\n    \"arrows-turn-right\",\n    \"arrows-turn-to-dots\",\n    \"arrows-up-down-left-right\",\n    \"arrows-up-down\",\n    \"arrows-up-to-line\",\n    \"asterisk\",\n    \"at\",\n    \"atom-simple\",\n    \"atom\",\n    \"audio-description-slash\",\n    \"audio-description\",\n    \"austral-sign\",\n    \"avocado\",\n    \"award-simple\",\n    \"award\",\n    \"axe-battle\",\n    \"axe\",\n    \"b\",\n    \"baby-carriage\",\n    \"baby\",\n    \"backpack\",\n    \"backward-fast\",\n    \"backward-step\",\n    \"backward\",\n    \"bacon\",\n    \"bacteria\",\n    \"bacterium\",\n    \"badge-check\",\n    \"badge-dollar\",\n    \"badge-percent\",\n    \"badge-sheriff\",\n    \"badge\",\n    \"badger-honey\",\n    \"badminton\",\n    \"bag-seedling\",\n    \"bag-shopping-minus\",\n    \"bag-shopping-plus\",\n    \"bag-shopping\",\n    \"bagel\",\n    \"bags-shopping\",\n    \"baguette\",\n    \"bahai\",\n    \"baht-sign\",\n    \"ball-pile\",\n    \"balloon\",\n    \"balloons\",\n    \"ballot-check\",\n    \"ballot\",\n    \"ban-bug\",\n    \"ban-parking\",\n    \"ban-smoking\",\n    \"ban\",\n    \"banana\",\n    \"bandage\",\n    \"bangladeshi-taka-sign\",\n    \"banjo\",\n    \"barcode-read\",\n    \"barcode-scan\",\n    \"barcode\",\n    \"bars-filter\",\n    \"bars-progress\",\n    \"bars-sort\",\n    \"bars-staggered\",\n    \"bars\",\n    \"baseball-bat-ball\",\n    \"baseball\",\n    \"basket-shopping-minus\",\n    \"basket-shopping-plus\",\n    \"basket-shopping-simple\",\n    \"basket-shopping\",\n    \"basketball-hoop\",\n    \"basketball\",\n    \"bat\",\n    \"bath\",\n    \"battery-bolt\",\n    \"battery-empty\",\n    \"battery-exclamation\",\n    \"battery-full\",\n    \"battery-half\",\n    \"battery-low\",\n    \"battery-quarter\",\n    \"battery-slash\",\n    \"battery-three-quarters\",\n    \"bed-bunk\",\n    \"bed-empty\",\n    \"bed-front\",\n    \"bed-pulse\",\n    \"bed\",\n    \"bee\",\n    \"beer-mug-empty\",\n    \"beer-mug\",\n    \"bell-concierge\",\n    \"bell-exclamation\",\n    \"bell-on\",\n    \"bell-plus\",\n    \"bell-ring\",\n    \"bell-school-slash\",\n    \"bell-school\",\n    \"bell-slash\",\n    \"bell\",\n    \"bells\",\n    \"bench-tree\",\n    \"bezier-curve\",\n    \"bicycle\",\n    \"billboard\",\n    \"bin-bottles-recycle\",\n    \"bin-bottles\",\n    \"bin-recycle\",\n    \"binary-circle-check\",\n    \"binary-lock\",\n    \"binary-slash\",\n    \"binary\",\n    \"binoculars\",\n    \"biohazard\",\n    \"bird\",\n    \"bitcoin-sign\",\n    \"blanket-fire\",\n    \"blanket\",\n    \"blender-phone\",\n    \"blender\",\n    \"blinds-open\",\n    \"blinds-raised\",\n    \"blinds\",\n    \"block-brick-fire\",\n    \"block-brick\",\n    \"block-question\",\n    \"block-quote\",\n    \"block\",\n    \"blog\",\n    \"blueberries\",\n    \"bluetooth\",\n    \"bold\",\n    \"bolt-auto\",\n    \"bolt-lightning\",\n    \"bolt-slash\",\n    \"bolt\",\n    \"bomb\",\n    \"bone-break\",\n    \"bone\",\n    \"bong\",\n    \"book-arrow-right\",\n    \"book-arrow-up\",\n    \"book-atlas\",\n    \"book-bible\",\n    \"book-blank\",\n    \"book-bookmark\",\n    \"book-circle-arrow-right\",\n    \"book-circle-arrow-up\",\n    \"book-copy\",\n    \"book-font\",\n    \"book-heart\",\n    \"book-journal-whills\",\n    \"book-medical\",\n    \"book-open-cover\",\n    \"book-open-reader\",\n    \"book-open\",\n    \"book-quran\",\n    \"book-section\",\n    \"book-skull\",\n    \"book-sparkles\",\n    \"book-tanakh\",\n    \"book-user\",\n    \"book\",\n    \"bookmark-slash\",\n    \"bookmark\",\n    \"books-medical\",\n    \"books\",\n    \"boombox\",\n    \"boot-heeled\",\n    \"boot\",\n    \"booth-curtain\",\n    \"border-all\",\n    \"border-bottom-right\",\n    \"border-bottom\",\n    \"border-center-h\",\n    \"border-center-v\",\n    \"border-inner\",\n    \"border-left\",\n    \"border-none\",\n    \"border-outer\",\n    \"border-right\",\n    \"border-top-left\",\n    \"border-top\",\n    \"bore-hole\",\n    \"bottle-baby\",\n    \"bottle-droplet\",\n    \"bottle-water\",\n    \"bow-arrow\",\n    \"bowl-chopsticks-noodles\",\n    \"bowl-chopsticks\",\n    \"bowl-food\",\n    \"bowl-hot\",\n    \"bowl-rice\",\n    \"bowl-scoop\",\n    \"bowl-scoops\",\n    \"bowl-soft-serve\",\n    \"bowl-spoon\",\n    \"bowling-ball-pin\",\n    \"bowling-ball\",\n    \"bowling-pins\",\n    \"box-archive\",\n    \"box-ballot\",\n    \"box-check\",\n    \"box-circle-check\",\n    \"box-dollar\",\n    \"box-heart\",\n    \"box-open-full\",\n    \"box-open\",\n    \"box-taped\",\n    \"box-tissue\",\n    \"box\",\n    \"boxes-packing\",\n    \"boxes-stacked\",\n    \"boxing-glove\",\n    \"bracket-curly-right\",\n    \"bracket-curly\",\n    \"bracket-round-right\",\n    \"bracket-round\",\n    \"bracket-square-right\",\n    \"bracket-square\",\n    \"brackets-curly\",\n    \"brackets-round\",\n    \"brackets-square\",\n    \"braille\",\n    \"brain-arrow-curved-right\",\n    \"brain-circuit\",\n    \"brain\",\n    \"brake-warning\",\n    \"brazilian-real-sign\",\n    \"bread-loaf\",\n    \"bread-slice-butter\",\n    \"bread-slice\",\n    \"bridge-circle-check\",\n    \"bridge-circle-exclamation\",\n    \"bridge-circle-xmark\",\n    \"bridge-lock\",\n    \"bridge-suspension\",\n    \"bridge-water\",\n    \"bridge\",\n    \"briefcase-arrow-right\",\n    \"briefcase-blank\",\n    \"briefcase-medical\",\n    \"briefcase\",\n    \"brightness-low\",\n    \"brightness\",\n    \"bring-forward\",\n    \"bring-front\",\n    \"broccoli\",\n    \"broom-ball\",\n    \"broom-wide\",\n    \"broom\",\n    \"browser\",\n    \"browsers\",\n    \"brush\",\n    \"bucket\",\n    \"bug-slash\",\n    \"bug\",\n    \"bugs\",\n    \"building-circle-arrow-right\",\n    \"building-circle-check\",\n    \"building-circle-exclamation\",\n    \"building-circle-xmark\",\n    \"building-columns\",\n    \"building-flag\",\n    \"building-lock\",\n    \"building-magnifying-glass\",\n    \"building-memo\",\n    \"building-ngo\",\n    \"building-shield\",\n    \"building-un\",\n    \"building-user\",\n    \"building-wheat\",\n    \"building\",\n    \"buildings\",\n    \"bulldozer\",\n    \"bullhorn\",\n    \"bullseye-arrow\",\n    \"bullseye-pointer\",\n    \"bullseye\",\n    \"buoy-mooring\",\n    \"buoy\",\n    \"burger-cheese\",\n    \"burger-fries\",\n    \"burger-glass\",\n    \"burger-lettuce\",\n    \"burger-soda\",\n    \"burger\",\n    \"burrito\",\n    \"burst\",\n    \"bus-school\",\n    \"bus-simple\",\n    \"bus\",\n    \"business-time\",\n    \"butter\",\n    \"c\",\n    \"cabin\",\n    \"cabinet-filing\",\n    \"cable-car\",\n    \"cactus\",\n    \"caduceus\",\n    \"cake-candles\",\n    \"cake-slice\",\n    \"calculator-simple\",\n    \"calculator\",\n    \"calendar-arrow-down\",\n    \"calendar-arrow-up\",\n    \"calendar-check\",\n    \"calendar-circle-exclamation\",\n    \"calendar-circle-minus\",\n    \"calendar-circle-plus\",\n    \"calendar-circle-user\",\n    \"calendar-clock\",\n    \"calendar-day\",\n    \"calendar-days\",\n    \"calendar-exclamation\",\n    \"calendar-heart\",\n    \"calendar-image\",\n    \"calendar-lines-pen\",\n    \"calendar-lines\",\n    \"calendar-minus\",\n    \"calendar-pen\",\n    \"calendar-plus\",\n    \"calendar-range\",\n    \"calendar-star\",\n    \"calendar-users\",\n    \"calendar-week\",\n    \"calendar-xmark\",\n    \"calendar\",\n    \"calendars\",\n    \"camcorder\",\n    \"camera-cctv\",\n    \"camera-movie\",\n    \"camera-polaroid\",\n    \"camera-retro\",\n    \"camera-rotate\",\n    \"camera-security\",\n    \"camera-slash\",\n    \"camera-viewfinder\",\n    \"camera-web-slash\",\n    \"camera-web\",\n    \"camera\",\n    \"campfire\",\n    \"campground\",\n    \"can-food\",\n    \"candle-holder\",\n    \"candy-bar\",\n    \"candy-cane\",\n    \"candy-corn\",\n    \"candy\",\n    \"cannabis\",\n    \"cannon\",\n    \"capsules\",\n    \"car-battery\",\n    \"car-bolt\",\n    \"car-building\",\n    \"car-bump\",\n    \"car-burst\",\n    \"car-bus\",\n    \"car-circle-bolt\",\n    \"car-garage\",\n    \"car-mirrors\",\n    \"car-on\",\n    \"car-rear\",\n    \"car-side-bolt\",\n    \"car-side\",\n    \"car-tilt\",\n    \"car-tunnel\",\n    \"car-wash\",\n    \"car-wrench\",\n    \"car\",\n    \"caravan-simple\",\n    \"caravan\",\n    \"card-club\",\n    \"card-diamond\",\n    \"card-heart\",\n    \"card-spade\",\n    \"cards-blank\",\n    \"cards\",\n    \"caret-down\",\n    \"caret-left\",\n    \"caret-right\",\n    \"caret-up\",\n    \"carpool\",\n    \"carrot\",\n    \"cars\",\n    \"cart-arrow-down\",\n    \"cart-arrow-up\",\n    \"cart-circle-arrow-down\",\n    \"cart-circle-arrow-up\",\n    \"cart-circle-check\",\n    \"cart-circle-exclamation\",\n    \"cart-circle-plus\",\n    \"cart-circle-xmark\",\n    \"cart-flatbed-boxes\",\n    \"cart-flatbed-empty\",\n    \"cart-flatbed-suitcase\",\n    \"cart-flatbed\",\n    \"cart-minus\",\n    \"cart-plus\",\n    \"cart-shopping-fast\",\n    \"cart-shopping\",\n    \"cart-xmark\",\n    \"cash-register\",\n    \"cassette-betamax\",\n    \"cassette-tape\",\n    \"cassette-vhs\",\n    \"castle\",\n    \"cat-space\",\n    \"cat\",\n    \"cauldron\",\n    \"cedi-sign\",\n    \"cent-sign\",\n    \"certificate\",\n    \"chair-office\",\n    \"chair\",\n    \"chalkboard-user\",\n    \"chalkboard\",\n    \"champagne-glass\",\n    \"champagne-glasses\",\n    \"charging-station\",\n    \"chart-area\",\n    \"chart-bar\",\n    \"chart-bullet\",\n    \"chart-candlestick\",\n    \"chart-column\",\n    \"chart-diagram\",\n    \"chart-fft\",\n    \"chart-gantt\",\n    \"chart-kanban\",\n    \"chart-line-down\",\n    \"chart-line-up-down\",\n    \"chart-line-up\",\n    \"chart-line\",\n    \"chart-mixed-up-circle-currency\",\n    \"chart-mixed-up-circle-dollar\",\n    \"chart-mixed\",\n    \"chart-network\",\n    \"chart-pie-simple-circle-currency\",\n    \"chart-pie-simple-circle-dollar\",\n    \"chart-pie-simple\",\n    \"chart-pie\",\n    \"chart-pyramid\",\n    \"chart-radar\",\n    \"chart-scatter-3d\",\n    \"chart-scatter-bubble\",\n    \"chart-scatter\",\n    \"chart-simple-horizontal\",\n    \"chart-simple\",\n    \"chart-sine\",\n    \"chart-tree-map\",\n    \"chart-user\",\n    \"chart-waterfall\",\n    \"check-double\",\n    \"check-to-slot\",\n    \"check\",\n    \"cheese-swiss\",\n    \"cheese\",\n    \"cherries\",\n    \"chess-bishop-piece\",\n    \"chess-bishop\",\n    \"chess-board\",\n    \"chess-clock-flip\",\n    \"chess-clock\",\n    \"chess-king-piece\",\n    \"chess-king\",\n    \"chess-knight-piece\",\n    \"chess-knight\",\n    \"chess-pawn-piece\",\n    \"chess-pawn\",\n    \"chess-queen-piece\",\n    \"chess-queen\",\n    \"chess-rook-piece\",\n    \"chess-rook\",\n    \"chess\",\n    \"chestnut\",\n    \"chevron-down\",\n    \"chevron-left\",\n    \"chevron-right\",\n    \"chevron-up\",\n    \"chevrons-down\",\n    \"chevrons-left\",\n    \"chevrons-right\",\n    \"chevrons-up\",\n    \"chf-sign\",\n    \"child-combatant\",\n    \"child-dress\",\n    \"child-reaching\",\n    \"child\",\n    \"children\",\n    \"chimney\",\n    \"chopsticks\",\n    \"church\",\n    \"circle-0\",\n    \"circle-1\",\n    \"circle-2\",\n    \"circle-3\",\n    \"circle-4\",\n    \"circle-5\",\n    \"circle-6\",\n    \"circle-7\",\n    \"circle-8\",\n    \"circle-9\",\n    \"circle-a\",\n    \"circle-ampersand\",\n    \"circle-arrow-down-left\",\n    \"circle-arrow-down-right\",\n    \"circle-arrow-down\",\n    \"circle-arrow-left\",\n    \"circle-arrow-right\",\n    \"circle-arrow-up-left\",\n    \"circle-arrow-up-right\",\n    \"circle-arrow-up\",\n    \"circle-b\",\n    \"circle-bolt\",\n    \"circle-book-open\",\n    \"circle-bookmark\",\n    \"circle-c\",\n    \"circle-calendar\",\n    \"circle-camera\",\n    \"circle-caret-down\",\n    \"circle-caret-left\",\n    \"circle-caret-right\",\n    \"circle-caret-up\",\n    \"circle-check\",\n    \"circle-chevron-down\",\n    \"circle-chevron-left\",\n    \"circle-chevron-right\",\n    \"circle-chevron-up\",\n    \"circle-d\",\n    \"circle-dashed\",\n    \"circle-divide\",\n    \"circle-dollar-to-slot\",\n    \"circle-dollar\",\n    \"circle-dot\",\n    \"circle-down-left\",\n    \"circle-down-right\",\n    \"circle-down\",\n    \"circle-e\",\n    \"circle-ellipsis-vertical\",\n    \"circle-ellipsis\",\n    \"circle-envelope\",\n    \"circle-euro\",\n    \"circle-exclamation-check\",\n    \"circle-exclamation\",\n    \"circle-f\",\n    \"circle-g\",\n    \"circle-gf\",\n    \"circle-h\",\n    \"circle-half-stroke\",\n    \"circle-half\",\n    \"circle-heart\",\n    \"circle-i\",\n    \"circle-info\",\n    \"circle-j\",\n    \"circle-k\",\n    \"circle-l\",\n    \"circle-left\",\n    \"circle-location-arrow\",\n    \"circle-m\",\n    \"circle-microphone-lines\",\n    \"circle-microphone\",\n    \"circle-minus\",\n    \"circle-n\",\n    \"circle-nodes\",\n    \"circle-notch\",\n    \"circle-o\",\n    \"circle-p\",\n    \"circle-parking\",\n    \"circle-pause\",\n    \"circle-phone-flip\",\n    \"circle-phone-hangup\",\n    \"circle-phone\",\n    \"circle-play\",\n    \"circle-plus\",\n    \"circle-q\",\n    \"circle-quarter-stroke\",\n    \"circle-quarter\",\n    \"circle-quarters\",\n    \"circle-question\",\n    \"circle-r\",\n    \"circle-radiation\",\n    \"circle-right\",\n    \"circle-s\",\n    \"circle-small\",\n    \"circle-sort-down\",\n    \"circle-sort-up\",\n    \"circle-sort\",\n    \"circle-star\",\n    \"circle-sterling\",\n    \"circle-stop\",\n    \"circle-t\",\n    \"circle-three-quarters-stroke\",\n    \"circle-three-quarters\",\n    \"circle-trash\",\n    \"circle-u\",\n    \"circle-up-left\",\n    \"circle-up-right\",\n    \"circle-up\",\n    \"circle-user\",\n    \"circle-v\",\n    \"circle-video\",\n    \"circle-w\",\n    \"circle-waveform-lines\",\n    \"circle-wifi-circle-wifi\",\n    \"circle-wifi\",\n    \"circle-x\",\n    \"circle-xmark\",\n    \"circle-y\",\n    \"circle-yen\",\n    \"circle-z\",\n    \"circle\",\n    \"circles-overlap-3\",\n    \"circles-overlap\",\n    \"citrus-slice\",\n    \"citrus\",\n    \"city\",\n    \"clapperboard-play\",\n    \"clapperboard\",\n    \"clarinet\",\n    \"claw-marks\",\n    \"clipboard-check\",\n    \"clipboard-list-check\",\n    \"clipboard-list\",\n    \"clipboard-medical\",\n    \"clipboard-prescription\",\n    \"clipboard-question\",\n    \"clipboard-user\",\n    \"clipboard\",\n    \"clock-desk\",\n    \"clock-eight-thirty\",\n    \"clock-eight\",\n    \"clock-eleven-thirty\",\n    \"clock-eleven\",\n    \"clock-five-thirty\",\n    \"clock-five\",\n    \"clock-four-thirty\",\n    \"clock-nine-thirty\",\n    \"clock-nine\",\n    \"clock-one-thirty\",\n    \"clock-one\",\n    \"clock-rotate-left\",\n    \"clock-seven-thirty\",\n    \"clock-seven\",\n    \"clock-six-thirty\",\n    \"clock-six\",\n    \"clock-ten-thirty\",\n    \"clock-ten\",\n    \"clock-three-thirty\",\n    \"clock-three\",\n    \"clock-twelve-thirty\",\n    \"clock-twelve\",\n    \"clock-two-thirty\",\n    \"clock-two\",\n    \"clock\",\n    \"clone\",\n    \"closed-captioning-slash\",\n    \"closed-captioning\",\n    \"clothes-hanger\",\n    \"cloud-arrow-down\",\n    \"cloud-arrow-up\",\n    \"cloud-binary\",\n    \"cloud-bolt-moon\",\n    \"cloud-bolt-sun\",\n    \"cloud-bolt\",\n    \"cloud-check\",\n    \"cloud-drizzle\",\n    \"cloud-exclamation\",\n    \"cloud-fog\",\n    \"cloud-hail-mixed\",\n    \"cloud-hail\",\n    \"cloud-meatball\",\n    \"cloud-minus\",\n    \"cloud-moon-rain\",\n    \"cloud-moon\",\n    \"cloud-music\",\n    \"cloud-plus\",\n    \"cloud-question\",\n    \"cloud-rain\",\n    \"cloud-rainbow\",\n    \"cloud-showers-heavy\",\n    \"cloud-showers-water\",\n    \"cloud-showers\",\n    \"cloud-slash\",\n    \"cloud-sleet\",\n    \"cloud-snow\",\n    \"cloud-sun-rain\",\n    \"cloud-sun\",\n    \"cloud-word\",\n    \"cloud-xmark\",\n    \"cloud\",\n    \"clouds-moon\",\n    \"clouds-sun\",\n    \"clouds\",\n    \"clover\",\n    \"club\",\n    \"coconut\",\n    \"code-branch\",\n    \"code-commit\",\n    \"code-compare\",\n    \"code-fork\",\n    \"code-merge\",\n    \"code-pull-request-closed\",\n    \"code-pull-request-draft\",\n    \"code-pull-request\",\n    \"code-simple\",\n    \"code\",\n    \"coffee-bean\",\n    \"coffee-beans\",\n    \"coffee-pot\",\n    \"coffin-cross\",\n    \"coffin\",\n    \"coin-blank\",\n    \"coin-front\",\n    \"coin-vertical\",\n    \"coin\",\n    \"coins\",\n    \"colon-sign\",\n    \"colon\",\n    \"columns-3\",\n    \"comet\",\n    \"comma\",\n    \"command\",\n    \"comment-arrow-down\",\n    \"comment-arrow-up-right\",\n    \"comment-arrow-up\",\n    \"comment-captions\",\n    \"comment-check\",\n    \"comment-code\",\n    \"comment-dollar\",\n    \"comment-dots\",\n    \"comment-exclamation\",\n    \"comment-heart\",\n    \"comment-image\",\n    \"comment-lines\",\n    \"comment-medical\",\n    \"comment-middle-top\",\n    \"comment-middle\",\n    \"comment-minus\",\n    \"comment-music\",\n    \"comment-nodes\",\n    \"comment-pen\",\n    \"comment-plus\",\n    \"comment-question\",\n    \"comment-quote\",\n    \"comment-slash\",\n    \"comment-smile\",\n    \"comment-sms\",\n    \"comment-text\",\n    \"comment-xmark\",\n    \"comment\",\n    \"comments-dollar\",\n    \"comments-question-check\",\n    \"comments-question\",\n    \"comments\",\n    \"compact-disc\",\n    \"compass-drafting\",\n    \"compass-slash\",\n    \"compass\",\n    \"compress-wide\",\n    \"compress\",\n    \"computer-classic\",\n    \"computer-mouse-scrollwheel\",\n    \"computer-mouse\",\n    \"computer-speaker\",\n    \"computer\",\n    \"container-storage\",\n    \"conveyor-belt-arm\",\n    \"conveyor-belt-boxes\",\n    \"conveyor-belt-empty\",\n    \"conveyor-belt\",\n    \"cookie-bite\",\n    \"cookie\",\n    \"copy\",\n    \"copyright\",\n    \"corn\",\n    \"corner\",\n    \"couch\",\n    \"court-sport\",\n    \"cow\",\n    \"cowbell-circle-plus\",\n    \"cowbell\",\n    \"crab\",\n    \"crate-apple\",\n    \"crate-empty\",\n    \"credit-card-blank\",\n    \"credit-card-front\",\n    \"credit-card\",\n    \"cricket-bat-ball\",\n    \"croissant\",\n    \"crop-simple\",\n    \"crop\",\n    \"cross\",\n    \"crosshairs-simple\",\n    \"crosshairs\",\n    \"crow\",\n    \"crown\",\n    \"crutch\",\n    \"crutches\",\n    \"cruzeiro-sign\",\n    \"crystal-ball\",\n    \"cube\",\n    \"cubes-stacked\",\n    \"cubes\",\n    \"cucumber\",\n    \"cup-straw-swoosh\",\n    \"cup-straw\",\n    \"cup-togo\",\n    \"cupcake\",\n    \"curling-stone\",\n    \"custard\",\n    \"d\",\n    \"dagger\",\n    \"dash\",\n    \"database\",\n    \"deer-rudolph\",\n    \"deer\",\n    \"delete-left\",\n    \"delete-right\",\n    \"democrat\",\n    \"desktop-arrow-down\",\n    \"desktop\",\n    \"dharmachakra\",\n    \"diagram-cells\",\n    \"diagram-lean-canvas\",\n    \"diagram-nested\",\n    \"diagram-next\",\n    \"diagram-predecessor\",\n    \"diagram-previous\",\n    \"diagram-project\",\n    \"diagram-sankey\",\n    \"diagram-subtask\",\n    \"diagram-successor\",\n    \"diagram-venn\",\n    \"dial-high\",\n    \"dial-low\",\n    \"dial-max\",\n    \"dial-med-low\",\n    \"dial-med\",\n    \"dial-min\",\n    \"dial-off\",\n    \"dial\",\n    \"diamond-exclamation\",\n    \"diamond-half-stroke\",\n    \"diamond-half\",\n    \"diamond-turn-right\",\n    \"diamond\",\n    \"diamonds-4\",\n    \"dice-d10\",\n    \"dice-d12\",\n    \"dice-d20\",\n    \"dice-d4\",\n    \"dice-d6\",\n    \"dice-d8\",\n    \"dice-five\",\n    \"dice-four\",\n    \"dice-one\",\n    \"dice-six\",\n    \"dice-three\",\n    \"dice-two\",\n    \"dice\",\n    \"dinosaur\",\n    \"diploma\",\n    \"disc-drive\",\n    \"disease\",\n    \"display-arrow-down\",\n    \"display-chart-up-circle-currency\",\n    \"display-chart-up-circle-dollar\",\n    \"display-chart-up\",\n    \"display-code\",\n    \"display-medical\",\n    \"display-slash\",\n    \"display\",\n    \"distribute-spacing-horizontal\",\n    \"distribute-spacing-vertical\",\n    \"ditto\",\n    \"divide\",\n    \"dna\",\n    \"do-not-enter\",\n    \"dog-leashed\",\n    \"dog\",\n    \"dollar-sign\",\n    \"dolly-empty\",\n    \"dolly\",\n    \"dolphin\",\n    \"dong-sign\",\n    \"donut\",\n    \"door-closed\",\n    \"door-open\",\n    \"dove\",\n    \"down-from-bracket\",\n    \"down-from-dotted-line\",\n    \"down-from-line\",\n    \"down-left-and-up-right-to-center\",\n    \"down-left\",\n    \"down-long\",\n    \"down-right\",\n    \"down-to-bracket\",\n    \"down-to-dotted-line\",\n    \"down-to-line\",\n    \"down\",\n    \"download\",\n    \"dragon\",\n    \"draw-circle\",\n    \"draw-polygon\",\n    \"draw-square\",\n    \"dreidel\",\n    \"drone-front\",\n    \"drone\",\n    \"droplet-degree\",\n    \"droplet-percent\",\n    \"droplet-slash\",\n    \"droplet\",\n    \"drum-steelpan\",\n    \"drum\",\n    \"drumstick-bite\",\n    \"drumstick\",\n    \"dryer-heat\",\n    \"dryer\",\n    \"duck\",\n    \"dumbbell\",\n    \"dumpster-fire\",\n    \"dumpster\",\n    \"dungeon\",\n    \"e\",\n    \"ear-deaf\",\n    \"ear-listen\",\n    \"ear-muffs\",\n    \"ear\",\n    \"earth-africa\",\n    \"earth-americas\",\n    \"earth-asia\",\n    \"earth-europe\",\n    \"earth-oceania\",\n    \"eclipse\",\n    \"egg-fried\",\n    \"egg\",\n    \"eggplant\",\n    \"eject\",\n    \"elephant\",\n    \"elevator\",\n    \"ellipsis-stroke-vertical\",\n    \"ellipsis-stroke\",\n    \"ellipsis-vertical\",\n    \"ellipsis\",\n    \"empty-set\",\n    \"engine-warning\",\n    \"engine\",\n    \"envelope-circle-check\",\n    \"envelope-dot\",\n    \"envelope-open-dollar\",\n    \"envelope-open-text\",\n    \"envelope-open\",\n    \"envelope\",\n    \"envelopes-bulk\",\n    \"envelopes\",\n    \"equals\",\n    \"eraser\",\n    \"escalator\",\n    \"ethernet\",\n    \"euro-sign\",\n    \"excavator\",\n    \"exclamation\",\n    \"expand-wide\",\n    \"expand\",\n    \"explosion\",\n    \"eye-dropper-full\",\n    \"eye-dropper-half\",\n    \"eye-dropper\",\n    \"eye-evil\",\n    \"eye-low-vision\",\n    \"eye-slash\",\n    \"eye\",\n    \"eyes\",\n    \"f\",\n    \"face-angry-horns\",\n    \"face-angry\",\n    \"face-anguished\",\n    \"face-anxious-sweat\",\n    \"face-astonished\",\n    \"face-awesome\",\n    \"face-beam-hand-over-mouth\",\n    \"face-clouds\",\n    \"face-confounded\",\n    \"face-confused\",\n    \"face-cowboy-hat\",\n    \"face-diagonal-mouth\",\n    \"face-disappointed\",\n    \"face-disguise\",\n    \"face-dizzy\",\n    \"face-dotted\",\n    \"face-downcast-sweat\",\n    \"face-drooling\",\n    \"face-exhaling\",\n    \"face-explode\",\n    \"face-expressionless\",\n    \"face-eyes-xmarks\",\n    \"face-fearful\",\n    \"face-flushed\",\n    \"face-frown-open\",\n    \"face-frown-slight\",\n    \"face-frown\",\n    \"face-glasses\",\n    \"face-grimace\",\n    \"face-grin-beam-sweat\",\n    \"face-grin-beam\",\n    \"face-grin-hearts\",\n    \"face-grin-squint-tears\",\n    \"face-grin-squint\",\n    \"face-grin-stars\",\n    \"face-grin-tears\",\n    \"face-grin-tongue-squint\",\n    \"face-grin-tongue-wink\",\n    \"face-grin-tongue\",\n    \"face-grin-wide\",\n    \"face-grin-wink\",\n    \"face-grin\",\n    \"face-hand-over-mouth\",\n    \"face-hand-peeking\",\n    \"face-hand-yawn\",\n    \"face-head-bandage\",\n    \"face-holding-back-tears\",\n    \"face-hushed\",\n    \"face-icicles\",\n    \"face-kiss-beam\",\n    \"face-kiss-closed-eyes\",\n    \"face-kiss-wink-heart\",\n    \"face-kiss\",\n    \"face-laugh-beam\",\n    \"face-laugh-squint\",\n    \"face-laugh-wink\",\n    \"face-laugh\",\n    \"face-lying\",\n    \"face-mask\",\n    \"face-meh-blank\",\n    \"face-meh\",\n    \"face-melting\",\n    \"face-monocle\",\n    \"face-nauseated\",\n    \"face-nose-steam\",\n    \"face-party\",\n    \"face-pensive\",\n    \"face-persevering\",\n    \"face-pleading\",\n    \"face-pouting\",\n    \"face-raised-eyebrow\",\n    \"face-relieved\",\n    \"face-rolling-eyes\",\n    \"face-sad-cry\",\n    \"face-sad-sweat\",\n    \"face-sad-tear\",\n    \"face-saluting\",\n    \"face-scream\",\n    \"face-shush\",\n    \"face-sleeping\",\n    \"face-sleepy\",\n    \"face-smile-beam\",\n    \"face-smile-halo\",\n    \"face-smile-hearts\",\n    \"face-smile-horns\",\n    \"face-smile-plus\",\n    \"face-smile-relaxed\",\n    \"face-smile-tear\",\n    \"face-smile-tongue\",\n    \"face-smile-upside-down\",\n    \"face-smile-wink\",\n    \"face-smile\",\n    \"face-smiling-hands\",\n    \"face-smirking\",\n    \"face-spiral-eyes\",\n    \"face-sunglasses\",\n    \"face-surprise\",\n    \"face-swear\",\n    \"face-thermometer\",\n    \"face-thinking\",\n    \"face-tired\",\n    \"face-tissue\",\n    \"face-tongue-money\",\n    \"face-tongue-sweat\",\n    \"face-unamused\",\n    \"face-viewfinder\",\n    \"face-vomit\",\n    \"face-weary\",\n    \"face-woozy\",\n    \"face-worried\",\n    \"face-zany\",\n    \"face-zipper\",\n    \"falafel\",\n    \"family-dress\",\n    \"family-pants\",\n    \"family\",\n    \"fan-table\",\n    \"fan\",\n    \"farm\",\n    \"faucet-drip\",\n    \"faucet\",\n    \"fax\",\n    \"feather-pointed\",\n    \"feather\",\n    \"fence\",\n    \"ferris-wheel\",\n    \"ferry\",\n    \"field-hockey-stick-ball\",\n    \"file-arrow-down\",\n    \"file-arrow-up\",\n    \"file-audio\",\n    \"file-binary\",\n    \"file-cad\",\n    \"file-certificate\",\n    \"file-chart-column\",\n    \"file-chart-pie\",\n    \"file-check\",\n    \"file-circle-check\",\n    \"file-circle-exclamation\",\n    \"file-circle-info\",\n    \"file-circle-minus\",\n    \"file-circle-plus\",\n    \"file-circle-question\",\n    \"file-circle-xmark\",\n    \"file-code\",\n    \"file-contract\",\n    \"file-csv\",\n    \"file-dashed-line\",\n    \"file-doc\",\n    \"file-eps\",\n    \"file-excel\",\n    \"file-exclamation\",\n    \"file-export\",\n    \"file-fragment\",\n    \"file-gif\",\n    \"file-half-dashed\",\n    \"file-heart\",\n    \"file-image\",\n    \"file-import\",\n    \"file-invoice-dollar\",\n    \"file-invoice\",\n    \"file-jpg\",\n    \"file-lines\",\n    \"file-lock\",\n    \"file-magnifying-glass\",\n    \"file-medical\",\n    \"file-minus\",\n    \"file-mov\",\n    \"file-mp3\",\n    \"file-mp4\",\n    \"file-music\",\n    \"file-pdf\",\n    \"file-pen\",\n    \"file-plus-minus\",\n    \"file-plus\",\n    \"file-png\",\n    \"file-powerpoint\",\n    \"file-ppt\",\n    \"file-prescription\",\n    \"file-shield\",\n    \"file-signature\",\n    \"file-slash\",\n    \"file-spreadsheet\",\n    \"file-svg\",\n    \"file-user\",\n    \"file-vector\",\n    \"file-video\",\n    \"file-waveform\",\n    \"file-word\",\n    \"file-xls\",\n    \"file-xmark\",\n    \"file-xml\",\n    \"file-zip\",\n    \"file-zipper\",\n    \"file\",\n    \"files-medical\",\n    \"files\",\n    \"fill-drip\",\n    \"fill\",\n    \"film-canister\",\n    \"film-simple\",\n    \"film-slash\",\n    \"film\",\n    \"films\",\n    \"filter-circle-dollar\",\n    \"filter-circle-xmark\",\n    \"filter-list\",\n    \"filter-slash\",\n    \"filter\",\n    \"filters\",\n    \"fingerprint\",\n    \"fire-burner\",\n    \"fire-extinguisher\",\n    \"fire-flame-curved\",\n    \"fire-flame-simple\",\n    \"fire-flame\",\n    \"fire-hydrant\",\n    \"fire-smoke\",\n    \"fire\",\n    \"fireplace\",\n    \"fish-bones\",\n    \"fish-cooked\",\n    \"fish-fins\",\n    \"fish\",\n    \"fishing-rod\",\n    \"flag-checkered\",\n    \"flag-pennant\",\n    \"flag-swallowtail\",\n    \"flag-usa\",\n    \"flag\",\n    \"flashlight\",\n    \"flask-gear\",\n    \"flask-round-poison\",\n    \"flask-round-potion\",\n    \"flask-vial\",\n    \"flask\",\n    \"flatbread-stuffed\",\n    \"flatbread\",\n    \"floppy-disk-circle-arrow-right\",\n    \"floppy-disk-circle-xmark\",\n    \"floppy-disk-pen\",\n    \"floppy-disk\",\n    \"floppy-disks\",\n    \"florin-sign\",\n    \"flower-daffodil\",\n    \"flower-tulip\",\n    \"flower\",\n    \"flute\",\n    \"flux-capacitor\",\n    \"flying-disc\",\n    \"folder-arrow-down\",\n    \"folder-arrow-up\",\n    \"folder-bookmark\",\n    \"folder-check\",\n    \"folder-closed\",\n    \"folder-gear\",\n    \"folder-grid\",\n    \"folder-heart\",\n    \"folder-image\",\n    \"folder-magnifying-glass\",\n    \"folder-medical\",\n    \"folder-minus\",\n    \"folder-music\",\n    \"folder-open\",\n    \"folder-plus\",\n    \"folder-tree\",\n    \"folder-user\",\n    \"folder-xmark\",\n    \"folder\",\n    \"folders\",\n    \"fondue-pot\",\n    \"font-awesome\",\n    \"font-case\",\n    \"font\",\n    \"football-helmet\",\n    \"football\",\n    \"fork-knife\",\n    \"fork\",\n    \"forklift\",\n    \"fort\",\n    \"forward-fast\",\n    \"forward-step\",\n    \"forward\",\n    \"frame\",\n    \"franc-sign\",\n    \"french-fries\",\n    \"frog\",\n    \"function\",\n    \"futbol\",\n    \"g\",\n    \"galaxy\",\n    \"gallery-thumbnails\",\n    \"game-board-simple\",\n    \"game-board\",\n    \"game-console-handheld-crank\",\n    \"game-console-handheld\",\n    \"gamepad-modern\",\n    \"gamepad\",\n    \"garage-car\",\n    \"garage-open\",\n    \"garage\",\n    \"garlic\",\n    \"gas-pump-slash\",\n    \"gas-pump\",\n    \"gauge-circle-bolt\",\n    \"gauge-circle-minus\",\n    \"gauge-circle-plus\",\n    \"gauge-high\",\n    \"gauge-low\",\n    \"gauge-max\",\n    \"gauge-min\",\n    \"gauge-simple-high\",\n    \"gauge-simple-low\",\n    \"gauge-simple-max\",\n    \"gauge-simple-min\",\n    \"gauge-simple\",\n    \"gauge\",\n    \"gavel\",\n    \"gear-code\",\n    \"gear-complex-code\",\n    \"gear-complex\",\n    \"gear\",\n    \"gears\",\n    \"gem\",\n    \"genderless\",\n    \"ghost\",\n    \"gif\",\n    \"gift-card\",\n    \"gift\",\n    \"gifts\",\n    \"gingerbread-man\",\n    \"glass-citrus\",\n    \"glass-empty\",\n    \"glass-half\",\n    \"glass-water-droplet\",\n    \"glass-water\",\n    \"glass\",\n    \"glasses-round\",\n    \"glasses\",\n    \"globe-pointer\",\n    \"globe-snow\",\n    \"globe-stand\",\n    \"globe-wifi\",\n    \"globe\",\n    \"goal-net\",\n    \"golf-ball-tee\",\n    \"golf-club\",\n    \"golf-flag-hole\",\n    \"gopuram\",\n    \"graduation-cap\",\n    \"gramophone\",\n    \"grapes\",\n    \"grate-droplet\",\n    \"grate\",\n    \"greater-than-equal\",\n    \"greater-than\",\n    \"grid-2-plus\",\n    \"grid-2\",\n    \"grid-4\",\n    \"grid-5\",\n    \"grid-dividers\",\n    \"grid-horizontal\",\n    \"grid-round-2-plus\",\n    \"grid-round-2\",\n    \"grid-round-4\",\n    \"grid-round-5\",\n    \"grid-round\",\n    \"grid\",\n    \"grill-fire\",\n    \"grill-hot\",\n    \"grill\",\n    \"grip-dots-vertical\",\n    \"grip-dots\",\n    \"grip-lines-vertical\",\n    \"grip-lines\",\n    \"grip-vertical\",\n    \"grip\",\n    \"group-arrows-rotate\",\n    \"guarani-sign\",\n    \"guitar-electric\",\n    \"guitar\",\n    \"guitars\",\n    \"gun-slash\",\n    \"gun-squirt\",\n    \"gun\",\n    \"h\",\n    \"h1\",\n    \"h2\",\n    \"h3\",\n    \"h4\",\n    \"h5\",\n    \"h6\",\n    \"hammer-brush\",\n    \"hammer-crash\",\n    \"hammer-war\",\n    \"hammer\",\n    \"hamsa\",\n    \"hand-back-fist\",\n    \"hand-back-point-down\",\n    \"hand-back-point-left\",\n    \"hand-back-point-ribbon\",\n    \"hand-back-point-right\",\n    \"hand-back-point-up\",\n    \"hand-dots\",\n    \"hand-fingers-crossed\",\n    \"hand-fist\",\n    \"hand-heart\",\n    \"hand-holding-box\",\n    \"hand-holding-circle-dollar\",\n    \"hand-holding-dollar\",\n    \"hand-holding-droplet\",\n    \"hand-holding-hand\",\n    \"hand-holding-heart\",\n    \"hand-holding-magic\",\n    \"hand-holding-medical\",\n    \"hand-holding-seedling\",\n    \"hand-holding-skull\",\n    \"hand-holding\",\n    \"hand-horns\",\n    \"hand-lizard\",\n    \"hand-love\",\n    \"hand-middle-finger\",\n    \"hand-peace\",\n    \"hand-point-down\",\n    \"hand-point-left\",\n    \"hand-point-ribbon\",\n    \"hand-point-right\",\n    \"hand-point-up\",\n    \"hand-pointer\",\n    \"hand-scissors\",\n    \"hand-sparkles\",\n    \"hand-spock\",\n    \"hand-wave\",\n    \"hand\",\n    \"handcuffs\",\n    \"hands-asl-interpreting\",\n    \"hands-bound\",\n    \"hands-bubbles\",\n    \"hands-clapping\",\n    \"hands-holding-child\",\n    \"hands-holding-circle\",\n    \"hands-holding-diamond\",\n    \"hands-holding-dollar\",\n    \"hands-holding-heart\",\n    \"hands-holding\",\n    \"hands-praying\",\n    \"hands\",\n    \"handshake-angle\",\n    \"handshake-simple-slash\",\n    \"handshake-simple\",\n    \"handshake-slash\",\n    \"handshake\",\n    \"hanukiah\",\n    \"hard-drive\",\n    \"hashtag-lock\",\n    \"hashtag\",\n    \"hat-beach\",\n    \"hat-chef\",\n    \"hat-cowboy-side\",\n    \"hat-cowboy\",\n    \"hat-santa\",\n    \"hat-winter\",\n    \"hat-witch\",\n    \"hat-wizard\",\n    \"head-side-brain\",\n    \"head-side-cough-slash\",\n    \"head-side-cough\",\n    \"head-side-gear\",\n    \"head-side-goggles\",\n    \"head-side-headphones\",\n    \"head-side-heart\",\n    \"head-side-mask\",\n    \"head-side-medical\",\n    \"head-side-virus\",\n    \"head-side\",\n    \"heading\",\n    \"headphones-simple\",\n    \"headphones\",\n    \"headset\",\n    \"heart-circle-bolt\",\n    \"heart-circle-check\",\n    \"heart-circle-exclamation\",\n    \"heart-circle-minus\",\n    \"heart-circle-plus\",\n    \"heart-circle-xmark\",\n    \"heart-crack\",\n    \"heart-half-stroke\",\n    \"heart-half\",\n    \"heart-pulse\",\n    \"heart\",\n    \"heat\",\n    \"helicopter-symbol\",\n    \"helicopter\",\n    \"helmet-battle\",\n    \"helmet-safety\",\n    \"helmet-un\",\n    \"hexagon-check\",\n    \"hexagon-divide\",\n    \"hexagon-exclamation\",\n    \"hexagon-image\",\n    \"hexagon-minus\",\n    \"hexagon-nodes-bolt\",\n    \"hexagon-nodes\",\n    \"hexagon-plus\",\n    \"hexagon-vertical-nft-slanted\",\n    \"hexagon-vertical-nft\",\n    \"hexagon-xmark\",\n    \"hexagon\",\n    \"high-definition\",\n    \"highlighter-line\",\n    \"highlighter\",\n    \"hill-avalanche\",\n    \"hill-rockslide\",\n    \"hippo\",\n    \"hockey-mask\",\n    \"hockey-puck\",\n    \"hockey-stick-puck\",\n    \"hockey-sticks\",\n    \"holly-berry\",\n    \"honey-pot\",\n    \"hood-cloak\",\n    \"horizontal-rule\",\n    \"horse-head\",\n    \"horse-saddle\",\n    \"horse\",\n    \"hose-reel\",\n    \"hose\",\n    \"hospital-user\",\n    \"hospital\",\n    \"hospitals\",\n    \"hot-tub-person\",\n    \"hotdog\",\n    \"hotel\",\n    \"hourglass-clock\",\n    \"hourglass-end\",\n    \"hourglass-half\",\n    \"hourglass-start\",\n    \"hourglass\",\n    \"house-blank\",\n    \"house-building\",\n    \"house-chimney-blank\",\n    \"house-chimney-crack\",\n    \"house-chimney-heart\",\n    \"house-chimney-medical\",\n    \"house-chimney-user\",\n    \"house-chimney-window\",\n    \"house-chimney\",\n    \"house-circle-check\",\n    \"house-circle-exclamation\",\n    \"house-circle-xmark\",\n    \"house-crack\",\n    \"house-day\",\n    \"house-fire\",\n    \"house-flag\",\n    \"house-flood-water-circle-arrow-right\",\n    \"house-flood-water\",\n    \"house-heart\",\n    \"house-laptop\",\n    \"house-lock\",\n    \"house-medical-circle-check\",\n    \"house-medical-circle-exclamation\",\n    \"house-medical-circle-xmark\",\n    \"house-medical-flag\",\n    \"house-medical\",\n    \"house-night\",\n    \"house-person-leave\",\n    \"house-person-return\",\n    \"house-signal\",\n    \"house-tree\",\n    \"house-tsunami\",\n    \"house-turret\",\n    \"house-user\",\n    \"house-water\",\n    \"house-window\",\n    \"house\",\n    \"hryvnia-sign\",\n    \"hundred-points\",\n    \"hurricane\",\n    \"hydra\",\n    \"hyphen\",\n    \"i-cursor\",\n    \"i\",\n    \"ice-cream\",\n    \"ice-skate\",\n    \"icicles\",\n    \"icons\",\n    \"id-badge\",\n    \"id-card-clip\",\n    \"id-card\",\n    \"igloo\",\n    \"image-landscape\",\n    \"image-polaroid-user\",\n    \"image-polaroid\",\n    \"image-portrait\",\n    \"image-slash\",\n    \"image-user\",\n    \"image\",\n    \"images-user\",\n    \"images\",\n    \"inbox-full\",\n    \"inbox-in\",\n    \"inbox-out\",\n    \"inbox\",\n    \"inboxes\",\n    \"indent\",\n    \"indian-rupee-sign\",\n    \"industry-windows\",\n    \"industry\",\n    \"infinity\",\n    \"info\",\n    \"inhaler\",\n    \"input-numeric\",\n    \"input-pipe\",\n    \"input-text\",\n    \"integral\",\n    \"interrobang\",\n    \"intersection\",\n    \"island-tropical\",\n    \"italic\",\n    \"j\",\n    \"jack-o-lantern\",\n    \"jar-wheat\",\n    \"jar\",\n    \"jedi\",\n    \"jet-fighter-up\",\n    \"jet-fighter\",\n    \"joint\",\n    \"joystick\",\n    \"jug-bottle\",\n    \"jug-detergent\",\n    \"jug\",\n    \"k\",\n    \"kaaba\",\n    \"kazoo\",\n    \"kerning\",\n    \"key-skeleton-left-right\",\n    \"key-skeleton\",\n    \"key\",\n    \"keyboard-brightness-low\",\n    \"keyboard-brightness\",\n    \"keyboard-down\",\n    \"keyboard-left\",\n    \"keyboard\",\n    \"keynote\",\n    \"khanda\",\n    \"kidneys\",\n    \"kip-sign\",\n    \"kit-medical\",\n    \"kitchen-set\",\n    \"kite\",\n    \"kiwi-bird\",\n    \"kiwi-fruit\",\n    \"knife-kitchen\",\n    \"knife\",\n    \"l\",\n    \"lacrosse-stick-ball\",\n    \"lacrosse-stick\",\n    \"lambda\",\n    \"lamp-desk\",\n    \"lamp-floor\",\n    \"lamp-street\",\n    \"lamp\",\n    \"land-mine-on\",\n    \"landmark-dome\",\n    \"landmark-flag\",\n    \"landmark-magnifying-glass\",\n    \"landmark\",\n    \"language\",\n    \"laptop-arrow-down\",\n    \"laptop-binary\",\n    \"laptop-code\",\n    \"laptop-file\",\n    \"laptop-medical\",\n    \"laptop-mobile\",\n    \"laptop-slash\",\n    \"laptop\",\n    \"lari-sign\",\n    \"lasso-sparkles\",\n    \"lasso\",\n    \"layer-group\",\n    \"layer-minus\",\n    \"layer-plus\",\n    \"leaf-heart\",\n    \"leaf-maple\",\n    \"leaf-oak\",\n    \"leaf\",\n    \"leafy-green\",\n    \"left-from-bracket\",\n    \"left-from-line\",\n    \"left-long-to-line\",\n    \"left-long\",\n    \"left-right\",\n    \"left-to-bracket\",\n    \"left-to-line\",\n    \"left\",\n    \"lemon\",\n    \"less-than-equal\",\n    \"less-than\",\n    \"life-ring\",\n    \"light-ceiling\",\n    \"light-emergency-on\",\n    \"light-emergency\",\n    \"light-switch-off\",\n    \"light-switch-on\",\n    \"light-switch\",\n    \"lightbulb-cfl-on\",\n    \"lightbulb-cfl\",\n    \"lightbulb-dollar\",\n    \"lightbulb-exclamation-on\",\n    \"lightbulb-exclamation\",\n    \"lightbulb-gear\",\n    \"lightbulb-message\",\n    \"lightbulb-on\",\n    \"lightbulb-slash\",\n    \"lightbulb\",\n    \"lighthouse\",\n    \"lights-holiday\",\n    \"line-columns\",\n    \"line-height\",\n    \"lines-leaning\",\n    \"link-horizontal-slash\",\n    \"link-horizontal\",\n    \"link-simple-slash\",\n    \"link-simple\",\n    \"link-slash\",\n    \"link\",\n    \"lips\",\n    \"lira-sign\",\n    \"list-check\",\n    \"list-dropdown\",\n    \"list-music\",\n    \"list-ol\",\n    \"list-radio\",\n    \"list-timeline\",\n    \"list-tree\",\n    \"list-ul\",\n    \"list\",\n    \"litecoin-sign\",\n    \"loader\",\n    \"lobster\",\n    \"location-arrow-up\",\n    \"location-arrow\",\n    \"location-check\",\n    \"location-crosshairs-slash\",\n    \"location-crosshairs\",\n    \"location-dot-slash\",\n    \"location-dot\",\n    \"location-exclamation\",\n    \"location-minus\",\n    \"location-pen\",\n    \"location-pin-lock\",\n    \"location-pin-slash\",\n    \"location-pin\",\n    \"location-plus\",\n    \"location-question\",\n    \"location-smile\",\n    \"location-xmark\",\n    \"lock-a\",\n    \"lock-hashtag\",\n    \"lock-keyhole-open\",\n    \"lock-keyhole\",\n    \"lock-open\",\n    \"lock\",\n    \"locust\",\n    \"lollipop\",\n    \"loveseat\",\n    \"luchador-mask\",\n    \"lungs-virus\",\n    \"lungs\",\n    \"m\",\n    \"mace\",\n    \"magnet\",\n    \"magnifying-glass-arrow-right\",\n    \"magnifying-glass-arrows-rotate\",\n    \"magnifying-glass-chart\",\n    \"magnifying-glass-dollar\",\n    \"magnifying-glass-location\",\n    \"magnifying-glass-minus\",\n    \"magnifying-glass-music\",\n    \"magnifying-glass-play\",\n    \"magnifying-glass-plus\",\n    \"magnifying-glass-waveform\",\n    \"magnifying-glass\",\n    \"mailbox-flag-up\",\n    \"mailbox\",\n    \"manat-sign\",\n    \"mandolin\",\n    \"mango\",\n    \"manhole\",\n    \"map-location-dot\",\n    \"map-location\",\n    \"map-pin\",\n    \"map\",\n    \"marker\",\n    \"mars-and-venus-burst\",\n    \"mars-and-venus\",\n    \"mars-double\",\n    \"mars-stroke-right\",\n    \"mars-stroke-up\",\n    \"mars-stroke\",\n    \"mars\",\n    \"martini-glass-citrus\",\n    \"martini-glass-empty\",\n    \"martini-glass\",\n    \"mask-face\",\n    \"mask-snorkel\",\n    \"mask-ventilator\",\n    \"mask\",\n    \"masks-theater\",\n    \"mattress-pillow\",\n    \"maximize\",\n    \"meat\",\n    \"medal\",\n    \"megaphone\",\n    \"melon-slice\",\n    \"melon\",\n    \"memo-circle-check\",\n    \"memo-circle-info\",\n    \"memo-pad\",\n    \"memo\",\n    \"memory\",\n    \"menorah\",\n    \"mercury\",\n    \"merge\",\n    \"message-arrow-down\",\n    \"message-arrow-up-right\",\n    \"message-arrow-up\",\n    \"message-bot\",\n    \"message-captions\",\n    \"message-check\",\n    \"message-code\",\n    \"message-dollar\",\n    \"message-dots\",\n    \"message-exclamation\",\n    \"message-heart\",\n    \"message-image\",\n    \"message-lines\",\n    \"message-medical\",\n    \"message-middle-top\",\n    \"message-middle\",\n    \"message-minus\",\n    \"message-music\",\n    \"message-pen\",\n    \"message-plus\",\n    \"message-question\",\n    \"message-quote\",\n    \"message-slash\",\n    \"message-smile\",\n    \"message-sms\",\n    \"message-text\",\n    \"message-xmark\",\n    \"message\",\n    \"messages-dollar\",\n    \"messages-question\",\n    \"messages\",\n    \"meteor\",\n    \"meter-bolt\",\n    \"meter-droplet\",\n    \"meter-fire\",\n    \"meter\",\n    \"microchip-ai\",\n    \"microchip\",\n    \"microphone-lines-slash\",\n    \"microphone-lines\",\n    \"microphone-slash\",\n    \"microphone-stand\",\n    \"microphone\",\n    \"microscope\",\n    \"microwave\",\n    \"mill-sign\",\n    \"minimize\",\n    \"minus\",\n    \"mistletoe\",\n    \"mitten\",\n    \"mobile-button\",\n    \"mobile-notch\",\n    \"mobile-retro\",\n    \"mobile-screen-button\",\n    \"mobile-screen\",\n    \"mobile-signal-out\",\n    \"mobile-signal\",\n    \"mobile\",\n    \"money-bill-1-wave\",\n    \"money-bill-1\",\n    \"money-bill-simple-wave\",\n    \"money-bill-simple\",\n    \"money-bill-transfer\",\n    \"money-bill-trend-up\",\n    \"money-bill-wave\",\n    \"money-bill-wheat\",\n    \"money-bill\",\n    \"money-bills-simple\",\n    \"money-bills\",\n    \"money-check-dollar-pen\",\n    \"money-check-dollar\",\n    \"money-check-pen\",\n    \"money-check\",\n    \"money-from-bracket\",\n    \"money-simple-from-bracket\",\n    \"monitor-waveform\",\n    \"monkey\",\n    \"monument\",\n    \"moon-cloud\",\n    \"moon-over-sun\",\n    \"moon-stars\",\n    \"moon\",\n    \"moped\",\n    \"mortar-pestle\",\n    \"mosque\",\n    \"mosquito-net\",\n    \"mosquito\",\n    \"motorcycle\",\n    \"mound\",\n    \"mountain-city\",\n    \"mountain-sun\",\n    \"mountain\",\n    \"mountains\",\n    \"mouse-field\",\n    \"mp3-player\",\n    \"mug-hot\",\n    \"mug-marshmallows\",\n    \"mug-saucer\",\n    \"mug-tea-saucer\",\n    \"mug-tea\",\n    \"mug\",\n    \"mushroom\",\n    \"music-magnifying-glass\",\n    \"music-note-slash\",\n    \"music-note\",\n    \"music-slash\",\n    \"music\",\n    \"mustache\",\n    \"n\",\n    \"naira-sign\",\n    \"narwhal\",\n    \"nesting-dolls\",\n    \"network-wired\",\n    \"neuter\",\n    \"newspaper\",\n    \"nfc-lock\",\n    \"nfc-magnifying-glass\",\n    \"nfc-pen\",\n    \"nfc-signal\",\n    \"nfc-slash\",\n    \"nfc-symbol\",\n    \"nfc-trash\",\n    \"nfc\",\n    \"nose\",\n    \"not-equal\",\n    \"notdef\",\n    \"note-medical\",\n    \"note-sticky\",\n    \"note\",\n    \"notebook\",\n    \"notes-medical\",\n    \"notes\",\n    \"o\",\n    \"object-exclude\",\n    \"object-group\",\n    \"object-intersect\",\n    \"object-subtract\",\n    \"object-ungroup\",\n    \"object-union\",\n    \"objects-align-bottom\",\n    \"objects-align-center-horizontal\",\n    \"objects-align-center-vertical\",\n    \"objects-align-left\",\n    \"objects-align-right\",\n    \"objects-align-top\",\n    \"objects-column\",\n    \"octagon-check\",\n    \"octagon-divide\",\n    \"octagon-exclamation\",\n    \"octagon-minus\",\n    \"octagon-plus\",\n    \"octagon-xmark\",\n    \"octagon\",\n    \"octopus\",\n    \"oil-can-drip\",\n    \"oil-can\",\n    \"oil-temperature\",\n    \"oil-well\",\n    \"olive-branch\",\n    \"olive\",\n    \"om\",\n    \"omega\",\n    \"onion\",\n    \"option\",\n    \"ornament\",\n    \"otter\",\n    \"outdent\",\n    \"outlet\",\n    \"oven\",\n    \"overline\",\n    \"p\",\n    \"page-caret-down\",\n    \"page-caret-up\",\n    \"page\",\n    \"pager\",\n    \"paint-roller\",\n    \"paintbrush-fine\",\n    \"paintbrush-pencil\",\n    \"paintbrush\",\n    \"palette\",\n    \"pallet-box\",\n    \"pallet-boxes\",\n    \"pallet\",\n    \"pan-food\",\n    \"pan-frying\",\n    \"pancakes\",\n    \"panel-ews\",\n    \"panel-fire\",\n    \"panorama\",\n    \"paper-plane-top\",\n    \"paper-plane\",\n    \"paperclip-vertical\",\n    \"paperclip\",\n    \"parachute-box\",\n    \"paragraph-left\",\n    \"paragraph\",\n    \"party-bell\",\n    \"party-horn\",\n    \"passport\",\n    \"paste\",\n    \"pause\",\n    \"paw-claws\",\n    \"paw-simple\",\n    \"paw\",\n    \"peace\",\n    \"peach\",\n    \"peanut\",\n    \"peanuts\",\n    \"peapod\",\n    \"pear\",\n    \"pedestal\",\n    \"pegasus\",\n    \"pen-circle\",\n    \"pen-clip-slash\",\n    \"pen-clip\",\n    \"pen-fancy-slash\",\n    \"pen-fancy\",\n    \"pen-field\",\n    \"pen-line\",\n    \"pen-nib-slash\",\n    \"pen-nib\",\n    \"pen-paintbrush\",\n    \"pen-ruler\",\n    \"pen-slash\",\n    \"pen-swirl\",\n    \"pen-to-square\",\n    \"pen\",\n    \"pencil-mechanical\",\n    \"pencil-slash\",\n    \"pencil\",\n    \"people-arrows\",\n    \"people-carry-box\",\n    \"people-dress-simple\",\n    \"people-dress\",\n    \"people-group\",\n    \"people-line\",\n    \"people-pants-simple\",\n    \"people-pants\",\n    \"people-pulling\",\n    \"people-robbery\",\n    \"people-roof\",\n    \"people-simple\",\n    \"people\",\n    \"pepper-hot\",\n    \"pepper\",\n    \"percent\",\n    \"period\",\n    \"person-arrow-down-to-line\",\n    \"person-arrow-up-from-line\",\n    \"person-biking-mountain\",\n    \"person-biking\",\n    \"person-booth\",\n    \"person-breastfeeding\",\n    \"person-burst\",\n    \"person-cane\",\n    \"person-carry-box\",\n    \"person-chalkboard\",\n    \"person-circle-check\",\n    \"person-circle-exclamation\",\n    \"person-circle-minus\",\n    \"person-circle-plus\",\n    \"person-circle-question\",\n    \"person-circle-xmark\",\n    \"person-digging\",\n    \"person-dolly-empty\",\n    \"person-dolly\",\n    \"person-dots-from-line\",\n    \"person-dress-burst\",\n    \"person-dress-fairy\",\n    \"person-dress-simple\",\n    \"person-dress\",\n    \"person-drowning\",\n    \"person-fairy\",\n    \"person-falling-burst\",\n    \"person-falling\",\n    \"person-from-portal\",\n    \"person-half-dress\",\n    \"person-harassing\",\n    \"person-hiking\",\n    \"person-military-pointing\",\n    \"person-military-rifle\",\n    \"person-military-to-person\",\n    \"person-pinball\",\n    \"person-praying\",\n    \"person-pregnant\",\n    \"person-rays\",\n    \"person-rifle\",\n    \"person-running-fast\",\n    \"person-running\",\n    \"person-seat-reclined\",\n    \"person-seat\",\n    \"person-shelter\",\n    \"person-sign\",\n    \"person-simple\",\n    \"person-skating\",\n    \"person-ski-jumping\",\n    \"person-ski-lift\",\n    \"person-skiing-nordic\",\n    \"person-skiing\",\n    \"person-sledding\",\n    \"person-snowboarding\",\n    \"person-snowmobiling\",\n    \"person-swimming\",\n    \"person-through-window\",\n    \"person-to-door\",\n    \"person-to-portal\",\n    \"person-walking-arrow-loop-left\",\n    \"person-walking-arrow-right\",\n    \"person-walking-dashed-line-arrow-right\",\n    \"person-walking-luggage\",\n    \"person-walking-with-cane\",\n    \"person-walking\",\n    \"person\",\n    \"peseta-sign\",\n    \"peso-sign\",\n    \"phone-arrow-down-left\",\n    \"phone-arrow-right\",\n    \"phone-arrow-up-right\",\n    \"phone-flip\",\n    \"phone-hangup\",\n    \"phone-intercom\",\n    \"phone-missed\",\n    \"phone-office\",\n    \"phone-plus\",\n    \"phone-rotary\",\n    \"phone-slash\",\n    \"phone-volume\",\n    \"phone-xmark\",\n    \"phone\",\n    \"photo-film-music\",\n    \"photo-film\",\n    \"pi\",\n    \"piano-keyboard\",\n    \"piano\",\n    \"pickaxe\",\n    \"pickleball\",\n    \"pie\",\n    \"pig\",\n    \"piggy-bank\",\n    \"pills\",\n    \"pinata\",\n    \"pinball\",\n    \"pineapple\",\n    \"pipe-circle-check\",\n    \"pipe-collar\",\n    \"pipe-section\",\n    \"pipe-smoking\",\n    \"pipe-valve\",\n    \"pipe\",\n    \"pizza-slice\",\n    \"pizza\",\n    \"place-of-worship\",\n    \"plane-arrival\",\n    \"plane-circle-check\",\n    \"plane-circle-exclamation\",\n    \"plane-circle-xmark\",\n    \"plane-departure\",\n    \"plane-engines\",\n    \"plane-lock\",\n    \"plane-prop\",\n    \"plane-slash\",\n    \"plane-tail\",\n    \"plane-up-slash\",\n    \"plane-up\",\n    \"plane\",\n    \"planet-moon\",\n    \"planet-ringed\",\n    \"plant-wilt\",\n    \"plate-utensils\",\n    \"plate-wheat\",\n    \"play-pause\",\n    \"play\",\n    \"plug-circle-bolt\",\n    \"plug-circle-check\",\n    \"plug-circle-exclamation\",\n    \"plug-circle-minus\",\n    \"plug-circle-plus\",\n    \"plug-circle-xmark\",\n    \"plug\",\n    \"plus-large\",\n    \"plus-minus\",\n    \"plus\",\n    \"podcast\",\n    \"podium-star\",\n    \"podium\",\n    \"police-box\",\n    \"poll-people\",\n    \"pompebled\",\n    \"poo-storm\",\n    \"poo\",\n    \"pool-8-ball\",\n    \"poop\",\n    \"popcorn\",\n    \"popsicle\",\n    \"pot-food\",\n    \"potato\",\n    \"power-off\",\n    \"prescription-bottle-medical\",\n    \"prescription-bottle-pill\",\n    \"prescription-bottle\",\n    \"prescription\",\n    \"presentation-screen\",\n    \"pretzel\",\n    \"print-magnifying-glass\",\n    \"print-slash\",\n    \"print\",\n    \"projector\",\n    \"pump-medical\",\n    \"pump-soap\",\n    \"pump\",\n    \"pumpkin\",\n    \"puzzle-piece-simple\",\n    \"puzzle-piece\",\n    \"puzzle\",\n    \"q\",\n    \"qrcode\",\n    \"question\",\n    \"quote-left\",\n    \"quote-right\",\n    \"quotes\",\n    \"r\",\n    \"rabbit-running\",\n    \"rabbit\",\n    \"raccoon\",\n    \"racquet\",\n    \"radar\",\n    \"radiation\",\n    \"radio-tuner\",\n    \"radio\",\n    \"rainbow\",\n    \"raindrops\",\n    \"ram\",\n    \"ramp-loading\",\n    \"ranking-star\",\n    \"raygun\",\n    \"receipt\",\n    \"record-vinyl\",\n    \"rectangle-ad\",\n    \"rectangle-barcode\",\n    \"rectangle-code\",\n    \"rectangle-history-circle-plus\",\n    \"rectangle-history-circle-user\",\n    \"rectangle-history\",\n    \"rectangle-list\",\n    \"rectangle-pro\",\n    \"rectangle-terminal\",\n    \"rectangle-vertical-history\",\n    \"rectangle-vertical\",\n    \"rectangle-wide\",\n    \"rectangle-xmark\",\n    \"rectangle\",\n    \"rectangles-mixed\",\n    \"recycle\",\n    \"reel\",\n    \"reflect-both\",\n    \"reflect-horizontal\",\n    \"reflect-vertical\",\n    \"refrigerator\",\n    \"registered\",\n    \"repeat-1\",\n    \"repeat\",\n    \"reply-all\",\n    \"reply-clock\",\n    \"reply\",\n    \"republican\",\n    \"restroom-simple\",\n    \"restroom\",\n    \"retweet\",\n    \"rhombus\",\n    \"ribbon\",\n    \"right-from-bracket\",\n    \"right-from-line\",\n    \"right-left-large\",\n    \"right-left\",\n    \"right-long-to-line\",\n    \"right-long\",\n    \"right-to-bracket\",\n    \"right-to-line\",\n    \"right\",\n    \"ring-diamond\",\n    \"ring\",\n    \"rings-wedding\",\n    \"road-barrier\",\n    \"road-bridge\",\n    \"road-circle-check\",\n    \"road-circle-exclamation\",\n    \"road-circle-xmark\",\n    \"road-lock\",\n    \"road-spikes\",\n    \"road\",\n    \"robot-astromech\",\n    \"robot\",\n    \"rocket-launch\",\n    \"rocket\",\n    \"roller-coaster\",\n    \"rotate-exclamation\",\n    \"rotate-left\",\n    \"rotate-reverse\",\n    \"rotate-right\",\n    \"rotate\",\n    \"route-highway\",\n    \"route-interstate\",\n    \"route\",\n    \"router\",\n    \"rss\",\n    \"ruble-sign\",\n    \"rug\",\n    \"rugby-ball\",\n    \"ruler-combined\",\n    \"ruler-horizontal\",\n    \"ruler-triangle\",\n    \"ruler-vertical\",\n    \"ruler\",\n    \"rupee-sign\",\n    \"rupiah-sign\",\n    \"rv\",\n    \"s\",\n    \"sack-dollar\",\n    \"sack-xmark\",\n    \"sack\",\n    \"sailboat\",\n    \"salad\",\n    \"salt-shaker\",\n    \"sandwich\",\n    \"satellite-dish\",\n    \"satellite\",\n    \"sausage\",\n    \"saxophone-fire\",\n    \"saxophone\",\n    \"scale-balanced\",\n    \"scale-unbalanced-flip\",\n    \"scale-unbalanced\",\n    \"scalpel-line-dashed\",\n    \"scalpel\",\n    \"scanner-gun\",\n    \"scanner-image\",\n    \"scanner-keyboard\",\n    \"scanner-touchscreen\",\n    \"scarecrow\",\n    \"scarf\",\n    \"school-circle-check\",\n    \"school-circle-exclamation\",\n    \"school-circle-xmark\",\n    \"school-flag\",\n    \"school-lock\",\n    \"school\",\n    \"scissors\",\n    \"screen-users\",\n    \"screencast\",\n    \"screwdriver-wrench\",\n    \"screwdriver\",\n    \"scribble\",\n    \"scroll-old\",\n    \"scroll-torah\",\n    \"scroll\",\n    \"scrubber\",\n    \"scythe\",\n    \"sd-card\",\n    \"sd-cards\",\n    \"seal-exclamation\",\n    \"seal-question\",\n    \"seal\",\n    \"seat-airline\",\n    \"section\",\n    \"seedling\",\n    \"semicolon\",\n    \"send-back\",\n    \"send-backward\",\n    \"sensor-cloud\",\n    \"sensor-fire\",\n    \"sensor-on\",\n    \"sensor-triangle-exclamation\",\n    \"sensor\",\n    \"server\",\n    \"shapes\",\n    \"share-all\",\n    \"share-from-square\",\n    \"share-nodes\",\n    \"share\",\n    \"sheep\",\n    \"sheet-plastic\",\n    \"shekel-sign\",\n    \"shelves-empty\",\n    \"shelves\",\n    \"shield-cat\",\n    \"shield-check\",\n    \"shield-cross\",\n    \"shield-dog\",\n    \"shield-exclamation\",\n    \"shield-halved\",\n    \"shield-heart\",\n    \"shield-keyhole\",\n    \"shield-minus\",\n    \"shield-plus\",\n    \"shield-quartered\",\n    \"shield-slash\",\n    \"shield-virus\",\n    \"shield-xmark\",\n    \"shield\",\n    \"ship\",\n    \"shirt-long-sleeve\",\n    \"shirt-running\",\n    \"shirt-tank-top\",\n    \"shirt\",\n    \"shish-kebab\",\n    \"shoe-prints\",\n    \"shop-lock\",\n    \"shop-slash\",\n    \"shop\",\n    \"shovel-snow\",\n    \"shovel\",\n    \"shower-down\",\n    \"shower\",\n    \"shredder\",\n    \"shrimp\",\n    \"shuffle\",\n    \"shutters\",\n    \"shuttle-space\",\n    \"shuttlecock\",\n    \"sickle\",\n    \"sidebar-flip\",\n    \"sidebar\",\n    \"sigma\",\n    \"sign-hanging\",\n    \"sign-post\",\n    \"sign-posts-wrench\",\n    \"sign-posts\",\n    \"signal-bars-fair\",\n    \"signal-bars-good\",\n    \"signal-bars-slash\",\n    \"signal-bars-weak\",\n    \"signal-bars\",\n    \"signal-fair\",\n    \"signal-good\",\n    \"signal-slash\",\n    \"signal-stream-slash\",\n    \"signal-stream\",\n    \"signal-strong\",\n    \"signal-weak\",\n    \"signal\",\n    \"signature-lock\",\n    \"signature-slash\",\n    \"signature\",\n    \"signs-post\",\n    \"sim-card\",\n    \"sim-cards\",\n    \"sink\",\n    \"siren-on\",\n    \"siren\",\n    \"sitemap\",\n    \"skeleton-ribs\",\n    \"skeleton\",\n    \"ski-boot-ski\",\n    \"ski-boot\",\n    \"skull-cow\",\n    \"skull-crossbones\",\n    \"skull\",\n    \"slash-back\",\n    \"slash-forward\",\n    \"slash\",\n    \"sleigh\",\n    \"slider\",\n    \"sliders-simple\",\n    \"sliders-up\",\n    \"sliders\",\n    \"slot-machine\",\n    \"smog\",\n    \"smoke\",\n    \"smoking\",\n    \"snake\",\n    \"snooze\",\n    \"snow-blowing\",\n    \"snowflake-droplets\",\n    \"snowflake\",\n    \"snowflakes\",\n    \"snowman-head\",\n    \"snowman\",\n    \"snowplow\",\n    \"soap\",\n    \"socks\",\n    \"soft-serve\",\n    \"solar-panel\",\n    \"solar-system\",\n    \"sort-down\",\n    \"sort-up\",\n    \"sort\",\n    \"spa\",\n    \"space-station-moon-construction\",\n    \"space-station-moon\",\n    \"spade\",\n    \"spaghetti-monster-flying\",\n    \"sparkle\",\n    \"sparkles\",\n    \"speaker\",\n    \"speakers\",\n    \"spell-check\",\n    \"spider-black-widow\",\n    \"spider-web\",\n    \"spider\",\n    \"spinner-scale\",\n    \"spinner-third\",\n    \"spinner\",\n    \"split\",\n    \"splotch\",\n    \"spoon\",\n    \"sportsball\",\n    \"spray-can-sparkles\",\n    \"spray-can\",\n    \"sprinkler-ceiling\",\n    \"sprinkler\",\n    \"square-0\",\n    \"square-1\",\n    \"square-2\",\n    \"square-3\",\n    \"square-4\",\n    \"square-5\",\n    \"square-6\",\n    \"square-7\",\n    \"square-8\",\n    \"square-9\",\n    \"square-a-lock\",\n    \"square-a\",\n    \"square-ampersand\",\n    \"square-arrow-down-left\",\n    \"square-arrow-down-right\",\n    \"square-arrow-down\",\n    \"square-arrow-left\",\n    \"square-arrow-right\",\n    \"square-arrow-up-left\",\n    \"square-arrow-up-right\",\n    \"square-arrow-up\",\n    \"square-b\",\n    \"square-binary\",\n    \"square-bolt\",\n    \"square-c\",\n    \"square-caret-down\",\n    \"square-caret-left\",\n    \"square-caret-right\",\n    \"square-caret-up\",\n    \"square-check\",\n    \"square-chevron-down\",\n    \"square-chevron-left\",\n    \"square-chevron-right\",\n    \"square-chevron-up\",\n    \"square-code\",\n    \"square-d\",\n    \"square-dashed-circle-plus\",\n    \"square-dashed\",\n    \"square-divide\",\n    \"square-dollar\",\n    \"square-down-left\",\n    \"square-down-right\",\n    \"square-down\",\n    \"square-e\",\n    \"square-ellipsis-vertical\",\n    \"square-ellipsis\",\n    \"square-envelope\",\n    \"square-exclamation\",\n    \"square-f\",\n    \"square-fragile\",\n    \"square-full\",\n    \"square-g\",\n    \"square-h\",\n    \"square-heart\",\n    \"square-i\",\n    \"square-info\",\n    \"square-j\",\n    \"square-k\",\n    \"square-kanban\",\n    \"square-l\",\n    \"square-left\",\n    \"square-list\",\n    \"square-m\",\n    \"square-minus\",\n    \"square-n\",\n    \"square-nfi\",\n    \"square-o\",\n    \"square-p\",\n    \"square-parking-slash\",\n    \"square-parking\",\n    \"square-pen\",\n    \"square-person-confined\",\n    \"square-phone-flip\",\n    \"square-phone-hangup\",\n    \"square-phone\",\n    \"square-plus\",\n    \"square-poll-horizontal\",\n    \"square-poll-vertical\",\n    \"square-q\",\n    \"square-quarters\",\n    \"square-question\",\n    \"square-quote\",\n    \"square-r\",\n    \"square-right\",\n    \"square-ring\",\n    \"square-root-variable\",\n    \"square-root\",\n    \"square-rss\",\n    \"square-s\",\n    \"square-share-nodes\",\n    \"square-sliders-vertical\",\n    \"square-sliders\",\n    \"square-small\",\n    \"square-star\",\n    \"square-t\",\n    \"square-terminal\",\n    \"square-this-way-up\",\n    \"square-u\",\n    \"square-up-left\",\n    \"square-up-right\",\n    \"square-up\",\n    \"square-user\",\n    \"square-v\",\n    \"square-virus\",\n    \"square-w\",\n    \"square-x\",\n    \"square-xmark\",\n    \"square-y\",\n    \"square-z\",\n    \"square\",\n    \"squid\",\n    \"squirrel\",\n    \"staff-snake\",\n    \"staff\",\n    \"stairs\",\n    \"stamp\",\n    \"standard-definition\",\n    \"stapler\",\n    \"star-and-crescent\",\n    \"star-christmas\",\n    \"star-exclamation\",\n    \"star-half-stroke\",\n    \"star-half\",\n    \"star-of-david\",\n    \"star-of-life\",\n    \"star-sharp-half-stroke\",\n    \"star-sharp-half\",\n    \"star-sharp\",\n    \"star-shooting\",\n    \"star\",\n    \"starfighter-twin-ion-engine-advanced\",\n    \"starfighter-twin-ion-engine\",\n    \"starfighter\",\n    \"stars\",\n    \"starship-freighter\",\n    \"starship\",\n    \"steak\",\n    \"steering-wheel\",\n    \"sterling-sign\",\n    \"stethoscope\",\n    \"stocking\",\n    \"stomach\",\n    \"stop\",\n    \"stopwatch-20\",\n    \"stopwatch\",\n    \"store-lock\",\n    \"store-slash\",\n    \"store\",\n    \"strawberry\",\n    \"street-view\",\n    \"stretcher\",\n    \"strikethrough\",\n    \"stroopwafel\",\n    \"subscript\",\n    \"subtitles-slash\",\n    \"subtitles\",\n    \"suitcase-medical\",\n    \"suitcase-rolling\",\n    \"suitcase\",\n    \"sun-bright\",\n    \"sun-cloud\",\n    \"sun-dust\",\n    \"sun-haze\",\n    \"sun-plant-wilt\",\n    \"sun\",\n    \"sunglasses\",\n    \"sunrise\",\n    \"sunset\",\n    \"superscript\",\n    \"sushi-roll\",\n    \"sushi\",\n    \"swap-arrows\",\n    \"swap\",\n    \"swatchbook\",\n    \"sword-laser-alt\",\n    \"sword-laser\",\n    \"sword\",\n    \"swords-laser\",\n    \"swords\",\n    \"symbols\",\n    \"synagogue\",\n    \"syringe\",\n    \"t-rex\",\n    \"t\",\n    \"table-cells-column-lock\",\n    \"table-cells-column-unlock\",\n    \"table-cells-large\",\n    \"table-cells-lock\",\n    \"table-cells-row-lock\",\n    \"table-cells-row-unlock\",\n    \"table-cells-unlock\",\n    \"table-cells\",\n    \"table-columns\",\n    \"table-layout\",\n    \"table-list\",\n    \"table-picnic\",\n    \"table-pivot\",\n    \"table-rows\",\n    \"table-tennis-paddle-ball\",\n    \"table-tree\",\n    \"table\",\n    \"tablet-button\",\n    \"tablet-rugged\",\n    \"tablet-screen-button\",\n    \"tablet-screen\",\n    \"tablet\",\n    \"tablets\",\n    \"tachograph-digital\",\n    \"taco\",\n    \"tag\",\n    \"tags\",\n    \"tally-1\",\n    \"tally-2\",\n    \"tally-3\",\n    \"tally-4\",\n    \"tally\",\n    \"tamale\",\n    \"tank-water\",\n    \"tape\",\n    \"tarp-droplet\",\n    \"tarp\",\n    \"taxi-bus\",\n    \"taxi\",\n    \"teddy-bear\",\n    \"teeth-open\",\n    \"teeth\",\n    \"telescope\",\n    \"temperature-arrow-down\",\n    \"temperature-arrow-up\",\n    \"temperature-empty\",\n    \"temperature-full\",\n    \"temperature-half\",\n    \"temperature-high\",\n    \"temperature-list\",\n    \"temperature-low\",\n    \"temperature-quarter\",\n    \"temperature-snow\",\n    \"temperature-sun\",\n    \"temperature-three-quarters\",\n    \"tenge-sign\",\n    \"tennis-ball\",\n    \"tent-arrow-down-to-line\",\n    \"tent-arrow-left-right\",\n    \"tent-arrow-turn-left\",\n    \"tent-arrows-down\",\n    \"tent-double-peak\",\n    \"tent\",\n    \"tents\",\n    \"terminal\",\n    \"text-height\",\n    \"text-size\",\n    \"text-slash\",\n    \"text-width\",\n    \"text\",\n    \"thermometer\",\n    \"theta\",\n    \"thought-bubble\",\n    \"thumbs-down\",\n    \"thumbs-up\",\n    \"thumbtack-slash\",\n    \"thumbtack\",\n    \"tick\",\n    \"ticket-airline\",\n    \"ticket-perforated\",\n    \"ticket-simple\",\n    \"ticket\",\n    \"tickets-airline\",\n    \"tickets-perforated\",\n    \"tickets-simple\",\n    \"tickets\",\n    \"tilde\",\n    \"timeline-arrow\",\n    \"timeline\",\n    \"timer\",\n    \"tire-flat\",\n    \"tire-pressure-warning\",\n    \"tire-rugged\",\n    \"tire\",\n    \"toggle-large-off\",\n    \"toggle-large-on\",\n    \"toggle-off\",\n    \"toggle-on\",\n    \"toilet-paper-blank-under\",\n    \"toilet-paper-blank\",\n    \"toilet-paper-check\",\n    \"toilet-paper-slash\",\n    \"toilet-paper-under-slash\",\n    \"toilet-paper-under\",\n    \"toilet-paper-xmark\",\n    \"toilet-paper\",\n    \"toilet-portable\",\n    \"toilet\",\n    \"toilets-portable\",\n    \"tomato\",\n    \"tombstone-blank\",\n    \"tombstone\",\n    \"toolbox\",\n    \"tooth\",\n    \"toothbrush\",\n    \"torii-gate\",\n    \"tornado\",\n    \"tower-broadcast\",\n    \"tower-cell\",\n    \"tower-control\",\n    \"tower-observation\",\n    \"tractor\",\n    \"trademark\",\n    \"traffic-cone\",\n    \"traffic-light-go\",\n    \"traffic-light-slow\",\n    \"traffic-light-stop\",\n    \"traffic-light\",\n    \"trailer\",\n    \"train-subway-tunnel\",\n    \"train-subway\",\n    \"train-track\",\n    \"train-tram\",\n    \"train-tunnel\",\n    \"train\",\n    \"transformer-bolt\",\n    \"transgender\",\n    \"transporter-1\",\n    \"transporter-2\",\n    \"transporter-3\",\n    \"transporter-4\",\n    \"transporter-5\",\n    \"transporter-6\",\n    \"transporter-7\",\n    \"transporter-empty\",\n    \"transporter\",\n    \"trash-arrow-up\",\n    \"trash-can-arrow-up\",\n    \"trash-can-check\",\n    \"trash-can-clock\",\n    \"trash-can-list\",\n    \"trash-can-plus\",\n    \"trash-can-slash\",\n    \"trash-can-undo\",\n    \"trash-can-xmark\",\n    \"trash-can\",\n    \"trash-check\",\n    \"trash-clock\",\n    \"trash-list\",\n    \"trash-plus\",\n    \"trash-slash\",\n    \"trash-undo\",\n    \"trash-xmark\",\n    \"trash\",\n    \"treasure-chest\",\n    \"tree-christmas\",\n    \"tree-city\",\n    \"tree-deciduous\",\n    \"tree-decorated\",\n    \"tree-large\",\n    \"tree-palm\",\n    \"tree\",\n    \"trees\",\n    \"triangle-exclamation\",\n    \"triangle-instrument\",\n    \"triangle-person-digging\",\n    \"triangle\",\n    \"tricycle-adult\",\n    \"tricycle\",\n    \"trillium\",\n    \"trophy-star\",\n    \"trophy\",\n    \"trowel-bricks\",\n    \"trowel\",\n    \"truck-arrow-right\",\n    \"truck-bolt\",\n    \"truck-clock\",\n    \"truck-container-empty\",\n    \"truck-container\",\n    \"truck-droplet\",\n    \"truck-fast\",\n    \"truck-field-un\",\n    \"truck-field\",\n    \"truck-fire\",\n    \"truck-flatbed\",\n    \"truck-front\",\n    \"truck-ladder\",\n    \"truck-medical\",\n    \"truck-monster\",\n    \"truck-moving\",\n    \"truck-pickup\",\n    \"truck-plane\",\n    \"truck-plow\",\n    \"truck-ramp-box\",\n    \"truck-ramp-couch\",\n    \"truck-ramp\",\n    \"truck-tow\",\n    \"truck-utensils\",\n    \"truck\",\n    \"trumpet\",\n    \"tty-answer\",\n    \"tty\",\n    \"tugrik-sign\",\n    \"turkey\",\n    \"turkish-lira-sign\",\n    \"turn-down-left\",\n    \"turn-down-right\",\n    \"turn-down\",\n    \"turn-left-down\",\n    \"turn-left-up\",\n    \"turn-left\",\n    \"turn-right\",\n    \"turn-up\",\n    \"turntable\",\n    \"turtle\",\n    \"tv-music\",\n    \"tv-retro\",\n    \"tv\",\n    \"typewriter\",\n    \"u\",\n    \"ufo-beam\",\n    \"ufo\",\n    \"umbrella-beach\",\n    \"umbrella-simple\",\n    \"umbrella\",\n    \"underline\",\n    \"unicorn\",\n    \"uniform-martial-arts\",\n    \"union\",\n    \"universal-access\",\n    \"unlock-keyhole\",\n    \"unlock\",\n    \"up-down-left-right\",\n    \"up-down\",\n    \"up-from-bracket\",\n    \"up-from-dotted-line\",\n    \"up-from-line\",\n    \"up-left\",\n    \"up-long\",\n    \"up-right-and-down-left-from-center\",\n    \"up-right-from-square\",\n    \"up-right\",\n    \"up-to-bracket\",\n    \"up-to-dotted-line\",\n    \"up-to-line\",\n    \"up\",\n    \"upload\",\n    \"usb-drive\",\n    \"user-alien\",\n    \"user-astronaut\",\n    \"user-beard-bolt\",\n    \"user-bounty-hunter\",\n    \"user-check\",\n    \"user-chef\",\n    \"user-clock\",\n    \"user-cowboy\",\n    \"user-crown\",\n    \"user-doctor-hair-long\",\n    \"user-doctor-hair\",\n    \"user-doctor-message\",\n    \"user-doctor\",\n    \"user-gear\",\n    \"user-graduate\",\n    \"user-group-crown\",\n    \"user-group-simple\",\n    \"user-group\",\n    \"user-hair-buns\",\n    \"user-hair-long\",\n    \"user-hair-mullet\",\n    \"user-hair\",\n    \"user-headset\",\n    \"user-helmet-safety\",\n    \"user-hoodie\",\n    \"user-injured\",\n    \"user-large-slash\",\n    \"user-large\",\n    \"user-lock\",\n    \"user-magnifying-glass\",\n    \"user-minus\",\n    \"user-music\",\n    \"user-ninja\",\n    \"user-nurse-hair-long\",\n    \"user-nurse-hair\",\n    \"user-nurse\",\n    \"user-pen\",\n    \"user-pilot-tie\",\n    \"user-pilot\",\n    \"user-plus\",\n    \"user-police-tie\",\n    \"user-police\",\n    \"user-robot-xmarks\",\n    \"user-robot\",\n    \"user-secret\",\n    \"user-shakespeare\",\n    \"user-shield\",\n    \"user-slash\",\n    \"user-tag\",\n    \"user-tie-hair-long\",\n    \"user-tie-hair\",\n    \"user-tie\",\n    \"user-unlock\",\n    \"user-visor\",\n    \"user-vneck-hair-long\",\n    \"user-vneck-hair\",\n    \"user-vneck\",\n    \"user-xmark\",\n    \"user\",\n    \"users-between-lines\",\n    \"users-gear\",\n    \"users-line\",\n    \"users-medical\",\n    \"users-rays\",\n    \"users-rectangle\",\n    \"users-slash\",\n    \"users-viewfinder\",\n    \"users\",\n    \"utensils-slash\",\n    \"utensils\",\n    \"utility-pole-double\",\n    \"utility-pole\",\n    \"v\",\n    \"vacuum-robot\",\n    \"vacuum\",\n    \"value-absolute\",\n    \"van-shuttle\",\n    \"vault\",\n    \"vector-circle\",\n    \"vector-polygon\",\n    \"vector-square\",\n    \"vent-damper\",\n    \"venus-double\",\n    \"venus-mars\",\n    \"venus\",\n    \"vest-patches\",\n    \"vest\",\n    \"vial-circle-check\",\n    \"vial-virus\",\n    \"vial\",\n    \"vials\",\n    \"video-arrow-down-left\",\n    \"video-arrow-up-right\",\n    \"video-plus\",\n    \"video-slash\",\n    \"video\",\n    \"vihara\",\n    \"violin\",\n    \"virus-covid-slash\",\n    \"virus-covid\",\n    \"virus-slash\",\n    \"virus\",\n    \"viruses\",\n    \"voicemail\",\n    \"volcano\",\n    \"volleyball\",\n    \"volume-high\",\n    \"volume-low\",\n    \"volume-off\",\n    \"volume-slash\",\n    \"volume-xmark\",\n    \"volume\",\n    \"vr-cardboard\",\n    \"w\",\n    \"waffle\",\n    \"wagon-covered\",\n    \"walker\",\n    \"walkie-talkie\",\n    \"wallet\",\n    \"wand-magic-sparkles\",\n    \"wand-magic\",\n    \"wand-sparkles\",\n    \"wand\",\n    \"warehouse-full\",\n    \"warehouse\",\n    \"washing-machine\",\n    \"watch-apple\",\n    \"watch-calculator\",\n    \"watch-fitness\",\n    \"watch-smart\",\n    \"watch\",\n    \"water-arrow-down\",\n    \"water-arrow-up\",\n    \"water-ladder\",\n    \"water\",\n    \"watermelon-slice\",\n    \"wave-pulse\",\n    \"wave-sine\",\n    \"wave-square\",\n    \"wave-triangle\",\n    \"wave\",\n    \"waveform-lines\",\n    \"waveform\",\n    \"waves-sine\",\n    \"web-awesome\",\n    \"webhook\",\n    \"weight-hanging\",\n    \"weight-scale\",\n    \"whale\",\n    \"wheat-awn-circle-exclamation\",\n    \"wheat-awn-slash\",\n    \"wheat-awn\",\n    \"wheat-slash\",\n    \"wheat\",\n    \"wheelchair-move\",\n    \"wheelchair\",\n    \"whiskey-glass-ice\",\n    \"whiskey-glass\",\n    \"whistle\",\n    \"wifi-exclamation\",\n    \"wifi-fair\",\n    \"wifi-slash\",\n    \"wifi-weak\",\n    \"wifi\",\n    \"wind-turbine\",\n    \"wind-warning\",\n    \"wind\",\n    \"window-flip\",\n    \"window-frame-open\",\n    \"window-frame\",\n    \"window-maximize\",\n    \"window-minimize\",\n    \"window-restore\",\n    \"window\",\n    \"windsock\",\n    \"wine-bottle\",\n    \"wine-glass-crack\",\n    \"wine-glass-empty\",\n    \"wine-glass\",\n    \"won-sign\",\n    \"worm\",\n    \"wreath-laurel\",\n    \"wreath\",\n    \"wrench-simple\",\n    \"wrench\",\n    \"x-ray\",\n    \"x\",\n    \"xmark-large\",\n    \"xmark-to-slot\",\n    \"xmark\",\n    \"xmarks-lines\",\n    \"y\",\n    \"yen-sign\",\n    \"yin-yang\",\n    \"z\"\n  ],\n  \"light\": [\n    \"0\",\n    \"00\",\n    \"1\",\n    \"2\",\n    \"3\",\n    \"360-degrees\",\n    \"4\",\n    \"5\",\n    \"6\",\n    \"7\",\n    \"8\",\n    \"9\",\n    \"a\",\n    \"abacus\",\n    \"accent-grave\",\n    \"acorn\",\n    \"address-book\",\n    \"address-card\",\n    \"air-conditioner\",\n    \"airplay\",\n    \"alarm-clock\",\n    \"alarm-exclamation\",\n    \"alarm-plus\",\n    \"alarm-snooze\",\n    \"album-circle-plus\",\n    \"album-circle-user\",\n    \"album-collection-circle-plus\",\n    \"album-collection-circle-user\",\n    \"album-collection\",\n    \"album\",\n    \"alicorn\",\n    \"alien-8bit\",\n    \"alien\",\n    \"align-center\",\n    \"align-justify\",\n    \"align-left\",\n    \"align-right\",\n    \"align-slash\",\n    \"alt\",\n    \"amp-guitar\",\n    \"ampersand\",\n    \"anchor-circle-check\",\n    \"anchor-circle-exclamation\",\n    \"anchor-circle-xmark\",\n    \"anchor-lock\",\n    \"anchor\",\n    \"angel\",\n    \"angle-90\",\n    \"angle-down\",\n    \"angle-left\",\n    \"angle-right\",\n    \"angle-up\",\n    \"angle\",\n    \"angles-down\",\n    \"angles-left\",\n    \"angles-right\",\n    \"angles-up-down\",\n    \"angles-up\",\n    \"ankh\",\n    \"ant\",\n    \"apartment\",\n    \"aperture\",\n    \"apostrophe\",\n    \"apple-core\",\n    \"apple-whole\",\n    \"archway\",\n    \"arrow-down-1-9\",\n    \"arrow-down-9-1\",\n    \"arrow-down-a-z\",\n    \"arrow-down-arrow-up\",\n    \"arrow-down-big-small\",\n    \"arrow-down-from-arc\",\n    \"arrow-down-from-bracket\",\n    \"arrow-down-from-dotted-line\",\n    \"arrow-down-from-line\",\n    \"arrow-down-left-and-arrow-up-right-to-center\",\n    \"arrow-down-left\",\n    \"arrow-down-long\",\n    \"arrow-down-right\",\n    \"arrow-down-short-wide\",\n    \"arrow-down-small-big\",\n    \"arrow-down-square-triangle\",\n    \"arrow-down-to-arc\",\n    \"arrow-down-to-bracket\",\n    \"arrow-down-to-dotted-line\",\n    \"arrow-down-to-line\",\n    \"arrow-down-to-square\",\n    \"arrow-down-triangle-square\",\n    \"arrow-down-up-across-line\",\n    \"arrow-down-up-lock\",\n    \"arrow-down-wide-short\",\n    \"arrow-down-z-a\",\n    \"arrow-down\",\n    \"arrow-left-from-arc\",\n    \"arrow-left-from-bracket\",\n    \"arrow-left-from-line\",\n    \"arrow-left-long-to-line\",\n    \"arrow-left-long\",\n    \"arrow-left-to-arc\",\n    \"arrow-left-to-bracket\",\n    \"arrow-left-to-line\",\n    \"arrow-left\",\n    \"arrow-pointer\",\n    \"arrow-progress\",\n    \"arrow-right-arrow-left\",\n    \"arrow-right-from-arc\",\n    \"arrow-right-from-bracket\",\n    \"arrow-right-from-line\",\n    \"arrow-right-long-to-line\",\n    \"arrow-right-long\",\n    \"arrow-right-to-arc\",\n    \"arrow-right-to-bracket\",\n    \"arrow-right-to-city\",\n    \"arrow-right-to-line\",\n    \"arrow-right\",\n    \"arrow-rotate-left\",\n    \"arrow-rotate-right\",\n    \"arrow-trend-down\",\n    \"arrow-trend-up\",\n    \"arrow-turn-down-left\",\n    \"arrow-turn-down-right\",\n    \"arrow-turn-down\",\n    \"arrow-turn-left-down\",\n    \"arrow-turn-left-up\",\n    \"arrow-turn-left\",\n    \"arrow-turn-right\",\n    \"arrow-turn-up\",\n    \"arrow-up-1-9\",\n    \"arrow-up-9-1\",\n    \"arrow-up-a-z\",\n    \"arrow-up-arrow-down\",\n    \"arrow-up-big-small\",\n    \"arrow-up-from-arc\",\n    \"arrow-up-from-bracket\",\n    \"arrow-up-from-dotted-line\",\n    \"arrow-up-from-ground-water\",\n    \"arrow-up-from-line\",\n    \"arrow-up-from-square\",\n    \"arrow-up-from-water-pump\",\n    \"arrow-up-left-from-circle\",\n    \"arrow-up-left\",\n    \"arrow-up-long\",\n    \"arrow-up-right-and-arrow-down-left-from-center\",\n    \"arrow-up-right-dots\",\n    \"arrow-up-right-from-square\",\n    \"arrow-up-right\",\n    \"arrow-up-short-wide\",\n    \"arrow-up-small-big\",\n    \"arrow-up-square-triangle\",\n    \"arrow-up-to-arc\",\n    \"arrow-up-to-bracket\",\n    \"arrow-up-to-dotted-line\",\n    \"arrow-up-to-line\",\n    \"arrow-up-triangle-square\",\n    \"arrow-up-wide-short\",\n    \"arrow-up-z-a\",\n    \"arrow-up\",\n    \"arrows-cross\",\n    \"arrows-down-to-line\",\n    \"arrows-down-to-people\",\n    \"arrows-from-dotted-line\",\n    \"arrows-from-line\",\n    \"arrows-left-right-to-line\",\n    \"arrows-left-right\",\n    \"arrows-maximize\",\n    \"arrows-minimize\",\n    \"arrows-repeat-1\",\n    \"arrows-repeat\",\n    \"arrows-retweet\",\n    \"arrows-rotate-reverse\",\n    \"arrows-rotate\",\n    \"arrows-spin\",\n    \"arrows-split-up-and-left\",\n    \"arrows-to-circle\",\n    \"arrows-to-dot\",\n    \"arrows-to-dotted-line\",\n    \"arrows-to-eye\",\n    \"arrows-to-line\",\n    \"arrows-turn-right\",\n    \"arrows-turn-to-dots\",\n    \"arrows-up-down-left-right\",\n    \"arrows-up-down\",\n    \"arrows-up-to-line\",\n    \"asterisk\",\n    \"at\",\n    \"atom-simple\",\n    \"atom\",\n    \"audio-description-slash\",\n    \"audio-description\",\n    \"austral-sign\",\n    \"avocado\",\n    \"award-simple\",\n    \"award\",\n    \"axe-battle\",\n    \"axe\",\n    \"b\",\n    \"baby-carriage\",\n    \"baby\",\n    \"backpack\",\n    \"backward-fast\",\n    \"backward-step\",\n    \"backward\",\n    \"bacon\",\n    \"bacteria\",\n    \"bacterium\",\n    \"badge-check\",\n    \"badge-dollar\",\n    \"badge-percent\",\n    \"badge-sheriff\",\n    \"badge\",\n    \"badger-honey\",\n    \"badminton\",\n    \"bag-seedling\",\n    \"bag-shopping-minus\",\n    \"bag-shopping-plus\",\n    \"bag-shopping\",\n    \"bagel\",\n    \"bags-shopping\",\n    \"baguette\",\n    \"bahai\",\n    \"baht-sign\",\n    \"ball-pile\",\n    \"balloon\",\n    \"balloons\",\n    \"ballot-check\",\n    \"ballot\",\n    \"ban-bug\",\n    \"ban-parking\",\n    \"ban-smoking\",\n    \"ban\",\n    \"banana\",\n    \"bandage\",\n    \"bangladeshi-taka-sign\",\n    \"banjo\",\n    \"barcode-read\",\n    \"barcode-scan\",\n    \"barcode\",\n    \"bars-filter\",\n    \"bars-progress\",\n    \"bars-sort\",\n    \"bars-staggered\",\n    \"bars\",\n    \"baseball-bat-ball\",\n    \"baseball\",\n    \"basket-shopping-minus\",\n    \"basket-shopping-plus\",\n    \"basket-shopping-simple\",\n    \"basket-shopping\",\n    \"basketball-hoop\",\n    \"basketball\",\n    \"bat\",\n    \"bath\",\n    \"battery-bolt\",\n    \"battery-empty\",\n    \"battery-exclamation\",\n    \"battery-full\",\n    \"battery-half\",\n    \"battery-low\",\n    \"battery-quarter\",\n    \"battery-slash\",\n    \"battery-three-quarters\",\n    \"bed-bunk\",\n    \"bed-empty\",\n    \"bed-front\",\n    \"bed-pulse\",\n    \"bed\",\n    \"bee\",\n    \"beer-mug-empty\",\n    \"beer-mug\",\n    \"bell-concierge\",\n    \"bell-exclamation\",\n    \"bell-on\",\n    \"bell-plus\",\n    \"bell-ring\",\n    \"bell-school-slash\",\n    \"bell-school\",\n    \"bell-slash\",\n    \"bell\",\n    \"bells\",\n    \"bench-tree\",\n    \"bezier-curve\",\n    \"bicycle\",\n    \"billboard\",\n    \"bin-bottles-recycle\",\n    \"bin-bottles\",\n    \"bin-recycle\",\n    \"binary-circle-check\",\n    \"binary-lock\",\n    \"binary-slash\",\n    \"binary\",\n    \"binoculars\",\n    \"biohazard\",\n    \"bird\",\n    \"bitcoin-sign\",\n    \"blanket-fire\",\n    \"blanket\",\n    \"blender-phone\",\n    \"blender\",\n    \"blinds-open\",\n    \"blinds-raised\",\n    \"blinds\",\n    \"block-brick-fire\",\n    \"block-brick\",\n    \"block-question\",\n    \"block-quote\",\n    \"block\",\n    \"blog\",\n    \"blueberries\",\n    \"bluetooth\",\n    \"bold\",\n    \"bolt-auto\",\n    \"bolt-lightning\",\n    \"bolt-slash\",\n    \"bolt\",\n    \"bomb\",\n    \"bone-break\",\n    \"bone\",\n    \"bong\",\n    \"book-arrow-right\",\n    \"book-arrow-up\",\n    \"book-atlas\",\n    \"book-bible\",\n    \"book-blank\",\n    \"book-bookmark\",\n    \"book-circle-arrow-right\",\n    \"book-circle-arrow-up\",\n    \"book-copy\",\n    \"book-font\",\n    \"book-heart\",\n    \"book-journal-whills\",\n    \"book-medical\",\n    \"book-open-cover\",\n    \"book-open-reader\",\n    \"book-open\",\n    \"book-quran\",\n    \"book-section\",\n    \"book-skull\",\n    \"book-sparkles\",\n    \"book-tanakh\",\n    \"book-user\",\n    \"book\",\n    \"bookmark-slash\",\n    \"bookmark\",\n    \"books-medical\",\n    \"books\",\n    \"boombox\",\n    \"boot-heeled\",\n    \"boot\",\n    \"booth-curtain\",\n    \"border-all\",\n    \"border-bottom-right\",\n    \"border-bottom\",\n    \"border-center-h\",\n    \"border-center-v\",\n    \"border-inner\",\n    \"border-left\",\n    \"border-none\",\n    \"border-outer\",\n    \"border-right\",\n    \"border-top-left\",\n    \"border-top\",\n    \"bore-hole\",\n    \"bottle-baby\",\n    \"bottle-droplet\",\n    \"bottle-water\",\n    \"bow-arrow\",\n    \"bowl-chopsticks-noodles\",\n    \"bowl-chopsticks\",\n    \"bowl-food\",\n    \"bowl-hot\",\n    \"bowl-rice\",\n    \"bowl-scoop\",\n    \"bowl-scoops\",\n    \"bowl-soft-serve\",\n    \"bowl-spoon\",\n    \"bowling-ball-pin\",\n    \"bowling-ball\",\n    \"bowling-pins\",\n    \"box-archive\",\n    \"box-ballot\",\n    \"box-check\",\n    \"box-circle-check\",\n    \"box-dollar\",\n    \"box-heart\",\n    \"box-open-full\",\n    \"box-open\",\n    \"box-taped\",\n    \"box-tissue\",\n    \"box\",\n    \"boxes-packing\",\n    \"boxes-stacked\",\n    \"boxing-glove\",\n    \"bracket-curly-right\",\n    \"bracket-curly\",\n    \"bracket-round-right\",\n    \"bracket-round\",\n    \"bracket-square-right\",\n    \"bracket-square\",\n    \"brackets-curly\",\n    \"brackets-round\",\n    \"brackets-square\",\n    \"braille\",\n    \"brain-arrow-curved-right\",\n    \"brain-circuit\",\n    \"brain\",\n    \"brake-warning\",\n    \"brazilian-real-sign\",\n    \"bread-loaf\",\n    \"bread-slice-butter\",\n    \"bread-slice\",\n    \"bridge-circle-check\",\n    \"bridge-circle-exclamation\",\n    \"bridge-circle-xmark\",\n    \"bridge-lock\",\n    \"bridge-suspension\",\n    \"bridge-water\",\n    \"bridge\",\n    \"briefcase-arrow-right\",\n    \"briefcase-blank\",\n    \"briefcase-medical\",\n    \"briefcase\",\n    \"brightness-low\",\n    \"brightness\",\n    \"bring-forward\",\n    \"bring-front\",\n    \"broccoli\",\n    \"broom-ball\",\n    \"broom-wide\",\n    \"broom\",\n    \"browser\",\n    \"browsers\",\n    \"brush\",\n    \"bucket\",\n    \"bug-slash\",\n    \"bug\",\n    \"bugs\",\n    \"building-circle-arrow-right\",\n    \"building-circle-check\",\n    \"building-circle-exclamation\",\n    \"building-circle-xmark\",\n    \"building-columns\",\n    \"building-flag\",\n    \"building-lock\",\n    \"building-magnifying-glass\",\n    \"building-memo\",\n    \"building-ngo\",\n    \"building-shield\",\n    \"building-un\",\n    \"building-user\",\n    \"building-wheat\",\n    \"building\",\n    \"buildings\",\n    \"bulldozer\",\n    \"bullhorn\",\n    \"bullseye-arrow\",\n    \"bullseye-pointer\",\n    \"bullseye\",\n    \"buoy-mooring\",\n    \"buoy\",\n    \"burger-cheese\",\n    \"burger-fries\",\n    \"burger-glass\",\n    \"burger-lettuce\",\n    \"burger-soda\",\n    \"burger\",\n    \"burrito\",\n    \"burst\",\n    \"bus-school\",\n    \"bus-simple\",\n    \"bus\",\n    \"business-time\",\n    \"butter\",\n    \"c\",\n    \"cabin\",\n    \"cabinet-filing\",\n    \"cable-car\",\n    \"cactus\",\n    \"caduceus\",\n    \"cake-candles\",\n    \"cake-slice\",\n    \"calculator-simple\",\n    \"calculator\",\n    \"calendar-arrow-down\",\n    \"calendar-arrow-up\",\n    \"calendar-check\",\n    \"calendar-circle-exclamation\",\n    \"calendar-circle-minus\",\n    \"calendar-circle-plus\",\n    \"calendar-circle-user\",\n    \"calendar-clock\",\n    \"calendar-day\",\n    \"calendar-days\",\n    \"calendar-exclamation\",\n    \"calendar-heart\",\n    \"calendar-image\",\n    \"calendar-lines-pen\",\n    \"calendar-lines\",\n    \"calendar-minus\",\n    \"calendar-pen\",\n    \"calendar-plus\",\n    \"calendar-range\",\n    \"calendar-star\",\n    \"calendar-users\",\n    \"calendar-week\",\n    \"calendar-xmark\",\n    \"calendar\",\n    \"calendars\",\n    \"camcorder\",\n    \"camera-cctv\",\n    \"camera-movie\",\n    \"camera-polaroid\",\n    \"camera-retro\",\n    \"camera-rotate\",\n    \"camera-security\",\n    \"camera-slash\",\n    \"camera-viewfinder\",\n    \"camera-web-slash\",\n    \"camera-web\",\n    \"camera\",\n    \"campfire\",\n    \"campground\",\n    \"can-food\",\n    \"candle-holder\",\n    \"candy-bar\",\n    \"candy-cane\",\n    \"candy-corn\",\n    \"candy\",\n    \"cannabis\",\n    \"cannon\",\n    \"capsules\",\n    \"car-battery\",\n    \"car-bolt\",\n    \"car-building\",\n    \"car-bump\",\n    \"car-burst\",\n    \"car-bus\",\n    \"car-circle-bolt\",\n    \"car-garage\",\n    \"car-mirrors\",\n    \"car-on\",\n    \"car-rear\",\n    \"car-side-bolt\",\n    \"car-side\",\n    \"car-tilt\",\n    \"car-tunnel\",\n    \"car-wash\",\n    \"car-wrench\",\n    \"car\",\n    \"caravan-simple\",\n    \"caravan\",\n    \"card-club\",\n    \"card-diamond\",\n    \"card-heart\",\n    \"card-spade\",\n    \"cards-blank\",\n    \"cards\",\n    \"caret-down\",\n    \"caret-left\",\n    \"caret-right\",\n    \"caret-up\",\n    \"carpool\",\n    \"carrot\",\n    \"cars\",\n    \"cart-arrow-down\",\n    \"cart-arrow-up\",\n    \"cart-circle-arrow-down\",\n    \"cart-circle-arrow-up\",\n    \"cart-circle-check\",\n    \"cart-circle-exclamation\",\n    \"cart-circle-plus\",\n    \"cart-circle-xmark\",\n    \"cart-flatbed-boxes\",\n    \"cart-flatbed-empty\",\n    \"cart-flatbed-suitcase\",\n    \"cart-flatbed\",\n    \"cart-minus\",\n    \"cart-plus\",\n    \"cart-shopping-fast\",\n    \"cart-shopping\",\n    \"cart-xmark\",\n    \"cash-register\",\n    \"cassette-betamax\",\n    \"cassette-tape\",\n    \"cassette-vhs\",\n    \"castle\",\n    \"cat-space\",\n    \"cat\",\n    \"cauldron\",\n    \"cedi-sign\",\n    \"cent-sign\",\n    \"certificate\",\n    \"chair-office\",\n    \"chair\",\n    \"chalkboard-user\",\n    \"chalkboard\",\n    \"champagne-glass\",\n    \"champagne-glasses\",\n    \"charging-station\",\n    \"chart-area\",\n    \"chart-bar\",\n    \"chart-bullet\",\n    \"chart-candlestick\",\n    \"chart-column\",\n    \"chart-diagram\",\n    \"chart-fft\",\n    \"chart-gantt\",\n    \"chart-kanban\",\n    \"chart-line-down\",\n    \"chart-line-up-down\",\n    \"chart-line-up\",\n    \"chart-line\",\n    \"chart-mixed-up-circle-currency\",\n    \"chart-mixed-up-circle-dollar\",\n    \"chart-mixed\",\n    \"chart-network\",\n    \"chart-pie-simple-circle-currency\",\n    \"chart-pie-simple-circle-dollar\",\n    \"chart-pie-simple\",\n    \"chart-pie\",\n    \"chart-pyramid\",\n    \"chart-radar\",\n    \"chart-scatter-3d\",\n    \"chart-scatter-bubble\",\n    \"chart-scatter\",\n    \"chart-simple-horizontal\",\n    \"chart-simple\",\n    \"chart-sine\",\n    \"chart-tree-map\",\n    \"chart-user\",\n    \"chart-waterfall\",\n    \"check-double\",\n    \"check-to-slot\",\n    \"check\",\n    \"cheese-swiss\",\n    \"cheese\",\n    \"cherries\",\n    \"chess-bishop-piece\",\n    \"chess-bishop\",\n    \"chess-board\",\n    \"chess-clock-flip\",\n    \"chess-clock\",\n    \"chess-king-piece\",\n    \"chess-king\",\n    \"chess-knight-piece\",\n    \"chess-knight\",\n    \"chess-pawn-piece\",\n    \"chess-pawn\",\n    \"chess-queen-piece\",\n    \"chess-queen\",\n    \"chess-rook-piece\",\n    \"chess-rook\",\n    \"chess\",\n    \"chestnut\",\n    \"chevron-down\",\n    \"chevron-left\",\n    \"chevron-right\",\n    \"chevron-up\",\n    \"chevrons-down\",\n    \"chevrons-left\",\n    \"chevrons-right\",\n    \"chevrons-up\",\n    \"chf-sign\",\n    \"child-combatant\",\n    \"child-dress\",\n    \"child-reaching\",\n    \"child\",\n    \"children\",\n    \"chimney\",\n    \"chopsticks\",\n    \"church\",\n    \"circle-0\",\n    \"circle-1\",\n    \"circle-2\",\n    \"circle-3\",\n    \"circle-4\",\n    \"circle-5\",\n    \"circle-6\",\n    \"circle-7\",\n    \"circle-8\",\n    \"circle-9\",\n    \"circle-a\",\n    \"circle-ampersand\",\n    \"circle-arrow-down-left\",\n    \"circle-arrow-down-right\",\n    \"circle-arrow-down\",\n    \"circle-arrow-left\",\n    \"circle-arrow-right\",\n    \"circle-arrow-up-left\",\n    \"circle-arrow-up-right\",\n    \"circle-arrow-up\",\n    \"circle-b\",\n    \"circle-bolt\",\n    \"circle-book-open\",\n    \"circle-bookmark\",\n    \"circle-c\",\n    \"circle-calendar\",\n    \"circle-camera\",\n    \"circle-caret-down\",\n    \"circle-caret-left\",\n    \"circle-caret-right\",\n    \"circle-caret-up\",\n    \"circle-check\",\n    \"circle-chevron-down\",\n    \"circle-chevron-left\",\n    \"circle-chevron-right\",\n    \"circle-chevron-up\",\n    \"circle-d\",\n    \"circle-dashed\",\n    \"circle-divide\",\n    \"circle-dollar-to-slot\",\n    \"circle-dollar\",\n    \"circle-dot\",\n    \"circle-down-left\",\n    \"circle-down-right\",\n    \"circle-down\",\n    \"circle-e\",\n    \"circle-ellipsis-vertical\",\n    \"circle-ellipsis\",\n    \"circle-envelope\",\n    \"circle-euro\",\n    \"circle-exclamation-check\",\n    \"circle-exclamation\",\n    \"circle-f\",\n    \"circle-g\",\n    \"circle-gf\",\n    \"circle-h\",\n    \"circle-half-stroke\",\n    \"circle-half\",\n    \"circle-heart\",\n    \"circle-i\",\n    \"circle-info\",\n    \"circle-j\",\n    \"circle-k\",\n    \"circle-l\",\n    \"circle-left\",\n    \"circle-location-arrow\",\n    \"circle-m\",\n    \"circle-microphone-lines\",\n    \"circle-microphone\",\n    \"circle-minus\",\n    \"circle-n\",\n    \"circle-nodes\",\n    \"circle-notch\",\n    \"circle-o\",\n    \"circle-p\",\n    \"circle-parking\",\n    \"circle-pause\",\n    \"circle-phone-flip\",\n    \"circle-phone-hangup\",\n    \"circle-phone\",\n    \"circle-play\",\n    \"circle-plus\",\n    \"circle-q\",\n    \"circle-quarter-stroke\",\n    \"circle-quarter\",\n    \"circle-quarters\",\n    \"circle-question\",\n    \"circle-r\",\n    \"circle-radiation\",\n    \"circle-right\",\n    \"circle-s\",\n    \"circle-small\",\n    \"circle-sort-down\",\n    \"circle-sort-up\",\n    \"circle-sort\",\n    \"circle-star\",\n    \"circle-sterling\",\n    \"circle-stop\",\n    \"circle-t\",\n    \"circle-three-quarters-stroke\",\n    \"circle-three-quarters\",\n    \"circle-trash\",\n    \"circle-u\",\n    \"circle-up-left\",\n    \"circle-up-right\",\n    \"circle-up\",\n    \"circle-user\",\n    \"circle-v\",\n    \"circle-video\",\n    \"circle-w\",\n    \"circle-waveform-lines\",\n    \"circle-wifi-circle-wifi\",\n    \"circle-wifi\",\n    \"circle-x\",\n    \"circle-xmark\",\n    \"circle-y\",\n    \"circle-yen\",\n    \"circle-z\",\n    \"circle\",\n    \"circles-overlap-3\",\n    \"circles-overlap\",\n    \"citrus-slice\",\n    \"citrus\",\n    \"city\",\n    \"clapperboard-play\",\n    \"clapperboard\",\n    \"clarinet\",\n    \"claw-marks\",\n    \"clipboard-check\",\n    \"clipboard-list-check\",\n    \"clipboard-list\",\n    \"clipboard-medical\",\n    \"clipboard-prescription\",\n    \"clipboard-question\",\n    \"clipboard-user\",\n    \"clipboard\",\n    \"clock-desk\",\n    \"clock-eight-thirty\",\n    \"clock-eight\",\n    \"clock-eleven-thirty\",\n    \"clock-eleven\",\n    \"clock-five-thirty\",\n    \"clock-five\",\n    \"clock-four-thirty\",\n    \"clock-nine-thirty\",\n    \"clock-nine\",\n    \"clock-one-thirty\",\n    \"clock-one\",\n    \"clock-rotate-left\",\n    \"clock-seven-thirty\",\n    \"clock-seven\",\n    \"clock-six-thirty\",\n    \"clock-six\",\n    \"clock-ten-thirty\",\n    \"clock-ten\",\n    \"clock-three-thirty\",\n    \"clock-three\",\n    \"clock-twelve-thirty\",\n    \"clock-twelve\",\n    \"clock-two-thirty\",\n    \"clock-two\",\n    \"clock\",\n    \"clone\",\n    \"closed-captioning-slash\",\n    \"closed-captioning\",\n    \"clothes-hanger\",\n    \"cloud-arrow-down\",\n    \"cloud-arrow-up\",\n    \"cloud-binary\",\n    \"cloud-bolt-moon\",\n    \"cloud-bolt-sun\",\n    \"cloud-bolt\",\n    \"cloud-check\",\n    \"cloud-drizzle\",\n    \"cloud-exclamation\",\n    \"cloud-fog\",\n    \"cloud-hail-mixed\",\n    \"cloud-hail\",\n    \"cloud-meatball\",\n    \"cloud-minus\",\n    \"cloud-moon-rain\",\n    \"cloud-moon\",\n    \"cloud-music\",\n    \"cloud-plus\",\n    \"cloud-question\",\n    \"cloud-rain\",\n    \"cloud-rainbow\",\n    \"cloud-showers-heavy\",\n    \"cloud-showers-water\",\n    \"cloud-showers\",\n    \"cloud-slash\",\n    \"cloud-sleet\",\n    \"cloud-snow\",\n    \"cloud-sun-rain\",\n    \"cloud-sun\",\n    \"cloud-word\",\n    \"cloud-xmark\",\n    \"cloud\",\n    \"clouds-moon\",\n    \"clouds-sun\",\n    \"clouds\",\n    \"clover\",\n    \"club\",\n    \"coconut\",\n    \"code-branch\",\n    \"code-commit\",\n    \"code-compare\",\n    \"code-fork\",\n    \"code-merge\",\n    \"code-pull-request-closed\",\n    \"code-pull-request-draft\",\n    \"code-pull-request\",\n    \"code-simple\",\n    \"code\",\n    \"coffee-bean\",\n    \"coffee-beans\",\n    \"coffee-pot\",\n    \"coffin-cross\",\n    \"coffin\",\n    \"coin-blank\",\n    \"coin-front\",\n    \"coin-vertical\",\n    \"coin\",\n    \"coins\",\n    \"colon-sign\",\n    \"colon\",\n    \"columns-3\",\n    \"comet\",\n    \"comma\",\n    \"command\",\n    \"comment-arrow-down\",\n    \"comment-arrow-up-right\",\n    \"comment-arrow-up\",\n    \"comment-captions\",\n    \"comment-check\",\n    \"comment-code\",\n    \"comment-dollar\",\n    \"comment-dots\",\n    \"comment-exclamation\",\n    \"comment-heart\",\n    \"comment-image\",\n    \"comment-lines\",\n    \"comment-medical\",\n    \"comment-middle-top\",\n    \"comment-middle\",\n    \"comment-minus\",\n    \"comment-music\",\n    \"comment-nodes\",\n    \"comment-pen\",\n    \"comment-plus\",\n    \"comment-question\",\n    \"comment-quote\",\n    \"comment-slash\",\n    \"comment-smile\",\n    \"comment-sms\",\n    \"comment-text\",\n    \"comment-xmark\",\n    \"comment\",\n    \"comments-dollar\",\n    \"comments-question-check\",\n    \"comments-question\",\n    \"comments\",\n    \"compact-disc\",\n    \"compass-drafting\",\n    \"compass-slash\",\n    \"compass\",\n    \"compress-wide\",\n    \"compress\",\n    \"computer-classic\",\n    \"computer-mouse-scrollwheel\",\n    \"computer-mouse\",\n    \"computer-speaker\",\n    \"computer\",\n    \"container-storage\",\n    \"conveyor-belt-arm\",\n    \"conveyor-belt-boxes\",\n    \"conveyor-belt-empty\",\n    \"conveyor-belt\",\n    \"cookie-bite\",\n    \"cookie\",\n    \"copy\",\n    \"copyright\",\n    \"corn\",\n    \"corner\",\n    \"couch\",\n    \"court-sport\",\n    \"cow\",\n    \"cowbell-circle-plus\",\n    \"cowbell\",\n    \"crab\",\n    \"crate-apple\",\n    \"crate-empty\",\n    \"credit-card-blank\",\n    \"credit-card-front\",\n    \"credit-card\",\n    \"cricket-bat-ball\",\n    \"croissant\",\n    \"crop-simple\",\n    \"crop\",\n    \"cross\",\n    \"crosshairs-simple\",\n    \"crosshairs\",\n    \"crow\",\n    \"crown\",\n    \"crutch\",\n    \"crutches\",\n    \"cruzeiro-sign\",\n    \"crystal-ball\",\n    \"cube\",\n    \"cubes-stacked\",\n    \"cubes\",\n    \"cucumber\",\n    \"cup-straw-swoosh\",\n    \"cup-straw\",\n    \"cup-togo\",\n    \"cupcake\",\n    \"curling-stone\",\n    \"custard\",\n    \"d\",\n    \"dagger\",\n    \"dash\",\n    \"database\",\n    \"deer-rudolph\",\n    \"deer\",\n    \"delete-left\",\n    \"delete-right\",\n    \"democrat\",\n    \"desktop-arrow-down\",\n    \"desktop\",\n    \"dharmachakra\",\n    \"diagram-cells\",\n    \"diagram-lean-canvas\",\n    \"diagram-nested\",\n    \"diagram-next\",\n    \"diagram-predecessor\",\n    \"diagram-previous\",\n    \"diagram-project\",\n    \"diagram-sankey\",\n    \"diagram-subtask\",\n    \"diagram-successor\",\n    \"diagram-venn\",\n    \"dial-high\",\n    \"dial-low\",\n    \"dial-max\",\n    \"dial-med-low\",\n    \"dial-med\",\n    \"dial-min\",\n    \"dial-off\",\n    \"dial\",\n    \"diamond-exclamation\",\n    \"diamond-half-stroke\",\n    \"diamond-half\",\n    \"diamond-turn-right\",\n    \"diamond\",\n    \"diamonds-4\",\n    \"dice-d10\",\n    \"dice-d12\",\n    \"dice-d20\",\n    \"dice-d4\",\n    \"dice-d6\",\n    \"dice-d8\",\n    \"dice-five\",\n    \"dice-four\",\n    \"dice-one\",\n    \"dice-six\",\n    \"dice-three\",\n    \"dice-two\",\n    \"dice\",\n    \"dinosaur\",\n    \"diploma\",\n    \"disc-drive\",\n    \"disease\",\n    \"display-arrow-down\",\n    \"display-chart-up-circle-currency\",\n    \"display-chart-up-circle-dollar\",\n    \"display-chart-up\",\n    \"display-code\",\n    \"display-medical\",\n    \"display-slash\",\n    \"display\",\n    \"distribute-spacing-horizontal\",\n    \"distribute-spacing-vertical\",\n    \"ditto\",\n    \"divide\",\n    \"dna\",\n    \"do-not-enter\",\n    \"dog-leashed\",\n    \"dog\",\n    \"dollar-sign\",\n    \"dolly-empty\",\n    \"dolly\",\n    \"dolphin\",\n    \"dong-sign\",\n    \"donut\",\n    \"door-closed\",\n    \"door-open\",\n    \"dove\",\n    \"down-from-bracket\",\n    \"down-from-dotted-line\",\n    \"down-from-line\",\n    \"down-left-and-up-right-to-center\",\n    \"down-left\",\n    \"down-long\",\n    \"down-right\",\n    \"down-to-bracket\",\n    \"down-to-dotted-line\",\n    \"down-to-line\",\n    \"down\",\n    \"download\",\n    \"dragon\",\n    \"draw-circle\",\n    \"draw-polygon\",\n    \"draw-square\",\n    \"dreidel\",\n    \"drone-front\",\n    \"drone\",\n    \"droplet-degree\",\n    \"droplet-percent\",\n    \"droplet-slash\",\n    \"droplet\",\n    \"drum-steelpan\",\n    \"drum\",\n    \"drumstick-bite\",\n    \"drumstick\",\n    \"dryer-heat\",\n    \"dryer\",\n    \"duck\",\n    \"dumbbell\",\n    \"dumpster-fire\",\n    \"dumpster\",\n    \"dungeon\",\n    \"e\",\n    \"ear-deaf\",\n    \"ear-listen\",\n    \"ear-muffs\",\n    \"ear\",\n    \"earth-africa\",\n    \"earth-americas\",\n    \"earth-asia\",\n    \"earth-europe\",\n    \"earth-oceania\",\n    \"eclipse\",\n    \"egg-fried\",\n    \"egg\",\n    \"eggplant\",\n    \"eject\",\n    \"elephant\",\n    \"elevator\",\n    \"ellipsis-stroke-vertical\",\n    \"ellipsis-stroke\",\n    \"ellipsis-vertical\",\n    \"ellipsis\",\n    \"empty-set\",\n    \"engine-warning\",\n    \"engine\",\n    \"envelope-circle-check\",\n    \"envelope-dot\",\n    \"envelope-open-dollar\",\n    \"envelope-open-text\",\n    \"envelope-open\",\n    \"envelope\",\n    \"envelopes-bulk\",\n    \"envelopes\",\n    \"equals\",\n    \"eraser\",\n    \"escalator\",\n    \"ethernet\",\n    \"euro-sign\",\n    \"excavator\",\n    \"exclamation\",\n    \"expand-wide\",\n    \"expand\",\n    \"explosion\",\n    \"eye-dropper-full\",\n    \"eye-dropper-half\",\n    \"eye-dropper\",\n    \"eye-evil\",\n    \"eye-low-vision\",\n    \"eye-slash\",\n    \"eye\",\n    \"eyes\",\n    \"f\",\n    \"face-angry-horns\",\n    \"face-angry\",\n    \"face-anguished\",\n    \"face-anxious-sweat\",\n    \"face-astonished\",\n    \"face-awesome\",\n    \"face-beam-hand-over-mouth\",\n    \"face-clouds\",\n    \"face-confounded\",\n    \"face-confused\",\n    \"face-cowboy-hat\",\n    \"face-diagonal-mouth\",\n    \"face-disappointed\",\n    \"face-disguise\",\n    \"face-dizzy\",\n    \"face-dotted\",\n    \"face-downcast-sweat\",\n    \"face-drooling\",\n    \"face-exhaling\",\n    \"face-explode\",\n    \"face-expressionless\",\n    \"face-eyes-xmarks\",\n    \"face-fearful\",\n    \"face-flushed\",\n    \"face-frown-open\",\n    \"face-frown-slight\",\n    \"face-frown\",\n    \"face-glasses\",\n    \"face-grimace\",\n    \"face-grin-beam-sweat\",\n    \"face-grin-beam\",\n    \"face-grin-hearts\",\n    \"face-grin-squint-tears\",\n    \"face-grin-squint\",\n    \"face-grin-stars\",\n    \"face-grin-tears\",\n    \"face-grin-tongue-squint\",\n    \"face-grin-tongue-wink\",\n    \"face-grin-tongue\",\n    \"face-grin-wide\",\n    \"face-grin-wink\",\n    \"face-grin\",\n    \"face-hand-over-mouth\",\n    \"face-hand-peeking\",\n    \"face-hand-yawn\",\n    \"face-head-bandage\",\n    \"face-holding-back-tears\",\n    \"face-hushed\",\n    \"face-icicles\",\n    \"face-kiss-beam\",\n    \"face-kiss-closed-eyes\",\n    \"face-kiss-wink-heart\",\n    \"face-kiss\",\n    \"face-laugh-beam\",\n    \"face-laugh-squint\",\n    \"face-laugh-wink\",\n    \"face-laugh\",\n    \"face-lying\",\n    \"face-mask\",\n    \"face-meh-blank\",\n    \"face-meh\",\n    \"face-melting\",\n    \"face-monocle\",\n    \"face-nauseated\",\n    \"face-nose-steam\",\n    \"face-party\",\n    \"face-pensive\",\n    \"face-persevering\",\n    \"face-pleading\",\n    \"face-pouting\",\n    \"face-raised-eyebrow\",\n    \"face-relieved\",\n    \"face-rolling-eyes\",\n    \"face-sad-cry\",\n    \"face-sad-sweat\",\n    \"face-sad-tear\",\n    \"face-saluting\",\n    \"face-scream\",\n    \"face-shush\",\n    \"face-sleeping\",\n    \"face-sleepy\",\n    \"face-smile-beam\",\n    \"face-smile-halo\",\n    \"face-smile-hearts\",\n    \"face-smile-horns\",\n    \"face-smile-plus\",\n    \"face-smile-relaxed\",\n    \"face-smile-tear\",\n    \"face-smile-tongue\",\n    \"face-smile-upside-down\",\n    \"face-smile-wink\",\n    \"face-smile\",\n    \"face-smiling-hands\",\n    \"face-smirking\",\n    \"face-spiral-eyes\",\n    \"face-sunglasses\",\n    \"face-surprise\",\n    \"face-swear\",\n    \"face-thermometer\",\n    \"face-thinking\",\n    \"face-tired\",\n    \"face-tissue\",\n    \"face-tongue-money\",\n    \"face-tongue-sweat\",\n    \"face-unamused\",\n    \"face-viewfinder\",\n    \"face-vomit\",\n    \"face-weary\",\n    \"face-woozy\",\n    \"face-worried\",\n    \"face-zany\",\n    \"face-zipper\",\n    \"falafel\",\n    \"family-dress\",\n    \"family-pants\",\n    \"family\",\n    \"fan-table\",\n    \"fan\",\n    \"farm\",\n    \"faucet-drip\",\n    \"faucet\",\n    \"fax\",\n    \"feather-pointed\",\n    \"feather\",\n    \"fence\",\n    \"ferris-wheel\",\n    \"ferry\",\n    \"field-hockey-stick-ball\",\n    \"file-arrow-down\",\n    \"file-arrow-up\",\n    \"file-audio\",\n    \"file-binary\",\n    \"file-cad\",\n    \"file-certificate\",\n    \"file-chart-column\",\n    \"file-chart-pie\",\n    \"file-check\",\n    \"file-circle-check\",\n    \"file-circle-exclamation\",\n    \"file-circle-info\",\n    \"file-circle-minus\",\n    \"file-circle-plus\",\n    \"file-circle-question\",\n    \"file-circle-xmark\",\n    \"file-code\",\n    \"file-contract\",\n    \"file-csv\",\n    \"file-dashed-line\",\n    \"file-doc\",\n    \"file-eps\",\n    \"file-excel\",\n    \"file-exclamation\",\n    \"file-export\",\n    \"file-fragment\",\n    \"file-gif\",\n    \"file-half-dashed\",\n    \"file-heart\",\n    \"file-image\",\n    \"file-import\",\n    \"file-invoice-dollar\",\n    \"file-invoice\",\n    \"file-jpg\",\n    \"file-lines\",\n    \"file-lock\",\n    \"file-magnifying-glass\",\n    \"file-medical\",\n    \"file-minus\",\n    \"file-mov\",\n    \"file-mp3\",\n    \"file-mp4\",\n    \"file-music\",\n    \"file-pdf\",\n    \"file-pen\",\n    \"file-plus-minus\",\n    \"file-plus\",\n    \"file-png\",\n    \"file-powerpoint\",\n    \"file-ppt\",\n    \"file-prescription\",\n    \"file-shield\",\n    \"file-signature\",\n    \"file-slash\",\n    \"file-spreadsheet\",\n    \"file-svg\",\n    \"file-user\",\n    \"file-vector\",\n    \"file-video\",\n    \"file-waveform\",\n    \"file-word\",\n    \"file-xls\",\n    \"file-xmark\",\n    \"file-xml\",\n    \"file-zip\",\n    \"file-zipper\",\n    \"file\",\n    \"files-medical\",\n    \"files\",\n    \"fill-drip\",\n    \"fill\",\n    \"film-canister\",\n    \"film-simple\",\n    \"film-slash\",\n    \"film\",\n    \"films\",\n    \"filter-circle-dollar\",\n    \"filter-circle-xmark\",\n    \"filter-list\",\n    \"filter-slash\",\n    \"filter\",\n    \"filters\",\n    \"fingerprint\",\n    \"fire-burner\",\n    \"fire-extinguisher\",\n    \"fire-flame-curved\",\n    \"fire-flame-simple\",\n    \"fire-flame\",\n    \"fire-hydrant\",\n    \"fire-smoke\",\n    \"fire\",\n    \"fireplace\",\n    \"fish-bones\",\n    \"fish-cooked\",\n    \"fish-fins\",\n    \"fish\",\n    \"fishing-rod\",\n    \"flag-checkered\",\n    \"flag-pennant\",\n    \"flag-swallowtail\",\n    \"flag-usa\",\n    \"flag\",\n    \"flashlight\",\n    \"flask-gear\",\n    \"flask-round-poison\",\n    \"flask-round-potion\",\n    \"flask-vial\",\n    \"flask\",\n    \"flatbread-stuffed\",\n    \"flatbread\",\n    \"floppy-disk-circle-arrow-right\",\n    \"floppy-disk-circle-xmark\",\n    \"floppy-disk-pen\",\n    \"floppy-disk\",\n    \"floppy-disks\",\n    \"florin-sign\",\n    \"flower-daffodil\",\n    \"flower-tulip\",\n    \"flower\",\n    \"flute\",\n    \"flux-capacitor\",\n    \"flying-disc\",\n    \"folder-arrow-down\",\n    \"folder-arrow-up\",\n    \"folder-bookmark\",\n    \"folder-check\",\n    \"folder-closed\",\n    \"folder-gear\",\n    \"folder-grid\",\n    \"folder-heart\",\n    \"folder-image\",\n    \"folder-magnifying-glass\",\n    \"folder-medical\",\n    \"folder-minus\",\n    \"folder-music\",\n    \"folder-open\",\n    \"folder-plus\",\n    \"folder-tree\",\n    \"folder-user\",\n    \"folder-xmark\",\n    \"folder\",\n    \"folders\",\n    \"fondue-pot\",\n    \"font-awesome\",\n    \"font-case\",\n    \"font\",\n    \"football-helmet\",\n    \"football\",\n    \"fork-knife\",\n    \"fork\",\n    \"forklift\",\n    \"fort\",\n    \"forward-fast\",\n    \"forward-step\",\n    \"forward\",\n    \"frame\",\n    \"franc-sign\",\n    \"french-fries\",\n    \"frog\",\n    \"function\",\n    \"futbol\",\n    \"g\",\n    \"galaxy\",\n    \"gallery-thumbnails\",\n    \"game-board-simple\",\n    \"game-board\",\n    \"game-console-handheld-crank\",\n    \"game-console-handheld\",\n    \"gamepad-modern\",\n    \"gamepad\",\n    \"garage-car\",\n    \"garage-open\",\n    \"garage\",\n    \"garlic\",\n    \"gas-pump-slash\",\n    \"gas-pump\",\n    \"gauge-circle-bolt\",\n    \"gauge-circle-minus\",\n    \"gauge-circle-plus\",\n    \"gauge-high\",\n    \"gauge-low\",\n    \"gauge-max\",\n    \"gauge-min\",\n    \"gauge-simple-high\",\n    \"gauge-simple-low\",\n    \"gauge-simple-max\",\n    \"gauge-simple-min\",\n    \"gauge-simple\",\n    \"gauge\",\n    \"gavel\",\n    \"gear-code\",\n    \"gear-complex-code\",\n    \"gear-complex\",\n    \"gear\",\n    \"gears\",\n    \"gem\",\n    \"genderless\",\n    \"ghost\",\n    \"gif\",\n    \"gift-card\",\n    \"gift\",\n    \"gifts\",\n    \"gingerbread-man\",\n    \"glass-citrus\",\n    \"glass-empty\",\n    \"glass-half\",\n    \"glass-water-droplet\",\n    \"glass-water\",\n    \"glass\",\n    \"glasses-round\",\n    \"glasses\",\n    \"globe-pointer\",\n    \"globe-snow\",\n    \"globe-stand\",\n    \"globe-wifi\",\n    \"globe\",\n    \"goal-net\",\n    \"golf-ball-tee\",\n    \"golf-club\",\n    \"golf-flag-hole\",\n    \"gopuram\",\n    \"graduation-cap\",\n    \"gramophone\",\n    \"grapes\",\n    \"grate-droplet\",\n    \"grate\",\n    \"greater-than-equal\",\n    \"greater-than\",\n    \"grid-2-plus\",\n    \"grid-2\",\n    \"grid-4\",\n    \"grid-5\",\n    \"grid-dividers\",\n    \"grid-horizontal\",\n    \"grid-round-2-plus\",\n    \"grid-round-2\",\n    \"grid-round-4\",\n    \"grid-round-5\",\n    \"grid-round\",\n    \"grid\",\n    \"grill-fire\",\n    \"grill-hot\",\n    \"grill\",\n    \"grip-dots-vertical\",\n    \"grip-dots\",\n    \"grip-lines-vertical\",\n    \"grip-lines\",\n    \"grip-vertical\",\n    \"grip\",\n    \"group-arrows-rotate\",\n    \"guarani-sign\",\n    \"guitar-electric\",\n    \"guitar\",\n    \"guitars\",\n    \"gun-slash\",\n    \"gun-squirt\",\n    \"gun\",\n    \"h\",\n    \"h1\",\n    \"h2\",\n    \"h3\",\n    \"h4\",\n    \"h5\",\n    \"h6\",\n    \"hammer-brush\",\n    \"hammer-crash\",\n    \"hammer-war\",\n    \"hammer\",\n    \"hamsa\",\n    \"hand-back-fist\",\n    \"hand-back-point-down\",\n    \"hand-back-point-left\",\n    \"hand-back-point-ribbon\",\n    \"hand-back-point-right\",\n    \"hand-back-point-up\",\n    \"hand-dots\",\n    \"hand-fingers-crossed\",\n    \"hand-fist\",\n    \"hand-heart\",\n    \"hand-holding-box\",\n    \"hand-holding-circle-dollar\",\n    \"hand-holding-dollar\",\n    \"hand-holding-droplet\",\n    \"hand-holding-hand\",\n    \"hand-holding-heart\",\n    \"hand-holding-magic\",\n    \"hand-holding-medical\",\n    \"hand-holding-seedling\",\n    \"hand-holding-skull\",\n    \"hand-holding\",\n    \"hand-horns\",\n    \"hand-lizard\",\n    \"hand-love\",\n    \"hand-middle-finger\",\n    \"hand-peace\",\n    \"hand-point-down\",\n    \"hand-point-left\",\n    \"hand-point-ribbon\",\n    \"hand-point-right\",\n    \"hand-point-up\",\n    \"hand-pointer\",\n    \"hand-scissors\",\n    \"hand-sparkles\",\n    \"hand-spock\",\n    \"hand-wave\",\n    \"hand\",\n    \"handcuffs\",\n    \"hands-asl-interpreting\",\n    \"hands-bound\",\n    \"hands-bubbles\",\n    \"hands-clapping\",\n    \"hands-holding-child\",\n    \"hands-holding-circle\",\n    \"hands-holding-diamond\",\n    \"hands-holding-dollar\",\n    \"hands-holding-heart\",\n    \"hands-holding\",\n    \"hands-praying\",\n    \"hands\",\n    \"handshake-angle\",\n    \"handshake-simple-slash\",\n    \"handshake-simple\",\n    \"handshake-slash\",\n    \"handshake\",\n    \"hanukiah\",\n    \"hard-drive\",\n    \"hashtag-lock\",\n    \"hashtag\",\n    \"hat-beach\",\n    \"hat-chef\",\n    \"hat-cowboy-side\",\n    \"hat-cowboy\",\n    \"hat-santa\",\n    \"hat-winter\",\n    \"hat-witch\",\n    \"hat-wizard\",\n    \"head-side-brain\",\n    \"head-side-cough-slash\",\n    \"head-side-cough\",\n    \"head-side-gear\",\n    \"head-side-goggles\",\n    \"head-side-headphones\",\n    \"head-side-heart\",\n    \"head-side-mask\",\n    \"head-side-medical\",\n    \"head-side-virus\",\n    \"head-side\",\n    \"heading\",\n    \"headphones-simple\",\n    \"headphones\",\n    \"headset\",\n    \"heart-circle-bolt\",\n    \"heart-circle-check\",\n    \"heart-circle-exclamation\",\n    \"heart-circle-minus\",\n    \"heart-circle-plus\",\n    \"heart-circle-xmark\",\n    \"heart-crack\",\n    \"heart-half-stroke\",\n    \"heart-half\",\n    \"heart-pulse\",\n    \"heart\",\n    \"heat\",\n    \"helicopter-symbol\",\n    \"helicopter\",\n    \"helmet-battle\",\n    \"helmet-safety\",\n    \"helmet-un\",\n    \"hexagon-check\",\n    \"hexagon-divide\",\n    \"hexagon-exclamation\",\n    \"hexagon-image\",\n    \"hexagon-minus\",\n    \"hexagon-nodes-bolt\",\n    \"hexagon-nodes\",\n    \"hexagon-plus\",\n    \"hexagon-vertical-nft-slanted\",\n    \"hexagon-vertical-nft\",\n    \"hexagon-xmark\",\n    \"hexagon\",\n    \"high-definition\",\n    \"highlighter-line\",\n    \"highlighter\",\n    \"hill-avalanche\",\n    \"hill-rockslide\",\n    \"hippo\",\n    \"hockey-mask\",\n    \"hockey-puck\",\n    \"hockey-stick-puck\",\n    \"hockey-sticks\",\n    \"holly-berry\",\n    \"honey-pot\",\n    \"hood-cloak\",\n    \"horizontal-rule\",\n    \"horse-head\",\n    \"horse-saddle\",\n    \"horse\",\n    \"hose-reel\",\n    \"hose\",\n    \"hospital-user\",\n    \"hospital\",\n    \"hospitals\",\n    \"hot-tub-person\",\n    \"hotdog\",\n    \"hotel\",\n    \"hourglass-clock\",\n    \"hourglass-end\",\n    \"hourglass-half\",\n    \"hourglass-start\",\n    \"hourglass\",\n    \"house-blank\",\n    \"house-building\",\n    \"house-chimney-blank\",\n    \"house-chimney-crack\",\n    \"house-chimney-heart\",\n    \"house-chimney-medical\",\n    \"house-chimney-user\",\n    \"house-chimney-window\",\n    \"house-chimney\",\n    \"house-circle-check\",\n    \"house-circle-exclamation\",\n    \"house-circle-xmark\",\n    \"house-crack\",\n    \"house-day\",\n    \"house-fire\",\n    \"house-flag\",\n    \"house-flood-water-circle-arrow-right\",\n    \"house-flood-water\",\n    \"house-heart\",\n    \"house-laptop\",\n    \"house-lock\",\n    \"house-medical-circle-check\",\n    \"house-medical-circle-exclamation\",\n    \"house-medical-circle-xmark\",\n    \"house-medical-flag\",\n    \"house-medical\",\n    \"house-night\",\n    \"house-person-leave\",\n    \"house-person-return\",\n    \"house-signal\",\n    \"house-tree\",\n    \"house-tsunami\",\n    \"house-turret\",\n    \"house-user\",\n    \"house-water\",\n    \"house-window\",\n    \"house\",\n    \"hryvnia-sign\",\n    \"hundred-points\",\n    \"hurricane\",\n    \"hydra\",\n    \"hyphen\",\n    \"i-cursor\",\n    \"i\",\n    \"ice-cream\",\n    \"ice-skate\",\n    \"icicles\",\n    \"icons\",\n    \"id-badge\",\n    \"id-card-clip\",\n    \"id-card\",\n    \"igloo\",\n    \"image-landscape\",\n    \"image-polaroid-user\",\n    \"image-polaroid\",\n    \"image-portrait\",\n    \"image-slash\",\n    \"image-user\",\n    \"image\",\n    \"images-user\",\n    \"images\",\n    \"inbox-full\",\n    \"inbox-in\",\n    \"inbox-out\",\n    \"inbox\",\n    \"inboxes\",\n    \"indent\",\n    \"indian-rupee-sign\",\n    \"industry-windows\",\n    \"industry\",\n    \"infinity\",\n    \"info\",\n    \"inhaler\",\n    \"input-numeric\",\n    \"input-pipe\",\n    \"input-text\",\n    \"integral\",\n    \"interrobang\",\n    \"intersection\",\n    \"island-tropical\",\n    \"italic\",\n    \"j\",\n    \"jack-o-lantern\",\n    \"jar-wheat\",\n    \"jar\",\n    \"jedi\",\n    \"jet-fighter-up\",\n    \"jet-fighter\",\n    \"joint\",\n    \"joystick\",\n    \"jug-bottle\",\n    \"jug-detergent\",\n    \"jug\",\n    \"k\",\n    \"kaaba\",\n    \"kazoo\",\n    \"kerning\",\n    \"key-skeleton-left-right\",\n    \"key-skeleton\",\n    \"key\",\n    \"keyboard-brightness-low\",\n    \"keyboard-brightness\",\n    \"keyboard-down\",\n    \"keyboard-left\",\n    \"keyboard\",\n    \"keynote\",\n    \"khanda\",\n    \"kidneys\",\n    \"kip-sign\",\n    \"kit-medical\",\n    \"kitchen-set\",\n    \"kite\",\n    \"kiwi-bird\",\n    \"kiwi-fruit\",\n    \"knife-kitchen\",\n    \"knife\",\n    \"l\",\n    \"lacrosse-stick-ball\",\n    \"lacrosse-stick\",\n    \"lambda\",\n    \"lamp-desk\",\n    \"lamp-floor\",\n    \"lamp-street\",\n    \"lamp\",\n    \"land-mine-on\",\n    \"landmark-dome\",\n    \"landmark-flag\",\n    \"landmark-magnifying-glass\",\n    \"landmark\",\n    \"language\",\n    \"laptop-arrow-down\",\n    \"laptop-binary\",\n    \"laptop-code\",\n    \"laptop-file\",\n    \"laptop-medical\",\n    \"laptop-mobile\",\n    \"laptop-slash\",\n    \"laptop\",\n    \"lari-sign\",\n    \"lasso-sparkles\",\n    \"lasso\",\n    \"layer-group\",\n    \"layer-minus\",\n    \"layer-plus\",\n    \"leaf-heart\",\n    \"leaf-maple\",\n    \"leaf-oak\",\n    \"leaf\",\n    \"leafy-green\",\n    \"left-from-bracket\",\n    \"left-from-line\",\n    \"left-long-to-line\",\n    \"left-long\",\n    \"left-right\",\n    \"left-to-bracket\",\n    \"left-to-line\",\n    \"left\",\n    \"lemon\",\n    \"less-than-equal\",\n    \"less-than\",\n    \"life-ring\",\n    \"light-ceiling\",\n    \"light-emergency-on\",\n    \"light-emergency\",\n    \"light-switch-off\",\n    \"light-switch-on\",\n    \"light-switch\",\n    \"lightbulb-cfl-on\",\n    \"lightbulb-cfl\",\n    \"lightbulb-dollar\",\n    \"lightbulb-exclamation-on\",\n    \"lightbulb-exclamation\",\n    \"lightbulb-gear\",\n    \"lightbulb-message\",\n    \"lightbulb-on\",\n    \"lightbulb-slash\",\n    \"lightbulb\",\n    \"lighthouse\",\n    \"lights-holiday\",\n    \"line-columns\",\n    \"line-height\",\n    \"lines-leaning\",\n    \"link-horizontal-slash\",\n    \"link-horizontal\",\n    \"link-simple-slash\",\n    \"link-simple\",\n    \"link-slash\",\n    \"link\",\n    \"lips\",\n    \"lira-sign\",\n    \"list-check\",\n    \"list-dropdown\",\n    \"list-music\",\n    \"list-ol\",\n    \"list-radio\",\n    \"list-timeline\",\n    \"list-tree\",\n    \"list-ul\",\n    \"list\",\n    \"litecoin-sign\",\n    \"loader\",\n    \"lobster\",\n    \"location-arrow-up\",\n    \"location-arrow\",\n    \"location-check\",\n    \"location-crosshairs-slash\",\n    \"location-crosshairs\",\n    \"location-dot-slash\",\n    \"location-dot\",\n    \"location-exclamation\",\n    \"location-minus\",\n    \"location-pen\",\n    \"location-pin-lock\",\n    \"location-pin-slash\",\n    \"location-pin\",\n    \"location-plus\",\n    \"location-question\",\n    \"location-smile\",\n    \"location-xmark\",\n    \"lock-a\",\n    \"lock-hashtag\",\n    \"lock-keyhole-open\",\n    \"lock-keyhole\",\n    \"lock-open\",\n    \"lock\",\n    \"locust\",\n    \"lollipop\",\n    \"loveseat\",\n    \"luchador-mask\",\n    \"lungs-virus\",\n    \"lungs\",\n    \"m\",\n    \"mace\",\n    \"magnet\",\n    \"magnifying-glass-arrow-right\",\n    \"magnifying-glass-arrows-rotate\",\n    \"magnifying-glass-chart\",\n    \"magnifying-glass-dollar\",\n    \"magnifying-glass-location\",\n    \"magnifying-glass-minus\",\n    \"magnifying-glass-music\",\n    \"magnifying-glass-play\",\n    \"magnifying-glass-plus\",\n    \"magnifying-glass-waveform\",\n    \"magnifying-glass\",\n    \"mailbox-flag-up\",\n    \"mailbox\",\n    \"manat-sign\",\n    \"mandolin\",\n    \"mango\",\n    \"manhole\",\n    \"map-location-dot\",\n    \"map-location\",\n    \"map-pin\",\n    \"map\",\n    \"marker\",\n    \"mars-and-venus-burst\",\n    \"mars-and-venus\",\n    \"mars-double\",\n    \"mars-stroke-right\",\n    \"mars-stroke-up\",\n    \"mars-stroke\",\n    \"mars\",\n    \"martini-glass-citrus\",\n    \"martini-glass-empty\",\n    \"martini-glass\",\n    \"mask-face\",\n    \"mask-snorkel\",\n    \"mask-ventilator\",\n    \"mask\",\n    \"masks-theater\",\n    \"mattress-pillow\",\n    \"maximize\",\n    \"meat\",\n    \"medal\",\n    \"megaphone\",\n    \"melon-slice\",\n    \"melon\",\n    \"memo-circle-check\",\n    \"memo-circle-info\",\n    \"memo-pad\",\n    \"memo\",\n    \"memory\",\n    \"menorah\",\n    \"mercury\",\n    \"merge\",\n    \"message-arrow-down\",\n    \"message-arrow-up-right\",\n    \"message-arrow-up\",\n    \"message-bot\",\n    \"message-captions\",\n    \"message-check\",\n    \"message-code\",\n    \"message-dollar\",\n    \"message-dots\",\n    \"message-exclamation\",\n    \"message-heart\",\n    \"message-image\",\n    \"message-lines\",\n    \"message-medical\",\n    \"message-middle-top\",\n    \"message-middle\",\n    \"message-minus\",\n    \"message-music\",\n    \"message-pen\",\n    \"message-plus\",\n    \"message-question\",\n    \"message-quote\",\n    \"message-slash\",\n    \"message-smile\",\n    \"message-sms\",\n    \"message-text\",\n    \"message-xmark\",\n    \"message\",\n    \"messages-dollar\",\n    \"messages-question\",\n    \"messages\",\n    \"meteor\",\n    \"meter-bolt\",\n    \"meter-droplet\",\n    \"meter-fire\",\n    \"meter\",\n    \"microchip-ai\",\n    \"microchip\",\n    \"microphone-lines-slash\",\n    \"microphone-lines\",\n    \"microphone-slash\",\n    \"microphone-stand\",\n    \"microphone\",\n    \"microscope\",\n    \"microwave\",\n    \"mill-sign\",\n    \"minimize\",\n    \"minus\",\n    \"mistletoe\",\n    \"mitten\",\n    \"mobile-button\",\n    \"mobile-notch\",\n    \"mobile-retro\",\n    \"mobile-screen-button\",\n    \"mobile-screen\",\n    \"mobile-signal-out\",\n    \"mobile-signal\",\n    \"mobile\",\n    \"money-bill-1-wave\",\n    \"money-bill-1\",\n    \"money-bill-simple-wave\",\n    \"money-bill-simple\",\n    \"money-bill-transfer\",\n    \"money-bill-trend-up\",\n    \"money-bill-wave\",\n    \"money-bill-wheat\",\n    \"money-bill\",\n    \"money-bills-simple\",\n    \"money-bills\",\n    \"money-check-dollar-pen\",\n    \"money-check-dollar\",\n    \"money-check-pen\",\n    \"money-check\",\n    \"money-from-bracket\",\n    \"money-simple-from-bracket\",\n    \"monitor-waveform\",\n    \"monkey\",\n    \"monument\",\n    \"moon-cloud\",\n    \"moon-over-sun\",\n    \"moon-stars\",\n    \"moon\",\n    \"moped\",\n    \"mortar-pestle\",\n    \"mosque\",\n    \"mosquito-net\",\n    \"mosquito\",\n    \"motorcycle\",\n    \"mound\",\n    \"mountain-city\",\n    \"mountain-sun\",\n    \"mountain\",\n    \"mountains\",\n    \"mouse-field\",\n    \"mp3-player\",\n    \"mug-hot\",\n    \"mug-marshmallows\",\n    \"mug-saucer\",\n    \"mug-tea-saucer\",\n    \"mug-tea\",\n    \"mug\",\n    \"mushroom\",\n    \"music-magnifying-glass\",\n    \"music-note-slash\",\n    \"music-note\",\n    \"music-slash\",\n    \"music\",\n    \"mustache\",\n    \"n\",\n    \"naira-sign\",\n    \"narwhal\",\n    \"nesting-dolls\",\n    \"network-wired\",\n    \"neuter\",\n    \"newspaper\",\n    \"nfc-lock\",\n    \"nfc-magnifying-glass\",\n    \"nfc-pen\",\n    \"nfc-signal\",\n    \"nfc-slash\",\n    \"nfc-symbol\",\n    \"nfc-trash\",\n    \"nfc\",\n    \"nose\",\n    \"not-equal\",\n    \"notdef\",\n    \"note-medical\",\n    \"note-sticky\",\n    \"note\",\n    \"notebook\",\n    \"notes-medical\",\n    \"notes\",\n    \"o\",\n    \"object-exclude\",\n    \"object-group\",\n    \"object-intersect\",\n    \"object-subtract\",\n    \"object-ungroup\",\n    \"object-union\",\n    \"objects-align-bottom\",\n    \"objects-align-center-horizontal\",\n    \"objects-align-center-vertical\",\n    \"objects-align-left\",\n    \"objects-align-right\",\n    \"objects-align-top\",\n    \"objects-column\",\n    \"octagon-check\",\n    \"octagon-divide\",\n    \"octagon-exclamation\",\n    \"octagon-minus\",\n    \"octagon-plus\",\n    \"octagon-xmark\",\n    \"octagon\",\n    \"octopus\",\n    \"oil-can-drip\",\n    \"oil-can\",\n    \"oil-temperature\",\n    \"oil-well\",\n    \"olive-branch\",\n    \"olive\",\n    \"om\",\n    \"omega\",\n    \"onion\",\n    \"option\",\n    \"ornament\",\n    \"otter\",\n    \"outdent\",\n    \"outlet\",\n    \"oven\",\n    \"overline\",\n    \"p\",\n    \"page-caret-down\",\n    \"page-caret-up\",\n    \"page\",\n    \"pager\",\n    \"paint-roller\",\n    \"paintbrush-fine\",\n    \"paintbrush-pencil\",\n    \"paintbrush\",\n    \"palette\",\n    \"pallet-box\",\n    \"pallet-boxes\",\n    \"pallet\",\n    \"pan-food\",\n    \"pan-frying\",\n    \"pancakes\",\n    \"panel-ews\",\n    \"panel-fire\",\n    \"panorama\",\n    \"paper-plane-top\",\n    \"paper-plane\",\n    \"paperclip-vertical\",\n    \"paperclip\",\n    \"parachute-box\",\n    \"paragraph-left\",\n    \"paragraph\",\n    \"party-bell\",\n    \"party-horn\",\n    \"passport\",\n    \"paste\",\n    \"pause\",\n    \"paw-claws\",\n    \"paw-simple\",\n    \"paw\",\n    \"peace\",\n    \"peach\",\n    \"peanut\",\n    \"peanuts\",\n    \"peapod\",\n    \"pear\",\n    \"pedestal\",\n    \"pegasus\",\n    \"pen-circle\",\n    \"pen-clip-slash\",\n    \"pen-clip\",\n    \"pen-fancy-slash\",\n    \"pen-fancy\",\n    \"pen-field\",\n    \"pen-line\",\n    \"pen-nib-slash\",\n    \"pen-nib\",\n    \"pen-paintbrush\",\n    \"pen-ruler\",\n    \"pen-slash\",\n    \"pen-swirl\",\n    \"pen-to-square\",\n    \"pen\",\n    \"pencil-mechanical\",\n    \"pencil-slash\",\n    \"pencil\",\n    \"people-arrows\",\n    \"people-carry-box\",\n    \"people-dress-simple\",\n    \"people-dress\",\n    \"people-group\",\n    \"people-line\",\n    \"people-pants-simple\",\n    \"people-pants\",\n    \"people-pulling\",\n    \"people-robbery\",\n    \"people-roof\",\n    \"people-simple\",\n    \"people\",\n    \"pepper-hot\",\n    \"pepper\",\n    \"percent\",\n    \"period\",\n    \"person-arrow-down-to-line\",\n    \"person-arrow-up-from-line\",\n    \"person-biking-mountain\",\n    \"person-biking\",\n    \"person-booth\",\n    \"person-breastfeeding\",\n    \"person-burst\",\n    \"person-cane\",\n    \"person-carry-box\",\n    \"person-chalkboard\",\n    \"person-circle-check\",\n    \"person-circle-exclamation\",\n    \"person-circle-minus\",\n    \"person-circle-plus\",\n    \"person-circle-question\",\n    \"person-circle-xmark\",\n    \"person-digging\",\n    \"person-dolly-empty\",\n    \"person-dolly\",\n    \"person-dots-from-line\",\n    \"person-dress-burst\",\n    \"person-dress-fairy\",\n    \"person-dress-simple\",\n    \"person-dress\",\n    \"person-drowning\",\n    \"person-fairy\",\n    \"person-falling-burst\",\n    \"person-falling\",\n    \"person-from-portal\",\n    \"person-half-dress\",\n    \"person-harassing\",\n    \"person-hiking\",\n    \"person-military-pointing\",\n    \"person-military-rifle\",\n    \"person-military-to-person\",\n    \"person-pinball\",\n    \"person-praying\",\n    \"person-pregnant\",\n    \"person-rays\",\n    \"person-rifle\",\n    \"person-running-fast\",\n    \"person-running\",\n    \"person-seat-reclined\",\n    \"person-seat\",\n    \"person-shelter\",\n    \"person-sign\",\n    \"person-simple\",\n    \"person-skating\",\n    \"person-ski-jumping\",\n    \"person-ski-lift\",\n    \"person-skiing-nordic\",\n    \"person-skiing\",\n    \"person-sledding\",\n    \"person-snowboarding\",\n    \"person-snowmobiling\",\n    \"person-swimming\",\n    \"person-through-window\",\n    \"person-to-door\",\n    \"person-to-portal\",\n    \"person-walking-arrow-loop-left\",\n    \"person-walking-arrow-right\",\n    \"person-walking-dashed-line-arrow-right\",\n    \"person-walking-luggage\",\n    \"person-walking-with-cane\",\n    \"person-walking\",\n    \"person\",\n    \"peseta-sign\",\n    \"peso-sign\",\n    \"phone-arrow-down-left\",\n    \"phone-arrow-right\",\n    \"phone-arrow-up-right\",\n    \"phone-flip\",\n    \"phone-hangup\",\n    \"phone-intercom\",\n    \"phone-missed\",\n    \"phone-office\",\n    \"phone-plus\",\n    \"phone-rotary\",\n    \"phone-slash\",\n    \"phone-volume\",\n    \"phone-xmark\",\n    \"phone\",\n    \"photo-film-music\",\n    \"photo-film\",\n    \"pi\",\n    \"piano-keyboard\",\n    \"piano\",\n    \"pickaxe\",\n    \"pickleball\",\n    \"pie\",\n    \"pig\",\n    \"piggy-bank\",\n    \"pills\",\n    \"pinata\",\n    \"pinball\",\n    \"pineapple\",\n    \"pipe-circle-check\",\n    \"pipe-collar\",\n    \"pipe-section\",\n    \"pipe-smoking\",\n    \"pipe-valve\",\n    \"pipe\",\n    \"pizza-slice\",\n    \"pizza\",\n    \"place-of-worship\",\n    \"plane-arrival\",\n    \"plane-circle-check\",\n    \"plane-circle-exclamation\",\n    \"plane-circle-xmark\",\n    \"plane-departure\",\n    \"plane-engines\",\n    \"plane-lock\",\n    \"plane-prop\",\n    \"plane-slash\",\n    \"plane-tail\",\n    \"plane-up-slash\",\n    \"plane-up\",\n    \"plane\",\n    \"planet-moon\",\n    \"planet-ringed\",\n    \"plant-wilt\",\n    \"plate-utensils\",\n    \"plate-wheat\",\n    \"play-pause\",\n    \"play\",\n    \"plug-circle-bolt\",\n    \"plug-circle-check\",\n    \"plug-circle-exclamation\",\n    \"plug-circle-minus\",\n    \"plug-circle-plus\",\n    \"plug-circle-xmark\",\n    \"plug\",\n    \"plus-large\",\n    \"plus-minus\",\n    \"plus\",\n    \"podcast\",\n    \"podium-star\",\n    \"podium\",\n    \"police-box\",\n    \"poll-people\",\n    \"pompebled\",\n    \"poo-storm\",\n    \"poo\",\n    \"pool-8-ball\",\n    \"poop\",\n    \"popcorn\",\n    \"popsicle\",\n    \"pot-food\",\n    \"potato\",\n    \"power-off\",\n    \"prescription-bottle-medical\",\n    \"prescription-bottle-pill\",\n    \"prescription-bottle\",\n    \"prescription\",\n    \"presentation-screen\",\n    \"pretzel\",\n    \"print-magnifying-glass\",\n    \"print-slash\",\n    \"print\",\n    \"projector\",\n    \"pump-medical\",\n    \"pump-soap\",\n    \"pump\",\n    \"pumpkin\",\n    \"puzzle-piece-simple\",\n    \"puzzle-piece\",\n    \"puzzle\",\n    \"q\",\n    \"qrcode\",\n    \"question\",\n    \"quote-left\",\n    \"quote-right\",\n    \"quotes\",\n    \"r\",\n    \"rabbit-running\",\n    \"rabbit\",\n    \"raccoon\",\n    \"racquet\",\n    \"radar\",\n    \"radiation\",\n    \"radio-tuner\",\n    \"radio\",\n    \"rainbow\",\n    \"raindrops\",\n    \"ram\",\n    \"ramp-loading\",\n    \"ranking-star\",\n    \"raygun\",\n    \"receipt\",\n    \"record-vinyl\",\n    \"rectangle-ad\",\n    \"rectangle-barcode\",\n    \"rectangle-code\",\n    \"rectangle-history-circle-plus\",\n    \"rectangle-history-circle-user\",\n    \"rectangle-history\",\n    \"rectangle-list\",\n    \"rectangle-pro\",\n    \"rectangle-terminal\",\n    \"rectangle-vertical-history\",\n    \"rectangle-vertical\",\n    \"rectangle-wide\",\n    \"rectangle-xmark\",\n    \"rectangle\",\n    \"rectangles-mixed\",\n    \"recycle\",\n    \"reel\",\n    \"reflect-both\",\n    \"reflect-horizontal\",\n    \"reflect-vertical\",\n    \"refrigerator\",\n    \"registered\",\n    \"repeat-1\",\n    \"repeat\",\n    \"reply-all\",\n    \"reply-clock\",\n    \"reply\",\n    \"republican\",\n    \"restroom-simple\",\n    \"restroom\",\n    \"retweet\",\n    \"rhombus\",\n    \"ribbon\",\n    \"right-from-bracket\",\n    \"right-from-line\",\n    \"right-left-large\",\n    \"right-left\",\n    \"right-long-to-line\",\n    \"right-long\",\n    \"right-to-bracket\",\n    \"right-to-line\",\n    \"right\",\n    \"ring-diamond\",\n    \"ring\",\n    \"rings-wedding\",\n    \"road-barrier\",\n    \"road-bridge\",\n    \"road-circle-check\",\n    \"road-circle-exclamation\",\n    \"road-circle-xmark\",\n    \"road-lock\",\n    \"road-spikes\",\n    \"road\",\n    \"robot-astromech\",\n    \"robot\",\n    \"rocket-launch\",\n    \"rocket\",\n    \"roller-coaster\",\n    \"rotate-exclamation\",\n    \"rotate-left\",\n    \"rotate-reverse\",\n    \"rotate-right\",\n    \"rotate\",\n    \"route-highway\",\n    \"route-interstate\",\n    \"route\",\n    \"router\",\n    \"rss\",\n    \"ruble-sign\",\n    \"rug\",\n    \"rugby-ball\",\n    \"ruler-combined\",\n    \"ruler-horizontal\",\n    \"ruler-triangle\",\n    \"ruler-vertical\",\n    \"ruler\",\n    \"rupee-sign\",\n    \"rupiah-sign\",\n    \"rv\",\n    \"s\",\n    \"sack-dollar\",\n    \"sack-xmark\",\n    \"sack\",\n    \"sailboat\",\n    \"salad\",\n    \"salt-shaker\",\n    \"sandwich\",\n    \"satellite-dish\",\n    \"satellite\",\n    \"sausage\",\n    \"saxophone-fire\",\n    \"saxophone\",\n    \"scale-balanced\",\n    \"scale-unbalanced-flip\",\n    \"scale-unbalanced\",\n    \"scalpel-line-dashed\",\n    \"scalpel\",\n    \"scanner-gun\",\n    \"scanner-image\",\n    \"scanner-keyboard\",\n    \"scanner-touchscreen\",\n    \"scarecrow\",\n    \"scarf\",\n    \"school-circle-check\",\n    \"school-circle-exclamation\",\n    \"school-circle-xmark\",\n    \"school-flag\",\n    \"school-lock\",\n    \"school\",\n    \"scissors\",\n    \"screen-users\",\n    \"screencast\",\n    \"screwdriver-wrench\",\n    \"screwdriver\",\n    \"scribble\",\n    \"scroll-old\",\n    \"scroll-torah\",\n    \"scroll\",\n    \"scrubber\",\n    \"scythe\",\n    \"sd-card\",\n    \"sd-cards\",\n    \"seal-exclamation\",\n    \"seal-question\",\n    \"seal\",\n    \"seat-airline\",\n    \"section\",\n    \"seedling\",\n    \"semicolon\",\n    \"send-back\",\n    \"send-backward\",\n    \"sensor-cloud\",\n    \"sensor-fire\",\n    \"sensor-on\",\n    \"sensor-triangle-exclamation\",\n    \"sensor\",\n    \"server\",\n    \"shapes\",\n    \"share-all\",\n    \"share-from-square\",\n    \"share-nodes\",\n    \"share\",\n    \"sheep\",\n    \"sheet-plastic\",\n    \"shekel-sign\",\n    \"shelves-empty\",\n    \"shelves\",\n    \"shield-cat\",\n    \"shield-check\",\n    \"shield-cross\",\n    \"shield-dog\",\n    \"shield-exclamation\",\n    \"shield-halved\",\n    \"shield-heart\",\n    \"shield-keyhole\",\n    \"shield-minus\",\n    \"shield-plus\",\n    \"shield-quartered\",\n    \"shield-slash\",\n    \"shield-virus\",\n    \"shield-xmark\",\n    \"shield\",\n    \"ship\",\n    \"shirt-long-sleeve\",\n    \"shirt-running\",\n    \"shirt-tank-top\",\n    \"shirt\",\n    \"shish-kebab\",\n    \"shoe-prints\",\n    \"shop-lock\",\n    \"shop-slash\",\n    \"shop\",\n    \"shovel-snow\",\n    \"shovel\",\n    \"shower-down\",\n    \"shower\",\n    \"shredder\",\n    \"shrimp\",\n    \"shuffle\",\n    \"shutters\",\n    \"shuttle-space\",\n    \"shuttlecock\",\n    \"sickle\",\n    \"sidebar-flip\",\n    \"sidebar\",\n    \"sigma\",\n    \"sign-hanging\",\n    \"sign-post\",\n    \"sign-posts-wrench\",\n    \"sign-posts\",\n    \"signal-bars-fair\",\n    \"signal-bars-good\",\n    \"signal-bars-slash\",\n    \"signal-bars-weak\",\n    \"signal-bars\",\n    \"signal-fair\",\n    \"signal-good\",\n    \"signal-slash\",\n    \"signal-stream-slash\",\n    \"signal-stream\",\n    \"signal-strong\",\n    \"signal-weak\",\n    \"signal\",\n    \"signature-lock\",\n    \"signature-slash\",\n    \"signature\",\n    \"signs-post\",\n    \"sim-card\",\n    \"sim-cards\",\n    \"sink\",\n    \"siren-on\",\n    \"siren\",\n    \"sitemap\",\n    \"skeleton-ribs\",\n    \"skeleton\",\n    \"ski-boot-ski\",\n    \"ski-boot\",\n    \"skull-cow\",\n    \"skull-crossbones\",\n    \"skull\",\n    \"slash-back\",\n    \"slash-forward\",\n    \"slash\",\n    \"sleigh\",\n    \"slider\",\n    \"sliders-simple\",\n    \"sliders-up\",\n    \"sliders\",\n    \"slot-machine\",\n    \"smog\",\n    \"smoke\",\n    \"smoking\",\n    \"snake\",\n    \"snooze\",\n    \"snow-blowing\",\n    \"snowflake-droplets\",\n    \"snowflake\",\n    \"snowflakes\",\n    \"snowman-head\",\n    \"snowman\",\n    \"snowplow\",\n    \"soap\",\n    \"socks\",\n    \"soft-serve\",\n    \"solar-panel\",\n    \"solar-system\",\n    \"sort-down\",\n    \"sort-up\",\n    \"sort\",\n    \"spa\",\n    \"space-station-moon-construction\",\n    \"space-station-moon\",\n    \"spade\",\n    \"spaghetti-monster-flying\",\n    \"sparkle\",\n    \"sparkles\",\n    \"speaker\",\n    \"speakers\",\n    \"spell-check\",\n    \"spider-black-widow\",\n    \"spider-web\",\n    \"spider\",\n    \"spinner-scale\",\n    \"spinner-third\",\n    \"spinner\",\n    \"split\",\n    \"splotch\",\n    \"spoon\",\n    \"sportsball\",\n    \"spray-can-sparkles\",\n    \"spray-can\",\n    \"sprinkler-ceiling\",\n    \"sprinkler\",\n    \"square-0\",\n    \"square-1\",\n    \"square-2\",\n    \"square-3\",\n    \"square-4\",\n    \"square-5\",\n    \"square-6\",\n    \"square-7\",\n    \"square-8\",\n    \"square-9\",\n    \"square-a-lock\",\n    \"square-a\",\n    \"square-ampersand\",\n    \"square-arrow-down-left\",\n    \"square-arrow-down-right\",\n    \"square-arrow-down\",\n    \"square-arrow-left\",\n    \"square-arrow-right\",\n    \"square-arrow-up-left\",\n    \"square-arrow-up-right\",\n    \"square-arrow-up\",\n    \"square-b\",\n    \"square-binary\",\n    \"square-bolt\",\n    \"square-c\",\n    \"square-caret-down\",\n    \"square-caret-left\",\n    \"square-caret-right\",\n    \"square-caret-up\",\n    \"square-check\",\n    \"square-chevron-down\",\n    \"square-chevron-left\",\n    \"square-chevron-right\",\n    \"square-chevron-up\",\n    \"square-code\",\n    \"square-d\",\n    \"square-dashed-circle-plus\",\n    \"square-dashed\",\n    \"square-divide\",\n    \"square-dollar\",\n    \"square-down-left\",\n    \"square-down-right\",\n    \"square-down\",\n    \"square-e\",\n    \"square-ellipsis-vertical\",\n    \"square-ellipsis\",\n    \"square-envelope\",\n    \"square-exclamation\",\n    \"square-f\",\n    \"square-fragile\",\n    \"square-full\",\n    \"square-g\",\n    \"square-h\",\n    \"square-heart\",\n    \"square-i\",\n    \"square-info\",\n    \"square-j\",\n    \"square-k\",\n    \"square-kanban\",\n    \"square-l\",\n    \"square-left\",\n    \"square-list\",\n    \"square-m\",\n    \"square-minus\",\n    \"square-n\",\n    \"square-nfi\",\n    \"square-o\",\n    \"square-p\",\n    \"square-parking-slash\",\n    \"square-parking\",\n    \"square-pen\",\n    \"square-person-confined\",\n    \"square-phone-flip\",\n    \"square-phone-hangup\",\n    \"square-phone\",\n    \"square-plus\",\n    \"square-poll-horizontal\",\n    \"square-poll-vertical\",\n    \"square-q\",\n    \"square-quarters\",\n    \"square-question\",\n    \"square-quote\",\n    \"square-r\",\n    \"square-right\",\n    \"square-ring\",\n    \"square-root-variable\",\n    \"square-root\",\n    \"square-rss\",\n    \"square-s\",\n    \"square-share-nodes\",\n    \"square-sliders-vertical\",\n    \"square-sliders\",\n    \"square-small\",\n    \"square-star\",\n    \"square-t\",\n    \"square-terminal\",\n    \"square-this-way-up\",\n    \"square-u\",\n    \"square-up-left\",\n    \"square-up-right\",\n    \"square-up\",\n    \"square-user\",\n    \"square-v\",\n    \"square-virus\",\n    \"square-w\",\n    \"square-x\",\n    \"square-xmark\",\n    \"square-y\",\n    \"square-z\",\n    \"square\",\n    \"squid\",\n    \"squirrel\",\n    \"staff-snake\",\n    \"staff\",\n    \"stairs\",\n    \"stamp\",\n    \"standard-definition\",\n    \"stapler\",\n    \"star-and-crescent\",\n    \"star-christmas\",\n    \"star-exclamation\",\n    \"star-half-stroke\",\n    \"star-half\",\n    \"star-of-david\",\n    \"star-of-life\",\n    \"star-sharp-half-stroke\",\n    \"star-sharp-half\",\n    \"star-sharp\",\n    \"star-shooting\",\n    \"star\",\n    \"starfighter-twin-ion-engine-advanced\",\n    \"starfighter-twin-ion-engine\",\n    \"starfighter\",\n    \"stars\",\n    \"starship-freighter\",\n    \"starship\",\n    \"steak\",\n    \"steering-wheel\",\n    \"sterling-sign\",\n    \"stethoscope\",\n    \"stocking\",\n    \"stomach\",\n    \"stop\",\n    \"stopwatch-20\",\n    \"stopwatch\",\n    \"store-lock\",\n    \"store-slash\",\n    \"store\",\n    \"strawberry\",\n    \"street-view\",\n    \"stretcher\",\n    \"strikethrough\",\n    \"stroopwafel\",\n    \"subscript\",\n    \"subtitles-slash\",\n    \"subtitles\",\n    \"suitcase-medical\",\n    \"suitcase-rolling\",\n    \"suitcase\",\n    \"sun-bright\",\n    \"sun-cloud\",\n    \"sun-dust\",\n    \"sun-haze\",\n    \"sun-plant-wilt\",\n    \"sun\",\n    \"sunglasses\",\n    \"sunrise\",\n    \"sunset\",\n    \"superscript\",\n    \"sushi-roll\",\n    \"sushi\",\n    \"swap-arrows\",\n    \"swap\",\n    \"swatchbook\",\n    \"sword-laser-alt\",\n    \"sword-laser\",\n    \"sword\",\n    \"swords-laser\",\n    \"swords\",\n    \"symbols\",\n    \"synagogue\",\n    \"syringe\",\n    \"t-rex\",\n    \"t\",\n    \"table-cells-column-lock\",\n    \"table-cells-column-unlock\",\n    \"table-cells-large\",\n    \"table-cells-lock\",\n    \"table-cells-row-lock\",\n    \"table-cells-row-unlock\",\n    \"table-cells-unlock\",\n    \"table-cells\",\n    \"table-columns\",\n    \"table-layout\",\n    \"table-list\",\n    \"table-picnic\",\n    \"table-pivot\",\n    \"table-rows\",\n    \"table-tennis-paddle-ball\",\n    \"table-tree\",\n    \"table\",\n    \"tablet-button\",\n    \"tablet-rugged\",\n    \"tablet-screen-button\",\n    \"tablet-screen\",\n    \"tablet\",\n    \"tablets\",\n    \"tachograph-digital\",\n    \"taco\",\n    \"tag\",\n    \"tags\",\n    \"tally-1\",\n    \"tally-2\",\n    \"tally-3\",\n    \"tally-4\",\n    \"tally\",\n    \"tamale\",\n    \"tank-water\",\n    \"tape\",\n    \"tarp-droplet\",\n    \"tarp\",\n    \"taxi-bus\",\n    \"taxi\",\n    \"teddy-bear\",\n    \"teeth-open\",\n    \"teeth\",\n    \"telescope\",\n    \"temperature-arrow-down\",\n    \"temperature-arrow-up\",\n    \"temperature-empty\",\n    \"temperature-full\",\n    \"temperature-half\",\n    \"temperature-high\",\n    \"temperature-list\",\n    \"temperature-low\",\n    \"temperature-quarter\",\n    \"temperature-snow\",\n    \"temperature-sun\",\n    \"temperature-three-quarters\",\n    \"tenge-sign\",\n    \"tennis-ball\",\n    \"tent-arrow-down-to-line\",\n    \"tent-arrow-left-right\",\n    \"tent-arrow-turn-left\",\n    \"tent-arrows-down\",\n    \"tent-double-peak\",\n    \"tent\",\n    \"tents\",\n    \"terminal\",\n    \"text-height\",\n    \"text-size\",\n    \"text-slash\",\n    \"text-width\",\n    \"text\",\n    \"thermometer\",\n    \"theta\",\n    \"thought-bubble\",\n    \"thumbs-down\",\n    \"thumbs-up\",\n    \"thumbtack-slash\",\n    \"thumbtack\",\n    \"tick\",\n    \"ticket-airline\",\n    \"ticket-perforated\",\n    \"ticket-simple\",\n    \"ticket\",\n    \"tickets-airline\",\n    \"tickets-perforated\",\n    \"tickets-simple\",\n    \"tickets\",\n    \"tilde\",\n    \"timeline-arrow\",\n    \"timeline\",\n    \"timer\",\n    \"tire-flat\",\n    \"tire-pressure-warning\",\n    \"tire-rugged\",\n    \"tire\",\n    \"toggle-large-off\",\n    \"toggle-large-on\",\n    \"toggle-off\",\n    \"toggle-on\",\n    \"toilet-paper-blank-under\",\n    \"toilet-paper-blank\",\n    \"toilet-paper-check\",\n    \"toilet-paper-slash\",\n    \"toilet-paper-under-slash\",\n    \"toilet-paper-under\",\n    \"toilet-paper-xmark\",\n    \"toilet-paper\",\n    \"toilet-portable\",\n    \"toilet\",\n    \"toilets-portable\",\n    \"tomato\",\n    \"tombstone-blank\",\n    \"tombstone\",\n    \"toolbox\",\n    \"tooth\",\n    \"toothbrush\",\n    \"torii-gate\",\n    \"tornado\",\n    \"tower-broadcast\",\n    \"tower-cell\",\n    \"tower-control\",\n    \"tower-observation\",\n    \"tractor\",\n    \"trademark\",\n    \"traffic-cone\",\n    \"traffic-light-go\",\n    \"traffic-light-slow\",\n    \"traffic-light-stop\",\n    \"traffic-light\",\n    \"trailer\",\n    \"train-subway-tunnel\",\n    \"train-subway\",\n    \"train-track\",\n    \"train-tram\",\n    \"train-tunnel\",\n    \"train\",\n    \"transformer-bolt\",\n    \"transgender\",\n    \"transporter-1\",\n    \"transporter-2\",\n    \"transporter-3\",\n    \"transporter-4\",\n    \"transporter-5\",\n    \"transporter-6\",\n    \"transporter-7\",\n    \"transporter-empty\",\n    \"transporter\",\n    \"trash-arrow-up\",\n    \"trash-can-arrow-up\",\n    \"trash-can-check\",\n    \"trash-can-clock\",\n    \"trash-can-list\",\n    \"trash-can-plus\",\n    \"trash-can-slash\",\n    \"trash-can-undo\",\n    \"trash-can-xmark\",\n    \"trash-can\",\n    \"trash-check\",\n    \"trash-clock\",\n    \"trash-list\",\n    \"trash-plus\",\n    \"trash-slash\",\n    \"trash-undo\",\n    \"trash-xmark\",\n    \"trash\",\n    \"treasure-chest\",\n    \"tree-christmas\",\n    \"tree-city\",\n    \"tree-deciduous\",\n    \"tree-decorated\",\n    \"tree-large\",\n    \"tree-palm\",\n    \"tree\",\n    \"trees\",\n    \"triangle-exclamation\",\n    \"triangle-instrument\",\n    \"triangle-person-digging\",\n    \"triangle\",\n    \"tricycle-adult\",\n    \"tricycle\",\n    \"trillium\",\n    \"trophy-star\",\n    \"trophy\",\n    \"trowel-bricks\",\n    \"trowel\",\n    \"truck-arrow-right\",\n    \"truck-bolt\",\n    \"truck-clock\",\n    \"truck-container-empty\",\n    \"truck-container\",\n    \"truck-droplet\",\n    \"truck-fast\",\n    \"truck-field-un\",\n    \"truck-field\",\n    \"truck-fire\",\n    \"truck-flatbed\",\n    \"truck-front\",\n    \"truck-ladder\",\n    \"truck-medical\",\n    \"truck-monster\",\n    \"truck-moving\",\n    \"truck-pickup\",\n    \"truck-plane\",\n    \"truck-plow\",\n    \"truck-ramp-box\",\n    \"truck-ramp-couch\",\n    \"truck-ramp\",\n    \"truck-tow\",\n    \"truck-utensils\",\n    \"truck\",\n    \"trumpet\",\n    \"tty-answer\",\n    \"tty\",\n    \"tugrik-sign\",\n    \"turkey\",\n    \"turkish-lira-sign\",\n    \"turn-down-left\",\n    \"turn-down-right\",\n    \"turn-down\",\n    \"turn-left-down\",\n    \"turn-left-up\",\n    \"turn-left\",\n    \"turn-right\",\n    \"turn-up\",\n    \"turntable\",\n    \"turtle\",\n    \"tv-music\",\n    \"tv-retro\",\n    \"tv\",\n    \"typewriter\",\n    \"u\",\n    \"ufo-beam\",\n    \"ufo\",\n    \"umbrella-beach\",\n    \"umbrella-simple\",\n    \"umbrella\",\n    \"underline\",\n    \"unicorn\",\n    \"uniform-martial-arts\",\n    \"union\",\n    \"universal-access\",\n    \"unlock-keyhole\",\n    \"unlock\",\n    \"up-down-left-right\",\n    \"up-down\",\n    \"up-from-bracket\",\n    \"up-from-dotted-line\",\n    \"up-from-line\",\n    \"up-left\",\n    \"up-long\",\n    \"up-right-and-down-left-from-center\",\n    \"up-right-from-square\",\n    \"up-right\",\n    \"up-to-bracket\",\n    \"up-to-dotted-line\",\n    \"up-to-line\",\n    \"up\",\n    \"upload\",\n    \"usb-drive\",\n    \"user-alien\",\n    \"user-astronaut\",\n    \"user-beard-bolt\",\n    \"user-bounty-hunter\",\n    \"user-check\",\n    \"user-chef\",\n    \"user-clock\",\n    \"user-cowboy\",\n    \"user-crown\",\n    \"user-doctor-hair-long\",\n    \"user-doctor-hair\",\n    \"user-doctor-message\",\n    \"user-doctor\",\n    \"user-gear\",\n    \"user-graduate\",\n    \"user-group-crown\",\n    \"user-group-simple\",\n    \"user-group\",\n    \"user-hair-buns\",\n    \"user-hair-long\",\n    \"user-hair-mullet\",\n    \"user-hair\",\n    \"user-headset\",\n    \"user-helmet-safety\",\n    \"user-hoodie\",\n    \"user-injured\",\n    \"user-large-slash\",\n    \"user-large\",\n    \"user-lock\",\n    \"user-magnifying-glass\",\n    \"user-minus\",\n    \"user-music\",\n    \"user-ninja\",\n    \"user-nurse-hair-long\",\n    \"user-nurse-hair\",\n    \"user-nurse\",\n    \"user-pen\",\n    \"user-pilot-tie\",\n    \"user-pilot\",\n    \"user-plus\",\n    \"user-police-tie\",\n    \"user-police\",\n    \"user-robot-xmarks\",\n    \"user-robot\",\n    \"user-secret\",\n    \"user-shakespeare\",\n    \"user-shield\",\n    \"user-slash\",\n    \"user-tag\",\n    \"user-tie-hair-long\",\n    \"user-tie-hair\",\n    \"user-tie\",\n    \"user-unlock\",\n    \"user-visor\",\n    \"user-vneck-hair-long\",\n    \"user-vneck-hair\",\n    \"user-vneck\",\n    \"user-xmark\",\n    \"user\",\n    \"users-between-lines\",\n    \"users-gear\",\n    \"users-line\",\n    \"users-medical\",\n    \"users-rays\",\n    \"users-rectangle\",\n    \"users-slash\",\n    \"users-viewfinder\",\n    \"users\",\n    \"utensils-slash\",\n    \"utensils\",\n    \"utility-pole-double\",\n    \"utility-pole\",\n    \"v\",\n    \"vacuum-robot\",\n    \"vacuum\",\n    \"value-absolute\",\n    \"van-shuttle\",\n    \"vault\",\n    \"vector-circle\",\n    \"vector-polygon\",\n    \"vector-square\",\n    \"vent-damper\",\n    \"venus-double\",\n    \"venus-mars\",\n    \"venus\",\n    \"vest-patches\",\n    \"vest\",\n    \"vial-circle-check\",\n    \"vial-virus\",\n    \"vial\",\n    \"vials\",\n    \"video-arrow-down-left\",\n    \"video-arrow-up-right\",\n    \"video-plus\",\n    \"video-slash\",\n    \"video\",\n    \"vihara\",\n    \"violin\",\n    \"virus-covid-slash\",\n    \"virus-covid\",\n    \"virus-slash\",\n    \"virus\",\n    \"viruses\",\n    \"voicemail\",\n    \"volcano\",\n    \"volleyball\",\n    \"volume-high\",\n    \"volume-low\",\n    \"volume-off\",\n    \"volume-slash\",\n    \"volume-xmark\",\n    \"volume\",\n    \"vr-cardboard\",\n    \"w\",\n    \"waffle\",\n    \"wagon-covered\",\n    \"walker\",\n    \"walkie-talkie\",\n    \"wallet\",\n    \"wand-magic-sparkles\",\n    \"wand-magic\",\n    \"wand-sparkles\",\n    \"wand\",\n    \"warehouse-full\",\n    \"warehouse\",\n    \"washing-machine\",\n    \"watch-apple\",\n    \"watch-calculator\",\n    \"watch-fitness\",\n    \"watch-smart\",\n    \"watch\",\n    \"water-arrow-down\",\n    \"water-arrow-up\",\n    \"water-ladder\",\n    \"water\",\n    \"watermelon-slice\",\n    \"wave-pulse\",\n    \"wave-sine\",\n    \"wave-square\",\n    \"wave-triangle\",\n    \"wave\",\n    \"waveform-lines\",\n    \"waveform\",\n    \"waves-sine\",\n    \"web-awesome\",\n    \"webhook\",\n    \"weight-hanging\",\n    \"weight-scale\",\n    \"whale\",\n    \"wheat-awn-circle-exclamation\",\n    \"wheat-awn-slash\",\n    \"wheat-awn\",\n    \"wheat-slash\",\n    \"wheat\",\n    \"wheelchair-move\",\n    \"wheelchair\",\n    \"whiskey-glass-ice\",\n    \"whiskey-glass\",\n    \"whistle\",\n    \"wifi-exclamation\",\n    \"wifi-fair\",\n    \"wifi-slash\",\n    \"wifi-weak\",\n    \"wifi\",\n    \"wind-turbine\",\n    \"wind-warning\",\n    \"wind\",\n    \"window-flip\",\n    \"window-frame-open\",\n    \"window-frame\",\n    \"window-maximize\",\n    \"window-minimize\",\n    \"window-restore\",\n    \"window\",\n    \"windsock\",\n    \"wine-bottle\",\n    \"wine-glass-crack\",\n    \"wine-glass-empty\",\n    \"wine-glass\",\n    \"won-sign\",\n    \"worm\",\n    \"wreath-laurel\",\n    \"wreath\",\n    \"wrench-simple\",\n    \"wrench\",\n    \"x-ray\",\n    \"x\",\n    \"xmark-large\",\n    \"xmark-to-slot\",\n    \"xmark\",\n    \"xmarks-lines\",\n    \"y\",\n    \"yen-sign\",\n    \"yin-yang\",\n    \"z\"\n  ],\n  \"regular\": [\n    \"0\",\n    \"00\",\n    \"1\",\n    \"2\",\n    \"3\",\n    \"360-degrees\",\n    \"4\",\n    \"5\",\n    \"6\",\n    \"7\",\n    \"8\",\n    \"9\",\n    \"a\",\n    \"abacus\",\n    \"accent-grave\",\n    \"acorn\",\n    \"address-book\",\n    \"address-card\",\n    \"air-conditioner\",\n    \"airplay\",\n    \"alarm-clock\",\n    \"alarm-exclamation\",\n    \"alarm-plus\",\n    \"alarm-snooze\",\n    \"album-circle-plus\",\n    \"album-circle-user\",\n    \"album-collection-circle-plus\",\n    \"album-collection-circle-user\",\n    \"album-collection\",\n    \"album\",\n    \"alicorn\",\n    \"alien-8bit\",\n    \"alien\",\n    \"align-center\",\n    \"align-justify\",\n    \"align-left\",\n    \"align-right\",\n    \"align-slash\",\n    \"alt\",\n    \"amp-guitar\",\n    \"ampersand\",\n    \"anchor-circle-check\",\n    \"anchor-circle-exclamation\",\n    \"anchor-circle-xmark\",\n    \"anchor-lock\",\n    \"anchor\",\n    \"angel\",\n    \"angle-90\",\n    \"angle-down\",\n    \"angle-left\",\n    \"angle-right\",\n    \"angle-up\",\n    \"angle\",\n    \"angles-down\",\n    \"angles-left\",\n    \"angles-right\",\n    \"angles-up-down\",\n    \"angles-up\",\n    \"ankh\",\n    \"ant\",\n    \"apartment\",\n    \"aperture\",\n    \"apostrophe\",\n    \"apple-core\",\n    \"apple-whole\",\n    \"archway\",\n    \"arrow-down-1-9\",\n    \"arrow-down-9-1\",\n    \"arrow-down-a-z\",\n    \"arrow-down-arrow-up\",\n    \"arrow-down-big-small\",\n    \"arrow-down-from-arc\",\n    \"arrow-down-from-bracket\",\n    \"arrow-down-from-dotted-line\",\n    \"arrow-down-from-line\",\n    \"arrow-down-left-and-arrow-up-right-to-center\",\n    \"arrow-down-left\",\n    \"arrow-down-long\",\n    \"arrow-down-right\",\n    \"arrow-down-short-wide\",\n    \"arrow-down-small-big\",\n    \"arrow-down-square-triangle\",\n    \"arrow-down-to-arc\",\n    \"arrow-down-to-bracket\",\n    \"arrow-down-to-dotted-line\",\n    \"arrow-down-to-line\",\n    \"arrow-down-to-square\",\n    \"arrow-down-triangle-square\",\n    \"arrow-down-up-across-line\",\n    \"arrow-down-up-lock\",\n    \"arrow-down-wide-short\",\n    \"arrow-down-z-a\",\n    \"arrow-down\",\n    \"arrow-left-from-arc\",\n    \"arrow-left-from-bracket\",\n    \"arrow-left-from-line\",\n    \"arrow-left-long-to-line\",\n    \"arrow-left-long\",\n    \"arrow-left-to-arc\",\n    \"arrow-left-to-bracket\",\n    \"arrow-left-to-line\",\n    \"arrow-left\",\n    \"arrow-pointer\",\n    \"arrow-progress\",\n    \"arrow-right-arrow-left\",\n    \"arrow-right-from-arc\",\n    \"arrow-right-from-bracket\",\n    \"arrow-right-from-line\",\n    \"arrow-right-long-to-line\",\n    \"arrow-right-long\",\n    \"arrow-right-to-arc\",\n    \"arrow-right-to-bracket\",\n    \"arrow-right-to-city\",\n    \"arrow-right-to-line\",\n    \"arrow-right\",\n    \"arrow-rotate-left\",\n    \"arrow-rotate-right\",\n    \"arrow-trend-down\",\n    \"arrow-trend-up\",\n    \"arrow-turn-down-left\",\n    \"arrow-turn-down-right\",\n    \"arrow-turn-down\",\n    \"arrow-turn-left-down\",\n    \"arrow-turn-left-up\",\n    \"arrow-turn-left\",\n    \"arrow-turn-right\",\n    \"arrow-turn-up\",\n    \"arrow-up-1-9\",\n    \"arrow-up-9-1\",\n    \"arrow-up-a-z\",\n    \"arrow-up-arrow-down\",\n    \"arrow-up-big-small\",\n    \"arrow-up-from-arc\",\n    \"arrow-up-from-bracket\",\n    \"arrow-up-from-dotted-line\",\n    \"arrow-up-from-ground-water\",\n    \"arrow-up-from-line\",\n    \"arrow-up-from-square\",\n    \"arrow-up-from-water-pump\",\n    \"arrow-up-left-from-circle\",\n    \"arrow-up-left\",\n    \"arrow-up-long\",\n    \"arrow-up-right-and-arrow-down-left-from-center\",\n    \"arrow-up-right-dots\",\n    \"arrow-up-right-from-square\",\n    \"arrow-up-right\",\n    \"arrow-up-short-wide\",\n    \"arrow-up-small-big\",\n    \"arrow-up-square-triangle\",\n    \"arrow-up-to-arc\",\n    \"arrow-up-to-bracket\",\n    \"arrow-up-to-dotted-line\",\n    \"arrow-up-to-line\",\n    \"arrow-up-triangle-square\",\n    \"arrow-up-wide-short\",\n    \"arrow-up-z-a\",\n    \"arrow-up\",\n    \"arrows-cross\",\n    \"arrows-down-to-line\",\n    \"arrows-down-to-people\",\n    \"arrows-from-dotted-line\",\n    \"arrows-from-line\",\n    \"arrows-left-right-to-line\",\n    \"arrows-left-right\",\n    \"arrows-maximize\",\n    \"arrows-minimize\",\n    \"arrows-repeat-1\",\n    \"arrows-repeat\",\n    \"arrows-retweet\",\n    \"arrows-rotate-reverse\",\n    \"arrows-rotate\",\n    \"arrows-spin\",\n    \"arrows-split-up-and-left\",\n    \"arrows-to-circle\",\n    \"arrows-to-dot\",\n    \"arrows-to-dotted-line\",\n    \"arrows-to-eye\",\n    \"arrows-to-line\",\n    \"arrows-turn-right\",\n    \"arrows-turn-to-dots\",\n    \"arrows-up-down-left-right\",\n    \"arrows-up-down\",\n    \"arrows-up-to-line\",\n    \"asterisk\",\n    \"at\",\n    \"atom-simple\",\n    \"atom\",\n    \"audio-description-slash\",\n    \"audio-description\",\n    \"austral-sign\",\n    \"avocado\",\n    \"award-simple\",\n    \"award\",\n    \"axe-battle\",\n    \"axe\",\n    \"b\",\n    \"baby-carriage\",\n    \"baby\",\n    \"backpack\",\n    \"backward-fast\",\n    \"backward-step\",\n    \"backward\",\n    \"bacon\",\n    \"bacteria\",\n    \"bacterium\",\n    \"badge-check\",\n    \"badge-dollar\",\n    \"badge-percent\",\n    \"badge-sheriff\",\n    \"badge\",\n    \"badger-honey\",\n    \"badminton\",\n    \"bag-seedling\",\n    \"bag-shopping-minus\",\n    \"bag-shopping-plus\",\n    \"bag-shopping\",\n    \"bagel\",\n    \"bags-shopping\",\n    \"baguette\",\n    \"bahai\",\n    \"baht-sign\",\n    \"ball-pile\",\n    \"balloon\",\n    \"balloons\",\n    \"ballot-check\",\n    \"ballot\",\n    \"ban-bug\",\n    \"ban-parking\",\n    \"ban-smoking\",\n    \"ban\",\n    \"banana\",\n    \"bandage\",\n    \"bangladeshi-taka-sign\",\n    \"banjo\",\n    \"barcode-read\",\n    \"barcode-scan\",\n    \"barcode\",\n    \"bars-filter\",\n    \"bars-progress\",\n    \"bars-sort\",\n    \"bars-staggered\",\n    \"bars\",\n    \"baseball-bat-ball\",\n    \"baseball\",\n    \"basket-shopping-minus\",\n    \"basket-shopping-plus\",\n    \"basket-shopping-simple\",\n    \"basket-shopping\",\n    \"basketball-hoop\",\n    \"basketball\",\n    \"bat\",\n    \"bath\",\n    \"battery-bolt\",\n    \"battery-empty\",\n    \"battery-exclamation\",\n    \"battery-full\",\n    \"battery-half\",\n    \"battery-low\",\n    \"battery-quarter\",\n    \"battery-slash\",\n    \"battery-three-quarters\",\n    \"bed-bunk\",\n    \"bed-empty\",\n    \"bed-front\",\n    \"bed-pulse\",\n    \"bed\",\n    \"bee\",\n    \"beer-mug-empty\",\n    \"beer-mug\",\n    \"bell-concierge\",\n    \"bell-exclamation\",\n    \"bell-on\",\n    \"bell-plus\",\n    \"bell-ring\",\n    \"bell-school-slash\",\n    \"bell-school\",\n    \"bell-slash\",\n    \"bell\",\n    \"bells\",\n    \"bench-tree\",\n    \"bezier-curve\",\n    \"bicycle\",\n    \"billboard\",\n    \"bin-bottles-recycle\",\n    \"bin-bottles\",\n    \"bin-recycle\",\n    \"binary-circle-check\",\n    \"binary-lock\",\n    \"binary-slash\",\n    \"binary\",\n    \"binoculars\",\n    \"biohazard\",\n    \"bird\",\n    \"bitcoin-sign\",\n    \"blanket-fire\",\n    \"blanket\",\n    \"blender-phone\",\n    \"blender\",\n    \"blinds-open\",\n    \"blinds-raised\",\n    \"blinds\",\n    \"block-brick-fire\",\n    \"block-brick\",\n    \"block-question\",\n    \"block-quote\",\n    \"block\",\n    \"blog\",\n    \"blueberries\",\n    \"bluetooth\",\n    \"bold\",\n    \"bolt-auto\",\n    \"bolt-lightning\",\n    \"bolt-slash\",\n    \"bolt\",\n    \"bomb\",\n    \"bone-break\",\n    \"bone\",\n    \"bong\",\n    \"book-arrow-right\",\n    \"book-arrow-up\",\n    \"book-atlas\",\n    \"book-bible\",\n    \"book-blank\",\n    \"book-bookmark\",\n    \"book-circle-arrow-right\",\n    \"book-circle-arrow-up\",\n    \"book-copy\",\n    \"book-font\",\n    \"book-heart\",\n    \"book-journal-whills\",\n    \"book-medical\",\n    \"book-open-cover\",\n    \"book-open-reader\",\n    \"book-open\",\n    \"book-quran\",\n    \"book-section\",\n    \"book-skull\",\n    \"book-sparkles\",\n    \"book-tanakh\",\n    \"book-user\",\n    \"book\",\n    \"bookmark-slash\",\n    \"bookmark\",\n    \"books-medical\",\n    \"books\",\n    \"boombox\",\n    \"boot-heeled\",\n    \"boot\",\n    \"booth-curtain\",\n    \"border-all\",\n    \"border-bottom-right\",\n    \"border-bottom\",\n    \"border-center-h\",\n    \"border-center-v\",\n    \"border-inner\",\n    \"border-left\",\n    \"border-none\",\n    \"border-outer\",\n    \"border-right\",\n    \"border-top-left\",\n    \"border-top\",\n    \"bore-hole\",\n    \"bottle-baby\",\n    \"bottle-droplet\",\n    \"bottle-water\",\n    \"bow-arrow\",\n    \"bowl-chopsticks-noodles\",\n    \"bowl-chopsticks\",\n    \"bowl-food\",\n    \"bowl-hot\",\n    \"bowl-rice\",\n    \"bowl-scoop\",\n    \"bowl-scoops\",\n    \"bowl-soft-serve\",\n    \"bowl-spoon\",\n    \"bowling-ball-pin\",\n    \"bowling-ball\",\n    \"bowling-pins\",\n    \"box-archive\",\n    \"box-ballot\",\n    \"box-check\",\n    \"box-circle-check\",\n    \"box-dollar\",\n    \"box-heart\",\n    \"box-open-full\",\n    \"box-open\",\n    \"box-taped\",\n    \"box-tissue\",\n    \"box\",\n    \"boxes-packing\",\n    \"boxes-stacked\",\n    \"boxing-glove\",\n    \"bracket-curly-right\",\n    \"bracket-curly\",\n    \"bracket-round-right\",\n    \"bracket-round\",\n    \"bracket-square-right\",\n    \"bracket-square\",\n    \"brackets-curly\",\n    \"brackets-round\",\n    \"brackets-square\",\n    \"braille\",\n    \"brain-arrow-curved-right\",\n    \"brain-circuit\",\n    \"brain\",\n    \"brake-warning\",\n    \"brazilian-real-sign\",\n    \"bread-loaf\",\n    \"bread-slice-butter\",\n    \"bread-slice\",\n    \"bridge-circle-check\",\n    \"bridge-circle-exclamation\",\n    \"bridge-circle-xmark\",\n    \"bridge-lock\",\n    \"bridge-suspension\",\n    \"bridge-water\",\n    \"bridge\",\n    \"briefcase-arrow-right\",\n    \"briefcase-blank\",\n    \"briefcase-medical\",\n    \"briefcase\",\n    \"brightness-low\",\n    \"brightness\",\n    \"bring-forward\",\n    \"bring-front\",\n    \"broccoli\",\n    \"broom-ball\",\n    \"broom-wide\",\n    \"broom\",\n    \"browser\",\n    \"browsers\",\n    \"brush\",\n    \"bucket\",\n    \"bug-slash\",\n    \"bug\",\n    \"bugs\",\n    \"building-circle-arrow-right\",\n    \"building-circle-check\",\n    \"building-circle-exclamation\",\n    \"building-circle-xmark\",\n    \"building-columns\",\n    \"building-flag\",\n    \"building-lock\",\n    \"building-magnifying-glass\",\n    \"building-memo\",\n    \"building-ngo\",\n    \"building-shield\",\n    \"building-un\",\n    \"building-user\",\n    \"building-wheat\",\n    \"building\",\n    \"buildings\",\n    \"bulldozer\",\n    \"bullhorn\",\n    \"bullseye-arrow\",\n    \"bullseye-pointer\",\n    \"bullseye\",\n    \"buoy-mooring\",\n    \"buoy\",\n    \"burger-cheese\",\n    \"burger-fries\",\n    \"burger-glass\",\n    \"burger-lettuce\",\n    \"burger-soda\",\n    \"burger\",\n    \"burrito\",\n    \"burst\",\n    \"bus-school\",\n    \"bus-simple\",\n    \"bus\",\n    \"business-time\",\n    \"butter\",\n    \"c\",\n    \"cabin\",\n    \"cabinet-filing\",\n    \"cable-car\",\n    \"cactus\",\n    \"caduceus\",\n    \"cake-candles\",\n    \"cake-slice\",\n    \"calculator-simple\",\n    \"calculator\",\n    \"calendar-arrow-down\",\n    \"calendar-arrow-up\",\n    \"calendar-check\",\n    \"calendar-circle-exclamation\",\n    \"calendar-circle-minus\",\n    \"calendar-circle-plus\",\n    \"calendar-circle-user\",\n    \"calendar-clock\",\n    \"calendar-day\",\n    \"calendar-days\",\n    \"calendar-exclamation\",\n    \"calendar-heart\",\n    \"calendar-image\",\n    \"calendar-lines-pen\",\n    \"calendar-lines\",\n    \"calendar-minus\",\n    \"calendar-pen\",\n    \"calendar-plus\",\n    \"calendar-range\",\n    \"calendar-star\",\n    \"calendar-users\",\n    \"calendar-week\",\n    \"calendar-xmark\",\n    \"calendar\",\n    \"calendars\",\n    \"camcorder\",\n    \"camera-cctv\",\n    \"camera-movie\",\n    \"camera-polaroid\",\n    \"camera-retro\",\n    \"camera-rotate\",\n    \"camera-security\",\n    \"camera-slash\",\n    \"camera-viewfinder\",\n    \"camera-web-slash\",\n    \"camera-web\",\n    \"camera\",\n    \"campfire\",\n    \"campground\",\n    \"can-food\",\n    \"candle-holder\",\n    \"candy-bar\",\n    \"candy-cane\",\n    \"candy-corn\",\n    \"candy\",\n    \"cannabis\",\n    \"cannon\",\n    \"capsules\",\n    \"car-battery\",\n    \"car-bolt\",\n    \"car-building\",\n    \"car-bump\",\n    \"car-burst\",\n    \"car-bus\",\n    \"car-circle-bolt\",\n    \"car-garage\",\n    \"car-mirrors\",\n    \"car-on\",\n    \"car-rear\",\n    \"car-side-bolt\",\n    \"car-side\",\n    \"car-tilt\",\n    \"car-tunnel\",\n    \"car-wash\",\n    \"car-wrench\",\n    \"car\",\n    \"caravan-simple\",\n    \"caravan\",\n    \"card-club\",\n    \"card-diamond\",\n    \"card-heart\",\n    \"card-spade\",\n    \"cards-blank\",\n    \"cards\",\n    \"caret-down\",\n    \"caret-left\",\n    \"caret-right\",\n    \"caret-up\",\n    \"carpool\",\n    \"carrot\",\n    \"cars\",\n    \"cart-arrow-down\",\n    \"cart-arrow-up\",\n    \"cart-circle-arrow-down\",\n    \"cart-circle-arrow-up\",\n    \"cart-circle-check\",\n    \"cart-circle-exclamation\",\n    \"cart-circle-plus\",\n    \"cart-circle-xmark\",\n    \"cart-flatbed-boxes\",\n    \"cart-flatbed-empty\",\n    \"cart-flatbed-suitcase\",\n    \"cart-flatbed\",\n    \"cart-minus\",\n    \"cart-plus\",\n    \"cart-shopping-fast\",\n    \"cart-shopping\",\n    \"cart-xmark\",\n    \"cash-register\",\n    \"cassette-betamax\",\n    \"cassette-tape\",\n    \"cassette-vhs\",\n    \"castle\",\n    \"cat-space\",\n    \"cat\",\n    \"cauldron\",\n    \"cedi-sign\",\n    \"cent-sign\",\n    \"certificate\",\n    \"chair-office\",\n    \"chair\",\n    \"chalkboard-user\",\n    \"chalkboard\",\n    \"champagne-glass\",\n    \"champagne-glasses\",\n    \"charging-station\",\n    \"chart-area\",\n    \"chart-bar\",\n    \"chart-bullet\",\n    \"chart-candlestick\",\n    \"chart-column\",\n    \"chart-diagram\",\n    \"chart-fft\",\n    \"chart-gantt\",\n    \"chart-kanban\",\n    \"chart-line-down\",\n    \"chart-line-up-down\",\n    \"chart-line-up\",\n    \"chart-line\",\n    \"chart-mixed-up-circle-currency\",\n    \"chart-mixed-up-circle-dollar\",\n    \"chart-mixed\",\n    \"chart-network\",\n    \"chart-pie-simple-circle-currency\",\n    \"chart-pie-simple-circle-dollar\",\n    \"chart-pie-simple\",\n    \"chart-pie\",\n    \"chart-pyramid\",\n    \"chart-radar\",\n    \"chart-scatter-3d\",\n    \"chart-scatter-bubble\",\n    \"chart-scatter\",\n    \"chart-simple-horizontal\",\n    \"chart-simple\",\n    \"chart-sine\",\n    \"chart-tree-map\",\n    \"chart-user\",\n    \"chart-waterfall\",\n    \"check-double\",\n    \"check-to-slot\",\n    \"check\",\n    \"cheese-swiss\",\n    \"cheese\",\n    \"cherries\",\n    \"chess-bishop-piece\",\n    \"chess-bishop\",\n    \"chess-board\",\n    \"chess-clock-flip\",\n    \"chess-clock\",\n    \"chess-king-piece\",\n    \"chess-king\",\n    \"chess-knight-piece\",\n    \"chess-knight\",\n    \"chess-pawn-piece\",\n    \"chess-pawn\",\n    \"chess-queen-piece\",\n    \"chess-queen\",\n    \"chess-rook-piece\",\n    \"chess-rook\",\n    \"chess\",\n    \"chestnut\",\n    \"chevron-down\",\n    \"chevron-left\",\n    \"chevron-right\",\n    \"chevron-up\",\n    \"chevrons-down\",\n    \"chevrons-left\",\n    \"chevrons-right\",\n    \"chevrons-up\",\n    \"chf-sign\",\n    \"child-combatant\",\n    \"child-dress\",\n    \"child-reaching\",\n    \"child\",\n    \"children\",\n    \"chimney\",\n    \"chopsticks\",\n    \"church\",\n    \"circle-0\",\n    \"circle-1\",\n    \"circle-2\",\n    \"circle-3\",\n    \"circle-4\",\n    \"circle-5\",\n    \"circle-6\",\n    \"circle-7\",\n    \"circle-8\",\n    \"circle-9\",\n    \"circle-a\",\n    \"circle-ampersand\",\n    \"circle-arrow-down-left\",\n    \"circle-arrow-down-right\",\n    \"circle-arrow-down\",\n    \"circle-arrow-left\",\n    \"circle-arrow-right\",\n    \"circle-arrow-up-left\",\n    \"circle-arrow-up-right\",\n    \"circle-arrow-up\",\n    \"circle-b\",\n    \"circle-bolt\",\n    \"circle-book-open\",\n    \"circle-bookmark\",\n    \"circle-c\",\n    \"circle-calendar\",\n    \"circle-camera\",\n    \"circle-caret-down\",\n    \"circle-caret-left\",\n    \"circle-caret-right\",\n    \"circle-caret-up\",\n    \"circle-check\",\n    \"circle-chevron-down\",\n    \"circle-chevron-left\",\n    \"circle-chevron-right\",\n    \"circle-chevron-up\",\n    \"circle-d\",\n    \"circle-dashed\",\n    \"circle-divide\",\n    \"circle-dollar-to-slot\",\n    \"circle-dollar\",\n    \"circle-dot\",\n    \"circle-down-left\",\n    \"circle-down-right\",\n    \"circle-down\",\n    \"circle-e\",\n    \"circle-ellipsis-vertical\",\n    \"circle-ellipsis\",\n    \"circle-envelope\",\n    \"circle-euro\",\n    \"circle-exclamation-check\",\n    \"circle-exclamation\",\n    \"circle-f\",\n    \"circle-g\",\n    \"circle-gf\",\n    \"circle-h\",\n    \"circle-half-stroke\",\n    \"circle-half\",\n    \"circle-heart\",\n    \"circle-i\",\n    \"circle-info\",\n    \"circle-j\",\n    \"circle-k\",\n    \"circle-l\",\n    \"circle-left\",\n    \"circle-location-arrow\",\n    \"circle-m\",\n    \"circle-microphone-lines\",\n    \"circle-microphone\",\n    \"circle-minus\",\n    \"circle-n\",\n    \"circle-nodes\",\n    \"circle-notch\",\n    \"circle-o\",\n    \"circle-p\",\n    \"circle-parking\",\n    \"circle-pause\",\n    \"circle-phone-flip\",\n    \"circle-phone-hangup\",\n    \"circle-phone\",\n    \"circle-play\",\n    \"circle-plus\",\n    \"circle-q\",\n    \"circle-quarter-stroke\",\n    \"circle-quarter\",\n    \"circle-quarters\",\n    \"circle-question\",\n    \"circle-r\",\n    \"circle-radiation\",\n    \"circle-right\",\n    \"circle-s\",\n    \"circle-small\",\n    \"circle-sort-down\",\n    \"circle-sort-up\",\n    \"circle-sort\",\n    \"circle-star\",\n    \"circle-sterling\",\n    \"circle-stop\",\n    \"circle-t\",\n    \"circle-three-quarters-stroke\",\n    \"circle-three-quarters\",\n    \"circle-trash\",\n    \"circle-u\",\n    \"circle-up-left\",\n    \"circle-up-right\",\n    \"circle-up\",\n    \"circle-user\",\n    \"circle-v\",\n    \"circle-video\",\n    \"circle-w\",\n    \"circle-waveform-lines\",\n    \"circle-wifi-circle-wifi\",\n    \"circle-wifi\",\n    \"circle-x\",\n    \"circle-xmark\",\n    \"circle-y\",\n    \"circle-yen\",\n    \"circle-z\",\n    \"circle\",\n    \"circles-overlap-3\",\n    \"circles-overlap\",\n    \"citrus-slice\",\n    \"citrus\",\n    \"city\",\n    \"clapperboard-play\",\n    \"clapperboard\",\n    \"clarinet\",\n    \"claw-marks\",\n    \"clipboard-check\",\n    \"clipboard-list-check\",\n    \"clipboard-list\",\n    \"clipboard-medical\",\n    \"clipboard-prescription\",\n    \"clipboard-question\",\n    \"clipboard-user\",\n    \"clipboard\",\n    \"clock-desk\",\n    \"clock-eight-thirty\",\n    \"clock-eight\",\n    \"clock-eleven-thirty\",\n    \"clock-eleven\",\n    \"clock-five-thirty\",\n    \"clock-five\",\n    \"clock-four-thirty\",\n    \"clock-nine-thirty\",\n    \"clock-nine\",\n    \"clock-one-thirty\",\n    \"clock-one\",\n    \"clock-rotate-left\",\n    \"clock-seven-thirty\",\n    \"clock-seven\",\n    \"clock-six-thirty\",\n    \"clock-six\",\n    \"clock-ten-thirty\",\n    \"clock-ten\",\n    \"clock-three-thirty\",\n    \"clock-three\",\n    \"clock-twelve-thirty\",\n    \"clock-twelve\",\n    \"clock-two-thirty\",\n    \"clock-two\",\n    \"clock\",\n    \"clone\",\n    \"closed-captioning-slash\",\n    \"closed-captioning\",\n    \"clothes-hanger\",\n    \"cloud-arrow-down\",\n    \"cloud-arrow-up\",\n    \"cloud-binary\",\n    \"cloud-bolt-moon\",\n    \"cloud-bolt-sun\",\n    \"cloud-bolt\",\n    \"cloud-check\",\n    \"cloud-drizzle\",\n    \"cloud-exclamation\",\n    \"cloud-fog\",\n    \"cloud-hail-mixed\",\n    \"cloud-hail\",\n    \"cloud-meatball\",\n    \"cloud-minus\",\n    \"cloud-moon-rain\",\n    \"cloud-moon\",\n    \"cloud-music\",\n    \"cloud-plus\",\n    \"cloud-question\",\n    \"cloud-rain\",\n    \"cloud-rainbow\",\n    \"cloud-showers-heavy\",\n    \"cloud-showers-water\",\n    \"cloud-showers\",\n    \"cloud-slash\",\n    \"cloud-sleet\",\n    \"cloud-snow\",\n    \"cloud-sun-rain\",\n    \"cloud-sun\",\n    \"cloud-word\",\n    \"cloud-xmark\",\n    \"cloud\",\n    \"clouds-moon\",\n    \"clouds-sun\",\n    \"clouds\",\n    \"clover\",\n    \"club\",\n    \"coconut\",\n    \"code-branch\",\n    \"code-commit\",\n    \"code-compare\",\n    \"code-fork\",\n    \"code-merge\",\n    \"code-pull-request-closed\",\n    \"code-pull-request-draft\",\n    \"code-pull-request\",\n    \"code-simple\",\n    \"code\",\n    \"coffee-bean\",\n    \"coffee-beans\",\n    \"coffee-pot\",\n    \"coffin-cross\",\n    \"coffin\",\n    \"coin-blank\",\n    \"coin-front\",\n    \"coin-vertical\",\n    \"coin\",\n    \"coins\",\n    \"colon-sign\",\n    \"colon\",\n    \"columns-3\",\n    \"comet\",\n    \"comma\",\n    \"command\",\n    \"comment-arrow-down\",\n    \"comment-arrow-up-right\",\n    \"comment-arrow-up\",\n    \"comment-captions\",\n    \"comment-check\",\n    \"comment-code\",\n    \"comment-dollar\",\n    \"comment-dots\",\n    \"comment-exclamation\",\n    \"comment-heart\",\n    \"comment-image\",\n    \"comment-lines\",\n    \"comment-medical\",\n    \"comment-middle-top\",\n    \"comment-middle\",\n    \"comment-minus\",\n    \"comment-music\",\n    \"comment-nodes\",\n    \"comment-pen\",\n    \"comment-plus\",\n    \"comment-question\",\n    \"comment-quote\",\n    \"comment-slash\",\n    \"comment-smile\",\n    \"comment-sms\",\n    \"comment-text\",\n    \"comment-xmark\",\n    \"comment\",\n    \"comments-dollar\",\n    \"comments-question-check\",\n    \"comments-question\",\n    \"comments\",\n    \"compact-disc\",\n    \"compass-drafting\",\n    \"compass-slash\",\n    \"compass\",\n    \"compress-wide\",\n    \"compress\",\n    \"computer-classic\",\n    \"computer-mouse-scrollwheel\",\n    \"computer-mouse\",\n    \"computer-speaker\",\n    \"computer\",\n    \"container-storage\",\n    \"conveyor-belt-arm\",\n    \"conveyor-belt-boxes\",\n    \"conveyor-belt-empty\",\n    \"conveyor-belt\",\n    \"cookie-bite\",\n    \"cookie\",\n    \"copy\",\n    \"copyright\",\n    \"corn\",\n    \"corner\",\n    \"couch\",\n    \"court-sport\",\n    \"cow\",\n    \"cowbell-circle-plus\",\n    \"cowbell\",\n    \"crab\",\n    \"crate-apple\",\n    \"crate-empty\",\n    \"credit-card-blank\",\n    \"credit-card-front\",\n    \"credit-card\",\n    \"cricket-bat-ball\",\n    \"croissant\",\n    \"crop-simple\",\n    \"crop\",\n    \"cross\",\n    \"crosshairs-simple\",\n    \"crosshairs\",\n    \"crow\",\n    \"crown\",\n    \"crutch\",\n    \"crutches\",\n    \"cruzeiro-sign\",\n    \"crystal-ball\",\n    \"cube\",\n    \"cubes-stacked\",\n    \"cubes\",\n    \"cucumber\",\n    \"cup-straw-swoosh\",\n    \"cup-straw\",\n    \"cup-togo\",\n    \"cupcake\",\n    \"curling-stone\",\n    \"custard\",\n    \"d\",\n    \"dagger\",\n    \"dash\",\n    \"database\",\n    \"deer-rudolph\",\n    \"deer\",\n    \"delete-left\",\n    \"delete-right\",\n    \"democrat\",\n    \"desktop-arrow-down\",\n    \"desktop\",\n    \"dharmachakra\",\n    \"diagram-cells\",\n    \"diagram-lean-canvas\",\n    \"diagram-nested\",\n    \"diagram-next\",\n    \"diagram-predecessor\",\n    \"diagram-previous\",\n    \"diagram-project\",\n    \"diagram-sankey\",\n    \"diagram-subtask\",\n    \"diagram-successor\",\n    \"diagram-venn\",\n    \"dial-high\",\n    \"dial-low\",\n    \"dial-max\",\n    \"dial-med-low\",\n    \"dial-med\",\n    \"dial-min\",\n    \"dial-off\",\n    \"dial\",\n    \"diamond-exclamation\",\n    \"diamond-half-stroke\",\n    \"diamond-half\",\n    \"diamond-turn-right\",\n    \"diamond\",\n    \"diamonds-4\",\n    \"dice-d10\",\n    \"dice-d12\",\n    \"dice-d20\",\n    \"dice-d4\",\n    \"dice-d6\",\n    \"dice-d8\",\n    \"dice-five\",\n    \"dice-four\",\n    \"dice-one\",\n    \"dice-six\",\n    \"dice-three\",\n    \"dice-two\",\n    \"dice\",\n    \"dinosaur\",\n    \"diploma\",\n    \"disc-drive\",\n    \"disease\",\n    \"display-arrow-down\",\n    \"display-chart-up-circle-currency\",\n    \"display-chart-up-circle-dollar\",\n    \"display-chart-up\",\n    \"display-code\",\n    \"display-medical\",\n    \"display-slash\",\n    \"display\",\n    \"distribute-spacing-horizontal\",\n    \"distribute-spacing-vertical\",\n    \"ditto\",\n    \"divide\",\n    \"dna\",\n    \"do-not-enter\",\n    \"dog-leashed\",\n    \"dog\",\n    \"dollar-sign\",\n    \"dolly-empty\",\n    \"dolly\",\n    \"dolphin\",\n    \"dong-sign\",\n    \"donut\",\n    \"door-closed\",\n    \"door-open\",\n    \"dove\",\n    \"down-from-bracket\",\n    \"down-from-dotted-line\",\n    \"down-from-line\",\n    \"down-left-and-up-right-to-center\",\n    \"down-left\",\n    \"down-long\",\n    \"down-right\",\n    \"down-to-bracket\",\n    \"down-to-dotted-line\",\n    \"down-to-line\",\n    \"down\",\n    \"download\",\n    \"dragon\",\n    \"draw-circle\",\n    \"draw-polygon\",\n    \"draw-square\",\n    \"dreidel\",\n    \"drone-front\",\n    \"drone\",\n    \"droplet-degree\",\n    \"droplet-percent\",\n    \"droplet-slash\",\n    \"droplet\",\n    \"drum-steelpan\",\n    \"drum\",\n    \"drumstick-bite\",\n    \"drumstick\",\n    \"dryer-heat\",\n    \"dryer\",\n    \"duck\",\n    \"dumbbell\",\n    \"dumpster-fire\",\n    \"dumpster\",\n    \"dungeon\",\n    \"e\",\n    \"ear-deaf\",\n    \"ear-listen\",\n    \"ear-muffs\",\n    \"ear\",\n    \"earth-africa\",\n    \"earth-americas\",\n    \"earth-asia\",\n    \"earth-europe\",\n    \"earth-oceania\",\n    \"eclipse\",\n    \"egg-fried\",\n    \"egg\",\n    \"eggplant\",\n    \"eject\",\n    \"elephant\",\n    \"elevator\",\n    \"ellipsis-stroke-vertical\",\n    \"ellipsis-stroke\",\n    \"ellipsis-vertical\",\n    \"ellipsis\",\n    \"empty-set\",\n    \"engine-warning\",\n    \"engine\",\n    \"envelope-circle-check\",\n    \"envelope-dot\",\n    \"envelope-open-dollar\",\n    \"envelope-open-text\",\n    \"envelope-open\",\n    \"envelope\",\n    \"envelopes-bulk\",\n    \"envelopes\",\n    \"equals\",\n    \"eraser\",\n    \"escalator\",\n    \"ethernet\",\n    \"euro-sign\",\n    \"excavator\",\n    \"exclamation\",\n    \"expand-wide\",\n    \"expand\",\n    \"explosion\",\n    \"eye-dropper-full\",\n    \"eye-dropper-half\",\n    \"eye-dropper\",\n    \"eye-evil\",\n    \"eye-low-vision\",\n    \"eye-slash\",\n    \"eye\",\n    \"eyes\",\n    \"f\",\n    \"face-angry-horns\",\n    \"face-angry\",\n    \"face-anguished\",\n    \"face-anxious-sweat\",\n    \"face-astonished\",\n    \"face-awesome\",\n    \"face-beam-hand-over-mouth\",\n    \"face-clouds\",\n    \"face-confounded\",\n    \"face-confused\",\n    \"face-cowboy-hat\",\n    \"face-diagonal-mouth\",\n    \"face-disappointed\",\n    \"face-disguise\",\n    \"face-dizzy\",\n    \"face-dotted\",\n    \"face-downcast-sweat\",\n    \"face-drooling\",\n    \"face-exhaling\",\n    \"face-explode\",\n    \"face-expressionless\",\n    \"face-eyes-xmarks\",\n    \"face-fearful\",\n    \"face-flushed\",\n    \"face-frown-open\",\n    \"face-frown-slight\",\n    \"face-frown\",\n    \"face-glasses\",\n    \"face-grimace\",\n    \"face-grin-beam-sweat\",\n    \"face-grin-beam\",\n    \"face-grin-hearts\",\n    \"face-grin-squint-tears\",\n    \"face-grin-squint\",\n    \"face-grin-stars\",\n    \"face-grin-tears\",\n    \"face-grin-tongue-squint\",\n    \"face-grin-tongue-wink\",\n    \"face-grin-tongue\",\n    \"face-grin-wide\",\n    \"face-grin-wink\",\n    \"face-grin\",\n    \"face-hand-over-mouth\",\n    \"face-hand-peeking\",\n    \"face-hand-yawn\",\n    \"face-head-bandage\",\n    \"face-holding-back-tears\",\n    \"face-hushed\",\n    \"face-icicles\",\n    \"face-kiss-beam\",\n    \"face-kiss-closed-eyes\",\n    \"face-kiss-wink-heart\",\n    \"face-kiss\",\n    \"face-laugh-beam\",\n    \"face-laugh-squint\",\n    \"face-laugh-wink\",\n    \"face-laugh\",\n    \"face-lying\",\n    \"face-mask\",\n    \"face-meh-blank\",\n    \"face-meh\",\n    \"face-melting\",\n    \"face-monocle\",\n    \"face-nauseated\",\n    \"face-nose-steam\",\n    \"face-party\",\n    \"face-pensive\",\n    \"face-persevering\",\n    \"face-pleading\",\n    \"face-pouting\",\n    \"face-raised-eyebrow\",\n    \"face-relieved\",\n    \"face-rolling-eyes\",\n    \"face-sad-cry\",\n    \"face-sad-sweat\",\n    \"face-sad-tear\",\n    \"face-saluting\",\n    \"face-scream\",\n    \"face-shush\",\n    \"face-sleeping\",\n    \"face-sleepy\",\n    \"face-smile-beam\",\n    \"face-smile-halo\",\n    \"face-smile-hearts\",\n    \"face-smile-horns\",\n    \"face-smile-plus\",\n    \"face-smile-relaxed\",\n    \"face-smile-tear\",\n    \"face-smile-tongue\",\n    \"face-smile-upside-down\",\n    \"face-smile-wink\",\n    \"face-smile\",\n    \"face-smiling-hands\",\n    \"face-smirking\",\n    \"face-spiral-eyes\",\n    \"face-sunglasses\",\n    \"face-surprise\",\n    \"face-swear\",\n    \"face-thermometer\",\n    \"face-thinking\",\n    \"face-tired\",\n    \"face-tissue\",\n    \"face-tongue-money\",\n    \"face-tongue-sweat\",\n    \"face-unamused\",\n    \"face-viewfinder\",\n    \"face-vomit\",\n    \"face-weary\",\n    \"face-woozy\",\n    \"face-worried\",\n    \"face-zany\",\n    \"face-zipper\",\n    \"falafel\",\n    \"family-dress\",\n    \"family-pants\",\n    \"family\",\n    \"fan-table\",\n    \"fan\",\n    \"farm\",\n    \"faucet-drip\",\n    \"faucet\",\n    \"fax\",\n    \"feather-pointed\",\n    \"feather\",\n    \"fence\",\n    \"ferris-wheel\",\n    \"ferry\",\n    \"field-hockey-stick-ball\",\n    \"file-arrow-down\",\n    \"file-arrow-up\",\n    \"file-audio\",\n    \"file-binary\",\n    \"file-cad\",\n    \"file-certificate\",\n    \"file-chart-column\",\n    \"file-chart-pie\",\n    \"file-check\",\n    \"file-circle-check\",\n    \"file-circle-exclamation\",\n    \"file-circle-info\",\n    \"file-circle-minus\",\n    \"file-circle-plus\",\n    \"file-circle-question\",\n    \"file-circle-xmark\",\n    \"file-code\",\n    \"file-contract\",\n    \"file-csv\",\n    \"file-dashed-line\",\n    \"file-doc\",\n    \"file-eps\",\n    \"file-excel\",\n    \"file-exclamation\",\n    \"file-export\",\n    \"file-fragment\",\n    \"file-gif\",\n    \"file-half-dashed\",\n    \"file-heart\",\n    \"file-image\",\n    \"file-import\",\n    \"file-invoice-dollar\",\n    \"file-invoice\",\n    \"file-jpg\",\n    \"file-lines\",\n    \"file-lock\",\n    \"file-magnifying-glass\",\n    \"file-medical\",\n    \"file-minus\",\n    \"file-mov\",\n    \"file-mp3\",\n    \"file-mp4\",\n    \"file-music\",\n    \"file-pdf\",\n    \"file-pen\",\n    \"file-plus-minus\",\n    \"file-plus\",\n    \"file-png\",\n    \"file-powerpoint\",\n    \"file-ppt\",\n    \"file-prescription\",\n    \"file-shield\",\n    \"file-signature\",\n    \"file-slash\",\n    \"file-spreadsheet\",\n    \"file-svg\",\n    \"file-user\",\n    \"file-vector\",\n    \"file-video\",\n    \"file-waveform\",\n    \"file-word\",\n    \"file-xls\",\n    \"file-xmark\",\n    \"file-xml\",\n    \"file-zip\",\n    \"file-zipper\",\n    \"file\",\n    \"files-medical\",\n    \"files\",\n    \"fill-drip\",\n    \"fill\",\n    \"film-canister\",\n    \"film-simple\",\n    \"film-slash\",\n    \"film\",\n    \"films\",\n    \"filter-circle-dollar\",\n    \"filter-circle-xmark\",\n    \"filter-list\",\n    \"filter-slash\",\n    \"filter\",\n    \"filters\",\n    \"fingerprint\",\n    \"fire-burner\",\n    \"fire-extinguisher\",\n    \"fire-flame-curved\",\n    \"fire-flame-simple\",\n    \"fire-flame\",\n    \"fire-hydrant\",\n    \"fire-smoke\",\n    \"fire\",\n    \"fireplace\",\n    \"fish-bones\",\n    \"fish-cooked\",\n    \"fish-fins\",\n    \"fish\",\n    \"fishing-rod\",\n    \"flag-checkered\",\n    \"flag-pennant\",\n    \"flag-swallowtail\",\n    \"flag-usa\",\n    \"flag\",\n    \"flashlight\",\n    \"flask-gear\",\n    \"flask-round-poison\",\n    \"flask-round-potion\",\n    \"flask-vial\",\n    \"flask\",\n    \"flatbread-stuffed\",\n    \"flatbread\",\n    \"floppy-disk-circle-arrow-right\",\n    \"floppy-disk-circle-xmark\",\n    \"floppy-disk-pen\",\n    \"floppy-disk\",\n    \"floppy-disks\",\n    \"florin-sign\",\n    \"flower-daffodil\",\n    \"flower-tulip\",\n    \"flower\",\n    \"flute\",\n    \"flux-capacitor\",\n    \"flying-disc\",\n    \"folder-arrow-down\",\n    \"folder-arrow-up\",\n    \"folder-bookmark\",\n    \"folder-check\",\n    \"folder-closed\",\n    \"folder-gear\",\n    \"folder-grid\",\n    \"folder-heart\",\n    \"folder-image\",\n    \"folder-magnifying-glass\",\n    \"folder-medical\",\n    \"folder-minus\",\n    \"folder-music\",\n    \"folder-open\",\n    \"folder-plus\",\n    \"folder-tree\",\n    \"folder-user\",\n    \"folder-xmark\",\n    \"folder\",\n    \"folders\",\n    \"fondue-pot\",\n    \"font-awesome\",\n    \"font-case\",\n    \"font\",\n    \"football-helmet\",\n    \"football\",\n    \"fork-knife\",\n    \"fork\",\n    \"forklift\",\n    \"fort\",\n    \"forward-fast\",\n    \"forward-step\",\n    \"forward\",\n    \"frame\",\n    \"franc-sign\",\n    \"french-fries\",\n    \"frog\",\n    \"function\",\n    \"futbol\",\n    \"g\",\n    \"galaxy\",\n    \"gallery-thumbnails\",\n    \"game-board-simple\",\n    \"game-board\",\n    \"game-console-handheld-crank\",\n    \"game-console-handheld\",\n    \"gamepad-modern\",\n    \"gamepad\",\n    \"garage-car\",\n    \"garage-open\",\n    \"garage\",\n    \"garlic\",\n    \"gas-pump-slash\",\n    \"gas-pump\",\n    \"gauge-circle-bolt\",\n    \"gauge-circle-minus\",\n    \"gauge-circle-plus\",\n    \"gauge-high\",\n    \"gauge-low\",\n    \"gauge-max\",\n    \"gauge-min\",\n    \"gauge-simple-high\",\n    \"gauge-simple-low\",\n    \"gauge-simple-max\",\n    \"gauge-simple-min\",\n    \"gauge-simple\",\n    \"gauge\",\n    \"gavel\",\n    \"gear-code\",\n    \"gear-complex-code\",\n    \"gear-complex\",\n    \"gear\",\n    \"gears\",\n    \"gem\",\n    \"genderless\",\n    \"ghost\",\n    \"gif\",\n    \"gift-card\",\n    \"gift\",\n    \"gifts\",\n    \"gingerbread-man\",\n    \"glass-citrus\",\n    \"glass-empty\",\n    \"glass-half\",\n    \"glass-water-droplet\",\n    \"glass-water\",\n    \"glass\",\n    \"glasses-round\",\n    \"glasses\",\n    \"globe-pointer\",\n    \"globe-snow\",\n    \"globe-stand\",\n    \"globe-wifi\",\n    \"globe\",\n    \"goal-net\",\n    \"golf-ball-tee\",\n    \"golf-club\",\n    \"golf-flag-hole\",\n    \"gopuram\",\n    \"graduation-cap\",\n    \"gramophone\",\n    \"grapes\",\n    \"grate-droplet\",\n    \"grate\",\n    \"greater-than-equal\",\n    \"greater-than\",\n    \"grid-2-plus\",\n    \"grid-2\",\n    \"grid-4\",\n    \"grid-5\",\n    \"grid-dividers\",\n    \"grid-horizontal\",\n    \"grid-round-2-plus\",\n    \"grid-round-2\",\n    \"grid-round-4\",\n    \"grid-round-5\",\n    \"grid-round\",\n    \"grid\",\n    \"grill-fire\",\n    \"grill-hot\",\n    \"grill\",\n    \"grip-dots-vertical\",\n    \"grip-dots\",\n    \"grip-lines-vertical\",\n    \"grip-lines\",\n    \"grip-vertical\",\n    \"grip\",\n    \"group-arrows-rotate\",\n    \"guarani-sign\",\n    \"guitar-electric\",\n    \"guitar\",\n    \"guitars\",\n    \"gun-slash\",\n    \"gun-squirt\",\n    \"gun\",\n    \"h\",\n    \"h1\",\n    \"h2\",\n    \"h3\",\n    \"h4\",\n    \"h5\",\n    \"h6\",\n    \"hammer-brush\",\n    \"hammer-crash\",\n    \"hammer-war\",\n    \"hammer\",\n    \"hamsa\",\n    \"hand-back-fist\",\n    \"hand-back-point-down\",\n    \"hand-back-point-left\",\n    \"hand-back-point-ribbon\",\n    \"hand-back-point-right\",\n    \"hand-back-point-up\",\n    \"hand-dots\",\n    \"hand-fingers-crossed\",\n    \"hand-fist\",\n    \"hand-heart\",\n    \"hand-holding-box\",\n    \"hand-holding-circle-dollar\",\n    \"hand-holding-dollar\",\n    \"hand-holding-droplet\",\n    \"hand-holding-hand\",\n    \"hand-holding-heart\",\n    \"hand-holding-magic\",\n    \"hand-holding-medical\",\n    \"hand-holding-seedling\",\n    \"hand-holding-skull\",\n    \"hand-holding\",\n    \"hand-horns\",\n    \"hand-lizard\",\n    \"hand-love\",\n    \"hand-middle-finger\",\n    \"hand-peace\",\n    \"hand-point-down\",\n    \"hand-point-left\",\n    \"hand-point-ribbon\",\n    \"hand-point-right\",\n    \"hand-point-up\",\n    \"hand-pointer\",\n    \"hand-scissors\",\n    \"hand-sparkles\",\n    \"hand-spock\",\n    \"hand-wave\",\n    \"hand\",\n    \"handcuffs\",\n    \"hands-asl-interpreting\",\n    \"hands-bound\",\n    \"hands-bubbles\",\n    \"hands-clapping\",\n    \"hands-holding-child\",\n    \"hands-holding-circle\",\n    \"hands-holding-diamond\",\n    \"hands-holding-dollar\",\n    \"hands-holding-heart\",\n    \"hands-holding\",\n    \"hands-praying\",\n    \"hands\",\n    \"handshake-angle\",\n    \"handshake-simple-slash\",\n    \"handshake-simple\",\n    \"handshake-slash\",\n    \"handshake\",\n    \"hanukiah\",\n    \"hard-drive\",\n    \"hashtag-lock\",\n    \"hashtag\",\n    \"hat-beach\",\n    \"hat-chef\",\n    \"hat-cowboy-side\",\n    \"hat-cowboy\",\n    \"hat-santa\",\n    \"hat-winter\",\n    \"hat-witch\",\n    \"hat-wizard\",\n    \"head-side-brain\",\n    \"head-side-cough-slash\",\n    \"head-side-cough\",\n    \"head-side-gear\",\n    \"head-side-goggles\",\n    \"head-side-headphones\",\n    \"head-side-heart\",\n    \"head-side-mask\",\n    \"head-side-medical\",\n    \"head-side-virus\",\n    \"head-side\",\n    \"heading\",\n    \"headphones-simple\",\n    \"headphones\",\n    \"headset\",\n    \"heart-circle-bolt\",\n    \"heart-circle-check\",\n    \"heart-circle-exclamation\",\n    \"heart-circle-minus\",\n    \"heart-circle-plus\",\n    \"heart-circle-xmark\",\n    \"heart-crack\",\n    \"heart-half-stroke\",\n    \"heart-half\",\n    \"heart-pulse\",\n    \"heart\",\n    \"heat\",\n    \"helicopter-symbol\",\n    \"helicopter\",\n    \"helmet-battle\",\n    \"helmet-safety\",\n    \"helmet-un\",\n    \"hexagon-check\",\n    \"hexagon-divide\",\n    \"hexagon-exclamation\",\n    \"hexagon-image\",\n    \"hexagon-minus\",\n    \"hexagon-nodes-bolt\",\n    \"hexagon-nodes\",\n    \"hexagon-plus\",\n    \"hexagon-vertical-nft-slanted\",\n    \"hexagon-vertical-nft\",\n    \"hexagon-xmark\",\n    \"hexagon\",\n    \"high-definition\",\n    \"highlighter-line\",\n    \"highlighter\",\n    \"hill-avalanche\",\n    \"hill-rockslide\",\n    \"hippo\",\n    \"hockey-mask\",\n    \"hockey-puck\",\n    \"hockey-stick-puck\",\n    \"hockey-sticks\",\n    \"holly-berry\",\n    \"honey-pot\",\n    \"hood-cloak\",\n    \"horizontal-rule\",\n    \"horse-head\",\n    \"horse-saddle\",\n    \"horse\",\n    \"hose-reel\",\n    \"hose\",\n    \"hospital-user\",\n    \"hospital\",\n    \"hospitals\",\n    \"hot-tub-person\",\n    \"hotdog\",\n    \"hotel\",\n    \"hourglass-clock\",\n    \"hourglass-end\",\n    \"hourglass-half\",\n    \"hourglass-start\",\n    \"hourglass\",\n    \"house-blank\",\n    \"house-building\",\n    \"house-chimney-blank\",\n    \"house-chimney-crack\",\n    \"house-chimney-heart\",\n    \"house-chimney-medical\",\n    \"house-chimney-user\",\n    \"house-chimney-window\",\n    \"house-chimney\",\n    \"house-circle-check\",\n    \"house-circle-exclamation\",\n    \"house-circle-xmark\",\n    \"house-crack\",\n    \"house-day\",\n    \"house-fire\",\n    \"house-flag\",\n    \"house-flood-water-circle-arrow-right\",\n    \"house-flood-water\",\n    \"house-heart\",\n    \"house-laptop\",\n    \"house-lock\",\n    \"house-medical-circle-check\",\n    \"house-medical-circle-exclamation\",\n    \"house-medical-circle-xmark\",\n    \"house-medical-flag\",\n    \"house-medical\",\n    \"house-night\",\n    \"house-person-leave\",\n    \"house-person-return\",\n    \"house-signal\",\n    \"house-tree\",\n    \"house-tsunami\",\n    \"house-turret\",\n    \"house-user\",\n    \"house-water\",\n    \"house-window\",\n    \"house\",\n    \"hryvnia-sign\",\n    \"hundred-points\",\n    \"hurricane\",\n    \"hydra\",\n    \"hyphen\",\n    \"i-cursor\",\n    \"i\",\n    \"ice-cream\",\n    \"ice-skate\",\n    \"icicles\",\n    \"icons\",\n    \"id-badge\",\n    \"id-card-clip\",\n    \"id-card\",\n    \"igloo\",\n    \"image-landscape\",\n    \"image-polaroid-user\",\n    \"image-polaroid\",\n    \"image-portrait\",\n    \"image-slash\",\n    \"image-user\",\n    \"image\",\n    \"images-user\",\n    \"images\",\n    \"inbox-full\",\n    \"inbox-in\",\n    \"inbox-out\",\n    \"inbox\",\n    \"inboxes\",\n    \"indent\",\n    \"indian-rupee-sign\",\n    \"industry-windows\",\n    \"industry\",\n    \"infinity\",\n    \"info\",\n    \"inhaler\",\n    \"input-numeric\",\n    \"input-pipe\",\n    \"input-text\",\n    \"integral\",\n    \"interrobang\",\n    \"intersection\",\n    \"island-tropical\",\n    \"italic\",\n    \"j\",\n    \"jack-o-lantern\",\n    \"jar-wheat\",\n    \"jar\",\n    \"jedi\",\n    \"jet-fighter-up\",\n    \"jet-fighter\",\n    \"joint\",\n    \"joystick\",\n    \"jug-bottle\",\n    \"jug-detergent\",\n    \"jug\",\n    \"k\",\n    \"kaaba\",\n    \"kazoo\",\n    \"kerning\",\n    \"key-skeleton-left-right\",\n    \"key-skeleton\",\n    \"key\",\n    \"keyboard-brightness-low\",\n    \"keyboard-brightness\",\n    \"keyboard-down\",\n    \"keyboard-left\",\n    \"keyboard\",\n    \"keynote\",\n    \"khanda\",\n    \"kidneys\",\n    \"kip-sign\",\n    \"kit-medical\",\n    \"kitchen-set\",\n    \"kite\",\n    \"kiwi-bird\",\n    \"kiwi-fruit\",\n    \"knife-kitchen\",\n    \"knife\",\n    \"l\",\n    \"lacrosse-stick-ball\",\n    \"lacrosse-stick\",\n    \"lambda\",\n    \"lamp-desk\",\n    \"lamp-floor\",\n    \"lamp-street\",\n    \"lamp\",\n    \"land-mine-on\",\n    \"landmark-dome\",\n    \"landmark-flag\",\n    \"landmark-magnifying-glass\",\n    \"landmark\",\n    \"language\",\n    \"laptop-arrow-down\",\n    \"laptop-binary\",\n    \"laptop-code\",\n    \"laptop-file\",\n    \"laptop-medical\",\n    \"laptop-mobile\",\n    \"laptop-slash\",\n    \"laptop\",\n    \"lari-sign\",\n    \"lasso-sparkles\",\n    \"lasso\",\n    \"layer-group\",\n    \"layer-minus\",\n    \"layer-plus\",\n    \"leaf-heart\",\n    \"leaf-maple\",\n    \"leaf-oak\",\n    \"leaf\",\n    \"leafy-green\",\n    \"left-from-bracket\",\n    \"left-from-line\",\n    \"left-long-to-line\",\n    \"left-long\",\n    \"left-right\",\n    \"left-to-bracket\",\n    \"left-to-line\",\n    \"left\",\n    \"lemon\",\n    \"less-than-equal\",\n    \"less-than\",\n    \"life-ring\",\n    \"light-ceiling\",\n    \"light-emergency-on\",\n    \"light-emergency\",\n    \"light-switch-off\",\n    \"light-switch-on\",\n    \"light-switch\",\n    \"lightbulb-cfl-on\",\n    \"lightbulb-cfl\",\n    \"lightbulb-dollar\",\n    \"lightbulb-exclamation-on\",\n    \"lightbulb-exclamation\",\n    \"lightbulb-gear\",\n    \"lightbulb-message\",\n    \"lightbulb-on\",\n    \"lightbulb-slash\",\n    \"lightbulb\",\n    \"lighthouse\",\n    \"lights-holiday\",\n    \"line-columns\",\n    \"line-height\",\n    \"lines-leaning\",\n    \"link-horizontal-slash\",\n    \"link-horizontal\",\n    \"link-simple-slash\",\n    \"link-simple\",\n    \"link-slash\",\n    \"link\",\n    \"lips\",\n    \"lira-sign\",\n    \"list-check\",\n    \"list-dropdown\",\n    \"list-music\",\n    \"list-ol\",\n    \"list-radio\",\n    \"list-timeline\",\n    \"list-tree\",\n    \"list-ul\",\n    \"list\",\n    \"litecoin-sign\",\n    \"loader\",\n    \"lobster\",\n    \"location-arrow-up\",\n    \"location-arrow\",\n    \"location-check\",\n    \"location-crosshairs-slash\",\n    \"location-crosshairs\",\n    \"location-dot-slash\",\n    \"location-dot\",\n    \"location-exclamation\",\n    \"location-minus\",\n    \"location-pen\",\n    \"location-pin-lock\",\n    \"location-pin-slash\",\n    \"location-pin\",\n    \"location-plus\",\n    \"location-question\",\n    \"location-smile\",\n    \"location-xmark\",\n    \"lock-a\",\n    \"lock-hashtag\",\n    \"lock-keyhole-open\",\n    \"lock-keyhole\",\n    \"lock-open\",\n    \"lock\",\n    \"locust\",\n    \"lollipop\",\n    \"loveseat\",\n    \"luchador-mask\",\n    \"lungs-virus\",\n    \"lungs\",\n    \"m\",\n    \"mace\",\n    \"magnet\",\n    \"magnifying-glass-arrow-right\",\n    \"magnifying-glass-arrows-rotate\",\n    \"magnifying-glass-chart\",\n    \"magnifying-glass-dollar\",\n    \"magnifying-glass-location\",\n    \"magnifying-glass-minus\",\n    \"magnifying-glass-music\",\n    \"magnifying-glass-play\",\n    \"magnifying-glass-plus\",\n    \"magnifying-glass-waveform\",\n    \"magnifying-glass\",\n    \"mailbox-flag-up\",\n    \"mailbox\",\n    \"manat-sign\",\n    \"mandolin\",\n    \"mango\",\n    \"manhole\",\n    \"map-location-dot\",\n    \"map-location\",\n    \"map-pin\",\n    \"map\",\n    \"marker\",\n    \"mars-and-venus-burst\",\n    \"mars-and-venus\",\n    \"mars-double\",\n    \"mars-stroke-right\",\n    \"mars-stroke-up\",\n    \"mars-stroke\",\n    \"mars\",\n    \"martini-glass-citrus\",\n    \"martini-glass-empty\",\n    \"martini-glass\",\n    \"mask-face\",\n    \"mask-snorkel\",\n    \"mask-ventilator\",\n    \"mask\",\n    \"masks-theater\",\n    \"mattress-pillow\",\n    \"maximize\",\n    \"meat\",\n    \"medal\",\n    \"megaphone\",\n    \"melon-slice\",\n    \"melon\",\n    \"memo-circle-check\",\n    \"memo-circle-info\",\n    \"memo-pad\",\n    \"memo\",\n    \"memory\",\n    \"menorah\",\n    \"mercury\",\n    \"merge\",\n    \"message-arrow-down\",\n    \"message-arrow-up-right\",\n    \"message-arrow-up\",\n    \"message-bot\",\n    \"message-captions\",\n    \"message-check\",\n    \"message-code\",\n    \"message-dollar\",\n    \"message-dots\",\n    \"message-exclamation\",\n    \"message-heart\",\n    \"message-image\",\n    \"message-lines\",\n    \"message-medical\",\n    \"message-middle-top\",\n    \"message-middle\",\n    \"message-minus\",\n    \"message-music\",\n    \"message-pen\",\n    \"message-plus\",\n    \"message-question\",\n    \"message-quote\",\n    \"message-slash\",\n    \"message-smile\",\n    \"message-sms\",\n    \"message-text\",\n    \"message-xmark\",\n    \"message\",\n    \"messages-dollar\",\n    \"messages-question\",\n    \"messages\",\n    \"meteor\",\n    \"meter-bolt\",\n    \"meter-droplet\",\n    \"meter-fire\",\n    \"meter\",\n    \"microchip-ai\",\n    \"microchip\",\n    \"microphone-lines-slash\",\n    \"microphone-lines\",\n    \"microphone-slash\",\n    \"microphone-stand\",\n    \"microphone\",\n    \"microscope\",\n    \"microwave\",\n    \"mill-sign\",\n    \"minimize\",\n    \"minus\",\n    \"mistletoe\",\n    \"mitten\",\n    \"mobile-button\",\n    \"mobile-notch\",\n    \"mobile-retro\",\n    \"mobile-screen-button\",\n    \"mobile-screen\",\n    \"mobile-signal-out\",\n    \"mobile-signal\",\n    \"mobile\",\n    \"money-bill-1-wave\",\n    \"money-bill-1\",\n    \"money-bill-simple-wave\",\n    \"money-bill-simple\",\n    \"money-bill-transfer\",\n    \"money-bill-trend-up\",\n    \"money-bill-wave\",\n    \"money-bill-wheat\",\n    \"money-bill\",\n    \"money-bills-simple\",\n    \"money-bills\",\n    \"money-check-dollar-pen\",\n    \"money-check-dollar\",\n    \"money-check-pen\",\n    \"money-check\",\n    \"money-from-bracket\",\n    \"money-simple-from-bracket\",\n    \"monitor-waveform\",\n    \"monkey\",\n    \"monument\",\n    \"moon-cloud\",\n    \"moon-over-sun\",\n    \"moon-stars\",\n    \"moon\",\n    \"moped\",\n    \"mortar-pestle\",\n    \"mosque\",\n    \"mosquito-net\",\n    \"mosquito\",\n    \"motorcycle\",\n    \"mound\",\n    \"mountain-city\",\n    \"mountain-sun\",\n    \"mountain\",\n    \"mountains\",\n    \"mouse-field\",\n    \"mp3-player\",\n    \"mug-hot\",\n    \"mug-marshmallows\",\n    \"mug-saucer\",\n    \"mug-tea-saucer\",\n    \"mug-tea\",\n    \"mug\",\n    \"mushroom\",\n    \"music-magnifying-glass\",\n    \"music-note-slash\",\n    \"music-note\",\n    \"music-slash\",\n    \"music\",\n    \"mustache\",\n    \"n\",\n    \"naira-sign\",\n    \"narwhal\",\n    \"nesting-dolls\",\n    \"network-wired\",\n    \"neuter\",\n    \"newspaper\",\n    \"nfc-lock\",\n    \"nfc-magnifying-glass\",\n    \"nfc-pen\",\n    \"nfc-signal\",\n    \"nfc-slash\",\n    \"nfc-symbol\",\n    \"nfc-trash\",\n    \"nfc\",\n    \"nose\",\n    \"not-equal\",\n    \"notdef\",\n    \"note-medical\",\n    \"note-sticky\",\n    \"note\",\n    \"notebook\",\n    \"notes-medical\",\n    \"notes\",\n    \"o\",\n    \"object-exclude\",\n    \"object-group\",\n    \"object-intersect\",\n    \"object-subtract\",\n    \"object-ungroup\",\n    \"object-union\",\n    \"objects-align-bottom\",\n    \"objects-align-center-horizontal\",\n    \"objects-align-center-vertical\",\n    \"objects-align-left\",\n    \"objects-align-right\",\n    \"objects-align-top\",\n    \"objects-column\",\n    \"octagon-check\",\n    \"octagon-divide\",\n    \"octagon-exclamation\",\n    \"octagon-minus\",\n    \"octagon-plus\",\n    \"octagon-xmark\",\n    \"octagon\",\n    \"octopus\",\n    \"oil-can-drip\",\n    \"oil-can\",\n    \"oil-temperature\",\n    \"oil-well\",\n    \"olive-branch\",\n    \"olive\",\n    \"om\",\n    \"omega\",\n    \"onion\",\n    \"option\",\n    \"ornament\",\n    \"otter\",\n    \"outdent\",\n    \"outlet\",\n    \"oven\",\n    \"overline\",\n    \"p\",\n    \"page-caret-down\",\n    \"page-caret-up\",\n    \"page\",\n    \"pager\",\n    \"paint-roller\",\n    \"paintbrush-fine\",\n    \"paintbrush-pencil\",\n    \"paintbrush\",\n    \"palette\",\n    \"pallet-box\",\n    \"pallet-boxes\",\n    \"pallet\",\n    \"pan-food\",\n    \"pan-frying\",\n    \"pancakes\",\n    \"panel-ews\",\n    \"panel-fire\",\n    \"panorama\",\n    \"paper-plane-top\",\n    \"paper-plane\",\n    \"paperclip-vertical\",\n    \"paperclip\",\n    \"parachute-box\",\n    \"paragraph-left\",\n    \"paragraph\",\n    \"party-bell\",\n    \"party-horn\",\n    \"passport\",\n    \"paste\",\n    \"pause\",\n    \"paw-claws\",\n    \"paw-simple\",\n    \"paw\",\n    \"peace\",\n    \"peach\",\n    \"peanut\",\n    \"peanuts\",\n    \"peapod\",\n    \"pear\",\n    \"pedestal\",\n    \"pegasus\",\n    \"pen-circle\",\n    \"pen-clip-slash\",\n    \"pen-clip\",\n    \"pen-fancy-slash\",\n    \"pen-fancy\",\n    \"pen-field\",\n    \"pen-line\",\n    \"pen-nib-slash\",\n    \"pen-nib\",\n    \"pen-paintbrush\",\n    \"pen-ruler\",\n    \"pen-slash\",\n    \"pen-swirl\",\n    \"pen-to-square\",\n    \"pen\",\n    \"pencil-mechanical\",\n    \"pencil-slash\",\n    \"pencil\",\n    \"people-arrows\",\n    \"people-carry-box\",\n    \"people-dress-simple\",\n    \"people-dress\",\n    \"people-group\",\n    \"people-line\",\n    \"people-pants-simple\",\n    \"people-pants\",\n    \"people-pulling\",\n    \"people-robbery\",\n    \"people-roof\",\n    \"people-simple\",\n    \"people\",\n    \"pepper-hot\",\n    \"pepper\",\n    \"percent\",\n    \"period\",\n    \"person-arrow-down-to-line\",\n    \"person-arrow-up-from-line\",\n    \"person-biking-mountain\",\n    \"person-biking\",\n    \"person-booth\",\n    \"person-breastfeeding\",\n    \"person-burst\",\n    \"person-cane\",\n    \"person-carry-box\",\n    \"person-chalkboard\",\n    \"person-circle-check\",\n    \"person-circle-exclamation\",\n    \"person-circle-minus\",\n    \"person-circle-plus\",\n    \"person-circle-question\",\n    \"person-circle-xmark\",\n    \"person-digging\",\n    \"person-dolly-empty\",\n    \"person-dolly\",\n    \"person-dots-from-line\",\n    \"person-dress-burst\",\n    \"person-dress-fairy\",\n    \"person-dress-simple\",\n    \"person-dress\",\n    \"person-drowning\",\n    \"person-fairy\",\n    \"person-falling-burst\",\n    \"person-falling\",\n    \"person-from-portal\",\n    \"person-half-dress\",\n    \"person-harassing\",\n    \"person-hiking\",\n    \"person-military-pointing\",\n    \"person-military-rifle\",\n    \"person-military-to-person\",\n    \"person-pinball\",\n    \"person-praying\",\n    \"person-pregnant\",\n    \"person-rays\",\n    \"person-rifle\",\n    \"person-running-fast\",\n    \"person-running\",\n    \"person-seat-reclined\",\n    \"person-seat\",\n    \"person-shelter\",\n    \"person-sign\",\n    \"person-simple\",\n    \"person-skating\",\n    \"person-ski-jumping\",\n    \"person-ski-lift\",\n    \"person-skiing-nordic\",\n    \"person-skiing\",\n    \"person-sledding\",\n    \"person-snowboarding\",\n    \"person-snowmobiling\",\n    \"person-swimming\",\n    \"person-through-window\",\n    \"person-to-door\",\n    \"person-to-portal\",\n    \"person-walking-arrow-loop-left\",\n    \"person-walking-arrow-right\",\n    \"person-walking-dashed-line-arrow-right\",\n    \"person-walking-luggage\",\n    \"person-walking-with-cane\",\n    \"person-walking\",\n    \"person\",\n    \"peseta-sign\",\n    \"peso-sign\",\n    \"phone-arrow-down-left\",\n    \"phone-arrow-right\",\n    \"phone-arrow-up-right\",\n    \"phone-flip\",\n    \"phone-hangup\",\n    \"phone-intercom\",\n    \"phone-missed\",\n    \"phone-office\",\n    \"phone-plus\",\n    \"phone-rotary\",\n    \"phone-slash\",\n    \"phone-volume\",\n    \"phone-xmark\",\n    \"phone\",\n    \"photo-film-music\",\n    \"photo-film\",\n    \"pi\",\n    \"piano-keyboard\",\n    \"piano\",\n    \"pickaxe\",\n    \"pickleball\",\n    \"pie\",\n    \"pig\",\n    \"piggy-bank\",\n    \"pills\",\n    \"pinata\",\n    \"pinball\",\n    \"pineapple\",\n    \"pipe-circle-check\",\n    \"pipe-collar\",\n    \"pipe-section\",\n    \"pipe-smoking\",\n    \"pipe-valve\",\n    \"pipe\",\n    \"pizza-slice\",\n    \"pizza\",\n    \"place-of-worship\",\n    \"plane-arrival\",\n    \"plane-circle-check\",\n    \"plane-circle-exclamation\",\n    \"plane-circle-xmark\",\n    \"plane-departure\",\n    \"plane-engines\",\n    \"plane-lock\",\n    \"plane-prop\",\n    \"plane-slash\",\n    \"plane-tail\",\n    \"plane-up-slash\",\n    \"plane-up\",\n    \"plane\",\n    \"planet-moon\",\n    \"planet-ringed\",\n    \"plant-wilt\",\n    \"plate-utensils\",\n    \"plate-wheat\",\n    \"play-pause\",\n    \"play\",\n    \"plug-circle-bolt\",\n    \"plug-circle-check\",\n    \"plug-circle-exclamation\",\n    \"plug-circle-minus\",\n    \"plug-circle-plus\",\n    \"plug-circle-xmark\",\n    \"plug\",\n    \"plus-large\",\n    \"plus-minus\",\n    \"plus\",\n    \"podcast\",\n    \"podium-star\",\n    \"podium\",\n    \"police-box\",\n    \"poll-people\",\n    \"pompebled\",\n    \"poo-storm\",\n    \"poo\",\n    \"pool-8-ball\",\n    \"poop\",\n    \"popcorn\",\n    \"popsicle\",\n    \"pot-food\",\n    \"potato\",\n    \"power-off\",\n    \"prescription-bottle-medical\",\n    \"prescription-bottle-pill\",\n    \"prescription-bottle\",\n    \"prescription\",\n    \"presentation-screen\",\n    \"pretzel\",\n    \"print-magnifying-glass\",\n    \"print-slash\",\n    \"print\",\n    \"projector\",\n    \"pump-medical\",\n    \"pump-soap\",\n    \"pump\",\n    \"pumpkin\",\n    \"puzzle-piece-simple\",\n    \"puzzle-piece\",\n    \"puzzle\",\n    \"q\",\n    \"qrcode\",\n    \"question\",\n    \"quote-left\",\n    \"quote-right\",\n    \"quotes\",\n    \"r\",\n    \"rabbit-running\",\n    \"rabbit\",\n    \"raccoon\",\n    \"racquet\",\n    \"radar\",\n    \"radiation\",\n    \"radio-tuner\",\n    \"radio\",\n    \"rainbow\",\n    \"raindrops\",\n    \"ram\",\n    \"ramp-loading\",\n    \"ranking-star\",\n    \"raygun\",\n    \"receipt\",\n    \"record-vinyl\",\n    \"rectangle-ad\",\n    \"rectangle-barcode\",\n    \"rectangle-code\",\n    \"rectangle-history-circle-plus\",\n    \"rectangle-history-circle-user\",\n    \"rectangle-history\",\n    \"rectangle-list\",\n    \"rectangle-pro\",\n    \"rectangle-terminal\",\n    \"rectangle-vertical-history\",\n    \"rectangle-vertical\",\n    \"rectangle-wide\",\n    \"rectangle-xmark\",\n    \"rectangle\",\n    \"rectangles-mixed\",\n    \"recycle\",\n    \"reel\",\n    \"reflect-both\",\n    \"reflect-horizontal\",\n    \"reflect-vertical\",\n    \"refrigerator\",\n    \"registered\",\n    \"repeat-1\",\n    \"repeat\",\n    \"reply-all\",\n    \"reply-clock\",\n    \"reply\",\n    \"republican\",\n    \"restroom-simple\",\n    \"restroom\",\n    \"retweet\",\n    \"rhombus\",\n    \"ribbon\",\n    \"right-from-bracket\",\n    \"right-from-line\",\n    \"right-left-large\",\n    \"right-left\",\n    \"right-long-to-line\",\n    \"right-long\",\n    \"right-to-bracket\",\n    \"right-to-line\",\n    \"right\",\n    \"ring-diamond\",\n    \"ring\",\n    \"rings-wedding\",\n    \"road-barrier\",\n    \"road-bridge\",\n    \"road-circle-check\",\n    \"road-circle-exclamation\",\n    \"road-circle-xmark\",\n    \"road-lock\",\n    \"road-spikes\",\n    \"road\",\n    \"robot-astromech\",\n    \"robot\",\n    \"rocket-launch\",\n    \"rocket\",\n    \"roller-coaster\",\n    \"rotate-exclamation\",\n    \"rotate-left\",\n    \"rotate-reverse\",\n    \"rotate-right\",\n    \"rotate\",\n    \"route-highway\",\n    \"route-interstate\",\n    \"route\",\n    \"router\",\n    \"rss\",\n    \"ruble-sign\",\n    \"rug\",\n    \"rugby-ball\",\n    \"ruler-combined\",\n    \"ruler-horizontal\",\n    \"ruler-triangle\",\n    \"ruler-vertical\",\n    \"ruler\",\n    \"rupee-sign\",\n    \"rupiah-sign\",\n    \"rv\",\n    \"s\",\n    \"sack-dollar\",\n    \"sack-xmark\",\n    \"sack\",\n    \"sailboat\",\n    \"salad\",\n    \"salt-shaker\",\n    \"sandwich\",\n    \"satellite-dish\",\n    \"satellite\",\n    \"sausage\",\n    \"saxophone-fire\",\n    \"saxophone\",\n    \"scale-balanced\",\n    \"scale-unbalanced-flip\",\n    \"scale-unbalanced\",\n    \"scalpel-line-dashed\",\n    \"scalpel\",\n    \"scanner-gun\",\n    \"scanner-image\",\n    \"scanner-keyboard\",\n    \"scanner-touchscreen\",\n    \"scarecrow\",\n    \"scarf\",\n    \"school-circle-check\",\n    \"school-circle-exclamation\",\n    \"school-circle-xmark\",\n    \"school-flag\",\n    \"school-lock\",\n    \"school\",\n    \"scissors\",\n    \"screen-users\",\n    \"screencast\",\n    \"screwdriver-wrench\",\n    \"screwdriver\",\n    \"scribble\",\n    \"scroll-old\",\n    \"scroll-torah\",\n    \"scroll\",\n    \"scrubber\",\n    \"scythe\",\n    \"sd-card\",\n    \"sd-cards\",\n    \"seal-exclamation\",\n    \"seal-question\",\n    \"seal\",\n    \"seat-airline\",\n    \"section\",\n    \"seedling\",\n    \"semicolon\",\n    \"send-back\",\n    \"send-backward\",\n    \"sensor-cloud\",\n    \"sensor-fire\",\n    \"sensor-on\",\n    \"sensor-triangle-exclamation\",\n    \"sensor\",\n    \"server\",\n    \"shapes\",\n    \"share-all\",\n    \"share-from-square\",\n    \"share-nodes\",\n    \"share\",\n    \"sheep\",\n    \"sheet-plastic\",\n    \"shekel-sign\",\n    \"shelves-empty\",\n    \"shelves\",\n    \"shield-cat\",\n    \"shield-check\",\n    \"shield-cross\",\n    \"shield-dog\",\n    \"shield-exclamation\",\n    \"shield-halved\",\n    \"shield-heart\",\n    \"shield-keyhole\",\n    \"shield-minus\",\n    \"shield-plus\",\n    \"shield-quartered\",\n    \"shield-slash\",\n    \"shield-virus\",\n    \"shield-xmark\",\n    \"shield\",\n    \"ship\",\n    \"shirt-long-sleeve\",\n    \"shirt-running\",\n    \"shirt-tank-top\",\n    \"shirt\",\n    \"shish-kebab\",\n    \"shoe-prints\",\n    \"shop-lock\",\n    \"shop-slash\",\n    \"shop\",\n    \"shovel-snow\",\n    \"shovel\",\n    \"shower-down\",\n    \"shower\",\n    \"shredder\",\n    \"shrimp\",\n    \"shuffle\",\n    \"shutters\",\n    \"shuttle-space\",\n    \"shuttlecock\",\n    \"sickle\",\n    \"sidebar-flip\",\n    \"sidebar\",\n    \"sigma\",\n    \"sign-hanging\",\n    \"sign-post\",\n    \"sign-posts-wrench\",\n    \"sign-posts\",\n    \"signal-bars-fair\",\n    \"signal-bars-good\",\n    \"signal-bars-slash\",\n    \"signal-bars-weak\",\n    \"signal-bars\",\n    \"signal-fair\",\n    \"signal-good\",\n    \"signal-slash\",\n    \"signal-stream-slash\",\n    \"signal-stream\",\n    \"signal-strong\",\n    \"signal-weak\",\n    \"signal\",\n    \"signature-lock\",\n    \"signature-slash\",\n    \"signature\",\n    \"signs-post\",\n    \"sim-card\",\n    \"sim-cards\",\n    \"sink\",\n    \"siren-on\",\n    \"siren\",\n    \"sitemap\",\n    \"skeleton-ribs\",\n    \"skeleton\",\n    \"ski-boot-ski\",\n    \"ski-boot\",\n    \"skull-cow\",\n    \"skull-crossbones\",\n    \"skull\",\n    \"slash-back\",\n    \"slash-forward\",\n    \"slash\",\n    \"sleigh\",\n    \"slider\",\n    \"sliders-simple\",\n    \"sliders-up\",\n    \"sliders\",\n    \"slot-machine\",\n    \"smog\",\n    \"smoke\",\n    \"smoking\",\n    \"snake\",\n    \"snooze\",\n    \"snow-blowing\",\n    \"snowflake-droplets\",\n    \"snowflake\",\n    \"snowflakes\",\n    \"snowman-head\",\n    \"snowman\",\n    \"snowplow\",\n    \"soap\",\n    \"socks\",\n    \"soft-serve\",\n    \"solar-panel\",\n    \"solar-system\",\n    \"sort-down\",\n    \"sort-up\",\n    \"sort\",\n    \"spa\",\n    \"space-station-moon-construction\",\n    \"space-station-moon\",\n    \"spade\",\n    \"spaghetti-monster-flying\",\n    \"sparkle\",\n    \"sparkles\",\n    \"speaker\",\n    \"speakers\",\n    \"spell-check\",\n    \"spider-black-widow\",\n    \"spider-web\",\n    \"spider\",\n    \"spinner-scale\",\n    \"spinner-third\",\n    \"spinner\",\n    \"split\",\n    \"splotch\",\n    \"spoon\",\n    \"sportsball\",\n    \"spray-can-sparkles\",\n    \"spray-can\",\n    \"sprinkler-ceiling\",\n    \"sprinkler\",\n    \"square-0\",\n    \"square-1\",\n    \"square-2\",\n    \"square-3\",\n    \"square-4\",\n    \"square-5\",\n    \"square-6\",\n    \"square-7\",\n    \"square-8\",\n    \"square-9\",\n    \"square-a-lock\",\n    \"square-a\",\n    \"square-ampersand\",\n    \"square-arrow-down-left\",\n    \"square-arrow-down-right\",\n    \"square-arrow-down\",\n    \"square-arrow-left\",\n    \"square-arrow-right\",\n    \"square-arrow-up-left\",\n    \"square-arrow-up-right\",\n    \"square-arrow-up\",\n    \"square-b\",\n    \"square-binary\",\n    \"square-bolt\",\n    \"square-c\",\n    \"square-caret-down\",\n    \"square-caret-left\",\n    \"square-caret-right\",\n    \"square-caret-up\",\n    \"square-check\",\n    \"square-chevron-down\",\n    \"square-chevron-left\",\n    \"square-chevron-right\",\n    \"square-chevron-up\",\n    \"square-code\",\n    \"square-d\",\n    \"square-dashed-circle-plus\",\n    \"square-dashed\",\n    \"square-divide\",\n    \"square-dollar\",\n    \"square-down-left\",\n    \"square-down-right\",\n    \"square-down\",\n    \"square-e\",\n    \"square-ellipsis-vertical\",\n    \"square-ellipsis\",\n    \"square-envelope\",\n    \"square-exclamation\",\n    \"square-f\",\n    \"square-fragile\",\n    \"square-full\",\n    \"square-g\",\n    \"square-h\",\n    \"square-heart\",\n    \"square-i\",\n    \"square-info\",\n    \"square-j\",\n    \"square-k\",\n    \"square-kanban\",\n    \"square-l\",\n    \"square-left\",\n    \"square-list\",\n    \"square-m\",\n    \"square-minus\",\n    \"square-n\",\n    \"square-nfi\",\n    \"square-o\",\n    \"square-p\",\n    \"square-parking-slash\",\n    \"square-parking\",\n    \"square-pen\",\n    \"square-person-confined\",\n    \"square-phone-flip\",\n    \"square-phone-hangup\",\n    \"square-phone\",\n    \"square-plus\",\n    \"square-poll-horizontal\",\n    \"square-poll-vertical\",\n    \"square-q\",\n    \"square-quarters\",\n    \"square-question\",\n    \"square-quote\",\n    \"square-r\",\n    \"square-right\",\n    \"square-ring\",\n    \"square-root-variable\",\n    \"square-root\",\n    \"square-rss\",\n    \"square-s\",\n    \"square-share-nodes\",\n    \"square-sliders-vertical\",\n    \"square-sliders\",\n    \"square-small\",\n    \"square-star\",\n    \"square-t\",\n    \"square-terminal\",\n    \"square-this-way-up\",\n    \"square-u\",\n    \"square-up-left\",\n    \"square-up-right\",\n    \"square-up\",\n    \"square-user\",\n    \"square-v\",\n    \"square-virus\",\n    \"square-w\",\n    \"square-x\",\n    \"square-xmark\",\n    \"square-y\",\n    \"square-z\",\n    \"square\",\n    \"squid\",\n    \"squirrel\",\n    \"staff-snake\",\n    \"staff\",\n    \"stairs\",\n    \"stamp\",\n    \"standard-definition\",\n    \"stapler\",\n    \"star-and-crescent\",\n    \"star-christmas\",\n    \"star-exclamation\",\n    \"star-half-stroke\",\n    \"star-half\",\n    \"star-of-david\",\n    \"star-of-life\",\n    \"star-sharp-half-stroke\",\n    \"star-sharp-half\",\n    \"star-sharp\",\n    \"star-shooting\",\n    \"star\",\n    \"starfighter-twin-ion-engine-advanced\",\n    \"starfighter-twin-ion-engine\",\n    \"starfighter\",\n    \"stars\",\n    \"starship-freighter\",\n    \"starship\",\n    \"steak\",\n    \"steering-wheel\",\n    \"sterling-sign\",\n    \"stethoscope\",\n    \"stocking\",\n    \"stomach\",\n    \"stop\",\n    \"stopwatch-20\",\n    \"stopwatch\",\n    \"store-lock\",\n    \"store-slash\",\n    \"store\",\n    \"strawberry\",\n    \"street-view\",\n    \"stretcher\",\n    \"strikethrough\",\n    \"stroopwafel\",\n    \"subscript\",\n    \"subtitles-slash\",\n    \"subtitles\",\n    \"suitcase-medical\",\n    \"suitcase-rolling\",\n    \"suitcase\",\n    \"sun-bright\",\n    \"sun-cloud\",\n    \"sun-dust\",\n    \"sun-haze\",\n    \"sun-plant-wilt\",\n    \"sun\",\n    \"sunglasses\",\n    \"sunrise\",\n    \"sunset\",\n    \"superscript\",\n    \"sushi-roll\",\n    \"sushi\",\n    \"swap-arrows\",\n    \"swap\",\n    \"swatchbook\",\n    \"sword-laser-alt\",\n    \"sword-laser\",\n    \"sword\",\n    \"swords-laser\",\n    \"swords\",\n    \"symbols\",\n    \"synagogue\",\n    \"syringe\",\n    \"t-rex\",\n    \"t\",\n    \"table-cells-column-lock\",\n    \"table-cells-column-unlock\",\n    \"table-cells-large\",\n    \"table-cells-lock\",\n    \"table-cells-row-lock\",\n    \"table-cells-row-unlock\",\n    \"table-cells-unlock\",\n    \"table-cells\",\n    \"table-columns\",\n    \"table-layout\",\n    \"table-list\",\n    \"table-picnic\",\n    \"table-pivot\",\n    \"table-rows\",\n    \"table-tennis-paddle-ball\",\n    \"table-tree\",\n    \"table\",\n    \"tablet-button\",\n    \"tablet-rugged\",\n    \"tablet-screen-button\",\n    \"tablet-screen\",\n    \"tablet\",\n    \"tablets\",\n    \"tachograph-digital\",\n    \"taco\",\n    \"tag\",\n    \"tags\",\n    \"tally-1\",\n    \"tally-2\",\n    \"tally-3\",\n    \"tally-4\",\n    \"tally\",\n    \"tamale\",\n    \"tank-water\",\n    \"tape\",\n    \"tarp-droplet\",\n    \"tarp\",\n    \"taxi-bus\",\n    \"taxi\",\n    \"teddy-bear\",\n    \"teeth-open\",\n    \"teeth\",\n    \"telescope\",\n    \"temperature-arrow-down\",\n    \"temperature-arrow-up\",\n    \"temperature-empty\",\n    \"temperature-full\",\n    \"temperature-half\",\n    \"temperature-high\",\n    \"temperature-list\",\n    \"temperature-low\",\n    \"temperature-quarter\",\n    \"temperature-snow\",\n    \"temperature-sun\",\n    \"temperature-three-quarters\",\n    \"tenge-sign\",\n    \"tennis-ball\",\n    \"tent-arrow-down-to-line\",\n    \"tent-arrow-left-right\",\n    \"tent-arrow-turn-left\",\n    \"tent-arrows-down\",\n    \"tent-double-peak\",\n    \"tent\",\n    \"tents\",\n    \"terminal\",\n    \"text-height\",\n    \"text-size\",\n    \"text-slash\",\n    \"text-width\",\n    \"text\",\n    \"thermometer\",\n    \"theta\",\n    \"thought-bubble\",\n    \"thumbs-down\",\n    \"thumbs-up\",\n    \"thumbtack-slash\",\n    \"thumbtack\",\n    \"tick\",\n    \"ticket-airline\",\n    \"ticket-perforated\",\n    \"ticket-simple\",\n    \"ticket\",\n    \"tickets-airline\",\n    \"tickets-perforated\",\n    \"tickets-simple\",\n    \"tickets\",\n    \"tilde\",\n    \"timeline-arrow\",\n    \"timeline\",\n    \"timer\",\n    \"tire-flat\",\n    \"tire-pressure-warning\",\n    \"tire-rugged\",\n    \"tire\",\n    \"toggle-large-off\",\n    \"toggle-large-on\",\n    \"toggle-off\",\n    \"toggle-on\",\n    \"toilet-paper-blank-under\",\n    \"toilet-paper-blank\",\n    \"toilet-paper-check\",\n    \"toilet-paper-slash\",\n    \"toilet-paper-under-slash\",\n    \"toilet-paper-under\",\n    \"toilet-paper-xmark\",\n    \"toilet-paper\",\n    \"toilet-portable\",\n    \"toilet\",\n    \"toilets-portable\",\n    \"tomato\",\n    \"tombstone-blank\",\n    \"tombstone\",\n    \"toolbox\",\n    \"tooth\",\n    \"toothbrush\",\n    \"torii-gate\",\n    \"tornado\",\n    \"tower-broadcast\",\n    \"tower-cell\",\n    \"tower-control\",\n    \"tower-observation\",\n    \"tractor\",\n    \"trademark\",\n    \"traffic-cone\",\n    \"traffic-light-go\",\n    \"traffic-light-slow\",\n    \"traffic-light-stop\",\n    \"traffic-light\",\n    \"trailer\",\n    \"train-subway-tunnel\",\n    \"train-subway\",\n    \"train-track\",\n    \"train-tram\",\n    \"train-tunnel\",\n    \"train\",\n    \"transformer-bolt\",\n    \"transgender\",\n    \"transporter-1\",\n    \"transporter-2\",\n    \"transporter-3\",\n    \"transporter-4\",\n    \"transporter-5\",\n    \"transporter-6\",\n    \"transporter-7\",\n    \"transporter-empty\",\n    \"transporter\",\n    \"trash-arrow-up\",\n    \"trash-can-arrow-up\",\n    \"trash-can-check\",\n    \"trash-can-clock\",\n    \"trash-can-list\",\n    \"trash-can-plus\",\n    \"trash-can-slash\",\n    \"trash-can-undo\",\n    \"trash-can-xmark\",\n    \"trash-can\",\n    \"trash-check\",\n    \"trash-clock\",\n    \"trash-list\",\n    \"trash-plus\",\n    \"trash-slash\",\n    \"trash-undo\",\n    \"trash-xmark\",\n    \"trash\",\n    \"treasure-chest\",\n    \"tree-christmas\",\n    \"tree-city\",\n    \"tree-deciduous\",\n    \"tree-decorated\",\n    \"tree-large\",\n    \"tree-palm\",\n    \"tree\",\n    \"trees\",\n    \"triangle-exclamation\",\n    \"triangle-instrument\",\n    \"triangle-person-digging\",\n    \"triangle\",\n    \"tricycle-adult\",\n    \"tricycle\",\n    \"trillium\",\n    \"trophy-star\",\n    \"trophy\",\n    \"trowel-bricks\",\n    \"trowel\",\n    \"truck-arrow-right\",\n    \"truck-bolt\",\n    \"truck-clock\",\n    \"truck-container-empty\",\n    \"truck-container\",\n    \"truck-droplet\",\n    \"truck-fast\",\n    \"truck-field-un\",\n    \"truck-field\",\n    \"truck-fire\",\n    \"truck-flatbed\",\n    \"truck-front\",\n    \"truck-ladder\",\n    \"truck-medical\",\n    \"truck-monster\",\n    \"truck-moving\",\n    \"truck-pickup\",\n    \"truck-plane\",\n    \"truck-plow\",\n    \"truck-ramp-box\",\n    \"truck-ramp-couch\",\n    \"truck-ramp\",\n    \"truck-tow\",\n    \"truck-utensils\",\n    \"truck\",\n    \"trumpet\",\n    \"tty-answer\",\n    \"tty\",\n    \"tugrik-sign\",\n    \"turkey\",\n    \"turkish-lira-sign\",\n    \"turn-down-left\",\n    \"turn-down-right\",\n    \"turn-down\",\n    \"turn-left-down\",\n    \"turn-left-up\",\n    \"turn-left\",\n    \"turn-right\",\n    \"turn-up\",\n    \"turntable\",\n    \"turtle\",\n    \"tv-music\",\n    \"tv-retro\",\n    \"tv\",\n    \"typewriter\",\n    \"u\",\n    \"ufo-beam\",\n    \"ufo\",\n    \"umbrella-beach\",\n    \"umbrella-simple\",\n    \"umbrella\",\n    \"underline\",\n    \"unicorn\",\n    \"uniform-martial-arts\",\n    \"union\",\n    \"universal-access\",\n    \"unlock-keyhole\",\n    \"unlock\",\n    \"up-down-left-right\",\n    \"up-down\",\n    \"up-from-bracket\",\n    \"up-from-dotted-line\",\n    \"up-from-line\",\n    \"up-left\",\n    \"up-long\",\n    \"up-right-and-down-left-from-center\",\n    \"up-right-from-square\",\n    \"up-right\",\n    \"up-to-bracket\",\n    \"up-to-dotted-line\",\n    \"up-to-line\",\n    \"up\",\n    \"upload\",\n    \"usb-drive\",\n    \"user-alien\",\n    \"user-astronaut\",\n    \"user-beard-bolt\",\n    \"user-bounty-hunter\",\n    \"user-check\",\n    \"user-chef\",\n    \"user-clock\",\n    \"user-cowboy\",\n    \"user-crown\",\n    \"user-doctor-hair-long\",\n    \"user-doctor-hair\",\n    \"user-doctor-message\",\n    \"user-doctor\",\n    \"user-gear\",\n    \"user-graduate\",\n    \"user-group-crown\",\n    \"user-group-simple\",\n    \"user-group\",\n    \"user-hair-buns\",\n    \"user-hair-long\",\n    \"user-hair-mullet\",\n    \"user-hair\",\n    \"user-headset\",\n    \"user-helmet-safety\",\n    \"user-hoodie\",\n    \"user-injured\",\n    \"user-large-slash\",\n    \"user-large\",\n    \"user-lock\",\n    \"user-magnifying-glass\",\n    \"user-minus\",\n    \"user-music\",\n    \"user-ninja\",\n    \"user-nurse-hair-long\",\n    \"user-nurse-hair\",\n    \"user-nurse\",\n    \"user-pen\",\n    \"user-pilot-tie\",\n    \"user-pilot\",\n    \"user-plus\",\n    \"user-police-tie\",\n    \"user-police\",\n    \"user-robot-xmarks\",\n    \"user-robot\",\n    \"user-secret\",\n    \"user-shakespeare\",\n    \"user-shield\",\n    \"user-slash\",\n    \"user-tag\",\n    \"user-tie-hair-long\",\n    \"user-tie-hair\",\n    \"user-tie\",\n    \"user-unlock\",\n    \"user-visor\",\n    \"user-vneck-hair-long\",\n    \"user-vneck-hair\",\n    \"user-vneck\",\n    \"user-xmark\",\n    \"user\",\n    \"users-between-lines\",\n    \"users-gear\",\n    \"users-line\",\n    \"users-medical\",\n    \"users-rays\",\n    \"users-rectangle\",\n    \"users-slash\",\n    \"users-viewfinder\",\n    \"users\",\n    \"utensils-slash\",\n    \"utensils\",\n    \"utility-pole-double\",\n    \"utility-pole\",\n    \"v\",\n    \"vacuum-robot\",\n    \"vacuum\",\n    \"value-absolute\",\n    \"van-shuttle\",\n    \"vault\",\n    \"vector-circle\",\n    \"vector-polygon\",\n    \"vector-square\",\n    \"vent-damper\",\n    \"venus-double\",\n    \"venus-mars\",\n    \"venus\",\n    \"vest-patches\",\n    \"vest\",\n    \"vial-circle-check\",\n    \"vial-virus\",\n    \"vial\",\n    \"vials\",\n    \"video-arrow-down-left\",\n    \"video-arrow-up-right\",\n    \"video-plus\",\n    \"video-slash\",\n    \"video\",\n    \"vihara\",\n    \"violin\",\n    \"virus-covid-slash\",\n    \"virus-covid\",\n    \"virus-slash\",\n    \"virus\",\n    \"viruses\",\n    \"voicemail\",\n    \"volcano\",\n    \"volleyball\",\n    \"volume-high\",\n    \"volume-low\",\n    \"volume-off\",\n    \"volume-slash\",\n    \"volume-xmark\",\n    \"volume\",\n    \"vr-cardboard\",\n    \"w\",\n    \"waffle\",\n    \"wagon-covered\",\n    \"walker\",\n    \"walkie-talkie\",\n    \"wallet\",\n    \"wand-magic-sparkles\",\n    \"wand-magic\",\n    \"wand-sparkles\",\n    \"wand\",\n    \"warehouse-full\",\n    \"warehouse\",\n    \"washing-machine\",\n    \"watch-apple\",\n    \"watch-calculator\",\n    \"watch-fitness\",\n    \"watch-smart\",\n    \"watch\",\n    \"water-arrow-down\",\n    \"water-arrow-up\",\n    \"water-ladder\",\n    \"water\",\n    \"watermelon-slice\",\n    \"wave-pulse\",\n    \"wave-sine\",\n    \"wave-square\",\n    \"wave-triangle\",\n    \"wave\",\n    \"waveform-lines\",\n    \"waveform\",\n    \"waves-sine\",\n    \"web-awesome\",\n    \"webhook\",\n    \"weight-hanging\",\n    \"weight-scale\",\n    \"whale\",\n    \"wheat-awn-circle-exclamation\",\n    \"wheat-awn-slash\",\n    \"wheat-awn\",\n    \"wheat-slash\",\n    \"wheat\",\n    \"wheelchair-move\",\n    \"wheelchair\",\n    \"whiskey-glass-ice\",\n    \"whiskey-glass\",\n    \"whistle\",\n    \"wifi-exclamation\",\n    \"wifi-fair\",\n    \"wifi-slash\",\n    \"wifi-weak\",\n    \"wifi\",\n    \"wind-turbine\",\n    \"wind-warning\",\n    \"wind\",\n    \"window-flip\",\n    \"window-frame-open\",\n    \"window-frame\",\n    \"window-maximize\",\n    \"window-minimize\",\n    \"window-restore\",\n    \"window\",\n    \"windsock\",\n    \"wine-bottle\",\n    \"wine-glass-crack\",\n    \"wine-glass-empty\",\n    \"wine-glass\",\n    \"won-sign\",\n    \"worm\",\n    \"wreath-laurel\",\n    \"wreath\",\n    \"wrench-simple\",\n    \"wrench\",\n    \"x-ray\",\n    \"x\",\n    \"xmark-large\",\n    \"xmark-to-slot\",\n    \"xmark\",\n    \"xmarks-lines\",\n    \"y\",\n    \"yen-sign\",\n    \"yin-yang\",\n    \"z\"\n  ],\n  \"sharp-duotone-light\": [\n    \"0\",\n    \"00\",\n    \"1\",\n    \"2\",\n    \"3\",\n    \"360-degrees\",\n    \"4\",\n    \"5\",\n    \"6\",\n    \"7\",\n    \"8\",\n    \"9\",\n    \"a\",\n    \"abacus\",\n    \"accent-grave\",\n    \"acorn\",\n    \"address-book\",\n    \"address-card\",\n    \"air-conditioner\",\n    \"airplay\",\n    \"alarm-clock\",\n    \"alarm-exclamation\",\n    \"alarm-plus\",\n    \"alarm-snooze\",\n    \"album-circle-plus\",\n    \"album-circle-user\",\n    \"album-collection-circle-plus\",\n    \"album-collection-circle-user\",\n    \"album-collection\",\n    \"album\",\n    \"alicorn\",\n    \"alien-8bit\",\n    \"alien\",\n    \"align-center\",\n    \"align-justify\",\n    \"align-left\",\n    \"align-right\",\n    \"align-slash\",\n    \"alt\",\n    \"amp-guitar\",\n    \"ampersand\",\n    \"anchor-circle-check\",\n    \"anchor-circle-exclamation\",\n    \"anchor-circle-xmark\",\n    \"anchor-lock\",\n    \"anchor\",\n    \"angel\",\n    \"angle-90\",\n    \"angle-down\",\n    \"angle-left\",\n    \"angle-right\",\n    \"angle-up\",\n    \"angle\",\n    \"angles-down\",\n    \"angles-left\",\n    \"angles-right\",\n    \"angles-up-down\",\n    \"angles-up\",\n    \"ankh\",\n    \"ant\",\n    \"apartment\",\n    \"aperture\",\n    \"apostrophe\",\n    \"apple-core\",\n    \"apple-whole\",\n    \"archway\",\n    \"arrow-down-1-9\",\n    \"arrow-down-9-1\",\n    \"arrow-down-a-z\",\n    \"arrow-down-arrow-up\",\n    \"arrow-down-big-small\",\n    \"arrow-down-from-arc\",\n    \"arrow-down-from-bracket\",\n    \"arrow-down-from-dotted-line\",\n    \"arrow-down-from-line\",\n    \"arrow-down-left-and-arrow-up-right-to-center\",\n    \"arrow-down-left\",\n    \"arrow-down-long\",\n    \"arrow-down-right\",\n    \"arrow-down-short-wide\",\n    \"arrow-down-small-big\",\n    \"arrow-down-square-triangle\",\n    \"arrow-down-to-arc\",\n    \"arrow-down-to-bracket\",\n    \"arrow-down-to-dotted-line\",\n    \"arrow-down-to-line\",\n    \"arrow-down-to-square\",\n    \"arrow-down-triangle-square\",\n    \"arrow-down-up-across-line\",\n    \"arrow-down-up-lock\",\n    \"arrow-down-wide-short\",\n    \"arrow-down-z-a\",\n    \"arrow-down\",\n    \"arrow-left-from-arc\",\n    \"arrow-left-from-bracket\",\n    \"arrow-left-from-line\",\n    \"arrow-left-long-to-line\",\n    \"arrow-left-long\",\n    \"arrow-left-to-arc\",\n    \"arrow-left-to-bracket\",\n    \"arrow-left-to-line\",\n    \"arrow-left\",\n    \"arrow-pointer\",\n    \"arrow-progress\",\n    \"arrow-right-arrow-left\",\n    \"arrow-right-from-arc\",\n    \"arrow-right-from-bracket\",\n    \"arrow-right-from-line\",\n    \"arrow-right-long-to-line\",\n    \"arrow-right-long\",\n    \"arrow-right-to-arc\",\n    \"arrow-right-to-bracket\",\n    \"arrow-right-to-city\",\n    \"arrow-right-to-line\",\n    \"arrow-right\",\n    \"arrow-rotate-left\",\n    \"arrow-rotate-right\",\n    \"arrow-trend-down\",\n    \"arrow-trend-up\",\n    \"arrow-turn-down-left\",\n    \"arrow-turn-down-right\",\n    \"arrow-turn-down\",\n    \"arrow-turn-left-down\",\n    \"arrow-turn-left-up\",\n    \"arrow-turn-left\",\n    \"arrow-turn-right\",\n    \"arrow-turn-up\",\n    \"arrow-up-1-9\",\n    \"arrow-up-9-1\",\n    \"arrow-up-a-z\",\n    \"arrow-up-arrow-down\",\n    \"arrow-up-big-small\",\n    \"arrow-up-from-arc\",\n    \"arrow-up-from-bracket\",\n    \"arrow-up-from-dotted-line\",\n    \"arrow-up-from-ground-water\",\n    \"arrow-up-from-line\",\n    \"arrow-up-from-square\",\n    \"arrow-up-from-water-pump\",\n    \"arrow-up-left-from-circle\",\n    \"arrow-up-left\",\n    \"arrow-up-long\",\n    \"arrow-up-right-and-arrow-down-left-from-center\",\n    \"arrow-up-right-dots\",\n    \"arrow-up-right-from-square\",\n    \"arrow-up-right\",\n    \"arrow-up-short-wide\",\n    \"arrow-up-small-big\",\n    \"arrow-up-square-triangle\",\n    \"arrow-up-to-arc\",\n    \"arrow-up-to-bracket\",\n    \"arrow-up-to-dotted-line\",\n    \"arrow-up-to-line\",\n    \"arrow-up-triangle-square\",\n    \"arrow-up-wide-short\",\n    \"arrow-up-z-a\",\n    \"arrow-up\",\n    \"arrows-cross\",\n    \"arrows-down-to-line\",\n    \"arrows-down-to-people\",\n    \"arrows-from-dotted-line\",\n    \"arrows-from-line\",\n    \"arrows-left-right-to-line\",\n    \"arrows-left-right\",\n    \"arrows-maximize\",\n    \"arrows-minimize\",\n    \"arrows-repeat-1\",\n    \"arrows-repeat\",\n    \"arrows-retweet\",\n    \"arrows-rotate-reverse\",\n    \"arrows-rotate\",\n    \"arrows-spin\",\n    \"arrows-split-up-and-left\",\n    \"arrows-to-circle\",\n    \"arrows-to-dot\",\n    \"arrows-to-dotted-line\",\n    \"arrows-to-eye\",\n    \"arrows-to-line\",\n    \"arrows-turn-right\",\n    \"arrows-turn-to-dots\",\n    \"arrows-up-down-left-right\",\n    \"arrows-up-down\",\n    \"arrows-up-to-line\",\n    \"asterisk\",\n    \"at\",\n    \"atom-simple\",\n    \"atom\",\n    \"audio-description-slash\",\n    \"audio-description\",\n    \"austral-sign\",\n    \"avocado\",\n    \"award-simple\",\n    \"award\",\n    \"axe-battle\",\n    \"axe\",\n    \"b\",\n    \"baby-carriage\",\n    \"baby\",\n    \"backpack\",\n    \"backward-fast\",\n    \"backward-step\",\n    \"backward\",\n    \"bacon\",\n    \"bacteria\",\n    \"bacterium\",\n    \"badge-check\",\n    \"badge-dollar\",\n    \"badge-percent\",\n    \"badge-sheriff\",\n    \"badge\",\n    \"badger-honey\",\n    \"badminton\",\n    \"bag-seedling\",\n    \"bag-shopping-minus\",\n    \"bag-shopping-plus\",\n    \"bag-shopping\",\n    \"bagel\",\n    \"bags-shopping\",\n    \"baguette\",\n    \"bahai\",\n    \"baht-sign\",\n    \"ball-pile\",\n    \"balloon\",\n    \"balloons\",\n    \"ballot-check\",\n    \"ballot\",\n    \"ban-bug\",\n    \"ban-parking\",\n    \"ban-smoking\",\n    \"ban\",\n    \"banana\",\n    \"bandage\",\n    \"bangladeshi-taka-sign\",\n    \"banjo\",\n    \"barcode-read\",\n    \"barcode-scan\",\n    \"barcode\",\n    \"bars-filter\",\n    \"bars-progress\",\n    \"bars-sort\",\n    \"bars-staggered\",\n    \"bars\",\n    \"baseball-bat-ball\",\n    \"baseball\",\n    \"basket-shopping-minus\",\n    \"basket-shopping-plus\",\n    \"basket-shopping-simple\",\n    \"basket-shopping\",\n    \"basketball-hoop\",\n    \"basketball\",\n    \"bat\",\n    \"bath\",\n    \"battery-bolt\",\n    \"battery-empty\",\n    \"battery-exclamation\",\n    \"battery-full\",\n    \"battery-half\",\n    \"battery-low\",\n    \"battery-quarter\",\n    \"battery-slash\",\n    \"battery-three-quarters\",\n    \"bed-bunk\",\n    \"bed-empty\",\n    \"bed-front\",\n    \"bed-pulse\",\n    \"bed\",\n    \"bee\",\n    \"beer-mug-empty\",\n    \"beer-mug\",\n    \"bell-concierge\",\n    \"bell-exclamation\",\n    \"bell-on\",\n    \"bell-plus\",\n    \"bell-ring\",\n    \"bell-school-slash\",\n    \"bell-school\",\n    \"bell-slash\",\n    \"bell\",\n    \"bells\",\n    \"bench-tree\",\n    \"bezier-curve\",\n    \"bicycle\",\n    \"billboard\",\n    \"bin-bottles-recycle\",\n    \"bin-bottles\",\n    \"bin-recycle\",\n    \"binary-circle-check\",\n    \"binary-lock\",\n    \"binary-slash\",\n    \"binary\",\n    \"binoculars\",\n    \"biohazard\",\n    \"bird\",\n    \"bitcoin-sign\",\n    \"blanket-fire\",\n    \"blanket\",\n    \"blender-phone\",\n    \"blender\",\n    \"blinds-open\",\n    \"blinds-raised\",\n    \"blinds\",\n    \"block-brick-fire\",\n    \"block-brick\",\n    \"block-question\",\n    \"block-quote\",\n    \"block\",\n    \"blog\",\n    \"blueberries\",\n    \"bluetooth\",\n    \"bold\",\n    \"bolt-auto\",\n    \"bolt-lightning\",\n    \"bolt-slash\",\n    \"bolt\",\n    \"bomb\",\n    \"bone-break\",\n    \"bone\",\n    \"bong\",\n    \"book-arrow-right\",\n    \"book-arrow-up\",\n    \"book-atlas\",\n    \"book-bible\",\n    \"book-blank\",\n    \"book-bookmark\",\n    \"book-circle-arrow-right\",\n    \"book-circle-arrow-up\",\n    \"book-copy\",\n    \"book-font\",\n    \"book-heart\",\n    \"book-journal-whills\",\n    \"book-medical\",\n    \"book-open-cover\",\n    \"book-open-reader\",\n    \"book-open\",\n    \"book-quran\",\n    \"book-section\",\n    \"book-skull\",\n    \"book-sparkles\",\n    \"book-tanakh\",\n    \"book-user\",\n    \"book\",\n    \"bookmark-slash\",\n    \"bookmark\",\n    \"books-medical\",\n    \"books\",\n    \"boombox\",\n    \"boot-heeled\",\n    \"boot\",\n    \"booth-curtain\",\n    \"border-all\",\n    \"border-bottom-right\",\n    \"border-bottom\",\n    \"border-center-h\",\n    \"border-center-v\",\n    \"border-inner\",\n    \"border-left\",\n    \"border-none\",\n    \"border-outer\",\n    \"border-right\",\n    \"border-top-left\",\n    \"border-top\",\n    \"bore-hole\",\n    \"bottle-baby\",\n    \"bottle-droplet\",\n    \"bottle-water\",\n    \"bow-arrow\",\n    \"bowl-chopsticks-noodles\",\n    \"bowl-chopsticks\",\n    \"bowl-food\",\n    \"bowl-hot\",\n    \"bowl-rice\",\n    \"bowl-scoop\",\n    \"bowl-scoops\",\n    \"bowl-soft-serve\",\n    \"bowl-spoon\",\n    \"bowling-ball-pin\",\n    \"bowling-ball\",\n    \"bowling-pins\",\n    \"box-archive\",\n    \"box-ballot\",\n    \"box-check\",\n    \"box-circle-check\",\n    \"box-dollar\",\n    \"box-heart\",\n    \"box-open-full\",\n    \"box-open\",\n    \"box-taped\",\n    \"box-tissue\",\n    \"box\",\n    \"boxes-packing\",\n    \"boxes-stacked\",\n    \"boxing-glove\",\n    \"bracket-curly-right\",\n    \"bracket-curly\",\n    \"bracket-round-right\",\n    \"bracket-round\",\n    \"bracket-square-right\",\n    \"bracket-square\",\n    \"brackets-curly\",\n    \"brackets-round\",\n    \"brackets-square\",\n    \"braille\",\n    \"brain-arrow-curved-right\",\n    \"brain-circuit\",\n    \"brain\",\n    \"brake-warning\",\n    \"brazilian-real-sign\",\n    \"bread-loaf\",\n    \"bread-slice-butter\",\n    \"bread-slice\",\n    \"bridge-circle-check\",\n    \"bridge-circle-exclamation\",\n    \"bridge-circle-xmark\",\n    \"bridge-lock\",\n    \"bridge-suspension\",\n    \"bridge-water\",\n    \"bridge\",\n    \"briefcase-arrow-right\",\n    \"briefcase-blank\",\n    \"briefcase-medical\",\n    \"briefcase\",\n    \"brightness-low\",\n    \"brightness\",\n    \"bring-forward\",\n    \"bring-front\",\n    \"broccoli\",\n    \"broom-ball\",\n    \"broom-wide\",\n    \"broom\",\n    \"browser\",\n    \"browsers\",\n    \"brush\",\n    \"bucket\",\n    \"bug-slash\",\n    \"bug\",\n    \"bugs\",\n    \"building-circle-arrow-right\",\n    \"building-circle-check\",\n    \"building-circle-exclamation\",\n    \"building-circle-xmark\",\n    \"building-columns\",\n    \"building-flag\",\n    \"building-lock\",\n    \"building-magnifying-glass\",\n    \"building-memo\",\n    \"building-ngo\",\n    \"building-shield\",\n    \"building-un\",\n    \"building-user\",\n    \"building-wheat\",\n    \"building\",\n    \"buildings\",\n    \"bulldozer\",\n    \"bullhorn\",\n    \"bullseye-arrow\",\n    \"bullseye-pointer\",\n    \"bullseye\",\n    \"buoy-mooring\",\n    \"buoy\",\n    \"burger-cheese\",\n    \"burger-fries\",\n    \"burger-glass\",\n    \"burger-lettuce\",\n    \"burger-soda\",\n    \"burger\",\n    \"burrito\",\n    \"burst\",\n    \"bus-school\",\n    \"bus-simple\",\n    \"bus\",\n    \"business-time\",\n    \"butter\",\n    \"c\",\n    \"cabin\",\n    \"cabinet-filing\",\n    \"cable-car\",\n    \"cactus\",\n    \"caduceus\",\n    \"cake-candles\",\n    \"cake-slice\",\n    \"calculator-simple\",\n    \"calculator\",\n    \"calendar-arrow-down\",\n    \"calendar-arrow-up\",\n    \"calendar-check\",\n    \"calendar-circle-exclamation\",\n    \"calendar-circle-minus\",\n    \"calendar-circle-plus\",\n    \"calendar-circle-user\",\n    \"calendar-clock\",\n    \"calendar-day\",\n    \"calendar-days\",\n    \"calendar-exclamation\",\n    \"calendar-heart\",\n    \"calendar-image\",\n    \"calendar-lines-pen\",\n    \"calendar-lines\",\n    \"calendar-minus\",\n    \"calendar-pen\",\n    \"calendar-plus\",\n    \"calendar-range\",\n    \"calendar-star\",\n    \"calendar-users\",\n    \"calendar-week\",\n    \"calendar-xmark\",\n    \"calendar\",\n    \"calendars\",\n    \"camcorder\",\n    \"camera-cctv\",\n    \"camera-movie\",\n    \"camera-polaroid\",\n    \"camera-retro\",\n    \"camera-rotate\",\n    \"camera-security\",\n    \"camera-slash\",\n    \"camera-viewfinder\",\n    \"camera-web-slash\",\n    \"camera-web\",\n    \"camera\",\n    \"campfire\",\n    \"campground\",\n    \"can-food\",\n    \"candle-holder\",\n    \"candy-bar\",\n    \"candy-cane\",\n    \"candy-corn\",\n    \"candy\",\n    \"cannabis\",\n    \"cannon\",\n    \"capsules\",\n    \"car-battery\",\n    \"car-bolt\",\n    \"car-building\",\n    \"car-bump\",\n    \"car-burst\",\n    \"car-bus\",\n    \"car-circle-bolt\",\n    \"car-garage\",\n    \"car-mirrors\",\n    \"car-on\",\n    \"car-rear\",\n    \"car-side-bolt\",\n    \"car-side\",\n    \"car-tilt\",\n    \"car-tunnel\",\n    \"car-wash\",\n    \"car-wrench\",\n    \"car\",\n    \"caravan-simple\",\n    \"caravan\",\n    \"card-club\",\n    \"card-diamond\",\n    \"card-heart\",\n    \"card-spade\",\n    \"cards-blank\",\n    \"cards\",\n    \"caret-down\",\n    \"caret-left\",\n    \"caret-right\",\n    \"caret-up\",\n    \"carpool\",\n    \"carrot\",\n    \"cars\",\n    \"cart-arrow-down\",\n    \"cart-arrow-up\",\n    \"cart-circle-arrow-down\",\n    \"cart-circle-arrow-up\",\n    \"cart-circle-check\",\n    \"cart-circle-exclamation\",\n    \"cart-circle-plus\",\n    \"cart-circle-xmark\",\n    \"cart-flatbed-boxes\",\n    \"cart-flatbed-empty\",\n    \"cart-flatbed-suitcase\",\n    \"cart-flatbed\",\n    \"cart-minus\",\n    \"cart-plus\",\n    \"cart-shopping-fast\",\n    \"cart-shopping\",\n    \"cart-xmark\",\n    \"cash-register\",\n    \"cassette-betamax\",\n    \"cassette-tape\",\n    \"cassette-vhs\",\n    \"castle\",\n    \"cat-space\",\n    \"cat\",\n    \"cauldron\",\n    \"cedi-sign\",\n    \"cent-sign\",\n    \"certificate\",\n    \"chair-office\",\n    \"chair\",\n    \"chalkboard-user\",\n    \"chalkboard\",\n    \"champagne-glass\",\n    \"champagne-glasses\",\n    \"charging-station\",\n    \"chart-area\",\n    \"chart-bar\",\n    \"chart-bullet\",\n    \"chart-candlestick\",\n    \"chart-column\",\n    \"chart-diagram\",\n    \"chart-fft\",\n    \"chart-gantt\",\n    \"chart-kanban\",\n    \"chart-line-down\",\n    \"chart-line-up-down\",\n    \"chart-line-up\",\n    \"chart-line\",\n    \"chart-mixed-up-circle-currency\",\n    \"chart-mixed-up-circle-dollar\",\n    \"chart-mixed\",\n    \"chart-network\",\n    \"chart-pie-simple-circle-currency\",\n    \"chart-pie-simple-circle-dollar\",\n    \"chart-pie-simple\",\n    \"chart-pie\",\n    \"chart-pyramid\",\n    \"chart-radar\",\n    \"chart-scatter-3d\",\n    \"chart-scatter-bubble\",\n    \"chart-scatter\",\n    \"chart-simple-horizontal\",\n    \"chart-simple\",\n    \"chart-sine\",\n    \"chart-tree-map\",\n    \"chart-user\",\n    \"chart-waterfall\",\n    \"check-double\",\n    \"check-to-slot\",\n    \"check\",\n    \"cheese-swiss\",\n    \"cheese\",\n    \"cherries\",\n    \"chess-bishop-piece\",\n    \"chess-bishop\",\n    \"chess-board\",\n    \"chess-clock-flip\",\n    \"chess-clock\",\n    \"chess-king-piece\",\n    \"chess-king\",\n    \"chess-knight-piece\",\n    \"chess-knight\",\n    \"chess-pawn-piece\",\n    \"chess-pawn\",\n    \"chess-queen-piece\",\n    \"chess-queen\",\n    \"chess-rook-piece\",\n    \"chess-rook\",\n    \"chess\",\n    \"chestnut\",\n    \"chevron-down\",\n    \"chevron-left\",\n    \"chevron-right\",\n    \"chevron-up\",\n    \"chevrons-down\",\n    \"chevrons-left\",\n    \"chevrons-right\",\n    \"chevrons-up\",\n    \"chf-sign\",\n    \"child-combatant\",\n    \"child-dress\",\n    \"child-reaching\",\n    \"child\",\n    \"children\",\n    \"chimney\",\n    \"chopsticks\",\n    \"church\",\n    \"circle-0\",\n    \"circle-1\",\n    \"circle-2\",\n    \"circle-3\",\n    \"circle-4\",\n    \"circle-5\",\n    \"circle-6\",\n    \"circle-7\",\n    \"circle-8\",\n    \"circle-9\",\n    \"circle-a\",\n    \"circle-ampersand\",\n    \"circle-arrow-down-left\",\n    \"circle-arrow-down-right\",\n    \"circle-arrow-down\",\n    \"circle-arrow-left\",\n    \"circle-arrow-right\",\n    \"circle-arrow-up-left\",\n    \"circle-arrow-up-right\",\n    \"circle-arrow-up\",\n    \"circle-b\",\n    \"circle-bolt\",\n    \"circle-book-open\",\n    \"circle-bookmark\",\n    \"circle-c\",\n    \"circle-calendar\",\n    \"circle-camera\",\n    \"circle-caret-down\",\n    \"circle-caret-left\",\n    \"circle-caret-right\",\n    \"circle-caret-up\",\n    \"circle-check\",\n    \"circle-chevron-down\",\n    \"circle-chevron-left\",\n    \"circle-chevron-right\",\n    \"circle-chevron-up\",\n    \"circle-d\",\n    \"circle-dashed\",\n    \"circle-divide\",\n    \"circle-dollar-to-slot\",\n    \"circle-dollar\",\n    \"circle-dot\",\n    \"circle-down-left\",\n    \"circle-down-right\",\n    \"circle-down\",\n    \"circle-e\",\n    \"circle-ellipsis-vertical\",\n    \"circle-ellipsis\",\n    \"circle-envelope\",\n    \"circle-euro\",\n    \"circle-exclamation-check\",\n    \"circle-exclamation\",\n    \"circle-f\",\n    \"circle-g\",\n    \"circle-gf\",\n    \"circle-h\",\n    \"circle-half-stroke\",\n    \"circle-half\",\n    \"circle-heart\",\n    \"circle-i\",\n    \"circle-info\",\n    \"circle-j\",\n    \"circle-k\",\n    \"circle-l\",\n    \"circle-left\",\n    \"circle-location-arrow\",\n    \"circle-m\",\n    \"circle-microphone-lines\",\n    \"circle-microphone\",\n    \"circle-minus\",\n    \"circle-n\",\n    \"circle-nodes\",\n    \"circle-notch\",\n    \"circle-o\",\n    \"circle-p\",\n    \"circle-parking\",\n    \"circle-pause\",\n    \"circle-phone-flip\",\n    \"circle-phone-hangup\",\n    \"circle-phone\",\n    \"circle-play\",\n    \"circle-plus\",\n    \"circle-q\",\n    \"circle-quarter-stroke\",\n    \"circle-quarter\",\n    \"circle-quarters\",\n    \"circle-question\",\n    \"circle-r\",\n    \"circle-radiation\",\n    \"circle-right\",\n    \"circle-s\",\n    \"circle-small\",\n    \"circle-sort-down\",\n    \"circle-sort-up\",\n    \"circle-sort\",\n    \"circle-star\",\n    \"circle-sterling\",\n    \"circle-stop\",\n    \"circle-t\",\n    \"circle-three-quarters-stroke\",\n    \"circle-three-quarters\",\n    \"circle-trash\",\n    \"circle-u\",\n    \"circle-up-left\",\n    \"circle-up-right\",\n    \"circle-up\",\n    \"circle-user\",\n    \"circle-v\",\n    \"circle-video\",\n    \"circle-w\",\n    \"circle-waveform-lines\",\n    \"circle-wifi-circle-wifi\",\n    \"circle-wifi\",\n    \"circle-x\",\n    \"circle-xmark\",\n    \"circle-y\",\n    \"circle-yen\",\n    \"circle-z\",\n    \"circle\",\n    \"circles-overlap-3\",\n    \"circles-overlap\",\n    \"citrus-slice\",\n    \"citrus\",\n    \"city\",\n    \"clapperboard-play\",\n    \"clapperboard\",\n    \"clarinet\",\n    \"claw-marks\",\n    \"clipboard-check\",\n    \"clipboard-list-check\",\n    \"clipboard-list\",\n    \"clipboard-medical\",\n    \"clipboard-prescription\",\n    \"clipboard-question\",\n    \"clipboard-user\",\n    \"clipboard\",\n    \"clock-desk\",\n    \"clock-eight-thirty\",\n    \"clock-eight\",\n    \"clock-eleven-thirty\",\n    \"clock-eleven\",\n    \"clock-five-thirty\",\n    \"clock-five\",\n    \"clock-four-thirty\",\n    \"clock-nine-thirty\",\n    \"clock-nine\",\n    \"clock-one-thirty\",\n    \"clock-one\",\n    \"clock-rotate-left\",\n    \"clock-seven-thirty\",\n    \"clock-seven\",\n    \"clock-six-thirty\",\n    \"clock-six\",\n    \"clock-ten-thirty\",\n    \"clock-ten\",\n    \"clock-three-thirty\",\n    \"clock-three\",\n    \"clock-twelve-thirty\",\n    \"clock-twelve\",\n    \"clock-two-thirty\",\n    \"clock-two\",\n    \"clock\",\n    \"clone\",\n    \"closed-captioning-slash\",\n    \"closed-captioning\",\n    \"clothes-hanger\",\n    \"cloud-arrow-down\",\n    \"cloud-arrow-up\",\n    \"cloud-binary\",\n    \"cloud-bolt-moon\",\n    \"cloud-bolt-sun\",\n    \"cloud-bolt\",\n    \"cloud-check\",\n    \"cloud-drizzle\",\n    \"cloud-exclamation\",\n    \"cloud-fog\",\n    \"cloud-hail-mixed\",\n    \"cloud-hail\",\n    \"cloud-meatball\",\n    \"cloud-minus\",\n    \"cloud-moon-rain\",\n    \"cloud-moon\",\n    \"cloud-music\",\n    \"cloud-plus\",\n    \"cloud-question\",\n    \"cloud-rain\",\n    \"cloud-rainbow\",\n    \"cloud-showers-heavy\",\n    \"cloud-showers-water\",\n    \"cloud-showers\",\n    \"cloud-slash\",\n    \"cloud-sleet\",\n    \"cloud-snow\",\n    \"cloud-sun-rain\",\n    \"cloud-sun\",\n    \"cloud-word\",\n    \"cloud-xmark\",\n    \"cloud\",\n    \"clouds-moon\",\n    \"clouds-sun\",\n    \"clouds\",\n    \"clover\",\n    \"club\",\n    \"coconut\",\n    \"code-branch\",\n    \"code-commit\",\n    \"code-compare\",\n    \"code-fork\",\n    \"code-merge\",\n    \"code-pull-request-closed\",\n    \"code-pull-request-draft\",\n    \"code-pull-request\",\n    \"code-simple\",\n    \"code\",\n    \"coffee-bean\",\n    \"coffee-beans\",\n    \"coffee-pot\",\n    \"coffin-cross\",\n    \"coffin\",\n    \"coin-blank\",\n    \"coin-front\",\n    \"coin-vertical\",\n    \"coin\",\n    \"coins\",\n    \"colon-sign\",\n    \"colon\",\n    \"columns-3\",\n    \"comet\",\n    \"comma\",\n    \"command\",\n    \"comment-arrow-down\",\n    \"comment-arrow-up-right\",\n    \"comment-arrow-up\",\n    \"comment-captions\",\n    \"comment-check\",\n    \"comment-code\",\n    \"comment-dollar\",\n    \"comment-dots\",\n    \"comment-exclamation\",\n    \"comment-heart\",\n    \"comment-image\",\n    \"comment-lines\",\n    \"comment-medical\",\n    \"comment-middle-top\",\n    \"comment-middle\",\n    \"comment-minus\",\n    \"comment-music\",\n    \"comment-nodes\",\n    \"comment-pen\",\n    \"comment-plus\",\n    \"comment-question\",\n    \"comment-quote\",\n    \"comment-slash\",\n    \"comment-smile\",\n    \"comment-sms\",\n    \"comment-text\",\n    \"comment-xmark\",\n    \"comment\",\n    \"comments-dollar\",\n    \"comments-question-check\",\n    \"comments-question\",\n    \"comments\",\n    \"compact-disc\",\n    \"compass-drafting\",\n    \"compass-slash\",\n    \"compass\",\n    \"compress-wide\",\n    \"compress\",\n    \"computer-classic\",\n    \"computer-mouse-scrollwheel\",\n    \"computer-mouse\",\n    \"computer-speaker\",\n    \"computer\",\n    \"container-storage\",\n    \"conveyor-belt-arm\",\n    \"conveyor-belt-boxes\",\n    \"conveyor-belt-empty\",\n    \"conveyor-belt\",\n    \"cookie-bite\",\n    \"cookie\",\n    \"copy\",\n    \"copyright\",\n    \"corn\",\n    \"corner\",\n    \"couch\",\n    \"court-sport\",\n    \"cow\",\n    \"cowbell-circle-plus\",\n    \"cowbell\",\n    \"crab\",\n    \"crate-apple\",\n    \"crate-empty\",\n    \"credit-card-blank\",\n    \"credit-card-front\",\n    \"credit-card\",\n    \"cricket-bat-ball\",\n    \"croissant\",\n    \"crop-simple\",\n    \"crop\",\n    \"cross\",\n    \"crosshairs-simple\",\n    \"crosshairs\",\n    \"crow\",\n    \"crown\",\n    \"crutch\",\n    \"crutches\",\n    \"cruzeiro-sign\",\n    \"crystal-ball\",\n    \"cube\",\n    \"cubes-stacked\",\n    \"cubes\",\n    \"cucumber\",\n    \"cup-straw-swoosh\",\n    \"cup-straw\",\n    \"cup-togo\",\n    \"cupcake\",\n    \"curling-stone\",\n    \"custard\",\n    \"d\",\n    \"dagger\",\n    \"dash\",\n    \"database\",\n    \"deer-rudolph\",\n    \"deer\",\n    \"delete-left\",\n    \"delete-right\",\n    \"democrat\",\n    \"desktop-arrow-down\",\n    \"desktop\",\n    \"dharmachakra\",\n    \"diagram-cells\",\n    \"diagram-lean-canvas\",\n    \"diagram-nested\",\n    \"diagram-next\",\n    \"diagram-predecessor\",\n    \"diagram-previous\",\n    \"diagram-project\",\n    \"diagram-sankey\",\n    \"diagram-subtask\",\n    \"diagram-successor\",\n    \"diagram-venn\",\n    \"dial-high\",\n    \"dial-low\",\n    \"dial-max\",\n    \"dial-med-low\",\n    \"dial-med\",\n    \"dial-min\",\n    \"dial-off\",\n    \"dial\",\n    \"diamond-exclamation\",\n    \"diamond-half-stroke\",\n    \"diamond-half\",\n    \"diamond-turn-right\",\n    \"diamond\",\n    \"diamonds-4\",\n    \"dice-d10\",\n    \"dice-d12\",\n    \"dice-d20\",\n    \"dice-d4\",\n    \"dice-d6\",\n    \"dice-d8\",\n    \"dice-five\",\n    \"dice-four\",\n    \"dice-one\",\n    \"dice-six\",\n    \"dice-three\",\n    \"dice-two\",\n    \"dice\",\n    \"dinosaur\",\n    \"diploma\",\n    \"disc-drive\",\n    \"disease\",\n    \"display-arrow-down\",\n    \"display-chart-up-circle-currency\",\n    \"display-chart-up-circle-dollar\",\n    \"display-chart-up\",\n    \"display-code\",\n    \"display-medical\",\n    \"display-slash\",\n    \"display\",\n    \"distribute-spacing-horizontal\",\n    \"distribute-spacing-vertical\",\n    \"ditto\",\n    \"divide\",\n    \"dna\",\n    \"do-not-enter\",\n    \"dog-leashed\",\n    \"dog\",\n    \"dollar-sign\",\n    \"dolly-empty\",\n    \"dolly\",\n    \"dolphin\",\n    \"dong-sign\",\n    \"donut\",\n    \"door-closed\",\n    \"door-open\",\n    \"dove\",\n    \"down-from-bracket\",\n    \"down-from-dotted-line\",\n    \"down-from-line\",\n    \"down-left-and-up-right-to-center\",\n    \"down-left\",\n    \"down-long\",\n    \"down-right\",\n    \"down-to-bracket\",\n    \"down-to-dotted-line\",\n    \"down-to-line\",\n    \"down\",\n    \"download\",\n    \"dragon\",\n    \"draw-circle\",\n    \"draw-polygon\",\n    \"draw-square\",\n    \"dreidel\",\n    \"drone-front\",\n    \"drone\",\n    \"droplet-degree\",\n    \"droplet-percent\",\n    \"droplet-slash\",\n    \"droplet\",\n    \"drum-steelpan\",\n    \"drum\",\n    \"drumstick-bite\",\n    \"drumstick\",\n    \"dryer-heat\",\n    \"dryer\",\n    \"duck\",\n    \"dumbbell\",\n    \"dumpster-fire\",\n    \"dumpster\",\n    \"dungeon\",\n    \"e\",\n    \"ear-deaf\",\n    \"ear-listen\",\n    \"ear-muffs\",\n    \"ear\",\n    \"earth-africa\",\n    \"earth-americas\",\n    \"earth-asia\",\n    \"earth-europe\",\n    \"earth-oceania\",\n    \"eclipse\",\n    \"egg-fried\",\n    \"egg\",\n    \"eggplant\",\n    \"eject\",\n    \"elephant\",\n    \"elevator\",\n    \"ellipsis-stroke-vertical\",\n    \"ellipsis-stroke\",\n    \"ellipsis-vertical\",\n    \"ellipsis\",\n    \"empty-set\",\n    \"engine-warning\",\n    \"engine\",\n    \"envelope-circle-check\",\n    \"envelope-dot\",\n    \"envelope-open-dollar\",\n    \"envelope-open-text\",\n    \"envelope-open\",\n    \"envelope\",\n    \"envelopes-bulk\",\n    \"envelopes\",\n    \"equals\",\n    \"eraser\",\n    \"escalator\",\n    \"ethernet\",\n    \"euro-sign\",\n    \"excavator\",\n    \"exclamation\",\n    \"expand-wide\",\n    \"expand\",\n    \"explosion\",\n    \"eye-dropper-full\",\n    \"eye-dropper-half\",\n    \"eye-dropper\",\n    \"eye-evil\",\n    \"eye-low-vision\",\n    \"eye-slash\",\n    \"eye\",\n    \"eyes\",\n    \"f\",\n    \"face-angry-horns\",\n    \"face-angry\",\n    \"face-anguished\",\n    \"face-anxious-sweat\",\n    \"face-astonished\",\n    \"face-awesome\",\n    \"face-beam-hand-over-mouth\",\n    \"face-clouds\",\n    \"face-confounded\",\n    \"face-confused\",\n    \"face-cowboy-hat\",\n    \"face-diagonal-mouth\",\n    \"face-disappointed\",\n    \"face-disguise\",\n    \"face-dizzy\",\n    \"face-dotted\",\n    \"face-downcast-sweat\",\n    \"face-drooling\",\n    \"face-exhaling\",\n    \"face-explode\",\n    \"face-expressionless\",\n    \"face-eyes-xmarks\",\n    \"face-fearful\",\n    \"face-flushed\",\n    \"face-frown-open\",\n    \"face-frown-slight\",\n    \"face-frown\",\n    \"face-glasses\",\n    \"face-grimace\",\n    \"face-grin-beam-sweat\",\n    \"face-grin-beam\",\n    \"face-grin-hearts\",\n    \"face-grin-squint-tears\",\n    \"face-grin-squint\",\n    \"face-grin-stars\",\n    \"face-grin-tears\",\n    \"face-grin-tongue-squint\",\n    \"face-grin-tongue-wink\",\n    \"face-grin-tongue\",\n    \"face-grin-wide\",\n    \"face-grin-wink\",\n    \"face-grin\",\n    \"face-hand-over-mouth\",\n    \"face-hand-peeking\",\n    \"face-hand-yawn\",\n    \"face-head-bandage\",\n    \"face-holding-back-tears\",\n    \"face-hushed\",\n    \"face-icicles\",\n    \"face-kiss-beam\",\n    \"face-kiss-closed-eyes\",\n    \"face-kiss-wink-heart\",\n    \"face-kiss\",\n    \"face-laugh-beam\",\n    \"face-laugh-squint\",\n    \"face-laugh-wink\",\n    \"face-laugh\",\n    \"face-lying\",\n    \"face-mask\",\n    \"face-meh-blank\",\n    \"face-meh\",\n    \"face-melting\",\n    \"face-monocle\",\n    \"face-nauseated\",\n    \"face-nose-steam\",\n    \"face-party\",\n    \"face-pensive\",\n    \"face-persevering\",\n    \"face-pleading\",\n    \"face-pouting\",\n    \"face-raised-eyebrow\",\n    \"face-relieved\",\n    \"face-rolling-eyes\",\n    \"face-sad-cry\",\n    \"face-sad-sweat\",\n    \"face-sad-tear\",\n    \"face-saluting\",\n    \"face-scream\",\n    \"face-shush\",\n    \"face-sleeping\",\n    \"face-sleepy\",\n    \"face-smile-beam\",\n    \"face-smile-halo\",\n    \"face-smile-hearts\",\n    \"face-smile-horns\",\n    \"face-smile-plus\",\n    \"face-smile-relaxed\",\n    \"face-smile-tear\",\n    \"face-smile-tongue\",\n    \"face-smile-upside-down\",\n    \"face-smile-wink\",\n    \"face-smile\",\n    \"face-smiling-hands\",\n    \"face-smirking\",\n    \"face-spiral-eyes\",\n    \"face-sunglasses\",\n    \"face-surprise\",\n    \"face-swear\",\n    \"face-thermometer\",\n    \"face-thinking\",\n    \"face-tired\",\n    \"face-tissue\",\n    \"face-tongue-money\",\n    \"face-tongue-sweat\",\n    \"face-unamused\",\n    \"face-viewfinder\",\n    \"face-vomit\",\n    \"face-weary\",\n    \"face-woozy\",\n    \"face-worried\",\n    \"face-zany\",\n    \"face-zipper\",\n    \"falafel\",\n    \"family-dress\",\n    \"family-pants\",\n    \"family\",\n    \"fan-table\",\n    \"fan\",\n    \"farm\",\n    \"faucet-drip\",\n    \"faucet\",\n    \"fax\",\n    \"feather-pointed\",\n    \"feather\",\n    \"fence\",\n    \"ferris-wheel\",\n    \"ferry\",\n    \"field-hockey-stick-ball\",\n    \"file-arrow-down\",\n    \"file-arrow-up\",\n    \"file-audio\",\n    \"file-binary\",\n    \"file-cad\",\n    \"file-certificate\",\n    \"file-chart-column\",\n    \"file-chart-pie\",\n    \"file-check\",\n    \"file-circle-check\",\n    \"file-circle-exclamation\",\n    \"file-circle-info\",\n    \"file-circle-minus\",\n    \"file-circle-plus\",\n    \"file-circle-question\",\n    \"file-circle-xmark\",\n    \"file-code\",\n    \"file-contract\",\n    \"file-csv\",\n    \"file-dashed-line\",\n    \"file-doc\",\n    \"file-eps\",\n    \"file-excel\",\n    \"file-exclamation\",\n    \"file-export\",\n    \"file-fragment\",\n    \"file-gif\",\n    \"file-half-dashed\",\n    \"file-heart\",\n    \"file-image\",\n    \"file-import\",\n    \"file-invoice-dollar\",\n    \"file-invoice\",\n    \"file-jpg\",\n    \"file-lines\",\n    \"file-lock\",\n    \"file-magnifying-glass\",\n    \"file-medical\",\n    \"file-minus\",\n    \"file-mov\",\n    \"file-mp3\",\n    \"file-mp4\",\n    \"file-music\",\n    \"file-pdf\",\n    \"file-pen\",\n    \"file-plus-minus\",\n    \"file-plus\",\n    \"file-png\",\n    \"file-powerpoint\",\n    \"file-ppt\",\n    \"file-prescription\",\n    \"file-shield\",\n    \"file-signature\",\n    \"file-slash\",\n    \"file-spreadsheet\",\n    \"file-svg\",\n    \"file-user\",\n    \"file-vector\",\n    \"file-video\",\n    \"file-waveform\",\n    \"file-word\",\n    \"file-xls\",\n    \"file-xmark\",\n    \"file-xml\",\n    \"file-zip\",\n    \"file-zipper\",\n    \"file\",\n    \"files-medical\",\n    \"files\",\n    \"fill-drip\",\n    \"fill\",\n    \"film-canister\",\n    \"film-simple\",\n    \"film-slash\",\n    \"film\",\n    \"films\",\n    \"filter-circle-dollar\",\n    \"filter-circle-xmark\",\n    \"filter-list\",\n    \"filter-slash\",\n    \"filter\",\n    \"filters\",\n    \"fingerprint\",\n    \"fire-burner\",\n    \"fire-extinguisher\",\n    \"fire-flame-curved\",\n    \"fire-flame-simple\",\n    \"fire-flame\",\n    \"fire-hydrant\",\n    \"fire-smoke\",\n    \"fire\",\n    \"fireplace\",\n    \"fish-bones\",\n    \"fish-cooked\",\n    \"fish-fins\",\n    \"fish\",\n    \"fishing-rod\",\n    \"flag-checkered\",\n    \"flag-pennant\",\n    \"flag-swallowtail\",\n    \"flag-usa\",\n    \"flag\",\n    \"flashlight\",\n    \"flask-gear\",\n    \"flask-round-poison\",\n    \"flask-round-potion\",\n    \"flask-vial\",\n    \"flask\",\n    \"flatbread-stuffed\",\n    \"flatbread\",\n    \"floppy-disk-circle-arrow-right\",\n    \"floppy-disk-circle-xmark\",\n    \"floppy-disk-pen\",\n    \"floppy-disk\",\n    \"floppy-disks\",\n    \"florin-sign\",\n    \"flower-daffodil\",\n    \"flower-tulip\",\n    \"flower\",\n    \"flute\",\n    \"flux-capacitor\",\n    \"flying-disc\",\n    \"folder-arrow-down\",\n    \"folder-arrow-up\",\n    \"folder-bookmark\",\n    \"folder-check\",\n    \"folder-closed\",\n    \"folder-gear\",\n    \"folder-grid\",\n    \"folder-heart\",\n    \"folder-image\",\n    \"folder-magnifying-glass\",\n    \"folder-medical\",\n    \"folder-minus\",\n    \"folder-music\",\n    \"folder-open\",\n    \"folder-plus\",\n    \"folder-tree\",\n    \"folder-user\",\n    \"folder-xmark\",\n    \"folder\",\n    \"folders\",\n    \"fondue-pot\",\n    \"font-awesome\",\n    \"font-case\",\n    \"font\",\n    \"football-helmet\",\n    \"football\",\n    \"fork-knife\",\n    \"fork\",\n    \"forklift\",\n    \"fort\",\n    \"forward-fast\",\n    \"forward-step\",\n    \"forward\",\n    \"frame\",\n    \"franc-sign\",\n    \"french-fries\",\n    \"frog\",\n    \"function\",\n    \"futbol\",\n    \"g\",\n    \"galaxy\",\n    \"gallery-thumbnails\",\n    \"game-board-simple\",\n    \"game-board\",\n    \"game-console-handheld-crank\",\n    \"game-console-handheld\",\n    \"gamepad-modern\",\n    \"gamepad\",\n    \"garage-car\",\n    \"garage-open\",\n    \"garage\",\n    \"garlic\",\n    \"gas-pump-slash\",\n    \"gas-pump\",\n    \"gauge-circle-bolt\",\n    \"gauge-circle-minus\",\n    \"gauge-circle-plus\",\n    \"gauge-high\",\n    \"gauge-low\",\n    \"gauge-max\",\n    \"gauge-min\",\n    \"gauge-simple-high\",\n    \"gauge-simple-low\",\n    \"gauge-simple-max\",\n    \"gauge-simple-min\",\n    \"gauge-simple\",\n    \"gauge\",\n    \"gavel\",\n    \"gear-code\",\n    \"gear-complex-code\",\n    \"gear-complex\",\n    \"gear\",\n    \"gears\",\n    \"gem\",\n    \"genderless\",\n    \"ghost\",\n    \"gif\",\n    \"gift-card\",\n    \"gift\",\n    \"gifts\",\n    \"gingerbread-man\",\n    \"glass-citrus\",\n    \"glass-empty\",\n    \"glass-half\",\n    \"glass-water-droplet\",\n    \"glass-water\",\n    \"glass\",\n    \"glasses-round\",\n    \"glasses\",\n    \"globe-pointer\",\n    \"globe-snow\",\n    \"globe-stand\",\n    \"globe-wifi\",\n    \"globe\",\n    \"goal-net\",\n    \"golf-ball-tee\",\n    \"golf-club\",\n    \"golf-flag-hole\",\n    \"gopuram\",\n    \"graduation-cap\",\n    \"gramophone\",\n    \"grapes\",\n    \"grate-droplet\",\n    \"grate\",\n    \"greater-than-equal\",\n    \"greater-than\",\n    \"grid-2-plus\",\n    \"grid-2\",\n    \"grid-4\",\n    \"grid-5\",\n    \"grid-dividers\",\n    \"grid-horizontal\",\n    \"grid-round-2-plus\",\n    \"grid-round-2\",\n    \"grid-round-4\",\n    \"grid-round-5\",\n    \"grid-round\",\n    \"grid\",\n    \"grill-fire\",\n    \"grill-hot\",\n    \"grill\",\n    \"grip-dots-vertical\",\n    \"grip-dots\",\n    \"grip-lines-vertical\",\n    \"grip-lines\",\n    \"grip-vertical\",\n    \"grip\",\n    \"group-arrows-rotate\",\n    \"guarani-sign\",\n    \"guitar-electric\",\n    \"guitar\",\n    \"guitars\",\n    \"gun-slash\",\n    \"gun-squirt\",\n    \"gun\",\n    \"h\",\n    \"h1\",\n    \"h2\",\n    \"h3\",\n    \"h4\",\n    \"h5\",\n    \"h6\",\n    \"hammer-brush\",\n    \"hammer-crash\",\n    \"hammer-war\",\n    \"hammer\",\n    \"hamsa\",\n    \"hand-back-fist\",\n    \"hand-back-point-down\",\n    \"hand-back-point-left\",\n    \"hand-back-point-ribbon\",\n    \"hand-back-point-right\",\n    \"hand-back-point-up\",\n    \"hand-dots\",\n    \"hand-fingers-crossed\",\n    \"hand-fist\",\n    \"hand-heart\",\n    \"hand-holding-box\",\n    \"hand-holding-circle-dollar\",\n    \"hand-holding-dollar\",\n    \"hand-holding-droplet\",\n    \"hand-holding-hand\",\n    \"hand-holding-heart\",\n    \"hand-holding-magic\",\n    \"hand-holding-medical\",\n    \"hand-holding-seedling\",\n    \"hand-holding-skull\",\n    \"hand-holding\",\n    \"hand-horns\",\n    \"hand-lizard\",\n    \"hand-love\",\n    \"hand-middle-finger\",\n    \"hand-peace\",\n    \"hand-point-down\",\n    \"hand-point-left\",\n    \"hand-point-ribbon\",\n    \"hand-point-right\",\n    \"hand-point-up\",\n    \"hand-pointer\",\n    \"hand-scissors\",\n    \"hand-sparkles\",\n    \"hand-spock\",\n    \"hand-wave\",\n    \"hand\",\n    \"handcuffs\",\n    \"hands-asl-interpreting\",\n    \"hands-bound\",\n    \"hands-bubbles\",\n    \"hands-clapping\",\n    \"hands-holding-child\",\n    \"hands-holding-circle\",\n    \"hands-holding-diamond\",\n    \"hands-holding-dollar\",\n    \"hands-holding-heart\",\n    \"hands-holding\",\n    \"hands-praying\",\n    \"hands\",\n    \"handshake-angle\",\n    \"handshake-simple-slash\",\n    \"handshake-simple\",\n    \"handshake-slash\",\n    \"handshake\",\n    \"hanukiah\",\n    \"hard-drive\",\n    \"hashtag-lock\",\n    \"hashtag\",\n    \"hat-beach\",\n    \"hat-chef\",\n    \"hat-cowboy-side\",\n    \"hat-cowboy\",\n    \"hat-santa\",\n    \"hat-winter\",\n    \"hat-witch\",\n    \"hat-wizard\",\n    \"head-side-brain\",\n    \"head-side-cough-slash\",\n    \"head-side-cough\",\n    \"head-side-gear\",\n    \"head-side-goggles\",\n    \"head-side-headphones\",\n    \"head-side-heart\",\n    \"head-side-mask\",\n    \"head-side-medical\",\n    \"head-side-virus\",\n    \"head-side\",\n    \"heading\",\n    \"headphones-simple\",\n    \"headphones\",\n    \"headset\",\n    \"heart-circle-bolt\",\n    \"heart-circle-check\",\n    \"heart-circle-exclamation\",\n    \"heart-circle-minus\",\n    \"heart-circle-plus\",\n    \"heart-circle-xmark\",\n    \"heart-crack\",\n    \"heart-half-stroke\",\n    \"heart-half\",\n    \"heart-pulse\",\n    \"heart\",\n    \"heat\",\n    \"helicopter-symbol\",\n    \"helicopter\",\n    \"helmet-battle\",\n    \"helmet-safety\",\n    \"helmet-un\",\n    \"hexagon-check\",\n    \"hexagon-divide\",\n    \"hexagon-exclamation\",\n    \"hexagon-image\",\n    \"hexagon-minus\",\n    \"hexagon-nodes-bolt\",\n    \"hexagon-nodes\",\n    \"hexagon-plus\",\n    \"hexagon-vertical-nft-slanted\",\n    \"hexagon-vertical-nft\",\n    \"hexagon-xmark\",\n    \"hexagon\",\n    \"high-definition\",\n    \"highlighter-line\",\n    \"highlighter\",\n    \"hill-avalanche\",\n    \"hill-rockslide\",\n    \"hippo\",\n    \"hockey-mask\",\n    \"hockey-puck\",\n    \"hockey-stick-puck\",\n    \"hockey-sticks\",\n    \"holly-berry\",\n    \"honey-pot\",\n    \"hood-cloak\",\n    \"horizontal-rule\",\n    \"horse-head\",\n    \"horse-saddle\",\n    \"horse\",\n    \"hose-reel\",\n    \"hose\",\n    \"hospital-user\",\n    \"hospital\",\n    \"hospitals\",\n    \"hot-tub-person\",\n    \"hotdog\",\n    \"hotel\",\n    \"hourglass-clock\",\n    \"hourglass-end\",\n    \"hourglass-half\",\n    \"hourglass-start\",\n    \"hourglass\",\n    \"house-blank\",\n    \"house-building\",\n    \"house-chimney-blank\",\n    \"house-chimney-crack\",\n    \"house-chimney-heart\",\n    \"house-chimney-medical\",\n    \"house-chimney-user\",\n    \"house-chimney-window\",\n    \"house-chimney\",\n    \"house-circle-check\",\n    \"house-circle-exclamation\",\n    \"house-circle-xmark\",\n    \"house-crack\",\n    \"house-day\",\n    \"house-fire\",\n    \"house-flag\",\n    \"house-flood-water-circle-arrow-right\",\n    \"house-flood-water\",\n    \"house-heart\",\n    \"house-laptop\",\n    \"house-lock\",\n    \"house-medical-circle-check\",\n    \"house-medical-circle-exclamation\",\n    \"house-medical-circle-xmark\",\n    \"house-medical-flag\",\n    \"house-medical\",\n    \"house-night\",\n    \"house-person-leave\",\n    \"house-person-return\",\n    \"house-signal\",\n    \"house-tree\",\n    \"house-tsunami\",\n    \"house-turret\",\n    \"house-user\",\n    \"house-water\",\n    \"house-window\",\n    \"house\",\n    \"hryvnia-sign\",\n    \"hundred-points\",\n    \"hurricane\",\n    \"hydra\",\n    \"hyphen\",\n    \"i-cursor\",\n    \"i\",\n    \"ice-cream\",\n    \"ice-skate\",\n    \"icicles\",\n    \"icons\",\n    \"id-badge\",\n    \"id-card-clip\",\n    \"id-card\",\n    \"igloo\",\n    \"image-landscape\",\n    \"image-polaroid-user\",\n    \"image-polaroid\",\n    \"image-portrait\",\n    \"image-slash\",\n    \"image-user\",\n    \"image\",\n    \"images-user\",\n    \"images\",\n    \"inbox-full\",\n    \"inbox-in\",\n    \"inbox-out\",\n    \"inbox\",\n    \"inboxes\",\n    \"indent\",\n    \"indian-rupee-sign\",\n    \"industry-windows\",\n    \"industry\",\n    \"infinity\",\n    \"info\",\n    \"inhaler\",\n    \"input-numeric\",\n    \"input-pipe\",\n    \"input-text\",\n    \"integral\",\n    \"interrobang\",\n    \"intersection\",\n    \"island-tropical\",\n    \"italic\",\n    \"j\",\n    \"jack-o-lantern\",\n    \"jar-wheat\",\n    \"jar\",\n    \"jedi\",\n    \"jet-fighter-up\",\n    \"jet-fighter\",\n    \"joint\",\n    \"joystick\",\n    \"jug-bottle\",\n    \"jug-detergent\",\n    \"jug\",\n    \"k\",\n    \"kaaba\",\n    \"kazoo\",\n    \"kerning\",\n    \"key-skeleton-left-right\",\n    \"key-skeleton\",\n    \"key\",\n    \"keyboard-brightness-low\",\n    \"keyboard-brightness\",\n    \"keyboard-down\",\n    \"keyboard-left\",\n    \"keyboard\",\n    \"keynote\",\n    \"khanda\",\n    \"kidneys\",\n    \"kip-sign\",\n    \"kit-medical\",\n    \"kitchen-set\",\n    \"kite\",\n    \"kiwi-bird\",\n    \"kiwi-fruit\",\n    \"knife-kitchen\",\n    \"knife\",\n    \"l\",\n    \"lacrosse-stick-ball\",\n    \"lacrosse-stick\",\n    \"lambda\",\n    \"lamp-desk\",\n    \"lamp-floor\",\n    \"lamp-street\",\n    \"lamp\",\n    \"land-mine-on\",\n    \"landmark-dome\",\n    \"landmark-flag\",\n    \"landmark-magnifying-glass\",\n    \"landmark\",\n    \"language\",\n    \"laptop-arrow-down\",\n    \"laptop-binary\",\n    \"laptop-code\",\n    \"laptop-file\",\n    \"laptop-medical\",\n    \"laptop-mobile\",\n    \"laptop-slash\",\n    \"laptop\",\n    \"lari-sign\",\n    \"lasso-sparkles\",\n    \"lasso\",\n    \"layer-group\",\n    \"layer-minus\",\n    \"layer-plus\",\n    \"leaf-heart\",\n    \"leaf-maple\",\n    \"leaf-oak\",\n    \"leaf\",\n    \"leafy-green\",\n    \"left-from-bracket\",\n    \"left-from-line\",\n    \"left-long-to-line\",\n    \"left-long\",\n    \"left-right\",\n    \"left-to-bracket\",\n    \"left-to-line\",\n    \"left\",\n    \"lemon\",\n    \"less-than-equal\",\n    \"less-than\",\n    \"life-ring\",\n    \"light-ceiling\",\n    \"light-emergency-on\",\n    \"light-emergency\",\n    \"light-switch-off\",\n    \"light-switch-on\",\n    \"light-switch\",\n    \"lightbulb-cfl-on\",\n    \"lightbulb-cfl\",\n    \"lightbulb-dollar\",\n    \"lightbulb-exclamation-on\",\n    \"lightbulb-exclamation\",\n    \"lightbulb-gear\",\n    \"lightbulb-message\",\n    \"lightbulb-on\",\n    \"lightbulb-slash\",\n    \"lightbulb\",\n    \"lighthouse\",\n    \"lights-holiday\",\n    \"line-columns\",\n    \"line-height\",\n    \"lines-leaning\",\n    \"link-horizontal-slash\",\n    \"link-horizontal\",\n    \"link-simple-slash\",\n    \"link-simple\",\n    \"link-slash\",\n    \"link\",\n    \"lips\",\n    \"lira-sign\",\n    \"list-check\",\n    \"list-dropdown\",\n    \"list-music\",\n    \"list-ol\",\n    \"list-radio\",\n    \"list-timeline\",\n    \"list-tree\",\n    \"list-ul\",\n    \"list\",\n    \"litecoin-sign\",\n    \"loader\",\n    \"lobster\",\n    \"location-arrow-up\",\n    \"location-arrow\",\n    \"location-check\",\n    \"location-crosshairs-slash\",\n    \"location-crosshairs\",\n    \"location-dot-slash\",\n    \"location-dot\",\n    \"location-exclamation\",\n    \"location-minus\",\n    \"location-pen\",\n    \"location-pin-lock\",\n    \"location-pin-slash\",\n    \"location-pin\",\n    \"location-plus\",\n    \"location-question\",\n    \"location-smile\",\n    \"location-xmark\",\n    \"lock-a\",\n    \"lock-hashtag\",\n    \"lock-keyhole-open\",\n    \"lock-keyhole\",\n    \"lock-open\",\n    \"lock\",\n    \"locust\",\n    \"lollipop\",\n    \"loveseat\",\n    \"luchador-mask\",\n    \"lungs-virus\",\n    \"lungs\",\n    \"m\",\n    \"mace\",\n    \"magnet\",\n    \"magnifying-glass-arrow-right\",\n    \"magnifying-glass-arrows-rotate\",\n    \"magnifying-glass-chart\",\n    \"magnifying-glass-dollar\",\n    \"magnifying-glass-location\",\n    \"magnifying-glass-minus\",\n    \"magnifying-glass-music\",\n    \"magnifying-glass-play\",\n    \"magnifying-glass-plus\",\n    \"magnifying-glass-waveform\",\n    \"magnifying-glass\",\n    \"mailbox-flag-up\",\n    \"mailbox\",\n    \"manat-sign\",\n    \"mandolin\",\n    \"mango\",\n    \"manhole\",\n    \"map-location-dot\",\n    \"map-location\",\n    \"map-pin\",\n    \"map\",\n    \"marker\",\n    \"mars-and-venus-burst\",\n    \"mars-and-venus\",\n    \"mars-double\",\n    \"mars-stroke-right\",\n    \"mars-stroke-up\",\n    \"mars-stroke\",\n    \"mars\",\n    \"martini-glass-citrus\",\n    \"martini-glass-empty\",\n    \"martini-glass\",\n    \"mask-face\",\n    \"mask-snorkel\",\n    \"mask-ventilator\",\n    \"mask\",\n    \"masks-theater\",\n    \"mattress-pillow\",\n    \"maximize\",\n    \"meat\",\n    \"medal\",\n    \"megaphone\",\n    \"melon-slice\",\n    \"melon\",\n    \"memo-circle-check\",\n    \"memo-circle-info\",\n    \"memo-pad\",\n    \"memo\",\n    \"memory\",\n    \"menorah\",\n    \"mercury\",\n    \"merge\",\n    \"message-arrow-down\",\n    \"message-arrow-up-right\",\n    \"message-arrow-up\",\n    \"message-bot\",\n    \"message-captions\",\n    \"message-check\",\n    \"message-code\",\n    \"message-dollar\",\n    \"message-dots\",\n    \"message-exclamation\",\n    \"message-heart\",\n    \"message-image\",\n    \"message-lines\",\n    \"message-medical\",\n    \"message-middle-top\",\n    \"message-middle\",\n    \"message-minus\",\n    \"message-music\",\n    \"message-pen\",\n    \"message-plus\",\n    \"message-question\",\n    \"message-quote\",\n    \"message-slash\",\n    \"message-smile\",\n    \"message-sms\",\n    \"message-text\",\n    \"message-xmark\",\n    \"message\",\n    \"messages-dollar\",\n    \"messages-question\",\n    \"messages\",\n    \"meteor\",\n    \"meter-bolt\",\n    \"meter-droplet\",\n    \"meter-fire\",\n    \"meter\",\n    \"microchip-ai\",\n    \"microchip\",\n    \"microphone-lines-slash\",\n    \"microphone-lines\",\n    \"microphone-slash\",\n    \"microphone-stand\",\n    \"microphone\",\n    \"microscope\",\n    \"microwave\",\n    \"mill-sign\",\n    \"minimize\",\n    \"minus\",\n    \"mistletoe\",\n    \"mitten\",\n    \"mobile-button\",\n    \"mobile-notch\",\n    \"mobile-retro\",\n    \"mobile-screen-button\",\n    \"mobile-screen\",\n    \"mobile-signal-out\",\n    \"mobile-signal\",\n    \"mobile\",\n    \"money-bill-1-wave\",\n    \"money-bill-1\",\n    \"money-bill-simple-wave\",\n    \"money-bill-simple\",\n    \"money-bill-transfer\",\n    \"money-bill-trend-up\",\n    \"money-bill-wave\",\n    \"money-bill-wheat\",\n    \"money-bill\",\n    \"money-bills-simple\",\n    \"money-bills\",\n    \"money-check-dollar-pen\",\n    \"money-check-dollar\",\n    \"money-check-pen\",\n    \"money-check\",\n    \"money-from-bracket\",\n    \"money-simple-from-bracket\",\n    \"monitor-waveform\",\n    \"monkey\",\n    \"monument\",\n    \"moon-cloud\",\n    \"moon-over-sun\",\n    \"moon-stars\",\n    \"moon\",\n    \"moped\",\n    \"mortar-pestle\",\n    \"mosque\",\n    \"mosquito-net\",\n    \"mosquito\",\n    \"motorcycle\",\n    \"mound\",\n    \"mountain-city\",\n    \"mountain-sun\",\n    \"mountain\",\n    \"mountains\",\n    \"mouse-field\",\n    \"mp3-player\",\n    \"mug-hot\",\n    \"mug-marshmallows\",\n    \"mug-saucer\",\n    \"mug-tea-saucer\",\n    \"mug-tea\",\n    \"mug\",\n    \"mushroom\",\n    \"music-magnifying-glass\",\n    \"music-note-slash\",\n    \"music-note\",\n    \"music-slash\",\n    \"music\",\n    \"mustache\",\n    \"n\",\n    \"naira-sign\",\n    \"narwhal\",\n    \"nesting-dolls\",\n    \"network-wired\",\n    \"neuter\",\n    \"newspaper\",\n    \"nfc-lock\",\n    \"nfc-magnifying-glass\",\n    \"nfc-pen\",\n    \"nfc-signal\",\n    \"nfc-slash\",\n    \"nfc-symbol\",\n    \"nfc-trash\",\n    \"nfc\",\n    \"nose\",\n    \"not-equal\",\n    \"notdef\",\n    \"note-medical\",\n    \"note-sticky\",\n    \"note\",\n    \"notebook\",\n    \"notes-medical\",\n    \"notes\",\n    \"o\",\n    \"object-exclude\",\n    \"object-group\",\n    \"object-intersect\",\n    \"object-subtract\",\n    \"object-ungroup\",\n    \"object-union\",\n    \"objects-align-bottom\",\n    \"objects-align-center-horizontal\",\n    \"objects-align-center-vertical\",\n    \"objects-align-left\",\n    \"objects-align-right\",\n    \"objects-align-top\",\n    \"objects-column\",\n    \"octagon-check\",\n    \"octagon-divide\",\n    \"octagon-exclamation\",\n    \"octagon-minus\",\n    \"octagon-plus\",\n    \"octagon-xmark\",\n    \"octagon\",\n    \"octopus\",\n    \"oil-can-drip\",\n    \"oil-can\",\n    \"oil-temperature\",\n    \"oil-well\",\n    \"olive-branch\",\n    \"olive\",\n    \"om\",\n    \"omega\",\n    \"onion\",\n    \"option\",\n    \"ornament\",\n    \"otter\",\n    \"outdent\",\n    \"outlet\",\n    \"oven\",\n    \"overline\",\n    \"p\",\n    \"page-caret-down\",\n    \"page-caret-up\",\n    \"page\",\n    \"pager\",\n    \"paint-roller\",\n    \"paintbrush-fine\",\n    \"paintbrush-pencil\",\n    \"paintbrush\",\n    \"palette\",\n    \"pallet-box\",\n    \"pallet-boxes\",\n    \"pallet\",\n    \"pan-food\",\n    \"pan-frying\",\n    \"pancakes\",\n    \"panel-ews\",\n    \"panel-fire\",\n    \"panorama\",\n    \"paper-plane-top\",\n    \"paper-plane\",\n    \"paperclip-vertical\",\n    \"paperclip\",\n    \"parachute-box\",\n    \"paragraph-left\",\n    \"paragraph\",\n    \"party-bell\",\n    \"party-horn\",\n    \"passport\",\n    \"paste\",\n    \"pause\",\n    \"paw-claws\",\n    \"paw-simple\",\n    \"paw\",\n    \"peace\",\n    \"peach\",\n    \"peanut\",\n    \"peanuts\",\n    \"peapod\",\n    \"pear\",\n    \"pedestal\",\n    \"pegasus\",\n    \"pen-circle\",\n    \"pen-clip-slash\",\n    \"pen-clip\",\n    \"pen-fancy-slash\",\n    \"pen-fancy\",\n    \"pen-field\",\n    \"pen-line\",\n    \"pen-nib-slash\",\n    \"pen-nib\",\n    \"pen-paintbrush\",\n    \"pen-ruler\",\n    \"pen-slash\",\n    \"pen-swirl\",\n    \"pen-to-square\",\n    \"pen\",\n    \"pencil-mechanical\",\n    \"pencil-slash\",\n    \"pencil\",\n    \"people-arrows\",\n    \"people-carry-box\",\n    \"people-dress-simple\",\n    \"people-dress\",\n    \"people-group\",\n    \"people-line\",\n    \"people-pants-simple\",\n    \"people-pants\",\n    \"people-pulling\",\n    \"people-robbery\",\n    \"people-roof\",\n    \"people-simple\",\n    \"people\",\n    \"pepper-hot\",\n    \"pepper\",\n    \"percent\",\n    \"period\",\n    \"person-arrow-down-to-line\",\n    \"person-arrow-up-from-line\",\n    \"person-biking-mountain\",\n    \"person-biking\",\n    \"person-booth\",\n    \"person-breastfeeding\",\n    \"person-burst\",\n    \"person-cane\",\n    \"person-carry-box\",\n    \"person-chalkboard\",\n    \"person-circle-check\",\n    \"person-circle-exclamation\",\n    \"person-circle-minus\",\n    \"person-circle-plus\",\n    \"person-circle-question\",\n    \"person-circle-xmark\",\n    \"person-digging\",\n    \"person-dolly-empty\",\n    \"person-dolly\",\n    \"person-dots-from-line\",\n    \"person-dress-burst\",\n    \"person-dress-fairy\",\n    \"person-dress-simple\",\n    \"person-dress\",\n    \"person-drowning\",\n    \"person-fairy\",\n    \"person-falling-burst\",\n    \"person-falling\",\n    \"person-from-portal\",\n    \"person-half-dress\",\n    \"person-harassing\",\n    \"person-hiking\",\n    \"person-military-pointing\",\n    \"person-military-rifle\",\n    \"person-military-to-person\",\n    \"person-pinball\",\n    \"person-praying\",\n    \"person-pregnant\",\n    \"person-rays\",\n    \"person-rifle\",\n    \"person-running-fast\",\n    \"person-running\",\n    \"person-seat-reclined\",\n    \"person-seat\",\n    \"person-shelter\",\n    \"person-sign\",\n    \"person-simple\",\n    \"person-skating\",\n    \"person-ski-jumping\",\n    \"person-ski-lift\",\n    \"person-skiing-nordic\",\n    \"person-skiing\",\n    \"person-sledding\",\n    \"person-snowboarding\",\n    \"person-snowmobiling\",\n    \"person-swimming\",\n    \"person-through-window\",\n    \"person-to-door\",\n    \"person-to-portal\",\n    \"person-walking-arrow-loop-left\",\n    \"person-walking-arrow-right\",\n    \"person-walking-dashed-line-arrow-right\",\n    \"person-walking-luggage\",\n    \"person-walking-with-cane\",\n    \"person-walking\",\n    \"person\",\n    \"peseta-sign\",\n    \"peso-sign\",\n    \"phone-arrow-down-left\",\n    \"phone-arrow-right\",\n    \"phone-arrow-up-right\",\n    \"phone-flip\",\n    \"phone-hangup\",\n    \"phone-intercom\",\n    \"phone-missed\",\n    \"phone-office\",\n    \"phone-plus\",\n    \"phone-rotary\",\n    \"phone-slash\",\n    \"phone-volume\",\n    \"phone-xmark\",\n    \"phone\",\n    \"photo-film-music\",\n    \"photo-film\",\n    \"pi\",\n    \"piano-keyboard\",\n    \"piano\",\n    \"pickaxe\",\n    \"pickleball\",\n    \"pie\",\n    \"pig\",\n    \"piggy-bank\",\n    \"pills\",\n    \"pinata\",\n    \"pinball\",\n    \"pineapple\",\n    \"pipe-circle-check\",\n    \"pipe-collar\",\n    \"pipe-section\",\n    \"pipe-smoking\",\n    \"pipe-valve\",\n    \"pipe\",\n    \"pizza-slice\",\n    \"pizza\",\n    \"place-of-worship\",\n    \"plane-arrival\",\n    \"plane-circle-check\",\n    \"plane-circle-exclamation\",\n    \"plane-circle-xmark\",\n    \"plane-departure\",\n    \"plane-engines\",\n    \"plane-lock\",\n    \"plane-prop\",\n    \"plane-slash\",\n    \"plane-tail\",\n    \"plane-up-slash\",\n    \"plane-up\",\n    \"plane\",\n    \"planet-moon\",\n    \"planet-ringed\",\n    \"plant-wilt\",\n    \"plate-utensils\",\n    \"plate-wheat\",\n    \"play-pause\",\n    \"play\",\n    \"plug-circle-bolt\",\n    \"plug-circle-check\",\n    \"plug-circle-exclamation\",\n    \"plug-circle-minus\",\n    \"plug-circle-plus\",\n    \"plug-circle-xmark\",\n    \"plug\",\n    \"plus-large\",\n    \"plus-minus\",\n    \"plus\",\n    \"podcast\",\n    \"podium-star\",\n    \"podium\",\n    \"police-box\",\n    \"poll-people\",\n    \"pompebled\",\n    \"poo-storm\",\n    \"poo\",\n    \"pool-8-ball\",\n    \"poop\",\n    \"popcorn\",\n    \"popsicle\",\n    \"pot-food\",\n    \"potato\",\n    \"power-off\",\n    \"prescription-bottle-medical\",\n    \"prescription-bottle-pill\",\n    \"prescription-bottle\",\n    \"prescription\",\n    \"presentation-screen\",\n    \"pretzel\",\n    \"print-magnifying-glass\",\n    \"print-slash\",\n    \"print\",\n    \"projector\",\n    \"pump-medical\",\n    \"pump-soap\",\n    \"pump\",\n    \"pumpkin\",\n    \"puzzle-piece-simple\",\n    \"puzzle-piece\",\n    \"puzzle\",\n    \"q\",\n    \"qrcode\",\n    \"question\",\n    \"quote-left\",\n    \"quote-right\",\n    \"quotes\",\n    \"r\",\n    \"rabbit-running\",\n    \"rabbit\",\n    \"raccoon\",\n    \"racquet\",\n    \"radar\",\n    \"radiation\",\n    \"radio-tuner\",\n    \"radio\",\n    \"rainbow\",\n    \"raindrops\",\n    \"ram\",\n    \"ramp-loading\",\n    \"ranking-star\",\n    \"raygun\",\n    \"receipt\",\n    \"record-vinyl\",\n    \"rectangle-ad\",\n    \"rectangle-barcode\",\n    \"rectangle-code\",\n    \"rectangle-history-circle-plus\",\n    \"rectangle-history-circle-user\",\n    \"rectangle-history\",\n    \"rectangle-list\",\n    \"rectangle-pro\",\n    \"rectangle-terminal\",\n    \"rectangle-vertical-history\",\n    \"rectangle-vertical\",\n    \"rectangle-wide\",\n    \"rectangle-xmark\",\n    \"rectangle\",\n    \"rectangles-mixed\",\n    \"recycle\",\n    \"reel\",\n    \"reflect-both\",\n    \"reflect-horizontal\",\n    \"reflect-vertical\",\n    \"refrigerator\",\n    \"registered\",\n    \"repeat-1\",\n    \"repeat\",\n    \"reply-all\",\n    \"reply-clock\",\n    \"reply\",\n    \"republican\",\n    \"restroom-simple\",\n    \"restroom\",\n    \"retweet\",\n    \"rhombus\",\n    \"ribbon\",\n    \"right-from-bracket\",\n    \"right-from-line\",\n    \"right-left-large\",\n    \"right-left\",\n    \"right-long-to-line\",\n    \"right-long\",\n    \"right-to-bracket\",\n    \"right-to-line\",\n    \"right\",\n    \"ring-diamond\",\n    \"ring\",\n    \"rings-wedding\",\n    \"road-barrier\",\n    \"road-bridge\",\n    \"road-circle-check\",\n    \"road-circle-exclamation\",\n    \"road-circle-xmark\",\n    \"road-lock\",\n    \"road-spikes\",\n    \"road\",\n    \"robot-astromech\",\n    \"robot\",\n    \"rocket-launch\",\n    \"rocket\",\n    \"roller-coaster\",\n    \"rotate-exclamation\",\n    \"rotate-left\",\n    \"rotate-reverse\",\n    \"rotate-right\",\n    \"rotate\",\n    \"route-highway\",\n    \"route-interstate\",\n    \"route\",\n    \"router\",\n    \"rss\",\n    \"ruble-sign\",\n    \"rug\",\n    \"rugby-ball\",\n    \"ruler-combined\",\n    \"ruler-horizontal\",\n    \"ruler-triangle\",\n    \"ruler-vertical\",\n    \"ruler\",\n    \"rupee-sign\",\n    \"rupiah-sign\",\n    \"rv\",\n    \"s\",\n    \"sack-dollar\",\n    \"sack-xmark\",\n    \"sack\",\n    \"sailboat\",\n    \"salad\",\n    \"salt-shaker\",\n    \"sandwich\",\n    \"satellite-dish\",\n    \"satellite\",\n    \"sausage\",\n    \"saxophone-fire\",\n    \"saxophone\",\n    \"scale-balanced\",\n    \"scale-unbalanced-flip\",\n    \"scale-unbalanced\",\n    \"scalpel-line-dashed\",\n    \"scalpel\",\n    \"scanner-gun\",\n    \"scanner-image\",\n    \"scanner-keyboard\",\n    \"scanner-touchscreen\",\n    \"scarecrow\",\n    \"scarf\",\n    \"school-circle-check\",\n    \"school-circle-exclamation\",\n    \"school-circle-xmark\",\n    \"school-flag\",\n    \"school-lock\",\n    \"school\",\n    \"scissors\",\n    \"screen-users\",\n    \"screencast\",\n    \"screwdriver-wrench\",\n    \"screwdriver\",\n    \"scribble\",\n    \"scroll-old\",\n    \"scroll-torah\",\n    \"scroll\",\n    \"scrubber\",\n    \"scythe\",\n    \"sd-card\",\n    \"sd-cards\",\n    \"seal-exclamation\",\n    \"seal-question\",\n    \"seal\",\n    \"seat-airline\",\n    \"section\",\n    \"seedling\",\n    \"semicolon\",\n    \"send-back\",\n    \"send-backward\",\n    \"sensor-cloud\",\n    \"sensor-fire\",\n    \"sensor-on\",\n    \"sensor-triangle-exclamation\",\n    \"sensor\",\n    \"server\",\n    \"shapes\",\n    \"share-all\",\n    \"share-from-square\",\n    \"share-nodes\",\n    \"share\",\n    \"sheep\",\n    \"sheet-plastic\",\n    \"shekel-sign\",\n    \"shelves-empty\",\n    \"shelves\",\n    \"shield-cat\",\n    \"shield-check\",\n    \"shield-cross\",\n    \"shield-dog\",\n    \"shield-exclamation\",\n    \"shield-halved\",\n    \"shield-heart\",\n    \"shield-keyhole\",\n    \"shield-minus\",\n    \"shield-plus\",\n    \"shield-quartered\",\n    \"shield-slash\",\n    \"shield-virus\",\n    \"shield-xmark\",\n    \"shield\",\n    \"ship\",\n    \"shirt-long-sleeve\",\n    \"shirt-running\",\n    \"shirt-tank-top\",\n    \"shirt\",\n    \"shish-kebab\",\n    \"shoe-prints\",\n    \"shop-lock\",\n    \"shop-slash\",\n    \"shop\",\n    \"shovel-snow\",\n    \"shovel\",\n    \"shower-down\",\n    \"shower\",\n    \"shredder\",\n    \"shrimp\",\n    \"shuffle\",\n    \"shutters\",\n    \"shuttle-space\",\n    \"shuttlecock\",\n    \"sickle\",\n    \"sidebar-flip\",\n    \"sidebar\",\n    \"sigma\",\n    \"sign-hanging\",\n    \"sign-post\",\n    \"sign-posts-wrench\",\n    \"sign-posts\",\n    \"signal-bars-fair\",\n    \"signal-bars-good\",\n    \"signal-bars-slash\",\n    \"signal-bars-weak\",\n    \"signal-bars\",\n    \"signal-fair\",\n    \"signal-good\",\n    \"signal-slash\",\n    \"signal-stream-slash\",\n    \"signal-stream\",\n    \"signal-strong\",\n    \"signal-weak\",\n    \"signal\",\n    \"signature-lock\",\n    \"signature-slash\",\n    \"signature\",\n    \"signs-post\",\n    \"sim-card\",\n    \"sim-cards\",\n    \"sink\",\n    \"siren-on\",\n    \"siren\",\n    \"sitemap\",\n    \"skeleton-ribs\",\n    \"skeleton\",\n    \"ski-boot-ski\",\n    \"ski-boot\",\n    \"skull-cow\",\n    \"skull-crossbones\",\n    \"skull\",\n    \"slash-back\",\n    \"slash-forward\",\n    \"slash\",\n    \"sleigh\",\n    \"slider\",\n    \"sliders-simple\",\n    \"sliders-up\",\n    \"sliders\",\n    \"slot-machine\",\n    \"smog\",\n    \"smoke\",\n    \"smoking\",\n    \"snake\",\n    \"snooze\",\n    \"snow-blowing\",\n    \"snowflake-droplets\",\n    \"snowflake\",\n    \"snowflakes\",\n    \"snowman-head\",\n    \"snowman\",\n    \"snowplow\",\n    \"soap\",\n    \"socks\",\n    \"soft-serve\",\n    \"solar-panel\",\n    \"solar-system\",\n    \"sort-down\",\n    \"sort-up\",\n    \"sort\",\n    \"spa\",\n    \"space-station-moon-construction\",\n    \"space-station-moon\",\n    \"spade\",\n    \"spaghetti-monster-flying\",\n    \"sparkle\",\n    \"sparkles\",\n    \"speaker\",\n    \"speakers\",\n    \"spell-check\",\n    \"spider-black-widow\",\n    \"spider-web\",\n    \"spider\",\n    \"spinner-scale\",\n    \"spinner-third\",\n    \"spinner\",\n    \"split\",\n    \"splotch\",\n    \"spoon\",\n    \"sportsball\",\n    \"spray-can-sparkles\",\n    \"spray-can\",\n    \"sprinkler-ceiling\",\n    \"sprinkler\",\n    \"square-0\",\n    \"square-1\",\n    \"square-2\",\n    \"square-3\",\n    \"square-4\",\n    \"square-5\",\n    \"square-6\",\n    \"square-7\",\n    \"square-8\",\n    \"square-9\",\n    \"square-a-lock\",\n    \"square-a\",\n    \"square-ampersand\",\n    \"square-arrow-down-left\",\n    \"square-arrow-down-right\",\n    \"square-arrow-down\",\n    \"square-arrow-left\",\n    \"square-arrow-right\",\n    \"square-arrow-up-left\",\n    \"square-arrow-up-right\",\n    \"square-arrow-up\",\n    \"square-b\",\n    \"square-binary\",\n    \"square-bolt\",\n    \"square-c\",\n    \"square-caret-down\",\n    \"square-caret-left\",\n    \"square-caret-right\",\n    \"square-caret-up\",\n    \"square-check\",\n    \"square-chevron-down\",\n    \"square-chevron-left\",\n    \"square-chevron-right\",\n    \"square-chevron-up\",\n    \"square-code\",\n    \"square-d\",\n    \"square-dashed-circle-plus\",\n    \"square-dashed\",\n    \"square-divide\",\n    \"square-dollar\",\n    \"square-down-left\",\n    \"square-down-right\",\n    \"square-down\",\n    \"square-e\",\n    \"square-ellipsis-vertical\",\n    \"square-ellipsis\",\n    \"square-envelope\",\n    \"square-exclamation\",\n    \"square-f\",\n    \"square-fragile\",\n    \"square-full\",\n    \"square-g\",\n    \"square-h\",\n    \"square-heart\",\n    \"square-i\",\n    \"square-info\",\n    \"square-j\",\n    \"square-k\",\n    \"square-kanban\",\n    \"square-l\",\n    \"square-left\",\n    \"square-list\",\n    \"square-m\",\n    \"square-minus\",\n    \"square-n\",\n    \"square-nfi\",\n    \"square-o\",\n    \"square-p\",\n    \"square-parking-slash\",\n    \"square-parking\",\n    \"square-pen\",\n    \"square-person-confined\",\n    \"square-phone-flip\",\n    \"square-phone-hangup\",\n    \"square-phone\",\n    \"square-plus\",\n    \"square-poll-horizontal\",\n    \"square-poll-vertical\",\n    \"square-q\",\n    \"square-quarters\",\n    \"square-question\",\n    \"square-quote\",\n    \"square-r\",\n    \"square-right\",\n    \"square-ring\",\n    \"square-root-variable\",\n    \"square-root\",\n    \"square-rss\",\n    \"square-s\",\n    \"square-share-nodes\",\n    \"square-sliders-vertical\",\n    \"square-sliders\",\n    \"square-small\",\n    \"square-star\",\n    \"square-t\",\n    \"square-terminal\",\n    \"square-this-way-up\",\n    \"square-u\",\n    \"square-up-left\",\n    \"square-up-right\",\n    \"square-up\",\n    \"square-user\",\n    \"square-v\",\n    \"square-virus\",\n    \"square-w\",\n    \"square-x\",\n    \"square-xmark\",\n    \"square-y\",\n    \"square-z\",\n    \"square\",\n    \"squid\",\n    \"squirrel\",\n    \"staff-snake\",\n    \"staff\",\n    \"stairs\",\n    \"stamp\",\n    \"standard-definition\",\n    \"stapler\",\n    \"star-and-crescent\",\n    \"star-christmas\",\n    \"star-exclamation\",\n    \"star-half-stroke\",\n    \"star-half\",\n    \"star-of-david\",\n    \"star-of-life\",\n    \"star-sharp-half-stroke\",\n    \"star-sharp-half\",\n    \"star-sharp\",\n    \"star-shooting\",\n    \"star\",\n    \"starfighter-twin-ion-engine-advanced\",\n    \"starfighter-twin-ion-engine\",\n    \"starfighter\",\n    \"stars\",\n    \"starship-freighter\",\n    \"starship\",\n    \"steak\",\n    \"steering-wheel\",\n    \"sterling-sign\",\n    \"stethoscope\",\n    \"stocking\",\n    \"stomach\",\n    \"stop\",\n    \"stopwatch-20\",\n    \"stopwatch\",\n    \"store-lock\",\n    \"store-slash\",\n    \"store\",\n    \"strawberry\",\n    \"street-view\",\n    \"stretcher\",\n    \"strikethrough\",\n    \"stroopwafel\",\n    \"subscript\",\n    \"subtitles-slash\",\n    \"subtitles\",\n    \"suitcase-medical\",\n    \"suitcase-rolling\",\n    \"suitcase\",\n    \"sun-bright\",\n    \"sun-cloud\",\n    \"sun-dust\",\n    \"sun-haze\",\n    \"sun-plant-wilt\",\n    \"sun\",\n    \"sunglasses\",\n    \"sunrise\",\n    \"sunset\",\n    \"superscript\",\n    \"sushi-roll\",\n    \"sushi\",\n    \"swap-arrows\",\n    \"swap\",\n    \"swatchbook\",\n    \"sword-laser-alt\",\n    \"sword-laser\",\n    \"sword\",\n    \"swords-laser\",\n    \"swords\",\n    \"symbols\",\n    \"synagogue\",\n    \"syringe\",\n    \"t-rex\",\n    \"t\",\n    \"table-cells-column-lock\",\n    \"table-cells-column-unlock\",\n    \"table-cells-large\",\n    \"table-cells-lock\",\n    \"table-cells-row-lock\",\n    \"table-cells-row-unlock\",\n    \"table-cells-unlock\",\n    \"table-cells\",\n    \"table-columns\",\n    \"table-layout\",\n    \"table-list\",\n    \"table-picnic\",\n    \"table-pivot\",\n    \"table-rows\",\n    \"table-tennis-paddle-ball\",\n    \"table-tree\",\n    \"table\",\n    \"tablet-button\",\n    \"tablet-rugged\",\n    \"tablet-screen-button\",\n    \"tablet-screen\",\n    \"tablet\",\n    \"tablets\",\n    \"tachograph-digital\",\n    \"taco\",\n    \"tag\",\n    \"tags\",\n    \"tally-1\",\n    \"tally-2\",\n    \"tally-3\",\n    \"tally-4\",\n    \"tally\",\n    \"tamale\",\n    \"tank-water\",\n    \"tape\",\n    \"tarp-droplet\",\n    \"tarp\",\n    \"taxi-bus\",\n    \"taxi\",\n    \"teddy-bear\",\n    \"teeth-open\",\n    \"teeth\",\n    \"telescope\",\n    \"temperature-arrow-down\",\n    \"temperature-arrow-up\",\n    \"temperature-empty\",\n    \"temperature-full\",\n    \"temperature-half\",\n    \"temperature-high\",\n    \"temperature-list\",\n    \"temperature-low\",\n    \"temperature-quarter\",\n    \"temperature-snow\",\n    \"temperature-sun\",\n    \"temperature-three-quarters\",\n    \"tenge-sign\",\n    \"tennis-ball\",\n    \"tent-arrow-down-to-line\",\n    \"tent-arrow-left-right\",\n    \"tent-arrow-turn-left\",\n    \"tent-arrows-down\",\n    \"tent-double-peak\",\n    \"tent\",\n    \"tents\",\n    \"terminal\",\n    \"text-height\",\n    \"text-size\",\n    \"text-slash\",\n    \"text-width\",\n    \"text\",\n    \"thermometer\",\n    \"theta\",\n    \"thought-bubble\",\n    \"thumbs-down\",\n    \"thumbs-up\",\n    \"thumbtack-slash\",\n    \"thumbtack\",\n    \"tick\",\n    \"ticket-airline\",\n    \"ticket-perforated\",\n    \"ticket-simple\",\n    \"ticket\",\n    \"tickets-airline\",\n    \"tickets-perforated\",\n    \"tickets-simple\",\n    \"tickets\",\n    \"tilde\",\n    \"timeline-arrow\",\n    \"timeline\",\n    \"timer\",\n    \"tire-flat\",\n    \"tire-pressure-warning\",\n    \"tire-rugged\",\n    \"tire\",\n    \"toggle-large-off\",\n    \"toggle-large-on\",\n    \"toggle-off\",\n    \"toggle-on\",\n    \"toilet-paper-blank-under\",\n    \"toilet-paper-blank\",\n    \"toilet-paper-check\",\n    \"toilet-paper-slash\",\n    \"toilet-paper-under-slash\",\n    \"toilet-paper-under\",\n    \"toilet-paper-xmark\",\n    \"toilet-paper\",\n    \"toilet-portable\",\n    \"toilet\",\n    \"toilets-portable\",\n    \"tomato\",\n    \"tombstone-blank\",\n    \"tombstone\",\n    \"toolbox\",\n    \"tooth\",\n    \"toothbrush\",\n    \"torii-gate\",\n    \"tornado\",\n    \"tower-broadcast\",\n    \"tower-cell\",\n    \"tower-control\",\n    \"tower-observation\",\n    \"tractor\",\n    \"trademark\",\n    \"traffic-cone\",\n    \"traffic-light-go\",\n    \"traffic-light-slow\",\n    \"traffic-light-stop\",\n    \"traffic-light\",\n    \"trailer\",\n    \"train-subway-tunnel\",\n    \"train-subway\",\n    \"train-track\",\n    \"train-tram\",\n    \"train-tunnel\",\n    \"train\",\n    \"transformer-bolt\",\n    \"transgender\",\n    \"transporter-1\",\n    \"transporter-2\",\n    \"transporter-3\",\n    \"transporter-4\",\n    \"transporter-5\",\n    \"transporter-6\",\n    \"transporter-7\",\n    \"transporter-empty\",\n    \"transporter\",\n    \"trash-arrow-up\",\n    \"trash-can-arrow-up\",\n    \"trash-can-check\",\n    \"trash-can-clock\",\n    \"trash-can-list\",\n    \"trash-can-plus\",\n    \"trash-can-slash\",\n    \"trash-can-undo\",\n    \"trash-can-xmark\",\n    \"trash-can\",\n    \"trash-check\",\n    \"trash-clock\",\n    \"trash-list\",\n    \"trash-plus\",\n    \"trash-slash\",\n    \"trash-undo\",\n    \"trash-xmark\",\n    \"trash\",\n    \"treasure-chest\",\n    \"tree-christmas\",\n    \"tree-city\",\n    \"tree-deciduous\",\n    \"tree-decorated\",\n    \"tree-large\",\n    \"tree-palm\",\n    \"tree\",\n    \"trees\",\n    \"triangle-exclamation\",\n    \"triangle-instrument\",\n    \"triangle-person-digging\",\n    \"triangle\",\n    \"tricycle-adult\",\n    \"tricycle\",\n    \"trillium\",\n    \"trophy-star\",\n    \"trophy\",\n    \"trowel-bricks\",\n    \"trowel\",\n    \"truck-arrow-right\",\n    \"truck-bolt\",\n    \"truck-clock\",\n    \"truck-container-empty\",\n    \"truck-container\",\n    \"truck-droplet\",\n    \"truck-fast\",\n    \"truck-field-un\",\n    \"truck-field\",\n    \"truck-fire\",\n    \"truck-flatbed\",\n    \"truck-front\",\n    \"truck-ladder\",\n    \"truck-medical\",\n    \"truck-monster\",\n    \"truck-moving\",\n    \"truck-pickup\",\n    \"truck-plane\",\n    \"truck-plow\",\n    \"truck-ramp-box\",\n    \"truck-ramp-couch\",\n    \"truck-ramp\",\n    \"truck-tow\",\n    \"truck-utensils\",\n    \"truck\",\n    \"trumpet\",\n    \"tty-answer\",\n    \"tty\",\n    \"tugrik-sign\",\n    \"turkey\",\n    \"turkish-lira-sign\",\n    \"turn-down-left\",\n    \"turn-down-right\",\n    \"turn-down\",\n    \"turn-left-down\",\n    \"turn-left-up\",\n    \"turn-left\",\n    \"turn-right\",\n    \"turn-up\",\n    \"turntable\",\n    \"turtle\",\n    \"tv-music\",\n    \"tv-retro\",\n    \"tv\",\n    \"typewriter\",\n    \"u\",\n    \"ufo-beam\",\n    \"ufo\",\n    \"umbrella-beach\",\n    \"umbrella-simple\",\n    \"umbrella\",\n    \"underline\",\n    \"unicorn\",\n    \"uniform-martial-arts\",\n    \"union\",\n    \"universal-access\",\n    \"unlock-keyhole\",\n    \"unlock\",\n    \"up-down-left-right\",\n    \"up-down\",\n    \"up-from-bracket\",\n    \"up-from-dotted-line\",\n    \"up-from-line\",\n    \"up-left\",\n    \"up-long\",\n    \"up-right-and-down-left-from-center\",\n    \"up-right-from-square\",\n    \"up-right\",\n    \"up-to-bracket\",\n    \"up-to-dotted-line\",\n    \"up-to-line\",\n    \"up\",\n    \"upload\",\n    \"usb-drive\",\n    \"user-alien\",\n    \"user-astronaut\",\n    \"user-beard-bolt\",\n    \"user-bounty-hunter\",\n    \"user-check\",\n    \"user-chef\",\n    \"user-clock\",\n    \"user-cowboy\",\n    \"user-crown\",\n    \"user-doctor-hair-long\",\n    \"user-doctor-hair\",\n    \"user-doctor-message\",\n    \"user-doctor\",\n    \"user-gear\",\n    \"user-graduate\",\n    \"user-group-crown\",\n    \"user-group-simple\",\n    \"user-group\",\n    \"user-hair-buns\",\n    \"user-hair-long\",\n    \"user-hair-mullet\",\n    \"user-hair\",\n    \"user-headset\",\n    \"user-helmet-safety\",\n    \"user-hoodie\",\n    \"user-injured\",\n    \"user-large-slash\",\n    \"user-large\",\n    \"user-lock\",\n    \"user-magnifying-glass\",\n    \"user-minus\",\n    \"user-music\",\n    \"user-ninja\",\n    \"user-nurse-hair-long\",\n    \"user-nurse-hair\",\n    \"user-nurse\",\n    \"user-pen\",\n    \"user-pilot-tie\",\n    \"user-pilot\",\n    \"user-plus\",\n    \"user-police-tie\",\n    \"user-police\",\n    \"user-robot-xmarks\",\n    \"user-robot\",\n    \"user-secret\",\n    \"user-shakespeare\",\n    \"user-shield\",\n    \"user-slash\",\n    \"user-tag\",\n    \"user-tie-hair-long\",\n    \"user-tie-hair\",\n    \"user-tie\",\n    \"user-unlock\",\n    \"user-visor\",\n    \"user-vneck-hair-long\",\n    \"user-vneck-hair\",\n    \"user-vneck\",\n    \"user-xmark\",\n    \"user\",\n    \"users-between-lines\",\n    \"users-gear\",\n    \"users-line\",\n    \"users-medical\",\n    \"users-rays\",\n    \"users-rectangle\",\n    \"users-slash\",\n    \"users-viewfinder\",\n    \"users\",\n    \"utensils-slash\",\n    \"utensils\",\n    \"utility-pole-double\",\n    \"utility-pole\",\n    \"v\",\n    \"vacuum-robot\",\n    \"vacuum\",\n    \"value-absolute\",\n    \"van-shuttle\",\n    \"vault\",\n    \"vector-circle\",\n    \"vector-polygon\",\n    \"vector-square\",\n    \"vent-damper\",\n    \"venus-double\",\n    \"venus-mars\",\n    \"venus\",\n    \"vest-patches\",\n    \"vest\",\n    \"vial-circle-check\",\n    \"vial-virus\",\n    \"vial\",\n    \"vials\",\n    \"video-arrow-down-left\",\n    \"video-arrow-up-right\",\n    \"video-plus\",\n    \"video-slash\",\n    \"video\",\n    \"vihara\",\n    \"violin\",\n    \"virus-covid-slash\",\n    \"virus-covid\",\n    \"virus-slash\",\n    \"virus\",\n    \"viruses\",\n    \"voicemail\",\n    \"volcano\",\n    \"volleyball\",\n    \"volume-high\",\n    \"volume-low\",\n    \"volume-off\",\n    \"volume-slash\",\n    \"volume-xmark\",\n    \"volume\",\n    \"vr-cardboard\",\n    \"w\",\n    \"waffle\",\n    \"wagon-covered\",\n    \"walker\",\n    \"walkie-talkie\",\n    \"wallet\",\n    \"wand-magic-sparkles\",\n    \"wand-magic\",\n    \"wand-sparkles\",\n    \"wand\",\n    \"warehouse-full\",\n    \"warehouse\",\n    \"washing-machine\",\n    \"watch-apple\",\n    \"watch-calculator\",\n    \"watch-fitness\",\n    \"watch-smart\",\n    \"watch\",\n    \"water-arrow-down\",\n    \"water-arrow-up\",\n    \"water-ladder\",\n    \"water\",\n    \"watermelon-slice\",\n    \"wave-pulse\",\n    \"wave-sine\",\n    \"wave-square\",\n    \"wave-triangle\",\n    \"wave\",\n    \"waveform-lines\",\n    \"waveform\",\n    \"waves-sine\",\n    \"web-awesome\",\n    \"webhook\",\n    \"weight-hanging\",\n    \"weight-scale\",\n    \"whale\",\n    \"wheat-awn-circle-exclamation\",\n    \"wheat-awn-slash\",\n    \"wheat-awn\",\n    \"wheat-slash\",\n    \"wheat\",\n    \"wheelchair-move\",\n    \"wheelchair\",\n    \"whiskey-glass-ice\",\n    \"whiskey-glass\",\n    \"whistle\",\n    \"wifi-exclamation\",\n    \"wifi-fair\",\n    \"wifi-slash\",\n    \"wifi-weak\",\n    \"wifi\",\n    \"wind-turbine\",\n    \"wind-warning\",\n    \"wind\",\n    \"window-flip\",\n    \"window-frame-open\",\n    \"window-frame\",\n    \"window-maximize\",\n    \"window-minimize\",\n    \"window-restore\",\n    \"window\",\n    \"windsock\",\n    \"wine-bottle\",\n    \"wine-glass-crack\",\n    \"wine-glass-empty\",\n    \"wine-glass\",\n    \"won-sign\",\n    \"worm\",\n    \"wreath-laurel\",\n    \"wreath\",\n    \"wrench-simple\",\n    \"wrench\",\n    \"x-ray\",\n    \"x\",\n    \"xmark-large\",\n    \"xmark-to-slot\",\n    \"xmark\",\n    \"xmarks-lines\",\n    \"y\",\n    \"yen-sign\",\n    \"yin-yang\",\n    \"z\"\n  ],\n  \"sharp-duotone-regular\": [\n    \"0\",\n    \"00\",\n    \"1\",\n    \"2\",\n    \"3\",\n    \"360-degrees\",\n    \"4\",\n    \"5\",\n    \"6\",\n    \"7\",\n    \"8\",\n    \"9\",\n    \"a\",\n    \"abacus\",\n    \"accent-grave\",\n    \"acorn\",\n    \"address-book\",\n    \"address-card\",\n    \"air-conditioner\",\n    \"airplay\",\n    \"alarm-clock\",\n    \"alarm-exclamation\",\n    \"alarm-plus\",\n    \"alarm-snooze\",\n    \"album-circle-plus\",\n    \"album-circle-user\",\n    \"album-collection-circle-plus\",\n    \"album-collection-circle-user\",\n    \"album-collection\",\n    \"album\",\n    \"alicorn\",\n    \"alien-8bit\",\n    \"alien\",\n    \"align-center\",\n    \"align-justify\",\n    \"align-left\",\n    \"align-right\",\n    \"align-slash\",\n    \"alt\",\n    \"amp-guitar\",\n    \"ampersand\",\n    \"anchor-circle-check\",\n    \"anchor-circle-exclamation\",\n    \"anchor-circle-xmark\",\n    \"anchor-lock\",\n    \"anchor\",\n    \"angel\",\n    \"angle-90\",\n    \"angle-down\",\n    \"angle-left\",\n    \"angle-right\",\n    \"angle-up\",\n    \"angle\",\n    \"angles-down\",\n    \"angles-left\",\n    \"angles-right\",\n    \"angles-up-down\",\n    \"angles-up\",\n    \"ankh\",\n    \"ant\",\n    \"apartment\",\n    \"aperture\",\n    \"apostrophe\",\n    \"apple-core\",\n    \"apple-whole\",\n    \"archway\",\n    \"arrow-down-1-9\",\n    \"arrow-down-9-1\",\n    \"arrow-down-a-z\",\n    \"arrow-down-arrow-up\",\n    \"arrow-down-big-small\",\n    \"arrow-down-from-arc\",\n    \"arrow-down-from-bracket\",\n    \"arrow-down-from-dotted-line\",\n    \"arrow-down-from-line\",\n    \"arrow-down-left-and-arrow-up-right-to-center\",\n    \"arrow-down-left\",\n    \"arrow-down-long\",\n    \"arrow-down-right\",\n    \"arrow-down-short-wide\",\n    \"arrow-down-small-big\",\n    \"arrow-down-square-triangle\",\n    \"arrow-down-to-arc\",\n    \"arrow-down-to-bracket\",\n    \"arrow-down-to-dotted-line\",\n    \"arrow-down-to-line\",\n    \"arrow-down-to-square\",\n    \"arrow-down-triangle-square\",\n    \"arrow-down-up-across-line\",\n    \"arrow-down-up-lock\",\n    \"arrow-down-wide-short\",\n    \"arrow-down-z-a\",\n    \"arrow-down\",\n    \"arrow-left-from-arc\",\n    \"arrow-left-from-bracket\",\n    \"arrow-left-from-line\",\n    \"arrow-left-long-to-line\",\n    \"arrow-left-long\",\n    \"arrow-left-to-arc\",\n    \"arrow-left-to-bracket\",\n    \"arrow-left-to-line\",\n    \"arrow-left\",\n    \"arrow-pointer\",\n    \"arrow-progress\",\n    \"arrow-right-arrow-left\",\n    \"arrow-right-from-arc\",\n    \"arrow-right-from-bracket\",\n    \"arrow-right-from-line\",\n    \"arrow-right-long-to-line\",\n    \"arrow-right-long\",\n    \"arrow-right-to-arc\",\n    \"arrow-right-to-bracket\",\n    \"arrow-right-to-city\",\n    \"arrow-right-to-line\",\n    \"arrow-right\",\n    \"arrow-rotate-left\",\n    \"arrow-rotate-right\",\n    \"arrow-trend-down\",\n    \"arrow-trend-up\",\n    \"arrow-turn-down-left\",\n    \"arrow-turn-down-right\",\n    \"arrow-turn-down\",\n    \"arrow-turn-left-down\",\n    \"arrow-turn-left-up\",\n    \"arrow-turn-left\",\n    \"arrow-turn-right\",\n    \"arrow-turn-up\",\n    \"arrow-up-1-9\",\n    \"arrow-up-9-1\",\n    \"arrow-up-a-z\",\n    \"arrow-up-arrow-down\",\n    \"arrow-up-big-small\",\n    \"arrow-up-from-arc\",\n    \"arrow-up-from-bracket\",\n    \"arrow-up-from-dotted-line\",\n    \"arrow-up-from-ground-water\",\n    \"arrow-up-from-line\",\n    \"arrow-up-from-square\",\n    \"arrow-up-from-water-pump\",\n    \"arrow-up-left-from-circle\",\n    \"arrow-up-left\",\n    \"arrow-up-long\",\n    \"arrow-up-right-and-arrow-down-left-from-center\",\n    \"arrow-up-right-dots\",\n    \"arrow-up-right-from-square\",\n    \"arrow-up-right\",\n    \"arrow-up-short-wide\",\n    \"arrow-up-small-big\",\n    \"arrow-up-square-triangle\",\n    \"arrow-up-to-arc\",\n    \"arrow-up-to-bracket\",\n    \"arrow-up-to-dotted-line\",\n    \"arrow-up-to-line\",\n    \"arrow-up-triangle-square\",\n    \"arrow-up-wide-short\",\n    \"arrow-up-z-a\",\n    \"arrow-up\",\n    \"arrows-cross\",\n    \"arrows-down-to-line\",\n    \"arrows-down-to-people\",\n    \"arrows-from-dotted-line\",\n    \"arrows-from-line\",\n    \"arrows-left-right-to-line\",\n    \"arrows-left-right\",\n    \"arrows-maximize\",\n    \"arrows-minimize\",\n    \"arrows-repeat-1\",\n    \"arrows-repeat\",\n    \"arrows-retweet\",\n    \"arrows-rotate-reverse\",\n    \"arrows-rotate\",\n    \"arrows-spin\",\n    \"arrows-split-up-and-left\",\n    \"arrows-to-circle\",\n    \"arrows-to-dot\",\n    \"arrows-to-dotted-line\",\n    \"arrows-to-eye\",\n    \"arrows-to-line\",\n    \"arrows-turn-right\",\n    \"arrows-turn-to-dots\",\n    \"arrows-up-down-left-right\",\n    \"arrows-up-down\",\n    \"arrows-up-to-line\",\n    \"asterisk\",\n    \"at\",\n    \"atom-simple\",\n    \"atom\",\n    \"audio-description-slash\",\n    \"audio-description\",\n    \"austral-sign\",\n    \"avocado\",\n    \"award-simple\",\n    \"award\",\n    \"axe-battle\",\n    \"axe\",\n    \"b\",\n    \"baby-carriage\",\n    \"baby\",\n    \"backpack\",\n    \"backward-fast\",\n    \"backward-step\",\n    \"backward\",\n    \"bacon\",\n    \"bacteria\",\n    \"bacterium\",\n    \"badge-check\",\n    \"badge-dollar\",\n    \"badge-percent\",\n    \"badge-sheriff\",\n    \"badge\",\n    \"badger-honey\",\n    \"badminton\",\n    \"bag-seedling\",\n    \"bag-shopping-minus\",\n    \"bag-shopping-plus\",\n    \"bag-shopping\",\n    \"bagel\",\n    \"bags-shopping\",\n    \"baguette\",\n    \"bahai\",\n    \"baht-sign\",\n    \"ball-pile\",\n    \"balloon\",\n    \"balloons\",\n    \"ballot-check\",\n    \"ballot\",\n    \"ban-bug\",\n    \"ban-parking\",\n    \"ban-smoking\",\n    \"ban\",\n    \"banana\",\n    \"bandage\",\n    \"bangladeshi-taka-sign\",\n    \"banjo\",\n    \"barcode-read\",\n    \"barcode-scan\",\n    \"barcode\",\n    \"bars-filter\",\n    \"bars-progress\",\n    \"bars-sort\",\n    \"bars-staggered\",\n    \"bars\",\n    \"baseball-bat-ball\",\n    \"baseball\",\n    \"basket-shopping-minus\",\n    \"basket-shopping-plus\",\n    \"basket-shopping-simple\",\n    \"basket-shopping\",\n    \"basketball-hoop\",\n    \"basketball\",\n    \"bat\",\n    \"bath\",\n    \"battery-bolt\",\n    \"battery-empty\",\n    \"battery-exclamation\",\n    \"battery-full\",\n    \"battery-half\",\n    \"battery-low\",\n    \"battery-quarter\",\n    \"battery-slash\",\n    \"battery-three-quarters\",\n    \"bed-bunk\",\n    \"bed-empty\",\n    \"bed-front\",\n    \"bed-pulse\",\n    \"bed\",\n    \"bee\",\n    \"beer-mug-empty\",\n    \"beer-mug\",\n    \"bell-concierge\",\n    \"bell-exclamation\",\n    \"bell-on\",\n    \"bell-plus\",\n    \"bell-ring\",\n    \"bell-school-slash\",\n    \"bell-school\",\n    \"bell-slash\",\n    \"bell\",\n    \"bells\",\n    \"bench-tree\",\n    \"bezier-curve\",\n    \"bicycle\",\n    \"billboard\",\n    \"bin-bottles-recycle\",\n    \"bin-bottles\",\n    \"bin-recycle\",\n    \"binary-circle-check\",\n    \"binary-lock\",\n    \"binary-slash\",\n    \"binary\",\n    \"binoculars\",\n    \"biohazard\",\n    \"bird\",\n    \"bitcoin-sign\",\n    \"blanket-fire\",\n    \"blanket\",\n    \"blender-phone\",\n    \"blender\",\n    \"blinds-open\",\n    \"blinds-raised\",\n    \"blinds\",\n    \"block-brick-fire\",\n    \"block-brick\",\n    \"block-question\",\n    \"block-quote\",\n    \"block\",\n    \"blog\",\n    \"blueberries\",\n    \"bluetooth\",\n    \"bold\",\n    \"bolt-auto\",\n    \"bolt-lightning\",\n    \"bolt-slash\",\n    \"bolt\",\n    \"bomb\",\n    \"bone-break\",\n    \"bone\",\n    \"bong\",\n    \"book-arrow-right\",\n    \"book-arrow-up\",\n    \"book-atlas\",\n    \"book-bible\",\n    \"book-blank\",\n    \"book-bookmark\",\n    \"book-circle-arrow-right\",\n    \"book-circle-arrow-up\",\n    \"book-copy\",\n    \"book-font\",\n    \"book-heart\",\n    \"book-journal-whills\",\n    \"book-medical\",\n    \"book-open-cover\",\n    \"book-open-reader\",\n    \"book-open\",\n    \"book-quran\",\n    \"book-section\",\n    \"book-skull\",\n    \"book-sparkles\",\n    \"book-tanakh\",\n    \"book-user\",\n    \"book\",\n    \"bookmark-slash\",\n    \"bookmark\",\n    \"books-medical\",\n    \"books\",\n    \"boombox\",\n    \"boot-heeled\",\n    \"boot\",\n    \"booth-curtain\",\n    \"border-all\",\n    \"border-bottom-right\",\n    \"border-bottom\",\n    \"border-center-h\",\n    \"border-center-v\",\n    \"border-inner\",\n    \"border-left\",\n    \"border-none\",\n    \"border-outer\",\n    \"border-right\",\n    \"border-top-left\",\n    \"border-top\",\n    \"bore-hole\",\n    \"bottle-baby\",\n    \"bottle-droplet\",\n    \"bottle-water\",\n    \"bow-arrow\",\n    \"bowl-chopsticks-noodles\",\n    \"bowl-chopsticks\",\n    \"bowl-food\",\n    \"bowl-hot\",\n    \"bowl-rice\",\n    \"bowl-scoop\",\n    \"bowl-scoops\",\n    \"bowl-soft-serve\",\n    \"bowl-spoon\",\n    \"bowling-ball-pin\",\n    \"bowling-ball\",\n    \"bowling-pins\",\n    \"box-archive\",\n    \"box-ballot\",\n    \"box-check\",\n    \"box-circle-check\",\n    \"box-dollar\",\n    \"box-heart\",\n    \"box-open-full\",\n    \"box-open\",\n    \"box-taped\",\n    \"box-tissue\",\n    \"box\",\n    \"boxes-packing\",\n    \"boxes-stacked\",\n    \"boxing-glove\",\n    \"bracket-curly-right\",\n    \"bracket-curly\",\n    \"bracket-round-right\",\n    \"bracket-round\",\n    \"bracket-square-right\",\n    \"bracket-square\",\n    \"brackets-curly\",\n    \"brackets-round\",\n    \"brackets-square\",\n    \"braille\",\n    \"brain-arrow-curved-right\",\n    \"brain-circuit\",\n    \"brain\",\n    \"brake-warning\",\n    \"brazilian-real-sign\",\n    \"bread-loaf\",\n    \"bread-slice-butter\",\n    \"bread-slice\",\n    \"bridge-circle-check\",\n    \"bridge-circle-exclamation\",\n    \"bridge-circle-xmark\",\n    \"bridge-lock\",\n    \"bridge-suspension\",\n    \"bridge-water\",\n    \"bridge\",\n    \"briefcase-arrow-right\",\n    \"briefcase-blank\",\n    \"briefcase-medical\",\n    \"briefcase\",\n    \"brightness-low\",\n    \"brightness\",\n    \"bring-forward\",\n    \"bring-front\",\n    \"broccoli\",\n    \"broom-ball\",\n    \"broom-wide\",\n    \"broom\",\n    \"browser\",\n    \"browsers\",\n    \"brush\",\n    \"bucket\",\n    \"bug-slash\",\n    \"bug\",\n    \"bugs\",\n    \"building-circle-arrow-right\",\n    \"building-circle-check\",\n    \"building-circle-exclamation\",\n    \"building-circle-xmark\",\n    \"building-columns\",\n    \"building-flag\",\n    \"building-lock\",\n    \"building-magnifying-glass\",\n    \"building-memo\",\n    \"building-ngo\",\n    \"building-shield\",\n    \"building-un\",\n    \"building-user\",\n    \"building-wheat\",\n    \"building\",\n    \"buildings\",\n    \"bulldozer\",\n    \"bullhorn\",\n    \"bullseye-arrow\",\n    \"bullseye-pointer\",\n    \"bullseye\",\n    \"buoy-mooring\",\n    \"buoy\",\n    \"burger-cheese\",\n    \"burger-fries\",\n    \"burger-glass\",\n    \"burger-lettuce\",\n    \"burger-soda\",\n    \"burger\",\n    \"burrito\",\n    \"burst\",\n    \"bus-school\",\n    \"bus-simple\",\n    \"bus\",\n    \"business-time\",\n    \"butter\",\n    \"c\",\n    \"cabin\",\n    \"cabinet-filing\",\n    \"cable-car\",\n    \"cactus\",\n    \"caduceus\",\n    \"cake-candles\",\n    \"cake-slice\",\n    \"calculator-simple\",\n    \"calculator\",\n    \"calendar-arrow-down\",\n    \"calendar-arrow-up\",\n    \"calendar-check\",\n    \"calendar-circle-exclamation\",\n    \"calendar-circle-minus\",\n    \"calendar-circle-plus\",\n    \"calendar-circle-user\",\n    \"calendar-clock\",\n    \"calendar-day\",\n    \"calendar-days\",\n    \"calendar-exclamation\",\n    \"calendar-heart\",\n    \"calendar-image\",\n    \"calendar-lines-pen\",\n    \"calendar-lines\",\n    \"calendar-minus\",\n    \"calendar-pen\",\n    \"calendar-plus\",\n    \"calendar-range\",\n    \"calendar-star\",\n    \"calendar-users\",\n    \"calendar-week\",\n    \"calendar-xmark\",\n    \"calendar\",\n    \"calendars\",\n    \"camcorder\",\n    \"camera-cctv\",\n    \"camera-movie\",\n    \"camera-polaroid\",\n    \"camera-retro\",\n    \"camera-rotate\",\n    \"camera-security\",\n    \"camera-slash\",\n    \"camera-viewfinder\",\n    \"camera-web-slash\",\n    \"camera-web\",\n    \"camera\",\n    \"campfire\",\n    \"campground\",\n    \"can-food\",\n    \"candle-holder\",\n    \"candy-bar\",\n    \"candy-cane\",\n    \"candy-corn\",\n    \"candy\",\n    \"cannabis\",\n    \"cannon\",\n    \"capsules\",\n    \"car-battery\",\n    \"car-bolt\",\n    \"car-building\",\n    \"car-bump\",\n    \"car-burst\",\n    \"car-bus\",\n    \"car-circle-bolt\",\n    \"car-garage\",\n    \"car-mirrors\",\n    \"car-on\",\n    \"car-rear\",\n    \"car-side-bolt\",\n    \"car-side\",\n    \"car-tilt\",\n    \"car-tunnel\",\n    \"car-wash\",\n    \"car-wrench\",\n    \"car\",\n    \"caravan-simple\",\n    \"caravan\",\n    \"card-club\",\n    \"card-diamond\",\n    \"card-heart\",\n    \"card-spade\",\n    \"cards-blank\",\n    \"cards\",\n    \"caret-down\",\n    \"caret-left\",\n    \"caret-right\",\n    \"caret-up\",\n    \"carpool\",\n    \"carrot\",\n    \"cars\",\n    \"cart-arrow-down\",\n    \"cart-arrow-up\",\n    \"cart-circle-arrow-down\",\n    \"cart-circle-arrow-up\",\n    \"cart-circle-check\",\n    \"cart-circle-exclamation\",\n    \"cart-circle-plus\",\n    \"cart-circle-xmark\",\n    \"cart-flatbed-boxes\",\n    \"cart-flatbed-empty\",\n    \"cart-flatbed-suitcase\",\n    \"cart-flatbed\",\n    \"cart-minus\",\n    \"cart-plus\",\n    \"cart-shopping-fast\",\n    \"cart-shopping\",\n    \"cart-xmark\",\n    \"cash-register\",\n    \"cassette-betamax\",\n    \"cassette-tape\",\n    \"cassette-vhs\",\n    \"castle\",\n    \"cat-space\",\n    \"cat\",\n    \"cauldron\",\n    \"cedi-sign\",\n    \"cent-sign\",\n    \"certificate\",\n    \"chair-office\",\n    \"chair\",\n    \"chalkboard-user\",\n    \"chalkboard\",\n    \"champagne-glass\",\n    \"champagne-glasses\",\n    \"charging-station\",\n    \"chart-area\",\n    \"chart-bar\",\n    \"chart-bullet\",\n    \"chart-candlestick\",\n    \"chart-column\",\n    \"chart-diagram\",\n    \"chart-fft\",\n    \"chart-gantt\",\n    \"chart-kanban\",\n    \"chart-line-down\",\n    \"chart-line-up-down\",\n    \"chart-line-up\",\n    \"chart-line\",\n    \"chart-mixed-up-circle-currency\",\n    \"chart-mixed-up-circle-dollar\",\n    \"chart-mixed\",\n    \"chart-network\",\n    \"chart-pie-simple-circle-currency\",\n    \"chart-pie-simple-circle-dollar\",\n    \"chart-pie-simple\",\n    \"chart-pie\",\n    \"chart-pyramid\",\n    \"chart-radar\",\n    \"chart-scatter-3d\",\n    \"chart-scatter-bubble\",\n    \"chart-scatter\",\n    \"chart-simple-horizontal\",\n    \"chart-simple\",\n    \"chart-sine\",\n    \"chart-tree-map\",\n    \"chart-user\",\n    \"chart-waterfall\",\n    \"check-double\",\n    \"check-to-slot\",\n    \"check\",\n    \"cheese-swiss\",\n    \"cheese\",\n    \"cherries\",\n    \"chess-bishop-piece\",\n    \"chess-bishop\",\n    \"chess-board\",\n    \"chess-clock-flip\",\n    \"chess-clock\",\n    \"chess-king-piece\",\n    \"chess-king\",\n    \"chess-knight-piece\",\n    \"chess-knight\",\n    \"chess-pawn-piece\",\n    \"chess-pawn\",\n    \"chess-queen-piece\",\n    \"chess-queen\",\n    \"chess-rook-piece\",\n    \"chess-rook\",\n    \"chess\",\n    \"chestnut\",\n    \"chevron-down\",\n    \"chevron-left\",\n    \"chevron-right\",\n    \"chevron-up\",\n    \"chevrons-down\",\n    \"chevrons-left\",\n    \"chevrons-right\",\n    \"chevrons-up\",\n    \"chf-sign\",\n    \"child-combatant\",\n    \"child-dress\",\n    \"child-reaching\",\n    \"child\",\n    \"children\",\n    \"chimney\",\n    \"chopsticks\",\n    \"church\",\n    \"circle-0\",\n    \"circle-1\",\n    \"circle-2\",\n    \"circle-3\",\n    \"circle-4\",\n    \"circle-5\",\n    \"circle-6\",\n    \"circle-7\",\n    \"circle-8\",\n    \"circle-9\",\n    \"circle-a\",\n    \"circle-ampersand\",\n    \"circle-arrow-down-left\",\n    \"circle-arrow-down-right\",\n    \"circle-arrow-down\",\n    \"circle-arrow-left\",\n    \"circle-arrow-right\",\n    \"circle-arrow-up-left\",\n    \"circle-arrow-up-right\",\n    \"circle-arrow-up\",\n    \"circle-b\",\n    \"circle-bolt\",\n    \"circle-book-open\",\n    \"circle-bookmark\",\n    \"circle-c\",\n    \"circle-calendar\",\n    \"circle-camera\",\n    \"circle-caret-down\",\n    \"circle-caret-left\",\n    \"circle-caret-right\",\n    \"circle-caret-up\",\n    \"circle-check\",\n    \"circle-chevron-down\",\n    \"circle-chevron-left\",\n    \"circle-chevron-right\",\n    \"circle-chevron-up\",\n    \"circle-d\",\n    \"circle-dashed\",\n    \"circle-divide\",\n    \"circle-dollar-to-slot\",\n    \"circle-dollar\",\n    \"circle-dot\",\n    \"circle-down-left\",\n    \"circle-down-right\",\n    \"circle-down\",\n    \"circle-e\",\n    \"circle-ellipsis-vertical\",\n    \"circle-ellipsis\",\n    \"circle-envelope\",\n    \"circle-euro\",\n    \"circle-exclamation-check\",\n    \"circle-exclamation\",\n    \"circle-f\",\n    \"circle-g\",\n    \"circle-gf\",\n    \"circle-h\",\n    \"circle-half-stroke\",\n    \"circle-half\",\n    \"circle-heart\",\n    \"circle-i\",\n    \"circle-info\",\n    \"circle-j\",\n    \"circle-k\",\n    \"circle-l\",\n    \"circle-left\",\n    \"circle-location-arrow\",\n    \"circle-m\",\n    \"circle-microphone-lines\",\n    \"circle-microphone\",\n    \"circle-minus\",\n    \"circle-n\",\n    \"circle-nodes\",\n    \"circle-notch\",\n    \"circle-o\",\n    \"circle-p\",\n    \"circle-parking\",\n    \"circle-pause\",\n    \"circle-phone-flip\",\n    \"circle-phone-hangup\",\n    \"circle-phone\",\n    \"circle-play\",\n    \"circle-plus\",\n    \"circle-q\",\n    \"circle-quarter-stroke\",\n    \"circle-quarter\",\n    \"circle-quarters\",\n    \"circle-question\",\n    \"circle-r\",\n    \"circle-radiation\",\n    \"circle-right\",\n    \"circle-s\",\n    \"circle-small\",\n    \"circle-sort-down\",\n    \"circle-sort-up\",\n    \"circle-sort\",\n    \"circle-star\",\n    \"circle-sterling\",\n    \"circle-stop\",\n    \"circle-t\",\n    \"circle-three-quarters-stroke\",\n    \"circle-three-quarters\",\n    \"circle-trash\",\n    \"circle-u\",\n    \"circle-up-left\",\n    \"circle-up-right\",\n    \"circle-up\",\n    \"circle-user\",\n    \"circle-v\",\n    \"circle-video\",\n    \"circle-w\",\n    \"circle-waveform-lines\",\n    \"circle-wifi-circle-wifi\",\n    \"circle-wifi\",\n    \"circle-x\",\n    \"circle-xmark\",\n    \"circle-y\",\n    \"circle-yen\",\n    \"circle-z\",\n    \"circle\",\n    \"circles-overlap-3\",\n    \"circles-overlap\",\n    \"citrus-slice\",\n    \"citrus\",\n    \"city\",\n    \"clapperboard-play\",\n    \"clapperboard\",\n    \"clarinet\",\n    \"claw-marks\",\n    \"clipboard-check\",\n    \"clipboard-list-check\",\n    \"clipboard-list\",\n    \"clipboard-medical\",\n    \"clipboard-prescription\",\n    \"clipboard-question\",\n    \"clipboard-user\",\n    \"clipboard\",\n    \"clock-desk\",\n    \"clock-eight-thirty\",\n    \"clock-eight\",\n    \"clock-eleven-thirty\",\n    \"clock-eleven\",\n    \"clock-five-thirty\",\n    \"clock-five\",\n    \"clock-four-thirty\",\n    \"clock-nine-thirty\",\n    \"clock-nine\",\n    \"clock-one-thirty\",\n    \"clock-one\",\n    \"clock-rotate-left\",\n    \"clock-seven-thirty\",\n    \"clock-seven\",\n    \"clock-six-thirty\",\n    \"clock-six\",\n    \"clock-ten-thirty\",\n    \"clock-ten\",\n    \"clock-three-thirty\",\n    \"clock-three\",\n    \"clock-twelve-thirty\",\n    \"clock-twelve\",\n    \"clock-two-thirty\",\n    \"clock-two\",\n    \"clock\",\n    \"clone\",\n    \"closed-captioning-slash\",\n    \"closed-captioning\",\n    \"clothes-hanger\",\n    \"cloud-arrow-down\",\n    \"cloud-arrow-up\",\n    \"cloud-binary\",\n    \"cloud-bolt-moon\",\n    \"cloud-bolt-sun\",\n    \"cloud-bolt\",\n    \"cloud-check\",\n    \"cloud-drizzle\",\n    \"cloud-exclamation\",\n    \"cloud-fog\",\n    \"cloud-hail-mixed\",\n    \"cloud-hail\",\n    \"cloud-meatball\",\n    \"cloud-minus\",\n    \"cloud-moon-rain\",\n    \"cloud-moon\",\n    \"cloud-music\",\n    \"cloud-plus\",\n    \"cloud-question\",\n    \"cloud-rain\",\n    \"cloud-rainbow\",\n    \"cloud-showers-heavy\",\n    \"cloud-showers-water\",\n    \"cloud-showers\",\n    \"cloud-slash\",\n    \"cloud-sleet\",\n    \"cloud-snow\",\n    \"cloud-sun-rain\",\n    \"cloud-sun\",\n    \"cloud-word\",\n    \"cloud-xmark\",\n    \"cloud\",\n    \"clouds-moon\",\n    \"clouds-sun\",\n    \"clouds\",\n    \"clover\",\n    \"club\",\n    \"coconut\",\n    \"code-branch\",\n    \"code-commit\",\n    \"code-compare\",\n    \"code-fork\",\n    \"code-merge\",\n    \"code-pull-request-closed\",\n    \"code-pull-request-draft\",\n    \"code-pull-request\",\n    \"code-simple\",\n    \"code\",\n    \"coffee-bean\",\n    \"coffee-beans\",\n    \"coffee-pot\",\n    \"coffin-cross\",\n    \"coffin\",\n    \"coin-blank\",\n    \"coin-front\",\n    \"coin-vertical\",\n    \"coin\",\n    \"coins\",\n    \"colon-sign\",\n    \"colon\",\n    \"columns-3\",\n    \"comet\",\n    \"comma\",\n    \"command\",\n    \"comment-arrow-down\",\n    \"comment-arrow-up-right\",\n    \"comment-arrow-up\",\n    \"comment-captions\",\n    \"comment-check\",\n    \"comment-code\",\n    \"comment-dollar\",\n    \"comment-dots\",\n    \"comment-exclamation\",\n    \"comment-heart\",\n    \"comment-image\",\n    \"comment-lines\",\n    \"comment-medical\",\n    \"comment-middle-top\",\n    \"comment-middle\",\n    \"comment-minus\",\n    \"comment-music\",\n    \"comment-nodes\",\n    \"comment-pen\",\n    \"comment-plus\",\n    \"comment-question\",\n    \"comment-quote\",\n    \"comment-slash\",\n    \"comment-smile\",\n    \"comment-sms\",\n    \"comment-text\",\n    \"comment-xmark\",\n    \"comment\",\n    \"comments-dollar\",\n    \"comments-question-check\",\n    \"comments-question\",\n    \"comments\",\n    \"compact-disc\",\n    \"compass-drafting\",\n    \"compass-slash\",\n    \"compass\",\n    \"compress-wide\",\n    \"compress\",\n    \"computer-classic\",\n    \"computer-mouse-scrollwheel\",\n    \"computer-mouse\",\n    \"computer-speaker\",\n    \"computer\",\n    \"container-storage\",\n    \"conveyor-belt-arm\",\n    \"conveyor-belt-boxes\",\n    \"conveyor-belt-empty\",\n    \"conveyor-belt\",\n    \"cookie-bite\",\n    \"cookie\",\n    \"copy\",\n    \"copyright\",\n    \"corn\",\n    \"corner\",\n    \"couch\",\n    \"court-sport\",\n    \"cow\",\n    \"cowbell-circle-plus\",\n    \"cowbell\",\n    \"crab\",\n    \"crate-apple\",\n    \"crate-empty\",\n    \"credit-card-blank\",\n    \"credit-card-front\",\n    \"credit-card\",\n    \"cricket-bat-ball\",\n    \"croissant\",\n    \"crop-simple\",\n    \"crop\",\n    \"cross\",\n    \"crosshairs-simple\",\n    \"crosshairs\",\n    \"crow\",\n    \"crown\",\n    \"crutch\",\n    \"crutches\",\n    \"cruzeiro-sign\",\n    \"crystal-ball\",\n    \"cube\",\n    \"cubes-stacked\",\n    \"cubes\",\n    \"cucumber\",\n    \"cup-straw-swoosh\",\n    \"cup-straw\",\n    \"cup-togo\",\n    \"cupcake\",\n    \"curling-stone\",\n    \"custard\",\n    \"d\",\n    \"dagger\",\n    \"dash\",\n    \"database\",\n    \"deer-rudolph\",\n    \"deer\",\n    \"delete-left\",\n    \"delete-right\",\n    \"democrat\",\n    \"desktop-arrow-down\",\n    \"desktop\",\n    \"dharmachakra\",\n    \"diagram-cells\",\n    \"diagram-lean-canvas\",\n    \"diagram-nested\",\n    \"diagram-next\",\n    \"diagram-predecessor\",\n    \"diagram-previous\",\n    \"diagram-project\",\n    \"diagram-sankey\",\n    \"diagram-subtask\",\n    \"diagram-successor\",\n    \"diagram-venn\",\n    \"dial-high\",\n    \"dial-low\",\n    \"dial-max\",\n    \"dial-med-low\",\n    \"dial-med\",\n    \"dial-min\",\n    \"dial-off\",\n    \"dial\",\n    \"diamond-exclamation\",\n    \"diamond-half-stroke\",\n    \"diamond-half\",\n    \"diamond-turn-right\",\n    \"diamond\",\n    \"diamonds-4\",\n    \"dice-d10\",\n    \"dice-d12\",\n    \"dice-d20\",\n    \"dice-d4\",\n    \"dice-d6\",\n    \"dice-d8\",\n    \"dice-five\",\n    \"dice-four\",\n    \"dice-one\",\n    \"dice-six\",\n    \"dice-three\",\n    \"dice-two\",\n    \"dice\",\n    \"dinosaur\",\n    \"diploma\",\n    \"disc-drive\",\n    \"disease\",\n    \"display-arrow-down\",\n    \"display-chart-up-circle-currency\",\n    \"display-chart-up-circle-dollar\",\n    \"display-chart-up\",\n    \"display-code\",\n    \"display-medical\",\n    \"display-slash\",\n    \"display\",\n    \"distribute-spacing-horizontal\",\n    \"distribute-spacing-vertical\",\n    \"ditto\",\n    \"divide\",\n    \"dna\",\n    \"do-not-enter\",\n    \"dog-leashed\",\n    \"dog\",\n    \"dollar-sign\",\n    \"dolly-empty\",\n    \"dolly\",\n    \"dolphin\",\n    \"dong-sign\",\n    \"donut\",\n    \"door-closed\",\n    \"door-open\",\n    \"dove\",\n    \"down-from-bracket\",\n    \"down-from-dotted-line\",\n    \"down-from-line\",\n    \"down-left-and-up-right-to-center\",\n    \"down-left\",\n    \"down-long\",\n    \"down-right\",\n    \"down-to-bracket\",\n    \"down-to-dotted-line\",\n    \"down-to-line\",\n    \"down\",\n    \"download\",\n    \"dragon\",\n    \"draw-circle\",\n    \"draw-polygon\",\n    \"draw-square\",\n    \"dreidel\",\n    \"drone-front\",\n    \"drone\",\n    \"droplet-degree\",\n    \"droplet-percent\",\n    \"droplet-slash\",\n    \"droplet\",\n    \"drum-steelpan\",\n    \"drum\",\n    \"drumstick-bite\",\n    \"drumstick\",\n    \"dryer-heat\",\n    \"dryer\",\n    \"duck\",\n    \"dumbbell\",\n    \"dumpster-fire\",\n    \"dumpster\",\n    \"dungeon\",\n    \"e\",\n    \"ear-deaf\",\n    \"ear-listen\",\n    \"ear-muffs\",\n    \"ear\",\n    \"earth-africa\",\n    \"earth-americas\",\n    \"earth-asia\",\n    \"earth-europe\",\n    \"earth-oceania\",\n    \"eclipse\",\n    \"egg-fried\",\n    \"egg\",\n    \"eggplant\",\n    \"eject\",\n    \"elephant\",\n    \"elevator\",\n    \"ellipsis-stroke-vertical\",\n    \"ellipsis-stroke\",\n    \"ellipsis-vertical\",\n    \"ellipsis\",\n    \"empty-set\",\n    \"engine-warning\",\n    \"engine\",\n    \"envelope-circle-check\",\n    \"envelope-dot\",\n    \"envelope-open-dollar\",\n    \"envelope-open-text\",\n    \"envelope-open\",\n    \"envelope\",\n    \"envelopes-bulk\",\n    \"envelopes\",\n    \"equals\",\n    \"eraser\",\n    \"escalator\",\n    \"ethernet\",\n    \"euro-sign\",\n    \"excavator\",\n    \"exclamation\",\n    \"expand-wide\",\n    \"expand\",\n    \"explosion\",\n    \"eye-dropper-full\",\n    \"eye-dropper-half\",\n    \"eye-dropper\",\n    \"eye-evil\",\n    \"eye-low-vision\",\n    \"eye-slash\",\n    \"eye\",\n    \"eyes\",\n    \"f\",\n    \"face-angry-horns\",\n    \"face-angry\",\n    \"face-anguished\",\n    \"face-anxious-sweat\",\n    \"face-astonished\",\n    \"face-awesome\",\n    \"face-beam-hand-over-mouth\",\n    \"face-clouds\",\n    \"face-confounded\",\n    \"face-confused\",\n    \"face-cowboy-hat\",\n    \"face-diagonal-mouth\",\n    \"face-disappointed\",\n    \"face-disguise\",\n    \"face-dizzy\",\n    \"face-dotted\",\n    \"face-downcast-sweat\",\n    \"face-drooling\",\n    \"face-exhaling\",\n    \"face-explode\",\n    \"face-expressionless\",\n    \"face-eyes-xmarks\",\n    \"face-fearful\",\n    \"face-flushed\",\n    \"face-frown-open\",\n    \"face-frown-slight\",\n    \"face-frown\",\n    \"face-glasses\",\n    \"face-grimace\",\n    \"face-grin-beam-sweat\",\n    \"face-grin-beam\",\n    \"face-grin-hearts\",\n    \"face-grin-squint-tears\",\n    \"face-grin-squint\",\n    \"face-grin-stars\",\n    \"face-grin-tears\",\n    \"face-grin-tongue-squint\",\n    \"face-grin-tongue-wink\",\n    \"face-grin-tongue\",\n    \"face-grin-wide\",\n    \"face-grin-wink\",\n    \"face-grin\",\n    \"face-hand-over-mouth\",\n    \"face-hand-peeking\",\n    \"face-hand-yawn\",\n    \"face-head-bandage\",\n    \"face-holding-back-tears\",\n    \"face-hushed\",\n    \"face-icicles\",\n    \"face-kiss-beam\",\n    \"face-kiss-closed-eyes\",\n    \"face-kiss-wink-heart\",\n    \"face-kiss\",\n    \"face-laugh-beam\",\n    \"face-laugh-squint\",\n    \"face-laugh-wink\",\n    \"face-laugh\",\n    \"face-lying\",\n    \"face-mask\",\n    \"face-meh-blank\",\n    \"face-meh\",\n    \"face-melting\",\n    \"face-monocle\",\n    \"face-nauseated\",\n    \"face-nose-steam\",\n    \"face-party\",\n    \"face-pensive\",\n    \"face-persevering\",\n    \"face-pleading\",\n    \"face-pouting\",\n    \"face-raised-eyebrow\",\n    \"face-relieved\",\n    \"face-rolling-eyes\",\n    \"face-sad-cry\",\n    \"face-sad-sweat\",\n    \"face-sad-tear\",\n    \"face-saluting\",\n    \"face-scream\",\n    \"face-shush\",\n    \"face-sleeping\",\n    \"face-sleepy\",\n    \"face-smile-beam\",\n    \"face-smile-halo\",\n    \"face-smile-hearts\",\n    \"face-smile-horns\",\n    \"face-smile-plus\",\n    \"face-smile-relaxed\",\n    \"face-smile-tear\",\n    \"face-smile-tongue\",\n    \"face-smile-upside-down\",\n    \"face-smile-wink\",\n    \"face-smile\",\n    \"face-smiling-hands\",\n    \"face-smirking\",\n    \"face-spiral-eyes\",\n    \"face-sunglasses\",\n    \"face-surprise\",\n    \"face-swear\",\n    \"face-thermometer\",\n    \"face-thinking\",\n    \"face-tired\",\n    \"face-tissue\",\n    \"face-tongue-money\",\n    \"face-tongue-sweat\",\n    \"face-unamused\",\n    \"face-viewfinder\",\n    \"face-vomit\",\n    \"face-weary\",\n    \"face-woozy\",\n    \"face-worried\",\n    \"face-zany\",\n    \"face-zipper\",\n    \"falafel\",\n    \"family-dress\",\n    \"family-pants\",\n    \"family\",\n    \"fan-table\",\n    \"fan\",\n    \"farm\",\n    \"faucet-drip\",\n    \"faucet\",\n    \"fax\",\n    \"feather-pointed\",\n    \"feather\",\n    \"fence\",\n    \"ferris-wheel\",\n    \"ferry\",\n    \"field-hockey-stick-ball\",\n    \"file-arrow-down\",\n    \"file-arrow-up\",\n    \"file-audio\",\n    \"file-binary\",\n    \"file-cad\",\n    \"file-certificate\",\n    \"file-chart-column\",\n    \"file-chart-pie\",\n    \"file-check\",\n    \"file-circle-check\",\n    \"file-circle-exclamation\",\n    \"file-circle-info\",\n    \"file-circle-minus\",\n    \"file-circle-plus\",\n    \"file-circle-question\",\n    \"file-circle-xmark\",\n    \"file-code\",\n    \"file-contract\",\n    \"file-csv\",\n    \"file-dashed-line\",\n    \"file-doc\",\n    \"file-eps\",\n    \"file-excel\",\n    \"file-exclamation\",\n    \"file-export\",\n    \"file-fragment\",\n    \"file-gif\",\n    \"file-half-dashed\",\n    \"file-heart\",\n    \"file-image\",\n    \"file-import\",\n    \"file-invoice-dollar\",\n    \"file-invoice\",\n    \"file-jpg\",\n    \"file-lines\",\n    \"file-lock\",\n    \"file-magnifying-glass\",\n    \"file-medical\",\n    \"file-minus\",\n    \"file-mov\",\n    \"file-mp3\",\n    \"file-mp4\",\n    \"file-music\",\n    \"file-pdf\",\n    \"file-pen\",\n    \"file-plus-minus\",\n    \"file-plus\",\n    \"file-png\",\n    \"file-powerpoint\",\n    \"file-ppt\",\n    \"file-prescription\",\n    \"file-shield\",\n    \"file-signature\",\n    \"file-slash\",\n    \"file-spreadsheet\",\n    \"file-svg\",\n    \"file-user\",\n    \"file-vector\",\n    \"file-video\",\n    \"file-waveform\",\n    \"file-word\",\n    \"file-xls\",\n    \"file-xmark\",\n    \"file-xml\",\n    \"file-zip\",\n    \"file-zipper\",\n    \"file\",\n    \"files-medical\",\n    \"files\",\n    \"fill-drip\",\n    \"fill\",\n    \"film-canister\",\n    \"film-simple\",\n    \"film-slash\",\n    \"film\",\n    \"films\",\n    \"filter-circle-dollar\",\n    \"filter-circle-xmark\",\n    \"filter-list\",\n    \"filter-slash\",\n    \"filter\",\n    \"filters\",\n    \"fingerprint\",\n    \"fire-burner\",\n    \"fire-extinguisher\",\n    \"fire-flame-curved\",\n    \"fire-flame-simple\",\n    \"fire-flame\",\n    \"fire-hydrant\",\n    \"fire-smoke\",\n    \"fire\",\n    \"fireplace\",\n    \"fish-bones\",\n    \"fish-cooked\",\n    \"fish-fins\",\n    \"fish\",\n    \"fishing-rod\",\n    \"flag-checkered\",\n    \"flag-pennant\",\n    \"flag-swallowtail\",\n    \"flag-usa\",\n    \"flag\",\n    \"flashlight\",\n    \"flask-gear\",\n    \"flask-round-poison\",\n    \"flask-round-potion\",\n    \"flask-vial\",\n    \"flask\",\n    \"flatbread-stuffed\",\n    \"flatbread\",\n    \"floppy-disk-circle-arrow-right\",\n    \"floppy-disk-circle-xmark\",\n    \"floppy-disk-pen\",\n    \"floppy-disk\",\n    \"floppy-disks\",\n    \"florin-sign\",\n    \"flower-daffodil\",\n    \"flower-tulip\",\n    \"flower\",\n    \"flute\",\n    \"flux-capacitor\",\n    \"flying-disc\",\n    \"folder-arrow-down\",\n    \"folder-arrow-up\",\n    \"folder-bookmark\",\n    \"folder-check\",\n    \"folder-closed\",\n    \"folder-gear\",\n    \"folder-grid\",\n    \"folder-heart\",\n    \"folder-image\",\n    \"folder-magnifying-glass\",\n    \"folder-medical\",\n    \"folder-minus\",\n    \"folder-music\",\n    \"folder-open\",\n    \"folder-plus\",\n    \"folder-tree\",\n    \"folder-user\",\n    \"folder-xmark\",\n    \"folder\",\n    \"folders\",\n    \"fondue-pot\",\n    \"font-awesome\",\n    \"font-case\",\n    \"font\",\n    \"football-helmet\",\n    \"football\",\n    \"fork-knife\",\n    \"fork\",\n    \"forklift\",\n    \"fort\",\n    \"forward-fast\",\n    \"forward-step\",\n    \"forward\",\n    \"frame\",\n    \"franc-sign\",\n    \"french-fries\",\n    \"frog\",\n    \"function\",\n    \"futbol\",\n    \"g\",\n    \"galaxy\",\n    \"gallery-thumbnails\",\n    \"game-board-simple\",\n    \"game-board\",\n    \"game-console-handheld-crank\",\n    \"game-console-handheld\",\n    \"gamepad-modern\",\n    \"gamepad\",\n    \"garage-car\",\n    \"garage-open\",\n    \"garage\",\n    \"garlic\",\n    \"gas-pump-slash\",\n    \"gas-pump\",\n    \"gauge-circle-bolt\",\n    \"gauge-circle-minus\",\n    \"gauge-circle-plus\",\n    \"gauge-high\",\n    \"gauge-low\",\n    \"gauge-max\",\n    \"gauge-min\",\n    \"gauge-simple-high\",\n    \"gauge-simple-low\",\n    \"gauge-simple-max\",\n    \"gauge-simple-min\",\n    \"gauge-simple\",\n    \"gauge\",\n    \"gavel\",\n    \"gear-code\",\n    \"gear-complex-code\",\n    \"gear-complex\",\n    \"gear\",\n    \"gears\",\n    \"gem\",\n    \"genderless\",\n    \"ghost\",\n    \"gif\",\n    \"gift-card\",\n    \"gift\",\n    \"gifts\",\n    \"gingerbread-man\",\n    \"glass-citrus\",\n    \"glass-empty\",\n    \"glass-half\",\n    \"glass-water-droplet\",\n    \"glass-water\",\n    \"glass\",\n    \"glasses-round\",\n    \"glasses\",\n    \"globe-pointer\",\n    \"globe-snow\",\n    \"globe-stand\",\n    \"globe-wifi\",\n    \"globe\",\n    \"goal-net\",\n    \"golf-ball-tee\",\n    \"golf-club\",\n    \"golf-flag-hole\",\n    \"gopuram\",\n    \"graduation-cap\",\n    \"gramophone\",\n    \"grapes\",\n    \"grate-droplet\",\n    \"grate\",\n    \"greater-than-equal\",\n    \"greater-than\",\n    \"grid-2-plus\",\n    \"grid-2\",\n    \"grid-4\",\n    \"grid-5\",\n    \"grid-dividers\",\n    \"grid-horizontal\",\n    \"grid-round-2-plus\",\n    \"grid-round-2\",\n    \"grid-round-4\",\n    \"grid-round-5\",\n    \"grid-round\",\n    \"grid\",\n    \"grill-fire\",\n    \"grill-hot\",\n    \"grill\",\n    \"grip-dots-vertical\",\n    \"grip-dots\",\n    \"grip-lines-vertical\",\n    \"grip-lines\",\n    \"grip-vertical\",\n    \"grip\",\n    \"group-arrows-rotate\",\n    \"guarani-sign\",\n    \"guitar-electric\",\n    \"guitar\",\n    \"guitars\",\n    \"gun-slash\",\n    \"gun-squirt\",\n    \"gun\",\n    \"h\",\n    \"h1\",\n    \"h2\",\n    \"h3\",\n    \"h4\",\n    \"h5\",\n    \"h6\",\n    \"hammer-brush\",\n    \"hammer-crash\",\n    \"hammer-war\",\n    \"hammer\",\n    \"hamsa\",\n    \"hand-back-fist\",\n    \"hand-back-point-down\",\n    \"hand-back-point-left\",\n    \"hand-back-point-ribbon\",\n    \"hand-back-point-right\",\n    \"hand-back-point-up\",\n    \"hand-dots\",\n    \"hand-fingers-crossed\",\n    \"hand-fist\",\n    \"hand-heart\",\n    \"hand-holding-box\",\n    \"hand-holding-circle-dollar\",\n    \"hand-holding-dollar\",\n    \"hand-holding-droplet\",\n    \"hand-holding-hand\",\n    \"hand-holding-heart\",\n    \"hand-holding-magic\",\n    \"hand-holding-medical\",\n    \"hand-holding-seedling\",\n    \"hand-holding-skull\",\n    \"hand-holding\",\n    \"hand-horns\",\n    \"hand-lizard\",\n    \"hand-love\",\n    \"hand-middle-finger\",\n    \"hand-peace\",\n    \"hand-point-down\",\n    \"hand-point-left\",\n    \"hand-point-ribbon\",\n    \"hand-point-right\",\n    \"hand-point-up\",\n    \"hand-pointer\",\n    \"hand-scissors\",\n    \"hand-sparkles\",\n    \"hand-spock\",\n    \"hand-wave\",\n    \"hand\",\n    \"handcuffs\",\n    \"hands-asl-interpreting\",\n    \"hands-bound\",\n    \"hands-bubbles\",\n    \"hands-clapping\",\n    \"hands-holding-child\",\n    \"hands-holding-circle\",\n    \"hands-holding-diamond\",\n    \"hands-holding-dollar\",\n    \"hands-holding-heart\",\n    \"hands-holding\",\n    \"hands-praying\",\n    \"hands\",\n    \"handshake-angle\",\n    \"handshake-simple-slash\",\n    \"handshake-simple\",\n    \"handshake-slash\",\n    \"handshake\",\n    \"hanukiah\",\n    \"hard-drive\",\n    \"hashtag-lock\",\n    \"hashtag\",\n    \"hat-beach\",\n    \"hat-chef\",\n    \"hat-cowboy-side\",\n    \"hat-cowboy\",\n    \"hat-santa\",\n    \"hat-winter\",\n    \"hat-witch\",\n    \"hat-wizard\",\n    \"head-side-brain\",\n    \"head-side-cough-slash\",\n    \"head-side-cough\",\n    \"head-side-gear\",\n    \"head-side-goggles\",\n    \"head-side-headphones\",\n    \"head-side-heart\",\n    \"head-side-mask\",\n    \"head-side-medical\",\n    \"head-side-virus\",\n    \"head-side\",\n    \"heading\",\n    \"headphones-simple\",\n    \"headphones\",\n    \"headset\",\n    \"heart-circle-bolt\",\n    \"heart-circle-check\",\n    \"heart-circle-exclamation\",\n    \"heart-circle-minus\",\n    \"heart-circle-plus\",\n    \"heart-circle-xmark\",\n    \"heart-crack\",\n    \"heart-half-stroke\",\n    \"heart-half\",\n    \"heart-pulse\",\n    \"heart\",\n    \"heat\",\n    \"helicopter-symbol\",\n    \"helicopter\",\n    \"helmet-battle\",\n    \"helmet-safety\",\n    \"helmet-un\",\n    \"hexagon-check\",\n    \"hexagon-divide\",\n    \"hexagon-exclamation\",\n    \"hexagon-image\",\n    \"hexagon-minus\",\n    \"hexagon-nodes-bolt\",\n    \"hexagon-nodes\",\n    \"hexagon-plus\",\n    \"hexagon-vertical-nft-slanted\",\n    \"hexagon-vertical-nft\",\n    \"hexagon-xmark\",\n    \"hexagon\",\n    \"high-definition\",\n    \"highlighter-line\",\n    \"highlighter\",\n    \"hill-avalanche\",\n    \"hill-rockslide\",\n    \"hippo\",\n    \"hockey-mask\",\n    \"hockey-puck\",\n    \"hockey-stick-puck\",\n    \"hockey-sticks\",\n    \"holly-berry\",\n    \"honey-pot\",\n    \"hood-cloak\",\n    \"horizontal-rule\",\n    \"horse-head\",\n    \"horse-saddle\",\n    \"horse\",\n    \"hose-reel\",\n    \"hose\",\n    \"hospital-user\",\n    \"hospital\",\n    \"hospitals\",\n    \"hot-tub-person\",\n    \"hotdog\",\n    \"hotel\",\n    \"hourglass-clock\",\n    \"hourglass-end\",\n    \"hourglass-half\",\n    \"hourglass-start\",\n    \"hourglass\",\n    \"house-blank\",\n    \"house-building\",\n    \"house-chimney-blank\",\n    \"house-chimney-crack\",\n    \"house-chimney-heart\",\n    \"house-chimney-medical\",\n    \"house-chimney-user\",\n    \"house-chimney-window\",\n    \"house-chimney\",\n    \"house-circle-check\",\n    \"house-circle-exclamation\",\n    \"house-circle-xmark\",\n    \"house-crack\",\n    \"house-day\",\n    \"house-fire\",\n    \"house-flag\",\n    \"house-flood-water-circle-arrow-right\",\n    \"house-flood-water\",\n    \"house-heart\",\n    \"house-laptop\",\n    \"house-lock\",\n    \"house-medical-circle-check\",\n    \"house-medical-circle-exclamation\",\n    \"house-medical-circle-xmark\",\n    \"house-medical-flag\",\n    \"house-medical\",\n    \"house-night\",\n    \"house-person-leave\",\n    \"house-person-return\",\n    \"house-signal\",\n    \"house-tree\",\n    \"house-tsunami\",\n    \"house-turret\",\n    \"house-user\",\n    \"house-water\",\n    \"house-window\",\n    \"house\",\n    \"hryvnia-sign\",\n    \"hundred-points\",\n    \"hurricane\",\n    \"hydra\",\n    \"hyphen\",\n    \"i-cursor\",\n    \"i\",\n    \"ice-cream\",\n    \"ice-skate\",\n    \"icicles\",\n    \"icons\",\n    \"id-badge\",\n    \"id-card-clip\",\n    \"id-card\",\n    \"igloo\",\n    \"image-landscape\",\n    \"image-polaroid-user\",\n    \"image-polaroid\",\n    \"image-portrait\",\n    \"image-slash\",\n    \"image-user\",\n    \"image\",\n    \"images-user\",\n    \"images\",\n    \"inbox-full\",\n    \"inbox-in\",\n    \"inbox-out\",\n    \"inbox\",\n    \"inboxes\",\n    \"indent\",\n    \"indian-rupee-sign\",\n    \"industry-windows\",\n    \"industry\",\n    \"infinity\",\n    \"info\",\n    \"inhaler\",\n    \"input-numeric\",\n    \"input-pipe\",\n    \"input-text\",\n    \"integral\",\n    \"interrobang\",\n    \"intersection\",\n    \"island-tropical\",\n    \"italic\",\n    \"j\",\n    \"jack-o-lantern\",\n    \"jar-wheat\",\n    \"jar\",\n    \"jedi\",\n    \"jet-fighter-up\",\n    \"jet-fighter\",\n    \"joint\",\n    \"joystick\",\n    \"jug-bottle\",\n    \"jug-detergent\",\n    \"jug\",\n    \"k\",\n    \"kaaba\",\n    \"kazoo\",\n    \"kerning\",\n    \"key-skeleton-left-right\",\n    \"key-skeleton\",\n    \"key\",\n    \"keyboard-brightness-low\",\n    \"keyboard-brightness\",\n    \"keyboard-down\",\n    \"keyboard-left\",\n    \"keyboard\",\n    \"keynote\",\n    \"khanda\",\n    \"kidneys\",\n    \"kip-sign\",\n    \"kit-medical\",\n    \"kitchen-set\",\n    \"kite\",\n    \"kiwi-bird\",\n    \"kiwi-fruit\",\n    \"knife-kitchen\",\n    \"knife\",\n    \"l\",\n    \"lacrosse-stick-ball\",\n    \"lacrosse-stick\",\n    \"lambda\",\n    \"lamp-desk\",\n    \"lamp-floor\",\n    \"lamp-street\",\n    \"lamp\",\n    \"land-mine-on\",\n    \"landmark-dome\",\n    \"landmark-flag\",\n    \"landmark-magnifying-glass\",\n    \"landmark\",\n    \"language\",\n    \"laptop-arrow-down\",\n    \"laptop-binary\",\n    \"laptop-code\",\n    \"laptop-file\",\n    \"laptop-medical\",\n    \"laptop-mobile\",\n    \"laptop-slash\",\n    \"laptop\",\n    \"lari-sign\",\n    \"lasso-sparkles\",\n    \"lasso\",\n    \"layer-group\",\n    \"layer-minus\",\n    \"layer-plus\",\n    \"leaf-heart\",\n    \"leaf-maple\",\n    \"leaf-oak\",\n    \"leaf\",\n    \"leafy-green\",\n    \"left-from-bracket\",\n    \"left-from-line\",\n    \"left-long-to-line\",\n    \"left-long\",\n    \"left-right\",\n    \"left-to-bracket\",\n    \"left-to-line\",\n    \"left\",\n    \"lemon\",\n    \"less-than-equal\",\n    \"less-than\",\n    \"life-ring\",\n    \"light-ceiling\",\n    \"light-emergency-on\",\n    \"light-emergency\",\n    \"light-switch-off\",\n    \"light-switch-on\",\n    \"light-switch\",\n    \"lightbulb-cfl-on\",\n    \"lightbulb-cfl\",\n    \"lightbulb-dollar\",\n    \"lightbulb-exclamation-on\",\n    \"lightbulb-exclamation\",\n    \"lightbulb-gear\",\n    \"lightbulb-message\",\n    \"lightbulb-on\",\n    \"lightbulb-slash\",\n    \"lightbulb\",\n    \"lighthouse\",\n    \"lights-holiday\",\n    \"line-columns\",\n    \"line-height\",\n    \"lines-leaning\",\n    \"link-horizontal-slash\",\n    \"link-horizontal\",\n    \"link-simple-slash\",\n    \"link-simple\",\n    \"link-slash\",\n    \"link\",\n    \"lips\",\n    \"lira-sign\",\n    \"list-check\",\n    \"list-dropdown\",\n    \"list-music\",\n    \"list-ol\",\n    \"list-radio\",\n    \"list-timeline\",\n    \"list-tree\",\n    \"list-ul\",\n    \"list\",\n    \"litecoin-sign\",\n    \"loader\",\n    \"lobster\",\n    \"location-arrow-up\",\n    \"location-arrow\",\n    \"location-check\",\n    \"location-crosshairs-slash\",\n    \"location-crosshairs\",\n    \"location-dot-slash\",\n    \"location-dot\",\n    \"location-exclamation\",\n    \"location-minus\",\n    \"location-pen\",\n    \"location-pin-lock\",\n    \"location-pin-slash\",\n    \"location-pin\",\n    \"location-plus\",\n    \"location-question\",\n    \"location-smile\",\n    \"location-xmark\",\n    \"lock-a\",\n    \"lock-hashtag\",\n    \"lock-keyhole-open\",\n    \"lock-keyhole\",\n    \"lock-open\",\n    \"lock\",\n    \"locust\",\n    \"lollipop\",\n    \"loveseat\",\n    \"luchador-mask\",\n    \"lungs-virus\",\n    \"lungs\",\n    \"m\",\n    \"mace\",\n    \"magnet\",\n    \"magnifying-glass-arrow-right\",\n    \"magnifying-glass-arrows-rotate\",\n    \"magnifying-glass-chart\",\n    \"magnifying-glass-dollar\",\n    \"magnifying-glass-location\",\n    \"magnifying-glass-minus\",\n    \"magnifying-glass-music\",\n    \"magnifying-glass-play\",\n    \"magnifying-glass-plus\",\n    \"magnifying-glass-waveform\",\n    \"magnifying-glass\",\n    \"mailbox-flag-up\",\n    \"mailbox\",\n    \"manat-sign\",\n    \"mandolin\",\n    \"mango\",\n    \"manhole\",\n    \"map-location-dot\",\n    \"map-location\",\n    \"map-pin\",\n    \"map\",\n    \"marker\",\n    \"mars-and-venus-burst\",\n    \"mars-and-venus\",\n    \"mars-double\",\n    \"mars-stroke-right\",\n    \"mars-stroke-up\",\n    \"mars-stroke\",\n    \"mars\",\n    \"martini-glass-citrus\",\n    \"martini-glass-empty\",\n    \"martini-glass\",\n    \"mask-face\",\n    \"mask-snorkel\",\n    \"mask-ventilator\",\n    \"mask\",\n    \"masks-theater\",\n    \"mattress-pillow\",\n    \"maximize\",\n    \"meat\",\n    \"medal\",\n    \"megaphone\",\n    \"melon-slice\",\n    \"melon\",\n    \"memo-circle-check\",\n    \"memo-circle-info\",\n    \"memo-pad\",\n    \"memo\",\n    \"memory\",\n    \"menorah\",\n    \"mercury\",\n    \"merge\",\n    \"message-arrow-down\",\n    \"message-arrow-up-right\",\n    \"message-arrow-up\",\n    \"message-bot\",\n    \"message-captions\",\n    \"message-check\",\n    \"message-code\",\n    \"message-dollar\",\n    \"message-dots\",\n    \"message-exclamation\",\n    \"message-heart\",\n    \"message-image\",\n    \"message-lines\",\n    \"message-medical\",\n    \"message-middle-top\",\n    \"message-middle\",\n    \"message-minus\",\n    \"message-music\",\n    \"message-pen\",\n    \"message-plus\",\n    \"message-question\",\n    \"message-quote\",\n    \"message-slash\",\n    \"message-smile\",\n    \"message-sms\",\n    \"message-text\",\n    \"message-xmark\",\n    \"message\",\n    \"messages-dollar\",\n    \"messages-question\",\n    \"messages\",\n    \"meteor\",\n    \"meter-bolt\",\n    \"meter-droplet\",\n    \"meter-fire\",\n    \"meter\",\n    \"microchip-ai\",\n    \"microchip\",\n    \"microphone-lines-slash\",\n    \"microphone-lines\",\n    \"microphone-slash\",\n    \"microphone-stand\",\n    \"microphone\",\n    \"microscope\",\n    \"microwave\",\n    \"mill-sign\",\n    \"minimize\",\n    \"minus\",\n    \"mistletoe\",\n    \"mitten\",\n    \"mobile-button\",\n    \"mobile-notch\",\n    \"mobile-retro\",\n    \"mobile-screen-button\",\n    \"mobile-screen\",\n    \"mobile-signal-out\",\n    \"mobile-signal\",\n    \"mobile\",\n    \"money-bill-1-wave\",\n    \"money-bill-1\",\n    \"money-bill-simple-wave\",\n    \"money-bill-simple\",\n    \"money-bill-transfer\",\n    \"money-bill-trend-up\",\n    \"money-bill-wave\",\n    \"money-bill-wheat\",\n    \"money-bill\",\n    \"money-bills-simple\",\n    \"money-bills\",\n    \"money-check-dollar-pen\",\n    \"money-check-dollar\",\n    \"money-check-pen\",\n    \"money-check\",\n    \"money-from-bracket\",\n    \"money-simple-from-bracket\",\n    \"monitor-waveform\",\n    \"monkey\",\n    \"monument\",\n    \"moon-cloud\",\n    \"moon-over-sun\",\n    \"moon-stars\",\n    \"moon\",\n    \"moped\",\n    \"mortar-pestle\",\n    \"mosque\",\n    \"mosquito-net\",\n    \"mosquito\",\n    \"motorcycle\",\n    \"mound\",\n    \"mountain-city\",\n    \"mountain-sun\",\n    \"mountain\",\n    \"mountains\",\n    \"mouse-field\",\n    \"mp3-player\",\n    \"mug-hot\",\n    \"mug-marshmallows\",\n    \"mug-saucer\",\n    \"mug-tea-saucer\",\n    \"mug-tea\",\n    \"mug\",\n    \"mushroom\",\n    \"music-magnifying-glass\",\n    \"music-note-slash\",\n    \"music-note\",\n    \"music-slash\",\n    \"music\",\n    \"mustache\",\n    \"n\",\n    \"naira-sign\",\n    \"narwhal\",\n    \"nesting-dolls\",\n    \"network-wired\",\n    \"neuter\",\n    \"newspaper\",\n    \"nfc-lock\",\n    \"nfc-magnifying-glass\",\n    \"nfc-pen\",\n    \"nfc-signal\",\n    \"nfc-slash\",\n    \"nfc-symbol\",\n    \"nfc-trash\",\n    \"nfc\",\n    \"nose\",\n    \"not-equal\",\n    \"notdef\",\n    \"note-medical\",\n    \"note-sticky\",\n    \"note\",\n    \"notebook\",\n    \"notes-medical\",\n    \"notes\",\n    \"o\",\n    \"object-exclude\",\n    \"object-group\",\n    \"object-intersect\",\n    \"object-subtract\",\n    \"object-ungroup\",\n    \"object-union\",\n    \"objects-align-bottom\",\n    \"objects-align-center-horizontal\",\n    \"objects-align-center-vertical\",\n    \"objects-align-left\",\n    \"objects-align-right\",\n    \"objects-align-top\",\n    \"objects-column\",\n    \"octagon-check\",\n    \"octagon-divide\",\n    \"octagon-exclamation\",\n    \"octagon-minus\",\n    \"octagon-plus\",\n    \"octagon-xmark\",\n    \"octagon\",\n    \"octopus\",\n    \"oil-can-drip\",\n    \"oil-can\",\n    \"oil-temperature\",\n    \"oil-well\",\n    \"olive-branch\",\n    \"olive\",\n    \"om\",\n    \"omega\",\n    \"onion\",\n    \"option\",\n    \"ornament\",\n    \"otter\",\n    \"outdent\",\n    \"outlet\",\n    \"oven\",\n    \"overline\",\n    \"p\",\n    \"page-caret-down\",\n    \"page-caret-up\",\n    \"page\",\n    \"pager\",\n    \"paint-roller\",\n    \"paintbrush-fine\",\n    \"paintbrush-pencil\",\n    \"paintbrush\",\n    \"palette\",\n    \"pallet-box\",\n    \"pallet-boxes\",\n    \"pallet\",\n    \"pan-food\",\n    \"pan-frying\",\n    \"pancakes\",\n    \"panel-ews\",\n    \"panel-fire\",\n    \"panorama\",\n    \"paper-plane-top\",\n    \"paper-plane\",\n    \"paperclip-vertical\",\n    \"paperclip\",\n    \"parachute-box\",\n    \"paragraph-left\",\n    \"paragraph\",\n    \"party-bell\",\n    \"party-horn\",\n    \"passport\",\n    \"paste\",\n    \"pause\",\n    \"paw-claws\",\n    \"paw-simple\",\n    \"paw\",\n    \"peace\",\n    \"peach\",\n    \"peanut\",\n    \"peanuts\",\n    \"peapod\",\n    \"pear\",\n    \"pedestal\",\n    \"pegasus\",\n    \"pen-circle\",\n    \"pen-clip-slash\",\n    \"pen-clip\",\n    \"pen-fancy-slash\",\n    \"pen-fancy\",\n    \"pen-field\",\n    \"pen-line\",\n    \"pen-nib-slash\",\n    \"pen-nib\",\n    \"pen-paintbrush\",\n    \"pen-ruler\",\n    \"pen-slash\",\n    \"pen-swirl\",\n    \"pen-to-square\",\n    \"pen\",\n    \"pencil-mechanical\",\n    \"pencil-slash\",\n    \"pencil\",\n    \"people-arrows\",\n    \"people-carry-box\",\n    \"people-dress-simple\",\n    \"people-dress\",\n    \"people-group\",\n    \"people-line\",\n    \"people-pants-simple\",\n    \"people-pants\",\n    \"people-pulling\",\n    \"people-robbery\",\n    \"people-roof\",\n    \"people-simple\",\n    \"people\",\n    \"pepper-hot\",\n    \"pepper\",\n    \"percent\",\n    \"period\",\n    \"person-arrow-down-to-line\",\n    \"person-arrow-up-from-line\",\n    \"person-biking-mountain\",\n    \"person-biking\",\n    \"person-booth\",\n    \"person-breastfeeding\",\n    \"person-burst\",\n    \"person-cane\",\n    \"person-carry-box\",\n    \"person-chalkboard\",\n    \"person-circle-check\",\n    \"person-circle-exclamation\",\n    \"person-circle-minus\",\n    \"person-circle-plus\",\n    \"person-circle-question\",\n    \"person-circle-xmark\",\n    \"person-digging\",\n    \"person-dolly-empty\",\n    \"person-dolly\",\n    \"person-dots-from-line\",\n    \"person-dress-burst\",\n    \"person-dress-fairy\",\n    \"person-dress-simple\",\n    \"person-dress\",\n    \"person-drowning\",\n    \"person-fairy\",\n    \"person-falling-burst\",\n    \"person-falling\",\n    \"person-from-portal\",\n    \"person-half-dress\",\n    \"person-harassing\",\n    \"person-hiking\",\n    \"person-military-pointing\",\n    \"person-military-rifle\",\n    \"person-military-to-person\",\n    \"person-pinball\",\n    \"person-praying\",\n    \"person-pregnant\",\n    \"person-rays\",\n    \"person-rifle\",\n    \"person-running-fast\",\n    \"person-running\",\n    \"person-seat-reclined\",\n    \"person-seat\",\n    \"person-shelter\",\n    \"person-sign\",\n    \"person-simple\",\n    \"person-skating\",\n    \"person-ski-jumping\",\n    \"person-ski-lift\",\n    \"person-skiing-nordic\",\n    \"person-skiing\",\n    \"person-sledding\",\n    \"person-snowboarding\",\n    \"person-snowmobiling\",\n    \"person-swimming\",\n    \"person-through-window\",\n    \"person-to-door\",\n    \"person-to-portal\",\n    \"person-walking-arrow-loop-left\",\n    \"person-walking-arrow-right\",\n    \"person-walking-dashed-line-arrow-right\",\n    \"person-walking-luggage\",\n    \"person-walking-with-cane\",\n    \"person-walking\",\n    \"person\",\n    \"peseta-sign\",\n    \"peso-sign\",\n    \"phone-arrow-down-left\",\n    \"phone-arrow-right\",\n    \"phone-arrow-up-right\",\n    \"phone-flip\",\n    \"phone-hangup\",\n    \"phone-intercom\",\n    \"phone-missed\",\n    \"phone-office\",\n    \"phone-plus\",\n    \"phone-rotary\",\n    \"phone-slash\",\n    \"phone-volume\",\n    \"phone-xmark\",\n    \"phone\",\n    \"photo-film-music\",\n    \"photo-film\",\n    \"pi\",\n    \"piano-keyboard\",\n    \"piano\",\n    \"pickaxe\",\n    \"pickleball\",\n    \"pie\",\n    \"pig\",\n    \"piggy-bank\",\n    \"pills\",\n    \"pinata\",\n    \"pinball\",\n    \"pineapple\",\n    \"pipe-circle-check\",\n    \"pipe-collar\",\n    \"pipe-section\",\n    \"pipe-smoking\",\n    \"pipe-valve\",\n    \"pipe\",\n    \"pizza-slice\",\n    \"pizza\",\n    \"place-of-worship\",\n    \"plane-arrival\",\n    \"plane-circle-check\",\n    \"plane-circle-exclamation\",\n    \"plane-circle-xmark\",\n    \"plane-departure\",\n    \"plane-engines\",\n    \"plane-lock\",\n    \"plane-prop\",\n    \"plane-slash\",\n    \"plane-tail\",\n    \"plane-up-slash\",\n    \"plane-up\",\n    \"plane\",\n    \"planet-moon\",\n    \"planet-ringed\",\n    \"plant-wilt\",\n    \"plate-utensils\",\n    \"plate-wheat\",\n    \"play-pause\",\n    \"play\",\n    \"plug-circle-bolt\",\n    \"plug-circle-check\",\n    \"plug-circle-exclamation\",\n    \"plug-circle-minus\",\n    \"plug-circle-plus\",\n    \"plug-circle-xmark\",\n    \"plug\",\n    \"plus-large\",\n    \"plus-minus\",\n    \"plus\",\n    \"podcast\",\n    \"podium-star\",\n    \"podium\",\n    \"police-box\",\n    \"poll-people\",\n    \"pompebled\",\n    \"poo-storm\",\n    \"poo\",\n    \"pool-8-ball\",\n    \"poop\",\n    \"popcorn\",\n    \"popsicle\",\n    \"pot-food\",\n    \"potato\",\n    \"power-off\",\n    \"prescription-bottle-medical\",\n    \"prescription-bottle-pill\",\n    \"prescription-bottle\",\n    \"prescription\",\n    \"presentation-screen\",\n    \"pretzel\",\n    \"print-magnifying-glass\",\n    \"print-slash\",\n    \"print\",\n    \"projector\",\n    \"pump-medical\",\n    \"pump-soap\",\n    \"pump\",\n    \"pumpkin\",\n    \"puzzle-piece-simple\",\n    \"puzzle-piece\",\n    \"puzzle\",\n    \"q\",\n    \"qrcode\",\n    \"question\",\n    \"quote-left\",\n    \"quote-right\",\n    \"quotes\",\n    \"r\",\n    \"rabbit-running\",\n    \"rabbit\",\n    \"raccoon\",\n    \"racquet\",\n    \"radar\",\n    \"radiation\",\n    \"radio-tuner\",\n    \"radio\",\n    \"rainbow\",\n    \"raindrops\",\n    \"ram\",\n    \"ramp-loading\",\n    \"ranking-star\",\n    \"raygun\",\n    \"receipt\",\n    \"record-vinyl\",\n    \"rectangle-ad\",\n    \"rectangle-barcode\",\n    \"rectangle-code\",\n    \"rectangle-history-circle-plus\",\n    \"rectangle-history-circle-user\",\n    \"rectangle-history\",\n    \"rectangle-list\",\n    \"rectangle-pro\",\n    \"rectangle-terminal\",\n    \"rectangle-vertical-history\",\n    \"rectangle-vertical\",\n    \"rectangle-wide\",\n    \"rectangle-xmark\",\n    \"rectangle\",\n    \"rectangles-mixed\",\n    \"recycle\",\n    \"reel\",\n    \"reflect-both\",\n    \"reflect-horizontal\",\n    \"reflect-vertical\",\n    \"refrigerator\",\n    \"registered\",\n    \"repeat-1\",\n    \"repeat\",\n    \"reply-all\",\n    \"reply-clock\",\n    \"reply\",\n    \"republican\",\n    \"restroom-simple\",\n    \"restroom\",\n    \"retweet\",\n    \"rhombus\",\n    \"ribbon\",\n    \"right-from-bracket\",\n    \"right-from-line\",\n    \"right-left-large\",\n    \"right-left\",\n    \"right-long-to-line\",\n    \"right-long\",\n    \"right-to-bracket\",\n    \"right-to-line\",\n    \"right\",\n    \"ring-diamond\",\n    \"ring\",\n    \"rings-wedding\",\n    \"road-barrier\",\n    \"road-bridge\",\n    \"road-circle-check\",\n    \"road-circle-exclamation\",\n    \"road-circle-xmark\",\n    \"road-lock\",\n    \"road-spikes\",\n    \"road\",\n    \"robot-astromech\",\n    \"robot\",\n    \"rocket-launch\",\n    \"rocket\",\n    \"roller-coaster\",\n    \"rotate-exclamation\",\n    \"rotate-left\",\n    \"rotate-reverse\",\n    \"rotate-right\",\n    \"rotate\",\n    \"route-highway\",\n    \"route-interstate\",\n    \"route\",\n    \"router\",\n    \"rss\",\n    \"ruble-sign\",\n    \"rug\",\n    \"rugby-ball\",\n    \"ruler-combined\",\n    \"ruler-horizontal\",\n    \"ruler-triangle\",\n    \"ruler-vertical\",\n    \"ruler\",\n    \"rupee-sign\",\n    \"rupiah-sign\",\n    \"rv\",\n    \"s\",\n    \"sack-dollar\",\n    \"sack-xmark\",\n    \"sack\",\n    \"sailboat\",\n    \"salad\",\n    \"salt-shaker\",\n    \"sandwich\",\n    \"satellite-dish\",\n    \"satellite\",\n    \"sausage\",\n    \"saxophone-fire\",\n    \"saxophone\",\n    \"scale-balanced\",\n    \"scale-unbalanced-flip\",\n    \"scale-unbalanced\",\n    \"scalpel-line-dashed\",\n    \"scalpel\",\n    \"scanner-gun\",\n    \"scanner-image\",\n    \"scanner-keyboard\",\n    \"scanner-touchscreen\",\n    \"scarecrow\",\n    \"scarf\",\n    \"school-circle-check\",\n    \"school-circle-exclamation\",\n    \"school-circle-xmark\",\n    \"school-flag\",\n    \"school-lock\",\n    \"school\",\n    \"scissors\",\n    \"screen-users\",\n    \"screencast\",\n    \"screwdriver-wrench\",\n    \"screwdriver\",\n    \"scribble\",\n    \"scroll-old\",\n    \"scroll-torah\",\n    \"scroll\",\n    \"scrubber\",\n    \"scythe\",\n    \"sd-card\",\n    \"sd-cards\",\n    \"seal-exclamation\",\n    \"seal-question\",\n    \"seal\",\n    \"seat-airline\",\n    \"section\",\n    \"seedling\",\n    \"semicolon\",\n    \"send-back\",\n    \"send-backward\",\n    \"sensor-cloud\",\n    \"sensor-fire\",\n    \"sensor-on\",\n    \"sensor-triangle-exclamation\",\n    \"sensor\",\n    \"server\",\n    \"shapes\",\n    \"share-all\",\n    \"share-from-square\",\n    \"share-nodes\",\n    \"share\",\n    \"sheep\",\n    \"sheet-plastic\",\n    \"shekel-sign\",\n    \"shelves-empty\",\n    \"shelves\",\n    \"shield-cat\",\n    \"shield-check\",\n    \"shield-cross\",\n    \"shield-dog\",\n    \"shield-exclamation\",\n    \"shield-halved\",\n    \"shield-heart\",\n    \"shield-keyhole\",\n    \"shield-minus\",\n    \"shield-plus\",\n    \"shield-quartered\",\n    \"shield-slash\",\n    \"shield-virus\",\n    \"shield-xmark\",\n    \"shield\",\n    \"ship\",\n    \"shirt-long-sleeve\",\n    \"shirt-running\",\n    \"shirt-tank-top\",\n    \"shirt\",\n    \"shish-kebab\",\n    \"shoe-prints\",\n    \"shop-lock\",\n    \"shop-slash\",\n    \"shop\",\n    \"shovel-snow\",\n    \"shovel\",\n    \"shower-down\",\n    \"shower\",\n    \"shredder\",\n    \"shrimp\",\n    \"shuffle\",\n    \"shutters\",\n    \"shuttle-space\",\n    \"shuttlecock\",\n    \"sickle\",\n    \"sidebar-flip\",\n    \"sidebar\",\n    \"sigma\",\n    \"sign-hanging\",\n    \"sign-post\",\n    \"sign-posts-wrench\",\n    \"sign-posts\",\n    \"signal-bars-fair\",\n    \"signal-bars-good\",\n    \"signal-bars-slash\",\n    \"signal-bars-weak\",\n    \"signal-bars\",\n    \"signal-fair\",\n    \"signal-good\",\n    \"signal-slash\",\n    \"signal-stream-slash\",\n    \"signal-stream\",\n    \"signal-strong\",\n    \"signal-weak\",\n    \"signal\",\n    \"signature-lock\",\n    \"signature-slash\",\n    \"signature\",\n    \"signs-post\",\n    \"sim-card\",\n    \"sim-cards\",\n    \"sink\",\n    \"siren-on\",\n    \"siren\",\n    \"sitemap\",\n    \"skeleton-ribs\",\n    \"skeleton\",\n    \"ski-boot-ski\",\n    \"ski-boot\",\n    \"skull-cow\",\n    \"skull-crossbones\",\n    \"skull\",\n    \"slash-back\",\n    \"slash-forward\",\n    \"slash\",\n    \"sleigh\",\n    \"slider\",\n    \"sliders-simple\",\n    \"sliders-up\",\n    \"sliders\",\n    \"slot-machine\",\n    \"smog\",\n    \"smoke\",\n    \"smoking\",\n    \"snake\",\n    \"snooze\",\n    \"snow-blowing\",\n    \"snowflake-droplets\",\n    \"snowflake\",\n    \"snowflakes\",\n    \"snowman-head\",\n    \"snowman\",\n    \"snowplow\",\n    \"soap\",\n    \"socks\",\n    \"soft-serve\",\n    \"solar-panel\",\n    \"solar-system\",\n    \"sort-down\",\n    \"sort-up\",\n    \"sort\",\n    \"spa\",\n    \"space-station-moon-construction\",\n    \"space-station-moon\",\n    \"spade\",\n    \"spaghetti-monster-flying\",\n    \"sparkle\",\n    \"sparkles\",\n    \"speaker\",\n    \"speakers\",\n    \"spell-check\",\n    \"spider-black-widow\",\n    \"spider-web\",\n    \"spider\",\n    \"spinner-scale\",\n    \"spinner-third\",\n    \"spinner\",\n    \"split\",\n    \"splotch\",\n    \"spoon\",\n    \"sportsball\",\n    \"spray-can-sparkles\",\n    \"spray-can\",\n    \"sprinkler-ceiling\",\n    \"sprinkler\",\n    \"square-0\",\n    \"square-1\",\n    \"square-2\",\n    \"square-3\",\n    \"square-4\",\n    \"square-5\",\n    \"square-6\",\n    \"square-7\",\n    \"square-8\",\n    \"square-9\",\n    \"square-a-lock\",\n    \"square-a\",\n    \"square-ampersand\",\n    \"square-arrow-down-left\",\n    \"square-arrow-down-right\",\n    \"square-arrow-down\",\n    \"square-arrow-left\",\n    \"square-arrow-right\",\n    \"square-arrow-up-left\",\n    \"square-arrow-up-right\",\n    \"square-arrow-up\",\n    \"square-b\",\n    \"square-binary\",\n    \"square-bolt\",\n    \"square-c\",\n    \"square-caret-down\",\n    \"square-caret-left\",\n    \"square-caret-right\",\n    \"square-caret-up\",\n    \"square-check\",\n    \"square-chevron-down\",\n    \"square-chevron-left\",\n    \"square-chevron-right\",\n    \"square-chevron-up\",\n    \"square-code\",\n    \"square-d\",\n    \"square-dashed-circle-plus\",\n    \"square-dashed\",\n    \"square-divide\",\n    \"square-dollar\",\n    \"square-down-left\",\n    \"square-down-right\",\n    \"square-down\",\n    \"square-e\",\n    \"square-ellipsis-vertical\",\n    \"square-ellipsis\",\n    \"square-envelope\",\n    \"square-exclamation\",\n    \"square-f\",\n    \"square-fragile\",\n    \"square-full\",\n    \"square-g\",\n    \"square-h\",\n    \"square-heart\",\n    \"square-i\",\n    \"square-info\",\n    \"square-j\",\n    \"square-k\",\n    \"square-kanban\",\n    \"square-l\",\n    \"square-left\",\n    \"square-list\",\n    \"square-m\",\n    \"square-minus\",\n    \"square-n\",\n    \"square-nfi\",\n    \"square-o\",\n    \"square-p\",\n    \"square-parking-slash\",\n    \"square-parking\",\n    \"square-pen\",\n    \"square-person-confined\",\n    \"square-phone-flip\",\n    \"square-phone-hangup\",\n    \"square-phone\",\n    \"square-plus\",\n    \"square-poll-horizontal\",\n    \"square-poll-vertical\",\n    \"square-q\",\n    \"square-quarters\",\n    \"square-question\",\n    \"square-quote\",\n    \"square-r\",\n    \"square-right\",\n    \"square-ring\",\n    \"square-root-variable\",\n    \"square-root\",\n    \"square-rss\",\n    \"square-s\",\n    \"square-share-nodes\",\n    \"square-sliders-vertical\",\n    \"square-sliders\",\n    \"square-small\",\n    \"square-star\",\n    \"square-t\",\n    \"square-terminal\",\n    \"square-this-way-up\",\n    \"square-u\",\n    \"square-up-left\",\n    \"square-up-right\",\n    \"square-up\",\n    \"square-user\",\n    \"square-v\",\n    \"square-virus\",\n    \"square-w\",\n    \"square-x\",\n    \"square-xmark\",\n    \"square-y\",\n    \"square-z\",\n    \"square\",\n    \"squid\",\n    \"squirrel\",\n    \"staff-snake\",\n    \"staff\",\n    \"stairs\",\n    \"stamp\",\n    \"standard-definition\",\n    \"stapler\",\n    \"star-and-crescent\",\n    \"star-christmas\",\n    \"star-exclamation\",\n    \"star-half-stroke\",\n    \"star-half\",\n    \"star-of-david\",\n    \"star-of-life\",\n    \"star-sharp-half-stroke\",\n    \"star-sharp-half\",\n    \"star-sharp\",\n    \"star-shooting\",\n    \"star\",\n    \"starfighter-twin-ion-engine-advanced\",\n    \"starfighter-twin-ion-engine\",\n    \"starfighter\",\n    \"stars\",\n    \"starship-freighter\",\n    \"starship\",\n    \"steak\",\n    \"steering-wheel\",\n    \"sterling-sign\",\n    \"stethoscope\",\n    \"stocking\",\n    \"stomach\",\n    \"stop\",\n    \"stopwatch-20\",\n    \"stopwatch\",\n    \"store-lock\",\n    \"store-slash\",\n    \"store\",\n    \"strawberry\",\n    \"street-view\",\n    \"stretcher\",\n    \"strikethrough\",\n    \"stroopwafel\",\n    \"subscript\",\n    \"subtitles-slash\",\n    \"subtitles\",\n    \"suitcase-medical\",\n    \"suitcase-rolling\",\n    \"suitcase\",\n    \"sun-bright\",\n    \"sun-cloud\",\n    \"sun-dust\",\n    \"sun-haze\",\n    \"sun-plant-wilt\",\n    \"sun\",\n    \"sunglasses\",\n    \"sunrise\",\n    \"sunset\",\n    \"superscript\",\n    \"sushi-roll\",\n    \"sushi\",\n    \"swap-arrows\",\n    \"swap\",\n    \"swatchbook\",\n    \"sword-laser-alt\",\n    \"sword-laser\",\n    \"sword\",\n    \"swords-laser\",\n    \"swords\",\n    \"symbols\",\n    \"synagogue\",\n    \"syringe\",\n    \"t-rex\",\n    \"t\",\n    \"table-cells-column-lock\",\n    \"table-cells-column-unlock\",\n    \"table-cells-large\",\n    \"table-cells-lock\",\n    \"table-cells-row-lock\",\n    \"table-cells-row-unlock\",\n    \"table-cells-unlock\",\n    \"table-cells\",\n    \"table-columns\",\n    \"table-layout\",\n    \"table-list\",\n    \"table-picnic\",\n    \"table-pivot\",\n    \"table-rows\",\n    \"table-tennis-paddle-ball\",\n    \"table-tree\",\n    \"table\",\n    \"tablet-button\",\n    \"tablet-rugged\",\n    \"tablet-screen-button\",\n    \"tablet-screen\",\n    \"tablet\",\n    \"tablets\",\n    \"tachograph-digital\",\n    \"taco\",\n    \"tag\",\n    \"tags\",\n    \"tally-1\",\n    \"tally-2\",\n    \"tally-3\",\n    \"tally-4\",\n    \"tally\",\n    \"tamale\",\n    \"tank-water\",\n    \"tape\",\n    \"tarp-droplet\",\n    \"tarp\",\n    \"taxi-bus\",\n    \"taxi\",\n    \"teddy-bear\",\n    \"teeth-open\",\n    \"teeth\",\n    \"telescope\",\n    \"temperature-arrow-down\",\n    \"temperature-arrow-up\",\n    \"temperature-empty\",\n    \"temperature-full\",\n    \"temperature-half\",\n    \"temperature-high\",\n    \"temperature-list\",\n    \"temperature-low\",\n    \"temperature-quarter\",\n    \"temperature-snow\",\n    \"temperature-sun\",\n    \"temperature-three-quarters\",\n    \"tenge-sign\",\n    \"tennis-ball\",\n    \"tent-arrow-down-to-line\",\n    \"tent-arrow-left-right\",\n    \"tent-arrow-turn-left\",\n    \"tent-arrows-down\",\n    \"tent-double-peak\",\n    \"tent\",\n    \"tents\",\n    \"terminal\",\n    \"text-height\",\n    \"text-size\",\n    \"text-slash\",\n    \"text-width\",\n    \"text\",\n    \"thermometer\",\n    \"theta\",\n    \"thought-bubble\",\n    \"thumbs-down\",\n    \"thumbs-up\",\n    \"thumbtack-slash\",\n    \"thumbtack\",\n    \"tick\",\n    \"ticket-airline\",\n    \"ticket-perforated\",\n    \"ticket-simple\",\n    \"ticket\",\n    \"tickets-airline\",\n    \"tickets-perforated\",\n    \"tickets-simple\",\n    \"tickets\",\n    \"tilde\",\n    \"timeline-arrow\",\n    \"timeline\",\n    \"timer\",\n    \"tire-flat\",\n    \"tire-pressure-warning\",\n    \"tire-rugged\",\n    \"tire\",\n    \"toggle-large-off\",\n    \"toggle-large-on\",\n    \"toggle-off\",\n    \"toggle-on\",\n    \"toilet-paper-blank-under\",\n    \"toilet-paper-blank\",\n    \"toilet-paper-check\",\n    \"toilet-paper-slash\",\n    \"toilet-paper-under-slash\",\n    \"toilet-paper-under\",\n    \"toilet-paper-xmark\",\n    \"toilet-paper\",\n    \"toilet-portable\",\n    \"toilet\",\n    \"toilets-portable\",\n    \"tomato\",\n    \"tombstone-blank\",\n    \"tombstone\",\n    \"toolbox\",\n    \"tooth\",\n    \"toothbrush\",\n    \"torii-gate\",\n    \"tornado\",\n    \"tower-broadcast\",\n    \"tower-cell\",\n    \"tower-control\",\n    \"tower-observation\",\n    \"tractor\",\n    \"trademark\",\n    \"traffic-cone\",\n    \"traffic-light-go\",\n    \"traffic-light-slow\",\n    \"traffic-light-stop\",\n    \"traffic-light\",\n    \"trailer\",\n    \"train-subway-tunnel\",\n    \"train-subway\",\n    \"train-track\",\n    \"train-tram\",\n    \"train-tunnel\",\n    \"train\",\n    \"transformer-bolt\",\n    \"transgender\",\n    \"transporter-1\",\n    \"transporter-2\",\n    \"transporter-3\",\n    \"transporter-4\",\n    \"transporter-5\",\n    \"transporter-6\",\n    \"transporter-7\",\n    \"transporter-empty\",\n    \"transporter\",\n    \"trash-arrow-up\",\n    \"trash-can-arrow-up\",\n    \"trash-can-check\",\n    \"trash-can-clock\",\n    \"trash-can-list\",\n    \"trash-can-plus\",\n    \"trash-can-slash\",\n    \"trash-can-undo\",\n    \"trash-can-xmark\",\n    \"trash-can\",\n    \"trash-check\",\n    \"trash-clock\",\n    \"trash-list\",\n    \"trash-plus\",\n    \"trash-slash\",\n    \"trash-undo\",\n    \"trash-xmark\",\n    \"trash\",\n    \"treasure-chest\",\n    \"tree-christmas\",\n    \"tree-city\",\n    \"tree-deciduous\",\n    \"tree-decorated\",\n    \"tree-large\",\n    \"tree-palm\",\n    \"tree\",\n    \"trees\",\n    \"triangle-exclamation\",\n    \"triangle-instrument\",\n    \"triangle-person-digging\",\n    \"triangle\",\n    \"tricycle-adult\",\n    \"tricycle\",\n    \"trillium\",\n    \"trophy-star\",\n    \"trophy\",\n    \"trowel-bricks\",\n    \"trowel\",\n    \"truck-arrow-right\",\n    \"truck-bolt\",\n    \"truck-clock\",\n    \"truck-container-empty\",\n    \"truck-container\",\n    \"truck-droplet\",\n    \"truck-fast\",\n    \"truck-field-un\",\n    \"truck-field\",\n    \"truck-fire\",\n    \"truck-flatbed\",\n    \"truck-front\",\n    \"truck-ladder\",\n    \"truck-medical\",\n    \"truck-monster\",\n    \"truck-moving\",\n    \"truck-pickup\",\n    \"truck-plane\",\n    \"truck-plow\",\n    \"truck-ramp-box\",\n    \"truck-ramp-couch\",\n    \"truck-ramp\",\n    \"truck-tow\",\n    \"truck-utensils\",\n    \"truck\",\n    \"trumpet\",\n    \"tty-answer\",\n    \"tty\",\n    \"tugrik-sign\",\n    \"turkey\",\n    \"turkish-lira-sign\",\n    \"turn-down-left\",\n    \"turn-down-right\",\n    \"turn-down\",\n    \"turn-left-down\",\n    \"turn-left-up\",\n    \"turn-left\",\n    \"turn-right\",\n    \"turn-up\",\n    \"turntable\",\n    \"turtle\",\n    \"tv-music\",\n    \"tv-retro\",\n    \"tv\",\n    \"typewriter\",\n    \"u\",\n    \"ufo-beam\",\n    \"ufo\",\n    \"umbrella-beach\",\n    \"umbrella-simple\",\n    \"umbrella\",\n    \"underline\",\n    \"unicorn\",\n    \"uniform-martial-arts\",\n    \"union\",\n    \"universal-access\",\n    \"unlock-keyhole\",\n    \"unlock\",\n    \"up-down-left-right\",\n    \"up-down\",\n    \"up-from-bracket\",\n    \"up-from-dotted-line\",\n    \"up-from-line\",\n    \"up-left\",\n    \"up-long\",\n    \"up-right-and-down-left-from-center\",\n    \"up-right-from-square\",\n    \"up-right\",\n    \"up-to-bracket\",\n    \"up-to-dotted-line\",\n    \"up-to-line\",\n    \"up\",\n    \"upload\",\n    \"usb-drive\",\n    \"user-alien\",\n    \"user-astronaut\",\n    \"user-beard-bolt\",\n    \"user-bounty-hunter\",\n    \"user-check\",\n    \"user-chef\",\n    \"user-clock\",\n    \"user-cowboy\",\n    \"user-crown\",\n    \"user-doctor-hair-long\",\n    \"user-doctor-hair\",\n    \"user-doctor-message\",\n    \"user-doctor\",\n    \"user-gear\",\n    \"user-graduate\",\n    \"user-group-crown\",\n    \"user-group-simple\",\n    \"user-group\",\n    \"user-hair-buns\",\n    \"user-hair-long\",\n    \"user-hair-mullet\",\n    \"user-hair\",\n    \"user-headset\",\n    \"user-helmet-safety\",\n    \"user-hoodie\",\n    \"user-injured\",\n    \"user-large-slash\",\n    \"user-large\",\n    \"user-lock\",\n    \"user-magnifying-glass\",\n    \"user-minus\",\n    \"user-music\",\n    \"user-ninja\",\n    \"user-nurse-hair-long\",\n    \"user-nurse-hair\",\n    \"user-nurse\",\n    \"user-pen\",\n    \"user-pilot-tie\",\n    \"user-pilot\",\n    \"user-plus\",\n    \"user-police-tie\",\n    \"user-police\",\n    \"user-robot-xmarks\",\n    \"user-robot\",\n    \"user-secret\",\n    \"user-shakespeare\",\n    \"user-shield\",\n    \"user-slash\",\n    \"user-tag\",\n    \"user-tie-hair-long\",\n    \"user-tie-hair\",\n    \"user-tie\",\n    \"user-unlock\",\n    \"user-visor\",\n    \"user-vneck-hair-long\",\n    \"user-vneck-hair\",\n    \"user-vneck\",\n    \"user-xmark\",\n    \"user\",\n    \"users-between-lines\",\n    \"users-gear\",\n    \"users-line\",\n    \"users-medical\",\n    \"users-rays\",\n    \"users-rectangle\",\n    \"users-slash\",\n    \"users-viewfinder\",\n    \"users\",\n    \"utensils-slash\",\n    \"utensils\",\n    \"utility-pole-double\",\n    \"utility-pole\",\n    \"v\",\n    \"vacuum-robot\",\n    \"vacuum\",\n    \"value-absolute\",\n    \"van-shuttle\",\n    \"vault\",\n    \"vector-circle\",\n    \"vector-polygon\",\n    \"vector-square\",\n    \"vent-damper\",\n    \"venus-double\",\n    \"venus-mars\",\n    \"venus\",\n    \"vest-patches\",\n    \"vest\",\n    \"vial-circle-check\",\n    \"vial-virus\",\n    \"vial\",\n    \"vials\",\n    \"video-arrow-down-left\",\n    \"video-arrow-up-right\",\n    \"video-plus\",\n    \"video-slash\",\n    \"video\",\n    \"vihara\",\n    \"violin\",\n    \"virus-covid-slash\",\n    \"virus-covid\",\n    \"virus-slash\",\n    \"virus\",\n    \"viruses\",\n    \"voicemail\",\n    \"volcano\",\n    \"volleyball\",\n    \"volume-high\",\n    \"volume-low\",\n    \"volume-off\",\n    \"volume-slash\",\n    \"volume-xmark\",\n    \"volume\",\n    \"vr-cardboard\",\n    \"w\",\n    \"waffle\",\n    \"wagon-covered\",\n    \"walker\",\n    \"walkie-talkie\",\n    \"wallet\",\n    \"wand-magic-sparkles\",\n    \"wand-magic\",\n    \"wand-sparkles\",\n    \"wand\",\n    \"warehouse-full\",\n    \"warehouse\",\n    \"washing-machine\",\n    \"watch-apple\",\n    \"watch-calculator\",\n    \"watch-fitness\",\n    \"watch-smart\",\n    \"watch\",\n    \"water-arrow-down\",\n    \"water-arrow-up\",\n    \"water-ladder\",\n    \"water\",\n    \"watermelon-slice\",\n    \"wave-pulse\",\n    \"wave-sine\",\n    \"wave-square\",\n    \"wave-triangle\",\n    \"wave\",\n    \"waveform-lines\",\n    \"waveform\",\n    \"waves-sine\",\n    \"web-awesome\",\n    \"webhook\",\n    \"weight-hanging\",\n    \"weight-scale\",\n    \"whale\",\n    \"wheat-awn-circle-exclamation\",\n    \"wheat-awn-slash\",\n    \"wheat-awn\",\n    \"wheat-slash\",\n    \"wheat\",\n    \"wheelchair-move\",\n    \"wheelchair\",\n    \"whiskey-glass-ice\",\n    \"whiskey-glass\",\n    \"whistle\",\n    \"wifi-exclamation\",\n    \"wifi-fair\",\n    \"wifi-slash\",\n    \"wifi-weak\",\n    \"wifi\",\n    \"wind-turbine\",\n    \"wind-warning\",\n    \"wind\",\n    \"window-flip\",\n    \"window-frame-open\",\n    \"window-frame\",\n    \"window-maximize\",\n    \"window-minimize\",\n    \"window-restore\",\n    \"window\",\n    \"windsock\",\n    \"wine-bottle\",\n    \"wine-glass-crack\",\n    \"wine-glass-empty\",\n    \"wine-glass\",\n    \"won-sign\",\n    \"worm\",\n    \"wreath-laurel\",\n    \"wreath\",\n    \"wrench-simple\",\n    \"wrench\",\n    \"x-ray\",\n    \"x\",\n    \"xmark-large\",\n    \"xmark-to-slot\",\n    \"xmark\",\n    \"xmarks-lines\",\n    \"y\",\n    \"yen-sign\",\n    \"yin-yang\",\n    \"z\"\n  ],\n  \"sharp-duotone-solid\": [\n    \"0\",\n    \"00\",\n    \"1\",\n    \"2\",\n    \"3\",\n    \"360-degrees\",\n    \"4\",\n    \"5\",\n    \"6\",\n    \"7\",\n    \"8\",\n    \"9\",\n    \"a\",\n    \"abacus\",\n    \"accent-grave\",\n    \"acorn\",\n    \"address-book\",\n    \"address-card\",\n    \"air-conditioner\",\n    \"airplay\",\n    \"alarm-clock\",\n    \"alarm-exclamation\",\n    \"alarm-plus\",\n    \"alarm-snooze\",\n    \"album-circle-plus\",\n    \"album-circle-user\",\n    \"album-collection-circle-plus\",\n    \"album-collection-circle-user\",\n    \"album-collection\",\n    \"album\",\n    \"alicorn\",\n    \"alien-8bit\",\n    \"alien\",\n    \"align-center\",\n    \"align-justify\",\n    \"align-left\",\n    \"align-right\",\n    \"align-slash\",\n    \"alt\",\n    \"amp-guitar\",\n    \"ampersand\",\n    \"anchor-circle-check\",\n    \"anchor-circle-exclamation\",\n    \"anchor-circle-xmark\",\n    \"anchor-lock\",\n    \"anchor\",\n    \"angel\",\n    \"angle-90\",\n    \"angle-down\",\n    \"angle-left\",\n    \"angle-right\",\n    \"angle-up\",\n    \"angle\",\n    \"angles-down\",\n    \"angles-left\",\n    \"angles-right\",\n    \"angles-up-down\",\n    \"angles-up\",\n    \"ankh\",\n    \"ant\",\n    \"apartment\",\n    \"aperture\",\n    \"apostrophe\",\n    \"apple-core\",\n    \"apple-whole\",\n    \"archway\",\n    \"arrow-down-1-9\",\n    \"arrow-down-9-1\",\n    \"arrow-down-a-z\",\n    \"arrow-down-arrow-up\",\n    \"arrow-down-big-small\",\n    \"arrow-down-from-arc\",\n    \"arrow-down-from-bracket\",\n    \"arrow-down-from-dotted-line\",\n    \"arrow-down-from-line\",\n    \"arrow-down-left-and-arrow-up-right-to-center\",\n    \"arrow-down-left\",\n    \"arrow-down-long\",\n    \"arrow-down-right\",\n    \"arrow-down-short-wide\",\n    \"arrow-down-small-big\",\n    \"arrow-down-square-triangle\",\n    \"arrow-down-to-arc\",\n    \"arrow-down-to-bracket\",\n    \"arrow-down-to-dotted-line\",\n    \"arrow-down-to-line\",\n    \"arrow-down-to-square\",\n    \"arrow-down-triangle-square\",\n    \"arrow-down-up-across-line\",\n    \"arrow-down-up-lock\",\n    \"arrow-down-wide-short\",\n    \"arrow-down-z-a\",\n    \"arrow-down\",\n    \"arrow-left-from-arc\",\n    \"arrow-left-from-bracket\",\n    \"arrow-left-from-line\",\n    \"arrow-left-long-to-line\",\n    \"arrow-left-long\",\n    \"arrow-left-to-arc\",\n    \"arrow-left-to-bracket\",\n    \"arrow-left-to-line\",\n    \"arrow-left\",\n    \"arrow-pointer\",\n    \"arrow-progress\",\n    \"arrow-right-arrow-left\",\n    \"arrow-right-from-arc\",\n    \"arrow-right-from-bracket\",\n    \"arrow-right-from-line\",\n    \"arrow-right-long-to-line\",\n    \"arrow-right-long\",\n    \"arrow-right-to-arc\",\n    \"arrow-right-to-bracket\",\n    \"arrow-right-to-city\",\n    \"arrow-right-to-line\",\n    \"arrow-right\",\n    \"arrow-rotate-left\",\n    \"arrow-rotate-right\",\n    \"arrow-trend-down\",\n    \"arrow-trend-up\",\n    \"arrow-turn-down-left\",\n    \"arrow-turn-down-right\",\n    \"arrow-turn-down\",\n    \"arrow-turn-left-down\",\n    \"arrow-turn-left-up\",\n    \"arrow-turn-left\",\n    \"arrow-turn-right\",\n    \"arrow-turn-up\",\n    \"arrow-up-1-9\",\n    \"arrow-up-9-1\",\n    \"arrow-up-a-z\",\n    \"arrow-up-arrow-down\",\n    \"arrow-up-big-small\",\n    \"arrow-up-from-arc\",\n    \"arrow-up-from-bracket\",\n    \"arrow-up-from-dotted-line\",\n    \"arrow-up-from-ground-water\",\n    \"arrow-up-from-line\",\n    \"arrow-up-from-square\",\n    \"arrow-up-from-water-pump\",\n    \"arrow-up-left-from-circle\",\n    \"arrow-up-left\",\n    \"arrow-up-long\",\n    \"arrow-up-right-and-arrow-down-left-from-center\",\n    \"arrow-up-right-dots\",\n    \"arrow-up-right-from-square\",\n    \"arrow-up-right\",\n    \"arrow-up-short-wide\",\n    \"arrow-up-small-big\",\n    \"arrow-up-square-triangle\",\n    \"arrow-up-to-arc\",\n    \"arrow-up-to-bracket\",\n    \"arrow-up-to-dotted-line\",\n    \"arrow-up-to-line\",\n    \"arrow-up-triangle-square\",\n    \"arrow-up-wide-short\",\n    \"arrow-up-z-a\",\n    \"arrow-up\",\n    \"arrows-cross\",\n    \"arrows-down-to-line\",\n    \"arrows-down-to-people\",\n    \"arrows-from-dotted-line\",\n    \"arrows-from-line\",\n    \"arrows-left-right-to-line\",\n    \"arrows-left-right\",\n    \"arrows-maximize\",\n    \"arrows-minimize\",\n    \"arrows-repeat-1\",\n    \"arrows-repeat\",\n    \"arrows-retweet\",\n    \"arrows-rotate-reverse\",\n    \"arrows-rotate\",\n    \"arrows-spin\",\n    \"arrows-split-up-and-left\",\n    \"arrows-to-circle\",\n    \"arrows-to-dot\",\n    \"arrows-to-dotted-line\",\n    \"arrows-to-eye\",\n    \"arrows-to-line\",\n    \"arrows-turn-right\",\n    \"arrows-turn-to-dots\",\n    \"arrows-up-down-left-right\",\n    \"arrows-up-down\",\n    \"arrows-up-to-line\",\n    \"asterisk\",\n    \"at\",\n    \"atom-simple\",\n    \"atom\",\n    \"audio-description-slash\",\n    \"audio-description\",\n    \"austral-sign\",\n    \"avocado\",\n    \"award-simple\",\n    \"award\",\n    \"axe-battle\",\n    \"axe\",\n    \"b\",\n    \"baby-carriage\",\n    \"baby\",\n    \"backpack\",\n    \"backward-fast\",\n    \"backward-step\",\n    \"backward\",\n    \"bacon\",\n    \"bacteria\",\n    \"bacterium\",\n    \"badge-check\",\n    \"badge-dollar\",\n    \"badge-percent\",\n    \"badge-sheriff\",\n    \"badge\",\n    \"badger-honey\",\n    \"badminton\",\n    \"bag-seedling\",\n    \"bag-shopping-minus\",\n    \"bag-shopping-plus\",\n    \"bag-shopping\",\n    \"bagel\",\n    \"bags-shopping\",\n    \"baguette\",\n    \"bahai\",\n    \"baht-sign\",\n    \"ball-pile\",\n    \"balloon\",\n    \"balloons\",\n    \"ballot-check\",\n    \"ballot\",\n    \"ban-bug\",\n    \"ban-parking\",\n    \"ban-smoking\",\n    \"ban\",\n    \"banana\",\n    \"bandage\",\n    \"bangladeshi-taka-sign\",\n    \"banjo\",\n    \"barcode-read\",\n    \"barcode-scan\",\n    \"barcode\",\n    \"bars-filter\",\n    \"bars-progress\",\n    \"bars-sort\",\n    \"bars-staggered\",\n    \"bars\",\n    \"baseball-bat-ball\",\n    \"baseball\",\n    \"basket-shopping-minus\",\n    \"basket-shopping-plus\",\n    \"basket-shopping-simple\",\n    \"basket-shopping\",\n    \"basketball-hoop\",\n    \"basketball\",\n    \"bat\",\n    \"bath\",\n    \"battery-bolt\",\n    \"battery-empty\",\n    \"battery-exclamation\",\n    \"battery-full\",\n    \"battery-half\",\n    \"battery-low\",\n    \"battery-quarter\",\n    \"battery-slash\",\n    \"battery-three-quarters\",\n    \"bed-bunk\",\n    \"bed-empty\",\n    \"bed-front\",\n    \"bed-pulse\",\n    \"bed\",\n    \"bee\",\n    \"beer-mug-empty\",\n    \"beer-mug\",\n    \"bell-concierge\",\n    \"bell-exclamation\",\n    \"bell-on\",\n    \"bell-plus\",\n    \"bell-ring\",\n    \"bell-school-slash\",\n    \"bell-school\",\n    \"bell-slash\",\n    \"bell\",\n    \"bells\",\n    \"bench-tree\",\n    \"bezier-curve\",\n    \"bicycle\",\n    \"billboard\",\n    \"bin-bottles-recycle\",\n    \"bin-bottles\",\n    \"bin-recycle\",\n    \"binary-circle-check\",\n    \"binary-lock\",\n    \"binary-slash\",\n    \"binary\",\n    \"binoculars\",\n    \"biohazard\",\n    \"bird\",\n    \"bitcoin-sign\",\n    \"blanket-fire\",\n    \"blanket\",\n    \"blender-phone\",\n    \"blender\",\n    \"blinds-open\",\n    \"blinds-raised\",\n    \"blinds\",\n    \"block-brick-fire\",\n    \"block-brick\",\n    \"block-question\",\n    \"block-quote\",\n    \"block\",\n    \"blog\",\n    \"blueberries\",\n    \"bluetooth\",\n    \"bold\",\n    \"bolt-auto\",\n    \"bolt-lightning\",\n    \"bolt-slash\",\n    \"bolt\",\n    \"bomb\",\n    \"bone-break\",\n    \"bone\",\n    \"bong\",\n    \"book-arrow-right\",\n    \"book-arrow-up\",\n    \"book-atlas\",\n    \"book-bible\",\n    \"book-blank\",\n    \"book-bookmark\",\n    \"book-circle-arrow-right\",\n    \"book-circle-arrow-up\",\n    \"book-copy\",\n    \"book-font\",\n    \"book-heart\",\n    \"book-journal-whills\",\n    \"book-medical\",\n    \"book-open-cover\",\n    \"book-open-reader\",\n    \"book-open\",\n    \"book-quran\",\n    \"book-section\",\n    \"book-skull\",\n    \"book-sparkles\",\n    \"book-tanakh\",\n    \"book-user\",\n    \"book\",\n    \"bookmark-slash\",\n    \"bookmark\",\n    \"books-medical\",\n    \"books\",\n    \"boombox\",\n    \"boot-heeled\",\n    \"boot\",\n    \"booth-curtain\",\n    \"border-all\",\n    \"border-bottom-right\",\n    \"border-bottom\",\n    \"border-center-h\",\n    \"border-center-v\",\n    \"border-inner\",\n    \"border-left\",\n    \"border-none\",\n    \"border-outer\",\n    \"border-right\",\n    \"border-top-left\",\n    \"border-top\",\n    \"bore-hole\",\n    \"bottle-baby\",\n    \"bottle-droplet\",\n    \"bottle-water\",\n    \"bow-arrow\",\n    \"bowl-chopsticks-noodles\",\n    \"bowl-chopsticks\",\n    \"bowl-food\",\n    \"bowl-hot\",\n    \"bowl-rice\",\n    \"bowl-scoop\",\n    \"bowl-scoops\",\n    \"bowl-soft-serve\",\n    \"bowl-spoon\",\n    \"bowling-ball-pin\",\n    \"bowling-ball\",\n    \"bowling-pins\",\n    \"box-archive\",\n    \"box-ballot\",\n    \"box-check\",\n    \"box-circle-check\",\n    \"box-dollar\",\n    \"box-heart\",\n    \"box-open-full\",\n    \"box-open\",\n    \"box-taped\",\n    \"box-tissue\",\n    \"box\",\n    \"boxes-packing\",\n    \"boxes-stacked\",\n    \"boxing-glove\",\n    \"bracket-curly-right\",\n    \"bracket-curly\",\n    \"bracket-round-right\",\n    \"bracket-round\",\n    \"bracket-square-right\",\n    \"bracket-square\",\n    \"brackets-curly\",\n    \"brackets-round\",\n    \"brackets-square\",\n    \"braille\",\n    \"brain-arrow-curved-right\",\n    \"brain-circuit\",\n    \"brain\",\n    \"brake-warning\",\n    \"brazilian-real-sign\",\n    \"bread-loaf\",\n    \"bread-slice-butter\",\n    \"bread-slice\",\n    \"bridge-circle-check\",\n    \"bridge-circle-exclamation\",\n    \"bridge-circle-xmark\",\n    \"bridge-lock\",\n    \"bridge-suspension\",\n    \"bridge-water\",\n    \"bridge\",\n    \"briefcase-arrow-right\",\n    \"briefcase-blank\",\n    \"briefcase-medical\",\n    \"briefcase\",\n    \"brightness-low\",\n    \"brightness\",\n    \"bring-forward\",\n    \"bring-front\",\n    \"broccoli\",\n    \"broom-ball\",\n    \"broom-wide\",\n    \"broom\",\n    \"browser\",\n    \"browsers\",\n    \"brush\",\n    \"bucket\",\n    \"bug-slash\",\n    \"bug\",\n    \"bugs\",\n    \"building-circle-arrow-right\",\n    \"building-circle-check\",\n    \"building-circle-exclamation\",\n    \"building-circle-xmark\",\n    \"building-columns\",\n    \"building-flag\",\n    \"building-lock\",\n    \"building-magnifying-glass\",\n    \"building-memo\",\n    \"building-ngo\",\n    \"building-shield\",\n    \"building-un\",\n    \"building-user\",\n    \"building-wheat\",\n    \"building\",\n    \"buildings\",\n    \"bulldozer\",\n    \"bullhorn\",\n    \"bullseye-arrow\",\n    \"bullseye-pointer\",\n    \"bullseye\",\n    \"buoy-mooring\",\n    \"buoy\",\n    \"burger-cheese\",\n    \"burger-fries\",\n    \"burger-glass\",\n    \"burger-lettuce\",\n    \"burger-soda\",\n    \"burger\",\n    \"burrito\",\n    \"burst\",\n    \"bus-school\",\n    \"bus-simple\",\n    \"bus\",\n    \"business-time\",\n    \"butter\",\n    \"c\",\n    \"cabin\",\n    \"cabinet-filing\",\n    \"cable-car\",\n    \"cactus\",\n    \"caduceus\",\n    \"cake-candles\",\n    \"cake-slice\",\n    \"calculator-simple\",\n    \"calculator\",\n    \"calendar-arrow-down\",\n    \"calendar-arrow-up\",\n    \"calendar-check\",\n    \"calendar-circle-exclamation\",\n    \"calendar-circle-minus\",\n    \"calendar-circle-plus\",\n    \"calendar-circle-user\",\n    \"calendar-clock\",\n    \"calendar-day\",\n    \"calendar-days\",\n    \"calendar-exclamation\",\n    \"calendar-heart\",\n    \"calendar-image\",\n    \"calendar-lines-pen\",\n    \"calendar-lines\",\n    \"calendar-minus\",\n    \"calendar-pen\",\n    \"calendar-plus\",\n    \"calendar-range\",\n    \"calendar-star\",\n    \"calendar-users\",\n    \"calendar-week\",\n    \"calendar-xmark\",\n    \"calendar\",\n    \"calendars\",\n    \"camcorder\",\n    \"camera-cctv\",\n    \"camera-movie\",\n    \"camera-polaroid\",\n    \"camera-retro\",\n    \"camera-rotate\",\n    \"camera-security\",\n    \"camera-slash\",\n    \"camera-viewfinder\",\n    \"camera-web-slash\",\n    \"camera-web\",\n    \"camera\",\n    \"campfire\",\n    \"campground\",\n    \"can-food\",\n    \"candle-holder\",\n    \"candy-bar\",\n    \"candy-cane\",\n    \"candy-corn\",\n    \"candy\",\n    \"cannabis\",\n    \"cannon\",\n    \"capsules\",\n    \"car-battery\",\n    \"car-bolt\",\n    \"car-building\",\n    \"car-bump\",\n    \"car-burst\",\n    \"car-bus\",\n    \"car-circle-bolt\",\n    \"car-garage\",\n    \"car-mirrors\",\n    \"car-on\",\n    \"car-rear\",\n    \"car-side-bolt\",\n    \"car-side\",\n    \"car-tilt\",\n    \"car-tunnel\",\n    \"car-wash\",\n    \"car-wrench\",\n    \"car\",\n    \"caravan-simple\",\n    \"caravan\",\n    \"card-club\",\n    \"card-diamond\",\n    \"card-heart\",\n    \"card-spade\",\n    \"cards-blank\",\n    \"cards\",\n    \"caret-down\",\n    \"caret-left\",\n    \"caret-right\",\n    \"caret-up\",\n    \"carpool\",\n    \"carrot\",\n    \"cars\",\n    \"cart-arrow-down\",\n    \"cart-arrow-up\",\n    \"cart-circle-arrow-down\",\n    \"cart-circle-arrow-up\",\n    \"cart-circle-check\",\n    \"cart-circle-exclamation\",\n    \"cart-circle-plus\",\n    \"cart-circle-xmark\",\n    \"cart-flatbed-boxes\",\n    \"cart-flatbed-empty\",\n    \"cart-flatbed-suitcase\",\n    \"cart-flatbed\",\n    \"cart-minus\",\n    \"cart-plus\",\n    \"cart-shopping-fast\",\n    \"cart-shopping\",\n    \"cart-xmark\",\n    \"cash-register\",\n    \"cassette-betamax\",\n    \"cassette-tape\",\n    \"cassette-vhs\",\n    \"castle\",\n    \"cat-space\",\n    \"cat\",\n    \"cauldron\",\n    \"cedi-sign\",\n    \"cent-sign\",\n    \"certificate\",\n    \"chair-office\",\n    \"chair\",\n    \"chalkboard-user\",\n    \"chalkboard\",\n    \"champagne-glass\",\n    \"champagne-glasses\",\n    \"charging-station\",\n    \"chart-area\",\n    \"chart-bar\",\n    \"chart-bullet\",\n    \"chart-candlestick\",\n    \"chart-column\",\n    \"chart-diagram\",\n    \"chart-fft\",\n    \"chart-gantt\",\n    \"chart-kanban\",\n    \"chart-line-down\",\n    \"chart-line-up-down\",\n    \"chart-line-up\",\n    \"chart-line\",\n    \"chart-mixed-up-circle-currency\",\n    \"chart-mixed-up-circle-dollar\",\n    \"chart-mixed\",\n    \"chart-network\",\n    \"chart-pie-simple-circle-currency\",\n    \"chart-pie-simple-circle-dollar\",\n    \"chart-pie-simple\",\n    \"chart-pie\",\n    \"chart-pyramid\",\n    \"chart-radar\",\n    \"chart-scatter-3d\",\n    \"chart-scatter-bubble\",\n    \"chart-scatter\",\n    \"chart-simple-horizontal\",\n    \"chart-simple\",\n    \"chart-sine\",\n    \"chart-tree-map\",\n    \"chart-user\",\n    \"chart-waterfall\",\n    \"check-double\",\n    \"check-to-slot\",\n    \"check\",\n    \"cheese-swiss\",\n    \"cheese\",\n    \"cherries\",\n    \"chess-bishop-piece\",\n    \"chess-bishop\",\n    \"chess-board\",\n    \"chess-clock-flip\",\n    \"chess-clock\",\n    \"chess-king-piece\",\n    \"chess-king\",\n    \"chess-knight-piece\",\n    \"chess-knight\",\n    \"chess-pawn-piece\",\n    \"chess-pawn\",\n    \"chess-queen-piece\",\n    \"chess-queen\",\n    \"chess-rook-piece\",\n    \"chess-rook\",\n    \"chess\",\n    \"chestnut\",\n    \"chevron-down\",\n    \"chevron-left\",\n    \"chevron-right\",\n    \"chevron-up\",\n    \"chevrons-down\",\n    \"chevrons-left\",\n    \"chevrons-right\",\n    \"chevrons-up\",\n    \"chf-sign\",\n    \"child-combatant\",\n    \"child-dress\",\n    \"child-reaching\",\n    \"child\",\n    \"children\",\n    \"chimney\",\n    \"chopsticks\",\n    \"church\",\n    \"circle-0\",\n    \"circle-1\",\n    \"circle-2\",\n    \"circle-3\",\n    \"circle-4\",\n    \"circle-5\",\n    \"circle-6\",\n    \"circle-7\",\n    \"circle-8\",\n    \"circle-9\",\n    \"circle-a\",\n    \"circle-ampersand\",\n    \"circle-arrow-down-left\",\n    \"circle-arrow-down-right\",\n    \"circle-arrow-down\",\n    \"circle-arrow-left\",\n    \"circle-arrow-right\",\n    \"circle-arrow-up-left\",\n    \"circle-arrow-up-right\",\n    \"circle-arrow-up\",\n    \"circle-b\",\n    \"circle-bolt\",\n    \"circle-book-open\",\n    \"circle-bookmark\",\n    \"circle-c\",\n    \"circle-calendar\",\n    \"circle-camera\",\n    \"circle-caret-down\",\n    \"circle-caret-left\",\n    \"circle-caret-right\",\n    \"circle-caret-up\",\n    \"circle-check\",\n    \"circle-chevron-down\",\n    \"circle-chevron-left\",\n    \"circle-chevron-right\",\n    \"circle-chevron-up\",\n    \"circle-d\",\n    \"circle-dashed\",\n    \"circle-divide\",\n    \"circle-dollar-to-slot\",\n    \"circle-dollar\",\n    \"circle-dot\",\n    \"circle-down-left\",\n    \"circle-down-right\",\n    \"circle-down\",\n    \"circle-e\",\n    \"circle-ellipsis-vertical\",\n    \"circle-ellipsis\",\n    \"circle-envelope\",\n    \"circle-euro\",\n    \"circle-exclamation-check\",\n    \"circle-exclamation\",\n    \"circle-f\",\n    \"circle-g\",\n    \"circle-gf\",\n    \"circle-h\",\n    \"circle-half-stroke\",\n    \"circle-half\",\n    \"circle-heart\",\n    \"circle-i\",\n    \"circle-info\",\n    \"circle-j\",\n    \"circle-k\",\n    \"circle-l\",\n    \"circle-left\",\n    \"circle-location-arrow\",\n    \"circle-m\",\n    \"circle-microphone-lines\",\n    \"circle-microphone\",\n    \"circle-minus\",\n    \"circle-n\",\n    \"circle-nodes\",\n    \"circle-notch\",\n    \"circle-o\",\n    \"circle-p\",\n    \"circle-parking\",\n    \"circle-pause\",\n    \"circle-phone-flip\",\n    \"circle-phone-hangup\",\n    \"circle-phone\",\n    \"circle-play\",\n    \"circle-plus\",\n    \"circle-q\",\n    \"circle-quarter-stroke\",\n    \"circle-quarter\",\n    \"circle-quarters\",\n    \"circle-question\",\n    \"circle-r\",\n    \"circle-radiation\",\n    \"circle-right\",\n    \"circle-s\",\n    \"circle-small\",\n    \"circle-sort-down\",\n    \"circle-sort-up\",\n    \"circle-sort\",\n    \"circle-star\",\n    \"circle-sterling\",\n    \"circle-stop\",\n    \"circle-t\",\n    \"circle-three-quarters-stroke\",\n    \"circle-three-quarters\",\n    \"circle-trash\",\n    \"circle-u\",\n    \"circle-up-left\",\n    \"circle-up-right\",\n    \"circle-up\",\n    \"circle-user\",\n    \"circle-v\",\n    \"circle-video\",\n    \"circle-w\",\n    \"circle-waveform-lines\",\n    \"circle-wifi-circle-wifi\",\n    \"circle-wifi\",\n    \"circle-x\",\n    \"circle-xmark\",\n    \"circle-y\",\n    \"circle-yen\",\n    \"circle-z\",\n    \"circle\",\n    \"circles-overlap-3\",\n    \"circles-overlap\",\n    \"citrus-slice\",\n    \"citrus\",\n    \"city\",\n    \"clapperboard-play\",\n    \"clapperboard\",\n    \"clarinet\",\n    \"claw-marks\",\n    \"clipboard-check\",\n    \"clipboard-list-check\",\n    \"clipboard-list\",\n    \"clipboard-medical\",\n    \"clipboard-prescription\",\n    \"clipboard-question\",\n    \"clipboard-user\",\n    \"clipboard\",\n    \"clock-desk\",\n    \"clock-eight-thirty\",\n    \"clock-eight\",\n    \"clock-eleven-thirty\",\n    \"clock-eleven\",\n    \"clock-five-thirty\",\n    \"clock-five\",\n    \"clock-four-thirty\",\n    \"clock-nine-thirty\",\n    \"clock-nine\",\n    \"clock-one-thirty\",\n    \"clock-one\",\n    \"clock-rotate-left\",\n    \"clock-seven-thirty\",\n    \"clock-seven\",\n    \"clock-six-thirty\",\n    \"clock-six\",\n    \"clock-ten-thirty\",\n    \"clock-ten\",\n    \"clock-three-thirty\",\n    \"clock-three\",\n    \"clock-twelve-thirty\",\n    \"clock-twelve\",\n    \"clock-two-thirty\",\n    \"clock-two\",\n    \"clock\",\n    \"clone\",\n    \"closed-captioning-slash\",\n    \"closed-captioning\",\n    \"clothes-hanger\",\n    \"cloud-arrow-down\",\n    \"cloud-arrow-up\",\n    \"cloud-binary\",\n    \"cloud-bolt-moon\",\n    \"cloud-bolt-sun\",\n    \"cloud-bolt\",\n    \"cloud-check\",\n    \"cloud-drizzle\",\n    \"cloud-exclamation\",\n    \"cloud-fog\",\n    \"cloud-hail-mixed\",\n    \"cloud-hail\",\n    \"cloud-meatball\",\n    \"cloud-minus\",\n    \"cloud-moon-rain\",\n    \"cloud-moon\",\n    \"cloud-music\",\n    \"cloud-plus\",\n    \"cloud-question\",\n    \"cloud-rain\",\n    \"cloud-rainbow\",\n    \"cloud-showers-heavy\",\n    \"cloud-showers-water\",\n    \"cloud-showers\",\n    \"cloud-slash\",\n    \"cloud-sleet\",\n    \"cloud-snow\",\n    \"cloud-sun-rain\",\n    \"cloud-sun\",\n    \"cloud-word\",\n    \"cloud-xmark\",\n    \"cloud\",\n    \"clouds-moon\",\n    \"clouds-sun\",\n    \"clouds\",\n    \"clover\",\n    \"club\",\n    \"coconut\",\n    \"code-branch\",\n    \"code-commit\",\n    \"code-compare\",\n    \"code-fork\",\n    \"code-merge\",\n    \"code-pull-request-closed\",\n    \"code-pull-request-draft\",\n    \"code-pull-request\",\n    \"code-simple\",\n    \"code\",\n    \"coffee-bean\",\n    \"coffee-beans\",\n    \"coffee-pot\",\n    \"coffin-cross\",\n    \"coffin\",\n    \"coin-blank\",\n    \"coin-front\",\n    \"coin-vertical\",\n    \"coin\",\n    \"coins\",\n    \"colon-sign\",\n    \"colon\",\n    \"columns-3\",\n    \"comet\",\n    \"comma\",\n    \"command\",\n    \"comment-arrow-down\",\n    \"comment-arrow-up-right\",\n    \"comment-arrow-up\",\n    \"comment-captions\",\n    \"comment-check\",\n    \"comment-code\",\n    \"comment-dollar\",\n    \"comment-dots\",\n    \"comment-exclamation\",\n    \"comment-heart\",\n    \"comment-image\",\n    \"comment-lines\",\n    \"comment-medical\",\n    \"comment-middle-top\",\n    \"comment-middle\",\n    \"comment-minus\",\n    \"comment-music\",\n    \"comment-nodes\",\n    \"comment-pen\",\n    \"comment-plus\",\n    \"comment-question\",\n    \"comment-quote\",\n    \"comment-slash\",\n    \"comment-smile\",\n    \"comment-sms\",\n    \"comment-text\",\n    \"comment-xmark\",\n    \"comment\",\n    \"comments-dollar\",\n    \"comments-question-check\",\n    \"comments-question\",\n    \"comments\",\n    \"compact-disc\",\n    \"compass-drafting\",\n    \"compass-slash\",\n    \"compass\",\n    \"compress-wide\",\n    \"compress\",\n    \"computer-classic\",\n    \"computer-mouse-scrollwheel\",\n    \"computer-mouse\",\n    \"computer-speaker\",\n    \"computer\",\n    \"container-storage\",\n    \"conveyor-belt-arm\",\n    \"conveyor-belt-boxes\",\n    \"conveyor-belt-empty\",\n    \"conveyor-belt\",\n    \"cookie-bite\",\n    \"cookie\",\n    \"copy\",\n    \"copyright\",\n    \"corn\",\n    \"corner\",\n    \"couch\",\n    \"court-sport\",\n    \"cow\",\n    \"cowbell-circle-plus\",\n    \"cowbell\",\n    \"crab\",\n    \"crate-apple\",\n    \"crate-empty\",\n    \"credit-card-blank\",\n    \"credit-card-front\",\n    \"credit-card\",\n    \"cricket-bat-ball\",\n    \"croissant\",\n    \"crop-simple\",\n    \"crop\",\n    \"cross\",\n    \"crosshairs-simple\",\n    \"crosshairs\",\n    \"crow\",\n    \"crown\",\n    \"crutch\",\n    \"crutches\",\n    \"cruzeiro-sign\",\n    \"crystal-ball\",\n    \"cube\",\n    \"cubes-stacked\",\n    \"cubes\",\n    \"cucumber\",\n    \"cup-straw-swoosh\",\n    \"cup-straw\",\n    \"cup-togo\",\n    \"cupcake\",\n    \"curling-stone\",\n    \"custard\",\n    \"d\",\n    \"dagger\",\n    \"dash\",\n    \"database\",\n    \"deer-rudolph\",\n    \"deer\",\n    \"delete-left\",\n    \"delete-right\",\n    \"democrat\",\n    \"desktop-arrow-down\",\n    \"desktop\",\n    \"dharmachakra\",\n    \"diagram-cells\",\n    \"diagram-lean-canvas\",\n    \"diagram-nested\",\n    \"diagram-next\",\n    \"diagram-predecessor\",\n    \"diagram-previous\",\n    \"diagram-project\",\n    \"diagram-sankey\",\n    \"diagram-subtask\",\n    \"diagram-successor\",\n    \"diagram-venn\",\n    \"dial-high\",\n    \"dial-low\",\n    \"dial-max\",\n    \"dial-med-low\",\n    \"dial-med\",\n    \"dial-min\",\n    \"dial-off\",\n    \"dial\",\n    \"diamond-exclamation\",\n    \"diamond-half-stroke\",\n    \"diamond-half\",\n    \"diamond-turn-right\",\n    \"diamond\",\n    \"diamonds-4\",\n    \"dice-d10\",\n    \"dice-d12\",\n    \"dice-d20\",\n    \"dice-d4\",\n    \"dice-d6\",\n    \"dice-d8\",\n    \"dice-five\",\n    \"dice-four\",\n    \"dice-one\",\n    \"dice-six\",\n    \"dice-three\",\n    \"dice-two\",\n    \"dice\",\n    \"dinosaur\",\n    \"diploma\",\n    \"disc-drive\",\n    \"disease\",\n    \"display-arrow-down\",\n    \"display-chart-up-circle-currency\",\n    \"display-chart-up-circle-dollar\",\n    \"display-chart-up\",\n    \"display-code\",\n    \"display-medical\",\n    \"display-slash\",\n    \"display\",\n    \"distribute-spacing-horizontal\",\n    \"distribute-spacing-vertical\",\n    \"ditto\",\n    \"divide\",\n    \"dna\",\n    \"do-not-enter\",\n    \"dog-leashed\",\n    \"dog\",\n    \"dollar-sign\",\n    \"dolly-empty\",\n    \"dolly\",\n    \"dolphin\",\n    \"dong-sign\",\n    \"donut\",\n    \"door-closed\",\n    \"door-open\",\n    \"dove\",\n    \"down-from-bracket\",\n    \"down-from-dotted-line\",\n    \"down-from-line\",\n    \"down-left-and-up-right-to-center\",\n    \"down-left\",\n    \"down-long\",\n    \"down-right\",\n    \"down-to-bracket\",\n    \"down-to-dotted-line\",\n    \"down-to-line\",\n    \"down\",\n    \"download\",\n    \"dragon\",\n    \"draw-circle\",\n    \"draw-polygon\",\n    \"draw-square\",\n    \"dreidel\",\n    \"drone-front\",\n    \"drone\",\n    \"droplet-degree\",\n    \"droplet-percent\",\n    \"droplet-slash\",\n    \"droplet\",\n    \"drum-steelpan\",\n    \"drum\",\n    \"drumstick-bite\",\n    \"drumstick\",\n    \"dryer-heat\",\n    \"dryer\",\n    \"duck\",\n    \"dumbbell\",\n    \"dumpster-fire\",\n    \"dumpster\",\n    \"dungeon\",\n    \"e\",\n    \"ear-deaf\",\n    \"ear-listen\",\n    \"ear-muffs\",\n    \"ear\",\n    \"earth-africa\",\n    \"earth-americas\",\n    \"earth-asia\",\n    \"earth-europe\",\n    \"earth-oceania\",\n    \"eclipse\",\n    \"egg-fried\",\n    \"egg\",\n    \"eggplant\",\n    \"eject\",\n    \"elephant\",\n    \"elevator\",\n    \"ellipsis-stroke-vertical\",\n    \"ellipsis-stroke\",\n    \"ellipsis-vertical\",\n    \"ellipsis\",\n    \"empty-set\",\n    \"engine-warning\",\n    \"engine\",\n    \"envelope-circle-check\",\n    \"envelope-dot\",\n    \"envelope-open-dollar\",\n    \"envelope-open-text\",\n    \"envelope-open\",\n    \"envelope\",\n    \"envelopes-bulk\",\n    \"envelopes\",\n    \"equals\",\n    \"eraser\",\n    \"escalator\",\n    \"ethernet\",\n    \"euro-sign\",\n    \"excavator\",\n    \"exclamation\",\n    \"expand-wide\",\n    \"expand\",\n    \"explosion\",\n    \"eye-dropper-full\",\n    \"eye-dropper-half\",\n    \"eye-dropper\",\n    \"eye-evil\",\n    \"eye-low-vision\",\n    \"eye-slash\",\n    \"eye\",\n    \"eyes\",\n    \"f\",\n    \"face-angry-horns\",\n    \"face-angry\",\n    \"face-anguished\",\n    \"face-anxious-sweat\",\n    \"face-astonished\",\n    \"face-awesome\",\n    \"face-beam-hand-over-mouth\",\n    \"face-clouds\",\n    \"face-confounded\",\n    \"face-confused\",\n    \"face-cowboy-hat\",\n    \"face-diagonal-mouth\",\n    \"face-disappointed\",\n    \"face-disguise\",\n    \"face-dizzy\",\n    \"face-dotted\",\n    \"face-downcast-sweat\",\n    \"face-drooling\",\n    \"face-exhaling\",\n    \"face-explode\",\n    \"face-expressionless\",\n    \"face-eyes-xmarks\",\n    \"face-fearful\",\n    \"face-flushed\",\n    \"face-frown-open\",\n    \"face-frown-slight\",\n    \"face-frown\",\n    \"face-glasses\",\n    \"face-grimace\",\n    \"face-grin-beam-sweat\",\n    \"face-grin-beam\",\n    \"face-grin-hearts\",\n    \"face-grin-squint-tears\",\n    \"face-grin-squint\",\n    \"face-grin-stars\",\n    \"face-grin-tears\",\n    \"face-grin-tongue-squint\",\n    \"face-grin-tongue-wink\",\n    \"face-grin-tongue\",\n    \"face-grin-wide\",\n    \"face-grin-wink\",\n    \"face-grin\",\n    \"face-hand-over-mouth\",\n    \"face-hand-peeking\",\n    \"face-hand-yawn\",\n    \"face-head-bandage\",\n    \"face-holding-back-tears\",\n    \"face-hushed\",\n    \"face-icicles\",\n    \"face-kiss-beam\",\n    \"face-kiss-closed-eyes\",\n    \"face-kiss-wink-heart\",\n    \"face-kiss\",\n    \"face-laugh-beam\",\n    \"face-laugh-squint\",\n    \"face-laugh-wink\",\n    \"face-laugh\",\n    \"face-lying\",\n    \"face-mask\",\n    \"face-meh-blank\",\n    \"face-meh\",\n    \"face-melting\",\n    \"face-monocle\",\n    \"face-nauseated\",\n    \"face-nose-steam\",\n    \"face-party\",\n    \"face-pensive\",\n    \"face-persevering\",\n    \"face-pleading\",\n    \"face-pouting\",\n    \"face-raised-eyebrow\",\n    \"face-relieved\",\n    \"face-rolling-eyes\",\n    \"face-sad-cry\",\n    \"face-sad-sweat\",\n    \"face-sad-tear\",\n    \"face-saluting\",\n    \"face-scream\",\n    \"face-shush\",\n    \"face-sleeping\",\n    \"face-sleepy\",\n    \"face-smile-beam\",\n    \"face-smile-halo\",\n    \"face-smile-hearts\",\n    \"face-smile-horns\",\n    \"face-smile-plus\",\n    \"face-smile-relaxed\",\n    \"face-smile-tear\",\n    \"face-smile-tongue\",\n    \"face-smile-upside-down\",\n    \"face-smile-wink\",\n    \"face-smile\",\n    \"face-smiling-hands\",\n    \"face-smirking\",\n    \"face-spiral-eyes\",\n    \"face-sunglasses\",\n    \"face-surprise\",\n    \"face-swear\",\n    \"face-thermometer\",\n    \"face-thinking\",\n    \"face-tired\",\n    \"face-tissue\",\n    \"face-tongue-money\",\n    \"face-tongue-sweat\",\n    \"face-unamused\",\n    \"face-viewfinder\",\n    \"face-vomit\",\n    \"face-weary\",\n    \"face-woozy\",\n    \"face-worried\",\n    \"face-zany\",\n    \"face-zipper\",\n    \"falafel\",\n    \"family-dress\",\n    \"family-pants\",\n    \"family\",\n    \"fan-table\",\n    \"fan\",\n    \"farm\",\n    \"faucet-drip\",\n    \"faucet\",\n    \"fax\",\n    \"feather-pointed\",\n    \"feather\",\n    \"fence\",\n    \"ferris-wheel\",\n    \"ferry\",\n    \"field-hockey-stick-ball\",\n    \"file-arrow-down\",\n    \"file-arrow-up\",\n    \"file-audio\",\n    \"file-binary\",\n    \"file-cad\",\n    \"file-certificate\",\n    \"file-chart-column\",\n    \"file-chart-pie\",\n    \"file-check\",\n    \"file-circle-check\",\n    \"file-circle-exclamation\",\n    \"file-circle-info\",\n    \"file-circle-minus\",\n    \"file-circle-plus\",\n    \"file-circle-question\",\n    \"file-circle-xmark\",\n    \"file-code\",\n    \"file-contract\",\n    \"file-csv\",\n    \"file-dashed-line\",\n    \"file-doc\",\n    \"file-eps\",\n    \"file-excel\",\n    \"file-exclamation\",\n    \"file-export\",\n    \"file-fragment\",\n    \"file-gif\",\n    \"file-half-dashed\",\n    \"file-heart\",\n    \"file-image\",\n    \"file-import\",\n    \"file-invoice-dollar\",\n    \"file-invoice\",\n    \"file-jpg\",\n    \"file-lines\",\n    \"file-lock\",\n    \"file-magnifying-glass\",\n    \"file-medical\",\n    \"file-minus\",\n    \"file-mov\",\n    \"file-mp3\",\n    \"file-mp4\",\n    \"file-music\",\n    \"file-pdf\",\n    \"file-pen\",\n    \"file-plus-minus\",\n    \"file-plus\",\n    \"file-png\",\n    \"file-powerpoint\",\n    \"file-ppt\",\n    \"file-prescription\",\n    \"file-shield\",\n    \"file-signature\",\n    \"file-slash\",\n    \"file-spreadsheet\",\n    \"file-svg\",\n    \"file-user\",\n    \"file-vector\",\n    \"file-video\",\n    \"file-waveform\",\n    \"file-word\",\n    \"file-xls\",\n    \"file-xmark\",\n    \"file-xml\",\n    \"file-zip\",\n    \"file-zipper\",\n    \"file\",\n    \"files-medical\",\n    \"files\",\n    \"fill-drip\",\n    \"fill\",\n    \"film-canister\",\n    \"film-simple\",\n    \"film-slash\",\n    \"film\",\n    \"films\",\n    \"filter-circle-dollar\",\n    \"filter-circle-xmark\",\n    \"filter-list\",\n    \"filter-slash\",\n    \"filter\",\n    \"filters\",\n    \"fingerprint\",\n    \"fire-burner\",\n    \"fire-extinguisher\",\n    \"fire-flame-curved\",\n    \"fire-flame-simple\",\n    \"fire-flame\",\n    \"fire-hydrant\",\n    \"fire-smoke\",\n    \"fire\",\n    \"fireplace\",\n    \"fish-bones\",\n    \"fish-cooked\",\n    \"fish-fins\",\n    \"fish\",\n    \"fishing-rod\",\n    \"flag-checkered\",\n    \"flag-pennant\",\n    \"flag-swallowtail\",\n    \"flag-usa\",\n    \"flag\",\n    \"flashlight\",\n    \"flask-gear\",\n    \"flask-round-poison\",\n    \"flask-round-potion\",\n    \"flask-vial\",\n    \"flask\",\n    \"flatbread-stuffed\",\n    \"flatbread\",\n    \"floppy-disk-circle-arrow-right\",\n    \"floppy-disk-circle-xmark\",\n    \"floppy-disk-pen\",\n    \"floppy-disk\",\n    \"floppy-disks\",\n    \"florin-sign\",\n    \"flower-daffodil\",\n    \"flower-tulip\",\n    \"flower\",\n    \"flute\",\n    \"flux-capacitor\",\n    \"flying-disc\",\n    \"folder-arrow-down\",\n    \"folder-arrow-up\",\n    \"folder-bookmark\",\n    \"folder-check\",\n    \"folder-closed\",\n    \"folder-gear\",\n    \"folder-grid\",\n    \"folder-heart\",\n    \"folder-image\",\n    \"folder-magnifying-glass\",\n    \"folder-medical\",\n    \"folder-minus\",\n    \"folder-music\",\n    \"folder-open\",\n    \"folder-plus\",\n    \"folder-tree\",\n    \"folder-user\",\n    \"folder-xmark\",\n    \"folder\",\n    \"folders\",\n    \"fondue-pot\",\n    \"font-awesome\",\n    \"font-case\",\n    \"font\",\n    \"football-helmet\",\n    \"football\",\n    \"fork-knife\",\n    \"fork\",\n    \"forklift\",\n    \"fort\",\n    \"forward-fast\",\n    \"forward-step\",\n    \"forward\",\n    \"frame\",\n    \"franc-sign\",\n    \"french-fries\",\n    \"frog\",\n    \"function\",\n    \"futbol\",\n    \"g\",\n    \"galaxy\",\n    \"gallery-thumbnails\",\n    \"game-board-simple\",\n    \"game-board\",\n    \"game-console-handheld-crank\",\n    \"game-console-handheld\",\n    \"gamepad-modern\",\n    \"gamepad\",\n    \"garage-car\",\n    \"garage-open\",\n    \"garage\",\n    \"garlic\",\n    \"gas-pump-slash\",\n    \"gas-pump\",\n    \"gauge-circle-bolt\",\n    \"gauge-circle-minus\",\n    \"gauge-circle-plus\",\n    \"gauge-high\",\n    \"gauge-low\",\n    \"gauge-max\",\n    \"gauge-min\",\n    \"gauge-simple-high\",\n    \"gauge-simple-low\",\n    \"gauge-simple-max\",\n    \"gauge-simple-min\",\n    \"gauge-simple\",\n    \"gauge\",\n    \"gavel\",\n    \"gear-code\",\n    \"gear-complex-code\",\n    \"gear-complex\",\n    \"gear\",\n    \"gears\",\n    \"gem\",\n    \"genderless\",\n    \"ghost\",\n    \"gif\",\n    \"gift-card\",\n    \"gift\",\n    \"gifts\",\n    \"gingerbread-man\",\n    \"glass-citrus\",\n    \"glass-empty\",\n    \"glass-half\",\n    \"glass-water-droplet\",\n    \"glass-water\",\n    \"glass\",\n    \"glasses-round\",\n    \"glasses\",\n    \"globe-pointer\",\n    \"globe-snow\",\n    \"globe-stand\",\n    \"globe-wifi\",\n    \"globe\",\n    \"goal-net\",\n    \"golf-ball-tee\",\n    \"golf-club\",\n    \"golf-flag-hole\",\n    \"gopuram\",\n    \"graduation-cap\",\n    \"gramophone\",\n    \"grapes\",\n    \"grate-droplet\",\n    \"grate\",\n    \"greater-than-equal\",\n    \"greater-than\",\n    \"grid-2-plus\",\n    \"grid-2\",\n    \"grid-4\",\n    \"grid-5\",\n    \"grid-dividers\",\n    \"grid-horizontal\",\n    \"grid-round-2-plus\",\n    \"grid-round-2\",\n    \"grid-round-4\",\n    \"grid-round-5\",\n    \"grid-round\",\n    \"grid\",\n    \"grill-fire\",\n    \"grill-hot\",\n    \"grill\",\n    \"grip-dots-vertical\",\n    \"grip-dots\",\n    \"grip-lines-vertical\",\n    \"grip-lines\",\n    \"grip-vertical\",\n    \"grip\",\n    \"group-arrows-rotate\",\n    \"guarani-sign\",\n    \"guitar-electric\",\n    \"guitar\",\n    \"guitars\",\n    \"gun-slash\",\n    \"gun-squirt\",\n    \"gun\",\n    \"h\",\n    \"h1\",\n    \"h2\",\n    \"h3\",\n    \"h4\",\n    \"h5\",\n    \"h6\",\n    \"hammer-brush\",\n    \"hammer-crash\",\n    \"hammer-war\",\n    \"hammer\",\n    \"hamsa\",\n    \"hand-back-fist\",\n    \"hand-back-point-down\",\n    \"hand-back-point-left\",\n    \"hand-back-point-ribbon\",\n    \"hand-back-point-right\",\n    \"hand-back-point-up\",\n    \"hand-dots\",\n    \"hand-fingers-crossed\",\n    \"hand-fist\",\n    \"hand-heart\",\n    \"hand-holding-box\",\n    \"hand-holding-circle-dollar\",\n    \"hand-holding-dollar\",\n    \"hand-holding-droplet\",\n    \"hand-holding-hand\",\n    \"hand-holding-heart\",\n    \"hand-holding-magic\",\n    \"hand-holding-medical\",\n    \"hand-holding-seedling\",\n    \"hand-holding-skull\",\n    \"hand-holding\",\n    \"hand-horns\",\n    \"hand-lizard\",\n    \"hand-love\",\n    \"hand-middle-finger\",\n    \"hand-peace\",\n    \"hand-point-down\",\n    \"hand-point-left\",\n    \"hand-point-ribbon\",\n    \"hand-point-right\",\n    \"hand-point-up\",\n    \"hand-pointer\",\n    \"hand-scissors\",\n    \"hand-sparkles\",\n    \"hand-spock\",\n    \"hand-wave\",\n    \"hand\",\n    \"handcuffs\",\n    \"hands-asl-interpreting\",\n    \"hands-bound\",\n    \"hands-bubbles\",\n    \"hands-clapping\",\n    \"hands-holding-child\",\n    \"hands-holding-circle\",\n    \"hands-holding-diamond\",\n    \"hands-holding-dollar\",\n    \"hands-holding-heart\",\n    \"hands-holding\",\n    \"hands-praying\",\n    \"hands\",\n    \"handshake-angle\",\n    \"handshake-simple-slash\",\n    \"handshake-simple\",\n    \"handshake-slash\",\n    \"handshake\",\n    \"hanukiah\",\n    \"hard-drive\",\n    \"hashtag-lock\",\n    \"hashtag\",\n    \"hat-beach\",\n    \"hat-chef\",\n    \"hat-cowboy-side\",\n    \"hat-cowboy\",\n    \"hat-santa\",\n    \"hat-winter\",\n    \"hat-witch\",\n    \"hat-wizard\",\n    \"head-side-brain\",\n    \"head-side-cough-slash\",\n    \"head-side-cough\",\n    \"head-side-gear\",\n    \"head-side-goggles\",\n    \"head-side-headphones\",\n    \"head-side-heart\",\n    \"head-side-mask\",\n    \"head-side-medical\",\n    \"head-side-virus\",\n    \"head-side\",\n    \"heading\",\n    \"headphones-simple\",\n    \"headphones\",\n    \"headset\",\n    \"heart-circle-bolt\",\n    \"heart-circle-check\",\n    \"heart-circle-exclamation\",\n    \"heart-circle-minus\",\n    \"heart-circle-plus\",\n    \"heart-circle-xmark\",\n    \"heart-crack\",\n    \"heart-half-stroke\",\n    \"heart-half\",\n    \"heart-pulse\",\n    \"heart\",\n    \"heat\",\n    \"helicopter-symbol\",\n    \"helicopter\",\n    \"helmet-battle\",\n    \"helmet-safety\",\n    \"helmet-un\",\n    \"hexagon-check\",\n    \"hexagon-divide\",\n    \"hexagon-exclamation\",\n    \"hexagon-image\",\n    \"hexagon-minus\",\n    \"hexagon-nodes-bolt\",\n    \"hexagon-nodes\",\n    \"hexagon-plus\",\n    \"hexagon-vertical-nft-slanted\",\n    \"hexagon-vertical-nft\",\n    \"hexagon-xmark\",\n    \"hexagon\",\n    \"high-definition\",\n    \"highlighter-line\",\n    \"highlighter\",\n    \"hill-avalanche\",\n    \"hill-rockslide\",\n    \"hippo\",\n    \"hockey-mask\",\n    \"hockey-puck\",\n    \"hockey-stick-puck\",\n    \"hockey-sticks\",\n    \"holly-berry\",\n    \"honey-pot\",\n    \"hood-cloak\",\n    \"horizontal-rule\",\n    \"horse-head\",\n    \"horse-saddle\",\n    \"horse\",\n    \"hose-reel\",\n    \"hose\",\n    \"hospital-user\",\n    \"hospital\",\n    \"hospitals\",\n    \"hot-tub-person\",\n    \"hotdog\",\n    \"hotel\",\n    \"hourglass-clock\",\n    \"hourglass-end\",\n    \"hourglass-half\",\n    \"hourglass-start\",\n    \"hourglass\",\n    \"house-blank\",\n    \"house-building\",\n    \"house-chimney-blank\",\n    \"house-chimney-crack\",\n    \"house-chimney-heart\",\n    \"house-chimney-medical\",\n    \"house-chimney-user\",\n    \"house-chimney-window\",\n    \"house-chimney\",\n    \"house-circle-check\",\n    \"house-circle-exclamation\",\n    \"house-circle-xmark\",\n    \"house-crack\",\n    \"house-day\",\n    \"house-fire\",\n    \"house-flag\",\n    \"house-flood-water-circle-arrow-right\",\n    \"house-flood-water\",\n    \"house-heart\",\n    \"house-laptop\",\n    \"house-lock\",\n    \"house-medical-circle-check\",\n    \"house-medical-circle-exclamation\",\n    \"house-medical-circle-xmark\",\n    \"house-medical-flag\",\n    \"house-medical\",\n    \"house-night\",\n    \"house-person-leave\",\n    \"house-person-return\",\n    \"house-signal\",\n    \"house-tree\",\n    \"house-tsunami\",\n    \"house-turret\",\n    \"house-user\",\n    \"house-water\",\n    \"house-window\",\n    \"house\",\n    \"hryvnia-sign\",\n    \"hundred-points\",\n    \"hurricane\",\n    \"hydra\",\n    \"hyphen\",\n    \"i-cursor\",\n    \"i\",\n    \"ice-cream\",\n    \"ice-skate\",\n    \"icicles\",\n    \"icons\",\n    \"id-badge\",\n    \"id-card-clip\",\n    \"id-card\",\n    \"igloo\",\n    \"image-landscape\",\n    \"image-polaroid-user\",\n    \"image-polaroid\",\n    \"image-portrait\",\n    \"image-slash\",\n    \"image-user\",\n    \"image\",\n    \"images-user\",\n    \"images\",\n    \"inbox-full\",\n    \"inbox-in\",\n    \"inbox-out\",\n    \"inbox\",\n    \"inboxes\",\n    \"indent\",\n    \"indian-rupee-sign\",\n    \"industry-windows\",\n    \"industry\",\n    \"infinity\",\n    \"info\",\n    \"inhaler\",\n    \"input-numeric\",\n    \"input-pipe\",\n    \"input-text\",\n    \"integral\",\n    \"interrobang\",\n    \"intersection\",\n    \"island-tropical\",\n    \"italic\",\n    \"j\",\n    \"jack-o-lantern\",\n    \"jar-wheat\",\n    \"jar\",\n    \"jedi\",\n    \"jet-fighter-up\",\n    \"jet-fighter\",\n    \"joint\",\n    \"joystick\",\n    \"jug-bottle\",\n    \"jug-detergent\",\n    \"jug\",\n    \"k\",\n    \"kaaba\",\n    \"kazoo\",\n    \"kerning\",\n    \"key-skeleton-left-right\",\n    \"key-skeleton\",\n    \"key\",\n    \"keyboard-brightness-low\",\n    \"keyboard-brightness\",\n    \"keyboard-down\",\n    \"keyboard-left\",\n    \"keyboard\",\n    \"keynote\",\n    \"khanda\",\n    \"kidneys\",\n    \"kip-sign\",\n    \"kit-medical\",\n    \"kitchen-set\",\n    \"kite\",\n    \"kiwi-bird\",\n    \"kiwi-fruit\",\n    \"knife-kitchen\",\n    \"knife\",\n    \"l\",\n    \"lacrosse-stick-ball\",\n    \"lacrosse-stick\",\n    \"lambda\",\n    \"lamp-desk\",\n    \"lamp-floor\",\n    \"lamp-street\",\n    \"lamp\",\n    \"land-mine-on\",\n    \"landmark-dome\",\n    \"landmark-flag\",\n    \"landmark-magnifying-glass\",\n    \"landmark\",\n    \"language\",\n    \"laptop-arrow-down\",\n    \"laptop-binary\",\n    \"laptop-code\",\n    \"laptop-file\",\n    \"laptop-medical\",\n    \"laptop-mobile\",\n    \"laptop-slash\",\n    \"laptop\",\n    \"lari-sign\",\n    \"lasso-sparkles\",\n    \"lasso\",\n    \"layer-group\",\n    \"layer-minus\",\n    \"layer-plus\",\n    \"leaf-heart\",\n    \"leaf-maple\",\n    \"leaf-oak\",\n    \"leaf\",\n    \"leafy-green\",\n    \"left-from-bracket\",\n    \"left-from-line\",\n    \"left-long-to-line\",\n    \"left-long\",\n    \"left-right\",\n    \"left-to-bracket\",\n    \"left-to-line\",\n    \"left\",\n    \"lemon\",\n    \"less-than-equal\",\n    \"less-than\",\n    \"life-ring\",\n    \"light-ceiling\",\n    \"light-emergency-on\",\n    \"light-emergency\",\n    \"light-switch-off\",\n    \"light-switch-on\",\n    \"light-switch\",\n    \"lightbulb-cfl-on\",\n    \"lightbulb-cfl\",\n    \"lightbulb-dollar\",\n    \"lightbulb-exclamation-on\",\n    \"lightbulb-exclamation\",\n    \"lightbulb-gear\",\n    \"lightbulb-message\",\n    \"lightbulb-on\",\n    \"lightbulb-slash\",\n    \"lightbulb\",\n    \"lighthouse\",\n    \"lights-holiday\",\n    \"line-columns\",\n    \"line-height\",\n    \"lines-leaning\",\n    \"link-horizontal-slash\",\n    \"link-horizontal\",\n    \"link-simple-slash\",\n    \"link-simple\",\n    \"link-slash\",\n    \"link\",\n    \"lips\",\n    \"lira-sign\",\n    \"list-check\",\n    \"list-dropdown\",\n    \"list-music\",\n    \"list-ol\",\n    \"list-radio\",\n    \"list-timeline\",\n    \"list-tree\",\n    \"list-ul\",\n    \"list\",\n    \"litecoin-sign\",\n    \"loader\",\n    \"lobster\",\n    \"location-arrow-up\",\n    \"location-arrow\",\n    \"location-check\",\n    \"location-crosshairs-slash\",\n    \"location-crosshairs\",\n    \"location-dot-slash\",\n    \"location-dot\",\n    \"location-exclamation\",\n    \"location-minus\",\n    \"location-pen\",\n    \"location-pin-lock\",\n    \"location-pin-slash\",\n    \"location-pin\",\n    \"location-plus\",\n    \"location-question\",\n    \"location-smile\",\n    \"location-xmark\",\n    \"lock-a\",\n    \"lock-hashtag\",\n    \"lock-keyhole-open\",\n    \"lock-keyhole\",\n    \"lock-open\",\n    \"lock\",\n    \"locust\",\n    \"lollipop\",\n    \"loveseat\",\n    \"luchador-mask\",\n    \"lungs-virus\",\n    \"lungs\",\n    \"m\",\n    \"mace\",\n    \"magnet\",\n    \"magnifying-glass-arrow-right\",\n    \"magnifying-glass-arrows-rotate\",\n    \"magnifying-glass-chart\",\n    \"magnifying-glass-dollar\",\n    \"magnifying-glass-location\",\n    \"magnifying-glass-minus\",\n    \"magnifying-glass-music\",\n    \"magnifying-glass-play\",\n    \"magnifying-glass-plus\",\n    \"magnifying-glass-waveform\",\n    \"magnifying-glass\",\n    \"mailbox-flag-up\",\n    \"mailbox\",\n    \"manat-sign\",\n    \"mandolin\",\n    \"mango\",\n    \"manhole\",\n    \"map-location-dot\",\n    \"map-location\",\n    \"map-pin\",\n    \"map\",\n    \"marker\",\n    \"mars-and-venus-burst\",\n    \"mars-and-venus\",\n    \"mars-double\",\n    \"mars-stroke-right\",\n    \"mars-stroke-up\",\n    \"mars-stroke\",\n    \"mars\",\n    \"martini-glass-citrus\",\n    \"martini-glass-empty\",\n    \"martini-glass\",\n    \"mask-face\",\n    \"mask-snorkel\",\n    \"mask-ventilator\",\n    \"mask\",\n    \"masks-theater\",\n    \"mattress-pillow\",\n    \"maximize\",\n    \"meat\",\n    \"medal\",\n    \"megaphone\",\n    \"melon-slice\",\n    \"melon\",\n    \"memo-circle-check\",\n    \"memo-circle-info\",\n    \"memo-pad\",\n    \"memo\",\n    \"memory\",\n    \"menorah\",\n    \"mercury\",\n    \"merge\",\n    \"message-arrow-down\",\n    \"message-arrow-up-right\",\n    \"message-arrow-up\",\n    \"message-bot\",\n    \"message-captions\",\n    \"message-check\",\n    \"message-code\",\n    \"message-dollar\",\n    \"message-dots\",\n    \"message-exclamation\",\n    \"message-heart\",\n    \"message-image\",\n    \"message-lines\",\n    \"message-medical\",\n    \"message-middle-top\",\n    \"message-middle\",\n    \"message-minus\",\n    \"message-music\",\n    \"message-pen\",\n    \"message-plus\",\n    \"message-question\",\n    \"message-quote\",\n    \"message-slash\",\n    \"message-smile\",\n    \"message-sms\",\n    \"message-text\",\n    \"message-xmark\",\n    \"message\",\n    \"messages-dollar\",\n    \"messages-question\",\n    \"messages\",\n    \"meteor\",\n    \"meter-bolt\",\n    \"meter-droplet\",\n    \"meter-fire\",\n    \"meter\",\n    \"microchip-ai\",\n    \"microchip\",\n    \"microphone-lines-slash\",\n    \"microphone-lines\",\n    \"microphone-slash\",\n    \"microphone-stand\",\n    \"microphone\",\n    \"microscope\",\n    \"microwave\",\n    \"mill-sign\",\n    \"minimize\",\n    \"minus\",\n    \"mistletoe\",\n    \"mitten\",\n    \"mobile-button\",\n    \"mobile-notch\",\n    \"mobile-retro\",\n    \"mobile-screen-button\",\n    \"mobile-screen\",\n    \"mobile-signal-out\",\n    \"mobile-signal\",\n    \"mobile\",\n    \"money-bill-1-wave\",\n    \"money-bill-1\",\n    \"money-bill-simple-wave\",\n    \"money-bill-simple\",\n    \"money-bill-transfer\",\n    \"money-bill-trend-up\",\n    \"money-bill-wave\",\n    \"money-bill-wheat\",\n    \"money-bill\",\n    \"money-bills-simple\",\n    \"money-bills\",\n    \"money-check-dollar-pen\",\n    \"money-check-dollar\",\n    \"money-check-pen\",\n    \"money-check\",\n    \"money-from-bracket\",\n    \"money-simple-from-bracket\",\n    \"monitor-waveform\",\n    \"monkey\",\n    \"monument\",\n    \"moon-cloud\",\n    \"moon-over-sun\",\n    \"moon-stars\",\n    \"moon\",\n    \"moped\",\n    \"mortar-pestle\",\n    \"mosque\",\n    \"mosquito-net\",\n    \"mosquito\",\n    \"motorcycle\",\n    \"mound\",\n    \"mountain-city\",\n    \"mountain-sun\",\n    \"mountain\",\n    \"mountains\",\n    \"mouse-field\",\n    \"mp3-player\",\n    \"mug-hot\",\n    \"mug-marshmallows\",\n    \"mug-saucer\",\n    \"mug-tea-saucer\",\n    \"mug-tea\",\n    \"mug\",\n    \"mushroom\",\n    \"music-magnifying-glass\",\n    \"music-note-slash\",\n    \"music-note\",\n    \"music-slash\",\n    \"music\",\n    \"mustache\",\n    \"n\",\n    \"naira-sign\",\n    \"narwhal\",\n    \"nesting-dolls\",\n    \"network-wired\",\n    \"neuter\",\n    \"newspaper\",\n    \"nfc-lock\",\n    \"nfc-magnifying-glass\",\n    \"nfc-pen\",\n    \"nfc-signal\",\n    \"nfc-slash\",\n    \"nfc-symbol\",\n    \"nfc-trash\",\n    \"nfc\",\n    \"nose\",\n    \"not-equal\",\n    \"notdef\",\n    \"note-medical\",\n    \"note-sticky\",\n    \"note\",\n    \"notebook\",\n    \"notes-medical\",\n    \"notes\",\n    \"o\",\n    \"object-exclude\",\n    \"object-group\",\n    \"object-intersect\",\n    \"object-subtract\",\n    \"object-ungroup\",\n    \"object-union\",\n    \"objects-align-bottom\",\n    \"objects-align-center-horizontal\",\n    \"objects-align-center-vertical\",\n    \"objects-align-left\",\n    \"objects-align-right\",\n    \"objects-align-top\",\n    \"objects-column\",\n    \"octagon-check\",\n    \"octagon-divide\",\n    \"octagon-exclamation\",\n    \"octagon-minus\",\n    \"octagon-plus\",\n    \"octagon-xmark\",\n    \"octagon\",\n    \"octopus\",\n    \"oil-can-drip\",\n    \"oil-can\",\n    \"oil-temperature\",\n    \"oil-well\",\n    \"olive-branch\",\n    \"olive\",\n    \"om\",\n    \"omega\",\n    \"onion\",\n    \"option\",\n    \"ornament\",\n    \"otter\",\n    \"outdent\",\n    \"outlet\",\n    \"oven\",\n    \"overline\",\n    \"p\",\n    \"page-caret-down\",\n    \"page-caret-up\",\n    \"page\",\n    \"pager\",\n    \"paint-roller\",\n    \"paintbrush-fine\",\n    \"paintbrush-pencil\",\n    \"paintbrush\",\n    \"palette\",\n    \"pallet-box\",\n    \"pallet-boxes\",\n    \"pallet\",\n    \"pan-food\",\n    \"pan-frying\",\n    \"pancakes\",\n    \"panel-ews\",\n    \"panel-fire\",\n    \"panorama\",\n    \"paper-plane-top\",\n    \"paper-plane\",\n    \"paperclip-vertical\",\n    \"paperclip\",\n    \"parachute-box\",\n    \"paragraph-left\",\n    \"paragraph\",\n    \"party-bell\",\n    \"party-horn\",\n    \"passport\",\n    \"paste\",\n    \"pause\",\n    \"paw-claws\",\n    \"paw-simple\",\n    \"paw\",\n    \"peace\",\n    \"peach\",\n    \"peanut\",\n    \"peanuts\",\n    \"peapod\",\n    \"pear\",\n    \"pedestal\",\n    \"pegasus\",\n    \"pen-circle\",\n    \"pen-clip-slash\",\n    \"pen-clip\",\n    \"pen-fancy-slash\",\n    \"pen-fancy\",\n    \"pen-field\",\n    \"pen-line\",\n    \"pen-nib-slash\",\n    \"pen-nib\",\n    \"pen-paintbrush\",\n    \"pen-ruler\",\n    \"pen-slash\",\n    \"pen-swirl\",\n    \"pen-to-square\",\n    \"pen\",\n    \"pencil-mechanical\",\n    \"pencil-slash\",\n    \"pencil\",\n    \"people-arrows\",\n    \"people-carry-box\",\n    \"people-dress-simple\",\n    \"people-dress\",\n    \"people-group\",\n    \"people-line\",\n    \"people-pants-simple\",\n    \"people-pants\",\n    \"people-pulling\",\n    \"people-robbery\",\n    \"people-roof\",\n    \"people-simple\",\n    \"people\",\n    \"pepper-hot\",\n    \"pepper\",\n    \"percent\",\n    \"period\",\n    \"person-arrow-down-to-line\",\n    \"person-arrow-up-from-line\",\n    \"person-biking-mountain\",\n    \"person-biking\",\n    \"person-booth\",\n    \"person-breastfeeding\",\n    \"person-burst\",\n    \"person-cane\",\n    \"person-carry-box\",\n    \"person-chalkboard\",\n    \"person-circle-check\",\n    \"person-circle-exclamation\",\n    \"person-circle-minus\",\n    \"person-circle-plus\",\n    \"person-circle-question\",\n    \"person-circle-xmark\",\n    \"person-digging\",\n    \"person-dolly-empty\",\n    \"person-dolly\",\n    \"person-dots-from-line\",\n    \"person-dress-burst\",\n    \"person-dress-fairy\",\n    \"person-dress-simple\",\n    \"person-dress\",\n    \"person-drowning\",\n    \"person-fairy\",\n    \"person-falling-burst\",\n    \"person-falling\",\n    \"person-from-portal\",\n    \"person-half-dress\",\n    \"person-harassing\",\n    \"person-hiking\",\n    \"person-military-pointing\",\n    \"person-military-rifle\",\n    \"person-military-to-person\",\n    \"person-pinball\",\n    \"person-praying\",\n    \"person-pregnant\",\n    \"person-rays\",\n    \"person-rifle\",\n    \"person-running-fast\",\n    \"person-running\",\n    \"person-seat-reclined\",\n    \"person-seat\",\n    \"person-shelter\",\n    \"person-sign\",\n    \"person-simple\",\n    \"person-skating\",\n    \"person-ski-jumping\",\n    \"person-ski-lift\",\n    \"person-skiing-nordic\",\n    \"person-skiing\",\n    \"person-sledding\",\n    \"person-snowboarding\",\n    \"person-snowmobiling\",\n    \"person-swimming\",\n    \"person-through-window\",\n    \"person-to-door\",\n    \"person-to-portal\",\n    \"person-walking-arrow-loop-left\",\n    \"person-walking-arrow-right\",\n    \"person-walking-dashed-line-arrow-right\",\n    \"person-walking-luggage\",\n    \"person-walking-with-cane\",\n    \"person-walking\",\n    \"person\",\n    \"peseta-sign\",\n    \"peso-sign\",\n    \"phone-arrow-down-left\",\n    \"phone-arrow-right\",\n    \"phone-arrow-up-right\",\n    \"phone-flip\",\n    \"phone-hangup\",\n    \"phone-intercom\",\n    \"phone-missed\",\n    \"phone-office\",\n    \"phone-plus\",\n    \"phone-rotary\",\n    \"phone-slash\",\n    \"phone-volume\",\n    \"phone-xmark\",\n    \"phone\",\n    \"photo-film-music\",\n    \"photo-film\",\n    \"pi\",\n    \"piano-keyboard\",\n    \"piano\",\n    \"pickaxe\",\n    \"pickleball\",\n    \"pie\",\n    \"pig\",\n    \"piggy-bank\",\n    \"pills\",\n    \"pinata\",\n    \"pinball\",\n    \"pineapple\",\n    \"pipe-circle-check\",\n    \"pipe-collar\",\n    \"pipe-section\",\n    \"pipe-smoking\",\n    \"pipe-valve\",\n    \"pipe\",\n    \"pizza-slice\",\n    \"pizza\",\n    \"place-of-worship\",\n    \"plane-arrival\",\n    \"plane-circle-check\",\n    \"plane-circle-exclamation\",\n    \"plane-circle-xmark\",\n    \"plane-departure\",\n    \"plane-engines\",\n    \"plane-lock\",\n    \"plane-prop\",\n    \"plane-slash\",\n    \"plane-tail\",\n    \"plane-up-slash\",\n    \"plane-up\",\n    \"plane\",\n    \"planet-moon\",\n    \"planet-ringed\",\n    \"plant-wilt\",\n    \"plate-utensils\",\n    \"plate-wheat\",\n    \"play-pause\",\n    \"play\",\n    \"plug-circle-bolt\",\n    \"plug-circle-check\",\n    \"plug-circle-exclamation\",\n    \"plug-circle-minus\",\n    \"plug-circle-plus\",\n    \"plug-circle-xmark\",\n    \"plug\",\n    \"plus-large\",\n    \"plus-minus\",\n    \"plus\",\n    \"podcast\",\n    \"podium-star\",\n    \"podium\",\n    \"police-box\",\n    \"poll-people\",\n    \"pompebled\",\n    \"poo-storm\",\n    \"poo\",\n    \"pool-8-ball\",\n    \"poop\",\n    \"popcorn\",\n    \"popsicle\",\n    \"pot-food\",\n    \"potato\",\n    \"power-off\",\n    \"prescription-bottle-medical\",\n    \"prescription-bottle-pill\",\n    \"prescription-bottle\",\n    \"prescription\",\n    \"presentation-screen\",\n    \"pretzel\",\n    \"print-magnifying-glass\",\n    \"print-slash\",\n    \"print\",\n    \"projector\",\n    \"pump-medical\",\n    \"pump-soap\",\n    \"pump\",\n    \"pumpkin\",\n    \"puzzle-piece-simple\",\n    \"puzzle-piece\",\n    \"puzzle\",\n    \"q\",\n    \"qrcode\",\n    \"question\",\n    \"quote-left\",\n    \"quote-right\",\n    \"quotes\",\n    \"r\",\n    \"rabbit-running\",\n    \"rabbit\",\n    \"raccoon\",\n    \"racquet\",\n    \"radar\",\n    \"radiation\",\n    \"radio-tuner\",\n    \"radio\",\n    \"rainbow\",\n    \"raindrops\",\n    \"ram\",\n    \"ramp-loading\",\n    \"ranking-star\",\n    \"raygun\",\n    \"receipt\",\n    \"record-vinyl\",\n    \"rectangle-ad\",\n    \"rectangle-barcode\",\n    \"rectangle-code\",\n    \"rectangle-history-circle-plus\",\n    \"rectangle-history-circle-user\",\n    \"rectangle-history\",\n    \"rectangle-list\",\n    \"rectangle-pro\",\n    \"rectangle-terminal\",\n    \"rectangle-vertical-history\",\n    \"rectangle-vertical\",\n    \"rectangle-wide\",\n    \"rectangle-xmark\",\n    \"rectangle\",\n    \"rectangles-mixed\",\n    \"recycle\",\n    \"reel\",\n    \"reflect-both\",\n    \"reflect-horizontal\",\n    \"reflect-vertical\",\n    \"refrigerator\",\n    \"registered\",\n    \"repeat-1\",\n    \"repeat\",\n    \"reply-all\",\n    \"reply-clock\",\n    \"reply\",\n    \"republican\",\n    \"restroom-simple\",\n    \"restroom\",\n    \"retweet\",\n    \"rhombus\",\n    \"ribbon\",\n    \"right-from-bracket\",\n    \"right-from-line\",\n    \"right-left-large\",\n    \"right-left\",\n    \"right-long-to-line\",\n    \"right-long\",\n    \"right-to-bracket\",\n    \"right-to-line\",\n    \"right\",\n    \"ring-diamond\",\n    \"ring\",\n    \"rings-wedding\",\n    \"road-barrier\",\n    \"road-bridge\",\n    \"road-circle-check\",\n    \"road-circle-exclamation\",\n    \"road-circle-xmark\",\n    \"road-lock\",\n    \"road-spikes\",\n    \"road\",\n    \"robot-astromech\",\n    \"robot\",\n    \"rocket-launch\",\n    \"rocket\",\n    \"roller-coaster\",\n    \"rotate-exclamation\",\n    \"rotate-left\",\n    \"rotate-reverse\",\n    \"rotate-right\",\n    \"rotate\",\n    \"route-highway\",\n    \"route-interstate\",\n    \"route\",\n    \"router\",\n    \"rss\",\n    \"ruble-sign\",\n    \"rug\",\n    \"rugby-ball\",\n    \"ruler-combined\",\n    \"ruler-horizontal\",\n    \"ruler-triangle\",\n    \"ruler-vertical\",\n    \"ruler\",\n    \"rupee-sign\",\n    \"rupiah-sign\",\n    \"rv\",\n    \"s\",\n    \"sack-dollar\",\n    \"sack-xmark\",\n    \"sack\",\n    \"sailboat\",\n    \"salad\",\n    \"salt-shaker\",\n    \"sandwich\",\n    \"satellite-dish\",\n    \"satellite\",\n    \"sausage\",\n    \"saxophone-fire\",\n    \"saxophone\",\n    \"scale-balanced\",\n    \"scale-unbalanced-flip\",\n    \"scale-unbalanced\",\n    \"scalpel-line-dashed\",\n    \"scalpel\",\n    \"scanner-gun\",\n    \"scanner-image\",\n    \"scanner-keyboard\",\n    \"scanner-touchscreen\",\n    \"scarecrow\",\n    \"scarf\",\n    \"school-circle-check\",\n    \"school-circle-exclamation\",\n    \"school-circle-xmark\",\n    \"school-flag\",\n    \"school-lock\",\n    \"school\",\n    \"scissors\",\n    \"screen-users\",\n    \"screencast\",\n    \"screwdriver-wrench\",\n    \"screwdriver\",\n    \"scribble\",\n    \"scroll-old\",\n    \"scroll-torah\",\n    \"scroll\",\n    \"scrubber\",\n    \"scythe\",\n    \"sd-card\",\n    \"sd-cards\",\n    \"seal-exclamation\",\n    \"seal-question\",\n    \"seal\",\n    \"seat-airline\",\n    \"section\",\n    \"seedling\",\n    \"semicolon\",\n    \"send-back\",\n    \"send-backward\",\n    \"sensor-cloud\",\n    \"sensor-fire\",\n    \"sensor-on\",\n    \"sensor-triangle-exclamation\",\n    \"sensor\",\n    \"server\",\n    \"shapes\",\n    \"share-all\",\n    \"share-from-square\",\n    \"share-nodes\",\n    \"share\",\n    \"sheep\",\n    \"sheet-plastic\",\n    \"shekel-sign\",\n    \"shelves-empty\",\n    \"shelves\",\n    \"shield-cat\",\n    \"shield-check\",\n    \"shield-cross\",\n    \"shield-dog\",\n    \"shield-exclamation\",\n    \"shield-halved\",\n    \"shield-heart\",\n    \"shield-keyhole\",\n    \"shield-minus\",\n    \"shield-plus\",\n    \"shield-quartered\",\n    \"shield-slash\",\n    \"shield-virus\",\n    \"shield-xmark\",\n    \"shield\",\n    \"ship\",\n    \"shirt-long-sleeve\",\n    \"shirt-running\",\n    \"shirt-tank-top\",\n    \"shirt\",\n    \"shish-kebab\",\n    \"shoe-prints\",\n    \"shop-lock\",\n    \"shop-slash\",\n    \"shop\",\n    \"shovel-snow\",\n    \"shovel\",\n    \"shower-down\",\n    \"shower\",\n    \"shredder\",\n    \"shrimp\",\n    \"shuffle\",\n    \"shutters\",\n    \"shuttle-space\",\n    \"shuttlecock\",\n    \"sickle\",\n    \"sidebar-flip\",\n    \"sidebar\",\n    \"sigma\",\n    \"sign-hanging\",\n    \"sign-post\",\n    \"sign-posts-wrench\",\n    \"sign-posts\",\n    \"signal-bars-fair\",\n    \"signal-bars-good\",\n    \"signal-bars-slash\",\n    \"signal-bars-weak\",\n    \"signal-bars\",\n    \"signal-fair\",\n    \"signal-good\",\n    \"signal-slash\",\n    \"signal-stream-slash\",\n    \"signal-stream\",\n    \"signal-strong\",\n    \"signal-weak\",\n    \"signal\",\n    \"signature-lock\",\n    \"signature-slash\",\n    \"signature\",\n    \"signs-post\",\n    \"sim-card\",\n    \"sim-cards\",\n    \"sink\",\n    \"siren-on\",\n    \"siren\",\n    \"sitemap\",\n    \"skeleton-ribs\",\n    \"skeleton\",\n    \"ski-boot-ski\",\n    \"ski-boot\",\n    \"skull-cow\",\n    \"skull-crossbones\",\n    \"skull\",\n    \"slash-back\",\n    \"slash-forward\",\n    \"slash\",\n    \"sleigh\",\n    \"slider\",\n    \"sliders-simple\",\n    \"sliders-up\",\n    \"sliders\",\n    \"slot-machine\",\n    \"smog\",\n    \"smoke\",\n    \"smoking\",\n    \"snake\",\n    \"snooze\",\n    \"snow-blowing\",\n    \"snowflake-droplets\",\n    \"snowflake\",\n    \"snowflakes\",\n    \"snowman-head\",\n    \"snowman\",\n    \"snowplow\",\n    \"soap\",\n    \"socks\",\n    \"soft-serve\",\n    \"solar-panel\",\n    \"solar-system\",\n    \"sort-down\",\n    \"sort-up\",\n    \"sort\",\n    \"spa\",\n    \"space-station-moon-construction\",\n    \"space-station-moon\",\n    \"spade\",\n    \"spaghetti-monster-flying\",\n    \"sparkle\",\n    \"sparkles\",\n    \"speaker\",\n    \"speakers\",\n    \"spell-check\",\n    \"spider-black-widow\",\n    \"spider-web\",\n    \"spider\",\n    \"spinner-scale\",\n    \"spinner-third\",\n    \"spinner\",\n    \"split\",\n    \"splotch\",\n    \"spoon\",\n    \"sportsball\",\n    \"spray-can-sparkles\",\n    \"spray-can\",\n    \"sprinkler-ceiling\",\n    \"sprinkler\",\n    \"square-0\",\n    \"square-1\",\n    \"square-2\",\n    \"square-3\",\n    \"square-4\",\n    \"square-5\",\n    \"square-6\",\n    \"square-7\",\n    \"square-8\",\n    \"square-9\",\n    \"square-a-lock\",\n    \"square-a\",\n    \"square-ampersand\",\n    \"square-arrow-down-left\",\n    \"square-arrow-down-right\",\n    \"square-arrow-down\",\n    \"square-arrow-left\",\n    \"square-arrow-right\",\n    \"square-arrow-up-left\",\n    \"square-arrow-up-right\",\n    \"square-arrow-up\",\n    \"square-b\",\n    \"square-binary\",\n    \"square-bolt\",\n    \"square-c\",\n    \"square-caret-down\",\n    \"square-caret-left\",\n    \"square-caret-right\",\n    \"square-caret-up\",\n    \"square-check\",\n    \"square-chevron-down\",\n    \"square-chevron-left\",\n    \"square-chevron-right\",\n    \"square-chevron-up\",\n    \"square-code\",\n    \"square-d\",\n    \"square-dashed-circle-plus\",\n    \"square-dashed\",\n    \"square-divide\",\n    \"square-dollar\",\n    \"square-down-left\",\n    \"square-down-right\",\n    \"square-down\",\n    \"square-e\",\n    \"square-ellipsis-vertical\",\n    \"square-ellipsis\",\n    \"square-envelope\",\n    \"square-exclamation\",\n    \"square-f\",\n    \"square-fragile\",\n    \"square-full\",\n    \"square-g\",\n    \"square-h\",\n    \"square-heart\",\n    \"square-i\",\n    \"square-info\",\n    \"square-j\",\n    \"square-k\",\n    \"square-kanban\",\n    \"square-l\",\n    \"square-left\",\n    \"square-list\",\n    \"square-m\",\n    \"square-minus\",\n    \"square-n\",\n    \"square-nfi\",\n    \"square-o\",\n    \"square-p\",\n    \"square-parking-slash\",\n    \"square-parking\",\n    \"square-pen\",\n    \"square-person-confined\",\n    \"square-phone-flip\",\n    \"square-phone-hangup\",\n    \"square-phone\",\n    \"square-plus\",\n    \"square-poll-horizontal\",\n    \"square-poll-vertical\",\n    \"square-q\",\n    \"square-quarters\",\n    \"square-question\",\n    \"square-quote\",\n    \"square-r\",\n    \"square-right\",\n    \"square-ring\",\n    \"square-root-variable\",\n    \"square-root\",\n    \"square-rss\",\n    \"square-s\",\n    \"square-share-nodes\",\n    \"square-sliders-vertical\",\n    \"square-sliders\",\n    \"square-small\",\n    \"square-star\",\n    \"square-t\",\n    \"square-terminal\",\n    \"square-this-way-up\",\n    \"square-u\",\n    \"square-up-left\",\n    \"square-up-right\",\n    \"square-up\",\n    \"square-user\",\n    \"square-v\",\n    \"square-virus\",\n    \"square-w\",\n    \"square-x\",\n    \"square-xmark\",\n    \"square-y\",\n    \"square-z\",\n    \"square\",\n    \"squid\",\n    \"squirrel\",\n    \"staff-snake\",\n    \"staff\",\n    \"stairs\",\n    \"stamp\",\n    \"standard-definition\",\n    \"stapler\",\n    \"star-and-crescent\",\n    \"star-christmas\",\n    \"star-exclamation\",\n    \"star-half-stroke\",\n    \"star-half\",\n    \"star-of-david\",\n    \"star-of-life\",\n    \"star-sharp-half-stroke\",\n    \"star-sharp-half\",\n    \"star-sharp\",\n    \"star-shooting\",\n    \"star\",\n    \"starfighter-twin-ion-engine-advanced\",\n    \"starfighter-twin-ion-engine\",\n    \"starfighter\",\n    \"stars\",\n    \"starship-freighter\",\n    \"starship\",\n    \"steak\",\n    \"steering-wheel\",\n    \"sterling-sign\",\n    \"stethoscope\",\n    \"stocking\",\n    \"stomach\",\n    \"stop\",\n    \"stopwatch-20\",\n    \"stopwatch\",\n    \"store-lock\",\n    \"store-slash\",\n    \"store\",\n    \"strawberry\",\n    \"street-view\",\n    \"stretcher\",\n    \"strikethrough\",\n    \"stroopwafel\",\n    \"subscript\",\n    \"subtitles-slash\",\n    \"subtitles\",\n    \"suitcase-medical\",\n    \"suitcase-rolling\",\n    \"suitcase\",\n    \"sun-bright\",\n    \"sun-cloud\",\n    \"sun-dust\",\n    \"sun-haze\",\n    \"sun-plant-wilt\",\n    \"sun\",\n    \"sunglasses\",\n    \"sunrise\",\n    \"sunset\",\n    \"superscript\",\n    \"sushi-roll\",\n    \"sushi\",\n    \"swap-arrows\",\n    \"swap\",\n    \"swatchbook\",\n    \"sword-laser-alt\",\n    \"sword-laser\",\n    \"sword\",\n    \"swords-laser\",\n    \"swords\",\n    \"symbols\",\n    \"synagogue\",\n    \"syringe\",\n    \"t-rex\",\n    \"t\",\n    \"table-cells-column-lock\",\n    \"table-cells-column-unlock\",\n    \"table-cells-large\",\n    \"table-cells-lock\",\n    \"table-cells-row-lock\",\n    \"table-cells-row-unlock\",\n    \"table-cells-unlock\",\n    \"table-cells\",\n    \"table-columns\",\n    \"table-layout\",\n    \"table-list\",\n    \"table-picnic\",\n    \"table-pivot\",\n    \"table-rows\",\n    \"table-tennis-paddle-ball\",\n    \"table-tree\",\n    \"table\",\n    \"tablet-button\",\n    \"tablet-rugged\",\n    \"tablet-screen-button\",\n    \"tablet-screen\",\n    \"tablet\",\n    \"tablets\",\n    \"tachograph-digital\",\n    \"taco\",\n    \"tag\",\n    \"tags\",\n    \"tally-1\",\n    \"tally-2\",\n    \"tally-3\",\n    \"tally-4\",\n    \"tally\",\n    \"tamale\",\n    \"tank-water\",\n    \"tape\",\n    \"tarp-droplet\",\n    \"tarp\",\n    \"taxi-bus\",\n    \"taxi\",\n    \"teddy-bear\",\n    \"teeth-open\",\n    \"teeth\",\n    \"telescope\",\n    \"temperature-arrow-down\",\n    \"temperature-arrow-up\",\n    \"temperature-empty\",\n    \"temperature-full\",\n    \"temperature-half\",\n    \"temperature-high\",\n    \"temperature-list\",\n    \"temperature-low\",\n    \"temperature-quarter\",\n    \"temperature-snow\",\n    \"temperature-sun\",\n    \"temperature-three-quarters\",\n    \"tenge-sign\",\n    \"tennis-ball\",\n    \"tent-arrow-down-to-line\",\n    \"tent-arrow-left-right\",\n    \"tent-arrow-turn-left\",\n    \"tent-arrows-down\",\n    \"tent-double-peak\",\n    \"tent\",\n    \"tents\",\n    \"terminal\",\n    \"text-height\",\n    \"text-size\",\n    \"text-slash\",\n    \"text-width\",\n    \"text\",\n    \"thermometer\",\n    \"theta\",\n    \"thought-bubble\",\n    \"thumbs-down\",\n    \"thumbs-up\",\n    \"thumbtack-slash\",\n    \"thumbtack\",\n    \"tick\",\n    \"ticket-airline\",\n    \"ticket-perforated\",\n    \"ticket-simple\",\n    \"ticket\",\n    \"tickets-airline\",\n    \"tickets-perforated\",\n    \"tickets-simple\",\n    \"tickets\",\n    \"tilde\",\n    \"timeline-arrow\",\n    \"timeline\",\n    \"timer\",\n    \"tire-flat\",\n    \"tire-pressure-warning\",\n    \"tire-rugged\",\n    \"tire\",\n    \"toggle-large-off\",\n    \"toggle-large-on\",\n    \"toggle-off\",\n    \"toggle-on\",\n    \"toilet-paper-blank-under\",\n    \"toilet-paper-blank\",\n    \"toilet-paper-check\",\n    \"toilet-paper-slash\",\n    \"toilet-paper-under-slash\",\n    \"toilet-paper-under\",\n    \"toilet-paper-xmark\",\n    \"toilet-paper\",\n    \"toilet-portable\",\n    \"toilet\",\n    \"toilets-portable\",\n    \"tomato\",\n    \"tombstone-blank\",\n    \"tombstone\",\n    \"toolbox\",\n    \"tooth\",\n    \"toothbrush\",\n    \"torii-gate\",\n    \"tornado\",\n    \"tower-broadcast\",\n    \"tower-cell\",\n    \"tower-control\",\n    \"tower-observation\",\n    \"tractor\",\n    \"trademark\",\n    \"traffic-cone\",\n    \"traffic-light-go\",\n    \"traffic-light-slow\",\n    \"traffic-light-stop\",\n    \"traffic-light\",\n    \"trailer\",\n    \"train-subway-tunnel\",\n    \"train-subway\",\n    \"train-track\",\n    \"train-tram\",\n    \"train-tunnel\",\n    \"train\",\n    \"transformer-bolt\",\n    \"transgender\",\n    \"transporter-1\",\n    \"transporter-2\",\n    \"transporter-3\",\n    \"transporter-4\",\n    \"transporter-5\",\n    \"transporter-6\",\n    \"transporter-7\",\n    \"transporter-empty\",\n    \"transporter\",\n    \"trash-arrow-up\",\n    \"trash-can-arrow-up\",\n    \"trash-can-check\",\n    \"trash-can-clock\",\n    \"trash-can-list\",\n    \"trash-can-plus\",\n    \"trash-can-slash\",\n    \"trash-can-undo\",\n    \"trash-can-xmark\",\n    \"trash-can\",\n    \"trash-check\",\n    \"trash-clock\",\n    \"trash-list\",\n    \"trash-plus\",\n    \"trash-slash\",\n    \"trash-undo\",\n    \"trash-xmark\",\n    \"trash\",\n    \"treasure-chest\",\n    \"tree-christmas\",\n    \"tree-city\",\n    \"tree-deciduous\",\n    \"tree-decorated\",\n    \"tree-large\",\n    \"tree-palm\",\n    \"tree\",\n    \"trees\",\n    \"triangle-exclamation\",\n    \"triangle-instrument\",\n    \"triangle-person-digging\",\n    \"triangle\",\n    \"tricycle-adult\",\n    \"tricycle\",\n    \"trillium\",\n    \"trophy-star\",\n    \"trophy\",\n    \"trowel-bricks\",\n    \"trowel\",\n    \"truck-arrow-right\",\n    \"truck-bolt\",\n    \"truck-clock\",\n    \"truck-container-empty\",\n    \"truck-container\",\n    \"truck-droplet\",\n    \"truck-fast\",\n    \"truck-field-un\",\n    \"truck-field\",\n    \"truck-fire\",\n    \"truck-flatbed\",\n    \"truck-front\",\n    \"truck-ladder\",\n    \"truck-medical\",\n    \"truck-monster\",\n    \"truck-moving\",\n    \"truck-pickup\",\n    \"truck-plane\",\n    \"truck-plow\",\n    \"truck-ramp-box\",\n    \"truck-ramp-couch\",\n    \"truck-ramp\",\n    \"truck-tow\",\n    \"truck-utensils\",\n    \"truck\",\n    \"trumpet\",\n    \"tty-answer\",\n    \"tty\",\n    \"tugrik-sign\",\n    \"turkey\",\n    \"turkish-lira-sign\",\n    \"turn-down-left\",\n    \"turn-down-right\",\n    \"turn-down\",\n    \"turn-left-down\",\n    \"turn-left-up\",\n    \"turn-left\",\n    \"turn-right\",\n    \"turn-up\",\n    \"turntable\",\n    \"turtle\",\n    \"tv-music\",\n    \"tv-retro\",\n    \"tv\",\n    \"typewriter\",\n    \"u\",\n    \"ufo-beam\",\n    \"ufo\",\n    \"umbrella-beach\",\n    \"umbrella-simple\",\n    \"umbrella\",\n    \"underline\",\n    \"unicorn\",\n    \"uniform-martial-arts\",\n    \"union\",\n    \"universal-access\",\n    \"unlock-keyhole\",\n    \"unlock\",\n    \"up-down-left-right\",\n    \"up-down\",\n    \"up-from-bracket\",\n    \"up-from-dotted-line\",\n    \"up-from-line\",\n    \"up-left\",\n    \"up-long\",\n    \"up-right-and-down-left-from-center\",\n    \"up-right-from-square\",\n    \"up-right\",\n    \"up-to-bracket\",\n    \"up-to-dotted-line\",\n    \"up-to-line\",\n    \"up\",\n    \"upload\",\n    \"usb-drive\",\n    \"user-alien\",\n    \"user-astronaut\",\n    \"user-beard-bolt\",\n    \"user-bounty-hunter\",\n    \"user-check\",\n    \"user-chef\",\n    \"user-clock\",\n    \"user-cowboy\",\n    \"user-crown\",\n    \"user-doctor-hair-long\",\n    \"user-doctor-hair\",\n    \"user-doctor-message\",\n    \"user-doctor\",\n    \"user-gear\",\n    \"user-graduate\",\n    \"user-group-crown\",\n    \"user-group-simple\",\n    \"user-group\",\n    \"user-hair-buns\",\n    \"user-hair-long\",\n    \"user-hair-mullet\",\n    \"user-hair\",\n    \"user-headset\",\n    \"user-helmet-safety\",\n    \"user-hoodie\",\n    \"user-injured\",\n    \"user-large-slash\",\n    \"user-large\",\n    \"user-lock\",\n    \"user-magnifying-glass\",\n    \"user-minus\",\n    \"user-music\",\n    \"user-ninja\",\n    \"user-nurse-hair-long\",\n    \"user-nurse-hair\",\n    \"user-nurse\",\n    \"user-pen\",\n    \"user-pilot-tie\",\n    \"user-pilot\",\n    \"user-plus\",\n    \"user-police-tie\",\n    \"user-police\",\n    \"user-robot-xmarks\",\n    \"user-robot\",\n    \"user-secret\",\n    \"user-shakespeare\",\n    \"user-shield\",\n    \"user-slash\",\n    \"user-tag\",\n    \"user-tie-hair-long\",\n    \"user-tie-hair\",\n    \"user-tie\",\n    \"user-unlock\",\n    \"user-visor\",\n    \"user-vneck-hair-long\",\n    \"user-vneck-hair\",\n    \"user-vneck\",\n    \"user-xmark\",\n    \"user\",\n    \"users-between-lines\",\n    \"users-gear\",\n    \"users-line\",\n    \"users-medical\",\n    \"users-rays\",\n    \"users-rectangle\",\n    \"users-slash\",\n    \"users-viewfinder\",\n    \"users\",\n    \"utensils-slash\",\n    \"utensils\",\n    \"utility-pole-double\",\n    \"utility-pole\",\n    \"v\",\n    \"vacuum-robot\",\n    \"vacuum\",\n    \"value-absolute\",\n    \"van-shuttle\",\n    \"vault\",\n    \"vector-circle\",\n    \"vector-polygon\",\n    \"vector-square\",\n    \"vent-damper\",\n    \"venus-double\",\n    \"venus-mars\",\n    \"venus\",\n    \"vest-patches\",\n    \"vest\",\n    \"vial-circle-check\",\n    \"vial-virus\",\n    \"vial\",\n    \"vials\",\n    \"video-arrow-down-left\",\n    \"video-arrow-up-right\",\n    \"video-plus\",\n    \"video-slash\",\n    \"video\",\n    \"vihara\",\n    \"violin\",\n    \"virus-covid-slash\",\n    \"virus-covid\",\n    \"virus-slash\",\n    \"virus\",\n    \"viruses\",\n    \"voicemail\",\n    \"volcano\",\n    \"volleyball\",\n    \"volume-high\",\n    \"volume-low\",\n    \"volume-off\",\n    \"volume-slash\",\n    \"volume-xmark\",\n    \"volume\",\n    \"vr-cardboard\",\n    \"w\",\n    \"waffle\",\n    \"wagon-covered\",\n    \"walker\",\n    \"walkie-talkie\",\n    \"wallet\",\n    \"wand-magic-sparkles\",\n    \"wand-magic\",\n    \"wand-sparkles\",\n    \"wand\",\n    \"warehouse-full\",\n    \"warehouse\",\n    \"washing-machine\",\n    \"watch-apple\",\n    \"watch-calculator\",\n    \"watch-fitness\",\n    \"watch-smart\",\n    \"watch\",\n    \"water-arrow-down\",\n    \"water-arrow-up\",\n    \"water-ladder\",\n    \"water\",\n    \"watermelon-slice\",\n    \"wave-pulse\",\n    \"wave-sine\",\n    \"wave-square\",\n    \"wave-triangle\",\n    \"wave\",\n    \"waveform-lines\",\n    \"waveform\",\n    \"waves-sine\",\n    \"web-awesome\",\n    \"webhook\",\n    \"weight-hanging\",\n    \"weight-scale\",\n    \"whale\",\n    \"wheat-awn-circle-exclamation\",\n    \"wheat-awn-slash\",\n    \"wheat-awn\",\n    \"wheat-slash\",\n    \"wheat\",\n    \"wheelchair-move\",\n    \"wheelchair\",\n    \"whiskey-glass-ice\",\n    \"whiskey-glass\",\n    \"whistle\",\n    \"wifi-exclamation\",\n    \"wifi-fair\",\n    \"wifi-slash\",\n    \"wifi-weak\",\n    \"wifi\",\n    \"wind-turbine\",\n    \"wind-warning\",\n    \"wind\",\n    \"window-flip\",\n    \"window-frame-open\",\n    \"window-frame\",\n    \"window-maximize\",\n    \"window-minimize\",\n    \"window-restore\",\n    \"window\",\n    \"windsock\",\n    \"wine-bottle\",\n    \"wine-glass-crack\",\n    \"wine-glass-empty\",\n    \"wine-glass\",\n    \"won-sign\",\n    \"worm\",\n    \"wreath-laurel\",\n    \"wreath\",\n    \"wrench-simple\",\n    \"wrench\",\n    \"x-ray\",\n    \"x\",\n    \"xmark-large\",\n    \"xmark-to-slot\",\n    \"xmark\",\n    \"xmarks-lines\",\n    \"y\",\n    \"yen-sign\",\n    \"yin-yang\",\n    \"z\"\n  ],\n  \"sharp-duotone-thin\": [\n    \"0\",\n    \"00\",\n    \"1\",\n    \"2\",\n    \"3\",\n    \"360-degrees\",\n    \"4\",\n    \"5\",\n    \"6\",\n    \"7\",\n    \"8\",\n    \"9\",\n    \"a\",\n    \"abacus\",\n    \"accent-grave\",\n    \"acorn\",\n    \"address-book\",\n    \"address-card\",\n    \"air-conditioner\",\n    \"airplay\",\n    \"alarm-clock\",\n    \"alarm-exclamation\",\n    \"alarm-plus\",\n    \"alarm-snooze\",\n    \"album-circle-plus\",\n    \"album-circle-user\",\n    \"album-collection-circle-plus\",\n    \"album-collection-circle-user\",\n    \"album-collection\",\n    \"album\",\n    \"alicorn\",\n    \"alien-8bit\",\n    \"alien\",\n    \"align-center\",\n    \"align-justify\",\n    \"align-left\",\n    \"align-right\",\n    \"align-slash\",\n    \"alt\",\n    \"amp-guitar\",\n    \"ampersand\",\n    \"anchor-circle-check\",\n    \"anchor-circle-exclamation\",\n    \"anchor-circle-xmark\",\n    \"anchor-lock\",\n    \"anchor\",\n    \"angel\",\n    \"angle-90\",\n    \"angle-down\",\n    \"angle-left\",\n    \"angle-right\",\n    \"angle-up\",\n    \"angle\",\n    \"angles-down\",\n    \"angles-left\",\n    \"angles-right\",\n    \"angles-up-down\",\n    \"angles-up\",\n    \"ankh\",\n    \"ant\",\n    \"apartment\",\n    \"aperture\",\n    \"apostrophe\",\n    \"apple-core\",\n    \"apple-whole\",\n    \"archway\",\n    \"arrow-down-1-9\",\n    \"arrow-down-9-1\",\n    \"arrow-down-a-z\",\n    \"arrow-down-arrow-up\",\n    \"arrow-down-big-small\",\n    \"arrow-down-from-arc\",\n    \"arrow-down-from-bracket\",\n    \"arrow-down-from-dotted-line\",\n    \"arrow-down-from-line\",\n    \"arrow-down-left-and-arrow-up-right-to-center\",\n    \"arrow-down-left\",\n    \"arrow-down-long\",\n    \"arrow-down-right\",\n    \"arrow-down-short-wide\",\n    \"arrow-down-small-big\",\n    \"arrow-down-square-triangle\",\n    \"arrow-down-to-arc\",\n    \"arrow-down-to-bracket\",\n    \"arrow-down-to-dotted-line\",\n    \"arrow-down-to-line\",\n    \"arrow-down-to-square\",\n    \"arrow-down-triangle-square\",\n    \"arrow-down-up-across-line\",\n    \"arrow-down-up-lock\",\n    \"arrow-down-wide-short\",\n    \"arrow-down-z-a\",\n    \"arrow-down\",\n    \"arrow-left-from-arc\",\n    \"arrow-left-from-bracket\",\n    \"arrow-left-from-line\",\n    \"arrow-left-long-to-line\",\n    \"arrow-left-long\",\n    \"arrow-left-to-arc\",\n    \"arrow-left-to-bracket\",\n    \"arrow-left-to-line\",\n    \"arrow-left\",\n    \"arrow-pointer\",\n    \"arrow-progress\",\n    \"arrow-right-arrow-left\",\n    \"arrow-right-from-arc\",\n    \"arrow-right-from-bracket\",\n    \"arrow-right-from-line\",\n    \"arrow-right-long-to-line\",\n    \"arrow-right-long\",\n    \"arrow-right-to-arc\",\n    \"arrow-right-to-bracket\",\n    \"arrow-right-to-city\",\n    \"arrow-right-to-line\",\n    \"arrow-right\",\n    \"arrow-rotate-left\",\n    \"arrow-rotate-right\",\n    \"arrow-trend-down\",\n    \"arrow-trend-up\",\n    \"arrow-turn-down-left\",\n    \"arrow-turn-down-right\",\n    \"arrow-turn-down\",\n    \"arrow-turn-left-down\",\n    \"arrow-turn-left-up\",\n    \"arrow-turn-left\",\n    \"arrow-turn-right\",\n    \"arrow-turn-up\",\n    \"arrow-up-1-9\",\n    \"arrow-up-9-1\",\n    \"arrow-up-a-z\",\n    \"arrow-up-arrow-down\",\n    \"arrow-up-big-small\",\n    \"arrow-up-from-arc\",\n    \"arrow-up-from-bracket\",\n    \"arrow-up-from-dotted-line\",\n    \"arrow-up-from-ground-water\",\n    \"arrow-up-from-line\",\n    \"arrow-up-from-square\",\n    \"arrow-up-from-water-pump\",\n    \"arrow-up-left-from-circle\",\n    \"arrow-up-left\",\n    \"arrow-up-long\",\n    \"arrow-up-right-and-arrow-down-left-from-center\",\n    \"arrow-up-right-dots\",\n    \"arrow-up-right-from-square\",\n    \"arrow-up-right\",\n    \"arrow-up-short-wide\",\n    \"arrow-up-small-big\",\n    \"arrow-up-square-triangle\",\n    \"arrow-up-to-arc\",\n    \"arrow-up-to-bracket\",\n    \"arrow-up-to-dotted-line\",\n    \"arrow-up-to-line\",\n    \"arrow-up-triangle-square\",\n    \"arrow-up-wide-short\",\n    \"arrow-up-z-a\",\n    \"arrow-up\",\n    \"arrows-cross\",\n    \"arrows-down-to-line\",\n    \"arrows-down-to-people\",\n    \"arrows-from-dotted-line\",\n    \"arrows-from-line\",\n    \"arrows-left-right-to-line\",\n    \"arrows-left-right\",\n    \"arrows-maximize\",\n    \"arrows-minimize\",\n    \"arrows-repeat-1\",\n    \"arrows-repeat\",\n    \"arrows-retweet\",\n    \"arrows-rotate-reverse\",\n    \"arrows-rotate\",\n    \"arrows-spin\",\n    \"arrows-split-up-and-left\",\n    \"arrows-to-circle\",\n    \"arrows-to-dot\",\n    \"arrows-to-dotted-line\",\n    \"arrows-to-eye\",\n    \"arrows-to-line\",\n    \"arrows-turn-right\",\n    \"arrows-turn-to-dots\",\n    \"arrows-up-down-left-right\",\n    \"arrows-up-down\",\n    \"arrows-up-to-line\",\n    \"asterisk\",\n    \"at\",\n    \"atom-simple\",\n    \"atom\",\n    \"audio-description-slash\",\n    \"audio-description\",\n    \"austral-sign\",\n    \"avocado\",\n    \"award-simple\",\n    \"award\",\n    \"axe-battle\",\n    \"axe\",\n    \"b\",\n    \"baby-carriage\",\n    \"baby\",\n    \"backpack\",\n    \"backward-fast\",\n    \"backward-step\",\n    \"backward\",\n    \"bacon\",\n    \"bacteria\",\n    \"bacterium\",\n    \"badge-check\",\n    \"badge-dollar\",\n    \"badge-percent\",\n    \"badge-sheriff\",\n    \"badge\",\n    \"badger-honey\",\n    \"badminton\",\n    \"bag-seedling\",\n    \"bag-shopping-minus\",\n    \"bag-shopping-plus\",\n    \"bag-shopping\",\n    \"bagel\",\n    \"bags-shopping\",\n    \"baguette\",\n    \"bahai\",\n    \"baht-sign\",\n    \"ball-pile\",\n    \"balloon\",\n    \"balloons\",\n    \"ballot-check\",\n    \"ballot\",\n    \"ban-bug\",\n    \"ban-parking\",\n    \"ban-smoking\",\n    \"ban\",\n    \"banana\",\n    \"bandage\",\n    \"bangladeshi-taka-sign\",\n    \"banjo\",\n    \"barcode-read\",\n    \"barcode-scan\",\n    \"barcode\",\n    \"bars-filter\",\n    \"bars-progress\",\n    \"bars-sort\",\n    \"bars-staggered\",\n    \"bars\",\n    \"baseball-bat-ball\",\n    \"baseball\",\n    \"basket-shopping-minus\",\n    \"basket-shopping-plus\",\n    \"basket-shopping-simple\",\n    \"basket-shopping\",\n    \"basketball-hoop\",\n    \"basketball\",\n    \"bat\",\n    \"bath\",\n    \"battery-bolt\",\n    \"battery-empty\",\n    \"battery-exclamation\",\n    \"battery-full\",\n    \"battery-half\",\n    \"battery-low\",\n    \"battery-quarter\",\n    \"battery-slash\",\n    \"battery-three-quarters\",\n    \"bed-bunk\",\n    \"bed-empty\",\n    \"bed-front\",\n    \"bed-pulse\",\n    \"bed\",\n    \"bee\",\n    \"beer-mug-empty\",\n    \"beer-mug\",\n    \"bell-concierge\",\n    \"bell-exclamation\",\n    \"bell-on\",\n    \"bell-plus\",\n    \"bell-ring\",\n    \"bell-school-slash\",\n    \"bell-school\",\n    \"bell-slash\",\n    \"bell\",\n    \"bells\",\n    \"bench-tree\",\n    \"bezier-curve\",\n    \"bicycle\",\n    \"billboard\",\n    \"bin-bottles-recycle\",\n    \"bin-bottles\",\n    \"bin-recycle\",\n    \"binary-circle-check\",\n    \"binary-lock\",\n    \"binary-slash\",\n    \"binary\",\n    \"binoculars\",\n    \"biohazard\",\n    \"bird\",\n    \"bitcoin-sign\",\n    \"blanket-fire\",\n    \"blanket\",\n    \"blender-phone\",\n    \"blender\",\n    \"blinds-open\",\n    \"blinds-raised\",\n    \"blinds\",\n    \"block-brick-fire\",\n    \"block-brick\",\n    \"block-question\",\n    \"block-quote\",\n    \"block\",\n    \"blog\",\n    \"blueberries\",\n    \"bluetooth\",\n    \"bold\",\n    \"bolt-auto\",\n    \"bolt-lightning\",\n    \"bolt-slash\",\n    \"bolt\",\n    \"bomb\",\n    \"bone-break\",\n    \"bone\",\n    \"bong\",\n    \"book-arrow-right\",\n    \"book-arrow-up\",\n    \"book-atlas\",\n    \"book-bible\",\n    \"book-blank\",\n    \"book-bookmark\",\n    \"book-circle-arrow-right\",\n    \"book-circle-arrow-up\",\n    \"book-copy\",\n    \"book-font\",\n    \"book-heart\",\n    \"book-journal-whills\",\n    \"book-medical\",\n    \"book-open-cover\",\n    \"book-open-reader\",\n    \"book-open\",\n    \"book-quran\",\n    \"book-section\",\n    \"book-skull\",\n    \"book-sparkles\",\n    \"book-tanakh\",\n    \"book-user\",\n    \"book\",\n    \"bookmark-slash\",\n    \"bookmark\",\n    \"books-medical\",\n    \"books\",\n    \"boombox\",\n    \"boot-heeled\",\n    \"boot\",\n    \"booth-curtain\",\n    \"border-all\",\n    \"border-bottom-right\",\n    \"border-bottom\",\n    \"border-center-h\",\n    \"border-center-v\",\n    \"border-inner\",\n    \"border-left\",\n    \"border-none\",\n    \"border-outer\",\n    \"border-right\",\n    \"border-top-left\",\n    \"border-top\",\n    \"bore-hole\",\n    \"bottle-baby\",\n    \"bottle-droplet\",\n    \"bottle-water\",\n    \"bow-arrow\",\n    \"bowl-chopsticks-noodles\",\n    \"bowl-chopsticks\",\n    \"bowl-food\",\n    \"bowl-hot\",\n    \"bowl-rice\",\n    \"bowl-scoop\",\n    \"bowl-scoops\",\n    \"bowl-soft-serve\",\n    \"bowl-spoon\",\n    \"bowling-ball-pin\",\n    \"bowling-ball\",\n    \"bowling-pins\",\n    \"box-archive\",\n    \"box-ballot\",\n    \"box-check\",\n    \"box-circle-check\",\n    \"box-dollar\",\n    \"box-heart\",\n    \"box-open-full\",\n    \"box-open\",\n    \"box-taped\",\n    \"box-tissue\",\n    \"box\",\n    \"boxes-packing\",\n    \"boxes-stacked\",\n    \"boxing-glove\",\n    \"bracket-curly-right\",\n    \"bracket-curly\",\n    \"bracket-round-right\",\n    \"bracket-round\",\n    \"bracket-square-right\",\n    \"bracket-square\",\n    \"brackets-curly\",\n    \"brackets-round\",\n    \"brackets-square\",\n    \"braille\",\n    \"brain-arrow-curved-right\",\n    \"brain-circuit\",\n    \"brain\",\n    \"brake-warning\",\n    \"brazilian-real-sign\",\n    \"bread-loaf\",\n    \"bread-slice-butter\",\n    \"bread-slice\",\n    \"bridge-circle-check\",\n    \"bridge-circle-exclamation\",\n    \"bridge-circle-xmark\",\n    \"bridge-lock\",\n    \"bridge-suspension\",\n    \"bridge-water\",\n    \"bridge\",\n    \"briefcase-arrow-right\",\n    \"briefcase-blank\",\n    \"briefcase-medical\",\n    \"briefcase\",\n    \"brightness-low\",\n    \"brightness\",\n    \"bring-forward\",\n    \"bring-front\",\n    \"broccoli\",\n    \"broom-ball\",\n    \"broom-wide\",\n    \"broom\",\n    \"browser\",\n    \"browsers\",\n    \"brush\",\n    \"bucket\",\n    \"bug-slash\",\n    \"bug\",\n    \"bugs\",\n    \"building-circle-arrow-right\",\n    \"building-circle-check\",\n    \"building-circle-exclamation\",\n    \"building-circle-xmark\",\n    \"building-columns\",\n    \"building-flag\",\n    \"building-lock\",\n    \"building-magnifying-glass\",\n    \"building-memo\",\n    \"building-ngo\",\n    \"building-shield\",\n    \"building-un\",\n    \"building-user\",\n    \"building-wheat\",\n    \"building\",\n    \"buildings\",\n    \"bulldozer\",\n    \"bullhorn\",\n    \"bullseye-arrow\",\n    \"bullseye-pointer\",\n    \"bullseye\",\n    \"buoy-mooring\",\n    \"buoy\",\n    \"burger-cheese\",\n    \"burger-fries\",\n    \"burger-glass\",\n    \"burger-lettuce\",\n    \"burger-soda\",\n    \"burger\",\n    \"burrito\",\n    \"burst\",\n    \"bus-school\",\n    \"bus-simple\",\n    \"bus\",\n    \"business-time\",\n    \"butter\",\n    \"c\",\n    \"cabin\",\n    \"cabinet-filing\",\n    \"cable-car\",\n    \"cactus\",\n    \"caduceus\",\n    \"cake-candles\",\n    \"cake-slice\",\n    \"calculator-simple\",\n    \"calculator\",\n    \"calendar-arrow-down\",\n    \"calendar-arrow-up\",\n    \"calendar-check\",\n    \"calendar-circle-exclamation\",\n    \"calendar-circle-minus\",\n    \"calendar-circle-plus\",\n    \"calendar-circle-user\",\n    \"calendar-clock\",\n    \"calendar-day\",\n    \"calendar-days\",\n    \"calendar-exclamation\",\n    \"calendar-heart\",\n    \"calendar-image\",\n    \"calendar-lines-pen\",\n    \"calendar-lines\",\n    \"calendar-minus\",\n    \"calendar-pen\",\n    \"calendar-plus\",\n    \"calendar-range\",\n    \"calendar-star\",\n    \"calendar-users\",\n    \"calendar-week\",\n    \"calendar-xmark\",\n    \"calendar\",\n    \"calendars\",\n    \"camcorder\",\n    \"camera-cctv\",\n    \"camera-movie\",\n    \"camera-polaroid\",\n    \"camera-retro\",\n    \"camera-rotate\",\n    \"camera-security\",\n    \"camera-slash\",\n    \"camera-viewfinder\",\n    \"camera-web-slash\",\n    \"camera-web\",\n    \"camera\",\n    \"campfire\",\n    \"campground\",\n    \"can-food\",\n    \"candle-holder\",\n    \"candy-bar\",\n    \"candy-cane\",\n    \"candy-corn\",\n    \"candy\",\n    \"cannabis\",\n    \"cannon\",\n    \"capsules\",\n    \"car-battery\",\n    \"car-bolt\",\n    \"car-building\",\n    \"car-bump\",\n    \"car-burst\",\n    \"car-bus\",\n    \"car-circle-bolt\",\n    \"car-garage\",\n    \"car-mirrors\",\n    \"car-on\",\n    \"car-rear\",\n    \"car-side-bolt\",\n    \"car-side\",\n    \"car-tilt\",\n    \"car-tunnel\",\n    \"car-wash\",\n    \"car-wrench\",\n    \"car\",\n    \"caravan-simple\",\n    \"caravan\",\n    \"card-club\",\n    \"card-diamond\",\n    \"card-heart\",\n    \"card-spade\",\n    \"cards-blank\",\n    \"cards\",\n    \"caret-down\",\n    \"caret-left\",\n    \"caret-right\",\n    \"caret-up\",\n    \"carpool\",\n    \"carrot\",\n    \"cars\",\n    \"cart-arrow-down\",\n    \"cart-arrow-up\",\n    \"cart-circle-arrow-down\",\n    \"cart-circle-arrow-up\",\n    \"cart-circle-check\",\n    \"cart-circle-exclamation\",\n    \"cart-circle-plus\",\n    \"cart-circle-xmark\",\n    \"cart-flatbed-boxes\",\n    \"cart-flatbed-empty\",\n    \"cart-flatbed-suitcase\",\n    \"cart-flatbed\",\n    \"cart-minus\",\n    \"cart-plus\",\n    \"cart-shopping-fast\",\n    \"cart-shopping\",\n    \"cart-xmark\",\n    \"cash-register\",\n    \"cassette-betamax\",\n    \"cassette-tape\",\n    \"cassette-vhs\",\n    \"castle\",\n    \"cat-space\",\n    \"cat\",\n    \"cauldron\",\n    \"cedi-sign\",\n    \"cent-sign\",\n    \"certificate\",\n    \"chair-office\",\n    \"chair\",\n    \"chalkboard-user\",\n    \"chalkboard\",\n    \"champagne-glass\",\n    \"champagne-glasses\",\n    \"charging-station\",\n    \"chart-area\",\n    \"chart-bar\",\n    \"chart-bullet\",\n    \"chart-candlestick\",\n    \"chart-column\",\n    \"chart-diagram\",\n    \"chart-fft\",\n    \"chart-gantt\",\n    \"chart-kanban\",\n    \"chart-line-down\",\n    \"chart-line-up-down\",\n    \"chart-line-up\",\n    \"chart-line\",\n    \"chart-mixed-up-circle-currency\",\n    \"chart-mixed-up-circle-dollar\",\n    \"chart-mixed\",\n    \"chart-network\",\n    \"chart-pie-simple-circle-currency\",\n    \"chart-pie-simple-circle-dollar\",\n    \"chart-pie-simple\",\n    \"chart-pie\",\n    \"chart-pyramid\",\n    \"chart-radar\",\n    \"chart-scatter-3d\",\n    \"chart-scatter-bubble\",\n    \"chart-scatter\",\n    \"chart-simple-horizontal\",\n    \"chart-simple\",\n    \"chart-sine\",\n    \"chart-tree-map\",\n    \"chart-user\",\n    \"chart-waterfall\",\n    \"check-double\",\n    \"check-to-slot\",\n    \"check\",\n    \"cheese-swiss\",\n    \"cheese\",\n    \"cherries\",\n    \"chess-bishop-piece\",\n    \"chess-bishop\",\n    \"chess-board\",\n    \"chess-clock-flip\",\n    \"chess-clock\",\n    \"chess-king-piece\",\n    \"chess-king\",\n    \"chess-knight-piece\",\n    \"chess-knight\",\n    \"chess-pawn-piece\",\n    \"chess-pawn\",\n    \"chess-queen-piece\",\n    \"chess-queen\",\n    \"chess-rook-piece\",\n    \"chess-rook\",\n    \"chess\",\n    \"chestnut\",\n    \"chevron-down\",\n    \"chevron-left\",\n    \"chevron-right\",\n    \"chevron-up\",\n    \"chevrons-down\",\n    \"chevrons-left\",\n    \"chevrons-right\",\n    \"chevrons-up\",\n    \"chf-sign\",\n    \"child-combatant\",\n    \"child-dress\",\n    \"child-reaching\",\n    \"child\",\n    \"children\",\n    \"chimney\",\n    \"chopsticks\",\n    \"church\",\n    \"circle-0\",\n    \"circle-1\",\n    \"circle-2\",\n    \"circle-3\",\n    \"circle-4\",\n    \"circle-5\",\n    \"circle-6\",\n    \"circle-7\",\n    \"circle-8\",\n    \"circle-9\",\n    \"circle-a\",\n    \"circle-ampersand\",\n    \"circle-arrow-down-left\",\n    \"circle-arrow-down-right\",\n    \"circle-arrow-down\",\n    \"circle-arrow-left\",\n    \"circle-arrow-right\",\n    \"circle-arrow-up-left\",\n    \"circle-arrow-up-right\",\n    \"circle-arrow-up\",\n    \"circle-b\",\n    \"circle-bolt\",\n    \"circle-book-open\",\n    \"circle-bookmark\",\n    \"circle-c\",\n    \"circle-calendar\",\n    \"circle-camera\",\n    \"circle-caret-down\",\n    \"circle-caret-left\",\n    \"circle-caret-right\",\n    \"circle-caret-up\",\n    \"circle-check\",\n    \"circle-chevron-down\",\n    \"circle-chevron-left\",\n    \"circle-chevron-right\",\n    \"circle-chevron-up\",\n    \"circle-d\",\n    \"circle-dashed\",\n    \"circle-divide\",\n    \"circle-dollar-to-slot\",\n    \"circle-dollar\",\n    \"circle-dot\",\n    \"circle-down-left\",\n    \"circle-down-right\",\n    \"circle-down\",\n    \"circle-e\",\n    \"circle-ellipsis-vertical\",\n    \"circle-ellipsis\",\n    \"circle-envelope\",\n    \"circle-euro\",\n    \"circle-exclamation-check\",\n    \"circle-exclamation\",\n    \"circle-f\",\n    \"circle-g\",\n    \"circle-gf\",\n    \"circle-h\",\n    \"circle-half-stroke\",\n    \"circle-half\",\n    \"circle-heart\",\n    \"circle-i\",\n    \"circle-info\",\n    \"circle-j\",\n    \"circle-k\",\n    \"circle-l\",\n    \"circle-left\",\n    \"circle-location-arrow\",\n    \"circle-m\",\n    \"circle-microphone-lines\",\n    \"circle-microphone\",\n    \"circle-minus\",\n    \"circle-n\",\n    \"circle-nodes\",\n    \"circle-notch\",\n    \"circle-o\",\n    \"circle-p\",\n    \"circle-parking\",\n    \"circle-pause\",\n    \"circle-phone-flip\",\n    \"circle-phone-hangup\",\n    \"circle-phone\",\n    \"circle-play\",\n    \"circle-plus\",\n    \"circle-q\",\n    \"circle-quarter-stroke\",\n    \"circle-quarter\",\n    \"circle-quarters\",\n    \"circle-question\",\n    \"circle-r\",\n    \"circle-radiation\",\n    \"circle-right\",\n    \"circle-s\",\n    \"circle-small\",\n    \"circle-sort-down\",\n    \"circle-sort-up\",\n    \"circle-sort\",\n    \"circle-star\",\n    \"circle-sterling\",\n    \"circle-stop\",\n    \"circle-t\",\n    \"circle-three-quarters-stroke\",\n    \"circle-three-quarters\",\n    \"circle-trash\",\n    \"circle-u\",\n    \"circle-up-left\",\n    \"circle-up-right\",\n    \"circle-up\",\n    \"circle-user\",\n    \"circle-v\",\n    \"circle-video\",\n    \"circle-w\",\n    \"circle-waveform-lines\",\n    \"circle-wifi-circle-wifi\",\n    \"circle-wifi\",\n    \"circle-x\",\n    \"circle-xmark\",\n    \"circle-y\",\n    \"circle-yen\",\n    \"circle-z\",\n    \"circle\",\n    \"circles-overlap-3\",\n    \"circles-overlap\",\n    \"citrus-slice\",\n    \"citrus\",\n    \"city\",\n    \"clapperboard-play\",\n    \"clapperboard\",\n    \"clarinet\",\n    \"claw-marks\",\n    \"clipboard-check\",\n    \"clipboard-list-check\",\n    \"clipboard-list\",\n    \"clipboard-medical\",\n    \"clipboard-prescription\",\n    \"clipboard-question\",\n    \"clipboard-user\",\n    \"clipboard\",\n    \"clock-desk\",\n    \"clock-eight-thirty\",\n    \"clock-eight\",\n    \"clock-eleven-thirty\",\n    \"clock-eleven\",\n    \"clock-five-thirty\",\n    \"clock-five\",\n    \"clock-four-thirty\",\n    \"clock-nine-thirty\",\n    \"clock-nine\",\n    \"clock-one-thirty\",\n    \"clock-one\",\n    \"clock-rotate-left\",\n    \"clock-seven-thirty\",\n    \"clock-seven\",\n    \"clock-six-thirty\",\n    \"clock-six\",\n    \"clock-ten-thirty\",\n    \"clock-ten\",\n    \"clock-three-thirty\",\n    \"clock-three\",\n    \"clock-twelve-thirty\",\n    \"clock-twelve\",\n    \"clock-two-thirty\",\n    \"clock-two\",\n    \"clock\",\n    \"clone\",\n    \"closed-captioning-slash\",\n    \"closed-captioning\",\n    \"clothes-hanger\",\n    \"cloud-arrow-down\",\n    \"cloud-arrow-up\",\n    \"cloud-binary\",\n    \"cloud-bolt-moon\",\n    \"cloud-bolt-sun\",\n    \"cloud-bolt\",\n    \"cloud-check\",\n    \"cloud-drizzle\",\n    \"cloud-exclamation\",\n    \"cloud-fog\",\n    \"cloud-hail-mixed\",\n    \"cloud-hail\",\n    \"cloud-meatball\",\n    \"cloud-minus\",\n    \"cloud-moon-rain\",\n    \"cloud-moon\",\n    \"cloud-music\",\n    \"cloud-plus\",\n    \"cloud-question\",\n    \"cloud-rain\",\n    \"cloud-rainbow\",\n    \"cloud-showers-heavy\",\n    \"cloud-showers-water\",\n    \"cloud-showers\",\n    \"cloud-slash\",\n    \"cloud-sleet\",\n    \"cloud-snow\",\n    \"cloud-sun-rain\",\n    \"cloud-sun\",\n    \"cloud-word\",\n    \"cloud-xmark\",\n    \"cloud\",\n    \"clouds-moon\",\n    \"clouds-sun\",\n    \"clouds\",\n    \"clover\",\n    \"club\",\n    \"coconut\",\n    \"code-branch\",\n    \"code-commit\",\n    \"code-compare\",\n    \"code-fork\",\n    \"code-merge\",\n    \"code-pull-request-closed\",\n    \"code-pull-request-draft\",\n    \"code-pull-request\",\n    \"code-simple\",\n    \"code\",\n    \"coffee-bean\",\n    \"coffee-beans\",\n    \"coffee-pot\",\n    \"coffin-cross\",\n    \"coffin\",\n    \"coin-blank\",\n    \"coin-front\",\n    \"coin-vertical\",\n    \"coin\",\n    \"coins\",\n    \"colon-sign\",\n    \"colon\",\n    \"columns-3\",\n    \"comet\",\n    \"comma\",\n    \"command\",\n    \"comment-arrow-down\",\n    \"comment-arrow-up-right\",\n    \"comment-arrow-up\",\n    \"comment-captions\",\n    \"comment-check\",\n    \"comment-code\",\n    \"comment-dollar\",\n    \"comment-dots\",\n    \"comment-exclamation\",\n    \"comment-heart\",\n    \"comment-image\",\n    \"comment-lines\",\n    \"comment-medical\",\n    \"comment-middle-top\",\n    \"comment-middle\",\n    \"comment-minus\",\n    \"comment-music\",\n    \"comment-nodes\",\n    \"comment-pen\",\n    \"comment-plus\",\n    \"comment-question\",\n    \"comment-quote\",\n    \"comment-slash\",\n    \"comment-smile\",\n    \"comment-sms\",\n    \"comment-text\",\n    \"comment-xmark\",\n    \"comment\",\n    \"comments-dollar\",\n    \"comments-question-check\",\n    \"comments-question\",\n    \"comments\",\n    \"compact-disc\",\n    \"compass-drafting\",\n    \"compass-slash\",\n    \"compass\",\n    \"compress-wide\",\n    \"compress\",\n    \"computer-classic\",\n    \"computer-mouse-scrollwheel\",\n    \"computer-mouse\",\n    \"computer-speaker\",\n    \"computer\",\n    \"container-storage\",\n    \"conveyor-belt-arm\",\n    \"conveyor-belt-boxes\",\n    \"conveyor-belt-empty\",\n    \"conveyor-belt\",\n    \"cookie-bite\",\n    \"cookie\",\n    \"copy\",\n    \"copyright\",\n    \"corn\",\n    \"corner\",\n    \"couch\",\n    \"court-sport\",\n    \"cow\",\n    \"cowbell-circle-plus\",\n    \"cowbell\",\n    \"crab\",\n    \"crate-apple\",\n    \"crate-empty\",\n    \"credit-card-blank\",\n    \"credit-card-front\",\n    \"credit-card\",\n    \"cricket-bat-ball\",\n    \"croissant\",\n    \"crop-simple\",\n    \"crop\",\n    \"cross\",\n    \"crosshairs-simple\",\n    \"crosshairs\",\n    \"crow\",\n    \"crown\",\n    \"crutch\",\n    \"crutches\",\n    \"cruzeiro-sign\",\n    \"crystal-ball\",\n    \"cube\",\n    \"cubes-stacked\",\n    \"cubes\",\n    \"cucumber\",\n    \"cup-straw-swoosh\",\n    \"cup-straw\",\n    \"cup-togo\",\n    \"cupcake\",\n    \"curling-stone\",\n    \"custard\",\n    \"d\",\n    \"dagger\",\n    \"dash\",\n    \"database\",\n    \"deer-rudolph\",\n    \"deer\",\n    \"delete-left\",\n    \"delete-right\",\n    \"democrat\",\n    \"desktop-arrow-down\",\n    \"desktop\",\n    \"dharmachakra\",\n    \"diagram-cells\",\n    \"diagram-lean-canvas\",\n    \"diagram-nested\",\n    \"diagram-next\",\n    \"diagram-predecessor\",\n    \"diagram-previous\",\n    \"diagram-project\",\n    \"diagram-sankey\",\n    \"diagram-subtask\",\n    \"diagram-successor\",\n    \"diagram-venn\",\n    \"dial-high\",\n    \"dial-low\",\n    \"dial-max\",\n    \"dial-med-low\",\n    \"dial-med\",\n    \"dial-min\",\n    \"dial-off\",\n    \"dial\",\n    \"diamond-exclamation\",\n    \"diamond-half-stroke\",\n    \"diamond-half\",\n    \"diamond-turn-right\",\n    \"diamond\",\n    \"diamonds-4\",\n    \"dice-d10\",\n    \"dice-d12\",\n    \"dice-d20\",\n    \"dice-d4\",\n    \"dice-d6\",\n    \"dice-d8\",\n    \"dice-five\",\n    \"dice-four\",\n    \"dice-one\",\n    \"dice-six\",\n    \"dice-three\",\n    \"dice-two\",\n    \"dice\",\n    \"dinosaur\",\n    \"diploma\",\n    \"disc-drive\",\n    \"disease\",\n    \"display-arrow-down\",\n    \"display-chart-up-circle-currency\",\n    \"display-chart-up-circle-dollar\",\n    \"display-chart-up\",\n    \"display-code\",\n    \"display-medical\",\n    \"display-slash\",\n    \"display\",\n    \"distribute-spacing-horizontal\",\n    \"distribute-spacing-vertical\",\n    \"ditto\",\n    \"divide\",\n    \"dna\",\n    \"do-not-enter\",\n    \"dog-leashed\",\n    \"dog\",\n    \"dollar-sign\",\n    \"dolly-empty\",\n    \"dolly\",\n    \"dolphin\",\n    \"dong-sign\",\n    \"donut\",\n    \"door-closed\",\n    \"door-open\",\n    \"dove\",\n    \"down-from-bracket\",\n    \"down-from-dotted-line\",\n    \"down-from-line\",\n    \"down-left-and-up-right-to-center\",\n    \"down-left\",\n    \"down-long\",\n    \"down-right\",\n    \"down-to-bracket\",\n    \"down-to-dotted-line\",\n    \"down-to-line\",\n    \"down\",\n    \"download\",\n    \"dragon\",\n    \"draw-circle\",\n    \"draw-polygon\",\n    \"draw-square\",\n    \"dreidel\",\n    \"drone-front\",\n    \"drone\",\n    \"droplet-degree\",\n    \"droplet-percent\",\n    \"droplet-slash\",\n    \"droplet\",\n    \"drum-steelpan\",\n    \"drum\",\n    \"drumstick-bite\",\n    \"drumstick\",\n    \"dryer-heat\",\n    \"dryer\",\n    \"duck\",\n    \"dumbbell\",\n    \"dumpster-fire\",\n    \"dumpster\",\n    \"dungeon\",\n    \"e\",\n    \"ear-deaf\",\n    \"ear-listen\",\n    \"ear-muffs\",\n    \"ear\",\n    \"earth-africa\",\n    \"earth-americas\",\n    \"earth-asia\",\n    \"earth-europe\",\n    \"earth-oceania\",\n    \"eclipse\",\n    \"egg-fried\",\n    \"egg\",\n    \"eggplant\",\n    \"eject\",\n    \"elephant\",\n    \"elevator\",\n    \"ellipsis-stroke-vertical\",\n    \"ellipsis-stroke\",\n    \"ellipsis-vertical\",\n    \"ellipsis\",\n    \"empty-set\",\n    \"engine-warning\",\n    \"engine\",\n    \"envelope-circle-check\",\n    \"envelope-dot\",\n    \"envelope-open-dollar\",\n    \"envelope-open-text\",\n    \"envelope-open\",\n    \"envelope\",\n    \"envelopes-bulk\",\n    \"envelopes\",\n    \"equals\",\n    \"eraser\",\n    \"escalator\",\n    \"ethernet\",\n    \"euro-sign\",\n    \"excavator\",\n    \"exclamation\",\n    \"expand-wide\",\n    \"expand\",\n    \"explosion\",\n    \"eye-dropper-full\",\n    \"eye-dropper-half\",\n    \"eye-dropper\",\n    \"eye-evil\",\n    \"eye-low-vision\",\n    \"eye-slash\",\n    \"eye\",\n    \"eyes\",\n    \"f\",\n    \"face-angry-horns\",\n    \"face-angry\",\n    \"face-anguished\",\n    \"face-anxious-sweat\",\n    \"face-astonished\",\n    \"face-awesome\",\n    \"face-beam-hand-over-mouth\",\n    \"face-clouds\",\n    \"face-confounded\",\n    \"face-confused\",\n    \"face-cowboy-hat\",\n    \"face-diagonal-mouth\",\n    \"face-disappointed\",\n    \"face-disguise\",\n    \"face-dizzy\",\n    \"face-dotted\",\n    \"face-downcast-sweat\",\n    \"face-drooling\",\n    \"face-exhaling\",\n    \"face-explode\",\n    \"face-expressionless\",\n    \"face-eyes-xmarks\",\n    \"face-fearful\",\n    \"face-flushed\",\n    \"face-frown-open\",\n    \"face-frown-slight\",\n    \"face-frown\",\n    \"face-glasses\",\n    \"face-grimace\",\n    \"face-grin-beam-sweat\",\n    \"face-grin-beam\",\n    \"face-grin-hearts\",\n    \"face-grin-squint-tears\",\n    \"face-grin-squint\",\n    \"face-grin-stars\",\n    \"face-grin-tears\",\n    \"face-grin-tongue-squint\",\n    \"face-grin-tongue-wink\",\n    \"face-grin-tongue\",\n    \"face-grin-wide\",\n    \"face-grin-wink\",\n    \"face-grin\",\n    \"face-hand-over-mouth\",\n    \"face-hand-peeking\",\n    \"face-hand-yawn\",\n    \"face-head-bandage\",\n    \"face-holding-back-tears\",\n    \"face-hushed\",\n    \"face-icicles\",\n    \"face-kiss-beam\",\n    \"face-kiss-closed-eyes\",\n    \"face-kiss-wink-heart\",\n    \"face-kiss\",\n    \"face-laugh-beam\",\n    \"face-laugh-squint\",\n    \"face-laugh-wink\",\n    \"face-laugh\",\n    \"face-lying\",\n    \"face-mask\",\n    \"face-meh-blank\",\n    \"face-meh\",\n    \"face-melting\",\n    \"face-monocle\",\n    \"face-nauseated\",\n    \"face-nose-steam\",\n    \"face-party\",\n    \"face-pensive\",\n    \"face-persevering\",\n    \"face-pleading\",\n    \"face-pouting\",\n    \"face-raised-eyebrow\",\n    \"face-relieved\",\n    \"face-rolling-eyes\",\n    \"face-sad-cry\",\n    \"face-sad-sweat\",\n    \"face-sad-tear\",\n    \"face-saluting\",\n    \"face-scream\",\n    \"face-shush\",\n    \"face-sleeping\",\n    \"face-sleepy\",\n    \"face-smile-beam\",\n    \"face-smile-halo\",\n    \"face-smile-hearts\",\n    \"face-smile-horns\",\n    \"face-smile-plus\",\n    \"face-smile-relaxed\",\n    \"face-smile-tear\",\n    \"face-smile-tongue\",\n    \"face-smile-upside-down\",\n    \"face-smile-wink\",\n    \"face-smile\",\n    \"face-smiling-hands\",\n    \"face-smirking\",\n    \"face-spiral-eyes\",\n    \"face-sunglasses\",\n    \"face-surprise\",\n    \"face-swear\",\n    \"face-thermometer\",\n    \"face-thinking\",\n    \"face-tired\",\n    \"face-tissue\",\n    \"face-tongue-money\",\n    \"face-tongue-sweat\",\n    \"face-unamused\",\n    \"face-viewfinder\",\n    \"face-vomit\",\n    \"face-weary\",\n    \"face-woozy\",\n    \"face-worried\",\n    \"face-zany\",\n    \"face-zipper\",\n    \"falafel\",\n    \"family-dress\",\n    \"family-pants\",\n    \"family\",\n    \"fan-table\",\n    \"fan\",\n    \"farm\",\n    \"faucet-drip\",\n    \"faucet\",\n    \"fax\",\n    \"feather-pointed\",\n    \"feather\",\n    \"fence\",\n    \"ferris-wheel\",\n    \"ferry\",\n    \"field-hockey-stick-ball\",\n    \"file-arrow-down\",\n    \"file-arrow-up\",\n    \"file-audio\",\n    \"file-binary\",\n    \"file-cad\",\n    \"file-certificate\",\n    \"file-chart-column\",\n    \"file-chart-pie\",\n    \"file-check\",\n    \"file-circle-check\",\n    \"file-circle-exclamation\",\n    \"file-circle-info\",\n    \"file-circle-minus\",\n    \"file-circle-plus\",\n    \"file-circle-question\",\n    \"file-circle-xmark\",\n    \"file-code\",\n    \"file-contract\",\n    \"file-csv\",\n    \"file-dashed-line\",\n    \"file-doc\",\n    \"file-eps\",\n    \"file-excel\",\n    \"file-exclamation\",\n    \"file-export\",\n    \"file-fragment\",\n    \"file-gif\",\n    \"file-half-dashed\",\n    \"file-heart\",\n    \"file-image\",\n    \"file-import\",\n    \"file-invoice-dollar\",\n    \"file-invoice\",\n    \"file-jpg\",\n    \"file-lines\",\n    \"file-lock\",\n    \"file-magnifying-glass\",\n    \"file-medical\",\n    \"file-minus\",\n    \"file-mov\",\n    \"file-mp3\",\n    \"file-mp4\",\n    \"file-music\",\n    \"file-pdf\",\n    \"file-pen\",\n    \"file-plus-minus\",\n    \"file-plus\",\n    \"file-png\",\n    \"file-powerpoint\",\n    \"file-ppt\",\n    \"file-prescription\",\n    \"file-shield\",\n    \"file-signature\",\n    \"file-slash\",\n    \"file-spreadsheet\",\n    \"file-svg\",\n    \"file-user\",\n    \"file-vector\",\n    \"file-video\",\n    \"file-waveform\",\n    \"file-word\",\n    \"file-xls\",\n    \"file-xmark\",\n    \"file-xml\",\n    \"file-zip\",\n    \"file-zipper\",\n    \"file\",\n    \"files-medical\",\n    \"files\",\n    \"fill-drip\",\n    \"fill\",\n    \"film-canister\",\n    \"film-simple\",\n    \"film-slash\",\n    \"film\",\n    \"films\",\n    \"filter-circle-dollar\",\n    \"filter-circle-xmark\",\n    \"filter-list\",\n    \"filter-slash\",\n    \"filter\",\n    \"filters\",\n    \"fingerprint\",\n    \"fire-burner\",\n    \"fire-extinguisher\",\n    \"fire-flame-curved\",\n    \"fire-flame-simple\",\n    \"fire-flame\",\n    \"fire-hydrant\",\n    \"fire-smoke\",\n    \"fire\",\n    \"fireplace\",\n    \"fish-bones\",\n    \"fish-cooked\",\n    \"fish-fins\",\n    \"fish\",\n    \"fishing-rod\",\n    \"flag-checkered\",\n    \"flag-pennant\",\n    \"flag-swallowtail\",\n    \"flag-usa\",\n    \"flag\",\n    \"flashlight\",\n    \"flask-gear\",\n    \"flask-round-poison\",\n    \"flask-round-potion\",\n    \"flask-vial\",\n    \"flask\",\n    \"flatbread-stuffed\",\n    \"flatbread\",\n    \"floppy-disk-circle-arrow-right\",\n    \"floppy-disk-circle-xmark\",\n    \"floppy-disk-pen\",\n    \"floppy-disk\",\n    \"floppy-disks\",\n    \"florin-sign\",\n    \"flower-daffodil\",\n    \"flower-tulip\",\n    \"flower\",\n    \"flute\",\n    \"flux-capacitor\",\n    \"flying-disc\",\n    \"folder-arrow-down\",\n    \"folder-arrow-up\",\n    \"folder-bookmark\",\n    \"folder-check\",\n    \"folder-closed\",\n    \"folder-gear\",\n    \"folder-grid\",\n    \"folder-heart\",\n    \"folder-image\",\n    \"folder-magnifying-glass\",\n    \"folder-medical\",\n    \"folder-minus\",\n    \"folder-music\",\n    \"folder-open\",\n    \"folder-plus\",\n    \"folder-tree\",\n    \"folder-user\",\n    \"folder-xmark\",\n    \"folder\",\n    \"folders\",\n    \"fondue-pot\",\n    \"font-awesome\",\n    \"font-case\",\n    \"font\",\n    \"football-helmet\",\n    \"football\",\n    \"fork-knife\",\n    \"fork\",\n    \"forklift\",\n    \"fort\",\n    \"forward-fast\",\n    \"forward-step\",\n    \"forward\",\n    \"frame\",\n    \"franc-sign\",\n    \"french-fries\",\n    \"frog\",\n    \"function\",\n    \"futbol\",\n    \"g\",\n    \"galaxy\",\n    \"gallery-thumbnails\",\n    \"game-board-simple\",\n    \"game-board\",\n    \"game-console-handheld-crank\",\n    \"game-console-handheld\",\n    \"gamepad-modern\",\n    \"gamepad\",\n    \"garage-car\",\n    \"garage-open\",\n    \"garage\",\n    \"garlic\",\n    \"gas-pump-slash\",\n    \"gas-pump\",\n    \"gauge-circle-bolt\",\n    \"gauge-circle-minus\",\n    \"gauge-circle-plus\",\n    \"gauge-high\",\n    \"gauge-low\",\n    \"gauge-max\",\n    \"gauge-min\",\n    \"gauge-simple-high\",\n    \"gauge-simple-low\",\n    \"gauge-simple-max\",\n    \"gauge-simple-min\",\n    \"gauge-simple\",\n    \"gauge\",\n    \"gavel\",\n    \"gear-code\",\n    \"gear-complex-code\",\n    \"gear-complex\",\n    \"gear\",\n    \"gears\",\n    \"gem\",\n    \"genderless\",\n    \"ghost\",\n    \"gif\",\n    \"gift-card\",\n    \"gift\",\n    \"gifts\",\n    \"gingerbread-man\",\n    \"glass-citrus\",\n    \"glass-empty\",\n    \"glass-half\",\n    \"glass-water-droplet\",\n    \"glass-water\",\n    \"glass\",\n    \"glasses-round\",\n    \"glasses\",\n    \"globe-pointer\",\n    \"globe-snow\",\n    \"globe-stand\",\n    \"globe-wifi\",\n    \"globe\",\n    \"goal-net\",\n    \"golf-ball-tee\",\n    \"golf-club\",\n    \"golf-flag-hole\",\n    \"gopuram\",\n    \"graduation-cap\",\n    \"gramophone\",\n    \"grapes\",\n    \"grate-droplet\",\n    \"grate\",\n    \"greater-than-equal\",\n    \"greater-than\",\n    \"grid-2-plus\",\n    \"grid-2\",\n    \"grid-4\",\n    \"grid-5\",\n    \"grid-dividers\",\n    \"grid-horizontal\",\n    \"grid-round-2-plus\",\n    \"grid-round-2\",\n    \"grid-round-4\",\n    \"grid-round-5\",\n    \"grid-round\",\n    \"grid\",\n    \"grill-fire\",\n    \"grill-hot\",\n    \"grill\",\n    \"grip-dots-vertical\",\n    \"grip-dots\",\n    \"grip-lines-vertical\",\n    \"grip-lines\",\n    \"grip-vertical\",\n    \"grip\",\n    \"group-arrows-rotate\",\n    \"guarani-sign\",\n    \"guitar-electric\",\n    \"guitar\",\n    \"guitars\",\n    \"gun-slash\",\n    \"gun-squirt\",\n    \"gun\",\n    \"h\",\n    \"h1\",\n    \"h2\",\n    \"h3\",\n    \"h4\",\n    \"h5\",\n    \"h6\",\n    \"hammer-brush\",\n    \"hammer-crash\",\n    \"hammer-war\",\n    \"hammer\",\n    \"hamsa\",\n    \"hand-back-fist\",\n    \"hand-back-point-down\",\n    \"hand-back-point-left\",\n    \"hand-back-point-ribbon\",\n    \"hand-back-point-right\",\n    \"hand-back-point-up\",\n    \"hand-dots\",\n    \"hand-fingers-crossed\",\n    \"hand-fist\",\n    \"hand-heart\",\n    \"hand-holding-box\",\n    \"hand-holding-circle-dollar\",\n    \"hand-holding-dollar\",\n    \"hand-holding-droplet\",\n    \"hand-holding-hand\",\n    \"hand-holding-heart\",\n    \"hand-holding-magic\",\n    \"hand-holding-medical\",\n    \"hand-holding-seedling\",\n    \"hand-holding-skull\",\n    \"hand-holding\",\n    \"hand-horns\",\n    \"hand-lizard\",\n    \"hand-love\",\n    \"hand-middle-finger\",\n    \"hand-peace\",\n    \"hand-point-down\",\n    \"hand-point-left\",\n    \"hand-point-ribbon\",\n    \"hand-point-right\",\n    \"hand-point-up\",\n    \"hand-pointer\",\n    \"hand-scissors\",\n    \"hand-sparkles\",\n    \"hand-spock\",\n    \"hand-wave\",\n    \"hand\",\n    \"handcuffs\",\n    \"hands-asl-interpreting\",\n    \"hands-bound\",\n    \"hands-bubbles\",\n    \"hands-clapping\",\n    \"hands-holding-child\",\n    \"hands-holding-circle\",\n    \"hands-holding-diamond\",\n    \"hands-holding-dollar\",\n    \"hands-holding-heart\",\n    \"hands-holding\",\n    \"hands-praying\",\n    \"hands\",\n    \"handshake-angle\",\n    \"handshake-simple-slash\",\n    \"handshake-simple\",\n    \"handshake-slash\",\n    \"handshake\",\n    \"hanukiah\",\n    \"hard-drive\",\n    \"hashtag-lock\",\n    \"hashtag\",\n    \"hat-beach\",\n    \"hat-chef\",\n    \"hat-cowboy-side\",\n    \"hat-cowboy\",\n    \"hat-santa\",\n    \"hat-winter\",\n    \"hat-witch\",\n    \"hat-wizard\",\n    \"head-side-brain\",\n    \"head-side-cough-slash\",\n    \"head-side-cough\",\n    \"head-side-gear\",\n    \"head-side-goggles\",\n    \"head-side-headphones\",\n    \"head-side-heart\",\n    \"head-side-mask\",\n    \"head-side-medical\",\n    \"head-side-virus\",\n    \"head-side\",\n    \"heading\",\n    \"headphones-simple\",\n    \"headphones\",\n    \"headset\",\n    \"heart-circle-bolt\",\n    \"heart-circle-check\",\n    \"heart-circle-exclamation\",\n    \"heart-circle-minus\",\n    \"heart-circle-plus\",\n    \"heart-circle-xmark\",\n    \"heart-crack\",\n    \"heart-half-stroke\",\n    \"heart-half\",\n    \"heart-pulse\",\n    \"heart\",\n    \"heat\",\n    \"helicopter-symbol\",\n    \"helicopter\",\n    \"helmet-battle\",\n    \"helmet-safety\",\n    \"helmet-un\",\n    \"hexagon-check\",\n    \"hexagon-divide\",\n    \"hexagon-exclamation\",\n    \"hexagon-image\",\n    \"hexagon-minus\",\n    \"hexagon-nodes-bolt\",\n    \"hexagon-nodes\",\n    \"hexagon-plus\",\n    \"hexagon-vertical-nft-slanted\",\n    \"hexagon-vertical-nft\",\n    \"hexagon-xmark\",\n    \"hexagon\",\n    \"high-definition\",\n    \"highlighter-line\",\n    \"highlighter\",\n    \"hill-avalanche\",\n    \"hill-rockslide\",\n    \"hippo\",\n    \"hockey-mask\",\n    \"hockey-puck\",\n    \"hockey-stick-puck\",\n    \"hockey-sticks\",\n    \"holly-berry\",\n    \"honey-pot\",\n    \"hood-cloak\",\n    \"horizontal-rule\",\n    \"horse-head\",\n    \"horse-saddle\",\n    \"horse\",\n    \"hose-reel\",\n    \"hose\",\n    \"hospital-user\",\n    \"hospital\",\n    \"hospitals\",\n    \"hot-tub-person\",\n    \"hotdog\",\n    \"hotel\",\n    \"hourglass-clock\",\n    \"hourglass-end\",\n    \"hourglass-half\",\n    \"hourglass-start\",\n    \"hourglass\",\n    \"house-blank\",\n    \"house-building\",\n    \"house-chimney-blank\",\n    \"house-chimney-crack\",\n    \"house-chimney-heart\",\n    \"house-chimney-medical\",\n    \"house-chimney-user\",\n    \"house-chimney-window\",\n    \"house-chimney\",\n    \"house-circle-check\",\n    \"house-circle-exclamation\",\n    \"house-circle-xmark\",\n    \"house-crack\",\n    \"house-day\",\n    \"house-fire\",\n    \"house-flag\",\n    \"house-flood-water-circle-arrow-right\",\n    \"house-flood-water\",\n    \"house-heart\",\n    \"house-laptop\",\n    \"house-lock\",\n    \"house-medical-circle-check\",\n    \"house-medical-circle-exclamation\",\n    \"house-medical-circle-xmark\",\n    \"house-medical-flag\",\n    \"house-medical\",\n    \"house-night\",\n    \"house-person-leave\",\n    \"house-person-return\",\n    \"house-signal\",\n    \"house-tree\",\n    \"house-tsunami\",\n    \"house-turret\",\n    \"house-user\",\n    \"house-water\",\n    \"house-window\",\n    \"house\",\n    \"hryvnia-sign\",\n    \"hundred-points\",\n    \"hurricane\",\n    \"hydra\",\n    \"hyphen\",\n    \"i-cursor\",\n    \"i\",\n    \"ice-cream\",\n    \"ice-skate\",\n    \"icicles\",\n    \"icons\",\n    \"id-badge\",\n    \"id-card-clip\",\n    \"id-card\",\n    \"igloo\",\n    \"image-landscape\",\n    \"image-polaroid-user\",\n    \"image-polaroid\",\n    \"image-portrait\",\n    \"image-slash\",\n    \"image-user\",\n    \"image\",\n    \"images-user\",\n    \"images\",\n    \"inbox-full\",\n    \"inbox-in\",\n    \"inbox-out\",\n    \"inbox\",\n    \"inboxes\",\n    \"indent\",\n    \"indian-rupee-sign\",\n    \"industry-windows\",\n    \"industry\",\n    \"infinity\",\n    \"info\",\n    \"inhaler\",\n    \"input-numeric\",\n    \"input-pipe\",\n    \"input-text\",\n    \"integral\",\n    \"interrobang\",\n    \"intersection\",\n    \"island-tropical\",\n    \"italic\",\n    \"j\",\n    \"jack-o-lantern\",\n    \"jar-wheat\",\n    \"jar\",\n    \"jedi\",\n    \"jet-fighter-up\",\n    \"jet-fighter\",\n    \"joint\",\n    \"joystick\",\n    \"jug-bottle\",\n    \"jug-detergent\",\n    \"jug\",\n    \"k\",\n    \"kaaba\",\n    \"kazoo\",\n    \"kerning\",\n    \"key-skeleton-left-right\",\n    \"key-skeleton\",\n    \"key\",\n    \"keyboard-brightness-low\",\n    \"keyboard-brightness\",\n    \"keyboard-down\",\n    \"keyboard-left\",\n    \"keyboard\",\n    \"keynote\",\n    \"khanda\",\n    \"kidneys\",\n    \"kip-sign\",\n    \"kit-medical\",\n    \"kitchen-set\",\n    \"kite\",\n    \"kiwi-bird\",\n    \"kiwi-fruit\",\n    \"knife-kitchen\",\n    \"knife\",\n    \"l\",\n    \"lacrosse-stick-ball\",\n    \"lacrosse-stick\",\n    \"lambda\",\n    \"lamp-desk\",\n    \"lamp-floor\",\n    \"lamp-street\",\n    \"lamp\",\n    \"land-mine-on\",\n    \"landmark-dome\",\n    \"landmark-flag\",\n    \"landmark-magnifying-glass\",\n    \"landmark\",\n    \"language\",\n    \"laptop-arrow-down\",\n    \"laptop-binary\",\n    \"laptop-code\",\n    \"laptop-file\",\n    \"laptop-medical\",\n    \"laptop-mobile\",\n    \"laptop-slash\",\n    \"laptop\",\n    \"lari-sign\",\n    \"lasso-sparkles\",\n    \"lasso\",\n    \"layer-group\",\n    \"layer-minus\",\n    \"layer-plus\",\n    \"leaf-heart\",\n    \"leaf-maple\",\n    \"leaf-oak\",\n    \"leaf\",\n    \"leafy-green\",\n    \"left-from-bracket\",\n    \"left-from-line\",\n    \"left-long-to-line\",\n    \"left-long\",\n    \"left-right\",\n    \"left-to-bracket\",\n    \"left-to-line\",\n    \"left\",\n    \"lemon\",\n    \"less-than-equal\",\n    \"less-than\",\n    \"life-ring\",\n    \"light-ceiling\",\n    \"light-emergency-on\",\n    \"light-emergency\",\n    \"light-switch-off\",\n    \"light-switch-on\",\n    \"light-switch\",\n    \"lightbulb-cfl-on\",\n    \"lightbulb-cfl\",\n    \"lightbulb-dollar\",\n    \"lightbulb-exclamation-on\",\n    \"lightbulb-exclamation\",\n    \"lightbulb-gear\",\n    \"lightbulb-message\",\n    \"lightbulb-on\",\n    \"lightbulb-slash\",\n    \"lightbulb\",\n    \"lighthouse\",\n    \"lights-holiday\",\n    \"line-columns\",\n    \"line-height\",\n    \"lines-leaning\",\n    \"link-horizontal-slash\",\n    \"link-horizontal\",\n    \"link-simple-slash\",\n    \"link-simple\",\n    \"link-slash\",\n    \"link\",\n    \"lips\",\n    \"lira-sign\",\n    \"list-check\",\n    \"list-dropdown\",\n    \"list-music\",\n    \"list-ol\",\n    \"list-radio\",\n    \"list-timeline\",\n    \"list-tree\",\n    \"list-ul\",\n    \"list\",\n    \"litecoin-sign\",\n    \"loader\",\n    \"lobster\",\n    \"location-arrow-up\",\n    \"location-arrow\",\n    \"location-check\",\n    \"location-crosshairs-slash\",\n    \"location-crosshairs\",\n    \"location-dot-slash\",\n    \"location-dot\",\n    \"location-exclamation\",\n    \"location-minus\",\n    \"location-pen\",\n    \"location-pin-lock\",\n    \"location-pin-slash\",\n    \"location-pin\",\n    \"location-plus\",\n    \"location-question\",\n    \"location-smile\",\n    \"location-xmark\",\n    \"lock-a\",\n    \"lock-hashtag\",\n    \"lock-keyhole-open\",\n    \"lock-keyhole\",\n    \"lock-open\",\n    \"lock\",\n    \"locust\",\n    \"lollipop\",\n    \"loveseat\",\n    \"luchador-mask\",\n    \"lungs-virus\",\n    \"lungs\",\n    \"m\",\n    \"mace\",\n    \"magnet\",\n    \"magnifying-glass-arrow-right\",\n    \"magnifying-glass-arrows-rotate\",\n    \"magnifying-glass-chart\",\n    \"magnifying-glass-dollar\",\n    \"magnifying-glass-location\",\n    \"magnifying-glass-minus\",\n    \"magnifying-glass-music\",\n    \"magnifying-glass-play\",\n    \"magnifying-glass-plus\",\n    \"magnifying-glass-waveform\",\n    \"magnifying-glass\",\n    \"mailbox-flag-up\",\n    \"mailbox\",\n    \"manat-sign\",\n    \"mandolin\",\n    \"mango\",\n    \"manhole\",\n    \"map-location-dot\",\n    \"map-location\",\n    \"map-pin\",\n    \"map\",\n    \"marker\",\n    \"mars-and-venus-burst\",\n    \"mars-and-venus\",\n    \"mars-double\",\n    \"mars-stroke-right\",\n    \"mars-stroke-up\",\n    \"mars-stroke\",\n    \"mars\",\n    \"martini-glass-citrus\",\n    \"martini-glass-empty\",\n    \"martini-glass\",\n    \"mask-face\",\n    \"mask-snorkel\",\n    \"mask-ventilator\",\n    \"mask\",\n    \"masks-theater\",\n    \"mattress-pillow\",\n    \"maximize\",\n    \"meat\",\n    \"medal\",\n    \"megaphone\",\n    \"melon-slice\",\n    \"melon\",\n    \"memo-circle-check\",\n    \"memo-circle-info\",\n    \"memo-pad\",\n    \"memo\",\n    \"memory\",\n    \"menorah\",\n    \"mercury\",\n    \"merge\",\n    \"message-arrow-down\",\n    \"message-arrow-up-right\",\n    \"message-arrow-up\",\n    \"message-bot\",\n    \"message-captions\",\n    \"message-check\",\n    \"message-code\",\n    \"message-dollar\",\n    \"message-dots\",\n    \"message-exclamation\",\n    \"message-heart\",\n    \"message-image\",\n    \"message-lines\",\n    \"message-medical\",\n    \"message-middle-top\",\n    \"message-middle\",\n    \"message-minus\",\n    \"message-music\",\n    \"message-pen\",\n    \"message-plus\",\n    \"message-question\",\n    \"message-quote\",\n    \"message-slash\",\n    \"message-smile\",\n    \"message-sms\",\n    \"message-text\",\n    \"message-xmark\",\n    \"message\",\n    \"messages-dollar\",\n    \"messages-question\",\n    \"messages\",\n    \"meteor\",\n    \"meter-bolt\",\n    \"meter-droplet\",\n    \"meter-fire\",\n    \"meter\",\n    \"microchip-ai\",\n    \"microchip\",\n    \"microphone-lines-slash\",\n    \"microphone-lines\",\n    \"microphone-slash\",\n    \"microphone-stand\",\n    \"microphone\",\n    \"microscope\",\n    \"microwave\",\n    \"mill-sign\",\n    \"minimize\",\n    \"minus\",\n    \"mistletoe\",\n    \"mitten\",\n    \"mobile-button\",\n    \"mobile-notch\",\n    \"mobile-retro\",\n    \"mobile-screen-button\",\n    \"mobile-screen\",\n    \"mobile-signal-out\",\n    \"mobile-signal\",\n    \"mobile\",\n    \"money-bill-1-wave\",\n    \"money-bill-1\",\n    \"money-bill-simple-wave\",\n    \"money-bill-simple\",\n    \"money-bill-transfer\",\n    \"money-bill-trend-up\",\n    \"money-bill-wave\",\n    \"money-bill-wheat\",\n    \"money-bill\",\n    \"money-bills-simple\",\n    \"money-bills\",\n    \"money-check-dollar-pen\",\n    \"money-check-dollar\",\n    \"money-check-pen\",\n    \"money-check\",\n    \"money-from-bracket\",\n    \"money-simple-from-bracket\",\n    \"monitor-waveform\",\n    \"monkey\",\n    \"monument\",\n    \"moon-cloud\",\n    \"moon-over-sun\",\n    \"moon-stars\",\n    \"moon\",\n    \"moped\",\n    \"mortar-pestle\",\n    \"mosque\",\n    \"mosquito-net\",\n    \"mosquito\",\n    \"motorcycle\",\n    \"mound\",\n    \"mountain-city\",\n    \"mountain-sun\",\n    \"mountain\",\n    \"mountains\",\n    \"mouse-field\",\n    \"mp3-player\",\n    \"mug-hot\",\n    \"mug-marshmallows\",\n    \"mug-saucer\",\n    \"mug-tea-saucer\",\n    \"mug-tea\",\n    \"mug\",\n    \"mushroom\",\n    \"music-magnifying-glass\",\n    \"music-note-slash\",\n    \"music-note\",\n    \"music-slash\",\n    \"music\",\n    \"mustache\",\n    \"n\",\n    \"naira-sign\",\n    \"narwhal\",\n    \"nesting-dolls\",\n    \"network-wired\",\n    \"neuter\",\n    \"newspaper\",\n    \"nfc-lock\",\n    \"nfc-magnifying-glass\",\n    \"nfc-pen\",\n    \"nfc-signal\",\n    \"nfc-slash\",\n    \"nfc-symbol\",\n    \"nfc-trash\",\n    \"nfc\",\n    \"nose\",\n    \"not-equal\",\n    \"notdef\",\n    \"note-medical\",\n    \"note-sticky\",\n    \"note\",\n    \"notebook\",\n    \"notes-medical\",\n    \"notes\",\n    \"o\",\n    \"object-exclude\",\n    \"object-group\",\n    \"object-intersect\",\n    \"object-subtract\",\n    \"object-ungroup\",\n    \"object-union\",\n    \"objects-align-bottom\",\n    \"objects-align-center-horizontal\",\n    \"objects-align-center-vertical\",\n    \"objects-align-left\",\n    \"objects-align-right\",\n    \"objects-align-top\",\n    \"objects-column\",\n    \"octagon-check\",\n    \"octagon-divide\",\n    \"octagon-exclamation\",\n    \"octagon-minus\",\n    \"octagon-plus\",\n    \"octagon-xmark\",\n    \"octagon\",\n    \"octopus\",\n    \"oil-can-drip\",\n    \"oil-can\",\n    \"oil-temperature\",\n    \"oil-well\",\n    \"olive-branch\",\n    \"olive\",\n    \"om\",\n    \"omega\",\n    \"onion\",\n    \"option\",\n    \"ornament\",\n    \"otter\",\n    \"outdent\",\n    \"outlet\",\n    \"oven\",\n    \"overline\",\n    \"p\",\n    \"page-caret-down\",\n    \"page-caret-up\",\n    \"page\",\n    \"pager\",\n    \"paint-roller\",\n    \"paintbrush-fine\",\n    \"paintbrush-pencil\",\n    \"paintbrush\",\n    \"palette\",\n    \"pallet-box\",\n    \"pallet-boxes\",\n    \"pallet\",\n    \"pan-food\",\n    \"pan-frying\",\n    \"pancakes\",\n    \"panel-ews\",\n    \"panel-fire\",\n    \"panorama\",\n    \"paper-plane-top\",\n    \"paper-plane\",\n    \"paperclip-vertical\",\n    \"paperclip\",\n    \"parachute-box\",\n    \"paragraph-left\",\n    \"paragraph\",\n    \"party-bell\",\n    \"party-horn\",\n    \"passport\",\n    \"paste\",\n    \"pause\",\n    \"paw-claws\",\n    \"paw-simple\",\n    \"paw\",\n    \"peace\",\n    \"peach\",\n    \"peanut\",\n    \"peanuts\",\n    \"peapod\",\n    \"pear\",\n    \"pedestal\",\n    \"pegasus\",\n    \"pen-circle\",\n    \"pen-clip-slash\",\n    \"pen-clip\",\n    \"pen-fancy-slash\",\n    \"pen-fancy\",\n    \"pen-field\",\n    \"pen-line\",\n    \"pen-nib-slash\",\n    \"pen-nib\",\n    \"pen-paintbrush\",\n    \"pen-ruler\",\n    \"pen-slash\",\n    \"pen-swirl\",\n    \"pen-to-square\",\n    \"pen\",\n    \"pencil-mechanical\",\n    \"pencil-slash\",\n    \"pencil\",\n    \"people-arrows\",\n    \"people-carry-box\",\n    \"people-dress-simple\",\n    \"people-dress\",\n    \"people-group\",\n    \"people-line\",\n    \"people-pants-simple\",\n    \"people-pants\",\n    \"people-pulling\",\n    \"people-robbery\",\n    \"people-roof\",\n    \"people-simple\",\n    \"people\",\n    \"pepper-hot\",\n    \"pepper\",\n    \"percent\",\n    \"period\",\n    \"person-arrow-down-to-line\",\n    \"person-arrow-up-from-line\",\n    \"person-biking-mountain\",\n    \"person-biking\",\n    \"person-booth\",\n    \"person-breastfeeding\",\n    \"person-burst\",\n    \"person-cane\",\n    \"person-carry-box\",\n    \"person-chalkboard\",\n    \"person-circle-check\",\n    \"person-circle-exclamation\",\n    \"person-circle-minus\",\n    \"person-circle-plus\",\n    \"person-circle-question\",\n    \"person-circle-xmark\",\n    \"person-digging\",\n    \"person-dolly-empty\",\n    \"person-dolly\",\n    \"person-dots-from-line\",\n    \"person-dress-burst\",\n    \"person-dress-fairy\",\n    \"person-dress-simple\",\n    \"person-dress\",\n    \"person-drowning\",\n    \"person-fairy\",\n    \"person-falling-burst\",\n    \"person-falling\",\n    \"person-from-portal\",\n    \"person-half-dress\",\n    \"person-harassing\",\n    \"person-hiking\",\n    \"person-military-pointing\",\n    \"person-military-rifle\",\n    \"person-military-to-person\",\n    \"person-pinball\",\n    \"person-praying\",\n    \"person-pregnant\",\n    \"person-rays\",\n    \"person-rifle\",\n    \"person-running-fast\",\n    \"person-running\",\n    \"person-seat-reclined\",\n    \"person-seat\",\n    \"person-shelter\",\n    \"person-sign\",\n    \"person-simple\",\n    \"person-skating\",\n    \"person-ski-jumping\",\n    \"person-ski-lift\",\n    \"person-skiing-nordic\",\n    \"person-skiing\",\n    \"person-sledding\",\n    \"person-snowboarding\",\n    \"person-snowmobiling\",\n    \"person-swimming\",\n    \"person-through-window\",\n    \"person-to-door\",\n    \"person-to-portal\",\n    \"person-walking-arrow-loop-left\",\n    \"person-walking-arrow-right\",\n    \"person-walking-dashed-line-arrow-right\",\n    \"person-walking-luggage\",\n    \"person-walking-with-cane\",\n    \"person-walking\",\n    \"person\",\n    \"peseta-sign\",\n    \"peso-sign\",\n    \"phone-arrow-down-left\",\n    \"phone-arrow-right\",\n    \"phone-arrow-up-right\",\n    \"phone-flip\",\n    \"phone-hangup\",\n    \"phone-intercom\",\n    \"phone-missed\",\n    \"phone-office\",\n    \"phone-plus\",\n    \"phone-rotary\",\n    \"phone-slash\",\n    \"phone-volume\",\n    \"phone-xmark\",\n    \"phone\",\n    \"photo-film-music\",\n    \"photo-film\",\n    \"pi\",\n    \"piano-keyboard\",\n    \"piano\",\n    \"pickaxe\",\n    \"pickleball\",\n    \"pie\",\n    \"pig\",\n    \"piggy-bank\",\n    \"pills\",\n    \"pinata\",\n    \"pinball\",\n    \"pineapple\",\n    \"pipe-circle-check\",\n    \"pipe-collar\",\n    \"pipe-section\",\n    \"pipe-smoking\",\n    \"pipe-valve\",\n    \"pipe\",\n    \"pizza-slice\",\n    \"pizza\",\n    \"place-of-worship\",\n    \"plane-arrival\",\n    \"plane-circle-check\",\n    \"plane-circle-exclamation\",\n    \"plane-circle-xmark\",\n    \"plane-departure\",\n    \"plane-engines\",\n    \"plane-lock\",\n    \"plane-prop\",\n    \"plane-slash\",\n    \"plane-tail\",\n    \"plane-up-slash\",\n    \"plane-up\",\n    \"plane\",\n    \"planet-moon\",\n    \"planet-ringed\",\n    \"plant-wilt\",\n    \"plate-utensils\",\n    \"plate-wheat\",\n    \"play-pause\",\n    \"play\",\n    \"plug-circle-bolt\",\n    \"plug-circle-check\",\n    \"plug-circle-exclamation\",\n    \"plug-circle-minus\",\n    \"plug-circle-plus\",\n    \"plug-circle-xmark\",\n    \"plug\",\n    \"plus-large\",\n    \"plus-minus\",\n    \"plus\",\n    \"podcast\",\n    \"podium-star\",\n    \"podium\",\n    \"police-box\",\n    \"poll-people\",\n    \"pompebled\",\n    \"poo-storm\",\n    \"poo\",\n    \"pool-8-ball\",\n    \"poop\",\n    \"popcorn\",\n    \"popsicle\",\n    \"pot-food\",\n    \"potato\",\n    \"power-off\",\n    \"prescription-bottle-medical\",\n    \"prescription-bottle-pill\",\n    \"prescription-bottle\",\n    \"prescription\",\n    \"presentation-screen\",\n    \"pretzel\",\n    \"print-magnifying-glass\",\n    \"print-slash\",\n    \"print\",\n    \"projector\",\n    \"pump-medical\",\n    \"pump-soap\",\n    \"pump\",\n    \"pumpkin\",\n    \"puzzle-piece-simple\",\n    \"puzzle-piece\",\n    \"puzzle\",\n    \"q\",\n    \"qrcode\",\n    \"question\",\n    \"quote-left\",\n    \"quote-right\",\n    \"quotes\",\n    \"r\",\n    \"rabbit-running\",\n    \"rabbit\",\n    \"raccoon\",\n    \"racquet\",\n    \"radar\",\n    \"radiation\",\n    \"radio-tuner\",\n    \"radio\",\n    \"rainbow\",\n    \"raindrops\",\n    \"ram\",\n    \"ramp-loading\",\n    \"ranking-star\",\n    \"raygun\",\n    \"receipt\",\n    \"record-vinyl\",\n    \"rectangle-ad\",\n    \"rectangle-barcode\",\n    \"rectangle-code\",\n    \"rectangle-history-circle-plus\",\n    \"rectangle-history-circle-user\",\n    \"rectangle-history\",\n    \"rectangle-list\",\n    \"rectangle-pro\",\n    \"rectangle-terminal\",\n    \"rectangle-vertical-history\",\n    \"rectangle-vertical\",\n    \"rectangle-wide\",\n    \"rectangle-xmark\",\n    \"rectangle\",\n    \"rectangles-mixed\",\n    \"recycle\",\n    \"reel\",\n    \"reflect-both\",\n    \"reflect-horizontal\",\n    \"reflect-vertical\",\n    \"refrigerator\",\n    \"registered\",\n    \"repeat-1\",\n    \"repeat\",\n    \"reply-all\",\n    \"reply-clock\",\n    \"reply\",\n    \"republican\",\n    \"restroom-simple\",\n    \"restroom\",\n    \"retweet\",\n    \"rhombus\",\n    \"ribbon\",\n    \"right-from-bracket\",\n    \"right-from-line\",\n    \"right-left-large\",\n    \"right-left\",\n    \"right-long-to-line\",\n    \"right-long\",\n    \"right-to-bracket\",\n    \"right-to-line\",\n    \"right\",\n    \"ring-diamond\",\n    \"ring\",\n    \"rings-wedding\",\n    \"road-barrier\",\n    \"road-bridge\",\n    \"road-circle-check\",\n    \"road-circle-exclamation\",\n    \"road-circle-xmark\",\n    \"road-lock\",\n    \"road-spikes\",\n    \"road\",\n    \"robot-astromech\",\n    \"robot\",\n    \"rocket-launch\",\n    \"rocket\",\n    \"roller-coaster\",\n    \"rotate-exclamation\",\n    \"rotate-left\",\n    \"rotate-reverse\",\n    \"rotate-right\",\n    \"rotate\",\n    \"route-highway\",\n    \"route-interstate\",\n    \"route\",\n    \"router\",\n    \"rss\",\n    \"ruble-sign\",\n    \"rug\",\n    \"rugby-ball\",\n    \"ruler-combined\",\n    \"ruler-horizontal\",\n    \"ruler-triangle\",\n    \"ruler-vertical\",\n    \"ruler\",\n    \"rupee-sign\",\n    \"rupiah-sign\",\n    \"rv\",\n    \"s\",\n    \"sack-dollar\",\n    \"sack-xmark\",\n    \"sack\",\n    \"sailboat\",\n    \"salad\",\n    \"salt-shaker\",\n    \"sandwich\",\n    \"satellite-dish\",\n    \"satellite\",\n    \"sausage\",\n    \"saxophone-fire\",\n    \"saxophone\",\n    \"scale-balanced\",\n    \"scale-unbalanced-flip\",\n    \"scale-unbalanced\",\n    \"scalpel-line-dashed\",\n    \"scalpel\",\n    \"scanner-gun\",\n    \"scanner-image\",\n    \"scanner-keyboard\",\n    \"scanner-touchscreen\",\n    \"scarecrow\",\n    \"scarf\",\n    \"school-circle-check\",\n    \"school-circle-exclamation\",\n    \"school-circle-xmark\",\n    \"school-flag\",\n    \"school-lock\",\n    \"school\",\n    \"scissors\",\n    \"screen-users\",\n    \"screencast\",\n    \"screwdriver-wrench\",\n    \"screwdriver\",\n    \"scribble\",\n    \"scroll-old\",\n    \"scroll-torah\",\n    \"scroll\",\n    \"scrubber\",\n    \"scythe\",\n    \"sd-card\",\n    \"sd-cards\",\n    \"seal-exclamation\",\n    \"seal-question\",\n    \"seal\",\n    \"seat-airline\",\n    \"section\",\n    \"seedling\",\n    \"semicolon\",\n    \"send-back\",\n    \"send-backward\",\n    \"sensor-cloud\",\n    \"sensor-fire\",\n    \"sensor-on\",\n    \"sensor-triangle-exclamation\",\n    \"sensor\",\n    \"server\",\n    \"shapes\",\n    \"share-all\",\n    \"share-from-square\",\n    \"share-nodes\",\n    \"share\",\n    \"sheep\",\n    \"sheet-plastic\",\n    \"shekel-sign\",\n    \"shelves-empty\",\n    \"shelves\",\n    \"shield-cat\",\n    \"shield-check\",\n    \"shield-cross\",\n    \"shield-dog\",\n    \"shield-exclamation\",\n    \"shield-halved\",\n    \"shield-heart\",\n    \"shield-keyhole\",\n    \"shield-minus\",\n    \"shield-plus\",\n    \"shield-quartered\",\n    \"shield-slash\",\n    \"shield-virus\",\n    \"shield-xmark\",\n    \"shield\",\n    \"ship\",\n    \"shirt-long-sleeve\",\n    \"shirt-running\",\n    \"shirt-tank-top\",\n    \"shirt\",\n    \"shish-kebab\",\n    \"shoe-prints\",\n    \"shop-lock\",\n    \"shop-slash\",\n    \"shop\",\n    \"shovel-snow\",\n    \"shovel\",\n    \"shower-down\",\n    \"shower\",\n    \"shredder\",\n    \"shrimp\",\n    \"shuffle\",\n    \"shutters\",\n    \"shuttle-space\",\n    \"shuttlecock\",\n    \"sickle\",\n    \"sidebar-flip\",\n    \"sidebar\",\n    \"sigma\",\n    \"sign-hanging\",\n    \"sign-post\",\n    \"sign-posts-wrench\",\n    \"sign-posts\",\n    \"signal-bars-fair\",\n    \"signal-bars-good\",\n    \"signal-bars-slash\",\n    \"signal-bars-weak\",\n    \"signal-bars\",\n    \"signal-fair\",\n    \"signal-good\",\n    \"signal-slash\",\n    \"signal-stream-slash\",\n    \"signal-stream\",\n    \"signal-strong\",\n    \"signal-weak\",\n    \"signal\",\n    \"signature-lock\",\n    \"signature-slash\",\n    \"signature\",\n    \"signs-post\",\n    \"sim-card\",\n    \"sim-cards\",\n    \"sink\",\n    \"siren-on\",\n    \"siren\",\n    \"sitemap\",\n    \"skeleton-ribs\",\n    \"skeleton\",\n    \"ski-boot-ski\",\n    \"ski-boot\",\n    \"skull-cow\",\n    \"skull-crossbones\",\n    \"skull\",\n    \"slash-back\",\n    \"slash-forward\",\n    \"slash\",\n    \"sleigh\",\n    \"slider\",\n    \"sliders-simple\",\n    \"sliders-up\",\n    \"sliders\",\n    \"slot-machine\",\n    \"smog\",\n    \"smoke\",\n    \"smoking\",\n    \"snake\",\n    \"snooze\",\n    \"snow-blowing\",\n    \"snowflake-droplets\",\n    \"snowflake\",\n    \"snowflakes\",\n    \"snowman-head\",\n    \"snowman\",\n    \"snowplow\",\n    \"soap\",\n    \"socks\",\n    \"soft-serve\",\n    \"solar-panel\",\n    \"solar-system\",\n    \"sort-down\",\n    \"sort-up\",\n    \"sort\",\n    \"spa\",\n    \"space-station-moon-construction\",\n    \"space-station-moon\",\n    \"spade\",\n    \"spaghetti-monster-flying\",\n    \"sparkle\",\n    \"sparkles\",\n    \"speaker\",\n    \"speakers\",\n    \"spell-check\",\n    \"spider-black-widow\",\n    \"spider-web\",\n    \"spider\",\n    \"spinner-scale\",\n    \"spinner-third\",\n    \"spinner\",\n    \"split\",\n    \"splotch\",\n    \"spoon\",\n    \"sportsball\",\n    \"spray-can-sparkles\",\n    \"spray-can\",\n    \"sprinkler-ceiling\",\n    \"sprinkler\",\n    \"square-0\",\n    \"square-1\",\n    \"square-2\",\n    \"square-3\",\n    \"square-4\",\n    \"square-5\",\n    \"square-6\",\n    \"square-7\",\n    \"square-8\",\n    \"square-9\",\n    \"square-a-lock\",\n    \"square-a\",\n    \"square-ampersand\",\n    \"square-arrow-down-left\",\n    \"square-arrow-down-right\",\n    \"square-arrow-down\",\n    \"square-arrow-left\",\n    \"square-arrow-right\",\n    \"square-arrow-up-left\",\n    \"square-arrow-up-right\",\n    \"square-arrow-up\",\n    \"square-b\",\n    \"square-binary\",\n    \"square-bolt\",\n    \"square-c\",\n    \"square-caret-down\",\n    \"square-caret-left\",\n    \"square-caret-right\",\n    \"square-caret-up\",\n    \"square-check\",\n    \"square-chevron-down\",\n    \"square-chevron-left\",\n    \"square-chevron-right\",\n    \"square-chevron-up\",\n    \"square-code\",\n    \"square-d\",\n    \"square-dashed-circle-plus\",\n    \"square-dashed\",\n    \"square-divide\",\n    \"square-dollar\",\n    \"square-down-left\",\n    \"square-down-right\",\n    \"square-down\",\n    \"square-e\",\n    \"square-ellipsis-vertical\",\n    \"square-ellipsis\",\n    \"square-envelope\",\n    \"square-exclamation\",\n    \"square-f\",\n    \"square-fragile\",\n    \"square-full\",\n    \"square-g\",\n    \"square-h\",\n    \"square-heart\",\n    \"square-i\",\n    \"square-info\",\n    \"square-j\",\n    \"square-k\",\n    \"square-kanban\",\n    \"square-l\",\n    \"square-left\",\n    \"square-list\",\n    \"square-m\",\n    \"square-minus\",\n    \"square-n\",\n    \"square-nfi\",\n    \"square-o\",\n    \"square-p\",\n    \"square-parking-slash\",\n    \"square-parking\",\n    \"square-pen\",\n    \"square-person-confined\",\n    \"square-phone-flip\",\n    \"square-phone-hangup\",\n    \"square-phone\",\n    \"square-plus\",\n    \"square-poll-horizontal\",\n    \"square-poll-vertical\",\n    \"square-q\",\n    \"square-quarters\",\n    \"square-question\",\n    \"square-quote\",\n    \"square-r\",\n    \"square-right\",\n    \"square-ring\",\n    \"square-root-variable\",\n    \"square-root\",\n    \"square-rss\",\n    \"square-s\",\n    \"square-share-nodes\",\n    \"square-sliders-vertical\",\n    \"square-sliders\",\n    \"square-small\",\n    \"square-star\",\n    \"square-t\",\n    \"square-terminal\",\n    \"square-this-way-up\",\n    \"square-u\",\n    \"square-up-left\",\n    \"square-up-right\",\n    \"square-up\",\n    \"square-user\",\n    \"square-v\",\n    \"square-virus\",\n    \"square-w\",\n    \"square-x\",\n    \"square-xmark\",\n    \"square-y\",\n    \"square-z\",\n    \"square\",\n    \"squid\",\n    \"squirrel\",\n    \"staff-snake\",\n    \"staff\",\n    \"stairs\",\n    \"stamp\",\n    \"standard-definition\",\n    \"stapler\",\n    \"star-and-crescent\",\n    \"star-christmas\",\n    \"star-exclamation\",\n    \"star-half-stroke\",\n    \"star-half\",\n    \"star-of-david\",\n    \"star-of-life\",\n    \"star-sharp-half-stroke\",\n    \"star-sharp-half\",\n    \"star-sharp\",\n    \"star-shooting\",\n    \"star\",\n    \"starfighter-twin-ion-engine-advanced\",\n    \"starfighter-twin-ion-engine\",\n    \"starfighter\",\n    \"stars\",\n    \"starship-freighter\",\n    \"starship\",\n    \"steak\",\n    \"steering-wheel\",\n    \"sterling-sign\",\n    \"stethoscope\",\n    \"stocking\",\n    \"stomach\",\n    \"stop\",\n    \"stopwatch-20\",\n    \"stopwatch\",\n    \"store-lock\",\n    \"store-slash\",\n    \"store\",\n    \"strawberry\",\n    \"street-view\",\n    \"stretcher\",\n    \"strikethrough\",\n    \"stroopwafel\",\n    \"subscript\",\n    \"subtitles-slash\",\n    \"subtitles\",\n    \"suitcase-medical\",\n    \"suitcase-rolling\",\n    \"suitcase\",\n    \"sun-bright\",\n    \"sun-cloud\",\n    \"sun-dust\",\n    \"sun-haze\",\n    \"sun-plant-wilt\",\n    \"sun\",\n    \"sunglasses\",\n    \"sunrise\",\n    \"sunset\",\n    \"superscript\",\n    \"sushi-roll\",\n    \"sushi\",\n    \"swap-arrows\",\n    \"swap\",\n    \"swatchbook\",\n    \"sword-laser-alt\",\n    \"sword-laser\",\n    \"sword\",\n    \"swords-laser\",\n    \"swords\",\n    \"symbols\",\n    \"synagogue\",\n    \"syringe\",\n    \"t-rex\",\n    \"t\",\n    \"table-cells-column-lock\",\n    \"table-cells-column-unlock\",\n    \"table-cells-large\",\n    \"table-cells-lock\",\n    \"table-cells-row-lock\",\n    \"table-cells-row-unlock\",\n    \"table-cells-unlock\",\n    \"table-cells\",\n    \"table-columns\",\n    \"table-layout\",\n    \"table-list\",\n    \"table-picnic\",\n    \"table-pivot\",\n    \"table-rows\",\n    \"table-tennis-paddle-ball\",\n    \"table-tree\",\n    \"table\",\n    \"tablet-button\",\n    \"tablet-rugged\",\n    \"tablet-screen-button\",\n    \"tablet-screen\",\n    \"tablet\",\n    \"tablets\",\n    \"tachograph-digital\",\n    \"taco\",\n    \"tag\",\n    \"tags\",\n    \"tally-1\",\n    \"tally-2\",\n    \"tally-3\",\n    \"tally-4\",\n    \"tally\",\n    \"tamale\",\n    \"tank-water\",\n    \"tape\",\n    \"tarp-droplet\",\n    \"tarp\",\n    \"taxi-bus\",\n    \"taxi\",\n    \"teddy-bear\",\n    \"teeth-open\",\n    \"teeth\",\n    \"telescope\",\n    \"temperature-arrow-down\",\n    \"temperature-arrow-up\",\n    \"temperature-empty\",\n    \"temperature-full\",\n    \"temperature-half\",\n    \"temperature-high\",\n    \"temperature-list\",\n    \"temperature-low\",\n    \"temperature-quarter\",\n    \"temperature-snow\",\n    \"temperature-sun\",\n    \"temperature-three-quarters\",\n    \"tenge-sign\",\n    \"tennis-ball\",\n    \"tent-arrow-down-to-line\",\n    \"tent-arrow-left-right\",\n    \"tent-arrow-turn-left\",\n    \"tent-arrows-down\",\n    \"tent-double-peak\",\n    \"tent\",\n    \"tents\",\n    \"terminal\",\n    \"text-height\",\n    \"text-size\",\n    \"text-slash\",\n    \"text-width\",\n    \"text\",\n    \"thermometer\",\n    \"theta\",\n    \"thought-bubble\",\n    \"thumbs-down\",\n    \"thumbs-up\",\n    \"thumbtack-slash\",\n    \"thumbtack\",\n    \"tick\",\n    \"ticket-airline\",\n    \"ticket-perforated\",\n    \"ticket-simple\",\n    \"ticket\",\n    \"tickets-airline\",\n    \"tickets-perforated\",\n    \"tickets-simple\",\n    \"tickets\",\n    \"tilde\",\n    \"timeline-arrow\",\n    \"timeline\",\n    \"timer\",\n    \"tire-flat\",\n    \"tire-pressure-warning\",\n    \"tire-rugged\",\n    \"tire\",\n    \"toggle-large-off\",\n    \"toggle-large-on\",\n    \"toggle-off\",\n    \"toggle-on\",\n    \"toilet-paper-blank-under\",\n    \"toilet-paper-blank\",\n    \"toilet-paper-check\",\n    \"toilet-paper-slash\",\n    \"toilet-paper-under-slash\",\n    \"toilet-paper-under\",\n    \"toilet-paper-xmark\",\n    \"toilet-paper\",\n    \"toilet-portable\",\n    \"toilet\",\n    \"toilets-portable\",\n    \"tomato\",\n    \"tombstone-blank\",\n    \"tombstone\",\n    \"toolbox\",\n    \"tooth\",\n    \"toothbrush\",\n    \"torii-gate\",\n    \"tornado\",\n    \"tower-broadcast\",\n    \"tower-cell\",\n    \"tower-control\",\n    \"tower-observation\",\n    \"tractor\",\n    \"trademark\",\n    \"traffic-cone\",\n    \"traffic-light-go\",\n    \"traffic-light-slow\",\n    \"traffic-light-stop\",\n    \"traffic-light\",\n    \"trailer\",\n    \"train-subway-tunnel\",\n    \"train-subway\",\n    \"train-track\",\n    \"train-tram\",\n    \"train-tunnel\",\n    \"train\",\n    \"transformer-bolt\",\n    \"transgender\",\n    \"transporter-1\",\n    \"transporter-2\",\n    \"transporter-3\",\n    \"transporter-4\",\n    \"transporter-5\",\n    \"transporter-6\",\n    \"transporter-7\",\n    \"transporter-empty\",\n    \"transporter\",\n    \"trash-arrow-up\",\n    \"trash-can-arrow-up\",\n    \"trash-can-check\",\n    \"trash-can-clock\",\n    \"trash-can-list\",\n    \"trash-can-plus\",\n    \"trash-can-slash\",\n    \"trash-can-undo\",\n    \"trash-can-xmark\",\n    \"trash-can\",\n    \"trash-check\",\n    \"trash-clock\",\n    \"trash-list\",\n    \"trash-plus\",\n    \"trash-slash\",\n    \"trash-undo\",\n    \"trash-xmark\",\n    \"trash\",\n    \"treasure-chest\",\n    \"tree-christmas\",\n    \"tree-city\",\n    \"tree-deciduous\",\n    \"tree-decorated\",\n    \"tree-large\",\n    \"tree-palm\",\n    \"tree\",\n    \"trees\",\n    \"triangle-exclamation\",\n    \"triangle-instrument\",\n    \"triangle-person-digging\",\n    \"triangle\",\n    \"tricycle-adult\",\n    \"tricycle\",\n    \"trillium\",\n    \"trophy-star\",\n    \"trophy\",\n    \"trowel-bricks\",\n    \"trowel\",\n    \"truck-arrow-right\",\n    \"truck-bolt\",\n    \"truck-clock\",\n    \"truck-container-empty\",\n    \"truck-container\",\n    \"truck-droplet\",\n    \"truck-fast\",\n    \"truck-field-un\",\n    \"truck-field\",\n    \"truck-fire\",\n    \"truck-flatbed\",\n    \"truck-front\",\n    \"truck-ladder\",\n    \"truck-medical\",\n    \"truck-monster\",\n    \"truck-moving\",\n    \"truck-pickup\",\n    \"truck-plane\",\n    \"truck-plow\",\n    \"truck-ramp-box\",\n    \"truck-ramp-couch\",\n    \"truck-ramp\",\n    \"truck-tow\",\n    \"truck-utensils\",\n    \"truck\",\n    \"trumpet\",\n    \"tty-answer\",\n    \"tty\",\n    \"tugrik-sign\",\n    \"turkey\",\n    \"turkish-lira-sign\",\n    \"turn-down-left\",\n    \"turn-down-right\",\n    \"turn-down\",\n    \"turn-left-down\",\n    \"turn-left-up\",\n    \"turn-left\",\n    \"turn-right\",\n    \"turn-up\",\n    \"turntable\",\n    \"turtle\",\n    \"tv-music\",\n    \"tv-retro\",\n    \"tv\",\n    \"typewriter\",\n    \"u\",\n    \"ufo-beam\",\n    \"ufo\",\n    \"umbrella-beach\",\n    \"umbrella-simple\",\n    \"umbrella\",\n    \"underline\",\n    \"unicorn\",\n    \"uniform-martial-arts\",\n    \"union\",\n    \"universal-access\",\n    \"unlock-keyhole\",\n    \"unlock\",\n    \"up-down-left-right\",\n    \"up-down\",\n    \"up-from-bracket\",\n    \"up-from-dotted-line\",\n    \"up-from-line\",\n    \"up-left\",\n    \"up-long\",\n    \"up-right-and-down-left-from-center\",\n    \"up-right-from-square\",\n    \"up-right\",\n    \"up-to-bracket\",\n    \"up-to-dotted-line\",\n    \"up-to-line\",\n    \"up\",\n    \"upload\",\n    \"usb-drive\",\n    \"user-alien\",\n    \"user-astronaut\",\n    \"user-beard-bolt\",\n    \"user-bounty-hunter\",\n    \"user-check\",\n    \"user-chef\",\n    \"user-clock\",\n    \"user-cowboy\",\n    \"user-crown\",\n    \"user-doctor-hair-long\",\n    \"user-doctor-hair\",\n    \"user-doctor-message\",\n    \"user-doctor\",\n    \"user-gear\",\n    \"user-graduate\",\n    \"user-group-crown\",\n    \"user-group-simple\",\n    \"user-group\",\n    \"user-hair-buns\",\n    \"user-hair-long\",\n    \"user-hair-mullet\",\n    \"user-hair\",\n    \"user-headset\",\n    \"user-helmet-safety\",\n    \"user-hoodie\",\n    \"user-injured\",\n    \"user-large-slash\",\n    \"user-large\",\n    \"user-lock\",\n    \"user-magnifying-glass\",\n    \"user-minus\",\n    \"user-music\",\n    \"user-ninja\",\n    \"user-nurse-hair-long\",\n    \"user-nurse-hair\",\n    \"user-nurse\",\n    \"user-pen\",\n    \"user-pilot-tie\",\n    \"user-pilot\",\n    \"user-plus\",\n    \"user-police-tie\",\n    \"user-police\",\n    \"user-robot-xmarks\",\n    \"user-robot\",\n    \"user-secret\",\n    \"user-shakespeare\",\n    \"user-shield\",\n    \"user-slash\",\n    \"user-tag\",\n    \"user-tie-hair-long\",\n    \"user-tie-hair\",\n    \"user-tie\",\n    \"user-unlock\",\n    \"user-visor\",\n    \"user-vneck-hair-long\",\n    \"user-vneck-hair\",\n    \"user-vneck\",\n    \"user-xmark\",\n    \"user\",\n    \"users-between-lines\",\n    \"users-gear\",\n    \"users-line\",\n    \"users-medical\",\n    \"users-rays\",\n    \"users-rectangle\",\n    \"users-slash\",\n    \"users-viewfinder\",\n    \"users\",\n    \"utensils-slash\",\n    \"utensils\",\n    \"utility-pole-double\",\n    \"utility-pole\",\n    \"v\",\n    \"vacuum-robot\",\n    \"vacuum\",\n    \"value-absolute\",\n    \"van-shuttle\",\n    \"vault\",\n    \"vector-circle\",\n    \"vector-polygon\",\n    \"vector-square\",\n    \"vent-damper\",\n    \"venus-double\",\n    \"venus-mars\",\n    \"venus\",\n    \"vest-patches\",\n    \"vest\",\n    \"vial-circle-check\",\n    \"vial-virus\",\n    \"vial\",\n    \"vials\",\n    \"video-arrow-down-left\",\n    \"video-arrow-up-right\",\n    \"video-plus\",\n    \"video-slash\",\n    \"video\",\n    \"vihara\",\n    \"violin\",\n    \"virus-covid-slash\",\n    \"virus-covid\",\n    \"virus-slash\",\n    \"virus\",\n    \"viruses\",\n    \"voicemail\",\n    \"volcano\",\n    \"volleyball\",\n    \"volume-high\",\n    \"volume-low\",\n    \"volume-off\",\n    \"volume-slash\",\n    \"volume-xmark\",\n    \"volume\",\n    \"vr-cardboard\",\n    \"w\",\n    \"waffle\",\n    \"wagon-covered\",\n    \"walker\",\n    \"walkie-talkie\",\n    \"wallet\",\n    \"wand-magic-sparkles\",\n    \"wand-magic\",\n    \"wand-sparkles\",\n    \"wand\",\n    \"warehouse-full\",\n    \"warehouse\",\n    \"washing-machine\",\n    \"watch-apple\",\n    \"watch-calculator\",\n    \"watch-fitness\",\n    \"watch-smart\",\n    \"watch\",\n    \"water-arrow-down\",\n    \"water-arrow-up\",\n    \"water-ladder\",\n    \"water\",\n    \"watermelon-slice\",\n    \"wave-pulse\",\n    \"wave-sine\",\n    \"wave-square\",\n    \"wave-triangle\",\n    \"wave\",\n    \"waveform-lines\",\n    \"waveform\",\n    \"waves-sine\",\n    \"web-awesome\",\n    \"webhook\",\n    \"weight-hanging\",\n    \"weight-scale\",\n    \"whale\",\n    \"wheat-awn-circle-exclamation\",\n    \"wheat-awn-slash\",\n    \"wheat-awn\",\n    \"wheat-slash\",\n    \"wheat\",\n    \"wheelchair-move\",\n    \"wheelchair\",\n    \"whiskey-glass-ice\",\n    \"whiskey-glass\",\n    \"whistle\",\n    \"wifi-exclamation\",\n    \"wifi-fair\",\n    \"wifi-slash\",\n    \"wifi-weak\",\n    \"wifi\",\n    \"wind-turbine\",\n    \"wind-warning\",\n    \"wind\",\n    \"window-flip\",\n    \"window-frame-open\",\n    \"window-frame\",\n    \"window-maximize\",\n    \"window-minimize\",\n    \"window-restore\",\n    \"window\",\n    \"windsock\",\n    \"wine-bottle\",\n    \"wine-glass-crack\",\n    \"wine-glass-empty\",\n    \"wine-glass\",\n    \"won-sign\",\n    \"worm\",\n    \"wreath-laurel\",\n    \"wreath\",\n    \"wrench-simple\",\n    \"wrench\",\n    \"x-ray\",\n    \"x\",\n    \"xmark-large\",\n    \"xmark-to-slot\",\n    \"xmark\",\n    \"xmarks-lines\",\n    \"y\",\n    \"yen-sign\",\n    \"yin-yang\",\n    \"z\"\n  ],\n  \"sharpLight\": [\n    \"0\",\n    \"00\",\n    \"1\",\n    \"2\",\n    \"3\",\n    \"360-degrees\",\n    \"4\",\n    \"5\",\n    \"6\",\n    \"7\",\n    \"8\",\n    \"9\",\n    \"a\",\n    \"abacus\",\n    \"accent-grave\",\n    \"acorn\",\n    \"address-book\",\n    \"address-card\",\n    \"air-conditioner\",\n    \"airplay\",\n    \"alarm-clock\",\n    \"alarm-exclamation\",\n    \"alarm-plus\",\n    \"alarm-snooze\",\n    \"album-circle-plus\",\n    \"album-circle-user\",\n    \"album-collection-circle-plus\",\n    \"album-collection-circle-user\",\n    \"album-collection\",\n    \"album\",\n    \"alicorn\",\n    \"alien-8bit\",\n    \"alien\",\n    \"align-center\",\n    \"align-justify\",\n    \"align-left\",\n    \"align-right\",\n    \"align-slash\",\n    \"alt\",\n    \"amp-guitar\",\n    \"ampersand\",\n    \"anchor-circle-check\",\n    \"anchor-circle-exclamation\",\n    \"anchor-circle-xmark\",\n    \"anchor-lock\",\n    \"anchor\",\n    \"angel\",\n    \"angle-90\",\n    \"angle-down\",\n    \"angle-left\",\n    \"angle-right\",\n    \"angle-up\",\n    \"angle\",\n    \"angles-down\",\n    \"angles-left\",\n    \"angles-right\",\n    \"angles-up-down\",\n    \"angles-up\",\n    \"ankh\",\n    \"ant\",\n    \"apartment\",\n    \"aperture\",\n    \"apostrophe\",\n    \"apple-core\",\n    \"apple-whole\",\n    \"archway\",\n    \"arrow-down-1-9\",\n    \"arrow-down-9-1\",\n    \"arrow-down-a-z\",\n    \"arrow-down-arrow-up\",\n    \"arrow-down-big-small\",\n    \"arrow-down-from-arc\",\n    \"arrow-down-from-bracket\",\n    \"arrow-down-from-dotted-line\",\n    \"arrow-down-from-line\",\n    \"arrow-down-left-and-arrow-up-right-to-center\",\n    \"arrow-down-left\",\n    \"arrow-down-long\",\n    \"arrow-down-right\",\n    \"arrow-down-short-wide\",\n    \"arrow-down-small-big\",\n    \"arrow-down-square-triangle\",\n    \"arrow-down-to-arc\",\n    \"arrow-down-to-bracket\",\n    \"arrow-down-to-dotted-line\",\n    \"arrow-down-to-line\",\n    \"arrow-down-to-square\",\n    \"arrow-down-triangle-square\",\n    \"arrow-down-up-across-line\",\n    \"arrow-down-up-lock\",\n    \"arrow-down-wide-short\",\n    \"arrow-down-z-a\",\n    \"arrow-down\",\n    \"arrow-left-from-arc\",\n    \"arrow-left-from-bracket\",\n    \"arrow-left-from-line\",\n    \"arrow-left-long-to-line\",\n    \"arrow-left-long\",\n    \"arrow-left-to-arc\",\n    \"arrow-left-to-bracket\",\n    \"arrow-left-to-line\",\n    \"arrow-left\",\n    \"arrow-pointer\",\n    \"arrow-progress\",\n    \"arrow-right-arrow-left\",\n    \"arrow-right-from-arc\",\n    \"arrow-right-from-bracket\",\n    \"arrow-right-from-line\",\n    \"arrow-right-long-to-line\",\n    \"arrow-right-long\",\n    \"arrow-right-to-arc\",\n    \"arrow-right-to-bracket\",\n    \"arrow-right-to-city\",\n    \"arrow-right-to-line\",\n    \"arrow-right\",\n    \"arrow-rotate-left\",\n    \"arrow-rotate-right\",\n    \"arrow-trend-down\",\n    \"arrow-trend-up\",\n    \"arrow-turn-down-left\",\n    \"arrow-turn-down-right\",\n    \"arrow-turn-down\",\n    \"arrow-turn-left-down\",\n    \"arrow-turn-left-up\",\n    \"arrow-turn-left\",\n    \"arrow-turn-right\",\n    \"arrow-turn-up\",\n    \"arrow-up-1-9\",\n    \"arrow-up-9-1\",\n    \"arrow-up-a-z\",\n    \"arrow-up-arrow-down\",\n    \"arrow-up-big-small\",\n    \"arrow-up-from-arc\",\n    \"arrow-up-from-bracket\",\n    \"arrow-up-from-dotted-line\",\n    \"arrow-up-from-ground-water\",\n    \"arrow-up-from-line\",\n    \"arrow-up-from-square\",\n    \"arrow-up-from-water-pump\",\n    \"arrow-up-left-from-circle\",\n    \"arrow-up-left\",\n    \"arrow-up-long\",\n    \"arrow-up-right-and-arrow-down-left-from-center\",\n    \"arrow-up-right-dots\",\n    \"arrow-up-right-from-square\",\n    \"arrow-up-right\",\n    \"arrow-up-short-wide\",\n    \"arrow-up-small-big\",\n    \"arrow-up-square-triangle\",\n    \"arrow-up-to-arc\",\n    \"arrow-up-to-bracket\",\n    \"arrow-up-to-dotted-line\",\n    \"arrow-up-to-line\",\n    \"arrow-up-triangle-square\",\n    \"arrow-up-wide-short\",\n    \"arrow-up-z-a\",\n    \"arrow-up\",\n    \"arrows-cross\",\n    \"arrows-down-to-line\",\n    \"arrows-down-to-people\",\n    \"arrows-from-dotted-line\",\n    \"arrows-from-line\",\n    \"arrows-left-right-to-line\",\n    \"arrows-left-right\",\n    \"arrows-maximize\",\n    \"arrows-minimize\",\n    \"arrows-repeat-1\",\n    \"arrows-repeat\",\n    \"arrows-retweet\",\n    \"arrows-rotate-reverse\",\n    \"arrows-rotate\",\n    \"arrows-spin\",\n    \"arrows-split-up-and-left\",\n    \"arrows-to-circle\",\n    \"arrows-to-dot\",\n    \"arrows-to-dotted-line\",\n    \"arrows-to-eye\",\n    \"arrows-to-line\",\n    \"arrows-turn-right\",\n    \"arrows-turn-to-dots\",\n    \"arrows-up-down-left-right\",\n    \"arrows-up-down\",\n    \"arrows-up-to-line\",\n    \"asterisk\",\n    \"at\",\n    \"atom-simple\",\n    \"atom\",\n    \"audio-description-slash\",\n    \"audio-description\",\n    \"austral-sign\",\n    \"avocado\",\n    \"award-simple\",\n    \"award\",\n    \"axe-battle\",\n    \"axe\",\n    \"b\",\n    \"baby-carriage\",\n    \"baby\",\n    \"backpack\",\n    \"backward-fast\",\n    \"backward-step\",\n    \"backward\",\n    \"bacon\",\n    \"bacteria\",\n    \"bacterium\",\n    \"badge-check\",\n    \"badge-dollar\",\n    \"badge-percent\",\n    \"badge-sheriff\",\n    \"badge\",\n    \"badger-honey\",\n    \"badminton\",\n    \"bag-seedling\",\n    \"bag-shopping-minus\",\n    \"bag-shopping-plus\",\n    \"bag-shopping\",\n    \"bagel\",\n    \"bags-shopping\",\n    \"baguette\",\n    \"bahai\",\n    \"baht-sign\",\n    \"ball-pile\",\n    \"balloon\",\n    \"balloons\",\n    \"ballot-check\",\n    \"ballot\",\n    \"ban-bug\",\n    \"ban-parking\",\n    \"ban-smoking\",\n    \"ban\",\n    \"banana\",\n    \"bandage\",\n    \"bangladeshi-taka-sign\",\n    \"banjo\",\n    \"barcode-read\",\n    \"barcode-scan\",\n    \"barcode\",\n    \"bars-filter\",\n    \"bars-progress\",\n    \"bars-sort\",\n    \"bars-staggered\",\n    \"bars\",\n    \"baseball-bat-ball\",\n    \"baseball\",\n    \"basket-shopping-minus\",\n    \"basket-shopping-plus\",\n    \"basket-shopping-simple\",\n    \"basket-shopping\",\n    \"basketball-hoop\",\n    \"basketball\",\n    \"bat\",\n    \"bath\",\n    \"battery-bolt\",\n    \"battery-empty\",\n    \"battery-exclamation\",\n    \"battery-full\",\n    \"battery-half\",\n    \"battery-low\",\n    \"battery-quarter\",\n    \"battery-slash\",\n    \"battery-three-quarters\",\n    \"bed-bunk\",\n    \"bed-empty\",\n    \"bed-front\",\n    \"bed-pulse\",\n    \"bed\",\n    \"bee\",\n    \"beer-mug-empty\",\n    \"beer-mug\",\n    \"bell-concierge\",\n    \"bell-exclamation\",\n    \"bell-on\",\n    \"bell-plus\",\n    \"bell-ring\",\n    \"bell-school-slash\",\n    \"bell-school\",\n    \"bell-slash\",\n    \"bell\",\n    \"bells\",\n    \"bench-tree\",\n    \"bezier-curve\",\n    \"bicycle\",\n    \"billboard\",\n    \"bin-bottles-recycle\",\n    \"bin-bottles\",\n    \"bin-recycle\",\n    \"binary-circle-check\",\n    \"binary-lock\",\n    \"binary-slash\",\n    \"binary\",\n    \"binoculars\",\n    \"biohazard\",\n    \"bird\",\n    \"bitcoin-sign\",\n    \"blanket-fire\",\n    \"blanket\",\n    \"blender-phone\",\n    \"blender\",\n    \"blinds-open\",\n    \"blinds-raised\",\n    \"blinds\",\n    \"block-brick-fire\",\n    \"block-brick\",\n    \"block-question\",\n    \"block-quote\",\n    \"block\",\n    \"blog\",\n    \"blueberries\",\n    \"bluetooth\",\n    \"bold\",\n    \"bolt-auto\",\n    \"bolt-lightning\",\n    \"bolt-slash\",\n    \"bolt\",\n    \"bomb\",\n    \"bone-break\",\n    \"bone\",\n    \"bong\",\n    \"book-arrow-right\",\n    \"book-arrow-up\",\n    \"book-atlas\",\n    \"book-bible\",\n    \"book-blank\",\n    \"book-bookmark\",\n    \"book-circle-arrow-right\",\n    \"book-circle-arrow-up\",\n    \"book-copy\",\n    \"book-font\",\n    \"book-heart\",\n    \"book-journal-whills\",\n    \"book-medical\",\n    \"book-open-cover\",\n    \"book-open-reader\",\n    \"book-open\",\n    \"book-quran\",\n    \"book-section\",\n    \"book-skull\",\n    \"book-sparkles\",\n    \"book-tanakh\",\n    \"book-user\",\n    \"book\",\n    \"bookmark-slash\",\n    \"bookmark\",\n    \"books-medical\",\n    \"books\",\n    \"boombox\",\n    \"boot-heeled\",\n    \"boot\",\n    \"booth-curtain\",\n    \"border-all\",\n    \"border-bottom-right\",\n    \"border-bottom\",\n    \"border-center-h\",\n    \"border-center-v\",\n    \"border-inner\",\n    \"border-left\",\n    \"border-none\",\n    \"border-outer\",\n    \"border-right\",\n    \"border-top-left\",\n    \"border-top\",\n    \"bore-hole\",\n    \"bottle-baby\",\n    \"bottle-droplet\",\n    \"bottle-water\",\n    \"bow-arrow\",\n    \"bowl-chopsticks-noodles\",\n    \"bowl-chopsticks\",\n    \"bowl-food\",\n    \"bowl-hot\",\n    \"bowl-rice\",\n    \"bowl-scoop\",\n    \"bowl-scoops\",\n    \"bowl-soft-serve\",\n    \"bowl-spoon\",\n    \"bowling-ball-pin\",\n    \"bowling-ball\",\n    \"bowling-pins\",\n    \"box-archive\",\n    \"box-ballot\",\n    \"box-check\",\n    \"box-circle-check\",\n    \"box-dollar\",\n    \"box-heart\",\n    \"box-open-full\",\n    \"box-open\",\n    \"box-taped\",\n    \"box-tissue\",\n    \"box\",\n    \"boxes-packing\",\n    \"boxes-stacked\",\n    \"boxing-glove\",\n    \"bracket-curly-right\",\n    \"bracket-curly\",\n    \"bracket-round-right\",\n    \"bracket-round\",\n    \"bracket-square-right\",\n    \"bracket-square\",\n    \"brackets-curly\",\n    \"brackets-round\",\n    \"brackets-square\",\n    \"braille\",\n    \"brain-arrow-curved-right\",\n    \"brain-circuit\",\n    \"brain\",\n    \"brake-warning\",\n    \"brazilian-real-sign\",\n    \"bread-loaf\",\n    \"bread-slice-butter\",\n    \"bread-slice\",\n    \"bridge-circle-check\",\n    \"bridge-circle-exclamation\",\n    \"bridge-circle-xmark\",\n    \"bridge-lock\",\n    \"bridge-suspension\",\n    \"bridge-water\",\n    \"bridge\",\n    \"briefcase-arrow-right\",\n    \"briefcase-blank\",\n    \"briefcase-medical\",\n    \"briefcase\",\n    \"brightness-low\",\n    \"brightness\",\n    \"bring-forward\",\n    \"bring-front\",\n    \"broccoli\",\n    \"broom-ball\",\n    \"broom-wide\",\n    \"broom\",\n    \"browser\",\n    \"browsers\",\n    \"brush\",\n    \"bucket\",\n    \"bug-slash\",\n    \"bug\",\n    \"bugs\",\n    \"building-circle-arrow-right\",\n    \"building-circle-check\",\n    \"building-circle-exclamation\",\n    \"building-circle-xmark\",\n    \"building-columns\",\n    \"building-flag\",\n    \"building-lock\",\n    \"building-magnifying-glass\",\n    \"building-memo\",\n    \"building-ngo\",\n    \"building-shield\",\n    \"building-un\",\n    \"building-user\",\n    \"building-wheat\",\n    \"building\",\n    \"buildings\",\n    \"bulldozer\",\n    \"bullhorn\",\n    \"bullseye-arrow\",\n    \"bullseye-pointer\",\n    \"bullseye\",\n    \"buoy-mooring\",\n    \"buoy\",\n    \"burger-cheese\",\n    \"burger-fries\",\n    \"burger-glass\",\n    \"burger-lettuce\",\n    \"burger-soda\",\n    \"burger\",\n    \"burrito\",\n    \"burst\",\n    \"bus-school\",\n    \"bus-simple\",\n    \"bus\",\n    \"business-time\",\n    \"butter\",\n    \"c\",\n    \"cabin\",\n    \"cabinet-filing\",\n    \"cable-car\",\n    \"cactus\",\n    \"caduceus\",\n    \"cake-candles\",\n    \"cake-slice\",\n    \"calculator-simple\",\n    \"calculator\",\n    \"calendar-arrow-down\",\n    \"calendar-arrow-up\",\n    \"calendar-check\",\n    \"calendar-circle-exclamation\",\n    \"calendar-circle-minus\",\n    \"calendar-circle-plus\",\n    \"calendar-circle-user\",\n    \"calendar-clock\",\n    \"calendar-day\",\n    \"calendar-days\",\n    \"calendar-exclamation\",\n    \"calendar-heart\",\n    \"calendar-image\",\n    \"calendar-lines-pen\",\n    \"calendar-lines\",\n    \"calendar-minus\",\n    \"calendar-pen\",\n    \"calendar-plus\",\n    \"calendar-range\",\n    \"calendar-star\",\n    \"calendar-users\",\n    \"calendar-week\",\n    \"calendar-xmark\",\n    \"calendar\",\n    \"calendars\",\n    \"camcorder\",\n    \"camera-cctv\",\n    \"camera-movie\",\n    \"camera-polaroid\",\n    \"camera-retro\",\n    \"camera-rotate\",\n    \"camera-security\",\n    \"camera-slash\",\n    \"camera-viewfinder\",\n    \"camera-web-slash\",\n    \"camera-web\",\n    \"camera\",\n    \"campfire\",\n    \"campground\",\n    \"can-food\",\n    \"candle-holder\",\n    \"candy-bar\",\n    \"candy-cane\",\n    \"candy-corn\",\n    \"candy\",\n    \"cannabis\",\n    \"cannon\",\n    \"capsules\",\n    \"car-battery\",\n    \"car-bolt\",\n    \"car-building\",\n    \"car-bump\",\n    \"car-burst\",\n    \"car-bus\",\n    \"car-circle-bolt\",\n    \"car-garage\",\n    \"car-mirrors\",\n    \"car-on\",\n    \"car-rear\",\n    \"car-side-bolt\",\n    \"car-side\",\n    \"car-tilt\",\n    \"car-tunnel\",\n    \"car-wash\",\n    \"car-wrench\",\n    \"car\",\n    \"caravan-simple\",\n    \"caravan\",\n    \"card-club\",\n    \"card-diamond\",\n    \"card-heart\",\n    \"card-spade\",\n    \"cards-blank\",\n    \"cards\",\n    \"caret-down\",\n    \"caret-left\",\n    \"caret-right\",\n    \"caret-up\",\n    \"carpool\",\n    \"carrot\",\n    \"cars\",\n    \"cart-arrow-down\",\n    \"cart-arrow-up\",\n    \"cart-circle-arrow-down\",\n    \"cart-circle-arrow-up\",\n    \"cart-circle-check\",\n    \"cart-circle-exclamation\",\n    \"cart-circle-plus\",\n    \"cart-circle-xmark\",\n    \"cart-flatbed-boxes\",\n    \"cart-flatbed-empty\",\n    \"cart-flatbed-suitcase\",\n    \"cart-flatbed\",\n    \"cart-minus\",\n    \"cart-plus\",\n    \"cart-shopping-fast\",\n    \"cart-shopping\",\n    \"cart-xmark\",\n    \"cash-register\",\n    \"cassette-betamax\",\n    \"cassette-tape\",\n    \"cassette-vhs\",\n    \"castle\",\n    \"cat-space\",\n    \"cat\",\n    \"cauldron\",\n    \"cedi-sign\",\n    \"cent-sign\",\n    \"certificate\",\n    \"chair-office\",\n    \"chair\",\n    \"chalkboard-user\",\n    \"chalkboard\",\n    \"champagne-glass\",\n    \"champagne-glasses\",\n    \"charging-station\",\n    \"chart-area\",\n    \"chart-bar\",\n    \"chart-bullet\",\n    \"chart-candlestick\",\n    \"chart-column\",\n    \"chart-diagram\",\n    \"chart-fft\",\n    \"chart-gantt\",\n    \"chart-kanban\",\n    \"chart-line-down\",\n    \"chart-line-up-down\",\n    \"chart-line-up\",\n    \"chart-line\",\n    \"chart-mixed-up-circle-currency\",\n    \"chart-mixed-up-circle-dollar\",\n    \"chart-mixed\",\n    \"chart-network\",\n    \"chart-pie-simple-circle-currency\",\n    \"chart-pie-simple-circle-dollar\",\n    \"chart-pie-simple\",\n    \"chart-pie\",\n    \"chart-pyramid\",\n    \"chart-radar\",\n    \"chart-scatter-3d\",\n    \"chart-scatter-bubble\",\n    \"chart-scatter\",\n    \"chart-simple-horizontal\",\n    \"chart-simple\",\n    \"chart-sine\",\n    \"chart-tree-map\",\n    \"chart-user\",\n    \"chart-waterfall\",\n    \"check-double\",\n    \"check-to-slot\",\n    \"check\",\n    \"cheese-swiss\",\n    \"cheese\",\n    \"cherries\",\n    \"chess-bishop-piece\",\n    \"chess-bishop\",\n    \"chess-board\",\n    \"chess-clock-flip\",\n    \"chess-clock\",\n    \"chess-king-piece\",\n    \"chess-king\",\n    \"chess-knight-piece\",\n    \"chess-knight\",\n    \"chess-pawn-piece\",\n    \"chess-pawn\",\n    \"chess-queen-piece\",\n    \"chess-queen\",\n    \"chess-rook-piece\",\n    \"chess-rook\",\n    \"chess\",\n    \"chestnut\",\n    \"chevron-down\",\n    \"chevron-left\",\n    \"chevron-right\",\n    \"chevron-up\",\n    \"chevrons-down\",\n    \"chevrons-left\",\n    \"chevrons-right\",\n    \"chevrons-up\",\n    \"chf-sign\",\n    \"child-combatant\",\n    \"child-dress\",\n    \"child-reaching\",\n    \"child\",\n    \"children\",\n    \"chimney\",\n    \"chopsticks\",\n    \"church\",\n    \"circle-0\",\n    \"circle-1\",\n    \"circle-2\",\n    \"circle-3\",\n    \"circle-4\",\n    \"circle-5\",\n    \"circle-6\",\n    \"circle-7\",\n    \"circle-8\",\n    \"circle-9\",\n    \"circle-a\",\n    \"circle-ampersand\",\n    \"circle-arrow-down-left\",\n    \"circle-arrow-down-right\",\n    \"circle-arrow-down\",\n    \"circle-arrow-left\",\n    \"circle-arrow-right\",\n    \"circle-arrow-up-left\",\n    \"circle-arrow-up-right\",\n    \"circle-arrow-up\",\n    \"circle-b\",\n    \"circle-bolt\",\n    \"circle-book-open\",\n    \"circle-bookmark\",\n    \"circle-c\",\n    \"circle-calendar\",\n    \"circle-camera\",\n    \"circle-caret-down\",\n    \"circle-caret-left\",\n    \"circle-caret-right\",\n    \"circle-caret-up\",\n    \"circle-check\",\n    \"circle-chevron-down\",\n    \"circle-chevron-left\",\n    \"circle-chevron-right\",\n    \"circle-chevron-up\",\n    \"circle-d\",\n    \"circle-dashed\",\n    \"circle-divide\",\n    \"circle-dollar-to-slot\",\n    \"circle-dollar\",\n    \"circle-dot\",\n    \"circle-down-left\",\n    \"circle-down-right\",\n    \"circle-down\",\n    \"circle-e\",\n    \"circle-ellipsis-vertical\",\n    \"circle-ellipsis\",\n    \"circle-envelope\",\n    \"circle-euro\",\n    \"circle-exclamation-check\",\n    \"circle-exclamation\",\n    \"circle-f\",\n    \"circle-g\",\n    \"circle-gf\",\n    \"circle-h\",\n    \"circle-half-stroke\",\n    \"circle-half\",\n    \"circle-heart\",\n    \"circle-i\",\n    \"circle-info\",\n    \"circle-j\",\n    \"circle-k\",\n    \"circle-l\",\n    \"circle-left\",\n    \"circle-location-arrow\",\n    \"circle-m\",\n    \"circle-microphone-lines\",\n    \"circle-microphone\",\n    \"circle-minus\",\n    \"circle-n\",\n    \"circle-nodes\",\n    \"circle-notch\",\n    \"circle-o\",\n    \"circle-p\",\n    \"circle-parking\",\n    \"circle-pause\",\n    \"circle-phone-flip\",\n    \"circle-phone-hangup\",\n    \"circle-phone\",\n    \"circle-play\",\n    \"circle-plus\",\n    \"circle-q\",\n    \"circle-quarter-stroke\",\n    \"circle-quarter\",\n    \"circle-quarters\",\n    \"circle-question\",\n    \"circle-r\",\n    \"circle-radiation\",\n    \"circle-right\",\n    \"circle-s\",\n    \"circle-small\",\n    \"circle-sort-down\",\n    \"circle-sort-up\",\n    \"circle-sort\",\n    \"circle-star\",\n    \"circle-sterling\",\n    \"circle-stop\",\n    \"circle-t\",\n    \"circle-three-quarters-stroke\",\n    \"circle-three-quarters\",\n    \"circle-trash\",\n    \"circle-u\",\n    \"circle-up-left\",\n    \"circle-up-right\",\n    \"circle-up\",\n    \"circle-user\",\n    \"circle-v\",\n    \"circle-video\",\n    \"circle-w\",\n    \"circle-waveform-lines\",\n    \"circle-wifi-circle-wifi\",\n    \"circle-wifi\",\n    \"circle-x\",\n    \"circle-xmark\",\n    \"circle-y\",\n    \"circle-yen\",\n    \"circle-z\",\n    \"circle\",\n    \"circles-overlap-3\",\n    \"circles-overlap\",\n    \"citrus-slice\",\n    \"citrus\",\n    \"city\",\n    \"clapperboard-play\",\n    \"clapperboard\",\n    \"clarinet\",\n    \"claw-marks\",\n    \"clipboard-check\",\n    \"clipboard-list-check\",\n    \"clipboard-list\",\n    \"clipboard-medical\",\n    \"clipboard-prescription\",\n    \"clipboard-question\",\n    \"clipboard-user\",\n    \"clipboard\",\n    \"clock-desk\",\n    \"clock-eight-thirty\",\n    \"clock-eight\",\n    \"clock-eleven-thirty\",\n    \"clock-eleven\",\n    \"clock-five-thirty\",\n    \"clock-five\",\n    \"clock-four-thirty\",\n    \"clock-nine-thirty\",\n    \"clock-nine\",\n    \"clock-one-thirty\",\n    \"clock-one\",\n    \"clock-rotate-left\",\n    \"clock-seven-thirty\",\n    \"clock-seven\",\n    \"clock-six-thirty\",\n    \"clock-six\",\n    \"clock-ten-thirty\",\n    \"clock-ten\",\n    \"clock-three-thirty\",\n    \"clock-three\",\n    \"clock-twelve-thirty\",\n    \"clock-twelve\",\n    \"clock-two-thirty\",\n    \"clock-two\",\n    \"clock\",\n    \"clone\",\n    \"closed-captioning-slash\",\n    \"closed-captioning\",\n    \"clothes-hanger\",\n    \"cloud-arrow-down\",\n    \"cloud-arrow-up\",\n    \"cloud-binary\",\n    \"cloud-bolt-moon\",\n    \"cloud-bolt-sun\",\n    \"cloud-bolt\",\n    \"cloud-check\",\n    \"cloud-drizzle\",\n    \"cloud-exclamation\",\n    \"cloud-fog\",\n    \"cloud-hail-mixed\",\n    \"cloud-hail\",\n    \"cloud-meatball\",\n    \"cloud-minus\",\n    \"cloud-moon-rain\",\n    \"cloud-moon\",\n    \"cloud-music\",\n    \"cloud-plus\",\n    \"cloud-question\",\n    \"cloud-rain\",\n    \"cloud-rainbow\",\n    \"cloud-showers-heavy\",\n    \"cloud-showers-water\",\n    \"cloud-showers\",\n    \"cloud-slash\",\n    \"cloud-sleet\",\n    \"cloud-snow\",\n    \"cloud-sun-rain\",\n    \"cloud-sun\",\n    \"cloud-word\",\n    \"cloud-xmark\",\n    \"cloud\",\n    \"clouds-moon\",\n    \"clouds-sun\",\n    \"clouds\",\n    \"clover\",\n    \"club\",\n    \"coconut\",\n    \"code-branch\",\n    \"code-commit\",\n    \"code-compare\",\n    \"code-fork\",\n    \"code-merge\",\n    \"code-pull-request-closed\",\n    \"code-pull-request-draft\",\n    \"code-pull-request\",\n    \"code-simple\",\n    \"code\",\n    \"coffee-bean\",\n    \"coffee-beans\",\n    \"coffee-pot\",\n    \"coffin-cross\",\n    \"coffin\",\n    \"coin-blank\",\n    \"coin-front\",\n    \"coin-vertical\",\n    \"coin\",\n    \"coins\",\n    \"colon-sign\",\n    \"colon\",\n    \"columns-3\",\n    \"comet\",\n    \"comma\",\n    \"command\",\n    \"comment-arrow-down\",\n    \"comment-arrow-up-right\",\n    \"comment-arrow-up\",\n    \"comment-captions\",\n    \"comment-check\",\n    \"comment-code\",\n    \"comment-dollar\",\n    \"comment-dots\",\n    \"comment-exclamation\",\n    \"comment-heart\",\n    \"comment-image\",\n    \"comment-lines\",\n    \"comment-medical\",\n    \"comment-middle-top\",\n    \"comment-middle\",\n    \"comment-minus\",\n    \"comment-music\",\n    \"comment-nodes\",\n    \"comment-pen\",\n    \"comment-plus\",\n    \"comment-question\",\n    \"comment-quote\",\n    \"comment-slash\",\n    \"comment-smile\",\n    \"comment-sms\",\n    \"comment-text\",\n    \"comment-xmark\",\n    \"comment\",\n    \"comments-dollar\",\n    \"comments-question-check\",\n    \"comments-question\",\n    \"comments\",\n    \"compact-disc\",\n    \"compass-drafting\",\n    \"compass-slash\",\n    \"compass\",\n    \"compress-wide\",\n    \"compress\",\n    \"computer-classic\",\n    \"computer-mouse-scrollwheel\",\n    \"computer-mouse\",\n    \"computer-speaker\",\n    \"computer\",\n    \"container-storage\",\n    \"conveyor-belt-arm\",\n    \"conveyor-belt-boxes\",\n    \"conveyor-belt-empty\",\n    \"conveyor-belt\",\n    \"cookie-bite\",\n    \"cookie\",\n    \"copy\",\n    \"copyright\",\n    \"corn\",\n    \"corner\",\n    \"couch\",\n    \"court-sport\",\n    \"cow\",\n    \"cowbell-circle-plus\",\n    \"cowbell\",\n    \"crab\",\n    \"crate-apple\",\n    \"crate-empty\",\n    \"credit-card-blank\",\n    \"credit-card-front\",\n    \"credit-card\",\n    \"cricket-bat-ball\",\n    \"croissant\",\n    \"crop-simple\",\n    \"crop\",\n    \"cross\",\n    \"crosshairs-simple\",\n    \"crosshairs\",\n    \"crow\",\n    \"crown\",\n    \"crutch\",\n    \"crutches\",\n    \"cruzeiro-sign\",\n    \"crystal-ball\",\n    \"cube\",\n    \"cubes-stacked\",\n    \"cubes\",\n    \"cucumber\",\n    \"cup-straw-swoosh\",\n    \"cup-straw\",\n    \"cup-togo\",\n    \"cupcake\",\n    \"curling-stone\",\n    \"custard\",\n    \"d\",\n    \"dagger\",\n    \"dash\",\n    \"database\",\n    \"deer-rudolph\",\n    \"deer\",\n    \"delete-left\",\n    \"delete-right\",\n    \"democrat\",\n    \"desktop-arrow-down\",\n    \"desktop\",\n    \"dharmachakra\",\n    \"diagram-cells\",\n    \"diagram-lean-canvas\",\n    \"diagram-nested\",\n    \"diagram-next\",\n    \"diagram-predecessor\",\n    \"diagram-previous\",\n    \"diagram-project\",\n    \"diagram-sankey\",\n    \"diagram-subtask\",\n    \"diagram-successor\",\n    \"diagram-venn\",\n    \"dial-high\",\n    \"dial-low\",\n    \"dial-max\",\n    \"dial-med-low\",\n    \"dial-med\",\n    \"dial-min\",\n    \"dial-off\",\n    \"dial\",\n    \"diamond-exclamation\",\n    \"diamond-half-stroke\",\n    \"diamond-half\",\n    \"diamond-turn-right\",\n    \"diamond\",\n    \"diamonds-4\",\n    \"dice-d10\",\n    \"dice-d12\",\n    \"dice-d20\",\n    \"dice-d4\",\n    \"dice-d6\",\n    \"dice-d8\",\n    \"dice-five\",\n    \"dice-four\",\n    \"dice-one\",\n    \"dice-six\",\n    \"dice-three\",\n    \"dice-two\",\n    \"dice\",\n    \"dinosaur\",\n    \"diploma\",\n    \"disc-drive\",\n    \"disease\",\n    \"display-arrow-down\",\n    \"display-chart-up-circle-currency\",\n    \"display-chart-up-circle-dollar\",\n    \"display-chart-up\",\n    \"display-code\",\n    \"display-medical\",\n    \"display-slash\",\n    \"display\",\n    \"distribute-spacing-horizontal\",\n    \"distribute-spacing-vertical\",\n    \"ditto\",\n    \"divide\",\n    \"dna\",\n    \"do-not-enter\",\n    \"dog-leashed\",\n    \"dog\",\n    \"dollar-sign\",\n    \"dolly-empty\",\n    \"dolly\",\n    \"dolphin\",\n    \"dong-sign\",\n    \"donut\",\n    \"door-closed\",\n    \"door-open\",\n    \"dove\",\n    \"down-from-bracket\",\n    \"down-from-dotted-line\",\n    \"down-from-line\",\n    \"down-left-and-up-right-to-center\",\n    \"down-left\",\n    \"down-long\",\n    \"down-right\",\n    \"down-to-bracket\",\n    \"down-to-dotted-line\",\n    \"down-to-line\",\n    \"down\",\n    \"download\",\n    \"dragon\",\n    \"draw-circle\",\n    \"draw-polygon\",\n    \"draw-square\",\n    \"dreidel\",\n    \"drone-front\",\n    \"drone\",\n    \"droplet-degree\",\n    \"droplet-percent\",\n    \"droplet-slash\",\n    \"droplet\",\n    \"drum-steelpan\",\n    \"drum\",\n    \"drumstick-bite\",\n    \"drumstick\",\n    \"dryer-heat\",\n    \"dryer\",\n    \"duck\",\n    \"dumbbell\",\n    \"dumpster-fire\",\n    \"dumpster\",\n    \"dungeon\",\n    \"e\",\n    \"ear-deaf\",\n    \"ear-listen\",\n    \"ear-muffs\",\n    \"ear\",\n    \"earth-africa\",\n    \"earth-americas\",\n    \"earth-asia\",\n    \"earth-europe\",\n    \"earth-oceania\",\n    \"eclipse\",\n    \"egg-fried\",\n    \"egg\",\n    \"eggplant\",\n    \"eject\",\n    \"elephant\",\n    \"elevator\",\n    \"ellipsis-stroke-vertical\",\n    \"ellipsis-stroke\",\n    \"ellipsis-vertical\",\n    \"ellipsis\",\n    \"empty-set\",\n    \"engine-warning\",\n    \"engine\",\n    \"envelope-circle-check\",\n    \"envelope-dot\",\n    \"envelope-open-dollar\",\n    \"envelope-open-text\",\n    \"envelope-open\",\n    \"envelope\",\n    \"envelopes-bulk\",\n    \"envelopes\",\n    \"equals\",\n    \"eraser\",\n    \"escalator\",\n    \"ethernet\",\n    \"euro-sign\",\n    \"excavator\",\n    \"exclamation\",\n    \"expand-wide\",\n    \"expand\",\n    \"explosion\",\n    \"eye-dropper-full\",\n    \"eye-dropper-half\",\n    \"eye-dropper\",\n    \"eye-evil\",\n    \"eye-low-vision\",\n    \"eye-slash\",\n    \"eye\",\n    \"eyes\",\n    \"f\",\n    \"face-angry-horns\",\n    \"face-angry\",\n    \"face-anguished\",\n    \"face-anxious-sweat\",\n    \"face-astonished\",\n    \"face-awesome\",\n    \"face-beam-hand-over-mouth\",\n    \"face-clouds\",\n    \"face-confounded\",\n    \"face-confused\",\n    \"face-cowboy-hat\",\n    \"face-diagonal-mouth\",\n    \"face-disappointed\",\n    \"face-disguise\",\n    \"face-dizzy\",\n    \"face-dotted\",\n    \"face-downcast-sweat\",\n    \"face-drooling\",\n    \"face-exhaling\",\n    \"face-explode\",\n    \"face-expressionless\",\n    \"face-eyes-xmarks\",\n    \"face-fearful\",\n    \"face-flushed\",\n    \"face-frown-open\",\n    \"face-frown-slight\",\n    \"face-frown\",\n    \"face-glasses\",\n    \"face-grimace\",\n    \"face-grin-beam-sweat\",\n    \"face-grin-beam\",\n    \"face-grin-hearts\",\n    \"face-grin-squint-tears\",\n    \"face-grin-squint\",\n    \"face-grin-stars\",\n    \"face-grin-tears\",\n    \"face-grin-tongue-squint\",\n    \"face-grin-tongue-wink\",\n    \"face-grin-tongue\",\n    \"face-grin-wide\",\n    \"face-grin-wink\",\n    \"face-grin\",\n    \"face-hand-over-mouth\",\n    \"face-hand-peeking\",\n    \"face-hand-yawn\",\n    \"face-head-bandage\",\n    \"face-holding-back-tears\",\n    \"face-hushed\",\n    \"face-icicles\",\n    \"face-kiss-beam\",\n    \"face-kiss-closed-eyes\",\n    \"face-kiss-wink-heart\",\n    \"face-kiss\",\n    \"face-laugh-beam\",\n    \"face-laugh-squint\",\n    \"face-laugh-wink\",\n    \"face-laugh\",\n    \"face-lying\",\n    \"face-mask\",\n    \"face-meh-blank\",\n    \"face-meh\",\n    \"face-melting\",\n    \"face-monocle\",\n    \"face-nauseated\",\n    \"face-nose-steam\",\n    \"face-party\",\n    \"face-pensive\",\n    \"face-persevering\",\n    \"face-pleading\",\n    \"face-pouting\",\n    \"face-raised-eyebrow\",\n    \"face-relieved\",\n    \"face-rolling-eyes\",\n    \"face-sad-cry\",\n    \"face-sad-sweat\",\n    \"face-sad-tear\",\n    \"face-saluting\",\n    \"face-scream\",\n    \"face-shush\",\n    \"face-sleeping\",\n    \"face-sleepy\",\n    \"face-smile-beam\",\n    \"face-smile-halo\",\n    \"face-smile-hearts\",\n    \"face-smile-horns\",\n    \"face-smile-plus\",\n    \"face-smile-relaxed\",\n    \"face-smile-tear\",\n    \"face-smile-tongue\",\n    \"face-smile-upside-down\",\n    \"face-smile-wink\",\n    \"face-smile\",\n    \"face-smiling-hands\",\n    \"face-smirking\",\n    \"face-spiral-eyes\",\n    \"face-sunglasses\",\n    \"face-surprise\",\n    \"face-swear\",\n    \"face-thermometer\",\n    \"face-thinking\",\n    \"face-tired\",\n    \"face-tissue\",\n    \"face-tongue-money\",\n    \"face-tongue-sweat\",\n    \"face-unamused\",\n    \"face-viewfinder\",\n    \"face-vomit\",\n    \"face-weary\",\n    \"face-woozy\",\n    \"face-worried\",\n    \"face-zany\",\n    \"face-zipper\",\n    \"falafel\",\n    \"family-dress\",\n    \"family-pants\",\n    \"family\",\n    \"fan-table\",\n    \"fan\",\n    \"farm\",\n    \"faucet-drip\",\n    \"faucet\",\n    \"fax\",\n    \"feather-pointed\",\n    \"feather\",\n    \"fence\",\n    \"ferris-wheel\",\n    \"ferry\",\n    \"field-hockey-stick-ball\",\n    \"file-arrow-down\",\n    \"file-arrow-up\",\n    \"file-audio\",\n    \"file-binary\",\n    \"file-cad\",\n    \"file-certificate\",\n    \"file-chart-column\",\n    \"file-chart-pie\",\n    \"file-check\",\n    \"file-circle-check\",\n    \"file-circle-exclamation\",\n    \"file-circle-info\",\n    \"file-circle-minus\",\n    \"file-circle-plus\",\n    \"file-circle-question\",\n    \"file-circle-xmark\",\n    \"file-code\",\n    \"file-contract\",\n    \"file-csv\",\n    \"file-dashed-line\",\n    \"file-doc\",\n    \"file-eps\",\n    \"file-excel\",\n    \"file-exclamation\",\n    \"file-export\",\n    \"file-fragment\",\n    \"file-gif\",\n    \"file-half-dashed\",\n    \"file-heart\",\n    \"file-image\",\n    \"file-import\",\n    \"file-invoice-dollar\",\n    \"file-invoice\",\n    \"file-jpg\",\n    \"file-lines\",\n    \"file-lock\",\n    \"file-magnifying-glass\",\n    \"file-medical\",\n    \"file-minus\",\n    \"file-mov\",\n    \"file-mp3\",\n    \"file-mp4\",\n    \"file-music\",\n    \"file-pdf\",\n    \"file-pen\",\n    \"file-plus-minus\",\n    \"file-plus\",\n    \"file-png\",\n    \"file-powerpoint\",\n    \"file-ppt\",\n    \"file-prescription\",\n    \"file-shield\",\n    \"file-signature\",\n    \"file-slash\",\n    \"file-spreadsheet\",\n    \"file-svg\",\n    \"file-user\",\n    \"file-vector\",\n    \"file-video\",\n    \"file-waveform\",\n    \"file-word\",\n    \"file-xls\",\n    \"file-xmark\",\n    \"file-xml\",\n    \"file-zip\",\n    \"file-zipper\",\n    \"file\",\n    \"files-medical\",\n    \"files\",\n    \"fill-drip\",\n    \"fill\",\n    \"film-canister\",\n    \"film-simple\",\n    \"film-slash\",\n    \"film\",\n    \"films\",\n    \"filter-circle-dollar\",\n    \"filter-circle-xmark\",\n    \"filter-list\",\n    \"filter-slash\",\n    \"filter\",\n    \"filters\",\n    \"fingerprint\",\n    \"fire-burner\",\n    \"fire-extinguisher\",\n    \"fire-flame-curved\",\n    \"fire-flame-simple\",\n    \"fire-flame\",\n    \"fire-hydrant\",\n    \"fire-smoke\",\n    \"fire\",\n    \"fireplace\",\n    \"fish-bones\",\n    \"fish-cooked\",\n    \"fish-fins\",\n    \"fish\",\n    \"fishing-rod\",\n    \"flag-checkered\",\n    \"flag-pennant\",\n    \"flag-swallowtail\",\n    \"flag-usa\",\n    \"flag\",\n    \"flashlight\",\n    \"flask-gear\",\n    \"flask-round-poison\",\n    \"flask-round-potion\",\n    \"flask-vial\",\n    \"flask\",\n    \"flatbread-stuffed\",\n    \"flatbread\",\n    \"floppy-disk-circle-arrow-right\",\n    \"floppy-disk-circle-xmark\",\n    \"floppy-disk-pen\",\n    \"floppy-disk\",\n    \"floppy-disks\",\n    \"florin-sign\",\n    \"flower-daffodil\",\n    \"flower-tulip\",\n    \"flower\",\n    \"flute\",\n    \"flux-capacitor\",\n    \"flying-disc\",\n    \"folder-arrow-down\",\n    \"folder-arrow-up\",\n    \"folder-bookmark\",\n    \"folder-check\",\n    \"folder-closed\",\n    \"folder-gear\",\n    \"folder-grid\",\n    \"folder-heart\",\n    \"folder-image\",\n    \"folder-magnifying-glass\",\n    \"folder-medical\",\n    \"folder-minus\",\n    \"folder-music\",\n    \"folder-open\",\n    \"folder-plus\",\n    \"folder-tree\",\n    \"folder-user\",\n    \"folder-xmark\",\n    \"folder\",\n    \"folders\",\n    \"fondue-pot\",\n    \"font-awesome\",\n    \"font-case\",\n    \"font\",\n    \"football-helmet\",\n    \"football\",\n    \"fork-knife\",\n    \"fork\",\n    \"forklift\",\n    \"fort\",\n    \"forward-fast\",\n    \"forward-step\",\n    \"forward\",\n    \"frame\",\n    \"franc-sign\",\n    \"french-fries\",\n    \"frog\",\n    \"function\",\n    \"futbol\",\n    \"g\",\n    \"galaxy\",\n    \"gallery-thumbnails\",\n    \"game-board-simple\",\n    \"game-board\",\n    \"game-console-handheld-crank\",\n    \"game-console-handheld\",\n    \"gamepad-modern\",\n    \"gamepad\",\n    \"garage-car\",\n    \"garage-open\",\n    \"garage\",\n    \"garlic\",\n    \"gas-pump-slash\",\n    \"gas-pump\",\n    \"gauge-circle-bolt\",\n    \"gauge-circle-minus\",\n    \"gauge-circle-plus\",\n    \"gauge-high\",\n    \"gauge-low\",\n    \"gauge-max\",\n    \"gauge-min\",\n    \"gauge-simple-high\",\n    \"gauge-simple-low\",\n    \"gauge-simple-max\",\n    \"gauge-simple-min\",\n    \"gauge-simple\",\n    \"gauge\",\n    \"gavel\",\n    \"gear-code\",\n    \"gear-complex-code\",\n    \"gear-complex\",\n    \"gear\",\n    \"gears\",\n    \"gem\",\n    \"genderless\",\n    \"ghost\",\n    \"gif\",\n    \"gift-card\",\n    \"gift\",\n    \"gifts\",\n    \"gingerbread-man\",\n    \"glass-citrus\",\n    \"glass-empty\",\n    \"glass-half\",\n    \"glass-water-droplet\",\n    \"glass-water\",\n    \"glass\",\n    \"glasses-round\",\n    \"glasses\",\n    \"globe-pointer\",\n    \"globe-snow\",\n    \"globe-stand\",\n    \"globe-wifi\",\n    \"globe\",\n    \"goal-net\",\n    \"golf-ball-tee\",\n    \"golf-club\",\n    \"golf-flag-hole\",\n    \"gopuram\",\n    \"graduation-cap\",\n    \"gramophone\",\n    \"grapes\",\n    \"grate-droplet\",\n    \"grate\",\n    \"greater-than-equal\",\n    \"greater-than\",\n    \"grid-2-plus\",\n    \"grid-2\",\n    \"grid-4\",\n    \"grid-5\",\n    \"grid-dividers\",\n    \"grid-horizontal\",\n    \"grid-round-2-plus\",\n    \"grid-round-2\",\n    \"grid-round-4\",\n    \"grid-round-5\",\n    \"grid-round\",\n    \"grid\",\n    \"grill-fire\",\n    \"grill-hot\",\n    \"grill\",\n    \"grip-dots-vertical\",\n    \"grip-dots\",\n    \"grip-lines-vertical\",\n    \"grip-lines\",\n    \"grip-vertical\",\n    \"grip\",\n    \"group-arrows-rotate\",\n    \"guarani-sign\",\n    \"guitar-electric\",\n    \"guitar\",\n    \"guitars\",\n    \"gun-slash\",\n    \"gun-squirt\",\n    \"gun\",\n    \"h\",\n    \"h1\",\n    \"h2\",\n    \"h3\",\n    \"h4\",\n    \"h5\",\n    \"h6\",\n    \"hammer-brush\",\n    \"hammer-crash\",\n    \"hammer-war\",\n    \"hammer\",\n    \"hamsa\",\n    \"hand-back-fist\",\n    \"hand-back-point-down\",\n    \"hand-back-point-left\",\n    \"hand-back-point-ribbon\",\n    \"hand-back-point-right\",\n    \"hand-back-point-up\",\n    \"hand-dots\",\n    \"hand-fingers-crossed\",\n    \"hand-fist\",\n    \"hand-heart\",\n    \"hand-holding-box\",\n    \"hand-holding-circle-dollar\",\n    \"hand-holding-dollar\",\n    \"hand-holding-droplet\",\n    \"hand-holding-hand\",\n    \"hand-holding-heart\",\n    \"hand-holding-magic\",\n    \"hand-holding-medical\",\n    \"hand-holding-seedling\",\n    \"hand-holding-skull\",\n    \"hand-holding\",\n    \"hand-horns\",\n    \"hand-lizard\",\n    \"hand-love\",\n    \"hand-middle-finger\",\n    \"hand-peace\",\n    \"hand-point-down\",\n    \"hand-point-left\",\n    \"hand-point-ribbon\",\n    \"hand-point-right\",\n    \"hand-point-up\",\n    \"hand-pointer\",\n    \"hand-scissors\",\n    \"hand-sparkles\",\n    \"hand-spock\",\n    \"hand-wave\",\n    \"hand\",\n    \"handcuffs\",\n    \"hands-asl-interpreting\",\n    \"hands-bound\",\n    \"hands-bubbles\",\n    \"hands-clapping\",\n    \"hands-holding-child\",\n    \"hands-holding-circle\",\n    \"hands-holding-diamond\",\n    \"hands-holding-dollar\",\n    \"hands-holding-heart\",\n    \"hands-holding\",\n    \"hands-praying\",\n    \"hands\",\n    \"handshake-angle\",\n    \"handshake-simple-slash\",\n    \"handshake-simple\",\n    \"handshake-slash\",\n    \"handshake\",\n    \"hanukiah\",\n    \"hard-drive\",\n    \"hashtag-lock\",\n    \"hashtag\",\n    \"hat-beach\",\n    \"hat-chef\",\n    \"hat-cowboy-side\",\n    \"hat-cowboy\",\n    \"hat-santa\",\n    \"hat-winter\",\n    \"hat-witch\",\n    \"hat-wizard\",\n    \"head-side-brain\",\n    \"head-side-cough-slash\",\n    \"head-side-cough\",\n    \"head-side-gear\",\n    \"head-side-goggles\",\n    \"head-side-headphones\",\n    \"head-side-heart\",\n    \"head-side-mask\",\n    \"head-side-medical\",\n    \"head-side-virus\",\n    \"head-side\",\n    \"heading\",\n    \"headphones-simple\",\n    \"headphones\",\n    \"headset\",\n    \"heart-circle-bolt\",\n    \"heart-circle-check\",\n    \"heart-circle-exclamation\",\n    \"heart-circle-minus\",\n    \"heart-circle-plus\",\n    \"heart-circle-xmark\",\n    \"heart-crack\",\n    \"heart-half-stroke\",\n    \"heart-half\",\n    \"heart-pulse\",\n    \"heart\",\n    \"heat\",\n    \"helicopter-symbol\",\n    \"helicopter\",\n    \"helmet-battle\",\n    \"helmet-safety\",\n    \"helmet-un\",\n    \"hexagon-check\",\n    \"hexagon-divide\",\n    \"hexagon-exclamation\",\n    \"hexagon-image\",\n    \"hexagon-minus\",\n    \"hexagon-nodes-bolt\",\n    \"hexagon-nodes\",\n    \"hexagon-plus\",\n    \"hexagon-vertical-nft-slanted\",\n    \"hexagon-vertical-nft\",\n    \"hexagon-xmark\",\n    \"hexagon\",\n    \"high-definition\",\n    \"highlighter-line\",\n    \"highlighter\",\n    \"hill-avalanche\",\n    \"hill-rockslide\",\n    \"hippo\",\n    \"hockey-mask\",\n    \"hockey-puck\",\n    \"hockey-stick-puck\",\n    \"hockey-sticks\",\n    \"holly-berry\",\n    \"honey-pot\",\n    \"hood-cloak\",\n    \"horizontal-rule\",\n    \"horse-head\",\n    \"horse-saddle\",\n    \"horse\",\n    \"hose-reel\",\n    \"hose\",\n    \"hospital-user\",\n    \"hospital\",\n    \"hospitals\",\n    \"hot-tub-person\",\n    \"hotdog\",\n    \"hotel\",\n    \"hourglass-clock\",\n    \"hourglass-end\",\n    \"hourglass-half\",\n    \"hourglass-start\",\n    \"hourglass\",\n    \"house-blank\",\n    \"house-building\",\n    \"house-chimney-blank\",\n    \"house-chimney-crack\",\n    \"house-chimney-heart\",\n    \"house-chimney-medical\",\n    \"house-chimney-user\",\n    \"house-chimney-window\",\n    \"house-chimney\",\n    \"house-circle-check\",\n    \"house-circle-exclamation\",\n    \"house-circle-xmark\",\n    \"house-crack\",\n    \"house-day\",\n    \"house-fire\",\n    \"house-flag\",\n    \"house-flood-water-circle-arrow-right\",\n    \"house-flood-water\",\n    \"house-heart\",\n    \"house-laptop\",\n    \"house-lock\",\n    \"house-medical-circle-check\",\n    \"house-medical-circle-exclamation\",\n    \"house-medical-circle-xmark\",\n    \"house-medical-flag\",\n    \"house-medical\",\n    \"house-night\",\n    \"house-person-leave\",\n    \"house-person-return\",\n    \"house-signal\",\n    \"house-tree\",\n    \"house-tsunami\",\n    \"house-turret\",\n    \"house-user\",\n    \"house-water\",\n    \"house-window\",\n    \"house\",\n    \"hryvnia-sign\",\n    \"hundred-points\",\n    \"hurricane\",\n    \"hydra\",\n    \"hyphen\",\n    \"i-cursor\",\n    \"i\",\n    \"ice-cream\",\n    \"ice-skate\",\n    \"icicles\",\n    \"icons\",\n    \"id-badge\",\n    \"id-card-clip\",\n    \"id-card\",\n    \"igloo\",\n    \"image-landscape\",\n    \"image-polaroid-user\",\n    \"image-polaroid\",\n    \"image-portrait\",\n    \"image-slash\",\n    \"image-user\",\n    \"image\",\n    \"images-user\",\n    \"images\",\n    \"inbox-full\",\n    \"inbox-in\",\n    \"inbox-out\",\n    \"inbox\",\n    \"inboxes\",\n    \"indent\",\n    \"indian-rupee-sign\",\n    \"industry-windows\",\n    \"industry\",\n    \"infinity\",\n    \"info\",\n    \"inhaler\",\n    \"input-numeric\",\n    \"input-pipe\",\n    \"input-text\",\n    \"integral\",\n    \"interrobang\",\n    \"intersection\",\n    \"island-tropical\",\n    \"italic\",\n    \"j\",\n    \"jack-o-lantern\",\n    \"jar-wheat\",\n    \"jar\",\n    \"jedi\",\n    \"jet-fighter-up\",\n    \"jet-fighter\",\n    \"joint\",\n    \"joystick\",\n    \"jug-bottle\",\n    \"jug-detergent\",\n    \"jug\",\n    \"k\",\n    \"kaaba\",\n    \"kazoo\",\n    \"kerning\",\n    \"key-skeleton-left-right\",\n    \"key-skeleton\",\n    \"key\",\n    \"keyboard-brightness-low\",\n    \"keyboard-brightness\",\n    \"keyboard-down\",\n    \"keyboard-left\",\n    \"keyboard\",\n    \"keynote\",\n    \"khanda\",\n    \"kidneys\",\n    \"kip-sign\",\n    \"kit-medical\",\n    \"kitchen-set\",\n    \"kite\",\n    \"kiwi-bird\",\n    \"kiwi-fruit\",\n    \"knife-kitchen\",\n    \"knife\",\n    \"l\",\n    \"lacrosse-stick-ball\",\n    \"lacrosse-stick\",\n    \"lambda\",\n    \"lamp-desk\",\n    \"lamp-floor\",\n    \"lamp-street\",\n    \"lamp\",\n    \"land-mine-on\",\n    \"landmark-dome\",\n    \"landmark-flag\",\n    \"landmark-magnifying-glass\",\n    \"landmark\",\n    \"language\",\n    \"laptop-arrow-down\",\n    \"laptop-binary\",\n    \"laptop-code\",\n    \"laptop-file\",\n    \"laptop-medical\",\n    \"laptop-mobile\",\n    \"laptop-slash\",\n    \"laptop\",\n    \"lari-sign\",\n    \"lasso-sparkles\",\n    \"lasso\",\n    \"layer-group\",\n    \"layer-minus\",\n    \"layer-plus\",\n    \"leaf-heart\",\n    \"leaf-maple\",\n    \"leaf-oak\",\n    \"leaf\",\n    \"leafy-green\",\n    \"left-from-bracket\",\n    \"left-from-line\",\n    \"left-long-to-line\",\n    \"left-long\",\n    \"left-right\",\n    \"left-to-bracket\",\n    \"left-to-line\",\n    \"left\",\n    \"lemon\",\n    \"less-than-equal\",\n    \"less-than\",\n    \"life-ring\",\n    \"light-ceiling\",\n    \"light-emergency-on\",\n    \"light-emergency\",\n    \"light-switch-off\",\n    \"light-switch-on\",\n    \"light-switch\",\n    \"lightbulb-cfl-on\",\n    \"lightbulb-cfl\",\n    \"lightbulb-dollar\",\n    \"lightbulb-exclamation-on\",\n    \"lightbulb-exclamation\",\n    \"lightbulb-gear\",\n    \"lightbulb-message\",\n    \"lightbulb-on\",\n    \"lightbulb-slash\",\n    \"lightbulb\",\n    \"lighthouse\",\n    \"lights-holiday\",\n    \"line-columns\",\n    \"line-height\",\n    \"lines-leaning\",\n    \"link-horizontal-slash\",\n    \"link-horizontal\",\n    \"link-simple-slash\",\n    \"link-simple\",\n    \"link-slash\",\n    \"link\",\n    \"lips\",\n    \"lira-sign\",\n    \"list-check\",\n    \"list-dropdown\",\n    \"list-music\",\n    \"list-ol\",\n    \"list-radio\",\n    \"list-timeline\",\n    \"list-tree\",\n    \"list-ul\",\n    \"list\",\n    \"litecoin-sign\",\n    \"loader\",\n    \"lobster\",\n    \"location-arrow-up\",\n    \"location-arrow\",\n    \"location-check\",\n    \"location-crosshairs-slash\",\n    \"location-crosshairs\",\n    \"location-dot-slash\",\n    \"location-dot\",\n    \"location-exclamation\",\n    \"location-minus\",\n    \"location-pen\",\n    \"location-pin-lock\",\n    \"location-pin-slash\",\n    \"location-pin\",\n    \"location-plus\",\n    \"location-question\",\n    \"location-smile\",\n    \"location-xmark\",\n    \"lock-a\",\n    \"lock-hashtag\",\n    \"lock-keyhole-open\",\n    \"lock-keyhole\",\n    \"lock-open\",\n    \"lock\",\n    \"locust\",\n    \"lollipop\",\n    \"loveseat\",\n    \"luchador-mask\",\n    \"lungs-virus\",\n    \"lungs\",\n    \"m\",\n    \"mace\",\n    \"magnet\",\n    \"magnifying-glass-arrow-right\",\n    \"magnifying-glass-arrows-rotate\",\n    \"magnifying-glass-chart\",\n    \"magnifying-glass-dollar\",\n    \"magnifying-glass-location\",\n    \"magnifying-glass-minus\",\n    \"magnifying-glass-music\",\n    \"magnifying-glass-play\",\n    \"magnifying-glass-plus\",\n    \"magnifying-glass-waveform\",\n    \"magnifying-glass\",\n    \"mailbox-flag-up\",\n    \"mailbox\",\n    \"manat-sign\",\n    \"mandolin\",\n    \"mango\",\n    \"manhole\",\n    \"map-location-dot\",\n    \"map-location\",\n    \"map-pin\",\n    \"map\",\n    \"marker\",\n    \"mars-and-venus-burst\",\n    \"mars-and-venus\",\n    \"mars-double\",\n    \"mars-stroke-right\",\n    \"mars-stroke-up\",\n    \"mars-stroke\",\n    \"mars\",\n    \"martini-glass-citrus\",\n    \"martini-glass-empty\",\n    \"martini-glass\",\n    \"mask-face\",\n    \"mask-snorkel\",\n    \"mask-ventilator\",\n    \"mask\",\n    \"masks-theater\",\n    \"mattress-pillow\",\n    \"maximize\",\n    \"meat\",\n    \"medal\",\n    \"megaphone\",\n    \"melon-slice\",\n    \"melon\",\n    \"memo-circle-check\",\n    \"memo-circle-info\",\n    \"memo-pad\",\n    \"memo\",\n    \"memory\",\n    \"menorah\",\n    \"mercury\",\n    \"merge\",\n    \"message-arrow-down\",\n    \"message-arrow-up-right\",\n    \"message-arrow-up\",\n    \"message-bot\",\n    \"message-captions\",\n    \"message-check\",\n    \"message-code\",\n    \"message-dollar\",\n    \"message-dots\",\n    \"message-exclamation\",\n    \"message-heart\",\n    \"message-image\",\n    \"message-lines\",\n    \"message-medical\",\n    \"message-middle-top\",\n    \"message-middle\",\n    \"message-minus\",\n    \"message-music\",\n    \"message-pen\",\n    \"message-plus\",\n    \"message-question\",\n    \"message-quote\",\n    \"message-slash\",\n    \"message-smile\",\n    \"message-sms\",\n    \"message-text\",\n    \"message-xmark\",\n    \"message\",\n    \"messages-dollar\",\n    \"messages-question\",\n    \"messages\",\n    \"meteor\",\n    \"meter-bolt\",\n    \"meter-droplet\",\n    \"meter-fire\",\n    \"meter\",\n    \"microchip-ai\",\n    \"microchip\",\n    \"microphone-lines-slash\",\n    \"microphone-lines\",\n    \"microphone-slash\",\n    \"microphone-stand\",\n    \"microphone\",\n    \"microscope\",\n    \"microwave\",\n    \"mill-sign\",\n    \"minimize\",\n    \"minus\",\n    \"mistletoe\",\n    \"mitten\",\n    \"mobile-button\",\n    \"mobile-notch\",\n    \"mobile-retro\",\n    \"mobile-screen-button\",\n    \"mobile-screen\",\n    \"mobile-signal-out\",\n    \"mobile-signal\",\n    \"mobile\",\n    \"money-bill-1-wave\",\n    \"money-bill-1\",\n    \"money-bill-simple-wave\",\n    \"money-bill-simple\",\n    \"money-bill-transfer\",\n    \"money-bill-trend-up\",\n    \"money-bill-wave\",\n    \"money-bill-wheat\",\n    \"money-bill\",\n    \"money-bills-simple\",\n    \"money-bills\",\n    \"money-check-dollar-pen\",\n    \"money-check-dollar\",\n    \"money-check-pen\",\n    \"money-check\",\n    \"money-from-bracket\",\n    \"money-simple-from-bracket\",\n    \"monitor-waveform\",\n    \"monkey\",\n    \"monument\",\n    \"moon-cloud\",\n    \"moon-over-sun\",\n    \"moon-stars\",\n    \"moon\",\n    \"moped\",\n    \"mortar-pestle\",\n    \"mosque\",\n    \"mosquito-net\",\n    \"mosquito\",\n    \"motorcycle\",\n    \"mound\",\n    \"mountain-city\",\n    \"mountain-sun\",\n    \"mountain\",\n    \"mountains\",\n    \"mouse-field\",\n    \"mp3-player\",\n    \"mug-hot\",\n    \"mug-marshmallows\",\n    \"mug-saucer\",\n    \"mug-tea-saucer\",\n    \"mug-tea\",\n    \"mug\",\n    \"mushroom\",\n    \"music-magnifying-glass\",\n    \"music-note-slash\",\n    \"music-note\",\n    \"music-slash\",\n    \"music\",\n    \"mustache\",\n    \"n\",\n    \"naira-sign\",\n    \"narwhal\",\n    \"nesting-dolls\",\n    \"network-wired\",\n    \"neuter\",\n    \"newspaper\",\n    \"nfc-lock\",\n    \"nfc-magnifying-glass\",\n    \"nfc-pen\",\n    \"nfc-signal\",\n    \"nfc-slash\",\n    \"nfc-symbol\",\n    \"nfc-trash\",\n    \"nfc\",\n    \"nose\",\n    \"not-equal\",\n    \"notdef\",\n    \"note-medical\",\n    \"note-sticky\",\n    \"note\",\n    \"notebook\",\n    \"notes-medical\",\n    \"notes\",\n    \"o\",\n    \"object-exclude\",\n    \"object-group\",\n    \"object-intersect\",\n    \"object-subtract\",\n    \"object-ungroup\",\n    \"object-union\",\n    \"objects-align-bottom\",\n    \"objects-align-center-horizontal\",\n    \"objects-align-center-vertical\",\n    \"objects-align-left\",\n    \"objects-align-right\",\n    \"objects-align-top\",\n    \"objects-column\",\n    \"octagon-check\",\n    \"octagon-divide\",\n    \"octagon-exclamation\",\n    \"octagon-minus\",\n    \"octagon-plus\",\n    \"octagon-xmark\",\n    \"octagon\",\n    \"octopus\",\n    \"oil-can-drip\",\n    \"oil-can\",\n    \"oil-temperature\",\n    \"oil-well\",\n    \"olive-branch\",\n    \"olive\",\n    \"om\",\n    \"omega\",\n    \"onion\",\n    \"option\",\n    \"ornament\",\n    \"otter\",\n    \"outdent\",\n    \"outlet\",\n    \"oven\",\n    \"overline\",\n    \"p\",\n    \"page-caret-down\",\n    \"page-caret-up\",\n    \"page\",\n    \"pager\",\n    \"paint-roller\",\n    \"paintbrush-fine\",\n    \"paintbrush-pencil\",\n    \"paintbrush\",\n    \"palette\",\n    \"pallet-box\",\n    \"pallet-boxes\",\n    \"pallet\",\n    \"pan-food\",\n    \"pan-frying\",\n    \"pancakes\",\n    \"panel-ews\",\n    \"panel-fire\",\n    \"panorama\",\n    \"paper-plane-top\",\n    \"paper-plane\",\n    \"paperclip-vertical\",\n    \"paperclip\",\n    \"parachute-box\",\n    \"paragraph-left\",\n    \"paragraph\",\n    \"party-bell\",\n    \"party-horn\",\n    \"passport\",\n    \"paste\",\n    \"pause\",\n    \"paw-claws\",\n    \"paw-simple\",\n    \"paw\",\n    \"peace\",\n    \"peach\",\n    \"peanut\",\n    \"peanuts\",\n    \"peapod\",\n    \"pear\",\n    \"pedestal\",\n    \"pegasus\",\n    \"pen-circle\",\n    \"pen-clip-slash\",\n    \"pen-clip\",\n    \"pen-fancy-slash\",\n    \"pen-fancy\",\n    \"pen-field\",\n    \"pen-line\",\n    \"pen-nib-slash\",\n    \"pen-nib\",\n    \"pen-paintbrush\",\n    \"pen-ruler\",\n    \"pen-slash\",\n    \"pen-swirl\",\n    \"pen-to-square\",\n    \"pen\",\n    \"pencil-mechanical\",\n    \"pencil-slash\",\n    \"pencil\",\n    \"people-arrows\",\n    \"people-carry-box\",\n    \"people-dress-simple\",\n    \"people-dress\",\n    \"people-group\",\n    \"people-line\",\n    \"people-pants-simple\",\n    \"people-pants\",\n    \"people-pulling\",\n    \"people-robbery\",\n    \"people-roof\",\n    \"people-simple\",\n    \"people\",\n    \"pepper-hot\",\n    \"pepper\",\n    \"percent\",\n    \"period\",\n    \"person-arrow-down-to-line\",\n    \"person-arrow-up-from-line\",\n    \"person-biking-mountain\",\n    \"person-biking\",\n    \"person-booth\",\n    \"person-breastfeeding\",\n    \"person-burst\",\n    \"person-cane\",\n    \"person-carry-box\",\n    \"person-chalkboard\",\n    \"person-circle-check\",\n    \"person-circle-exclamation\",\n    \"person-circle-minus\",\n    \"person-circle-plus\",\n    \"person-circle-question\",\n    \"person-circle-xmark\",\n    \"person-digging\",\n    \"person-dolly-empty\",\n    \"person-dolly\",\n    \"person-dots-from-line\",\n    \"person-dress-burst\",\n    \"person-dress-fairy\",\n    \"person-dress-simple\",\n    \"person-dress\",\n    \"person-drowning\",\n    \"person-fairy\",\n    \"person-falling-burst\",\n    \"person-falling\",\n    \"person-from-portal\",\n    \"person-half-dress\",\n    \"person-harassing\",\n    \"person-hiking\",\n    \"person-military-pointing\",\n    \"person-military-rifle\",\n    \"person-military-to-person\",\n    \"person-pinball\",\n    \"person-praying\",\n    \"person-pregnant\",\n    \"person-rays\",\n    \"person-rifle\",\n    \"person-running-fast\",\n    \"person-running\",\n    \"person-seat-reclined\",\n    \"person-seat\",\n    \"person-shelter\",\n    \"person-sign\",\n    \"person-simple\",\n    \"person-skating\",\n    \"person-ski-jumping\",\n    \"person-ski-lift\",\n    \"person-skiing-nordic\",\n    \"person-skiing\",\n    \"person-sledding\",\n    \"person-snowboarding\",\n    \"person-snowmobiling\",\n    \"person-swimming\",\n    \"person-through-window\",\n    \"person-to-door\",\n    \"person-to-portal\",\n    \"person-walking-arrow-loop-left\",\n    \"person-walking-arrow-right\",\n    \"person-walking-dashed-line-arrow-right\",\n    \"person-walking-luggage\",\n    \"person-walking-with-cane\",\n    \"person-walking\",\n    \"person\",\n    \"peseta-sign\",\n    \"peso-sign\",\n    \"phone-arrow-down-left\",\n    \"phone-arrow-right\",\n    \"phone-arrow-up-right\",\n    \"phone-flip\",\n    \"phone-hangup\",\n    \"phone-intercom\",\n    \"phone-missed\",\n    \"phone-office\",\n    \"phone-plus\",\n    \"phone-rotary\",\n    \"phone-slash\",\n    \"phone-volume\",\n    \"phone-xmark\",\n    \"phone\",\n    \"photo-film-music\",\n    \"photo-film\",\n    \"pi\",\n    \"piano-keyboard\",\n    \"piano\",\n    \"pickaxe\",\n    \"pickleball\",\n    \"pie\",\n    \"pig\",\n    \"piggy-bank\",\n    \"pills\",\n    \"pinata\",\n    \"pinball\",\n    \"pineapple\",\n    \"pipe-circle-check\",\n    \"pipe-collar\",\n    \"pipe-section\",\n    \"pipe-smoking\",\n    \"pipe-valve\",\n    \"pipe\",\n    \"pizza-slice\",\n    \"pizza\",\n    \"place-of-worship\",\n    \"plane-arrival\",\n    \"plane-circle-check\",\n    \"plane-circle-exclamation\",\n    \"plane-circle-xmark\",\n    \"plane-departure\",\n    \"plane-engines\",\n    \"plane-lock\",\n    \"plane-prop\",\n    \"plane-slash\",\n    \"plane-tail\",\n    \"plane-up-slash\",\n    \"plane-up\",\n    \"plane\",\n    \"planet-moon\",\n    \"planet-ringed\",\n    \"plant-wilt\",\n    \"plate-utensils\",\n    \"plate-wheat\",\n    \"play-pause\",\n    \"play\",\n    \"plug-circle-bolt\",\n    \"plug-circle-check\",\n    \"plug-circle-exclamation\",\n    \"plug-circle-minus\",\n    \"plug-circle-plus\",\n    \"plug-circle-xmark\",\n    \"plug\",\n    \"plus-large\",\n    \"plus-minus\",\n    \"plus\",\n    \"podcast\",\n    \"podium-star\",\n    \"podium\",\n    \"police-box\",\n    \"poll-people\",\n    \"pompebled\",\n    \"poo-storm\",\n    \"poo\",\n    \"pool-8-ball\",\n    \"poop\",\n    \"popcorn\",\n    \"popsicle\",\n    \"pot-food\",\n    \"potato\",\n    \"power-off\",\n    \"prescription-bottle-medical\",\n    \"prescription-bottle-pill\",\n    \"prescription-bottle\",\n    \"prescription\",\n    \"presentation-screen\",\n    \"pretzel\",\n    \"print-magnifying-glass\",\n    \"print-slash\",\n    \"print\",\n    \"projector\",\n    \"pump-medical\",\n    \"pump-soap\",\n    \"pump\",\n    \"pumpkin\",\n    \"puzzle-piece-simple\",\n    \"puzzle-piece\",\n    \"puzzle\",\n    \"q\",\n    \"qrcode\",\n    \"question\",\n    \"quote-left\",\n    \"quote-right\",\n    \"quotes\",\n    \"r\",\n    \"rabbit-running\",\n    \"rabbit\",\n    \"raccoon\",\n    \"racquet\",\n    \"radar\",\n    \"radiation\",\n    \"radio-tuner\",\n    \"radio\",\n    \"rainbow\",\n    \"raindrops\",\n    \"ram\",\n    \"ramp-loading\",\n    \"ranking-star\",\n    \"raygun\",\n    \"receipt\",\n    \"record-vinyl\",\n    \"rectangle-ad\",\n    \"rectangle-barcode\",\n    \"rectangle-code\",\n    \"rectangle-history-circle-plus\",\n    \"rectangle-history-circle-user\",\n    \"rectangle-history\",\n    \"rectangle-list\",\n    \"rectangle-pro\",\n    \"rectangle-terminal\",\n    \"rectangle-vertical-history\",\n    \"rectangle-vertical\",\n    \"rectangle-wide\",\n    \"rectangle-xmark\",\n    \"rectangle\",\n    \"rectangles-mixed\",\n    \"recycle\",\n    \"reel\",\n    \"reflect-both\",\n    \"reflect-horizontal\",\n    \"reflect-vertical\",\n    \"refrigerator\",\n    \"registered\",\n    \"repeat-1\",\n    \"repeat\",\n    \"reply-all\",\n    \"reply-clock\",\n    \"reply\",\n    \"republican\",\n    \"restroom-simple\",\n    \"restroom\",\n    \"retweet\",\n    \"rhombus\",\n    \"ribbon\",\n    \"right-from-bracket\",\n    \"right-from-line\",\n    \"right-left-large\",\n    \"right-left\",\n    \"right-long-to-line\",\n    \"right-long\",\n    \"right-to-bracket\",\n    \"right-to-line\",\n    \"right\",\n    \"ring-diamond\",\n    \"ring\",\n    \"rings-wedding\",\n    \"road-barrier\",\n    \"road-bridge\",\n    \"road-circle-check\",\n    \"road-circle-exclamation\",\n    \"road-circle-xmark\",\n    \"road-lock\",\n    \"road-spikes\",\n    \"road\",\n    \"robot-astromech\",\n    \"robot\",\n    \"rocket-launch\",\n    \"rocket\",\n    \"roller-coaster\",\n    \"rotate-exclamation\",\n    \"rotate-left\",\n    \"rotate-reverse\",\n    \"rotate-right\",\n    \"rotate\",\n    \"route-highway\",\n    \"route-interstate\",\n    \"route\",\n    \"router\",\n    \"rss\",\n    \"ruble-sign\",\n    \"rug\",\n    \"rugby-ball\",\n    \"ruler-combined\",\n    \"ruler-horizontal\",\n    \"ruler-triangle\",\n    \"ruler-vertical\",\n    \"ruler\",\n    \"rupee-sign\",\n    \"rupiah-sign\",\n    \"rv\",\n    \"s\",\n    \"sack-dollar\",\n    \"sack-xmark\",\n    \"sack\",\n    \"sailboat\",\n    \"salad\",\n    \"salt-shaker\",\n    \"sandwich\",\n    \"satellite-dish\",\n    \"satellite\",\n    \"sausage\",\n    \"saxophone-fire\",\n    \"saxophone\",\n    \"scale-balanced\",\n    \"scale-unbalanced-flip\",\n    \"scale-unbalanced\",\n    \"scalpel-line-dashed\",\n    \"scalpel\",\n    \"scanner-gun\",\n    \"scanner-image\",\n    \"scanner-keyboard\",\n    \"scanner-touchscreen\",\n    \"scarecrow\",\n    \"scarf\",\n    \"school-circle-check\",\n    \"school-circle-exclamation\",\n    \"school-circle-xmark\",\n    \"school-flag\",\n    \"school-lock\",\n    \"school\",\n    \"scissors\",\n    \"screen-users\",\n    \"screencast\",\n    \"screwdriver-wrench\",\n    \"screwdriver\",\n    \"scribble\",\n    \"scroll-old\",\n    \"scroll-torah\",\n    \"scroll\",\n    \"scrubber\",\n    \"scythe\",\n    \"sd-card\",\n    \"sd-cards\",\n    \"seal-exclamation\",\n    \"seal-question\",\n    \"seal\",\n    \"seat-airline\",\n    \"section\",\n    \"seedling\",\n    \"semicolon\",\n    \"send-back\",\n    \"send-backward\",\n    \"sensor-cloud\",\n    \"sensor-fire\",\n    \"sensor-on\",\n    \"sensor-triangle-exclamation\",\n    \"sensor\",\n    \"server\",\n    \"shapes\",\n    \"share-all\",\n    \"share-from-square\",\n    \"share-nodes\",\n    \"share\",\n    \"sheep\",\n    \"sheet-plastic\",\n    \"shekel-sign\",\n    \"shelves-empty\",\n    \"shelves\",\n    \"shield-cat\",\n    \"shield-check\",\n    \"shield-cross\",\n    \"shield-dog\",\n    \"shield-exclamation\",\n    \"shield-halved\",\n    \"shield-heart\",\n    \"shield-keyhole\",\n    \"shield-minus\",\n    \"shield-plus\",\n    \"shield-quartered\",\n    \"shield-slash\",\n    \"shield-virus\",\n    \"shield-xmark\",\n    \"shield\",\n    \"ship\",\n    \"shirt-long-sleeve\",\n    \"shirt-running\",\n    \"shirt-tank-top\",\n    \"shirt\",\n    \"shish-kebab\",\n    \"shoe-prints\",\n    \"shop-lock\",\n    \"shop-slash\",\n    \"shop\",\n    \"shovel-snow\",\n    \"shovel\",\n    \"shower-down\",\n    \"shower\",\n    \"shredder\",\n    \"shrimp\",\n    \"shuffle\",\n    \"shutters\",\n    \"shuttle-space\",\n    \"shuttlecock\",\n    \"sickle\",\n    \"sidebar-flip\",\n    \"sidebar\",\n    \"sigma\",\n    \"sign-hanging\",\n    \"sign-post\",\n    \"sign-posts-wrench\",\n    \"sign-posts\",\n    \"signal-bars-fair\",\n    \"signal-bars-good\",\n    \"signal-bars-slash\",\n    \"signal-bars-weak\",\n    \"signal-bars\",\n    \"signal-fair\",\n    \"signal-good\",\n    \"signal-slash\",\n    \"signal-stream-slash\",\n    \"signal-stream\",\n    \"signal-strong\",\n    \"signal-weak\",\n    \"signal\",\n    \"signature-lock\",\n    \"signature-slash\",\n    \"signature\",\n    \"signs-post\",\n    \"sim-card\",\n    \"sim-cards\",\n    \"sink\",\n    \"siren-on\",\n    \"siren\",\n    \"sitemap\",\n    \"skeleton-ribs\",\n    \"skeleton\",\n    \"ski-boot-ski\",\n    \"ski-boot\",\n    \"skull-cow\",\n    \"skull-crossbones\",\n    \"skull\",\n    \"slash-back\",\n    \"slash-forward\",\n    \"slash\",\n    \"sleigh\",\n    \"slider\",\n    \"sliders-simple\",\n    \"sliders-up\",\n    \"sliders\",\n    \"slot-machine\",\n    \"smog\",\n    \"smoke\",\n    \"smoking\",\n    \"snake\",\n    \"snooze\",\n    \"snow-blowing\",\n    \"snowflake-droplets\",\n    \"snowflake\",\n    \"snowflakes\",\n    \"snowman-head\",\n    \"snowman\",\n    \"snowplow\",\n    \"soap\",\n    \"socks\",\n    \"soft-serve\",\n    \"solar-panel\",\n    \"solar-system\",\n    \"sort-down\",\n    \"sort-up\",\n    \"sort\",\n    \"spa\",\n    \"space-station-moon-construction\",\n    \"space-station-moon\",\n    \"spade\",\n    \"spaghetti-monster-flying\",\n    \"sparkle\",\n    \"sparkles\",\n    \"speaker\",\n    \"speakers\",\n    \"spell-check\",\n    \"spider-black-widow\",\n    \"spider-web\",\n    \"spider\",\n    \"spinner-scale\",\n    \"spinner-third\",\n    \"spinner\",\n    \"split\",\n    \"splotch\",\n    \"spoon\",\n    \"sportsball\",\n    \"spray-can-sparkles\",\n    \"spray-can\",\n    \"sprinkler-ceiling\",\n    \"sprinkler\",\n    \"square-0\",\n    \"square-1\",\n    \"square-2\",\n    \"square-3\",\n    \"square-4\",\n    \"square-5\",\n    \"square-6\",\n    \"square-7\",\n    \"square-8\",\n    \"square-9\",\n    \"square-a-lock\",\n    \"square-a\",\n    \"square-ampersand\",\n    \"square-arrow-down-left\",\n    \"square-arrow-down-right\",\n    \"square-arrow-down\",\n    \"square-arrow-left\",\n    \"square-arrow-right\",\n    \"square-arrow-up-left\",\n    \"square-arrow-up-right\",\n    \"square-arrow-up\",\n    \"square-b\",\n    \"square-binary\",\n    \"square-bolt\",\n    \"square-c\",\n    \"square-caret-down\",\n    \"square-caret-left\",\n    \"square-caret-right\",\n    \"square-caret-up\",\n    \"square-check\",\n    \"square-chevron-down\",\n    \"square-chevron-left\",\n    \"square-chevron-right\",\n    \"square-chevron-up\",\n    \"square-code\",\n    \"square-d\",\n    \"square-dashed-circle-plus\",\n    \"square-dashed\",\n    \"square-divide\",\n    \"square-dollar\",\n    \"square-down-left\",\n    \"square-down-right\",\n    \"square-down\",\n    \"square-e\",\n    \"square-ellipsis-vertical\",\n    \"square-ellipsis\",\n    \"square-envelope\",\n    \"square-exclamation\",\n    \"square-f\",\n    \"square-fragile\",\n    \"square-full\",\n    \"square-g\",\n    \"square-h\",\n    \"square-heart\",\n    \"square-i\",\n    \"square-info\",\n    \"square-j\",\n    \"square-k\",\n    \"square-kanban\",\n    \"square-l\",\n    \"square-left\",\n    \"square-list\",\n    \"square-m\",\n    \"square-minus\",\n    \"square-n\",\n    \"square-nfi\",\n    \"square-o\",\n    \"square-p\",\n    \"square-parking-slash\",\n    \"square-parking\",\n    \"square-pen\",\n    \"square-person-confined\",\n    \"square-phone-flip\",\n    \"square-phone-hangup\",\n    \"square-phone\",\n    \"square-plus\",\n    \"square-poll-horizontal\",\n    \"square-poll-vertical\",\n    \"square-q\",\n    \"square-quarters\",\n    \"square-question\",\n    \"square-quote\",\n    \"square-r\",\n    \"square-right\",\n    \"square-ring\",\n    \"square-root-variable\",\n    \"square-root\",\n    \"square-rss\",\n    \"square-s\",\n    \"square-share-nodes\",\n    \"square-sliders-vertical\",\n    \"square-sliders\",\n    \"square-small\",\n    \"square-star\",\n    \"square-t\",\n    \"square-terminal\",\n    \"square-this-way-up\",\n    \"square-u\",\n    \"square-up-left\",\n    \"square-up-right\",\n    \"square-up\",\n    \"square-user\",\n    \"square-v\",\n    \"square-virus\",\n    \"square-w\",\n    \"square-x\",\n    \"square-xmark\",\n    \"square-y\",\n    \"square-z\",\n    \"square\",\n    \"squid\",\n    \"squirrel\",\n    \"staff-snake\",\n    \"staff\",\n    \"stairs\",\n    \"stamp\",\n    \"standard-definition\",\n    \"stapler\",\n    \"star-and-crescent\",\n    \"star-christmas\",\n    \"star-exclamation\",\n    \"star-half-stroke\",\n    \"star-half\",\n    \"star-of-david\",\n    \"star-of-life\",\n    \"star-sharp-half-stroke\",\n    \"star-sharp-half\",\n    \"star-sharp\",\n    \"star-shooting\",\n    \"star\",\n    \"starfighter-twin-ion-engine-advanced\",\n    \"starfighter-twin-ion-engine\",\n    \"starfighter\",\n    \"stars\",\n    \"starship-freighter\",\n    \"starship\",\n    \"steak\",\n    \"steering-wheel\",\n    \"sterling-sign\",\n    \"stethoscope\",\n    \"stocking\",\n    \"stomach\",\n    \"stop\",\n    \"stopwatch-20\",\n    \"stopwatch\",\n    \"store-lock\",\n    \"store-slash\",\n    \"store\",\n    \"strawberry\",\n    \"street-view\",\n    \"stretcher\",\n    \"strikethrough\",\n    \"stroopwafel\",\n    \"subscript\",\n    \"subtitles-slash\",\n    \"subtitles\",\n    \"suitcase-medical\",\n    \"suitcase-rolling\",\n    \"suitcase\",\n    \"sun-bright\",\n    \"sun-cloud\",\n    \"sun-dust\",\n    \"sun-haze\",\n    \"sun-plant-wilt\",\n    \"sun\",\n    \"sunglasses\",\n    \"sunrise\",\n    \"sunset\",\n    \"superscript\",\n    \"sushi-roll\",\n    \"sushi\",\n    \"swap-arrows\",\n    \"swap\",\n    \"swatchbook\",\n    \"sword-laser-alt\",\n    \"sword-laser\",\n    \"sword\",\n    \"swords-laser\",\n    \"swords\",\n    \"symbols\",\n    \"synagogue\",\n    \"syringe\",\n    \"t-rex\",\n    \"t\",\n    \"table-cells-column-lock\",\n    \"table-cells-column-unlock\",\n    \"table-cells-large\",\n    \"table-cells-lock\",\n    \"table-cells-row-lock\",\n    \"table-cells-row-unlock\",\n    \"table-cells-unlock\",\n    \"table-cells\",\n    \"table-columns\",\n    \"table-layout\",\n    \"table-list\",\n    \"table-picnic\",\n    \"table-pivot\",\n    \"table-rows\",\n    \"table-tennis-paddle-ball\",\n    \"table-tree\",\n    \"table\",\n    \"tablet-button\",\n    \"tablet-rugged\",\n    \"tablet-screen-button\",\n    \"tablet-screen\",\n    \"tablet\",\n    \"tablets\",\n    \"tachograph-digital\",\n    \"taco\",\n    \"tag\",\n    \"tags\",\n    \"tally-1\",\n    \"tally-2\",\n    \"tally-3\",\n    \"tally-4\",\n    \"tally\",\n    \"tamale\",\n    \"tank-water\",\n    \"tape\",\n    \"tarp-droplet\",\n    \"tarp\",\n    \"taxi-bus\",\n    \"taxi\",\n    \"teddy-bear\",\n    \"teeth-open\",\n    \"teeth\",\n    \"telescope\",\n    \"temperature-arrow-down\",\n    \"temperature-arrow-up\",\n    \"temperature-empty\",\n    \"temperature-full\",\n    \"temperature-half\",\n    \"temperature-high\",\n    \"temperature-list\",\n    \"temperature-low\",\n    \"temperature-quarter\",\n    \"temperature-snow\",\n    \"temperature-sun\",\n    \"temperature-three-quarters\",\n    \"tenge-sign\",\n    \"tennis-ball\",\n    \"tent-arrow-down-to-line\",\n    \"tent-arrow-left-right\",\n    \"tent-arrow-turn-left\",\n    \"tent-arrows-down\",\n    \"tent-double-peak\",\n    \"tent\",\n    \"tents\",\n    \"terminal\",\n    \"text-height\",\n    \"text-size\",\n    \"text-slash\",\n    \"text-width\",\n    \"text\",\n    \"thermometer\",\n    \"theta\",\n    \"thought-bubble\",\n    \"thumbs-down\",\n    \"thumbs-up\",\n    \"thumbtack-slash\",\n    \"thumbtack\",\n    \"tick\",\n    \"ticket-airline\",\n    \"ticket-perforated\",\n    \"ticket-simple\",\n    \"ticket\",\n    \"tickets-airline\",\n    \"tickets-perforated\",\n    \"tickets-simple\",\n    \"tickets\",\n    \"tilde\",\n    \"timeline-arrow\",\n    \"timeline\",\n    \"timer\",\n    \"tire-flat\",\n    \"tire-pressure-warning\",\n    \"tire-rugged\",\n    \"tire\",\n    \"toggle-large-off\",\n    \"toggle-large-on\",\n    \"toggle-off\",\n    \"toggle-on\",\n    \"toilet-paper-blank-under\",\n    \"toilet-paper-blank\",\n    \"toilet-paper-check\",\n    \"toilet-paper-slash\",\n    \"toilet-paper-under-slash\",\n    \"toilet-paper-under\",\n    \"toilet-paper-xmark\",\n    \"toilet-paper\",\n    \"toilet-portable\",\n    \"toilet\",\n    \"toilets-portable\",\n    \"tomato\",\n    \"tombstone-blank\",\n    \"tombstone\",\n    \"toolbox\",\n    \"tooth\",\n    \"toothbrush\",\n    \"torii-gate\",\n    \"tornado\",\n    \"tower-broadcast\",\n    \"tower-cell\",\n    \"tower-control\",\n    \"tower-observation\",\n    \"tractor\",\n    \"trademark\",\n    \"traffic-cone\",\n    \"traffic-light-go\",\n    \"traffic-light-slow\",\n    \"traffic-light-stop\",\n    \"traffic-light\",\n    \"trailer\",\n    \"train-subway-tunnel\",\n    \"train-subway\",\n    \"train-track\",\n    \"train-tram\",\n    \"train-tunnel\",\n    \"train\",\n    \"transformer-bolt\",\n    \"transgender\",\n    \"transporter-1\",\n    \"transporter-2\",\n    \"transporter-3\",\n    \"transporter-4\",\n    \"transporter-5\",\n    \"transporter-6\",\n    \"transporter-7\",\n    \"transporter-empty\",\n    \"transporter\",\n    \"trash-arrow-up\",\n    \"trash-can-arrow-up\",\n    \"trash-can-check\",\n    \"trash-can-clock\",\n    \"trash-can-list\",\n    \"trash-can-plus\",\n    \"trash-can-slash\",\n    \"trash-can-undo\",\n    \"trash-can-xmark\",\n    \"trash-can\",\n    \"trash-check\",\n    \"trash-clock\",\n    \"trash-list\",\n    \"trash-plus\",\n    \"trash-slash\",\n    \"trash-undo\",\n    \"trash-xmark\",\n    \"trash\",\n    \"treasure-chest\",\n    \"tree-christmas\",\n    \"tree-city\",\n    \"tree-deciduous\",\n    \"tree-decorated\",\n    \"tree-large\",\n    \"tree-palm\",\n    \"tree\",\n    \"trees\",\n    \"triangle-exclamation\",\n    \"triangle-instrument\",\n    \"triangle-person-digging\",\n    \"triangle\",\n    \"tricycle-adult\",\n    \"tricycle\",\n    \"trillium\",\n    \"trophy-star\",\n    \"trophy\",\n    \"trowel-bricks\",\n    \"trowel\",\n    \"truck-arrow-right\",\n    \"truck-bolt\",\n    \"truck-clock\",\n    \"truck-container-empty\",\n    \"truck-container\",\n    \"truck-droplet\",\n    \"truck-fast\",\n    \"truck-field-un\",\n    \"truck-field\",\n    \"truck-fire\",\n    \"truck-flatbed\",\n    \"truck-front\",\n    \"truck-ladder\",\n    \"truck-medical\",\n    \"truck-monster\",\n    \"truck-moving\",\n    \"truck-pickup\",\n    \"truck-plane\",\n    \"truck-plow\",\n    \"truck-ramp-box\",\n    \"truck-ramp-couch\",\n    \"truck-ramp\",\n    \"truck-tow\",\n    \"truck-utensils\",\n    \"truck\",\n    \"trumpet\",\n    \"tty-answer\",\n    \"tty\",\n    \"tugrik-sign\",\n    \"turkey\",\n    \"turkish-lira-sign\",\n    \"turn-down-left\",\n    \"turn-down-right\",\n    \"turn-down\",\n    \"turn-left-down\",\n    \"turn-left-up\",\n    \"turn-left\",\n    \"turn-right\",\n    \"turn-up\",\n    \"turntable\",\n    \"turtle\",\n    \"tv-music\",\n    \"tv-retro\",\n    \"tv\",\n    \"typewriter\",\n    \"u\",\n    \"ufo-beam\",\n    \"ufo\",\n    \"umbrella-beach\",\n    \"umbrella-simple\",\n    \"umbrella\",\n    \"underline\",\n    \"unicorn\",\n    \"uniform-martial-arts\",\n    \"union\",\n    \"universal-access\",\n    \"unlock-keyhole\",\n    \"unlock\",\n    \"up-down-left-right\",\n    \"up-down\",\n    \"up-from-bracket\",\n    \"up-from-dotted-line\",\n    \"up-from-line\",\n    \"up-left\",\n    \"up-long\",\n    \"up-right-and-down-left-from-center\",\n    \"up-right-from-square\",\n    \"up-right\",\n    \"up-to-bracket\",\n    \"up-to-dotted-line\",\n    \"up-to-line\",\n    \"up\",\n    \"upload\",\n    \"usb-drive\",\n    \"user-alien\",\n    \"user-astronaut\",\n    \"user-beard-bolt\",\n    \"user-bounty-hunter\",\n    \"user-check\",\n    \"user-chef\",\n    \"user-clock\",\n    \"user-cowboy\",\n    \"user-crown\",\n    \"user-doctor-hair-long\",\n    \"user-doctor-hair\",\n    \"user-doctor-message\",\n    \"user-doctor\",\n    \"user-gear\",\n    \"user-graduate\",\n    \"user-group-crown\",\n    \"user-group-simple\",\n    \"user-group\",\n    \"user-hair-buns\",\n    \"user-hair-long\",\n    \"user-hair-mullet\",\n    \"user-hair\",\n    \"user-headset\",\n    \"user-helmet-safety\",\n    \"user-hoodie\",\n    \"user-injured\",\n    \"user-large-slash\",\n    \"user-large\",\n    \"user-lock\",\n    \"user-magnifying-glass\",\n    \"user-minus\",\n    \"user-music\",\n    \"user-ninja\",\n    \"user-nurse-hair-long\",\n    \"user-nurse-hair\",\n    \"user-nurse\",\n    \"user-pen\",\n    \"user-pilot-tie\",\n    \"user-pilot\",\n    \"user-plus\",\n    \"user-police-tie\",\n    \"user-police\",\n    \"user-robot-xmarks\",\n    \"user-robot\",\n    \"user-secret\",\n    \"user-shakespeare\",\n    \"user-shield\",\n    \"user-slash\",\n    \"user-tag\",\n    \"user-tie-hair-long\",\n    \"user-tie-hair\",\n    \"user-tie\",\n    \"user-unlock\",\n    \"user-visor\",\n    \"user-vneck-hair-long\",\n    \"user-vneck-hair\",\n    \"user-vneck\",\n    \"user-xmark\",\n    \"user\",\n    \"users-between-lines\",\n    \"users-gear\",\n    \"users-line\",\n    \"users-medical\",\n    \"users-rays\",\n    \"users-rectangle\",\n    \"users-slash\",\n    \"users-viewfinder\",\n    \"users\",\n    \"utensils-slash\",\n    \"utensils\",\n    \"utility-pole-double\",\n    \"utility-pole\",\n    \"v\",\n    \"vacuum-robot\",\n    \"vacuum\",\n    \"value-absolute\",\n    \"van-shuttle\",\n    \"vault\",\n    \"vector-circle\",\n    \"vector-polygon\",\n    \"vector-square\",\n    \"vent-damper\",\n    \"venus-double\",\n    \"venus-mars\",\n    \"venus\",\n    \"vest-patches\",\n    \"vest\",\n    \"vial-circle-check\",\n    \"vial-virus\",\n    \"vial\",\n    \"vials\",\n    \"video-arrow-down-left\",\n    \"video-arrow-up-right\",\n    \"video-plus\",\n    \"video-slash\",\n    \"video\",\n    \"vihara\",\n    \"violin\",\n    \"virus-covid-slash\",\n    \"virus-covid\",\n    \"virus-slash\",\n    \"virus\",\n    \"viruses\",\n    \"voicemail\",\n    \"volcano\",\n    \"volleyball\",\n    \"volume-high\",\n    \"volume-low\",\n    \"volume-off\",\n    \"volume-slash\",\n    \"volume-xmark\",\n    \"volume\",\n    \"vr-cardboard\",\n    \"w\",\n    \"waffle\",\n    \"wagon-covered\",\n    \"walker\",\n    \"walkie-talkie\",\n    \"wallet\",\n    \"wand-magic-sparkles\",\n    \"wand-magic\",\n    \"wand-sparkles\",\n    \"wand\",\n    \"warehouse-full\",\n    \"warehouse\",\n    \"washing-machine\",\n    \"watch-apple\",\n    \"watch-calculator\",\n    \"watch-fitness\",\n    \"watch-smart\",\n    \"watch\",\n    \"water-arrow-down\",\n    \"water-arrow-up\",\n    \"water-ladder\",\n    \"water\",\n    \"watermelon-slice\",\n    \"wave-pulse\",\n    \"wave-sine\",\n    \"wave-square\",\n    \"wave-triangle\",\n    \"wave\",\n    \"waveform-lines\",\n    \"waveform\",\n    \"waves-sine\",\n    \"web-awesome\",\n    \"webhook\",\n    \"weight-hanging\",\n    \"weight-scale\",\n    \"whale\",\n    \"wheat-awn-circle-exclamation\",\n    \"wheat-awn-slash\",\n    \"wheat-awn\",\n    \"wheat-slash\",\n    \"wheat\",\n    \"wheelchair-move\",\n    \"wheelchair\",\n    \"whiskey-glass-ice\",\n    \"whiskey-glass\",\n    \"whistle\",\n    \"wifi-exclamation\",\n    \"wifi-fair\",\n    \"wifi-slash\",\n    \"wifi-weak\",\n    \"wifi\",\n    \"wind-turbine\",\n    \"wind-warning\",\n    \"wind\",\n    \"window-flip\",\n    \"window-frame-open\",\n    \"window-frame\",\n    \"window-maximize\",\n    \"window-minimize\",\n    \"window-restore\",\n    \"window\",\n    \"windsock\",\n    \"wine-bottle\",\n    \"wine-glass-crack\",\n    \"wine-glass-empty\",\n    \"wine-glass\",\n    \"won-sign\",\n    \"worm\",\n    \"wreath-laurel\",\n    \"wreath\",\n    \"wrench-simple\",\n    \"wrench\",\n    \"x-ray\",\n    \"x\",\n    \"xmark-large\",\n    \"xmark-to-slot\",\n    \"xmark\",\n    \"xmarks-lines\",\n    \"y\",\n    \"yen-sign\",\n    \"yin-yang\",\n    \"z\"\n  ],\n  \"sharp\": [\n    \"0\",\n    \"00\",\n    \"1\",\n    \"2\",\n    \"3\",\n    \"360-degrees\",\n    \"4\",\n    \"5\",\n    \"6\",\n    \"7\",\n    \"8\",\n    \"9\",\n    \"a\",\n    \"abacus\",\n    \"accent-grave\",\n    \"acorn\",\n    \"address-book\",\n    \"address-card\",\n    \"air-conditioner\",\n    \"airplay\",\n    \"alarm-clock\",\n    \"alarm-exclamation\",\n    \"alarm-plus\",\n    \"alarm-snooze\",\n    \"album-circle-plus\",\n    \"album-circle-user\",\n    \"album-collection-circle-plus\",\n    \"album-collection-circle-user\",\n    \"album-collection\",\n    \"album\",\n    \"alicorn\",\n    \"alien-8bit\",\n    \"alien\",\n    \"align-center\",\n    \"align-justify\",\n    \"align-left\",\n    \"align-right\",\n    \"align-slash\",\n    \"alt\",\n    \"amp-guitar\",\n    \"ampersand\",\n    \"anchor-circle-check\",\n    \"anchor-circle-exclamation\",\n    \"anchor-circle-xmark\",\n    \"anchor-lock\",\n    \"anchor\",\n    \"angel\",\n    \"angle-90\",\n    \"angle-down\",\n    \"angle-left\",\n    \"angle-right\",\n    \"angle-up\",\n    \"angle\",\n    \"angles-down\",\n    \"angles-left\",\n    \"angles-right\",\n    \"angles-up-down\",\n    \"angles-up\",\n    \"ankh\",\n    \"ant\",\n    \"apartment\",\n    \"aperture\",\n    \"apostrophe\",\n    \"apple-core\",\n    \"apple-whole\",\n    \"archway\",\n    \"arrow-down-1-9\",\n    \"arrow-down-9-1\",\n    \"arrow-down-a-z\",\n    \"arrow-down-arrow-up\",\n    \"arrow-down-big-small\",\n    \"arrow-down-from-arc\",\n    \"arrow-down-from-bracket\",\n    \"arrow-down-from-dotted-line\",\n    \"arrow-down-from-line\",\n    \"arrow-down-left-and-arrow-up-right-to-center\",\n    \"arrow-down-left\",\n    \"arrow-down-long\",\n    \"arrow-down-right\",\n    \"arrow-down-short-wide\",\n    \"arrow-down-small-big\",\n    \"arrow-down-square-triangle\",\n    \"arrow-down-to-arc\",\n    \"arrow-down-to-bracket\",\n    \"arrow-down-to-dotted-line\",\n    \"arrow-down-to-line\",\n    \"arrow-down-to-square\",\n    \"arrow-down-triangle-square\",\n    \"arrow-down-up-across-line\",\n    \"arrow-down-up-lock\",\n    \"arrow-down-wide-short\",\n    \"arrow-down-z-a\",\n    \"arrow-down\",\n    \"arrow-left-from-arc\",\n    \"arrow-left-from-bracket\",\n    \"arrow-left-from-line\",\n    \"arrow-left-long-to-line\",\n    \"arrow-left-long\",\n    \"arrow-left-to-arc\",\n    \"arrow-left-to-bracket\",\n    \"arrow-left-to-line\",\n    \"arrow-left\",\n    \"arrow-pointer\",\n    \"arrow-progress\",\n    \"arrow-right-arrow-left\",\n    \"arrow-right-from-arc\",\n    \"arrow-right-from-bracket\",\n    \"arrow-right-from-line\",\n    \"arrow-right-long-to-line\",\n    \"arrow-right-long\",\n    \"arrow-right-to-arc\",\n    \"arrow-right-to-bracket\",\n    \"arrow-right-to-city\",\n    \"arrow-right-to-line\",\n    \"arrow-right\",\n    \"arrow-rotate-left\",\n    \"arrow-rotate-right\",\n    \"arrow-trend-down\",\n    \"arrow-trend-up\",\n    \"arrow-turn-down-left\",\n    \"arrow-turn-down-right\",\n    \"arrow-turn-down\",\n    \"arrow-turn-left-down\",\n    \"arrow-turn-left-up\",\n    \"arrow-turn-left\",\n    \"arrow-turn-right\",\n    \"arrow-turn-up\",\n    \"arrow-up-1-9\",\n    \"arrow-up-9-1\",\n    \"arrow-up-a-z\",\n    \"arrow-up-arrow-down\",\n    \"arrow-up-big-small\",\n    \"arrow-up-from-arc\",\n    \"arrow-up-from-bracket\",\n    \"arrow-up-from-dotted-line\",\n    \"arrow-up-from-ground-water\",\n    \"arrow-up-from-line\",\n    \"arrow-up-from-square\",\n    \"arrow-up-from-water-pump\",\n    \"arrow-up-left-from-circle\",\n    \"arrow-up-left\",\n    \"arrow-up-long\",\n    \"arrow-up-right-and-arrow-down-left-from-center\",\n    \"arrow-up-right-dots\",\n    \"arrow-up-right-from-square\",\n    \"arrow-up-right\",\n    \"arrow-up-short-wide\",\n    \"arrow-up-small-big\",\n    \"arrow-up-square-triangle\",\n    \"arrow-up-to-arc\",\n    \"arrow-up-to-bracket\",\n    \"arrow-up-to-dotted-line\",\n    \"arrow-up-to-line\",\n    \"arrow-up-triangle-square\",\n    \"arrow-up-wide-short\",\n    \"arrow-up-z-a\",\n    \"arrow-up\",\n    \"arrows-cross\",\n    \"arrows-down-to-line\",\n    \"arrows-down-to-people\",\n    \"arrows-from-dotted-line\",\n    \"arrows-from-line\",\n    \"arrows-left-right-to-line\",\n    \"arrows-left-right\",\n    \"arrows-maximize\",\n    \"arrows-minimize\",\n    \"arrows-repeat-1\",\n    \"arrows-repeat\",\n    \"arrows-retweet\",\n    \"arrows-rotate-reverse\",\n    \"arrows-rotate\",\n    \"arrows-spin\",\n    \"arrows-split-up-and-left\",\n    \"arrows-to-circle\",\n    \"arrows-to-dot\",\n    \"arrows-to-dotted-line\",\n    \"arrows-to-eye\",\n    \"arrows-to-line\",\n    \"arrows-turn-right\",\n    \"arrows-turn-to-dots\",\n    \"arrows-up-down-left-right\",\n    \"arrows-up-down\",\n    \"arrows-up-to-line\",\n    \"asterisk\",\n    \"at\",\n    \"atom-simple\",\n    \"atom\",\n    \"audio-description-slash\",\n    \"audio-description\",\n    \"austral-sign\",\n    \"avocado\",\n    \"award-simple\",\n    \"award\",\n    \"axe-battle\",\n    \"axe\",\n    \"b\",\n    \"baby-carriage\",\n    \"baby\",\n    \"backpack\",\n    \"backward-fast\",\n    \"backward-step\",\n    \"backward\",\n    \"bacon\",\n    \"bacteria\",\n    \"bacterium\",\n    \"badge-check\",\n    \"badge-dollar\",\n    \"badge-percent\",\n    \"badge-sheriff\",\n    \"badge\",\n    \"badger-honey\",\n    \"badminton\",\n    \"bag-seedling\",\n    \"bag-shopping-minus\",\n    \"bag-shopping-plus\",\n    \"bag-shopping\",\n    \"bagel\",\n    \"bags-shopping\",\n    \"baguette\",\n    \"bahai\",\n    \"baht-sign\",\n    \"ball-pile\",\n    \"balloon\",\n    \"balloons\",\n    \"ballot-check\",\n    \"ballot\",\n    \"ban-bug\",\n    \"ban-parking\",\n    \"ban-smoking\",\n    \"ban\",\n    \"banana\",\n    \"bandage\",\n    \"bangladeshi-taka-sign\",\n    \"banjo\",\n    \"barcode-read\",\n    \"barcode-scan\",\n    \"barcode\",\n    \"bars-filter\",\n    \"bars-progress\",\n    \"bars-sort\",\n    \"bars-staggered\",\n    \"bars\",\n    \"baseball-bat-ball\",\n    \"baseball\",\n    \"basket-shopping-minus\",\n    \"basket-shopping-plus\",\n    \"basket-shopping-simple\",\n    \"basket-shopping\",\n    \"basketball-hoop\",\n    \"basketball\",\n    \"bat\",\n    \"bath\",\n    \"battery-bolt\",\n    \"battery-empty\",\n    \"battery-exclamation\",\n    \"battery-full\",\n    \"battery-half\",\n    \"battery-low\",\n    \"battery-quarter\",\n    \"battery-slash\",\n    \"battery-three-quarters\",\n    \"bed-bunk\",\n    \"bed-empty\",\n    \"bed-front\",\n    \"bed-pulse\",\n    \"bed\",\n    \"bee\",\n    \"beer-mug-empty\",\n    \"beer-mug\",\n    \"bell-concierge\",\n    \"bell-exclamation\",\n    \"bell-on\",\n    \"bell-plus\",\n    \"bell-ring\",\n    \"bell-school-slash\",\n    \"bell-school\",\n    \"bell-slash\",\n    \"bell\",\n    \"bells\",\n    \"bench-tree\",\n    \"bezier-curve\",\n    \"bicycle\",\n    \"billboard\",\n    \"bin-bottles-recycle\",\n    \"bin-bottles\",\n    \"bin-recycle\",\n    \"binary-circle-check\",\n    \"binary-lock\",\n    \"binary-slash\",\n    \"binary\",\n    \"binoculars\",\n    \"biohazard\",\n    \"bird\",\n    \"bitcoin-sign\",\n    \"blanket-fire\",\n    \"blanket\",\n    \"blender-phone\",\n    \"blender\",\n    \"blinds-open\",\n    \"blinds-raised\",\n    \"blinds\",\n    \"block-brick-fire\",\n    \"block-brick\",\n    \"block-question\",\n    \"block-quote\",\n    \"block\",\n    \"blog\",\n    \"blueberries\",\n    \"bluetooth\",\n    \"bold\",\n    \"bolt-auto\",\n    \"bolt-lightning\",\n    \"bolt-slash\",\n    \"bolt\",\n    \"bomb\",\n    \"bone-break\",\n    \"bone\",\n    \"bong\",\n    \"book-arrow-right\",\n    \"book-arrow-up\",\n    \"book-atlas\",\n    \"book-bible\",\n    \"book-blank\",\n    \"book-bookmark\",\n    \"book-circle-arrow-right\",\n    \"book-circle-arrow-up\",\n    \"book-copy\",\n    \"book-font\",\n    \"book-heart\",\n    \"book-journal-whills\",\n    \"book-medical\",\n    \"book-open-cover\",\n    \"book-open-reader\",\n    \"book-open\",\n    \"book-quran\",\n    \"book-section\",\n    \"book-skull\",\n    \"book-sparkles\",\n    \"book-tanakh\",\n    \"book-user\",\n    \"book\",\n    \"bookmark-slash\",\n    \"bookmark\",\n    \"books-medical\",\n    \"books\",\n    \"boombox\",\n    \"boot-heeled\",\n    \"boot\",\n    \"booth-curtain\",\n    \"border-all\",\n    \"border-bottom-right\",\n    \"border-bottom\",\n    \"border-center-h\",\n    \"border-center-v\",\n    \"border-inner\",\n    \"border-left\",\n    \"border-none\",\n    \"border-outer\",\n    \"border-right\",\n    \"border-top-left\",\n    \"border-top\",\n    \"bore-hole\",\n    \"bottle-baby\",\n    \"bottle-droplet\",\n    \"bottle-water\",\n    \"bow-arrow\",\n    \"bowl-chopsticks-noodles\",\n    \"bowl-chopsticks\",\n    \"bowl-food\",\n    \"bowl-hot\",\n    \"bowl-rice\",\n    \"bowl-scoop\",\n    \"bowl-scoops\",\n    \"bowl-soft-serve\",\n    \"bowl-spoon\",\n    \"bowling-ball-pin\",\n    \"bowling-ball\",\n    \"bowling-pins\",\n    \"box-archive\",\n    \"box-ballot\",\n    \"box-check\",\n    \"box-circle-check\",\n    \"box-dollar\",\n    \"box-heart\",\n    \"box-open-full\",\n    \"box-open\",\n    \"box-taped\",\n    \"box-tissue\",\n    \"box\",\n    \"boxes-packing\",\n    \"boxes-stacked\",\n    \"boxing-glove\",\n    \"bracket-curly-right\",\n    \"bracket-curly\",\n    \"bracket-round-right\",\n    \"bracket-round\",\n    \"bracket-square-right\",\n    \"bracket-square\",\n    \"brackets-curly\",\n    \"brackets-round\",\n    \"brackets-square\",\n    \"braille\",\n    \"brain-arrow-curved-right\",\n    \"brain-circuit\",\n    \"brain\",\n    \"brake-warning\",\n    \"brazilian-real-sign\",\n    \"bread-loaf\",\n    \"bread-slice-butter\",\n    \"bread-slice\",\n    \"bridge-circle-check\",\n    \"bridge-circle-exclamation\",\n    \"bridge-circle-xmark\",\n    \"bridge-lock\",\n    \"bridge-suspension\",\n    \"bridge-water\",\n    \"bridge\",\n    \"briefcase-arrow-right\",\n    \"briefcase-blank\",\n    \"briefcase-medical\",\n    \"briefcase\",\n    \"brightness-low\",\n    \"brightness\",\n    \"bring-forward\",\n    \"bring-front\",\n    \"broccoli\",\n    \"broom-ball\",\n    \"broom-wide\",\n    \"broom\",\n    \"browser\",\n    \"browsers\",\n    \"brush\",\n    \"bucket\",\n    \"bug-slash\",\n    \"bug\",\n    \"bugs\",\n    \"building-circle-arrow-right\",\n    \"building-circle-check\",\n    \"building-circle-exclamation\",\n    \"building-circle-xmark\",\n    \"building-columns\",\n    \"building-flag\",\n    \"building-lock\",\n    \"building-magnifying-glass\",\n    \"building-memo\",\n    \"building-ngo\",\n    \"building-shield\",\n    \"building-un\",\n    \"building-user\",\n    \"building-wheat\",\n    \"building\",\n    \"buildings\",\n    \"bulldozer\",\n    \"bullhorn\",\n    \"bullseye-arrow\",\n    \"bullseye-pointer\",\n    \"bullseye\",\n    \"buoy-mooring\",\n    \"buoy\",\n    \"burger-cheese\",\n    \"burger-fries\",\n    \"burger-glass\",\n    \"burger-lettuce\",\n    \"burger-soda\",\n    \"burger\",\n    \"burrito\",\n    \"burst\",\n    \"bus-school\",\n    \"bus-simple\",\n    \"bus\",\n    \"business-time\",\n    \"butter\",\n    \"c\",\n    \"cabin\",\n    \"cabinet-filing\",\n    \"cable-car\",\n    \"cactus\",\n    \"caduceus\",\n    \"cake-candles\",\n    \"cake-slice\",\n    \"calculator-simple\",\n    \"calculator\",\n    \"calendar-arrow-down\",\n    \"calendar-arrow-up\",\n    \"calendar-check\",\n    \"calendar-circle-exclamation\",\n    \"calendar-circle-minus\",\n    \"calendar-circle-plus\",\n    \"calendar-circle-user\",\n    \"calendar-clock\",\n    \"calendar-day\",\n    \"calendar-days\",\n    \"calendar-exclamation\",\n    \"calendar-heart\",\n    \"calendar-image\",\n    \"calendar-lines-pen\",\n    \"calendar-lines\",\n    \"calendar-minus\",\n    \"calendar-pen\",\n    \"calendar-plus\",\n    \"calendar-range\",\n    \"calendar-star\",\n    \"calendar-users\",\n    \"calendar-week\",\n    \"calendar-xmark\",\n    \"calendar\",\n    \"calendars\",\n    \"camcorder\",\n    \"camera-cctv\",\n    \"camera-movie\",\n    \"camera-polaroid\",\n    \"camera-retro\",\n    \"camera-rotate\",\n    \"camera-security\",\n    \"camera-slash\",\n    \"camera-viewfinder\",\n    \"camera-web-slash\",\n    \"camera-web\",\n    \"camera\",\n    \"campfire\",\n    \"campground\",\n    \"can-food\",\n    \"candle-holder\",\n    \"candy-bar\",\n    \"candy-cane\",\n    \"candy-corn\",\n    \"candy\",\n    \"cannabis\",\n    \"cannon\",\n    \"capsules\",\n    \"car-battery\",\n    \"car-bolt\",\n    \"car-building\",\n    \"car-bump\",\n    \"car-burst\",\n    \"car-bus\",\n    \"car-circle-bolt\",\n    \"car-garage\",\n    \"car-mirrors\",\n    \"car-on\",\n    \"car-rear\",\n    \"car-side-bolt\",\n    \"car-side\",\n    \"car-tilt\",\n    \"car-tunnel\",\n    \"car-wash\",\n    \"car-wrench\",\n    \"car\",\n    \"caravan-simple\",\n    \"caravan\",\n    \"card-club\",\n    \"card-diamond\",\n    \"card-heart\",\n    \"card-spade\",\n    \"cards-blank\",\n    \"cards\",\n    \"caret-down\",\n    \"caret-left\",\n    \"caret-right\",\n    \"caret-up\",\n    \"carpool\",\n    \"carrot\",\n    \"cars\",\n    \"cart-arrow-down\",\n    \"cart-arrow-up\",\n    \"cart-circle-arrow-down\",\n    \"cart-circle-arrow-up\",\n    \"cart-circle-check\",\n    \"cart-circle-exclamation\",\n    \"cart-circle-plus\",\n    \"cart-circle-xmark\",\n    \"cart-flatbed-boxes\",\n    \"cart-flatbed-empty\",\n    \"cart-flatbed-suitcase\",\n    \"cart-flatbed\",\n    \"cart-minus\",\n    \"cart-plus\",\n    \"cart-shopping-fast\",\n    \"cart-shopping\",\n    \"cart-xmark\",\n    \"cash-register\",\n    \"cassette-betamax\",\n    \"cassette-tape\",\n    \"cassette-vhs\",\n    \"castle\",\n    \"cat-space\",\n    \"cat\",\n    \"cauldron\",\n    \"cedi-sign\",\n    \"cent-sign\",\n    \"certificate\",\n    \"chair-office\",\n    \"chair\",\n    \"chalkboard-user\",\n    \"chalkboard\",\n    \"champagne-glass\",\n    \"champagne-glasses\",\n    \"charging-station\",\n    \"chart-area\",\n    \"chart-bar\",\n    \"chart-bullet\",\n    \"chart-candlestick\",\n    \"chart-column\",\n    \"chart-diagram\",\n    \"chart-fft\",\n    \"chart-gantt\",\n    \"chart-kanban\",\n    \"chart-line-down\",\n    \"chart-line-up-down\",\n    \"chart-line-up\",\n    \"chart-line\",\n    \"chart-mixed-up-circle-currency\",\n    \"chart-mixed-up-circle-dollar\",\n    \"chart-mixed\",\n    \"chart-network\",\n    \"chart-pie-simple-circle-currency\",\n    \"chart-pie-simple-circle-dollar\",\n    \"chart-pie-simple\",\n    \"chart-pie\",\n    \"chart-pyramid\",\n    \"chart-radar\",\n    \"chart-scatter-3d\",\n    \"chart-scatter-bubble\",\n    \"chart-scatter\",\n    \"chart-simple-horizontal\",\n    \"chart-simple\",\n    \"chart-sine\",\n    \"chart-tree-map\",\n    \"chart-user\",\n    \"chart-waterfall\",\n    \"check-double\",\n    \"check-to-slot\",\n    \"check\",\n    \"cheese-swiss\",\n    \"cheese\",\n    \"cherries\",\n    \"chess-bishop-piece\",\n    \"chess-bishop\",\n    \"chess-board\",\n    \"chess-clock-flip\",\n    \"chess-clock\",\n    \"chess-king-piece\",\n    \"chess-king\",\n    \"chess-knight-piece\",\n    \"chess-knight\",\n    \"chess-pawn-piece\",\n    \"chess-pawn\",\n    \"chess-queen-piece\",\n    \"chess-queen\",\n    \"chess-rook-piece\",\n    \"chess-rook\",\n    \"chess\",\n    \"chestnut\",\n    \"chevron-down\",\n    \"chevron-left\",\n    \"chevron-right\",\n    \"chevron-up\",\n    \"chevrons-down\",\n    \"chevrons-left\",\n    \"chevrons-right\",\n    \"chevrons-up\",\n    \"chf-sign\",\n    \"child-combatant\",\n    \"child-dress\",\n    \"child-reaching\",\n    \"child\",\n    \"children\",\n    \"chimney\",\n    \"chopsticks\",\n    \"church\",\n    \"circle-0\",\n    \"circle-1\",\n    \"circle-2\",\n    \"circle-3\",\n    \"circle-4\",\n    \"circle-5\",\n    \"circle-6\",\n    \"circle-7\",\n    \"circle-8\",\n    \"circle-9\",\n    \"circle-a\",\n    \"circle-ampersand\",\n    \"circle-arrow-down-left\",\n    \"circle-arrow-down-right\",\n    \"circle-arrow-down\",\n    \"circle-arrow-left\",\n    \"circle-arrow-right\",\n    \"circle-arrow-up-left\",\n    \"circle-arrow-up-right\",\n    \"circle-arrow-up\",\n    \"circle-b\",\n    \"circle-bolt\",\n    \"circle-book-open\",\n    \"circle-bookmark\",\n    \"circle-c\",\n    \"circle-calendar\",\n    \"circle-camera\",\n    \"circle-caret-down\",\n    \"circle-caret-left\",\n    \"circle-caret-right\",\n    \"circle-caret-up\",\n    \"circle-check\",\n    \"circle-chevron-down\",\n    \"circle-chevron-left\",\n    \"circle-chevron-right\",\n    \"circle-chevron-up\",\n    \"circle-d\",\n    \"circle-dashed\",\n    \"circle-divide\",\n    \"circle-dollar-to-slot\",\n    \"circle-dollar\",\n    \"circle-dot\",\n    \"circle-down-left\",\n    \"circle-down-right\",\n    \"circle-down\",\n    \"circle-e\",\n    \"circle-ellipsis-vertical\",\n    \"circle-ellipsis\",\n    \"circle-envelope\",\n    \"circle-euro\",\n    \"circle-exclamation-check\",\n    \"circle-exclamation\",\n    \"circle-f\",\n    \"circle-g\",\n    \"circle-gf\",\n    \"circle-h\",\n    \"circle-half-stroke\",\n    \"circle-half\",\n    \"circle-heart\",\n    \"circle-i\",\n    \"circle-info\",\n    \"circle-j\",\n    \"circle-k\",\n    \"circle-l\",\n    \"circle-left\",\n    \"circle-location-arrow\",\n    \"circle-m\",\n    \"circle-microphone-lines\",\n    \"circle-microphone\",\n    \"circle-minus\",\n    \"circle-n\",\n    \"circle-nodes\",\n    \"circle-notch\",\n    \"circle-o\",\n    \"circle-p\",\n    \"circle-parking\",\n    \"circle-pause\",\n    \"circle-phone-flip\",\n    \"circle-phone-hangup\",\n    \"circle-phone\",\n    \"circle-play\",\n    \"circle-plus\",\n    \"circle-q\",\n    \"circle-quarter-stroke\",\n    \"circle-quarter\",\n    \"circle-quarters\",\n    \"circle-question\",\n    \"circle-r\",\n    \"circle-radiation\",\n    \"circle-right\",\n    \"circle-s\",\n    \"circle-small\",\n    \"circle-sort-down\",\n    \"circle-sort-up\",\n    \"circle-sort\",\n    \"circle-star\",\n    \"circle-sterling\",\n    \"circle-stop\",\n    \"circle-t\",\n    \"circle-three-quarters-stroke\",\n    \"circle-three-quarters\",\n    \"circle-trash\",\n    \"circle-u\",\n    \"circle-up-left\",\n    \"circle-up-right\",\n    \"circle-up\",\n    \"circle-user\",\n    \"circle-v\",\n    \"circle-video\",\n    \"circle-w\",\n    \"circle-waveform-lines\",\n    \"circle-wifi-circle-wifi\",\n    \"circle-wifi\",\n    \"circle-x\",\n    \"circle-xmark\",\n    \"circle-y\",\n    \"circle-yen\",\n    \"circle-z\",\n    \"circle\",\n    \"circles-overlap-3\",\n    \"circles-overlap\",\n    \"citrus-slice\",\n    \"citrus\",\n    \"city\",\n    \"clapperboard-play\",\n    \"clapperboard\",\n    \"clarinet\",\n    \"claw-marks\",\n    \"clipboard-check\",\n    \"clipboard-list-check\",\n    \"clipboard-list\",\n    \"clipboard-medical\",\n    \"clipboard-prescription\",\n    \"clipboard-question\",\n    \"clipboard-user\",\n    \"clipboard\",\n    \"clock-desk\",\n    \"clock-eight-thirty\",\n    \"clock-eight\",\n    \"clock-eleven-thirty\",\n    \"clock-eleven\",\n    \"clock-five-thirty\",\n    \"clock-five\",\n    \"clock-four-thirty\",\n    \"clock-nine-thirty\",\n    \"clock-nine\",\n    \"clock-one-thirty\",\n    \"clock-one\",\n    \"clock-rotate-left\",\n    \"clock-seven-thirty\",\n    \"clock-seven\",\n    \"clock-six-thirty\",\n    \"clock-six\",\n    \"clock-ten-thirty\",\n    \"clock-ten\",\n    \"clock-three-thirty\",\n    \"clock-three\",\n    \"clock-twelve-thirty\",\n    \"clock-twelve\",\n    \"clock-two-thirty\",\n    \"clock-two\",\n    \"clock\",\n    \"clone\",\n    \"closed-captioning-slash\",\n    \"closed-captioning\",\n    \"clothes-hanger\",\n    \"cloud-arrow-down\",\n    \"cloud-arrow-up\",\n    \"cloud-binary\",\n    \"cloud-bolt-moon\",\n    \"cloud-bolt-sun\",\n    \"cloud-bolt\",\n    \"cloud-check\",\n    \"cloud-drizzle\",\n    \"cloud-exclamation\",\n    \"cloud-fog\",\n    \"cloud-hail-mixed\",\n    \"cloud-hail\",\n    \"cloud-meatball\",\n    \"cloud-minus\",\n    \"cloud-moon-rain\",\n    \"cloud-moon\",\n    \"cloud-music\",\n    \"cloud-plus\",\n    \"cloud-question\",\n    \"cloud-rain\",\n    \"cloud-rainbow\",\n    \"cloud-showers-heavy\",\n    \"cloud-showers-water\",\n    \"cloud-showers\",\n    \"cloud-slash\",\n    \"cloud-sleet\",\n    \"cloud-snow\",\n    \"cloud-sun-rain\",\n    \"cloud-sun\",\n    \"cloud-word\",\n    \"cloud-xmark\",\n    \"cloud\",\n    \"clouds-moon\",\n    \"clouds-sun\",\n    \"clouds\",\n    \"clover\",\n    \"club\",\n    \"coconut\",\n    \"code-branch\",\n    \"code-commit\",\n    \"code-compare\",\n    \"code-fork\",\n    \"code-merge\",\n    \"code-pull-request-closed\",\n    \"code-pull-request-draft\",\n    \"code-pull-request\",\n    \"code-simple\",\n    \"code\",\n    \"coffee-bean\",\n    \"coffee-beans\",\n    \"coffee-pot\",\n    \"coffin-cross\",\n    \"coffin\",\n    \"coin-blank\",\n    \"coin-front\",\n    \"coin-vertical\",\n    \"coin\",\n    \"coins\",\n    \"colon-sign\",\n    \"colon\",\n    \"columns-3\",\n    \"comet\",\n    \"comma\",\n    \"command\",\n    \"comment-arrow-down\",\n    \"comment-arrow-up-right\",\n    \"comment-arrow-up\",\n    \"comment-captions\",\n    \"comment-check\",\n    \"comment-code\",\n    \"comment-dollar\",\n    \"comment-dots\",\n    \"comment-exclamation\",\n    \"comment-heart\",\n    \"comment-image\",\n    \"comment-lines\",\n    \"comment-medical\",\n    \"comment-middle-top\",\n    \"comment-middle\",\n    \"comment-minus\",\n    \"comment-music\",\n    \"comment-nodes\",\n    \"comment-pen\",\n    \"comment-plus\",\n    \"comment-question\",\n    \"comment-quote\",\n    \"comment-slash\",\n    \"comment-smile\",\n    \"comment-sms\",\n    \"comment-text\",\n    \"comment-xmark\",\n    \"comment\",\n    \"comments-dollar\",\n    \"comments-question-check\",\n    \"comments-question\",\n    \"comments\",\n    \"compact-disc\",\n    \"compass-drafting\",\n    \"compass-slash\",\n    \"compass\",\n    \"compress-wide\",\n    \"compress\",\n    \"computer-classic\",\n    \"computer-mouse-scrollwheel\",\n    \"computer-mouse\",\n    \"computer-speaker\",\n    \"computer\",\n    \"container-storage\",\n    \"conveyor-belt-arm\",\n    \"conveyor-belt-boxes\",\n    \"conveyor-belt-empty\",\n    \"conveyor-belt\",\n    \"cookie-bite\",\n    \"cookie\",\n    \"copy\",\n    \"copyright\",\n    \"corn\",\n    \"corner\",\n    \"couch\",\n    \"court-sport\",\n    \"cow\",\n    \"cowbell-circle-plus\",\n    \"cowbell\",\n    \"crab\",\n    \"crate-apple\",\n    \"crate-empty\",\n    \"credit-card-blank\",\n    \"credit-card-front\",\n    \"credit-card\",\n    \"cricket-bat-ball\",\n    \"croissant\",\n    \"crop-simple\",\n    \"crop\",\n    \"cross\",\n    \"crosshairs-simple\",\n    \"crosshairs\",\n    \"crow\",\n    \"crown\",\n    \"crutch\",\n    \"crutches\",\n    \"cruzeiro-sign\",\n    \"crystal-ball\",\n    \"cube\",\n    \"cubes-stacked\",\n    \"cubes\",\n    \"cucumber\",\n    \"cup-straw-swoosh\",\n    \"cup-straw\",\n    \"cup-togo\",\n    \"cupcake\",\n    \"curling-stone\",\n    \"custard\",\n    \"d\",\n    \"dagger\",\n    \"dash\",\n    \"database\",\n    \"deer-rudolph\",\n    \"deer\",\n    \"delete-left\",\n    \"delete-right\",\n    \"democrat\",\n    \"desktop-arrow-down\",\n    \"desktop\",\n    \"dharmachakra\",\n    \"diagram-cells\",\n    \"diagram-lean-canvas\",\n    \"diagram-nested\",\n    \"diagram-next\",\n    \"diagram-predecessor\",\n    \"diagram-previous\",\n    \"diagram-project\",\n    \"diagram-sankey\",\n    \"diagram-subtask\",\n    \"diagram-successor\",\n    \"diagram-venn\",\n    \"dial-high\",\n    \"dial-low\",\n    \"dial-max\",\n    \"dial-med-low\",\n    \"dial-med\",\n    \"dial-min\",\n    \"dial-off\",\n    \"dial\",\n    \"diamond-exclamation\",\n    \"diamond-half-stroke\",\n    \"diamond-half\",\n    \"diamond-turn-right\",\n    \"diamond\",\n    \"diamonds-4\",\n    \"dice-d10\",\n    \"dice-d12\",\n    \"dice-d20\",\n    \"dice-d4\",\n    \"dice-d6\",\n    \"dice-d8\",\n    \"dice-five\",\n    \"dice-four\",\n    \"dice-one\",\n    \"dice-six\",\n    \"dice-three\",\n    \"dice-two\",\n    \"dice\",\n    \"dinosaur\",\n    \"diploma\",\n    \"disc-drive\",\n    \"disease\",\n    \"display-arrow-down\",\n    \"display-chart-up-circle-currency\",\n    \"display-chart-up-circle-dollar\",\n    \"display-chart-up\",\n    \"display-code\",\n    \"display-medical\",\n    \"display-slash\",\n    \"display\",\n    \"distribute-spacing-horizontal\",\n    \"distribute-spacing-vertical\",\n    \"ditto\",\n    \"divide\",\n    \"dna\",\n    \"do-not-enter\",\n    \"dog-leashed\",\n    \"dog\",\n    \"dollar-sign\",\n    \"dolly-empty\",\n    \"dolly\",\n    \"dolphin\",\n    \"dong-sign\",\n    \"donut\",\n    \"door-closed\",\n    \"door-open\",\n    \"dove\",\n    \"down-from-bracket\",\n    \"down-from-dotted-line\",\n    \"down-from-line\",\n    \"down-left-and-up-right-to-center\",\n    \"down-left\",\n    \"down-long\",\n    \"down-right\",\n    \"down-to-bracket\",\n    \"down-to-dotted-line\",\n    \"down-to-line\",\n    \"down\",\n    \"download\",\n    \"dragon\",\n    \"draw-circle\",\n    \"draw-polygon\",\n    \"draw-square\",\n    \"dreidel\",\n    \"drone-front\",\n    \"drone\",\n    \"droplet-degree\",\n    \"droplet-percent\",\n    \"droplet-slash\",\n    \"droplet\",\n    \"drum-steelpan\",\n    \"drum\",\n    \"drumstick-bite\",\n    \"drumstick\",\n    \"dryer-heat\",\n    \"dryer\",\n    \"duck\",\n    \"dumbbell\",\n    \"dumpster-fire\",\n    \"dumpster\",\n    \"dungeon\",\n    \"e\",\n    \"ear-deaf\",\n    \"ear-listen\",\n    \"ear-muffs\",\n    \"ear\",\n    \"earth-africa\",\n    \"earth-americas\",\n    \"earth-asia\",\n    \"earth-europe\",\n    \"earth-oceania\",\n    \"eclipse\",\n    \"egg-fried\",\n    \"egg\",\n    \"eggplant\",\n    \"eject\",\n    \"elephant\",\n    \"elevator\",\n    \"ellipsis-stroke-vertical\",\n    \"ellipsis-stroke\",\n    \"ellipsis-vertical\",\n    \"ellipsis\",\n    \"empty-set\",\n    \"engine-warning\",\n    \"engine\",\n    \"envelope-circle-check\",\n    \"envelope-dot\",\n    \"envelope-open-dollar\",\n    \"envelope-open-text\",\n    \"envelope-open\",\n    \"envelope\",\n    \"envelopes-bulk\",\n    \"envelopes\",\n    \"equals\",\n    \"eraser\",\n    \"escalator\",\n    \"ethernet\",\n    \"euro-sign\",\n    \"excavator\",\n    \"exclamation\",\n    \"expand-wide\",\n    \"expand\",\n    \"explosion\",\n    \"eye-dropper-full\",\n    \"eye-dropper-half\",\n    \"eye-dropper\",\n    \"eye-evil\",\n    \"eye-low-vision\",\n    \"eye-slash\",\n    \"eye\",\n    \"eyes\",\n    \"f\",\n    \"face-angry-horns\",\n    \"face-angry\",\n    \"face-anguished\",\n    \"face-anxious-sweat\",\n    \"face-astonished\",\n    \"face-awesome\",\n    \"face-beam-hand-over-mouth\",\n    \"face-clouds\",\n    \"face-confounded\",\n    \"face-confused\",\n    \"face-cowboy-hat\",\n    \"face-diagonal-mouth\",\n    \"face-disappointed\",\n    \"face-disguise\",\n    \"face-dizzy\",\n    \"face-dotted\",\n    \"face-downcast-sweat\",\n    \"face-drooling\",\n    \"face-exhaling\",\n    \"face-explode\",\n    \"face-expressionless\",\n    \"face-eyes-xmarks\",\n    \"face-fearful\",\n    \"face-flushed\",\n    \"face-frown-open\",\n    \"face-frown-slight\",\n    \"face-frown\",\n    \"face-glasses\",\n    \"face-grimace\",\n    \"face-grin-beam-sweat\",\n    \"face-grin-beam\",\n    \"face-grin-hearts\",\n    \"face-grin-squint-tears\",\n    \"face-grin-squint\",\n    \"face-grin-stars\",\n    \"face-grin-tears\",\n    \"face-grin-tongue-squint\",\n    \"face-grin-tongue-wink\",\n    \"face-grin-tongue\",\n    \"face-grin-wide\",\n    \"face-grin-wink\",\n    \"face-grin\",\n    \"face-hand-over-mouth\",\n    \"face-hand-peeking\",\n    \"face-hand-yawn\",\n    \"face-head-bandage\",\n    \"face-holding-back-tears\",\n    \"face-hushed\",\n    \"face-icicles\",\n    \"face-kiss-beam\",\n    \"face-kiss-closed-eyes\",\n    \"face-kiss-wink-heart\",\n    \"face-kiss\",\n    \"face-laugh-beam\",\n    \"face-laugh-squint\",\n    \"face-laugh-wink\",\n    \"face-laugh\",\n    \"face-lying\",\n    \"face-mask\",\n    \"face-meh-blank\",\n    \"face-meh\",\n    \"face-melting\",\n    \"face-monocle\",\n    \"face-nauseated\",\n    \"face-nose-steam\",\n    \"face-party\",\n    \"face-pensive\",\n    \"face-persevering\",\n    \"face-pleading\",\n    \"face-pouting\",\n    \"face-raised-eyebrow\",\n    \"face-relieved\",\n    \"face-rolling-eyes\",\n    \"face-sad-cry\",\n    \"face-sad-sweat\",\n    \"face-sad-tear\",\n    \"face-saluting\",\n    \"face-scream\",\n    \"face-shush\",\n    \"face-sleeping\",\n    \"face-sleepy\",\n    \"face-smile-beam\",\n    \"face-smile-halo\",\n    \"face-smile-hearts\",\n    \"face-smile-horns\",\n    \"face-smile-plus\",\n    \"face-smile-relaxed\",\n    \"face-smile-tear\",\n    \"face-smile-tongue\",\n    \"face-smile-upside-down\",\n    \"face-smile-wink\",\n    \"face-smile\",\n    \"face-smiling-hands\",\n    \"face-smirking\",\n    \"face-spiral-eyes\",\n    \"face-sunglasses\",\n    \"face-surprise\",\n    \"face-swear\",\n    \"face-thermometer\",\n    \"face-thinking\",\n    \"face-tired\",\n    \"face-tissue\",\n    \"face-tongue-money\",\n    \"face-tongue-sweat\",\n    \"face-unamused\",\n    \"face-viewfinder\",\n    \"face-vomit\",\n    \"face-weary\",\n    \"face-woozy\",\n    \"face-worried\",\n    \"face-zany\",\n    \"face-zipper\",\n    \"falafel\",\n    \"family-dress\",\n    \"family-pants\",\n    \"family\",\n    \"fan-table\",\n    \"fan\",\n    \"farm\",\n    \"faucet-drip\",\n    \"faucet\",\n    \"fax\",\n    \"feather-pointed\",\n    \"feather\",\n    \"fence\",\n    \"ferris-wheel\",\n    \"ferry\",\n    \"field-hockey-stick-ball\",\n    \"file-arrow-down\",\n    \"file-arrow-up\",\n    \"file-audio\",\n    \"file-binary\",\n    \"file-cad\",\n    \"file-certificate\",\n    \"file-chart-column\",\n    \"file-chart-pie\",\n    \"file-check\",\n    \"file-circle-check\",\n    \"file-circle-exclamation\",\n    \"file-circle-info\",\n    \"file-circle-minus\",\n    \"file-circle-plus\",\n    \"file-circle-question\",\n    \"file-circle-xmark\",\n    \"file-code\",\n    \"file-contract\",\n    \"file-csv\",\n    \"file-dashed-line\",\n    \"file-doc\",\n    \"file-eps\",\n    \"file-excel\",\n    \"file-exclamation\",\n    \"file-export\",\n    \"file-fragment\",\n    \"file-gif\",\n    \"file-half-dashed\",\n    \"file-heart\",\n    \"file-image\",\n    \"file-import\",\n    \"file-invoice-dollar\",\n    \"file-invoice\",\n    \"file-jpg\",\n    \"file-lines\",\n    \"file-lock\",\n    \"file-magnifying-glass\",\n    \"file-medical\",\n    \"file-minus\",\n    \"file-mov\",\n    \"file-mp3\",\n    \"file-mp4\",\n    \"file-music\",\n    \"file-pdf\",\n    \"file-pen\",\n    \"file-plus-minus\",\n    \"file-plus\",\n    \"file-png\",\n    \"file-powerpoint\",\n    \"file-ppt\",\n    \"file-prescription\",\n    \"file-shield\",\n    \"file-signature\",\n    \"file-slash\",\n    \"file-spreadsheet\",\n    \"file-svg\",\n    \"file-user\",\n    \"file-vector\",\n    \"file-video\",\n    \"file-waveform\",\n    \"file-word\",\n    \"file-xls\",\n    \"file-xmark\",\n    \"file-xml\",\n    \"file-zip\",\n    \"file-zipper\",\n    \"file\",\n    \"files-medical\",\n    \"files\",\n    \"fill-drip\",\n    \"fill\",\n    \"film-canister\",\n    \"film-simple\",\n    \"film-slash\",\n    \"film\",\n    \"films\",\n    \"filter-circle-dollar\",\n    \"filter-circle-xmark\",\n    \"filter-list\",\n    \"filter-slash\",\n    \"filter\",\n    \"filters\",\n    \"fingerprint\",\n    \"fire-burner\",\n    \"fire-extinguisher\",\n    \"fire-flame-curved\",\n    \"fire-flame-simple\",\n    \"fire-flame\",\n    \"fire-hydrant\",\n    \"fire-smoke\",\n    \"fire\",\n    \"fireplace\",\n    \"fish-bones\",\n    \"fish-cooked\",\n    \"fish-fins\",\n    \"fish\",\n    \"fishing-rod\",\n    \"flag-checkered\",\n    \"flag-pennant\",\n    \"flag-swallowtail\",\n    \"flag-usa\",\n    \"flag\",\n    \"flashlight\",\n    \"flask-gear\",\n    \"flask-round-poison\",\n    \"flask-round-potion\",\n    \"flask-vial\",\n    \"flask\",\n    \"flatbread-stuffed\",\n    \"flatbread\",\n    \"floppy-disk-circle-arrow-right\",\n    \"floppy-disk-circle-xmark\",\n    \"floppy-disk-pen\",\n    \"floppy-disk\",\n    \"floppy-disks\",\n    \"florin-sign\",\n    \"flower-daffodil\",\n    \"flower-tulip\",\n    \"flower\",\n    \"flute\",\n    \"flux-capacitor\",\n    \"flying-disc\",\n    \"folder-arrow-down\",\n    \"folder-arrow-up\",\n    \"folder-bookmark\",\n    \"folder-check\",\n    \"folder-closed\",\n    \"folder-gear\",\n    \"folder-grid\",\n    \"folder-heart\",\n    \"folder-image\",\n    \"folder-magnifying-glass\",\n    \"folder-medical\",\n    \"folder-minus\",\n    \"folder-music\",\n    \"folder-open\",\n    \"folder-plus\",\n    \"folder-tree\",\n    \"folder-user\",\n    \"folder-xmark\",\n    \"folder\",\n    \"folders\",\n    \"fondue-pot\",\n    \"font-awesome\",\n    \"font-case\",\n    \"font\",\n    \"football-helmet\",\n    \"football\",\n    \"fork-knife\",\n    \"fork\",\n    \"forklift\",\n    \"fort\",\n    \"forward-fast\",\n    \"forward-step\",\n    \"forward\",\n    \"frame\",\n    \"franc-sign\",\n    \"french-fries\",\n    \"frog\",\n    \"function\",\n    \"futbol\",\n    \"g\",\n    \"galaxy\",\n    \"gallery-thumbnails\",\n    \"game-board-simple\",\n    \"game-board\",\n    \"game-console-handheld-crank\",\n    \"game-console-handheld\",\n    \"gamepad-modern\",\n    \"gamepad\",\n    \"garage-car\",\n    \"garage-open\",\n    \"garage\",\n    \"garlic\",\n    \"gas-pump-slash\",\n    \"gas-pump\",\n    \"gauge-circle-bolt\",\n    \"gauge-circle-minus\",\n    \"gauge-circle-plus\",\n    \"gauge-high\",\n    \"gauge-low\",\n    \"gauge-max\",\n    \"gauge-min\",\n    \"gauge-simple-high\",\n    \"gauge-simple-low\",\n    \"gauge-simple-max\",\n    \"gauge-simple-min\",\n    \"gauge-simple\",\n    \"gauge\",\n    \"gavel\",\n    \"gear-code\",\n    \"gear-complex-code\",\n    \"gear-complex\",\n    \"gear\",\n    \"gears\",\n    \"gem\",\n    \"genderless\",\n    \"ghost\",\n    \"gif\",\n    \"gift-card\",\n    \"gift\",\n    \"gifts\",\n    \"gingerbread-man\",\n    \"glass-citrus\",\n    \"glass-empty\",\n    \"glass-half\",\n    \"glass-water-droplet\",\n    \"glass-water\",\n    \"glass\",\n    \"glasses-round\",\n    \"glasses\",\n    \"globe-pointer\",\n    \"globe-snow\",\n    \"globe-stand\",\n    \"globe-wifi\",\n    \"globe\",\n    \"goal-net\",\n    \"golf-ball-tee\",\n    \"golf-club\",\n    \"golf-flag-hole\",\n    \"gopuram\",\n    \"graduation-cap\",\n    \"gramophone\",\n    \"grapes\",\n    \"grate-droplet\",\n    \"grate\",\n    \"greater-than-equal\",\n    \"greater-than\",\n    \"grid-2-plus\",\n    \"grid-2\",\n    \"grid-4\",\n    \"grid-5\",\n    \"grid-dividers\",\n    \"grid-horizontal\",\n    \"grid-round-2-plus\",\n    \"grid-round-2\",\n    \"grid-round-4\",\n    \"grid-round-5\",\n    \"grid-round\",\n    \"grid\",\n    \"grill-fire\",\n    \"grill-hot\",\n    \"grill\",\n    \"grip-dots-vertical\",\n    \"grip-dots\",\n    \"grip-lines-vertical\",\n    \"grip-lines\",\n    \"grip-vertical\",\n    \"grip\",\n    \"group-arrows-rotate\",\n    \"guarani-sign\",\n    \"guitar-electric\",\n    \"guitar\",\n    \"guitars\",\n    \"gun-slash\",\n    \"gun-squirt\",\n    \"gun\",\n    \"h\",\n    \"h1\",\n    \"h2\",\n    \"h3\",\n    \"h4\",\n    \"h5\",\n    \"h6\",\n    \"hammer-brush\",\n    \"hammer-crash\",\n    \"hammer-war\",\n    \"hammer\",\n    \"hamsa\",\n    \"hand-back-fist\",\n    \"hand-back-point-down\",\n    \"hand-back-point-left\",\n    \"hand-back-point-ribbon\",\n    \"hand-back-point-right\",\n    \"hand-back-point-up\",\n    \"hand-dots\",\n    \"hand-fingers-crossed\",\n    \"hand-fist\",\n    \"hand-heart\",\n    \"hand-holding-box\",\n    \"hand-holding-circle-dollar\",\n    \"hand-holding-dollar\",\n    \"hand-holding-droplet\",\n    \"hand-holding-hand\",\n    \"hand-holding-heart\",\n    \"hand-holding-magic\",\n    \"hand-holding-medical\",\n    \"hand-holding-seedling\",\n    \"hand-holding-skull\",\n    \"hand-holding\",\n    \"hand-horns\",\n    \"hand-lizard\",\n    \"hand-love\",\n    \"hand-middle-finger\",\n    \"hand-peace\",\n    \"hand-point-down\",\n    \"hand-point-left\",\n    \"hand-point-ribbon\",\n    \"hand-point-right\",\n    \"hand-point-up\",\n    \"hand-pointer\",\n    \"hand-scissors\",\n    \"hand-sparkles\",\n    \"hand-spock\",\n    \"hand-wave\",\n    \"hand\",\n    \"handcuffs\",\n    \"hands-asl-interpreting\",\n    \"hands-bound\",\n    \"hands-bubbles\",\n    \"hands-clapping\",\n    \"hands-holding-child\",\n    \"hands-holding-circle\",\n    \"hands-holding-diamond\",\n    \"hands-holding-dollar\",\n    \"hands-holding-heart\",\n    \"hands-holding\",\n    \"hands-praying\",\n    \"hands\",\n    \"handshake-angle\",\n    \"handshake-simple-slash\",\n    \"handshake-simple\",\n    \"handshake-slash\",\n    \"handshake\",\n    \"hanukiah\",\n    \"hard-drive\",\n    \"hashtag-lock\",\n    \"hashtag\",\n    \"hat-beach\",\n    \"hat-chef\",\n    \"hat-cowboy-side\",\n    \"hat-cowboy\",\n    \"hat-santa\",\n    \"hat-winter\",\n    \"hat-witch\",\n    \"hat-wizard\",\n    \"head-side-brain\",\n    \"head-side-cough-slash\",\n    \"head-side-cough\",\n    \"head-side-gear\",\n    \"head-side-goggles\",\n    \"head-side-headphones\",\n    \"head-side-heart\",\n    \"head-side-mask\",\n    \"head-side-medical\",\n    \"head-side-virus\",\n    \"head-side\",\n    \"heading\",\n    \"headphones-simple\",\n    \"headphones\",\n    \"headset\",\n    \"heart-circle-bolt\",\n    \"heart-circle-check\",\n    \"heart-circle-exclamation\",\n    \"heart-circle-minus\",\n    \"heart-circle-plus\",\n    \"heart-circle-xmark\",\n    \"heart-crack\",\n    \"heart-half-stroke\",\n    \"heart-half\",\n    \"heart-pulse\",\n    \"heart\",\n    \"heat\",\n    \"helicopter-symbol\",\n    \"helicopter\",\n    \"helmet-battle\",\n    \"helmet-safety\",\n    \"helmet-un\",\n    \"hexagon-check\",\n    \"hexagon-divide\",\n    \"hexagon-exclamation\",\n    \"hexagon-image\",\n    \"hexagon-minus\",\n    \"hexagon-nodes-bolt\",\n    \"hexagon-nodes\",\n    \"hexagon-plus\",\n    \"hexagon-vertical-nft-slanted\",\n    \"hexagon-vertical-nft\",\n    \"hexagon-xmark\",\n    \"hexagon\",\n    \"high-definition\",\n    \"highlighter-line\",\n    \"highlighter\",\n    \"hill-avalanche\",\n    \"hill-rockslide\",\n    \"hippo\",\n    \"hockey-mask\",\n    \"hockey-puck\",\n    \"hockey-stick-puck\",\n    \"hockey-sticks\",\n    \"holly-berry\",\n    \"honey-pot\",\n    \"hood-cloak\",\n    \"horizontal-rule\",\n    \"horse-head\",\n    \"horse-saddle\",\n    \"horse\",\n    \"hose-reel\",\n    \"hose\",\n    \"hospital-user\",\n    \"hospital\",\n    \"hospitals\",\n    \"hot-tub-person\",\n    \"hotdog\",\n    \"hotel\",\n    \"hourglass-clock\",\n    \"hourglass-end\",\n    \"hourglass-half\",\n    \"hourglass-start\",\n    \"hourglass\",\n    \"house-blank\",\n    \"house-building\",\n    \"house-chimney-blank\",\n    \"house-chimney-crack\",\n    \"house-chimney-heart\",\n    \"house-chimney-medical\",\n    \"house-chimney-user\",\n    \"house-chimney-window\",\n    \"house-chimney\",\n    \"house-circle-check\",\n    \"house-circle-exclamation\",\n    \"house-circle-xmark\",\n    \"house-crack\",\n    \"house-day\",\n    \"house-fire\",\n    \"house-flag\",\n    \"house-flood-water-circle-arrow-right\",\n    \"house-flood-water\",\n    \"house-heart\",\n    \"house-laptop\",\n    \"house-lock\",\n    \"house-medical-circle-check\",\n    \"house-medical-circle-exclamation\",\n    \"house-medical-circle-xmark\",\n    \"house-medical-flag\",\n    \"house-medical\",\n    \"house-night\",\n    \"house-person-leave\",\n    \"house-person-return\",\n    \"house-signal\",\n    \"house-tree\",\n    \"house-tsunami\",\n    \"house-turret\",\n    \"house-user\",\n    \"house-water\",\n    \"house-window\",\n    \"house\",\n    \"hryvnia-sign\",\n    \"hundred-points\",\n    \"hurricane\",\n    \"hydra\",\n    \"hyphen\",\n    \"i-cursor\",\n    \"i\",\n    \"ice-cream\",\n    \"ice-skate\",\n    \"icicles\",\n    \"icons\",\n    \"id-badge\",\n    \"id-card-clip\",\n    \"id-card\",\n    \"igloo\",\n    \"image-landscape\",\n    \"image-polaroid-user\",\n    \"image-polaroid\",\n    \"image-portrait\",\n    \"image-slash\",\n    \"image-user\",\n    \"image\",\n    \"images-user\",\n    \"images\",\n    \"inbox-full\",\n    \"inbox-in\",\n    \"inbox-out\",\n    \"inbox\",\n    \"inboxes\",\n    \"indent\",\n    \"indian-rupee-sign\",\n    \"industry-windows\",\n    \"industry\",\n    \"infinity\",\n    \"info\",\n    \"inhaler\",\n    \"input-numeric\",\n    \"input-pipe\",\n    \"input-text\",\n    \"integral\",\n    \"interrobang\",\n    \"intersection\",\n    \"island-tropical\",\n    \"italic\",\n    \"j\",\n    \"jack-o-lantern\",\n    \"jar-wheat\",\n    \"jar\",\n    \"jedi\",\n    \"jet-fighter-up\",\n    \"jet-fighter\",\n    \"joint\",\n    \"joystick\",\n    \"jug-bottle\",\n    \"jug-detergent\",\n    \"jug\",\n    \"k\",\n    \"kaaba\",\n    \"kazoo\",\n    \"kerning\",\n    \"key-skeleton-left-right\",\n    \"key-skeleton\",\n    \"key\",\n    \"keyboard-brightness-low\",\n    \"keyboard-brightness\",\n    \"keyboard-down\",\n    \"keyboard-left\",\n    \"keyboard\",\n    \"keynote\",\n    \"khanda\",\n    \"kidneys\",\n    \"kip-sign\",\n    \"kit-medical\",\n    \"kitchen-set\",\n    \"kite\",\n    \"kiwi-bird\",\n    \"kiwi-fruit\",\n    \"knife-kitchen\",\n    \"knife\",\n    \"l\",\n    \"lacrosse-stick-ball\",\n    \"lacrosse-stick\",\n    \"lambda\",\n    \"lamp-desk\",\n    \"lamp-floor\",\n    \"lamp-street\",\n    \"lamp\",\n    \"land-mine-on\",\n    \"landmark-dome\",\n    \"landmark-flag\",\n    \"landmark-magnifying-glass\",\n    \"landmark\",\n    \"language\",\n    \"laptop-arrow-down\",\n    \"laptop-binary\",\n    \"laptop-code\",\n    \"laptop-file\",\n    \"laptop-medical\",\n    \"laptop-mobile\",\n    \"laptop-slash\",\n    \"laptop\",\n    \"lari-sign\",\n    \"lasso-sparkles\",\n    \"lasso\",\n    \"layer-group\",\n    \"layer-minus\",\n    \"layer-plus\",\n    \"leaf-heart\",\n    \"leaf-maple\",\n    \"leaf-oak\",\n    \"leaf\",\n    \"leafy-green\",\n    \"left-from-bracket\",\n    \"left-from-line\",\n    \"left-long-to-line\",\n    \"left-long\",\n    \"left-right\",\n    \"left-to-bracket\",\n    \"left-to-line\",\n    \"left\",\n    \"lemon\",\n    \"less-than-equal\",\n    \"less-than\",\n    \"life-ring\",\n    \"light-ceiling\",\n    \"light-emergency-on\",\n    \"light-emergency\",\n    \"light-switch-off\",\n    \"light-switch-on\",\n    \"light-switch\",\n    \"lightbulb-cfl-on\",\n    \"lightbulb-cfl\",\n    \"lightbulb-dollar\",\n    \"lightbulb-exclamation-on\",\n    \"lightbulb-exclamation\",\n    \"lightbulb-gear\",\n    \"lightbulb-message\",\n    \"lightbulb-on\",\n    \"lightbulb-slash\",\n    \"lightbulb\",\n    \"lighthouse\",\n    \"lights-holiday\",\n    \"line-columns\",\n    \"line-height\",\n    \"lines-leaning\",\n    \"link-horizontal-slash\",\n    \"link-horizontal\",\n    \"link-simple-slash\",\n    \"link-simple\",\n    \"link-slash\",\n    \"link\",\n    \"lips\",\n    \"lira-sign\",\n    \"list-check\",\n    \"list-dropdown\",\n    \"list-music\",\n    \"list-ol\",\n    \"list-radio\",\n    \"list-timeline\",\n    \"list-tree\",\n    \"list-ul\",\n    \"list\",\n    \"litecoin-sign\",\n    \"loader\",\n    \"lobster\",\n    \"location-arrow-up\",\n    \"location-arrow\",\n    \"location-check\",\n    \"location-crosshairs-slash\",\n    \"location-crosshairs\",\n    \"location-dot-slash\",\n    \"location-dot\",\n    \"location-exclamation\",\n    \"location-minus\",\n    \"location-pen\",\n    \"location-pin-lock\",\n    \"location-pin-slash\",\n    \"location-pin\",\n    \"location-plus\",\n    \"location-question\",\n    \"location-smile\",\n    \"location-xmark\",\n    \"lock-a\",\n    \"lock-hashtag\",\n    \"lock-keyhole-open\",\n    \"lock-keyhole\",\n    \"lock-open\",\n    \"lock\",\n    \"locust\",\n    \"lollipop\",\n    \"loveseat\",\n    \"luchador-mask\",\n    \"lungs-virus\",\n    \"lungs\",\n    \"m\",\n    \"mace\",\n    \"magnet\",\n    \"magnifying-glass-arrow-right\",\n    \"magnifying-glass-arrows-rotate\",\n    \"magnifying-glass-chart\",\n    \"magnifying-glass-dollar\",\n    \"magnifying-glass-location\",\n    \"magnifying-glass-minus\",\n    \"magnifying-glass-music\",\n    \"magnifying-glass-play\",\n    \"magnifying-glass-plus\",\n    \"magnifying-glass-waveform\",\n    \"magnifying-glass\",\n    \"mailbox-flag-up\",\n    \"mailbox\",\n    \"manat-sign\",\n    \"mandolin\",\n    \"mango\",\n    \"manhole\",\n    \"map-location-dot\",\n    \"map-location\",\n    \"map-pin\",\n    \"map\",\n    \"marker\",\n    \"mars-and-venus-burst\",\n    \"mars-and-venus\",\n    \"mars-double\",\n    \"mars-stroke-right\",\n    \"mars-stroke-up\",\n    \"mars-stroke\",\n    \"mars\",\n    \"martini-glass-citrus\",\n    \"martini-glass-empty\",\n    \"martini-glass\",\n    \"mask-face\",\n    \"mask-snorkel\",\n    \"mask-ventilator\",\n    \"mask\",\n    \"masks-theater\",\n    \"mattress-pillow\",\n    \"maximize\",\n    \"meat\",\n    \"medal\",\n    \"megaphone\",\n    \"melon-slice\",\n    \"melon\",\n    \"memo-circle-check\",\n    \"memo-circle-info\",\n    \"memo-pad\",\n    \"memo\",\n    \"memory\",\n    \"menorah\",\n    \"mercury\",\n    \"merge\",\n    \"message-arrow-down\",\n    \"message-arrow-up-right\",\n    \"message-arrow-up\",\n    \"message-bot\",\n    \"message-captions\",\n    \"message-check\",\n    \"message-code\",\n    \"message-dollar\",\n    \"message-dots\",\n    \"message-exclamation\",\n    \"message-heart\",\n    \"message-image\",\n    \"message-lines\",\n    \"message-medical\",\n    \"message-middle-top\",\n    \"message-middle\",\n    \"message-minus\",\n    \"message-music\",\n    \"message-pen\",\n    \"message-plus\",\n    \"message-question\",\n    \"message-quote\",\n    \"message-slash\",\n    \"message-smile\",\n    \"message-sms\",\n    \"message-text\",\n    \"message-xmark\",\n    \"message\",\n    \"messages-dollar\",\n    \"messages-question\",\n    \"messages\",\n    \"meteor\",\n    \"meter-bolt\",\n    \"meter-droplet\",\n    \"meter-fire\",\n    \"meter\",\n    \"microchip-ai\",\n    \"microchip\",\n    \"microphone-lines-slash\",\n    \"microphone-lines\",\n    \"microphone-slash\",\n    \"microphone-stand\",\n    \"microphone\",\n    \"microscope\",\n    \"microwave\",\n    \"mill-sign\",\n    \"minimize\",\n    \"minus\",\n    \"mistletoe\",\n    \"mitten\",\n    \"mobile-button\",\n    \"mobile-notch\",\n    \"mobile-retro\",\n    \"mobile-screen-button\",\n    \"mobile-screen\",\n    \"mobile-signal-out\",\n    \"mobile-signal\",\n    \"mobile\",\n    \"money-bill-1-wave\",\n    \"money-bill-1\",\n    \"money-bill-simple-wave\",\n    \"money-bill-simple\",\n    \"money-bill-transfer\",\n    \"money-bill-trend-up\",\n    \"money-bill-wave\",\n    \"money-bill-wheat\",\n    \"money-bill\",\n    \"money-bills-simple\",\n    \"money-bills\",\n    \"money-check-dollar-pen\",\n    \"money-check-dollar\",\n    \"money-check-pen\",\n    \"money-check\",\n    \"money-from-bracket\",\n    \"money-simple-from-bracket\",\n    \"monitor-waveform\",\n    \"monkey\",\n    \"monument\",\n    \"moon-cloud\",\n    \"moon-over-sun\",\n    \"moon-stars\",\n    \"moon\",\n    \"moped\",\n    \"mortar-pestle\",\n    \"mosque\",\n    \"mosquito-net\",\n    \"mosquito\",\n    \"motorcycle\",\n    \"mound\",\n    \"mountain-city\",\n    \"mountain-sun\",\n    \"mountain\",\n    \"mountains\",\n    \"mouse-field\",\n    \"mp3-player\",\n    \"mug-hot\",\n    \"mug-marshmallows\",\n    \"mug-saucer\",\n    \"mug-tea-saucer\",\n    \"mug-tea\",\n    \"mug\",\n    \"mushroom\",\n    \"music-magnifying-glass\",\n    \"music-note-slash\",\n    \"music-note\",\n    \"music-slash\",\n    \"music\",\n    \"mustache\",\n    \"n\",\n    \"naira-sign\",\n    \"narwhal\",\n    \"nesting-dolls\",\n    \"network-wired\",\n    \"neuter\",\n    \"newspaper\",\n    \"nfc-lock\",\n    \"nfc-magnifying-glass\",\n    \"nfc-pen\",\n    \"nfc-signal\",\n    \"nfc-slash\",\n    \"nfc-symbol\",\n    \"nfc-trash\",\n    \"nfc\",\n    \"nose\",\n    \"not-equal\",\n    \"notdef\",\n    \"note-medical\",\n    \"note-sticky\",\n    \"note\",\n    \"notebook\",\n    \"notes-medical\",\n    \"notes\",\n    \"o\",\n    \"object-exclude\",\n    \"object-group\",\n    \"object-intersect\",\n    \"object-subtract\",\n    \"object-ungroup\",\n    \"object-union\",\n    \"objects-align-bottom\",\n    \"objects-align-center-horizontal\",\n    \"objects-align-center-vertical\",\n    \"objects-align-left\",\n    \"objects-align-right\",\n    \"objects-align-top\",\n    \"objects-column\",\n    \"octagon-check\",\n    \"octagon-divide\",\n    \"octagon-exclamation\",\n    \"octagon-minus\",\n    \"octagon-plus\",\n    \"octagon-xmark\",\n    \"octagon\",\n    \"octopus\",\n    \"oil-can-drip\",\n    \"oil-can\",\n    \"oil-temperature\",\n    \"oil-well\",\n    \"olive-branch\",\n    \"olive\",\n    \"om\",\n    \"omega\",\n    \"onion\",\n    \"option\",\n    \"ornament\",\n    \"otter\",\n    \"outdent\",\n    \"outlet\",\n    \"oven\",\n    \"overline\",\n    \"p\",\n    \"page-caret-down\",\n    \"page-caret-up\",\n    \"page\",\n    \"pager\",\n    \"paint-roller\",\n    \"paintbrush-fine\",\n    \"paintbrush-pencil\",\n    \"paintbrush\",\n    \"palette\",\n    \"pallet-box\",\n    \"pallet-boxes\",\n    \"pallet\",\n    \"pan-food\",\n    \"pan-frying\",\n    \"pancakes\",\n    \"panel-ews\",\n    \"panel-fire\",\n    \"panorama\",\n    \"paper-plane-top\",\n    \"paper-plane\",\n    \"paperclip-vertical\",\n    \"paperclip\",\n    \"parachute-box\",\n    \"paragraph-left\",\n    \"paragraph\",\n    \"party-bell\",\n    \"party-horn\",\n    \"passport\",\n    \"paste\",\n    \"pause\",\n    \"paw-claws\",\n    \"paw-simple\",\n    \"paw\",\n    \"peace\",\n    \"peach\",\n    \"peanut\",\n    \"peanuts\",\n    \"peapod\",\n    \"pear\",\n    \"pedestal\",\n    \"pegasus\",\n    \"pen-circle\",\n    \"pen-clip-slash\",\n    \"pen-clip\",\n    \"pen-fancy-slash\",\n    \"pen-fancy\",\n    \"pen-field\",\n    \"pen-line\",\n    \"pen-nib-slash\",\n    \"pen-nib\",\n    \"pen-paintbrush\",\n    \"pen-ruler\",\n    \"pen-slash\",\n    \"pen-swirl\",\n    \"pen-to-square\",\n    \"pen\",\n    \"pencil-mechanical\",\n    \"pencil-slash\",\n    \"pencil\",\n    \"people-arrows\",\n    \"people-carry-box\",\n    \"people-dress-simple\",\n    \"people-dress\",\n    \"people-group\",\n    \"people-line\",\n    \"people-pants-simple\",\n    \"people-pants\",\n    \"people-pulling\",\n    \"people-robbery\",\n    \"people-roof\",\n    \"people-simple\",\n    \"people\",\n    \"pepper-hot\",\n    \"pepper\",\n    \"percent\",\n    \"period\",\n    \"person-arrow-down-to-line\",\n    \"person-arrow-up-from-line\",\n    \"person-biking-mountain\",\n    \"person-biking\",\n    \"person-booth\",\n    \"person-breastfeeding\",\n    \"person-burst\",\n    \"person-cane\",\n    \"person-carry-box\",\n    \"person-chalkboard\",\n    \"person-circle-check\",\n    \"person-circle-exclamation\",\n    \"person-circle-minus\",\n    \"person-circle-plus\",\n    \"person-circle-question\",\n    \"person-circle-xmark\",\n    \"person-digging\",\n    \"person-dolly-empty\",\n    \"person-dolly\",\n    \"person-dots-from-line\",\n    \"person-dress-burst\",\n    \"person-dress-fairy\",\n    \"person-dress-simple\",\n    \"person-dress\",\n    \"person-drowning\",\n    \"person-fairy\",\n    \"person-falling-burst\",\n    \"person-falling\",\n    \"person-from-portal\",\n    \"person-half-dress\",\n    \"person-harassing\",\n    \"person-hiking\",\n    \"person-military-pointing\",\n    \"person-military-rifle\",\n    \"person-military-to-person\",\n    \"person-pinball\",\n    \"person-praying\",\n    \"person-pregnant\",\n    \"person-rays\",\n    \"person-rifle\",\n    \"person-running-fast\",\n    \"person-running\",\n    \"person-seat-reclined\",\n    \"person-seat\",\n    \"person-shelter\",\n    \"person-sign\",\n    \"person-simple\",\n    \"person-skating\",\n    \"person-ski-jumping\",\n    \"person-ski-lift\",\n    \"person-skiing-nordic\",\n    \"person-skiing\",\n    \"person-sledding\",\n    \"person-snowboarding\",\n    \"person-snowmobiling\",\n    \"person-swimming\",\n    \"person-through-window\",\n    \"person-to-door\",\n    \"person-to-portal\",\n    \"person-walking-arrow-loop-left\",\n    \"person-walking-arrow-right\",\n    \"person-walking-dashed-line-arrow-right\",\n    \"person-walking-luggage\",\n    \"person-walking-with-cane\",\n    \"person-walking\",\n    \"person\",\n    \"peseta-sign\",\n    \"peso-sign\",\n    \"phone-arrow-down-left\",\n    \"phone-arrow-right\",\n    \"phone-arrow-up-right\",\n    \"phone-flip\",\n    \"phone-hangup\",\n    \"phone-intercom\",\n    \"phone-missed\",\n    \"phone-office\",\n    \"phone-plus\",\n    \"phone-rotary\",\n    \"phone-slash\",\n    \"phone-volume\",\n    \"phone-xmark\",\n    \"phone\",\n    \"photo-film-music\",\n    \"photo-film\",\n    \"pi\",\n    \"piano-keyboard\",\n    \"piano\",\n    \"pickaxe\",\n    \"pickleball\",\n    \"pie\",\n    \"pig\",\n    \"piggy-bank\",\n    \"pills\",\n    \"pinata\",\n    \"pinball\",\n    \"pineapple\",\n    \"pipe-circle-check\",\n    \"pipe-collar\",\n    \"pipe-section\",\n    \"pipe-smoking\",\n    \"pipe-valve\",\n    \"pipe\",\n    \"pizza-slice\",\n    \"pizza\",\n    \"place-of-worship\",\n    \"plane-arrival\",\n    \"plane-circle-check\",\n    \"plane-circle-exclamation\",\n    \"plane-circle-xmark\",\n    \"plane-departure\",\n    \"plane-engines\",\n    \"plane-lock\",\n    \"plane-prop\",\n    \"plane-slash\",\n    \"plane-tail\",\n    \"plane-up-slash\",\n    \"plane-up\",\n    \"plane\",\n    \"planet-moon\",\n    \"planet-ringed\",\n    \"plant-wilt\",\n    \"plate-utensils\",\n    \"plate-wheat\",\n    \"play-pause\",\n    \"play\",\n    \"plug-circle-bolt\",\n    \"plug-circle-check\",\n    \"plug-circle-exclamation\",\n    \"plug-circle-minus\",\n    \"plug-circle-plus\",\n    \"plug-circle-xmark\",\n    \"plug\",\n    \"plus-large\",\n    \"plus-minus\",\n    \"plus\",\n    \"podcast\",\n    \"podium-star\",\n    \"podium\",\n    \"police-box\",\n    \"poll-people\",\n    \"pompebled\",\n    \"poo-storm\",\n    \"poo\",\n    \"pool-8-ball\",\n    \"poop\",\n    \"popcorn\",\n    \"popsicle\",\n    \"pot-food\",\n    \"potato\",\n    \"power-off\",\n    \"prescription-bottle-medical\",\n    \"prescription-bottle-pill\",\n    \"prescription-bottle\",\n    \"prescription\",\n    \"presentation-screen\",\n    \"pretzel\",\n    \"print-magnifying-glass\",\n    \"print-slash\",\n    \"print\",\n    \"projector\",\n    \"pump-medical\",\n    \"pump-soap\",\n    \"pump\",\n    \"pumpkin\",\n    \"puzzle-piece-simple\",\n    \"puzzle-piece\",\n    \"puzzle\",\n    \"q\",\n    \"qrcode\",\n    \"question\",\n    \"quote-left\",\n    \"quote-right\",\n    \"quotes\",\n    \"r\",\n    \"rabbit-running\",\n    \"rabbit\",\n    \"raccoon\",\n    \"racquet\",\n    \"radar\",\n    \"radiation\",\n    \"radio-tuner\",\n    \"radio\",\n    \"rainbow\",\n    \"raindrops\",\n    \"ram\",\n    \"ramp-loading\",\n    \"ranking-star\",\n    \"raygun\",\n    \"receipt\",\n    \"record-vinyl\",\n    \"rectangle-ad\",\n    \"rectangle-barcode\",\n    \"rectangle-code\",\n    \"rectangle-history-circle-plus\",\n    \"rectangle-history-circle-user\",\n    \"rectangle-history\",\n    \"rectangle-list\",\n    \"rectangle-pro\",\n    \"rectangle-terminal\",\n    \"rectangle-vertical-history\",\n    \"rectangle-vertical\",\n    \"rectangle-wide\",\n    \"rectangle-xmark\",\n    \"rectangle\",\n    \"rectangles-mixed\",\n    \"recycle\",\n    \"reel\",\n    \"reflect-both\",\n    \"reflect-horizontal\",\n    \"reflect-vertical\",\n    \"refrigerator\",\n    \"registered\",\n    \"repeat-1\",\n    \"repeat\",\n    \"reply-all\",\n    \"reply-clock\",\n    \"reply\",\n    \"republican\",\n    \"restroom-simple\",\n    \"restroom\",\n    \"retweet\",\n    \"rhombus\",\n    \"ribbon\",\n    \"right-from-bracket\",\n    \"right-from-line\",\n    \"right-left-large\",\n    \"right-left\",\n    \"right-long-to-line\",\n    \"right-long\",\n    \"right-to-bracket\",\n    \"right-to-line\",\n    \"right\",\n    \"ring-diamond\",\n    \"ring\",\n    \"rings-wedding\",\n    \"road-barrier\",\n    \"road-bridge\",\n    \"road-circle-check\",\n    \"road-circle-exclamation\",\n    \"road-circle-xmark\",\n    \"road-lock\",\n    \"road-spikes\",\n    \"road\",\n    \"robot-astromech\",\n    \"robot\",\n    \"rocket-launch\",\n    \"rocket\",\n    \"roller-coaster\",\n    \"rotate-exclamation\",\n    \"rotate-left\",\n    \"rotate-reverse\",\n    \"rotate-right\",\n    \"rotate\",\n    \"route-highway\",\n    \"route-interstate\",\n    \"route\",\n    \"router\",\n    \"rss\",\n    \"ruble-sign\",\n    \"rug\",\n    \"rugby-ball\",\n    \"ruler-combined\",\n    \"ruler-horizontal\",\n    \"ruler-triangle\",\n    \"ruler-vertical\",\n    \"ruler\",\n    \"rupee-sign\",\n    \"rupiah-sign\",\n    \"rv\",\n    \"s\",\n    \"sack-dollar\",\n    \"sack-xmark\",\n    \"sack\",\n    \"sailboat\",\n    \"salad\",\n    \"salt-shaker\",\n    \"sandwich\",\n    \"satellite-dish\",\n    \"satellite\",\n    \"sausage\",\n    \"saxophone-fire\",\n    \"saxophone\",\n    \"scale-balanced\",\n    \"scale-unbalanced-flip\",\n    \"scale-unbalanced\",\n    \"scalpel-line-dashed\",\n    \"scalpel\",\n    \"scanner-gun\",\n    \"scanner-image\",\n    \"scanner-keyboard\",\n    \"scanner-touchscreen\",\n    \"scarecrow\",\n    \"scarf\",\n    \"school-circle-check\",\n    \"school-circle-exclamation\",\n    \"school-circle-xmark\",\n    \"school-flag\",\n    \"school-lock\",\n    \"school\",\n    \"scissors\",\n    \"screen-users\",\n    \"screencast\",\n    \"screwdriver-wrench\",\n    \"screwdriver\",\n    \"scribble\",\n    \"scroll-old\",\n    \"scroll-torah\",\n    \"scroll\",\n    \"scrubber\",\n    \"scythe\",\n    \"sd-card\",\n    \"sd-cards\",\n    \"seal-exclamation\",\n    \"seal-question\",\n    \"seal\",\n    \"seat-airline\",\n    \"section\",\n    \"seedling\",\n    \"semicolon\",\n    \"send-back\",\n    \"send-backward\",\n    \"sensor-cloud\",\n    \"sensor-fire\",\n    \"sensor-on\",\n    \"sensor-triangle-exclamation\",\n    \"sensor\",\n    \"server\",\n    \"shapes\",\n    \"share-all\",\n    \"share-from-square\",\n    \"share-nodes\",\n    \"share\",\n    \"sheep\",\n    \"sheet-plastic\",\n    \"shekel-sign\",\n    \"shelves-empty\",\n    \"shelves\",\n    \"shield-cat\",\n    \"shield-check\",\n    \"shield-cross\",\n    \"shield-dog\",\n    \"shield-exclamation\",\n    \"shield-halved\",\n    \"shield-heart\",\n    \"shield-keyhole\",\n    \"shield-minus\",\n    \"shield-plus\",\n    \"shield-quartered\",\n    \"shield-slash\",\n    \"shield-virus\",\n    \"shield-xmark\",\n    \"shield\",\n    \"ship\",\n    \"shirt-long-sleeve\",\n    \"shirt-running\",\n    \"shirt-tank-top\",\n    \"shirt\",\n    \"shish-kebab\",\n    \"shoe-prints\",\n    \"shop-lock\",\n    \"shop-slash\",\n    \"shop\",\n    \"shovel-snow\",\n    \"shovel\",\n    \"shower-down\",\n    \"shower\",\n    \"shredder\",\n    \"shrimp\",\n    \"shuffle\",\n    \"shutters\",\n    \"shuttle-space\",\n    \"shuttlecock\",\n    \"sickle\",\n    \"sidebar-flip\",\n    \"sidebar\",\n    \"sigma\",\n    \"sign-hanging\",\n    \"sign-post\",\n    \"sign-posts-wrench\",\n    \"sign-posts\",\n    \"signal-bars-fair\",\n    \"signal-bars-good\",\n    \"signal-bars-slash\",\n    \"signal-bars-weak\",\n    \"signal-bars\",\n    \"signal-fair\",\n    \"signal-good\",\n    \"signal-slash\",\n    \"signal-stream-slash\",\n    \"signal-stream\",\n    \"signal-strong\",\n    \"signal-weak\",\n    \"signal\",\n    \"signature-lock\",\n    \"signature-slash\",\n    \"signature\",\n    \"signs-post\",\n    \"sim-card\",\n    \"sim-cards\",\n    \"sink\",\n    \"siren-on\",\n    \"siren\",\n    \"sitemap\",\n    \"skeleton-ribs\",\n    \"skeleton\",\n    \"ski-boot-ski\",\n    \"ski-boot\",\n    \"skull-cow\",\n    \"skull-crossbones\",\n    \"skull\",\n    \"slash-back\",\n    \"slash-forward\",\n    \"slash\",\n    \"sleigh\",\n    \"slider\",\n    \"sliders-simple\",\n    \"sliders-up\",\n    \"sliders\",\n    \"slot-machine\",\n    \"smog\",\n    \"smoke\",\n    \"smoking\",\n    \"snake\",\n    \"snooze\",\n    \"snow-blowing\",\n    \"snowflake-droplets\",\n    \"snowflake\",\n    \"snowflakes\",\n    \"snowman-head\",\n    \"snowman\",\n    \"snowplow\",\n    \"soap\",\n    \"socks\",\n    \"soft-serve\",\n    \"solar-panel\",\n    \"solar-system\",\n    \"sort-down\",\n    \"sort-up\",\n    \"sort\",\n    \"spa\",\n    \"space-station-moon-construction\",\n    \"space-station-moon\",\n    \"spade\",\n    \"spaghetti-monster-flying\",\n    \"sparkle\",\n    \"sparkles\",\n    \"speaker\",\n    \"speakers\",\n    \"spell-check\",\n    \"spider-black-widow\",\n    \"spider-web\",\n    \"spider\",\n    \"spinner-scale\",\n    \"spinner-third\",\n    \"spinner\",\n    \"split\",\n    \"splotch\",\n    \"spoon\",\n    \"sportsball\",\n    \"spray-can-sparkles\",\n    \"spray-can\",\n    \"sprinkler-ceiling\",\n    \"sprinkler\",\n    \"square-0\",\n    \"square-1\",\n    \"square-2\",\n    \"square-3\",\n    \"square-4\",\n    \"square-5\",\n    \"square-6\",\n    \"square-7\",\n    \"square-8\",\n    \"square-9\",\n    \"square-a-lock\",\n    \"square-a\",\n    \"square-ampersand\",\n    \"square-arrow-down-left\",\n    \"square-arrow-down-right\",\n    \"square-arrow-down\",\n    \"square-arrow-left\",\n    \"square-arrow-right\",\n    \"square-arrow-up-left\",\n    \"square-arrow-up-right\",\n    \"square-arrow-up\",\n    \"square-b\",\n    \"square-binary\",\n    \"square-bolt\",\n    \"square-c\",\n    \"square-caret-down\",\n    \"square-caret-left\",\n    \"square-caret-right\",\n    \"square-caret-up\",\n    \"square-check\",\n    \"square-chevron-down\",\n    \"square-chevron-left\",\n    \"square-chevron-right\",\n    \"square-chevron-up\",\n    \"square-code\",\n    \"square-d\",\n    \"square-dashed-circle-plus\",\n    \"square-dashed\",\n    \"square-divide\",\n    \"square-dollar\",\n    \"square-down-left\",\n    \"square-down-right\",\n    \"square-down\",\n    \"square-e\",\n    \"square-ellipsis-vertical\",\n    \"square-ellipsis\",\n    \"square-envelope\",\n    \"square-exclamation\",\n    \"square-f\",\n    \"square-fragile\",\n    \"square-full\",\n    \"square-g\",\n    \"square-h\",\n    \"square-heart\",\n    \"square-i\",\n    \"square-info\",\n    \"square-j\",\n    \"square-k\",\n    \"square-kanban\",\n    \"square-l\",\n    \"square-left\",\n    \"square-list\",\n    \"square-m\",\n    \"square-minus\",\n    \"square-n\",\n    \"square-nfi\",\n    \"square-o\",\n    \"square-p\",\n    \"square-parking-slash\",\n    \"square-parking\",\n    \"square-pen\",\n    \"square-person-confined\",\n    \"square-phone-flip\",\n    \"square-phone-hangup\",\n    \"square-phone\",\n    \"square-plus\",\n    \"square-poll-horizontal\",\n    \"square-poll-vertical\",\n    \"square-q\",\n    \"square-quarters\",\n    \"square-question\",\n    \"square-quote\",\n    \"square-r\",\n    \"square-right\",\n    \"square-ring\",\n    \"square-root-variable\",\n    \"square-root\",\n    \"square-rss\",\n    \"square-s\",\n    \"square-share-nodes\",\n    \"square-sliders-vertical\",\n    \"square-sliders\",\n    \"square-small\",\n    \"square-star\",\n    \"square-t\",\n    \"square-terminal\",\n    \"square-this-way-up\",\n    \"square-u\",\n    \"square-up-left\",\n    \"square-up-right\",\n    \"square-up\",\n    \"square-user\",\n    \"square-v\",\n    \"square-virus\",\n    \"square-w\",\n    \"square-x\",\n    \"square-xmark\",\n    \"square-y\",\n    \"square-z\",\n    \"square\",\n    \"squid\",\n    \"squirrel\",\n    \"staff-snake\",\n    \"staff\",\n    \"stairs\",\n    \"stamp\",\n    \"standard-definition\",\n    \"stapler\",\n    \"star-and-crescent\",\n    \"star-christmas\",\n    \"star-exclamation\",\n    \"star-half-stroke\",\n    \"star-half\",\n    \"star-of-david\",\n    \"star-of-life\",\n    \"star-sharp-half-stroke\",\n    \"star-sharp-half\",\n    \"star-sharp\",\n    \"star-shooting\",\n    \"star\",\n    \"starfighter-twin-ion-engine-advanced\",\n    \"starfighter-twin-ion-engine\",\n    \"starfighter\",\n    \"stars\",\n    \"starship-freighter\",\n    \"starship\",\n    \"steak\",\n    \"steering-wheel\",\n    \"sterling-sign\",\n    \"stethoscope\",\n    \"stocking\",\n    \"stomach\",\n    \"stop\",\n    \"stopwatch-20\",\n    \"stopwatch\",\n    \"store-lock\",\n    \"store-slash\",\n    \"store\",\n    \"strawberry\",\n    \"street-view\",\n    \"stretcher\",\n    \"strikethrough\",\n    \"stroopwafel\",\n    \"subscript\",\n    \"subtitles-slash\",\n    \"subtitles\",\n    \"suitcase-medical\",\n    \"suitcase-rolling\",\n    \"suitcase\",\n    \"sun-bright\",\n    \"sun-cloud\",\n    \"sun-dust\",\n    \"sun-haze\",\n    \"sun-plant-wilt\",\n    \"sun\",\n    \"sunglasses\",\n    \"sunrise\",\n    \"sunset\",\n    \"superscript\",\n    \"sushi-roll\",\n    \"sushi\",\n    \"swap-arrows\",\n    \"swap\",\n    \"swatchbook\",\n    \"sword-laser-alt\",\n    \"sword-laser\",\n    \"sword\",\n    \"swords-laser\",\n    \"swords\",\n    \"symbols\",\n    \"synagogue\",\n    \"syringe\",\n    \"t-rex\",\n    \"t\",\n    \"table-cells-column-lock\",\n    \"table-cells-column-unlock\",\n    \"table-cells-large\",\n    \"table-cells-lock\",\n    \"table-cells-row-lock\",\n    \"table-cells-row-unlock\",\n    \"table-cells-unlock\",\n    \"table-cells\",\n    \"table-columns\",\n    \"table-layout\",\n    \"table-list\",\n    \"table-picnic\",\n    \"table-pivot\",\n    \"table-rows\",\n    \"table-tennis-paddle-ball\",\n    \"table-tree\",\n    \"table\",\n    \"tablet-button\",\n    \"tablet-rugged\",\n    \"tablet-screen-button\",\n    \"tablet-screen\",\n    \"tablet\",\n    \"tablets\",\n    \"tachograph-digital\",\n    \"taco\",\n    \"tag\",\n    \"tags\",\n    \"tally-1\",\n    \"tally-2\",\n    \"tally-3\",\n    \"tally-4\",\n    \"tally\",\n    \"tamale\",\n    \"tank-water\",\n    \"tape\",\n    \"tarp-droplet\",\n    \"tarp\",\n    \"taxi-bus\",\n    \"taxi\",\n    \"teddy-bear\",\n    \"teeth-open\",\n    \"teeth\",\n    \"telescope\",\n    \"temperature-arrow-down\",\n    \"temperature-arrow-up\",\n    \"temperature-empty\",\n    \"temperature-full\",\n    \"temperature-half\",\n    \"temperature-high\",\n    \"temperature-list\",\n    \"temperature-low\",\n    \"temperature-quarter\",\n    \"temperature-snow\",\n    \"temperature-sun\",\n    \"temperature-three-quarters\",\n    \"tenge-sign\",\n    \"tennis-ball\",\n    \"tent-arrow-down-to-line\",\n    \"tent-arrow-left-right\",\n    \"tent-arrow-turn-left\",\n    \"tent-arrows-down\",\n    \"tent-double-peak\",\n    \"tent\",\n    \"tents\",\n    \"terminal\",\n    \"text-height\",\n    \"text-size\",\n    \"text-slash\",\n    \"text-width\",\n    \"text\",\n    \"thermometer\",\n    \"theta\",\n    \"thought-bubble\",\n    \"thumbs-down\",\n    \"thumbs-up\",\n    \"thumbtack-slash\",\n    \"thumbtack\",\n    \"tick\",\n    \"ticket-airline\",\n    \"ticket-perforated\",\n    \"ticket-simple\",\n    \"ticket\",\n    \"tickets-airline\",\n    \"tickets-perforated\",\n    \"tickets-simple\",\n    \"tickets\",\n    \"tilde\",\n    \"timeline-arrow\",\n    \"timeline\",\n    \"timer\",\n    \"tire-flat\",\n    \"tire-pressure-warning\",\n    \"tire-rugged\",\n    \"tire\",\n    \"toggle-large-off\",\n    \"toggle-large-on\",\n    \"toggle-off\",\n    \"toggle-on\",\n    \"toilet-paper-blank-under\",\n    \"toilet-paper-blank\",\n    \"toilet-paper-check\",\n    \"toilet-paper-slash\",\n    \"toilet-paper-under-slash\",\n    \"toilet-paper-under\",\n    \"toilet-paper-xmark\",\n    \"toilet-paper\",\n    \"toilet-portable\",\n    \"toilet\",\n    \"toilets-portable\",\n    \"tomato\",\n    \"tombstone-blank\",\n    \"tombstone\",\n    \"toolbox\",\n    \"tooth\",\n    \"toothbrush\",\n    \"torii-gate\",\n    \"tornado\",\n    \"tower-broadcast\",\n    \"tower-cell\",\n    \"tower-control\",\n    \"tower-observation\",\n    \"tractor\",\n    \"trademark\",\n    \"traffic-cone\",\n    \"traffic-light-go\",\n    \"traffic-light-slow\",\n    \"traffic-light-stop\",\n    \"traffic-light\",\n    \"trailer\",\n    \"train-subway-tunnel\",\n    \"train-subway\",\n    \"train-track\",\n    \"train-tram\",\n    \"train-tunnel\",\n    \"train\",\n    \"transformer-bolt\",\n    \"transgender\",\n    \"transporter-1\",\n    \"transporter-2\",\n    \"transporter-3\",\n    \"transporter-4\",\n    \"transporter-5\",\n    \"transporter-6\",\n    \"transporter-7\",\n    \"transporter-empty\",\n    \"transporter\",\n    \"trash-arrow-up\",\n    \"trash-can-arrow-up\",\n    \"trash-can-check\",\n    \"trash-can-clock\",\n    \"trash-can-list\",\n    \"trash-can-plus\",\n    \"trash-can-slash\",\n    \"trash-can-undo\",\n    \"trash-can-xmark\",\n    \"trash-can\",\n    \"trash-check\",\n    \"trash-clock\",\n    \"trash-list\",\n    \"trash-plus\",\n    \"trash-slash\",\n    \"trash-undo\",\n    \"trash-xmark\",\n    \"trash\",\n    \"treasure-chest\",\n    \"tree-christmas\",\n    \"tree-city\",\n    \"tree-deciduous\",\n    \"tree-decorated\",\n    \"tree-large\",\n    \"tree-palm\",\n    \"tree\",\n    \"trees\",\n    \"triangle-exclamation\",\n    \"triangle-instrument\",\n    \"triangle-person-digging\",\n    \"triangle\",\n    \"tricycle-adult\",\n    \"tricycle\",\n    \"trillium\",\n    \"trophy-star\",\n    \"trophy\",\n    \"trowel-bricks\",\n    \"trowel\",\n    \"truck-arrow-right\",\n    \"truck-bolt\",\n    \"truck-clock\",\n    \"truck-container-empty\",\n    \"truck-container\",\n    \"truck-droplet\",\n    \"truck-fast\",\n    \"truck-field-un\",\n    \"truck-field\",\n    \"truck-fire\",\n    \"truck-flatbed\",\n    \"truck-front\",\n    \"truck-ladder\",\n    \"truck-medical\",\n    \"truck-monster\",\n    \"truck-moving\",\n    \"truck-pickup\",\n    \"truck-plane\",\n    \"truck-plow\",\n    \"truck-ramp-box\",\n    \"truck-ramp-couch\",\n    \"truck-ramp\",\n    \"truck-tow\",\n    \"truck-utensils\",\n    \"truck\",\n    \"trumpet\",\n    \"tty-answer\",\n    \"tty\",\n    \"tugrik-sign\",\n    \"turkey\",\n    \"turkish-lira-sign\",\n    \"turn-down-left\",\n    \"turn-down-right\",\n    \"turn-down\",\n    \"turn-left-down\",\n    \"turn-left-up\",\n    \"turn-left\",\n    \"turn-right\",\n    \"turn-up\",\n    \"turntable\",\n    \"turtle\",\n    \"tv-music\",\n    \"tv-retro\",\n    \"tv\",\n    \"typewriter\",\n    \"u\",\n    \"ufo-beam\",\n    \"ufo\",\n    \"umbrella-beach\",\n    \"umbrella-simple\",\n    \"umbrella\",\n    \"underline\",\n    \"unicorn\",\n    \"uniform-martial-arts\",\n    \"union\",\n    \"universal-access\",\n    \"unlock-keyhole\",\n    \"unlock\",\n    \"up-down-left-right\",\n    \"up-down\",\n    \"up-from-bracket\",\n    \"up-from-dotted-line\",\n    \"up-from-line\",\n    \"up-left\",\n    \"up-long\",\n    \"up-right-and-down-left-from-center\",\n    \"up-right-from-square\",\n    \"up-right\",\n    \"up-to-bracket\",\n    \"up-to-dotted-line\",\n    \"up-to-line\",\n    \"up\",\n    \"upload\",\n    \"usb-drive\",\n    \"user-alien\",\n    \"user-astronaut\",\n    \"user-beard-bolt\",\n    \"user-bounty-hunter\",\n    \"user-check\",\n    \"user-chef\",\n    \"user-clock\",\n    \"user-cowboy\",\n    \"user-crown\",\n    \"user-doctor-hair-long\",\n    \"user-doctor-hair\",\n    \"user-doctor-message\",\n    \"user-doctor\",\n    \"user-gear\",\n    \"user-graduate\",\n    \"user-group-crown\",\n    \"user-group-simple\",\n    \"user-group\",\n    \"user-hair-buns\",\n    \"user-hair-long\",\n    \"user-hair-mullet\",\n    \"user-hair\",\n    \"user-headset\",\n    \"user-helmet-safety\",\n    \"user-hoodie\",\n    \"user-injured\",\n    \"user-large-slash\",\n    \"user-large\",\n    \"user-lock\",\n    \"user-magnifying-glass\",\n    \"user-minus\",\n    \"user-music\",\n    \"user-ninja\",\n    \"user-nurse-hair-long\",\n    \"user-nurse-hair\",\n    \"user-nurse\",\n    \"user-pen\",\n    \"user-pilot-tie\",\n    \"user-pilot\",\n    \"user-plus\",\n    \"user-police-tie\",\n    \"user-police\",\n    \"user-robot-xmarks\",\n    \"user-robot\",\n    \"user-secret\",\n    \"user-shakespeare\",\n    \"user-shield\",\n    \"user-slash\",\n    \"user-tag\",\n    \"user-tie-hair-long\",\n    \"user-tie-hair\",\n    \"user-tie\",\n    \"user-unlock\",\n    \"user-visor\",\n    \"user-vneck-hair-long\",\n    \"user-vneck-hair\",\n    \"user-vneck\",\n    \"user-xmark\",\n    \"user\",\n    \"users-between-lines\",\n    \"users-gear\",\n    \"users-line\",\n    \"users-medical\",\n    \"users-rays\",\n    \"users-rectangle\",\n    \"users-slash\",\n    \"users-viewfinder\",\n    \"users\",\n    \"utensils-slash\",\n    \"utensils\",\n    \"utility-pole-double\",\n    \"utility-pole\",\n    \"v\",\n    \"vacuum-robot\",\n    \"vacuum\",\n    \"value-absolute\",\n    \"van-shuttle\",\n    \"vault\",\n    \"vector-circle\",\n    \"vector-polygon\",\n    \"vector-square\",\n    \"vent-damper\",\n    \"venus-double\",\n    \"venus-mars\",\n    \"venus\",\n    \"vest-patches\",\n    \"vest\",\n    \"vial-circle-check\",\n    \"vial-virus\",\n    \"vial\",\n    \"vials\",\n    \"video-arrow-down-left\",\n    \"video-arrow-up-right\",\n    \"video-plus\",\n    \"video-slash\",\n    \"video\",\n    \"vihara\",\n    \"violin\",\n    \"virus-covid-slash\",\n    \"virus-covid\",\n    \"virus-slash\",\n    \"virus\",\n    \"viruses\",\n    \"voicemail\",\n    \"volcano\",\n    \"volleyball\",\n    \"volume-high\",\n    \"volume-low\",\n    \"volume-off\",\n    \"volume-slash\",\n    \"volume-xmark\",\n    \"volume\",\n    \"vr-cardboard\",\n    \"w\",\n    \"waffle\",\n    \"wagon-covered\",\n    \"walker\",\n    \"walkie-talkie\",\n    \"wallet\",\n    \"wand-magic-sparkles\",\n    \"wand-magic\",\n    \"wand-sparkles\",\n    \"wand\",\n    \"warehouse-full\",\n    \"warehouse\",\n    \"washing-machine\",\n    \"watch-apple\",\n    \"watch-calculator\",\n    \"watch-fitness\",\n    \"watch-smart\",\n    \"watch\",\n    \"water-arrow-down\",\n    \"water-arrow-up\",\n    \"water-ladder\",\n    \"water\",\n    \"watermelon-slice\",\n    \"wave-pulse\",\n    \"wave-sine\",\n    \"wave-square\",\n    \"wave-triangle\",\n    \"wave\",\n    \"waveform-lines\",\n    \"waveform\",\n    \"waves-sine\",\n    \"web-awesome\",\n    \"webhook\",\n    \"weight-hanging\",\n    \"weight-scale\",\n    \"whale\",\n    \"wheat-awn-circle-exclamation\",\n    \"wheat-awn-slash\",\n    \"wheat-awn\",\n    \"wheat-slash\",\n    \"wheat\",\n    \"wheelchair-move\",\n    \"wheelchair\",\n    \"whiskey-glass-ice\",\n    \"whiskey-glass\",\n    \"whistle\",\n    \"wifi-exclamation\",\n    \"wifi-fair\",\n    \"wifi-slash\",\n    \"wifi-weak\",\n    \"wifi\",\n    \"wind-turbine\",\n    \"wind-warning\",\n    \"wind\",\n    \"window-flip\",\n    \"window-frame-open\",\n    \"window-frame\",\n    \"window-maximize\",\n    \"window-minimize\",\n    \"window-restore\",\n    \"window\",\n    \"windsock\",\n    \"wine-bottle\",\n    \"wine-glass-crack\",\n    \"wine-glass-empty\",\n    \"wine-glass\",\n    \"won-sign\",\n    \"worm\",\n    \"wreath-laurel\",\n    \"wreath\",\n    \"wrench-simple\",\n    \"wrench\",\n    \"x-ray\",\n    \"x\",\n    \"xmark-large\",\n    \"xmark-to-slot\",\n    \"xmark\",\n    \"xmarks-lines\",\n    \"y\",\n    \"yen-sign\",\n    \"yin-yang\",\n    \"z\"\n  ],\n  \"sharpSolid\": [\n    \"0\",\n    \"00\",\n    \"1\",\n    \"2\",\n    \"3\",\n    \"360-degrees\",\n    \"4\",\n    \"5\",\n    \"6\",\n    \"7\",\n    \"8\",\n    \"9\",\n    \"a\",\n    \"abacus\",\n    \"accent-grave\",\n    \"acorn\",\n    \"address-book\",\n    \"address-card\",\n    \"air-conditioner\",\n    \"airplay\",\n    \"alarm-clock\",\n    \"alarm-exclamation\",\n    \"alarm-plus\",\n    \"alarm-snooze\",\n    \"album-circle-plus\",\n    \"album-circle-user\",\n    \"album-collection-circle-plus\",\n    \"album-collection-circle-user\",\n    \"album-collection\",\n    \"album\",\n    \"alicorn\",\n    \"alien-8bit\",\n    \"alien\",\n    \"align-center\",\n    \"align-justify\",\n    \"align-left\",\n    \"align-right\",\n    \"align-slash\",\n    \"alt\",\n    \"amp-guitar\",\n    \"ampersand\",\n    \"anchor-circle-check\",\n    \"anchor-circle-exclamation\",\n    \"anchor-circle-xmark\",\n    \"anchor-lock\",\n    \"anchor\",\n    \"angel\",\n    \"angle-90\",\n    \"angle-down\",\n    \"angle-left\",\n    \"angle-right\",\n    \"angle-up\",\n    \"angle\",\n    \"angles-down\",\n    \"angles-left\",\n    \"angles-right\",\n    \"angles-up-down\",\n    \"angles-up\",\n    \"ankh\",\n    \"ant\",\n    \"apartment\",\n    \"aperture\",\n    \"apostrophe\",\n    \"apple-core\",\n    \"apple-whole\",\n    \"archway\",\n    \"arrow-down-1-9\",\n    \"arrow-down-9-1\",\n    \"arrow-down-a-z\",\n    \"arrow-down-arrow-up\",\n    \"arrow-down-big-small\",\n    \"arrow-down-from-arc\",\n    \"arrow-down-from-bracket\",\n    \"arrow-down-from-dotted-line\",\n    \"arrow-down-from-line\",\n    \"arrow-down-left-and-arrow-up-right-to-center\",\n    \"arrow-down-left\",\n    \"arrow-down-long\",\n    \"arrow-down-right\",\n    \"arrow-down-short-wide\",\n    \"arrow-down-small-big\",\n    \"arrow-down-square-triangle\",\n    \"arrow-down-to-arc\",\n    \"arrow-down-to-bracket\",\n    \"arrow-down-to-dotted-line\",\n    \"arrow-down-to-line\",\n    \"arrow-down-to-square\",\n    \"arrow-down-triangle-square\",\n    \"arrow-down-up-across-line\",\n    \"arrow-down-up-lock\",\n    \"arrow-down-wide-short\",\n    \"arrow-down-z-a\",\n    \"arrow-down\",\n    \"arrow-left-from-arc\",\n    \"arrow-left-from-bracket\",\n    \"arrow-left-from-line\",\n    \"arrow-left-long-to-line\",\n    \"arrow-left-long\",\n    \"arrow-left-to-arc\",\n    \"arrow-left-to-bracket\",\n    \"arrow-left-to-line\",\n    \"arrow-left\",\n    \"arrow-pointer\",\n    \"arrow-progress\",\n    \"arrow-right-arrow-left\",\n    \"arrow-right-from-arc\",\n    \"arrow-right-from-bracket\",\n    \"arrow-right-from-line\",\n    \"arrow-right-long-to-line\",\n    \"arrow-right-long\",\n    \"arrow-right-to-arc\",\n    \"arrow-right-to-bracket\",\n    \"arrow-right-to-city\",\n    \"arrow-right-to-line\",\n    \"arrow-right\",\n    \"arrow-rotate-left\",\n    \"arrow-rotate-right\",\n    \"arrow-trend-down\",\n    \"arrow-trend-up\",\n    \"arrow-turn-down-left\",\n    \"arrow-turn-down-right\",\n    \"arrow-turn-down\",\n    \"arrow-turn-left-down\",\n    \"arrow-turn-left-up\",\n    \"arrow-turn-left\",\n    \"arrow-turn-right\",\n    \"arrow-turn-up\",\n    \"arrow-up-1-9\",\n    \"arrow-up-9-1\",\n    \"arrow-up-a-z\",\n    \"arrow-up-arrow-down\",\n    \"arrow-up-big-small\",\n    \"arrow-up-from-arc\",\n    \"arrow-up-from-bracket\",\n    \"arrow-up-from-dotted-line\",\n    \"arrow-up-from-ground-water\",\n    \"arrow-up-from-line\",\n    \"arrow-up-from-square\",\n    \"arrow-up-from-water-pump\",\n    \"arrow-up-left-from-circle\",\n    \"arrow-up-left\",\n    \"arrow-up-long\",\n    \"arrow-up-right-and-arrow-down-left-from-center\",\n    \"arrow-up-right-dots\",\n    \"arrow-up-right-from-square\",\n    \"arrow-up-right\",\n    \"arrow-up-short-wide\",\n    \"arrow-up-small-big\",\n    \"arrow-up-square-triangle\",\n    \"arrow-up-to-arc\",\n    \"arrow-up-to-bracket\",\n    \"arrow-up-to-dotted-line\",\n    \"arrow-up-to-line\",\n    \"arrow-up-triangle-square\",\n    \"arrow-up-wide-short\",\n    \"arrow-up-z-a\",\n    \"arrow-up\",\n    \"arrows-cross\",\n    \"arrows-down-to-line\",\n    \"arrows-down-to-people\",\n    \"arrows-from-dotted-line\",\n    \"arrows-from-line\",\n    \"arrows-left-right-to-line\",\n    \"arrows-left-right\",\n    \"arrows-maximize\",\n    \"arrows-minimize\",\n    \"arrows-repeat-1\",\n    \"arrows-repeat\",\n    \"arrows-retweet\",\n    \"arrows-rotate-reverse\",\n    \"arrows-rotate\",\n    \"arrows-spin\",\n    \"arrows-split-up-and-left\",\n    \"arrows-to-circle\",\n    \"arrows-to-dot\",\n    \"arrows-to-dotted-line\",\n    \"arrows-to-eye\",\n    \"arrows-to-line\",\n    \"arrows-turn-right\",\n    \"arrows-turn-to-dots\",\n    \"arrows-up-down-left-right\",\n    \"arrows-up-down\",\n    \"arrows-up-to-line\",\n    \"asterisk\",\n    \"at\",\n    \"atom-simple\",\n    \"atom\",\n    \"audio-description-slash\",\n    \"audio-description\",\n    \"austral-sign\",\n    \"avocado\",\n    \"award-simple\",\n    \"award\",\n    \"axe-battle\",\n    \"axe\",\n    \"b\",\n    \"baby-carriage\",\n    \"baby\",\n    \"backpack\",\n    \"backward-fast\",\n    \"backward-step\",\n    \"backward\",\n    \"bacon\",\n    \"bacteria\",\n    \"bacterium\",\n    \"badge-check\",\n    \"badge-dollar\",\n    \"badge-percent\",\n    \"badge-sheriff\",\n    \"badge\",\n    \"badger-honey\",\n    \"badminton\",\n    \"bag-seedling\",\n    \"bag-shopping-minus\",\n    \"bag-shopping-plus\",\n    \"bag-shopping\",\n    \"bagel\",\n    \"bags-shopping\",\n    \"baguette\",\n    \"bahai\",\n    \"baht-sign\",\n    \"ball-pile\",\n    \"balloon\",\n    \"balloons\",\n    \"ballot-check\",\n    \"ballot\",\n    \"ban-bug\",\n    \"ban-parking\",\n    \"ban-smoking\",\n    \"ban\",\n    \"banana\",\n    \"bandage\",\n    \"bangladeshi-taka-sign\",\n    \"banjo\",\n    \"barcode-read\",\n    \"barcode-scan\",\n    \"barcode\",\n    \"bars-filter\",\n    \"bars-progress\",\n    \"bars-sort\",\n    \"bars-staggered\",\n    \"bars\",\n    \"baseball-bat-ball\",\n    \"baseball\",\n    \"basket-shopping-minus\",\n    \"basket-shopping-plus\",\n    \"basket-shopping-simple\",\n    \"basket-shopping\",\n    \"basketball-hoop\",\n    \"basketball\",\n    \"bat\",\n    \"bath\",\n    \"battery-bolt\",\n    \"battery-empty\",\n    \"battery-exclamation\",\n    \"battery-full\",\n    \"battery-half\",\n    \"battery-low\",\n    \"battery-quarter\",\n    \"battery-slash\",\n    \"battery-three-quarters\",\n    \"bed-bunk\",\n    \"bed-empty\",\n    \"bed-front\",\n    \"bed-pulse\",\n    \"bed\",\n    \"bee\",\n    \"beer-mug-empty\",\n    \"beer-mug\",\n    \"bell-concierge\",\n    \"bell-exclamation\",\n    \"bell-on\",\n    \"bell-plus\",\n    \"bell-ring\",\n    \"bell-school-slash\",\n    \"bell-school\",\n    \"bell-slash\",\n    \"bell\",\n    \"bells\",\n    \"bench-tree\",\n    \"bezier-curve\",\n    \"bicycle\",\n    \"billboard\",\n    \"bin-bottles-recycle\",\n    \"bin-bottles\",\n    \"bin-recycle\",\n    \"binary-circle-check\",\n    \"binary-lock\",\n    \"binary-slash\",\n    \"binary\",\n    \"binoculars\",\n    \"biohazard\",\n    \"bird\",\n    \"bitcoin-sign\",\n    \"blanket-fire\",\n    \"blanket\",\n    \"blender-phone\",\n    \"blender\",\n    \"blinds-open\",\n    \"blinds-raised\",\n    \"blinds\",\n    \"block-brick-fire\",\n    \"block-brick\",\n    \"block-question\",\n    \"block-quote\",\n    \"block\",\n    \"blog\",\n    \"blueberries\",\n    \"bluetooth\",\n    \"bold\",\n    \"bolt-auto\",\n    \"bolt-lightning\",\n    \"bolt-slash\",\n    \"bolt\",\n    \"bomb\",\n    \"bone-break\",\n    \"bone\",\n    \"bong\",\n    \"book-arrow-right\",\n    \"book-arrow-up\",\n    \"book-atlas\",\n    \"book-bible\",\n    \"book-blank\",\n    \"book-bookmark\",\n    \"book-circle-arrow-right\",\n    \"book-circle-arrow-up\",\n    \"book-copy\",\n    \"book-font\",\n    \"book-heart\",\n    \"book-journal-whills\",\n    \"book-medical\",\n    \"book-open-cover\",\n    \"book-open-reader\",\n    \"book-open\",\n    \"book-quran\",\n    \"book-section\",\n    \"book-skull\",\n    \"book-sparkles\",\n    \"book-tanakh\",\n    \"book-user\",\n    \"book\",\n    \"bookmark-slash\",\n    \"bookmark\",\n    \"books-medical\",\n    \"books\",\n    \"boombox\",\n    \"boot-heeled\",\n    \"boot\",\n    \"booth-curtain\",\n    \"border-all\",\n    \"border-bottom-right\",\n    \"border-bottom\",\n    \"border-center-h\",\n    \"border-center-v\",\n    \"border-inner\",\n    \"border-left\",\n    \"border-none\",\n    \"border-outer\",\n    \"border-right\",\n    \"border-top-left\",\n    \"border-top\",\n    \"bore-hole\",\n    \"bottle-baby\",\n    \"bottle-droplet\",\n    \"bottle-water\",\n    \"bow-arrow\",\n    \"bowl-chopsticks-noodles\",\n    \"bowl-chopsticks\",\n    \"bowl-food\",\n    \"bowl-hot\",\n    \"bowl-rice\",\n    \"bowl-scoop\",\n    \"bowl-scoops\",\n    \"bowl-soft-serve\",\n    \"bowl-spoon\",\n    \"bowling-ball-pin\",\n    \"bowling-ball\",\n    \"bowling-pins\",\n    \"box-archive\",\n    \"box-ballot\",\n    \"box-check\",\n    \"box-circle-check\",\n    \"box-dollar\",\n    \"box-heart\",\n    \"box-open-full\",\n    \"box-open\",\n    \"box-taped\",\n    \"box-tissue\",\n    \"box\",\n    \"boxes-packing\",\n    \"boxes-stacked\",\n    \"boxing-glove\",\n    \"bracket-curly-right\",\n    \"bracket-curly\",\n    \"bracket-round-right\",\n    \"bracket-round\",\n    \"bracket-square-right\",\n    \"bracket-square\",\n    \"brackets-curly\",\n    \"brackets-round\",\n    \"brackets-square\",\n    \"braille\",\n    \"brain-arrow-curved-right\",\n    \"brain-circuit\",\n    \"brain\",\n    \"brake-warning\",\n    \"brazilian-real-sign\",\n    \"bread-loaf\",\n    \"bread-slice-butter\",\n    \"bread-slice\",\n    \"bridge-circle-check\",\n    \"bridge-circle-exclamation\",\n    \"bridge-circle-xmark\",\n    \"bridge-lock\",\n    \"bridge-suspension\",\n    \"bridge-water\",\n    \"bridge\",\n    \"briefcase-arrow-right\",\n    \"briefcase-blank\",\n    \"briefcase-medical\",\n    \"briefcase\",\n    \"brightness-low\",\n    \"brightness\",\n    \"bring-forward\",\n    \"bring-front\",\n    \"broccoli\",\n    \"broom-ball\",\n    \"broom-wide\",\n    \"broom\",\n    \"browser\",\n    \"browsers\",\n    \"brush\",\n    \"bucket\",\n    \"bug-slash\",\n    \"bug\",\n    \"bugs\",\n    \"building-circle-arrow-right\",\n    \"building-circle-check\",\n    \"building-circle-exclamation\",\n    \"building-circle-xmark\",\n    \"building-columns\",\n    \"building-flag\",\n    \"building-lock\",\n    \"building-magnifying-glass\",\n    \"building-memo\",\n    \"building-ngo\",\n    \"building-shield\",\n    \"building-un\",\n    \"building-user\",\n    \"building-wheat\",\n    \"building\",\n    \"buildings\",\n    \"bulldozer\",\n    \"bullhorn\",\n    \"bullseye-arrow\",\n    \"bullseye-pointer\",\n    \"bullseye\",\n    \"buoy-mooring\",\n    \"buoy\",\n    \"burger-cheese\",\n    \"burger-fries\",\n    \"burger-glass\",\n    \"burger-lettuce\",\n    \"burger-soda\",\n    \"burger\",\n    \"burrito\",\n    \"burst\",\n    \"bus-school\",\n    \"bus-simple\",\n    \"bus\",\n    \"business-time\",\n    \"butter\",\n    \"c\",\n    \"cabin\",\n    \"cabinet-filing\",\n    \"cable-car\",\n    \"cactus\",\n    \"caduceus\",\n    \"cake-candles\",\n    \"cake-slice\",\n    \"calculator-simple\",\n    \"calculator\",\n    \"calendar-arrow-down\",\n    \"calendar-arrow-up\",\n    \"calendar-check\",\n    \"calendar-circle-exclamation\",\n    \"calendar-circle-minus\",\n    \"calendar-circle-plus\",\n    \"calendar-circle-user\",\n    \"calendar-clock\",\n    \"calendar-day\",\n    \"calendar-days\",\n    \"calendar-exclamation\",\n    \"calendar-heart\",\n    \"calendar-image\",\n    \"calendar-lines-pen\",\n    \"calendar-lines\",\n    \"calendar-minus\",\n    \"calendar-pen\",\n    \"calendar-plus\",\n    \"calendar-range\",\n    \"calendar-star\",\n    \"calendar-users\",\n    \"calendar-week\",\n    \"calendar-xmark\",\n    \"calendar\",\n    \"calendars\",\n    \"camcorder\",\n    \"camera-cctv\",\n    \"camera-movie\",\n    \"camera-polaroid\",\n    \"camera-retro\",\n    \"camera-rotate\",\n    \"camera-security\",\n    \"camera-slash\",\n    \"camera-viewfinder\",\n    \"camera-web-slash\",\n    \"camera-web\",\n    \"camera\",\n    \"campfire\",\n    \"campground\",\n    \"can-food\",\n    \"candle-holder\",\n    \"candy-bar\",\n    \"candy-cane\",\n    \"candy-corn\",\n    \"candy\",\n    \"cannabis\",\n    \"cannon\",\n    \"capsules\",\n    \"car-battery\",\n    \"car-bolt\",\n    \"car-building\",\n    \"car-bump\",\n    \"car-burst\",\n    \"car-bus\",\n    \"car-circle-bolt\",\n    \"car-garage\",\n    \"car-mirrors\",\n    \"car-on\",\n    \"car-rear\",\n    \"car-side-bolt\",\n    \"car-side\",\n    \"car-tilt\",\n    \"car-tunnel\",\n    \"car-wash\",\n    \"car-wrench\",\n    \"car\",\n    \"caravan-simple\",\n    \"caravan\",\n    \"card-club\",\n    \"card-diamond\",\n    \"card-heart\",\n    \"card-spade\",\n    \"cards-blank\",\n    \"cards\",\n    \"caret-down\",\n    \"caret-left\",\n    \"caret-right\",\n    \"caret-up\",\n    \"carpool\",\n    \"carrot\",\n    \"cars\",\n    \"cart-arrow-down\",\n    \"cart-arrow-up\",\n    \"cart-circle-arrow-down\",\n    \"cart-circle-arrow-up\",\n    \"cart-circle-check\",\n    \"cart-circle-exclamation\",\n    \"cart-circle-plus\",\n    \"cart-circle-xmark\",\n    \"cart-flatbed-boxes\",\n    \"cart-flatbed-empty\",\n    \"cart-flatbed-suitcase\",\n    \"cart-flatbed\",\n    \"cart-minus\",\n    \"cart-plus\",\n    \"cart-shopping-fast\",\n    \"cart-shopping\",\n    \"cart-xmark\",\n    \"cash-register\",\n    \"cassette-betamax\",\n    \"cassette-tape\",\n    \"cassette-vhs\",\n    \"castle\",\n    \"cat-space\",\n    \"cat\",\n    \"cauldron\",\n    \"cedi-sign\",\n    \"cent-sign\",\n    \"certificate\",\n    \"chair-office\",\n    \"chair\",\n    \"chalkboard-user\",\n    \"chalkboard\",\n    \"champagne-glass\",\n    \"champagne-glasses\",\n    \"charging-station\",\n    \"chart-area\",\n    \"chart-bar\",\n    \"chart-bullet\",\n    \"chart-candlestick\",\n    \"chart-column\",\n    \"chart-diagram\",\n    \"chart-fft\",\n    \"chart-gantt\",\n    \"chart-kanban\",\n    \"chart-line-down\",\n    \"chart-line-up-down\",\n    \"chart-line-up\",\n    \"chart-line\",\n    \"chart-mixed-up-circle-currency\",\n    \"chart-mixed-up-circle-dollar\",\n    \"chart-mixed\",\n    \"chart-network\",\n    \"chart-pie-simple-circle-currency\",\n    \"chart-pie-simple-circle-dollar\",\n    \"chart-pie-simple\",\n    \"chart-pie\",\n    \"chart-pyramid\",\n    \"chart-radar\",\n    \"chart-scatter-3d\",\n    \"chart-scatter-bubble\",\n    \"chart-scatter\",\n    \"chart-simple-horizontal\",\n    \"chart-simple\",\n    \"chart-sine\",\n    \"chart-tree-map\",\n    \"chart-user\",\n    \"chart-waterfall\",\n    \"check-double\",\n    \"check-to-slot\",\n    \"check\",\n    \"cheese-swiss\",\n    \"cheese\",\n    \"cherries\",\n    \"chess-bishop-piece\",\n    \"chess-bishop\",\n    \"chess-board\",\n    \"chess-clock-flip\",\n    \"chess-clock\",\n    \"chess-king-piece\",\n    \"chess-king\",\n    \"chess-knight-piece\",\n    \"chess-knight\",\n    \"chess-pawn-piece\",\n    \"chess-pawn\",\n    \"chess-queen-piece\",\n    \"chess-queen\",\n    \"chess-rook-piece\",\n    \"chess-rook\",\n    \"chess\",\n    \"chestnut\",\n    \"chevron-down\",\n    \"chevron-left\",\n    \"chevron-right\",\n    \"chevron-up\",\n    \"chevrons-down\",\n    \"chevrons-left\",\n    \"chevrons-right\",\n    \"chevrons-up\",\n    \"chf-sign\",\n    \"child-combatant\",\n    \"child-dress\",\n    \"child-reaching\",\n    \"child\",\n    \"children\",\n    \"chimney\",\n    \"chopsticks\",\n    \"church\",\n    \"circle-0\",\n    \"circle-1\",\n    \"circle-2\",\n    \"circle-3\",\n    \"circle-4\",\n    \"circle-5\",\n    \"circle-6\",\n    \"circle-7\",\n    \"circle-8\",\n    \"circle-9\",\n    \"circle-a\",\n    \"circle-ampersand\",\n    \"circle-arrow-down-left\",\n    \"circle-arrow-down-right\",\n    \"circle-arrow-down\",\n    \"circle-arrow-left\",\n    \"circle-arrow-right\",\n    \"circle-arrow-up-left\",\n    \"circle-arrow-up-right\",\n    \"circle-arrow-up\",\n    \"circle-b\",\n    \"circle-bolt\",\n    \"circle-book-open\",\n    \"circle-bookmark\",\n    \"circle-c\",\n    \"circle-calendar\",\n    \"circle-camera\",\n    \"circle-caret-down\",\n    \"circle-caret-left\",\n    \"circle-caret-right\",\n    \"circle-caret-up\",\n    \"circle-check\",\n    \"circle-chevron-down\",\n    \"circle-chevron-left\",\n    \"circle-chevron-right\",\n    \"circle-chevron-up\",\n    \"circle-d\",\n    \"circle-dashed\",\n    \"circle-divide\",\n    \"circle-dollar-to-slot\",\n    \"circle-dollar\",\n    \"circle-dot\",\n    \"circle-down-left\",\n    \"circle-down-right\",\n    \"circle-down\",\n    \"circle-e\",\n    \"circle-ellipsis-vertical\",\n    \"circle-ellipsis\",\n    \"circle-envelope\",\n    \"circle-euro\",\n    \"circle-exclamation-check\",\n    \"circle-exclamation\",\n    \"circle-f\",\n    \"circle-g\",\n    \"circle-gf\",\n    \"circle-h\",\n    \"circle-half-stroke\",\n    \"circle-half\",\n    \"circle-heart\",\n    \"circle-i\",\n    \"circle-info\",\n    \"circle-j\",\n    \"circle-k\",\n    \"circle-l\",\n    \"circle-left\",\n    \"circle-location-arrow\",\n    \"circle-m\",\n    \"circle-microphone-lines\",\n    \"circle-microphone\",\n    \"circle-minus\",\n    \"circle-n\",\n    \"circle-nodes\",\n    \"circle-notch\",\n    \"circle-o\",\n    \"circle-p\",\n    \"circle-parking\",\n    \"circle-pause\",\n    \"circle-phone-flip\",\n    \"circle-phone-hangup\",\n    \"circle-phone\",\n    \"circle-play\",\n    \"circle-plus\",\n    \"circle-q\",\n    \"circle-quarter-stroke\",\n    \"circle-quarter\",\n    \"circle-quarters\",\n    \"circle-question\",\n    \"circle-r\",\n    \"circle-radiation\",\n    \"circle-right\",\n    \"circle-s\",\n    \"circle-small\",\n    \"circle-sort-down\",\n    \"circle-sort-up\",\n    \"circle-sort\",\n    \"circle-star\",\n    \"circle-sterling\",\n    \"circle-stop\",\n    \"circle-t\",\n    \"circle-three-quarters-stroke\",\n    \"circle-three-quarters\",\n    \"circle-trash\",\n    \"circle-u\",\n    \"circle-up-left\",\n    \"circle-up-right\",\n    \"circle-up\",\n    \"circle-user\",\n    \"circle-v\",\n    \"circle-video\",\n    \"circle-w\",\n    \"circle-waveform-lines\",\n    \"circle-wifi-circle-wifi\",\n    \"circle-wifi\",\n    \"circle-x\",\n    \"circle-xmark\",\n    \"circle-y\",\n    \"circle-yen\",\n    \"circle-z\",\n    \"circle\",\n    \"circles-overlap-3\",\n    \"circles-overlap\",\n    \"citrus-slice\",\n    \"citrus\",\n    \"city\",\n    \"clapperboard-play\",\n    \"clapperboard\",\n    \"clarinet\",\n    \"claw-marks\",\n    \"clipboard-check\",\n    \"clipboard-list-check\",\n    \"clipboard-list\",\n    \"clipboard-medical\",\n    \"clipboard-prescription\",\n    \"clipboard-question\",\n    \"clipboard-user\",\n    \"clipboard\",\n    \"clock-desk\",\n    \"clock-eight-thirty\",\n    \"clock-eight\",\n    \"clock-eleven-thirty\",\n    \"clock-eleven\",\n    \"clock-five-thirty\",\n    \"clock-five\",\n    \"clock-four-thirty\",\n    \"clock-nine-thirty\",\n    \"clock-nine\",\n    \"clock-one-thirty\",\n    \"clock-one\",\n    \"clock-rotate-left\",\n    \"clock-seven-thirty\",\n    \"clock-seven\",\n    \"clock-six-thirty\",\n    \"clock-six\",\n    \"clock-ten-thirty\",\n    \"clock-ten\",\n    \"clock-three-thirty\",\n    \"clock-three\",\n    \"clock-twelve-thirty\",\n    \"clock-twelve\",\n    \"clock-two-thirty\",\n    \"clock-two\",\n    \"clock\",\n    \"clone\",\n    \"closed-captioning-slash\",\n    \"closed-captioning\",\n    \"clothes-hanger\",\n    \"cloud-arrow-down\",\n    \"cloud-arrow-up\",\n    \"cloud-binary\",\n    \"cloud-bolt-moon\",\n    \"cloud-bolt-sun\",\n    \"cloud-bolt\",\n    \"cloud-check\",\n    \"cloud-drizzle\",\n    \"cloud-exclamation\",\n    \"cloud-fog\",\n    \"cloud-hail-mixed\",\n    \"cloud-hail\",\n    \"cloud-meatball\",\n    \"cloud-minus\",\n    \"cloud-moon-rain\",\n    \"cloud-moon\",\n    \"cloud-music\",\n    \"cloud-plus\",\n    \"cloud-question\",\n    \"cloud-rain\",\n    \"cloud-rainbow\",\n    \"cloud-showers-heavy\",\n    \"cloud-showers-water\",\n    \"cloud-showers\",\n    \"cloud-slash\",\n    \"cloud-sleet\",\n    \"cloud-snow\",\n    \"cloud-sun-rain\",\n    \"cloud-sun\",\n    \"cloud-word\",\n    \"cloud-xmark\",\n    \"cloud\",\n    \"clouds-moon\",\n    \"clouds-sun\",\n    \"clouds\",\n    \"clover\",\n    \"club\",\n    \"coconut\",\n    \"code-branch\",\n    \"code-commit\",\n    \"code-compare\",\n    \"code-fork\",\n    \"code-merge\",\n    \"code-pull-request-closed\",\n    \"code-pull-request-draft\",\n    \"code-pull-request\",\n    \"code-simple\",\n    \"code\",\n    \"coffee-bean\",\n    \"coffee-beans\",\n    \"coffee-pot\",\n    \"coffin-cross\",\n    \"coffin\",\n    \"coin-blank\",\n    \"coin-front\",\n    \"coin-vertical\",\n    \"coin\",\n    \"coins\",\n    \"colon-sign\",\n    \"colon\",\n    \"columns-3\",\n    \"comet\",\n    \"comma\",\n    \"command\",\n    \"comment-arrow-down\",\n    \"comment-arrow-up-right\",\n    \"comment-arrow-up\",\n    \"comment-captions\",\n    \"comment-check\",\n    \"comment-code\",\n    \"comment-dollar\",\n    \"comment-dots\",\n    \"comment-exclamation\",\n    \"comment-heart\",\n    \"comment-image\",\n    \"comment-lines\",\n    \"comment-medical\",\n    \"comment-middle-top\",\n    \"comment-middle\",\n    \"comment-minus\",\n    \"comment-music\",\n    \"comment-nodes\",\n    \"comment-pen\",\n    \"comment-plus\",\n    \"comment-question\",\n    \"comment-quote\",\n    \"comment-slash\",\n    \"comment-smile\",\n    \"comment-sms\",\n    \"comment-text\",\n    \"comment-xmark\",\n    \"comment\",\n    \"comments-dollar\",\n    \"comments-question-check\",\n    \"comments-question\",\n    \"comments\",\n    \"compact-disc\",\n    \"compass-drafting\",\n    \"compass-slash\",\n    \"compass\",\n    \"compress-wide\",\n    \"compress\",\n    \"computer-classic\",\n    \"computer-mouse-scrollwheel\",\n    \"computer-mouse\",\n    \"computer-speaker\",\n    \"computer\",\n    \"container-storage\",\n    \"conveyor-belt-arm\",\n    \"conveyor-belt-boxes\",\n    \"conveyor-belt-empty\",\n    \"conveyor-belt\",\n    \"cookie-bite\",\n    \"cookie\",\n    \"copy\",\n    \"copyright\",\n    \"corn\",\n    \"corner\",\n    \"couch\",\n    \"court-sport\",\n    \"cow\",\n    \"cowbell-circle-plus\",\n    \"cowbell\",\n    \"crab\",\n    \"crate-apple\",\n    \"crate-empty\",\n    \"credit-card-blank\",\n    \"credit-card-front\",\n    \"credit-card\",\n    \"cricket-bat-ball\",\n    \"croissant\",\n    \"crop-simple\",\n    \"crop\",\n    \"cross\",\n    \"crosshairs-simple\",\n    \"crosshairs\",\n    \"crow\",\n    \"crown\",\n    \"crutch\",\n    \"crutches\",\n    \"cruzeiro-sign\",\n    \"crystal-ball\",\n    \"cube\",\n    \"cubes-stacked\",\n    \"cubes\",\n    \"cucumber\",\n    \"cup-straw-swoosh\",\n    \"cup-straw\",\n    \"cup-togo\",\n    \"cupcake\",\n    \"curling-stone\",\n    \"custard\",\n    \"d\",\n    \"dagger\",\n    \"dash\",\n    \"database\",\n    \"deer-rudolph\",\n    \"deer\",\n    \"delete-left\",\n    \"delete-right\",\n    \"democrat\",\n    \"desktop-arrow-down\",\n    \"desktop\",\n    \"dharmachakra\",\n    \"diagram-cells\",\n    \"diagram-lean-canvas\",\n    \"diagram-nested\",\n    \"diagram-next\",\n    \"diagram-predecessor\",\n    \"diagram-previous\",\n    \"diagram-project\",\n    \"diagram-sankey\",\n    \"diagram-subtask\",\n    \"diagram-successor\",\n    \"diagram-venn\",\n    \"dial-high\",\n    \"dial-low\",\n    \"dial-max\",\n    \"dial-med-low\",\n    \"dial-med\",\n    \"dial-min\",\n    \"dial-off\",\n    \"dial\",\n    \"diamond-exclamation\",\n    \"diamond-half-stroke\",\n    \"diamond-half\",\n    \"diamond-turn-right\",\n    \"diamond\",\n    \"diamonds-4\",\n    \"dice-d10\",\n    \"dice-d12\",\n    \"dice-d20\",\n    \"dice-d4\",\n    \"dice-d6\",\n    \"dice-d8\",\n    \"dice-five\",\n    \"dice-four\",\n    \"dice-one\",\n    \"dice-six\",\n    \"dice-three\",\n    \"dice-two\",\n    \"dice\",\n    \"dinosaur\",\n    \"diploma\",\n    \"disc-drive\",\n    \"disease\",\n    \"display-arrow-down\",\n    \"display-chart-up-circle-currency\",\n    \"display-chart-up-circle-dollar\",\n    \"display-chart-up\",\n    \"display-code\",\n    \"display-medical\",\n    \"display-slash\",\n    \"display\",\n    \"distribute-spacing-horizontal\",\n    \"distribute-spacing-vertical\",\n    \"ditto\",\n    \"divide\",\n    \"dna\",\n    \"do-not-enter\",\n    \"dog-leashed\",\n    \"dog\",\n    \"dollar-sign\",\n    \"dolly-empty\",\n    \"dolly\",\n    \"dolphin\",\n    \"dong-sign\",\n    \"donut\",\n    \"door-closed\",\n    \"door-open\",\n    \"dove\",\n    \"down-from-bracket\",\n    \"down-from-dotted-line\",\n    \"down-from-line\",\n    \"down-left-and-up-right-to-center\",\n    \"down-left\",\n    \"down-long\",\n    \"down-right\",\n    \"down-to-bracket\",\n    \"down-to-dotted-line\",\n    \"down-to-line\",\n    \"down\",\n    \"download\",\n    \"dragon\",\n    \"draw-circle\",\n    \"draw-polygon\",\n    \"draw-square\",\n    \"dreidel\",\n    \"drone-front\",\n    \"drone\",\n    \"droplet-degree\",\n    \"droplet-percent\",\n    \"droplet-slash\",\n    \"droplet\",\n    \"drum-steelpan\",\n    \"drum\",\n    \"drumstick-bite\",\n    \"drumstick\",\n    \"dryer-heat\",\n    \"dryer\",\n    \"duck\",\n    \"dumbbell\",\n    \"dumpster-fire\",\n    \"dumpster\",\n    \"dungeon\",\n    \"e\",\n    \"ear-deaf\",\n    \"ear-listen\",\n    \"ear-muffs\",\n    \"ear\",\n    \"earth-africa\",\n    \"earth-americas\",\n    \"earth-asia\",\n    \"earth-europe\",\n    \"earth-oceania\",\n    \"eclipse\",\n    \"egg-fried\",\n    \"egg\",\n    \"eggplant\",\n    \"eject\",\n    \"elephant\",\n    \"elevator\",\n    \"ellipsis-stroke-vertical\",\n    \"ellipsis-stroke\",\n    \"ellipsis-vertical\",\n    \"ellipsis\",\n    \"empty-set\",\n    \"engine-warning\",\n    \"engine\",\n    \"envelope-circle-check\",\n    \"envelope-dot\",\n    \"envelope-open-dollar\",\n    \"envelope-open-text\",\n    \"envelope-open\",\n    \"envelope\",\n    \"envelopes-bulk\",\n    \"envelopes\",\n    \"equals\",\n    \"eraser\",\n    \"escalator\",\n    \"ethernet\",\n    \"euro-sign\",\n    \"excavator\",\n    \"exclamation\",\n    \"expand-wide\",\n    \"expand\",\n    \"explosion\",\n    \"eye-dropper-full\",\n    \"eye-dropper-half\",\n    \"eye-dropper\",\n    \"eye-evil\",\n    \"eye-low-vision\",\n    \"eye-slash\",\n    \"eye\",\n    \"eyes\",\n    \"f\",\n    \"face-angry-horns\",\n    \"face-angry\",\n    \"face-anguished\",\n    \"face-anxious-sweat\",\n    \"face-astonished\",\n    \"face-awesome\",\n    \"face-beam-hand-over-mouth\",\n    \"face-clouds\",\n    \"face-confounded\",\n    \"face-confused\",\n    \"face-cowboy-hat\",\n    \"face-diagonal-mouth\",\n    \"face-disappointed\",\n    \"face-disguise\",\n    \"face-dizzy\",\n    \"face-dotted\",\n    \"face-downcast-sweat\",\n    \"face-drooling\",\n    \"face-exhaling\",\n    \"face-explode\",\n    \"face-expressionless\",\n    \"face-eyes-xmarks\",\n    \"face-fearful\",\n    \"face-flushed\",\n    \"face-frown-open\",\n    \"face-frown-slight\",\n    \"face-frown\",\n    \"face-glasses\",\n    \"face-grimace\",\n    \"face-grin-beam-sweat\",\n    \"face-grin-beam\",\n    \"face-grin-hearts\",\n    \"face-grin-squint-tears\",\n    \"face-grin-squint\",\n    \"face-grin-stars\",\n    \"face-grin-tears\",\n    \"face-grin-tongue-squint\",\n    \"face-grin-tongue-wink\",\n    \"face-grin-tongue\",\n    \"face-grin-wide\",\n    \"face-grin-wink\",\n    \"face-grin\",\n    \"face-hand-over-mouth\",\n    \"face-hand-peeking\",\n    \"face-hand-yawn\",\n    \"face-head-bandage\",\n    \"face-holding-back-tears\",\n    \"face-hushed\",\n    \"face-icicles\",\n    \"face-kiss-beam\",\n    \"face-kiss-closed-eyes\",\n    \"face-kiss-wink-heart\",\n    \"face-kiss\",\n    \"face-laugh-beam\",\n    \"face-laugh-squint\",\n    \"face-laugh-wink\",\n    \"face-laugh\",\n    \"face-lying\",\n    \"face-mask\",\n    \"face-meh-blank\",\n    \"face-meh\",\n    \"face-melting\",\n    \"face-monocle\",\n    \"face-nauseated\",\n    \"face-nose-steam\",\n    \"face-party\",\n    \"face-pensive\",\n    \"face-persevering\",\n    \"face-pleading\",\n    \"face-pouting\",\n    \"face-raised-eyebrow\",\n    \"face-relieved\",\n    \"face-rolling-eyes\",\n    \"face-sad-cry\",\n    \"face-sad-sweat\",\n    \"face-sad-tear\",\n    \"face-saluting\",\n    \"face-scream\",\n    \"face-shush\",\n    \"face-sleeping\",\n    \"face-sleepy\",\n    \"face-smile-beam\",\n    \"face-smile-halo\",\n    \"face-smile-hearts\",\n    \"face-smile-horns\",\n    \"face-smile-plus\",\n    \"face-smile-relaxed\",\n    \"face-smile-tear\",\n    \"face-smile-tongue\",\n    \"face-smile-upside-down\",\n    \"face-smile-wink\",\n    \"face-smile\",\n    \"face-smiling-hands\",\n    \"face-smirking\",\n    \"face-spiral-eyes\",\n    \"face-sunglasses\",\n    \"face-surprise\",\n    \"face-swear\",\n    \"face-thermometer\",\n    \"face-thinking\",\n    \"face-tired\",\n    \"face-tissue\",\n    \"face-tongue-money\",\n    \"face-tongue-sweat\",\n    \"face-unamused\",\n    \"face-viewfinder\",\n    \"face-vomit\",\n    \"face-weary\",\n    \"face-woozy\",\n    \"face-worried\",\n    \"face-zany\",\n    \"face-zipper\",\n    \"falafel\",\n    \"family-dress\",\n    \"family-pants\",\n    \"family\",\n    \"fan-table\",\n    \"fan\",\n    \"farm\",\n    \"faucet-drip\",\n    \"faucet\",\n    \"fax\",\n    \"feather-pointed\",\n    \"feather\",\n    \"fence\",\n    \"ferris-wheel\",\n    \"ferry\",\n    \"field-hockey-stick-ball\",\n    \"file-arrow-down\",\n    \"file-arrow-up\",\n    \"file-audio\",\n    \"file-binary\",\n    \"file-cad\",\n    \"file-certificate\",\n    \"file-chart-column\",\n    \"file-chart-pie\",\n    \"file-check\",\n    \"file-circle-check\",\n    \"file-circle-exclamation\",\n    \"file-circle-info\",\n    \"file-circle-minus\",\n    \"file-circle-plus\",\n    \"file-circle-question\",\n    \"file-circle-xmark\",\n    \"file-code\",\n    \"file-contract\",\n    \"file-csv\",\n    \"file-dashed-line\",\n    \"file-doc\",\n    \"file-eps\",\n    \"file-excel\",\n    \"file-exclamation\",\n    \"file-export\",\n    \"file-fragment\",\n    \"file-gif\",\n    \"file-half-dashed\",\n    \"file-heart\",\n    \"file-image\",\n    \"file-import\",\n    \"file-invoice-dollar\",\n    \"file-invoice\",\n    \"file-jpg\",\n    \"file-lines\",\n    \"file-lock\",\n    \"file-magnifying-glass\",\n    \"file-medical\",\n    \"file-minus\",\n    \"file-mov\",\n    \"file-mp3\",\n    \"file-mp4\",\n    \"file-music\",\n    \"file-pdf\",\n    \"file-pen\",\n    \"file-plus-minus\",\n    \"file-plus\",\n    \"file-png\",\n    \"file-powerpoint\",\n    \"file-ppt\",\n    \"file-prescription\",\n    \"file-shield\",\n    \"file-signature\",\n    \"file-slash\",\n    \"file-spreadsheet\",\n    \"file-svg\",\n    \"file-user\",\n    \"file-vector\",\n    \"file-video\",\n    \"file-waveform\",\n    \"file-word\",\n    \"file-xls\",\n    \"file-xmark\",\n    \"file-xml\",\n    \"file-zip\",\n    \"file-zipper\",\n    \"file\",\n    \"files-medical\",\n    \"files\",\n    \"fill-drip\",\n    \"fill\",\n    \"film-canister\",\n    \"film-simple\",\n    \"film-slash\",\n    \"film\",\n    \"films\",\n    \"filter-circle-dollar\",\n    \"filter-circle-xmark\",\n    \"filter-list\",\n    \"filter-slash\",\n    \"filter\",\n    \"filters\",\n    \"fingerprint\",\n    \"fire-burner\",\n    \"fire-extinguisher\",\n    \"fire-flame-curved\",\n    \"fire-flame-simple\",\n    \"fire-flame\",\n    \"fire-hydrant\",\n    \"fire-smoke\",\n    \"fire\",\n    \"fireplace\",\n    \"fish-bones\",\n    \"fish-cooked\",\n    \"fish-fins\",\n    \"fish\",\n    \"fishing-rod\",\n    \"flag-checkered\",\n    \"flag-pennant\",\n    \"flag-swallowtail\",\n    \"flag-usa\",\n    \"flag\",\n    \"flashlight\",\n    \"flask-gear\",\n    \"flask-round-poison\",\n    \"flask-round-potion\",\n    \"flask-vial\",\n    \"flask\",\n    \"flatbread-stuffed\",\n    \"flatbread\",\n    \"floppy-disk-circle-arrow-right\",\n    \"floppy-disk-circle-xmark\",\n    \"floppy-disk-pen\",\n    \"floppy-disk\",\n    \"floppy-disks\",\n    \"florin-sign\",\n    \"flower-daffodil\",\n    \"flower-tulip\",\n    \"flower\",\n    \"flute\",\n    \"flux-capacitor\",\n    \"flying-disc\",\n    \"folder-arrow-down\",\n    \"folder-arrow-up\",\n    \"folder-bookmark\",\n    \"folder-check\",\n    \"folder-closed\",\n    \"folder-gear\",\n    \"folder-grid\",\n    \"folder-heart\",\n    \"folder-image\",\n    \"folder-magnifying-glass\",\n    \"folder-medical\",\n    \"folder-minus\",\n    \"folder-music\",\n    \"folder-open\",\n    \"folder-plus\",\n    \"folder-tree\",\n    \"folder-user\",\n    \"folder-xmark\",\n    \"folder\",\n    \"folders\",\n    \"fondue-pot\",\n    \"font-awesome\",\n    \"font-case\",\n    \"font\",\n    \"football-helmet\",\n    \"football\",\n    \"fork-knife\",\n    \"fork\",\n    \"forklift\",\n    \"fort\",\n    \"forward-fast\",\n    \"forward-step\",\n    \"forward\",\n    \"frame\",\n    \"franc-sign\",\n    \"french-fries\",\n    \"frog\",\n    \"function\",\n    \"futbol\",\n    \"g\",\n    \"galaxy\",\n    \"gallery-thumbnails\",\n    \"game-board-simple\",\n    \"game-board\",\n    \"game-console-handheld-crank\",\n    \"game-console-handheld\",\n    \"gamepad-modern\",\n    \"gamepad\",\n    \"garage-car\",\n    \"garage-open\",\n    \"garage\",\n    \"garlic\",\n    \"gas-pump-slash\",\n    \"gas-pump\",\n    \"gauge-circle-bolt\",\n    \"gauge-circle-minus\",\n    \"gauge-circle-plus\",\n    \"gauge-high\",\n    \"gauge-low\",\n    \"gauge-max\",\n    \"gauge-min\",\n    \"gauge-simple-high\",\n    \"gauge-simple-low\",\n    \"gauge-simple-max\",\n    \"gauge-simple-min\",\n    \"gauge-simple\",\n    \"gauge\",\n    \"gavel\",\n    \"gear-code\",\n    \"gear-complex-code\",\n    \"gear-complex\",\n    \"gear\",\n    \"gears\",\n    \"gem\",\n    \"genderless\",\n    \"ghost\",\n    \"gif\",\n    \"gift-card\",\n    \"gift\",\n    \"gifts\",\n    \"gingerbread-man\",\n    \"glass-citrus\",\n    \"glass-empty\",\n    \"glass-half\",\n    \"glass-water-droplet\",\n    \"glass-water\",\n    \"glass\",\n    \"glasses-round\",\n    \"glasses\",\n    \"globe-pointer\",\n    \"globe-snow\",\n    \"globe-stand\",\n    \"globe-wifi\",\n    \"globe\",\n    \"goal-net\",\n    \"golf-ball-tee\",\n    \"golf-club\",\n    \"golf-flag-hole\",\n    \"gopuram\",\n    \"graduation-cap\",\n    \"gramophone\",\n    \"grapes\",\n    \"grate-droplet\",\n    \"grate\",\n    \"greater-than-equal\",\n    \"greater-than\",\n    \"grid-2-plus\",\n    \"grid-2\",\n    \"grid-4\",\n    \"grid-5\",\n    \"grid-dividers\",\n    \"grid-horizontal\",\n    \"grid-round-2-plus\",\n    \"grid-round-2\",\n    \"grid-round-4\",\n    \"grid-round-5\",\n    \"grid-round\",\n    \"grid\",\n    \"grill-fire\",\n    \"grill-hot\",\n    \"grill\",\n    \"grip-dots-vertical\",\n    \"grip-dots\",\n    \"grip-lines-vertical\",\n    \"grip-lines\",\n    \"grip-vertical\",\n    \"grip\",\n    \"group-arrows-rotate\",\n    \"guarani-sign\",\n    \"guitar-electric\",\n    \"guitar\",\n    \"guitars\",\n    \"gun-slash\",\n    \"gun-squirt\",\n    \"gun\",\n    \"h\",\n    \"h1\",\n    \"h2\",\n    \"h3\",\n    \"h4\",\n    \"h5\",\n    \"h6\",\n    \"hammer-brush\",\n    \"hammer-crash\",\n    \"hammer-war\",\n    \"hammer\",\n    \"hamsa\",\n    \"hand-back-fist\",\n    \"hand-back-point-down\",\n    \"hand-back-point-left\",\n    \"hand-back-point-ribbon\",\n    \"hand-back-point-right\",\n    \"hand-back-point-up\",\n    \"hand-dots\",\n    \"hand-fingers-crossed\",\n    \"hand-fist\",\n    \"hand-heart\",\n    \"hand-holding-box\",\n    \"hand-holding-circle-dollar\",\n    \"hand-holding-dollar\",\n    \"hand-holding-droplet\",\n    \"hand-holding-hand\",\n    \"hand-holding-heart\",\n    \"hand-holding-magic\",\n    \"hand-holding-medical\",\n    \"hand-holding-seedling\",\n    \"hand-holding-skull\",\n    \"hand-holding\",\n    \"hand-horns\",\n    \"hand-lizard\",\n    \"hand-love\",\n    \"hand-middle-finger\",\n    \"hand-peace\",\n    \"hand-point-down\",\n    \"hand-point-left\",\n    \"hand-point-ribbon\",\n    \"hand-point-right\",\n    \"hand-point-up\",\n    \"hand-pointer\",\n    \"hand-scissors\",\n    \"hand-sparkles\",\n    \"hand-spock\",\n    \"hand-wave\",\n    \"hand\",\n    \"handcuffs\",\n    \"hands-asl-interpreting\",\n    \"hands-bound\",\n    \"hands-bubbles\",\n    \"hands-clapping\",\n    \"hands-holding-child\",\n    \"hands-holding-circle\",\n    \"hands-holding-diamond\",\n    \"hands-holding-dollar\",\n    \"hands-holding-heart\",\n    \"hands-holding\",\n    \"hands-praying\",\n    \"hands\",\n    \"handshake-angle\",\n    \"handshake-simple-slash\",\n    \"handshake-simple\",\n    \"handshake-slash\",\n    \"handshake\",\n    \"hanukiah\",\n    \"hard-drive\",\n    \"hashtag-lock\",\n    \"hashtag\",\n    \"hat-beach\",\n    \"hat-chef\",\n    \"hat-cowboy-side\",\n    \"hat-cowboy\",\n    \"hat-santa\",\n    \"hat-winter\",\n    \"hat-witch\",\n    \"hat-wizard\",\n    \"head-side-brain\",\n    \"head-side-cough-slash\",\n    \"head-side-cough\",\n    \"head-side-gear\",\n    \"head-side-goggles\",\n    \"head-side-headphones\",\n    \"head-side-heart\",\n    \"head-side-mask\",\n    \"head-side-medical\",\n    \"head-side-virus\",\n    \"head-side\",\n    \"heading\",\n    \"headphones-simple\",\n    \"headphones\",\n    \"headset\",\n    \"heart-circle-bolt\",\n    \"heart-circle-check\",\n    \"heart-circle-exclamation\",\n    \"heart-circle-minus\",\n    \"heart-circle-plus\",\n    \"heart-circle-xmark\",\n    \"heart-crack\",\n    \"heart-half-stroke\",\n    \"heart-half\",\n    \"heart-pulse\",\n    \"heart\",\n    \"heat\",\n    \"helicopter-symbol\",\n    \"helicopter\",\n    \"helmet-battle\",\n    \"helmet-safety\",\n    \"helmet-un\",\n    \"hexagon-check\",\n    \"hexagon-divide\",\n    \"hexagon-exclamation\",\n    \"hexagon-image\",\n    \"hexagon-minus\",\n    \"hexagon-nodes-bolt\",\n    \"hexagon-nodes\",\n    \"hexagon-plus\",\n    \"hexagon-vertical-nft-slanted\",\n    \"hexagon-vertical-nft\",\n    \"hexagon-xmark\",\n    \"hexagon\",\n    \"high-definition\",\n    \"highlighter-line\",\n    \"highlighter\",\n    \"hill-avalanche\",\n    \"hill-rockslide\",\n    \"hippo\",\n    \"hockey-mask\",\n    \"hockey-puck\",\n    \"hockey-stick-puck\",\n    \"hockey-sticks\",\n    \"holly-berry\",\n    \"honey-pot\",\n    \"hood-cloak\",\n    \"horizontal-rule\",\n    \"horse-head\",\n    \"horse-saddle\",\n    \"horse\",\n    \"hose-reel\",\n    \"hose\",\n    \"hospital-user\",\n    \"hospital\",\n    \"hospitals\",\n    \"hot-tub-person\",\n    \"hotdog\",\n    \"hotel\",\n    \"hourglass-clock\",\n    \"hourglass-end\",\n    \"hourglass-half\",\n    \"hourglass-start\",\n    \"hourglass\",\n    \"house-blank\",\n    \"house-building\",\n    \"house-chimney-blank\",\n    \"house-chimney-crack\",\n    \"house-chimney-heart\",\n    \"house-chimney-medical\",\n    \"house-chimney-user\",\n    \"house-chimney-window\",\n    \"house-chimney\",\n    \"house-circle-check\",\n    \"house-circle-exclamation\",\n    \"house-circle-xmark\",\n    \"house-crack\",\n    \"house-day\",\n    \"house-fire\",\n    \"house-flag\",\n    \"house-flood-water-circle-arrow-right\",\n    \"house-flood-water\",\n    \"house-heart\",\n    \"house-laptop\",\n    \"house-lock\",\n    \"house-medical-circle-check\",\n    \"house-medical-circle-exclamation\",\n    \"house-medical-circle-xmark\",\n    \"house-medical-flag\",\n    \"house-medical\",\n    \"house-night\",\n    \"house-person-leave\",\n    \"house-person-return\",\n    \"house-signal\",\n    \"house-tree\",\n    \"house-tsunami\",\n    \"house-turret\",\n    \"house-user\",\n    \"house-water\",\n    \"house-window\",\n    \"house\",\n    \"hryvnia-sign\",\n    \"hundred-points\",\n    \"hurricane\",\n    \"hydra\",\n    \"hyphen\",\n    \"i-cursor\",\n    \"i\",\n    \"ice-cream\",\n    \"ice-skate\",\n    \"icicles\",\n    \"icons\",\n    \"id-badge\",\n    \"id-card-clip\",\n    \"id-card\",\n    \"igloo\",\n    \"image-landscape\",\n    \"image-polaroid-user\",\n    \"image-polaroid\",\n    \"image-portrait\",\n    \"image-slash\",\n    \"image-user\",\n    \"image\",\n    \"images-user\",\n    \"images\",\n    \"inbox-full\",\n    \"inbox-in\",\n    \"inbox-out\",\n    \"inbox\",\n    \"inboxes\",\n    \"indent\",\n    \"indian-rupee-sign\",\n    \"industry-windows\",\n    \"industry\",\n    \"infinity\",\n    \"info\",\n    \"inhaler\",\n    \"input-numeric\",\n    \"input-pipe\",\n    \"input-text\",\n    \"integral\",\n    \"interrobang\",\n    \"intersection\",\n    \"island-tropical\",\n    \"italic\",\n    \"j\",\n    \"jack-o-lantern\",\n    \"jar-wheat\",\n    \"jar\",\n    \"jedi\",\n    \"jet-fighter-up\",\n    \"jet-fighter\",\n    \"joint\",\n    \"joystick\",\n    \"jug-bottle\",\n    \"jug-detergent\",\n    \"jug\",\n    \"k\",\n    \"kaaba\",\n    \"kazoo\",\n    \"kerning\",\n    \"key-skeleton-left-right\",\n    \"key-skeleton\",\n    \"key\",\n    \"keyboard-brightness-low\",\n    \"keyboard-brightness\",\n    \"keyboard-down\",\n    \"keyboard-left\",\n    \"keyboard\",\n    \"keynote\",\n    \"khanda\",\n    \"kidneys\",\n    \"kip-sign\",\n    \"kit-medical\",\n    \"kitchen-set\",\n    \"kite\",\n    \"kiwi-bird\",\n    \"kiwi-fruit\",\n    \"knife-kitchen\",\n    \"knife\",\n    \"l\",\n    \"lacrosse-stick-ball\",\n    \"lacrosse-stick\",\n    \"lambda\",\n    \"lamp-desk\",\n    \"lamp-floor\",\n    \"lamp-street\",\n    \"lamp\",\n    \"land-mine-on\",\n    \"landmark-dome\",\n    \"landmark-flag\",\n    \"landmark-magnifying-glass\",\n    \"landmark\",\n    \"language\",\n    \"laptop-arrow-down\",\n    \"laptop-binary\",\n    \"laptop-code\",\n    \"laptop-file\",\n    \"laptop-medical\",\n    \"laptop-mobile\",\n    \"laptop-slash\",\n    \"laptop\",\n    \"lari-sign\",\n    \"lasso-sparkles\",\n    \"lasso\",\n    \"layer-group\",\n    \"layer-minus\",\n    \"layer-plus\",\n    \"leaf-heart\",\n    \"leaf-maple\",\n    \"leaf-oak\",\n    \"leaf\",\n    \"leafy-green\",\n    \"left-from-bracket\",\n    \"left-from-line\",\n    \"left-long-to-line\",\n    \"left-long\",\n    \"left-right\",\n    \"left-to-bracket\",\n    \"left-to-line\",\n    \"left\",\n    \"lemon\",\n    \"less-than-equal\",\n    \"less-than\",\n    \"life-ring\",\n    \"light-ceiling\",\n    \"light-emergency-on\",\n    \"light-emergency\",\n    \"light-switch-off\",\n    \"light-switch-on\",\n    \"light-switch\",\n    \"lightbulb-cfl-on\",\n    \"lightbulb-cfl\",\n    \"lightbulb-dollar\",\n    \"lightbulb-exclamation-on\",\n    \"lightbulb-exclamation\",\n    \"lightbulb-gear\",\n    \"lightbulb-message\",\n    \"lightbulb-on\",\n    \"lightbulb-slash\",\n    \"lightbulb\",\n    \"lighthouse\",\n    \"lights-holiday\",\n    \"line-columns\",\n    \"line-height\",\n    \"lines-leaning\",\n    \"link-horizontal-slash\",\n    \"link-horizontal\",\n    \"link-simple-slash\",\n    \"link-simple\",\n    \"link-slash\",\n    \"link\",\n    \"lips\",\n    \"lira-sign\",\n    \"list-check\",\n    \"list-dropdown\",\n    \"list-music\",\n    \"list-ol\",\n    \"list-radio\",\n    \"list-timeline\",\n    \"list-tree\",\n    \"list-ul\",\n    \"list\",\n    \"litecoin-sign\",\n    \"loader\",\n    \"lobster\",\n    \"location-arrow-up\",\n    \"location-arrow\",\n    \"location-check\",\n    \"location-crosshairs-slash\",\n    \"location-crosshairs\",\n    \"location-dot-slash\",\n    \"location-dot\",\n    \"location-exclamation\",\n    \"location-minus\",\n    \"location-pen\",\n    \"location-pin-lock\",\n    \"location-pin-slash\",\n    \"location-pin\",\n    \"location-plus\",\n    \"location-question\",\n    \"location-smile\",\n    \"location-xmark\",\n    \"lock-a\",\n    \"lock-hashtag\",\n    \"lock-keyhole-open\",\n    \"lock-keyhole\",\n    \"lock-open\",\n    \"lock\",\n    \"locust\",\n    \"lollipop\",\n    \"loveseat\",\n    \"luchador-mask\",\n    \"lungs-virus\",\n    \"lungs\",\n    \"m\",\n    \"mace\",\n    \"magnet\",\n    \"magnifying-glass-arrow-right\",\n    \"magnifying-glass-arrows-rotate\",\n    \"magnifying-glass-chart\",\n    \"magnifying-glass-dollar\",\n    \"magnifying-glass-location\",\n    \"magnifying-glass-minus\",\n    \"magnifying-glass-music\",\n    \"magnifying-glass-play\",\n    \"magnifying-glass-plus\",\n    \"magnifying-glass-waveform\",\n    \"magnifying-glass\",\n    \"mailbox-flag-up\",\n    \"mailbox\",\n    \"manat-sign\",\n    \"mandolin\",\n    \"mango\",\n    \"manhole\",\n    \"map-location-dot\",\n    \"map-location\",\n    \"map-pin\",\n    \"map\",\n    \"marker\",\n    \"mars-and-venus-burst\",\n    \"mars-and-venus\",\n    \"mars-double\",\n    \"mars-stroke-right\",\n    \"mars-stroke-up\",\n    \"mars-stroke\",\n    \"mars\",\n    \"martini-glass-citrus\",\n    \"martini-glass-empty\",\n    \"martini-glass\",\n    \"mask-face\",\n    \"mask-snorkel\",\n    \"mask-ventilator\",\n    \"mask\",\n    \"masks-theater\",\n    \"mattress-pillow\",\n    \"maximize\",\n    \"meat\",\n    \"medal\",\n    \"megaphone\",\n    \"melon-slice\",\n    \"melon\",\n    \"memo-circle-check\",\n    \"memo-circle-info\",\n    \"memo-pad\",\n    \"memo\",\n    \"memory\",\n    \"menorah\",\n    \"mercury\",\n    \"merge\",\n    \"message-arrow-down\",\n    \"message-arrow-up-right\",\n    \"message-arrow-up\",\n    \"message-bot\",\n    \"message-captions\",\n    \"message-check\",\n    \"message-code\",\n    \"message-dollar\",\n    \"message-dots\",\n    \"message-exclamation\",\n    \"message-heart\",\n    \"message-image\",\n    \"message-lines\",\n    \"message-medical\",\n    \"message-middle-top\",\n    \"message-middle\",\n    \"message-minus\",\n    \"message-music\",\n    \"message-pen\",\n    \"message-plus\",\n    \"message-question\",\n    \"message-quote\",\n    \"message-slash\",\n    \"message-smile\",\n    \"message-sms\",\n    \"message-text\",\n    \"message-xmark\",\n    \"message\",\n    \"messages-dollar\",\n    \"messages-question\",\n    \"messages\",\n    \"meteor\",\n    \"meter-bolt\",\n    \"meter-droplet\",\n    \"meter-fire\",\n    \"meter\",\n    \"microchip-ai\",\n    \"microchip\",\n    \"microphone-lines-slash\",\n    \"microphone-lines\",\n    \"microphone-slash\",\n    \"microphone-stand\",\n    \"microphone\",\n    \"microscope\",\n    \"microwave\",\n    \"mill-sign\",\n    \"minimize\",\n    \"minus\",\n    \"mistletoe\",\n    \"mitten\",\n    \"mobile-button\",\n    \"mobile-notch\",\n    \"mobile-retro\",\n    \"mobile-screen-button\",\n    \"mobile-screen\",\n    \"mobile-signal-out\",\n    \"mobile-signal\",\n    \"mobile\",\n    \"money-bill-1-wave\",\n    \"money-bill-1\",\n    \"money-bill-simple-wave\",\n    \"money-bill-simple\",\n    \"money-bill-transfer\",\n    \"money-bill-trend-up\",\n    \"money-bill-wave\",\n    \"money-bill-wheat\",\n    \"money-bill\",\n    \"money-bills-simple\",\n    \"money-bills\",\n    \"money-check-dollar-pen\",\n    \"money-check-dollar\",\n    \"money-check-pen\",\n    \"money-check\",\n    \"money-from-bracket\",\n    \"money-simple-from-bracket\",\n    \"monitor-waveform\",\n    \"monkey\",\n    \"monument\",\n    \"moon-cloud\",\n    \"moon-over-sun\",\n    \"moon-stars\",\n    \"moon\",\n    \"moped\",\n    \"mortar-pestle\",\n    \"mosque\",\n    \"mosquito-net\",\n    \"mosquito\",\n    \"motorcycle\",\n    \"mound\",\n    \"mountain-city\",\n    \"mountain-sun\",\n    \"mountain\",\n    \"mountains\",\n    \"mouse-field\",\n    \"mp3-player\",\n    \"mug-hot\",\n    \"mug-marshmallows\",\n    \"mug-saucer\",\n    \"mug-tea-saucer\",\n    \"mug-tea\",\n    \"mug\",\n    \"mushroom\",\n    \"music-magnifying-glass\",\n    \"music-note-slash\",\n    \"music-note\",\n    \"music-slash\",\n    \"music\",\n    \"mustache\",\n    \"n\",\n    \"naira-sign\",\n    \"narwhal\",\n    \"nesting-dolls\",\n    \"network-wired\",\n    \"neuter\",\n    \"newspaper\",\n    \"nfc-lock\",\n    \"nfc-magnifying-glass\",\n    \"nfc-pen\",\n    \"nfc-signal\",\n    \"nfc-slash\",\n    \"nfc-symbol\",\n    \"nfc-trash\",\n    \"nfc\",\n    \"nose\",\n    \"not-equal\",\n    \"notdef\",\n    \"note-medical\",\n    \"note-sticky\",\n    \"note\",\n    \"notebook\",\n    \"notes-medical\",\n    \"notes\",\n    \"o\",\n    \"object-exclude\",\n    \"object-group\",\n    \"object-intersect\",\n    \"object-subtract\",\n    \"object-ungroup\",\n    \"object-union\",\n    \"objects-align-bottom\",\n    \"objects-align-center-horizontal\",\n    \"objects-align-center-vertical\",\n    \"objects-align-left\",\n    \"objects-align-right\",\n    \"objects-align-top\",\n    \"objects-column\",\n    \"octagon-check\",\n    \"octagon-divide\",\n    \"octagon-exclamation\",\n    \"octagon-minus\",\n    \"octagon-plus\",\n    \"octagon-xmark\",\n    \"octagon\",\n    \"octopus\",\n    \"oil-can-drip\",\n    \"oil-can\",\n    \"oil-temperature\",\n    \"oil-well\",\n    \"olive-branch\",\n    \"olive\",\n    \"om\",\n    \"omega\",\n    \"onion\",\n    \"option\",\n    \"ornament\",\n    \"otter\",\n    \"outdent\",\n    \"outlet\",\n    \"oven\",\n    \"overline\",\n    \"p\",\n    \"page-caret-down\",\n    \"page-caret-up\",\n    \"page\",\n    \"pager\",\n    \"paint-roller\",\n    \"paintbrush-fine\",\n    \"paintbrush-pencil\",\n    \"paintbrush\",\n    \"palette\",\n    \"pallet-box\",\n    \"pallet-boxes\",\n    \"pallet\",\n    \"pan-food\",\n    \"pan-frying\",\n    \"pancakes\",\n    \"panel-ews\",\n    \"panel-fire\",\n    \"panorama\",\n    \"paper-plane-top\",\n    \"paper-plane\",\n    \"paperclip-vertical\",\n    \"paperclip\",\n    \"parachute-box\",\n    \"paragraph-left\",\n    \"paragraph\",\n    \"party-bell\",\n    \"party-horn\",\n    \"passport\",\n    \"paste\",\n    \"pause\",\n    \"paw-claws\",\n    \"paw-simple\",\n    \"paw\",\n    \"peace\",\n    \"peach\",\n    \"peanut\",\n    \"peanuts\",\n    \"peapod\",\n    \"pear\",\n    \"pedestal\",\n    \"pegasus\",\n    \"pen-circle\",\n    \"pen-clip-slash\",\n    \"pen-clip\",\n    \"pen-fancy-slash\",\n    \"pen-fancy\",\n    \"pen-field\",\n    \"pen-line\",\n    \"pen-nib-slash\",\n    \"pen-nib\",\n    \"pen-paintbrush\",\n    \"pen-ruler\",\n    \"pen-slash\",\n    \"pen-swirl\",\n    \"pen-to-square\",\n    \"pen\",\n    \"pencil-mechanical\",\n    \"pencil-slash\",\n    \"pencil\",\n    \"people-arrows\",\n    \"people-carry-box\",\n    \"people-dress-simple\",\n    \"people-dress\",\n    \"people-group\",\n    \"people-line\",\n    \"people-pants-simple\",\n    \"people-pants\",\n    \"people-pulling\",\n    \"people-robbery\",\n    \"people-roof\",\n    \"people-simple\",\n    \"people\",\n    \"pepper-hot\",\n    \"pepper\",\n    \"percent\",\n    \"period\",\n    \"person-arrow-down-to-line\",\n    \"person-arrow-up-from-line\",\n    \"person-biking-mountain\",\n    \"person-biking\",\n    \"person-booth\",\n    \"person-breastfeeding\",\n    \"person-burst\",\n    \"person-cane\",\n    \"person-carry-box\",\n    \"person-chalkboard\",\n    \"person-circle-check\",\n    \"person-circle-exclamation\",\n    \"person-circle-minus\",\n    \"person-circle-plus\",\n    \"person-circle-question\",\n    \"person-circle-xmark\",\n    \"person-digging\",\n    \"person-dolly-empty\",\n    \"person-dolly\",\n    \"person-dots-from-line\",\n    \"person-dress-burst\",\n    \"person-dress-fairy\",\n    \"person-dress-simple\",\n    \"person-dress\",\n    \"person-drowning\",\n    \"person-fairy\",\n    \"person-falling-burst\",\n    \"person-falling\",\n    \"person-from-portal\",\n    \"person-half-dress\",\n    \"person-harassing\",\n    \"person-hiking\",\n    \"person-military-pointing\",\n    \"person-military-rifle\",\n    \"person-military-to-person\",\n    \"person-pinball\",\n    \"person-praying\",\n    \"person-pregnant\",\n    \"person-rays\",\n    \"person-rifle\",\n    \"person-running-fast\",\n    \"person-running\",\n    \"person-seat-reclined\",\n    \"person-seat\",\n    \"person-shelter\",\n    \"person-sign\",\n    \"person-simple\",\n    \"person-skating\",\n    \"person-ski-jumping\",\n    \"person-ski-lift\",\n    \"person-skiing-nordic\",\n    \"person-skiing\",\n    \"person-sledding\",\n    \"person-snowboarding\",\n    \"person-snowmobiling\",\n    \"person-swimming\",\n    \"person-through-window\",\n    \"person-to-door\",\n    \"person-to-portal\",\n    \"person-walking-arrow-loop-left\",\n    \"person-walking-arrow-right\",\n    \"person-walking-dashed-line-arrow-right\",\n    \"person-walking-luggage\",\n    \"person-walking-with-cane\",\n    \"person-walking\",\n    \"person\",\n    \"peseta-sign\",\n    \"peso-sign\",\n    \"phone-arrow-down-left\",\n    \"phone-arrow-right\",\n    \"phone-arrow-up-right\",\n    \"phone-flip\",\n    \"phone-hangup\",\n    \"phone-intercom\",\n    \"phone-missed\",\n    \"phone-office\",\n    \"phone-plus\",\n    \"phone-rotary\",\n    \"phone-slash\",\n    \"phone-volume\",\n    \"phone-xmark\",\n    \"phone\",\n    \"photo-film-music\",\n    \"photo-film\",\n    \"pi\",\n    \"piano-keyboard\",\n    \"piano\",\n    \"pickaxe\",\n    \"pickleball\",\n    \"pie\",\n    \"pig\",\n    \"piggy-bank\",\n    \"pills\",\n    \"pinata\",\n    \"pinball\",\n    \"pineapple\",\n    \"pipe-circle-check\",\n    \"pipe-collar\",\n    \"pipe-section\",\n    \"pipe-smoking\",\n    \"pipe-valve\",\n    \"pipe\",\n    \"pizza-slice\",\n    \"pizza\",\n    \"place-of-worship\",\n    \"plane-arrival\",\n    \"plane-circle-check\",\n    \"plane-circle-exclamation\",\n    \"plane-circle-xmark\",\n    \"plane-departure\",\n    \"plane-engines\",\n    \"plane-lock\",\n    \"plane-prop\",\n    \"plane-slash\",\n    \"plane-tail\",\n    \"plane-up-slash\",\n    \"plane-up\",\n    \"plane\",\n    \"planet-moon\",\n    \"planet-ringed\",\n    \"plant-wilt\",\n    \"plate-utensils\",\n    \"plate-wheat\",\n    \"play-pause\",\n    \"play\",\n    \"plug-circle-bolt\",\n    \"plug-circle-check\",\n    \"plug-circle-exclamation\",\n    \"plug-circle-minus\",\n    \"plug-circle-plus\",\n    \"plug-circle-xmark\",\n    \"plug\",\n    \"plus-large\",\n    \"plus-minus\",\n    \"plus\",\n    \"podcast\",\n    \"podium-star\",\n    \"podium\",\n    \"police-box\",\n    \"poll-people\",\n    \"pompebled\",\n    \"poo-storm\",\n    \"poo\",\n    \"pool-8-ball\",\n    \"poop\",\n    \"popcorn\",\n    \"popsicle\",\n    \"pot-food\",\n    \"potato\",\n    \"power-off\",\n    \"prescription-bottle-medical\",\n    \"prescription-bottle-pill\",\n    \"prescription-bottle\",\n    \"prescription\",\n    \"presentation-screen\",\n    \"pretzel\",\n    \"print-magnifying-glass\",\n    \"print-slash\",\n    \"print\",\n    \"projector\",\n    \"pump-medical\",\n    \"pump-soap\",\n    \"pump\",\n    \"pumpkin\",\n    \"puzzle-piece-simple\",\n    \"puzzle-piece\",\n    \"puzzle\",\n    \"q\",\n    \"qrcode\",\n    \"question\",\n    \"quote-left\",\n    \"quote-right\",\n    \"quotes\",\n    \"r\",\n    \"rabbit-running\",\n    \"rabbit\",\n    \"raccoon\",\n    \"racquet\",\n    \"radar\",\n    \"radiation\",\n    \"radio-tuner\",\n    \"radio\",\n    \"rainbow\",\n    \"raindrops\",\n    \"ram\",\n    \"ramp-loading\",\n    \"ranking-star\",\n    \"raygun\",\n    \"receipt\",\n    \"record-vinyl\",\n    \"rectangle-ad\",\n    \"rectangle-barcode\",\n    \"rectangle-code\",\n    \"rectangle-history-circle-plus\",\n    \"rectangle-history-circle-user\",\n    \"rectangle-history\",\n    \"rectangle-list\",\n    \"rectangle-pro\",\n    \"rectangle-terminal\",\n    \"rectangle-vertical-history\",\n    \"rectangle-vertical\",\n    \"rectangle-wide\",\n    \"rectangle-xmark\",\n    \"rectangle\",\n    \"rectangles-mixed\",\n    \"recycle\",\n    \"reel\",\n    \"reflect-both\",\n    \"reflect-horizontal\",\n    \"reflect-vertical\",\n    \"refrigerator\",\n    \"registered\",\n    \"repeat-1\",\n    \"repeat\",\n    \"reply-all\",\n    \"reply-clock\",\n    \"reply\",\n    \"republican\",\n    \"restroom-simple\",\n    \"restroom\",\n    \"retweet\",\n    \"rhombus\",\n    \"ribbon\",\n    \"right-from-bracket\",\n    \"right-from-line\",\n    \"right-left-large\",\n    \"right-left\",\n    \"right-long-to-line\",\n    \"right-long\",\n    \"right-to-bracket\",\n    \"right-to-line\",\n    \"right\",\n    \"ring-diamond\",\n    \"ring\",\n    \"rings-wedding\",\n    \"road-barrier\",\n    \"road-bridge\",\n    \"road-circle-check\",\n    \"road-circle-exclamation\",\n    \"road-circle-xmark\",\n    \"road-lock\",\n    \"road-spikes\",\n    \"road\",\n    \"robot-astromech\",\n    \"robot\",\n    \"rocket-launch\",\n    \"rocket\",\n    \"roller-coaster\",\n    \"rotate-exclamation\",\n    \"rotate-left\",\n    \"rotate-reverse\",\n    \"rotate-right\",\n    \"rotate\",\n    \"route-highway\",\n    \"route-interstate\",\n    \"route\",\n    \"router\",\n    \"rss\",\n    \"ruble-sign\",\n    \"rug\",\n    \"rugby-ball\",\n    \"ruler-combined\",\n    \"ruler-horizontal\",\n    \"ruler-triangle\",\n    \"ruler-vertical\",\n    \"ruler\",\n    \"rupee-sign\",\n    \"rupiah-sign\",\n    \"rv\",\n    \"s\",\n    \"sack-dollar\",\n    \"sack-xmark\",\n    \"sack\",\n    \"sailboat\",\n    \"salad\",\n    \"salt-shaker\",\n    \"sandwich\",\n    \"satellite-dish\",\n    \"satellite\",\n    \"sausage\",\n    \"saxophone-fire\",\n    \"saxophone\",\n    \"scale-balanced\",\n    \"scale-unbalanced-flip\",\n    \"scale-unbalanced\",\n    \"scalpel-line-dashed\",\n    \"scalpel\",\n    \"scanner-gun\",\n    \"scanner-image\",\n    \"scanner-keyboard\",\n    \"scanner-touchscreen\",\n    \"scarecrow\",\n    \"scarf\",\n    \"school-circle-check\",\n    \"school-circle-exclamation\",\n    \"school-circle-xmark\",\n    \"school-flag\",\n    \"school-lock\",\n    \"school\",\n    \"scissors\",\n    \"screen-users\",\n    \"screencast\",\n    \"screwdriver-wrench\",\n    \"screwdriver\",\n    \"scribble\",\n    \"scroll-old\",\n    \"scroll-torah\",\n    \"scroll\",\n    \"scrubber\",\n    \"scythe\",\n    \"sd-card\",\n    \"sd-cards\",\n    \"seal-exclamation\",\n    \"seal-question\",\n    \"seal\",\n    \"seat-airline\",\n    \"section\",\n    \"seedling\",\n    \"semicolon\",\n    \"send-back\",\n    \"send-backward\",\n    \"sensor-cloud\",\n    \"sensor-fire\",\n    \"sensor-on\",\n    \"sensor-triangle-exclamation\",\n    \"sensor\",\n    \"server\",\n    \"shapes\",\n    \"share-all\",\n    \"share-from-square\",\n    \"share-nodes\",\n    \"share\",\n    \"sheep\",\n    \"sheet-plastic\",\n    \"shekel-sign\",\n    \"shelves-empty\",\n    \"shelves\",\n    \"shield-cat\",\n    \"shield-check\",\n    \"shield-cross\",\n    \"shield-dog\",\n    \"shield-exclamation\",\n    \"shield-halved\",\n    \"shield-heart\",\n    \"shield-keyhole\",\n    \"shield-minus\",\n    \"shield-plus\",\n    \"shield-quartered\",\n    \"shield-slash\",\n    \"shield-virus\",\n    \"shield-xmark\",\n    \"shield\",\n    \"ship\",\n    \"shirt-long-sleeve\",\n    \"shirt-running\",\n    \"shirt-tank-top\",\n    \"shirt\",\n    \"shish-kebab\",\n    \"shoe-prints\",\n    \"shop-lock\",\n    \"shop-slash\",\n    \"shop\",\n    \"shovel-snow\",\n    \"shovel\",\n    \"shower-down\",\n    \"shower\",\n    \"shredder\",\n    \"shrimp\",\n    \"shuffle\",\n    \"shutters\",\n    \"shuttle-space\",\n    \"shuttlecock\",\n    \"sickle\",\n    \"sidebar-flip\",\n    \"sidebar\",\n    \"sigma\",\n    \"sign-hanging\",\n    \"sign-post\",\n    \"sign-posts-wrench\",\n    \"sign-posts\",\n    \"signal-bars-fair\",\n    \"signal-bars-good\",\n    \"signal-bars-slash\",\n    \"signal-bars-weak\",\n    \"signal-bars\",\n    \"signal-fair\",\n    \"signal-good\",\n    \"signal-slash\",\n    \"signal-stream-slash\",\n    \"signal-stream\",\n    \"signal-strong\",\n    \"signal-weak\",\n    \"signal\",\n    \"signature-lock\",\n    \"signature-slash\",\n    \"signature\",\n    \"signs-post\",\n    \"sim-card\",\n    \"sim-cards\",\n    \"sink\",\n    \"siren-on\",\n    \"siren\",\n    \"sitemap\",\n    \"skeleton-ribs\",\n    \"skeleton\",\n    \"ski-boot-ski\",\n    \"ski-boot\",\n    \"skull-cow\",\n    \"skull-crossbones\",\n    \"skull\",\n    \"slash-back\",\n    \"slash-forward\",\n    \"slash\",\n    \"sleigh\",\n    \"slider\",\n    \"sliders-simple\",\n    \"sliders-up\",\n    \"sliders\",\n    \"slot-machine\",\n    \"smog\",\n    \"smoke\",\n    \"smoking\",\n    \"snake\",\n    \"snooze\",\n    \"snow-blowing\",\n    \"snowflake-droplets\",\n    \"snowflake\",\n    \"snowflakes\",\n    \"snowman-head\",\n    \"snowman\",\n    \"snowplow\",\n    \"soap\",\n    \"socks\",\n    \"soft-serve\",\n    \"solar-panel\",\n    \"solar-system\",\n    \"sort-down\",\n    \"sort-up\",\n    \"sort\",\n    \"spa\",\n    \"space-station-moon-construction\",\n    \"space-station-moon\",\n    \"spade\",\n    \"spaghetti-monster-flying\",\n    \"sparkle\",\n    \"sparkles\",\n    \"speaker\",\n    \"speakers\",\n    \"spell-check\",\n    \"spider-black-widow\",\n    \"spider-web\",\n    \"spider\",\n    \"spinner-scale\",\n    \"spinner-third\",\n    \"spinner\",\n    \"split\",\n    \"splotch\",\n    \"spoon\",\n    \"sportsball\",\n    \"spray-can-sparkles\",\n    \"spray-can\",\n    \"sprinkler-ceiling\",\n    \"sprinkler\",\n    \"square-0\",\n    \"square-1\",\n    \"square-2\",\n    \"square-3\",\n    \"square-4\",\n    \"square-5\",\n    \"square-6\",\n    \"square-7\",\n    \"square-8\",\n    \"square-9\",\n    \"square-a-lock\",\n    \"square-a\",\n    \"square-ampersand\",\n    \"square-arrow-down-left\",\n    \"square-arrow-down-right\",\n    \"square-arrow-down\",\n    \"square-arrow-left\",\n    \"square-arrow-right\",\n    \"square-arrow-up-left\",\n    \"square-arrow-up-right\",\n    \"square-arrow-up\",\n    \"square-b\",\n    \"square-binary\",\n    \"square-bolt\",\n    \"square-c\",\n    \"square-caret-down\",\n    \"square-caret-left\",\n    \"square-caret-right\",\n    \"square-caret-up\",\n    \"square-check\",\n    \"square-chevron-down\",\n    \"square-chevron-left\",\n    \"square-chevron-right\",\n    \"square-chevron-up\",\n    \"square-code\",\n    \"square-d\",\n    \"square-dashed-circle-plus\",\n    \"square-dashed\",\n    \"square-divide\",\n    \"square-dollar\",\n    \"square-down-left\",\n    \"square-down-right\",\n    \"square-down\",\n    \"square-e\",\n    \"square-ellipsis-vertical\",\n    \"square-ellipsis\",\n    \"square-envelope\",\n    \"square-exclamation\",\n    \"square-f\",\n    \"square-fragile\",\n    \"square-full\",\n    \"square-g\",\n    \"square-h\",\n    \"square-heart\",\n    \"square-i\",\n    \"square-info\",\n    \"square-j\",\n    \"square-k\",\n    \"square-kanban\",\n    \"square-l\",\n    \"square-left\",\n    \"square-list\",\n    \"square-m\",\n    \"square-minus\",\n    \"square-n\",\n    \"square-nfi\",\n    \"square-o\",\n    \"square-p\",\n    \"square-parking-slash\",\n    \"square-parking\",\n    \"square-pen\",\n    \"square-person-confined\",\n    \"square-phone-flip\",\n    \"square-phone-hangup\",\n    \"square-phone\",\n    \"square-plus\",\n    \"square-poll-horizontal\",\n    \"square-poll-vertical\",\n    \"square-q\",\n    \"square-quarters\",\n    \"square-question\",\n    \"square-quote\",\n    \"square-r\",\n    \"square-right\",\n    \"square-ring\",\n    \"square-root-variable\",\n    \"square-root\",\n    \"square-rss\",\n    \"square-s\",\n    \"square-share-nodes\",\n    \"square-sliders-vertical\",\n    \"square-sliders\",\n    \"square-small\",\n    \"square-star\",\n    \"square-t\",\n    \"square-terminal\",\n    \"square-this-way-up\",\n    \"square-u\",\n    \"square-up-left\",\n    \"square-up-right\",\n    \"square-up\",\n    \"square-user\",\n    \"square-v\",\n    \"square-virus\",\n    \"square-w\",\n    \"square-x\",\n    \"square-xmark\",\n    \"square-y\",\n    \"square-z\",\n    \"square\",\n    \"squid\",\n    \"squirrel\",\n    \"staff-snake\",\n    \"staff\",\n    \"stairs\",\n    \"stamp\",\n    \"standard-definition\",\n    \"stapler\",\n    \"star-and-crescent\",\n    \"star-christmas\",\n    \"star-exclamation\",\n    \"star-half-stroke\",\n    \"star-half\",\n    \"star-of-david\",\n    \"star-of-life\",\n    \"star-sharp-half-stroke\",\n    \"star-sharp-half\",\n    \"star-sharp\",\n    \"star-shooting\",\n    \"star\",\n    \"starfighter-twin-ion-engine-advanced\",\n    \"starfighter-twin-ion-engine\",\n    \"starfighter\",\n    \"stars\",\n    \"starship-freighter\",\n    \"starship\",\n    \"steak\",\n    \"steering-wheel\",\n    \"sterling-sign\",\n    \"stethoscope\",\n    \"stocking\",\n    \"stomach\",\n    \"stop\",\n    \"stopwatch-20\",\n    \"stopwatch\",\n    \"store-lock\",\n    \"store-slash\",\n    \"store\",\n    \"strawberry\",\n    \"street-view\",\n    \"stretcher\",\n    \"strikethrough\",\n    \"stroopwafel\",\n    \"subscript\",\n    \"subtitles-slash\",\n    \"subtitles\",\n    \"suitcase-medical\",\n    \"suitcase-rolling\",\n    \"suitcase\",\n    \"sun-bright\",\n    \"sun-cloud\",\n    \"sun-dust\",\n    \"sun-haze\",\n    \"sun-plant-wilt\",\n    \"sun\",\n    \"sunglasses\",\n    \"sunrise\",\n    \"sunset\",\n    \"superscript\",\n    \"sushi-roll\",\n    \"sushi\",\n    \"swap-arrows\",\n    \"swap\",\n    \"swatchbook\",\n    \"sword-laser-alt\",\n    \"sword-laser\",\n    \"sword\",\n    \"swords-laser\",\n    \"swords\",\n    \"symbols\",\n    \"synagogue\",\n    \"syringe\",\n    \"t-rex\",\n    \"t\",\n    \"table-cells-column-lock\",\n    \"table-cells-column-unlock\",\n    \"table-cells-large\",\n    \"table-cells-lock\",\n    \"table-cells-row-lock\",\n    \"table-cells-row-unlock\",\n    \"table-cells-unlock\",\n    \"table-cells\",\n    \"table-columns\",\n    \"table-layout\",\n    \"table-list\",\n    \"table-picnic\",\n    \"table-pivot\",\n    \"table-rows\",\n    \"table-tennis-paddle-ball\",\n    \"table-tree\",\n    \"table\",\n    \"tablet-button\",\n    \"tablet-rugged\",\n    \"tablet-screen-button\",\n    \"tablet-screen\",\n    \"tablet\",\n    \"tablets\",\n    \"tachograph-digital\",\n    \"taco\",\n    \"tag\",\n    \"tags\",\n    \"tally-1\",\n    \"tally-2\",\n    \"tally-3\",\n    \"tally-4\",\n    \"tally\",\n    \"tamale\",\n    \"tank-water\",\n    \"tape\",\n    \"tarp-droplet\",\n    \"tarp\",\n    \"taxi-bus\",\n    \"taxi\",\n    \"teddy-bear\",\n    \"teeth-open\",\n    \"teeth\",\n    \"telescope\",\n    \"temperature-arrow-down\",\n    \"temperature-arrow-up\",\n    \"temperature-empty\",\n    \"temperature-full\",\n    \"temperature-half\",\n    \"temperature-high\",\n    \"temperature-list\",\n    \"temperature-low\",\n    \"temperature-quarter\",\n    \"temperature-snow\",\n    \"temperature-sun\",\n    \"temperature-three-quarters\",\n    \"tenge-sign\",\n    \"tennis-ball\",\n    \"tent-arrow-down-to-line\",\n    \"tent-arrow-left-right\",\n    \"tent-arrow-turn-left\",\n    \"tent-arrows-down\",\n    \"tent-double-peak\",\n    \"tent\",\n    \"tents\",\n    \"terminal\",\n    \"text-height\",\n    \"text-size\",\n    \"text-slash\",\n    \"text-width\",\n    \"text\",\n    \"thermometer\",\n    \"theta\",\n    \"thought-bubble\",\n    \"thumbs-down\",\n    \"thumbs-up\",\n    \"thumbtack-slash\",\n    \"thumbtack\",\n    \"tick\",\n    \"ticket-airline\",\n    \"ticket-perforated\",\n    \"ticket-simple\",\n    \"ticket\",\n    \"tickets-airline\",\n    \"tickets-perforated\",\n    \"tickets-simple\",\n    \"tickets\",\n    \"tilde\",\n    \"timeline-arrow\",\n    \"timeline\",\n    \"timer\",\n    \"tire-flat\",\n    \"tire-pressure-warning\",\n    \"tire-rugged\",\n    \"tire\",\n    \"toggle-large-off\",\n    \"toggle-large-on\",\n    \"toggle-off\",\n    \"toggle-on\",\n    \"toilet-paper-blank-under\",\n    \"toilet-paper-blank\",\n    \"toilet-paper-check\",\n    \"toilet-paper-slash\",\n    \"toilet-paper-under-slash\",\n    \"toilet-paper-under\",\n    \"toilet-paper-xmark\",\n    \"toilet-paper\",\n    \"toilet-portable\",\n    \"toilet\",\n    \"toilets-portable\",\n    \"tomato\",\n    \"tombstone-blank\",\n    \"tombstone\",\n    \"toolbox\",\n    \"tooth\",\n    \"toothbrush\",\n    \"torii-gate\",\n    \"tornado\",\n    \"tower-broadcast\",\n    \"tower-cell\",\n    \"tower-control\",\n    \"tower-observation\",\n    \"tractor\",\n    \"trademark\",\n    \"traffic-cone\",\n    \"traffic-light-go\",\n    \"traffic-light-slow\",\n    \"traffic-light-stop\",\n    \"traffic-light\",\n    \"trailer\",\n    \"train-subway-tunnel\",\n    \"train-subway\",\n    \"train-track\",\n    \"train-tram\",\n    \"train-tunnel\",\n    \"train\",\n    \"transformer-bolt\",\n    \"transgender\",\n    \"transporter-1\",\n    \"transporter-2\",\n    \"transporter-3\",\n    \"transporter-4\",\n    \"transporter-5\",\n    \"transporter-6\",\n    \"transporter-7\",\n    \"transporter-empty\",\n    \"transporter\",\n    \"trash-arrow-up\",\n    \"trash-can-arrow-up\",\n    \"trash-can-check\",\n    \"trash-can-clock\",\n    \"trash-can-list\",\n    \"trash-can-plus\",\n    \"trash-can-slash\",\n    \"trash-can-undo\",\n    \"trash-can-xmark\",\n    \"trash-can\",\n    \"trash-check\",\n    \"trash-clock\",\n    \"trash-list\",\n    \"trash-plus\",\n    \"trash-slash\",\n    \"trash-undo\",\n    \"trash-xmark\",\n    \"trash\",\n    \"treasure-chest\",\n    \"tree-christmas\",\n    \"tree-city\",\n    \"tree-deciduous\",\n    \"tree-decorated\",\n    \"tree-large\",\n    \"tree-palm\",\n    \"tree\",\n    \"trees\",\n    \"triangle-exclamation\",\n    \"triangle-instrument\",\n    \"triangle-person-digging\",\n    \"triangle\",\n    \"tricycle-adult\",\n    \"tricycle\",\n    \"trillium\",\n    \"trophy-star\",\n    \"trophy\",\n    \"trowel-bricks\",\n    \"trowel\",\n    \"truck-arrow-right\",\n    \"truck-bolt\",\n    \"truck-clock\",\n    \"truck-container-empty\",\n    \"truck-container\",\n    \"truck-droplet\",\n    \"truck-fast\",\n    \"truck-field-un\",\n    \"truck-field\",\n    \"truck-fire\",\n    \"truck-flatbed\",\n    \"truck-front\",\n    \"truck-ladder\",\n    \"truck-medical\",\n    \"truck-monster\",\n    \"truck-moving\",\n    \"truck-pickup\",\n    \"truck-plane\",\n    \"truck-plow\",\n    \"truck-ramp-box\",\n    \"truck-ramp-couch\",\n    \"truck-ramp\",\n    \"truck-tow\",\n    \"truck-utensils\",\n    \"truck\",\n    \"trumpet\",\n    \"tty-answer\",\n    \"tty\",\n    \"tugrik-sign\",\n    \"turkey\",\n    \"turkish-lira-sign\",\n    \"turn-down-left\",\n    \"turn-down-right\",\n    \"turn-down\",\n    \"turn-left-down\",\n    \"turn-left-up\",\n    \"turn-left\",\n    \"turn-right\",\n    \"turn-up\",\n    \"turntable\",\n    \"turtle\",\n    \"tv-music\",\n    \"tv-retro\",\n    \"tv\",\n    \"typewriter\",\n    \"u\",\n    \"ufo-beam\",\n    \"ufo\",\n    \"umbrella-beach\",\n    \"umbrella-simple\",\n    \"umbrella\",\n    \"underline\",\n    \"unicorn\",\n    \"uniform-martial-arts\",\n    \"union\",\n    \"universal-access\",\n    \"unlock-keyhole\",\n    \"unlock\",\n    \"up-down-left-right\",\n    \"up-down\",\n    \"up-from-bracket\",\n    \"up-from-dotted-line\",\n    \"up-from-line\",\n    \"up-left\",\n    \"up-long\",\n    \"up-right-and-down-left-from-center\",\n    \"up-right-from-square\",\n    \"up-right\",\n    \"up-to-bracket\",\n    \"up-to-dotted-line\",\n    \"up-to-line\",\n    \"up\",\n    \"upload\",\n    \"usb-drive\",\n    \"user-alien\",\n    \"user-astronaut\",\n    \"user-beard-bolt\",\n    \"user-bounty-hunter\",\n    \"user-check\",\n    \"user-chef\",\n    \"user-clock\",\n    \"user-cowboy\",\n    \"user-crown\",\n    \"user-doctor-hair-long\",\n    \"user-doctor-hair\",\n    \"user-doctor-message\",\n    \"user-doctor\",\n    \"user-gear\",\n    \"user-graduate\",\n    \"user-group-crown\",\n    \"user-group-simple\",\n    \"user-group\",\n    \"user-hair-buns\",\n    \"user-hair-long\",\n    \"user-hair-mullet\",\n    \"user-hair\",\n    \"user-headset\",\n    \"user-helmet-safety\",\n    \"user-hoodie\",\n    \"user-injured\",\n    \"user-large-slash\",\n    \"user-large\",\n    \"user-lock\",\n    \"user-magnifying-glass\",\n    \"user-minus\",\n    \"user-music\",\n    \"user-ninja\",\n    \"user-nurse-hair-long\",\n    \"user-nurse-hair\",\n    \"user-nurse\",\n    \"user-pen\",\n    \"user-pilot-tie\",\n    \"user-pilot\",\n    \"user-plus\",\n    \"user-police-tie\",\n    \"user-police\",\n    \"user-robot-xmarks\",\n    \"user-robot\",\n    \"user-secret\",\n    \"user-shakespeare\",\n    \"user-shield\",\n    \"user-slash\",\n    \"user-tag\",\n    \"user-tie-hair-long\",\n    \"user-tie-hair\",\n    \"user-tie\",\n    \"user-unlock\",\n    \"user-visor\",\n    \"user-vneck-hair-long\",\n    \"user-vneck-hair\",\n    \"user-vneck\",\n    \"user-xmark\",\n    \"user\",\n    \"users-between-lines\",\n    \"users-gear\",\n    \"users-line\",\n    \"users-medical\",\n    \"users-rays\",\n    \"users-rectangle\",\n    \"users-slash\",\n    \"users-viewfinder\",\n    \"users\",\n    \"utensils-slash\",\n    \"utensils\",\n    \"utility-pole-double\",\n    \"utility-pole\",\n    \"v\",\n    \"vacuum-robot\",\n    \"vacuum\",\n    \"value-absolute\",\n    \"van-shuttle\",\n    \"vault\",\n    \"vector-circle\",\n    \"vector-polygon\",\n    \"vector-square\",\n    \"vent-damper\",\n    \"venus-double\",\n    \"venus-mars\",\n    \"venus\",\n    \"vest-patches\",\n    \"vest\",\n    \"vial-circle-check\",\n    \"vial-virus\",\n    \"vial\",\n    \"vials\",\n    \"video-arrow-down-left\",\n    \"video-arrow-up-right\",\n    \"video-plus\",\n    \"video-slash\",\n    \"video\",\n    \"vihara\",\n    \"violin\",\n    \"virus-covid-slash\",\n    \"virus-covid\",\n    \"virus-slash\",\n    \"virus\",\n    \"viruses\",\n    \"voicemail\",\n    \"volcano\",\n    \"volleyball\",\n    \"volume-high\",\n    \"volume-low\",\n    \"volume-off\",\n    \"volume-slash\",\n    \"volume-xmark\",\n    \"volume\",\n    \"vr-cardboard\",\n    \"w\",\n    \"waffle\",\n    \"wagon-covered\",\n    \"walker\",\n    \"walkie-talkie\",\n    \"wallet\",\n    \"wand-magic-sparkles\",\n    \"wand-magic\",\n    \"wand-sparkles\",\n    \"wand\",\n    \"warehouse-full\",\n    \"warehouse\",\n    \"washing-machine\",\n    \"watch-apple\",\n    \"watch-calculator\",\n    \"watch-fitness\",\n    \"watch-smart\",\n    \"watch\",\n    \"water-arrow-down\",\n    \"water-arrow-up\",\n    \"water-ladder\",\n    \"water\",\n    \"watermelon-slice\",\n    \"wave-pulse\",\n    \"wave-sine\",\n    \"wave-square\",\n    \"wave-triangle\",\n    \"wave\",\n    \"waveform-lines\",\n    \"waveform\",\n    \"waves-sine\",\n    \"web-awesome\",\n    \"webhook\",\n    \"weight-hanging\",\n    \"weight-scale\",\n    \"whale\",\n    \"wheat-awn-circle-exclamation\",\n    \"wheat-awn-slash\",\n    \"wheat-awn\",\n    \"wheat-slash\",\n    \"wheat\",\n    \"wheelchair-move\",\n    \"wheelchair\",\n    \"whiskey-glass-ice\",\n    \"whiskey-glass\",\n    \"whistle\",\n    \"wifi-exclamation\",\n    \"wifi-fair\",\n    \"wifi-slash\",\n    \"wifi-weak\",\n    \"wifi\",\n    \"wind-turbine\",\n    \"wind-warning\",\n    \"wind\",\n    \"window-flip\",\n    \"window-frame-open\",\n    \"window-frame\",\n    \"window-maximize\",\n    \"window-minimize\",\n    \"window-restore\",\n    \"window\",\n    \"windsock\",\n    \"wine-bottle\",\n    \"wine-glass-crack\",\n    \"wine-glass-empty\",\n    \"wine-glass\",\n    \"won-sign\",\n    \"worm\",\n    \"wreath-laurel\",\n    \"wreath\",\n    \"wrench-simple\",\n    \"wrench\",\n    \"x-ray\",\n    \"x\",\n    \"xmark-large\",\n    \"xmark-to-slot\",\n    \"xmark\",\n    \"xmarks-lines\",\n    \"y\",\n    \"yen-sign\",\n    \"yin-yang\",\n    \"z\"\n  ],\n  \"sharpThin\": [\n    \"0\",\n    \"00\",\n    \"1\",\n    \"2\",\n    \"3\",\n    \"360-degrees\",\n    \"4\",\n    \"5\",\n    \"6\",\n    \"7\",\n    \"8\",\n    \"9\",\n    \"a\",\n    \"abacus\",\n    \"accent-grave\",\n    \"acorn\",\n    \"address-book\",\n    \"address-card\",\n    \"air-conditioner\",\n    \"airplay\",\n    \"alarm-clock\",\n    \"alarm-exclamation\",\n    \"alarm-plus\",\n    \"alarm-snooze\",\n    \"album-circle-plus\",\n    \"album-circle-user\",\n    \"album-collection-circle-plus\",\n    \"album-collection-circle-user\",\n    \"album-collection\",\n    \"album\",\n    \"alicorn\",\n    \"alien-8bit\",\n    \"alien\",\n    \"align-center\",\n    \"align-justify\",\n    \"align-left\",\n    \"align-right\",\n    \"align-slash\",\n    \"alt\",\n    \"amp-guitar\",\n    \"ampersand\",\n    \"anchor-circle-check\",\n    \"anchor-circle-exclamation\",\n    \"anchor-circle-xmark\",\n    \"anchor-lock\",\n    \"anchor\",\n    \"angel\",\n    \"angle-90\",\n    \"angle-down\",\n    \"angle-left\",\n    \"angle-right\",\n    \"angle-up\",\n    \"angle\",\n    \"angles-down\",\n    \"angles-left\",\n    \"angles-right\",\n    \"angles-up-down\",\n    \"angles-up\",\n    \"ankh\",\n    \"ant\",\n    \"apartment\",\n    \"aperture\",\n    \"apostrophe\",\n    \"apple-core\",\n    \"apple-whole\",\n    \"archway\",\n    \"arrow-down-1-9\",\n    \"arrow-down-9-1\",\n    \"arrow-down-a-z\",\n    \"arrow-down-arrow-up\",\n    \"arrow-down-big-small\",\n    \"arrow-down-from-arc\",\n    \"arrow-down-from-bracket\",\n    \"arrow-down-from-dotted-line\",\n    \"arrow-down-from-line\",\n    \"arrow-down-left-and-arrow-up-right-to-center\",\n    \"arrow-down-left\",\n    \"arrow-down-long\",\n    \"arrow-down-right\",\n    \"arrow-down-short-wide\",\n    \"arrow-down-small-big\",\n    \"arrow-down-square-triangle\",\n    \"arrow-down-to-arc\",\n    \"arrow-down-to-bracket\",\n    \"arrow-down-to-dotted-line\",\n    \"arrow-down-to-line\",\n    \"arrow-down-to-square\",\n    \"arrow-down-triangle-square\",\n    \"arrow-down-up-across-line\",\n    \"arrow-down-up-lock\",\n    \"arrow-down-wide-short\",\n    \"arrow-down-z-a\",\n    \"arrow-down\",\n    \"arrow-left-from-arc\",\n    \"arrow-left-from-bracket\",\n    \"arrow-left-from-line\",\n    \"arrow-left-long-to-line\",\n    \"arrow-left-long\",\n    \"arrow-left-to-arc\",\n    \"arrow-left-to-bracket\",\n    \"arrow-left-to-line\",\n    \"arrow-left\",\n    \"arrow-pointer\",\n    \"arrow-progress\",\n    \"arrow-right-arrow-left\",\n    \"arrow-right-from-arc\",\n    \"arrow-right-from-bracket\",\n    \"arrow-right-from-line\",\n    \"arrow-right-long-to-line\",\n    \"arrow-right-long\",\n    \"arrow-right-to-arc\",\n    \"arrow-right-to-bracket\",\n    \"arrow-right-to-city\",\n    \"arrow-right-to-line\",\n    \"arrow-right\",\n    \"arrow-rotate-left\",\n    \"arrow-rotate-right\",\n    \"arrow-trend-down\",\n    \"arrow-trend-up\",\n    \"arrow-turn-down-left\",\n    \"arrow-turn-down-right\",\n    \"arrow-turn-down\",\n    \"arrow-turn-left-down\",\n    \"arrow-turn-left-up\",\n    \"arrow-turn-left\",\n    \"arrow-turn-right\",\n    \"arrow-turn-up\",\n    \"arrow-up-1-9\",\n    \"arrow-up-9-1\",\n    \"arrow-up-a-z\",\n    \"arrow-up-arrow-down\",\n    \"arrow-up-big-small\",\n    \"arrow-up-from-arc\",\n    \"arrow-up-from-bracket\",\n    \"arrow-up-from-dotted-line\",\n    \"arrow-up-from-ground-water\",\n    \"arrow-up-from-line\",\n    \"arrow-up-from-square\",\n    \"arrow-up-from-water-pump\",\n    \"arrow-up-left-from-circle\",\n    \"arrow-up-left\",\n    \"arrow-up-long\",\n    \"arrow-up-right-and-arrow-down-left-from-center\",\n    \"arrow-up-right-dots\",\n    \"arrow-up-right-from-square\",\n    \"arrow-up-right\",\n    \"arrow-up-short-wide\",\n    \"arrow-up-small-big\",\n    \"arrow-up-square-triangle\",\n    \"arrow-up-to-arc\",\n    \"arrow-up-to-bracket\",\n    \"arrow-up-to-dotted-line\",\n    \"arrow-up-to-line\",\n    \"arrow-up-triangle-square\",\n    \"arrow-up-wide-short\",\n    \"arrow-up-z-a\",\n    \"arrow-up\",\n    \"arrows-cross\",\n    \"arrows-down-to-line\",\n    \"arrows-down-to-people\",\n    \"arrows-from-dotted-line\",\n    \"arrows-from-line\",\n    \"arrows-left-right-to-line\",\n    \"arrows-left-right\",\n    \"arrows-maximize\",\n    \"arrows-minimize\",\n    \"arrows-repeat-1\",\n    \"arrows-repeat\",\n    \"arrows-retweet\",\n    \"arrows-rotate-reverse\",\n    \"arrows-rotate\",\n    \"arrows-spin\",\n    \"arrows-split-up-and-left\",\n    \"arrows-to-circle\",\n    \"arrows-to-dot\",\n    \"arrows-to-dotted-line\",\n    \"arrows-to-eye\",\n    \"arrows-to-line\",\n    \"arrows-turn-right\",\n    \"arrows-turn-to-dots\",\n    \"arrows-up-down-left-right\",\n    \"arrows-up-down\",\n    \"arrows-up-to-line\",\n    \"asterisk\",\n    \"at\",\n    \"atom-simple\",\n    \"atom\",\n    \"audio-description-slash\",\n    \"audio-description\",\n    \"austral-sign\",\n    \"avocado\",\n    \"award-simple\",\n    \"award\",\n    \"axe-battle\",\n    \"axe\",\n    \"b\",\n    \"baby-carriage\",\n    \"baby\",\n    \"backpack\",\n    \"backward-fast\",\n    \"backward-step\",\n    \"backward\",\n    \"bacon\",\n    \"bacteria\",\n    \"bacterium\",\n    \"badge-check\",\n    \"badge-dollar\",\n    \"badge-percent\",\n    \"badge-sheriff\",\n    \"badge\",\n    \"badger-honey\",\n    \"badminton\",\n    \"bag-seedling\",\n    \"bag-shopping-minus\",\n    \"bag-shopping-plus\",\n    \"bag-shopping\",\n    \"bagel\",\n    \"bags-shopping\",\n    \"baguette\",\n    \"bahai\",\n    \"baht-sign\",\n    \"ball-pile\",\n    \"balloon\",\n    \"balloons\",\n    \"ballot-check\",\n    \"ballot\",\n    \"ban-bug\",\n    \"ban-parking\",\n    \"ban-smoking\",\n    \"ban\",\n    \"banana\",\n    \"bandage\",\n    \"bangladeshi-taka-sign\",\n    \"banjo\",\n    \"barcode-read\",\n    \"barcode-scan\",\n    \"barcode\",\n    \"bars-filter\",\n    \"bars-progress\",\n    \"bars-sort\",\n    \"bars-staggered\",\n    \"bars\",\n    \"baseball-bat-ball\",\n    \"baseball\",\n    \"basket-shopping-minus\",\n    \"basket-shopping-plus\",\n    \"basket-shopping-simple\",\n    \"basket-shopping\",\n    \"basketball-hoop\",\n    \"basketball\",\n    \"bat\",\n    \"bath\",\n    \"battery-bolt\",\n    \"battery-empty\",\n    \"battery-exclamation\",\n    \"battery-full\",\n    \"battery-half\",\n    \"battery-low\",\n    \"battery-quarter\",\n    \"battery-slash\",\n    \"battery-three-quarters\",\n    \"bed-bunk\",\n    \"bed-empty\",\n    \"bed-front\",\n    \"bed-pulse\",\n    \"bed\",\n    \"bee\",\n    \"beer-mug-empty\",\n    \"beer-mug\",\n    \"bell-concierge\",\n    \"bell-exclamation\",\n    \"bell-on\",\n    \"bell-plus\",\n    \"bell-ring\",\n    \"bell-school-slash\",\n    \"bell-school\",\n    \"bell-slash\",\n    \"bell\",\n    \"bells\",\n    \"bench-tree\",\n    \"bezier-curve\",\n    \"bicycle\",\n    \"billboard\",\n    \"bin-bottles-recycle\",\n    \"bin-bottles\",\n    \"bin-recycle\",\n    \"binary-circle-check\",\n    \"binary-lock\",\n    \"binary-slash\",\n    \"binary\",\n    \"binoculars\",\n    \"biohazard\",\n    \"bird\",\n    \"bitcoin-sign\",\n    \"blanket-fire\",\n    \"blanket\",\n    \"blender-phone\",\n    \"blender\",\n    \"blinds-open\",\n    \"blinds-raised\",\n    \"blinds\",\n    \"block-brick-fire\",\n    \"block-brick\",\n    \"block-question\",\n    \"block-quote\",\n    \"block\",\n    \"blog\",\n    \"blueberries\",\n    \"bluetooth\",\n    \"bold\",\n    \"bolt-auto\",\n    \"bolt-lightning\",\n    \"bolt-slash\",\n    \"bolt\",\n    \"bomb\",\n    \"bone-break\",\n    \"bone\",\n    \"bong\",\n    \"book-arrow-right\",\n    \"book-arrow-up\",\n    \"book-atlas\",\n    \"book-bible\",\n    \"book-blank\",\n    \"book-bookmark\",\n    \"book-circle-arrow-right\",\n    \"book-circle-arrow-up\",\n    \"book-copy\",\n    \"book-font\",\n    \"book-heart\",\n    \"book-journal-whills\",\n    \"book-medical\",\n    \"book-open-cover\",\n    \"book-open-reader\",\n    \"book-open\",\n    \"book-quran\",\n    \"book-section\",\n    \"book-skull\",\n    \"book-sparkles\",\n    \"book-tanakh\",\n    \"book-user\",\n    \"book\",\n    \"bookmark-slash\",\n    \"bookmark\",\n    \"books-medical\",\n    \"books\",\n    \"boombox\",\n    \"boot-heeled\",\n    \"boot\",\n    \"booth-curtain\",\n    \"border-all\",\n    \"border-bottom-right\",\n    \"border-bottom\",\n    \"border-center-h\",\n    \"border-center-v\",\n    \"border-inner\",\n    \"border-left\",\n    \"border-none\",\n    \"border-outer\",\n    \"border-right\",\n    \"border-top-left\",\n    \"border-top\",\n    \"bore-hole\",\n    \"bottle-baby\",\n    \"bottle-droplet\",\n    \"bottle-water\",\n    \"bow-arrow\",\n    \"bowl-chopsticks-noodles\",\n    \"bowl-chopsticks\",\n    \"bowl-food\",\n    \"bowl-hot\",\n    \"bowl-rice\",\n    \"bowl-scoop\",\n    \"bowl-scoops\",\n    \"bowl-soft-serve\",\n    \"bowl-spoon\",\n    \"bowling-ball-pin\",\n    \"bowling-ball\",\n    \"bowling-pins\",\n    \"box-archive\",\n    \"box-ballot\",\n    \"box-check\",\n    \"box-circle-check\",\n    \"box-dollar\",\n    \"box-heart\",\n    \"box-open-full\",\n    \"box-open\",\n    \"box-taped\",\n    \"box-tissue\",\n    \"box\",\n    \"boxes-packing\",\n    \"boxes-stacked\",\n    \"boxing-glove\",\n    \"bracket-curly-right\",\n    \"bracket-curly\",\n    \"bracket-round-right\",\n    \"bracket-round\",\n    \"bracket-square-right\",\n    \"bracket-square\",\n    \"brackets-curly\",\n    \"brackets-round\",\n    \"brackets-square\",\n    \"braille\",\n    \"brain-arrow-curved-right\",\n    \"brain-circuit\",\n    \"brain\",\n    \"brake-warning\",\n    \"brazilian-real-sign\",\n    \"bread-loaf\",\n    \"bread-slice-butter\",\n    \"bread-slice\",\n    \"bridge-circle-check\",\n    \"bridge-circle-exclamation\",\n    \"bridge-circle-xmark\",\n    \"bridge-lock\",\n    \"bridge-suspension\",\n    \"bridge-water\",\n    \"bridge\",\n    \"briefcase-arrow-right\",\n    \"briefcase-blank\",\n    \"briefcase-medical\",\n    \"briefcase\",\n    \"brightness-low\",\n    \"brightness\",\n    \"bring-forward\",\n    \"bring-front\",\n    \"broccoli\",\n    \"broom-ball\",\n    \"broom-wide\",\n    \"broom\",\n    \"browser\",\n    \"browsers\",\n    \"brush\",\n    \"bucket\",\n    \"bug-slash\",\n    \"bug\",\n    \"bugs\",\n    \"building-circle-arrow-right\",\n    \"building-circle-check\",\n    \"building-circle-exclamation\",\n    \"building-circle-xmark\",\n    \"building-columns\",\n    \"building-flag\",\n    \"building-lock\",\n    \"building-magnifying-glass\",\n    \"building-memo\",\n    \"building-ngo\",\n    \"building-shield\",\n    \"building-un\",\n    \"building-user\",\n    \"building-wheat\",\n    \"building\",\n    \"buildings\",\n    \"bulldozer\",\n    \"bullhorn\",\n    \"bullseye-arrow\",\n    \"bullseye-pointer\",\n    \"bullseye\",\n    \"buoy-mooring\",\n    \"buoy\",\n    \"burger-cheese\",\n    \"burger-fries\",\n    \"burger-glass\",\n    \"burger-lettuce\",\n    \"burger-soda\",\n    \"burger\",\n    \"burrito\",\n    \"burst\",\n    \"bus-school\",\n    \"bus-simple\",\n    \"bus\",\n    \"business-time\",\n    \"butter\",\n    \"c\",\n    \"cabin\",\n    \"cabinet-filing\",\n    \"cable-car\",\n    \"cactus\",\n    \"caduceus\",\n    \"cake-candles\",\n    \"cake-slice\",\n    \"calculator-simple\",\n    \"calculator\",\n    \"calendar-arrow-down\",\n    \"calendar-arrow-up\",\n    \"calendar-check\",\n    \"calendar-circle-exclamation\",\n    \"calendar-circle-minus\",\n    \"calendar-circle-plus\",\n    \"calendar-circle-user\",\n    \"calendar-clock\",\n    \"calendar-day\",\n    \"calendar-days\",\n    \"calendar-exclamation\",\n    \"calendar-heart\",\n    \"calendar-image\",\n    \"calendar-lines-pen\",\n    \"calendar-lines\",\n    \"calendar-minus\",\n    \"calendar-pen\",\n    \"calendar-plus\",\n    \"calendar-range\",\n    \"calendar-star\",\n    \"calendar-users\",\n    \"calendar-week\",\n    \"calendar-xmark\",\n    \"calendar\",\n    \"calendars\",\n    \"camcorder\",\n    \"camera-cctv\",\n    \"camera-movie\",\n    \"camera-polaroid\",\n    \"camera-retro\",\n    \"camera-rotate\",\n    \"camera-security\",\n    \"camera-slash\",\n    \"camera-viewfinder\",\n    \"camera-web-slash\",\n    \"camera-web\",\n    \"camera\",\n    \"campfire\",\n    \"campground\",\n    \"can-food\",\n    \"candle-holder\",\n    \"candy-bar\",\n    \"candy-cane\",\n    \"candy-corn\",\n    \"candy\",\n    \"cannabis\",\n    \"cannon\",\n    \"capsules\",\n    \"car-battery\",\n    \"car-bolt\",\n    \"car-building\",\n    \"car-bump\",\n    \"car-burst\",\n    \"car-bus\",\n    \"car-circle-bolt\",\n    \"car-garage\",\n    \"car-mirrors\",\n    \"car-on\",\n    \"car-rear\",\n    \"car-side-bolt\",\n    \"car-side\",\n    \"car-tilt\",\n    \"car-tunnel\",\n    \"car-wash\",\n    \"car-wrench\",\n    \"car\",\n    \"caravan-simple\",\n    \"caravan\",\n    \"card-club\",\n    \"card-diamond\",\n    \"card-heart\",\n    \"card-spade\",\n    \"cards-blank\",\n    \"cards\",\n    \"caret-down\",\n    \"caret-left\",\n    \"caret-right\",\n    \"caret-up\",\n    \"carpool\",\n    \"carrot\",\n    \"cars\",\n    \"cart-arrow-down\",\n    \"cart-arrow-up\",\n    \"cart-circle-arrow-down\",\n    \"cart-circle-arrow-up\",\n    \"cart-circle-check\",\n    \"cart-circle-exclamation\",\n    \"cart-circle-plus\",\n    \"cart-circle-xmark\",\n    \"cart-flatbed-boxes\",\n    \"cart-flatbed-empty\",\n    \"cart-flatbed-suitcase\",\n    \"cart-flatbed\",\n    \"cart-minus\",\n    \"cart-plus\",\n    \"cart-shopping-fast\",\n    \"cart-shopping\",\n    \"cart-xmark\",\n    \"cash-register\",\n    \"cassette-betamax\",\n    \"cassette-tape\",\n    \"cassette-vhs\",\n    \"castle\",\n    \"cat-space\",\n    \"cat\",\n    \"cauldron\",\n    \"cedi-sign\",\n    \"cent-sign\",\n    \"certificate\",\n    \"chair-office\",\n    \"chair\",\n    \"chalkboard-user\",\n    \"chalkboard\",\n    \"champagne-glass\",\n    \"champagne-glasses\",\n    \"charging-station\",\n    \"chart-area\",\n    \"chart-bar\",\n    \"chart-bullet\",\n    \"chart-candlestick\",\n    \"chart-column\",\n    \"chart-diagram\",\n    \"chart-fft\",\n    \"chart-gantt\",\n    \"chart-kanban\",\n    \"chart-line-down\",\n    \"chart-line-up-down\",\n    \"chart-line-up\",\n    \"chart-line\",\n    \"chart-mixed-up-circle-currency\",\n    \"chart-mixed-up-circle-dollar\",\n    \"chart-mixed\",\n    \"chart-network\",\n    \"chart-pie-simple-circle-currency\",\n    \"chart-pie-simple-circle-dollar\",\n    \"chart-pie-simple\",\n    \"chart-pie\",\n    \"chart-pyramid\",\n    \"chart-radar\",\n    \"chart-scatter-3d\",\n    \"chart-scatter-bubble\",\n    \"chart-scatter\",\n    \"chart-simple-horizontal\",\n    \"chart-simple\",\n    \"chart-sine\",\n    \"chart-tree-map\",\n    \"chart-user\",\n    \"chart-waterfall\",\n    \"check-double\",\n    \"check-to-slot\",\n    \"check\",\n    \"cheese-swiss\",\n    \"cheese\",\n    \"cherries\",\n    \"chess-bishop-piece\",\n    \"chess-bishop\",\n    \"chess-board\",\n    \"chess-clock-flip\",\n    \"chess-clock\",\n    \"chess-king-piece\",\n    \"chess-king\",\n    \"chess-knight-piece\",\n    \"chess-knight\",\n    \"chess-pawn-piece\",\n    \"chess-pawn\",\n    \"chess-queen-piece\",\n    \"chess-queen\",\n    \"chess-rook-piece\",\n    \"chess-rook\",\n    \"chess\",\n    \"chestnut\",\n    \"chevron-down\",\n    \"chevron-left\",\n    \"chevron-right\",\n    \"chevron-up\",\n    \"chevrons-down\",\n    \"chevrons-left\",\n    \"chevrons-right\",\n    \"chevrons-up\",\n    \"chf-sign\",\n    \"child-combatant\",\n    \"child-dress\",\n    \"child-reaching\",\n    \"child\",\n    \"children\",\n    \"chimney\",\n    \"chopsticks\",\n    \"church\",\n    \"circle-0\",\n    \"circle-1\",\n    \"circle-2\",\n    \"circle-3\",\n    \"circle-4\",\n    \"circle-5\",\n    \"circle-6\",\n    \"circle-7\",\n    \"circle-8\",\n    \"circle-9\",\n    \"circle-a\",\n    \"circle-ampersand\",\n    \"circle-arrow-down-left\",\n    \"circle-arrow-down-right\",\n    \"circle-arrow-down\",\n    \"circle-arrow-left\",\n    \"circle-arrow-right\",\n    \"circle-arrow-up-left\",\n    \"circle-arrow-up-right\",\n    \"circle-arrow-up\",\n    \"circle-b\",\n    \"circle-bolt\",\n    \"circle-book-open\",\n    \"circle-bookmark\",\n    \"circle-c\",\n    \"circle-calendar\",\n    \"circle-camera\",\n    \"circle-caret-down\",\n    \"circle-caret-left\",\n    \"circle-caret-right\",\n    \"circle-caret-up\",\n    \"circle-check\",\n    \"circle-chevron-down\",\n    \"circle-chevron-left\",\n    \"circle-chevron-right\",\n    \"circle-chevron-up\",\n    \"circle-d\",\n    \"circle-dashed\",\n    \"circle-divide\",\n    \"circle-dollar-to-slot\",\n    \"circle-dollar\",\n    \"circle-dot\",\n    \"circle-down-left\",\n    \"circle-down-right\",\n    \"circle-down\",\n    \"circle-e\",\n    \"circle-ellipsis-vertical\",\n    \"circle-ellipsis\",\n    \"circle-envelope\",\n    \"circle-euro\",\n    \"circle-exclamation-check\",\n    \"circle-exclamation\",\n    \"circle-f\",\n    \"circle-g\",\n    \"circle-gf\",\n    \"circle-h\",\n    \"circle-half-stroke\",\n    \"circle-half\",\n    \"circle-heart\",\n    \"circle-i\",\n    \"circle-info\",\n    \"circle-j\",\n    \"circle-k\",\n    \"circle-l\",\n    \"circle-left\",\n    \"circle-location-arrow\",\n    \"circle-m\",\n    \"circle-microphone-lines\",\n    \"circle-microphone\",\n    \"circle-minus\",\n    \"circle-n\",\n    \"circle-nodes\",\n    \"circle-notch\",\n    \"circle-o\",\n    \"circle-p\",\n    \"circle-parking\",\n    \"circle-pause\",\n    \"circle-phone-flip\",\n    \"circle-phone-hangup\",\n    \"circle-phone\",\n    \"circle-play\",\n    \"circle-plus\",\n    \"circle-q\",\n    \"circle-quarter-stroke\",\n    \"circle-quarter\",\n    \"circle-quarters\",\n    \"circle-question\",\n    \"circle-r\",\n    \"circle-radiation\",\n    \"circle-right\",\n    \"circle-s\",\n    \"circle-small\",\n    \"circle-sort-down\",\n    \"circle-sort-up\",\n    \"circle-sort\",\n    \"circle-star\",\n    \"circle-sterling\",\n    \"circle-stop\",\n    \"circle-t\",\n    \"circle-three-quarters-stroke\",\n    \"circle-three-quarters\",\n    \"circle-trash\",\n    \"circle-u\",\n    \"circle-up-left\",\n    \"circle-up-right\",\n    \"circle-up\",\n    \"circle-user\",\n    \"circle-v\",\n    \"circle-video\",\n    \"circle-w\",\n    \"circle-waveform-lines\",\n    \"circle-wifi-circle-wifi\",\n    \"circle-wifi\",\n    \"circle-x\",\n    \"circle-xmark\",\n    \"circle-y\",\n    \"circle-yen\",\n    \"circle-z\",\n    \"circle\",\n    \"circles-overlap-3\",\n    \"circles-overlap\",\n    \"citrus-slice\",\n    \"citrus\",\n    \"city\",\n    \"clapperboard-play\",\n    \"clapperboard\",\n    \"clarinet\",\n    \"claw-marks\",\n    \"clipboard-check\",\n    \"clipboard-list-check\",\n    \"clipboard-list\",\n    \"clipboard-medical\",\n    \"clipboard-prescription\",\n    \"clipboard-question\",\n    \"clipboard-user\",\n    \"clipboard\",\n    \"clock-desk\",\n    \"clock-eight-thirty\",\n    \"clock-eight\",\n    \"clock-eleven-thirty\",\n    \"clock-eleven\",\n    \"clock-five-thirty\",\n    \"clock-five\",\n    \"clock-four-thirty\",\n    \"clock-nine-thirty\",\n    \"clock-nine\",\n    \"clock-one-thirty\",\n    \"clock-one\",\n    \"clock-rotate-left\",\n    \"clock-seven-thirty\",\n    \"clock-seven\",\n    \"clock-six-thirty\",\n    \"clock-six\",\n    \"clock-ten-thirty\",\n    \"clock-ten\",\n    \"clock-three-thirty\",\n    \"clock-three\",\n    \"clock-twelve-thirty\",\n    \"clock-twelve\",\n    \"clock-two-thirty\",\n    \"clock-two\",\n    \"clock\",\n    \"clone\",\n    \"closed-captioning-slash\",\n    \"closed-captioning\",\n    \"clothes-hanger\",\n    \"cloud-arrow-down\",\n    \"cloud-arrow-up\",\n    \"cloud-binary\",\n    \"cloud-bolt-moon\",\n    \"cloud-bolt-sun\",\n    \"cloud-bolt\",\n    \"cloud-check\",\n    \"cloud-drizzle\",\n    \"cloud-exclamation\",\n    \"cloud-fog\",\n    \"cloud-hail-mixed\",\n    \"cloud-hail\",\n    \"cloud-meatball\",\n    \"cloud-minus\",\n    \"cloud-moon-rain\",\n    \"cloud-moon\",\n    \"cloud-music\",\n    \"cloud-plus\",\n    \"cloud-question\",\n    \"cloud-rain\",\n    \"cloud-rainbow\",\n    \"cloud-showers-heavy\",\n    \"cloud-showers-water\",\n    \"cloud-showers\",\n    \"cloud-slash\",\n    \"cloud-sleet\",\n    \"cloud-snow\",\n    \"cloud-sun-rain\",\n    \"cloud-sun\",\n    \"cloud-word\",\n    \"cloud-xmark\",\n    \"cloud\",\n    \"clouds-moon\",\n    \"clouds-sun\",\n    \"clouds\",\n    \"clover\",\n    \"club\",\n    \"coconut\",\n    \"code-branch\",\n    \"code-commit\",\n    \"code-compare\",\n    \"code-fork\",\n    \"code-merge\",\n    \"code-pull-request-closed\",\n    \"code-pull-request-draft\",\n    \"code-pull-request\",\n    \"code-simple\",\n    \"code\",\n    \"coffee-bean\",\n    \"coffee-beans\",\n    \"coffee-pot\",\n    \"coffin-cross\",\n    \"coffin\",\n    \"coin-blank\",\n    \"coin-front\",\n    \"coin-vertical\",\n    \"coin\",\n    \"coins\",\n    \"colon-sign\",\n    \"colon\",\n    \"columns-3\",\n    \"comet\",\n    \"comma\",\n    \"command\",\n    \"comment-arrow-down\",\n    \"comment-arrow-up-right\",\n    \"comment-arrow-up\",\n    \"comment-captions\",\n    \"comment-check\",\n    \"comment-code\",\n    \"comment-dollar\",\n    \"comment-dots\",\n    \"comment-exclamation\",\n    \"comment-heart\",\n    \"comment-image\",\n    \"comment-lines\",\n    \"comment-medical\",\n    \"comment-middle-top\",\n    \"comment-middle\",\n    \"comment-minus\",\n    \"comment-music\",\n    \"comment-nodes\",\n    \"comment-pen\",\n    \"comment-plus\",\n    \"comment-question\",\n    \"comment-quote\",\n    \"comment-slash\",\n    \"comment-smile\",\n    \"comment-sms\",\n    \"comment-text\",\n    \"comment-xmark\",\n    \"comment\",\n    \"comments-dollar\",\n    \"comments-question-check\",\n    \"comments-question\",\n    \"comments\",\n    \"compact-disc\",\n    \"compass-drafting\",\n    \"compass-slash\",\n    \"compass\",\n    \"compress-wide\",\n    \"compress\",\n    \"computer-classic\",\n    \"computer-mouse-scrollwheel\",\n    \"computer-mouse\",\n    \"computer-speaker\",\n    \"computer\",\n    \"container-storage\",\n    \"conveyor-belt-arm\",\n    \"conveyor-belt-boxes\",\n    \"conveyor-belt-empty\",\n    \"conveyor-belt\",\n    \"cookie-bite\",\n    \"cookie\",\n    \"copy\",\n    \"copyright\",\n    \"corn\",\n    \"corner\",\n    \"couch\",\n    \"court-sport\",\n    \"cow\",\n    \"cowbell-circle-plus\",\n    \"cowbell\",\n    \"crab\",\n    \"crate-apple\",\n    \"crate-empty\",\n    \"credit-card-blank\",\n    \"credit-card-front\",\n    \"credit-card\",\n    \"cricket-bat-ball\",\n    \"croissant\",\n    \"crop-simple\",\n    \"crop\",\n    \"cross\",\n    \"crosshairs-simple\",\n    \"crosshairs\",\n    \"crow\",\n    \"crown\",\n    \"crutch\",\n    \"crutches\",\n    \"cruzeiro-sign\",\n    \"crystal-ball\",\n    \"cube\",\n    \"cubes-stacked\",\n    \"cubes\",\n    \"cucumber\",\n    \"cup-straw-swoosh\",\n    \"cup-straw\",\n    \"cup-togo\",\n    \"cupcake\",\n    \"curling-stone\",\n    \"custard\",\n    \"d\",\n    \"dagger\",\n    \"dash\",\n    \"database\",\n    \"deer-rudolph\",\n    \"deer\",\n    \"delete-left\",\n    \"delete-right\",\n    \"democrat\",\n    \"desktop-arrow-down\",\n    \"desktop\",\n    \"dharmachakra\",\n    \"diagram-cells\",\n    \"diagram-lean-canvas\",\n    \"diagram-nested\",\n    \"diagram-next\",\n    \"diagram-predecessor\",\n    \"diagram-previous\",\n    \"diagram-project\",\n    \"diagram-sankey\",\n    \"diagram-subtask\",\n    \"diagram-successor\",\n    \"diagram-venn\",\n    \"dial-high\",\n    \"dial-low\",\n    \"dial-max\",\n    \"dial-med-low\",\n    \"dial-med\",\n    \"dial-min\",\n    \"dial-off\",\n    \"dial\",\n    \"diamond-exclamation\",\n    \"diamond-half-stroke\",\n    \"diamond-half\",\n    \"diamond-turn-right\",\n    \"diamond\",\n    \"diamonds-4\",\n    \"dice-d10\",\n    \"dice-d12\",\n    \"dice-d20\",\n    \"dice-d4\",\n    \"dice-d6\",\n    \"dice-d8\",\n    \"dice-five\",\n    \"dice-four\",\n    \"dice-one\",\n    \"dice-six\",\n    \"dice-three\",\n    \"dice-two\",\n    \"dice\",\n    \"dinosaur\",\n    \"diploma\",\n    \"disc-drive\",\n    \"disease\",\n    \"display-arrow-down\",\n    \"display-chart-up-circle-currency\",\n    \"display-chart-up-circle-dollar\",\n    \"display-chart-up\",\n    \"display-code\",\n    \"display-medical\",\n    \"display-slash\",\n    \"display\",\n    \"distribute-spacing-horizontal\",\n    \"distribute-spacing-vertical\",\n    \"ditto\",\n    \"divide\",\n    \"dna\",\n    \"do-not-enter\",\n    \"dog-leashed\",\n    \"dog\",\n    \"dollar-sign\",\n    \"dolly-empty\",\n    \"dolly\",\n    \"dolphin\",\n    \"dong-sign\",\n    \"donut\",\n    \"door-closed\",\n    \"door-open\",\n    \"dove\",\n    \"down-from-bracket\",\n    \"down-from-dotted-line\",\n    \"down-from-line\",\n    \"down-left-and-up-right-to-center\",\n    \"down-left\",\n    \"down-long\",\n    \"down-right\",\n    \"down-to-bracket\",\n    \"down-to-dotted-line\",\n    \"down-to-line\",\n    \"down\",\n    \"download\",\n    \"dragon\",\n    \"draw-circle\",\n    \"draw-polygon\",\n    \"draw-square\",\n    \"dreidel\",\n    \"drone-front\",\n    \"drone\",\n    \"droplet-degree\",\n    \"droplet-percent\",\n    \"droplet-slash\",\n    \"droplet\",\n    \"drum-steelpan\",\n    \"drum\",\n    \"drumstick-bite\",\n    \"drumstick\",\n    \"dryer-heat\",\n    \"dryer\",\n    \"duck\",\n    \"dumbbell\",\n    \"dumpster-fire\",\n    \"dumpster\",\n    \"dungeon\",\n    \"e\",\n    \"ear-deaf\",\n    \"ear-listen\",\n    \"ear-muffs\",\n    \"ear\",\n    \"earth-africa\",\n    \"earth-americas\",\n    \"earth-asia\",\n    \"earth-europe\",\n    \"earth-oceania\",\n    \"eclipse\",\n    \"egg-fried\",\n    \"egg\",\n    \"eggplant\",\n    \"eject\",\n    \"elephant\",\n    \"elevator\",\n    \"ellipsis-stroke-vertical\",\n    \"ellipsis-stroke\",\n    \"ellipsis-vertical\",\n    \"ellipsis\",\n    \"empty-set\",\n    \"engine-warning\",\n    \"engine\",\n    \"envelope-circle-check\",\n    \"envelope-dot\",\n    \"envelope-open-dollar\",\n    \"envelope-open-text\",\n    \"envelope-open\",\n    \"envelope\",\n    \"envelopes-bulk\",\n    \"envelopes\",\n    \"equals\",\n    \"eraser\",\n    \"escalator\",\n    \"ethernet\",\n    \"euro-sign\",\n    \"excavator\",\n    \"exclamation\",\n    \"expand-wide\",\n    \"expand\",\n    \"explosion\",\n    \"eye-dropper-full\",\n    \"eye-dropper-half\",\n    \"eye-dropper\",\n    \"eye-evil\",\n    \"eye-low-vision\",\n    \"eye-slash\",\n    \"eye\",\n    \"eyes\",\n    \"f\",\n    \"face-angry-horns\",\n    \"face-angry\",\n    \"face-anguished\",\n    \"face-anxious-sweat\",\n    \"face-astonished\",\n    \"face-awesome\",\n    \"face-beam-hand-over-mouth\",\n    \"face-clouds\",\n    \"face-confounded\",\n    \"face-confused\",\n    \"face-cowboy-hat\",\n    \"face-diagonal-mouth\",\n    \"face-disappointed\",\n    \"face-disguise\",\n    \"face-dizzy\",\n    \"face-dotted\",\n    \"face-downcast-sweat\",\n    \"face-drooling\",\n    \"face-exhaling\",\n    \"face-explode\",\n    \"face-expressionless\",\n    \"face-eyes-xmarks\",\n    \"face-fearful\",\n    \"face-flushed\",\n    \"face-frown-open\",\n    \"face-frown-slight\",\n    \"face-frown\",\n    \"face-glasses\",\n    \"face-grimace\",\n    \"face-grin-beam-sweat\",\n    \"face-grin-beam\",\n    \"face-grin-hearts\",\n    \"face-grin-squint-tears\",\n    \"face-grin-squint\",\n    \"face-grin-stars\",\n    \"face-grin-tears\",\n    \"face-grin-tongue-squint\",\n    \"face-grin-tongue-wink\",\n    \"face-grin-tongue\",\n    \"face-grin-wide\",\n    \"face-grin-wink\",\n    \"face-grin\",\n    \"face-hand-over-mouth\",\n    \"face-hand-peeking\",\n    \"face-hand-yawn\",\n    \"face-head-bandage\",\n    \"face-holding-back-tears\",\n    \"face-hushed\",\n    \"face-icicles\",\n    \"face-kiss-beam\",\n    \"face-kiss-closed-eyes\",\n    \"face-kiss-wink-heart\",\n    \"face-kiss\",\n    \"face-laugh-beam\",\n    \"face-laugh-squint\",\n    \"face-laugh-wink\",\n    \"face-laugh\",\n    \"face-lying\",\n    \"face-mask\",\n    \"face-meh-blank\",\n    \"face-meh\",\n    \"face-melting\",\n    \"face-monocle\",\n    \"face-nauseated\",\n    \"face-nose-steam\",\n    \"face-party\",\n    \"face-pensive\",\n    \"face-persevering\",\n    \"face-pleading\",\n    \"face-pouting\",\n    \"face-raised-eyebrow\",\n    \"face-relieved\",\n    \"face-rolling-eyes\",\n    \"face-sad-cry\",\n    \"face-sad-sweat\",\n    \"face-sad-tear\",\n    \"face-saluting\",\n    \"face-scream\",\n    \"face-shush\",\n    \"face-sleeping\",\n    \"face-sleepy\",\n    \"face-smile-beam\",\n    \"face-smile-halo\",\n    \"face-smile-hearts\",\n    \"face-smile-horns\",\n    \"face-smile-plus\",\n    \"face-smile-relaxed\",\n    \"face-smile-tear\",\n    \"face-smile-tongue\",\n    \"face-smile-upside-down\",\n    \"face-smile-wink\",\n    \"face-smile\",\n    \"face-smiling-hands\",\n    \"face-smirking\",\n    \"face-spiral-eyes\",\n    \"face-sunglasses\",\n    \"face-surprise\",\n    \"face-swear\",\n    \"face-thermometer\",\n    \"face-thinking\",\n    \"face-tired\",\n    \"face-tissue\",\n    \"face-tongue-money\",\n    \"face-tongue-sweat\",\n    \"face-unamused\",\n    \"face-viewfinder\",\n    \"face-vomit\",\n    \"face-weary\",\n    \"face-woozy\",\n    \"face-worried\",\n    \"face-zany\",\n    \"face-zipper\",\n    \"falafel\",\n    \"family-dress\",\n    \"family-pants\",\n    \"family\",\n    \"fan-table\",\n    \"fan\",\n    \"farm\",\n    \"faucet-drip\",\n    \"faucet\",\n    \"fax\",\n    \"feather-pointed\",\n    \"feather\",\n    \"fence\",\n    \"ferris-wheel\",\n    \"ferry\",\n    \"field-hockey-stick-ball\",\n    \"file-arrow-down\",\n    \"file-arrow-up\",\n    \"file-audio\",\n    \"file-binary\",\n    \"file-cad\",\n    \"file-certificate\",\n    \"file-chart-column\",\n    \"file-chart-pie\",\n    \"file-check\",\n    \"file-circle-check\",\n    \"file-circle-exclamation\",\n    \"file-circle-info\",\n    \"file-circle-minus\",\n    \"file-circle-plus\",\n    \"file-circle-question\",\n    \"file-circle-xmark\",\n    \"file-code\",\n    \"file-contract\",\n    \"file-csv\",\n    \"file-dashed-line\",\n    \"file-doc\",\n    \"file-eps\",\n    \"file-excel\",\n    \"file-exclamation\",\n    \"file-export\",\n    \"file-fragment\",\n    \"file-gif\",\n    \"file-half-dashed\",\n    \"file-heart\",\n    \"file-image\",\n    \"file-import\",\n    \"file-invoice-dollar\",\n    \"file-invoice\",\n    \"file-jpg\",\n    \"file-lines\",\n    \"file-lock\",\n    \"file-magnifying-glass\",\n    \"file-medical\",\n    \"file-minus\",\n    \"file-mov\",\n    \"file-mp3\",\n    \"file-mp4\",\n    \"file-music\",\n    \"file-pdf\",\n    \"file-pen\",\n    \"file-plus-minus\",\n    \"file-plus\",\n    \"file-png\",\n    \"file-powerpoint\",\n    \"file-ppt\",\n    \"file-prescription\",\n    \"file-shield\",\n    \"file-signature\",\n    \"file-slash\",\n    \"file-spreadsheet\",\n    \"file-svg\",\n    \"file-user\",\n    \"file-vector\",\n    \"file-video\",\n    \"file-waveform\",\n    \"file-word\",\n    \"file-xls\",\n    \"file-xmark\",\n    \"file-xml\",\n    \"file-zip\",\n    \"file-zipper\",\n    \"file\",\n    \"files-medical\",\n    \"files\",\n    \"fill-drip\",\n    \"fill\",\n    \"film-canister\",\n    \"film-simple\",\n    \"film-slash\",\n    \"film\",\n    \"films\",\n    \"filter-circle-dollar\",\n    \"filter-circle-xmark\",\n    \"filter-list\",\n    \"filter-slash\",\n    \"filter\",\n    \"filters\",\n    \"fingerprint\",\n    \"fire-burner\",\n    \"fire-extinguisher\",\n    \"fire-flame-curved\",\n    \"fire-flame-simple\",\n    \"fire-flame\",\n    \"fire-hydrant\",\n    \"fire-smoke\",\n    \"fire\",\n    \"fireplace\",\n    \"fish-bones\",\n    \"fish-cooked\",\n    \"fish-fins\",\n    \"fish\",\n    \"fishing-rod\",\n    \"flag-checkered\",\n    \"flag-pennant\",\n    \"flag-swallowtail\",\n    \"flag-usa\",\n    \"flag\",\n    \"flashlight\",\n    \"flask-gear\",\n    \"flask-round-poison\",\n    \"flask-round-potion\",\n    \"flask-vial\",\n    \"flask\",\n    \"flatbread-stuffed\",\n    \"flatbread\",\n    \"floppy-disk-circle-arrow-right\",\n    \"floppy-disk-circle-xmark\",\n    \"floppy-disk-pen\",\n    \"floppy-disk\",\n    \"floppy-disks\",\n    \"florin-sign\",\n    \"flower-daffodil\",\n    \"flower-tulip\",\n    \"flower\",\n    \"flute\",\n    \"flux-capacitor\",\n    \"flying-disc\",\n    \"folder-arrow-down\",\n    \"folder-arrow-up\",\n    \"folder-bookmark\",\n    \"folder-check\",\n    \"folder-closed\",\n    \"folder-gear\",\n    \"folder-grid\",\n    \"folder-heart\",\n    \"folder-image\",\n    \"folder-magnifying-glass\",\n    \"folder-medical\",\n    \"folder-minus\",\n    \"folder-music\",\n    \"folder-open\",\n    \"folder-plus\",\n    \"folder-tree\",\n    \"folder-user\",\n    \"folder-xmark\",\n    \"folder\",\n    \"folders\",\n    \"fondue-pot\",\n    \"font-awesome\",\n    \"font-case\",\n    \"font\",\n    \"football-helmet\",\n    \"football\",\n    \"fork-knife\",\n    \"fork\",\n    \"forklift\",\n    \"fort\",\n    \"forward-fast\",\n    \"forward-step\",\n    \"forward\",\n    \"frame\",\n    \"franc-sign\",\n    \"french-fries\",\n    \"frog\",\n    \"function\",\n    \"futbol\",\n    \"g\",\n    \"galaxy\",\n    \"gallery-thumbnails\",\n    \"game-board-simple\",\n    \"game-board\",\n    \"game-console-handheld-crank\",\n    \"game-console-handheld\",\n    \"gamepad-modern\",\n    \"gamepad\",\n    \"garage-car\",\n    \"garage-open\",\n    \"garage\",\n    \"garlic\",\n    \"gas-pump-slash\",\n    \"gas-pump\",\n    \"gauge-circle-bolt\",\n    \"gauge-circle-minus\",\n    \"gauge-circle-plus\",\n    \"gauge-high\",\n    \"gauge-low\",\n    \"gauge-max\",\n    \"gauge-min\",\n    \"gauge-simple-high\",\n    \"gauge-simple-low\",\n    \"gauge-simple-max\",\n    \"gauge-simple-min\",\n    \"gauge-simple\",\n    \"gauge\",\n    \"gavel\",\n    \"gear-code\",\n    \"gear-complex-code\",\n    \"gear-complex\",\n    \"gear\",\n    \"gears\",\n    \"gem\",\n    \"genderless\",\n    \"ghost\",\n    \"gif\",\n    \"gift-card\",\n    \"gift\",\n    \"gifts\",\n    \"gingerbread-man\",\n    \"glass-citrus\",\n    \"glass-empty\",\n    \"glass-half\",\n    \"glass-water-droplet\",\n    \"glass-water\",\n    \"glass\",\n    \"glasses-round\",\n    \"glasses\",\n    \"globe-pointer\",\n    \"globe-snow\",\n    \"globe-stand\",\n    \"globe-wifi\",\n    \"globe\",\n    \"goal-net\",\n    \"golf-ball-tee\",\n    \"golf-club\",\n    \"golf-flag-hole\",\n    \"gopuram\",\n    \"graduation-cap\",\n    \"gramophone\",\n    \"grapes\",\n    \"grate-droplet\",\n    \"grate\",\n    \"greater-than-equal\",\n    \"greater-than\",\n    \"grid-2-plus\",\n    \"grid-2\",\n    \"grid-4\",\n    \"grid-5\",\n    \"grid-dividers\",\n    \"grid-horizontal\",\n    \"grid-round-2-plus\",\n    \"grid-round-2\",\n    \"grid-round-4\",\n    \"grid-round-5\",\n    \"grid-round\",\n    \"grid\",\n    \"grill-fire\",\n    \"grill-hot\",\n    \"grill\",\n    \"grip-dots-vertical\",\n    \"grip-dots\",\n    \"grip-lines-vertical\",\n    \"grip-lines\",\n    \"grip-vertical\",\n    \"grip\",\n    \"group-arrows-rotate\",\n    \"guarani-sign\",\n    \"guitar-electric\",\n    \"guitar\",\n    \"guitars\",\n    \"gun-slash\",\n    \"gun-squirt\",\n    \"gun\",\n    \"h\",\n    \"h1\",\n    \"h2\",\n    \"h3\",\n    \"h4\",\n    \"h5\",\n    \"h6\",\n    \"hammer-brush\",\n    \"hammer-crash\",\n    \"hammer-war\",\n    \"hammer\",\n    \"hamsa\",\n    \"hand-back-fist\",\n    \"hand-back-point-down\",\n    \"hand-back-point-left\",\n    \"hand-back-point-ribbon\",\n    \"hand-back-point-right\",\n    \"hand-back-point-up\",\n    \"hand-dots\",\n    \"hand-fingers-crossed\",\n    \"hand-fist\",\n    \"hand-heart\",\n    \"hand-holding-box\",\n    \"hand-holding-circle-dollar\",\n    \"hand-holding-dollar\",\n    \"hand-holding-droplet\",\n    \"hand-holding-hand\",\n    \"hand-holding-heart\",\n    \"hand-holding-magic\",\n    \"hand-holding-medical\",\n    \"hand-holding-seedling\",\n    \"hand-holding-skull\",\n    \"hand-holding\",\n    \"hand-horns\",\n    \"hand-lizard\",\n    \"hand-love\",\n    \"hand-middle-finger\",\n    \"hand-peace\",\n    \"hand-point-down\",\n    \"hand-point-left\",\n    \"hand-point-ribbon\",\n    \"hand-point-right\",\n    \"hand-point-up\",\n    \"hand-pointer\",\n    \"hand-scissors\",\n    \"hand-sparkles\",\n    \"hand-spock\",\n    \"hand-wave\",\n    \"hand\",\n    \"handcuffs\",\n    \"hands-asl-interpreting\",\n    \"hands-bound\",\n    \"hands-bubbles\",\n    \"hands-clapping\",\n    \"hands-holding-child\",\n    \"hands-holding-circle\",\n    \"hands-holding-diamond\",\n    \"hands-holding-dollar\",\n    \"hands-holding-heart\",\n    \"hands-holding\",\n    \"hands-praying\",\n    \"hands\",\n    \"handshake-angle\",\n    \"handshake-simple-slash\",\n    \"handshake-simple\",\n    \"handshake-slash\",\n    \"handshake\",\n    \"hanukiah\",\n    \"hard-drive\",\n    \"hashtag-lock\",\n    \"hashtag\",\n    \"hat-beach\",\n    \"hat-chef\",\n    \"hat-cowboy-side\",\n    \"hat-cowboy\",\n    \"hat-santa\",\n    \"hat-winter\",\n    \"hat-witch\",\n    \"hat-wizard\",\n    \"head-side-brain\",\n    \"head-side-cough-slash\",\n    \"head-side-cough\",\n    \"head-side-gear\",\n    \"head-side-goggles\",\n    \"head-side-headphones\",\n    \"head-side-heart\",\n    \"head-side-mask\",\n    \"head-side-medical\",\n    \"head-side-virus\",\n    \"head-side\",\n    \"heading\",\n    \"headphones-simple\",\n    \"headphones\",\n    \"headset\",\n    \"heart-circle-bolt\",\n    \"heart-circle-check\",\n    \"heart-circle-exclamation\",\n    \"heart-circle-minus\",\n    \"heart-circle-plus\",\n    \"heart-circle-xmark\",\n    \"heart-crack\",\n    \"heart-half-stroke\",\n    \"heart-half\",\n    \"heart-pulse\",\n    \"heart\",\n    \"heat\",\n    \"helicopter-symbol\",\n    \"helicopter\",\n    \"helmet-battle\",\n    \"helmet-safety\",\n    \"helmet-un\",\n    \"hexagon-check\",\n    \"hexagon-divide\",\n    \"hexagon-exclamation\",\n    \"hexagon-image\",\n    \"hexagon-minus\",\n    \"hexagon-nodes-bolt\",\n    \"hexagon-nodes\",\n    \"hexagon-plus\",\n    \"hexagon-vertical-nft-slanted\",\n    \"hexagon-vertical-nft\",\n    \"hexagon-xmark\",\n    \"hexagon\",\n    \"high-definition\",\n    \"highlighter-line\",\n    \"highlighter\",\n    \"hill-avalanche\",\n    \"hill-rockslide\",\n    \"hippo\",\n    \"hockey-mask\",\n    \"hockey-puck\",\n    \"hockey-stick-puck\",\n    \"hockey-sticks\",\n    \"holly-berry\",\n    \"honey-pot\",\n    \"hood-cloak\",\n    \"horizontal-rule\",\n    \"horse-head\",\n    \"horse-saddle\",\n    \"horse\",\n    \"hose-reel\",\n    \"hose\",\n    \"hospital-user\",\n    \"hospital\",\n    \"hospitals\",\n    \"hot-tub-person\",\n    \"hotdog\",\n    \"hotel\",\n    \"hourglass-clock\",\n    \"hourglass-end\",\n    \"hourglass-half\",\n    \"hourglass-start\",\n    \"hourglass\",\n    \"house-blank\",\n    \"house-building\",\n    \"house-chimney-blank\",\n    \"house-chimney-crack\",\n    \"house-chimney-heart\",\n    \"house-chimney-medical\",\n    \"house-chimney-user\",\n    \"house-chimney-window\",\n    \"house-chimney\",\n    \"house-circle-check\",\n    \"house-circle-exclamation\",\n    \"house-circle-xmark\",\n    \"house-crack\",\n    \"house-day\",\n    \"house-fire\",\n    \"house-flag\",\n    \"house-flood-water-circle-arrow-right\",\n    \"house-flood-water\",\n    \"house-heart\",\n    \"house-laptop\",\n    \"house-lock\",\n    \"house-medical-circle-check\",\n    \"house-medical-circle-exclamation\",\n    \"house-medical-circle-xmark\",\n    \"house-medical-flag\",\n    \"house-medical\",\n    \"house-night\",\n    \"house-person-leave\",\n    \"house-person-return\",\n    \"house-signal\",\n    \"house-tree\",\n    \"house-tsunami\",\n    \"house-turret\",\n    \"house-user\",\n    \"house-water\",\n    \"house-window\",\n    \"house\",\n    \"hryvnia-sign\",\n    \"hundred-points\",\n    \"hurricane\",\n    \"hydra\",\n    \"hyphen\",\n    \"i-cursor\",\n    \"i\",\n    \"ice-cream\",\n    \"ice-skate\",\n    \"icicles\",\n    \"icons\",\n    \"id-badge\",\n    \"id-card-clip\",\n    \"id-card\",\n    \"igloo\",\n    \"image-landscape\",\n    \"image-polaroid-user\",\n    \"image-polaroid\",\n    \"image-portrait\",\n    \"image-slash\",\n    \"image-user\",\n    \"image\",\n    \"images-user\",\n    \"images\",\n    \"inbox-full\",\n    \"inbox-in\",\n    \"inbox-out\",\n    \"inbox\",\n    \"inboxes\",\n    \"indent\",\n    \"indian-rupee-sign\",\n    \"industry-windows\",\n    \"industry\",\n    \"infinity\",\n    \"info\",\n    \"inhaler\",\n    \"input-numeric\",\n    \"input-pipe\",\n    \"input-text\",\n    \"integral\",\n    \"interrobang\",\n    \"intersection\",\n    \"island-tropical\",\n    \"italic\",\n    \"j\",\n    \"jack-o-lantern\",\n    \"jar-wheat\",\n    \"jar\",\n    \"jedi\",\n    \"jet-fighter-up\",\n    \"jet-fighter\",\n    \"joint\",\n    \"joystick\",\n    \"jug-bottle\",\n    \"jug-detergent\",\n    \"jug\",\n    \"k\",\n    \"kaaba\",\n    \"kazoo\",\n    \"kerning\",\n    \"key-skeleton-left-right\",\n    \"key-skeleton\",\n    \"key\",\n    \"keyboard-brightness-low\",\n    \"keyboard-brightness\",\n    \"keyboard-down\",\n    \"keyboard-left\",\n    \"keyboard\",\n    \"keynote\",\n    \"khanda\",\n    \"kidneys\",\n    \"kip-sign\",\n    \"kit-medical\",\n    \"kitchen-set\",\n    \"kite\",\n    \"kiwi-bird\",\n    \"kiwi-fruit\",\n    \"knife-kitchen\",\n    \"knife\",\n    \"l\",\n    \"lacrosse-stick-ball\",\n    \"lacrosse-stick\",\n    \"lambda\",\n    \"lamp-desk\",\n    \"lamp-floor\",\n    \"lamp-street\",\n    \"lamp\",\n    \"land-mine-on\",\n    \"landmark-dome\",\n    \"landmark-flag\",\n    \"landmark-magnifying-glass\",\n    \"landmark\",\n    \"language\",\n    \"laptop-arrow-down\",\n    \"laptop-binary\",\n    \"laptop-code\",\n    \"laptop-file\",\n    \"laptop-medical\",\n    \"laptop-mobile\",\n    \"laptop-slash\",\n    \"laptop\",\n    \"lari-sign\",\n    \"lasso-sparkles\",\n    \"lasso\",\n    \"layer-group\",\n    \"layer-minus\",\n    \"layer-plus\",\n    \"leaf-heart\",\n    \"leaf-maple\",\n    \"leaf-oak\",\n    \"leaf\",\n    \"leafy-green\",\n    \"left-from-bracket\",\n    \"left-from-line\",\n    \"left-long-to-line\",\n    \"left-long\",\n    \"left-right\",\n    \"left-to-bracket\",\n    \"left-to-line\",\n    \"left\",\n    \"lemon\",\n    \"less-than-equal\",\n    \"less-than\",\n    \"life-ring\",\n    \"light-ceiling\",\n    \"light-emergency-on\",\n    \"light-emergency\",\n    \"light-switch-off\",\n    \"light-switch-on\",\n    \"light-switch\",\n    \"lightbulb-cfl-on\",\n    \"lightbulb-cfl\",\n    \"lightbulb-dollar\",\n    \"lightbulb-exclamation-on\",\n    \"lightbulb-exclamation\",\n    \"lightbulb-gear\",\n    \"lightbulb-message\",\n    \"lightbulb-on\",\n    \"lightbulb-slash\",\n    \"lightbulb\",\n    \"lighthouse\",\n    \"lights-holiday\",\n    \"line-columns\",\n    \"line-height\",\n    \"lines-leaning\",\n    \"link-horizontal-slash\",\n    \"link-horizontal\",\n    \"link-simple-slash\",\n    \"link-simple\",\n    \"link-slash\",\n    \"link\",\n    \"lips\",\n    \"lira-sign\",\n    \"list-check\",\n    \"list-dropdown\",\n    \"list-music\",\n    \"list-ol\",\n    \"list-radio\",\n    \"list-timeline\",\n    \"list-tree\",\n    \"list-ul\",\n    \"list\",\n    \"litecoin-sign\",\n    \"loader\",\n    \"lobster\",\n    \"location-arrow-up\",\n    \"location-arrow\",\n    \"location-check\",\n    \"location-crosshairs-slash\",\n    \"location-crosshairs\",\n    \"location-dot-slash\",\n    \"location-dot\",\n    \"location-exclamation\",\n    \"location-minus\",\n    \"location-pen\",\n    \"location-pin-lock\",\n    \"location-pin-slash\",\n    \"location-pin\",\n    \"location-plus\",\n    \"location-question\",\n    \"location-smile\",\n    \"location-xmark\",\n    \"lock-a\",\n    \"lock-hashtag\",\n    \"lock-keyhole-open\",\n    \"lock-keyhole\",\n    \"lock-open\",\n    \"lock\",\n    \"locust\",\n    \"lollipop\",\n    \"loveseat\",\n    \"luchador-mask\",\n    \"lungs-virus\",\n    \"lungs\",\n    \"m\",\n    \"mace\",\n    \"magnet\",\n    \"magnifying-glass-arrow-right\",\n    \"magnifying-glass-arrows-rotate\",\n    \"magnifying-glass-chart\",\n    \"magnifying-glass-dollar\",\n    \"magnifying-glass-location\",\n    \"magnifying-glass-minus\",\n    \"magnifying-glass-music\",\n    \"magnifying-glass-play\",\n    \"magnifying-glass-plus\",\n    \"magnifying-glass-waveform\",\n    \"magnifying-glass\",\n    \"mailbox-flag-up\",\n    \"mailbox\",\n    \"manat-sign\",\n    \"mandolin\",\n    \"mango\",\n    \"manhole\",\n    \"map-location-dot\",\n    \"map-location\",\n    \"map-pin\",\n    \"map\",\n    \"marker\",\n    \"mars-and-venus-burst\",\n    \"mars-and-venus\",\n    \"mars-double\",\n    \"mars-stroke-right\",\n    \"mars-stroke-up\",\n    \"mars-stroke\",\n    \"mars\",\n    \"martini-glass-citrus\",\n    \"martini-glass-empty\",\n    \"martini-glass\",\n    \"mask-face\",\n    \"mask-snorkel\",\n    \"mask-ventilator\",\n    \"mask\",\n    \"masks-theater\",\n    \"mattress-pillow\",\n    \"maximize\",\n    \"meat\",\n    \"medal\",\n    \"megaphone\",\n    \"melon-slice\",\n    \"melon\",\n    \"memo-circle-check\",\n    \"memo-circle-info\",\n    \"memo-pad\",\n    \"memo\",\n    \"memory\",\n    \"menorah\",\n    \"mercury\",\n    \"merge\",\n    \"message-arrow-down\",\n    \"message-arrow-up-right\",\n    \"message-arrow-up\",\n    \"message-bot\",\n    \"message-captions\",\n    \"message-check\",\n    \"message-code\",\n    \"message-dollar\",\n    \"message-dots\",\n    \"message-exclamation\",\n    \"message-heart\",\n    \"message-image\",\n    \"message-lines\",\n    \"message-medical\",\n    \"message-middle-top\",\n    \"message-middle\",\n    \"message-minus\",\n    \"message-music\",\n    \"message-pen\",\n    \"message-plus\",\n    \"message-question\",\n    \"message-quote\",\n    \"message-slash\",\n    \"message-smile\",\n    \"message-sms\",\n    \"message-text\",\n    \"message-xmark\",\n    \"message\",\n    \"messages-dollar\",\n    \"messages-question\",\n    \"messages\",\n    \"meteor\",\n    \"meter-bolt\",\n    \"meter-droplet\",\n    \"meter-fire\",\n    \"meter\",\n    \"microchip-ai\",\n    \"microchip\",\n    \"microphone-lines-slash\",\n    \"microphone-lines\",\n    \"microphone-slash\",\n    \"microphone-stand\",\n    \"microphone\",\n    \"microscope\",\n    \"microwave\",\n    \"mill-sign\",\n    \"minimize\",\n    \"minus\",\n    \"mistletoe\",\n    \"mitten\",\n    \"mobile-button\",\n    \"mobile-notch\",\n    \"mobile-retro\",\n    \"mobile-screen-button\",\n    \"mobile-screen\",\n    \"mobile-signal-out\",\n    \"mobile-signal\",\n    \"mobile\",\n    \"money-bill-1-wave\",\n    \"money-bill-1\",\n    \"money-bill-simple-wave\",\n    \"money-bill-simple\",\n    \"money-bill-transfer\",\n    \"money-bill-trend-up\",\n    \"money-bill-wave\",\n    \"money-bill-wheat\",\n    \"money-bill\",\n    \"money-bills-simple\",\n    \"money-bills\",\n    \"money-check-dollar-pen\",\n    \"money-check-dollar\",\n    \"money-check-pen\",\n    \"money-check\",\n    \"money-from-bracket\",\n    \"money-simple-from-bracket\",\n    \"monitor-waveform\",\n    \"monkey\",\n    \"monument\",\n    \"moon-cloud\",\n    \"moon-over-sun\",\n    \"moon-stars\",\n    \"moon\",\n    \"moped\",\n    \"mortar-pestle\",\n    \"mosque\",\n    \"mosquito-net\",\n    \"mosquito\",\n    \"motorcycle\",\n    \"mound\",\n    \"mountain-city\",\n    \"mountain-sun\",\n    \"mountain\",\n    \"mountains\",\n    \"mouse-field\",\n    \"mp3-player\",\n    \"mug-hot\",\n    \"mug-marshmallows\",\n    \"mug-saucer\",\n    \"mug-tea-saucer\",\n    \"mug-tea\",\n    \"mug\",\n    \"mushroom\",\n    \"music-magnifying-glass\",\n    \"music-note-slash\",\n    \"music-note\",\n    \"music-slash\",\n    \"music\",\n    \"mustache\",\n    \"n\",\n    \"naira-sign\",\n    \"narwhal\",\n    \"nesting-dolls\",\n    \"network-wired\",\n    \"neuter\",\n    \"newspaper\",\n    \"nfc-lock\",\n    \"nfc-magnifying-glass\",\n    \"nfc-pen\",\n    \"nfc-signal\",\n    \"nfc-slash\",\n    \"nfc-symbol\",\n    \"nfc-trash\",\n    \"nfc\",\n    \"nose\",\n    \"not-equal\",\n    \"notdef\",\n    \"note-medical\",\n    \"note-sticky\",\n    \"note\",\n    \"notebook\",\n    \"notes-medical\",\n    \"notes\",\n    \"o\",\n    \"object-exclude\",\n    \"object-group\",\n    \"object-intersect\",\n    \"object-subtract\",\n    \"object-ungroup\",\n    \"object-union\",\n    \"objects-align-bottom\",\n    \"objects-align-center-horizontal\",\n    \"objects-align-center-vertical\",\n    \"objects-align-left\",\n    \"objects-align-right\",\n    \"objects-align-top\",\n    \"objects-column\",\n    \"octagon-check\",\n    \"octagon-divide\",\n    \"octagon-exclamation\",\n    \"octagon-minus\",\n    \"octagon-plus\",\n    \"octagon-xmark\",\n    \"octagon\",\n    \"octopus\",\n    \"oil-can-drip\",\n    \"oil-can\",\n    \"oil-temperature\",\n    \"oil-well\",\n    \"olive-branch\",\n    \"olive\",\n    \"om\",\n    \"omega\",\n    \"onion\",\n    \"option\",\n    \"ornament\",\n    \"otter\",\n    \"outdent\",\n    \"outlet\",\n    \"oven\",\n    \"overline\",\n    \"p\",\n    \"page-caret-down\",\n    \"page-caret-up\",\n    \"page\",\n    \"pager\",\n    \"paint-roller\",\n    \"paintbrush-fine\",\n    \"paintbrush-pencil\",\n    \"paintbrush\",\n    \"palette\",\n    \"pallet-box\",\n    \"pallet-boxes\",\n    \"pallet\",\n    \"pan-food\",\n    \"pan-frying\",\n    \"pancakes\",\n    \"panel-ews\",\n    \"panel-fire\",\n    \"panorama\",\n    \"paper-plane-top\",\n    \"paper-plane\",\n    \"paperclip-vertical\",\n    \"paperclip\",\n    \"parachute-box\",\n    \"paragraph-left\",\n    \"paragraph\",\n    \"party-bell\",\n    \"party-horn\",\n    \"passport\",\n    \"paste\",\n    \"pause\",\n    \"paw-claws\",\n    \"paw-simple\",\n    \"paw\",\n    \"peace\",\n    \"peach\",\n    \"peanut\",\n    \"peanuts\",\n    \"peapod\",\n    \"pear\",\n    \"pedestal\",\n    \"pegasus\",\n    \"pen-circle\",\n    \"pen-clip-slash\",\n    \"pen-clip\",\n    \"pen-fancy-slash\",\n    \"pen-fancy\",\n    \"pen-field\",\n    \"pen-line\",\n    \"pen-nib-slash\",\n    \"pen-nib\",\n    \"pen-paintbrush\",\n    \"pen-ruler\",\n    \"pen-slash\",\n    \"pen-swirl\",\n    \"pen-to-square\",\n    \"pen\",\n    \"pencil-mechanical\",\n    \"pencil-slash\",\n    \"pencil\",\n    \"people-arrows\",\n    \"people-carry-box\",\n    \"people-dress-simple\",\n    \"people-dress\",\n    \"people-group\",\n    \"people-line\",\n    \"people-pants-simple\",\n    \"people-pants\",\n    \"people-pulling\",\n    \"people-robbery\",\n    \"people-roof\",\n    \"people-simple\",\n    \"people\",\n    \"pepper-hot\",\n    \"pepper\",\n    \"percent\",\n    \"period\",\n    \"person-arrow-down-to-line\",\n    \"person-arrow-up-from-line\",\n    \"person-biking-mountain\",\n    \"person-biking\",\n    \"person-booth\",\n    \"person-breastfeeding\",\n    \"person-burst\",\n    \"person-cane\",\n    \"person-carry-box\",\n    \"person-chalkboard\",\n    \"person-circle-check\",\n    \"person-circle-exclamation\",\n    \"person-circle-minus\",\n    \"person-circle-plus\",\n    \"person-circle-question\",\n    \"person-circle-xmark\",\n    \"person-digging\",\n    \"person-dolly-empty\",\n    \"person-dolly\",\n    \"person-dots-from-line\",\n    \"person-dress-burst\",\n    \"person-dress-fairy\",\n    \"person-dress-simple\",\n    \"person-dress\",\n    \"person-drowning\",\n    \"person-fairy\",\n    \"person-falling-burst\",\n    \"person-falling\",\n    \"person-from-portal\",\n    \"person-half-dress\",\n    \"person-harassing\",\n    \"person-hiking\",\n    \"person-military-pointing\",\n    \"person-military-rifle\",\n    \"person-military-to-person\",\n    \"person-pinball\",\n    \"person-praying\",\n    \"person-pregnant\",\n    \"person-rays\",\n    \"person-rifle\",\n    \"person-running-fast\",\n    \"person-running\",\n    \"person-seat-reclined\",\n    \"person-seat\",\n    \"person-shelter\",\n    \"person-sign\",\n    \"person-simple\",\n    \"person-skating\",\n    \"person-ski-jumping\",\n    \"person-ski-lift\",\n    \"person-skiing-nordic\",\n    \"person-skiing\",\n    \"person-sledding\",\n    \"person-snowboarding\",\n    \"person-snowmobiling\",\n    \"person-swimming\",\n    \"person-through-window\",\n    \"person-to-door\",\n    \"person-to-portal\",\n    \"person-walking-arrow-loop-left\",\n    \"person-walking-arrow-right\",\n    \"person-walking-dashed-line-arrow-right\",\n    \"person-walking-luggage\",\n    \"person-walking-with-cane\",\n    \"person-walking\",\n    \"person\",\n    \"peseta-sign\",\n    \"peso-sign\",\n    \"phone-arrow-down-left\",\n    \"phone-arrow-right\",\n    \"phone-arrow-up-right\",\n    \"phone-flip\",\n    \"phone-hangup\",\n    \"phone-intercom\",\n    \"phone-missed\",\n    \"phone-office\",\n    \"phone-plus\",\n    \"phone-rotary\",\n    \"phone-slash\",\n    \"phone-volume\",\n    \"phone-xmark\",\n    \"phone\",\n    \"photo-film-music\",\n    \"photo-film\",\n    \"pi\",\n    \"piano-keyboard\",\n    \"piano\",\n    \"pickaxe\",\n    \"pickleball\",\n    \"pie\",\n    \"pig\",\n    \"piggy-bank\",\n    \"pills\",\n    \"pinata\",\n    \"pinball\",\n    \"pineapple\",\n    \"pipe-circle-check\",\n    \"pipe-collar\",\n    \"pipe-section\",\n    \"pipe-smoking\",\n    \"pipe-valve\",\n    \"pipe\",\n    \"pizza-slice\",\n    \"pizza\",\n    \"place-of-worship\",\n    \"plane-arrival\",\n    \"plane-circle-check\",\n    \"plane-circle-exclamation\",\n    \"plane-circle-xmark\",\n    \"plane-departure\",\n    \"plane-engines\",\n    \"plane-lock\",\n    \"plane-prop\",\n    \"plane-slash\",\n    \"plane-tail\",\n    \"plane-up-slash\",\n    \"plane-up\",\n    \"plane\",\n    \"planet-moon\",\n    \"planet-ringed\",\n    \"plant-wilt\",\n    \"plate-utensils\",\n    \"plate-wheat\",\n    \"play-pause\",\n    \"play\",\n    \"plug-circle-bolt\",\n    \"plug-circle-check\",\n    \"plug-circle-exclamation\",\n    \"plug-circle-minus\",\n    \"plug-circle-plus\",\n    \"plug-circle-xmark\",\n    \"plug\",\n    \"plus-large\",\n    \"plus-minus\",\n    \"plus\",\n    \"podcast\",\n    \"podium-star\",\n    \"podium\",\n    \"police-box\",\n    \"poll-people\",\n    \"pompebled\",\n    \"poo-storm\",\n    \"poo\",\n    \"pool-8-ball\",\n    \"poop\",\n    \"popcorn\",\n    \"popsicle\",\n    \"pot-food\",\n    \"potato\",\n    \"power-off\",\n    \"prescription-bottle-medical\",\n    \"prescription-bottle-pill\",\n    \"prescription-bottle\",\n    \"prescription\",\n    \"presentation-screen\",\n    \"pretzel\",\n    \"print-magnifying-glass\",\n    \"print-slash\",\n    \"print\",\n    \"projector\",\n    \"pump-medical\",\n    \"pump-soap\",\n    \"pump\",\n    \"pumpkin\",\n    \"puzzle-piece-simple\",\n    \"puzzle-piece\",\n    \"puzzle\",\n    \"q\",\n    \"qrcode\",\n    \"question\",\n    \"quote-left\",\n    \"quote-right\",\n    \"quotes\",\n    \"r\",\n    \"rabbit-running\",\n    \"rabbit\",\n    \"raccoon\",\n    \"racquet\",\n    \"radar\",\n    \"radiation\",\n    \"radio-tuner\",\n    \"radio\",\n    \"rainbow\",\n    \"raindrops\",\n    \"ram\",\n    \"ramp-loading\",\n    \"ranking-star\",\n    \"raygun\",\n    \"receipt\",\n    \"record-vinyl\",\n    \"rectangle-ad\",\n    \"rectangle-barcode\",\n    \"rectangle-code\",\n    \"rectangle-history-circle-plus\",\n    \"rectangle-history-circle-user\",\n    \"rectangle-history\",\n    \"rectangle-list\",\n    \"rectangle-pro\",\n    \"rectangle-terminal\",\n    \"rectangle-vertical-history\",\n    \"rectangle-vertical\",\n    \"rectangle-wide\",\n    \"rectangle-xmark\",\n    \"rectangle\",\n    \"rectangles-mixed\",\n    \"recycle\",\n    \"reel\",\n    \"reflect-both\",\n    \"reflect-horizontal\",\n    \"reflect-vertical\",\n    \"refrigerator\",\n    \"registered\",\n    \"repeat-1\",\n    \"repeat\",\n    \"reply-all\",\n    \"reply-clock\",\n    \"reply\",\n    \"republican\",\n    \"restroom-simple\",\n    \"restroom\",\n    \"retweet\",\n    \"rhombus\",\n    \"ribbon\",\n    \"right-from-bracket\",\n    \"right-from-line\",\n    \"right-left-large\",\n    \"right-left\",\n    \"right-long-to-line\",\n    \"right-long\",\n    \"right-to-bracket\",\n    \"right-to-line\",\n    \"right\",\n    \"ring-diamond\",\n    \"ring\",\n    \"rings-wedding\",\n    \"road-barrier\",\n    \"road-bridge\",\n    \"road-circle-check\",\n    \"road-circle-exclamation\",\n    \"road-circle-xmark\",\n    \"road-lock\",\n    \"road-spikes\",\n    \"road\",\n    \"robot-astromech\",\n    \"robot\",\n    \"rocket-launch\",\n    \"rocket\",\n    \"roller-coaster\",\n    \"rotate-exclamation\",\n    \"rotate-left\",\n    \"rotate-reverse\",\n    \"rotate-right\",\n    \"rotate\",\n    \"route-highway\",\n    \"route-interstate\",\n    \"route\",\n    \"router\",\n    \"rss\",\n    \"ruble-sign\",\n    \"rug\",\n    \"rugby-ball\",\n    \"ruler-combined\",\n    \"ruler-horizontal\",\n    \"ruler-triangle\",\n    \"ruler-vertical\",\n    \"ruler\",\n    \"rupee-sign\",\n    \"rupiah-sign\",\n    \"rv\",\n    \"s\",\n    \"sack-dollar\",\n    \"sack-xmark\",\n    \"sack\",\n    \"sailboat\",\n    \"salad\",\n    \"salt-shaker\",\n    \"sandwich\",\n    \"satellite-dish\",\n    \"satellite\",\n    \"sausage\",\n    \"saxophone-fire\",\n    \"saxophone\",\n    \"scale-balanced\",\n    \"scale-unbalanced-flip\",\n    \"scale-unbalanced\",\n    \"scalpel-line-dashed\",\n    \"scalpel\",\n    \"scanner-gun\",\n    \"scanner-image\",\n    \"scanner-keyboard\",\n    \"scanner-touchscreen\",\n    \"scarecrow\",\n    \"scarf\",\n    \"school-circle-check\",\n    \"school-circle-exclamation\",\n    \"school-circle-xmark\",\n    \"school-flag\",\n    \"school-lock\",\n    \"school\",\n    \"scissors\",\n    \"screen-users\",\n    \"screencast\",\n    \"screwdriver-wrench\",\n    \"screwdriver\",\n    \"scribble\",\n    \"scroll-old\",\n    \"scroll-torah\",\n    \"scroll\",\n    \"scrubber\",\n    \"scythe\",\n    \"sd-card\",\n    \"sd-cards\",\n    \"seal-exclamation\",\n    \"seal-question\",\n    \"seal\",\n    \"seat-airline\",\n    \"section\",\n    \"seedling\",\n    \"semicolon\",\n    \"send-back\",\n    \"send-backward\",\n    \"sensor-cloud\",\n    \"sensor-fire\",\n    \"sensor-on\",\n    \"sensor-triangle-exclamation\",\n    \"sensor\",\n    \"server\",\n    \"shapes\",\n    \"share-all\",\n    \"share-from-square\",\n    \"share-nodes\",\n    \"share\",\n    \"sheep\",\n    \"sheet-plastic\",\n    \"shekel-sign\",\n    \"shelves-empty\",\n    \"shelves\",\n    \"shield-cat\",\n    \"shield-check\",\n    \"shield-cross\",\n    \"shield-dog\",\n    \"shield-exclamation\",\n    \"shield-halved\",\n    \"shield-heart\",\n    \"shield-keyhole\",\n    \"shield-minus\",\n    \"shield-plus\",\n    \"shield-quartered\",\n    \"shield-slash\",\n    \"shield-virus\",\n    \"shield-xmark\",\n    \"shield\",\n    \"ship\",\n    \"shirt-long-sleeve\",\n    \"shirt-running\",\n    \"shirt-tank-top\",\n    \"shirt\",\n    \"shish-kebab\",\n    \"shoe-prints\",\n    \"shop-lock\",\n    \"shop-slash\",\n    \"shop\",\n    \"shovel-snow\",\n    \"shovel\",\n    \"shower-down\",\n    \"shower\",\n    \"shredder\",\n    \"shrimp\",\n    \"shuffle\",\n    \"shutters\",\n    \"shuttle-space\",\n    \"shuttlecock\",\n    \"sickle\",\n    \"sidebar-flip\",\n    \"sidebar\",\n    \"sigma\",\n    \"sign-hanging\",\n    \"sign-post\",\n    \"sign-posts-wrench\",\n    \"sign-posts\",\n    \"signal-bars-fair\",\n    \"signal-bars-good\",\n    \"signal-bars-slash\",\n    \"signal-bars-weak\",\n    \"signal-bars\",\n    \"signal-fair\",\n    \"signal-good\",\n    \"signal-slash\",\n    \"signal-stream-slash\",\n    \"signal-stream\",\n    \"signal-strong\",\n    \"signal-weak\",\n    \"signal\",\n    \"signature-lock\",\n    \"signature-slash\",\n    \"signature\",\n    \"signs-post\",\n    \"sim-card\",\n    \"sim-cards\",\n    \"sink\",\n    \"siren-on\",\n    \"siren\",\n    \"sitemap\",\n    \"skeleton-ribs\",\n    \"skeleton\",\n    \"ski-boot-ski\",\n    \"ski-boot\",\n    \"skull-cow\",\n    \"skull-crossbones\",\n    \"skull\",\n    \"slash-back\",\n    \"slash-forward\",\n    \"slash\",\n    \"sleigh\",\n    \"slider\",\n    \"sliders-simple\",\n    \"sliders-up\",\n    \"sliders\",\n    \"slot-machine\",\n    \"smog\",\n    \"smoke\",\n    \"smoking\",\n    \"snake\",\n    \"snooze\",\n    \"snow-blowing\",\n    \"snowflake-droplets\",\n    \"snowflake\",\n    \"snowflakes\",\n    \"snowman-head\",\n    \"snowman\",\n    \"snowplow\",\n    \"soap\",\n    \"socks\",\n    \"soft-serve\",\n    \"solar-panel\",\n    \"solar-system\",\n    \"sort-down\",\n    \"sort-up\",\n    \"sort\",\n    \"spa\",\n    \"space-station-moon-construction\",\n    \"space-station-moon\",\n    \"spade\",\n    \"spaghetti-monster-flying\",\n    \"sparkle\",\n    \"sparkles\",\n    \"speaker\",\n    \"speakers\",\n    \"spell-check\",\n    \"spider-black-widow\",\n    \"spider-web\",\n    \"spider\",\n    \"spinner-scale\",\n    \"spinner-third\",\n    \"spinner\",\n    \"split\",\n    \"splotch\",\n    \"spoon\",\n    \"sportsball\",\n    \"spray-can-sparkles\",\n    \"spray-can\",\n    \"sprinkler-ceiling\",\n    \"sprinkler\",\n    \"square-0\",\n    \"square-1\",\n    \"square-2\",\n    \"square-3\",\n    \"square-4\",\n    \"square-5\",\n    \"square-6\",\n    \"square-7\",\n    \"square-8\",\n    \"square-9\",\n    \"square-a-lock\",\n    \"square-a\",\n    \"square-ampersand\",\n    \"square-arrow-down-left\",\n    \"square-arrow-down-right\",\n    \"square-arrow-down\",\n    \"square-arrow-left\",\n    \"square-arrow-right\",\n    \"square-arrow-up-left\",\n    \"square-arrow-up-right\",\n    \"square-arrow-up\",\n    \"square-b\",\n    \"square-binary\",\n    \"square-bolt\",\n    \"square-c\",\n    \"square-caret-down\",\n    \"square-caret-left\",\n    \"square-caret-right\",\n    \"square-caret-up\",\n    \"square-check\",\n    \"square-chevron-down\",\n    \"square-chevron-left\",\n    \"square-chevron-right\",\n    \"square-chevron-up\",\n    \"square-code\",\n    \"square-d\",\n    \"square-dashed-circle-plus\",\n    \"square-dashed\",\n    \"square-divide\",\n    \"square-dollar\",\n    \"square-down-left\",\n    \"square-down-right\",\n    \"square-down\",\n    \"square-e\",\n    \"square-ellipsis-vertical\",\n    \"square-ellipsis\",\n    \"square-envelope\",\n    \"square-exclamation\",\n    \"square-f\",\n    \"square-fragile\",\n    \"square-full\",\n    \"square-g\",\n    \"square-h\",\n    \"square-heart\",\n    \"square-i\",\n    \"square-info\",\n    \"square-j\",\n    \"square-k\",\n    \"square-kanban\",\n    \"square-l\",\n    \"square-left\",\n    \"square-list\",\n    \"square-m\",\n    \"square-minus\",\n    \"square-n\",\n    \"square-nfi\",\n    \"square-o\",\n    \"square-p\",\n    \"square-parking-slash\",\n    \"square-parking\",\n    \"square-pen\",\n    \"square-person-confined\",\n    \"square-phone-flip\",\n    \"square-phone-hangup\",\n    \"square-phone\",\n    \"square-plus\",\n    \"square-poll-horizontal\",\n    \"square-poll-vertical\",\n    \"square-q\",\n    \"square-quarters\",\n    \"square-question\",\n    \"square-quote\",\n    \"square-r\",\n    \"square-right\",\n    \"square-ring\",\n    \"square-root-variable\",\n    \"square-root\",\n    \"square-rss\",\n    \"square-s\",\n    \"square-share-nodes\",\n    \"square-sliders-vertical\",\n    \"square-sliders\",\n    \"square-small\",\n    \"square-star\",\n    \"square-t\",\n    \"square-terminal\",\n    \"square-this-way-up\",\n    \"square-u\",\n    \"square-up-left\",\n    \"square-up-right\",\n    \"square-up\",\n    \"square-user\",\n    \"square-v\",\n    \"square-virus\",\n    \"square-w\",\n    \"square-x\",\n    \"square-xmark\",\n    \"square-y\",\n    \"square-z\",\n    \"square\",\n    \"squid\",\n    \"squirrel\",\n    \"staff-snake\",\n    \"staff\",\n    \"stairs\",\n    \"stamp\",\n    \"standard-definition\",\n    \"stapler\",\n    \"star-and-crescent\",\n    \"star-christmas\",\n    \"star-exclamation\",\n    \"star-half-stroke\",\n    \"star-half\",\n    \"star-of-david\",\n    \"star-of-life\",\n    \"star-sharp-half-stroke\",\n    \"star-sharp-half\",\n    \"star-sharp\",\n    \"star-shooting\",\n    \"star\",\n    \"starfighter-twin-ion-engine-advanced\",\n    \"starfighter-twin-ion-engine\",\n    \"starfighter\",\n    \"stars\",\n    \"starship-freighter\",\n    \"starship\",\n    \"steak\",\n    \"steering-wheel\",\n    \"sterling-sign\",\n    \"stethoscope\",\n    \"stocking\",\n    \"stomach\",\n    \"stop\",\n    \"stopwatch-20\",\n    \"stopwatch\",\n    \"store-lock\",\n    \"store-slash\",\n    \"store\",\n    \"strawberry\",\n    \"street-view\",\n    \"stretcher\",\n    \"strikethrough\",\n    \"stroopwafel\",\n    \"subscript\",\n    \"subtitles-slash\",\n    \"subtitles\",\n    \"suitcase-medical\",\n    \"suitcase-rolling\",\n    \"suitcase\",\n    \"sun-bright\",\n    \"sun-cloud\",\n    \"sun-dust\",\n    \"sun-haze\",\n    \"sun-plant-wilt\",\n    \"sun\",\n    \"sunglasses\",\n    \"sunrise\",\n    \"sunset\",\n    \"superscript\",\n    \"sushi-roll\",\n    \"sushi\",\n    \"swap-arrows\",\n    \"swap\",\n    \"swatchbook\",\n    \"sword-laser-alt\",\n    \"sword-laser\",\n    \"sword\",\n    \"swords-laser\",\n    \"swords\",\n    \"symbols\",\n    \"synagogue\",\n    \"syringe\",\n    \"t-rex\",\n    \"t\",\n    \"table-cells-column-lock\",\n    \"table-cells-column-unlock\",\n    \"table-cells-large\",\n    \"table-cells-lock\",\n    \"table-cells-row-lock\",\n    \"table-cells-row-unlock\",\n    \"table-cells-unlock\",\n    \"table-cells\",\n    \"table-columns\",\n    \"table-layout\",\n    \"table-list\",\n    \"table-picnic\",\n    \"table-pivot\",\n    \"table-rows\",\n    \"table-tennis-paddle-ball\",\n    \"table-tree\",\n    \"table\",\n    \"tablet-button\",\n    \"tablet-rugged\",\n    \"tablet-screen-button\",\n    \"tablet-screen\",\n    \"tablet\",\n    \"tablets\",\n    \"tachograph-digital\",\n    \"taco\",\n    \"tag\",\n    \"tags\",\n    \"tally-1\",\n    \"tally-2\",\n    \"tally-3\",\n    \"tally-4\",\n    \"tally\",\n    \"tamale\",\n    \"tank-water\",\n    \"tape\",\n    \"tarp-droplet\",\n    \"tarp\",\n    \"taxi-bus\",\n    \"taxi\",\n    \"teddy-bear\",\n    \"teeth-open\",\n    \"teeth\",\n    \"telescope\",\n    \"temperature-arrow-down\",\n    \"temperature-arrow-up\",\n    \"temperature-empty\",\n    \"temperature-full\",\n    \"temperature-half\",\n    \"temperature-high\",\n    \"temperature-list\",\n    \"temperature-low\",\n    \"temperature-quarter\",\n    \"temperature-snow\",\n    \"temperature-sun\",\n    \"temperature-three-quarters\",\n    \"tenge-sign\",\n    \"tennis-ball\",\n    \"tent-arrow-down-to-line\",\n    \"tent-arrow-left-right\",\n    \"tent-arrow-turn-left\",\n    \"tent-arrows-down\",\n    \"tent-double-peak\",\n    \"tent\",\n    \"tents\",\n    \"terminal\",\n    \"text-height\",\n    \"text-size\",\n    \"text-slash\",\n    \"text-width\",\n    \"text\",\n    \"thermometer\",\n    \"theta\",\n    \"thought-bubble\",\n    \"thumbs-down\",\n    \"thumbs-up\",\n    \"thumbtack-slash\",\n    \"thumbtack\",\n    \"tick\",\n    \"ticket-airline\",\n    \"ticket-perforated\",\n    \"ticket-simple\",\n    \"ticket\",\n    \"tickets-airline\",\n    \"tickets-perforated\",\n    \"tickets-simple\",\n    \"tickets\",\n    \"tilde\",\n    \"timeline-arrow\",\n    \"timeline\",\n    \"timer\",\n    \"tire-flat\",\n    \"tire-pressure-warning\",\n    \"tire-rugged\",\n    \"tire\",\n    \"toggle-large-off\",\n    \"toggle-large-on\",\n    \"toggle-off\",\n    \"toggle-on\",\n    \"toilet-paper-blank-under\",\n    \"toilet-paper-blank\",\n    \"toilet-paper-check\",\n    \"toilet-paper-slash\",\n    \"toilet-paper-under-slash\",\n    \"toilet-paper-under\",\n    \"toilet-paper-xmark\",\n    \"toilet-paper\",\n    \"toilet-portable\",\n    \"toilet\",\n    \"toilets-portable\",\n    \"tomato\",\n    \"tombstone-blank\",\n    \"tombstone\",\n    \"toolbox\",\n    \"tooth\",\n    \"toothbrush\",\n    \"torii-gate\",\n    \"tornado\",\n    \"tower-broadcast\",\n    \"tower-cell\",\n    \"tower-control\",\n    \"tower-observation\",\n    \"tractor\",\n    \"trademark\",\n    \"traffic-cone\",\n    \"traffic-light-go\",\n    \"traffic-light-slow\",\n    \"traffic-light-stop\",\n    \"traffic-light\",\n    \"trailer\",\n    \"train-subway-tunnel\",\n    \"train-subway\",\n    \"train-track\",\n    \"train-tram\",\n    \"train-tunnel\",\n    \"train\",\n    \"transformer-bolt\",\n    \"transgender\",\n    \"transporter-1\",\n    \"transporter-2\",\n    \"transporter-3\",\n    \"transporter-4\",\n    \"transporter-5\",\n    \"transporter-6\",\n    \"transporter-7\",\n    \"transporter-empty\",\n    \"transporter\",\n    \"trash-arrow-up\",\n    \"trash-can-arrow-up\",\n    \"trash-can-check\",\n    \"trash-can-clock\",\n    \"trash-can-list\",\n    \"trash-can-plus\",\n    \"trash-can-slash\",\n    \"trash-can-undo\",\n    \"trash-can-xmark\",\n    \"trash-can\",\n    \"trash-check\",\n    \"trash-clock\",\n    \"trash-list\",\n    \"trash-plus\",\n    \"trash-slash\",\n    \"trash-undo\",\n    \"trash-xmark\",\n    \"trash\",\n    \"treasure-chest\",\n    \"tree-christmas\",\n    \"tree-city\",\n    \"tree-deciduous\",\n    \"tree-decorated\",\n    \"tree-large\",\n    \"tree-palm\",\n    \"tree\",\n    \"trees\",\n    \"triangle-exclamation\",\n    \"triangle-instrument\",\n    \"triangle-person-digging\",\n    \"triangle\",\n    \"tricycle-adult\",\n    \"tricycle\",\n    \"trillium\",\n    \"trophy-star\",\n    \"trophy\",\n    \"trowel-bricks\",\n    \"trowel\",\n    \"truck-arrow-right\",\n    \"truck-bolt\",\n    \"truck-clock\",\n    \"truck-container-empty\",\n    \"truck-container\",\n    \"truck-droplet\",\n    \"truck-fast\",\n    \"truck-field-un\",\n    \"truck-field\",\n    \"truck-fire\",\n    \"truck-flatbed\",\n    \"truck-front\",\n    \"truck-ladder\",\n    \"truck-medical\",\n    \"truck-monster\",\n    \"truck-moving\",\n    \"truck-pickup\",\n    \"truck-plane\",\n    \"truck-plow\",\n    \"truck-ramp-box\",\n    \"truck-ramp-couch\",\n    \"truck-ramp\",\n    \"truck-tow\",\n    \"truck-utensils\",\n    \"truck\",\n    \"trumpet\",\n    \"tty-answer\",\n    \"tty\",\n    \"tugrik-sign\",\n    \"turkey\",\n    \"turkish-lira-sign\",\n    \"turn-down-left\",\n    \"turn-down-right\",\n    \"turn-down\",\n    \"turn-left-down\",\n    \"turn-left-up\",\n    \"turn-left\",\n    \"turn-right\",\n    \"turn-up\",\n    \"turntable\",\n    \"turtle\",\n    \"tv-music\",\n    \"tv-retro\",\n    \"tv\",\n    \"typewriter\",\n    \"u\",\n    \"ufo-beam\",\n    \"ufo\",\n    \"umbrella-beach\",\n    \"umbrella-simple\",\n    \"umbrella\",\n    \"underline\",\n    \"unicorn\",\n    \"uniform-martial-arts\",\n    \"union\",\n    \"universal-access\",\n    \"unlock-keyhole\",\n    \"unlock\",\n    \"up-down-left-right\",\n    \"up-down\",\n    \"up-from-bracket\",\n    \"up-from-dotted-line\",\n    \"up-from-line\",\n    \"up-left\",\n    \"up-long\",\n    \"up-right-and-down-left-from-center\",\n    \"up-right-from-square\",\n    \"up-right\",\n    \"up-to-bracket\",\n    \"up-to-dotted-line\",\n    \"up-to-line\",\n    \"up\",\n    \"upload\",\n    \"usb-drive\",\n    \"user-alien\",\n    \"user-astronaut\",\n    \"user-beard-bolt\",\n    \"user-bounty-hunter\",\n    \"user-check\",\n    \"user-chef\",\n    \"user-clock\",\n    \"user-cowboy\",\n    \"user-crown\",\n    \"user-doctor-hair-long\",\n    \"user-doctor-hair\",\n    \"user-doctor-message\",\n    \"user-doctor\",\n    \"user-gear\",\n    \"user-graduate\",\n    \"user-group-crown\",\n    \"user-group-simple\",\n    \"user-group\",\n    \"user-hair-buns\",\n    \"user-hair-long\",\n    \"user-hair-mullet\",\n    \"user-hair\",\n    \"user-headset\",\n    \"user-helmet-safety\",\n    \"user-hoodie\",\n    \"user-injured\",\n    \"user-large-slash\",\n    \"user-large\",\n    \"user-lock\",\n    \"user-magnifying-glass\",\n    \"user-minus\",\n    \"user-music\",\n    \"user-ninja\",\n    \"user-nurse-hair-long\",\n    \"user-nurse-hair\",\n    \"user-nurse\",\n    \"user-pen\",\n    \"user-pilot-tie\",\n    \"user-pilot\",\n    \"user-plus\",\n    \"user-police-tie\",\n    \"user-police\",\n    \"user-robot-xmarks\",\n    \"user-robot\",\n    \"user-secret\",\n    \"user-shakespeare\",\n    \"user-shield\",\n    \"user-slash\",\n    \"user-tag\",\n    \"user-tie-hair-long\",\n    \"user-tie-hair\",\n    \"user-tie\",\n    \"user-unlock\",\n    \"user-visor\",\n    \"user-vneck-hair-long\",\n    \"user-vneck-hair\",\n    \"user-vneck\",\n    \"user-xmark\",\n    \"user\",\n    \"users-between-lines\",\n    \"users-gear\",\n    \"users-line\",\n    \"users-medical\",\n    \"users-rays\",\n    \"users-rectangle\",\n    \"users-slash\",\n    \"users-viewfinder\",\n    \"users\",\n    \"utensils-slash\",\n    \"utensils\",\n    \"utility-pole-double\",\n    \"utility-pole\",\n    \"v\",\n    \"vacuum-robot\",\n    \"vacuum\",\n    \"value-absolute\",\n    \"van-shuttle\",\n    \"vault\",\n    \"vector-circle\",\n    \"vector-polygon\",\n    \"vector-square\",\n    \"vent-damper\",\n    \"venus-double\",\n    \"venus-mars\",\n    \"venus\",\n    \"vest-patches\",\n    \"vest\",\n    \"vial-circle-check\",\n    \"vial-virus\",\n    \"vial\",\n    \"vials\",\n    \"video-arrow-down-left\",\n    \"video-arrow-up-right\",\n    \"video-plus\",\n    \"video-slash\",\n    \"video\",\n    \"vihara\",\n    \"violin\",\n    \"virus-covid-slash\",\n    \"virus-covid\",\n    \"virus-slash\",\n    \"virus\",\n    \"viruses\",\n    \"voicemail\",\n    \"volcano\",\n    \"volleyball\",\n    \"volume-high\",\n    \"volume-low\",\n    \"volume-off\",\n    \"volume-slash\",\n    \"volume-xmark\",\n    \"volume\",\n    \"vr-cardboard\",\n    \"w\",\n    \"waffle\",\n    \"wagon-covered\",\n    \"walker\",\n    \"walkie-talkie\",\n    \"wallet\",\n    \"wand-magic-sparkles\",\n    \"wand-magic\",\n    \"wand-sparkles\",\n    \"wand\",\n    \"warehouse-full\",\n    \"warehouse\",\n    \"washing-machine\",\n    \"watch-apple\",\n    \"watch-calculator\",\n    \"watch-fitness\",\n    \"watch-smart\",\n    \"watch\",\n    \"water-arrow-down\",\n    \"water-arrow-up\",\n    \"water-ladder\",\n    \"water\",\n    \"watermelon-slice\",\n    \"wave-pulse\",\n    \"wave-sine\",\n    \"wave-square\",\n    \"wave-triangle\",\n    \"wave\",\n    \"waveform-lines\",\n    \"waveform\",\n    \"waves-sine\",\n    \"web-awesome\",\n    \"webhook\",\n    \"weight-hanging\",\n    \"weight-scale\",\n    \"whale\",\n    \"wheat-awn-circle-exclamation\",\n    \"wheat-awn-slash\",\n    \"wheat-awn\",\n    \"wheat-slash\",\n    \"wheat\",\n    \"wheelchair-move\",\n    \"wheelchair\",\n    \"whiskey-glass-ice\",\n    \"whiskey-glass\",\n    \"whistle\",\n    \"wifi-exclamation\",\n    \"wifi-fair\",\n    \"wifi-slash\",\n    \"wifi-weak\",\n    \"wifi\",\n    \"wind-turbine\",\n    \"wind-warning\",\n    \"wind\",\n    \"window-flip\",\n    \"window-frame-open\",\n    \"window-frame\",\n    \"window-maximize\",\n    \"window-minimize\",\n    \"window-restore\",\n    \"window\",\n    \"windsock\",\n    \"wine-bottle\",\n    \"wine-glass-crack\",\n    \"wine-glass-empty\",\n    \"wine-glass\",\n    \"won-sign\",\n    \"worm\",\n    \"wreath-laurel\",\n    \"wreath\",\n    \"wrench-simple\",\n    \"wrench\",\n    \"x-ray\",\n    \"x\",\n    \"xmark-large\",\n    \"xmark-to-slot\",\n    \"xmark\",\n    \"xmarks-lines\",\n    \"y\",\n    \"yen-sign\",\n    \"yin-yang\",\n    \"z\"\n  ],\n  \"solid\": [\n    \"0\",\n    \"00\",\n    \"1\",\n    \"2\",\n    \"3\",\n    \"360-degrees\",\n    \"4\",\n    \"5\",\n    \"6\",\n    \"7\",\n    \"8\",\n    \"9\",\n    \"a\",\n    \"abacus\",\n    \"accent-grave\",\n    \"acorn\",\n    \"address-book\",\n    \"address-card\",\n    \"air-conditioner\",\n    \"airplay\",\n    \"alarm-clock\",\n    \"alarm-exclamation\",\n    \"alarm-plus\",\n    \"alarm-snooze\",\n    \"album-circle-plus\",\n    \"album-circle-user\",\n    \"album-collection-circle-plus\",\n    \"album-collection-circle-user\",\n    \"album-collection\",\n    \"album\",\n    \"alicorn\",\n    \"alien-8bit\",\n    \"alien\",\n    \"align-center\",\n    \"align-justify\",\n    \"align-left\",\n    \"align-right\",\n    \"align-slash\",\n    \"alt\",\n    \"amp-guitar\",\n    \"ampersand\",\n    \"anchor-circle-check\",\n    \"anchor-circle-exclamation\",\n    \"anchor-circle-xmark\",\n    \"anchor-lock\",\n    \"anchor\",\n    \"angel\",\n    \"angle-90\",\n    \"angle-down\",\n    \"angle-left\",\n    \"angle-right\",\n    \"angle-up\",\n    \"angle\",\n    \"angles-down\",\n    \"angles-left\",\n    \"angles-right\",\n    \"angles-up-down\",\n    \"angles-up\",\n    \"ankh\",\n    \"ant\",\n    \"apartment\",\n    \"aperture\",\n    \"apostrophe\",\n    \"apple-core\",\n    \"apple-whole\",\n    \"archway\",\n    \"arrow-down-1-9\",\n    \"arrow-down-9-1\",\n    \"arrow-down-a-z\",\n    \"arrow-down-arrow-up\",\n    \"arrow-down-big-small\",\n    \"arrow-down-from-arc\",\n    \"arrow-down-from-bracket\",\n    \"arrow-down-from-dotted-line\",\n    \"arrow-down-from-line\",\n    \"arrow-down-left-and-arrow-up-right-to-center\",\n    \"arrow-down-left\",\n    \"arrow-down-long\",\n    \"arrow-down-right\",\n    \"arrow-down-short-wide\",\n    \"arrow-down-small-big\",\n    \"arrow-down-square-triangle\",\n    \"arrow-down-to-arc\",\n    \"arrow-down-to-bracket\",\n    \"arrow-down-to-dotted-line\",\n    \"arrow-down-to-line\",\n    \"arrow-down-to-square\",\n    \"arrow-down-triangle-square\",\n    \"arrow-down-up-across-line\",\n    \"arrow-down-up-lock\",\n    \"arrow-down-wide-short\",\n    \"arrow-down-z-a\",\n    \"arrow-down\",\n    \"arrow-left-from-arc\",\n    \"arrow-left-from-bracket\",\n    \"arrow-left-from-line\",\n    \"arrow-left-long-to-line\",\n    \"arrow-left-long\",\n    \"arrow-left-to-arc\",\n    \"arrow-left-to-bracket\",\n    \"arrow-left-to-line\",\n    \"arrow-left\",\n    \"arrow-pointer\",\n    \"arrow-progress\",\n    \"arrow-right-arrow-left\",\n    \"arrow-right-from-arc\",\n    \"arrow-right-from-bracket\",\n    \"arrow-right-from-line\",\n    \"arrow-right-long-to-line\",\n    \"arrow-right-long\",\n    \"arrow-right-to-arc\",\n    \"arrow-right-to-bracket\",\n    \"arrow-right-to-city\",\n    \"arrow-right-to-line\",\n    \"arrow-right\",\n    \"arrow-rotate-left\",\n    \"arrow-rotate-right\",\n    \"arrow-trend-down\",\n    \"arrow-trend-up\",\n    \"arrow-turn-down-left\",\n    \"arrow-turn-down-right\",\n    \"arrow-turn-down\",\n    \"arrow-turn-left-down\",\n    \"arrow-turn-left-up\",\n    \"arrow-turn-left\",\n    \"arrow-turn-right\",\n    \"arrow-turn-up\",\n    \"arrow-up-1-9\",\n    \"arrow-up-9-1\",\n    \"arrow-up-a-z\",\n    \"arrow-up-arrow-down\",\n    \"arrow-up-big-small\",\n    \"arrow-up-from-arc\",\n    \"arrow-up-from-bracket\",\n    \"arrow-up-from-dotted-line\",\n    \"arrow-up-from-ground-water\",\n    \"arrow-up-from-line\",\n    \"arrow-up-from-square\",\n    \"arrow-up-from-water-pump\",\n    \"arrow-up-left-from-circle\",\n    \"arrow-up-left\",\n    \"arrow-up-long\",\n    \"arrow-up-right-and-arrow-down-left-from-center\",\n    \"arrow-up-right-dots\",\n    \"arrow-up-right-from-square\",\n    \"arrow-up-right\",\n    \"arrow-up-short-wide\",\n    \"arrow-up-small-big\",\n    \"arrow-up-square-triangle\",\n    \"arrow-up-to-arc\",\n    \"arrow-up-to-bracket\",\n    \"arrow-up-to-dotted-line\",\n    \"arrow-up-to-line\",\n    \"arrow-up-triangle-square\",\n    \"arrow-up-wide-short\",\n    \"arrow-up-z-a\",\n    \"arrow-up\",\n    \"arrows-cross\",\n    \"arrows-down-to-line\",\n    \"arrows-down-to-people\",\n    \"arrows-from-dotted-line\",\n    \"arrows-from-line\",\n    \"arrows-left-right-to-line\",\n    \"arrows-left-right\",\n    \"arrows-maximize\",\n    \"arrows-minimize\",\n    \"arrows-repeat-1\",\n    \"arrows-repeat\",\n    \"arrows-retweet\",\n    \"arrows-rotate-reverse\",\n    \"arrows-rotate\",\n    \"arrows-spin\",\n    \"arrows-split-up-and-left\",\n    \"arrows-to-circle\",\n    \"arrows-to-dot\",\n    \"arrows-to-dotted-line\",\n    \"arrows-to-eye\",\n    \"arrows-to-line\",\n    \"arrows-turn-right\",\n    \"arrows-turn-to-dots\",\n    \"arrows-up-down-left-right\",\n    \"arrows-up-down\",\n    \"arrows-up-to-line\",\n    \"asterisk\",\n    \"at\",\n    \"atom-simple\",\n    \"atom\",\n    \"audio-description-slash\",\n    \"audio-description\",\n    \"austral-sign\",\n    \"avocado\",\n    \"award-simple\",\n    \"award\",\n    \"axe-battle\",\n    \"axe\",\n    \"b\",\n    \"baby-carriage\",\n    \"baby\",\n    \"backpack\",\n    \"backward-fast\",\n    \"backward-step\",\n    \"backward\",\n    \"bacon\",\n    \"bacteria\",\n    \"bacterium\",\n    \"badge-check\",\n    \"badge-dollar\",\n    \"badge-percent\",\n    \"badge-sheriff\",\n    \"badge\",\n    \"badger-honey\",\n    \"badminton\",\n    \"bag-seedling\",\n    \"bag-shopping-minus\",\n    \"bag-shopping-plus\",\n    \"bag-shopping\",\n    \"bagel\",\n    \"bags-shopping\",\n    \"baguette\",\n    \"bahai\",\n    \"baht-sign\",\n    \"ball-pile\",\n    \"balloon\",\n    \"balloons\",\n    \"ballot-check\",\n    \"ballot\",\n    \"ban-bug\",\n    \"ban-parking\",\n    \"ban-smoking\",\n    \"ban\",\n    \"banana\",\n    \"bandage\",\n    \"bangladeshi-taka-sign\",\n    \"banjo\",\n    \"barcode-read\",\n    \"barcode-scan\",\n    \"barcode\",\n    \"bars-filter\",\n    \"bars-progress\",\n    \"bars-sort\",\n    \"bars-staggered\",\n    \"bars\",\n    \"baseball-bat-ball\",\n    \"baseball\",\n    \"basket-shopping-minus\",\n    \"basket-shopping-plus\",\n    \"basket-shopping-simple\",\n    \"basket-shopping\",\n    \"basketball-hoop\",\n    \"basketball\",\n    \"bat\",\n    \"bath\",\n    \"battery-bolt\",\n    \"battery-empty\",\n    \"battery-exclamation\",\n    \"battery-full\",\n    \"battery-half\",\n    \"battery-low\",\n    \"battery-quarter\",\n    \"battery-slash\",\n    \"battery-three-quarters\",\n    \"bed-bunk\",\n    \"bed-empty\",\n    \"bed-front\",\n    \"bed-pulse\",\n    \"bed\",\n    \"bee\",\n    \"beer-mug-empty\",\n    \"beer-mug\",\n    \"bell-concierge\",\n    \"bell-exclamation\",\n    \"bell-on\",\n    \"bell-plus\",\n    \"bell-ring\",\n    \"bell-school-slash\",\n    \"bell-school\",\n    \"bell-slash\",\n    \"bell\",\n    \"bells\",\n    \"bench-tree\",\n    \"bezier-curve\",\n    \"bicycle\",\n    \"billboard\",\n    \"bin-bottles-recycle\",\n    \"bin-bottles\",\n    \"bin-recycle\",\n    \"binary-circle-check\",\n    \"binary-lock\",\n    \"binary-slash\",\n    \"binary\",\n    \"binoculars\",\n    \"biohazard\",\n    \"bird\",\n    \"bitcoin-sign\",\n    \"blanket-fire\",\n    \"blanket\",\n    \"blender-phone\",\n    \"blender\",\n    \"blinds-open\",\n    \"blinds-raised\",\n    \"blinds\",\n    \"block-brick-fire\",\n    \"block-brick\",\n    \"block-question\",\n    \"block-quote\",\n    \"block\",\n    \"blog\",\n    \"blueberries\",\n    \"bluetooth\",\n    \"bold\",\n    \"bolt-auto\",\n    \"bolt-lightning\",\n    \"bolt-slash\",\n    \"bolt\",\n    \"bomb\",\n    \"bone-break\",\n    \"bone\",\n    \"bong\",\n    \"book-arrow-right\",\n    \"book-arrow-up\",\n    \"book-atlas\",\n    \"book-bible\",\n    \"book-blank\",\n    \"book-bookmark\",\n    \"book-circle-arrow-right\",\n    \"book-circle-arrow-up\",\n    \"book-copy\",\n    \"book-font\",\n    \"book-heart\",\n    \"book-journal-whills\",\n    \"book-medical\",\n    \"book-open-cover\",\n    \"book-open-reader\",\n    \"book-open\",\n    \"book-quran\",\n    \"book-section\",\n    \"book-skull\",\n    \"book-sparkles\",\n    \"book-tanakh\",\n    \"book-user\",\n    \"book\",\n    \"bookmark-slash\",\n    \"bookmark\",\n    \"books-medical\",\n    \"books\",\n    \"boombox\",\n    \"boot-heeled\",\n    \"boot\",\n    \"booth-curtain\",\n    \"border-all\",\n    \"border-bottom-right\",\n    \"border-bottom\",\n    \"border-center-h\",\n    \"border-center-v\",\n    \"border-inner\",\n    \"border-left\",\n    \"border-none\",\n    \"border-outer\",\n    \"border-right\",\n    \"border-top-left\",\n    \"border-top\",\n    \"bore-hole\",\n    \"bottle-baby\",\n    \"bottle-droplet\",\n    \"bottle-water\",\n    \"bow-arrow\",\n    \"bowl-chopsticks-noodles\",\n    \"bowl-chopsticks\",\n    \"bowl-food\",\n    \"bowl-hot\",\n    \"bowl-rice\",\n    \"bowl-scoop\",\n    \"bowl-scoops\",\n    \"bowl-soft-serve\",\n    \"bowl-spoon\",\n    \"bowling-ball-pin\",\n    \"bowling-ball\",\n    \"bowling-pins\",\n    \"box-archive\",\n    \"box-ballot\",\n    \"box-check\",\n    \"box-circle-check\",\n    \"box-dollar\",\n    \"box-heart\",\n    \"box-open-full\",\n    \"box-open\",\n    \"box-taped\",\n    \"box-tissue\",\n    \"box\",\n    \"boxes-packing\",\n    \"boxes-stacked\",\n    \"boxing-glove\",\n    \"bracket-curly-right\",\n    \"bracket-curly\",\n    \"bracket-round-right\",\n    \"bracket-round\",\n    \"bracket-square-right\",\n    \"bracket-square\",\n    \"brackets-curly\",\n    \"brackets-round\",\n    \"brackets-square\",\n    \"braille\",\n    \"brain-arrow-curved-right\",\n    \"brain-circuit\",\n    \"brain\",\n    \"brake-warning\",\n    \"brazilian-real-sign\",\n    \"bread-loaf\",\n    \"bread-slice-butter\",\n    \"bread-slice\",\n    \"bridge-circle-check\",\n    \"bridge-circle-exclamation\",\n    \"bridge-circle-xmark\",\n    \"bridge-lock\",\n    \"bridge-suspension\",\n    \"bridge-water\",\n    \"bridge\",\n    \"briefcase-arrow-right\",\n    \"briefcase-blank\",\n    \"briefcase-medical\",\n    \"briefcase\",\n    \"brightness-low\",\n    \"brightness\",\n    \"bring-forward\",\n    \"bring-front\",\n    \"broccoli\",\n    \"broom-ball\",\n    \"broom-wide\",\n    \"broom\",\n    \"browser\",\n    \"browsers\",\n    \"brush\",\n    \"bucket\",\n    \"bug-slash\",\n    \"bug\",\n    \"bugs\",\n    \"building-circle-arrow-right\",\n    \"building-circle-check\",\n    \"building-circle-exclamation\",\n    \"building-circle-xmark\",\n    \"building-columns\",\n    \"building-flag\",\n    \"building-lock\",\n    \"building-magnifying-glass\",\n    \"building-memo\",\n    \"building-ngo\",\n    \"building-shield\",\n    \"building-un\",\n    \"building-user\",\n    \"building-wheat\",\n    \"building\",\n    \"buildings\",\n    \"bulldozer\",\n    \"bullhorn\",\n    \"bullseye-arrow\",\n    \"bullseye-pointer\",\n    \"bullseye\",\n    \"buoy-mooring\",\n    \"buoy\",\n    \"burger-cheese\",\n    \"burger-fries\",\n    \"burger-glass\",\n    \"burger-lettuce\",\n    \"burger-soda\",\n    \"burger\",\n    \"burrito\",\n    \"burst\",\n    \"bus-school\",\n    \"bus-simple\",\n    \"bus\",\n    \"business-time\",\n    \"butter\",\n    \"c\",\n    \"cabin\",\n    \"cabinet-filing\",\n    \"cable-car\",\n    \"cactus\",\n    \"caduceus\",\n    \"cake-candles\",\n    \"cake-slice\",\n    \"calculator-simple\",\n    \"calculator\",\n    \"calendar-arrow-down\",\n    \"calendar-arrow-up\",\n    \"calendar-check\",\n    \"calendar-circle-exclamation\",\n    \"calendar-circle-minus\",\n    \"calendar-circle-plus\",\n    \"calendar-circle-user\",\n    \"calendar-clock\",\n    \"calendar-day\",\n    \"calendar-days\",\n    \"calendar-exclamation\",\n    \"calendar-heart\",\n    \"calendar-image\",\n    \"calendar-lines-pen\",\n    \"calendar-lines\",\n    \"calendar-minus\",\n    \"calendar-pen\",\n    \"calendar-plus\",\n    \"calendar-range\",\n    \"calendar-star\",\n    \"calendar-users\",\n    \"calendar-week\",\n    \"calendar-xmark\",\n    \"calendar\",\n    \"calendars\",\n    \"camcorder\",\n    \"camera-cctv\",\n    \"camera-movie\",\n    \"camera-polaroid\",\n    \"camera-retro\",\n    \"camera-rotate\",\n    \"camera-security\",\n    \"camera-slash\",\n    \"camera-viewfinder\",\n    \"camera-web-slash\",\n    \"camera-web\",\n    \"camera\",\n    \"campfire\",\n    \"campground\",\n    \"can-food\",\n    \"candle-holder\",\n    \"candy-bar\",\n    \"candy-cane\",\n    \"candy-corn\",\n    \"candy\",\n    \"cannabis\",\n    \"cannon\",\n    \"capsules\",\n    \"car-battery\",\n    \"car-bolt\",\n    \"car-building\",\n    \"car-bump\",\n    \"car-burst\",\n    \"car-bus\",\n    \"car-circle-bolt\",\n    \"car-garage\",\n    \"car-mirrors\",\n    \"car-on\",\n    \"car-rear\",\n    \"car-side-bolt\",\n    \"car-side\",\n    \"car-tilt\",\n    \"car-tunnel\",\n    \"car-wash\",\n    \"car-wrench\",\n    \"car\",\n    \"caravan-simple\",\n    \"caravan\",\n    \"card-club\",\n    \"card-diamond\",\n    \"card-heart\",\n    \"card-spade\",\n    \"cards-blank\",\n    \"cards\",\n    \"caret-down\",\n    \"caret-left\",\n    \"caret-right\",\n    \"caret-up\",\n    \"carpool\",\n    \"carrot\",\n    \"cars\",\n    \"cart-arrow-down\",\n    \"cart-arrow-up\",\n    \"cart-circle-arrow-down\",\n    \"cart-circle-arrow-up\",\n    \"cart-circle-check\",\n    \"cart-circle-exclamation\",\n    \"cart-circle-plus\",\n    \"cart-circle-xmark\",\n    \"cart-flatbed-boxes\",\n    \"cart-flatbed-empty\",\n    \"cart-flatbed-suitcase\",\n    \"cart-flatbed\",\n    \"cart-minus\",\n    \"cart-plus\",\n    \"cart-shopping-fast\",\n    \"cart-shopping\",\n    \"cart-xmark\",\n    \"cash-register\",\n    \"cassette-betamax\",\n    \"cassette-tape\",\n    \"cassette-vhs\",\n    \"castle\",\n    \"cat-space\",\n    \"cat\",\n    \"cauldron\",\n    \"cedi-sign\",\n    \"cent-sign\",\n    \"certificate\",\n    \"chair-office\",\n    \"chair\",\n    \"chalkboard-user\",\n    \"chalkboard\",\n    \"champagne-glass\",\n    \"champagne-glasses\",\n    \"charging-station\",\n    \"chart-area\",\n    \"chart-bar\",\n    \"chart-bullet\",\n    \"chart-candlestick\",\n    \"chart-column\",\n    \"chart-diagram\",\n    \"chart-fft\",\n    \"chart-gantt\",\n    \"chart-kanban\",\n    \"chart-line-down\",\n    \"chart-line-up-down\",\n    \"chart-line-up\",\n    \"chart-line\",\n    \"chart-mixed-up-circle-currency\",\n    \"chart-mixed-up-circle-dollar\",\n    \"chart-mixed\",\n    \"chart-network\",\n    \"chart-pie-simple-circle-currency\",\n    \"chart-pie-simple-circle-dollar\",\n    \"chart-pie-simple\",\n    \"chart-pie\",\n    \"chart-pyramid\",\n    \"chart-radar\",\n    \"chart-scatter-3d\",\n    \"chart-scatter-bubble\",\n    \"chart-scatter\",\n    \"chart-simple-horizontal\",\n    \"chart-simple\",\n    \"chart-sine\",\n    \"chart-tree-map\",\n    \"chart-user\",\n    \"chart-waterfall\",\n    \"check-double\",\n    \"check-to-slot\",\n    \"check\",\n    \"cheese-swiss\",\n    \"cheese\",\n    \"cherries\",\n    \"chess-bishop-piece\",\n    \"chess-bishop\",\n    \"chess-board\",\n    \"chess-clock-flip\",\n    \"chess-clock\",\n    \"chess-king-piece\",\n    \"chess-king\",\n    \"chess-knight-piece\",\n    \"chess-knight\",\n    \"chess-pawn-piece\",\n    \"chess-pawn\",\n    \"chess-queen-piece\",\n    \"chess-queen\",\n    \"chess-rook-piece\",\n    \"chess-rook\",\n    \"chess\",\n    \"chestnut\",\n    \"chevron-down\",\n    \"chevron-left\",\n    \"chevron-right\",\n    \"chevron-up\",\n    \"chevrons-down\",\n    \"chevrons-left\",\n    \"chevrons-right\",\n    \"chevrons-up\",\n    \"chf-sign\",\n    \"child-combatant\",\n    \"child-dress\",\n    \"child-reaching\",\n    \"child\",\n    \"children\",\n    \"chimney\",\n    \"chopsticks\",\n    \"church\",\n    \"circle-0\",\n    \"circle-1\",\n    \"circle-2\",\n    \"circle-3\",\n    \"circle-4\",\n    \"circle-5\",\n    \"circle-6\",\n    \"circle-7\",\n    \"circle-8\",\n    \"circle-9\",\n    \"circle-a\",\n    \"circle-ampersand\",\n    \"circle-arrow-down-left\",\n    \"circle-arrow-down-right\",\n    \"circle-arrow-down\",\n    \"circle-arrow-left\",\n    \"circle-arrow-right\",\n    \"circle-arrow-up-left\",\n    \"circle-arrow-up-right\",\n    \"circle-arrow-up\",\n    \"circle-b\",\n    \"circle-bolt\",\n    \"circle-book-open\",\n    \"circle-bookmark\",\n    \"circle-c\",\n    \"circle-calendar\",\n    \"circle-camera\",\n    \"circle-caret-down\",\n    \"circle-caret-left\",\n    \"circle-caret-right\",\n    \"circle-caret-up\",\n    \"circle-check\",\n    \"circle-chevron-down\",\n    \"circle-chevron-left\",\n    \"circle-chevron-right\",\n    \"circle-chevron-up\",\n    \"circle-d\",\n    \"circle-dashed\",\n    \"circle-divide\",\n    \"circle-dollar-to-slot\",\n    \"circle-dollar\",\n    \"circle-dot\",\n    \"circle-down-left\",\n    \"circle-down-right\",\n    \"circle-down\",\n    \"circle-e\",\n    \"circle-ellipsis-vertical\",\n    \"circle-ellipsis\",\n    \"circle-envelope\",\n    \"circle-euro\",\n    \"circle-exclamation-check\",\n    \"circle-exclamation\",\n    \"circle-f\",\n    \"circle-g\",\n    \"circle-gf\",\n    \"circle-h\",\n    \"circle-half-stroke\",\n    \"circle-half\",\n    \"circle-heart\",\n    \"circle-i\",\n    \"circle-info\",\n    \"circle-j\",\n    \"circle-k\",\n    \"circle-l\",\n    \"circle-left\",\n    \"circle-location-arrow\",\n    \"circle-m\",\n    \"circle-microphone-lines\",\n    \"circle-microphone\",\n    \"circle-minus\",\n    \"circle-n\",\n    \"circle-nodes\",\n    \"circle-notch\",\n    \"circle-o\",\n    \"circle-p\",\n    \"circle-parking\",\n    \"circle-pause\",\n    \"circle-phone-flip\",\n    \"circle-phone-hangup\",\n    \"circle-phone\",\n    \"circle-play\",\n    \"circle-plus\",\n    \"circle-q\",\n    \"circle-quarter-stroke\",\n    \"circle-quarter\",\n    \"circle-quarters\",\n    \"circle-question\",\n    \"circle-r\",\n    \"circle-radiation\",\n    \"circle-right\",\n    \"circle-s\",\n    \"circle-small\",\n    \"circle-sort-down\",\n    \"circle-sort-up\",\n    \"circle-sort\",\n    \"circle-star\",\n    \"circle-sterling\",\n    \"circle-stop\",\n    \"circle-t\",\n    \"circle-three-quarters-stroke\",\n    \"circle-three-quarters\",\n    \"circle-trash\",\n    \"circle-u\",\n    \"circle-up-left\",\n    \"circle-up-right\",\n    \"circle-up\",\n    \"circle-user\",\n    \"circle-v\",\n    \"circle-video\",\n    \"circle-w\",\n    \"circle-waveform-lines\",\n    \"circle-wifi-circle-wifi\",\n    \"circle-wifi\",\n    \"circle-x\",\n    \"circle-xmark\",\n    \"circle-y\",\n    \"circle-yen\",\n    \"circle-z\",\n    \"circle\",\n    \"circles-overlap-3\",\n    \"circles-overlap\",\n    \"citrus-slice\",\n    \"citrus\",\n    \"city\",\n    \"clapperboard-play\",\n    \"clapperboard\",\n    \"clarinet\",\n    \"claw-marks\",\n    \"clipboard-check\",\n    \"clipboard-list-check\",\n    \"clipboard-list\",\n    \"clipboard-medical\",\n    \"clipboard-prescription\",\n    \"clipboard-question\",\n    \"clipboard-user\",\n    \"clipboard\",\n    \"clock-desk\",\n    \"clock-eight-thirty\",\n    \"clock-eight\",\n    \"clock-eleven-thirty\",\n    \"clock-eleven\",\n    \"clock-five-thirty\",\n    \"clock-five\",\n    \"clock-four-thirty\",\n    \"clock-nine-thirty\",\n    \"clock-nine\",\n    \"clock-one-thirty\",\n    \"clock-one\",\n    \"clock-rotate-left\",\n    \"clock-seven-thirty\",\n    \"clock-seven\",\n    \"clock-six-thirty\",\n    \"clock-six\",\n    \"clock-ten-thirty\",\n    \"clock-ten\",\n    \"clock-three-thirty\",\n    \"clock-three\",\n    \"clock-twelve-thirty\",\n    \"clock-twelve\",\n    \"clock-two-thirty\",\n    \"clock-two\",\n    \"clock\",\n    \"clone\",\n    \"closed-captioning-slash\",\n    \"closed-captioning\",\n    \"clothes-hanger\",\n    \"cloud-arrow-down\",\n    \"cloud-arrow-up\",\n    \"cloud-binary\",\n    \"cloud-bolt-moon\",\n    \"cloud-bolt-sun\",\n    \"cloud-bolt\",\n    \"cloud-check\",\n    \"cloud-drizzle\",\n    \"cloud-exclamation\",\n    \"cloud-fog\",\n    \"cloud-hail-mixed\",\n    \"cloud-hail\",\n    \"cloud-meatball\",\n    \"cloud-minus\",\n    \"cloud-moon-rain\",\n    \"cloud-moon\",\n    \"cloud-music\",\n    \"cloud-plus\",\n    \"cloud-question\",\n    \"cloud-rain\",\n    \"cloud-rainbow\",\n    \"cloud-showers-heavy\",\n    \"cloud-showers-water\",\n    \"cloud-showers\",\n    \"cloud-slash\",\n    \"cloud-sleet\",\n    \"cloud-snow\",\n    \"cloud-sun-rain\",\n    \"cloud-sun\",\n    \"cloud-word\",\n    \"cloud-xmark\",\n    \"cloud\",\n    \"clouds-moon\",\n    \"clouds-sun\",\n    \"clouds\",\n    \"clover\",\n    \"club\",\n    \"coconut\",\n    \"code-branch\",\n    \"code-commit\",\n    \"code-compare\",\n    \"code-fork\",\n    \"code-merge\",\n    \"code-pull-request-closed\",\n    \"code-pull-request-draft\",\n    \"code-pull-request\",\n    \"code-simple\",\n    \"code\",\n    \"coffee-bean\",\n    \"coffee-beans\",\n    \"coffee-pot\",\n    \"coffin-cross\",\n    \"coffin\",\n    \"coin-blank\",\n    \"coin-front\",\n    \"coin-vertical\",\n    \"coin\",\n    \"coins\",\n    \"colon-sign\",\n    \"colon\",\n    \"columns-3\",\n    \"comet\",\n    \"comma\",\n    \"command\",\n    \"comment-arrow-down\",\n    \"comment-arrow-up-right\",\n    \"comment-arrow-up\",\n    \"comment-captions\",\n    \"comment-check\",\n    \"comment-code\",\n    \"comment-dollar\",\n    \"comment-dots\",\n    \"comment-exclamation\",\n    \"comment-heart\",\n    \"comment-image\",\n    \"comment-lines\",\n    \"comment-medical\",\n    \"comment-middle-top\",\n    \"comment-middle\",\n    \"comment-minus\",\n    \"comment-music\",\n    \"comment-nodes\",\n    \"comment-pen\",\n    \"comment-plus\",\n    \"comment-question\",\n    \"comment-quote\",\n    \"comment-slash\",\n    \"comment-smile\",\n    \"comment-sms\",\n    \"comment-text\",\n    \"comment-xmark\",\n    \"comment\",\n    \"comments-dollar\",\n    \"comments-question-check\",\n    \"comments-question\",\n    \"comments\",\n    \"compact-disc\",\n    \"compass-drafting\",\n    \"compass-slash\",\n    \"compass\",\n    \"compress-wide\",\n    \"compress\",\n    \"computer-classic\",\n    \"computer-mouse-scrollwheel\",\n    \"computer-mouse\",\n    \"computer-speaker\",\n    \"computer\",\n    \"container-storage\",\n    \"conveyor-belt-arm\",\n    \"conveyor-belt-boxes\",\n    \"conveyor-belt-empty\",\n    \"conveyor-belt\",\n    \"cookie-bite\",\n    \"cookie\",\n    \"copy\",\n    \"copyright\",\n    \"corn\",\n    \"corner\",\n    \"couch\",\n    \"court-sport\",\n    \"cow\",\n    \"cowbell-circle-plus\",\n    \"cowbell\",\n    \"crab\",\n    \"crate-apple\",\n    \"crate-empty\",\n    \"credit-card-blank\",\n    \"credit-card-front\",\n    \"credit-card\",\n    \"cricket-bat-ball\",\n    \"croissant\",\n    \"crop-simple\",\n    \"crop\",\n    \"cross\",\n    \"crosshairs-simple\",\n    \"crosshairs\",\n    \"crow\",\n    \"crown\",\n    \"crutch\",\n    \"crutches\",\n    \"cruzeiro-sign\",\n    \"crystal-ball\",\n    \"cube\",\n    \"cubes-stacked\",\n    \"cubes\",\n    \"cucumber\",\n    \"cup-straw-swoosh\",\n    \"cup-straw\",\n    \"cup-togo\",\n    \"cupcake\",\n    \"curling-stone\",\n    \"custard\",\n    \"d\",\n    \"dagger\",\n    \"dash\",\n    \"database\",\n    \"deer-rudolph\",\n    \"deer\",\n    \"delete-left\",\n    \"delete-right\",\n    \"democrat\",\n    \"desktop-arrow-down\",\n    \"desktop\",\n    \"dharmachakra\",\n    \"diagram-cells\",\n    \"diagram-lean-canvas\",\n    \"diagram-nested\",\n    \"diagram-next\",\n    \"diagram-predecessor\",\n    \"diagram-previous\",\n    \"diagram-project\",\n    \"diagram-sankey\",\n    \"diagram-subtask\",\n    \"diagram-successor\",\n    \"diagram-venn\",\n    \"dial-high\",\n    \"dial-low\",\n    \"dial-max\",\n    \"dial-med-low\",\n    \"dial-med\",\n    \"dial-min\",\n    \"dial-off\",\n    \"dial\",\n    \"diamond-exclamation\",\n    \"diamond-half-stroke\",\n    \"diamond-half\",\n    \"diamond-turn-right\",\n    \"diamond\",\n    \"diamonds-4\",\n    \"dice-d10\",\n    \"dice-d12\",\n    \"dice-d20\",\n    \"dice-d4\",\n    \"dice-d6\",\n    \"dice-d8\",\n    \"dice-five\",\n    \"dice-four\",\n    \"dice-one\",\n    \"dice-six\",\n    \"dice-three\",\n    \"dice-two\",\n    \"dice\",\n    \"dinosaur\",\n    \"diploma\",\n    \"disc-drive\",\n    \"disease\",\n    \"display-arrow-down\",\n    \"display-chart-up-circle-currency\",\n    \"display-chart-up-circle-dollar\",\n    \"display-chart-up\",\n    \"display-code\",\n    \"display-medical\",\n    \"display-slash\",\n    \"display\",\n    \"distribute-spacing-horizontal\",\n    \"distribute-spacing-vertical\",\n    \"ditto\",\n    \"divide\",\n    \"dna\",\n    \"do-not-enter\",\n    \"dog-leashed\",\n    \"dog\",\n    \"dollar-sign\",\n    \"dolly-empty\",\n    \"dolly\",\n    \"dolphin\",\n    \"dong-sign\",\n    \"donut\",\n    \"door-closed\",\n    \"door-open\",\n    \"dove\",\n    \"down-from-bracket\",\n    \"down-from-dotted-line\",\n    \"down-from-line\",\n    \"down-left-and-up-right-to-center\",\n    \"down-left\",\n    \"down-long\",\n    \"down-right\",\n    \"down-to-bracket\",\n    \"down-to-dotted-line\",\n    \"down-to-line\",\n    \"down\",\n    \"download\",\n    \"dragon\",\n    \"draw-circle\",\n    \"draw-polygon\",\n    \"draw-square\",\n    \"dreidel\",\n    \"drone-front\",\n    \"drone\",\n    \"droplet-degree\",\n    \"droplet-percent\",\n    \"droplet-slash\",\n    \"droplet\",\n    \"drum-steelpan\",\n    \"drum\",\n    \"drumstick-bite\",\n    \"drumstick\",\n    \"dryer-heat\",\n    \"dryer\",\n    \"duck\",\n    \"dumbbell\",\n    \"dumpster-fire\",\n    \"dumpster\",\n    \"dungeon\",\n    \"e\",\n    \"ear-deaf\",\n    \"ear-listen\",\n    \"ear-muffs\",\n    \"ear\",\n    \"earth-africa\",\n    \"earth-americas\",\n    \"earth-asia\",\n    \"earth-europe\",\n    \"earth-oceania\",\n    \"eclipse\",\n    \"egg-fried\",\n    \"egg\",\n    \"eggplant\",\n    \"eject\",\n    \"elephant\",\n    \"elevator\",\n    \"ellipsis-stroke-vertical\",\n    \"ellipsis-stroke\",\n    \"ellipsis-vertical\",\n    \"ellipsis\",\n    \"empty-set\",\n    \"engine-warning\",\n    \"engine\",\n    \"envelope-circle-check\",\n    \"envelope-dot\",\n    \"envelope-open-dollar\",\n    \"envelope-open-text\",\n    \"envelope-open\",\n    \"envelope\",\n    \"envelopes-bulk\",\n    \"envelopes\",\n    \"equals\",\n    \"eraser\",\n    \"escalator\",\n    \"ethernet\",\n    \"euro-sign\",\n    \"excavator\",\n    \"exclamation\",\n    \"expand-wide\",\n    \"expand\",\n    \"explosion\",\n    \"eye-dropper-full\",\n    \"eye-dropper-half\",\n    \"eye-dropper\",\n    \"eye-evil\",\n    \"eye-low-vision\",\n    \"eye-slash\",\n    \"eye\",\n    \"eyes\",\n    \"f\",\n    \"face-angry-horns\",\n    \"face-angry\",\n    \"face-anguished\",\n    \"face-anxious-sweat\",\n    \"face-astonished\",\n    \"face-awesome\",\n    \"face-beam-hand-over-mouth\",\n    \"face-clouds\",\n    \"face-confounded\",\n    \"face-confused\",\n    \"face-cowboy-hat\",\n    \"face-diagonal-mouth\",\n    \"face-disappointed\",\n    \"face-disguise\",\n    \"face-dizzy\",\n    \"face-dotted\",\n    \"face-downcast-sweat\",\n    \"face-drooling\",\n    \"face-exhaling\",\n    \"face-explode\",\n    \"face-expressionless\",\n    \"face-eyes-xmarks\",\n    \"face-fearful\",\n    \"face-flushed\",\n    \"face-frown-open\",\n    \"face-frown-slight\",\n    \"face-frown\",\n    \"face-glasses\",\n    \"face-grimace\",\n    \"face-grin-beam-sweat\",\n    \"face-grin-beam\",\n    \"face-grin-hearts\",\n    \"face-grin-squint-tears\",\n    \"face-grin-squint\",\n    \"face-grin-stars\",\n    \"face-grin-tears\",\n    \"face-grin-tongue-squint\",\n    \"face-grin-tongue-wink\",\n    \"face-grin-tongue\",\n    \"face-grin-wide\",\n    \"face-grin-wink\",\n    \"face-grin\",\n    \"face-hand-over-mouth\",\n    \"face-hand-peeking\",\n    \"face-hand-yawn\",\n    \"face-head-bandage\",\n    \"face-holding-back-tears\",\n    \"face-hushed\",\n    \"face-icicles\",\n    \"face-kiss-beam\",\n    \"face-kiss-closed-eyes\",\n    \"face-kiss-wink-heart\",\n    \"face-kiss\",\n    \"face-laugh-beam\",\n    \"face-laugh-squint\",\n    \"face-laugh-wink\",\n    \"face-laugh\",\n    \"face-lying\",\n    \"face-mask\",\n    \"face-meh-blank\",\n    \"face-meh\",\n    \"face-melting\",\n    \"face-monocle\",\n    \"face-nauseated\",\n    \"face-nose-steam\",\n    \"face-party\",\n    \"face-pensive\",\n    \"face-persevering\",\n    \"face-pleading\",\n    \"face-pouting\",\n    \"face-raised-eyebrow\",\n    \"face-relieved\",\n    \"face-rolling-eyes\",\n    \"face-sad-cry\",\n    \"face-sad-sweat\",\n    \"face-sad-tear\",\n    \"face-saluting\",\n    \"face-scream\",\n    \"face-shush\",\n    \"face-sleeping\",\n    \"face-sleepy\",\n    \"face-smile-beam\",\n    \"face-smile-halo\",\n    \"face-smile-hearts\",\n    \"face-smile-horns\",\n    \"face-smile-plus\",\n    \"face-smile-relaxed\",\n    \"face-smile-tear\",\n    \"face-smile-tongue\",\n    \"face-smile-upside-down\",\n    \"face-smile-wink\",\n    \"face-smile\",\n    \"face-smiling-hands\",\n    \"face-smirking\",\n    \"face-spiral-eyes\",\n    \"face-sunglasses\",\n    \"face-surprise\",\n    \"face-swear\",\n    \"face-thermometer\",\n    \"face-thinking\",\n    \"face-tired\",\n    \"face-tissue\",\n    \"face-tongue-money\",\n    \"face-tongue-sweat\",\n    \"face-unamused\",\n    \"face-viewfinder\",\n    \"face-vomit\",\n    \"face-weary\",\n    \"face-woozy\",\n    \"face-worried\",\n    \"face-zany\",\n    \"face-zipper\",\n    \"falafel\",\n    \"family-dress\",\n    \"family-pants\",\n    \"family\",\n    \"fan-table\",\n    \"fan\",\n    \"farm\",\n    \"faucet-drip\",\n    \"faucet\",\n    \"fax\",\n    \"feather-pointed\",\n    \"feather\",\n    \"fence\",\n    \"ferris-wheel\",\n    \"ferry\",\n    \"field-hockey-stick-ball\",\n    \"file-arrow-down\",\n    \"file-arrow-up\",\n    \"file-audio\",\n    \"file-binary\",\n    \"file-cad\",\n    \"file-certificate\",\n    \"file-chart-column\",\n    \"file-chart-pie\",\n    \"file-check\",\n    \"file-circle-check\",\n    \"file-circle-exclamation\",\n    \"file-circle-info\",\n    \"file-circle-minus\",\n    \"file-circle-plus\",\n    \"file-circle-question\",\n    \"file-circle-xmark\",\n    \"file-code\",\n    \"file-contract\",\n    \"file-csv\",\n    \"file-dashed-line\",\n    \"file-doc\",\n    \"file-eps\",\n    \"file-excel\",\n    \"file-exclamation\",\n    \"file-export\",\n    \"file-fragment\",\n    \"file-gif\",\n    \"file-half-dashed\",\n    \"file-heart\",\n    \"file-image\",\n    \"file-import\",\n    \"file-invoice-dollar\",\n    \"file-invoice\",\n    \"file-jpg\",\n    \"file-lines\",\n    \"file-lock\",\n    \"file-magnifying-glass\",\n    \"file-medical\",\n    \"file-minus\",\n    \"file-mov\",\n    \"file-mp3\",\n    \"file-mp4\",\n    \"file-music\",\n    \"file-pdf\",\n    \"file-pen\",\n    \"file-plus-minus\",\n    \"file-plus\",\n    \"file-png\",\n    \"file-powerpoint\",\n    \"file-ppt\",\n    \"file-prescription\",\n    \"file-shield\",\n    \"file-signature\",\n    \"file-slash\",\n    \"file-spreadsheet\",\n    \"file-svg\",\n    \"file-user\",\n    \"file-vector\",\n    \"file-video\",\n    \"file-waveform\",\n    \"file-word\",\n    \"file-xls\",\n    \"file-xmark\",\n    \"file-xml\",\n    \"file-zip\",\n    \"file-zipper\",\n    \"file\",\n    \"files-medical\",\n    \"files\",\n    \"fill-drip\",\n    \"fill\",\n    \"film-canister\",\n    \"film-simple\",\n    \"film-slash\",\n    \"film\",\n    \"films\",\n    \"filter-circle-dollar\",\n    \"filter-circle-xmark\",\n    \"filter-list\",\n    \"filter-slash\",\n    \"filter\",\n    \"filters\",\n    \"fingerprint\",\n    \"fire-burner\",\n    \"fire-extinguisher\",\n    \"fire-flame-curved\",\n    \"fire-flame-simple\",\n    \"fire-flame\",\n    \"fire-hydrant\",\n    \"fire-smoke\",\n    \"fire\",\n    \"fireplace\",\n    \"fish-bones\",\n    \"fish-cooked\",\n    \"fish-fins\",\n    \"fish\",\n    \"fishing-rod\",\n    \"flag-checkered\",\n    \"flag-pennant\",\n    \"flag-swallowtail\",\n    \"flag-usa\",\n    \"flag\",\n    \"flashlight\",\n    \"flask-gear\",\n    \"flask-round-poison\",\n    \"flask-round-potion\",\n    \"flask-vial\",\n    \"flask\",\n    \"flatbread-stuffed\",\n    \"flatbread\",\n    \"floppy-disk-circle-arrow-right\",\n    \"floppy-disk-circle-xmark\",\n    \"floppy-disk-pen\",\n    \"floppy-disk\",\n    \"floppy-disks\",\n    \"florin-sign\",\n    \"flower-daffodil\",\n    \"flower-tulip\",\n    \"flower\",\n    \"flute\",\n    \"flux-capacitor\",\n    \"flying-disc\",\n    \"folder-arrow-down\",\n    \"folder-arrow-up\",\n    \"folder-bookmark\",\n    \"folder-check\",\n    \"folder-closed\",\n    \"folder-gear\",\n    \"folder-grid\",\n    \"folder-heart\",\n    \"folder-image\",\n    \"folder-magnifying-glass\",\n    \"folder-medical\",\n    \"folder-minus\",\n    \"folder-music\",\n    \"folder-open\",\n    \"folder-plus\",\n    \"folder-tree\",\n    \"folder-user\",\n    \"folder-xmark\",\n    \"folder\",\n    \"folders\",\n    \"fondue-pot\",\n    \"font-awesome\",\n    \"font-case\",\n    \"font\",\n    \"football-helmet\",\n    \"football\",\n    \"fork-knife\",\n    \"fork\",\n    \"forklift\",\n    \"fort\",\n    \"forward-fast\",\n    \"forward-step\",\n    \"forward\",\n    \"frame\",\n    \"franc-sign\",\n    \"french-fries\",\n    \"frog\",\n    \"function\",\n    \"futbol\",\n    \"g\",\n    \"galaxy\",\n    \"gallery-thumbnails\",\n    \"game-board-simple\",\n    \"game-board\",\n    \"game-console-handheld-crank\",\n    \"game-console-handheld\",\n    \"gamepad-modern\",\n    \"gamepad\",\n    \"garage-car\",\n    \"garage-open\",\n    \"garage\",\n    \"garlic\",\n    \"gas-pump-slash\",\n    \"gas-pump\",\n    \"gauge-circle-bolt\",\n    \"gauge-circle-minus\",\n    \"gauge-circle-plus\",\n    \"gauge-high\",\n    \"gauge-low\",\n    \"gauge-max\",\n    \"gauge-min\",\n    \"gauge-simple-high\",\n    \"gauge-simple-low\",\n    \"gauge-simple-max\",\n    \"gauge-simple-min\",\n    \"gauge-simple\",\n    \"gauge\",\n    \"gavel\",\n    \"gear-code\",\n    \"gear-complex-code\",\n    \"gear-complex\",\n    \"gear\",\n    \"gears\",\n    \"gem\",\n    \"genderless\",\n    \"ghost\",\n    \"gif\",\n    \"gift-card\",\n    \"gift\",\n    \"gifts\",\n    \"gingerbread-man\",\n    \"glass-citrus\",\n    \"glass-empty\",\n    \"glass-half\",\n    \"glass-water-droplet\",\n    \"glass-water\",\n    \"glass\",\n    \"glasses-round\",\n    \"glasses\",\n    \"globe-pointer\",\n    \"globe-snow\",\n    \"globe-stand\",\n    \"globe-wifi\",\n    \"globe\",\n    \"goal-net\",\n    \"golf-ball-tee\",\n    \"golf-club\",\n    \"golf-flag-hole\",\n    \"gopuram\",\n    \"graduation-cap\",\n    \"gramophone\",\n    \"grapes\",\n    \"grate-droplet\",\n    \"grate\",\n    \"greater-than-equal\",\n    \"greater-than\",\n    \"grid-2-plus\",\n    \"grid-2\",\n    \"grid-4\",\n    \"grid-5\",\n    \"grid-dividers\",\n    \"grid-horizontal\",\n    \"grid-round-2-plus\",\n    \"grid-round-2\",\n    \"grid-round-4\",\n    \"grid-round-5\",\n    \"grid-round\",\n    \"grid\",\n    \"grill-fire\",\n    \"grill-hot\",\n    \"grill\",\n    \"grip-dots-vertical\",\n    \"grip-dots\",\n    \"grip-lines-vertical\",\n    \"grip-lines\",\n    \"grip-vertical\",\n    \"grip\",\n    \"group-arrows-rotate\",\n    \"guarani-sign\",\n    \"guitar-electric\",\n    \"guitar\",\n    \"guitars\",\n    \"gun-slash\",\n    \"gun-squirt\",\n    \"gun\",\n    \"h\",\n    \"h1\",\n    \"h2\",\n    \"h3\",\n    \"h4\",\n    \"h5\",\n    \"h6\",\n    \"hammer-brush\",\n    \"hammer-crash\",\n    \"hammer-war\",\n    \"hammer\",\n    \"hamsa\",\n    \"hand-back-fist\",\n    \"hand-back-point-down\",\n    \"hand-back-point-left\",\n    \"hand-back-point-ribbon\",\n    \"hand-back-point-right\",\n    \"hand-back-point-up\",\n    \"hand-dots\",\n    \"hand-fingers-crossed\",\n    \"hand-fist\",\n    \"hand-heart\",\n    \"hand-holding-box\",\n    \"hand-holding-circle-dollar\",\n    \"hand-holding-dollar\",\n    \"hand-holding-droplet\",\n    \"hand-holding-hand\",\n    \"hand-holding-heart\",\n    \"hand-holding-magic\",\n    \"hand-holding-medical\",\n    \"hand-holding-seedling\",\n    \"hand-holding-skull\",\n    \"hand-holding\",\n    \"hand-horns\",\n    \"hand-lizard\",\n    \"hand-love\",\n    \"hand-middle-finger\",\n    \"hand-peace\",\n    \"hand-point-down\",\n    \"hand-point-left\",\n    \"hand-point-ribbon\",\n    \"hand-point-right\",\n    \"hand-point-up\",\n    \"hand-pointer\",\n    \"hand-scissors\",\n    \"hand-sparkles\",\n    \"hand-spock\",\n    \"hand-wave\",\n    \"hand\",\n    \"handcuffs\",\n    \"hands-asl-interpreting\",\n    \"hands-bound\",\n    \"hands-bubbles\",\n    \"hands-clapping\",\n    \"hands-holding-child\",\n    \"hands-holding-circle\",\n    \"hands-holding-diamond\",\n    \"hands-holding-dollar\",\n    \"hands-holding-heart\",\n    \"hands-holding\",\n    \"hands-praying\",\n    \"hands\",\n    \"handshake-angle\",\n    \"handshake-simple-slash\",\n    \"handshake-simple\",\n    \"handshake-slash\",\n    \"handshake\",\n    \"hanukiah\",\n    \"hard-drive\",\n    \"hashtag-lock\",\n    \"hashtag\",\n    \"hat-beach\",\n    \"hat-chef\",\n    \"hat-cowboy-side\",\n    \"hat-cowboy\",\n    \"hat-santa\",\n    \"hat-winter\",\n    \"hat-witch\",\n    \"hat-wizard\",\n    \"head-side-brain\",\n    \"head-side-cough-slash\",\n    \"head-side-cough\",\n    \"head-side-gear\",\n    \"head-side-goggles\",\n    \"head-side-headphones\",\n    \"head-side-heart\",\n    \"head-side-mask\",\n    \"head-side-medical\",\n    \"head-side-virus\",\n    \"head-side\",\n    \"heading\",\n    \"headphones-simple\",\n    \"headphones\",\n    \"headset\",\n    \"heart-circle-bolt\",\n    \"heart-circle-check\",\n    \"heart-circle-exclamation\",\n    \"heart-circle-minus\",\n    \"heart-circle-plus\",\n    \"heart-circle-xmark\",\n    \"heart-crack\",\n    \"heart-half-stroke\",\n    \"heart-half\",\n    \"heart-pulse\",\n    \"heart\",\n    \"heat\",\n    \"helicopter-symbol\",\n    \"helicopter\",\n    \"helmet-battle\",\n    \"helmet-safety\",\n    \"helmet-un\",\n    \"hexagon-check\",\n    \"hexagon-divide\",\n    \"hexagon-exclamation\",\n    \"hexagon-image\",\n    \"hexagon-minus\",\n    \"hexagon-nodes-bolt\",\n    \"hexagon-nodes\",\n    \"hexagon-plus\",\n    \"hexagon-vertical-nft-slanted\",\n    \"hexagon-vertical-nft\",\n    \"hexagon-xmark\",\n    \"hexagon\",\n    \"high-definition\",\n    \"highlighter-line\",\n    \"highlighter\",\n    \"hill-avalanche\",\n    \"hill-rockslide\",\n    \"hippo\",\n    \"hockey-mask\",\n    \"hockey-puck\",\n    \"hockey-stick-puck\",\n    \"hockey-sticks\",\n    \"holly-berry\",\n    \"honey-pot\",\n    \"hood-cloak\",\n    \"horizontal-rule\",\n    \"horse-head\",\n    \"horse-saddle\",\n    \"horse\",\n    \"hose-reel\",\n    \"hose\",\n    \"hospital-user\",\n    \"hospital\",\n    \"hospitals\",\n    \"hot-tub-person\",\n    \"hotdog\",\n    \"hotel\",\n    \"hourglass-clock\",\n    \"hourglass-end\",\n    \"hourglass-half\",\n    \"hourglass-start\",\n    \"hourglass\",\n    \"house-blank\",\n    \"house-building\",\n    \"house-chimney-blank\",\n    \"house-chimney-crack\",\n    \"house-chimney-heart\",\n    \"house-chimney-medical\",\n    \"house-chimney-user\",\n    \"house-chimney-window\",\n    \"house-chimney\",\n    \"house-circle-check\",\n    \"house-circle-exclamation\",\n    \"house-circle-xmark\",\n    \"house-crack\",\n    \"house-day\",\n    \"house-fire\",\n    \"house-flag\",\n    \"house-flood-water-circle-arrow-right\",\n    \"house-flood-water\",\n    \"house-heart\",\n    \"house-laptop\",\n    \"house-lock\",\n    \"house-medical-circle-check\",\n    \"house-medical-circle-exclamation\",\n    \"house-medical-circle-xmark\",\n    \"house-medical-flag\",\n    \"house-medical\",\n    \"house-night\",\n    \"house-person-leave\",\n    \"house-person-return\",\n    \"house-signal\",\n    \"house-tree\",\n    \"house-tsunami\",\n    \"house-turret\",\n    \"house-user\",\n    \"house-water\",\n    \"house-window\",\n    \"house\",\n    \"hryvnia-sign\",\n    \"hundred-points\",\n    \"hurricane\",\n    \"hydra\",\n    \"hyphen\",\n    \"i-cursor\",\n    \"i\",\n    \"ice-cream\",\n    \"ice-skate\",\n    \"icicles\",\n    \"icons\",\n    \"id-badge\",\n    \"id-card-clip\",\n    \"id-card\",\n    \"igloo\",\n    \"image-landscape\",\n    \"image-polaroid-user\",\n    \"image-polaroid\",\n    \"image-portrait\",\n    \"image-slash\",\n    \"image-user\",\n    \"image\",\n    \"images-user\",\n    \"images\",\n    \"inbox-full\",\n    \"inbox-in\",\n    \"inbox-out\",\n    \"inbox\",\n    \"inboxes\",\n    \"indent\",\n    \"indian-rupee-sign\",\n    \"industry-windows\",\n    \"industry\",\n    \"infinity\",\n    \"info\",\n    \"inhaler\",\n    \"input-numeric\",\n    \"input-pipe\",\n    \"input-text\",\n    \"integral\",\n    \"interrobang\",\n    \"intersection\",\n    \"island-tropical\",\n    \"italic\",\n    \"j\",\n    \"jack-o-lantern\",\n    \"jar-wheat\",\n    \"jar\",\n    \"jedi\",\n    \"jet-fighter-up\",\n    \"jet-fighter\",\n    \"joint\",\n    \"joystick\",\n    \"jug-bottle\",\n    \"jug-detergent\",\n    \"jug\",\n    \"k\",\n    \"kaaba\",\n    \"kazoo\",\n    \"kerning\",\n    \"key-skeleton-left-right\",\n    \"key-skeleton\",\n    \"key\",\n    \"keyboard-brightness-low\",\n    \"keyboard-brightness\",\n    \"keyboard-down\",\n    \"keyboard-left\",\n    \"keyboard\",\n    \"keynote\",\n    \"khanda\",\n    \"kidneys\",\n    \"kip-sign\",\n    \"kit-medical\",\n    \"kitchen-set\",\n    \"kite\",\n    \"kiwi-bird\",\n    \"kiwi-fruit\",\n    \"knife-kitchen\",\n    \"knife\",\n    \"l\",\n    \"lacrosse-stick-ball\",\n    \"lacrosse-stick\",\n    \"lambda\",\n    \"lamp-desk\",\n    \"lamp-floor\",\n    \"lamp-street\",\n    \"lamp\",\n    \"land-mine-on\",\n    \"landmark-dome\",\n    \"landmark-flag\",\n    \"landmark-magnifying-glass\",\n    \"landmark\",\n    \"language\",\n    \"laptop-arrow-down\",\n    \"laptop-binary\",\n    \"laptop-code\",\n    \"laptop-file\",\n    \"laptop-medical\",\n    \"laptop-mobile\",\n    \"laptop-slash\",\n    \"laptop\",\n    \"lari-sign\",\n    \"lasso-sparkles\",\n    \"lasso\",\n    \"layer-group\",\n    \"layer-minus\",\n    \"layer-plus\",\n    \"leaf-heart\",\n    \"leaf-maple\",\n    \"leaf-oak\",\n    \"leaf\",\n    \"leafy-green\",\n    \"left-from-bracket\",\n    \"left-from-line\",\n    \"left-long-to-line\",\n    \"left-long\",\n    \"left-right\",\n    \"left-to-bracket\",\n    \"left-to-line\",\n    \"left\",\n    \"lemon\",\n    \"less-than-equal\",\n    \"less-than\",\n    \"life-ring\",\n    \"light-ceiling\",\n    \"light-emergency-on\",\n    \"light-emergency\",\n    \"light-switch-off\",\n    \"light-switch-on\",\n    \"light-switch\",\n    \"lightbulb-cfl-on\",\n    \"lightbulb-cfl\",\n    \"lightbulb-dollar\",\n    \"lightbulb-exclamation-on\",\n    \"lightbulb-exclamation\",\n    \"lightbulb-gear\",\n    \"lightbulb-message\",\n    \"lightbulb-on\",\n    \"lightbulb-slash\",\n    \"lightbulb\",\n    \"lighthouse\",\n    \"lights-holiday\",\n    \"line-columns\",\n    \"line-height\",\n    \"lines-leaning\",\n    \"link-horizontal-slash\",\n    \"link-horizontal\",\n    \"link-simple-slash\",\n    \"link-simple\",\n    \"link-slash\",\n    \"link\",\n    \"lips\",\n    \"lira-sign\",\n    \"list-check\",\n    \"list-dropdown\",\n    \"list-music\",\n    \"list-ol\",\n    \"list-radio\",\n    \"list-timeline\",\n    \"list-tree\",\n    \"list-ul\",\n    \"list\",\n    \"litecoin-sign\",\n    \"loader\",\n    \"lobster\",\n    \"location-arrow-up\",\n    \"location-arrow\",\n    \"location-check\",\n    \"location-crosshairs-slash\",\n    \"location-crosshairs\",\n    \"location-dot-slash\",\n    \"location-dot\",\n    \"location-exclamation\",\n    \"location-minus\",\n    \"location-pen\",\n    \"location-pin-lock\",\n    \"location-pin-slash\",\n    \"location-pin\",\n    \"location-plus\",\n    \"location-question\",\n    \"location-smile\",\n    \"location-xmark\",\n    \"lock-a\",\n    \"lock-hashtag\",\n    \"lock-keyhole-open\",\n    \"lock-keyhole\",\n    \"lock-open\",\n    \"lock\",\n    \"locust\",\n    \"lollipop\",\n    \"loveseat\",\n    \"luchador-mask\",\n    \"lungs-virus\",\n    \"lungs\",\n    \"m\",\n    \"mace\",\n    \"magnet\",\n    \"magnifying-glass-arrow-right\",\n    \"magnifying-glass-arrows-rotate\",\n    \"magnifying-glass-chart\",\n    \"magnifying-glass-dollar\",\n    \"magnifying-glass-location\",\n    \"magnifying-glass-minus\",\n    \"magnifying-glass-music\",\n    \"magnifying-glass-play\",\n    \"magnifying-glass-plus\",\n    \"magnifying-glass-waveform\",\n    \"magnifying-glass\",\n    \"mailbox-flag-up\",\n    \"mailbox\",\n    \"manat-sign\",\n    \"mandolin\",\n    \"mango\",\n    \"manhole\",\n    \"map-location-dot\",\n    \"map-location\",\n    \"map-pin\",\n    \"map\",\n    \"marker\",\n    \"mars-and-venus-burst\",\n    \"mars-and-venus\",\n    \"mars-double\",\n    \"mars-stroke-right\",\n    \"mars-stroke-up\",\n    \"mars-stroke\",\n    \"mars\",\n    \"martini-glass-citrus\",\n    \"martini-glass-empty\",\n    \"martini-glass\",\n    \"mask-face\",\n    \"mask-snorkel\",\n    \"mask-ventilator\",\n    \"mask\",\n    \"masks-theater\",\n    \"mattress-pillow\",\n    \"maximize\",\n    \"meat\",\n    \"medal\",\n    \"megaphone\",\n    \"melon-slice\",\n    \"melon\",\n    \"memo-circle-check\",\n    \"memo-circle-info\",\n    \"memo-pad\",\n    \"memo\",\n    \"memory\",\n    \"menorah\",\n    \"mercury\",\n    \"merge\",\n    \"message-arrow-down\",\n    \"message-arrow-up-right\",\n    \"message-arrow-up\",\n    \"message-bot\",\n    \"message-captions\",\n    \"message-check\",\n    \"message-code\",\n    \"message-dollar\",\n    \"message-dots\",\n    \"message-exclamation\",\n    \"message-heart\",\n    \"message-image\",\n    \"message-lines\",\n    \"message-medical\",\n    \"message-middle-top\",\n    \"message-middle\",\n    \"message-minus\",\n    \"message-music\",\n    \"message-pen\",\n    \"message-plus\",\n    \"message-question\",\n    \"message-quote\",\n    \"message-slash\",\n    \"message-smile\",\n    \"message-sms\",\n    \"message-text\",\n    \"message-xmark\",\n    \"message\",\n    \"messages-dollar\",\n    \"messages-question\",\n    \"messages\",\n    \"meteor\",\n    \"meter-bolt\",\n    \"meter-droplet\",\n    \"meter-fire\",\n    \"meter\",\n    \"microchip-ai\",\n    \"microchip\",\n    \"microphone-lines-slash\",\n    \"microphone-lines\",\n    \"microphone-slash\",\n    \"microphone-stand\",\n    \"microphone\",\n    \"microscope\",\n    \"microwave\",\n    \"mill-sign\",\n    \"minimize\",\n    \"minus\",\n    \"mistletoe\",\n    \"mitten\",\n    \"mobile-button\",\n    \"mobile-notch\",\n    \"mobile-retro\",\n    \"mobile-screen-button\",\n    \"mobile-screen\",\n    \"mobile-signal-out\",\n    \"mobile-signal\",\n    \"mobile\",\n    \"money-bill-1-wave\",\n    \"money-bill-1\",\n    \"money-bill-simple-wave\",\n    \"money-bill-simple\",\n    \"money-bill-transfer\",\n    \"money-bill-trend-up\",\n    \"money-bill-wave\",\n    \"money-bill-wheat\",\n    \"money-bill\",\n    \"money-bills-simple\",\n    \"money-bills\",\n    \"money-check-dollar-pen\",\n    \"money-check-dollar\",\n    \"money-check-pen\",\n    \"money-check\",\n    \"money-from-bracket\",\n    \"money-simple-from-bracket\",\n    \"monitor-waveform\",\n    \"monkey\",\n    \"monument\",\n    \"moon-cloud\",\n    \"moon-over-sun\",\n    \"moon-stars\",\n    \"moon\",\n    \"moped\",\n    \"mortar-pestle\",\n    \"mosque\",\n    \"mosquito-net\",\n    \"mosquito\",\n    \"motorcycle\",\n    \"mound\",\n    \"mountain-city\",\n    \"mountain-sun\",\n    \"mountain\",\n    \"mountains\",\n    \"mouse-field\",\n    \"mp3-player\",\n    \"mug-hot\",\n    \"mug-marshmallows\",\n    \"mug-saucer\",\n    \"mug-tea-saucer\",\n    \"mug-tea\",\n    \"mug\",\n    \"mushroom\",\n    \"music-magnifying-glass\",\n    \"music-note-slash\",\n    \"music-note\",\n    \"music-slash\",\n    \"music\",\n    \"mustache\",\n    \"n\",\n    \"naira-sign\",\n    \"narwhal\",\n    \"nesting-dolls\",\n    \"network-wired\",\n    \"neuter\",\n    \"newspaper\",\n    \"nfc-lock\",\n    \"nfc-magnifying-glass\",\n    \"nfc-pen\",\n    \"nfc-signal\",\n    \"nfc-slash\",\n    \"nfc-symbol\",\n    \"nfc-trash\",\n    \"nfc\",\n    \"nose\",\n    \"not-equal\",\n    \"notdef\",\n    \"note-medical\",\n    \"note-sticky\",\n    \"note\",\n    \"notebook\",\n    \"notes-medical\",\n    \"notes\",\n    \"o\",\n    \"object-exclude\",\n    \"object-group\",\n    \"object-intersect\",\n    \"object-subtract\",\n    \"object-ungroup\",\n    \"object-union\",\n    \"objects-align-bottom\",\n    \"objects-align-center-horizontal\",\n    \"objects-align-center-vertical\",\n    \"objects-align-left\",\n    \"objects-align-right\",\n    \"objects-align-top\",\n    \"objects-column\",\n    \"octagon-check\",\n    \"octagon-divide\",\n    \"octagon-exclamation\",\n    \"octagon-minus\",\n    \"octagon-plus\",\n    \"octagon-xmark\",\n    \"octagon\",\n    \"octopus\",\n    \"oil-can-drip\",\n    \"oil-can\",\n    \"oil-temperature\",\n    \"oil-well\",\n    \"olive-branch\",\n    \"olive\",\n    \"om\",\n    \"omega\",\n    \"onion\",\n    \"option\",\n    \"ornament\",\n    \"otter\",\n    \"outdent\",\n    \"outlet\",\n    \"oven\",\n    \"overline\",\n    \"p\",\n    \"page-caret-down\",\n    \"page-caret-up\",\n    \"page\",\n    \"pager\",\n    \"paint-roller\",\n    \"paintbrush-fine\",\n    \"paintbrush-pencil\",\n    \"paintbrush\",\n    \"palette\",\n    \"pallet-box\",\n    \"pallet-boxes\",\n    \"pallet\",\n    \"pan-food\",\n    \"pan-frying\",\n    \"pancakes\",\n    \"panel-ews\",\n    \"panel-fire\",\n    \"panorama\",\n    \"paper-plane-top\",\n    \"paper-plane\",\n    \"paperclip-vertical\",\n    \"paperclip\",\n    \"parachute-box\",\n    \"paragraph-left\",\n    \"paragraph\",\n    \"party-bell\",\n    \"party-horn\",\n    \"passport\",\n    \"paste\",\n    \"pause\",\n    \"paw-claws\",\n    \"paw-simple\",\n    \"paw\",\n    \"peace\",\n    \"peach\",\n    \"peanut\",\n    \"peanuts\",\n    \"peapod\",\n    \"pear\",\n    \"pedestal\",\n    \"pegasus\",\n    \"pen-circle\",\n    \"pen-clip-slash\",\n    \"pen-clip\",\n    \"pen-fancy-slash\",\n    \"pen-fancy\",\n    \"pen-field\",\n    \"pen-line\",\n    \"pen-nib-slash\",\n    \"pen-nib\",\n    \"pen-paintbrush\",\n    \"pen-ruler\",\n    \"pen-slash\",\n    \"pen-swirl\",\n    \"pen-to-square\",\n    \"pen\",\n    \"pencil-mechanical\",\n    \"pencil-slash\",\n    \"pencil\",\n    \"people-arrows\",\n    \"people-carry-box\",\n    \"people-dress-simple\",\n    \"people-dress\",\n    \"people-group\",\n    \"people-line\",\n    \"people-pants-simple\",\n    \"people-pants\",\n    \"people-pulling\",\n    \"people-robbery\",\n    \"people-roof\",\n    \"people-simple\",\n    \"people\",\n    \"pepper-hot\",\n    \"pepper\",\n    \"percent\",\n    \"period\",\n    \"person-arrow-down-to-line\",\n    \"person-arrow-up-from-line\",\n    \"person-biking-mountain\",\n    \"person-biking\",\n    \"person-booth\",\n    \"person-breastfeeding\",\n    \"person-burst\",\n    \"person-cane\",\n    \"person-carry-box\",\n    \"person-chalkboard\",\n    \"person-circle-check\",\n    \"person-circle-exclamation\",\n    \"person-circle-minus\",\n    \"person-circle-plus\",\n    \"person-circle-question\",\n    \"person-circle-xmark\",\n    \"person-digging\",\n    \"person-dolly-empty\",\n    \"person-dolly\",\n    \"person-dots-from-line\",\n    \"person-dress-burst\",\n    \"person-dress-fairy\",\n    \"person-dress-simple\",\n    \"person-dress\",\n    \"person-drowning\",\n    \"person-fairy\",\n    \"person-falling-burst\",\n    \"person-falling\",\n    \"person-from-portal\",\n    \"person-half-dress\",\n    \"person-harassing\",\n    \"person-hiking\",\n    \"person-military-pointing\",\n    \"person-military-rifle\",\n    \"person-military-to-person\",\n    \"person-pinball\",\n    \"person-praying\",\n    \"person-pregnant\",\n    \"person-rays\",\n    \"person-rifle\",\n    \"person-running-fast\",\n    \"person-running\",\n    \"person-seat-reclined\",\n    \"person-seat\",\n    \"person-shelter\",\n    \"person-sign\",\n    \"person-simple\",\n    \"person-skating\",\n    \"person-ski-jumping\",\n    \"person-ski-lift\",\n    \"person-skiing-nordic\",\n    \"person-skiing\",\n    \"person-sledding\",\n    \"person-snowboarding\",\n    \"person-snowmobiling\",\n    \"person-swimming\",\n    \"person-through-window\",\n    \"person-to-door\",\n    \"person-to-portal\",\n    \"person-walking-arrow-loop-left\",\n    \"person-walking-arrow-right\",\n    \"person-walking-dashed-line-arrow-right\",\n    \"person-walking-luggage\",\n    \"person-walking-with-cane\",\n    \"person-walking\",\n    \"person\",\n    \"peseta-sign\",\n    \"peso-sign\",\n    \"phone-arrow-down-left\",\n    \"phone-arrow-right\",\n    \"phone-arrow-up-right\",\n    \"phone-flip\",\n    \"phone-hangup\",\n    \"phone-intercom\",\n    \"phone-missed\",\n    \"phone-office\",\n    \"phone-plus\",\n    \"phone-rotary\",\n    \"phone-slash\",\n    \"phone-volume\",\n    \"phone-xmark\",\n    \"phone\",\n    \"photo-film-music\",\n    \"photo-film\",\n    \"pi\",\n    \"piano-keyboard\",\n    \"piano\",\n    \"pickaxe\",\n    \"pickleball\",\n    \"pie\",\n    \"pig\",\n    \"piggy-bank\",\n    \"pills\",\n    \"pinata\",\n    \"pinball\",\n    \"pineapple\",\n    \"pipe-circle-check\",\n    \"pipe-collar\",\n    \"pipe-section\",\n    \"pipe-smoking\",\n    \"pipe-valve\",\n    \"pipe\",\n    \"pizza-slice\",\n    \"pizza\",\n    \"place-of-worship\",\n    \"plane-arrival\",\n    \"plane-circle-check\",\n    \"plane-circle-exclamation\",\n    \"plane-circle-xmark\",\n    \"plane-departure\",\n    \"plane-engines\",\n    \"plane-lock\",\n    \"plane-prop\",\n    \"plane-slash\",\n    \"plane-tail\",\n    \"plane-up-slash\",\n    \"plane-up\",\n    \"plane\",\n    \"planet-moon\",\n    \"planet-ringed\",\n    \"plant-wilt\",\n    \"plate-utensils\",\n    \"plate-wheat\",\n    \"play-pause\",\n    \"play\",\n    \"plug-circle-bolt\",\n    \"plug-circle-check\",\n    \"plug-circle-exclamation\",\n    \"plug-circle-minus\",\n    \"plug-circle-plus\",\n    \"plug-circle-xmark\",\n    \"plug\",\n    \"plus-large\",\n    \"plus-minus\",\n    \"plus\",\n    \"podcast\",\n    \"podium-star\",\n    \"podium\",\n    \"police-box\",\n    \"poll-people\",\n    \"pompebled\",\n    \"poo-storm\",\n    \"poo\",\n    \"pool-8-ball\",\n    \"poop\",\n    \"popcorn\",\n    \"popsicle\",\n    \"pot-food\",\n    \"potato\",\n    \"power-off\",\n    \"prescription-bottle-medical\",\n    \"prescription-bottle-pill\",\n    \"prescription-bottle\",\n    \"prescription\",\n    \"presentation-screen\",\n    \"pretzel\",\n    \"print-magnifying-glass\",\n    \"print-slash\",\n    \"print\",\n    \"projector\",\n    \"pump-medical\",\n    \"pump-soap\",\n    \"pump\",\n    \"pumpkin\",\n    \"puzzle-piece-simple\",\n    \"puzzle-piece\",\n    \"puzzle\",\n    \"q\",\n    \"qrcode\",\n    \"question\",\n    \"quote-left\",\n    \"quote-right\",\n    \"quotes\",\n    \"r\",\n    \"rabbit-running\",\n    \"rabbit\",\n    \"raccoon\",\n    \"racquet\",\n    \"radar\",\n    \"radiation\",\n    \"radio-tuner\",\n    \"radio\",\n    \"rainbow\",\n    \"raindrops\",\n    \"ram\",\n    \"ramp-loading\",\n    \"ranking-star\",\n    \"raygun\",\n    \"receipt\",\n    \"record-vinyl\",\n    \"rectangle-ad\",\n    \"rectangle-barcode\",\n    \"rectangle-code\",\n    \"rectangle-history-circle-plus\",\n    \"rectangle-history-circle-user\",\n    \"rectangle-history\",\n    \"rectangle-list\",\n    \"rectangle-pro\",\n    \"rectangle-terminal\",\n    \"rectangle-vertical-history\",\n    \"rectangle-vertical\",\n    \"rectangle-wide\",\n    \"rectangle-xmark\",\n    \"rectangle\",\n    \"rectangles-mixed\",\n    \"recycle\",\n    \"reel\",\n    \"reflect-both\",\n    \"reflect-horizontal\",\n    \"reflect-vertical\",\n    \"refrigerator\",\n    \"registered\",\n    \"repeat-1\",\n    \"repeat\",\n    \"reply-all\",\n    \"reply-clock\",\n    \"reply\",\n    \"republican\",\n    \"restroom-simple\",\n    \"restroom\",\n    \"retweet\",\n    \"rhombus\",\n    \"ribbon\",\n    \"right-from-bracket\",\n    \"right-from-line\",\n    \"right-left-large\",\n    \"right-left\",\n    \"right-long-to-line\",\n    \"right-long\",\n    \"right-to-bracket\",\n    \"right-to-line\",\n    \"right\",\n    \"ring-diamond\",\n    \"ring\",\n    \"rings-wedding\",\n    \"road-barrier\",\n    \"road-bridge\",\n    \"road-circle-check\",\n    \"road-circle-exclamation\",\n    \"road-circle-xmark\",\n    \"road-lock\",\n    \"road-spikes\",\n    \"road\",\n    \"robot-astromech\",\n    \"robot\",\n    \"rocket-launch\",\n    \"rocket\",\n    \"roller-coaster\",\n    \"rotate-exclamation\",\n    \"rotate-left\",\n    \"rotate-reverse\",\n    \"rotate-right\",\n    \"rotate\",\n    \"route-highway\",\n    \"route-interstate\",\n    \"route\",\n    \"router\",\n    \"rss\",\n    \"ruble-sign\",\n    \"rug\",\n    \"rugby-ball\",\n    \"ruler-combined\",\n    \"ruler-horizontal\",\n    \"ruler-triangle\",\n    \"ruler-vertical\",\n    \"ruler\",\n    \"rupee-sign\",\n    \"rupiah-sign\",\n    \"rv\",\n    \"s\",\n    \"sack-dollar\",\n    \"sack-xmark\",\n    \"sack\",\n    \"sailboat\",\n    \"salad\",\n    \"salt-shaker\",\n    \"sandwich\",\n    \"satellite-dish\",\n    \"satellite\",\n    \"sausage\",\n    \"saxophone-fire\",\n    \"saxophone\",\n    \"scale-balanced\",\n    \"scale-unbalanced-flip\",\n    \"scale-unbalanced\",\n    \"scalpel-line-dashed\",\n    \"scalpel\",\n    \"scanner-gun\",\n    \"scanner-image\",\n    \"scanner-keyboard\",\n    \"scanner-touchscreen\",\n    \"scarecrow\",\n    \"scarf\",\n    \"school-circle-check\",\n    \"school-circle-exclamation\",\n    \"school-circle-xmark\",\n    \"school-flag\",\n    \"school-lock\",\n    \"school\",\n    \"scissors\",\n    \"screen-users\",\n    \"screencast\",\n    \"screwdriver-wrench\",\n    \"screwdriver\",\n    \"scribble\",\n    \"scroll-old\",\n    \"scroll-torah\",\n    \"scroll\",\n    \"scrubber\",\n    \"scythe\",\n    \"sd-card\",\n    \"sd-cards\",\n    \"seal-exclamation\",\n    \"seal-question\",\n    \"seal\",\n    \"seat-airline\",\n    \"section\",\n    \"seedling\",\n    \"semicolon\",\n    \"send-back\",\n    \"send-backward\",\n    \"sensor-cloud\",\n    \"sensor-fire\",\n    \"sensor-on\",\n    \"sensor-triangle-exclamation\",\n    \"sensor\",\n    \"server\",\n    \"shapes\",\n    \"share-all\",\n    \"share-from-square\",\n    \"share-nodes\",\n    \"share\",\n    \"sheep\",\n    \"sheet-plastic\",\n    \"shekel-sign\",\n    \"shelves-empty\",\n    \"shelves\",\n    \"shield-cat\",\n    \"shield-check\",\n    \"shield-cross\",\n    \"shield-dog\",\n    \"shield-exclamation\",\n    \"shield-halved\",\n    \"shield-heart\",\n    \"shield-keyhole\",\n    \"shield-minus\",\n    \"shield-plus\",\n    \"shield-quartered\",\n    \"shield-slash\",\n    \"shield-virus\",\n    \"shield-xmark\",\n    \"shield\",\n    \"ship\",\n    \"shirt-long-sleeve\",\n    \"shirt-running\",\n    \"shirt-tank-top\",\n    \"shirt\",\n    \"shish-kebab\",\n    \"shoe-prints\",\n    \"shop-lock\",\n    \"shop-slash\",\n    \"shop\",\n    \"shovel-snow\",\n    \"shovel\",\n    \"shower-down\",\n    \"shower\",\n    \"shredder\",\n    \"shrimp\",\n    \"shuffle\",\n    \"shutters\",\n    \"shuttle-space\",\n    \"shuttlecock\",\n    \"sickle\",\n    \"sidebar-flip\",\n    \"sidebar\",\n    \"sigma\",\n    \"sign-hanging\",\n    \"sign-post\",\n    \"sign-posts-wrench\",\n    \"sign-posts\",\n    \"signal-bars-fair\",\n    \"signal-bars-good\",\n    \"signal-bars-slash\",\n    \"signal-bars-weak\",\n    \"signal-bars\",\n    \"signal-fair\",\n    \"signal-good\",\n    \"signal-slash\",\n    \"signal-stream-slash\",\n    \"signal-stream\",\n    \"signal-strong\",\n    \"signal-weak\",\n    \"signal\",\n    \"signature-lock\",\n    \"signature-slash\",\n    \"signature\",\n    \"signs-post\",\n    \"sim-card\",\n    \"sim-cards\",\n    \"sink\",\n    \"siren-on\",\n    \"siren\",\n    \"sitemap\",\n    \"skeleton-ribs\",\n    \"skeleton\",\n    \"ski-boot-ski\",\n    \"ski-boot\",\n    \"skull-cow\",\n    \"skull-crossbones\",\n    \"skull\",\n    \"slash-back\",\n    \"slash-forward\",\n    \"slash\",\n    \"sleigh\",\n    \"slider\",\n    \"sliders-simple\",\n    \"sliders-up\",\n    \"sliders\",\n    \"slot-machine\",\n    \"smog\",\n    \"smoke\",\n    \"smoking\",\n    \"snake\",\n    \"snooze\",\n    \"snow-blowing\",\n    \"snowflake-droplets\",\n    \"snowflake\",\n    \"snowflakes\",\n    \"snowman-head\",\n    \"snowman\",\n    \"snowplow\",\n    \"soap\",\n    \"socks\",\n    \"soft-serve\",\n    \"solar-panel\",\n    \"solar-system\",\n    \"sort-down\",\n    \"sort-up\",\n    \"sort\",\n    \"spa\",\n    \"space-station-moon-construction\",\n    \"space-station-moon\",\n    \"spade\",\n    \"spaghetti-monster-flying\",\n    \"sparkle\",\n    \"sparkles\",\n    \"speaker\",\n    \"speakers\",\n    \"spell-check\",\n    \"spider-black-widow\",\n    \"spider-web\",\n    \"spider\",\n    \"spinner-scale\",\n    \"spinner-third\",\n    \"spinner\",\n    \"split\",\n    \"splotch\",\n    \"spoon\",\n    \"sportsball\",\n    \"spray-can-sparkles\",\n    \"spray-can\",\n    \"sprinkler-ceiling\",\n    \"sprinkler\",\n    \"square-0\",\n    \"square-1\",\n    \"square-2\",\n    \"square-3\",\n    \"square-4\",\n    \"square-5\",\n    \"square-6\",\n    \"square-7\",\n    \"square-8\",\n    \"square-9\",\n    \"square-a-lock\",\n    \"square-a\",\n    \"square-ampersand\",\n    \"square-arrow-down-left\",\n    \"square-arrow-down-right\",\n    \"square-arrow-down\",\n    \"square-arrow-left\",\n    \"square-arrow-right\",\n    \"square-arrow-up-left\",\n    \"square-arrow-up-right\",\n    \"square-arrow-up\",\n    \"square-b\",\n    \"square-binary\",\n    \"square-bolt\",\n    \"square-c\",\n    \"square-caret-down\",\n    \"square-caret-left\",\n    \"square-caret-right\",\n    \"square-caret-up\",\n    \"square-check\",\n    \"square-chevron-down\",\n    \"square-chevron-left\",\n    \"square-chevron-right\",\n    \"square-chevron-up\",\n    \"square-code\",\n    \"square-d\",\n    \"square-dashed-circle-plus\",\n    \"square-dashed\",\n    \"square-divide\",\n    \"square-dollar\",\n    \"square-down-left\",\n    \"square-down-right\",\n    \"square-down\",\n    \"square-e\",\n    \"square-ellipsis-vertical\",\n    \"square-ellipsis\",\n    \"square-envelope\",\n    \"square-exclamation\",\n    \"square-f\",\n    \"square-fragile\",\n    \"square-full\",\n    \"square-g\",\n    \"square-h\",\n    \"square-heart\",\n    \"square-i\",\n    \"square-info\",\n    \"square-j\",\n    \"square-k\",\n    \"square-kanban\",\n    \"square-l\",\n    \"square-left\",\n    \"square-list\",\n    \"square-m\",\n    \"square-minus\",\n    \"square-n\",\n    \"square-nfi\",\n    \"square-o\",\n    \"square-p\",\n    \"square-parking-slash\",\n    \"square-parking\",\n    \"square-pen\",\n    \"square-person-confined\",\n    \"square-phone-flip\",\n    \"square-phone-hangup\",\n    \"square-phone\",\n    \"square-plus\",\n    \"square-poll-horizontal\",\n    \"square-poll-vertical\",\n    \"square-q\",\n    \"square-quarters\",\n    \"square-question\",\n    \"square-quote\",\n    \"square-r\",\n    \"square-right\",\n    \"square-ring\",\n    \"square-root-variable\",\n    \"square-root\",\n    \"square-rss\",\n    \"square-s\",\n    \"square-share-nodes\",\n    \"square-sliders-vertical\",\n    \"square-sliders\",\n    \"square-small\",\n    \"square-star\",\n    \"square-t\",\n    \"square-terminal\",\n    \"square-this-way-up\",\n    \"square-u\",\n    \"square-up-left\",\n    \"square-up-right\",\n    \"square-up\",\n    \"square-user\",\n    \"square-v\",\n    \"square-virus\",\n    \"square-w\",\n    \"square-x\",\n    \"square-xmark\",\n    \"square-y\",\n    \"square-z\",\n    \"square\",\n    \"squid\",\n    \"squirrel\",\n    \"staff-snake\",\n    \"staff\",\n    \"stairs\",\n    \"stamp\",\n    \"standard-definition\",\n    \"stapler\",\n    \"star-and-crescent\",\n    \"star-christmas\",\n    \"star-exclamation\",\n    \"star-half-stroke\",\n    \"star-half\",\n    \"star-of-david\",\n    \"star-of-life\",\n    \"star-sharp-half-stroke\",\n    \"star-sharp-half\",\n    \"star-sharp\",\n    \"star-shooting\",\n    \"star\",\n    \"starfighter-twin-ion-engine-advanced\",\n    \"starfighter-twin-ion-engine\",\n    \"starfighter\",\n    \"stars\",\n    \"starship-freighter\",\n    \"starship\",\n    \"steak\",\n    \"steering-wheel\",\n    \"sterling-sign\",\n    \"stethoscope\",\n    \"stocking\",\n    \"stomach\",\n    \"stop\",\n    \"stopwatch-20\",\n    \"stopwatch\",\n    \"store-lock\",\n    \"store-slash\",\n    \"store\",\n    \"strawberry\",\n    \"street-view\",\n    \"stretcher\",\n    \"strikethrough\",\n    \"stroopwafel\",\n    \"subscript\",\n    \"subtitles-slash\",\n    \"subtitles\",\n    \"suitcase-medical\",\n    \"suitcase-rolling\",\n    \"suitcase\",\n    \"sun-bright\",\n    \"sun-cloud\",\n    \"sun-dust\",\n    \"sun-haze\",\n    \"sun-plant-wilt\",\n    \"sun\",\n    \"sunglasses\",\n    \"sunrise\",\n    \"sunset\",\n    \"superscript\",\n    \"sushi-roll\",\n    \"sushi\",\n    \"swap-arrows\",\n    \"swap\",\n    \"swatchbook\",\n    \"sword-laser-alt\",\n    \"sword-laser\",\n    \"sword\",\n    \"swords-laser\",\n    \"swords\",\n    \"symbols\",\n    \"synagogue\",\n    \"syringe\",\n    \"t-rex\",\n    \"t\",\n    \"table-cells-column-lock\",\n    \"table-cells-column-unlock\",\n    \"table-cells-large\",\n    \"table-cells-lock\",\n    \"table-cells-row-lock\",\n    \"table-cells-row-unlock\",\n    \"table-cells-unlock\",\n    \"table-cells\",\n    \"table-columns\",\n    \"table-layout\",\n    \"table-list\",\n    \"table-picnic\",\n    \"table-pivot\",\n    \"table-rows\",\n    \"table-tennis-paddle-ball\",\n    \"table-tree\",\n    \"table\",\n    \"tablet-button\",\n    \"tablet-rugged\",\n    \"tablet-screen-button\",\n    \"tablet-screen\",\n    \"tablet\",\n    \"tablets\",\n    \"tachograph-digital\",\n    \"taco\",\n    \"tag\",\n    \"tags\",\n    \"tally-1\",\n    \"tally-2\",\n    \"tally-3\",\n    \"tally-4\",\n    \"tally\",\n    \"tamale\",\n    \"tank-water\",\n    \"tape\",\n    \"tarp-droplet\",\n    \"tarp\",\n    \"taxi-bus\",\n    \"taxi\",\n    \"teddy-bear\",\n    \"teeth-open\",\n    \"teeth\",\n    \"telescope\",\n    \"temperature-arrow-down\",\n    \"temperature-arrow-up\",\n    \"temperature-empty\",\n    \"temperature-full\",\n    \"temperature-half\",\n    \"temperature-high\",\n    \"temperature-list\",\n    \"temperature-low\",\n    \"temperature-quarter\",\n    \"temperature-snow\",\n    \"temperature-sun\",\n    \"temperature-three-quarters\",\n    \"tenge-sign\",\n    \"tennis-ball\",\n    \"tent-arrow-down-to-line\",\n    \"tent-arrow-left-right\",\n    \"tent-arrow-turn-left\",\n    \"tent-arrows-down\",\n    \"tent-double-peak\",\n    \"tent\",\n    \"tents\",\n    \"terminal\",\n    \"text-height\",\n    \"text-size\",\n    \"text-slash\",\n    \"text-width\",\n    \"text\",\n    \"thermometer\",\n    \"theta\",\n    \"thought-bubble\",\n    \"thumbs-down\",\n    \"thumbs-up\",\n    \"thumbtack-slash\",\n    \"thumbtack\",\n    \"tick\",\n    \"ticket-airline\",\n    \"ticket-perforated\",\n    \"ticket-simple\",\n    \"ticket\",\n    \"tickets-airline\",\n    \"tickets-perforated\",\n    \"tickets-simple\",\n    \"tickets\",\n    \"tilde\",\n    \"timeline-arrow\",\n    \"timeline\",\n    \"timer\",\n    \"tire-flat\",\n    \"tire-pressure-warning\",\n    \"tire-rugged\",\n    \"tire\",\n    \"toggle-large-off\",\n    \"toggle-large-on\",\n    \"toggle-off\",\n    \"toggle-on\",\n    \"toilet-paper-blank-under\",\n    \"toilet-paper-blank\",\n    \"toilet-paper-check\",\n    \"toilet-paper-slash\",\n    \"toilet-paper-under-slash\",\n    \"toilet-paper-under\",\n    \"toilet-paper-xmark\",\n    \"toilet-paper\",\n    \"toilet-portable\",\n    \"toilet\",\n    \"toilets-portable\",\n    \"tomato\",\n    \"tombstone-blank\",\n    \"tombstone\",\n    \"toolbox\",\n    \"tooth\",\n    \"toothbrush\",\n    \"torii-gate\",\n    \"tornado\",\n    \"tower-broadcast\",\n    \"tower-cell\",\n    \"tower-control\",\n    \"tower-observation\",\n    \"tractor\",\n    \"trademark\",\n    \"traffic-cone\",\n    \"traffic-light-go\",\n    \"traffic-light-slow\",\n    \"traffic-light-stop\",\n    \"traffic-light\",\n    \"trailer\",\n    \"train-subway-tunnel\",\n    \"train-subway\",\n    \"train-track\",\n    \"train-tram\",\n    \"train-tunnel\",\n    \"train\",\n    \"transformer-bolt\",\n    \"transgender\",\n    \"transporter-1\",\n    \"transporter-2\",\n    \"transporter-3\",\n    \"transporter-4\",\n    \"transporter-5\",\n    \"transporter-6\",\n    \"transporter-7\",\n    \"transporter-empty\",\n    \"transporter\",\n    \"trash-arrow-up\",\n    \"trash-can-arrow-up\",\n    \"trash-can-check\",\n    \"trash-can-clock\",\n    \"trash-can-list\",\n    \"trash-can-plus\",\n    \"trash-can-slash\",\n    \"trash-can-undo\",\n    \"trash-can-xmark\",\n    \"trash-can\",\n    \"trash-check\",\n    \"trash-clock\",\n    \"trash-list\",\n    \"trash-plus\",\n    \"trash-slash\",\n    \"trash-undo\",\n    \"trash-xmark\",\n    \"trash\",\n    \"treasure-chest\",\n    \"tree-christmas\",\n    \"tree-city\",\n    \"tree-deciduous\",\n    \"tree-decorated\",\n    \"tree-large\",\n    \"tree-palm\",\n    \"tree\",\n    \"trees\",\n    \"triangle-exclamation\",\n    \"triangle-instrument\",\n    \"triangle-person-digging\",\n    \"triangle\",\n    \"tricycle-adult\",\n    \"tricycle\",\n    \"trillium\",\n    \"trophy-star\",\n    \"trophy\",\n    \"trowel-bricks\",\n    \"trowel\",\n    \"truck-arrow-right\",\n    \"truck-bolt\",\n    \"truck-clock\",\n    \"truck-container-empty\",\n    \"truck-container\",\n    \"truck-droplet\",\n    \"truck-fast\",\n    \"truck-field-un\",\n    \"truck-field\",\n    \"truck-fire\",\n    \"truck-flatbed\",\n    \"truck-front\",\n    \"truck-ladder\",\n    \"truck-medical\",\n    \"truck-monster\",\n    \"truck-moving\",\n    \"truck-pickup\",\n    \"truck-plane\",\n    \"truck-plow\",\n    \"truck-ramp-box\",\n    \"truck-ramp-couch\",\n    \"truck-ramp\",\n    \"truck-tow\",\n    \"truck-utensils\",\n    \"truck\",\n    \"trumpet\",\n    \"tty-answer\",\n    \"tty\",\n    \"tugrik-sign\",\n    \"turkey\",\n    \"turkish-lira-sign\",\n    \"turn-down-left\",\n    \"turn-down-right\",\n    \"turn-down\",\n    \"turn-left-down\",\n    \"turn-left-up\",\n    \"turn-left\",\n    \"turn-right\",\n    \"turn-up\",\n    \"turntable\",\n    \"turtle\",\n    \"tv-music\",\n    \"tv-retro\",\n    \"tv\",\n    \"typewriter\",\n    \"u\",\n    \"ufo-beam\",\n    \"ufo\",\n    \"umbrella-beach\",\n    \"umbrella-simple\",\n    \"umbrella\",\n    \"underline\",\n    \"unicorn\",\n    \"uniform-martial-arts\",\n    \"union\",\n    \"universal-access\",\n    \"unlock-keyhole\",\n    \"unlock\",\n    \"up-down-left-right\",\n    \"up-down\",\n    \"up-from-bracket\",\n    \"up-from-dotted-line\",\n    \"up-from-line\",\n    \"up-left\",\n    \"up-long\",\n    \"up-right-and-down-left-from-center\",\n    \"up-right-from-square\",\n    \"up-right\",\n    \"up-to-bracket\",\n    \"up-to-dotted-line\",\n    \"up-to-line\",\n    \"up\",\n    \"upload\",\n    \"usb-drive\",\n    \"user-alien\",\n    \"user-astronaut\",\n    \"user-beard-bolt\",\n    \"user-bounty-hunter\",\n    \"user-check\",\n    \"user-chef\",\n    \"user-clock\",\n    \"user-cowboy\",\n    \"user-crown\",\n    \"user-doctor-hair-long\",\n    \"user-doctor-hair\",\n    \"user-doctor-message\",\n    \"user-doctor\",\n    \"user-gear\",\n    \"user-graduate\",\n    \"user-group-crown\",\n    \"user-group-simple\",\n    \"user-group\",\n    \"user-hair-buns\",\n    \"user-hair-long\",\n    \"user-hair-mullet\",\n    \"user-hair\",\n    \"user-headset\",\n    \"user-helmet-safety\",\n    \"user-hoodie\",\n    \"user-injured\",\n    \"user-large-slash\",\n    \"user-large\",\n    \"user-lock\",\n    \"user-magnifying-glass\",\n    \"user-minus\",\n    \"user-music\",\n    \"user-ninja\",\n    \"user-nurse-hair-long\",\n    \"user-nurse-hair\",\n    \"user-nurse\",\n    \"user-pen\",\n    \"user-pilot-tie\",\n    \"user-pilot\",\n    \"user-plus\",\n    \"user-police-tie\",\n    \"user-police\",\n    \"user-robot-xmarks\",\n    \"user-robot\",\n    \"user-secret\",\n    \"user-shakespeare\",\n    \"user-shield\",\n    \"user-slash\",\n    \"user-tag\",\n    \"user-tie-hair-long\",\n    \"user-tie-hair\",\n    \"user-tie\",\n    \"user-unlock\",\n    \"user-visor\",\n    \"user-vneck-hair-long\",\n    \"user-vneck-hair\",\n    \"user-vneck\",\n    \"user-xmark\",\n    \"user\",\n    \"users-between-lines\",\n    \"users-gear\",\n    \"users-line\",\n    \"users-medical\",\n    \"users-rays\",\n    \"users-rectangle\",\n    \"users-slash\",\n    \"users-viewfinder\",\n    \"users\",\n    \"utensils-slash\",\n    \"utensils\",\n    \"utility-pole-double\",\n    \"utility-pole\",\n    \"v\",\n    \"vacuum-robot\",\n    \"vacuum\",\n    \"value-absolute\",\n    \"van-shuttle\",\n    \"vault\",\n    \"vector-circle\",\n    \"vector-polygon\",\n    \"vector-square\",\n    \"vent-damper\",\n    \"venus-double\",\n    \"venus-mars\",\n    \"venus\",\n    \"vest-patches\",\n    \"vest\",\n    \"vial-circle-check\",\n    \"vial-virus\",\n    \"vial\",\n    \"vials\",\n    \"video-arrow-down-left\",\n    \"video-arrow-up-right\",\n    \"video-plus\",\n    \"video-slash\",\n    \"video\",\n    \"vihara\",\n    \"violin\",\n    \"virus-covid-slash\",\n    \"virus-covid\",\n    \"virus-slash\",\n    \"virus\",\n    \"viruses\",\n    \"voicemail\",\n    \"volcano\",\n    \"volleyball\",\n    \"volume-high\",\n    \"volume-low\",\n    \"volume-off\",\n    \"volume-slash\",\n    \"volume-xmark\",\n    \"volume\",\n    \"vr-cardboard\",\n    \"w\",\n    \"waffle\",\n    \"wagon-covered\",\n    \"walker\",\n    \"walkie-talkie\",\n    \"wallet\",\n    \"wand-magic-sparkles\",\n    \"wand-magic\",\n    \"wand-sparkles\",\n    \"wand\",\n    \"warehouse-full\",\n    \"warehouse\",\n    \"washing-machine\",\n    \"watch-apple\",\n    \"watch-calculator\",\n    \"watch-fitness\",\n    \"watch-smart\",\n    \"watch\",\n    \"water-arrow-down\",\n    \"water-arrow-up\",\n    \"water-ladder\",\n    \"water\",\n    \"watermelon-slice\",\n    \"wave-pulse\",\n    \"wave-sine\",\n    \"wave-square\",\n    \"wave-triangle\",\n    \"wave\",\n    \"waveform-lines\",\n    \"waveform\",\n    \"waves-sine\",\n    \"web-awesome\",\n    \"webhook\",\n    \"weight-hanging\",\n    \"weight-scale\",\n    \"whale\",\n    \"wheat-awn-circle-exclamation\",\n    \"wheat-awn-slash\",\n    \"wheat-awn\",\n    \"wheat-slash\",\n    \"wheat\",\n    \"wheelchair-move\",\n    \"wheelchair\",\n    \"whiskey-glass-ice\",\n    \"whiskey-glass\",\n    \"whistle\",\n    \"wifi-exclamation\",\n    \"wifi-fair\",\n    \"wifi-slash\",\n    \"wifi-weak\",\n    \"wifi\",\n    \"wind-turbine\",\n    \"wind-warning\",\n    \"wind\",\n    \"window-flip\",\n    \"window-frame-open\",\n    \"window-frame\",\n    \"window-maximize\",\n    \"window-minimize\",\n    \"window-restore\",\n    \"window\",\n    \"windsock\",\n    \"wine-bottle\",\n    \"wine-glass-crack\",\n    \"wine-glass-empty\",\n    \"wine-glass\",\n    \"won-sign\",\n    \"worm\",\n    \"wreath-laurel\",\n    \"wreath\",\n    \"wrench-simple\",\n    \"wrench\",\n    \"x-ray\",\n    \"x\",\n    \"xmark-large\",\n    \"xmark-to-slot\",\n    \"xmark\",\n    \"xmarks-lines\",\n    \"y\",\n    \"yen-sign\",\n    \"yin-yang\",\n    \"z\"\n  ],\n  \"thin\": [\n    \"0\",\n    \"00\",\n    \"1\",\n    \"2\",\n    \"3\",\n    \"360-degrees\",\n    \"4\",\n    \"5\",\n    \"6\",\n    \"7\",\n    \"8\",\n    \"9\",\n    \"a\",\n    \"abacus\",\n    \"accent-grave\",\n    \"acorn\",\n    \"address-book\",\n    \"address-card\",\n    \"air-conditioner\",\n    \"airplay\",\n    \"alarm-clock\",\n    \"alarm-exclamation\",\n    \"alarm-plus\",\n    \"alarm-snooze\",\n    \"album-circle-plus\",\n    \"album-circle-user\",\n    \"album-collection-circle-plus\",\n    \"album-collection-circle-user\",\n    \"album-collection\",\n    \"album\",\n    \"alicorn\",\n    \"alien-8bit\",\n    \"alien\",\n    \"align-center\",\n    \"align-justify\",\n    \"align-left\",\n    \"align-right\",\n    \"align-slash\",\n    \"alt\",\n    \"amp-guitar\",\n    \"ampersand\",\n    \"anchor-circle-check\",\n    \"anchor-circle-exclamation\",\n    \"anchor-circle-xmark\",\n    \"anchor-lock\",\n    \"anchor\",\n    \"angel\",\n    \"angle-90\",\n    \"angle-down\",\n    \"angle-left\",\n    \"angle-right\",\n    \"angle-up\",\n    \"angle\",\n    \"angles-down\",\n    \"angles-left\",\n    \"angles-right\",\n    \"angles-up-down\",\n    \"angles-up\",\n    \"ankh\",\n    \"ant\",\n    \"apartment\",\n    \"aperture\",\n    \"apostrophe\",\n    \"apple-core\",\n    \"apple-whole\",\n    \"archway\",\n    \"arrow-down-1-9\",\n    \"arrow-down-9-1\",\n    \"arrow-down-a-z\",\n    \"arrow-down-arrow-up\",\n    \"arrow-down-big-small\",\n    \"arrow-down-from-arc\",\n    \"arrow-down-from-bracket\",\n    \"arrow-down-from-dotted-line\",\n    \"arrow-down-from-line\",\n    \"arrow-down-left-and-arrow-up-right-to-center\",\n    \"arrow-down-left\",\n    \"arrow-down-long\",\n    \"arrow-down-right\",\n    \"arrow-down-short-wide\",\n    \"arrow-down-small-big\",\n    \"arrow-down-square-triangle\",\n    \"arrow-down-to-arc\",\n    \"arrow-down-to-bracket\",\n    \"arrow-down-to-dotted-line\",\n    \"arrow-down-to-line\",\n    \"arrow-down-to-square\",\n    \"arrow-down-triangle-square\",\n    \"arrow-down-up-across-line\",\n    \"arrow-down-up-lock\",\n    \"arrow-down-wide-short\",\n    \"arrow-down-z-a\",\n    \"arrow-down\",\n    \"arrow-left-from-arc\",\n    \"arrow-left-from-bracket\",\n    \"arrow-left-from-line\",\n    \"arrow-left-long-to-line\",\n    \"arrow-left-long\",\n    \"arrow-left-to-arc\",\n    \"arrow-left-to-bracket\",\n    \"arrow-left-to-line\",\n    \"arrow-left\",\n    \"arrow-pointer\",\n    \"arrow-progress\",\n    \"arrow-right-arrow-left\",\n    \"arrow-right-from-arc\",\n    \"arrow-right-from-bracket\",\n    \"arrow-right-from-line\",\n    \"arrow-right-long-to-line\",\n    \"arrow-right-long\",\n    \"arrow-right-to-arc\",\n    \"arrow-right-to-bracket\",\n    \"arrow-right-to-city\",\n    \"arrow-right-to-line\",\n    \"arrow-right\",\n    \"arrow-rotate-left\",\n    \"arrow-rotate-right\",\n    \"arrow-trend-down\",\n    \"arrow-trend-up\",\n    \"arrow-turn-down-left\",\n    \"arrow-turn-down-right\",\n    \"arrow-turn-down\",\n    \"arrow-turn-left-down\",\n    \"arrow-turn-left-up\",\n    \"arrow-turn-left\",\n    \"arrow-turn-right\",\n    \"arrow-turn-up\",\n    \"arrow-up-1-9\",\n    \"arrow-up-9-1\",\n    \"arrow-up-a-z\",\n    \"arrow-up-arrow-down\",\n    \"arrow-up-big-small\",\n    \"arrow-up-from-arc\",\n    \"arrow-up-from-bracket\",\n    \"arrow-up-from-dotted-line\",\n    \"arrow-up-from-ground-water\",\n    \"arrow-up-from-line\",\n    \"arrow-up-from-square\",\n    \"arrow-up-from-water-pump\",\n    \"arrow-up-left-from-circle\",\n    \"arrow-up-left\",\n    \"arrow-up-long\",\n    \"arrow-up-right-and-arrow-down-left-from-center\",\n    \"arrow-up-right-dots\",\n    \"arrow-up-right-from-square\",\n    \"arrow-up-right\",\n    \"arrow-up-short-wide\",\n    \"arrow-up-small-big\",\n    \"arrow-up-square-triangle\",\n    \"arrow-up-to-arc\",\n    \"arrow-up-to-bracket\",\n    \"arrow-up-to-dotted-line\",\n    \"arrow-up-to-line\",\n    \"arrow-up-triangle-square\",\n    \"arrow-up-wide-short\",\n    \"arrow-up-z-a\",\n    \"arrow-up\",\n    \"arrows-cross\",\n    \"arrows-down-to-line\",\n    \"arrows-down-to-people\",\n    \"arrows-from-dotted-line\",\n    \"arrows-from-line\",\n    \"arrows-left-right-to-line\",\n    \"arrows-left-right\",\n    \"arrows-maximize\",\n    \"arrows-minimize\",\n    \"arrows-repeat-1\",\n    \"arrows-repeat\",\n    \"arrows-retweet\",\n    \"arrows-rotate-reverse\",\n    \"arrows-rotate\",\n    \"arrows-spin\",\n    \"arrows-split-up-and-left\",\n    \"arrows-to-circle\",\n    \"arrows-to-dot\",\n    \"arrows-to-dotted-line\",\n    \"arrows-to-eye\",\n    \"arrows-to-line\",\n    \"arrows-turn-right\",\n    \"arrows-turn-to-dots\",\n    \"arrows-up-down-left-right\",\n    \"arrows-up-down\",\n    \"arrows-up-to-line\",\n    \"asterisk\",\n    \"at\",\n    \"atom-simple\",\n    \"atom\",\n    \"audio-description-slash\",\n    \"audio-description\",\n    \"austral-sign\",\n    \"avocado\",\n    \"award-simple\",\n    \"award\",\n    \"axe-battle\",\n    \"axe\",\n    \"b\",\n    \"baby-carriage\",\n    \"baby\",\n    \"backpack\",\n    \"backward-fast\",\n    \"backward-step\",\n    \"backward\",\n    \"bacon\",\n    \"bacteria\",\n    \"bacterium\",\n    \"badge-check\",\n    \"badge-dollar\",\n    \"badge-percent\",\n    \"badge-sheriff\",\n    \"badge\",\n    \"badger-honey\",\n    \"badminton\",\n    \"bag-seedling\",\n    \"bag-shopping-minus\",\n    \"bag-shopping-plus\",\n    \"bag-shopping\",\n    \"bagel\",\n    \"bags-shopping\",\n    \"baguette\",\n    \"bahai\",\n    \"baht-sign\",\n    \"ball-pile\",\n    \"balloon\",\n    \"balloons\",\n    \"ballot-check\",\n    \"ballot\",\n    \"ban-bug\",\n    \"ban-parking\",\n    \"ban-smoking\",\n    \"ban\",\n    \"banana\",\n    \"bandage\",\n    \"bangladeshi-taka-sign\",\n    \"banjo\",\n    \"barcode-read\",\n    \"barcode-scan\",\n    \"barcode\",\n    \"bars-filter\",\n    \"bars-progress\",\n    \"bars-sort\",\n    \"bars-staggered\",\n    \"bars\",\n    \"baseball-bat-ball\",\n    \"baseball\",\n    \"basket-shopping-minus\",\n    \"basket-shopping-plus\",\n    \"basket-shopping-simple\",\n    \"basket-shopping\",\n    \"basketball-hoop\",\n    \"basketball\",\n    \"bat\",\n    \"bath\",\n    \"battery-bolt\",\n    \"battery-empty\",\n    \"battery-exclamation\",\n    \"battery-full\",\n    \"battery-half\",\n    \"battery-low\",\n    \"battery-quarter\",\n    \"battery-slash\",\n    \"battery-three-quarters\",\n    \"bed-bunk\",\n    \"bed-empty\",\n    \"bed-front\",\n    \"bed-pulse\",\n    \"bed\",\n    \"bee\",\n    \"beer-mug-empty\",\n    \"beer-mug\",\n    \"bell-concierge\",\n    \"bell-exclamation\",\n    \"bell-on\",\n    \"bell-plus\",\n    \"bell-ring\",\n    \"bell-school-slash\",\n    \"bell-school\",\n    \"bell-slash\",\n    \"bell\",\n    \"bells\",\n    \"bench-tree\",\n    \"bezier-curve\",\n    \"bicycle\",\n    \"billboard\",\n    \"bin-bottles-recycle\",\n    \"bin-bottles\",\n    \"bin-recycle\",\n    \"binary-circle-check\",\n    \"binary-lock\",\n    \"binary-slash\",\n    \"binary\",\n    \"binoculars\",\n    \"biohazard\",\n    \"bird\",\n    \"bitcoin-sign\",\n    \"blanket-fire\",\n    \"blanket\",\n    \"blender-phone\",\n    \"blender\",\n    \"blinds-open\",\n    \"blinds-raised\",\n    \"blinds\",\n    \"block-brick-fire\",\n    \"block-brick\",\n    \"block-question\",\n    \"block-quote\",\n    \"block\",\n    \"blog\",\n    \"blueberries\",\n    \"bluetooth\",\n    \"bold\",\n    \"bolt-auto\",\n    \"bolt-lightning\",\n    \"bolt-slash\",\n    \"bolt\",\n    \"bomb\",\n    \"bone-break\",\n    \"bone\",\n    \"bong\",\n    \"book-arrow-right\",\n    \"book-arrow-up\",\n    \"book-atlas\",\n    \"book-bible\",\n    \"book-blank\",\n    \"book-bookmark\",\n    \"book-circle-arrow-right\",\n    \"book-circle-arrow-up\",\n    \"book-copy\",\n    \"book-font\",\n    \"book-heart\",\n    \"book-journal-whills\",\n    \"book-medical\",\n    \"book-open-cover\",\n    \"book-open-reader\",\n    \"book-open\",\n    \"book-quran\",\n    \"book-section\",\n    \"book-skull\",\n    \"book-sparkles\",\n    \"book-tanakh\",\n    \"book-user\",\n    \"book\",\n    \"bookmark-slash\",\n    \"bookmark\",\n    \"books-medical\",\n    \"books\",\n    \"boombox\",\n    \"boot-heeled\",\n    \"boot\",\n    \"booth-curtain\",\n    \"border-all\",\n    \"border-bottom-right\",\n    \"border-bottom\",\n    \"border-center-h\",\n    \"border-center-v\",\n    \"border-inner\",\n    \"border-left\",\n    \"border-none\",\n    \"border-outer\",\n    \"border-right\",\n    \"border-top-left\",\n    \"border-top\",\n    \"bore-hole\",\n    \"bottle-baby\",\n    \"bottle-droplet\",\n    \"bottle-water\",\n    \"bow-arrow\",\n    \"bowl-chopsticks-noodles\",\n    \"bowl-chopsticks\",\n    \"bowl-food\",\n    \"bowl-hot\",\n    \"bowl-rice\",\n    \"bowl-scoop\",\n    \"bowl-scoops\",\n    \"bowl-soft-serve\",\n    \"bowl-spoon\",\n    \"bowling-ball-pin\",\n    \"bowling-ball\",\n    \"bowling-pins\",\n    \"box-archive\",\n    \"box-ballot\",\n    \"box-check\",\n    \"box-circle-check\",\n    \"box-dollar\",\n    \"box-heart\",\n    \"box-open-full\",\n    \"box-open\",\n    \"box-taped\",\n    \"box-tissue\",\n    \"box\",\n    \"boxes-packing\",\n    \"boxes-stacked\",\n    \"boxing-glove\",\n    \"bracket-curly-right\",\n    \"bracket-curly\",\n    \"bracket-round-right\",\n    \"bracket-round\",\n    \"bracket-square-right\",\n    \"bracket-square\",\n    \"brackets-curly\",\n    \"brackets-round\",\n    \"brackets-square\",\n    \"braille\",\n    \"brain-arrow-curved-right\",\n    \"brain-circuit\",\n    \"brain\",\n    \"brake-warning\",\n    \"brazilian-real-sign\",\n    \"bread-loaf\",\n    \"bread-slice-butter\",\n    \"bread-slice\",\n    \"bridge-circle-check\",\n    \"bridge-circle-exclamation\",\n    \"bridge-circle-xmark\",\n    \"bridge-lock\",\n    \"bridge-suspension\",\n    \"bridge-water\",\n    \"bridge\",\n    \"briefcase-arrow-right\",\n    \"briefcase-blank\",\n    \"briefcase-medical\",\n    \"briefcase\",\n    \"brightness-low\",\n    \"brightness\",\n    \"bring-forward\",\n    \"bring-front\",\n    \"broccoli\",\n    \"broom-ball\",\n    \"broom-wide\",\n    \"broom\",\n    \"browser\",\n    \"browsers\",\n    \"brush\",\n    \"bucket\",\n    \"bug-slash\",\n    \"bug\",\n    \"bugs\",\n    \"building-circle-arrow-right\",\n    \"building-circle-check\",\n    \"building-circle-exclamation\",\n    \"building-circle-xmark\",\n    \"building-columns\",\n    \"building-flag\",\n    \"building-lock\",\n    \"building-magnifying-glass\",\n    \"building-memo\",\n    \"building-ngo\",\n    \"building-shield\",\n    \"building-un\",\n    \"building-user\",\n    \"building-wheat\",\n    \"building\",\n    \"buildings\",\n    \"bulldozer\",\n    \"bullhorn\",\n    \"bullseye-arrow\",\n    \"bullseye-pointer\",\n    \"bullseye\",\n    \"buoy-mooring\",\n    \"buoy\",\n    \"burger-cheese\",\n    \"burger-fries\",\n    \"burger-glass\",\n    \"burger-lettuce\",\n    \"burger-soda\",\n    \"burger\",\n    \"burrito\",\n    \"burst\",\n    \"bus-school\",\n    \"bus-simple\",\n    \"bus\",\n    \"business-time\",\n    \"butter\",\n    \"c\",\n    \"cabin\",\n    \"cabinet-filing\",\n    \"cable-car\",\n    \"cactus\",\n    \"caduceus\",\n    \"cake-candles\",\n    \"cake-slice\",\n    \"calculator-simple\",\n    \"calculator\",\n    \"calendar-arrow-down\",\n    \"calendar-arrow-up\",\n    \"calendar-check\",\n    \"calendar-circle-exclamation\",\n    \"calendar-circle-minus\",\n    \"calendar-circle-plus\",\n    \"calendar-circle-user\",\n    \"calendar-clock\",\n    \"calendar-day\",\n    \"calendar-days\",\n    \"calendar-exclamation\",\n    \"calendar-heart\",\n    \"calendar-image\",\n    \"calendar-lines-pen\",\n    \"calendar-lines\",\n    \"calendar-minus\",\n    \"calendar-pen\",\n    \"calendar-plus\",\n    \"calendar-range\",\n    \"calendar-star\",\n    \"calendar-users\",\n    \"calendar-week\",\n    \"calendar-xmark\",\n    \"calendar\",\n    \"calendars\",\n    \"camcorder\",\n    \"camera-cctv\",\n    \"camera-movie\",\n    \"camera-polaroid\",\n    \"camera-retro\",\n    \"camera-rotate\",\n    \"camera-security\",\n    \"camera-slash\",\n    \"camera-viewfinder\",\n    \"camera-web-slash\",\n    \"camera-web\",\n    \"camera\",\n    \"campfire\",\n    \"campground\",\n    \"can-food\",\n    \"candle-holder\",\n    \"candy-bar\",\n    \"candy-cane\",\n    \"candy-corn\",\n    \"candy\",\n    \"cannabis\",\n    \"cannon\",\n    \"capsules\",\n    \"car-battery\",\n    \"car-bolt\",\n    \"car-building\",\n    \"car-bump\",\n    \"car-burst\",\n    \"car-bus\",\n    \"car-circle-bolt\",\n    \"car-garage\",\n    \"car-mirrors\",\n    \"car-on\",\n    \"car-rear\",\n    \"car-side-bolt\",\n    \"car-side\",\n    \"car-tilt\",\n    \"car-tunnel\",\n    \"car-wash\",\n    \"car-wrench\",\n    \"car\",\n    \"caravan-simple\",\n    \"caravan\",\n    \"card-club\",\n    \"card-diamond\",\n    \"card-heart\",\n    \"card-spade\",\n    \"cards-blank\",\n    \"cards\",\n    \"caret-down\",\n    \"caret-left\",\n    \"caret-right\",\n    \"caret-up\",\n    \"carpool\",\n    \"carrot\",\n    \"cars\",\n    \"cart-arrow-down\",\n    \"cart-arrow-up\",\n    \"cart-circle-arrow-down\",\n    \"cart-circle-arrow-up\",\n    \"cart-circle-check\",\n    \"cart-circle-exclamation\",\n    \"cart-circle-plus\",\n    \"cart-circle-xmark\",\n    \"cart-flatbed-boxes\",\n    \"cart-flatbed-empty\",\n    \"cart-flatbed-suitcase\",\n    \"cart-flatbed\",\n    \"cart-minus\",\n    \"cart-plus\",\n    \"cart-shopping-fast\",\n    \"cart-shopping\",\n    \"cart-xmark\",\n    \"cash-register\",\n    \"cassette-betamax\",\n    \"cassette-tape\",\n    \"cassette-vhs\",\n    \"castle\",\n    \"cat-space\",\n    \"cat\",\n    \"cauldron\",\n    \"cedi-sign\",\n    \"cent-sign\",\n    \"certificate\",\n    \"chair-office\",\n    \"chair\",\n    \"chalkboard-user\",\n    \"chalkboard\",\n    \"champagne-glass\",\n    \"champagne-glasses\",\n    \"charging-station\",\n    \"chart-area\",\n    \"chart-bar\",\n    \"chart-bullet\",\n    \"chart-candlestick\",\n    \"chart-column\",\n    \"chart-diagram\",\n    \"chart-fft\",\n    \"chart-gantt\",\n    \"chart-kanban\",\n    \"chart-line-down\",\n    \"chart-line-up-down\",\n    \"chart-line-up\",\n    \"chart-line\",\n    \"chart-mixed-up-circle-currency\",\n    \"chart-mixed-up-circle-dollar\",\n    \"chart-mixed\",\n    \"chart-network\",\n    \"chart-pie-simple-circle-currency\",\n    \"chart-pie-simple-circle-dollar\",\n    \"chart-pie-simple\",\n    \"chart-pie\",\n    \"chart-pyramid\",\n    \"chart-radar\",\n    \"chart-scatter-3d\",\n    \"chart-scatter-bubble\",\n    \"chart-scatter\",\n    \"chart-simple-horizontal\",\n    \"chart-simple\",\n    \"chart-sine\",\n    \"chart-tree-map\",\n    \"chart-user\",\n    \"chart-waterfall\",\n    \"check-double\",\n    \"check-to-slot\",\n    \"check\",\n    \"cheese-swiss\",\n    \"cheese\",\n    \"cherries\",\n    \"chess-bishop-piece\",\n    \"chess-bishop\",\n    \"chess-board\",\n    \"chess-clock-flip\",\n    \"chess-clock\",\n    \"chess-king-piece\",\n    \"chess-king\",\n    \"chess-knight-piece\",\n    \"chess-knight\",\n    \"chess-pawn-piece\",\n    \"chess-pawn\",\n    \"chess-queen-piece\",\n    \"chess-queen\",\n    \"chess-rook-piece\",\n    \"chess-rook\",\n    \"chess\",\n    \"chestnut\",\n    \"chevron-down\",\n    \"chevron-left\",\n    \"chevron-right\",\n    \"chevron-up\",\n    \"chevrons-down\",\n    \"chevrons-left\",\n    \"chevrons-right\",\n    \"chevrons-up\",\n    \"chf-sign\",\n    \"child-combatant\",\n    \"child-dress\",\n    \"child-reaching\",\n    \"child\",\n    \"children\",\n    \"chimney\",\n    \"chopsticks\",\n    \"church\",\n    \"circle-0\",\n    \"circle-1\",\n    \"circle-2\",\n    \"circle-3\",\n    \"circle-4\",\n    \"circle-5\",\n    \"circle-6\",\n    \"circle-7\",\n    \"circle-8\",\n    \"circle-9\",\n    \"circle-a\",\n    \"circle-ampersand\",\n    \"circle-arrow-down-left\",\n    \"circle-arrow-down-right\",\n    \"circle-arrow-down\",\n    \"circle-arrow-left\",\n    \"circle-arrow-right\",\n    \"circle-arrow-up-left\",\n    \"circle-arrow-up-right\",\n    \"circle-arrow-up\",\n    \"circle-b\",\n    \"circle-bolt\",\n    \"circle-book-open\",\n    \"circle-bookmark\",\n    \"circle-c\",\n    \"circle-calendar\",\n    \"circle-camera\",\n    \"circle-caret-down\",\n    \"circle-caret-left\",\n    \"circle-caret-right\",\n    \"circle-caret-up\",\n    \"circle-check\",\n    \"circle-chevron-down\",\n    \"circle-chevron-left\",\n    \"circle-chevron-right\",\n    \"circle-chevron-up\",\n    \"circle-d\",\n    \"circle-dashed\",\n    \"circle-divide\",\n    \"circle-dollar-to-slot\",\n    \"circle-dollar\",\n    \"circle-dot\",\n    \"circle-down-left\",\n    \"circle-down-right\",\n    \"circle-down\",\n    \"circle-e\",\n    \"circle-ellipsis-vertical\",\n    \"circle-ellipsis\",\n    \"circle-envelope\",\n    \"circle-euro\",\n    \"circle-exclamation-check\",\n    \"circle-exclamation\",\n    \"circle-f\",\n    \"circle-g\",\n    \"circle-gf\",\n    \"circle-h\",\n    \"circle-half-stroke\",\n    \"circle-half\",\n    \"circle-heart\",\n    \"circle-i\",\n    \"circle-info\",\n    \"circle-j\",\n    \"circle-k\",\n    \"circle-l\",\n    \"circle-left\",\n    \"circle-location-arrow\",\n    \"circle-m\",\n    \"circle-microphone-lines\",\n    \"circle-microphone\",\n    \"circle-minus\",\n    \"circle-n\",\n    \"circle-nodes\",\n    \"circle-notch\",\n    \"circle-o\",\n    \"circle-p\",\n    \"circle-parking\",\n    \"circle-pause\",\n    \"circle-phone-flip\",\n    \"circle-phone-hangup\",\n    \"circle-phone\",\n    \"circle-play\",\n    \"circle-plus\",\n    \"circle-q\",\n    \"circle-quarter-stroke\",\n    \"circle-quarter\",\n    \"circle-quarters\",\n    \"circle-question\",\n    \"circle-r\",\n    \"circle-radiation\",\n    \"circle-right\",\n    \"circle-s\",\n    \"circle-small\",\n    \"circle-sort-down\",\n    \"circle-sort-up\",\n    \"circle-sort\",\n    \"circle-star\",\n    \"circle-sterling\",\n    \"circle-stop\",\n    \"circle-t\",\n    \"circle-three-quarters-stroke\",\n    \"circle-three-quarters\",\n    \"circle-trash\",\n    \"circle-u\",\n    \"circle-up-left\",\n    \"circle-up-right\",\n    \"circle-up\",\n    \"circle-user\",\n    \"circle-v\",\n    \"circle-video\",\n    \"circle-w\",\n    \"circle-waveform-lines\",\n    \"circle-wifi-circle-wifi\",\n    \"circle-wifi\",\n    \"circle-x\",\n    \"circle-xmark\",\n    \"circle-y\",\n    \"circle-yen\",\n    \"circle-z\",\n    \"circle\",\n    \"circles-overlap-3\",\n    \"circles-overlap\",\n    \"citrus-slice\",\n    \"citrus\",\n    \"city\",\n    \"clapperboard-play\",\n    \"clapperboard\",\n    \"clarinet\",\n    \"claw-marks\",\n    \"clipboard-check\",\n    \"clipboard-list-check\",\n    \"clipboard-list\",\n    \"clipboard-medical\",\n    \"clipboard-prescription\",\n    \"clipboard-question\",\n    \"clipboard-user\",\n    \"clipboard\",\n    \"clock-desk\",\n    \"clock-eight-thirty\",\n    \"clock-eight\",\n    \"clock-eleven-thirty\",\n    \"clock-eleven\",\n    \"clock-five-thirty\",\n    \"clock-five\",\n    \"clock-four-thirty\",\n    \"clock-nine-thirty\",\n    \"clock-nine\",\n    \"clock-one-thirty\",\n    \"clock-one\",\n    \"clock-rotate-left\",\n    \"clock-seven-thirty\",\n    \"clock-seven\",\n    \"clock-six-thirty\",\n    \"clock-six\",\n    \"clock-ten-thirty\",\n    \"clock-ten\",\n    \"clock-three-thirty\",\n    \"clock-three\",\n    \"clock-twelve-thirty\",\n    \"clock-twelve\",\n    \"clock-two-thirty\",\n    \"clock-two\",\n    \"clock\",\n    \"clone\",\n    \"closed-captioning-slash\",\n    \"closed-captioning\",\n    \"clothes-hanger\",\n    \"cloud-arrow-down\",\n    \"cloud-arrow-up\",\n    \"cloud-binary\",\n    \"cloud-bolt-moon\",\n    \"cloud-bolt-sun\",\n    \"cloud-bolt\",\n    \"cloud-check\",\n    \"cloud-drizzle\",\n    \"cloud-exclamation\",\n    \"cloud-fog\",\n    \"cloud-hail-mixed\",\n    \"cloud-hail\",\n    \"cloud-meatball\",\n    \"cloud-minus\",\n    \"cloud-moon-rain\",\n    \"cloud-moon\",\n    \"cloud-music\",\n    \"cloud-plus\",\n    \"cloud-question\",\n    \"cloud-rain\",\n    \"cloud-rainbow\",\n    \"cloud-showers-heavy\",\n    \"cloud-showers-water\",\n    \"cloud-showers\",\n    \"cloud-slash\",\n    \"cloud-sleet\",\n    \"cloud-snow\",\n    \"cloud-sun-rain\",\n    \"cloud-sun\",\n    \"cloud-word\",\n    \"cloud-xmark\",\n    \"cloud\",\n    \"clouds-moon\",\n    \"clouds-sun\",\n    \"clouds\",\n    \"clover\",\n    \"club\",\n    \"coconut\",\n    \"code-branch\",\n    \"code-commit\",\n    \"code-compare\",\n    \"code-fork\",\n    \"code-merge\",\n    \"code-pull-request-closed\",\n    \"code-pull-request-draft\",\n    \"code-pull-request\",\n    \"code-simple\",\n    \"code\",\n    \"coffee-bean\",\n    \"coffee-beans\",\n    \"coffee-pot\",\n    \"coffin-cross\",\n    \"coffin\",\n    \"coin-blank\",\n    \"coin-front\",\n    \"coin-vertical\",\n    \"coin\",\n    \"coins\",\n    \"colon-sign\",\n    \"colon\",\n    \"columns-3\",\n    \"comet\",\n    \"comma\",\n    \"command\",\n    \"comment-arrow-down\",\n    \"comment-arrow-up-right\",\n    \"comment-arrow-up\",\n    \"comment-captions\",\n    \"comment-check\",\n    \"comment-code\",\n    \"comment-dollar\",\n    \"comment-dots\",\n    \"comment-exclamation\",\n    \"comment-heart\",\n    \"comment-image\",\n    \"comment-lines\",\n    \"comment-medical\",\n    \"comment-middle-top\",\n    \"comment-middle\",\n    \"comment-minus\",\n    \"comment-music\",\n    \"comment-nodes\",\n    \"comment-pen\",\n    \"comment-plus\",\n    \"comment-question\",\n    \"comment-quote\",\n    \"comment-slash\",\n    \"comment-smile\",\n    \"comment-sms\",\n    \"comment-text\",\n    \"comment-xmark\",\n    \"comment\",\n    \"comments-dollar\",\n    \"comments-question-check\",\n    \"comments-question\",\n    \"comments\",\n    \"compact-disc\",\n    \"compass-drafting\",\n    \"compass-slash\",\n    \"compass\",\n    \"compress-wide\",\n    \"compress\",\n    \"computer-classic\",\n    \"computer-mouse-scrollwheel\",\n    \"computer-mouse\",\n    \"computer-speaker\",\n    \"computer\",\n    \"container-storage\",\n    \"conveyor-belt-arm\",\n    \"conveyor-belt-boxes\",\n    \"conveyor-belt-empty\",\n    \"conveyor-belt\",\n    \"cookie-bite\",\n    \"cookie\",\n    \"copy\",\n    \"copyright\",\n    \"corn\",\n    \"corner\",\n    \"couch\",\n    \"court-sport\",\n    \"cow\",\n    \"cowbell-circle-plus\",\n    \"cowbell\",\n    \"crab\",\n    \"crate-apple\",\n    \"crate-empty\",\n    \"credit-card-blank\",\n    \"credit-card-front\",\n    \"credit-card\",\n    \"cricket-bat-ball\",\n    \"croissant\",\n    \"crop-simple\",\n    \"crop\",\n    \"cross\",\n    \"crosshairs-simple\",\n    \"crosshairs\",\n    \"crow\",\n    \"crown\",\n    \"crutch\",\n    \"crutches\",\n    \"cruzeiro-sign\",\n    \"crystal-ball\",\n    \"cube\",\n    \"cubes-stacked\",\n    \"cubes\",\n    \"cucumber\",\n    \"cup-straw-swoosh\",\n    \"cup-straw\",\n    \"cup-togo\",\n    \"cupcake\",\n    \"curling-stone\",\n    \"custard\",\n    \"d\",\n    \"dagger\",\n    \"dash\",\n    \"database\",\n    \"deer-rudolph\",\n    \"deer\",\n    \"delete-left\",\n    \"delete-right\",\n    \"democrat\",\n    \"desktop-arrow-down\",\n    \"desktop\",\n    \"dharmachakra\",\n    \"diagram-cells\",\n    \"diagram-lean-canvas\",\n    \"diagram-nested\",\n    \"diagram-next\",\n    \"diagram-predecessor\",\n    \"diagram-previous\",\n    \"diagram-project\",\n    \"diagram-sankey\",\n    \"diagram-subtask\",\n    \"diagram-successor\",\n    \"diagram-venn\",\n    \"dial-high\",\n    \"dial-low\",\n    \"dial-max\",\n    \"dial-med-low\",\n    \"dial-med\",\n    \"dial-min\",\n    \"dial-off\",\n    \"dial\",\n    \"diamond-exclamation\",\n    \"diamond-half-stroke\",\n    \"diamond-half\",\n    \"diamond-turn-right\",\n    \"diamond\",\n    \"diamonds-4\",\n    \"dice-d10\",\n    \"dice-d12\",\n    \"dice-d20\",\n    \"dice-d4\",\n    \"dice-d6\",\n    \"dice-d8\",\n    \"dice-five\",\n    \"dice-four\",\n    \"dice-one\",\n    \"dice-six\",\n    \"dice-three\",\n    \"dice-two\",\n    \"dice\",\n    \"dinosaur\",\n    \"diploma\",\n    \"disc-drive\",\n    \"disease\",\n    \"display-arrow-down\",\n    \"display-chart-up-circle-currency\",\n    \"display-chart-up-circle-dollar\",\n    \"display-chart-up\",\n    \"display-code\",\n    \"display-medical\",\n    \"display-slash\",\n    \"display\",\n    \"distribute-spacing-horizontal\",\n    \"distribute-spacing-vertical\",\n    \"ditto\",\n    \"divide\",\n    \"dna\",\n    \"do-not-enter\",\n    \"dog-leashed\",\n    \"dog\",\n    \"dollar-sign\",\n    \"dolly-empty\",\n    \"dolly\",\n    \"dolphin\",\n    \"dong-sign\",\n    \"donut\",\n    \"door-closed\",\n    \"door-open\",\n    \"dove\",\n    \"down-from-bracket\",\n    \"down-from-dotted-line\",\n    \"down-from-line\",\n    \"down-left-and-up-right-to-center\",\n    \"down-left\",\n    \"down-long\",\n    \"down-right\",\n    \"down-to-bracket\",\n    \"down-to-dotted-line\",\n    \"down-to-line\",\n    \"down\",\n    \"download\",\n    \"dragon\",\n    \"draw-circle\",\n    \"draw-polygon\",\n    \"draw-square\",\n    \"dreidel\",\n    \"drone-front\",\n    \"drone\",\n    \"droplet-degree\",\n    \"droplet-percent\",\n    \"droplet-slash\",\n    \"droplet\",\n    \"drum-steelpan\",\n    \"drum\",\n    \"drumstick-bite\",\n    \"drumstick\",\n    \"dryer-heat\",\n    \"dryer\",\n    \"duck\",\n    \"dumbbell\",\n    \"dumpster-fire\",\n    \"dumpster\",\n    \"dungeon\",\n    \"e\",\n    \"ear-deaf\",\n    \"ear-listen\",\n    \"ear-muffs\",\n    \"ear\",\n    \"earth-africa\",\n    \"earth-americas\",\n    \"earth-asia\",\n    \"earth-europe\",\n    \"earth-oceania\",\n    \"eclipse\",\n    \"egg-fried\",\n    \"egg\",\n    \"eggplant\",\n    \"eject\",\n    \"elephant\",\n    \"elevator\",\n    \"ellipsis-stroke-vertical\",\n    \"ellipsis-stroke\",\n    \"ellipsis-vertical\",\n    \"ellipsis\",\n    \"empty-set\",\n    \"engine-warning\",\n    \"engine\",\n    \"envelope-circle-check\",\n    \"envelope-dot\",\n    \"envelope-open-dollar\",\n    \"envelope-open-text\",\n    \"envelope-open\",\n    \"envelope\",\n    \"envelopes-bulk\",\n    \"envelopes\",\n    \"equals\",\n    \"eraser\",\n    \"escalator\",\n    \"ethernet\",\n    \"euro-sign\",\n    \"excavator\",\n    \"exclamation\",\n    \"expand-wide\",\n    \"expand\",\n    \"explosion\",\n    \"eye-dropper-full\",\n    \"eye-dropper-half\",\n    \"eye-dropper\",\n    \"eye-evil\",\n    \"eye-low-vision\",\n    \"eye-slash\",\n    \"eye\",\n    \"eyes\",\n    \"f\",\n    \"face-angry-horns\",\n    \"face-angry\",\n    \"face-anguished\",\n    \"face-anxious-sweat\",\n    \"face-astonished\",\n    \"face-awesome\",\n    \"face-beam-hand-over-mouth\",\n    \"face-clouds\",\n    \"face-confounded\",\n    \"face-confused\",\n    \"face-cowboy-hat\",\n    \"face-diagonal-mouth\",\n    \"face-disappointed\",\n    \"face-disguise\",\n    \"face-dizzy\",\n    \"face-dotted\",\n    \"face-downcast-sweat\",\n    \"face-drooling\",\n    \"face-exhaling\",\n    \"face-explode\",\n    \"face-expressionless\",\n    \"face-eyes-xmarks\",\n    \"face-fearful\",\n    \"face-flushed\",\n    \"face-frown-open\",\n    \"face-frown-slight\",\n    \"face-frown\",\n    \"face-glasses\",\n    \"face-grimace\",\n    \"face-grin-beam-sweat\",\n    \"face-grin-beam\",\n    \"face-grin-hearts\",\n    \"face-grin-squint-tears\",\n    \"face-grin-squint\",\n    \"face-grin-stars\",\n    \"face-grin-tears\",\n    \"face-grin-tongue-squint\",\n    \"face-grin-tongue-wink\",\n    \"face-grin-tongue\",\n    \"face-grin-wide\",\n    \"face-grin-wink\",\n    \"face-grin\",\n    \"face-hand-over-mouth\",\n    \"face-hand-peeking\",\n    \"face-hand-yawn\",\n    \"face-head-bandage\",\n    \"face-holding-back-tears\",\n    \"face-hushed\",\n    \"face-icicles\",\n    \"face-kiss-beam\",\n    \"face-kiss-closed-eyes\",\n    \"face-kiss-wink-heart\",\n    \"face-kiss\",\n    \"face-laugh-beam\",\n    \"face-laugh-squint\",\n    \"face-laugh-wink\",\n    \"face-laugh\",\n    \"face-lying\",\n    \"face-mask\",\n    \"face-meh-blank\",\n    \"face-meh\",\n    \"face-melting\",\n    \"face-monocle\",\n    \"face-nauseated\",\n    \"face-nose-steam\",\n    \"face-party\",\n    \"face-pensive\",\n    \"face-persevering\",\n    \"face-pleading\",\n    \"face-pouting\",\n    \"face-raised-eyebrow\",\n    \"face-relieved\",\n    \"face-rolling-eyes\",\n    \"face-sad-cry\",\n    \"face-sad-sweat\",\n    \"face-sad-tear\",\n    \"face-saluting\",\n    \"face-scream\",\n    \"face-shush\",\n    \"face-sleeping\",\n    \"face-sleepy\",\n    \"face-smile-beam\",\n    \"face-smile-halo\",\n    \"face-smile-hearts\",\n    \"face-smile-horns\",\n    \"face-smile-plus\",\n    \"face-smile-relaxed\",\n    \"face-smile-tear\",\n    \"face-smile-tongue\",\n    \"face-smile-upside-down\",\n    \"face-smile-wink\",\n    \"face-smile\",\n    \"face-smiling-hands\",\n    \"face-smirking\",\n    \"face-spiral-eyes\",\n    \"face-sunglasses\",\n    \"face-surprise\",\n    \"face-swear\",\n    \"face-thermometer\",\n    \"face-thinking\",\n    \"face-tired\",\n    \"face-tissue\",\n    \"face-tongue-money\",\n    \"face-tongue-sweat\",\n    \"face-unamused\",\n    \"face-viewfinder\",\n    \"face-vomit\",\n    \"face-weary\",\n    \"face-woozy\",\n    \"face-worried\",\n    \"face-zany\",\n    \"face-zipper\",\n    \"falafel\",\n    \"family-dress\",\n    \"family-pants\",\n    \"family\",\n    \"fan-table\",\n    \"fan\",\n    \"farm\",\n    \"faucet-drip\",\n    \"faucet\",\n    \"fax\",\n    \"feather-pointed\",\n    \"feather\",\n    \"fence\",\n    \"ferris-wheel\",\n    \"ferry\",\n    \"field-hockey-stick-ball\",\n    \"file-arrow-down\",\n    \"file-arrow-up\",\n    \"file-audio\",\n    \"file-binary\",\n    \"file-cad\",\n    \"file-certificate\",\n    \"file-chart-column\",\n    \"file-chart-pie\",\n    \"file-check\",\n    \"file-circle-check\",\n    \"file-circle-exclamation\",\n    \"file-circle-info\",\n    \"file-circle-minus\",\n    \"file-circle-plus\",\n    \"file-circle-question\",\n    \"file-circle-xmark\",\n    \"file-code\",\n    \"file-contract\",\n    \"file-csv\",\n    \"file-dashed-line\",\n    \"file-doc\",\n    \"file-eps\",\n    \"file-excel\",\n    \"file-exclamation\",\n    \"file-export\",\n    \"file-fragment\",\n    \"file-gif\",\n    \"file-half-dashed\",\n    \"file-heart\",\n    \"file-image\",\n    \"file-import\",\n    \"file-invoice-dollar\",\n    \"file-invoice\",\n    \"file-jpg\",\n    \"file-lines\",\n    \"file-lock\",\n    \"file-magnifying-glass\",\n    \"file-medical\",\n    \"file-minus\",\n    \"file-mov\",\n    \"file-mp3\",\n    \"file-mp4\",\n    \"file-music\",\n    \"file-pdf\",\n    \"file-pen\",\n    \"file-plus-minus\",\n    \"file-plus\",\n    \"file-png\",\n    \"file-powerpoint\",\n    \"file-ppt\",\n    \"file-prescription\",\n    \"file-shield\",\n    \"file-signature\",\n    \"file-slash\",\n    \"file-spreadsheet\",\n    \"file-svg\",\n    \"file-user\",\n    \"file-vector\",\n    \"file-video\",\n    \"file-waveform\",\n    \"file-word\",\n    \"file-xls\",\n    \"file-xmark\",\n    \"file-xml\",\n    \"file-zip\",\n    \"file-zipper\",\n    \"file\",\n    \"files-medical\",\n    \"files\",\n    \"fill-drip\",\n    \"fill\",\n    \"film-canister\",\n    \"film-simple\",\n    \"film-slash\",\n    \"film\",\n    \"films\",\n    \"filter-circle-dollar\",\n    \"filter-circle-xmark\",\n    \"filter-list\",\n    \"filter-slash\",\n    \"filter\",\n    \"filters\",\n    \"fingerprint\",\n    \"fire-burner\",\n    \"fire-extinguisher\",\n    \"fire-flame-curved\",\n    \"fire-flame-simple\",\n    \"fire-flame\",\n    \"fire-hydrant\",\n    \"fire-smoke\",\n    \"fire\",\n    \"fireplace\",\n    \"fish-bones\",\n    \"fish-cooked\",\n    \"fish-fins\",\n    \"fish\",\n    \"fishing-rod\",\n    \"flag-checkered\",\n    \"flag-pennant\",\n    \"flag-swallowtail\",\n    \"flag-usa\",\n    \"flag\",\n    \"flashlight\",\n    \"flask-gear\",\n    \"flask-round-poison\",\n    \"flask-round-potion\",\n    \"flask-vial\",\n    \"flask\",\n    \"flatbread-stuffed\",\n    \"flatbread\",\n    \"floppy-disk-circle-arrow-right\",\n    \"floppy-disk-circle-xmark\",\n    \"floppy-disk-pen\",\n    \"floppy-disk\",\n    \"floppy-disks\",\n    \"florin-sign\",\n    \"flower-daffodil\",\n    \"flower-tulip\",\n    \"flower\",\n    \"flute\",\n    \"flux-capacitor\",\n    \"flying-disc\",\n    \"folder-arrow-down\",\n    \"folder-arrow-up\",\n    \"folder-bookmark\",\n    \"folder-check\",\n    \"folder-closed\",\n    \"folder-gear\",\n    \"folder-grid\",\n    \"folder-heart\",\n    \"folder-image\",\n    \"folder-magnifying-glass\",\n    \"folder-medical\",\n    \"folder-minus\",\n    \"folder-music\",\n    \"folder-open\",\n    \"folder-plus\",\n    \"folder-tree\",\n    \"folder-user\",\n    \"folder-xmark\",\n    \"folder\",\n    \"folders\",\n    \"fondue-pot\",\n    \"font-awesome\",\n    \"font-case\",\n    \"font\",\n    \"football-helmet\",\n    \"football\",\n    \"fork-knife\",\n    \"fork\",\n    \"forklift\",\n    \"fort\",\n    \"forward-fast\",\n    \"forward-step\",\n    \"forward\",\n    \"frame\",\n    \"franc-sign\",\n    \"french-fries\",\n    \"frog\",\n    \"function\",\n    \"futbol\",\n    \"g\",\n    \"galaxy\",\n    \"gallery-thumbnails\",\n    \"game-board-simple\",\n    \"game-board\",\n    \"game-console-handheld-crank\",\n    \"game-console-handheld\",\n    \"gamepad-modern\",\n    \"gamepad\",\n    \"garage-car\",\n    \"garage-open\",\n    \"garage\",\n    \"garlic\",\n    \"gas-pump-slash\",\n    \"gas-pump\",\n    \"gauge-circle-bolt\",\n    \"gauge-circle-minus\",\n    \"gauge-circle-plus\",\n    \"gauge-high\",\n    \"gauge-low\",\n    \"gauge-max\",\n    \"gauge-min\",\n    \"gauge-simple-high\",\n    \"gauge-simple-low\",\n    \"gauge-simple-max\",\n    \"gauge-simple-min\",\n    \"gauge-simple\",\n    \"gauge\",\n    \"gavel\",\n    \"gear-code\",\n    \"gear-complex-code\",\n    \"gear-complex\",\n    \"gear\",\n    \"gears\",\n    \"gem\",\n    \"genderless\",\n    \"ghost\",\n    \"gif\",\n    \"gift-card\",\n    \"gift\",\n    \"gifts\",\n    \"gingerbread-man\",\n    \"glass-citrus\",\n    \"glass-empty\",\n    \"glass-half\",\n    \"glass-water-droplet\",\n    \"glass-water\",\n    \"glass\",\n    \"glasses-round\",\n    \"glasses\",\n    \"globe-pointer\",\n    \"globe-snow\",\n    \"globe-stand\",\n    \"globe-wifi\",\n    \"globe\",\n    \"goal-net\",\n    \"golf-ball-tee\",\n    \"golf-club\",\n    \"golf-flag-hole\",\n    \"gopuram\",\n    \"graduation-cap\",\n    \"gramophone\",\n    \"grapes\",\n    \"grate-droplet\",\n    \"grate\",\n    \"greater-than-equal\",\n    \"greater-than\",\n    \"grid-2-plus\",\n    \"grid-2\",\n    \"grid-4\",\n    \"grid-5\",\n    \"grid-dividers\",\n    \"grid-horizontal\",\n    \"grid-round-2-plus\",\n    \"grid-round-2\",\n    \"grid-round-4\",\n    \"grid-round-5\",\n    \"grid-round\",\n    \"grid\",\n    \"grill-fire\",\n    \"grill-hot\",\n    \"grill\",\n    \"grip-dots-vertical\",\n    \"grip-dots\",\n    \"grip-lines-vertical\",\n    \"grip-lines\",\n    \"grip-vertical\",\n    \"grip\",\n    \"group-arrows-rotate\",\n    \"guarani-sign\",\n    \"guitar-electric\",\n    \"guitar\",\n    \"guitars\",\n    \"gun-slash\",\n    \"gun-squirt\",\n    \"gun\",\n    \"h\",\n    \"h1\",\n    \"h2\",\n    \"h3\",\n    \"h4\",\n    \"h5\",\n    \"h6\",\n    \"hammer-brush\",\n    \"hammer-crash\",\n    \"hammer-war\",\n    \"hammer\",\n    \"hamsa\",\n    \"hand-back-fist\",\n    \"hand-back-point-down\",\n    \"hand-back-point-left\",\n    \"hand-back-point-ribbon\",\n    \"hand-back-point-right\",\n    \"hand-back-point-up\",\n    \"hand-dots\",\n    \"hand-fingers-crossed\",\n    \"hand-fist\",\n    \"hand-heart\",\n    \"hand-holding-box\",\n    \"hand-holding-circle-dollar\",\n    \"hand-holding-dollar\",\n    \"hand-holding-droplet\",\n    \"hand-holding-hand\",\n    \"hand-holding-heart\",\n    \"hand-holding-magic\",\n    \"hand-holding-medical\",\n    \"hand-holding-seedling\",\n    \"hand-holding-skull\",\n    \"hand-holding\",\n    \"hand-horns\",\n    \"hand-lizard\",\n    \"hand-love\",\n    \"hand-middle-finger\",\n    \"hand-peace\",\n    \"hand-point-down\",\n    \"hand-point-left\",\n    \"hand-point-ribbon\",\n    \"hand-point-right\",\n    \"hand-point-up\",\n    \"hand-pointer\",\n    \"hand-scissors\",\n    \"hand-sparkles\",\n    \"hand-spock\",\n    \"hand-wave\",\n    \"hand\",\n    \"handcuffs\",\n    \"hands-asl-interpreting\",\n    \"hands-bound\",\n    \"hands-bubbles\",\n    \"hands-clapping\",\n    \"hands-holding-child\",\n    \"hands-holding-circle\",\n    \"hands-holding-diamond\",\n    \"hands-holding-dollar\",\n    \"hands-holding-heart\",\n    \"hands-holding\",\n    \"hands-praying\",\n    \"hands\",\n    \"handshake-angle\",\n    \"handshake-simple-slash\",\n    \"handshake-simple\",\n    \"handshake-slash\",\n    \"handshake\",\n    \"hanukiah\",\n    \"hard-drive\",\n    \"hashtag-lock\",\n    \"hashtag\",\n    \"hat-beach\",\n    \"hat-chef\",\n    \"hat-cowboy-side\",\n    \"hat-cowboy\",\n    \"hat-santa\",\n    \"hat-winter\",\n    \"hat-witch\",\n    \"hat-wizard\",\n    \"head-side-brain\",\n    \"head-side-cough-slash\",\n    \"head-side-cough\",\n    \"head-side-gear\",\n    \"head-side-goggles\",\n    \"head-side-headphones\",\n    \"head-side-heart\",\n    \"head-side-mask\",\n    \"head-side-medical\",\n    \"head-side-virus\",\n    \"head-side\",\n    \"heading\",\n    \"headphones-simple\",\n    \"headphones\",\n    \"headset\",\n    \"heart-circle-bolt\",\n    \"heart-circle-check\",\n    \"heart-circle-exclamation\",\n    \"heart-circle-minus\",\n    \"heart-circle-plus\",\n    \"heart-circle-xmark\",\n    \"heart-crack\",\n    \"heart-half-stroke\",\n    \"heart-half\",\n    \"heart-pulse\",\n    \"heart\",\n    \"heat\",\n    \"helicopter-symbol\",\n    \"helicopter\",\n    \"helmet-battle\",\n    \"helmet-safety\",\n    \"helmet-un\",\n    \"hexagon-check\",\n    \"hexagon-divide\",\n    \"hexagon-exclamation\",\n    \"hexagon-image\",\n    \"hexagon-minus\",\n    \"hexagon-nodes-bolt\",\n    \"hexagon-nodes\",\n    \"hexagon-plus\",\n    \"hexagon-vertical-nft-slanted\",\n    \"hexagon-vertical-nft\",\n    \"hexagon-xmark\",\n    \"hexagon\",\n    \"high-definition\",\n    \"highlighter-line\",\n    \"highlighter\",\n    \"hill-avalanche\",\n    \"hill-rockslide\",\n    \"hippo\",\n    \"hockey-mask\",\n    \"hockey-puck\",\n    \"hockey-stick-puck\",\n    \"hockey-sticks\",\n    \"holly-berry\",\n    \"honey-pot\",\n    \"hood-cloak\",\n    \"horizontal-rule\",\n    \"horse-head\",\n    \"horse-saddle\",\n    \"horse\",\n    \"hose-reel\",\n    \"hose\",\n    \"hospital-user\",\n    \"hospital\",\n    \"hospitals\",\n    \"hot-tub-person\",\n    \"hotdog\",\n    \"hotel\",\n    \"hourglass-clock\",\n    \"hourglass-end\",\n    \"hourglass-half\",\n    \"hourglass-start\",\n    \"hourglass\",\n    \"house-blank\",\n    \"house-building\",\n    \"house-chimney-blank\",\n    \"house-chimney-crack\",\n    \"house-chimney-heart\",\n    \"house-chimney-medical\",\n    \"house-chimney-user\",\n    \"house-chimney-window\",\n    \"house-chimney\",\n    \"house-circle-check\",\n    \"house-circle-exclamation\",\n    \"house-circle-xmark\",\n    \"house-crack\",\n    \"house-day\",\n    \"house-fire\",\n    \"house-flag\",\n    \"house-flood-water-circle-arrow-right\",\n    \"house-flood-water\",\n    \"house-heart\",\n    \"house-laptop\",\n    \"house-lock\",\n    \"house-medical-circle-check\",\n    \"house-medical-circle-exclamation\",\n    \"house-medical-circle-xmark\",\n    \"house-medical-flag\",\n    \"house-medical\",\n    \"house-night\",\n    \"house-person-leave\",\n    \"house-person-return\",\n    \"house-signal\",\n    \"house-tree\",\n    \"house-tsunami\",\n    \"house-turret\",\n    \"house-user\",\n    \"house-water\",\n    \"house-window\",\n    \"house\",\n    \"hryvnia-sign\",\n    \"hundred-points\",\n    \"hurricane\",\n    \"hydra\",\n    \"hyphen\",\n    \"i-cursor\",\n    \"i\",\n    \"ice-cream\",\n    \"ice-skate\",\n    \"icicles\",\n    \"icons\",\n    \"id-badge\",\n    \"id-card-clip\",\n    \"id-card\",\n    \"igloo\",\n    \"image-landscape\",\n    \"image-polaroid-user\",\n    \"image-polaroid\",\n    \"image-portrait\",\n    \"image-slash\",\n    \"image-user\",\n    \"image\",\n    \"images-user\",\n    \"images\",\n    \"inbox-full\",\n    \"inbox-in\",\n    \"inbox-out\",\n    \"inbox\",\n    \"inboxes\",\n    \"indent\",\n    \"indian-rupee-sign\",\n    \"industry-windows\",\n    \"industry\",\n    \"infinity\",\n    \"info\",\n    \"inhaler\",\n    \"input-numeric\",\n    \"input-pipe\",\n    \"input-text\",\n    \"integral\",\n    \"interrobang\",\n    \"intersection\",\n    \"island-tropical\",\n    \"italic\",\n    \"j\",\n    \"jack-o-lantern\",\n    \"jar-wheat\",\n    \"jar\",\n    \"jedi\",\n    \"jet-fighter-up\",\n    \"jet-fighter\",\n    \"joint\",\n    \"joystick\",\n    \"jug-bottle\",\n    \"jug-detergent\",\n    \"jug\",\n    \"k\",\n    \"kaaba\",\n    \"kazoo\",\n    \"kerning\",\n    \"key-skeleton-left-right\",\n    \"key-skeleton\",\n    \"key\",\n    \"keyboard-brightness-low\",\n    \"keyboard-brightness\",\n    \"keyboard-down\",\n    \"keyboard-left\",\n    \"keyboard\",\n    \"keynote\",\n    \"khanda\",\n    \"kidneys\",\n    \"kip-sign\",\n    \"kit-medical\",\n    \"kitchen-set\",\n    \"kite\",\n    \"kiwi-bird\",\n    \"kiwi-fruit\",\n    \"knife-kitchen\",\n    \"knife\",\n    \"l\",\n    \"lacrosse-stick-ball\",\n    \"lacrosse-stick\",\n    \"lambda\",\n    \"lamp-desk\",\n    \"lamp-floor\",\n    \"lamp-street\",\n    \"lamp\",\n    \"land-mine-on\",\n    \"landmark-dome\",\n    \"landmark-flag\",\n    \"landmark-magnifying-glass\",\n    \"landmark\",\n    \"language\",\n    \"laptop-arrow-down\",\n    \"laptop-binary\",\n    \"laptop-code\",\n    \"laptop-file\",\n    \"laptop-medical\",\n    \"laptop-mobile\",\n    \"laptop-slash\",\n    \"laptop\",\n    \"lari-sign\",\n    \"lasso-sparkles\",\n    \"lasso\",\n    \"layer-group\",\n    \"layer-minus\",\n    \"layer-plus\",\n    \"leaf-heart\",\n    \"leaf-maple\",\n    \"leaf-oak\",\n    \"leaf\",\n    \"leafy-green\",\n    \"left-from-bracket\",\n    \"left-from-line\",\n    \"left-long-to-line\",\n    \"left-long\",\n    \"left-right\",\n    \"left-to-bracket\",\n    \"left-to-line\",\n    \"left\",\n    \"lemon\",\n    \"less-than-equal\",\n    \"less-than\",\n    \"life-ring\",\n    \"light-ceiling\",\n    \"light-emergency-on\",\n    \"light-emergency\",\n    \"light-switch-off\",\n    \"light-switch-on\",\n    \"light-switch\",\n    \"lightbulb-cfl-on\",\n    \"lightbulb-cfl\",\n    \"lightbulb-dollar\",\n    \"lightbulb-exclamation-on\",\n    \"lightbulb-exclamation\",\n    \"lightbulb-gear\",\n    \"lightbulb-message\",\n    \"lightbulb-on\",\n    \"lightbulb-slash\",\n    \"lightbulb\",\n    \"lighthouse\",\n    \"lights-holiday\",\n    \"line-columns\",\n    \"line-height\",\n    \"lines-leaning\",\n    \"link-horizontal-slash\",\n    \"link-horizontal\",\n    \"link-simple-slash\",\n    \"link-simple\",\n    \"link-slash\",\n    \"link\",\n    \"lips\",\n    \"lira-sign\",\n    \"list-check\",\n    \"list-dropdown\",\n    \"list-music\",\n    \"list-ol\",\n    \"list-radio\",\n    \"list-timeline\",\n    \"list-tree\",\n    \"list-ul\",\n    \"list\",\n    \"litecoin-sign\",\n    \"loader\",\n    \"lobster\",\n    \"location-arrow-up\",\n    \"location-arrow\",\n    \"location-check\",\n    \"location-crosshairs-slash\",\n    \"location-crosshairs\",\n    \"location-dot-slash\",\n    \"location-dot\",\n    \"location-exclamation\",\n    \"location-minus\",\n    \"location-pen\",\n    \"location-pin-lock\",\n    \"location-pin-slash\",\n    \"location-pin\",\n    \"location-plus\",\n    \"location-question\",\n    \"location-smile\",\n    \"location-xmark\",\n    \"lock-a\",\n    \"lock-hashtag\",\n    \"lock-keyhole-open\",\n    \"lock-keyhole\",\n    \"lock-open\",\n    \"lock\",\n    \"locust\",\n    \"lollipop\",\n    \"loveseat\",\n    \"luchador-mask\",\n    \"lungs-virus\",\n    \"lungs\",\n    \"m\",\n    \"mace\",\n    \"magnet\",\n    \"magnifying-glass-arrow-right\",\n    \"magnifying-glass-arrows-rotate\",\n    \"magnifying-glass-chart\",\n    \"magnifying-glass-dollar\",\n    \"magnifying-glass-location\",\n    \"magnifying-glass-minus\",\n    \"magnifying-glass-music\",\n    \"magnifying-glass-play\",\n    \"magnifying-glass-plus\",\n    \"magnifying-glass-waveform\",\n    \"magnifying-glass\",\n    \"mailbox-flag-up\",\n    \"mailbox\",\n    \"manat-sign\",\n    \"mandolin\",\n    \"mango\",\n    \"manhole\",\n    \"map-location-dot\",\n    \"map-location\",\n    \"map-pin\",\n    \"map\",\n    \"marker\",\n    \"mars-and-venus-burst\",\n    \"mars-and-venus\",\n    \"mars-double\",\n    \"mars-stroke-right\",\n    \"mars-stroke-up\",\n    \"mars-stroke\",\n    \"mars\",\n    \"martini-glass-citrus\",\n    \"martini-glass-empty\",\n    \"martini-glass\",\n    \"mask-face\",\n    \"mask-snorkel\",\n    \"mask-ventilator\",\n    \"mask\",\n    \"masks-theater\",\n    \"mattress-pillow\",\n    \"maximize\",\n    \"meat\",\n    \"medal\",\n    \"megaphone\",\n    \"melon-slice\",\n    \"melon\",\n    \"memo-circle-check\",\n    \"memo-circle-info\",\n    \"memo-pad\",\n    \"memo\",\n    \"memory\",\n    \"menorah\",\n    \"mercury\",\n    \"merge\",\n    \"message-arrow-down\",\n    \"message-arrow-up-right\",\n    \"message-arrow-up\",\n    \"message-bot\",\n    \"message-captions\",\n    \"message-check\",\n    \"message-code\",\n    \"message-dollar\",\n    \"message-dots\",\n    \"message-exclamation\",\n    \"message-heart\",\n    \"message-image\",\n    \"message-lines\",\n    \"message-medical\",\n    \"message-middle-top\",\n    \"message-middle\",\n    \"message-minus\",\n    \"message-music\",\n    \"message-pen\",\n    \"message-plus\",\n    \"message-question\",\n    \"message-quote\",\n    \"message-slash\",\n    \"message-smile\",\n    \"message-sms\",\n    \"message-text\",\n    \"message-xmark\",\n    \"message\",\n    \"messages-dollar\",\n    \"messages-question\",\n    \"messages\",\n    \"meteor\",\n    \"meter-bolt\",\n    \"meter-droplet\",\n    \"meter-fire\",\n    \"meter\",\n    \"microchip-ai\",\n    \"microchip\",\n    \"microphone-lines-slash\",\n    \"microphone-lines\",\n    \"microphone-slash\",\n    \"microphone-stand\",\n    \"microphone\",\n    \"microscope\",\n    \"microwave\",\n    \"mill-sign\",\n    \"minimize\",\n    \"minus\",\n    \"mistletoe\",\n    \"mitten\",\n    \"mobile-button\",\n    \"mobile-notch\",\n    \"mobile-retro\",\n    \"mobile-screen-button\",\n    \"mobile-screen\",\n    \"mobile-signal-out\",\n    \"mobile-signal\",\n    \"mobile\",\n    \"money-bill-1-wave\",\n    \"money-bill-1\",\n    \"money-bill-simple-wave\",\n    \"money-bill-simple\",\n    \"money-bill-transfer\",\n    \"money-bill-trend-up\",\n    \"money-bill-wave\",\n    \"money-bill-wheat\",\n    \"money-bill\",\n    \"money-bills-simple\",\n    \"money-bills\",\n    \"money-check-dollar-pen\",\n    \"money-check-dollar\",\n    \"money-check-pen\",\n    \"money-check\",\n    \"money-from-bracket\",\n    \"money-simple-from-bracket\",\n    \"monitor-waveform\",\n    \"monkey\",\n    \"monument\",\n    \"moon-cloud\",\n    \"moon-over-sun\",\n    \"moon-stars\",\n    \"moon\",\n    \"moped\",\n    \"mortar-pestle\",\n    \"mosque\",\n    \"mosquito-net\",\n    \"mosquito\",\n    \"motorcycle\",\n    \"mound\",\n    \"mountain-city\",\n    \"mountain-sun\",\n    \"mountain\",\n    \"mountains\",\n    \"mouse-field\",\n    \"mp3-player\",\n    \"mug-hot\",\n    \"mug-marshmallows\",\n    \"mug-saucer\",\n    \"mug-tea-saucer\",\n    \"mug-tea\",\n    \"mug\",\n    \"mushroom\",\n    \"music-magnifying-glass\",\n    \"music-note-slash\",\n    \"music-note\",\n    \"music-slash\",\n    \"music\",\n    \"mustache\",\n    \"n\",\n    \"naira-sign\",\n    \"narwhal\",\n    \"nesting-dolls\",\n    \"network-wired\",\n    \"neuter\",\n    \"newspaper\",\n    \"nfc-lock\",\n    \"nfc-magnifying-glass\",\n    \"nfc-pen\",\n    \"nfc-signal\",\n    \"nfc-slash\",\n    \"nfc-symbol\",\n    \"nfc-trash\",\n    \"nfc\",\n    \"nose\",\n    \"not-equal\",\n    \"notdef\",\n    \"note-medical\",\n    \"note-sticky\",\n    \"note\",\n    \"notebook\",\n    \"notes-medical\",\n    \"notes\",\n    \"o\",\n    \"object-exclude\",\n    \"object-group\",\n    \"object-intersect\",\n    \"object-subtract\",\n    \"object-ungroup\",\n    \"object-union\",\n    \"objects-align-bottom\",\n    \"objects-align-center-horizontal\",\n    \"objects-align-center-vertical\",\n    \"objects-align-left\",\n    \"objects-align-right\",\n    \"objects-align-top\",\n    \"objects-column\",\n    \"octagon-check\",\n    \"octagon-divide\",\n    \"octagon-exclamation\",\n    \"octagon-minus\",\n    \"octagon-plus\",\n    \"octagon-xmark\",\n    \"octagon\",\n    \"octopus\",\n    \"oil-can-drip\",\n    \"oil-can\",\n    \"oil-temperature\",\n    \"oil-well\",\n    \"olive-branch\",\n    \"olive\",\n    \"om\",\n    \"omega\",\n    \"onion\",\n    \"option\",\n    \"ornament\",\n    \"otter\",\n    \"outdent\",\n    \"outlet\",\n    \"oven\",\n    \"overline\",\n    \"p\",\n    \"page-caret-down\",\n    \"page-caret-up\",\n    \"page\",\n    \"pager\",\n    \"paint-roller\",\n    \"paintbrush-fine\",\n    \"paintbrush-pencil\",\n    \"paintbrush\",\n    \"palette\",\n    \"pallet-box\",\n    \"pallet-boxes\",\n    \"pallet\",\n    \"pan-food\",\n    \"pan-frying\",\n    \"pancakes\",\n    \"panel-ews\",\n    \"panel-fire\",\n    \"panorama\",\n    \"paper-plane-top\",\n    \"paper-plane\",\n    \"paperclip-vertical\",\n    \"paperclip\",\n    \"parachute-box\",\n    \"paragraph-left\",\n    \"paragraph\",\n    \"party-bell\",\n    \"party-horn\",\n    \"passport\",\n    \"paste\",\n    \"pause\",\n    \"paw-claws\",\n    \"paw-simple\",\n    \"paw\",\n    \"peace\",\n    \"peach\",\n    \"peanut\",\n    \"peanuts\",\n    \"peapod\",\n    \"pear\",\n    \"pedestal\",\n    \"pegasus\",\n    \"pen-circle\",\n    \"pen-clip-slash\",\n    \"pen-clip\",\n    \"pen-fancy-slash\",\n    \"pen-fancy\",\n    \"pen-field\",\n    \"pen-line\",\n    \"pen-nib-slash\",\n    \"pen-nib\",\n    \"pen-paintbrush\",\n    \"pen-ruler\",\n    \"pen-slash\",\n    \"pen-swirl\",\n    \"pen-to-square\",\n    \"pen\",\n    \"pencil-mechanical\",\n    \"pencil-slash\",\n    \"pencil\",\n    \"people-arrows\",\n    \"people-carry-box\",\n    \"people-dress-simple\",\n    \"people-dress\",\n    \"people-group\",\n    \"people-line\",\n    \"people-pants-simple\",\n    \"people-pants\",\n    \"people-pulling\",\n    \"people-robbery\",\n    \"people-roof\",\n    \"people-simple\",\n    \"people\",\n    \"pepper-hot\",\n    \"pepper\",\n    \"percent\",\n    \"period\",\n    \"person-arrow-down-to-line\",\n    \"person-arrow-up-from-line\",\n    \"person-biking-mountain\",\n    \"person-biking\",\n    \"person-booth\",\n    \"person-breastfeeding\",\n    \"person-burst\",\n    \"person-cane\",\n    \"person-carry-box\",\n    \"person-chalkboard\",\n    \"person-circle-check\",\n    \"person-circle-exclamation\",\n    \"person-circle-minus\",\n    \"person-circle-plus\",\n    \"person-circle-question\",\n    \"person-circle-xmark\",\n    \"person-digging\",\n    \"person-dolly-empty\",\n    \"person-dolly\",\n    \"person-dots-from-line\",\n    \"person-dress-burst\",\n    \"person-dress-fairy\",\n    \"person-dress-simple\",\n    \"person-dress\",\n    \"person-drowning\",\n    \"person-fairy\",\n    \"person-falling-burst\",\n    \"person-falling\",\n    \"person-from-portal\",\n    \"person-half-dress\",\n    \"person-harassing\",\n    \"person-hiking\",\n    \"person-military-pointing\",\n    \"person-military-rifle\",\n    \"person-military-to-person\",\n    \"person-pinball\",\n    \"person-praying\",\n    \"person-pregnant\",\n    \"person-rays\",\n    \"person-rifle\",\n    \"person-running-fast\",\n    \"person-running\",\n    \"person-seat-reclined\",\n    \"person-seat\",\n    \"person-shelter\",\n    \"person-sign\",\n    \"person-simple\",\n    \"person-skating\",\n    \"person-ski-jumping\",\n    \"person-ski-lift\",\n    \"person-skiing-nordic\",\n    \"person-skiing\",\n    \"person-sledding\",\n    \"person-snowboarding\",\n    \"person-snowmobiling\",\n    \"person-swimming\",\n    \"person-through-window\",\n    \"person-to-door\",\n    \"person-to-portal\",\n    \"person-walking-arrow-loop-left\",\n    \"person-walking-arrow-right\",\n    \"person-walking-dashed-line-arrow-right\",\n    \"person-walking-luggage\",\n    \"person-walking-with-cane\",\n    \"person-walking\",\n    \"person\",\n    \"peseta-sign\",\n    \"peso-sign\",\n    \"phone-arrow-down-left\",\n    \"phone-arrow-right\",\n    \"phone-arrow-up-right\",\n    \"phone-flip\",\n    \"phone-hangup\",\n    \"phone-intercom\",\n    \"phone-missed\",\n    \"phone-office\",\n    \"phone-plus\",\n    \"phone-rotary\",\n    \"phone-slash\",\n    \"phone-volume\",\n    \"phone-xmark\",\n    \"phone\",\n    \"photo-film-music\",\n    \"photo-film\",\n    \"pi\",\n    \"piano-keyboard\",\n    \"piano\",\n    \"pickaxe\",\n    \"pickleball\",\n    \"pie\",\n    \"pig\",\n    \"piggy-bank\",\n    \"pills\",\n    \"pinata\",\n    \"pinball\",\n    \"pineapple\",\n    \"pipe-circle-check\",\n    \"pipe-collar\",\n    \"pipe-section\",\n    \"pipe-smoking\",\n    \"pipe-valve\",\n    \"pipe\",\n    \"pizza-slice\",\n    \"pizza\",\n    \"place-of-worship\",\n    \"plane-arrival\",\n    \"plane-circle-check\",\n    \"plane-circle-exclamation\",\n    \"plane-circle-xmark\",\n    \"plane-departure\",\n    \"plane-engines\",\n    \"plane-lock\",\n    \"plane-prop\",\n    \"plane-slash\",\n    \"plane-tail\",\n    \"plane-up-slash\",\n    \"plane-up\",\n    \"plane\",\n    \"planet-moon\",\n    \"planet-ringed\",\n    \"plant-wilt\",\n    \"plate-utensils\",\n    \"plate-wheat\",\n    \"play-pause\",\n    \"play\",\n    \"plug-circle-bolt\",\n    \"plug-circle-check\",\n    \"plug-circle-exclamation\",\n    \"plug-circle-minus\",\n    \"plug-circle-plus\",\n    \"plug-circle-xmark\",\n    \"plug\",\n    \"plus-large\",\n    \"plus-minus\",\n    \"plus\",\n    \"podcast\",\n    \"podium-star\",\n    \"podium\",\n    \"police-box\",\n    \"poll-people\",\n    \"pompebled\",\n    \"poo-storm\",\n    \"poo\",\n    \"pool-8-ball\",\n    \"poop\",\n    \"popcorn\",\n    \"popsicle\",\n    \"pot-food\",\n    \"potato\",\n    \"power-off\",\n    \"prescription-bottle-medical\",\n    \"prescription-bottle-pill\",\n    \"prescription-bottle\",\n    \"prescription\",\n    \"presentation-screen\",\n    \"pretzel\",\n    \"print-magnifying-glass\",\n    \"print-slash\",\n    \"print\",\n    \"projector\",\n    \"pump-medical\",\n    \"pump-soap\",\n    \"pump\",\n    \"pumpkin\",\n    \"puzzle-piece-simple\",\n    \"puzzle-piece\",\n    \"puzzle\",\n    \"q\",\n    \"qrcode\",\n    \"question\",\n    \"quote-left\",\n    \"quote-right\",\n    \"quotes\",\n    \"r\",\n    \"rabbit-running\",\n    \"rabbit\",\n    \"raccoon\",\n    \"racquet\",\n    \"radar\",\n    \"radiation\",\n    \"radio-tuner\",\n    \"radio\",\n    \"rainbow\",\n    \"raindrops\",\n    \"ram\",\n    \"ramp-loading\",\n    \"ranking-star\",\n    \"raygun\",\n    \"receipt\",\n    \"record-vinyl\",\n    \"rectangle-ad\",\n    \"rectangle-barcode\",\n    \"rectangle-code\",\n    \"rectangle-history-circle-plus\",\n    \"rectangle-history-circle-user\",\n    \"rectangle-history\",\n    \"rectangle-list\",\n    \"rectangle-pro\",\n    \"rectangle-terminal\",\n    \"rectangle-vertical-history\",\n    \"rectangle-vertical\",\n    \"rectangle-wide\",\n    \"rectangle-xmark\",\n    \"rectangle\",\n    \"rectangles-mixed\",\n    \"recycle\",\n    \"reel\",\n    \"reflect-both\",\n    \"reflect-horizontal\",\n    \"reflect-vertical\",\n    \"refrigerator\",\n    \"registered\",\n    \"repeat-1\",\n    \"repeat\",\n    \"reply-all\",\n    \"reply-clock\",\n    \"reply\",\n    \"republican\",\n    \"restroom-simple\",\n    \"restroom\",\n    \"retweet\",\n    \"rhombus\",\n    \"ribbon\",\n    \"right-from-bracket\",\n    \"right-from-line\",\n    \"right-left-large\",\n    \"right-left\",\n    \"right-long-to-line\",\n    \"right-long\",\n    \"right-to-bracket\",\n    \"right-to-line\",\n    \"right\",\n    \"ring-diamond\",\n    \"ring\",\n    \"rings-wedding\",\n    \"road-barrier\",\n    \"road-bridge\",\n    \"road-circle-check\",\n    \"road-circle-exclamation\",\n    \"road-circle-xmark\",\n    \"road-lock\",\n    \"road-spikes\",\n    \"road\",\n    \"robot-astromech\",\n    \"robot\",\n    \"rocket-launch\",\n    \"rocket\",\n    \"roller-coaster\",\n    \"rotate-exclamation\",\n    \"rotate-left\",\n    \"rotate-reverse\",\n    \"rotate-right\",\n    \"rotate\",\n    \"route-highway\",\n    \"route-interstate\",\n    \"route\",\n    \"router\",\n    \"rss\",\n    \"ruble-sign\",\n    \"rug\",\n    \"rugby-ball\",\n    \"ruler-combined\",\n    \"ruler-horizontal\",\n    \"ruler-triangle\",\n    \"ruler-vertical\",\n    \"ruler\",\n    \"rupee-sign\",\n    \"rupiah-sign\",\n    \"rv\",\n    \"s\",\n    \"sack-dollar\",\n    \"sack-xmark\",\n    \"sack\",\n    \"sailboat\",\n    \"salad\",\n    \"salt-shaker\",\n    \"sandwich\",\n    \"satellite-dish\",\n    \"satellite\",\n    \"sausage\",\n    \"saxophone-fire\",\n    \"saxophone\",\n    \"scale-balanced\",\n    \"scale-unbalanced-flip\",\n    \"scale-unbalanced\",\n    \"scalpel-line-dashed\",\n    \"scalpel\",\n    \"scanner-gun\",\n    \"scanner-image\",\n    \"scanner-keyboard\",\n    \"scanner-touchscreen\",\n    \"scarecrow\",\n    \"scarf\",\n    \"school-circle-check\",\n    \"school-circle-exclamation\",\n    \"school-circle-xmark\",\n    \"school-flag\",\n    \"school-lock\",\n    \"school\",\n    \"scissors\",\n    \"screen-users\",\n    \"screencast\",\n    \"screwdriver-wrench\",\n    \"screwdriver\",\n    \"scribble\",\n    \"scroll-old\",\n    \"scroll-torah\",\n    \"scroll\",\n    \"scrubber\",\n    \"scythe\",\n    \"sd-card\",\n    \"sd-cards\",\n    \"seal-exclamation\",\n    \"seal-question\",\n    \"seal\",\n    \"seat-airline\",\n    \"section\",\n    \"seedling\",\n    \"semicolon\",\n    \"send-back\",\n    \"send-backward\",\n    \"sensor-cloud\",\n    \"sensor-fire\",\n    \"sensor-on\",\n    \"sensor-triangle-exclamation\",\n    \"sensor\",\n    \"server\",\n    \"shapes\",\n    \"share-all\",\n    \"share-from-square\",\n    \"share-nodes\",\n    \"share\",\n    \"sheep\",\n    \"sheet-plastic\",\n    \"shekel-sign\",\n    \"shelves-empty\",\n    \"shelves\",\n    \"shield-cat\",\n    \"shield-check\",\n    \"shield-cross\",\n    \"shield-dog\",\n    \"shield-exclamation\",\n    \"shield-halved\",\n    \"shield-heart\",\n    \"shield-keyhole\",\n    \"shield-minus\",\n    \"shield-plus\",\n    \"shield-quartered\",\n    \"shield-slash\",\n    \"shield-virus\",\n    \"shield-xmark\",\n    \"shield\",\n    \"ship\",\n    \"shirt-long-sleeve\",\n    \"shirt-running\",\n    \"shirt-tank-top\",\n    \"shirt\",\n    \"shish-kebab\",\n    \"shoe-prints\",\n    \"shop-lock\",\n    \"shop-slash\",\n    \"shop\",\n    \"shovel-snow\",\n    \"shovel\",\n    \"shower-down\",\n    \"shower\",\n    \"shredder\",\n    \"shrimp\",\n    \"shuffle\",\n    \"shutters\",\n    \"shuttle-space\",\n    \"shuttlecock\",\n    \"sickle\",\n    \"sidebar-flip\",\n    \"sidebar\",\n    \"sigma\",\n    \"sign-hanging\",\n    \"sign-post\",\n    \"sign-posts-wrench\",\n    \"sign-posts\",\n    \"signal-bars-fair\",\n    \"signal-bars-good\",\n    \"signal-bars-slash\",\n    \"signal-bars-weak\",\n    \"signal-bars\",\n    \"signal-fair\",\n    \"signal-good\",\n    \"signal-slash\",\n    \"signal-stream-slash\",\n    \"signal-stream\",\n    \"signal-strong\",\n    \"signal-weak\",\n    \"signal\",\n    \"signature-lock\",\n    \"signature-slash\",\n    \"signature\",\n    \"signs-post\",\n    \"sim-card\",\n    \"sim-cards\",\n    \"sink\",\n    \"siren-on\",\n    \"siren\",\n    \"sitemap\",\n    \"skeleton-ribs\",\n    \"skeleton\",\n    \"ski-boot-ski\",\n    \"ski-boot\",\n    \"skull-cow\",\n    \"skull-crossbones\",\n    \"skull\",\n    \"slash-back\",\n    \"slash-forward\",\n    \"slash\",\n    \"sleigh\",\n    \"slider\",\n    \"sliders-simple\",\n    \"sliders-up\",\n    \"sliders\",\n    \"slot-machine\",\n    \"smog\",\n    \"smoke\",\n    \"smoking\",\n    \"snake\",\n    \"snooze\",\n    \"snow-blowing\",\n    \"snowflake-droplets\",\n    \"snowflake\",\n    \"snowflakes\",\n    \"snowman-head\",\n    \"snowman\",\n    \"snowplow\",\n    \"soap\",\n    \"socks\",\n    \"soft-serve\",\n    \"solar-panel\",\n    \"solar-system\",\n    \"sort-down\",\n    \"sort-up\",\n    \"sort\",\n    \"spa\",\n    \"space-station-moon-construction\",\n    \"space-station-moon\",\n    \"spade\",\n    \"spaghetti-monster-flying\",\n    \"sparkle\",\n    \"sparkles\",\n    \"speaker\",\n    \"speakers\",\n    \"spell-check\",\n    \"spider-black-widow\",\n    \"spider-web\",\n    \"spider\",\n    \"spinner-scale\",\n    \"spinner-third\",\n    \"spinner\",\n    \"split\",\n    \"splotch\",\n    \"spoon\",\n    \"sportsball\",\n    \"spray-can-sparkles\",\n    \"spray-can\",\n    \"sprinkler-ceiling\",\n    \"sprinkler\",\n    \"square-0\",\n    \"square-1\",\n    \"square-2\",\n    \"square-3\",\n    \"square-4\",\n    \"square-5\",\n    \"square-6\",\n    \"square-7\",\n    \"square-8\",\n    \"square-9\",\n    \"square-a-lock\",\n    \"square-a\",\n    \"square-ampersand\",\n    \"square-arrow-down-left\",\n    \"square-arrow-down-right\",\n    \"square-arrow-down\",\n    \"square-arrow-left\",\n    \"square-arrow-right\",\n    \"square-arrow-up-left\",\n    \"square-arrow-up-right\",\n    \"square-arrow-up\",\n    \"square-b\",\n    \"square-binary\",\n    \"square-bolt\",\n    \"square-c\",\n    \"square-caret-down\",\n    \"square-caret-left\",\n    \"square-caret-right\",\n    \"square-caret-up\",\n    \"square-check\",\n    \"square-chevron-down\",\n    \"square-chevron-left\",\n    \"square-chevron-right\",\n    \"square-chevron-up\",\n    \"square-code\",\n    \"square-d\",\n    \"square-dashed-circle-plus\",\n    \"square-dashed\",\n    \"square-divide\",\n    \"square-dollar\",\n    \"square-down-left\",\n    \"square-down-right\",\n    \"square-down\",\n    \"square-e\",\n    \"square-ellipsis-vertical\",\n    \"square-ellipsis\",\n    \"square-envelope\",\n    \"square-exclamation\",\n    \"square-f\",\n    \"square-fragile\",\n    \"square-full\",\n    \"square-g\",\n    \"square-h\",\n    \"square-heart\",\n    \"square-i\",\n    \"square-info\",\n    \"square-j\",\n    \"square-k\",\n    \"square-kanban\",\n    \"square-l\",\n    \"square-left\",\n    \"square-list\",\n    \"square-m\",\n    \"square-minus\",\n    \"square-n\",\n    \"square-nfi\",\n    \"square-o\",\n    \"square-p\",\n    \"square-parking-slash\",\n    \"square-parking\",\n    \"square-pen\",\n    \"square-person-confined\",\n    \"square-phone-flip\",\n    \"square-phone-hangup\",\n    \"square-phone\",\n    \"square-plus\",\n    \"square-poll-horizontal\",\n    \"square-poll-vertical\",\n    \"square-q\",\n    \"square-quarters\",\n    \"square-question\",\n    \"square-quote\",\n    \"square-r\",\n    \"square-right\",\n    \"square-ring\",\n    \"square-root-variable\",\n    \"square-root\",\n    \"square-rss\",\n    \"square-s\",\n    \"square-share-nodes\",\n    \"square-sliders-vertical\",\n    \"square-sliders\",\n    \"square-small\",\n    \"square-star\",\n    \"square-t\",\n    \"square-terminal\",\n    \"square-this-way-up\",\n    \"square-u\",\n    \"square-up-left\",\n    \"square-up-right\",\n    \"square-up\",\n    \"square-user\",\n    \"square-v\",\n    \"square-virus\",\n    \"square-w\",\n    \"square-x\",\n    \"square-xmark\",\n    \"square-y\",\n    \"square-z\",\n    \"square\",\n    \"squid\",\n    \"squirrel\",\n    \"staff-snake\",\n    \"staff\",\n    \"stairs\",\n    \"stamp\",\n    \"standard-definition\",\n    \"stapler\",\n    \"star-and-crescent\",\n    \"star-christmas\",\n    \"star-exclamation\",\n    \"star-half-stroke\",\n    \"star-half\",\n    \"star-of-david\",\n    \"star-of-life\",\n    \"star-sharp-half-stroke\",\n    \"star-sharp-half\",\n    \"star-sharp\",\n    \"star-shooting\",\n    \"star\",\n    \"starfighter-twin-ion-engine-advanced\",\n    \"starfighter-twin-ion-engine\",\n    \"starfighter\",\n    \"stars\",\n    \"starship-freighter\",\n    \"starship\",\n    \"steak\",\n    \"steering-wheel\",\n    \"sterling-sign\",\n    \"stethoscope\",\n    \"stocking\",\n    \"stomach\",\n    \"stop\",\n    \"stopwatch-20\",\n    \"stopwatch\",\n    \"store-lock\",\n    \"store-slash\",\n    \"store\",\n    \"strawberry\",\n    \"street-view\",\n    \"stretcher\",\n    \"strikethrough\",\n    \"stroopwafel\",\n    \"subscript\",\n    \"subtitles-slash\",\n    \"subtitles\",\n    \"suitcase-medical\",\n    \"suitcase-rolling\",\n    \"suitcase\",\n    \"sun-bright\",\n    \"sun-cloud\",\n    \"sun-dust\",\n    \"sun-haze\",\n    \"sun-plant-wilt\",\n    \"sun\",\n    \"sunglasses\",\n    \"sunrise\",\n    \"sunset\",\n    \"superscript\",\n    \"sushi-roll\",\n    \"sushi\",\n    \"swap-arrows\",\n    \"swap\",\n    \"swatchbook\",\n    \"sword-laser-alt\",\n    \"sword-laser\",\n    \"sword\",\n    \"swords-laser\",\n    \"swords\",\n    \"symbols\",\n    \"synagogue\",\n    \"syringe\",\n    \"t-rex\",\n    \"t\",\n    \"table-cells-column-lock\",\n    \"table-cells-column-unlock\",\n    \"table-cells-large\",\n    \"table-cells-lock\",\n    \"table-cells-row-lock\",\n    \"table-cells-row-unlock\",\n    \"table-cells-unlock\",\n    \"table-cells\",\n    \"table-columns\",\n    \"table-layout\",\n    \"table-list\",\n    \"table-picnic\",\n    \"table-pivot\",\n    \"table-rows\",\n    \"table-tennis-paddle-ball\",\n    \"table-tree\",\n    \"table\",\n    \"tablet-button\",\n    \"tablet-rugged\",\n    \"tablet-screen-button\",\n    \"tablet-screen\",\n    \"tablet\",\n    \"tablets\",\n    \"tachograph-digital\",\n    \"taco\",\n    \"tag\",\n    \"tags\",\n    \"tally-1\",\n    \"tally-2\",\n    \"tally-3\",\n    \"tally-4\",\n    \"tally\",\n    \"tamale\",\n    \"tank-water\",\n    \"tape\",\n    \"tarp-droplet\",\n    \"tarp\",\n    \"taxi-bus\",\n    \"taxi\",\n    \"teddy-bear\",\n    \"teeth-open\",\n    \"teeth\",\n    \"telescope\",\n    \"temperature-arrow-down\",\n    \"temperature-arrow-up\",\n    \"temperature-empty\",\n    \"temperature-full\",\n    \"temperature-half\",\n    \"temperature-high\",\n    \"temperature-list\",\n    \"temperature-low\",\n    \"temperature-quarter\",\n    \"temperature-snow\",\n    \"temperature-sun\",\n    \"temperature-three-quarters\",\n    \"tenge-sign\",\n    \"tennis-ball\",\n    \"tent-arrow-down-to-line\",\n    \"tent-arrow-left-right\",\n    \"tent-arrow-turn-left\",\n    \"tent-arrows-down\",\n    \"tent-double-peak\",\n    \"tent\",\n    \"tents\",\n    \"terminal\",\n    \"text-height\",\n    \"text-size\",\n    \"text-slash\",\n    \"text-width\",\n    \"text\",\n    \"thermometer\",\n    \"theta\",\n    \"thought-bubble\",\n    \"thumbs-down\",\n    \"thumbs-up\",\n    \"thumbtack-slash\",\n    \"thumbtack\",\n    \"tick\",\n    \"ticket-airline\",\n    \"ticket-perforated\",\n    \"ticket-simple\",\n    \"ticket\",\n    \"tickets-airline\",\n    \"tickets-perforated\",\n    \"tickets-simple\",\n    \"tickets\",\n    \"tilde\",\n    \"timeline-arrow\",\n    \"timeline\",\n    \"timer\",\n    \"tire-flat\",\n    \"tire-pressure-warning\",\n    \"tire-rugged\",\n    \"tire\",\n    \"toggle-large-off\",\n    \"toggle-large-on\",\n    \"toggle-off\",\n    \"toggle-on\",\n    \"toilet-paper-blank-under\",\n    \"toilet-paper-blank\",\n    \"toilet-paper-check\",\n    \"toilet-paper-slash\",\n    \"toilet-paper-under-slash\",\n    \"toilet-paper-under\",\n    \"toilet-paper-xmark\",\n    \"toilet-paper\",\n    \"toilet-portable\",\n    \"toilet\",\n    \"toilets-portable\",\n    \"tomato\",\n    \"tombstone-blank\",\n    \"tombstone\",\n    \"toolbox\",\n    \"tooth\",\n    \"toothbrush\",\n    \"torii-gate\",\n    \"tornado\",\n    \"tower-broadcast\",\n    \"tower-cell\",\n    \"tower-control\",\n    \"tower-observation\",\n    \"tractor\",\n    \"trademark\",\n    \"traffic-cone\",\n    \"traffic-light-go\",\n    \"traffic-light-slow\",\n    \"traffic-light-stop\",\n    \"traffic-light\",\n    \"trailer\",\n    \"train-subway-tunnel\",\n    \"train-subway\",\n    \"train-track\",\n    \"train-tram\",\n    \"train-tunnel\",\n    \"train\",\n    \"transformer-bolt\",\n    \"transgender\",\n    \"transporter-1\",\n    \"transporter-2\",\n    \"transporter-3\",\n    \"transporter-4\",\n    \"transporter-5\",\n    \"transporter-6\",\n    \"transporter-7\",\n    \"transporter-empty\",\n    \"transporter\",\n    \"trash-arrow-up\",\n    \"trash-can-arrow-up\",\n    \"trash-can-check\",\n    \"trash-can-clock\",\n    \"trash-can-list\",\n    \"trash-can-plus\",\n    \"trash-can-slash\",\n    \"trash-can-undo\",\n    \"trash-can-xmark\",\n    \"trash-can\",\n    \"trash-check\",\n    \"trash-clock\",\n    \"trash-list\",\n    \"trash-plus\",\n    \"trash-slash\",\n    \"trash-undo\",\n    \"trash-xmark\",\n    \"trash\",\n    \"treasure-chest\",\n    \"tree-christmas\",\n    \"tree-city\",\n    \"tree-deciduous\",\n    \"tree-decorated\",\n    \"tree-large\",\n    \"tree-palm\",\n    \"tree\",\n    \"trees\",\n    \"triangle-exclamation\",\n    \"triangle-instrument\",\n    \"triangle-person-digging\",\n    \"triangle\",\n    \"tricycle-adult\",\n    \"tricycle\",\n    \"trillium\",\n    \"trophy-star\",\n    \"trophy\",\n    \"trowel-bricks\",\n    \"trowel\",\n    \"truck-arrow-right\",\n    \"truck-bolt\",\n    \"truck-clock\",\n    \"truck-container-empty\",\n    \"truck-container\",\n    \"truck-droplet\",\n    \"truck-fast\",\n    \"truck-field-un\",\n    \"truck-field\",\n    \"truck-fire\",\n    \"truck-flatbed\",\n    \"truck-front\",\n    \"truck-ladder\",\n    \"truck-medical\",\n    \"truck-monster\",\n    \"truck-moving\",\n    \"truck-pickup\",\n    \"truck-plane\",\n    \"truck-plow\",\n    \"truck-ramp-box\",\n    \"truck-ramp-couch\",\n    \"truck-ramp\",\n    \"truck-tow\",\n    \"truck-utensils\",\n    \"truck\",\n    \"trumpet\",\n    \"tty-answer\",\n    \"tty\",\n    \"tugrik-sign\",\n    \"turkey\",\n    \"turkish-lira-sign\",\n    \"turn-down-left\",\n    \"turn-down-right\",\n    \"turn-down\",\n    \"turn-left-down\",\n    \"turn-left-up\",\n    \"turn-left\",\n    \"turn-right\",\n    \"turn-up\",\n    \"turntable\",\n    \"turtle\",\n    \"tv-music\",\n    \"tv-retro\",\n    \"tv\",\n    \"typewriter\",\n    \"u\",\n    \"ufo-beam\",\n    \"ufo\",\n    \"umbrella-beach\",\n    \"umbrella-simple\",\n    \"umbrella\",\n    \"underline\",\n    \"unicorn\",\n    \"uniform-martial-arts\",\n    \"union\",\n    \"universal-access\",\n    \"unlock-keyhole\",\n    \"unlock\",\n    \"up-down-left-right\",\n    \"up-down\",\n    \"up-from-bracket\",\n    \"up-from-dotted-line\",\n    \"up-from-line\",\n    \"up-left\",\n    \"up-long\",\n    \"up-right-and-down-left-from-center\",\n    \"up-right-from-square\",\n    \"up-right\",\n    \"up-to-bracket\",\n    \"up-to-dotted-line\",\n    \"up-to-line\",\n    \"up\",\n    \"upload\",\n    \"usb-drive\",\n    \"user-alien\",\n    \"user-astronaut\",\n    \"user-beard-bolt\",\n    \"user-bounty-hunter\",\n    \"user-check\",\n    \"user-chef\",\n    \"user-clock\",\n    \"user-cowboy\",\n    \"user-crown\",\n    \"user-doctor-hair-long\",\n    \"user-doctor-hair\",\n    \"user-doctor-message\",\n    \"user-doctor\",\n    \"user-gear\",\n    \"user-graduate\",\n    \"user-group-crown\",\n    \"user-group-simple\",\n    \"user-group\",\n    \"user-hair-buns\",\n    \"user-hair-long\",\n    \"user-hair-mullet\",\n    \"user-hair\",\n    \"user-headset\",\n    \"user-helmet-safety\",\n    \"user-hoodie\",\n    \"user-injured\",\n    \"user-large-slash\",\n    \"user-large\",\n    \"user-lock\",\n    \"user-magnifying-glass\",\n    \"user-minus\",\n    \"user-music\",\n    \"user-ninja\",\n    \"user-nurse-hair-long\",\n    \"user-nurse-hair\",\n    \"user-nurse\",\n    \"user-pen\",\n    \"user-pilot-tie\",\n    \"user-pilot\",\n    \"user-plus\",\n    \"user-police-tie\",\n    \"user-police\",\n    \"user-robot-xmarks\",\n    \"user-robot\",\n    \"user-secret\",\n    \"user-shakespeare\",\n    \"user-shield\",\n    \"user-slash\",\n    \"user-tag\",\n    \"user-tie-hair-long\",\n    \"user-tie-hair\",\n    \"user-tie\",\n    \"user-unlock\",\n    \"user-visor\",\n    \"user-vneck-hair-long\",\n    \"user-vneck-hair\",\n    \"user-vneck\",\n    \"user-xmark\",\n    \"user\",\n    \"users-between-lines\",\n    \"users-gear\",\n    \"users-line\",\n    \"users-medical\",\n    \"users-rays\",\n    \"users-rectangle\",\n    \"users-slash\",\n    \"users-viewfinder\",\n    \"users\",\n    \"utensils-slash\",\n    \"utensils\",\n    \"utility-pole-double\",\n    \"utility-pole\",\n    \"v\",\n    \"vacuum-robot\",\n    \"vacuum\",\n    \"value-absolute\",\n    \"van-shuttle\",\n    \"vault\",\n    \"vector-circle\",\n    \"vector-polygon\",\n    \"vector-square\",\n    \"vent-damper\",\n    \"venus-double\",\n    \"venus-mars\",\n    \"venus\",\n    \"vest-patches\",\n    \"vest\",\n    \"vial-circle-check\",\n    \"vial-virus\",\n    \"vial\",\n    \"vials\",\n    \"video-arrow-down-left\",\n    \"video-arrow-up-right\",\n    \"video-plus\",\n    \"video-slash\",\n    \"video\",\n    \"vihara\",\n    \"violin\",\n    \"virus-covid-slash\",\n    \"virus-covid\",\n    \"virus-slash\",\n    \"virus\",\n    \"viruses\",\n    \"voicemail\",\n    \"volcano\",\n    \"volleyball\",\n    \"volume-high\",\n    \"volume-low\",\n    \"volume-off\",\n    \"volume-slash\",\n    \"volume-xmark\",\n    \"volume\",\n    \"vr-cardboard\",\n    \"w\",\n    \"waffle\",\n    \"wagon-covered\",\n    \"walker\",\n    \"walkie-talkie\",\n    \"wallet\",\n    \"wand-magic-sparkles\",\n    \"wand-magic\",\n    \"wand-sparkles\",\n    \"wand\",\n    \"warehouse-full\",\n    \"warehouse\",\n    \"washing-machine\",\n    \"watch-apple\",\n    \"watch-calculator\",\n    \"watch-fitness\",\n    \"watch-smart\",\n    \"watch\",\n    \"water-arrow-down\",\n    \"water-arrow-up\",\n    \"water-ladder\",\n    \"water\",\n    \"watermelon-slice\",\n    \"wave-pulse\",\n    \"wave-sine\",\n    \"wave-square\",\n    \"wave-triangle\",\n    \"wave\",\n    \"waveform-lines\",\n    \"waveform\",\n    \"waves-sine\",\n    \"web-awesome\",\n    \"webhook\",\n    \"weight-hanging\",\n    \"weight-scale\",\n    \"whale\",\n    \"wheat-awn-circle-exclamation\",\n    \"wheat-awn-slash\",\n    \"wheat-awn\",\n    \"wheat-slash\",\n    \"wheat\",\n    \"wheelchair-move\",\n    \"wheelchair\",\n    \"whiskey-glass-ice\",\n    \"whiskey-glass\",\n    \"whistle\",\n    \"wifi-exclamation\",\n    \"wifi-fair\",\n    \"wifi-slash\",\n    \"wifi-weak\",\n    \"wifi\",\n    \"wind-turbine\",\n    \"wind-warning\",\n    \"wind\",\n    \"window-flip\",\n    \"window-frame-open\",\n    \"window-frame\",\n    \"window-maximize\",\n    \"window-minimize\",\n    \"window-restore\",\n    \"window\",\n    \"windsock\",\n    \"wine-bottle\",\n    \"wine-glass-crack\",\n    \"wine-glass-empty\",\n    \"wine-glass\",\n    \"won-sign\",\n    \"worm\",\n    \"wreath-laurel\",\n    \"wreath\",\n    \"wrench-simple\",\n    \"wrench\",\n    \"x-ray\",\n    \"x\",\n    \"xmark-large\",\n    \"xmark-to-slot\",\n    \"xmark\",\n    \"xmarks-lines\",\n    \"y\",\n    \"yen-sign\",\n    \"yin-yang\",\n    \"z\"\n  ]\n}\r\n"
  },
  {
    "path": "packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_regular.json",
    "content": "{\"0\":48,\"1\":49,\"2\":50,\"3\":51,\"4\":52,\"5\":53,\"6\":54,\"7\":55,\"8\":56,\"9\":57,\"00\":58471,\"360-degrees\":58076,\"a\":65,\"abacus\":63040,\"accent-grave\":96,\"acorn\":63150,\"address-book\":62137,\"address-card\":62139,\"air-conditioner\":63732,\"airplay\":57481,\"alarm-clock\":62286,\"alarm-exclamation\":63555,\"alarm-plus\":63556,\"alarm-snooze\":63557,\"album-circle-plus\":58508,\"album-circle-user\":58509,\"album-collection-circle-plus\":58510,\"album-collection-circle-user\":58511,\"album-collection\":63648,\"album\":63647,\"alicorn\":63152,\"alien-8bit\":63734,\"alien\":63733,\"align-center\":61495,\"align-justify\":61497,\"align-left\":61494,\"align-right\":61496,\"align-slash\":63558,\"alt\":57482,\"amp-guitar\":63649,\"ampersand\":38,\"anchor-circle-check\":58538,\"anchor-circle-exclamation\":58539,\"anchor-circle-xmark\":58540,\"anchor-lock\":58541,\"anchor\":61757,\"angel\":63353,\"angle-90\":57485,\"angle-down\":61703,\"angle-left\":61700,\"angle-right\":61701,\"angle-up\":61702,\"angle\":57484,\"angles-down\":61699,\"angles-left\":61696,\"angles-right\":61697,\"angles-up-down\":58893,\"angles-up\":61698,\"ankh\":63044,\"ant\":59008,\"apartment\":58472,\"aperture\":58079,\"apostrophe\":39,\"apple-core\":57487,\"apple-whole\":62929,\"archway\":62807,\"arrow-down-1-9\":61794,\"arrow-down-9-1\":63622,\"arrow-down-a-z\":61789,\"arrow-down-arrow-up\":63619,\"arrow-down-big-small\":63628,\"arrow-down-from-arc\":58900,\"arrow-down-from-bracket\":58983,\"arrow-down-from-dotted-line\":57488,\"arrow-down-from-line\":62277,\"arrow-down-left-and-arrow-up-right-to-center\":57490,\"arrow-down-left\":57489,\"arrow-down-long\":61813,\"arrow-down-right\":57491,\"arrow-down-short-wide\":63620,\"arrow-down-small-big\":63629,\"arrow-down-square-triangle\":63625,\"arrow-down-to-arc\":58542,\"arrow-down-to-bracket\":57492,\"arrow-down-to-dotted-line\":57493,\"arrow-down-to-line\":62269,\"arrow-down-to-square\":57494,\"arrow-down-triangle-square\":63624,\"arrow-down-up-across-line\":58543,\"arrow-down-up-lock\":58544,\"arrow-down-wide-short\":61792,\"arrow-down-z-a\":63617,\"arrow-down\":61539,\"arrow-left-from-arc\":58901,\"arrow-left-from-bracket\":58984,\"arrow-left-from-line\":62276,\"arrow-left-long-to-line\":58324,\"arrow-left-long\":61815,\"arrow-left-to-arc\":58902,\"arrow-left-to-bracket\":58985,\"arrow-left-to-line\":62270,\"arrow-left\":61536,\"arrow-pointer\":62021,\"arrow-progress\":58847,\"arrow-right-arrow-left\":61676,\"arrow-right-from-arc\":58545,\"arrow-right-from-bracket\":61579,\"arrow-right-from-line\":62275,\"arrow-right-long-to-line\":58325,\"arrow-right-long\":61816,\"arrow-right-to-arc\":58546,\"arrow-right-to-bracket\":61584,\"arrow-right-to-city\":58547,\"arrow-right-to-line\":62272,\"arrow-right\":61537,\"arrow-rotate-left\":61666,\"arrow-rotate-right\":61470,\"arrow-trend-down\":57495,\"arrow-trend-up\":57496,\"arrow-turn-down-left\":58081,\"arrow-turn-down-right\":58326,\"arrow-turn-down\":61769,\"arrow-turn-left-down\":58931,\"arrow-turn-left-up\":58932,\"arrow-turn-left\":58930,\"arrow-turn-right\":58933,\"arrow-turn-up\":61768,\"arrow-up-1-9\":61795,\"arrow-up-9-1\":63623,\"arrow-up-a-z\":61790,\"arrow-up-arrow-down\":57497,\"arrow-up-big-small\":63630,\"arrow-up-from-arc\":58548,\"arrow-up-from-bracket\":57498,\"arrow-up-from-dotted-line\":57499,\"arrow-up-from-ground-water\":58549,\"arrow-up-from-line\":62274,\"arrow-up-from-square\":57500,\"arrow-up-from-water-pump\":58550,\"arrow-up-left-from-circle\":57502,\"arrow-up-left\":57501,\"arrow-up-long\":61814,\"arrow-up-right-and-arrow-down-left-from-center\":57504,\"arrow-up-right-dots\":58551,\"arrow-up-right-from-square\":61582,\"arrow-up-right\":57503,\"arrow-up-short-wide\":63621,\"arrow-up-small-big\":63631,\"arrow-up-square-triangle\":63627,\"arrow-up-to-arc\":58903,\"arrow-up-to-bracket\":58986,\"arrow-up-to-dotted-line\":57505,\"arrow-up-to-line\":62273,\"arrow-up-triangle-square\":63626,\"arrow-up-wide-short\":61793,\"arrow-up-z-a\":63618,\"arrow-up\":61538,\"arrows-cross\":57506,\"arrows-down-to-line\":58552,\"arrows-down-to-people\":58553,\"arrows-from-dotted-line\":57507,\"arrows-from-line\":57508,\"arrows-left-right-to-line\":58554,\"arrows-left-right\":61566,\"arrows-maximize\":62237,\"arrows-minimize\":57509,\"arrows-repeat-1\":62310,\"arrows-repeat\":62308,\"arrows-retweet\":62305,\"arrows-rotate-reverse\":58928,\"arrows-rotate\":61473,\"arrows-spin\":58555,\"arrows-split-up-and-left\":58556,\"arrows-to-circle\":58557,\"arrows-to-dot\":58558,\"arrows-to-dotted-line\":57510,\"arrows-to-eye\":58559,\"arrows-to-line\":57511,\"arrows-turn-right\":58560,\"arrows-turn-to-dots\":58561,\"arrows-up-down-left-right\":61511,\"arrows-up-down\":61565,\"arrows-up-to-line\":58562,\"asterisk\":42,\"at\":64,\"atom-simple\":62931,\"atom\":62930,\"audio-description-slash\":57512,\"audio-description\":62110,\"austral-sign\":57513,\"avocado\":57514,\"award-simple\":57515,\"award\":62809,\"axe-battle\":63155,\"axe\":63154,\"b\":66,\"baby-carriage\":63357,\"baby\":63356,\"backpack\":62932,\"backward-fast\":61513,\"backward-step\":61512,\"backward\":61514,\"bacon\":63461,\"bacteria\":57433,\"bacterium\":57434,\"badge-check\":62262,\"badge-dollar\":63045,\"badge-percent\":63046,\"badge-sheriff\":63650,\"badge\":62261,\"badger-honey\":63156,\"badminton\":58170,\"bag-seedling\":58866,\"bag-shopping-minus\":58960,\"bag-shopping-plus\":58961,\"bag-shopping\":62096,\"bagel\":58327,\"bags-shopping\":63559,\"baguette\":58328,\"bahai\":63078,\"baht-sign\":57516,\"ball-pile\":63358,\"balloon\":58083,\"balloons\":58084,\"ballot-check\":63283,\"ballot\":63282,\"ban-bug\":63481,\"ban-parking\":62998,\"ban-smoking\":62797,\"ban\":61534,\"banana\":58085,\"bandage\":62562,\"bangladeshi-taka-sign\":58086,\"banjo\":63651,\"barcode-read\":62564,\"barcode-scan\":62565,\"barcode\":61482,\"bars-filter\":57517,\"bars-progress\":63528,\"bars-sort\":57518,\"bars-staggered\":62800,\"bars\":61641,\"baseball-bat-ball\":62514,\"baseball\":62515,\"basket-shopping-minus\":58962,\"basket-shopping-plus\":58963,\"basket-shopping-simple\":57519,\"basket-shopping\":62097,\"basketball-hoop\":62517,\"basketball\":62516,\"bat\":63157,\"bath\":62157,\"battery-bolt\":62326,\"battery-empty\":62020,\"battery-exclamation\":57520,\"battery-full\":62016,\"battery-half\":62018,\"battery-low\":57521,\"battery-quarter\":62019,\"battery-slash\":62327,\"battery-three-quarters\":62017,\"bed-bunk\":63736,\"bed-empty\":63737,\"bed-front\":63735,\"bed-pulse\":62599,\"bed\":62006,\"bee\":57522,\"beer-mug-empty\":61692,\"beer-mug\":57523,\"bell-concierge\":62818,\"bell-exclamation\":63560,\"bell-on\":63738,\"bell-plus\":63561,\"bell-ring\":58924,\"bell-school-slash\":62934,\"bell-school\":62933,\"bell-slash\":61942,\"bell\":61683,\"bells\":63359,\"bench-tree\":58087,\"bezier-curve\":62811,\"bicycle\":61958,\"billboard\":58829,\"bin-bottles-recycle\":58870,\"bin-bottles\":58869,\"bin-recycle\":58871,\"binary-circle-check\":58172,\"binary-lock\":58173,\"binary-slash\":58174,\"binary\":58171,\"binoculars\":61925,\"biohazard\":63360,\"bird\":58473,\"bitcoin-sign\":57524,\"blanket-fire\":58330,\"blanket\":62616,\"blender-phone\":63158,\"blender\":62743,\"blinds-open\":63740,\"blinds-raised\":63741,\"blinds\":63739,\"block-brick-fire\":58332,\"block-brick\":58331,\"block-question\":58333,\"block-quote\":57525,\"block\":58474,\"blog\":63361,\"blueberries\":58088,\"bluetooth\":62099,\"bold\":61490,\"bolt-auto\":57526,\"bolt-lightning\":57527,\"bolt-slash\":57528,\"bolt\":61671,\"bomb\":61922,\"bone-break\":62936,\"bone\":62935,\"bong\":62812,\"book-arrow-right\":57529,\"book-arrow-up\":57530,\"book-atlas\":62808,\"book-bible\":63047,\"book-blank\":62937,\"book-bookmark\":57531,\"book-circle-arrow-right\":57532,\"book-circle-arrow-up\":57533,\"book-copy\":57534,\"book-font\":57535,\"book-heart\":62617,\"book-journal-whills\":63082,\"book-medical\":63462,\"book-open-cover\":57536,\"book-open-reader\":62938,\"book-open\":62744,\"book-quran\":63111,\"book-section\":57537,\"book-skull\":63159,\"book-sparkles\":63160,\"book-tanakh\":63527,\"book-user\":63463,\"book\":61485,\"bookmark-slash\":57538,\"bookmark\":61486,\"books-medical\":63464,\"books\":62939,\"boombox\":63653,\"boot-heeled\":58175,\"boot\":63362,\"booth-curtain\":63284,\"border-all\":63564,\"border-bottom-right\":63572,\"border-bottom\":63565,\"border-center-h\":63644,\"border-center-v\":63645,\"border-inner\":63566,\"border-left\":63567,\"border-none\":63568,\"border-outer\":63569,\"border-right\":63570,\"border-top-left\":63571,\"border-top\":63573,\"bore-hole\":58563,\"bottle-baby\":58995,\"bottle-droplet\":58564,\"bottle-water\":58565,\"bow-arrow\":63161,\"bowl-chopsticks-noodles\":58090,\"bowl-chopsticks\":58089,\"bowl-food\":58566,\"bowl-hot\":63523,\"bowl-rice\":58091,\"bowl-scoop\":58334,\"bowl-scoops\":58335,\"bowl-soft-serve\":58475,\"bowl-spoon\":58336,\"bowling-ball-pin\":57539,\"bowling-ball\":62518,\"bowling-pins\":62519,\"box-archive\":61831,\"box-ballot\":63285,\"box-check\":62567,\"box-circle-check\":57540,\"box-dollar\":62624,\"box-heart\":62621,\"box-open-full\":62620,\"box-open\":62622,\"box-taped\":62618,\"box-tissue\":57435,\"box\":62566,\"boxes-packing\":58567,\"boxes-stacked\":62568,\"boxing-glove\":62520,\"bracket-curly-right\":125,\"bracket-curly\":123,\"bracket-round-right\":41,\"bracket-round\":40,\"bracket-square-right\":93,\"bracket-square\":91,\"brackets-curly\":63466,\"brackets-round\":57541,\"brackets-square\":63465,\"braille\":62113,\"brain-arrow-curved-right\":63095,\"brain-circuit\":57542,\"brain\":62940,\"brake-warning\":57543,\"brazilian-real-sign\":58476,\"bread-loaf\":63467,\"bread-slice-butter\":58337,\"bread-slice\":63468,\"bridge-circle-check\":58569,\"bridge-circle-exclamation\":58570,\"bridge-circle-xmark\":58571,\"bridge-lock\":58572,\"bridge-suspension\":58573,\"bridge-water\":58574,\"bridge\":58568,\"briefcase-arrow-right\":58098,\"briefcase-blank\":57544,\"briefcase-medical\":62569,\"briefcase\":61617,\"brightness-low\":57546,\"brightness\":57545,\"bring-forward\":63574,\"bring-front\":63575,\"broccoli\":58338,\"broom-ball\":62552,\"broom-wide\":58833,\"broom\":62746,\"browser\":62334,\"browsers\":57547,\"brush\":62813,\"bucket\":58575,\"bug-slash\":58512,\"bug\":61832,\"bugs\":58576,\"building-circle-arrow-right\":58577,\"building-circle-check\":58578,\"building-circle-exclamation\":58579,\"building-circle-xmark\":58580,\"building-columns\":61852,\"building-flag\":58581,\"building-lock\":58582,\"building-magnifying-glass\":58908,\"building-memo\":58910,\"building-ngo\":58583,\"building-shield\":58584,\"building-un\":58585,\"building-user\":58586,\"building-wheat\":58587,\"building\":61869,\"buildings\":57548,\"bulldozer\":58965,\"bullhorn\":61601,\"bullseye-arrow\":63048,\"bullseye-pointer\":63049,\"bullseye\":61760,\"buoy-mooring\":58806,\"buoy\":58805,\"burger-cheese\":63473,\"burger-fries\":57549,\"burger-glass\":57550,\"burger-lettuce\":58339,\"burger-soda\":63576,\"burger\":63493,\"burrito\":63469,\"burst\":58588,\"bus-school\":62941,\"bus-simple\":62814,\"bus\":61959,\"business-time\":63050,\"butter\":58340,\"c\":67,\"cabin\":58477,\"cabinet-filing\":63051,\"cable-car\":63450,\"cactus\":63655,\"caduceus\":59009,\"cake-candles\":61949,\"cake-slice\":58341,\"calculator-simple\":63052,\"calculator\":61932,\"calendar-arrow-down\":57552,\"calendar-arrow-up\":57553,\"calendar-check\":62068,\"calendar-circle-exclamation\":58478,\"calendar-circle-minus\":58479,\"calendar-circle-plus\":58480,\"calendar-circle-user\":58481,\"calendar-clock\":57554,\"calendar-day\":63363,\"calendar-days\":61555,\"calendar-exclamation\":62260,\"calendar-heart\":57555,\"calendar-image\":57556,\"calendar-lines-pen\":58482,\"calendar-lines\":57557,\"calendar-minus\":62066,\"calendar-pen\":62259,\"calendar-plus\":62065,\"calendar-range\":57558,\"calendar-star\":63286,\"calendar-users\":58850,\"calendar-week\":63364,\"calendar-xmark\":62067,\"calendar\":61747,\"calendars\":57559,\"camcorder\":63656,\"camera-cctv\":63660,\"camera-movie\":63657,\"camera-polaroid\":63658,\"camera-retro\":61571,\"camera-rotate\":57560,\"camera-security\":63742,\"camera-slash\":57561,\"camera-viewfinder\":57562,\"camera-web-slash\":63539,\"camera-web\":63538,\"camera\":61488,\"campfire\":63162,\"campground\":63163,\"can-food\":58342,\"candle-holder\":63164,\"candy-bar\":58344,\"candy-cane\":63366,\"candy-corn\":63165,\"candy\":58343,\"cannabis\":62815,\"cannon\":58946,\"capsules\":62571,\"car-battery\":62943,\"car-bolt\":58177,\"car-building\":63577,\"car-bump\":62944,\"car-burst\":62945,\"car-bus\":63578,\"car-circle-bolt\":58178,\"car-garage\":62946,\"car-mirrors\":58179,\"car-on\":58589,\"car-rear\":62942,\"car-side-bolt\":58180,\"car-side\":62948,\"car-tilt\":62949,\"car-tunnel\":58590,\"car-wash\":62950,\"car-wrench\":62947,\"car\":61881,\"caravan-simple\":57344,\"caravan\":63743,\"card-club\":58345,\"card-diamond\":58346,\"card-heart\":58347,\"card-spade\":58348,\"cards-blank\":58591,\"cards\":58349,\"caret-down\":61655,\"caret-left\":61657,\"caret-right\":61658,\"caret-up\":61656,\"carpool\":59036,\"carrot\":63367,\"cars\":63579,\"cart-arrow-down\":61976,\"cart-arrow-up\":58350,\"cart-circle-arrow-down\":58351,\"cart-circle-arrow-up\":58352,\"cart-circle-check\":58353,\"cart-circle-exclamation\":58354,\"cart-circle-plus\":58355,\"cart-circle-xmark\":58356,\"cart-flatbed-boxes\":62581,\"cart-flatbed-empty\":62582,\"cart-flatbed-suitcase\":62877,\"cart-flatbed\":62580,\"cart-minus\":57563,\"cart-plus\":61975,\"cart-shopping-fast\":57564,\"cart-shopping\":61562,\"cart-xmark\":57565,\"cash-register\":63368,\"cassette-betamax\":63652,\"cassette-tape\":63659,\"cassette-vhs\":63724,\"castle\":57566,\"cat-space\":57345,\"cat\":63166,\"cauldron\":63167,\"cedi-sign\":57567,\"cent-sign\":58357,\"certificate\":61603,\"chair-office\":63169,\"chair\":63168,\"chalkboard-user\":62748,\"chalkboard\":62747,\"champagne-glass\":63390,\"champagne-glasses\":63391,\"charging-station\":62951,\"chart-area\":61950,\"chart-bar\":61568,\"chart-bullet\":57569,\"chart-candlestick\":57570,\"chart-column\":57571,\"chart-diagram\":59029,\"chart-fft\":59038,\"chart-gantt\":57572,\"chart-kanban\":58959,\"chart-line-down\":63053,\"chart-line-up-down\":58839,\"chart-line-up\":57573,\"chart-line\":61953,\"chart-mixed-up-circle-currency\":58840,\"chart-mixed-up-circle-dollar\":58841,\"chart-mixed\":63043,\"chart-network\":63370,\"chart-pie-simple-circle-currency\":58884,\"chart-pie-simple-circle-dollar\":58885,\"chart-pie-simple\":63054,\"chart-pie\":61952,\"chart-pyramid\":57574,\"chart-radar\":57575,\"chart-scatter-3d\":57576,\"chart-scatter-bubble\":57577,\"chart-scatter\":63470,\"chart-simple-horizontal\":58484,\"chart-simple\":58483,\"chart-sine\":59037,\"chart-tree-map\":57578,\"chart-user\":63139,\"chart-waterfall\":57579,\"check-double\":62816,\"check-to-slot\":63346,\"check\":61452,\"cheese-swiss\":63472,\"cheese\":63471,\"cherries\":57580,\"chess-bishop-piece\":62523,\"chess-bishop\":62522,\"chess-board\":62524,\"chess-clock-flip\":62526,\"chess-clock\":62525,\"chess-king-piece\":62528,\"chess-king\":62527,\"chess-knight-piece\":62530,\"chess-knight\":62529,\"chess-pawn-piece\":62532,\"chess-pawn\":62531,\"chess-queen-piece\":62534,\"chess-queen\":62533,\"chess-rook-piece\":62536,\"chess-rook\":62535,\"chess\":62521,\"chestnut\":58358,\"chevron-down\":61560,\"chevron-left\":61523,\"chevron-right\":61524,\"chevron-up\":61559,\"chevrons-down\":62242,\"chevrons-left\":62243,\"chevrons-right\":62244,\"chevrons-up\":62245,\"chf-sign\":58882,\"child-combatant\":58592,\"child-dress\":58780,\"child-reaching\":58781,\"child\":61870,\"children\":58593,\"chimney\":63371,\"chopsticks\":58359,\"church\":62749,\"circle-0\":57581,\"circle-1\":57582,\"circle-2\":57583,\"circle-3\":57584,\"circle-4\":57585,\"circle-5\":57586,\"circle-6\":57587,\"circle-7\":57588,\"circle-8\":57589,\"circle-9\":57590,\"circle-a\":57591,\"circle-ampersand\":57592,\"circle-arrow-down-left\":57593,\"circle-arrow-down-right\":57594,\"circle-arrow-down\":61611,\"circle-arrow-left\":61608,\"circle-arrow-right\":61609,\"circle-arrow-up-left\":57595,\"circle-arrow-up-right\":57596,\"circle-arrow-up\":61610,\"circle-b\":57597,\"circle-bolt\":57598,\"circle-book-open\":57599,\"circle-bookmark\":57600,\"circle-c\":57601,\"circle-calendar\":57602,\"circle-camera\":57603,\"circle-caret-down\":62253,\"circle-caret-left\":62254,\"circle-caret-right\":62256,\"circle-caret-up\":62257,\"circle-check\":61528,\"circle-chevron-down\":61754,\"circle-chevron-left\":61751,\"circle-chevron-right\":61752,\"circle-chevron-up\":61753,\"circle-d\":57604,\"circle-dashed\":57605,\"circle-divide\":57606,\"circle-dollar-to-slot\":62649,\"circle-dollar\":62184,\"circle-dot\":61842,\"circle-down-left\":57607,\"circle-down-right\":57608,\"circle-down\":62296,\"circle-e\":57609,\"circle-ellipsis-vertical\":57611,\"circle-ellipsis\":57610,\"circle-envelope\":57612,\"circle-euro\":58830,\"circle-exclamation-check\":57613,\"circle-exclamation\":61546,\"circle-f\":57614,\"circle-g\":57615,\"circle-gf\":59007,\"circle-h\":62590,\"circle-half-stroke\":61506,\"circle-half\":57616,\"circle-heart\":62663,\"circle-i\":57617,\"circle-info\":61530,\"circle-j\":57618,\"circle-k\":57619,\"circle-l\":57620,\"circle-left\":62297,\"circle-location-arrow\":62978,\"circle-m\":57621,\"circle-microphone-lines\":57623,\"circle-microphone\":57622,\"circle-minus\":61526,\"circle-n\":57624,\"circle-nodes\":58594,\"circle-notch\":61902,\"circle-o\":57625,\"circle-p\":57626,\"circle-parking\":62997,\"circle-pause\":62091,\"circle-phone-flip\":57628,\"circle-phone-hangup\":57629,\"circle-phone\":57627,\"circle-play\":61764,\"circle-plus\":61525,\"circle-q\":57630,\"circle-quarter-stroke\":58835,\"circle-quarter\":57631,\"circle-quarters\":58360,\"circle-question\":61529,\"circle-r\":57632,\"circle-radiation\":63418,\"circle-right\":62298,\"circle-s\":57633,\"circle-small\":57634,\"circle-sort-down\":57393,\"circle-sort-up\":57394,\"circle-sort\":57392,\"circle-star\":57635,\"circle-sterling\":58831,\"circle-stop\":62093,\"circle-t\":57636,\"circle-three-quarters-stroke\":58836,\"circle-three-quarters\":57637,\"circle-trash\":57638,\"circle-u\":57639,\"circle-up-left\":57640,\"circle-up-right\":57641,\"circle-up\":62299,\"circle-user\":62141,\"circle-v\":57642,\"circle-video\":57643,\"circle-w\":57644,\"circle-waveform-lines\":57645,\"circle-wifi-circle-wifi\":59006,\"circle-wifi\":59005,\"circle-x\":57646,\"circle-xmark\":61527,\"circle-y\":57647,\"circle-yen\":58832,\"circle-z\":57648,\"circle\":61713,\"circles-overlap-3\":59041,\"circles-overlap\":58880,\"citrus-slice\":58101,\"citrus\":58100,\"city\":63055,\"clapperboard-play\":57650,\"clapperboard\":57649,\"clarinet\":63661,\"claw-marks\":63170,\"clipboard-check\":62572,\"clipboard-list-check\":63287,\"clipboard-list\":62573,\"clipboard-medical\":57651,\"clipboard-prescription\":62952,\"clipboard-question\":58595,\"clipboard-user\":63475,\"clipboard\":62248,\"clock-desk\":57652,\"clock-eight-thirty\":58182,\"clock-eight\":58181,\"clock-eleven-thirty\":58184,\"clock-eleven\":58183,\"clock-five-thirty\":58186,\"clock-five\":58185,\"clock-four-thirty\":58187,\"clock-nine-thirty\":58189,\"clock-nine\":58188,\"clock-one-thirty\":58191,\"clock-one\":58190,\"clock-rotate-left\":61914,\"clock-seven-thirty\":58193,\"clock-seven\":58192,\"clock-six-thirty\":58195,\"clock-six\":58194,\"clock-ten-thirty\":58197,\"clock-ten\":58196,\"clock-three-thirty\":58199,\"clock-three\":58198,\"clock-twelve-thirty\":58201,\"clock-twelve\":58200,\"clock-two-thirty\":58203,\"clock-two\":58202,\"clock\":61463,\"clone\":62029,\"closed-captioning-slash\":57653,\"closed-captioning\":61962,\"clothes-hanger\":57654,\"cloud-arrow-down\":61677,\"cloud-arrow-up\":61678,\"cloud-binary\":58881,\"cloud-bolt-moon\":63341,\"cloud-bolt-sun\":63342,\"cloud-bolt\":63340,\"cloud-check\":58204,\"cloud-drizzle\":63288,\"cloud-exclamation\":58513,\"cloud-fog\":63310,\"cloud-hail-mixed\":63290,\"cloud-hail\":63289,\"cloud-meatball\":63291,\"cloud-minus\":58205,\"cloud-moon-rain\":63292,\"cloud-moon\":63171,\"cloud-music\":63662,\"cloud-plus\":58206,\"cloud-question\":58514,\"cloud-rain\":63293,\"cloud-rainbow\":63294,\"cloud-showers-heavy\":63296,\"cloud-showers-water\":58596,\"cloud-showers\":63295,\"cloud-slash\":57655,\"cloud-sleet\":63297,\"cloud-snow\":63298,\"cloud-sun-rain\":63299,\"cloud-sun\":63172,\"cloud-word\":57656,\"cloud-xmark\":58207,\"cloud\":61634,\"clouds-moon\":63301,\"clouds-sun\":63302,\"clouds\":63300,\"clover\":57657,\"club\":62247,\"coconut\":58102,\"code-branch\":61734,\"code-commit\":62342,\"code-compare\":57658,\"code-fork\":57659,\"code-merge\":62343,\"code-pull-request-closed\":58361,\"code-pull-request-draft\":58362,\"code-pull-request\":57660,\"code-simple\":57661,\"code\":61729,\"coffee-bean\":57662,\"coffee-beans\":57663,\"coffee-pot\":57346,\"coffin-cross\":57425,\"coffin\":63174,\"coin-blank\":58363,\"coin-front\":58364,\"coin-vertical\":58365,\"coin\":63580,\"coins\":62750,\"colon-sign\":57664,\"colon\":58,\"columns-3\":58209,\"comet\":57347,\"comma\":44,\"command\":57666,\"comment-arrow-down\":57667,\"comment-arrow-up-right\":57669,\"comment-arrow-up\":57668,\"comment-captions\":57670,\"comment-check\":62636,\"comment-code\":57671,\"comment-dollar\":63057,\"comment-dots\":62637,\"comment-exclamation\":62639,\"comment-heart\":58824,\"comment-image\":57672,\"comment-lines\":62640,\"comment-medical\":63477,\"comment-middle-top\":57674,\"comment-middle\":57673,\"comment-minus\":62641,\"comment-music\":63664,\"comment-nodes\":59030,\"comment-pen\":62638,\"comment-plus\":62642,\"comment-question\":57675,\"comment-quote\":57676,\"comment-slash\":62643,\"comment-smile\":62644,\"comment-sms\":63437,\"comment-text\":57677,\"comment-xmark\":62645,\"comment\":61557,\"comments-dollar\":63059,\"comments-question-check\":57679,\"comments-question\":57678,\"comments\":61574,\"compact-disc\":62751,\"compass-drafting\":62824,\"compass-slash\":62953,\"compass\":61774,\"compress-wide\":62246,\"compress\":61542,\"computer-classic\":63665,\"computer-mouse-scrollwheel\":63693,\"computer-mouse\":63692,\"computer-speaker\":63666,\"computer\":58597,\"container-storage\":62647,\"conveyor-belt-arm\":58872,\"conveyor-belt-boxes\":62575,\"conveyor-belt-empty\":57680,\"conveyor-belt\":62574,\"cookie-bite\":62820,\"cookie\":62819,\"copy\":61637,\"copyright\":61945,\"corn\":63175,\"corner\":58366,\"couch\":62648,\"court-sport\":58947,\"cow\":63176,\"cowbell-circle-plus\":63668,\"cowbell\":63667,\"crab\":58367,\"crate-apple\":63153,\"crate-empty\":57681,\"credit-card-blank\":62345,\"credit-card-front\":62346,\"credit-card\":61597,\"cricket-bat-ball\":62537,\"croissant\":63478,\"crop-simple\":62821,\"crop\":61733,\"cross\":63060,\"crosshairs-simple\":58783,\"crosshairs\":61531,\"crow\":62752,\"crown\":62753,\"crutch\":63479,\"crutches\":63480,\"cruzeiro-sign\":57682,\"crystal-ball\":58210,\"cube\":61874,\"cubes-stacked\":58598,\"cubes\":61875,\"cucumber\":58369,\"cup-straw-swoosh\":58212,\"cup-straw\":58211,\"cup-togo\":63173,\"cupcake\":58370,\"curling-stone\":62538,\"custard\":58371,\"d\":68,\"dagger\":63179,\"dash\":58372,\"database\":61888,\"deer-rudolph\":63375,\"deer\":63374,\"delete-left\":62810,\"delete-right\":57684,\"democrat\":63303,\"desktop-arrow-down\":57685,\"desktop\":62352,\"dharmachakra\":63061,\"diagram-cells\":58485,\"diagram-lean-canvas\":57686,\"diagram-nested\":57687,\"diagram-next\":58486,\"diagram-predecessor\":58487,\"diagram-previous\":58488,\"diagram-project\":62786,\"diagram-sankey\":57688,\"diagram-subtask\":58489,\"diagram-successor\":58490,\"diagram-venn\":57690,\"dial-high\":57692,\"dial-low\":57693,\"dial-max\":57694,\"dial-med-low\":57696,\"dial-med\":57695,\"dial-min\":57697,\"dial-off\":57698,\"dial\":57691,\"diamond-exclamation\":58373,\"diamond-half-stroke\":58808,\"diamond-half\":58807,\"diamond-turn-right\":62955,\"diamond\":61977,\"diamonds-4\":59019,\"dice-d10\":63181,\"dice-d12\":63182,\"dice-d20\":63183,\"dice-d4\":63184,\"dice-d6\":63185,\"dice-d8\":63186,\"dice-five\":62755,\"dice-four\":62756,\"dice-one\":62757,\"dice-six\":62758,\"dice-three\":62759,\"dice-two\":62760,\"dice\":62754,\"dinosaur\":58878,\"diploma\":62954,\"disc-drive\":63669,\"disease\":63482,\"display-arrow-down\":57700,\"display-chart-up-circle-currency\":58853,\"display-chart-up-circle-dollar\":58854,\"display-chart-up\":58851,\"display-code\":57701,\"display-medical\":57702,\"display-slash\":58106,\"display\":57699,\"distribute-spacing-horizontal\":58213,\"distribute-spacing-vertical\":58214,\"ditto\":34,\"divide\":62761,\"dna\":62577,\"do-not-enter\":62956,\"dog-leashed\":63188,\"dog\":63187,\"dollar-sign\":36,\"dolly-empty\":62579,\"dolly\":62578,\"dolphin\":57704,\"dong-sign\":57705,\"donut\":58374,\"door-closed\":62762,\"door-open\":62763,\"dove\":62650,\"down-from-bracket\":58987,\"down-from-dotted-line\":58375,\"down-from-line\":62281,\"down-left-and-up-right-to-center\":62498,\"down-left\":57706,\"down-long\":62217,\"down-right\":57707,\"down-to-bracket\":58599,\"down-to-dotted-line\":58376,\"down-to-line\":62282,\"down\":62292,\"download\":61465,\"dragon\":63189,\"draw-circle\":62957,\"draw-polygon\":62958,\"draw-square\":62959,\"dreidel\":63378,\"drone-front\":63584,\"drone\":63583,\"droplet-degree\":63304,\"droplet-percent\":63312,\"droplet-slash\":62919,\"droplet\":61507,\"drum-steelpan\":62826,\"drum\":62825,\"drumstick-bite\":63191,\"drumstick\":63190,\"dryer-heat\":63586,\"dryer\":63585,\"duck\":63192,\"dumbbell\":62539,\"dumpster-fire\":63380,\"dumpster\":63379,\"dungeon\":63193,\"e\":69,\"ear-deaf\":62116,\"ear-listen\":62114,\"ear-muffs\":63381,\"ear\":62960,\"earth-africa\":62844,\"earth-americas\":62845,\"earth-asia\":62846,\"earth-europe\":63394,\"earth-oceania\":58491,\"eclipse\":63305,\"egg-fried\":63484,\"egg\":63483,\"eggplant\":57708,\"eject\":61522,\"elephant\":63194,\"elevator\":57709,\"ellipsis-stroke-vertical\":62364,\"ellipsis-stroke\":62363,\"ellipsis-vertical\":61762,\"ellipsis\":61761,\"empty-set\":63062,\"engine-warning\":62962,\"engine\":57710,\"envelope-circle-check\":58600,\"envelope-dot\":57711,\"envelope-open-dollar\":63063,\"envelope-open-text\":63064,\"envelope-open\":62134,\"envelope\":61664,\"envelopes-bulk\":63092,\"envelopes\":57712,\"equals\":61,\"eraser\":61741,\"escalator\":57713,\"ethernet\":63382,\"euro-sign\":61779,\"excavator\":58966,\"exclamation\":33,\"expand-wide\":62240,\"expand\":61541,\"explosion\":58601,\"eye-dropper-full\":57714,\"eye-dropper-half\":57715,\"eye-dropper\":61947,\"eye-evil\":63195,\"eye-low-vision\":62120,\"eye-slash\":61552,\"eye\":61550,\"eyes\":58215,\"f\":70,\"face-angry-horns\":58216,\"face-angry\":62806,\"face-anguished\":58217,\"face-anxious-sweat\":58218,\"face-astonished\":58219,\"face-awesome\":58377,\"face-beam-hand-over-mouth\":58492,\"face-clouds\":58493,\"face-confounded\":58220,\"face-confused\":58221,\"face-cowboy-hat\":58222,\"face-diagonal-mouth\":58494,\"face-disappointed\":58223,\"face-disguise\":58224,\"face-dizzy\":62823,\"face-dotted\":58495,\"face-downcast-sweat\":58225,\"face-drooling\":58226,\"face-exhaling\":58496,\"face-explode\":58110,\"face-expressionless\":58227,\"face-eyes-xmarks\":58228,\"face-fearful\":58229,\"face-flushed\":62841,\"face-frown-open\":62842,\"face-frown-slight\":58230,\"face-frown\":61721,\"face-glasses\":58231,\"face-grimace\":62847,\"face-grin-beam-sweat\":62851,\"face-grin-beam\":62850,\"face-grin-hearts\":62852,\"face-grin-squint-tears\":62854,\"face-grin-squint\":62853,\"face-grin-stars\":62855,\"face-grin-tears\":62856,\"face-grin-tongue-squint\":62858,\"face-grin-tongue-wink\":62859,\"face-grin-tongue\":62857,\"face-grin-wide\":62849,\"face-grin-wink\":62860,\"face-grin\":62848,\"face-hand-over-mouth\":58232,\"face-hand-peeking\":58497,\"face-hand-yawn\":58233,\"face-head-bandage\":58234,\"face-holding-back-tears\":58498,\"face-hushed\":58235,\"face-icicles\":58236,\"face-kiss-beam\":62871,\"face-kiss-closed-eyes\":58237,\"face-kiss-wink-heart\":62872,\"face-kiss\":62870,\"face-laugh-beam\":62874,\"face-laugh-squint\":62875,\"face-laugh-wink\":62876,\"face-laugh\":62873,\"face-lying\":58238,\"face-mask\":58239,\"face-meh-blank\":62884,\"face-meh\":61722,\"face-melting\":58499,\"face-monocle\":58240,\"face-nauseated\":58241,\"face-nose-steam\":58242,\"face-party\":58243,\"face-pensive\":58244,\"face-persevering\":58245,\"face-pleading\":58246,\"face-pouting\":58247,\"face-raised-eyebrow\":58248,\"face-relieved\":58249,\"face-rolling-eyes\":62885,\"face-sad-cry\":62899,\"face-sad-sweat\":58250,\"face-sad-tear\":62900,\"face-saluting\":58500,\"face-scream\":58251,\"face-shush\":58252,\"face-sleeping\":58253,\"face-sleepy\":58254,\"face-smile-beam\":62904,\"face-smile-halo\":58255,\"face-smile-hearts\":58256,\"face-smile-horns\":58257,\"face-smile-plus\":62905,\"face-smile-relaxed\":58258,\"face-smile-tear\":58259,\"face-smile-tongue\":58260,\"face-smile-upside-down\":58261,\"face-smile-wink\":62682,\"face-smile\":61720,\"face-smiling-hands\":58262,\"face-smirking\":58263,\"face-spiral-eyes\":58501,\"face-sunglasses\":58264,\"face-surprise\":62914,\"face-swear\":58265,\"face-thermometer\":58266,\"face-thinking\":58267,\"face-tired\":62920,\"face-tissue\":58268,\"face-tongue-money\":58269,\"face-tongue-sweat\":58270,\"face-unamused\":58271,\"face-viewfinder\":58111,\"face-vomit\":58272,\"face-weary\":58273,\"face-woozy\":58274,\"face-worried\":58275,\"face-zany\":58276,\"face-zipper\":58277,\"falafel\":58378,\"family-dress\":58113,\"family-pants\":58114,\"family\":58112,\"fan-table\":57348,\"fan\":63587,\"farm\":63588,\"faucet-drip\":57350,\"faucet\":57349,\"fax\":61868,\"feather-pointed\":62827,\"feather\":62765,\"fence\":58115,\"ferris-wheel\":57716,\"ferry\":58602,\"field-hockey-stick-ball\":62540,\"file-arrow-down\":62829,\"file-arrow-up\":62836,\"file-audio\":61895,\"file-binary\":57717,\"file-cad\":58994,\"file-certificate\":62963,\"file-chart-column\":63065,\"file-chart-pie\":63066,\"file-check\":62230,\"file-circle-check\":58784,\"file-circle-exclamation\":58603,\"file-circle-info\":58515,\"file-circle-minus\":58605,\"file-circle-plus\":58516,\"file-circle-question\":58607,\"file-circle-xmark\":58785,\"file-code\":61897,\"file-contract\":62828,\"file-csv\":63197,\"file-dashed-line\":63607,\"file-doc\":58861,\"file-eps\":58948,\"file-excel\":61891,\"file-exclamation\":62234,\"file-export\":62830,\"file-fragment\":59031,\"file-gif\":58949,\"file-half-dashed\":59032,\"file-heart\":57718,\"file-image\":61893,\"file-import\":62831,\"file-invoice-dollar\":62833,\"file-invoice\":62832,\"file-jpg\":58950,\"file-lines\":61788,\"file-lock\":58278,\"file-magnifying-glass\":63589,\"file-medical\":62583,\"file-minus\":62232,\"file-mov\":58951,\"file-mp3\":58952,\"file-mp4\":58953,\"file-music\":63670,\"file-pdf\":61889,\"file-pen\":62236,\"file-plus-minus\":57719,\"file-plus\":62233,\"file-png\":58982,\"file-powerpoint\":61892,\"file-ppt\":58954,\"file-prescription\":62834,\"file-shield\":58608,\"file-signature\":62835,\"file-slash\":58279,\"file-spreadsheet\":63067,\"file-svg\":58955,\"file-user\":63068,\"file-vector\":58956,\"file-video\":61896,\"file-waveform\":62584,\"file-word\":61890,\"file-xls\":58957,\"file-xmark\":62231,\"file-xml\":58964,\"file-zip\":58862,\"file-zipper\":61894,\"file\":61787,\"files-medical\":63485,\"files\":57720,\"fill-drip\":62838,\"fill\":62837,\"film-canister\":63671,\"film-simple\":62368,\"film-slash\":57721,\"film\":61448,\"films\":57722,\"filter-circle-dollar\":63074,\"filter-circle-xmark\":57723,\"filter-list\":57724,\"filter-slash\":57725,\"filter\":61616,\"filters\":57726,\"fingerprint\":62839,\"fire-burner\":58609,\"fire-extinguisher\":61748,\"fire-flame-curved\":63460,\"fire-flame-simple\":62570,\"fire-flame\":63199,\"fire-hydrant\":57727,\"fire-smoke\":63307,\"fire\":61549,\"fireplace\":63386,\"fish-bones\":58116,\"fish-cooked\":63486,\"fish-fins\":58610,\"fish\":62840,\"fishing-rod\":58280,\"flag-checkered\":61726,\"flag-pennant\":62550,\"flag-swallowtail\":63308,\"flag-usa\":63309,\"flag\":61476,\"flashlight\":63672,\"flask-gear\":58865,\"flask-round-poison\":63200,\"flask-round-potion\":63201,\"flask-vial\":58611,\"flask\":61635,\"flatbread-stuffed\":58380,\"flatbread\":58379,\"floppy-disk-circle-arrow-right\":57728,\"floppy-disk-circle-xmark\":57729,\"floppy-disk-pen\":57730,\"floppy-disk\":61639,\"floppy-disks\":57731,\"florin-sign\":57732,\"flower-daffodil\":63488,\"flower-tulip\":63489,\"flower\":63487,\"flute\":63673,\"flux-capacitor\":63674,\"flying-disc\":58281,\"folder-arrow-down\":57427,\"folder-arrow-up\":57428,\"folder-bookmark\":57734,\"folder-check\":58958,\"folder-closed\":57733,\"folder-gear\":57735,\"folder-grid\":57736,\"folder-heart\":57737,\"folder-image\":57738,\"folder-magnifying-glass\":57739,\"folder-medical\":57740,\"folder-minus\":63069,\"folder-music\":57741,\"folder-open\":61564,\"folder-plus\":63070,\"folder-tree\":63490,\"folder-user\":57742,\"folder-xmark\":63071,\"folder\":61563,\"folders\":63072,\"fondue-pot\":58381,\"font-awesome\":62132,\"font-case\":63590,\"font\":61489,\"football-helmet\":62543,\"football\":62542,\"fork-knife\":62182,\"fork\":62179,\"forklift\":62586,\"fort\":58502,\"forward-fast\":61520,\"forward-step\":61521,\"forward\":61518,\"frame\":58517,\"franc-sign\":57743,\"french-fries\":63491,\"frog\":62766,\"function\":63073,\"futbol\":61923,\"g\":71,\"galaxy\":57352,\"gallery-thumbnails\":58282,\"game-board-simple\":63592,\"game-board\":63591,\"game-console-handheld-crank\":58809,\"game-console-handheld\":63675,\"gamepad-modern\":58786,\"gamepad\":61723,\"garage-car\":57354,\"garage-open\":57355,\"garage\":57353,\"garlic\":58382,\"gas-pump-slash\":62964,\"gas-pump\":62767,\"gauge-circle-bolt\":58518,\"gauge-circle-minus\":58519,\"gauge-circle-plus\":58520,\"gauge-high\":63013,\"gauge-low\":63015,\"gauge-max\":63014,\"gauge-min\":63016,\"gauge-simple-high\":63018,\"gauge-simple-low\":63020,\"gauge-simple-max\":63019,\"gauge-simple-min\":63021,\"gauge-simple\":63017,\"gauge\":63012,\"gavel\":61667,\"gear-code\":58856,\"gear-complex-code\":58859,\"gear-complex\":58857,\"gear\":61459,\"gears\":61573,\"gem\":62373,\"genderless\":61997,\"ghost\":63202,\"gif\":57744,\"gift-card\":63075,\"gift\":61547,\"gifts\":63388,\"gingerbread-man\":63389,\"glass-citrus\":63593,\"glass-empty\":57745,\"glass-half\":57746,\"glass-water-droplet\":58613,\"glass-water\":58612,\"glass\":63492,\"glasses-round\":62965,\"glasses\":62768,\"globe-pointer\":58894,\"globe-snow\":63395,\"globe-stand\":62966,\"globe-wifi\":59013,\"globe\":61612,\"goal-net\":58283,\"golf-ball-tee\":62544,\"golf-club\":62545,\"golf-flag-hole\":58284,\"gopuram\":63076,\"graduation-cap\":61853,\"gramophone\":63677,\"grapes\":58118,\"grate-droplet\":57748,\"grate\":57747,\"greater-than-equal\":62770,\"greater-than\":62,\"grid-2-plus\":57751,\"grid-2\":57750,\"grid-4\":57752,\"grid-5\":57753,\"grid-dividers\":58285,\"grid-horizontal\":58119,\"grid-round-2-plus\":58844,\"grid-round-2\":58843,\"grid-round-4\":58845,\"grid-round-5\":58846,\"grid-round\":58842,\"grid\":57749,\"grill-fire\":58788,\"grill-hot\":58789,\"grill\":58787,\"grip-dots-vertical\":58385,\"grip-dots\":58384,\"grip-lines-vertical\":63397,\"grip-lines\":63396,\"grip-vertical\":62862,\"grip\":62861,\"group-arrows-rotate\":58614,\"guarani-sign\":57754,\"guitar-electric\":63678,\"guitar\":63398,\"guitars\":63679,\"gun-slash\":57756,\"gun-squirt\":57757,\"gun\":57755,\"h\":72,\"h1\":62227,\"h2\":62228,\"h3\":62229,\"h4\":63594,\"h5\":58386,\"h6\":58387,\"hammer-brush\":58912,\"hammer-crash\":58388,\"hammer-war\":63204,\"hammer\":63203,\"hamsa\":63077,\"hand-back-fist\":62037,\"hand-back-point-down\":57758,\"hand-back-point-left\":57759,\"hand-back-point-ribbon\":57760,\"hand-back-point-right\":57761,\"hand-back-point-up\":57762,\"hand-dots\":62561,\"hand-fingers-crossed\":57763,\"hand-fist\":63198,\"hand-heart\":62652,\"hand-holding-box\":62587,\"hand-holding-circle-dollar\":58913,\"hand-holding-dollar\":62656,\"hand-holding-droplet\":62657,\"hand-holding-hand\":58615,\"hand-holding-heart\":62654,\"hand-holding-magic\":63205,\"hand-holding-medical\":57436,\"hand-holding-seedling\":62655,\"hand-holding-skull\":57764,\"hand-holding\":62653,\"hand-horns\":57769,\"hand-lizard\":62040,\"hand-love\":57765,\"hand-middle-finger\":63494,\"hand-peace\":62043,\"hand-point-down\":61607,\"hand-point-left\":61605,\"hand-point-ribbon\":57766,\"hand-point-right\":61604,\"hand-point-up\":61606,\"hand-pointer\":62042,\"hand-scissors\":62039,\"hand-sparkles\":57437,\"hand-spock\":62041,\"hand-wave\":57767,\"hand\":62038,\"handcuffs\":58616,\"hands-asl-interpreting\":62115,\"hands-bound\":58617,\"hands-bubbles\":57438,\"hands-clapping\":57768,\"hands-holding-child\":58618,\"hands-holding-circle\":58619,\"hands-holding-diamond\":62588,\"hands-holding-dollar\":62661,\"hands-holding-heart\":62659,\"hands-holding\":62658,\"hands-praying\":63108,\"hands\":62119,\"handshake-angle\":62660,\"handshake-simple-slash\":57439,\"handshake-simple\":62662,\"handshake-slash\":57440,\"handshake\":62133,\"hanukiah\":63206,\"hard-drive\":61600,\"hashtag-lock\":58389,\"hashtag\":35,\"hat-beach\":58886,\"hat-chef\":63595,\"hat-cowboy-side\":63681,\"hat-cowboy\":63680,\"hat-santa\":63399,\"hat-winter\":63400,\"hat-witch\":63207,\"hat-wizard\":63208,\"head-side-brain\":63496,\"head-side-cough-slash\":57442,\"head-side-cough\":57441,\"head-side-gear\":58897,\"head-side-goggles\":63210,\"head-side-headphones\":63682,\"head-side-heart\":57770,\"head-side-mask\":57443,\"head-side-medical\":63497,\"head-side-virus\":57444,\"head-side\":63209,\"heading\":61916,\"headphones-simple\":62863,\"headphones\":61477,\"headset\":62864,\"heart-circle-bolt\":58620,\"heart-circle-check\":58621,\"heart-circle-exclamation\":58622,\"heart-circle-minus\":58623,\"heart-circle-plus\":58624,\"heart-circle-xmark\":58625,\"heart-crack\":63401,\"heart-half-stroke\":57772,\"heart-half\":57771,\"heart-pulse\":61982,\"heart\":61444,\"heat\":57356,\"helicopter-symbol\":58626,\"helicopter\":62771,\"helmet-battle\":63211,\"helmet-safety\":63495,\"helmet-un\":58627,\"hexagon-check\":58390,\"hexagon-divide\":57773,\"hexagon-exclamation\":58391,\"hexagon-image\":58628,\"hexagon-minus\":62215,\"hexagon-nodes-bolt\":59034,\"hexagon-nodes\":59033,\"hexagon-plus\":62208,\"hexagon-vertical-nft-slanted\":58630,\"hexagon-vertical-nft\":58629,\"hexagon-xmark\":62190,\"hexagon\":62226,\"high-definition\":57774,\"highlighter-line\":57775,\"highlighter\":62865,\"hill-avalanche\":58631,\"hill-rockslide\":58632,\"hippo\":63213,\"hockey-mask\":63214,\"hockey-puck\":62547,\"hockey-stick-puck\":58286,\"hockey-sticks\":62548,\"holly-berry\":63402,\"honey-pot\":58392,\"hood-cloak\":63215,\"horizontal-rule\":63596,\"horse-head\":63403,\"horse-saddle\":63683,\"horse\":63216,\"hose-reel\":58394,\"hose\":58393,\"hospital-user\":63501,\"hospital\":61688,\"hospitals\":63502,\"hot-tub-person\":62867,\"hotdog\":63503,\"hotel\":62868,\"hourglass-clock\":58395,\"hourglass-end\":62035,\"hourglass-half\":62034,\"hourglass-start\":62033,\"hourglass\":62036,\"house-blank\":58503,\"house-building\":57777,\"house-chimney-blank\":58288,\"house-chimney-crack\":63217,\"house-chimney-heart\":57778,\"house-chimney-medical\":63474,\"house-chimney-user\":57445,\"house-chimney-window\":57357,\"house-chimney\":58287,\"house-circle-check\":58633,\"house-circle-exclamation\":58634,\"house-circle-xmark\":58635,\"house-crack\":58289,\"house-day\":57358,\"house-fire\":58636,\"house-flag\":58637,\"house-flood-water-circle-arrow-right\":58639,\"house-flood-water\":58638,\"house-heart\":62665,\"house-laptop\":57446,\"house-lock\":58640,\"house-medical-circle-check\":58641,\"house-medical-circle-exclamation\":58642,\"house-medical-circle-xmark\":58643,\"house-medical-flag\":58644,\"house-medical\":58290,\"house-night\":57360,\"house-person-leave\":57359,\"house-person-return\":57361,\"house-signal\":57362,\"house-tree\":57779,\"house-tsunami\":58645,\"house-turret\":57780,\"house-user\":57776,\"house-water\":63311,\"house-window\":58291,\"house\":61461,\"hryvnia-sign\":63218,\"hundred-points\":58396,\"hurricane\":63313,\"hydra\":59014,\"hyphen\":45,\"i-cursor\":62022,\"i\":73,\"ice-cream\":63504,\"ice-skate\":63404,\"icicles\":63405,\"icons\":63597,\"id-badge\":62145,\"id-card-clip\":62591,\"id-card\":62146,\"igloo\":63406,\"image-landscape\":57781,\"image-polaroid-user\":57782,\"image-polaroid\":63684,\"image-portrait\":62432,\"image-slash\":57783,\"image-user\":57784,\"image\":61502,\"images-user\":57785,\"images\":62210,\"inbox-full\":57786,\"inbox-in\":62224,\"inbox-out\":62225,\"inbox\":61468,\"inboxes\":57787,\"indent\":61500,\"indian-rupee-sign\":57788,\"industry-windows\":62387,\"industry\":62069,\"infinity\":62772,\"info\":61737,\"inhaler\":62969,\"input-numeric\":57789,\"input-pipe\":57790,\"input-text\":57791,\"integral\":63079,\"interrobang\":58810,\"intersection\":63080,\"island-tropical\":63505,\"italic\":61491,\"j\":74,\"jack-o-lantern\":62222,\"jar-wheat\":58647,\"jar\":58646,\"jedi\":63081,\"jet-fighter-up\":58648,\"jet-fighter\":61691,\"joint\":62869,\"joystick\":63685,\"jug-bottle\":58875,\"jug-detergent\":58649,\"jug\":63686,\"k\":75,\"kaaba\":63083,\"kazoo\":63687,\"kerning\":63599,\"key-skeleton-left-right\":58292,\"key-skeleton\":63219,\"key\":61572,\"keyboard-brightness-low\":57793,\"keyboard-brightness\":57792,\"keyboard-down\":57794,\"keyboard-left\":57795,\"keyboard\":61724,\"keynote\":63084,\"khanda\":63085,\"kidneys\":62971,\"kip-sign\":57796,\"kit-medical\":62585,\"kitchen-set\":58650,\"kite\":63220,\"kiwi-bird\":62773,\"kiwi-fruit\":58124,\"knife-kitchen\":63221,\"knife\":62180,\"l\":76,\"lacrosse-stick-ball\":58294,\"lacrosse-stick\":58293,\"lambda\":63086,\"lamp-desk\":57364,\"lamp-floor\":57365,\"lamp-street\":57797,\"lamp\":62666,\"land-mine-on\":58651,\"landmark-dome\":63314,\"landmark-flag\":58652,\"landmark-magnifying-glass\":58914,\"landmark\":63087,\"language\":61867,\"laptop-arrow-down\":57798,\"laptop-binary\":58855,\"laptop-code\":62972,\"laptop-file\":58653,\"laptop-medical\":63506,\"laptop-mobile\":63610,\"laptop-slash\":57799,\"laptop\":61705,\"lari-sign\":57800,\"lasso-sparkles\":57801,\"lasso\":63688,\"layer-group\":62973,\"layer-minus\":62974,\"layer-plus\":62975,\"leaf-heart\":62667,\"leaf-maple\":63222,\"leaf-oak\":63223,\"leaf\":61548,\"leafy-green\":58397,\"left-from-bracket\":58988,\"left-from-line\":62280,\"left-long-to-line\":58398,\"left-long\":62218,\"left-right\":62263,\"left-to-bracket\":58989,\"left-to-line\":62283,\"left\":62293,\"lemon\":61588,\"less-than-equal\":62775,\"less-than\":60,\"life-ring\":61901,\"light-ceiling\":57366,\"light-emergency-on\":58400,\"light-emergency\":58399,\"light-switch-off\":57368,\"light-switch-on\":57369,\"light-switch\":57367,\"lightbulb-cfl-on\":58791,\"lightbulb-cfl\":58790,\"lightbulb-dollar\":63088,\"lightbulb-exclamation-on\":57802,\"lightbulb-exclamation\":63089,\"lightbulb-gear\":58877,\"lightbulb-message\":59015,\"lightbulb-on\":63090,\"lightbulb-slash\":63091,\"lightbulb\":61675,\"lighthouse\":58898,\"lights-holiday\":63410,\"line-columns\":63600,\"line-height\":63601,\"lines-leaning\":58654,\"link-horizontal-slash\":57804,\"link-horizontal\":57803,\"link-simple-slash\":57806,\"link-simple\":57805,\"link-slash\":61735,\"link\":61633,\"lips\":62976,\"lira-sign\":61845,\"list-check\":61614,\"list-dropdown\":57807,\"list-music\":63689,\"list-ol\":61643,\"list-radio\":57808,\"list-timeline\":57809,\"list-tree\":57810,\"list-ul\":61642,\"list\":61498,\"litecoin-sign\":57811,\"loader\":57812,\"lobster\":58401,\"location-arrow-up\":58938,\"location-arrow\":61732,\"location-check\":62982,\"location-crosshairs-slash\":62979,\"location-crosshairs\":62977,\"location-dot-slash\":62981,\"location-dot\":62405,\"location-exclamation\":62984,\"location-minus\":62985,\"location-pen\":62983,\"location-pin-lock\":58655,\"location-pin-slash\":62988,\"location-pin\":61505,\"location-plus\":62986,\"location-question\":62987,\"location-smile\":62989,\"location-xmark\":62990,\"lock-a\":58402,\"lock-hashtag\":58403,\"lock-keyhole-open\":62402,\"lock-keyhole\":62221,\"lock-open\":62401,\"lock\":61475,\"locust\":58656,\"lollipop\":58404,\"loveseat\":62668,\"luchador-mask\":62549,\"lungs-virus\":57447,\"lungs\":62980,\"m\":77,\"mace\":63224,\"magnet\":61558,\"magnifying-glass-arrow-right\":58657,\"magnifying-glass-arrows-rotate\":58974,\"magnifying-glass-chart\":58658,\"magnifying-glass-dollar\":63112,\"magnifying-glass-location\":63113,\"magnifying-glass-minus\":61456,\"magnifying-glass-music\":58975,\"magnifying-glass-play\":58976,\"magnifying-glass-plus\":61454,\"magnifying-glass-waveform\":58977,\"magnifying-glass\":61442,\"mailbox-flag-up\":58811,\"mailbox\":63507,\"manat-sign\":57813,\"mandolin\":63225,\"mango\":58127,\"manhole\":57814,\"map-location-dot\":62880,\"map-location\":62879,\"map-pin\":62070,\"map\":62073,\"marker\":62881,\"mars-and-venus-burst\":58659,\"mars-and-venus\":61988,\"mars-double\":61991,\"mars-stroke-right\":61995,\"mars-stroke-up\":61994,\"mars-stroke\":61993,\"mars\":61986,\"martini-glass-citrus\":62817,\"martini-glass-empty\":61440,\"martini-glass\":62843,\"mask-face\":57815,\"mask-snorkel\":58295,\"mask-ventilator\":58660,\"mask\":63226,\"masks-theater\":63024,\"mattress-pillow\":58661,\"maximize\":62238,\"meat\":63508,\"medal\":62882,\"megaphone\":63093,\"melon-slice\":58129,\"melon\":58128,\"memo-circle-check\":57817,\"memo-circle-info\":58522,\"memo-pad\":57818,\"memo\":57816,\"memory\":62776,\"menorah\":63094,\"mercury\":61987,\"merge\":58662,\"message-arrow-down\":57819,\"message-arrow-up-right\":57821,\"message-arrow-up\":57820,\"message-bot\":58296,\"message-captions\":57822,\"message-check\":62626,\"message-code\":57823,\"message-dollar\":63056,\"message-dots\":62627,\"message-exclamation\":62629,\"message-heart\":58825,\"message-image\":57824,\"message-lines\":62630,\"message-medical\":63476,\"message-middle-top\":57826,\"message-middle\":57825,\"message-minus\":62631,\"message-music\":63663,\"message-pen\":62628,\"message-plus\":62632,\"message-question\":57827,\"message-quote\":57828,\"message-slash\":62633,\"message-smile\":62634,\"message-sms\":57829,\"message-text\":57830,\"message-xmark\":62635,\"message\":62074,\"messages-dollar\":63058,\"messages-question\":57831,\"messages\":62646,\"meteor\":63315,\"meter-bolt\":57833,\"meter-droplet\":57834,\"meter-fire\":57835,\"meter\":57832,\"microchip-ai\":57836,\"microchip\":62171,\"microphone-lines-slash\":62777,\"microphone-lines\":62409,\"microphone-slash\":61745,\"microphone-stand\":63691,\"microphone\":61744,\"microscope\":62992,\"microwave\":57371,\"mill-sign\":57837,\"minimize\":63372,\"minus\":61544,\"mistletoe\":63412,\"mitten\":63413,\"mobile-button\":61707,\"mobile-notch\":57838,\"mobile-retro\":58663,\"mobile-screen-button\":62413,\"mobile-screen\":62415,\"mobile-signal-out\":57840,\"mobile-signal\":57839,\"mobile\":62414,\"money-bill-1-wave\":62779,\"money-bill-1\":62417,\"money-bill-simple-wave\":57842,\"money-bill-simple\":57841,\"money-bill-transfer\":58664,\"money-bill-trend-up\":58665,\"money-bill-wave\":62778,\"money-bill-wheat\":58666,\"money-bill\":61654,\"money-bills-simple\":57844,\"money-bills\":57843,\"money-check-dollar-pen\":63603,\"money-check-dollar\":62781,\"money-check-pen\":63602,\"money-check\":62780,\"money-from-bracket\":58130,\"money-simple-from-bracket\":58131,\"monitor-waveform\":62993,\"monkey\":63227,\"monument\":62886,\"moon-cloud\":63316,\"moon-over-sun\":63306,\"moon-stars\":63317,\"moon\":61830,\"moped\":58297,\"mortar-pestle\":62887,\"mosque\":63096,\"mosquito-net\":58668,\"mosquito\":58667,\"motorcycle\":61980,\"mound\":58669,\"mountain-city\":58670,\"mountain-sun\":58671,\"mountain\":63228,\"mountains\":63229,\"mouse-field\":58792,\"mp3-player\":63694,\"mug-hot\":63414,\"mug-marshmallows\":63415,\"mug-saucer\":61684,\"mug-tea-saucer\":57845,\"mug-tea\":63605,\"mug\":63604,\"mushroom\":58405,\"music-magnifying-glass\":58978,\"music-note-slash\":63696,\"music-note\":63695,\"music-slash\":63697,\"music\":61441,\"mustache\":58812,\"n\":78,\"naira-sign\":57846,\"narwhal\":63230,\"nesting-dolls\":58298,\"network-wired\":63231,\"neuter\":61996,\"newspaper\":61930,\"nfc-lock\":57848,\"nfc-magnifying-glass\":57849,\"nfc-pen\":57850,\"nfc-signal\":57851,\"nfc-slash\":57852,\"nfc-symbol\":58673,\"nfc-trash\":57853,\"nfc\":57847,\"nose\":58813,\"not-equal\":62782,\"notdef\":57854,\"note-medical\":57856,\"note-sticky\":62025,\"note\":57855,\"notebook\":57857,\"notes-medical\":62593,\"notes\":57858,\"o\":79,\"object-exclude\":58524,\"object-group\":62023,\"object-intersect\":58525,\"object-subtract\":58526,\"object-ungroup\":62024,\"object-union\":58527,\"objects-align-bottom\":58299,\"objects-align-center-horizontal\":58300,\"objects-align-center-vertical\":58301,\"objects-align-left\":58302,\"objects-align-right\":58303,\"objects-align-top\":58304,\"objects-column\":58305,\"octagon-check\":58406,\"octagon-divide\":57859,\"octagon-exclamation\":57860,\"octagon-minus\":62216,\"octagon-plus\":62209,\"octagon-xmark\":62192,\"octagon\":62214,\"octopus\":59016,\"oil-can-drip\":57861,\"oil-can\":62995,\"oil-temperature\":62996,\"oil-well\":58674,\"olive-branch\":58135,\"olive\":58134,\"om\":63097,\"omega\":63098,\"onion\":58407,\"option\":58136,\"ornament\":63416,\"otter\":63232,\"outdent\":61499,\"outlet\":57372,\"oven\":57373,\"overline\":63606,\"p\":80,\"page-caret-down\":58409,\"page-caret-up\":58410,\"page\":58408,\"pager\":63509,\"paint-roller\":62890,\"paintbrush-fine\":62889,\"paintbrush-pencil\":57862,\"paintbrush\":61948,\"palette\":62783,\"pallet-box\":57864,\"pallet-boxes\":62595,\"pallet\":62594,\"pan-food\":58411,\"pan-frying\":58412,\"pancakes\":58413,\"panel-ews\":58414,\"panel-fire\":58415,\"panorama\":57865,\"paper-plane-top\":57866,\"paper-plane\":61912,\"paperclip-vertical\":58306,\"paperclip\":61638,\"parachute-box\":62669,\"paragraph-left\":63608,\"paragraph\":61917,\"party-bell\":58138,\"party-horn\":58139,\"passport\":62891,\"paste\":61674,\"pause\":61516,\"paw-claws\":63234,\"paw-simple\":63233,\"paw\":61872,\"peace\":63100,\"peach\":57867,\"peanut\":58416,\"peanuts\":58417,\"peapod\":58140,\"pear\":57868,\"pedestal\":57869,\"pegasus\":63235,\"pen-circle\":57870,\"pen-clip-slash\":57871,\"pen-clip\":62213,\"pen-fancy-slash\":57872,\"pen-fancy\":62892,\"pen-field\":57873,\"pen-line\":57874,\"pen-nib-slash\":58529,\"pen-nib\":62893,\"pen-paintbrush\":63000,\"pen-ruler\":62894,\"pen-slash\":57875,\"pen-swirl\":57876,\"pen-to-square\":61508,\"pen\":62212,\"pencil-mechanical\":58826,\"pencil-slash\":57877,\"pencil\":62211,\"people-arrows\":57448,\"people-carry-box\":62670,\"people-dress-simple\":57880,\"people-dress\":57879,\"people-group\":58675,\"people-line\":58676,\"people-pants-simple\":57882,\"people-pants\":57881,\"people-pulling\":58677,\"people-robbery\":58678,\"people-roof\":58679,\"people-simple\":57883,\"people\":57878,\"pepper-hot\":63510,\"pepper\":58418,\"percent\":37,\"period\":46,\"person-arrow-down-to-line\":58680,\"person-arrow-up-from-line\":58681,\"person-biking-mountain\":63563,\"person-biking\":63562,\"person-booth\":63318,\"person-breastfeeding\":58682,\"person-burst\":58683,\"person-cane\":58684,\"person-carry-box\":62671,\"person-chalkboard\":58685,\"person-circle-check\":58686,\"person-circle-exclamation\":58687,\"person-circle-minus\":58688,\"person-circle-plus\":58689,\"person-circle-question\":58690,\"person-circle-xmark\":58691,\"person-digging\":63582,\"person-dolly-empty\":62673,\"person-dolly\":62672,\"person-dots-from-line\":62576,\"person-dress-burst\":58692,\"person-dress-fairy\":58887,\"person-dress-simple\":57884,\"person-dress\":61826,\"person-drowning\":58693,\"person-fairy\":58888,\"person-falling-burst\":58695,\"person-falling\":58694,\"person-from-portal\":57379,\"person-half-dress\":58696,\"person-harassing\":58697,\"person-hiking\":63212,\"person-military-pointing\":58698,\"person-military-rifle\":58699,\"person-military-to-person\":58700,\"person-pinball\":57885,\"person-praying\":63107,\"person-pregnant\":58142,\"person-rays\":58701,\"person-rifle\":58702,\"person-running-fast\":58879,\"person-running\":63244,\"person-seat-reclined\":57887,\"person-seat\":57886,\"person-shelter\":58703,\"person-sign\":63319,\"person-simple\":57888,\"person-skating\":63429,\"person-ski-jumping\":63431,\"person-ski-lift\":63432,\"person-skiing-nordic\":63434,\"person-skiing\":63433,\"person-sledding\":63435,\"person-snowboarding\":63438,\"person-snowmobiling\":63441,\"person-swimming\":62916,\"person-through-window\":58793,\"person-to-door\":58419,\"person-to-portal\":57378,\"person-walking-arrow-loop-left\":58705,\"person-walking-arrow-right\":58706,\"person-walking-dashed-line-arrow-right\":58707,\"person-walking-luggage\":58708,\"person-walking-with-cane\":62109,\"person-walking\":62804,\"person\":61827,\"peseta-sign\":57889,\"peso-sign\":57890,\"phone-arrow-down-left\":57891,\"phone-arrow-right\":58814,\"phone-arrow-up-right\":57892,\"phone-flip\":63609,\"phone-hangup\":57893,\"phone-intercom\":58420,\"phone-missed\":57894,\"phone-office\":63101,\"phone-plus\":62674,\"phone-rotary\":63699,\"phone-slash\":62429,\"phone-volume\":62112,\"phone-xmark\":57895,\"phone\":61589,\"photo-film-music\":57896,\"photo-film\":63612,\"pi\":63102,\"piano-keyboard\":63701,\"piano\":63700,\"pickaxe\":58815,\"pickleball\":58421,\"pie\":63237,\"pig\":63238,\"piggy-bank\":62675,\"pills\":62596,\"pinata\":58307,\"pinball\":57897,\"pineapple\":58143,\"pipe-circle-check\":58422,\"pipe-collar\":58423,\"pipe-section\":58424,\"pipe-smoking\":58308,\"pipe-valve\":58425,\"pipe\":124,\"pizza-slice\":63512,\"pizza\":63511,\"place-of-worship\":63103,\"plane-arrival\":62895,\"plane-circle-check\":58709,\"plane-circle-exclamation\":58710,\"plane-circle-xmark\":58711,\"plane-departure\":62896,\"plane-engines\":62430,\"plane-lock\":58712,\"plane-prop\":57899,\"plane-slash\":57449,\"plane-tail\":57900,\"plane-up-slash\":57902,\"plane-up\":57901,\"plane\":61554,\"planet-moon\":57375,\"planet-ringed\":57376,\"plant-wilt\":58794,\"plate-utensils\":58427,\"plate-wheat\":58714,\"play-pause\":57903,\"play\":61515,\"plug-circle-bolt\":58715,\"plug-circle-check\":58716,\"plug-circle-exclamation\":58717,\"plug-circle-minus\":58718,\"plug-circle-plus\":58719,\"plug-circle-xmark\":58720,\"plug\":61926,\"plus-large\":58782,\"plus-minus\":58428,\"plus\":43,\"podcast\":62158,\"podium-star\":63320,\"podium\":63104,\"police-box\":57377,\"poll-people\":63321,\"pompebled\":58429,\"poo-storm\":63322,\"poo\":62206,\"pool-8-ball\":58309,\"poop\":63001,\"popcorn\":63513,\"popsicle\":58430,\"pot-food\":58431,\"potato\":58432,\"power-off\":61457,\"prescription-bottle-medical\":62598,\"prescription-bottle-pill\":58816,\"prescription-bottle\":62597,\"prescription\":62897,\"presentation-screen\":63109,\"pretzel\":58433,\"print-magnifying-glass\":63514,\"print-slash\":63110,\"print\":61487,\"projector\":63702,\"pump-medical\":57450,\"pump-soap\":57451,\"pump\":58434,\"pumpkin\":63239,\"puzzle-piece-simple\":57905,\"puzzle-piece\":61742,\"puzzle\":58435,\"q\":81,\"qrcode\":61481,\"question\":63,\"quote-left\":61709,\"quote-right\":61710,\"quotes\":57908,\"r\":82,\"rabbit-running\":63241,\"rabbit\":63240,\"raccoon\":58899,\"racquet\":62554,\"radar\":57380,\"radiation\":63417,\"radio-tuner\":63704,\"radio\":63703,\"rainbow\":63323,\"raindrops\":63324,\"ram\":63242,\"ramp-loading\":62676,\"ranking-star\":58721,\"raygun\":57381,\"receipt\":62787,\"record-vinyl\":63705,\"rectangle-ad\":63041,\"rectangle-barcode\":62563,\"rectangle-code\":58146,\"rectangle-history-circle-plus\":58531,\"rectangle-history-circle-user\":58532,\"rectangle-history\":58530,\"rectangle-list\":61474,\"rectangle-pro\":57909,\"rectangle-terminal\":57910,\"rectangle-vertical-history\":57911,\"rectangle-vertical\":62203,\"rectangle-wide\":62204,\"rectangle-xmark\":62480,\"rectangle\":62202,\"rectangles-mixed\":58147,\"recycle\":61880,\"reel\":57912,\"reflect-both\":58991,\"reflect-horizontal\":58980,\"reflect-vertical\":58981,\"refrigerator\":57382,\"registered\":62045,\"repeat-1\":62309,\"repeat\":62307,\"reply-all\":61730,\"reply-clock\":57913,\"reply\":62437,\"republican\":63326,\"restroom-simple\":57914,\"restroom\":63421,\"retweet\":61561,\"rhombus\":57915,\"ribbon\":62678,\"right-from-bracket\":62197,\"right-from-line\":62279,\"right-left-large\":58849,\"right-left\":62306,\"right-long-to-line\":58436,\"right-long\":62219,\"right-to-bracket\":62198,\"right-to-line\":62284,\"right\":62294,\"ring-diamond\":58795,\"ring\":63243,\"rings-wedding\":63515,\"road-barrier\":58722,\"road-bridge\":58723,\"road-circle-check\":58724,\"road-circle-exclamation\":58725,\"road-circle-xmark\":58726,\"road-lock\":58727,\"road-spikes\":58728,\"road\":61464,\"robot-astromech\":58066,\"robot\":62788,\"rocket-launch\":57383,\"rocket\":61749,\"roller-coaster\":58148,\"rotate-exclamation\":57916,\"rotate-left\":62186,\"rotate-reverse\":58929,\"rotate-right\":62201,\"rotate\":62193,\"route-highway\":63002,\"route-interstate\":63003,\"route\":62679,\"router\":63706,\"rss\":61598,\"ruble-sign\":61784,\"rug\":58729,\"rugby-ball\":58310,\"ruler-combined\":62790,\"ruler-horizontal\":62791,\"ruler-triangle\":63004,\"ruler-vertical\":62792,\"ruler\":62789,\"rupee-sign\":61782,\"rupiah-sign\":57917,\"rv\":63422,\"s\":83,\"sack-dollar\":63517,\"sack-xmark\":58730,\"sack\":63516,\"sailboat\":58437,\"salad\":63518,\"salt-shaker\":58438,\"sandwich\":63519,\"satellite-dish\":63424,\"satellite\":63423,\"sausage\":63520,\"saxophone-fire\":63707,\"saxophone\":63708,\"scale-balanced\":62030,\"scale-unbalanced-flip\":62742,\"scale-unbalanced\":62741,\"scalpel-line-dashed\":63006,\"scalpel\":63005,\"scanner-gun\":62600,\"scanner-image\":63731,\"scanner-keyboard\":62601,\"scanner-touchscreen\":62602,\"scarecrow\":63245,\"scarf\":63425,\"school-circle-check\":58731,\"school-circle-exclamation\":58732,\"school-circle-xmark\":58733,\"school-flag\":58734,\"school-lock\":58735,\"school\":62793,\"scissors\":61636,\"screen-users\":63037,\"screencast\":57918,\"screwdriver-wrench\":63449,\"screwdriver\":62794,\"scribble\":57919,\"scroll-old\":63247,\"scroll-torah\":63136,\"scroll\":63246,\"scrubber\":62200,\"scythe\":63248,\"sd-card\":63426,\"sd-cards\":57920,\"seal-exclamation\":57922,\"seal-question\":57923,\"seal\":57921,\"seat-airline\":57924,\"section\":58439,\"seedling\":62680,\"semicolon\":59,\"send-back\":63614,\"send-backward\":63615,\"sensor-cloud\":57388,\"sensor-fire\":57386,\"sensor-on\":57387,\"sensor-triangle-exclamation\":57385,\"sensor\":57384,\"server\":62003,\"shapes\":63007,\"share-all\":62311,\"share-from-square\":61773,\"share-nodes\":61920,\"share\":61540,\"sheep\":63249,\"sheet-plastic\":58737,\"shekel-sign\":61963,\"shelves-empty\":57926,\"shelves\":62592,\"shield-cat\":58738,\"shield-check\":62199,\"shield-cross\":63250,\"shield-dog\":58739,\"shield-exclamation\":57927,\"shield-halved\":62445,\"shield-heart\":58740,\"shield-keyhole\":57928,\"shield-minus\":57929,\"shield-plus\":57930,\"shield-quartered\":58741,\"shield-slash\":57931,\"shield-virus\":57452,\"shield-xmark\":57932,\"shield\":61746,\"ship\":61978,\"shirt-long-sleeve\":58311,\"shirt-running\":58312,\"shirt-tank-top\":58313,\"shirt\":62803,\"shish-kebab\":63521,\"shoe-prints\":62795,\"shop-lock\":58533,\"shop-slash\":57456,\"shop\":62799,\"shovel-snow\":63427,\"shovel\":63251,\"shower-down\":57933,\"shower\":62156,\"shredder\":63114,\"shrimp\":58440,\"shuffle\":61556,\"shutters\":58441,\"shuttle-space\":61847,\"shuttlecock\":62555,\"sickle\":63522,\"sidebar-flip\":57935,\"sidebar\":57934,\"sigma\":63115,\"sign-hanging\":62681,\"sign-post\":58916,\"sign-posts-wrench\":58918,\"sign-posts\":58917,\"signal-bars-fair\":63122,\"signal-bars-good\":63123,\"signal-bars-slash\":63124,\"signal-bars-weak\":63121,\"signal-bars\":63120,\"signal-fair\":63117,\"signal-good\":63118,\"signal-slash\":63125,\"signal-stream-slash\":57936,\"signal-stream\":63709,\"signal-strong\":63119,\"signal-weak\":63116,\"signal\":61458,\"signature-lock\":58314,\"signature-slash\":58315,\"signature\":62903,\"signs-post\":62071,\"sim-card\":63428,\"sim-cards\":57937,\"sink\":57453,\"siren-on\":57390,\"siren\":57389,\"sitemap\":61672,\"skeleton-ribs\":58827,\"skeleton\":63008,\"ski-boot-ski\":58317,\"ski-boot\":58316,\"skull-cow\":63710,\"skull-crossbones\":63252,\"skull\":62796,\"slash-back\":92,\"slash-forward\":47,\"slash\":63253,\"sleigh\":63436,\"slider\":57938,\"sliders-simple\":57939,\"sliders-up\":62449,\"sliders\":61918,\"slot-machine\":58318,\"smog\":63327,\"smoke\":63328,\"smoking\":62605,\"snake\":63254,\"snooze\":63616,\"snow-blowing\":63329,\"snowflake-droplets\":58817,\"snowflake\":62172,\"snowflakes\":63439,\"snowman-head\":63387,\"snowman\":63440,\"snowplow\":63442,\"soap\":57454,\"socks\":63126,\"soft-serve\":58368,\"solar-panel\":62906,\"solar-system\":57391,\"sort-down\":61661,\"sort-up\":61662,\"sort\":61660,\"spa\":62907,\"space-station-moon-construction\":57396,\"space-station-moon\":57395,\"spade\":62196,\"spaghetti-monster-flying\":63099,\"sparkle\":58838,\"sparkles\":63632,\"speaker\":63711,\"speakers\":63712,\"spell-check\":63633,\"spider-black-widow\":63256,\"spider-web\":63257,\"spider\":63255,\"spinner-scale\":58922,\"spinner-third\":62452,\"spinner\":61712,\"split\":57940,\"splotch\":62908,\"spoon\":62181,\"sportsball\":58443,\"spray-can-sparkles\":62928,\"spray-can\":62909,\"sprinkler-ceiling\":58444,\"sprinkler\":57397,\"square-0\":57941,\"square-1\":57942,\"square-2\":57943,\"square-3\":57944,\"square-4\":57945,\"square-5\":57946,\"square-6\":57947,\"square-7\":57948,\"square-8\":57949,\"square-9\":57950,\"square-a-lock\":58445,\"square-a\":57951,\"square-ampersand\":57952,\"square-arrow-down-left\":57953,\"square-arrow-down-right\":57954,\"square-arrow-down\":62265,\"square-arrow-left\":62266,\"square-arrow-right\":62267,\"square-arrow-up-left\":57955,\"square-arrow-up-right\":61772,\"square-arrow-up\":62268,\"square-b\":57956,\"square-binary\":59035,\"square-bolt\":57957,\"square-c\":57958,\"square-caret-down\":61776,\"square-caret-left\":61841,\"square-caret-right\":61778,\"square-caret-up\":61777,\"square-check\":61770,\"square-chevron-down\":62249,\"square-chevron-left\":62250,\"square-chevron-right\":62251,\"square-chevron-up\":62252,\"square-code\":57959,\"square-d\":57960,\"square-dashed-circle-plus\":58818,\"square-dashed\":57961,\"square-divide\":57962,\"square-dollar\":62185,\"square-down-left\":57963,\"square-down-right\":57964,\"square-down\":62288,\"square-e\":57965,\"square-ellipsis-vertical\":57967,\"square-ellipsis\":57966,\"square-envelope\":61849,\"square-exclamation\":62241,\"square-f\":57968,\"square-fragile\":62619,\"square-full\":62556,\"square-g\":57969,\"square-h\":61693,\"square-heart\":62664,\"square-i\":57970,\"square-info\":62223,\"square-j\":57971,\"square-k\":57972,\"square-kanban\":58504,\"square-l\":57973,\"square-left\":62289,\"square-list\":58505,\"square-m\":57974,\"square-minus\":61766,\"square-n\":57975,\"square-nfi\":58742,\"square-o\":57976,\"square-p\":57977,\"square-parking-slash\":62999,\"square-parking\":62784,\"square-pen\":61771,\"square-person-confined\":58743,\"square-phone-flip\":63611,\"square-phone-hangup\":57978,\"square-phone\":61592,\"square-plus\":61694,\"square-poll-horizontal\":63106,\"square-poll-vertical\":63105,\"square-q\":57979,\"square-quarters\":58446,\"square-question\":62205,\"square-quote\":58153,\"square-r\":57980,\"square-right\":62290,\"square-ring\":58447,\"square-root-variable\":63128,\"square-root\":63127,\"square-rss\":61763,\"square-s\":57981,\"square-share-nodes\":61921,\"square-sliders-vertical\":62450,\"square-sliders\":62448,\"square-small\":57982,\"square-star\":57983,\"square-t\":57984,\"square-terminal\":58154,\"square-this-way-up\":62623,\"square-u\":57985,\"square-up-left\":57986,\"square-up-right\":62304,\"square-up\":62291,\"square-user\":57987,\"square-v\":57988,\"square-virus\":58744,\"square-w\":57989,\"square-x\":57990,\"square-xmark\":62163,\"square-y\":57991,\"square-z\":57992,\"square\":61640,\"squid\":58448,\"squirrel\":63258,\"staff-snake\":58745,\"staff\":63259,\"stairs\":57993,\"stamp\":62911,\"standard-definition\":57994,\"stapler\":58799,\"star-and-crescent\":63129,\"star-christmas\":63444,\"star-exclamation\":62195,\"star-half-stroke\":62912,\"star-half\":61577,\"star-of-david\":63130,\"star-of-life\":63009,\"star-sharp-half-stroke\":57997,\"star-sharp-half\":57996,\"star-sharp\":57995,\"star-shooting\":57398,\"star\":61445,\"starfighter-twin-ion-engine-advanced\":57998,\"starfighter-twin-ion-engine\":57400,\"starfighter\":57399,\"stars\":63330,\"starship-freighter\":57402,\"starship\":57401,\"steak\":63524,\"steering-wheel\":63010,\"sterling-sign\":61780,\"stethoscope\":61681,\"stocking\":63445,\"stomach\":63011,\"stop\":61517,\"stopwatch-20\":57455,\"stopwatch\":62194,\"store-lock\":58534,\"store-slash\":57457,\"store\":62798,\"strawberry\":58155,\"street-view\":61981,\"stretcher\":63525,\"strikethrough\":61644,\"stroopwafel\":62801,\"subscript\":61740,\"subtitles-slash\":58896,\"subtitles\":58895,\"suitcase-medical\":61690,\"suitcase-rolling\":62913,\"suitcase\":61682,\"sun-bright\":57999,\"sun-cloud\":63331,\"sun-dust\":63332,\"sun-haze\":63333,\"sun-plant-wilt\":58746,\"sun\":61829,\"sunglasses\":63634,\"sunrise\":63334,\"sunset\":63335,\"superscript\":61739,\"sushi-roll\":58507,\"sushi\":58506,\"swap-arrows\":58890,\"swap\":58889,\"swatchbook\":62915,\"sword-laser-alt\":57404,\"sword-laser\":57403,\"sword\":63260,\"swords-laser\":57405,\"swords\":63261,\"symbols\":63598,\"synagogue\":63131,\"syringe\":62606,\"t-rex\":58921,\"t\":84,\"table-cells-column-lock\":59000,\"table-cells-column-unlock\":59024,\"table-cells-large\":61449,\"table-cells-lock\":59001,\"table-cells-row-lock\":59002,\"table-cells-row-unlock\":59025,\"table-cells-unlock\":59026,\"table-cells\":61450,\"table-columns\":61659,\"table-layout\":58000,\"table-list\":61451,\"table-picnic\":58157,\"table-pivot\":58001,\"table-rows\":58002,\"table-tennis-paddle-ball\":62557,\"table-tree\":58003,\"table\":61646,\"tablet-button\":61706,\"tablet-rugged\":62607,\"tablet-screen-button\":62458,\"tablet-screen\":62460,\"tablet\":62459,\"tablets\":62608,\"tachograph-digital\":62822,\"taco\":63526,\"tag\":61483,\"tags\":61484,\"tally-1\":58004,\"tally-2\":58005,\"tally-3\":58006,\"tally-4\":58007,\"tally\":63132,\"tamale\":58449,\"tank-water\":58450,\"tape\":62683,\"tarp-droplet\":58748,\"tarp\":58747,\"taxi-bus\":58008,\"taxi\":61882,\"teddy-bear\":58319,\"teeth-open\":63023,\"teeth\":63022,\"telescope\":57406,\"temperature-arrow-down\":57407,\"temperature-arrow-up\":57408,\"temperature-empty\":62155,\"temperature-full\":62151,\"temperature-half\":62153,\"temperature-high\":63337,\"temperature-list\":58009,\"temperature-low\":63339,\"temperature-quarter\":62154,\"temperature-snow\":63336,\"temperature-sun\":63338,\"temperature-three-quarters\":62152,\"tenge-sign\":63447,\"tennis-ball\":62558,\"tent-arrow-down-to-line\":58750,\"tent-arrow-left-right\":58751,\"tent-arrow-turn-left\":58752,\"tent-arrows-down\":58753,\"tent-double-peak\":58919,\"tent\":58749,\"tents\":58754,\"terminal\":61728,\"text-height\":61492,\"text-size\":63636,\"text-slash\":63613,\"text-width\":61493,\"text\":63635,\"thermometer\":62609,\"theta\":63134,\"thought-bubble\":58158,\"thumbs-down\":61797,\"thumbs-up\":61796,\"thumbtack-slash\":59023,\"thumbtack\":61581,\"tick\":58159,\"ticket-airline\":58010,\"ticket-perforated\":58942,\"ticket-simple\":62463,\"ticket\":61765,\"tickets-airline\":58011,\"tickets-perforated\":58943,\"tickets-simple\":58969,\"tickets\":58968,\"tilde\":126,\"timeline-arrow\":58013,\"timeline\":58012,\"timer\":58014,\"tire-flat\":63026,\"tire-pressure-warning\":63027,\"tire-rugged\":63028,\"tire\":63025,\"toggle-large-off\":58800,\"toggle-large-on\":58801,\"toggle-off\":61956,\"toggle-on\":61957,\"toilet-paper-blank-under\":58015,\"toilet-paper-blank\":63263,\"toilet-paper-check\":58802,\"toilet-paper-slash\":57458,\"toilet-paper-under-slash\":58017,\"toilet-paper-under\":58016,\"toilet-paper-xmark\":58803,\"toilet-paper\":63262,\"toilet-portable\":58755,\"toilet\":63448,\"toilets-portable\":58756,\"tomato\":58160,\"tombstone-blank\":63265,\"tombstone\":63264,\"toolbox\":62802,\"tooth\":62921,\"toothbrush\":63029,\"torii-gate\":63137,\"tornado\":63343,\"tower-broadcast\":62745,\"tower-cell\":58757,\"tower-control\":58018,\"tower-observation\":58758,\"tractor\":63266,\"trademark\":62044,\"traffic-cone\":63030,\"traffic-light-go\":63032,\"traffic-light-slow\":63033,\"traffic-light-stop\":63034,\"traffic-light\":63031,\"trailer\":57409,\"train-subway-tunnel\":58019,\"train-subway\":62009,\"train-track\":58451,\"train-tram\":58804,\"train-tunnel\":58452,\"train\":62008,\"transformer-bolt\":58020,\"transgender\":61989,\"transporter-1\":57411,\"transporter-2\":57412,\"transporter-3\":57413,\"transporter-4\":58021,\"transporter-5\":58022,\"transporter-6\":58023,\"transporter-7\":58024,\"transporter-empty\":57414,\"transporter\":57410,\"trash-arrow-up\":63529,\"trash-can-arrow-up\":63530,\"trash-can-check\":58025,\"trash-can-clock\":58026,\"trash-can-list\":58027,\"trash-can-plus\":58028,\"trash-can-slash\":58029,\"trash-can-undo\":63638,\"trash-can-xmark\":58030,\"trash-can\":62189,\"trash-check\":58031,\"trash-clock\":58032,\"trash-list\":58033,\"trash-plus\":58034,\"trash-slash\":58035,\"trash-undo\":63637,\"trash-xmark\":58036,\"trash\":61944,\"treasure-chest\":63267,\"tree-christmas\":63451,\"tree-city\":58759,\"tree-deciduous\":62464,\"tree-decorated\":63452,\"tree-large\":63453,\"tree-palm\":63531,\"tree\":61883,\"trees\":63268,\"triangle-exclamation\":61553,\"triangle-instrument\":63714,\"triangle-person-digging\":63581,\"triangle\":62188,\"tricycle-adult\":58820,\"tricycle\":58819,\"trillium\":58760,\"trophy-star\":62187,\"trophy\":61585,\"trowel-bricks\":58762,\"trowel\":58761,\"truck-arrow-right\":58763,\"truck-bolt\":58320,\"truck-clock\":62604,\"truck-container-empty\":58037,\"truck-container\":62684,\"truck-droplet\":58764,\"truck-fast\":62603,\"truck-field-un\":58766,\"truck-field\":58765,\"truck-fire\":58970,\"truck-flatbed\":58038,\"truck-front\":58039,\"truck-ladder\":58967,\"truck-medical\":61689,\"truck-monster\":63035,\"truck-moving\":62687,\"truck-pickup\":63036,\"truck-plane\":58767,\"truck-plow\":63454,\"truck-ramp-box\":62686,\"truck-ramp-couch\":62685,\"truck-ramp\":62688,\"truck-tow\":58040,\"truck-utensils\":58920,\"truck\":61649,\"trumpet\":63715,\"tty-answer\":58041,\"tty\":61924,\"tugrik-sign\":58042,\"turkey\":63269,\"turkish-lira-sign\":58043,\"turn-down-left\":58161,\"turn-down-right\":58453,\"turn-down\":62398,\"turn-left-down\":58935,\"turn-left-up\":58936,\"turn-left\":58934,\"turn-right\":58937,\"turn-up\":62399,\"turntable\":63716,\"turtle\":63270,\"tv-music\":63718,\"tv-retro\":62465,\"tv\":62060,\"typewriter\":63719,\"u\":85,\"ufo-beam\":57416,\"ufo\":57415,\"umbrella-beach\":62922,\"umbrella-simple\":58044,\"umbrella\":61673,\"underline\":61645,\"unicorn\":63271,\"uniform-martial-arts\":58321,\"union\":63138,\"universal-access\":62106,\"unlock-keyhole\":61758,\"unlock\":61596,\"up-down-left-right\":61618,\"up-down\":62264,\"up-from-bracket\":58768,\"up-from-dotted-line\":58454,\"up-from-line\":62278,\"up-left\":58045,\"up-long\":62220,\"up-right-and-down-left-from-center\":62500,\"up-right-from-square\":62301,\"up-right\":58046,\"up-to-bracket\":58990,\"up-to-dotted-line\":58455,\"up-to-line\":62285,\"up\":62295,\"upload\":61587,\"usb-drive\":63721,\"user-alien\":57418,\"user-astronaut\":62715,\"user-beard-bolt\":59017,\"user-bounty-hunter\":58047,\"user-check\":62716,\"user-chef\":58322,\"user-clock\":62717,\"user-cowboy\":63722,\"user-crown\":63140,\"user-doctor-hair-long\":58457,\"user-doctor-hair\":58456,\"user-doctor-message\":63534,\"user-doctor\":61680,\"user-gear\":62718,\"user-graduate\":62721,\"user-group-crown\":63141,\"user-group-simple\":58883,\"user-group\":62720,\"user-hair-buns\":58323,\"user-hair-long\":58459,\"user-hair-mullet\":58460,\"user-hair\":58458,\"user-headset\":63533,\"user-helmet-safety\":63532,\"user-hoodie\":59018,\"user-injured\":63272,\"user-large-slash\":62714,\"user-large\":62470,\"user-lock\":62722,\"user-magnifying-glass\":58821,\"user-minus\":62723,\"user-music\":63723,\"user-ninja\":62724,\"user-nurse-hair-long\":58462,\"user-nurse-hair\":58461,\"user-nurse\":63535,\"user-pen\":62719,\"user-pilot-tie\":58049,\"user-pilot\":58048,\"user-plus\":62004,\"user-police-tie\":58164,\"user-police\":58163,\"user-robot-xmarks\":58535,\"user-robot\":57419,\"user-secret\":61979,\"user-shakespeare\":58050,\"user-shield\":62725,\"user-slash\":62726,\"user-tag\":62727,\"user-tie-hair-long\":58464,\"user-tie-hair\":58463,\"user-tie\":62728,\"user-unlock\":57432,\"user-visor\":57420,\"user-vneck-hair-long\":58467,\"user-vneck-hair\":58466,\"user-vneck\":58465,\"user-xmark\":62005,\"user\":61447,\"users-between-lines\":58769,\"users-gear\":62729,\"users-line\":58770,\"users-medical\":63536,\"users-rays\":58771,\"users-rectangle\":58772,\"users-slash\":57459,\"users-viewfinder\":58773,\"users\":61632,\"utensils-slash\":58468,\"utensils\":62183,\"utility-pole-double\":58052,\"utility-pole\":58051,\"v\":86,\"vacuum-robot\":57422,\"vacuum\":57421,\"value-absolute\":63142,\"van-shuttle\":62902,\"vault\":58053,\"vector-circle\":58054,\"vector-polygon\":58055,\"vector-square\":62923,\"vent-damper\":58469,\"venus-double\":61990,\"venus-mars\":61992,\"venus\":61985,\"vest-patches\":57478,\"vest\":57477,\"vial-circle-check\":58774,\"vial-virus\":58775,\"vial\":62610,\"vials\":62611,\"video-arrow-down-left\":58056,\"video-arrow-up-right\":58057,\"video-plus\":62689,\"video-slash\":62690,\"video\":61501,\"vihara\":63143,\"violin\":63725,\"virus-covid-slash\":58537,\"virus-covid\":58536,\"virus-slash\":57461,\"virus\":57460,\"viruses\":57462,\"voicemail\":63639,\"volcano\":63344,\"volleyball\":62559,\"volume-high\":61480,\"volume-low\":61479,\"volume-off\":61478,\"volume-slash\":62178,\"volume-xmark\":63145,\"volume\":63144,\"vr-cardboard\":63273,\"w\":87,\"waffle\":58470,\"wagon-covered\":63726,\"walker\":63537,\"walkie-talkie\":63727,\"wallet\":62805,\"wand-magic-sparkles\":58058,\"wand-magic\":61648,\"wand-sparkles\":63275,\"wand\":63274,\"warehouse-full\":62613,\"warehouse\":62612,\"washing-machine\":63640,\"watch-apple\":58059,\"watch-calculator\":63728,\"watch-fitness\":63038,\"watch-smart\":58060,\"watch\":62177,\"water-arrow-down\":63348,\"water-arrow-up\":63349,\"water-ladder\":62917,\"water\":63347,\"watermelon-slice\":58167,\"wave-pulse\":62968,\"wave-sine\":63641,\"wave-square\":63550,\"wave-triangle\":63642,\"wave\":58971,\"waveform-lines\":63730,\"waveform\":63729,\"waves-sine\":58973,\"web-awesome\":59010,\"webhook\":58837,\"weight-hanging\":62925,\"weight-scale\":62614,\"whale\":63276,\"wheat-awn-circle-exclamation\":58776,\"wheat-awn-slash\":58168,\"wheat-awn\":58061,\"wheat-slash\":58169,\"wheat\":63277,\"wheelchair-move\":58062,\"wheelchair\":61843,\"whiskey-glass-ice\":63393,\"whiskey-glass\":63392,\"whistle\":62560,\"wifi-exclamation\":58063,\"wifi-fair\":63147,\"wifi-slash\":63148,\"wifi-weak\":63146,\"wifi\":61931,\"wind-turbine\":63643,\"wind-warning\":63350,\"wind\":63278,\"window-flip\":62479,\"window-frame-open\":57424,\"window-frame\":57423,\"window-maximize\":62160,\"window-minimize\":62161,\"window-restore\":62162,\"window\":62478,\"windsock\":63351,\"wine-bottle\":63279,\"wine-glass-crack\":62651,\"wine-glass-empty\":62926,\"wine-glass\":62691,\"won-sign\":61785,\"worm\":58777,\"wreath-laurel\":58834,\"wreath\":63458,\"wrench-simple\":58065,\"wrench\":61613,\"x-ray\":62615,\"x\":88,\"xmark-large\":58779,\"xmark-to-slot\":63345,\"xmark\":61453,\"xmarks-lines\":58778,\"y\":89,\"yen-sign\":61783,\"yin-yang\":63149,\"z\":90}"
  },
  {
    "path": "packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_sharp-duotone-light.json",
    "content": "{\"0\":48,\"1\":49,\"2\":50,\"3\":51,\"4\":52,\"5\":53,\"6\":54,\"7\":55,\"8\":56,\"9\":57,\"00\":58471,\"360-degrees\":58076,\"a\":65,\"abacus\":63040,\"accent-grave\":96,\"acorn\":63150,\"address-book\":62137,\"address-card\":62139,\"air-conditioner\":63732,\"airplay\":57481,\"alarm-clock\":62286,\"alarm-exclamation\":63555,\"alarm-plus\":63556,\"alarm-snooze\":63557,\"album-circle-plus\":58508,\"album-circle-user\":58509,\"album-collection-circle-plus\":58510,\"album-collection-circle-user\":58511,\"album-collection\":63648,\"album\":63647,\"alicorn\":63152,\"alien-8bit\":63734,\"alien\":63733,\"align-center\":61495,\"align-justify\":61497,\"align-left\":61494,\"align-right\":61496,\"align-slash\":63558,\"alt\":57482,\"amp-guitar\":63649,\"ampersand\":38,\"anchor-circle-check\":58538,\"anchor-circle-exclamation\":58539,\"anchor-circle-xmark\":58540,\"anchor-lock\":58541,\"anchor\":61757,\"angel\":63353,\"angle-90\":57485,\"angle-down\":61703,\"angle-left\":61700,\"angle-right\":61701,\"angle-up\":61702,\"angle\":57484,\"angles-down\":61699,\"angles-left\":61696,\"angles-right\":61697,\"angles-up-down\":58893,\"angles-up\":61698,\"ankh\":63044,\"ant\":59008,\"apartment\":58472,\"aperture\":58079,\"apostrophe\":39,\"apple-core\":57487,\"apple-whole\":62929,\"archway\":62807,\"arrow-down-1-9\":61794,\"arrow-down-9-1\":63622,\"arrow-down-a-z\":61789,\"arrow-down-arrow-up\":63619,\"arrow-down-big-small\":63628,\"arrow-down-from-arc\":58900,\"arrow-down-from-bracket\":58983,\"arrow-down-from-dotted-line\":57488,\"arrow-down-from-line\":62277,\"arrow-down-left-and-arrow-up-right-to-center\":57490,\"arrow-down-left\":57489,\"arrow-down-long\":61813,\"arrow-down-right\":57491,\"arrow-down-short-wide\":63620,\"arrow-down-small-big\":63629,\"arrow-down-square-triangle\":63625,\"arrow-down-to-arc\":58542,\"arrow-down-to-bracket\":57492,\"arrow-down-to-dotted-line\":57493,\"arrow-down-to-line\":62269,\"arrow-down-to-square\":57494,\"arrow-down-triangle-square\":63624,\"arrow-down-up-across-line\":58543,\"arrow-down-up-lock\":58544,\"arrow-down-wide-short\":61792,\"arrow-down-z-a\":63617,\"arrow-down\":61539,\"arrow-left-from-arc\":58901,\"arrow-left-from-bracket\":58984,\"arrow-left-from-line\":62276,\"arrow-left-long-to-line\":58324,\"arrow-left-long\":61815,\"arrow-left-to-arc\":58902,\"arrow-left-to-bracket\":58985,\"arrow-left-to-line\":62270,\"arrow-left\":61536,\"arrow-pointer\":62021,\"arrow-progress\":58847,\"arrow-right-arrow-left\":61676,\"arrow-right-from-arc\":58545,\"arrow-right-from-bracket\":61579,\"arrow-right-from-line\":62275,\"arrow-right-long-to-line\":58325,\"arrow-right-long\":61816,\"arrow-right-to-arc\":58546,\"arrow-right-to-bracket\":61584,\"arrow-right-to-city\":58547,\"arrow-right-to-line\":62272,\"arrow-right\":61537,\"arrow-rotate-left\":61666,\"arrow-rotate-right\":61470,\"arrow-trend-down\":57495,\"arrow-trend-up\":57496,\"arrow-turn-down-left\":58081,\"arrow-turn-down-right\":58326,\"arrow-turn-down\":61769,\"arrow-turn-left-down\":58931,\"arrow-turn-left-up\":58932,\"arrow-turn-left\":58930,\"arrow-turn-right\":58933,\"arrow-turn-up\":61768,\"arrow-up-1-9\":61795,\"arrow-up-9-1\":63623,\"arrow-up-a-z\":61790,\"arrow-up-arrow-down\":57497,\"arrow-up-big-small\":63630,\"arrow-up-from-arc\":58548,\"arrow-up-from-bracket\":57498,\"arrow-up-from-dotted-line\":57499,\"arrow-up-from-ground-water\":58549,\"arrow-up-from-line\":62274,\"arrow-up-from-square\":57500,\"arrow-up-from-water-pump\":58550,\"arrow-up-left-from-circle\":57502,\"arrow-up-left\":57501,\"arrow-up-long\":61814,\"arrow-up-right-and-arrow-down-left-from-center\":57504,\"arrow-up-right-dots\":58551,\"arrow-up-right-from-square\":61582,\"arrow-up-right\":57503,\"arrow-up-short-wide\":63621,\"arrow-up-small-big\":63631,\"arrow-up-square-triangle\":63627,\"arrow-up-to-arc\":58903,\"arrow-up-to-bracket\":58986,\"arrow-up-to-dotted-line\":57505,\"arrow-up-to-line\":62273,\"arrow-up-triangle-square\":63626,\"arrow-up-wide-short\":61793,\"arrow-up-z-a\":63618,\"arrow-up\":61538,\"arrows-cross\":57506,\"arrows-down-to-line\":58552,\"arrows-down-to-people\":58553,\"arrows-from-dotted-line\":57507,\"arrows-from-line\":57508,\"arrows-left-right-to-line\":58554,\"arrows-left-right\":61566,\"arrows-maximize\":62237,\"arrows-minimize\":57509,\"arrows-repeat-1\":62310,\"arrows-repeat\":62308,\"arrows-retweet\":62305,\"arrows-rotate-reverse\":58928,\"arrows-rotate\":61473,\"arrows-spin\":58555,\"arrows-split-up-and-left\":58556,\"arrows-to-circle\":58557,\"arrows-to-dot\":58558,\"arrows-to-dotted-line\":57510,\"arrows-to-eye\":58559,\"arrows-to-line\":57511,\"arrows-turn-right\":58560,\"arrows-turn-to-dots\":58561,\"arrows-up-down-left-right\":61511,\"arrows-up-down\":61565,\"arrows-up-to-line\":58562,\"asterisk\":42,\"at\":64,\"atom-simple\":62931,\"atom\":62930,\"audio-description-slash\":57512,\"audio-description\":62110,\"austral-sign\":57513,\"avocado\":57514,\"award-simple\":57515,\"award\":62809,\"axe-battle\":63155,\"axe\":63154,\"b\":66,\"baby-carriage\":63357,\"baby\":63356,\"backpack\":62932,\"backward-fast\":61513,\"backward-step\":61512,\"backward\":61514,\"bacon\":63461,\"bacteria\":57433,\"bacterium\":57434,\"badge-check\":62262,\"badge-dollar\":63045,\"badge-percent\":63046,\"badge-sheriff\":63650,\"badge\":62261,\"badger-honey\":63156,\"badminton\":58170,\"bag-seedling\":58866,\"bag-shopping-minus\":58960,\"bag-shopping-plus\":58961,\"bag-shopping\":62096,\"bagel\":58327,\"bags-shopping\":63559,\"baguette\":58328,\"bahai\":63078,\"baht-sign\":57516,\"ball-pile\":63358,\"balloon\":58083,\"balloons\":58084,\"ballot-check\":63283,\"ballot\":63282,\"ban-bug\":63481,\"ban-parking\":62998,\"ban-smoking\":62797,\"ban\":61534,\"banana\":58085,\"bandage\":62562,\"bangladeshi-taka-sign\":58086,\"banjo\":63651,\"barcode-read\":62564,\"barcode-scan\":62565,\"barcode\":61482,\"bars-filter\":57517,\"bars-progress\":63528,\"bars-sort\":57518,\"bars-staggered\":62800,\"bars\":61641,\"baseball-bat-ball\":62514,\"baseball\":62515,\"basket-shopping-minus\":58962,\"basket-shopping-plus\":58963,\"basket-shopping-simple\":57519,\"basket-shopping\":62097,\"basketball-hoop\":62517,\"basketball\":62516,\"bat\":63157,\"bath\":62157,\"battery-bolt\":62326,\"battery-empty\":62020,\"battery-exclamation\":57520,\"battery-full\":62016,\"battery-half\":62018,\"battery-low\":57521,\"battery-quarter\":62019,\"battery-slash\":62327,\"battery-three-quarters\":62017,\"bed-bunk\":63736,\"bed-empty\":63737,\"bed-front\":63735,\"bed-pulse\":62599,\"bed\":62006,\"bee\":57522,\"beer-mug-empty\":61692,\"beer-mug\":57523,\"bell-concierge\":62818,\"bell-exclamation\":63560,\"bell-on\":63738,\"bell-plus\":63561,\"bell-ring\":58924,\"bell-school-slash\":62934,\"bell-school\":62933,\"bell-slash\":61942,\"bell\":61683,\"bells\":63359,\"bench-tree\":58087,\"bezier-curve\":62811,\"bicycle\":61958,\"billboard\":58829,\"bin-bottles-recycle\":58870,\"bin-bottles\":58869,\"bin-recycle\":58871,\"binary-circle-check\":58172,\"binary-lock\":58173,\"binary-slash\":58174,\"binary\":58171,\"binoculars\":61925,\"biohazard\":63360,\"bird\":58473,\"bitcoin-sign\":57524,\"blanket-fire\":58330,\"blanket\":62616,\"blender-phone\":63158,\"blender\":62743,\"blinds-open\":63740,\"blinds-raised\":63741,\"blinds\":63739,\"block-brick-fire\":58332,\"block-brick\":58331,\"block-question\":58333,\"block-quote\":57525,\"block\":58474,\"blog\":63361,\"blueberries\":58088,\"bluetooth\":62099,\"bold\":61490,\"bolt-auto\":57526,\"bolt-lightning\":57527,\"bolt-slash\":57528,\"bolt\":61671,\"bomb\":61922,\"bone-break\":62936,\"bone\":62935,\"bong\":62812,\"book-arrow-right\":57529,\"book-arrow-up\":57530,\"book-atlas\":62808,\"book-bible\":63047,\"book-blank\":62937,\"book-bookmark\":57531,\"book-circle-arrow-right\":57532,\"book-circle-arrow-up\":57533,\"book-copy\":57534,\"book-font\":57535,\"book-heart\":62617,\"book-journal-whills\":63082,\"book-medical\":63462,\"book-open-cover\":57536,\"book-open-reader\":62938,\"book-open\":62744,\"book-quran\":63111,\"book-section\":57537,\"book-skull\":63159,\"book-sparkles\":63160,\"book-tanakh\":63527,\"book-user\":63463,\"book\":61485,\"bookmark-slash\":57538,\"bookmark\":61486,\"books-medical\":63464,\"books\":62939,\"boombox\":63653,\"boot-heeled\":58175,\"boot\":63362,\"booth-curtain\":63284,\"border-all\":63564,\"border-bottom-right\":63572,\"border-bottom\":63565,\"border-center-h\":63644,\"border-center-v\":63645,\"border-inner\":63566,\"border-left\":63567,\"border-none\":63568,\"border-outer\":63569,\"border-right\":63570,\"border-top-left\":63571,\"border-top\":63573,\"bore-hole\":58563,\"bottle-baby\":58995,\"bottle-droplet\":58564,\"bottle-water\":58565,\"bow-arrow\":63161,\"bowl-chopsticks-noodles\":58090,\"bowl-chopsticks\":58089,\"bowl-food\":58566,\"bowl-hot\":63523,\"bowl-rice\":58091,\"bowl-scoop\":58334,\"bowl-scoops\":58335,\"bowl-soft-serve\":58475,\"bowl-spoon\":58336,\"bowling-ball-pin\":57539,\"bowling-ball\":62518,\"bowling-pins\":62519,\"box-archive\":61831,\"box-ballot\":63285,\"box-check\":62567,\"box-circle-check\":57540,\"box-dollar\":62624,\"box-heart\":62621,\"box-open-full\":62620,\"box-open\":62622,\"box-taped\":62618,\"box-tissue\":57435,\"box\":62566,\"boxes-packing\":58567,\"boxes-stacked\":62568,\"boxing-glove\":62520,\"bracket-curly-right\":125,\"bracket-curly\":123,\"bracket-round-right\":41,\"bracket-round\":40,\"bracket-square-right\":93,\"bracket-square\":91,\"brackets-curly\":63466,\"brackets-round\":57541,\"brackets-square\":63465,\"braille\":62113,\"brain-arrow-curved-right\":63095,\"brain-circuit\":57542,\"brain\":62940,\"brake-warning\":57543,\"brazilian-real-sign\":58476,\"bread-loaf\":63467,\"bread-slice-butter\":58337,\"bread-slice\":63468,\"bridge-circle-check\":58569,\"bridge-circle-exclamation\":58570,\"bridge-circle-xmark\":58571,\"bridge-lock\":58572,\"bridge-suspension\":58573,\"bridge-water\":58574,\"bridge\":58568,\"briefcase-arrow-right\":58098,\"briefcase-blank\":57544,\"briefcase-medical\":62569,\"briefcase\":61617,\"brightness-low\":57546,\"brightness\":57545,\"bring-forward\":63574,\"bring-front\":63575,\"broccoli\":58338,\"broom-ball\":62552,\"broom-wide\":58833,\"broom\":62746,\"browser\":62334,\"browsers\":57547,\"brush\":62813,\"bucket\":58575,\"bug-slash\":58512,\"bug\":61832,\"bugs\":58576,\"building-circle-arrow-right\":58577,\"building-circle-check\":58578,\"building-circle-exclamation\":58579,\"building-circle-xmark\":58580,\"building-columns\":61852,\"building-flag\":58581,\"building-lock\":58582,\"building-magnifying-glass\":58908,\"building-memo\":58910,\"building-ngo\":58583,\"building-shield\":58584,\"building-un\":58585,\"building-user\":58586,\"building-wheat\":58587,\"building\":61869,\"buildings\":57548,\"bulldozer\":58965,\"bullhorn\":61601,\"bullseye-arrow\":63048,\"bullseye-pointer\":63049,\"bullseye\":61760,\"buoy-mooring\":58806,\"buoy\":58805,\"burger-cheese\":63473,\"burger-fries\":57549,\"burger-glass\":57550,\"burger-lettuce\":58339,\"burger-soda\":63576,\"burger\":63493,\"burrito\":63469,\"burst\":58588,\"bus-school\":62941,\"bus-simple\":62814,\"bus\":61959,\"business-time\":63050,\"butter\":58340,\"c\":67,\"cabin\":58477,\"cabinet-filing\":63051,\"cable-car\":63450,\"cactus\":63655,\"caduceus\":59009,\"cake-candles\":61949,\"cake-slice\":58341,\"calculator-simple\":63052,\"calculator\":61932,\"calendar-arrow-down\":57552,\"calendar-arrow-up\":57553,\"calendar-check\":62068,\"calendar-circle-exclamation\":58478,\"calendar-circle-minus\":58479,\"calendar-circle-plus\":58480,\"calendar-circle-user\":58481,\"calendar-clock\":57554,\"calendar-day\":63363,\"calendar-days\":61555,\"calendar-exclamation\":62260,\"calendar-heart\":57555,\"calendar-image\":57556,\"calendar-lines-pen\":58482,\"calendar-lines\":57557,\"calendar-minus\":62066,\"calendar-pen\":62259,\"calendar-plus\":62065,\"calendar-range\":57558,\"calendar-star\":63286,\"calendar-users\":58850,\"calendar-week\":63364,\"calendar-xmark\":62067,\"calendar\":61747,\"calendars\":57559,\"camcorder\":63656,\"camera-cctv\":63660,\"camera-movie\":63657,\"camera-polaroid\":63658,\"camera-retro\":61571,\"camera-rotate\":57560,\"camera-security\":63742,\"camera-slash\":57561,\"camera-viewfinder\":57562,\"camera-web-slash\":63539,\"camera-web\":63538,\"camera\":61488,\"campfire\":63162,\"campground\":63163,\"can-food\":58342,\"candle-holder\":63164,\"candy-bar\":58344,\"candy-cane\":63366,\"candy-corn\":63165,\"candy\":58343,\"cannabis\":62815,\"cannon\":58946,\"capsules\":62571,\"car-battery\":62943,\"car-bolt\":58177,\"car-building\":63577,\"car-bump\":62944,\"car-burst\":62945,\"car-bus\":63578,\"car-circle-bolt\":58178,\"car-garage\":62946,\"car-mirrors\":58179,\"car-on\":58589,\"car-rear\":62942,\"car-side-bolt\":58180,\"car-side\":62948,\"car-tilt\":62949,\"car-tunnel\":58590,\"car-wash\":62950,\"car-wrench\":62947,\"car\":61881,\"caravan-simple\":57344,\"caravan\":63743,\"card-club\":58345,\"card-diamond\":58346,\"card-heart\":58347,\"card-spade\":58348,\"cards-blank\":58591,\"cards\":58349,\"caret-down\":61655,\"caret-left\":61657,\"caret-right\":61658,\"caret-up\":61656,\"carpool\":59036,\"carrot\":63367,\"cars\":63579,\"cart-arrow-down\":61976,\"cart-arrow-up\":58350,\"cart-circle-arrow-down\":58351,\"cart-circle-arrow-up\":58352,\"cart-circle-check\":58353,\"cart-circle-exclamation\":58354,\"cart-circle-plus\":58355,\"cart-circle-xmark\":58356,\"cart-flatbed-boxes\":62581,\"cart-flatbed-empty\":62582,\"cart-flatbed-suitcase\":62877,\"cart-flatbed\":62580,\"cart-minus\":57563,\"cart-plus\":61975,\"cart-shopping-fast\":57564,\"cart-shopping\":61562,\"cart-xmark\":57565,\"cash-register\":63368,\"cassette-betamax\":63652,\"cassette-tape\":63659,\"cassette-vhs\":63724,\"castle\":57566,\"cat-space\":57345,\"cat\":63166,\"cauldron\":63167,\"cedi-sign\":57567,\"cent-sign\":58357,\"certificate\":61603,\"chair-office\":63169,\"chair\":63168,\"chalkboard-user\":62748,\"chalkboard\":62747,\"champagne-glass\":63390,\"champagne-glasses\":63391,\"charging-station\":62951,\"chart-area\":61950,\"chart-bar\":61568,\"chart-bullet\":57569,\"chart-candlestick\":57570,\"chart-column\":57571,\"chart-diagram\":59029,\"chart-fft\":59038,\"chart-gantt\":57572,\"chart-kanban\":58959,\"chart-line-down\":63053,\"chart-line-up-down\":58839,\"chart-line-up\":57573,\"chart-line\":61953,\"chart-mixed-up-circle-currency\":58840,\"chart-mixed-up-circle-dollar\":58841,\"chart-mixed\":63043,\"chart-network\":63370,\"chart-pie-simple-circle-currency\":58884,\"chart-pie-simple-circle-dollar\":58885,\"chart-pie-simple\":63054,\"chart-pie\":61952,\"chart-pyramid\":57574,\"chart-radar\":57575,\"chart-scatter-3d\":57576,\"chart-scatter-bubble\":57577,\"chart-scatter\":63470,\"chart-simple-horizontal\":58484,\"chart-simple\":58483,\"chart-sine\":59037,\"chart-tree-map\":57578,\"chart-user\":63139,\"chart-waterfall\":57579,\"check-double\":62816,\"check-to-slot\":63346,\"check\":61452,\"cheese-swiss\":63472,\"cheese\":63471,\"cherries\":57580,\"chess-bishop-piece\":62523,\"chess-bishop\":62522,\"chess-board\":62524,\"chess-clock-flip\":62526,\"chess-clock\":62525,\"chess-king-piece\":62528,\"chess-king\":62527,\"chess-knight-piece\":62530,\"chess-knight\":62529,\"chess-pawn-piece\":62532,\"chess-pawn\":62531,\"chess-queen-piece\":62534,\"chess-queen\":62533,\"chess-rook-piece\":62536,\"chess-rook\":62535,\"chess\":62521,\"chestnut\":58358,\"chevron-down\":61560,\"chevron-left\":61523,\"chevron-right\":61524,\"chevron-up\":61559,\"chevrons-down\":62242,\"chevrons-left\":62243,\"chevrons-right\":62244,\"chevrons-up\":62245,\"chf-sign\":58882,\"child-combatant\":58592,\"child-dress\":58780,\"child-reaching\":58781,\"child\":61870,\"children\":58593,\"chimney\":63371,\"chopsticks\":58359,\"church\":62749,\"circle-0\":57581,\"circle-1\":57582,\"circle-2\":57583,\"circle-3\":57584,\"circle-4\":57585,\"circle-5\":57586,\"circle-6\":57587,\"circle-7\":57588,\"circle-8\":57589,\"circle-9\":57590,\"circle-a\":57591,\"circle-ampersand\":57592,\"circle-arrow-down-left\":57593,\"circle-arrow-down-right\":57594,\"circle-arrow-down\":61611,\"circle-arrow-left\":61608,\"circle-arrow-right\":61609,\"circle-arrow-up-left\":57595,\"circle-arrow-up-right\":57596,\"circle-arrow-up\":61610,\"circle-b\":57597,\"circle-bolt\":57598,\"circle-book-open\":57599,\"circle-bookmark\":57600,\"circle-c\":57601,\"circle-calendar\":57602,\"circle-camera\":57603,\"circle-caret-down\":62253,\"circle-caret-left\":62254,\"circle-caret-right\":62256,\"circle-caret-up\":62257,\"circle-check\":61528,\"circle-chevron-down\":61754,\"circle-chevron-left\":61751,\"circle-chevron-right\":61752,\"circle-chevron-up\":61753,\"circle-d\":57604,\"circle-dashed\":57605,\"circle-divide\":57606,\"circle-dollar-to-slot\":62649,\"circle-dollar\":62184,\"circle-dot\":61842,\"circle-down-left\":57607,\"circle-down-right\":57608,\"circle-down\":62296,\"circle-e\":57609,\"circle-ellipsis-vertical\":57611,\"circle-ellipsis\":57610,\"circle-envelope\":57612,\"circle-euro\":58830,\"circle-exclamation-check\":57613,\"circle-exclamation\":61546,\"circle-f\":57614,\"circle-g\":57615,\"circle-gf\":59007,\"circle-h\":62590,\"circle-half-stroke\":61506,\"circle-half\":57616,\"circle-heart\":62663,\"circle-i\":57617,\"circle-info\":61530,\"circle-j\":57618,\"circle-k\":57619,\"circle-l\":57620,\"circle-left\":62297,\"circle-location-arrow\":62978,\"circle-m\":57621,\"circle-microphone-lines\":57623,\"circle-microphone\":57622,\"circle-minus\":61526,\"circle-n\":57624,\"circle-nodes\":58594,\"circle-notch\":61902,\"circle-o\":57625,\"circle-p\":57626,\"circle-parking\":62997,\"circle-pause\":62091,\"circle-phone-flip\":57628,\"circle-phone-hangup\":57629,\"circle-phone\":57627,\"circle-play\":61764,\"circle-plus\":61525,\"circle-q\":57630,\"circle-quarter-stroke\":58835,\"circle-quarter\":57631,\"circle-quarters\":58360,\"circle-question\":61529,\"circle-r\":57632,\"circle-radiation\":63418,\"circle-right\":62298,\"circle-s\":57633,\"circle-small\":57634,\"circle-sort-down\":57393,\"circle-sort-up\":57394,\"circle-sort\":57392,\"circle-star\":57635,\"circle-sterling\":58831,\"circle-stop\":62093,\"circle-t\":57636,\"circle-three-quarters-stroke\":58836,\"circle-three-quarters\":57637,\"circle-trash\":57638,\"circle-u\":57639,\"circle-up-left\":57640,\"circle-up-right\":57641,\"circle-up\":62299,\"circle-user\":62141,\"circle-v\":57642,\"circle-video\":57643,\"circle-w\":57644,\"circle-waveform-lines\":57645,\"circle-wifi-circle-wifi\":59006,\"circle-wifi\":59005,\"circle-x\":57646,\"circle-xmark\":61527,\"circle-y\":57647,\"circle-yen\":58832,\"circle-z\":57648,\"circle\":61713,\"circles-overlap-3\":59041,\"circles-overlap\":58880,\"citrus-slice\":58101,\"citrus\":58100,\"city\":63055,\"clapperboard-play\":57650,\"clapperboard\":57649,\"clarinet\":63661,\"claw-marks\":63170,\"clipboard-check\":62572,\"clipboard-list-check\":63287,\"clipboard-list\":62573,\"clipboard-medical\":57651,\"clipboard-prescription\":62952,\"clipboard-question\":58595,\"clipboard-user\":63475,\"clipboard\":62248,\"clock-desk\":57652,\"clock-eight-thirty\":58182,\"clock-eight\":58181,\"clock-eleven-thirty\":58184,\"clock-eleven\":58183,\"clock-five-thirty\":58186,\"clock-five\":58185,\"clock-four-thirty\":58187,\"clock-nine-thirty\":58189,\"clock-nine\":58188,\"clock-one-thirty\":58191,\"clock-one\":58190,\"clock-rotate-left\":61914,\"clock-seven-thirty\":58193,\"clock-seven\":58192,\"clock-six-thirty\":58195,\"clock-six\":58194,\"clock-ten-thirty\":58197,\"clock-ten\":58196,\"clock-three-thirty\":58199,\"clock-three\":58198,\"clock-twelve-thirty\":58201,\"clock-twelve\":58200,\"clock-two-thirty\":58203,\"clock-two\":58202,\"clock\":61463,\"clone\":62029,\"closed-captioning-slash\":57653,\"closed-captioning\":61962,\"clothes-hanger\":57654,\"cloud-arrow-down\":61677,\"cloud-arrow-up\":61678,\"cloud-binary\":58881,\"cloud-bolt-moon\":63341,\"cloud-bolt-sun\":63342,\"cloud-bolt\":63340,\"cloud-check\":58204,\"cloud-drizzle\":63288,\"cloud-exclamation\":58513,\"cloud-fog\":63310,\"cloud-hail-mixed\":63290,\"cloud-hail\":63289,\"cloud-meatball\":63291,\"cloud-minus\":58205,\"cloud-moon-rain\":63292,\"cloud-moon\":63171,\"cloud-music\":63662,\"cloud-plus\":58206,\"cloud-question\":58514,\"cloud-rain\":63293,\"cloud-rainbow\":63294,\"cloud-showers-heavy\":63296,\"cloud-showers-water\":58596,\"cloud-showers\":63295,\"cloud-slash\":57655,\"cloud-sleet\":63297,\"cloud-snow\":63298,\"cloud-sun-rain\":63299,\"cloud-sun\":63172,\"cloud-word\":57656,\"cloud-xmark\":58207,\"cloud\":61634,\"clouds-moon\":63301,\"clouds-sun\":63302,\"clouds\":63300,\"clover\":57657,\"club\":62247,\"coconut\":58102,\"code-branch\":61734,\"code-commit\":62342,\"code-compare\":57658,\"code-fork\":57659,\"code-merge\":62343,\"code-pull-request-closed\":58361,\"code-pull-request-draft\":58362,\"code-pull-request\":57660,\"code-simple\":57661,\"code\":61729,\"coffee-bean\":57662,\"coffee-beans\":57663,\"coffee-pot\":57346,\"coffin-cross\":57425,\"coffin\":63174,\"coin-blank\":58363,\"coin-front\":58364,\"coin-vertical\":58365,\"coin\":63580,\"coins\":62750,\"colon-sign\":57664,\"colon\":58,\"columns-3\":58209,\"comet\":57347,\"comma\":44,\"command\":57666,\"comment-arrow-down\":57667,\"comment-arrow-up-right\":57669,\"comment-arrow-up\":57668,\"comment-captions\":57670,\"comment-check\":62636,\"comment-code\":57671,\"comment-dollar\":63057,\"comment-dots\":62637,\"comment-exclamation\":62639,\"comment-heart\":58824,\"comment-image\":57672,\"comment-lines\":62640,\"comment-medical\":63477,\"comment-middle-top\":57674,\"comment-middle\":57673,\"comment-minus\":62641,\"comment-music\":63664,\"comment-nodes\":59030,\"comment-pen\":62638,\"comment-plus\":62642,\"comment-question\":57675,\"comment-quote\":57676,\"comment-slash\":62643,\"comment-smile\":62644,\"comment-sms\":63437,\"comment-text\":57677,\"comment-xmark\":62645,\"comment\":61557,\"comments-dollar\":63059,\"comments-question-check\":57679,\"comments-question\":57678,\"comments\":61574,\"compact-disc\":62751,\"compass-drafting\":62824,\"compass-slash\":62953,\"compass\":61774,\"compress-wide\":62246,\"compress\":61542,\"computer-classic\":63665,\"computer-mouse-scrollwheel\":63693,\"computer-mouse\":63692,\"computer-speaker\":63666,\"computer\":58597,\"container-storage\":62647,\"conveyor-belt-arm\":58872,\"conveyor-belt-boxes\":62575,\"conveyor-belt-empty\":57680,\"conveyor-belt\":62574,\"cookie-bite\":62820,\"cookie\":62819,\"copy\":61637,\"copyright\":61945,\"corn\":63175,\"corner\":58366,\"couch\":62648,\"court-sport\":58947,\"cow\":63176,\"cowbell-circle-plus\":63668,\"cowbell\":63667,\"crab\":58367,\"crate-apple\":63153,\"crate-empty\":57681,\"credit-card-blank\":62345,\"credit-card-front\":62346,\"credit-card\":61597,\"cricket-bat-ball\":62537,\"croissant\":63478,\"crop-simple\":62821,\"crop\":61733,\"cross\":63060,\"crosshairs-simple\":58783,\"crosshairs\":61531,\"crow\":62752,\"crown\":62753,\"crutch\":63479,\"crutches\":63480,\"cruzeiro-sign\":57682,\"crystal-ball\":58210,\"cube\":61874,\"cubes-stacked\":58598,\"cubes\":61875,\"cucumber\":58369,\"cup-straw-swoosh\":58212,\"cup-straw\":58211,\"cup-togo\":63173,\"cupcake\":58370,\"curling-stone\":62538,\"custard\":58371,\"d\":68,\"dagger\":63179,\"dash\":58372,\"database\":61888,\"deer-rudolph\":63375,\"deer\":63374,\"delete-left\":62810,\"delete-right\":57684,\"democrat\":63303,\"desktop-arrow-down\":57685,\"desktop\":62352,\"dharmachakra\":63061,\"diagram-cells\":58485,\"diagram-lean-canvas\":57686,\"diagram-nested\":57687,\"diagram-next\":58486,\"diagram-predecessor\":58487,\"diagram-previous\":58488,\"diagram-project\":62786,\"diagram-sankey\":57688,\"diagram-subtask\":58489,\"diagram-successor\":58490,\"diagram-venn\":57690,\"dial-high\":57692,\"dial-low\":57693,\"dial-max\":57694,\"dial-med-low\":57696,\"dial-med\":57695,\"dial-min\":57697,\"dial-off\":57698,\"dial\":57691,\"diamond-exclamation\":58373,\"diamond-half-stroke\":58808,\"diamond-half\":58807,\"diamond-turn-right\":62955,\"diamond\":61977,\"diamonds-4\":59019,\"dice-d10\":63181,\"dice-d12\":63182,\"dice-d20\":63183,\"dice-d4\":63184,\"dice-d6\":63185,\"dice-d8\":63186,\"dice-five\":62755,\"dice-four\":62756,\"dice-one\":62757,\"dice-six\":62758,\"dice-three\":62759,\"dice-two\":62760,\"dice\":62754,\"dinosaur\":58878,\"diploma\":62954,\"disc-drive\":63669,\"disease\":63482,\"display-arrow-down\":57700,\"display-chart-up-circle-currency\":58853,\"display-chart-up-circle-dollar\":58854,\"display-chart-up\":58851,\"display-code\":57701,\"display-medical\":57702,\"display-slash\":58106,\"display\":57699,\"distribute-spacing-horizontal\":58213,\"distribute-spacing-vertical\":58214,\"ditto\":34,\"divide\":62761,\"dna\":62577,\"do-not-enter\":62956,\"dog-leashed\":63188,\"dog\":63187,\"dollar-sign\":36,\"dolly-empty\":62579,\"dolly\":62578,\"dolphin\":57704,\"dong-sign\":57705,\"donut\":58374,\"door-closed\":62762,\"door-open\":62763,\"dove\":62650,\"down-from-bracket\":58987,\"down-from-dotted-line\":58375,\"down-from-line\":62281,\"down-left-and-up-right-to-center\":62498,\"down-left\":57706,\"down-long\":62217,\"down-right\":57707,\"down-to-bracket\":58599,\"down-to-dotted-line\":58376,\"down-to-line\":62282,\"down\":62292,\"download\":61465,\"dragon\":63189,\"draw-circle\":62957,\"draw-polygon\":62958,\"draw-square\":62959,\"dreidel\":63378,\"drone-front\":63584,\"drone\":63583,\"droplet-degree\":63304,\"droplet-percent\":63312,\"droplet-slash\":62919,\"droplet\":61507,\"drum-steelpan\":62826,\"drum\":62825,\"drumstick-bite\":63191,\"drumstick\":63190,\"dryer-heat\":63586,\"dryer\":63585,\"duck\":63192,\"dumbbell\":62539,\"dumpster-fire\":63380,\"dumpster\":63379,\"dungeon\":63193,\"e\":69,\"ear-deaf\":62116,\"ear-listen\":62114,\"ear-muffs\":63381,\"ear\":62960,\"earth-africa\":62844,\"earth-americas\":62845,\"earth-asia\":62846,\"earth-europe\":63394,\"earth-oceania\":58491,\"eclipse\":63305,\"egg-fried\":63484,\"egg\":63483,\"eggplant\":57708,\"eject\":61522,\"elephant\":63194,\"elevator\":57709,\"ellipsis-stroke-vertical\":62364,\"ellipsis-stroke\":62363,\"ellipsis-vertical\":61762,\"ellipsis\":61761,\"empty-set\":63062,\"engine-warning\":62962,\"engine\":57710,\"envelope-circle-check\":58600,\"envelope-dot\":57711,\"envelope-open-dollar\":63063,\"envelope-open-text\":63064,\"envelope-open\":62134,\"envelope\":61664,\"envelopes-bulk\":63092,\"envelopes\":57712,\"equals\":61,\"eraser\":61741,\"escalator\":57713,\"ethernet\":63382,\"euro-sign\":61779,\"excavator\":58966,\"exclamation\":33,\"expand-wide\":62240,\"expand\":61541,\"explosion\":58601,\"eye-dropper-full\":57714,\"eye-dropper-half\":57715,\"eye-dropper\":61947,\"eye-evil\":63195,\"eye-low-vision\":62120,\"eye-slash\":61552,\"eye\":61550,\"eyes\":58215,\"f\":70,\"face-angry-horns\":58216,\"face-angry\":62806,\"face-anguished\":58217,\"face-anxious-sweat\":58218,\"face-astonished\":58219,\"face-awesome\":58377,\"face-beam-hand-over-mouth\":58492,\"face-clouds\":58493,\"face-confounded\":58220,\"face-confused\":58221,\"face-cowboy-hat\":58222,\"face-diagonal-mouth\":58494,\"face-disappointed\":58223,\"face-disguise\":58224,\"face-dizzy\":62823,\"face-dotted\":58495,\"face-downcast-sweat\":58225,\"face-drooling\":58226,\"face-exhaling\":58496,\"face-explode\":58110,\"face-expressionless\":58227,\"face-eyes-xmarks\":58228,\"face-fearful\":58229,\"face-flushed\":62841,\"face-frown-open\":62842,\"face-frown-slight\":58230,\"face-frown\":61721,\"face-glasses\":58231,\"face-grimace\":62847,\"face-grin-beam-sweat\":62851,\"face-grin-beam\":62850,\"face-grin-hearts\":62852,\"face-grin-squint-tears\":62854,\"face-grin-squint\":62853,\"face-grin-stars\":62855,\"face-grin-tears\":62856,\"face-grin-tongue-squint\":62858,\"face-grin-tongue-wink\":62859,\"face-grin-tongue\":62857,\"face-grin-wide\":62849,\"face-grin-wink\":62860,\"face-grin\":62848,\"face-hand-over-mouth\":58232,\"face-hand-peeking\":58497,\"face-hand-yawn\":58233,\"face-head-bandage\":58234,\"face-holding-back-tears\":58498,\"face-hushed\":58235,\"face-icicles\":58236,\"face-kiss-beam\":62871,\"face-kiss-closed-eyes\":58237,\"face-kiss-wink-heart\":62872,\"face-kiss\":62870,\"face-laugh-beam\":62874,\"face-laugh-squint\":62875,\"face-laugh-wink\":62876,\"face-laugh\":62873,\"face-lying\":58238,\"face-mask\":58239,\"face-meh-blank\":62884,\"face-meh\":61722,\"face-melting\":58499,\"face-monocle\":58240,\"face-nauseated\":58241,\"face-nose-steam\":58242,\"face-party\":58243,\"face-pensive\":58244,\"face-persevering\":58245,\"face-pleading\":58246,\"face-pouting\":58247,\"face-raised-eyebrow\":58248,\"face-relieved\":58249,\"face-rolling-eyes\":62885,\"face-sad-cry\":62899,\"face-sad-sweat\":58250,\"face-sad-tear\":62900,\"face-saluting\":58500,\"face-scream\":58251,\"face-shush\":58252,\"face-sleeping\":58253,\"face-sleepy\":58254,\"face-smile-beam\":62904,\"face-smile-halo\":58255,\"face-smile-hearts\":58256,\"face-smile-horns\":58257,\"face-smile-plus\":62905,\"face-smile-relaxed\":58258,\"face-smile-tear\":58259,\"face-smile-tongue\":58260,\"face-smile-upside-down\":58261,\"face-smile-wink\":62682,\"face-smile\":61720,\"face-smiling-hands\":58262,\"face-smirking\":58263,\"face-spiral-eyes\":58501,\"face-sunglasses\":58264,\"face-surprise\":62914,\"face-swear\":58265,\"face-thermometer\":58266,\"face-thinking\":58267,\"face-tired\":62920,\"face-tissue\":58268,\"face-tongue-money\":58269,\"face-tongue-sweat\":58270,\"face-unamused\":58271,\"face-viewfinder\":58111,\"face-vomit\":58272,\"face-weary\":58273,\"face-woozy\":58274,\"face-worried\":58275,\"face-zany\":58276,\"face-zipper\":58277,\"falafel\":58378,\"family-dress\":58113,\"family-pants\":58114,\"family\":58112,\"fan-table\":57348,\"fan\":63587,\"farm\":63588,\"faucet-drip\":57350,\"faucet\":57349,\"fax\":61868,\"feather-pointed\":62827,\"feather\":62765,\"fence\":58115,\"ferris-wheel\":57716,\"ferry\":58602,\"field-hockey-stick-ball\":62540,\"file-arrow-down\":62829,\"file-arrow-up\":62836,\"file-audio\":61895,\"file-binary\":57717,\"file-cad\":58994,\"file-certificate\":62963,\"file-chart-column\":63065,\"file-chart-pie\":63066,\"file-check\":62230,\"file-circle-check\":58784,\"file-circle-exclamation\":58603,\"file-circle-info\":58515,\"file-circle-minus\":58605,\"file-circle-plus\":58516,\"file-circle-question\":58607,\"file-circle-xmark\":58785,\"file-code\":61897,\"file-contract\":62828,\"file-csv\":63197,\"file-dashed-line\":63607,\"file-doc\":58861,\"file-eps\":58948,\"file-excel\":61891,\"file-exclamation\":62234,\"file-export\":62830,\"file-fragment\":59031,\"file-gif\":58949,\"file-half-dashed\":59032,\"file-heart\":57718,\"file-image\":61893,\"file-import\":62831,\"file-invoice-dollar\":62833,\"file-invoice\":62832,\"file-jpg\":58950,\"file-lines\":61788,\"file-lock\":58278,\"file-magnifying-glass\":63589,\"file-medical\":62583,\"file-minus\":62232,\"file-mov\":58951,\"file-mp3\":58952,\"file-mp4\":58953,\"file-music\":63670,\"file-pdf\":61889,\"file-pen\":62236,\"file-plus-minus\":57719,\"file-plus\":62233,\"file-png\":58982,\"file-powerpoint\":61892,\"file-ppt\":58954,\"file-prescription\":62834,\"file-shield\":58608,\"file-signature\":62835,\"file-slash\":58279,\"file-spreadsheet\":63067,\"file-svg\":58955,\"file-user\":63068,\"file-vector\":58956,\"file-video\":61896,\"file-waveform\":62584,\"file-word\":61890,\"file-xls\":58957,\"file-xmark\":62231,\"file-xml\":58964,\"file-zip\":58862,\"file-zipper\":61894,\"file\":61787,\"files-medical\":63485,\"files\":57720,\"fill-drip\":62838,\"fill\":62837,\"film-canister\":63671,\"film-simple\":62368,\"film-slash\":57721,\"film\":61448,\"films\":57722,\"filter-circle-dollar\":63074,\"filter-circle-xmark\":57723,\"filter-list\":57724,\"filter-slash\":57725,\"filter\":61616,\"filters\":57726,\"fingerprint\":62839,\"fire-burner\":58609,\"fire-extinguisher\":61748,\"fire-flame-curved\":63460,\"fire-flame-simple\":62570,\"fire-flame\":63199,\"fire-hydrant\":57727,\"fire-smoke\":63307,\"fire\":61549,\"fireplace\":63386,\"fish-bones\":58116,\"fish-cooked\":63486,\"fish-fins\":58610,\"fish\":62840,\"fishing-rod\":58280,\"flag-checkered\":61726,\"flag-pennant\":62550,\"flag-swallowtail\":63308,\"flag-usa\":63309,\"flag\":61476,\"flashlight\":63672,\"flask-gear\":58865,\"flask-round-poison\":63200,\"flask-round-potion\":63201,\"flask-vial\":58611,\"flask\":61635,\"flatbread-stuffed\":58380,\"flatbread\":58379,\"floppy-disk-circle-arrow-right\":57728,\"floppy-disk-circle-xmark\":57729,\"floppy-disk-pen\":57730,\"floppy-disk\":61639,\"floppy-disks\":57731,\"florin-sign\":57732,\"flower-daffodil\":63488,\"flower-tulip\":63489,\"flower\":63487,\"flute\":63673,\"flux-capacitor\":63674,\"flying-disc\":58281,\"folder-arrow-down\":57427,\"folder-arrow-up\":57428,\"folder-bookmark\":57734,\"folder-check\":58958,\"folder-closed\":57733,\"folder-gear\":57735,\"folder-grid\":57736,\"folder-heart\":57737,\"folder-image\":57738,\"folder-magnifying-glass\":57739,\"folder-medical\":57740,\"folder-minus\":63069,\"folder-music\":57741,\"folder-open\":61564,\"folder-plus\":63070,\"folder-tree\":63490,\"folder-user\":57742,\"folder-xmark\":63071,\"folder\":61563,\"folders\":63072,\"fondue-pot\":58381,\"font-awesome\":62132,\"font-case\":63590,\"font\":61489,\"football-helmet\":62543,\"football\":62542,\"fork-knife\":62182,\"fork\":62179,\"forklift\":62586,\"fort\":58502,\"forward-fast\":61520,\"forward-step\":61521,\"forward\":61518,\"frame\":58517,\"franc-sign\":57743,\"french-fries\":63491,\"frog\":62766,\"function\":63073,\"futbol\":61923,\"g\":71,\"galaxy\":57352,\"gallery-thumbnails\":58282,\"game-board-simple\":63592,\"game-board\":63591,\"game-console-handheld-crank\":58809,\"game-console-handheld\":63675,\"gamepad-modern\":58786,\"gamepad\":61723,\"garage-car\":57354,\"garage-open\":57355,\"garage\":57353,\"garlic\":58382,\"gas-pump-slash\":62964,\"gas-pump\":62767,\"gauge-circle-bolt\":58518,\"gauge-circle-minus\":58519,\"gauge-circle-plus\":58520,\"gauge-high\":63013,\"gauge-low\":63015,\"gauge-max\":63014,\"gauge-min\":63016,\"gauge-simple-high\":63018,\"gauge-simple-low\":63020,\"gauge-simple-max\":63019,\"gauge-simple-min\":63021,\"gauge-simple\":63017,\"gauge\":63012,\"gavel\":61667,\"gear-code\":58856,\"gear-complex-code\":58859,\"gear-complex\":58857,\"gear\":61459,\"gears\":61573,\"gem\":62373,\"genderless\":61997,\"ghost\":63202,\"gif\":57744,\"gift-card\":63075,\"gift\":61547,\"gifts\":63388,\"gingerbread-man\":63389,\"glass-citrus\":63593,\"glass-empty\":57745,\"glass-half\":57746,\"glass-water-droplet\":58613,\"glass-water\":58612,\"glass\":63492,\"glasses-round\":62965,\"glasses\":62768,\"globe-pointer\":58894,\"globe-snow\":63395,\"globe-stand\":62966,\"globe-wifi\":59013,\"globe\":61612,\"goal-net\":58283,\"golf-ball-tee\":62544,\"golf-club\":62545,\"golf-flag-hole\":58284,\"gopuram\":63076,\"graduation-cap\":61853,\"gramophone\":63677,\"grapes\":58118,\"grate-droplet\":57748,\"grate\":57747,\"greater-than-equal\":62770,\"greater-than\":62,\"grid-2-plus\":57751,\"grid-2\":57750,\"grid-4\":57752,\"grid-5\":57753,\"grid-dividers\":58285,\"grid-horizontal\":58119,\"grid-round-2-plus\":58844,\"grid-round-2\":58843,\"grid-round-4\":58845,\"grid-round-5\":58846,\"grid-round\":58842,\"grid\":57749,\"grill-fire\":58788,\"grill-hot\":58789,\"grill\":58787,\"grip-dots-vertical\":58385,\"grip-dots\":58384,\"grip-lines-vertical\":63397,\"grip-lines\":63396,\"grip-vertical\":62862,\"grip\":62861,\"group-arrows-rotate\":58614,\"guarani-sign\":57754,\"guitar-electric\":63678,\"guitar\":63398,\"guitars\":63679,\"gun-slash\":57756,\"gun-squirt\":57757,\"gun\":57755,\"h\":72,\"h1\":62227,\"h2\":62228,\"h3\":62229,\"h4\":63594,\"h5\":58386,\"h6\":58387,\"hammer-brush\":58912,\"hammer-crash\":58388,\"hammer-war\":63204,\"hammer\":63203,\"hamsa\":63077,\"hand-back-fist\":62037,\"hand-back-point-down\":57758,\"hand-back-point-left\":57759,\"hand-back-point-ribbon\":57760,\"hand-back-point-right\":57761,\"hand-back-point-up\":57762,\"hand-dots\":62561,\"hand-fingers-crossed\":57763,\"hand-fist\":63198,\"hand-heart\":62652,\"hand-holding-box\":62587,\"hand-holding-circle-dollar\":58913,\"hand-holding-dollar\":62656,\"hand-holding-droplet\":62657,\"hand-holding-hand\":58615,\"hand-holding-heart\":62654,\"hand-holding-magic\":63205,\"hand-holding-medical\":57436,\"hand-holding-seedling\":62655,\"hand-holding-skull\":57764,\"hand-holding\":62653,\"hand-horns\":57769,\"hand-lizard\":62040,\"hand-love\":57765,\"hand-middle-finger\":63494,\"hand-peace\":62043,\"hand-point-down\":61607,\"hand-point-left\":61605,\"hand-point-ribbon\":57766,\"hand-point-right\":61604,\"hand-point-up\":61606,\"hand-pointer\":62042,\"hand-scissors\":62039,\"hand-sparkles\":57437,\"hand-spock\":62041,\"hand-wave\":57767,\"hand\":62038,\"handcuffs\":58616,\"hands-asl-interpreting\":62115,\"hands-bound\":58617,\"hands-bubbles\":57438,\"hands-clapping\":57768,\"hands-holding-child\":58618,\"hands-holding-circle\":58619,\"hands-holding-diamond\":62588,\"hands-holding-dollar\":62661,\"hands-holding-heart\":62659,\"hands-holding\":62658,\"hands-praying\":63108,\"hands\":62119,\"handshake-angle\":62660,\"handshake-simple-slash\":57439,\"handshake-simple\":62662,\"handshake-slash\":57440,\"handshake\":62133,\"hanukiah\":63206,\"hard-drive\":61600,\"hashtag-lock\":58389,\"hashtag\":35,\"hat-beach\":58886,\"hat-chef\":63595,\"hat-cowboy-side\":63681,\"hat-cowboy\":63680,\"hat-santa\":63399,\"hat-winter\":63400,\"hat-witch\":63207,\"hat-wizard\":63208,\"head-side-brain\":63496,\"head-side-cough-slash\":57442,\"head-side-cough\":57441,\"head-side-gear\":58897,\"head-side-goggles\":63210,\"head-side-headphones\":63682,\"head-side-heart\":57770,\"head-side-mask\":57443,\"head-side-medical\":63497,\"head-side-virus\":57444,\"head-side\":63209,\"heading\":61916,\"headphones-simple\":62863,\"headphones\":61477,\"headset\":62864,\"heart-circle-bolt\":58620,\"heart-circle-check\":58621,\"heart-circle-exclamation\":58622,\"heart-circle-minus\":58623,\"heart-circle-plus\":58624,\"heart-circle-xmark\":58625,\"heart-crack\":63401,\"heart-half-stroke\":57772,\"heart-half\":57771,\"heart-pulse\":61982,\"heart\":61444,\"heat\":57356,\"helicopter-symbol\":58626,\"helicopter\":62771,\"helmet-battle\":63211,\"helmet-safety\":63495,\"helmet-un\":58627,\"hexagon-check\":58390,\"hexagon-divide\":57773,\"hexagon-exclamation\":58391,\"hexagon-image\":58628,\"hexagon-minus\":62215,\"hexagon-nodes-bolt\":59034,\"hexagon-nodes\":59033,\"hexagon-plus\":62208,\"hexagon-vertical-nft-slanted\":58630,\"hexagon-vertical-nft\":58629,\"hexagon-xmark\":62190,\"hexagon\":62226,\"high-definition\":57774,\"highlighter-line\":57775,\"highlighter\":62865,\"hill-avalanche\":58631,\"hill-rockslide\":58632,\"hippo\":63213,\"hockey-mask\":63214,\"hockey-puck\":62547,\"hockey-stick-puck\":58286,\"hockey-sticks\":62548,\"holly-berry\":63402,\"honey-pot\":58392,\"hood-cloak\":63215,\"horizontal-rule\":63596,\"horse-head\":63403,\"horse-saddle\":63683,\"horse\":63216,\"hose-reel\":58394,\"hose\":58393,\"hospital-user\":63501,\"hospital\":61688,\"hospitals\":63502,\"hot-tub-person\":62867,\"hotdog\":63503,\"hotel\":62868,\"hourglass-clock\":58395,\"hourglass-end\":62035,\"hourglass-half\":62034,\"hourglass-start\":62033,\"hourglass\":62036,\"house-blank\":58503,\"house-building\":57777,\"house-chimney-blank\":58288,\"house-chimney-crack\":63217,\"house-chimney-heart\":57778,\"house-chimney-medical\":63474,\"house-chimney-user\":57445,\"house-chimney-window\":57357,\"house-chimney\":58287,\"house-circle-check\":58633,\"house-circle-exclamation\":58634,\"house-circle-xmark\":58635,\"house-crack\":58289,\"house-day\":57358,\"house-fire\":58636,\"house-flag\":58637,\"house-flood-water-circle-arrow-right\":58639,\"house-flood-water\":58638,\"house-heart\":62665,\"house-laptop\":57446,\"house-lock\":58640,\"house-medical-circle-check\":58641,\"house-medical-circle-exclamation\":58642,\"house-medical-circle-xmark\":58643,\"house-medical-flag\":58644,\"house-medical\":58290,\"house-night\":57360,\"house-person-leave\":57359,\"house-person-return\":57361,\"house-signal\":57362,\"house-tree\":57779,\"house-tsunami\":58645,\"house-turret\":57780,\"house-user\":57776,\"house-water\":63311,\"house-window\":58291,\"house\":61461,\"hryvnia-sign\":63218,\"hundred-points\":58396,\"hurricane\":63313,\"hydra\":59014,\"hyphen\":45,\"i-cursor\":62022,\"i\":73,\"ice-cream\":63504,\"ice-skate\":63404,\"icicles\":63405,\"icons\":63597,\"id-badge\":62145,\"id-card-clip\":62591,\"id-card\":62146,\"igloo\":63406,\"image-landscape\":57781,\"image-polaroid-user\":57782,\"image-polaroid\":63684,\"image-portrait\":62432,\"image-slash\":57783,\"image-user\":57784,\"image\":61502,\"images-user\":57785,\"images\":62210,\"inbox-full\":57786,\"inbox-in\":62224,\"inbox-out\":62225,\"inbox\":61468,\"inboxes\":57787,\"indent\":61500,\"indian-rupee-sign\":57788,\"industry-windows\":62387,\"industry\":62069,\"infinity\":62772,\"info\":61737,\"inhaler\":62969,\"input-numeric\":57789,\"input-pipe\":57790,\"input-text\":57791,\"integral\":63079,\"interrobang\":58810,\"intersection\":63080,\"island-tropical\":63505,\"italic\":61491,\"j\":74,\"jack-o-lantern\":62222,\"jar-wheat\":58647,\"jar\":58646,\"jedi\":63081,\"jet-fighter-up\":58648,\"jet-fighter\":61691,\"joint\":62869,\"joystick\":63685,\"jug-bottle\":58875,\"jug-detergent\":58649,\"jug\":63686,\"k\":75,\"kaaba\":63083,\"kazoo\":63687,\"kerning\":63599,\"key-skeleton-left-right\":58292,\"key-skeleton\":63219,\"key\":61572,\"keyboard-brightness-low\":57793,\"keyboard-brightness\":57792,\"keyboard-down\":57794,\"keyboard-left\":57795,\"keyboard\":61724,\"keynote\":63084,\"khanda\":63085,\"kidneys\":62971,\"kip-sign\":57796,\"kit-medical\":62585,\"kitchen-set\":58650,\"kite\":63220,\"kiwi-bird\":62773,\"kiwi-fruit\":58124,\"knife-kitchen\":63221,\"knife\":62180,\"l\":76,\"lacrosse-stick-ball\":58294,\"lacrosse-stick\":58293,\"lambda\":63086,\"lamp-desk\":57364,\"lamp-floor\":57365,\"lamp-street\":57797,\"lamp\":62666,\"land-mine-on\":58651,\"landmark-dome\":63314,\"landmark-flag\":58652,\"landmark-magnifying-glass\":58914,\"landmark\":63087,\"language\":61867,\"laptop-arrow-down\":57798,\"laptop-binary\":58855,\"laptop-code\":62972,\"laptop-file\":58653,\"laptop-medical\":63506,\"laptop-mobile\":63610,\"laptop-slash\":57799,\"laptop\":61705,\"lari-sign\":57800,\"lasso-sparkles\":57801,\"lasso\":63688,\"layer-group\":62973,\"layer-minus\":62974,\"layer-plus\":62975,\"leaf-heart\":62667,\"leaf-maple\":63222,\"leaf-oak\":63223,\"leaf\":61548,\"leafy-green\":58397,\"left-from-bracket\":58988,\"left-from-line\":62280,\"left-long-to-line\":58398,\"left-long\":62218,\"left-right\":62263,\"left-to-bracket\":58989,\"left-to-line\":62283,\"left\":62293,\"lemon\":61588,\"less-than-equal\":62775,\"less-than\":60,\"life-ring\":61901,\"light-ceiling\":57366,\"light-emergency-on\":58400,\"light-emergency\":58399,\"light-switch-off\":57368,\"light-switch-on\":57369,\"light-switch\":57367,\"lightbulb-cfl-on\":58791,\"lightbulb-cfl\":58790,\"lightbulb-dollar\":63088,\"lightbulb-exclamation-on\":57802,\"lightbulb-exclamation\":63089,\"lightbulb-gear\":58877,\"lightbulb-message\":59015,\"lightbulb-on\":63090,\"lightbulb-slash\":63091,\"lightbulb\":61675,\"lighthouse\":58898,\"lights-holiday\":63410,\"line-columns\":63600,\"line-height\":63601,\"lines-leaning\":58654,\"link-horizontal-slash\":57804,\"link-horizontal\":57803,\"link-simple-slash\":57806,\"link-simple\":57805,\"link-slash\":61735,\"link\":61633,\"lips\":62976,\"lira-sign\":61845,\"list-check\":61614,\"list-dropdown\":57807,\"list-music\":63689,\"list-ol\":61643,\"list-radio\":57808,\"list-timeline\":57809,\"list-tree\":57810,\"list-ul\":61642,\"list\":61498,\"litecoin-sign\":57811,\"loader\":57812,\"lobster\":58401,\"location-arrow-up\":58938,\"location-arrow\":61732,\"location-check\":62982,\"location-crosshairs-slash\":62979,\"location-crosshairs\":62977,\"location-dot-slash\":62981,\"location-dot\":62405,\"location-exclamation\":62984,\"location-minus\":62985,\"location-pen\":62983,\"location-pin-lock\":58655,\"location-pin-slash\":62988,\"location-pin\":61505,\"location-plus\":62986,\"location-question\":62987,\"location-smile\":62989,\"location-xmark\":62990,\"lock-a\":58402,\"lock-hashtag\":58403,\"lock-keyhole-open\":62402,\"lock-keyhole\":62221,\"lock-open\":62401,\"lock\":61475,\"locust\":58656,\"lollipop\":58404,\"loveseat\":62668,\"luchador-mask\":62549,\"lungs-virus\":57447,\"lungs\":62980,\"m\":77,\"mace\":63224,\"magnet\":61558,\"magnifying-glass-arrow-right\":58657,\"magnifying-glass-arrows-rotate\":58974,\"magnifying-glass-chart\":58658,\"magnifying-glass-dollar\":63112,\"magnifying-glass-location\":63113,\"magnifying-glass-minus\":61456,\"magnifying-glass-music\":58975,\"magnifying-glass-play\":58976,\"magnifying-glass-plus\":61454,\"magnifying-glass-waveform\":58977,\"magnifying-glass\":61442,\"mailbox-flag-up\":58811,\"mailbox\":63507,\"manat-sign\":57813,\"mandolin\":63225,\"mango\":58127,\"manhole\":57814,\"map-location-dot\":62880,\"map-location\":62879,\"map-pin\":62070,\"map\":62073,\"marker\":62881,\"mars-and-venus-burst\":58659,\"mars-and-venus\":61988,\"mars-double\":61991,\"mars-stroke-right\":61995,\"mars-stroke-up\":61994,\"mars-stroke\":61993,\"mars\":61986,\"martini-glass-citrus\":62817,\"martini-glass-empty\":61440,\"martini-glass\":62843,\"mask-face\":57815,\"mask-snorkel\":58295,\"mask-ventilator\":58660,\"mask\":63226,\"masks-theater\":63024,\"mattress-pillow\":58661,\"maximize\":62238,\"meat\":63508,\"medal\":62882,\"megaphone\":63093,\"melon-slice\":58129,\"melon\":58128,\"memo-circle-check\":57817,\"memo-circle-info\":58522,\"memo-pad\":57818,\"memo\":57816,\"memory\":62776,\"menorah\":63094,\"mercury\":61987,\"merge\":58662,\"message-arrow-down\":57819,\"message-arrow-up-right\":57821,\"message-arrow-up\":57820,\"message-bot\":58296,\"message-captions\":57822,\"message-check\":62626,\"message-code\":57823,\"message-dollar\":63056,\"message-dots\":62627,\"message-exclamation\":62629,\"message-heart\":58825,\"message-image\":57824,\"message-lines\":62630,\"message-medical\":63476,\"message-middle-top\":57826,\"message-middle\":57825,\"message-minus\":62631,\"message-music\":63663,\"message-pen\":62628,\"message-plus\":62632,\"message-question\":57827,\"message-quote\":57828,\"message-slash\":62633,\"message-smile\":62634,\"message-sms\":57829,\"message-text\":57830,\"message-xmark\":62635,\"message\":62074,\"messages-dollar\":63058,\"messages-question\":57831,\"messages\":62646,\"meteor\":63315,\"meter-bolt\":57833,\"meter-droplet\":57834,\"meter-fire\":57835,\"meter\":57832,\"microchip-ai\":57836,\"microchip\":62171,\"microphone-lines-slash\":62777,\"microphone-lines\":62409,\"microphone-slash\":61745,\"microphone-stand\":63691,\"microphone\":61744,\"microscope\":62992,\"microwave\":57371,\"mill-sign\":57837,\"minimize\":63372,\"minus\":61544,\"mistletoe\":63412,\"mitten\":63413,\"mobile-button\":61707,\"mobile-notch\":57838,\"mobile-retro\":58663,\"mobile-screen-button\":62413,\"mobile-screen\":62415,\"mobile-signal-out\":57840,\"mobile-signal\":57839,\"mobile\":62414,\"money-bill-1-wave\":62779,\"money-bill-1\":62417,\"money-bill-simple-wave\":57842,\"money-bill-simple\":57841,\"money-bill-transfer\":58664,\"money-bill-trend-up\":58665,\"money-bill-wave\":62778,\"money-bill-wheat\":58666,\"money-bill\":61654,\"money-bills-simple\":57844,\"money-bills\":57843,\"money-check-dollar-pen\":63603,\"money-check-dollar\":62781,\"money-check-pen\":63602,\"money-check\":62780,\"money-from-bracket\":58130,\"money-simple-from-bracket\":58131,\"monitor-waveform\":62993,\"monkey\":63227,\"monument\":62886,\"moon-cloud\":63316,\"moon-over-sun\":63306,\"moon-stars\":63317,\"moon\":61830,\"moped\":58297,\"mortar-pestle\":62887,\"mosque\":63096,\"mosquito-net\":58668,\"mosquito\":58667,\"motorcycle\":61980,\"mound\":58669,\"mountain-city\":58670,\"mountain-sun\":58671,\"mountain\":63228,\"mountains\":63229,\"mouse-field\":58792,\"mp3-player\":63694,\"mug-hot\":63414,\"mug-marshmallows\":63415,\"mug-saucer\":61684,\"mug-tea-saucer\":57845,\"mug-tea\":63605,\"mug\":63604,\"mushroom\":58405,\"music-magnifying-glass\":58978,\"music-note-slash\":63696,\"music-note\":63695,\"music-slash\":63697,\"music\":61441,\"mustache\":58812,\"n\":78,\"naira-sign\":57846,\"narwhal\":63230,\"nesting-dolls\":58298,\"network-wired\":63231,\"neuter\":61996,\"newspaper\":61930,\"nfc-lock\":57848,\"nfc-magnifying-glass\":57849,\"nfc-pen\":57850,\"nfc-signal\":57851,\"nfc-slash\":57852,\"nfc-symbol\":58673,\"nfc-trash\":57853,\"nfc\":57847,\"nose\":58813,\"not-equal\":62782,\"notdef\":57854,\"note-medical\":57856,\"note-sticky\":62025,\"note\":57855,\"notebook\":57857,\"notes-medical\":62593,\"notes\":57858,\"o\":79,\"object-exclude\":58524,\"object-group\":62023,\"object-intersect\":58525,\"object-subtract\":58526,\"object-ungroup\":62024,\"object-union\":58527,\"objects-align-bottom\":58299,\"objects-align-center-horizontal\":58300,\"objects-align-center-vertical\":58301,\"objects-align-left\":58302,\"objects-align-right\":58303,\"objects-align-top\":58304,\"objects-column\":58305,\"octagon-check\":58406,\"octagon-divide\":57859,\"octagon-exclamation\":57860,\"octagon-minus\":62216,\"octagon-plus\":62209,\"octagon-xmark\":62192,\"octagon\":62214,\"octopus\":59016,\"oil-can-drip\":57861,\"oil-can\":62995,\"oil-temperature\":62996,\"oil-well\":58674,\"olive-branch\":58135,\"olive\":58134,\"om\":63097,\"omega\":63098,\"onion\":58407,\"option\":58136,\"ornament\":63416,\"otter\":63232,\"outdent\":61499,\"outlet\":57372,\"oven\":57373,\"overline\":63606,\"p\":80,\"page-caret-down\":58409,\"page-caret-up\":58410,\"page\":58408,\"pager\":63509,\"paint-roller\":62890,\"paintbrush-fine\":62889,\"paintbrush-pencil\":57862,\"paintbrush\":61948,\"palette\":62783,\"pallet-box\":57864,\"pallet-boxes\":62595,\"pallet\":62594,\"pan-food\":58411,\"pan-frying\":58412,\"pancakes\":58413,\"panel-ews\":58414,\"panel-fire\":58415,\"panorama\":57865,\"paper-plane-top\":57866,\"paper-plane\":61912,\"paperclip-vertical\":58306,\"paperclip\":61638,\"parachute-box\":62669,\"paragraph-left\":63608,\"paragraph\":61917,\"party-bell\":58138,\"party-horn\":58139,\"passport\":62891,\"paste\":61674,\"pause\":61516,\"paw-claws\":63234,\"paw-simple\":63233,\"paw\":61872,\"peace\":63100,\"peach\":57867,\"peanut\":58416,\"peanuts\":58417,\"peapod\":58140,\"pear\":57868,\"pedestal\":57869,\"pegasus\":63235,\"pen-circle\":57870,\"pen-clip-slash\":57871,\"pen-clip\":62213,\"pen-fancy-slash\":57872,\"pen-fancy\":62892,\"pen-field\":57873,\"pen-line\":57874,\"pen-nib-slash\":58529,\"pen-nib\":62893,\"pen-paintbrush\":63000,\"pen-ruler\":62894,\"pen-slash\":57875,\"pen-swirl\":57876,\"pen-to-square\":61508,\"pen\":62212,\"pencil-mechanical\":58826,\"pencil-slash\":57877,\"pencil\":62211,\"people-arrows\":57448,\"people-carry-box\":62670,\"people-dress-simple\":57880,\"people-dress\":57879,\"people-group\":58675,\"people-line\":58676,\"people-pants-simple\":57882,\"people-pants\":57881,\"people-pulling\":58677,\"people-robbery\":58678,\"people-roof\":58679,\"people-simple\":57883,\"people\":57878,\"pepper-hot\":63510,\"pepper\":58418,\"percent\":37,\"period\":46,\"person-arrow-down-to-line\":58680,\"person-arrow-up-from-line\":58681,\"person-biking-mountain\":63563,\"person-biking\":63562,\"person-booth\":63318,\"person-breastfeeding\":58682,\"person-burst\":58683,\"person-cane\":58684,\"person-carry-box\":62671,\"person-chalkboard\":58685,\"person-circle-check\":58686,\"person-circle-exclamation\":58687,\"person-circle-minus\":58688,\"person-circle-plus\":58689,\"person-circle-question\":58690,\"person-circle-xmark\":58691,\"person-digging\":63582,\"person-dolly-empty\":62673,\"person-dolly\":62672,\"person-dots-from-line\":62576,\"person-dress-burst\":58692,\"person-dress-fairy\":58887,\"person-dress-simple\":57884,\"person-dress\":61826,\"person-drowning\":58693,\"person-fairy\":58888,\"person-falling-burst\":58695,\"person-falling\":58694,\"person-from-portal\":57379,\"person-half-dress\":58696,\"person-harassing\":58697,\"person-hiking\":63212,\"person-military-pointing\":58698,\"person-military-rifle\":58699,\"person-military-to-person\":58700,\"person-pinball\":57885,\"person-praying\":63107,\"person-pregnant\":58142,\"person-rays\":58701,\"person-rifle\":58702,\"person-running-fast\":58879,\"person-running\":63244,\"person-seat-reclined\":57887,\"person-seat\":57886,\"person-shelter\":58703,\"person-sign\":63319,\"person-simple\":57888,\"person-skating\":63429,\"person-ski-jumping\":63431,\"person-ski-lift\":63432,\"person-skiing-nordic\":63434,\"person-skiing\":63433,\"person-sledding\":63435,\"person-snowboarding\":63438,\"person-snowmobiling\":63441,\"person-swimming\":62916,\"person-through-window\":58793,\"person-to-door\":58419,\"person-to-portal\":57378,\"person-walking-arrow-loop-left\":58705,\"person-walking-arrow-right\":58706,\"person-walking-dashed-line-arrow-right\":58707,\"person-walking-luggage\":58708,\"person-walking-with-cane\":62109,\"person-walking\":62804,\"person\":61827,\"peseta-sign\":57889,\"peso-sign\":57890,\"phone-arrow-down-left\":57891,\"phone-arrow-right\":58814,\"phone-arrow-up-right\":57892,\"phone-flip\":63609,\"phone-hangup\":57893,\"phone-intercom\":58420,\"phone-missed\":57894,\"phone-office\":63101,\"phone-plus\":62674,\"phone-rotary\":63699,\"phone-slash\":62429,\"phone-volume\":62112,\"phone-xmark\":57895,\"phone\":61589,\"photo-film-music\":57896,\"photo-film\":63612,\"pi\":63102,\"piano-keyboard\":63701,\"piano\":63700,\"pickaxe\":58815,\"pickleball\":58421,\"pie\":63237,\"pig\":63238,\"piggy-bank\":62675,\"pills\":62596,\"pinata\":58307,\"pinball\":57897,\"pineapple\":58143,\"pipe-circle-check\":58422,\"pipe-collar\":58423,\"pipe-section\":58424,\"pipe-smoking\":58308,\"pipe-valve\":58425,\"pipe\":124,\"pizza-slice\":63512,\"pizza\":63511,\"place-of-worship\":63103,\"plane-arrival\":62895,\"plane-circle-check\":58709,\"plane-circle-exclamation\":58710,\"plane-circle-xmark\":58711,\"plane-departure\":62896,\"plane-engines\":62430,\"plane-lock\":58712,\"plane-prop\":57899,\"plane-slash\":57449,\"plane-tail\":57900,\"plane-up-slash\":57902,\"plane-up\":57901,\"plane\":61554,\"planet-moon\":57375,\"planet-ringed\":57376,\"plant-wilt\":58794,\"plate-utensils\":58427,\"plate-wheat\":58714,\"play-pause\":57903,\"play\":61515,\"plug-circle-bolt\":58715,\"plug-circle-check\":58716,\"plug-circle-exclamation\":58717,\"plug-circle-minus\":58718,\"plug-circle-plus\":58719,\"plug-circle-xmark\":58720,\"plug\":61926,\"plus-large\":58782,\"plus-minus\":58428,\"plus\":43,\"podcast\":62158,\"podium-star\":63320,\"podium\":63104,\"police-box\":57377,\"poll-people\":63321,\"pompebled\":58429,\"poo-storm\":63322,\"poo\":62206,\"pool-8-ball\":58309,\"poop\":63001,\"popcorn\":63513,\"popsicle\":58430,\"pot-food\":58431,\"potato\":58432,\"power-off\":61457,\"prescription-bottle-medical\":62598,\"prescription-bottle-pill\":58816,\"prescription-bottle\":62597,\"prescription\":62897,\"presentation-screen\":63109,\"pretzel\":58433,\"print-magnifying-glass\":63514,\"print-slash\":63110,\"print\":61487,\"projector\":63702,\"pump-medical\":57450,\"pump-soap\":57451,\"pump\":58434,\"pumpkin\":63239,\"puzzle-piece-simple\":57905,\"puzzle-piece\":61742,\"puzzle\":58435,\"q\":81,\"qrcode\":61481,\"question\":63,\"quote-left\":61709,\"quote-right\":61710,\"quotes\":57908,\"r\":82,\"rabbit-running\":63241,\"rabbit\":63240,\"raccoon\":58899,\"racquet\":62554,\"radar\":57380,\"radiation\":63417,\"radio-tuner\":63704,\"radio\":63703,\"rainbow\":63323,\"raindrops\":63324,\"ram\":63242,\"ramp-loading\":62676,\"ranking-star\":58721,\"raygun\":57381,\"receipt\":62787,\"record-vinyl\":63705,\"rectangle-ad\":63041,\"rectangle-barcode\":62563,\"rectangle-code\":58146,\"rectangle-history-circle-plus\":58531,\"rectangle-history-circle-user\":58532,\"rectangle-history\":58530,\"rectangle-list\":61474,\"rectangle-pro\":57909,\"rectangle-terminal\":57910,\"rectangle-vertical-history\":57911,\"rectangle-vertical\":62203,\"rectangle-wide\":62204,\"rectangle-xmark\":62480,\"rectangle\":62202,\"rectangles-mixed\":58147,\"recycle\":61880,\"reel\":57912,\"reflect-both\":58991,\"reflect-horizontal\":58980,\"reflect-vertical\":58981,\"refrigerator\":57382,\"registered\":62045,\"repeat-1\":62309,\"repeat\":62307,\"reply-all\":61730,\"reply-clock\":57913,\"reply\":62437,\"republican\":63326,\"restroom-simple\":57914,\"restroom\":63421,\"retweet\":61561,\"rhombus\":57915,\"ribbon\":62678,\"right-from-bracket\":62197,\"right-from-line\":62279,\"right-left-large\":58849,\"right-left\":62306,\"right-long-to-line\":58436,\"right-long\":62219,\"right-to-bracket\":62198,\"right-to-line\":62284,\"right\":62294,\"ring-diamond\":58795,\"ring\":63243,\"rings-wedding\":63515,\"road-barrier\":58722,\"road-bridge\":58723,\"road-circle-check\":58724,\"road-circle-exclamation\":58725,\"road-circle-xmark\":58726,\"road-lock\":58727,\"road-spikes\":58728,\"road\":61464,\"robot-astromech\":58066,\"robot\":62788,\"rocket-launch\":57383,\"rocket\":61749,\"roller-coaster\":58148,\"rotate-exclamation\":57916,\"rotate-left\":62186,\"rotate-reverse\":58929,\"rotate-right\":62201,\"rotate\":62193,\"route-highway\":63002,\"route-interstate\":63003,\"route\":62679,\"router\":63706,\"rss\":61598,\"ruble-sign\":61784,\"rug\":58729,\"rugby-ball\":58310,\"ruler-combined\":62790,\"ruler-horizontal\":62791,\"ruler-triangle\":63004,\"ruler-vertical\":62792,\"ruler\":62789,\"rupee-sign\":61782,\"rupiah-sign\":57917,\"rv\":63422,\"s\":83,\"sack-dollar\":63517,\"sack-xmark\":58730,\"sack\":63516,\"sailboat\":58437,\"salad\":63518,\"salt-shaker\":58438,\"sandwich\":63519,\"satellite-dish\":63424,\"satellite\":63423,\"sausage\":63520,\"saxophone-fire\":63707,\"saxophone\":63708,\"scale-balanced\":62030,\"scale-unbalanced-flip\":62742,\"scale-unbalanced\":62741,\"scalpel-line-dashed\":63006,\"scalpel\":63005,\"scanner-gun\":62600,\"scanner-image\":63731,\"scanner-keyboard\":62601,\"scanner-touchscreen\":62602,\"scarecrow\":63245,\"scarf\":63425,\"school-circle-check\":58731,\"school-circle-exclamation\":58732,\"school-circle-xmark\":58733,\"school-flag\":58734,\"school-lock\":58735,\"school\":62793,\"scissors\":61636,\"screen-users\":63037,\"screencast\":57918,\"screwdriver-wrench\":63449,\"screwdriver\":62794,\"scribble\":57919,\"scroll-old\":63247,\"scroll-torah\":63136,\"scroll\":63246,\"scrubber\":62200,\"scythe\":63248,\"sd-card\":63426,\"sd-cards\":57920,\"seal-exclamation\":57922,\"seal-question\":57923,\"seal\":57921,\"seat-airline\":57924,\"section\":58439,\"seedling\":62680,\"semicolon\":59,\"send-back\":63614,\"send-backward\":63615,\"sensor-cloud\":57388,\"sensor-fire\":57386,\"sensor-on\":57387,\"sensor-triangle-exclamation\":57385,\"sensor\":57384,\"server\":62003,\"shapes\":63007,\"share-all\":62311,\"share-from-square\":61773,\"share-nodes\":61920,\"share\":61540,\"sheep\":63249,\"sheet-plastic\":58737,\"shekel-sign\":61963,\"shelves-empty\":57926,\"shelves\":62592,\"shield-cat\":58738,\"shield-check\":62199,\"shield-cross\":63250,\"shield-dog\":58739,\"shield-exclamation\":57927,\"shield-halved\":62445,\"shield-heart\":58740,\"shield-keyhole\":57928,\"shield-minus\":57929,\"shield-plus\":57930,\"shield-quartered\":58741,\"shield-slash\":57931,\"shield-virus\":57452,\"shield-xmark\":57932,\"shield\":61746,\"ship\":61978,\"shirt-long-sleeve\":58311,\"shirt-running\":58312,\"shirt-tank-top\":58313,\"shirt\":62803,\"shish-kebab\":63521,\"shoe-prints\":62795,\"shop-lock\":58533,\"shop-slash\":57456,\"shop\":62799,\"shovel-snow\":63427,\"shovel\":63251,\"shower-down\":57933,\"shower\":62156,\"shredder\":63114,\"shrimp\":58440,\"shuffle\":61556,\"shutters\":58441,\"shuttle-space\":61847,\"shuttlecock\":62555,\"sickle\":63522,\"sidebar-flip\":57935,\"sidebar\":57934,\"sigma\":63115,\"sign-hanging\":62681,\"sign-post\":58916,\"sign-posts-wrench\":58918,\"sign-posts\":58917,\"signal-bars-fair\":63122,\"signal-bars-good\":63123,\"signal-bars-slash\":63124,\"signal-bars-weak\":63121,\"signal-bars\":63120,\"signal-fair\":63117,\"signal-good\":63118,\"signal-slash\":63125,\"signal-stream-slash\":57936,\"signal-stream\":63709,\"signal-strong\":63119,\"signal-weak\":63116,\"signal\":61458,\"signature-lock\":58314,\"signature-slash\":58315,\"signature\":62903,\"signs-post\":62071,\"sim-card\":63428,\"sim-cards\":57937,\"sink\":57453,\"siren-on\":57390,\"siren\":57389,\"sitemap\":61672,\"skeleton-ribs\":58827,\"skeleton\":63008,\"ski-boot-ski\":58317,\"ski-boot\":58316,\"skull-cow\":63710,\"skull-crossbones\":63252,\"skull\":62796,\"slash-back\":92,\"slash-forward\":47,\"slash\":63253,\"sleigh\":63436,\"slider\":57938,\"sliders-simple\":57939,\"sliders-up\":62449,\"sliders\":61918,\"slot-machine\":58318,\"smog\":63327,\"smoke\":63328,\"smoking\":62605,\"snake\":63254,\"snooze\":63616,\"snow-blowing\":63329,\"snowflake-droplets\":58817,\"snowflake\":62172,\"snowflakes\":63439,\"snowman-head\":63387,\"snowman\":63440,\"snowplow\":63442,\"soap\":57454,\"socks\":63126,\"soft-serve\":58368,\"solar-panel\":62906,\"solar-system\":57391,\"sort-down\":61661,\"sort-up\":61662,\"sort\":61660,\"spa\":62907,\"space-station-moon-construction\":57396,\"space-station-moon\":57395,\"spade\":62196,\"spaghetti-monster-flying\":63099,\"sparkle\":58838,\"sparkles\":63632,\"speaker\":63711,\"speakers\":63712,\"spell-check\":63633,\"spider-black-widow\":63256,\"spider-web\":63257,\"spider\":63255,\"spinner-scale\":58922,\"spinner-third\":62452,\"spinner\":61712,\"split\":57940,\"splotch\":62908,\"spoon\":62181,\"sportsball\":58443,\"spray-can-sparkles\":62928,\"spray-can\":62909,\"sprinkler-ceiling\":58444,\"sprinkler\":57397,\"square-0\":57941,\"square-1\":57942,\"square-2\":57943,\"square-3\":57944,\"square-4\":57945,\"square-5\":57946,\"square-6\":57947,\"square-7\":57948,\"square-8\":57949,\"square-9\":57950,\"square-a-lock\":58445,\"square-a\":57951,\"square-ampersand\":57952,\"square-arrow-down-left\":57953,\"square-arrow-down-right\":57954,\"square-arrow-down\":62265,\"square-arrow-left\":62266,\"square-arrow-right\":62267,\"square-arrow-up-left\":57955,\"square-arrow-up-right\":61772,\"square-arrow-up\":62268,\"square-b\":57956,\"square-binary\":59035,\"square-bolt\":57957,\"square-c\":57958,\"square-caret-down\":61776,\"square-caret-left\":61841,\"square-caret-right\":61778,\"square-caret-up\":61777,\"square-check\":61770,\"square-chevron-down\":62249,\"square-chevron-left\":62250,\"square-chevron-right\":62251,\"square-chevron-up\":62252,\"square-code\":57959,\"square-d\":57960,\"square-dashed-circle-plus\":58818,\"square-dashed\":57961,\"square-divide\":57962,\"square-dollar\":62185,\"square-down-left\":57963,\"square-down-right\":57964,\"square-down\":62288,\"square-e\":57965,\"square-ellipsis-vertical\":57967,\"square-ellipsis\":57966,\"square-envelope\":61849,\"square-exclamation\":62241,\"square-f\":57968,\"square-fragile\":62619,\"square-full\":62556,\"square-g\":57969,\"square-h\":61693,\"square-heart\":62664,\"square-i\":57970,\"square-info\":62223,\"square-j\":57971,\"square-k\":57972,\"square-kanban\":58504,\"square-l\":57973,\"square-left\":62289,\"square-list\":58505,\"square-m\":57974,\"square-minus\":61766,\"square-n\":57975,\"square-nfi\":58742,\"square-o\":57976,\"square-p\":57977,\"square-parking-slash\":62999,\"square-parking\":62784,\"square-pen\":61771,\"square-person-confined\":58743,\"square-phone-flip\":63611,\"square-phone-hangup\":57978,\"square-phone\":61592,\"square-plus\":61694,\"square-poll-horizontal\":63106,\"square-poll-vertical\":63105,\"square-q\":57979,\"square-quarters\":58446,\"square-question\":62205,\"square-quote\":58153,\"square-r\":57980,\"square-right\":62290,\"square-ring\":58447,\"square-root-variable\":63128,\"square-root\":63127,\"square-rss\":61763,\"square-s\":57981,\"square-share-nodes\":61921,\"square-sliders-vertical\":62450,\"square-sliders\":62448,\"square-small\":57982,\"square-star\":57983,\"square-t\":57984,\"square-terminal\":58154,\"square-this-way-up\":62623,\"square-u\":57985,\"square-up-left\":57986,\"square-up-right\":62304,\"square-up\":62291,\"square-user\":57987,\"square-v\":57988,\"square-virus\":58744,\"square-w\":57989,\"square-x\":57990,\"square-xmark\":62163,\"square-y\":57991,\"square-z\":57992,\"square\":61640,\"squid\":58448,\"squirrel\":63258,\"staff-snake\":58745,\"staff\":63259,\"stairs\":57993,\"stamp\":62911,\"standard-definition\":57994,\"stapler\":58799,\"star-and-crescent\":63129,\"star-christmas\":63444,\"star-exclamation\":62195,\"star-half-stroke\":62912,\"star-half\":61577,\"star-of-david\":63130,\"star-of-life\":63009,\"star-sharp-half-stroke\":57997,\"star-sharp-half\":57996,\"star-sharp\":57995,\"star-shooting\":57398,\"star\":61445,\"starfighter-twin-ion-engine-advanced\":57998,\"starfighter-twin-ion-engine\":57400,\"starfighter\":57399,\"stars\":63330,\"starship-freighter\":57402,\"starship\":57401,\"steak\":63524,\"steering-wheel\":63010,\"sterling-sign\":61780,\"stethoscope\":61681,\"stocking\":63445,\"stomach\":63011,\"stop\":61517,\"stopwatch-20\":57455,\"stopwatch\":62194,\"store-lock\":58534,\"store-slash\":57457,\"store\":62798,\"strawberry\":58155,\"street-view\":61981,\"stretcher\":63525,\"strikethrough\":61644,\"stroopwafel\":62801,\"subscript\":61740,\"subtitles-slash\":58896,\"subtitles\":58895,\"suitcase-medical\":61690,\"suitcase-rolling\":62913,\"suitcase\":61682,\"sun-bright\":57999,\"sun-cloud\":63331,\"sun-dust\":63332,\"sun-haze\":63333,\"sun-plant-wilt\":58746,\"sun\":61829,\"sunglasses\":63634,\"sunrise\":63334,\"sunset\":63335,\"superscript\":61739,\"sushi-roll\":58507,\"sushi\":58506,\"swap-arrows\":58890,\"swap\":58889,\"swatchbook\":62915,\"sword-laser-alt\":57404,\"sword-laser\":57403,\"sword\":63260,\"swords-laser\":57405,\"swords\":63261,\"symbols\":63598,\"synagogue\":63131,\"syringe\":62606,\"t-rex\":58921,\"t\":84,\"table-cells-column-lock\":59000,\"table-cells-column-unlock\":59024,\"table-cells-large\":61449,\"table-cells-lock\":59001,\"table-cells-row-lock\":59002,\"table-cells-row-unlock\":59025,\"table-cells-unlock\":59026,\"table-cells\":61450,\"table-columns\":61659,\"table-layout\":58000,\"table-list\":61451,\"table-picnic\":58157,\"table-pivot\":58001,\"table-rows\":58002,\"table-tennis-paddle-ball\":62557,\"table-tree\":58003,\"table\":61646,\"tablet-button\":61706,\"tablet-rugged\":62607,\"tablet-screen-button\":62458,\"tablet-screen\":62460,\"tablet\":62459,\"tablets\":62608,\"tachograph-digital\":62822,\"taco\":63526,\"tag\":61483,\"tags\":61484,\"tally-1\":58004,\"tally-2\":58005,\"tally-3\":58006,\"tally-4\":58007,\"tally\":63132,\"tamale\":58449,\"tank-water\":58450,\"tape\":62683,\"tarp-droplet\":58748,\"tarp\":58747,\"taxi-bus\":58008,\"taxi\":61882,\"teddy-bear\":58319,\"teeth-open\":63023,\"teeth\":63022,\"telescope\":57406,\"temperature-arrow-down\":57407,\"temperature-arrow-up\":57408,\"temperature-empty\":62155,\"temperature-full\":62151,\"temperature-half\":62153,\"temperature-high\":63337,\"temperature-list\":58009,\"temperature-low\":63339,\"temperature-quarter\":62154,\"temperature-snow\":63336,\"temperature-sun\":63338,\"temperature-three-quarters\":62152,\"tenge-sign\":63447,\"tennis-ball\":62558,\"tent-arrow-down-to-line\":58750,\"tent-arrow-left-right\":58751,\"tent-arrow-turn-left\":58752,\"tent-arrows-down\":58753,\"tent-double-peak\":58919,\"tent\":58749,\"tents\":58754,\"terminal\":61728,\"text-height\":61492,\"text-size\":63636,\"text-slash\":63613,\"text-width\":61493,\"text\":63635,\"thermometer\":62609,\"theta\":63134,\"thought-bubble\":58158,\"thumbs-down\":61797,\"thumbs-up\":61796,\"thumbtack-slash\":59023,\"thumbtack\":61581,\"tick\":58159,\"ticket-airline\":58010,\"ticket-perforated\":58942,\"ticket-simple\":62463,\"ticket\":61765,\"tickets-airline\":58011,\"tickets-perforated\":58943,\"tickets-simple\":58969,\"tickets\":58968,\"tilde\":126,\"timeline-arrow\":58013,\"timeline\":58012,\"timer\":58014,\"tire-flat\":63026,\"tire-pressure-warning\":63027,\"tire-rugged\":63028,\"tire\":63025,\"toggle-large-off\":58800,\"toggle-large-on\":58801,\"toggle-off\":61956,\"toggle-on\":61957,\"toilet-paper-blank-under\":58015,\"toilet-paper-blank\":63263,\"toilet-paper-check\":58802,\"toilet-paper-slash\":57458,\"toilet-paper-under-slash\":58017,\"toilet-paper-under\":58016,\"toilet-paper-xmark\":58803,\"toilet-paper\":63262,\"toilet-portable\":58755,\"toilet\":63448,\"toilets-portable\":58756,\"tomato\":58160,\"tombstone-blank\":63265,\"tombstone\":63264,\"toolbox\":62802,\"tooth\":62921,\"toothbrush\":63029,\"torii-gate\":63137,\"tornado\":63343,\"tower-broadcast\":62745,\"tower-cell\":58757,\"tower-control\":58018,\"tower-observation\":58758,\"tractor\":63266,\"trademark\":62044,\"traffic-cone\":63030,\"traffic-light-go\":63032,\"traffic-light-slow\":63033,\"traffic-light-stop\":63034,\"traffic-light\":63031,\"trailer\":57409,\"train-subway-tunnel\":58019,\"train-subway\":62009,\"train-track\":58451,\"train-tram\":58804,\"train-tunnel\":58452,\"train\":62008,\"transformer-bolt\":58020,\"transgender\":61989,\"transporter-1\":57411,\"transporter-2\":57412,\"transporter-3\":57413,\"transporter-4\":58021,\"transporter-5\":58022,\"transporter-6\":58023,\"transporter-7\":58024,\"transporter-empty\":57414,\"transporter\":57410,\"trash-arrow-up\":63529,\"trash-can-arrow-up\":63530,\"trash-can-check\":58025,\"trash-can-clock\":58026,\"trash-can-list\":58027,\"trash-can-plus\":58028,\"trash-can-slash\":58029,\"trash-can-undo\":63638,\"trash-can-xmark\":58030,\"trash-can\":62189,\"trash-check\":58031,\"trash-clock\":58032,\"trash-list\":58033,\"trash-plus\":58034,\"trash-slash\":58035,\"trash-undo\":63637,\"trash-xmark\":58036,\"trash\":61944,\"treasure-chest\":63267,\"tree-christmas\":63451,\"tree-city\":58759,\"tree-deciduous\":62464,\"tree-decorated\":63452,\"tree-large\":63453,\"tree-palm\":63531,\"tree\":61883,\"trees\":63268,\"triangle-exclamation\":61553,\"triangle-instrument\":63714,\"triangle-person-digging\":63581,\"triangle\":62188,\"tricycle-adult\":58820,\"tricycle\":58819,\"trillium\":58760,\"trophy-star\":62187,\"trophy\":61585,\"trowel-bricks\":58762,\"trowel\":58761,\"truck-arrow-right\":58763,\"truck-bolt\":58320,\"truck-clock\":62604,\"truck-container-empty\":58037,\"truck-container\":62684,\"truck-droplet\":58764,\"truck-fast\":62603,\"truck-field-un\":58766,\"truck-field\":58765,\"truck-fire\":58970,\"truck-flatbed\":58038,\"truck-front\":58039,\"truck-ladder\":58967,\"truck-medical\":61689,\"truck-monster\":63035,\"truck-moving\":62687,\"truck-pickup\":63036,\"truck-plane\":58767,\"truck-plow\":63454,\"truck-ramp-box\":62686,\"truck-ramp-couch\":62685,\"truck-ramp\":62688,\"truck-tow\":58040,\"truck-utensils\":58920,\"truck\":61649,\"trumpet\":63715,\"tty-answer\":58041,\"tty\":61924,\"tugrik-sign\":58042,\"turkey\":63269,\"turkish-lira-sign\":58043,\"turn-down-left\":58161,\"turn-down-right\":58453,\"turn-down\":62398,\"turn-left-down\":58935,\"turn-left-up\":58936,\"turn-left\":58934,\"turn-right\":58937,\"turn-up\":62399,\"turntable\":63716,\"turtle\":63270,\"tv-music\":63718,\"tv-retro\":62465,\"tv\":62060,\"typewriter\":63719,\"u\":85,\"ufo-beam\":57416,\"ufo\":57415,\"umbrella-beach\":62922,\"umbrella-simple\":58044,\"umbrella\":61673,\"underline\":61645,\"unicorn\":63271,\"uniform-martial-arts\":58321,\"union\":63138,\"universal-access\":62106,\"unlock-keyhole\":61758,\"unlock\":61596,\"up-down-left-right\":61618,\"up-down\":62264,\"up-from-bracket\":58768,\"up-from-dotted-line\":58454,\"up-from-line\":62278,\"up-left\":58045,\"up-long\":62220,\"up-right-and-down-left-from-center\":62500,\"up-right-from-square\":62301,\"up-right\":58046,\"up-to-bracket\":58990,\"up-to-dotted-line\":58455,\"up-to-line\":62285,\"up\":62295,\"upload\":61587,\"usb-drive\":63721,\"user-alien\":57418,\"user-astronaut\":62715,\"user-beard-bolt\":59017,\"user-bounty-hunter\":58047,\"user-check\":62716,\"user-chef\":58322,\"user-clock\":62717,\"user-cowboy\":63722,\"user-crown\":63140,\"user-doctor-hair-long\":58457,\"user-doctor-hair\":58456,\"user-doctor-message\":63534,\"user-doctor\":61680,\"user-gear\":62718,\"user-graduate\":62721,\"user-group-crown\":63141,\"user-group-simple\":58883,\"user-group\":62720,\"user-hair-buns\":58323,\"user-hair-long\":58459,\"user-hair-mullet\":58460,\"user-hair\":58458,\"user-headset\":63533,\"user-helmet-safety\":63532,\"user-hoodie\":59018,\"user-injured\":63272,\"user-large-slash\":62714,\"user-large\":62470,\"user-lock\":62722,\"user-magnifying-glass\":58821,\"user-minus\":62723,\"user-music\":63723,\"user-ninja\":62724,\"user-nurse-hair-long\":58462,\"user-nurse-hair\":58461,\"user-nurse\":63535,\"user-pen\":62719,\"user-pilot-tie\":58049,\"user-pilot\":58048,\"user-plus\":62004,\"user-police-tie\":58164,\"user-police\":58163,\"user-robot-xmarks\":58535,\"user-robot\":57419,\"user-secret\":61979,\"user-shakespeare\":58050,\"user-shield\":62725,\"user-slash\":62726,\"user-tag\":62727,\"user-tie-hair-long\":58464,\"user-tie-hair\":58463,\"user-tie\":62728,\"user-unlock\":57432,\"user-visor\":57420,\"user-vneck-hair-long\":58467,\"user-vneck-hair\":58466,\"user-vneck\":58465,\"user-xmark\":62005,\"user\":61447,\"users-between-lines\":58769,\"users-gear\":62729,\"users-line\":58770,\"users-medical\":63536,\"users-rays\":58771,\"users-rectangle\":58772,\"users-slash\":57459,\"users-viewfinder\":58773,\"users\":61632,\"utensils-slash\":58468,\"utensils\":62183,\"utility-pole-double\":58052,\"utility-pole\":58051,\"v\":86,\"vacuum-robot\":57422,\"vacuum\":57421,\"value-absolute\":63142,\"van-shuttle\":62902,\"vault\":58053,\"vector-circle\":58054,\"vector-polygon\":58055,\"vector-square\":62923,\"vent-damper\":58469,\"venus-double\":61990,\"venus-mars\":61992,\"venus\":61985,\"vest-patches\":57478,\"vest\":57477,\"vial-circle-check\":58774,\"vial-virus\":58775,\"vial\":62610,\"vials\":62611,\"video-arrow-down-left\":58056,\"video-arrow-up-right\":58057,\"video-plus\":62689,\"video-slash\":62690,\"video\":61501,\"vihara\":63143,\"violin\":63725,\"virus-covid-slash\":58537,\"virus-covid\":58536,\"virus-slash\":57461,\"virus\":57460,\"viruses\":57462,\"voicemail\":63639,\"volcano\":63344,\"volleyball\":62559,\"volume-high\":61480,\"volume-low\":61479,\"volume-off\":61478,\"volume-slash\":62178,\"volume-xmark\":63145,\"volume\":63144,\"vr-cardboard\":63273,\"w\":87,\"waffle\":58470,\"wagon-covered\":63726,\"walker\":63537,\"walkie-talkie\":63727,\"wallet\":62805,\"wand-magic-sparkles\":58058,\"wand-magic\":61648,\"wand-sparkles\":63275,\"wand\":63274,\"warehouse-full\":62613,\"warehouse\":62612,\"washing-machine\":63640,\"watch-apple\":58059,\"watch-calculator\":63728,\"watch-fitness\":63038,\"watch-smart\":58060,\"watch\":62177,\"water-arrow-down\":63348,\"water-arrow-up\":63349,\"water-ladder\":62917,\"water\":63347,\"watermelon-slice\":58167,\"wave-pulse\":62968,\"wave-sine\":63641,\"wave-square\":63550,\"wave-triangle\":63642,\"wave\":58971,\"waveform-lines\":63730,\"waveform\":63729,\"waves-sine\":58973,\"web-awesome\":59010,\"webhook\":58837,\"weight-hanging\":62925,\"weight-scale\":62614,\"whale\":63276,\"wheat-awn-circle-exclamation\":58776,\"wheat-awn-slash\":58168,\"wheat-awn\":58061,\"wheat-slash\":58169,\"wheat\":63277,\"wheelchair-move\":58062,\"wheelchair\":61843,\"whiskey-glass-ice\":63393,\"whiskey-glass\":63392,\"whistle\":62560,\"wifi-exclamation\":58063,\"wifi-fair\":63147,\"wifi-slash\":63148,\"wifi-weak\":63146,\"wifi\":61931,\"wind-turbine\":63643,\"wind-warning\":63350,\"wind\":63278,\"window-flip\":62479,\"window-frame-open\":57424,\"window-frame\":57423,\"window-maximize\":62160,\"window-minimize\":62161,\"window-restore\":62162,\"window\":62478,\"windsock\":63351,\"wine-bottle\":63279,\"wine-glass-crack\":62651,\"wine-glass-empty\":62926,\"wine-glass\":62691,\"won-sign\":61785,\"worm\":58777,\"wreath-laurel\":58834,\"wreath\":63458,\"wrench-simple\":58065,\"wrench\":61613,\"x-ray\":62615,\"x\":88,\"xmark-large\":58779,\"xmark-to-slot\":63345,\"xmark\":61453,\"xmarks-lines\":58778,\"y\":89,\"yen-sign\":61783,\"yin-yang\":63149,\"z\":90}"
  },
  {
    "path": "packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_sharp-duotone-regular.json",
    "content": "{\"0\":48,\"1\":49,\"2\":50,\"3\":51,\"4\":52,\"5\":53,\"6\":54,\"7\":55,\"8\":56,\"9\":57,\"00\":58471,\"360-degrees\":58076,\"a\":65,\"abacus\":63040,\"accent-grave\":96,\"acorn\":63150,\"address-book\":62137,\"address-card\":62139,\"air-conditioner\":63732,\"airplay\":57481,\"alarm-clock\":62286,\"alarm-exclamation\":63555,\"alarm-plus\":63556,\"alarm-snooze\":63557,\"album-circle-plus\":58508,\"album-circle-user\":58509,\"album-collection-circle-plus\":58510,\"album-collection-circle-user\":58511,\"album-collection\":63648,\"album\":63647,\"alicorn\":63152,\"alien-8bit\":63734,\"alien\":63733,\"align-center\":61495,\"align-justify\":61497,\"align-left\":61494,\"align-right\":61496,\"align-slash\":63558,\"alt\":57482,\"amp-guitar\":63649,\"ampersand\":38,\"anchor-circle-check\":58538,\"anchor-circle-exclamation\":58539,\"anchor-circle-xmark\":58540,\"anchor-lock\":58541,\"anchor\":61757,\"angel\":63353,\"angle-90\":57485,\"angle-down\":61703,\"angle-left\":61700,\"angle-right\":61701,\"angle-up\":61702,\"angle\":57484,\"angles-down\":61699,\"angles-left\":61696,\"angles-right\":61697,\"angles-up-down\":58893,\"angles-up\":61698,\"ankh\":63044,\"ant\":59008,\"apartment\":58472,\"aperture\":58079,\"apostrophe\":39,\"apple-core\":57487,\"apple-whole\":62929,\"archway\":62807,\"arrow-down-1-9\":61794,\"arrow-down-9-1\":63622,\"arrow-down-a-z\":61789,\"arrow-down-arrow-up\":63619,\"arrow-down-big-small\":63628,\"arrow-down-from-arc\":58900,\"arrow-down-from-bracket\":58983,\"arrow-down-from-dotted-line\":57488,\"arrow-down-from-line\":62277,\"arrow-down-left-and-arrow-up-right-to-center\":57490,\"arrow-down-left\":57489,\"arrow-down-long\":61813,\"arrow-down-right\":57491,\"arrow-down-short-wide\":63620,\"arrow-down-small-big\":63629,\"arrow-down-square-triangle\":63625,\"arrow-down-to-arc\":58542,\"arrow-down-to-bracket\":57492,\"arrow-down-to-dotted-line\":57493,\"arrow-down-to-line\":62269,\"arrow-down-to-square\":57494,\"arrow-down-triangle-square\":63624,\"arrow-down-up-across-line\":58543,\"arrow-down-up-lock\":58544,\"arrow-down-wide-short\":61792,\"arrow-down-z-a\":63617,\"arrow-down\":61539,\"arrow-left-from-arc\":58901,\"arrow-left-from-bracket\":58984,\"arrow-left-from-line\":62276,\"arrow-left-long-to-line\":58324,\"arrow-left-long\":61815,\"arrow-left-to-arc\":58902,\"arrow-left-to-bracket\":58985,\"arrow-left-to-line\":62270,\"arrow-left\":61536,\"arrow-pointer\":62021,\"arrow-progress\":58847,\"arrow-right-arrow-left\":61676,\"arrow-right-from-arc\":58545,\"arrow-right-from-bracket\":61579,\"arrow-right-from-line\":62275,\"arrow-right-long-to-line\":58325,\"arrow-right-long\":61816,\"arrow-right-to-arc\":58546,\"arrow-right-to-bracket\":61584,\"arrow-right-to-city\":58547,\"arrow-right-to-line\":62272,\"arrow-right\":61537,\"arrow-rotate-left\":61666,\"arrow-rotate-right\":61470,\"arrow-trend-down\":57495,\"arrow-trend-up\":57496,\"arrow-turn-down-left\":58081,\"arrow-turn-down-right\":58326,\"arrow-turn-down\":61769,\"arrow-turn-left-down\":58931,\"arrow-turn-left-up\":58932,\"arrow-turn-left\":58930,\"arrow-turn-right\":58933,\"arrow-turn-up\":61768,\"arrow-up-1-9\":61795,\"arrow-up-9-1\":63623,\"arrow-up-a-z\":61790,\"arrow-up-arrow-down\":57497,\"arrow-up-big-small\":63630,\"arrow-up-from-arc\":58548,\"arrow-up-from-bracket\":57498,\"arrow-up-from-dotted-line\":57499,\"arrow-up-from-ground-water\":58549,\"arrow-up-from-line\":62274,\"arrow-up-from-square\":57500,\"arrow-up-from-water-pump\":58550,\"arrow-up-left-from-circle\":57502,\"arrow-up-left\":57501,\"arrow-up-long\":61814,\"arrow-up-right-and-arrow-down-left-from-center\":57504,\"arrow-up-right-dots\":58551,\"arrow-up-right-from-square\":61582,\"arrow-up-right\":57503,\"arrow-up-short-wide\":63621,\"arrow-up-small-big\":63631,\"arrow-up-square-triangle\":63627,\"arrow-up-to-arc\":58903,\"arrow-up-to-bracket\":58986,\"arrow-up-to-dotted-line\":57505,\"arrow-up-to-line\":62273,\"arrow-up-triangle-square\":63626,\"arrow-up-wide-short\":61793,\"arrow-up-z-a\":63618,\"arrow-up\":61538,\"arrows-cross\":57506,\"arrows-down-to-line\":58552,\"arrows-down-to-people\":58553,\"arrows-from-dotted-line\":57507,\"arrows-from-line\":57508,\"arrows-left-right-to-line\":58554,\"arrows-left-right\":61566,\"arrows-maximize\":62237,\"arrows-minimize\":57509,\"arrows-repeat-1\":62310,\"arrows-repeat\":62308,\"arrows-retweet\":62305,\"arrows-rotate-reverse\":58928,\"arrows-rotate\":61473,\"arrows-spin\":58555,\"arrows-split-up-and-left\":58556,\"arrows-to-circle\":58557,\"arrows-to-dot\":58558,\"arrows-to-dotted-line\":57510,\"arrows-to-eye\":58559,\"arrows-to-line\":57511,\"arrows-turn-right\":58560,\"arrows-turn-to-dots\":58561,\"arrows-up-down-left-right\":61511,\"arrows-up-down\":61565,\"arrows-up-to-line\":58562,\"asterisk\":42,\"at\":64,\"atom-simple\":62931,\"atom\":62930,\"audio-description-slash\":57512,\"audio-description\":62110,\"austral-sign\":57513,\"avocado\":57514,\"award-simple\":57515,\"award\":62809,\"axe-battle\":63155,\"axe\":63154,\"b\":66,\"baby-carriage\":63357,\"baby\":63356,\"backpack\":62932,\"backward-fast\":61513,\"backward-step\":61512,\"backward\":61514,\"bacon\":63461,\"bacteria\":57433,\"bacterium\":57434,\"badge-check\":62262,\"badge-dollar\":63045,\"badge-percent\":63046,\"badge-sheriff\":63650,\"badge\":62261,\"badger-honey\":63156,\"badminton\":58170,\"bag-seedling\":58866,\"bag-shopping-minus\":58960,\"bag-shopping-plus\":58961,\"bag-shopping\":62096,\"bagel\":58327,\"bags-shopping\":63559,\"baguette\":58328,\"bahai\":63078,\"baht-sign\":57516,\"ball-pile\":63358,\"balloon\":58083,\"balloons\":58084,\"ballot-check\":63283,\"ballot\":63282,\"ban-bug\":63481,\"ban-parking\":62998,\"ban-smoking\":62797,\"ban\":61534,\"banana\":58085,\"bandage\":62562,\"bangladeshi-taka-sign\":58086,\"banjo\":63651,\"barcode-read\":62564,\"barcode-scan\":62565,\"barcode\":61482,\"bars-filter\":57517,\"bars-progress\":63528,\"bars-sort\":57518,\"bars-staggered\":62800,\"bars\":61641,\"baseball-bat-ball\":62514,\"baseball\":62515,\"basket-shopping-minus\":58962,\"basket-shopping-plus\":58963,\"basket-shopping-simple\":57519,\"basket-shopping\":62097,\"basketball-hoop\":62517,\"basketball\":62516,\"bat\":63157,\"bath\":62157,\"battery-bolt\":62326,\"battery-empty\":62020,\"battery-exclamation\":57520,\"battery-full\":62016,\"battery-half\":62018,\"battery-low\":57521,\"battery-quarter\":62019,\"battery-slash\":62327,\"battery-three-quarters\":62017,\"bed-bunk\":63736,\"bed-empty\":63737,\"bed-front\":63735,\"bed-pulse\":62599,\"bed\":62006,\"bee\":57522,\"beer-mug-empty\":61692,\"beer-mug\":57523,\"bell-concierge\":62818,\"bell-exclamation\":63560,\"bell-on\":63738,\"bell-plus\":63561,\"bell-ring\":58924,\"bell-school-slash\":62934,\"bell-school\":62933,\"bell-slash\":61942,\"bell\":61683,\"bells\":63359,\"bench-tree\":58087,\"bezier-curve\":62811,\"bicycle\":61958,\"billboard\":58829,\"bin-bottles-recycle\":58870,\"bin-bottles\":58869,\"bin-recycle\":58871,\"binary-circle-check\":58172,\"binary-lock\":58173,\"binary-slash\":58174,\"binary\":58171,\"binoculars\":61925,\"biohazard\":63360,\"bird\":58473,\"bitcoin-sign\":57524,\"blanket-fire\":58330,\"blanket\":62616,\"blender-phone\":63158,\"blender\":62743,\"blinds-open\":63740,\"blinds-raised\":63741,\"blinds\":63739,\"block-brick-fire\":58332,\"block-brick\":58331,\"block-question\":58333,\"block-quote\":57525,\"block\":58474,\"blog\":63361,\"blueberries\":58088,\"bluetooth\":62099,\"bold\":61490,\"bolt-auto\":57526,\"bolt-lightning\":57527,\"bolt-slash\":57528,\"bolt\":61671,\"bomb\":61922,\"bone-break\":62936,\"bone\":62935,\"bong\":62812,\"book-arrow-right\":57529,\"book-arrow-up\":57530,\"book-atlas\":62808,\"book-bible\":63047,\"book-blank\":62937,\"book-bookmark\":57531,\"book-circle-arrow-right\":57532,\"book-circle-arrow-up\":57533,\"book-copy\":57534,\"book-font\":57535,\"book-heart\":62617,\"book-journal-whills\":63082,\"book-medical\":63462,\"book-open-cover\":57536,\"book-open-reader\":62938,\"book-open\":62744,\"book-quran\":63111,\"book-section\":57537,\"book-skull\":63159,\"book-sparkles\":63160,\"book-tanakh\":63527,\"book-user\":63463,\"book\":61485,\"bookmark-slash\":57538,\"bookmark\":61486,\"books-medical\":63464,\"books\":62939,\"boombox\":63653,\"boot-heeled\":58175,\"boot\":63362,\"booth-curtain\":63284,\"border-all\":63564,\"border-bottom-right\":63572,\"border-bottom\":63565,\"border-center-h\":63644,\"border-center-v\":63645,\"border-inner\":63566,\"border-left\":63567,\"border-none\":63568,\"border-outer\":63569,\"border-right\":63570,\"border-top-left\":63571,\"border-top\":63573,\"bore-hole\":58563,\"bottle-baby\":58995,\"bottle-droplet\":58564,\"bottle-water\":58565,\"bow-arrow\":63161,\"bowl-chopsticks-noodles\":58090,\"bowl-chopsticks\":58089,\"bowl-food\":58566,\"bowl-hot\":63523,\"bowl-rice\":58091,\"bowl-scoop\":58334,\"bowl-scoops\":58335,\"bowl-soft-serve\":58475,\"bowl-spoon\":58336,\"bowling-ball-pin\":57539,\"bowling-ball\":62518,\"bowling-pins\":62519,\"box-archive\":61831,\"box-ballot\":63285,\"box-check\":62567,\"box-circle-check\":57540,\"box-dollar\":62624,\"box-heart\":62621,\"box-open-full\":62620,\"box-open\":62622,\"box-taped\":62618,\"box-tissue\":57435,\"box\":62566,\"boxes-packing\":58567,\"boxes-stacked\":62568,\"boxing-glove\":62520,\"bracket-curly-right\":125,\"bracket-curly\":123,\"bracket-round-right\":41,\"bracket-round\":40,\"bracket-square-right\":93,\"bracket-square\":91,\"brackets-curly\":63466,\"brackets-round\":57541,\"brackets-square\":63465,\"braille\":62113,\"brain-arrow-curved-right\":63095,\"brain-circuit\":57542,\"brain\":62940,\"brake-warning\":57543,\"brazilian-real-sign\":58476,\"bread-loaf\":63467,\"bread-slice-butter\":58337,\"bread-slice\":63468,\"bridge-circle-check\":58569,\"bridge-circle-exclamation\":58570,\"bridge-circle-xmark\":58571,\"bridge-lock\":58572,\"bridge-suspension\":58573,\"bridge-water\":58574,\"bridge\":58568,\"briefcase-arrow-right\":58098,\"briefcase-blank\":57544,\"briefcase-medical\":62569,\"briefcase\":61617,\"brightness-low\":57546,\"brightness\":57545,\"bring-forward\":63574,\"bring-front\":63575,\"broccoli\":58338,\"broom-ball\":62552,\"broom-wide\":58833,\"broom\":62746,\"browser\":62334,\"browsers\":57547,\"brush\":62813,\"bucket\":58575,\"bug-slash\":58512,\"bug\":61832,\"bugs\":58576,\"building-circle-arrow-right\":58577,\"building-circle-check\":58578,\"building-circle-exclamation\":58579,\"building-circle-xmark\":58580,\"building-columns\":61852,\"building-flag\":58581,\"building-lock\":58582,\"building-magnifying-glass\":58908,\"building-memo\":58910,\"building-ngo\":58583,\"building-shield\":58584,\"building-un\":58585,\"building-user\":58586,\"building-wheat\":58587,\"building\":61869,\"buildings\":57548,\"bulldozer\":58965,\"bullhorn\":61601,\"bullseye-arrow\":63048,\"bullseye-pointer\":63049,\"bullseye\":61760,\"buoy-mooring\":58806,\"buoy\":58805,\"burger-cheese\":63473,\"burger-fries\":57549,\"burger-glass\":57550,\"burger-lettuce\":58339,\"burger-soda\":63576,\"burger\":63493,\"burrito\":63469,\"burst\":58588,\"bus-school\":62941,\"bus-simple\":62814,\"bus\":61959,\"business-time\":63050,\"butter\":58340,\"c\":67,\"cabin\":58477,\"cabinet-filing\":63051,\"cable-car\":63450,\"cactus\":63655,\"caduceus\":59009,\"cake-candles\":61949,\"cake-slice\":58341,\"calculator-simple\":63052,\"calculator\":61932,\"calendar-arrow-down\":57552,\"calendar-arrow-up\":57553,\"calendar-check\":62068,\"calendar-circle-exclamation\":58478,\"calendar-circle-minus\":58479,\"calendar-circle-plus\":58480,\"calendar-circle-user\":58481,\"calendar-clock\":57554,\"calendar-day\":63363,\"calendar-days\":61555,\"calendar-exclamation\":62260,\"calendar-heart\":57555,\"calendar-image\":57556,\"calendar-lines-pen\":58482,\"calendar-lines\":57557,\"calendar-minus\":62066,\"calendar-pen\":62259,\"calendar-plus\":62065,\"calendar-range\":57558,\"calendar-star\":63286,\"calendar-users\":58850,\"calendar-week\":63364,\"calendar-xmark\":62067,\"calendar\":61747,\"calendars\":57559,\"camcorder\":63656,\"camera-cctv\":63660,\"camera-movie\":63657,\"camera-polaroid\":63658,\"camera-retro\":61571,\"camera-rotate\":57560,\"camera-security\":63742,\"camera-slash\":57561,\"camera-viewfinder\":57562,\"camera-web-slash\":63539,\"camera-web\":63538,\"camera\":61488,\"campfire\":63162,\"campground\":63163,\"can-food\":58342,\"candle-holder\":63164,\"candy-bar\":58344,\"candy-cane\":63366,\"candy-corn\":63165,\"candy\":58343,\"cannabis\":62815,\"cannon\":58946,\"capsules\":62571,\"car-battery\":62943,\"car-bolt\":58177,\"car-building\":63577,\"car-bump\":62944,\"car-burst\":62945,\"car-bus\":63578,\"car-circle-bolt\":58178,\"car-garage\":62946,\"car-mirrors\":58179,\"car-on\":58589,\"car-rear\":62942,\"car-side-bolt\":58180,\"car-side\":62948,\"car-tilt\":62949,\"car-tunnel\":58590,\"car-wash\":62950,\"car-wrench\":62947,\"car\":61881,\"caravan-simple\":57344,\"caravan\":63743,\"card-club\":58345,\"card-diamond\":58346,\"card-heart\":58347,\"card-spade\":58348,\"cards-blank\":58591,\"cards\":58349,\"caret-down\":61655,\"caret-left\":61657,\"caret-right\":61658,\"caret-up\":61656,\"carpool\":59036,\"carrot\":63367,\"cars\":63579,\"cart-arrow-down\":61976,\"cart-arrow-up\":58350,\"cart-circle-arrow-down\":58351,\"cart-circle-arrow-up\":58352,\"cart-circle-check\":58353,\"cart-circle-exclamation\":58354,\"cart-circle-plus\":58355,\"cart-circle-xmark\":58356,\"cart-flatbed-boxes\":62581,\"cart-flatbed-empty\":62582,\"cart-flatbed-suitcase\":62877,\"cart-flatbed\":62580,\"cart-minus\":57563,\"cart-plus\":61975,\"cart-shopping-fast\":57564,\"cart-shopping\":61562,\"cart-xmark\":57565,\"cash-register\":63368,\"cassette-betamax\":63652,\"cassette-tape\":63659,\"cassette-vhs\":63724,\"castle\":57566,\"cat-space\":57345,\"cat\":63166,\"cauldron\":63167,\"cedi-sign\":57567,\"cent-sign\":58357,\"certificate\":61603,\"chair-office\":63169,\"chair\":63168,\"chalkboard-user\":62748,\"chalkboard\":62747,\"champagne-glass\":63390,\"champagne-glasses\":63391,\"charging-station\":62951,\"chart-area\":61950,\"chart-bar\":61568,\"chart-bullet\":57569,\"chart-candlestick\":57570,\"chart-column\":57571,\"chart-diagram\":59029,\"chart-fft\":59038,\"chart-gantt\":57572,\"chart-kanban\":58959,\"chart-line-down\":63053,\"chart-line-up-down\":58839,\"chart-line-up\":57573,\"chart-line\":61953,\"chart-mixed-up-circle-currency\":58840,\"chart-mixed-up-circle-dollar\":58841,\"chart-mixed\":63043,\"chart-network\":63370,\"chart-pie-simple-circle-currency\":58884,\"chart-pie-simple-circle-dollar\":58885,\"chart-pie-simple\":63054,\"chart-pie\":61952,\"chart-pyramid\":57574,\"chart-radar\":57575,\"chart-scatter-3d\":57576,\"chart-scatter-bubble\":57577,\"chart-scatter\":63470,\"chart-simple-horizontal\":58484,\"chart-simple\":58483,\"chart-sine\":59037,\"chart-tree-map\":57578,\"chart-user\":63139,\"chart-waterfall\":57579,\"check-double\":62816,\"check-to-slot\":63346,\"check\":61452,\"cheese-swiss\":63472,\"cheese\":63471,\"cherries\":57580,\"chess-bishop-piece\":62523,\"chess-bishop\":62522,\"chess-board\":62524,\"chess-clock-flip\":62526,\"chess-clock\":62525,\"chess-king-piece\":62528,\"chess-king\":62527,\"chess-knight-piece\":62530,\"chess-knight\":62529,\"chess-pawn-piece\":62532,\"chess-pawn\":62531,\"chess-queen-piece\":62534,\"chess-queen\":62533,\"chess-rook-piece\":62536,\"chess-rook\":62535,\"chess\":62521,\"chestnut\":58358,\"chevron-down\":61560,\"chevron-left\":61523,\"chevron-right\":61524,\"chevron-up\":61559,\"chevrons-down\":62242,\"chevrons-left\":62243,\"chevrons-right\":62244,\"chevrons-up\":62245,\"chf-sign\":58882,\"child-combatant\":58592,\"child-dress\":58780,\"child-reaching\":58781,\"child\":61870,\"children\":58593,\"chimney\":63371,\"chopsticks\":58359,\"church\":62749,\"circle-0\":57581,\"circle-1\":57582,\"circle-2\":57583,\"circle-3\":57584,\"circle-4\":57585,\"circle-5\":57586,\"circle-6\":57587,\"circle-7\":57588,\"circle-8\":57589,\"circle-9\":57590,\"circle-a\":57591,\"circle-ampersand\":57592,\"circle-arrow-down-left\":57593,\"circle-arrow-down-right\":57594,\"circle-arrow-down\":61611,\"circle-arrow-left\":61608,\"circle-arrow-right\":61609,\"circle-arrow-up-left\":57595,\"circle-arrow-up-right\":57596,\"circle-arrow-up\":61610,\"circle-b\":57597,\"circle-bolt\":57598,\"circle-book-open\":57599,\"circle-bookmark\":57600,\"circle-c\":57601,\"circle-calendar\":57602,\"circle-camera\":57603,\"circle-caret-down\":62253,\"circle-caret-left\":62254,\"circle-caret-right\":62256,\"circle-caret-up\":62257,\"circle-check\":61528,\"circle-chevron-down\":61754,\"circle-chevron-left\":61751,\"circle-chevron-right\":61752,\"circle-chevron-up\":61753,\"circle-d\":57604,\"circle-dashed\":57605,\"circle-divide\":57606,\"circle-dollar-to-slot\":62649,\"circle-dollar\":62184,\"circle-dot\":61842,\"circle-down-left\":57607,\"circle-down-right\":57608,\"circle-down\":62296,\"circle-e\":57609,\"circle-ellipsis-vertical\":57611,\"circle-ellipsis\":57610,\"circle-envelope\":57612,\"circle-euro\":58830,\"circle-exclamation-check\":57613,\"circle-exclamation\":61546,\"circle-f\":57614,\"circle-g\":57615,\"circle-gf\":59007,\"circle-h\":62590,\"circle-half-stroke\":61506,\"circle-half\":57616,\"circle-heart\":62663,\"circle-i\":57617,\"circle-info\":61530,\"circle-j\":57618,\"circle-k\":57619,\"circle-l\":57620,\"circle-left\":62297,\"circle-location-arrow\":62978,\"circle-m\":57621,\"circle-microphone-lines\":57623,\"circle-microphone\":57622,\"circle-minus\":61526,\"circle-n\":57624,\"circle-nodes\":58594,\"circle-notch\":61902,\"circle-o\":57625,\"circle-p\":57626,\"circle-parking\":62997,\"circle-pause\":62091,\"circle-phone-flip\":57628,\"circle-phone-hangup\":57629,\"circle-phone\":57627,\"circle-play\":61764,\"circle-plus\":61525,\"circle-q\":57630,\"circle-quarter-stroke\":58835,\"circle-quarter\":57631,\"circle-quarters\":58360,\"circle-question\":61529,\"circle-r\":57632,\"circle-radiation\":63418,\"circle-right\":62298,\"circle-s\":57633,\"circle-small\":57634,\"circle-sort-down\":57393,\"circle-sort-up\":57394,\"circle-sort\":57392,\"circle-star\":57635,\"circle-sterling\":58831,\"circle-stop\":62093,\"circle-t\":57636,\"circle-three-quarters-stroke\":58836,\"circle-three-quarters\":57637,\"circle-trash\":57638,\"circle-u\":57639,\"circle-up-left\":57640,\"circle-up-right\":57641,\"circle-up\":62299,\"circle-user\":62141,\"circle-v\":57642,\"circle-video\":57643,\"circle-w\":57644,\"circle-waveform-lines\":57645,\"circle-wifi-circle-wifi\":59006,\"circle-wifi\":59005,\"circle-x\":57646,\"circle-xmark\":61527,\"circle-y\":57647,\"circle-yen\":58832,\"circle-z\":57648,\"circle\":61713,\"circles-overlap-3\":59041,\"circles-overlap\":58880,\"citrus-slice\":58101,\"citrus\":58100,\"city\":63055,\"clapperboard-play\":57650,\"clapperboard\":57649,\"clarinet\":63661,\"claw-marks\":63170,\"clipboard-check\":62572,\"clipboard-list-check\":63287,\"clipboard-list\":62573,\"clipboard-medical\":57651,\"clipboard-prescription\":62952,\"clipboard-question\":58595,\"clipboard-user\":63475,\"clipboard\":62248,\"clock-desk\":57652,\"clock-eight-thirty\":58182,\"clock-eight\":58181,\"clock-eleven-thirty\":58184,\"clock-eleven\":58183,\"clock-five-thirty\":58186,\"clock-five\":58185,\"clock-four-thirty\":58187,\"clock-nine-thirty\":58189,\"clock-nine\":58188,\"clock-one-thirty\":58191,\"clock-one\":58190,\"clock-rotate-left\":61914,\"clock-seven-thirty\":58193,\"clock-seven\":58192,\"clock-six-thirty\":58195,\"clock-six\":58194,\"clock-ten-thirty\":58197,\"clock-ten\":58196,\"clock-three-thirty\":58199,\"clock-three\":58198,\"clock-twelve-thirty\":58201,\"clock-twelve\":58200,\"clock-two-thirty\":58203,\"clock-two\":58202,\"clock\":61463,\"clone\":62029,\"closed-captioning-slash\":57653,\"closed-captioning\":61962,\"clothes-hanger\":57654,\"cloud-arrow-down\":61677,\"cloud-arrow-up\":61678,\"cloud-binary\":58881,\"cloud-bolt-moon\":63341,\"cloud-bolt-sun\":63342,\"cloud-bolt\":63340,\"cloud-check\":58204,\"cloud-drizzle\":63288,\"cloud-exclamation\":58513,\"cloud-fog\":63310,\"cloud-hail-mixed\":63290,\"cloud-hail\":63289,\"cloud-meatball\":63291,\"cloud-minus\":58205,\"cloud-moon-rain\":63292,\"cloud-moon\":63171,\"cloud-music\":63662,\"cloud-plus\":58206,\"cloud-question\":58514,\"cloud-rain\":63293,\"cloud-rainbow\":63294,\"cloud-showers-heavy\":63296,\"cloud-showers-water\":58596,\"cloud-showers\":63295,\"cloud-slash\":57655,\"cloud-sleet\":63297,\"cloud-snow\":63298,\"cloud-sun-rain\":63299,\"cloud-sun\":63172,\"cloud-word\":57656,\"cloud-xmark\":58207,\"cloud\":61634,\"clouds-moon\":63301,\"clouds-sun\":63302,\"clouds\":63300,\"clover\":57657,\"club\":62247,\"coconut\":58102,\"code-branch\":61734,\"code-commit\":62342,\"code-compare\":57658,\"code-fork\":57659,\"code-merge\":62343,\"code-pull-request-closed\":58361,\"code-pull-request-draft\":58362,\"code-pull-request\":57660,\"code-simple\":57661,\"code\":61729,\"coffee-bean\":57662,\"coffee-beans\":57663,\"coffee-pot\":57346,\"coffin-cross\":57425,\"coffin\":63174,\"coin-blank\":58363,\"coin-front\":58364,\"coin-vertical\":58365,\"coin\":63580,\"coins\":62750,\"colon-sign\":57664,\"colon\":58,\"columns-3\":58209,\"comet\":57347,\"comma\":44,\"command\":57666,\"comment-arrow-down\":57667,\"comment-arrow-up-right\":57669,\"comment-arrow-up\":57668,\"comment-captions\":57670,\"comment-check\":62636,\"comment-code\":57671,\"comment-dollar\":63057,\"comment-dots\":62637,\"comment-exclamation\":62639,\"comment-heart\":58824,\"comment-image\":57672,\"comment-lines\":62640,\"comment-medical\":63477,\"comment-middle-top\":57674,\"comment-middle\":57673,\"comment-minus\":62641,\"comment-music\":63664,\"comment-nodes\":59030,\"comment-pen\":62638,\"comment-plus\":62642,\"comment-question\":57675,\"comment-quote\":57676,\"comment-slash\":62643,\"comment-smile\":62644,\"comment-sms\":63437,\"comment-text\":57677,\"comment-xmark\":62645,\"comment\":61557,\"comments-dollar\":63059,\"comments-question-check\":57679,\"comments-question\":57678,\"comments\":61574,\"compact-disc\":62751,\"compass-drafting\":62824,\"compass-slash\":62953,\"compass\":61774,\"compress-wide\":62246,\"compress\":61542,\"computer-classic\":63665,\"computer-mouse-scrollwheel\":63693,\"computer-mouse\":63692,\"computer-speaker\":63666,\"computer\":58597,\"container-storage\":62647,\"conveyor-belt-arm\":58872,\"conveyor-belt-boxes\":62575,\"conveyor-belt-empty\":57680,\"conveyor-belt\":62574,\"cookie-bite\":62820,\"cookie\":62819,\"copy\":61637,\"copyright\":61945,\"corn\":63175,\"corner\":58366,\"couch\":62648,\"court-sport\":58947,\"cow\":63176,\"cowbell-circle-plus\":63668,\"cowbell\":63667,\"crab\":58367,\"crate-apple\":63153,\"crate-empty\":57681,\"credit-card-blank\":62345,\"credit-card-front\":62346,\"credit-card\":61597,\"cricket-bat-ball\":62537,\"croissant\":63478,\"crop-simple\":62821,\"crop\":61733,\"cross\":63060,\"crosshairs-simple\":58783,\"crosshairs\":61531,\"crow\":62752,\"crown\":62753,\"crutch\":63479,\"crutches\":63480,\"cruzeiro-sign\":57682,\"crystal-ball\":58210,\"cube\":61874,\"cubes-stacked\":58598,\"cubes\":61875,\"cucumber\":58369,\"cup-straw-swoosh\":58212,\"cup-straw\":58211,\"cup-togo\":63173,\"cupcake\":58370,\"curling-stone\":62538,\"custard\":58371,\"d\":68,\"dagger\":63179,\"dash\":58372,\"database\":61888,\"deer-rudolph\":63375,\"deer\":63374,\"delete-left\":62810,\"delete-right\":57684,\"democrat\":63303,\"desktop-arrow-down\":57685,\"desktop\":62352,\"dharmachakra\":63061,\"diagram-cells\":58485,\"diagram-lean-canvas\":57686,\"diagram-nested\":57687,\"diagram-next\":58486,\"diagram-predecessor\":58487,\"diagram-previous\":58488,\"diagram-project\":62786,\"diagram-sankey\":57688,\"diagram-subtask\":58489,\"diagram-successor\":58490,\"diagram-venn\":57690,\"dial-high\":57692,\"dial-low\":57693,\"dial-max\":57694,\"dial-med-low\":57696,\"dial-med\":57695,\"dial-min\":57697,\"dial-off\":57698,\"dial\":57691,\"diamond-exclamation\":58373,\"diamond-half-stroke\":58808,\"diamond-half\":58807,\"diamond-turn-right\":62955,\"diamond\":61977,\"diamonds-4\":59019,\"dice-d10\":63181,\"dice-d12\":63182,\"dice-d20\":63183,\"dice-d4\":63184,\"dice-d6\":63185,\"dice-d8\":63186,\"dice-five\":62755,\"dice-four\":62756,\"dice-one\":62757,\"dice-six\":62758,\"dice-three\":62759,\"dice-two\":62760,\"dice\":62754,\"dinosaur\":58878,\"diploma\":62954,\"disc-drive\":63669,\"disease\":63482,\"display-arrow-down\":57700,\"display-chart-up-circle-currency\":58853,\"display-chart-up-circle-dollar\":58854,\"display-chart-up\":58851,\"display-code\":57701,\"display-medical\":57702,\"display-slash\":58106,\"display\":57699,\"distribute-spacing-horizontal\":58213,\"distribute-spacing-vertical\":58214,\"ditto\":34,\"divide\":62761,\"dna\":62577,\"do-not-enter\":62956,\"dog-leashed\":63188,\"dog\":63187,\"dollar-sign\":36,\"dolly-empty\":62579,\"dolly\":62578,\"dolphin\":57704,\"dong-sign\":57705,\"donut\":58374,\"door-closed\":62762,\"door-open\":62763,\"dove\":62650,\"down-from-bracket\":58987,\"down-from-dotted-line\":58375,\"down-from-line\":62281,\"down-left-and-up-right-to-center\":62498,\"down-left\":57706,\"down-long\":62217,\"down-right\":57707,\"down-to-bracket\":58599,\"down-to-dotted-line\":58376,\"down-to-line\":62282,\"down\":62292,\"download\":61465,\"dragon\":63189,\"draw-circle\":62957,\"draw-polygon\":62958,\"draw-square\":62959,\"dreidel\":63378,\"drone-front\":63584,\"drone\":63583,\"droplet-degree\":63304,\"droplet-percent\":63312,\"droplet-slash\":62919,\"droplet\":61507,\"drum-steelpan\":62826,\"drum\":62825,\"drumstick-bite\":63191,\"drumstick\":63190,\"dryer-heat\":63586,\"dryer\":63585,\"duck\":63192,\"dumbbell\":62539,\"dumpster-fire\":63380,\"dumpster\":63379,\"dungeon\":63193,\"e\":69,\"ear-deaf\":62116,\"ear-listen\":62114,\"ear-muffs\":63381,\"ear\":62960,\"earth-africa\":62844,\"earth-americas\":62845,\"earth-asia\":62846,\"earth-europe\":63394,\"earth-oceania\":58491,\"eclipse\":63305,\"egg-fried\":63484,\"egg\":63483,\"eggplant\":57708,\"eject\":61522,\"elephant\":63194,\"elevator\":57709,\"ellipsis-stroke-vertical\":62364,\"ellipsis-stroke\":62363,\"ellipsis-vertical\":61762,\"ellipsis\":61761,\"empty-set\":63062,\"engine-warning\":62962,\"engine\":57710,\"envelope-circle-check\":58600,\"envelope-dot\":57711,\"envelope-open-dollar\":63063,\"envelope-open-text\":63064,\"envelope-open\":62134,\"envelope\":61664,\"envelopes-bulk\":63092,\"envelopes\":57712,\"equals\":61,\"eraser\":61741,\"escalator\":57713,\"ethernet\":63382,\"euro-sign\":61779,\"excavator\":58966,\"exclamation\":33,\"expand-wide\":62240,\"expand\":61541,\"explosion\":58601,\"eye-dropper-full\":57714,\"eye-dropper-half\":57715,\"eye-dropper\":61947,\"eye-evil\":63195,\"eye-low-vision\":62120,\"eye-slash\":61552,\"eye\":61550,\"eyes\":58215,\"f\":70,\"face-angry-horns\":58216,\"face-angry\":62806,\"face-anguished\":58217,\"face-anxious-sweat\":58218,\"face-astonished\":58219,\"face-awesome\":58377,\"face-beam-hand-over-mouth\":58492,\"face-clouds\":58493,\"face-confounded\":58220,\"face-confused\":58221,\"face-cowboy-hat\":58222,\"face-diagonal-mouth\":58494,\"face-disappointed\":58223,\"face-disguise\":58224,\"face-dizzy\":62823,\"face-dotted\":58495,\"face-downcast-sweat\":58225,\"face-drooling\":58226,\"face-exhaling\":58496,\"face-explode\":58110,\"face-expressionless\":58227,\"face-eyes-xmarks\":58228,\"face-fearful\":58229,\"face-flushed\":62841,\"face-frown-open\":62842,\"face-frown-slight\":58230,\"face-frown\":61721,\"face-glasses\":58231,\"face-grimace\":62847,\"face-grin-beam-sweat\":62851,\"face-grin-beam\":62850,\"face-grin-hearts\":62852,\"face-grin-squint-tears\":62854,\"face-grin-squint\":62853,\"face-grin-stars\":62855,\"face-grin-tears\":62856,\"face-grin-tongue-squint\":62858,\"face-grin-tongue-wink\":62859,\"face-grin-tongue\":62857,\"face-grin-wide\":62849,\"face-grin-wink\":62860,\"face-grin\":62848,\"face-hand-over-mouth\":58232,\"face-hand-peeking\":58497,\"face-hand-yawn\":58233,\"face-head-bandage\":58234,\"face-holding-back-tears\":58498,\"face-hushed\":58235,\"face-icicles\":58236,\"face-kiss-beam\":62871,\"face-kiss-closed-eyes\":58237,\"face-kiss-wink-heart\":62872,\"face-kiss\":62870,\"face-laugh-beam\":62874,\"face-laugh-squint\":62875,\"face-laugh-wink\":62876,\"face-laugh\":62873,\"face-lying\":58238,\"face-mask\":58239,\"face-meh-blank\":62884,\"face-meh\":61722,\"face-melting\":58499,\"face-monocle\":58240,\"face-nauseated\":58241,\"face-nose-steam\":58242,\"face-party\":58243,\"face-pensive\":58244,\"face-persevering\":58245,\"face-pleading\":58246,\"face-pouting\":58247,\"face-raised-eyebrow\":58248,\"face-relieved\":58249,\"face-rolling-eyes\":62885,\"face-sad-cry\":62899,\"face-sad-sweat\":58250,\"face-sad-tear\":62900,\"face-saluting\":58500,\"face-scream\":58251,\"face-shush\":58252,\"face-sleeping\":58253,\"face-sleepy\":58254,\"face-smile-beam\":62904,\"face-smile-halo\":58255,\"face-smile-hearts\":58256,\"face-smile-horns\":58257,\"face-smile-plus\":62905,\"face-smile-relaxed\":58258,\"face-smile-tear\":58259,\"face-smile-tongue\":58260,\"face-smile-upside-down\":58261,\"face-smile-wink\":62682,\"face-smile\":61720,\"face-smiling-hands\":58262,\"face-smirking\":58263,\"face-spiral-eyes\":58501,\"face-sunglasses\":58264,\"face-surprise\":62914,\"face-swear\":58265,\"face-thermometer\":58266,\"face-thinking\":58267,\"face-tired\":62920,\"face-tissue\":58268,\"face-tongue-money\":58269,\"face-tongue-sweat\":58270,\"face-unamused\":58271,\"face-viewfinder\":58111,\"face-vomit\":58272,\"face-weary\":58273,\"face-woozy\":58274,\"face-worried\":58275,\"face-zany\":58276,\"face-zipper\":58277,\"falafel\":58378,\"family-dress\":58113,\"family-pants\":58114,\"family\":58112,\"fan-table\":57348,\"fan\":63587,\"farm\":63588,\"faucet-drip\":57350,\"faucet\":57349,\"fax\":61868,\"feather-pointed\":62827,\"feather\":62765,\"fence\":58115,\"ferris-wheel\":57716,\"ferry\":58602,\"field-hockey-stick-ball\":62540,\"file-arrow-down\":62829,\"file-arrow-up\":62836,\"file-audio\":61895,\"file-binary\":57717,\"file-cad\":58994,\"file-certificate\":62963,\"file-chart-column\":63065,\"file-chart-pie\":63066,\"file-check\":62230,\"file-circle-check\":58784,\"file-circle-exclamation\":58603,\"file-circle-info\":58515,\"file-circle-minus\":58605,\"file-circle-plus\":58516,\"file-circle-question\":58607,\"file-circle-xmark\":58785,\"file-code\":61897,\"file-contract\":62828,\"file-csv\":63197,\"file-dashed-line\":63607,\"file-doc\":58861,\"file-eps\":58948,\"file-excel\":61891,\"file-exclamation\":62234,\"file-export\":62830,\"file-fragment\":59031,\"file-gif\":58949,\"file-half-dashed\":59032,\"file-heart\":57718,\"file-image\":61893,\"file-import\":62831,\"file-invoice-dollar\":62833,\"file-invoice\":62832,\"file-jpg\":58950,\"file-lines\":61788,\"file-lock\":58278,\"file-magnifying-glass\":63589,\"file-medical\":62583,\"file-minus\":62232,\"file-mov\":58951,\"file-mp3\":58952,\"file-mp4\":58953,\"file-music\":63670,\"file-pdf\":61889,\"file-pen\":62236,\"file-plus-minus\":57719,\"file-plus\":62233,\"file-png\":58982,\"file-powerpoint\":61892,\"file-ppt\":58954,\"file-prescription\":62834,\"file-shield\":58608,\"file-signature\":62835,\"file-slash\":58279,\"file-spreadsheet\":63067,\"file-svg\":58955,\"file-user\":63068,\"file-vector\":58956,\"file-video\":61896,\"file-waveform\":62584,\"file-word\":61890,\"file-xls\":58957,\"file-xmark\":62231,\"file-xml\":58964,\"file-zip\":58862,\"file-zipper\":61894,\"file\":61787,\"files-medical\":63485,\"files\":57720,\"fill-drip\":62838,\"fill\":62837,\"film-canister\":63671,\"film-simple\":62368,\"film-slash\":57721,\"film\":61448,\"films\":57722,\"filter-circle-dollar\":63074,\"filter-circle-xmark\":57723,\"filter-list\":57724,\"filter-slash\":57725,\"filter\":61616,\"filters\":57726,\"fingerprint\":62839,\"fire-burner\":58609,\"fire-extinguisher\":61748,\"fire-flame-curved\":63460,\"fire-flame-simple\":62570,\"fire-flame\":63199,\"fire-hydrant\":57727,\"fire-smoke\":63307,\"fire\":61549,\"fireplace\":63386,\"fish-bones\":58116,\"fish-cooked\":63486,\"fish-fins\":58610,\"fish\":62840,\"fishing-rod\":58280,\"flag-checkered\":61726,\"flag-pennant\":62550,\"flag-swallowtail\":63308,\"flag-usa\":63309,\"flag\":61476,\"flashlight\":63672,\"flask-gear\":58865,\"flask-round-poison\":63200,\"flask-round-potion\":63201,\"flask-vial\":58611,\"flask\":61635,\"flatbread-stuffed\":58380,\"flatbread\":58379,\"floppy-disk-circle-arrow-right\":57728,\"floppy-disk-circle-xmark\":57729,\"floppy-disk-pen\":57730,\"floppy-disk\":61639,\"floppy-disks\":57731,\"florin-sign\":57732,\"flower-daffodil\":63488,\"flower-tulip\":63489,\"flower\":63487,\"flute\":63673,\"flux-capacitor\":63674,\"flying-disc\":58281,\"folder-arrow-down\":57427,\"folder-arrow-up\":57428,\"folder-bookmark\":57734,\"folder-check\":58958,\"folder-closed\":57733,\"folder-gear\":57735,\"folder-grid\":57736,\"folder-heart\":57737,\"folder-image\":57738,\"folder-magnifying-glass\":57739,\"folder-medical\":57740,\"folder-minus\":63069,\"folder-music\":57741,\"folder-open\":61564,\"folder-plus\":63070,\"folder-tree\":63490,\"folder-user\":57742,\"folder-xmark\":63071,\"folder\":61563,\"folders\":63072,\"fondue-pot\":58381,\"font-awesome\":62132,\"font-case\":63590,\"font\":61489,\"football-helmet\":62543,\"football\":62542,\"fork-knife\":62182,\"fork\":62179,\"forklift\":62586,\"fort\":58502,\"forward-fast\":61520,\"forward-step\":61521,\"forward\":61518,\"frame\":58517,\"franc-sign\":57743,\"french-fries\":63491,\"frog\":62766,\"function\":63073,\"futbol\":61923,\"g\":71,\"galaxy\":57352,\"gallery-thumbnails\":58282,\"game-board-simple\":63592,\"game-board\":63591,\"game-console-handheld-crank\":58809,\"game-console-handheld\":63675,\"gamepad-modern\":58786,\"gamepad\":61723,\"garage-car\":57354,\"garage-open\":57355,\"garage\":57353,\"garlic\":58382,\"gas-pump-slash\":62964,\"gas-pump\":62767,\"gauge-circle-bolt\":58518,\"gauge-circle-minus\":58519,\"gauge-circle-plus\":58520,\"gauge-high\":63013,\"gauge-low\":63015,\"gauge-max\":63014,\"gauge-min\":63016,\"gauge-simple-high\":63018,\"gauge-simple-low\":63020,\"gauge-simple-max\":63019,\"gauge-simple-min\":63021,\"gauge-simple\":63017,\"gauge\":63012,\"gavel\":61667,\"gear-code\":58856,\"gear-complex-code\":58859,\"gear-complex\":58857,\"gear\":61459,\"gears\":61573,\"gem\":62373,\"genderless\":61997,\"ghost\":63202,\"gif\":57744,\"gift-card\":63075,\"gift\":61547,\"gifts\":63388,\"gingerbread-man\":63389,\"glass-citrus\":63593,\"glass-empty\":57745,\"glass-half\":57746,\"glass-water-droplet\":58613,\"glass-water\":58612,\"glass\":63492,\"glasses-round\":62965,\"glasses\":62768,\"globe-pointer\":58894,\"globe-snow\":63395,\"globe-stand\":62966,\"globe-wifi\":59013,\"globe\":61612,\"goal-net\":58283,\"golf-ball-tee\":62544,\"golf-club\":62545,\"golf-flag-hole\":58284,\"gopuram\":63076,\"graduation-cap\":61853,\"gramophone\":63677,\"grapes\":58118,\"grate-droplet\":57748,\"grate\":57747,\"greater-than-equal\":62770,\"greater-than\":62,\"grid-2-plus\":57751,\"grid-2\":57750,\"grid-4\":57752,\"grid-5\":57753,\"grid-dividers\":58285,\"grid-horizontal\":58119,\"grid-round-2-plus\":58844,\"grid-round-2\":58843,\"grid-round-4\":58845,\"grid-round-5\":58846,\"grid-round\":58842,\"grid\":57749,\"grill-fire\":58788,\"grill-hot\":58789,\"grill\":58787,\"grip-dots-vertical\":58385,\"grip-dots\":58384,\"grip-lines-vertical\":63397,\"grip-lines\":63396,\"grip-vertical\":62862,\"grip\":62861,\"group-arrows-rotate\":58614,\"guarani-sign\":57754,\"guitar-electric\":63678,\"guitar\":63398,\"guitars\":63679,\"gun-slash\":57756,\"gun-squirt\":57757,\"gun\":57755,\"h\":72,\"h1\":62227,\"h2\":62228,\"h3\":62229,\"h4\":63594,\"h5\":58386,\"h6\":58387,\"hammer-brush\":58912,\"hammer-crash\":58388,\"hammer-war\":63204,\"hammer\":63203,\"hamsa\":63077,\"hand-back-fist\":62037,\"hand-back-point-down\":57758,\"hand-back-point-left\":57759,\"hand-back-point-ribbon\":57760,\"hand-back-point-right\":57761,\"hand-back-point-up\":57762,\"hand-dots\":62561,\"hand-fingers-crossed\":57763,\"hand-fist\":63198,\"hand-heart\":62652,\"hand-holding-box\":62587,\"hand-holding-circle-dollar\":58913,\"hand-holding-dollar\":62656,\"hand-holding-droplet\":62657,\"hand-holding-hand\":58615,\"hand-holding-heart\":62654,\"hand-holding-magic\":63205,\"hand-holding-medical\":57436,\"hand-holding-seedling\":62655,\"hand-holding-skull\":57764,\"hand-holding\":62653,\"hand-horns\":57769,\"hand-lizard\":62040,\"hand-love\":57765,\"hand-middle-finger\":63494,\"hand-peace\":62043,\"hand-point-down\":61607,\"hand-point-left\":61605,\"hand-point-ribbon\":57766,\"hand-point-right\":61604,\"hand-point-up\":61606,\"hand-pointer\":62042,\"hand-scissors\":62039,\"hand-sparkles\":57437,\"hand-spock\":62041,\"hand-wave\":57767,\"hand\":62038,\"handcuffs\":58616,\"hands-asl-interpreting\":62115,\"hands-bound\":58617,\"hands-bubbles\":57438,\"hands-clapping\":57768,\"hands-holding-child\":58618,\"hands-holding-circle\":58619,\"hands-holding-diamond\":62588,\"hands-holding-dollar\":62661,\"hands-holding-heart\":62659,\"hands-holding\":62658,\"hands-praying\":63108,\"hands\":62119,\"handshake-angle\":62660,\"handshake-simple-slash\":57439,\"handshake-simple\":62662,\"handshake-slash\":57440,\"handshake\":62133,\"hanukiah\":63206,\"hard-drive\":61600,\"hashtag-lock\":58389,\"hashtag\":35,\"hat-beach\":58886,\"hat-chef\":63595,\"hat-cowboy-side\":63681,\"hat-cowboy\":63680,\"hat-santa\":63399,\"hat-winter\":63400,\"hat-witch\":63207,\"hat-wizard\":63208,\"head-side-brain\":63496,\"head-side-cough-slash\":57442,\"head-side-cough\":57441,\"head-side-gear\":58897,\"head-side-goggles\":63210,\"head-side-headphones\":63682,\"head-side-heart\":57770,\"head-side-mask\":57443,\"head-side-medical\":63497,\"head-side-virus\":57444,\"head-side\":63209,\"heading\":61916,\"headphones-simple\":62863,\"headphones\":61477,\"headset\":62864,\"heart-circle-bolt\":58620,\"heart-circle-check\":58621,\"heart-circle-exclamation\":58622,\"heart-circle-minus\":58623,\"heart-circle-plus\":58624,\"heart-circle-xmark\":58625,\"heart-crack\":63401,\"heart-half-stroke\":57772,\"heart-half\":57771,\"heart-pulse\":61982,\"heart\":61444,\"heat\":57356,\"helicopter-symbol\":58626,\"helicopter\":62771,\"helmet-battle\":63211,\"helmet-safety\":63495,\"helmet-un\":58627,\"hexagon-check\":58390,\"hexagon-divide\":57773,\"hexagon-exclamation\":58391,\"hexagon-image\":58628,\"hexagon-minus\":62215,\"hexagon-nodes-bolt\":59034,\"hexagon-nodes\":59033,\"hexagon-plus\":62208,\"hexagon-vertical-nft-slanted\":58630,\"hexagon-vertical-nft\":58629,\"hexagon-xmark\":62190,\"hexagon\":62226,\"high-definition\":57774,\"highlighter-line\":57775,\"highlighter\":62865,\"hill-avalanche\":58631,\"hill-rockslide\":58632,\"hippo\":63213,\"hockey-mask\":63214,\"hockey-puck\":62547,\"hockey-stick-puck\":58286,\"hockey-sticks\":62548,\"holly-berry\":63402,\"honey-pot\":58392,\"hood-cloak\":63215,\"horizontal-rule\":63596,\"horse-head\":63403,\"horse-saddle\":63683,\"horse\":63216,\"hose-reel\":58394,\"hose\":58393,\"hospital-user\":63501,\"hospital\":61688,\"hospitals\":63502,\"hot-tub-person\":62867,\"hotdog\":63503,\"hotel\":62868,\"hourglass-clock\":58395,\"hourglass-end\":62035,\"hourglass-half\":62034,\"hourglass-start\":62033,\"hourglass\":62036,\"house-blank\":58503,\"house-building\":57777,\"house-chimney-blank\":58288,\"house-chimney-crack\":63217,\"house-chimney-heart\":57778,\"house-chimney-medical\":63474,\"house-chimney-user\":57445,\"house-chimney-window\":57357,\"house-chimney\":58287,\"house-circle-check\":58633,\"house-circle-exclamation\":58634,\"house-circle-xmark\":58635,\"house-crack\":58289,\"house-day\":57358,\"house-fire\":58636,\"house-flag\":58637,\"house-flood-water-circle-arrow-right\":58639,\"house-flood-water\":58638,\"house-heart\":62665,\"house-laptop\":57446,\"house-lock\":58640,\"house-medical-circle-check\":58641,\"house-medical-circle-exclamation\":58642,\"house-medical-circle-xmark\":58643,\"house-medical-flag\":58644,\"house-medical\":58290,\"house-night\":57360,\"house-person-leave\":57359,\"house-person-return\":57361,\"house-signal\":57362,\"house-tree\":57779,\"house-tsunami\":58645,\"house-turret\":57780,\"house-user\":57776,\"house-water\":63311,\"house-window\":58291,\"house\":61461,\"hryvnia-sign\":63218,\"hundred-points\":58396,\"hurricane\":63313,\"hydra\":59014,\"hyphen\":45,\"i-cursor\":62022,\"i\":73,\"ice-cream\":63504,\"ice-skate\":63404,\"icicles\":63405,\"icons\":63597,\"id-badge\":62145,\"id-card-clip\":62591,\"id-card\":62146,\"igloo\":63406,\"image-landscape\":57781,\"image-polaroid-user\":57782,\"image-polaroid\":63684,\"image-portrait\":62432,\"image-slash\":57783,\"image-user\":57784,\"image\":61502,\"images-user\":57785,\"images\":62210,\"inbox-full\":57786,\"inbox-in\":62224,\"inbox-out\":62225,\"inbox\":61468,\"inboxes\":57787,\"indent\":61500,\"indian-rupee-sign\":57788,\"industry-windows\":62387,\"industry\":62069,\"infinity\":62772,\"info\":61737,\"inhaler\":62969,\"input-numeric\":57789,\"input-pipe\":57790,\"input-text\":57791,\"integral\":63079,\"interrobang\":58810,\"intersection\":63080,\"island-tropical\":63505,\"italic\":61491,\"j\":74,\"jack-o-lantern\":62222,\"jar-wheat\":58647,\"jar\":58646,\"jedi\":63081,\"jet-fighter-up\":58648,\"jet-fighter\":61691,\"joint\":62869,\"joystick\":63685,\"jug-bottle\":58875,\"jug-detergent\":58649,\"jug\":63686,\"k\":75,\"kaaba\":63083,\"kazoo\":63687,\"kerning\":63599,\"key-skeleton-left-right\":58292,\"key-skeleton\":63219,\"key\":61572,\"keyboard-brightness-low\":57793,\"keyboard-brightness\":57792,\"keyboard-down\":57794,\"keyboard-left\":57795,\"keyboard\":61724,\"keynote\":63084,\"khanda\":63085,\"kidneys\":62971,\"kip-sign\":57796,\"kit-medical\":62585,\"kitchen-set\":58650,\"kite\":63220,\"kiwi-bird\":62773,\"kiwi-fruit\":58124,\"knife-kitchen\":63221,\"knife\":62180,\"l\":76,\"lacrosse-stick-ball\":58294,\"lacrosse-stick\":58293,\"lambda\":63086,\"lamp-desk\":57364,\"lamp-floor\":57365,\"lamp-street\":57797,\"lamp\":62666,\"land-mine-on\":58651,\"landmark-dome\":63314,\"landmark-flag\":58652,\"landmark-magnifying-glass\":58914,\"landmark\":63087,\"language\":61867,\"laptop-arrow-down\":57798,\"laptop-binary\":58855,\"laptop-code\":62972,\"laptop-file\":58653,\"laptop-medical\":63506,\"laptop-mobile\":63610,\"laptop-slash\":57799,\"laptop\":61705,\"lari-sign\":57800,\"lasso-sparkles\":57801,\"lasso\":63688,\"layer-group\":62973,\"layer-minus\":62974,\"layer-plus\":62975,\"leaf-heart\":62667,\"leaf-maple\":63222,\"leaf-oak\":63223,\"leaf\":61548,\"leafy-green\":58397,\"left-from-bracket\":58988,\"left-from-line\":62280,\"left-long-to-line\":58398,\"left-long\":62218,\"left-right\":62263,\"left-to-bracket\":58989,\"left-to-line\":62283,\"left\":62293,\"lemon\":61588,\"less-than-equal\":62775,\"less-than\":60,\"life-ring\":61901,\"light-ceiling\":57366,\"light-emergency-on\":58400,\"light-emergency\":58399,\"light-switch-off\":57368,\"light-switch-on\":57369,\"light-switch\":57367,\"lightbulb-cfl-on\":58791,\"lightbulb-cfl\":58790,\"lightbulb-dollar\":63088,\"lightbulb-exclamation-on\":57802,\"lightbulb-exclamation\":63089,\"lightbulb-gear\":58877,\"lightbulb-message\":59015,\"lightbulb-on\":63090,\"lightbulb-slash\":63091,\"lightbulb\":61675,\"lighthouse\":58898,\"lights-holiday\":63410,\"line-columns\":63600,\"line-height\":63601,\"lines-leaning\":58654,\"link-horizontal-slash\":57804,\"link-horizontal\":57803,\"link-simple-slash\":57806,\"link-simple\":57805,\"link-slash\":61735,\"link\":61633,\"lips\":62976,\"lira-sign\":61845,\"list-check\":61614,\"list-dropdown\":57807,\"list-music\":63689,\"list-ol\":61643,\"list-radio\":57808,\"list-timeline\":57809,\"list-tree\":57810,\"list-ul\":61642,\"list\":61498,\"litecoin-sign\":57811,\"loader\":57812,\"lobster\":58401,\"location-arrow-up\":58938,\"location-arrow\":61732,\"location-check\":62982,\"location-crosshairs-slash\":62979,\"location-crosshairs\":62977,\"location-dot-slash\":62981,\"location-dot\":62405,\"location-exclamation\":62984,\"location-minus\":62985,\"location-pen\":62983,\"location-pin-lock\":58655,\"location-pin-slash\":62988,\"location-pin\":61505,\"location-plus\":62986,\"location-question\":62987,\"location-smile\":62989,\"location-xmark\":62990,\"lock-a\":58402,\"lock-hashtag\":58403,\"lock-keyhole-open\":62402,\"lock-keyhole\":62221,\"lock-open\":62401,\"lock\":61475,\"locust\":58656,\"lollipop\":58404,\"loveseat\":62668,\"luchador-mask\":62549,\"lungs-virus\":57447,\"lungs\":62980,\"m\":77,\"mace\":63224,\"magnet\":61558,\"magnifying-glass-arrow-right\":58657,\"magnifying-glass-arrows-rotate\":58974,\"magnifying-glass-chart\":58658,\"magnifying-glass-dollar\":63112,\"magnifying-glass-location\":63113,\"magnifying-glass-minus\":61456,\"magnifying-glass-music\":58975,\"magnifying-glass-play\":58976,\"magnifying-glass-plus\":61454,\"magnifying-glass-waveform\":58977,\"magnifying-glass\":61442,\"mailbox-flag-up\":58811,\"mailbox\":63507,\"manat-sign\":57813,\"mandolin\":63225,\"mango\":58127,\"manhole\":57814,\"map-location-dot\":62880,\"map-location\":62879,\"map-pin\":62070,\"map\":62073,\"marker\":62881,\"mars-and-venus-burst\":58659,\"mars-and-venus\":61988,\"mars-double\":61991,\"mars-stroke-right\":61995,\"mars-stroke-up\":61994,\"mars-stroke\":61993,\"mars\":61986,\"martini-glass-citrus\":62817,\"martini-glass-empty\":61440,\"martini-glass\":62843,\"mask-face\":57815,\"mask-snorkel\":58295,\"mask-ventilator\":58660,\"mask\":63226,\"masks-theater\":63024,\"mattress-pillow\":58661,\"maximize\":62238,\"meat\":63508,\"medal\":62882,\"megaphone\":63093,\"melon-slice\":58129,\"melon\":58128,\"memo-circle-check\":57817,\"memo-circle-info\":58522,\"memo-pad\":57818,\"memo\":57816,\"memory\":62776,\"menorah\":63094,\"mercury\":61987,\"merge\":58662,\"message-arrow-down\":57819,\"message-arrow-up-right\":57821,\"message-arrow-up\":57820,\"message-bot\":58296,\"message-captions\":57822,\"message-check\":62626,\"message-code\":57823,\"message-dollar\":63056,\"message-dots\":62627,\"message-exclamation\":62629,\"message-heart\":58825,\"message-image\":57824,\"message-lines\":62630,\"message-medical\":63476,\"message-middle-top\":57826,\"message-middle\":57825,\"message-minus\":62631,\"message-music\":63663,\"message-pen\":62628,\"message-plus\":62632,\"message-question\":57827,\"message-quote\":57828,\"message-slash\":62633,\"message-smile\":62634,\"message-sms\":57829,\"message-text\":57830,\"message-xmark\":62635,\"message\":62074,\"messages-dollar\":63058,\"messages-question\":57831,\"messages\":62646,\"meteor\":63315,\"meter-bolt\":57833,\"meter-droplet\":57834,\"meter-fire\":57835,\"meter\":57832,\"microchip-ai\":57836,\"microchip\":62171,\"microphone-lines-slash\":62777,\"microphone-lines\":62409,\"microphone-slash\":61745,\"microphone-stand\":63691,\"microphone\":61744,\"microscope\":62992,\"microwave\":57371,\"mill-sign\":57837,\"minimize\":63372,\"minus\":61544,\"mistletoe\":63412,\"mitten\":63413,\"mobile-button\":61707,\"mobile-notch\":57838,\"mobile-retro\":58663,\"mobile-screen-button\":62413,\"mobile-screen\":62415,\"mobile-signal-out\":57840,\"mobile-signal\":57839,\"mobile\":62414,\"money-bill-1-wave\":62779,\"money-bill-1\":62417,\"money-bill-simple-wave\":57842,\"money-bill-simple\":57841,\"money-bill-transfer\":58664,\"money-bill-trend-up\":58665,\"money-bill-wave\":62778,\"money-bill-wheat\":58666,\"money-bill\":61654,\"money-bills-simple\":57844,\"money-bills\":57843,\"money-check-dollar-pen\":63603,\"money-check-dollar\":62781,\"money-check-pen\":63602,\"money-check\":62780,\"money-from-bracket\":58130,\"money-simple-from-bracket\":58131,\"monitor-waveform\":62993,\"monkey\":63227,\"monument\":62886,\"moon-cloud\":63316,\"moon-over-sun\":63306,\"moon-stars\":63317,\"moon\":61830,\"moped\":58297,\"mortar-pestle\":62887,\"mosque\":63096,\"mosquito-net\":58668,\"mosquito\":58667,\"motorcycle\":61980,\"mound\":58669,\"mountain-city\":58670,\"mountain-sun\":58671,\"mountain\":63228,\"mountains\":63229,\"mouse-field\":58792,\"mp3-player\":63694,\"mug-hot\":63414,\"mug-marshmallows\":63415,\"mug-saucer\":61684,\"mug-tea-saucer\":57845,\"mug-tea\":63605,\"mug\":63604,\"mushroom\":58405,\"music-magnifying-glass\":58978,\"music-note-slash\":63696,\"music-note\":63695,\"music-slash\":63697,\"music\":61441,\"mustache\":58812,\"n\":78,\"naira-sign\":57846,\"narwhal\":63230,\"nesting-dolls\":58298,\"network-wired\":63231,\"neuter\":61996,\"newspaper\":61930,\"nfc-lock\":57848,\"nfc-magnifying-glass\":57849,\"nfc-pen\":57850,\"nfc-signal\":57851,\"nfc-slash\":57852,\"nfc-symbol\":58673,\"nfc-trash\":57853,\"nfc\":57847,\"nose\":58813,\"not-equal\":62782,\"notdef\":57854,\"note-medical\":57856,\"note-sticky\":62025,\"note\":57855,\"notebook\":57857,\"notes-medical\":62593,\"notes\":57858,\"o\":79,\"object-exclude\":58524,\"object-group\":62023,\"object-intersect\":58525,\"object-subtract\":58526,\"object-ungroup\":62024,\"object-union\":58527,\"objects-align-bottom\":58299,\"objects-align-center-horizontal\":58300,\"objects-align-center-vertical\":58301,\"objects-align-left\":58302,\"objects-align-right\":58303,\"objects-align-top\":58304,\"objects-column\":58305,\"octagon-check\":58406,\"octagon-divide\":57859,\"octagon-exclamation\":57860,\"octagon-minus\":62216,\"octagon-plus\":62209,\"octagon-xmark\":62192,\"octagon\":62214,\"octopus\":59016,\"oil-can-drip\":57861,\"oil-can\":62995,\"oil-temperature\":62996,\"oil-well\":58674,\"olive-branch\":58135,\"olive\":58134,\"om\":63097,\"omega\":63098,\"onion\":58407,\"option\":58136,\"ornament\":63416,\"otter\":63232,\"outdent\":61499,\"outlet\":57372,\"oven\":57373,\"overline\":63606,\"p\":80,\"page-caret-down\":58409,\"page-caret-up\":58410,\"page\":58408,\"pager\":63509,\"paint-roller\":62890,\"paintbrush-fine\":62889,\"paintbrush-pencil\":57862,\"paintbrush\":61948,\"palette\":62783,\"pallet-box\":57864,\"pallet-boxes\":62595,\"pallet\":62594,\"pan-food\":58411,\"pan-frying\":58412,\"pancakes\":58413,\"panel-ews\":58414,\"panel-fire\":58415,\"panorama\":57865,\"paper-plane-top\":57866,\"paper-plane\":61912,\"paperclip-vertical\":58306,\"paperclip\":61638,\"parachute-box\":62669,\"paragraph-left\":63608,\"paragraph\":61917,\"party-bell\":58138,\"party-horn\":58139,\"passport\":62891,\"paste\":61674,\"pause\":61516,\"paw-claws\":63234,\"paw-simple\":63233,\"paw\":61872,\"peace\":63100,\"peach\":57867,\"peanut\":58416,\"peanuts\":58417,\"peapod\":58140,\"pear\":57868,\"pedestal\":57869,\"pegasus\":63235,\"pen-circle\":57870,\"pen-clip-slash\":57871,\"pen-clip\":62213,\"pen-fancy-slash\":57872,\"pen-fancy\":62892,\"pen-field\":57873,\"pen-line\":57874,\"pen-nib-slash\":58529,\"pen-nib\":62893,\"pen-paintbrush\":63000,\"pen-ruler\":62894,\"pen-slash\":57875,\"pen-swirl\":57876,\"pen-to-square\":61508,\"pen\":62212,\"pencil-mechanical\":58826,\"pencil-slash\":57877,\"pencil\":62211,\"people-arrows\":57448,\"people-carry-box\":62670,\"people-dress-simple\":57880,\"people-dress\":57879,\"people-group\":58675,\"people-line\":58676,\"people-pants-simple\":57882,\"people-pants\":57881,\"people-pulling\":58677,\"people-robbery\":58678,\"people-roof\":58679,\"people-simple\":57883,\"people\":57878,\"pepper-hot\":63510,\"pepper\":58418,\"percent\":37,\"period\":46,\"person-arrow-down-to-line\":58680,\"person-arrow-up-from-line\":58681,\"person-biking-mountain\":63563,\"person-biking\":63562,\"person-booth\":63318,\"person-breastfeeding\":58682,\"person-burst\":58683,\"person-cane\":58684,\"person-carry-box\":62671,\"person-chalkboard\":58685,\"person-circle-check\":58686,\"person-circle-exclamation\":58687,\"person-circle-minus\":58688,\"person-circle-plus\":58689,\"person-circle-question\":58690,\"person-circle-xmark\":58691,\"person-digging\":63582,\"person-dolly-empty\":62673,\"person-dolly\":62672,\"person-dots-from-line\":62576,\"person-dress-burst\":58692,\"person-dress-fairy\":58887,\"person-dress-simple\":57884,\"person-dress\":61826,\"person-drowning\":58693,\"person-fairy\":58888,\"person-falling-burst\":58695,\"person-falling\":58694,\"person-from-portal\":57379,\"person-half-dress\":58696,\"person-harassing\":58697,\"person-hiking\":63212,\"person-military-pointing\":58698,\"person-military-rifle\":58699,\"person-military-to-person\":58700,\"person-pinball\":57885,\"person-praying\":63107,\"person-pregnant\":58142,\"person-rays\":58701,\"person-rifle\":58702,\"person-running-fast\":58879,\"person-running\":63244,\"person-seat-reclined\":57887,\"person-seat\":57886,\"person-shelter\":58703,\"person-sign\":63319,\"person-simple\":57888,\"person-skating\":63429,\"person-ski-jumping\":63431,\"person-ski-lift\":63432,\"person-skiing-nordic\":63434,\"person-skiing\":63433,\"person-sledding\":63435,\"person-snowboarding\":63438,\"person-snowmobiling\":63441,\"person-swimming\":62916,\"person-through-window\":58793,\"person-to-door\":58419,\"person-to-portal\":57378,\"person-walking-arrow-loop-left\":58705,\"person-walking-arrow-right\":58706,\"person-walking-dashed-line-arrow-right\":58707,\"person-walking-luggage\":58708,\"person-walking-with-cane\":62109,\"person-walking\":62804,\"person\":61827,\"peseta-sign\":57889,\"peso-sign\":57890,\"phone-arrow-down-left\":57891,\"phone-arrow-right\":58814,\"phone-arrow-up-right\":57892,\"phone-flip\":63609,\"phone-hangup\":57893,\"phone-intercom\":58420,\"phone-missed\":57894,\"phone-office\":63101,\"phone-plus\":62674,\"phone-rotary\":63699,\"phone-slash\":62429,\"phone-volume\":62112,\"phone-xmark\":57895,\"phone\":61589,\"photo-film-music\":57896,\"photo-film\":63612,\"pi\":63102,\"piano-keyboard\":63701,\"piano\":63700,\"pickaxe\":58815,\"pickleball\":58421,\"pie\":63237,\"pig\":63238,\"piggy-bank\":62675,\"pills\":62596,\"pinata\":58307,\"pinball\":57897,\"pineapple\":58143,\"pipe-circle-check\":58422,\"pipe-collar\":58423,\"pipe-section\":58424,\"pipe-smoking\":58308,\"pipe-valve\":58425,\"pipe\":124,\"pizza-slice\":63512,\"pizza\":63511,\"place-of-worship\":63103,\"plane-arrival\":62895,\"plane-circle-check\":58709,\"plane-circle-exclamation\":58710,\"plane-circle-xmark\":58711,\"plane-departure\":62896,\"plane-engines\":62430,\"plane-lock\":58712,\"plane-prop\":57899,\"plane-slash\":57449,\"plane-tail\":57900,\"plane-up-slash\":57902,\"plane-up\":57901,\"plane\":61554,\"planet-moon\":57375,\"planet-ringed\":57376,\"plant-wilt\":58794,\"plate-utensils\":58427,\"plate-wheat\":58714,\"play-pause\":57903,\"play\":61515,\"plug-circle-bolt\":58715,\"plug-circle-check\":58716,\"plug-circle-exclamation\":58717,\"plug-circle-minus\":58718,\"plug-circle-plus\":58719,\"plug-circle-xmark\":58720,\"plug\":61926,\"plus-large\":58782,\"plus-minus\":58428,\"plus\":43,\"podcast\":62158,\"podium-star\":63320,\"podium\":63104,\"police-box\":57377,\"poll-people\":63321,\"pompebled\":58429,\"poo-storm\":63322,\"poo\":62206,\"pool-8-ball\":58309,\"poop\":63001,\"popcorn\":63513,\"popsicle\":58430,\"pot-food\":58431,\"potato\":58432,\"power-off\":61457,\"prescription-bottle-medical\":62598,\"prescription-bottle-pill\":58816,\"prescription-bottle\":62597,\"prescription\":62897,\"presentation-screen\":63109,\"pretzel\":58433,\"print-magnifying-glass\":63514,\"print-slash\":63110,\"print\":61487,\"projector\":63702,\"pump-medical\":57450,\"pump-soap\":57451,\"pump\":58434,\"pumpkin\":63239,\"puzzle-piece-simple\":57905,\"puzzle-piece\":61742,\"puzzle\":58435,\"q\":81,\"qrcode\":61481,\"question\":63,\"quote-left\":61709,\"quote-right\":61710,\"quotes\":57908,\"r\":82,\"rabbit-running\":63241,\"rabbit\":63240,\"raccoon\":58899,\"racquet\":62554,\"radar\":57380,\"radiation\":63417,\"radio-tuner\":63704,\"radio\":63703,\"rainbow\":63323,\"raindrops\":63324,\"ram\":63242,\"ramp-loading\":62676,\"ranking-star\":58721,\"raygun\":57381,\"receipt\":62787,\"record-vinyl\":63705,\"rectangle-ad\":63041,\"rectangle-barcode\":62563,\"rectangle-code\":58146,\"rectangle-history-circle-plus\":58531,\"rectangle-history-circle-user\":58532,\"rectangle-history\":58530,\"rectangle-list\":61474,\"rectangle-pro\":57909,\"rectangle-terminal\":57910,\"rectangle-vertical-history\":57911,\"rectangle-vertical\":62203,\"rectangle-wide\":62204,\"rectangle-xmark\":62480,\"rectangle\":62202,\"rectangles-mixed\":58147,\"recycle\":61880,\"reel\":57912,\"reflect-both\":58991,\"reflect-horizontal\":58980,\"reflect-vertical\":58981,\"refrigerator\":57382,\"registered\":62045,\"repeat-1\":62309,\"repeat\":62307,\"reply-all\":61730,\"reply-clock\":57913,\"reply\":62437,\"republican\":63326,\"restroom-simple\":57914,\"restroom\":63421,\"retweet\":61561,\"rhombus\":57915,\"ribbon\":62678,\"right-from-bracket\":62197,\"right-from-line\":62279,\"right-left-large\":58849,\"right-left\":62306,\"right-long-to-line\":58436,\"right-long\":62219,\"right-to-bracket\":62198,\"right-to-line\":62284,\"right\":62294,\"ring-diamond\":58795,\"ring\":63243,\"rings-wedding\":63515,\"road-barrier\":58722,\"road-bridge\":58723,\"road-circle-check\":58724,\"road-circle-exclamation\":58725,\"road-circle-xmark\":58726,\"road-lock\":58727,\"road-spikes\":58728,\"road\":61464,\"robot-astromech\":58066,\"robot\":62788,\"rocket-launch\":57383,\"rocket\":61749,\"roller-coaster\":58148,\"rotate-exclamation\":57916,\"rotate-left\":62186,\"rotate-reverse\":58929,\"rotate-right\":62201,\"rotate\":62193,\"route-highway\":63002,\"route-interstate\":63003,\"route\":62679,\"router\":63706,\"rss\":61598,\"ruble-sign\":61784,\"rug\":58729,\"rugby-ball\":58310,\"ruler-combined\":62790,\"ruler-horizontal\":62791,\"ruler-triangle\":63004,\"ruler-vertical\":62792,\"ruler\":62789,\"rupee-sign\":61782,\"rupiah-sign\":57917,\"rv\":63422,\"s\":83,\"sack-dollar\":63517,\"sack-xmark\":58730,\"sack\":63516,\"sailboat\":58437,\"salad\":63518,\"salt-shaker\":58438,\"sandwich\":63519,\"satellite-dish\":63424,\"satellite\":63423,\"sausage\":63520,\"saxophone-fire\":63707,\"saxophone\":63708,\"scale-balanced\":62030,\"scale-unbalanced-flip\":62742,\"scale-unbalanced\":62741,\"scalpel-line-dashed\":63006,\"scalpel\":63005,\"scanner-gun\":62600,\"scanner-image\":63731,\"scanner-keyboard\":62601,\"scanner-touchscreen\":62602,\"scarecrow\":63245,\"scarf\":63425,\"school-circle-check\":58731,\"school-circle-exclamation\":58732,\"school-circle-xmark\":58733,\"school-flag\":58734,\"school-lock\":58735,\"school\":62793,\"scissors\":61636,\"screen-users\":63037,\"screencast\":57918,\"screwdriver-wrench\":63449,\"screwdriver\":62794,\"scribble\":57919,\"scroll-old\":63247,\"scroll-torah\":63136,\"scroll\":63246,\"scrubber\":62200,\"scythe\":63248,\"sd-card\":63426,\"sd-cards\":57920,\"seal-exclamation\":57922,\"seal-question\":57923,\"seal\":57921,\"seat-airline\":57924,\"section\":58439,\"seedling\":62680,\"semicolon\":59,\"send-back\":63614,\"send-backward\":63615,\"sensor-cloud\":57388,\"sensor-fire\":57386,\"sensor-on\":57387,\"sensor-triangle-exclamation\":57385,\"sensor\":57384,\"server\":62003,\"shapes\":63007,\"share-all\":62311,\"share-from-square\":61773,\"share-nodes\":61920,\"share\":61540,\"sheep\":63249,\"sheet-plastic\":58737,\"shekel-sign\":61963,\"shelves-empty\":57926,\"shelves\":62592,\"shield-cat\":58738,\"shield-check\":62199,\"shield-cross\":63250,\"shield-dog\":58739,\"shield-exclamation\":57927,\"shield-halved\":62445,\"shield-heart\":58740,\"shield-keyhole\":57928,\"shield-minus\":57929,\"shield-plus\":57930,\"shield-quartered\":58741,\"shield-slash\":57931,\"shield-virus\":57452,\"shield-xmark\":57932,\"shield\":61746,\"ship\":61978,\"shirt-long-sleeve\":58311,\"shirt-running\":58312,\"shirt-tank-top\":58313,\"shirt\":62803,\"shish-kebab\":63521,\"shoe-prints\":62795,\"shop-lock\":58533,\"shop-slash\":57456,\"shop\":62799,\"shovel-snow\":63427,\"shovel\":63251,\"shower-down\":57933,\"shower\":62156,\"shredder\":63114,\"shrimp\":58440,\"shuffle\":61556,\"shutters\":58441,\"shuttle-space\":61847,\"shuttlecock\":62555,\"sickle\":63522,\"sidebar-flip\":57935,\"sidebar\":57934,\"sigma\":63115,\"sign-hanging\":62681,\"sign-post\":58916,\"sign-posts-wrench\":58918,\"sign-posts\":58917,\"signal-bars-fair\":63122,\"signal-bars-good\":63123,\"signal-bars-slash\":63124,\"signal-bars-weak\":63121,\"signal-bars\":63120,\"signal-fair\":63117,\"signal-good\":63118,\"signal-slash\":63125,\"signal-stream-slash\":57936,\"signal-stream\":63709,\"signal-strong\":63119,\"signal-weak\":63116,\"signal\":61458,\"signature-lock\":58314,\"signature-slash\":58315,\"signature\":62903,\"signs-post\":62071,\"sim-card\":63428,\"sim-cards\":57937,\"sink\":57453,\"siren-on\":57390,\"siren\":57389,\"sitemap\":61672,\"skeleton-ribs\":58827,\"skeleton\":63008,\"ski-boot-ski\":58317,\"ski-boot\":58316,\"skull-cow\":63710,\"skull-crossbones\":63252,\"skull\":62796,\"slash-back\":92,\"slash-forward\":47,\"slash\":63253,\"sleigh\":63436,\"slider\":57938,\"sliders-simple\":57939,\"sliders-up\":62449,\"sliders\":61918,\"slot-machine\":58318,\"smog\":63327,\"smoke\":63328,\"smoking\":62605,\"snake\":63254,\"snooze\":63616,\"snow-blowing\":63329,\"snowflake-droplets\":58817,\"snowflake\":62172,\"snowflakes\":63439,\"snowman-head\":63387,\"snowman\":63440,\"snowplow\":63442,\"soap\":57454,\"socks\":63126,\"soft-serve\":58368,\"solar-panel\":62906,\"solar-system\":57391,\"sort-down\":61661,\"sort-up\":61662,\"sort\":61660,\"spa\":62907,\"space-station-moon-construction\":57396,\"space-station-moon\":57395,\"spade\":62196,\"spaghetti-monster-flying\":63099,\"sparkle\":58838,\"sparkles\":63632,\"speaker\":63711,\"speakers\":63712,\"spell-check\":63633,\"spider-black-widow\":63256,\"spider-web\":63257,\"spider\":63255,\"spinner-scale\":58922,\"spinner-third\":62452,\"spinner\":61712,\"split\":57940,\"splotch\":62908,\"spoon\":62181,\"sportsball\":58443,\"spray-can-sparkles\":62928,\"spray-can\":62909,\"sprinkler-ceiling\":58444,\"sprinkler\":57397,\"square-0\":57941,\"square-1\":57942,\"square-2\":57943,\"square-3\":57944,\"square-4\":57945,\"square-5\":57946,\"square-6\":57947,\"square-7\":57948,\"square-8\":57949,\"square-9\":57950,\"square-a-lock\":58445,\"square-a\":57951,\"square-ampersand\":57952,\"square-arrow-down-left\":57953,\"square-arrow-down-right\":57954,\"square-arrow-down\":62265,\"square-arrow-left\":62266,\"square-arrow-right\":62267,\"square-arrow-up-left\":57955,\"square-arrow-up-right\":61772,\"square-arrow-up\":62268,\"square-b\":57956,\"square-binary\":59035,\"square-bolt\":57957,\"square-c\":57958,\"square-caret-down\":61776,\"square-caret-left\":61841,\"square-caret-right\":61778,\"square-caret-up\":61777,\"square-check\":61770,\"square-chevron-down\":62249,\"square-chevron-left\":62250,\"square-chevron-right\":62251,\"square-chevron-up\":62252,\"square-code\":57959,\"square-d\":57960,\"square-dashed-circle-plus\":58818,\"square-dashed\":57961,\"square-divide\":57962,\"square-dollar\":62185,\"square-down-left\":57963,\"square-down-right\":57964,\"square-down\":62288,\"square-e\":57965,\"square-ellipsis-vertical\":57967,\"square-ellipsis\":57966,\"square-envelope\":61849,\"square-exclamation\":62241,\"square-f\":57968,\"square-fragile\":62619,\"square-full\":62556,\"square-g\":57969,\"square-h\":61693,\"square-heart\":62664,\"square-i\":57970,\"square-info\":62223,\"square-j\":57971,\"square-k\":57972,\"square-kanban\":58504,\"square-l\":57973,\"square-left\":62289,\"square-list\":58505,\"square-m\":57974,\"square-minus\":61766,\"square-n\":57975,\"square-nfi\":58742,\"square-o\":57976,\"square-p\":57977,\"square-parking-slash\":62999,\"square-parking\":62784,\"square-pen\":61771,\"square-person-confined\":58743,\"square-phone-flip\":63611,\"square-phone-hangup\":57978,\"square-phone\":61592,\"square-plus\":61694,\"square-poll-horizontal\":63106,\"square-poll-vertical\":63105,\"square-q\":57979,\"square-quarters\":58446,\"square-question\":62205,\"square-quote\":58153,\"square-r\":57980,\"square-right\":62290,\"square-ring\":58447,\"square-root-variable\":63128,\"square-root\":63127,\"square-rss\":61763,\"square-s\":57981,\"square-share-nodes\":61921,\"square-sliders-vertical\":62450,\"square-sliders\":62448,\"square-small\":57982,\"square-star\":57983,\"square-t\":57984,\"square-terminal\":58154,\"square-this-way-up\":62623,\"square-u\":57985,\"square-up-left\":57986,\"square-up-right\":62304,\"square-up\":62291,\"square-user\":57987,\"square-v\":57988,\"square-virus\":58744,\"square-w\":57989,\"square-x\":57990,\"square-xmark\":62163,\"square-y\":57991,\"square-z\":57992,\"square\":61640,\"squid\":58448,\"squirrel\":63258,\"staff-snake\":58745,\"staff\":63259,\"stairs\":57993,\"stamp\":62911,\"standard-definition\":57994,\"stapler\":58799,\"star-and-crescent\":63129,\"star-christmas\":63444,\"star-exclamation\":62195,\"star-half-stroke\":62912,\"star-half\":61577,\"star-of-david\":63130,\"star-of-life\":63009,\"star-sharp-half-stroke\":57997,\"star-sharp-half\":57996,\"star-sharp\":57995,\"star-shooting\":57398,\"star\":61445,\"starfighter-twin-ion-engine-advanced\":57998,\"starfighter-twin-ion-engine\":57400,\"starfighter\":57399,\"stars\":63330,\"starship-freighter\":57402,\"starship\":57401,\"steak\":63524,\"steering-wheel\":63010,\"sterling-sign\":61780,\"stethoscope\":61681,\"stocking\":63445,\"stomach\":63011,\"stop\":61517,\"stopwatch-20\":57455,\"stopwatch\":62194,\"store-lock\":58534,\"store-slash\":57457,\"store\":62798,\"strawberry\":58155,\"street-view\":61981,\"stretcher\":63525,\"strikethrough\":61644,\"stroopwafel\":62801,\"subscript\":61740,\"subtitles-slash\":58896,\"subtitles\":58895,\"suitcase-medical\":61690,\"suitcase-rolling\":62913,\"suitcase\":61682,\"sun-bright\":57999,\"sun-cloud\":63331,\"sun-dust\":63332,\"sun-haze\":63333,\"sun-plant-wilt\":58746,\"sun\":61829,\"sunglasses\":63634,\"sunrise\":63334,\"sunset\":63335,\"superscript\":61739,\"sushi-roll\":58507,\"sushi\":58506,\"swap-arrows\":58890,\"swap\":58889,\"swatchbook\":62915,\"sword-laser-alt\":57404,\"sword-laser\":57403,\"sword\":63260,\"swords-laser\":57405,\"swords\":63261,\"symbols\":63598,\"synagogue\":63131,\"syringe\":62606,\"t-rex\":58921,\"t\":84,\"table-cells-column-lock\":59000,\"table-cells-column-unlock\":59024,\"table-cells-large\":61449,\"table-cells-lock\":59001,\"table-cells-row-lock\":59002,\"table-cells-row-unlock\":59025,\"table-cells-unlock\":59026,\"table-cells\":61450,\"table-columns\":61659,\"table-layout\":58000,\"table-list\":61451,\"table-picnic\":58157,\"table-pivot\":58001,\"table-rows\":58002,\"table-tennis-paddle-ball\":62557,\"table-tree\":58003,\"table\":61646,\"tablet-button\":61706,\"tablet-rugged\":62607,\"tablet-screen-button\":62458,\"tablet-screen\":62460,\"tablet\":62459,\"tablets\":62608,\"tachograph-digital\":62822,\"taco\":63526,\"tag\":61483,\"tags\":61484,\"tally-1\":58004,\"tally-2\":58005,\"tally-3\":58006,\"tally-4\":58007,\"tally\":63132,\"tamale\":58449,\"tank-water\":58450,\"tape\":62683,\"tarp-droplet\":58748,\"tarp\":58747,\"taxi-bus\":58008,\"taxi\":61882,\"teddy-bear\":58319,\"teeth-open\":63023,\"teeth\":63022,\"telescope\":57406,\"temperature-arrow-down\":57407,\"temperature-arrow-up\":57408,\"temperature-empty\":62155,\"temperature-full\":62151,\"temperature-half\":62153,\"temperature-high\":63337,\"temperature-list\":58009,\"temperature-low\":63339,\"temperature-quarter\":62154,\"temperature-snow\":63336,\"temperature-sun\":63338,\"temperature-three-quarters\":62152,\"tenge-sign\":63447,\"tennis-ball\":62558,\"tent-arrow-down-to-line\":58750,\"tent-arrow-left-right\":58751,\"tent-arrow-turn-left\":58752,\"tent-arrows-down\":58753,\"tent-double-peak\":58919,\"tent\":58749,\"tents\":58754,\"terminal\":61728,\"text-height\":61492,\"text-size\":63636,\"text-slash\":63613,\"text-width\":61493,\"text\":63635,\"thermometer\":62609,\"theta\":63134,\"thought-bubble\":58158,\"thumbs-down\":61797,\"thumbs-up\":61796,\"thumbtack-slash\":59023,\"thumbtack\":61581,\"tick\":58159,\"ticket-airline\":58010,\"ticket-perforated\":58942,\"ticket-simple\":62463,\"ticket\":61765,\"tickets-airline\":58011,\"tickets-perforated\":58943,\"tickets-simple\":58969,\"tickets\":58968,\"tilde\":126,\"timeline-arrow\":58013,\"timeline\":58012,\"timer\":58014,\"tire-flat\":63026,\"tire-pressure-warning\":63027,\"tire-rugged\":63028,\"tire\":63025,\"toggle-large-off\":58800,\"toggle-large-on\":58801,\"toggle-off\":61956,\"toggle-on\":61957,\"toilet-paper-blank-under\":58015,\"toilet-paper-blank\":63263,\"toilet-paper-check\":58802,\"toilet-paper-slash\":57458,\"toilet-paper-under-slash\":58017,\"toilet-paper-under\":58016,\"toilet-paper-xmark\":58803,\"toilet-paper\":63262,\"toilet-portable\":58755,\"toilet\":63448,\"toilets-portable\":58756,\"tomato\":58160,\"tombstone-blank\":63265,\"tombstone\":63264,\"toolbox\":62802,\"tooth\":62921,\"toothbrush\":63029,\"torii-gate\":63137,\"tornado\":63343,\"tower-broadcast\":62745,\"tower-cell\":58757,\"tower-control\":58018,\"tower-observation\":58758,\"tractor\":63266,\"trademark\":62044,\"traffic-cone\":63030,\"traffic-light-go\":63032,\"traffic-light-slow\":63033,\"traffic-light-stop\":63034,\"traffic-light\":63031,\"trailer\":57409,\"train-subway-tunnel\":58019,\"train-subway\":62009,\"train-track\":58451,\"train-tram\":58804,\"train-tunnel\":58452,\"train\":62008,\"transformer-bolt\":58020,\"transgender\":61989,\"transporter-1\":57411,\"transporter-2\":57412,\"transporter-3\":57413,\"transporter-4\":58021,\"transporter-5\":58022,\"transporter-6\":58023,\"transporter-7\":58024,\"transporter-empty\":57414,\"transporter\":57410,\"trash-arrow-up\":63529,\"trash-can-arrow-up\":63530,\"trash-can-check\":58025,\"trash-can-clock\":58026,\"trash-can-list\":58027,\"trash-can-plus\":58028,\"trash-can-slash\":58029,\"trash-can-undo\":63638,\"trash-can-xmark\":58030,\"trash-can\":62189,\"trash-check\":58031,\"trash-clock\":58032,\"trash-list\":58033,\"trash-plus\":58034,\"trash-slash\":58035,\"trash-undo\":63637,\"trash-xmark\":58036,\"trash\":61944,\"treasure-chest\":63267,\"tree-christmas\":63451,\"tree-city\":58759,\"tree-deciduous\":62464,\"tree-decorated\":63452,\"tree-large\":63453,\"tree-palm\":63531,\"tree\":61883,\"trees\":63268,\"triangle-exclamation\":61553,\"triangle-instrument\":63714,\"triangle-person-digging\":63581,\"triangle\":62188,\"tricycle-adult\":58820,\"tricycle\":58819,\"trillium\":58760,\"trophy-star\":62187,\"trophy\":61585,\"trowel-bricks\":58762,\"trowel\":58761,\"truck-arrow-right\":58763,\"truck-bolt\":58320,\"truck-clock\":62604,\"truck-container-empty\":58037,\"truck-container\":62684,\"truck-droplet\":58764,\"truck-fast\":62603,\"truck-field-un\":58766,\"truck-field\":58765,\"truck-fire\":58970,\"truck-flatbed\":58038,\"truck-front\":58039,\"truck-ladder\":58967,\"truck-medical\":61689,\"truck-monster\":63035,\"truck-moving\":62687,\"truck-pickup\":63036,\"truck-plane\":58767,\"truck-plow\":63454,\"truck-ramp-box\":62686,\"truck-ramp-couch\":62685,\"truck-ramp\":62688,\"truck-tow\":58040,\"truck-utensils\":58920,\"truck\":61649,\"trumpet\":63715,\"tty-answer\":58041,\"tty\":61924,\"tugrik-sign\":58042,\"turkey\":63269,\"turkish-lira-sign\":58043,\"turn-down-left\":58161,\"turn-down-right\":58453,\"turn-down\":62398,\"turn-left-down\":58935,\"turn-left-up\":58936,\"turn-left\":58934,\"turn-right\":58937,\"turn-up\":62399,\"turntable\":63716,\"turtle\":63270,\"tv-music\":63718,\"tv-retro\":62465,\"tv\":62060,\"typewriter\":63719,\"u\":85,\"ufo-beam\":57416,\"ufo\":57415,\"umbrella-beach\":62922,\"umbrella-simple\":58044,\"umbrella\":61673,\"underline\":61645,\"unicorn\":63271,\"uniform-martial-arts\":58321,\"union\":63138,\"universal-access\":62106,\"unlock-keyhole\":61758,\"unlock\":61596,\"up-down-left-right\":61618,\"up-down\":62264,\"up-from-bracket\":58768,\"up-from-dotted-line\":58454,\"up-from-line\":62278,\"up-left\":58045,\"up-long\":62220,\"up-right-and-down-left-from-center\":62500,\"up-right-from-square\":62301,\"up-right\":58046,\"up-to-bracket\":58990,\"up-to-dotted-line\":58455,\"up-to-line\":62285,\"up\":62295,\"upload\":61587,\"usb-drive\":63721,\"user-alien\":57418,\"user-astronaut\":62715,\"user-beard-bolt\":59017,\"user-bounty-hunter\":58047,\"user-check\":62716,\"user-chef\":58322,\"user-clock\":62717,\"user-cowboy\":63722,\"user-crown\":63140,\"user-doctor-hair-long\":58457,\"user-doctor-hair\":58456,\"user-doctor-message\":63534,\"user-doctor\":61680,\"user-gear\":62718,\"user-graduate\":62721,\"user-group-crown\":63141,\"user-group-simple\":58883,\"user-group\":62720,\"user-hair-buns\":58323,\"user-hair-long\":58459,\"user-hair-mullet\":58460,\"user-hair\":58458,\"user-headset\":63533,\"user-helmet-safety\":63532,\"user-hoodie\":59018,\"user-injured\":63272,\"user-large-slash\":62714,\"user-large\":62470,\"user-lock\":62722,\"user-magnifying-glass\":58821,\"user-minus\":62723,\"user-music\":63723,\"user-ninja\":62724,\"user-nurse-hair-long\":58462,\"user-nurse-hair\":58461,\"user-nurse\":63535,\"user-pen\":62719,\"user-pilot-tie\":58049,\"user-pilot\":58048,\"user-plus\":62004,\"user-police-tie\":58164,\"user-police\":58163,\"user-robot-xmarks\":58535,\"user-robot\":57419,\"user-secret\":61979,\"user-shakespeare\":58050,\"user-shield\":62725,\"user-slash\":62726,\"user-tag\":62727,\"user-tie-hair-long\":58464,\"user-tie-hair\":58463,\"user-tie\":62728,\"user-unlock\":57432,\"user-visor\":57420,\"user-vneck-hair-long\":58467,\"user-vneck-hair\":58466,\"user-vneck\":58465,\"user-xmark\":62005,\"user\":61447,\"users-between-lines\":58769,\"users-gear\":62729,\"users-line\":58770,\"users-medical\":63536,\"users-rays\":58771,\"users-rectangle\":58772,\"users-slash\":57459,\"users-viewfinder\":58773,\"users\":61632,\"utensils-slash\":58468,\"utensils\":62183,\"utility-pole-double\":58052,\"utility-pole\":58051,\"v\":86,\"vacuum-robot\":57422,\"vacuum\":57421,\"value-absolute\":63142,\"van-shuttle\":62902,\"vault\":58053,\"vector-circle\":58054,\"vector-polygon\":58055,\"vector-square\":62923,\"vent-damper\":58469,\"venus-double\":61990,\"venus-mars\":61992,\"venus\":61985,\"vest-patches\":57478,\"vest\":57477,\"vial-circle-check\":58774,\"vial-virus\":58775,\"vial\":62610,\"vials\":62611,\"video-arrow-down-left\":58056,\"video-arrow-up-right\":58057,\"video-plus\":62689,\"video-slash\":62690,\"video\":61501,\"vihara\":63143,\"violin\":63725,\"virus-covid-slash\":58537,\"virus-covid\":58536,\"virus-slash\":57461,\"virus\":57460,\"viruses\":57462,\"voicemail\":63639,\"volcano\":63344,\"volleyball\":62559,\"volume-high\":61480,\"volume-low\":61479,\"volume-off\":61478,\"volume-slash\":62178,\"volume-xmark\":63145,\"volume\":63144,\"vr-cardboard\":63273,\"w\":87,\"waffle\":58470,\"wagon-covered\":63726,\"walker\":63537,\"walkie-talkie\":63727,\"wallet\":62805,\"wand-magic-sparkles\":58058,\"wand-magic\":61648,\"wand-sparkles\":63275,\"wand\":63274,\"warehouse-full\":62613,\"warehouse\":62612,\"washing-machine\":63640,\"watch-apple\":58059,\"watch-calculator\":63728,\"watch-fitness\":63038,\"watch-smart\":58060,\"watch\":62177,\"water-arrow-down\":63348,\"water-arrow-up\":63349,\"water-ladder\":62917,\"water\":63347,\"watermelon-slice\":58167,\"wave-pulse\":62968,\"wave-sine\":63641,\"wave-square\":63550,\"wave-triangle\":63642,\"wave\":58971,\"waveform-lines\":63730,\"waveform\":63729,\"waves-sine\":58973,\"web-awesome\":59010,\"webhook\":58837,\"weight-hanging\":62925,\"weight-scale\":62614,\"whale\":63276,\"wheat-awn-circle-exclamation\":58776,\"wheat-awn-slash\":58168,\"wheat-awn\":58061,\"wheat-slash\":58169,\"wheat\":63277,\"wheelchair-move\":58062,\"wheelchair\":61843,\"whiskey-glass-ice\":63393,\"whiskey-glass\":63392,\"whistle\":62560,\"wifi-exclamation\":58063,\"wifi-fair\":63147,\"wifi-slash\":63148,\"wifi-weak\":63146,\"wifi\":61931,\"wind-turbine\":63643,\"wind-warning\":63350,\"wind\":63278,\"window-flip\":62479,\"window-frame-open\":57424,\"window-frame\":57423,\"window-maximize\":62160,\"window-minimize\":62161,\"window-restore\":62162,\"window\":62478,\"windsock\":63351,\"wine-bottle\":63279,\"wine-glass-crack\":62651,\"wine-glass-empty\":62926,\"wine-glass\":62691,\"won-sign\":61785,\"worm\":58777,\"wreath-laurel\":58834,\"wreath\":63458,\"wrench-simple\":58065,\"wrench\":61613,\"x-ray\":62615,\"x\":88,\"xmark-large\":58779,\"xmark-to-slot\":63345,\"xmark\":61453,\"xmarks-lines\":58778,\"y\":89,\"yen-sign\":61783,\"yin-yang\":63149,\"z\":90}"
  },
  {
    "path": "packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_sharp-duotone-solid.json",
    "content": "{\"0\":48,\"1\":49,\"2\":50,\"3\":51,\"4\":52,\"5\":53,\"6\":54,\"7\":55,\"8\":56,\"9\":57,\"00\":58471,\"360-degrees\":58076,\"a\":65,\"abacus\":63040,\"accent-grave\":96,\"acorn\":63150,\"address-book\":62137,\"address-card\":62139,\"air-conditioner\":63732,\"airplay\":57481,\"alarm-clock\":62286,\"alarm-exclamation\":63555,\"alarm-plus\":63556,\"alarm-snooze\":63557,\"album-circle-plus\":58508,\"album-circle-user\":58509,\"album-collection-circle-plus\":58510,\"album-collection-circle-user\":58511,\"album-collection\":63648,\"album\":63647,\"alicorn\":63152,\"alien-8bit\":63734,\"alien\":63733,\"align-center\":61495,\"align-justify\":61497,\"align-left\":61494,\"align-right\":61496,\"align-slash\":63558,\"alt\":57482,\"amp-guitar\":63649,\"ampersand\":38,\"anchor-circle-check\":58538,\"anchor-circle-exclamation\":58539,\"anchor-circle-xmark\":58540,\"anchor-lock\":58541,\"anchor\":61757,\"angel\":63353,\"angle-90\":57485,\"angle-down\":61703,\"angle-left\":61700,\"angle-right\":61701,\"angle-up\":61702,\"angle\":57484,\"angles-down\":61699,\"angles-left\":61696,\"angles-right\":61697,\"angles-up-down\":58893,\"angles-up\":61698,\"ankh\":63044,\"ant\":59008,\"apartment\":58472,\"aperture\":58079,\"apostrophe\":39,\"apple-core\":57487,\"apple-whole\":62929,\"archway\":62807,\"arrow-down-1-9\":61794,\"arrow-down-9-1\":63622,\"arrow-down-a-z\":61789,\"arrow-down-arrow-up\":63619,\"arrow-down-big-small\":63628,\"arrow-down-from-arc\":58900,\"arrow-down-from-bracket\":58983,\"arrow-down-from-dotted-line\":57488,\"arrow-down-from-line\":62277,\"arrow-down-left-and-arrow-up-right-to-center\":57490,\"arrow-down-left\":57489,\"arrow-down-long\":61813,\"arrow-down-right\":57491,\"arrow-down-short-wide\":63620,\"arrow-down-small-big\":63629,\"arrow-down-square-triangle\":63625,\"arrow-down-to-arc\":58542,\"arrow-down-to-bracket\":57492,\"arrow-down-to-dotted-line\":57493,\"arrow-down-to-line\":62269,\"arrow-down-to-square\":57494,\"arrow-down-triangle-square\":63624,\"arrow-down-up-across-line\":58543,\"arrow-down-up-lock\":58544,\"arrow-down-wide-short\":61792,\"arrow-down-z-a\":63617,\"arrow-down\":61539,\"arrow-left-from-arc\":58901,\"arrow-left-from-bracket\":58984,\"arrow-left-from-line\":62276,\"arrow-left-long-to-line\":58324,\"arrow-left-long\":61815,\"arrow-left-to-arc\":58902,\"arrow-left-to-bracket\":58985,\"arrow-left-to-line\":62270,\"arrow-left\":61536,\"arrow-pointer\":62021,\"arrow-progress\":58847,\"arrow-right-arrow-left\":61676,\"arrow-right-from-arc\":58545,\"arrow-right-from-bracket\":61579,\"arrow-right-from-line\":62275,\"arrow-right-long-to-line\":58325,\"arrow-right-long\":61816,\"arrow-right-to-arc\":58546,\"arrow-right-to-bracket\":61584,\"arrow-right-to-city\":58547,\"arrow-right-to-line\":62272,\"arrow-right\":61537,\"arrow-rotate-left\":61666,\"arrow-rotate-right\":61470,\"arrow-trend-down\":57495,\"arrow-trend-up\":57496,\"arrow-turn-down-left\":58081,\"arrow-turn-down-right\":58326,\"arrow-turn-down\":61769,\"arrow-turn-left-down\":58931,\"arrow-turn-left-up\":58932,\"arrow-turn-left\":58930,\"arrow-turn-right\":58933,\"arrow-turn-up\":61768,\"arrow-up-1-9\":61795,\"arrow-up-9-1\":63623,\"arrow-up-a-z\":61790,\"arrow-up-arrow-down\":57497,\"arrow-up-big-small\":63630,\"arrow-up-from-arc\":58548,\"arrow-up-from-bracket\":57498,\"arrow-up-from-dotted-line\":57499,\"arrow-up-from-ground-water\":58549,\"arrow-up-from-line\":62274,\"arrow-up-from-square\":57500,\"arrow-up-from-water-pump\":58550,\"arrow-up-left-from-circle\":57502,\"arrow-up-left\":57501,\"arrow-up-long\":61814,\"arrow-up-right-and-arrow-down-left-from-center\":57504,\"arrow-up-right-dots\":58551,\"arrow-up-right-from-square\":61582,\"arrow-up-right\":57503,\"arrow-up-short-wide\":63621,\"arrow-up-small-big\":63631,\"arrow-up-square-triangle\":63627,\"arrow-up-to-arc\":58903,\"arrow-up-to-bracket\":58986,\"arrow-up-to-dotted-line\":57505,\"arrow-up-to-line\":62273,\"arrow-up-triangle-square\":63626,\"arrow-up-wide-short\":61793,\"arrow-up-z-a\":63618,\"arrow-up\":61538,\"arrows-cross\":57506,\"arrows-down-to-line\":58552,\"arrows-down-to-people\":58553,\"arrows-from-dotted-line\":57507,\"arrows-from-line\":57508,\"arrows-left-right-to-line\":58554,\"arrows-left-right\":61566,\"arrows-maximize\":62237,\"arrows-minimize\":57509,\"arrows-repeat-1\":62310,\"arrows-repeat\":62308,\"arrows-retweet\":62305,\"arrows-rotate-reverse\":58928,\"arrows-rotate\":61473,\"arrows-spin\":58555,\"arrows-split-up-and-left\":58556,\"arrows-to-circle\":58557,\"arrows-to-dot\":58558,\"arrows-to-dotted-line\":57510,\"arrows-to-eye\":58559,\"arrows-to-line\":57511,\"arrows-turn-right\":58560,\"arrows-turn-to-dots\":58561,\"arrows-up-down-left-right\":61511,\"arrows-up-down\":61565,\"arrows-up-to-line\":58562,\"asterisk\":42,\"at\":64,\"atom-simple\":62931,\"atom\":62930,\"audio-description-slash\":57512,\"audio-description\":62110,\"austral-sign\":57513,\"avocado\":57514,\"award-simple\":57515,\"award\":62809,\"axe-battle\":63155,\"axe\":63154,\"b\":66,\"baby-carriage\":63357,\"baby\":63356,\"backpack\":62932,\"backward-fast\":61513,\"backward-step\":61512,\"backward\":61514,\"bacon\":63461,\"bacteria\":57433,\"bacterium\":57434,\"badge-check\":62262,\"badge-dollar\":63045,\"badge-percent\":63046,\"badge-sheriff\":63650,\"badge\":62261,\"badger-honey\":63156,\"badminton\":58170,\"bag-seedling\":58866,\"bag-shopping-minus\":58960,\"bag-shopping-plus\":58961,\"bag-shopping\":62096,\"bagel\":58327,\"bags-shopping\":63559,\"baguette\":58328,\"bahai\":63078,\"baht-sign\":57516,\"ball-pile\":63358,\"balloon\":58083,\"balloons\":58084,\"ballot-check\":63283,\"ballot\":63282,\"ban-bug\":63481,\"ban-parking\":62998,\"ban-smoking\":62797,\"ban\":61534,\"banana\":58085,\"bandage\":62562,\"bangladeshi-taka-sign\":58086,\"banjo\":63651,\"barcode-read\":62564,\"barcode-scan\":62565,\"barcode\":61482,\"bars-filter\":57517,\"bars-progress\":63528,\"bars-sort\":57518,\"bars-staggered\":62800,\"bars\":61641,\"baseball-bat-ball\":62514,\"baseball\":62515,\"basket-shopping-minus\":58962,\"basket-shopping-plus\":58963,\"basket-shopping-simple\":57519,\"basket-shopping\":62097,\"basketball-hoop\":62517,\"basketball\":62516,\"bat\":63157,\"bath\":62157,\"battery-bolt\":62326,\"battery-empty\":62020,\"battery-exclamation\":57520,\"battery-full\":62016,\"battery-half\":62018,\"battery-low\":57521,\"battery-quarter\":62019,\"battery-slash\":62327,\"battery-three-quarters\":62017,\"bed-bunk\":63736,\"bed-empty\":63737,\"bed-front\":63735,\"bed-pulse\":62599,\"bed\":62006,\"bee\":57522,\"beer-mug-empty\":61692,\"beer-mug\":57523,\"bell-concierge\":62818,\"bell-exclamation\":63560,\"bell-on\":63738,\"bell-plus\":63561,\"bell-ring\":58924,\"bell-school-slash\":62934,\"bell-school\":62933,\"bell-slash\":61942,\"bell\":61683,\"bells\":63359,\"bench-tree\":58087,\"bezier-curve\":62811,\"bicycle\":61958,\"billboard\":58829,\"bin-bottles-recycle\":58870,\"bin-bottles\":58869,\"bin-recycle\":58871,\"binary-circle-check\":58172,\"binary-lock\":58173,\"binary-slash\":58174,\"binary\":58171,\"binoculars\":61925,\"biohazard\":63360,\"bird\":58473,\"bitcoin-sign\":57524,\"blanket-fire\":58330,\"blanket\":62616,\"blender-phone\":63158,\"blender\":62743,\"blinds-open\":63740,\"blinds-raised\":63741,\"blinds\":63739,\"block-brick-fire\":58332,\"block-brick\":58331,\"block-question\":58333,\"block-quote\":57525,\"block\":58474,\"blog\":63361,\"blueberries\":58088,\"bluetooth\":62099,\"bold\":61490,\"bolt-auto\":57526,\"bolt-lightning\":57527,\"bolt-slash\":57528,\"bolt\":61671,\"bomb\":61922,\"bone-break\":62936,\"bone\":62935,\"bong\":62812,\"book-arrow-right\":57529,\"book-arrow-up\":57530,\"book-atlas\":62808,\"book-bible\":63047,\"book-blank\":62937,\"book-bookmark\":57531,\"book-circle-arrow-right\":57532,\"book-circle-arrow-up\":57533,\"book-copy\":57534,\"book-font\":57535,\"book-heart\":62617,\"book-journal-whills\":63082,\"book-medical\":63462,\"book-open-cover\":57536,\"book-open-reader\":62938,\"book-open\":62744,\"book-quran\":63111,\"book-section\":57537,\"book-skull\":63159,\"book-sparkles\":63160,\"book-tanakh\":63527,\"book-user\":63463,\"book\":61485,\"bookmark-slash\":57538,\"bookmark\":61486,\"books-medical\":63464,\"books\":62939,\"boombox\":63653,\"boot-heeled\":58175,\"boot\":63362,\"booth-curtain\":63284,\"border-all\":63564,\"border-bottom-right\":63572,\"border-bottom\":63565,\"border-center-h\":63644,\"border-center-v\":63645,\"border-inner\":63566,\"border-left\":63567,\"border-none\":63568,\"border-outer\":63569,\"border-right\":63570,\"border-top-left\":63571,\"border-top\":63573,\"bore-hole\":58563,\"bottle-baby\":58995,\"bottle-droplet\":58564,\"bottle-water\":58565,\"bow-arrow\":63161,\"bowl-chopsticks-noodles\":58090,\"bowl-chopsticks\":58089,\"bowl-food\":58566,\"bowl-hot\":63523,\"bowl-rice\":58091,\"bowl-scoop\":58334,\"bowl-scoops\":58335,\"bowl-soft-serve\":58475,\"bowl-spoon\":58336,\"bowling-ball-pin\":57539,\"bowling-ball\":62518,\"bowling-pins\":62519,\"box-archive\":61831,\"box-ballot\":63285,\"box-check\":62567,\"box-circle-check\":57540,\"box-dollar\":62624,\"box-heart\":62621,\"box-open-full\":62620,\"box-open\":62622,\"box-taped\":62618,\"box-tissue\":57435,\"box\":62566,\"boxes-packing\":58567,\"boxes-stacked\":62568,\"boxing-glove\":62520,\"bracket-curly-right\":125,\"bracket-curly\":123,\"bracket-round-right\":41,\"bracket-round\":40,\"bracket-square-right\":93,\"bracket-square\":91,\"brackets-curly\":63466,\"brackets-round\":57541,\"brackets-square\":63465,\"braille\":62113,\"brain-arrow-curved-right\":63095,\"brain-circuit\":57542,\"brain\":62940,\"brake-warning\":57543,\"brazilian-real-sign\":58476,\"bread-loaf\":63467,\"bread-slice-butter\":58337,\"bread-slice\":63468,\"bridge-circle-check\":58569,\"bridge-circle-exclamation\":58570,\"bridge-circle-xmark\":58571,\"bridge-lock\":58572,\"bridge-suspension\":58573,\"bridge-water\":58574,\"bridge\":58568,\"briefcase-arrow-right\":58098,\"briefcase-blank\":57544,\"briefcase-medical\":62569,\"briefcase\":61617,\"brightness-low\":57546,\"brightness\":57545,\"bring-forward\":63574,\"bring-front\":63575,\"broccoli\":58338,\"broom-ball\":62552,\"broom-wide\":58833,\"broom\":62746,\"browser\":62334,\"browsers\":57547,\"brush\":62813,\"bucket\":58575,\"bug-slash\":58512,\"bug\":61832,\"bugs\":58576,\"building-circle-arrow-right\":58577,\"building-circle-check\":58578,\"building-circle-exclamation\":58579,\"building-circle-xmark\":58580,\"building-columns\":61852,\"building-flag\":58581,\"building-lock\":58582,\"building-magnifying-glass\":58908,\"building-memo\":58910,\"building-ngo\":58583,\"building-shield\":58584,\"building-un\":58585,\"building-user\":58586,\"building-wheat\":58587,\"building\":61869,\"buildings\":57548,\"bulldozer\":58965,\"bullhorn\":61601,\"bullseye-arrow\":63048,\"bullseye-pointer\":63049,\"bullseye\":61760,\"buoy-mooring\":58806,\"buoy\":58805,\"burger-cheese\":63473,\"burger-fries\":57549,\"burger-glass\":57550,\"burger-lettuce\":58339,\"burger-soda\":63576,\"burger\":63493,\"burrito\":63469,\"burst\":58588,\"bus-school\":62941,\"bus-simple\":62814,\"bus\":61959,\"business-time\":63050,\"butter\":58340,\"c\":67,\"cabin\":58477,\"cabinet-filing\":63051,\"cable-car\":63450,\"cactus\":63655,\"caduceus\":59009,\"cake-candles\":61949,\"cake-slice\":58341,\"calculator-simple\":63052,\"calculator\":61932,\"calendar-arrow-down\":57552,\"calendar-arrow-up\":57553,\"calendar-check\":62068,\"calendar-circle-exclamation\":58478,\"calendar-circle-minus\":58479,\"calendar-circle-plus\":58480,\"calendar-circle-user\":58481,\"calendar-clock\":57554,\"calendar-day\":63363,\"calendar-days\":61555,\"calendar-exclamation\":62260,\"calendar-heart\":57555,\"calendar-image\":57556,\"calendar-lines-pen\":58482,\"calendar-lines\":57557,\"calendar-minus\":62066,\"calendar-pen\":62259,\"calendar-plus\":62065,\"calendar-range\":57558,\"calendar-star\":63286,\"calendar-users\":58850,\"calendar-week\":63364,\"calendar-xmark\":62067,\"calendar\":61747,\"calendars\":57559,\"camcorder\":63656,\"camera-cctv\":63660,\"camera-movie\":63657,\"camera-polaroid\":63658,\"camera-retro\":61571,\"camera-rotate\":57560,\"camera-security\":63742,\"camera-slash\":57561,\"camera-viewfinder\":57562,\"camera-web-slash\":63539,\"camera-web\":63538,\"camera\":61488,\"campfire\":63162,\"campground\":63163,\"can-food\":58342,\"candle-holder\":63164,\"candy-bar\":58344,\"candy-cane\":63366,\"candy-corn\":63165,\"candy\":58343,\"cannabis\":62815,\"cannon\":58946,\"capsules\":62571,\"car-battery\":62943,\"car-bolt\":58177,\"car-building\":63577,\"car-bump\":62944,\"car-burst\":62945,\"car-bus\":63578,\"car-circle-bolt\":58178,\"car-garage\":62946,\"car-mirrors\":58179,\"car-on\":58589,\"car-rear\":62942,\"car-side-bolt\":58180,\"car-side\":62948,\"car-tilt\":62949,\"car-tunnel\":58590,\"car-wash\":62950,\"car-wrench\":62947,\"car\":61881,\"caravan-simple\":57344,\"caravan\":63743,\"card-club\":58345,\"card-diamond\":58346,\"card-heart\":58347,\"card-spade\":58348,\"cards-blank\":58591,\"cards\":58349,\"caret-down\":61655,\"caret-left\":61657,\"caret-right\":61658,\"caret-up\":61656,\"carpool\":59036,\"carrot\":63367,\"cars\":63579,\"cart-arrow-down\":61976,\"cart-arrow-up\":58350,\"cart-circle-arrow-down\":58351,\"cart-circle-arrow-up\":58352,\"cart-circle-check\":58353,\"cart-circle-exclamation\":58354,\"cart-circle-plus\":58355,\"cart-circle-xmark\":58356,\"cart-flatbed-boxes\":62581,\"cart-flatbed-empty\":62582,\"cart-flatbed-suitcase\":62877,\"cart-flatbed\":62580,\"cart-minus\":57563,\"cart-plus\":61975,\"cart-shopping-fast\":57564,\"cart-shopping\":61562,\"cart-xmark\":57565,\"cash-register\":63368,\"cassette-betamax\":63652,\"cassette-tape\":63659,\"cassette-vhs\":63724,\"castle\":57566,\"cat-space\":57345,\"cat\":63166,\"cauldron\":63167,\"cedi-sign\":57567,\"cent-sign\":58357,\"certificate\":61603,\"chair-office\":63169,\"chair\":63168,\"chalkboard-user\":62748,\"chalkboard\":62747,\"champagne-glass\":63390,\"champagne-glasses\":63391,\"charging-station\":62951,\"chart-area\":61950,\"chart-bar\":61568,\"chart-bullet\":57569,\"chart-candlestick\":57570,\"chart-column\":57571,\"chart-diagram\":59029,\"chart-fft\":59038,\"chart-gantt\":57572,\"chart-kanban\":58959,\"chart-line-down\":63053,\"chart-line-up-down\":58839,\"chart-line-up\":57573,\"chart-line\":61953,\"chart-mixed-up-circle-currency\":58840,\"chart-mixed-up-circle-dollar\":58841,\"chart-mixed\":63043,\"chart-network\":63370,\"chart-pie-simple-circle-currency\":58884,\"chart-pie-simple-circle-dollar\":58885,\"chart-pie-simple\":63054,\"chart-pie\":61952,\"chart-pyramid\":57574,\"chart-radar\":57575,\"chart-scatter-3d\":57576,\"chart-scatter-bubble\":57577,\"chart-scatter\":63470,\"chart-simple-horizontal\":58484,\"chart-simple\":58483,\"chart-sine\":59037,\"chart-tree-map\":57578,\"chart-user\":63139,\"chart-waterfall\":57579,\"check-double\":62816,\"check-to-slot\":63346,\"check\":61452,\"cheese-swiss\":63472,\"cheese\":63471,\"cherries\":57580,\"chess-bishop-piece\":62523,\"chess-bishop\":62522,\"chess-board\":62524,\"chess-clock-flip\":62526,\"chess-clock\":62525,\"chess-king-piece\":62528,\"chess-king\":62527,\"chess-knight-piece\":62530,\"chess-knight\":62529,\"chess-pawn-piece\":62532,\"chess-pawn\":62531,\"chess-queen-piece\":62534,\"chess-queen\":62533,\"chess-rook-piece\":62536,\"chess-rook\":62535,\"chess\":62521,\"chestnut\":58358,\"chevron-down\":61560,\"chevron-left\":61523,\"chevron-right\":61524,\"chevron-up\":61559,\"chevrons-down\":62242,\"chevrons-left\":62243,\"chevrons-right\":62244,\"chevrons-up\":62245,\"chf-sign\":58882,\"child-combatant\":58592,\"child-dress\":58780,\"child-reaching\":58781,\"child\":61870,\"children\":58593,\"chimney\":63371,\"chopsticks\":58359,\"church\":62749,\"circle-0\":57581,\"circle-1\":57582,\"circle-2\":57583,\"circle-3\":57584,\"circle-4\":57585,\"circle-5\":57586,\"circle-6\":57587,\"circle-7\":57588,\"circle-8\":57589,\"circle-9\":57590,\"circle-a\":57591,\"circle-ampersand\":57592,\"circle-arrow-down-left\":57593,\"circle-arrow-down-right\":57594,\"circle-arrow-down\":61611,\"circle-arrow-left\":61608,\"circle-arrow-right\":61609,\"circle-arrow-up-left\":57595,\"circle-arrow-up-right\":57596,\"circle-arrow-up\":61610,\"circle-b\":57597,\"circle-bolt\":57598,\"circle-book-open\":57599,\"circle-bookmark\":57600,\"circle-c\":57601,\"circle-calendar\":57602,\"circle-camera\":57603,\"circle-caret-down\":62253,\"circle-caret-left\":62254,\"circle-caret-right\":62256,\"circle-caret-up\":62257,\"circle-check\":61528,\"circle-chevron-down\":61754,\"circle-chevron-left\":61751,\"circle-chevron-right\":61752,\"circle-chevron-up\":61753,\"circle-d\":57604,\"circle-dashed\":57605,\"circle-divide\":57606,\"circle-dollar-to-slot\":62649,\"circle-dollar\":62184,\"circle-dot\":61842,\"circle-down-left\":57607,\"circle-down-right\":57608,\"circle-down\":62296,\"circle-e\":57609,\"circle-ellipsis-vertical\":57611,\"circle-ellipsis\":57610,\"circle-envelope\":57612,\"circle-euro\":58830,\"circle-exclamation-check\":57613,\"circle-exclamation\":61546,\"circle-f\":57614,\"circle-g\":57615,\"circle-gf\":59007,\"circle-h\":62590,\"circle-half-stroke\":61506,\"circle-half\":57616,\"circle-heart\":62663,\"circle-i\":57617,\"circle-info\":61530,\"circle-j\":57618,\"circle-k\":57619,\"circle-l\":57620,\"circle-left\":62297,\"circle-location-arrow\":62978,\"circle-m\":57621,\"circle-microphone-lines\":57623,\"circle-microphone\":57622,\"circle-minus\":61526,\"circle-n\":57624,\"circle-nodes\":58594,\"circle-notch\":61902,\"circle-o\":57625,\"circle-p\":57626,\"circle-parking\":62997,\"circle-pause\":62091,\"circle-phone-flip\":57628,\"circle-phone-hangup\":57629,\"circle-phone\":57627,\"circle-play\":61764,\"circle-plus\":61525,\"circle-q\":57630,\"circle-quarter-stroke\":58835,\"circle-quarter\":57631,\"circle-quarters\":58360,\"circle-question\":61529,\"circle-r\":57632,\"circle-radiation\":63418,\"circle-right\":62298,\"circle-s\":57633,\"circle-small\":57634,\"circle-sort-down\":57393,\"circle-sort-up\":57394,\"circle-sort\":57392,\"circle-star\":57635,\"circle-sterling\":58831,\"circle-stop\":62093,\"circle-t\":57636,\"circle-three-quarters-stroke\":58836,\"circle-three-quarters\":57637,\"circle-trash\":57638,\"circle-u\":57639,\"circle-up-left\":57640,\"circle-up-right\":57641,\"circle-up\":62299,\"circle-user\":62141,\"circle-v\":57642,\"circle-video\":57643,\"circle-w\":57644,\"circle-waveform-lines\":57645,\"circle-wifi-circle-wifi\":59006,\"circle-wifi\":59005,\"circle-x\":57646,\"circle-xmark\":61527,\"circle-y\":57647,\"circle-yen\":58832,\"circle-z\":57648,\"circle\":61713,\"circles-overlap-3\":59041,\"circles-overlap\":58880,\"citrus-slice\":58101,\"citrus\":58100,\"city\":63055,\"clapperboard-play\":57650,\"clapperboard\":57649,\"clarinet\":63661,\"claw-marks\":63170,\"clipboard-check\":62572,\"clipboard-list-check\":63287,\"clipboard-list\":62573,\"clipboard-medical\":57651,\"clipboard-prescription\":62952,\"clipboard-question\":58595,\"clipboard-user\":63475,\"clipboard\":62248,\"clock-desk\":57652,\"clock-eight-thirty\":58182,\"clock-eight\":58181,\"clock-eleven-thirty\":58184,\"clock-eleven\":58183,\"clock-five-thirty\":58186,\"clock-five\":58185,\"clock-four-thirty\":58187,\"clock-nine-thirty\":58189,\"clock-nine\":58188,\"clock-one-thirty\":58191,\"clock-one\":58190,\"clock-rotate-left\":61914,\"clock-seven-thirty\":58193,\"clock-seven\":58192,\"clock-six-thirty\":58195,\"clock-six\":58194,\"clock-ten-thirty\":58197,\"clock-ten\":58196,\"clock-three-thirty\":58199,\"clock-three\":58198,\"clock-twelve-thirty\":58201,\"clock-twelve\":58200,\"clock-two-thirty\":58203,\"clock-two\":58202,\"clock\":61463,\"clone\":62029,\"closed-captioning-slash\":57653,\"closed-captioning\":61962,\"clothes-hanger\":57654,\"cloud-arrow-down\":61677,\"cloud-arrow-up\":61678,\"cloud-binary\":58881,\"cloud-bolt-moon\":63341,\"cloud-bolt-sun\":63342,\"cloud-bolt\":63340,\"cloud-check\":58204,\"cloud-drizzle\":63288,\"cloud-exclamation\":58513,\"cloud-fog\":63310,\"cloud-hail-mixed\":63290,\"cloud-hail\":63289,\"cloud-meatball\":63291,\"cloud-minus\":58205,\"cloud-moon-rain\":63292,\"cloud-moon\":63171,\"cloud-music\":63662,\"cloud-plus\":58206,\"cloud-question\":58514,\"cloud-rain\":63293,\"cloud-rainbow\":63294,\"cloud-showers-heavy\":63296,\"cloud-showers-water\":58596,\"cloud-showers\":63295,\"cloud-slash\":57655,\"cloud-sleet\":63297,\"cloud-snow\":63298,\"cloud-sun-rain\":63299,\"cloud-sun\":63172,\"cloud-word\":57656,\"cloud-xmark\":58207,\"cloud\":61634,\"clouds-moon\":63301,\"clouds-sun\":63302,\"clouds\":63300,\"clover\":57657,\"club\":62247,\"coconut\":58102,\"code-branch\":61734,\"code-commit\":62342,\"code-compare\":57658,\"code-fork\":57659,\"code-merge\":62343,\"code-pull-request-closed\":58361,\"code-pull-request-draft\":58362,\"code-pull-request\":57660,\"code-simple\":57661,\"code\":61729,\"coffee-bean\":57662,\"coffee-beans\":57663,\"coffee-pot\":57346,\"coffin-cross\":57425,\"coffin\":63174,\"coin-blank\":58363,\"coin-front\":58364,\"coin-vertical\":58365,\"coin\":63580,\"coins\":62750,\"colon-sign\":57664,\"colon\":58,\"columns-3\":58209,\"comet\":57347,\"comma\":44,\"command\":57666,\"comment-arrow-down\":57667,\"comment-arrow-up-right\":57669,\"comment-arrow-up\":57668,\"comment-captions\":57670,\"comment-check\":62636,\"comment-code\":57671,\"comment-dollar\":63057,\"comment-dots\":62637,\"comment-exclamation\":62639,\"comment-heart\":58824,\"comment-image\":57672,\"comment-lines\":62640,\"comment-medical\":63477,\"comment-middle-top\":57674,\"comment-middle\":57673,\"comment-minus\":62641,\"comment-music\":63664,\"comment-nodes\":59030,\"comment-pen\":62638,\"comment-plus\":62642,\"comment-question\":57675,\"comment-quote\":57676,\"comment-slash\":62643,\"comment-smile\":62644,\"comment-sms\":63437,\"comment-text\":57677,\"comment-xmark\":62645,\"comment\":61557,\"comments-dollar\":63059,\"comments-question-check\":57679,\"comments-question\":57678,\"comments\":61574,\"compact-disc\":62751,\"compass-drafting\":62824,\"compass-slash\":62953,\"compass\":61774,\"compress-wide\":62246,\"compress\":61542,\"computer-classic\":63665,\"computer-mouse-scrollwheel\":63693,\"computer-mouse\":63692,\"computer-speaker\":63666,\"computer\":58597,\"container-storage\":62647,\"conveyor-belt-arm\":58872,\"conveyor-belt-boxes\":62575,\"conveyor-belt-empty\":57680,\"conveyor-belt\":62574,\"cookie-bite\":62820,\"cookie\":62819,\"copy\":61637,\"copyright\":61945,\"corn\":63175,\"corner\":58366,\"couch\":62648,\"court-sport\":58947,\"cow\":63176,\"cowbell-circle-plus\":63668,\"cowbell\":63667,\"crab\":58367,\"crate-apple\":63153,\"crate-empty\":57681,\"credit-card-blank\":62345,\"credit-card-front\":62346,\"credit-card\":61597,\"cricket-bat-ball\":62537,\"croissant\":63478,\"crop-simple\":62821,\"crop\":61733,\"cross\":63060,\"crosshairs-simple\":58783,\"crosshairs\":61531,\"crow\":62752,\"crown\":62753,\"crutch\":63479,\"crutches\":63480,\"cruzeiro-sign\":57682,\"crystal-ball\":58210,\"cube\":61874,\"cubes-stacked\":58598,\"cubes\":61875,\"cucumber\":58369,\"cup-straw-swoosh\":58212,\"cup-straw\":58211,\"cup-togo\":63173,\"cupcake\":58370,\"curling-stone\":62538,\"custard\":58371,\"d\":68,\"dagger\":63179,\"dash\":58372,\"database\":61888,\"deer-rudolph\":63375,\"deer\":63374,\"delete-left\":62810,\"delete-right\":57684,\"democrat\":63303,\"desktop-arrow-down\":57685,\"desktop\":62352,\"dharmachakra\":63061,\"diagram-cells\":58485,\"diagram-lean-canvas\":57686,\"diagram-nested\":57687,\"diagram-next\":58486,\"diagram-predecessor\":58487,\"diagram-previous\":58488,\"diagram-project\":62786,\"diagram-sankey\":57688,\"diagram-subtask\":58489,\"diagram-successor\":58490,\"diagram-venn\":57690,\"dial-high\":57692,\"dial-low\":57693,\"dial-max\":57694,\"dial-med-low\":57696,\"dial-med\":57695,\"dial-min\":57697,\"dial-off\":57698,\"dial\":57691,\"diamond-exclamation\":58373,\"diamond-half-stroke\":58808,\"diamond-half\":58807,\"diamond-turn-right\":62955,\"diamond\":61977,\"diamonds-4\":59019,\"dice-d10\":63181,\"dice-d12\":63182,\"dice-d20\":63183,\"dice-d4\":63184,\"dice-d6\":63185,\"dice-d8\":63186,\"dice-five\":62755,\"dice-four\":62756,\"dice-one\":62757,\"dice-six\":62758,\"dice-three\":62759,\"dice-two\":62760,\"dice\":62754,\"dinosaur\":58878,\"diploma\":62954,\"disc-drive\":63669,\"disease\":63482,\"display-arrow-down\":57700,\"display-chart-up-circle-currency\":58853,\"display-chart-up-circle-dollar\":58854,\"display-chart-up\":58851,\"display-code\":57701,\"display-medical\":57702,\"display-slash\":58106,\"display\":57699,\"distribute-spacing-horizontal\":58213,\"distribute-spacing-vertical\":58214,\"ditto\":34,\"divide\":62761,\"dna\":62577,\"do-not-enter\":62956,\"dog-leashed\":63188,\"dog\":63187,\"dollar-sign\":36,\"dolly-empty\":62579,\"dolly\":62578,\"dolphin\":57704,\"dong-sign\":57705,\"donut\":58374,\"door-closed\":62762,\"door-open\":62763,\"dove\":62650,\"down-from-bracket\":58987,\"down-from-dotted-line\":58375,\"down-from-line\":62281,\"down-left-and-up-right-to-center\":62498,\"down-left\":57706,\"down-long\":62217,\"down-right\":57707,\"down-to-bracket\":58599,\"down-to-dotted-line\":58376,\"down-to-line\":62282,\"down\":62292,\"download\":61465,\"dragon\":63189,\"draw-circle\":62957,\"draw-polygon\":62958,\"draw-square\":62959,\"dreidel\":63378,\"drone-front\":63584,\"drone\":63583,\"droplet-degree\":63304,\"droplet-percent\":63312,\"droplet-slash\":62919,\"droplet\":61507,\"drum-steelpan\":62826,\"drum\":62825,\"drumstick-bite\":63191,\"drumstick\":63190,\"dryer-heat\":63586,\"dryer\":63585,\"duck\":63192,\"dumbbell\":62539,\"dumpster-fire\":63380,\"dumpster\":63379,\"dungeon\":63193,\"e\":69,\"ear-deaf\":62116,\"ear-listen\":62114,\"ear-muffs\":63381,\"ear\":62960,\"earth-africa\":62844,\"earth-americas\":62845,\"earth-asia\":62846,\"earth-europe\":63394,\"earth-oceania\":58491,\"eclipse\":63305,\"egg-fried\":63484,\"egg\":63483,\"eggplant\":57708,\"eject\":61522,\"elephant\":63194,\"elevator\":57709,\"ellipsis-stroke-vertical\":62364,\"ellipsis-stroke\":62363,\"ellipsis-vertical\":61762,\"ellipsis\":61761,\"empty-set\":63062,\"engine-warning\":62962,\"engine\":57710,\"envelope-circle-check\":58600,\"envelope-dot\":57711,\"envelope-open-dollar\":63063,\"envelope-open-text\":63064,\"envelope-open\":62134,\"envelope\":61664,\"envelopes-bulk\":63092,\"envelopes\":57712,\"equals\":61,\"eraser\":61741,\"escalator\":57713,\"ethernet\":63382,\"euro-sign\":61779,\"excavator\":58966,\"exclamation\":33,\"expand-wide\":62240,\"expand\":61541,\"explosion\":58601,\"eye-dropper-full\":57714,\"eye-dropper-half\":57715,\"eye-dropper\":61947,\"eye-evil\":63195,\"eye-low-vision\":62120,\"eye-slash\":61552,\"eye\":61550,\"eyes\":58215,\"f\":70,\"face-angry-horns\":58216,\"face-angry\":62806,\"face-anguished\":58217,\"face-anxious-sweat\":58218,\"face-astonished\":58219,\"face-awesome\":58377,\"face-beam-hand-over-mouth\":58492,\"face-clouds\":58493,\"face-confounded\":58220,\"face-confused\":58221,\"face-cowboy-hat\":58222,\"face-diagonal-mouth\":58494,\"face-disappointed\":58223,\"face-disguise\":58224,\"face-dizzy\":62823,\"face-dotted\":58495,\"face-downcast-sweat\":58225,\"face-drooling\":58226,\"face-exhaling\":58496,\"face-explode\":58110,\"face-expressionless\":58227,\"face-eyes-xmarks\":58228,\"face-fearful\":58229,\"face-flushed\":62841,\"face-frown-open\":62842,\"face-frown-slight\":58230,\"face-frown\":61721,\"face-glasses\":58231,\"face-grimace\":62847,\"face-grin-beam-sweat\":62851,\"face-grin-beam\":62850,\"face-grin-hearts\":62852,\"face-grin-squint-tears\":62854,\"face-grin-squint\":62853,\"face-grin-stars\":62855,\"face-grin-tears\":62856,\"face-grin-tongue-squint\":62858,\"face-grin-tongue-wink\":62859,\"face-grin-tongue\":62857,\"face-grin-wide\":62849,\"face-grin-wink\":62860,\"face-grin\":62848,\"face-hand-over-mouth\":58232,\"face-hand-peeking\":58497,\"face-hand-yawn\":58233,\"face-head-bandage\":58234,\"face-holding-back-tears\":58498,\"face-hushed\":58235,\"face-icicles\":58236,\"face-kiss-beam\":62871,\"face-kiss-closed-eyes\":58237,\"face-kiss-wink-heart\":62872,\"face-kiss\":62870,\"face-laugh-beam\":62874,\"face-laugh-squint\":62875,\"face-laugh-wink\":62876,\"face-laugh\":62873,\"face-lying\":58238,\"face-mask\":58239,\"face-meh-blank\":62884,\"face-meh\":61722,\"face-melting\":58499,\"face-monocle\":58240,\"face-nauseated\":58241,\"face-nose-steam\":58242,\"face-party\":58243,\"face-pensive\":58244,\"face-persevering\":58245,\"face-pleading\":58246,\"face-pouting\":58247,\"face-raised-eyebrow\":58248,\"face-relieved\":58249,\"face-rolling-eyes\":62885,\"face-sad-cry\":62899,\"face-sad-sweat\":58250,\"face-sad-tear\":62900,\"face-saluting\":58500,\"face-scream\":58251,\"face-shush\":58252,\"face-sleeping\":58253,\"face-sleepy\":58254,\"face-smile-beam\":62904,\"face-smile-halo\":58255,\"face-smile-hearts\":58256,\"face-smile-horns\":58257,\"face-smile-plus\":62905,\"face-smile-relaxed\":58258,\"face-smile-tear\":58259,\"face-smile-tongue\":58260,\"face-smile-upside-down\":58261,\"face-smile-wink\":62682,\"face-smile\":61720,\"face-smiling-hands\":58262,\"face-smirking\":58263,\"face-spiral-eyes\":58501,\"face-sunglasses\":58264,\"face-surprise\":62914,\"face-swear\":58265,\"face-thermometer\":58266,\"face-thinking\":58267,\"face-tired\":62920,\"face-tissue\":58268,\"face-tongue-money\":58269,\"face-tongue-sweat\":58270,\"face-unamused\":58271,\"face-viewfinder\":58111,\"face-vomit\":58272,\"face-weary\":58273,\"face-woozy\":58274,\"face-worried\":58275,\"face-zany\":58276,\"face-zipper\":58277,\"falafel\":58378,\"family-dress\":58113,\"family-pants\":58114,\"family\":58112,\"fan-table\":57348,\"fan\":63587,\"farm\":63588,\"faucet-drip\":57350,\"faucet\":57349,\"fax\":61868,\"feather-pointed\":62827,\"feather\":62765,\"fence\":58115,\"ferris-wheel\":57716,\"ferry\":58602,\"field-hockey-stick-ball\":62540,\"file-arrow-down\":62829,\"file-arrow-up\":62836,\"file-audio\":61895,\"file-binary\":57717,\"file-cad\":58994,\"file-certificate\":62963,\"file-chart-column\":63065,\"file-chart-pie\":63066,\"file-check\":62230,\"file-circle-check\":58784,\"file-circle-exclamation\":58603,\"file-circle-info\":58515,\"file-circle-minus\":58605,\"file-circle-plus\":58516,\"file-circle-question\":58607,\"file-circle-xmark\":58785,\"file-code\":61897,\"file-contract\":62828,\"file-csv\":63197,\"file-dashed-line\":63607,\"file-doc\":58861,\"file-eps\":58948,\"file-excel\":61891,\"file-exclamation\":62234,\"file-export\":62830,\"file-fragment\":59031,\"file-gif\":58949,\"file-half-dashed\":59032,\"file-heart\":57718,\"file-image\":61893,\"file-import\":62831,\"file-invoice-dollar\":62833,\"file-invoice\":62832,\"file-jpg\":58950,\"file-lines\":61788,\"file-lock\":58278,\"file-magnifying-glass\":63589,\"file-medical\":62583,\"file-minus\":62232,\"file-mov\":58951,\"file-mp3\":58952,\"file-mp4\":58953,\"file-music\":63670,\"file-pdf\":61889,\"file-pen\":62236,\"file-plus-minus\":57719,\"file-plus\":62233,\"file-png\":58982,\"file-powerpoint\":61892,\"file-ppt\":58954,\"file-prescription\":62834,\"file-shield\":58608,\"file-signature\":62835,\"file-slash\":58279,\"file-spreadsheet\":63067,\"file-svg\":58955,\"file-user\":63068,\"file-vector\":58956,\"file-video\":61896,\"file-waveform\":62584,\"file-word\":61890,\"file-xls\":58957,\"file-xmark\":62231,\"file-xml\":58964,\"file-zip\":58862,\"file-zipper\":61894,\"file\":61787,\"files-medical\":63485,\"files\":57720,\"fill-drip\":62838,\"fill\":62837,\"film-canister\":63671,\"film-simple\":62368,\"film-slash\":57721,\"film\":61448,\"films\":57722,\"filter-circle-dollar\":63074,\"filter-circle-xmark\":57723,\"filter-list\":57724,\"filter-slash\":57725,\"filter\":61616,\"filters\":57726,\"fingerprint\":62839,\"fire-burner\":58609,\"fire-extinguisher\":61748,\"fire-flame-curved\":63460,\"fire-flame-simple\":62570,\"fire-flame\":63199,\"fire-hydrant\":57727,\"fire-smoke\":63307,\"fire\":61549,\"fireplace\":63386,\"fish-bones\":58116,\"fish-cooked\":63486,\"fish-fins\":58610,\"fish\":62840,\"fishing-rod\":58280,\"flag-checkered\":61726,\"flag-pennant\":62550,\"flag-swallowtail\":63308,\"flag-usa\":63309,\"flag\":61476,\"flashlight\":63672,\"flask-gear\":58865,\"flask-round-poison\":63200,\"flask-round-potion\":63201,\"flask-vial\":58611,\"flask\":61635,\"flatbread-stuffed\":58380,\"flatbread\":58379,\"floppy-disk-circle-arrow-right\":57728,\"floppy-disk-circle-xmark\":57729,\"floppy-disk-pen\":57730,\"floppy-disk\":61639,\"floppy-disks\":57731,\"florin-sign\":57732,\"flower-daffodil\":63488,\"flower-tulip\":63489,\"flower\":63487,\"flute\":63673,\"flux-capacitor\":63674,\"flying-disc\":58281,\"folder-arrow-down\":57427,\"folder-arrow-up\":57428,\"folder-bookmark\":57734,\"folder-check\":58958,\"folder-closed\":57733,\"folder-gear\":57735,\"folder-grid\":57736,\"folder-heart\":57737,\"folder-image\":57738,\"folder-magnifying-glass\":57739,\"folder-medical\":57740,\"folder-minus\":63069,\"folder-music\":57741,\"folder-open\":61564,\"folder-plus\":63070,\"folder-tree\":63490,\"folder-user\":57742,\"folder-xmark\":63071,\"folder\":61563,\"folders\":63072,\"fondue-pot\":58381,\"font-awesome\":62132,\"font-case\":63590,\"font\":61489,\"football-helmet\":62543,\"football\":62542,\"fork-knife\":62182,\"fork\":62179,\"forklift\":62586,\"fort\":58502,\"forward-fast\":61520,\"forward-step\":61521,\"forward\":61518,\"frame\":58517,\"franc-sign\":57743,\"french-fries\":63491,\"frog\":62766,\"function\":63073,\"futbol\":61923,\"g\":71,\"galaxy\":57352,\"gallery-thumbnails\":58282,\"game-board-simple\":63592,\"game-board\":63591,\"game-console-handheld-crank\":58809,\"game-console-handheld\":63675,\"gamepad-modern\":58786,\"gamepad\":61723,\"garage-car\":57354,\"garage-open\":57355,\"garage\":57353,\"garlic\":58382,\"gas-pump-slash\":62964,\"gas-pump\":62767,\"gauge-circle-bolt\":58518,\"gauge-circle-minus\":58519,\"gauge-circle-plus\":58520,\"gauge-high\":63013,\"gauge-low\":63015,\"gauge-max\":63014,\"gauge-min\":63016,\"gauge-simple-high\":63018,\"gauge-simple-low\":63020,\"gauge-simple-max\":63019,\"gauge-simple-min\":63021,\"gauge-simple\":63017,\"gauge\":63012,\"gavel\":61667,\"gear-code\":58856,\"gear-complex-code\":58859,\"gear-complex\":58857,\"gear\":61459,\"gears\":61573,\"gem\":62373,\"genderless\":61997,\"ghost\":63202,\"gif\":57744,\"gift-card\":63075,\"gift\":61547,\"gifts\":63388,\"gingerbread-man\":63389,\"glass-citrus\":63593,\"glass-empty\":57745,\"glass-half\":57746,\"glass-water-droplet\":58613,\"glass-water\":58612,\"glass\":63492,\"glasses-round\":62965,\"glasses\":62768,\"globe-pointer\":58894,\"globe-snow\":63395,\"globe-stand\":62966,\"globe-wifi\":59013,\"globe\":61612,\"goal-net\":58283,\"golf-ball-tee\":62544,\"golf-club\":62545,\"golf-flag-hole\":58284,\"gopuram\":63076,\"graduation-cap\":61853,\"gramophone\":63677,\"grapes\":58118,\"grate-droplet\":57748,\"grate\":57747,\"greater-than-equal\":62770,\"greater-than\":62,\"grid-2-plus\":57751,\"grid-2\":57750,\"grid-4\":57752,\"grid-5\":57753,\"grid-dividers\":58285,\"grid-horizontal\":58119,\"grid-round-2-plus\":58844,\"grid-round-2\":58843,\"grid-round-4\":58845,\"grid-round-5\":58846,\"grid-round\":58842,\"grid\":57749,\"grill-fire\":58788,\"grill-hot\":58789,\"grill\":58787,\"grip-dots-vertical\":58385,\"grip-dots\":58384,\"grip-lines-vertical\":63397,\"grip-lines\":63396,\"grip-vertical\":62862,\"grip\":62861,\"group-arrows-rotate\":58614,\"guarani-sign\":57754,\"guitar-electric\":63678,\"guitar\":63398,\"guitars\":63679,\"gun-slash\":57756,\"gun-squirt\":57757,\"gun\":57755,\"h\":72,\"h1\":62227,\"h2\":62228,\"h3\":62229,\"h4\":63594,\"h5\":58386,\"h6\":58387,\"hammer-brush\":58912,\"hammer-crash\":58388,\"hammer-war\":63204,\"hammer\":63203,\"hamsa\":63077,\"hand-back-fist\":62037,\"hand-back-point-down\":57758,\"hand-back-point-left\":57759,\"hand-back-point-ribbon\":57760,\"hand-back-point-right\":57761,\"hand-back-point-up\":57762,\"hand-dots\":62561,\"hand-fingers-crossed\":57763,\"hand-fist\":63198,\"hand-heart\":62652,\"hand-holding-box\":62587,\"hand-holding-circle-dollar\":58913,\"hand-holding-dollar\":62656,\"hand-holding-droplet\":62657,\"hand-holding-hand\":58615,\"hand-holding-heart\":62654,\"hand-holding-magic\":63205,\"hand-holding-medical\":57436,\"hand-holding-seedling\":62655,\"hand-holding-skull\":57764,\"hand-holding\":62653,\"hand-horns\":57769,\"hand-lizard\":62040,\"hand-love\":57765,\"hand-middle-finger\":63494,\"hand-peace\":62043,\"hand-point-down\":61607,\"hand-point-left\":61605,\"hand-point-ribbon\":57766,\"hand-point-right\":61604,\"hand-point-up\":61606,\"hand-pointer\":62042,\"hand-scissors\":62039,\"hand-sparkles\":57437,\"hand-spock\":62041,\"hand-wave\":57767,\"hand\":62038,\"handcuffs\":58616,\"hands-asl-interpreting\":62115,\"hands-bound\":58617,\"hands-bubbles\":57438,\"hands-clapping\":57768,\"hands-holding-child\":58618,\"hands-holding-circle\":58619,\"hands-holding-diamond\":62588,\"hands-holding-dollar\":62661,\"hands-holding-heart\":62659,\"hands-holding\":62658,\"hands-praying\":63108,\"hands\":62119,\"handshake-angle\":62660,\"handshake-simple-slash\":57439,\"handshake-simple\":62662,\"handshake-slash\":57440,\"handshake\":62133,\"hanukiah\":63206,\"hard-drive\":61600,\"hashtag-lock\":58389,\"hashtag\":35,\"hat-beach\":58886,\"hat-chef\":63595,\"hat-cowboy-side\":63681,\"hat-cowboy\":63680,\"hat-santa\":63399,\"hat-winter\":63400,\"hat-witch\":63207,\"hat-wizard\":63208,\"head-side-brain\":63496,\"head-side-cough-slash\":57442,\"head-side-cough\":57441,\"head-side-gear\":58897,\"head-side-goggles\":63210,\"head-side-headphones\":63682,\"head-side-heart\":57770,\"head-side-mask\":57443,\"head-side-medical\":63497,\"head-side-virus\":57444,\"head-side\":63209,\"heading\":61916,\"headphones-simple\":62863,\"headphones\":61477,\"headset\":62864,\"heart-circle-bolt\":58620,\"heart-circle-check\":58621,\"heart-circle-exclamation\":58622,\"heart-circle-minus\":58623,\"heart-circle-plus\":58624,\"heart-circle-xmark\":58625,\"heart-crack\":63401,\"heart-half-stroke\":57772,\"heart-half\":57771,\"heart-pulse\":61982,\"heart\":61444,\"heat\":57356,\"helicopter-symbol\":58626,\"helicopter\":62771,\"helmet-battle\":63211,\"helmet-safety\":63495,\"helmet-un\":58627,\"hexagon-check\":58390,\"hexagon-divide\":57773,\"hexagon-exclamation\":58391,\"hexagon-image\":58628,\"hexagon-minus\":62215,\"hexagon-nodes-bolt\":59034,\"hexagon-nodes\":59033,\"hexagon-plus\":62208,\"hexagon-vertical-nft-slanted\":58630,\"hexagon-vertical-nft\":58629,\"hexagon-xmark\":62190,\"hexagon\":62226,\"high-definition\":57774,\"highlighter-line\":57775,\"highlighter\":62865,\"hill-avalanche\":58631,\"hill-rockslide\":58632,\"hippo\":63213,\"hockey-mask\":63214,\"hockey-puck\":62547,\"hockey-stick-puck\":58286,\"hockey-sticks\":62548,\"holly-berry\":63402,\"honey-pot\":58392,\"hood-cloak\":63215,\"horizontal-rule\":63596,\"horse-head\":63403,\"horse-saddle\":63683,\"horse\":63216,\"hose-reel\":58394,\"hose\":58393,\"hospital-user\":63501,\"hospital\":61688,\"hospitals\":63502,\"hot-tub-person\":62867,\"hotdog\":63503,\"hotel\":62868,\"hourglass-clock\":58395,\"hourglass-end\":62035,\"hourglass-half\":62034,\"hourglass-start\":62033,\"hourglass\":62036,\"house-blank\":58503,\"house-building\":57777,\"house-chimney-blank\":58288,\"house-chimney-crack\":63217,\"house-chimney-heart\":57778,\"house-chimney-medical\":63474,\"house-chimney-user\":57445,\"house-chimney-window\":57357,\"house-chimney\":58287,\"house-circle-check\":58633,\"house-circle-exclamation\":58634,\"house-circle-xmark\":58635,\"house-crack\":58289,\"house-day\":57358,\"house-fire\":58636,\"house-flag\":58637,\"house-flood-water-circle-arrow-right\":58639,\"house-flood-water\":58638,\"house-heart\":62665,\"house-laptop\":57446,\"house-lock\":58640,\"house-medical-circle-check\":58641,\"house-medical-circle-exclamation\":58642,\"house-medical-circle-xmark\":58643,\"house-medical-flag\":58644,\"house-medical\":58290,\"house-night\":57360,\"house-person-leave\":57359,\"house-person-return\":57361,\"house-signal\":57362,\"house-tree\":57779,\"house-tsunami\":58645,\"house-turret\":57780,\"house-user\":57776,\"house-water\":63311,\"house-window\":58291,\"house\":61461,\"hryvnia-sign\":63218,\"hundred-points\":58396,\"hurricane\":63313,\"hydra\":59014,\"hyphen\":45,\"i-cursor\":62022,\"i\":73,\"ice-cream\":63504,\"ice-skate\":63404,\"icicles\":63405,\"icons\":63597,\"id-badge\":62145,\"id-card-clip\":62591,\"id-card\":62146,\"igloo\":63406,\"image-landscape\":57781,\"image-polaroid-user\":57782,\"image-polaroid\":63684,\"image-portrait\":62432,\"image-slash\":57783,\"image-user\":57784,\"image\":61502,\"images-user\":57785,\"images\":62210,\"inbox-full\":57786,\"inbox-in\":62224,\"inbox-out\":62225,\"inbox\":61468,\"inboxes\":57787,\"indent\":61500,\"indian-rupee-sign\":57788,\"industry-windows\":62387,\"industry\":62069,\"infinity\":62772,\"info\":61737,\"inhaler\":62969,\"input-numeric\":57789,\"input-pipe\":57790,\"input-text\":57791,\"integral\":63079,\"interrobang\":58810,\"intersection\":63080,\"island-tropical\":63505,\"italic\":61491,\"j\":74,\"jack-o-lantern\":62222,\"jar-wheat\":58647,\"jar\":58646,\"jedi\":63081,\"jet-fighter-up\":58648,\"jet-fighter\":61691,\"joint\":62869,\"joystick\":63685,\"jug-bottle\":58875,\"jug-detergent\":58649,\"jug\":63686,\"k\":75,\"kaaba\":63083,\"kazoo\":63687,\"kerning\":63599,\"key-skeleton-left-right\":58292,\"key-skeleton\":63219,\"key\":61572,\"keyboard-brightness-low\":57793,\"keyboard-brightness\":57792,\"keyboard-down\":57794,\"keyboard-left\":57795,\"keyboard\":61724,\"keynote\":63084,\"khanda\":63085,\"kidneys\":62971,\"kip-sign\":57796,\"kit-medical\":62585,\"kitchen-set\":58650,\"kite\":63220,\"kiwi-bird\":62773,\"kiwi-fruit\":58124,\"knife-kitchen\":63221,\"knife\":62180,\"l\":76,\"lacrosse-stick-ball\":58294,\"lacrosse-stick\":58293,\"lambda\":63086,\"lamp-desk\":57364,\"lamp-floor\":57365,\"lamp-street\":57797,\"lamp\":62666,\"land-mine-on\":58651,\"landmark-dome\":63314,\"landmark-flag\":58652,\"landmark-magnifying-glass\":58914,\"landmark\":63087,\"language\":61867,\"laptop-arrow-down\":57798,\"laptop-binary\":58855,\"laptop-code\":62972,\"laptop-file\":58653,\"laptop-medical\":63506,\"laptop-mobile\":63610,\"laptop-slash\":57799,\"laptop\":61705,\"lari-sign\":57800,\"lasso-sparkles\":57801,\"lasso\":63688,\"layer-group\":62973,\"layer-minus\":62974,\"layer-plus\":62975,\"leaf-heart\":62667,\"leaf-maple\":63222,\"leaf-oak\":63223,\"leaf\":61548,\"leafy-green\":58397,\"left-from-bracket\":58988,\"left-from-line\":62280,\"left-long-to-line\":58398,\"left-long\":62218,\"left-right\":62263,\"left-to-bracket\":58989,\"left-to-line\":62283,\"left\":62293,\"lemon\":61588,\"less-than-equal\":62775,\"less-than\":60,\"life-ring\":61901,\"light-ceiling\":57366,\"light-emergency-on\":58400,\"light-emergency\":58399,\"light-switch-off\":57368,\"light-switch-on\":57369,\"light-switch\":57367,\"lightbulb-cfl-on\":58791,\"lightbulb-cfl\":58790,\"lightbulb-dollar\":63088,\"lightbulb-exclamation-on\":57802,\"lightbulb-exclamation\":63089,\"lightbulb-gear\":58877,\"lightbulb-message\":59015,\"lightbulb-on\":63090,\"lightbulb-slash\":63091,\"lightbulb\":61675,\"lighthouse\":58898,\"lights-holiday\":63410,\"line-columns\":63600,\"line-height\":63601,\"lines-leaning\":58654,\"link-horizontal-slash\":57804,\"link-horizontal\":57803,\"link-simple-slash\":57806,\"link-simple\":57805,\"link-slash\":61735,\"link\":61633,\"lips\":62976,\"lira-sign\":61845,\"list-check\":61614,\"list-dropdown\":57807,\"list-music\":63689,\"list-ol\":61643,\"list-radio\":57808,\"list-timeline\":57809,\"list-tree\":57810,\"list-ul\":61642,\"list\":61498,\"litecoin-sign\":57811,\"loader\":57812,\"lobster\":58401,\"location-arrow-up\":58938,\"location-arrow\":61732,\"location-check\":62982,\"location-crosshairs-slash\":62979,\"location-crosshairs\":62977,\"location-dot-slash\":62981,\"location-dot\":62405,\"location-exclamation\":62984,\"location-minus\":62985,\"location-pen\":62983,\"location-pin-lock\":58655,\"location-pin-slash\":62988,\"location-pin\":61505,\"location-plus\":62986,\"location-question\":62987,\"location-smile\":62989,\"location-xmark\":62990,\"lock-a\":58402,\"lock-hashtag\":58403,\"lock-keyhole-open\":62402,\"lock-keyhole\":62221,\"lock-open\":62401,\"lock\":61475,\"locust\":58656,\"lollipop\":58404,\"loveseat\":62668,\"luchador-mask\":62549,\"lungs-virus\":57447,\"lungs\":62980,\"m\":77,\"mace\":63224,\"magnet\":61558,\"magnifying-glass-arrow-right\":58657,\"magnifying-glass-arrows-rotate\":58974,\"magnifying-glass-chart\":58658,\"magnifying-glass-dollar\":63112,\"magnifying-glass-location\":63113,\"magnifying-glass-minus\":61456,\"magnifying-glass-music\":58975,\"magnifying-glass-play\":58976,\"magnifying-glass-plus\":61454,\"magnifying-glass-waveform\":58977,\"magnifying-glass\":61442,\"mailbox-flag-up\":58811,\"mailbox\":63507,\"manat-sign\":57813,\"mandolin\":63225,\"mango\":58127,\"manhole\":57814,\"map-location-dot\":62880,\"map-location\":62879,\"map-pin\":62070,\"map\":62073,\"marker\":62881,\"mars-and-venus-burst\":58659,\"mars-and-venus\":61988,\"mars-double\":61991,\"mars-stroke-right\":61995,\"mars-stroke-up\":61994,\"mars-stroke\":61993,\"mars\":61986,\"martini-glass-citrus\":62817,\"martini-glass-empty\":61440,\"martini-glass\":62843,\"mask-face\":57815,\"mask-snorkel\":58295,\"mask-ventilator\":58660,\"mask\":63226,\"masks-theater\":63024,\"mattress-pillow\":58661,\"maximize\":62238,\"meat\":63508,\"medal\":62882,\"megaphone\":63093,\"melon-slice\":58129,\"melon\":58128,\"memo-circle-check\":57817,\"memo-circle-info\":58522,\"memo-pad\":57818,\"memo\":57816,\"memory\":62776,\"menorah\":63094,\"mercury\":61987,\"merge\":58662,\"message-arrow-down\":57819,\"message-arrow-up-right\":57821,\"message-arrow-up\":57820,\"message-bot\":58296,\"message-captions\":57822,\"message-check\":62626,\"message-code\":57823,\"message-dollar\":63056,\"message-dots\":62627,\"message-exclamation\":62629,\"message-heart\":58825,\"message-image\":57824,\"message-lines\":62630,\"message-medical\":63476,\"message-middle-top\":57826,\"message-middle\":57825,\"message-minus\":62631,\"message-music\":63663,\"message-pen\":62628,\"message-plus\":62632,\"message-question\":57827,\"message-quote\":57828,\"message-slash\":62633,\"message-smile\":62634,\"message-sms\":57829,\"message-text\":57830,\"message-xmark\":62635,\"message\":62074,\"messages-dollar\":63058,\"messages-question\":57831,\"messages\":62646,\"meteor\":63315,\"meter-bolt\":57833,\"meter-droplet\":57834,\"meter-fire\":57835,\"meter\":57832,\"microchip-ai\":57836,\"microchip\":62171,\"microphone-lines-slash\":62777,\"microphone-lines\":62409,\"microphone-slash\":61745,\"microphone-stand\":63691,\"microphone\":61744,\"microscope\":62992,\"microwave\":57371,\"mill-sign\":57837,\"minimize\":63372,\"minus\":61544,\"mistletoe\":63412,\"mitten\":63413,\"mobile-button\":61707,\"mobile-notch\":57838,\"mobile-retro\":58663,\"mobile-screen-button\":62413,\"mobile-screen\":62415,\"mobile-signal-out\":57840,\"mobile-signal\":57839,\"mobile\":62414,\"money-bill-1-wave\":62779,\"money-bill-1\":62417,\"money-bill-simple-wave\":57842,\"money-bill-simple\":57841,\"money-bill-transfer\":58664,\"money-bill-trend-up\":58665,\"money-bill-wave\":62778,\"money-bill-wheat\":58666,\"money-bill\":61654,\"money-bills-simple\":57844,\"money-bills\":57843,\"money-check-dollar-pen\":63603,\"money-check-dollar\":62781,\"money-check-pen\":63602,\"money-check\":62780,\"money-from-bracket\":58130,\"money-simple-from-bracket\":58131,\"monitor-waveform\":62993,\"monkey\":63227,\"monument\":62886,\"moon-cloud\":63316,\"moon-over-sun\":63306,\"moon-stars\":63317,\"moon\":61830,\"moped\":58297,\"mortar-pestle\":62887,\"mosque\":63096,\"mosquito-net\":58668,\"mosquito\":58667,\"motorcycle\":61980,\"mound\":58669,\"mountain-city\":58670,\"mountain-sun\":58671,\"mountain\":63228,\"mountains\":63229,\"mouse-field\":58792,\"mp3-player\":63694,\"mug-hot\":63414,\"mug-marshmallows\":63415,\"mug-saucer\":61684,\"mug-tea-saucer\":57845,\"mug-tea\":63605,\"mug\":63604,\"mushroom\":58405,\"music-magnifying-glass\":58978,\"music-note-slash\":63696,\"music-note\":63695,\"music-slash\":63697,\"music\":61441,\"mustache\":58812,\"n\":78,\"naira-sign\":57846,\"narwhal\":63230,\"nesting-dolls\":58298,\"network-wired\":63231,\"neuter\":61996,\"newspaper\":61930,\"nfc-lock\":57848,\"nfc-magnifying-glass\":57849,\"nfc-pen\":57850,\"nfc-signal\":57851,\"nfc-slash\":57852,\"nfc-symbol\":58673,\"nfc-trash\":57853,\"nfc\":57847,\"nose\":58813,\"not-equal\":62782,\"notdef\":57854,\"note-medical\":57856,\"note-sticky\":62025,\"note\":57855,\"notebook\":57857,\"notes-medical\":62593,\"notes\":57858,\"o\":79,\"object-exclude\":58524,\"object-group\":62023,\"object-intersect\":58525,\"object-subtract\":58526,\"object-ungroup\":62024,\"object-union\":58527,\"objects-align-bottom\":58299,\"objects-align-center-horizontal\":58300,\"objects-align-center-vertical\":58301,\"objects-align-left\":58302,\"objects-align-right\":58303,\"objects-align-top\":58304,\"objects-column\":58305,\"octagon-check\":58406,\"octagon-divide\":57859,\"octagon-exclamation\":57860,\"octagon-minus\":62216,\"octagon-plus\":62209,\"octagon-xmark\":62192,\"octagon\":62214,\"octopus\":59016,\"oil-can-drip\":57861,\"oil-can\":62995,\"oil-temperature\":62996,\"oil-well\":58674,\"olive-branch\":58135,\"olive\":58134,\"om\":63097,\"omega\":63098,\"onion\":58407,\"option\":58136,\"ornament\":63416,\"otter\":63232,\"outdent\":61499,\"outlet\":57372,\"oven\":57373,\"overline\":63606,\"p\":80,\"page-caret-down\":58409,\"page-caret-up\":58410,\"page\":58408,\"pager\":63509,\"paint-roller\":62890,\"paintbrush-fine\":62889,\"paintbrush-pencil\":57862,\"paintbrush\":61948,\"palette\":62783,\"pallet-box\":57864,\"pallet-boxes\":62595,\"pallet\":62594,\"pan-food\":58411,\"pan-frying\":58412,\"pancakes\":58413,\"panel-ews\":58414,\"panel-fire\":58415,\"panorama\":57865,\"paper-plane-top\":57866,\"paper-plane\":61912,\"paperclip-vertical\":58306,\"paperclip\":61638,\"parachute-box\":62669,\"paragraph-left\":63608,\"paragraph\":61917,\"party-bell\":58138,\"party-horn\":58139,\"passport\":62891,\"paste\":61674,\"pause\":61516,\"paw-claws\":63234,\"paw-simple\":63233,\"paw\":61872,\"peace\":63100,\"peach\":57867,\"peanut\":58416,\"peanuts\":58417,\"peapod\":58140,\"pear\":57868,\"pedestal\":57869,\"pegasus\":63235,\"pen-circle\":57870,\"pen-clip-slash\":57871,\"pen-clip\":62213,\"pen-fancy-slash\":57872,\"pen-fancy\":62892,\"pen-field\":57873,\"pen-line\":57874,\"pen-nib-slash\":58529,\"pen-nib\":62893,\"pen-paintbrush\":63000,\"pen-ruler\":62894,\"pen-slash\":57875,\"pen-swirl\":57876,\"pen-to-square\":61508,\"pen\":62212,\"pencil-mechanical\":58826,\"pencil-slash\":57877,\"pencil\":62211,\"people-arrows\":57448,\"people-carry-box\":62670,\"people-dress-simple\":57880,\"people-dress\":57879,\"people-group\":58675,\"people-line\":58676,\"people-pants-simple\":57882,\"people-pants\":57881,\"people-pulling\":58677,\"people-robbery\":58678,\"people-roof\":58679,\"people-simple\":57883,\"people\":57878,\"pepper-hot\":63510,\"pepper\":58418,\"percent\":37,\"period\":46,\"person-arrow-down-to-line\":58680,\"person-arrow-up-from-line\":58681,\"person-biking-mountain\":63563,\"person-biking\":63562,\"person-booth\":63318,\"person-breastfeeding\":58682,\"person-burst\":58683,\"person-cane\":58684,\"person-carry-box\":62671,\"person-chalkboard\":58685,\"person-circle-check\":58686,\"person-circle-exclamation\":58687,\"person-circle-minus\":58688,\"person-circle-plus\":58689,\"person-circle-question\":58690,\"person-circle-xmark\":58691,\"person-digging\":63582,\"person-dolly-empty\":62673,\"person-dolly\":62672,\"person-dots-from-line\":62576,\"person-dress-burst\":58692,\"person-dress-fairy\":58887,\"person-dress-simple\":57884,\"person-dress\":61826,\"person-drowning\":58693,\"person-fairy\":58888,\"person-falling-burst\":58695,\"person-falling\":58694,\"person-from-portal\":57379,\"person-half-dress\":58696,\"person-harassing\":58697,\"person-hiking\":63212,\"person-military-pointing\":58698,\"person-military-rifle\":58699,\"person-military-to-person\":58700,\"person-pinball\":57885,\"person-praying\":63107,\"person-pregnant\":58142,\"person-rays\":58701,\"person-rifle\":58702,\"person-running-fast\":58879,\"person-running\":63244,\"person-seat-reclined\":57887,\"person-seat\":57886,\"person-shelter\":58703,\"person-sign\":63319,\"person-simple\":57888,\"person-skating\":63429,\"person-ski-jumping\":63431,\"person-ski-lift\":63432,\"person-skiing-nordic\":63434,\"person-skiing\":63433,\"person-sledding\":63435,\"person-snowboarding\":63438,\"person-snowmobiling\":63441,\"person-swimming\":62916,\"person-through-window\":58793,\"person-to-door\":58419,\"person-to-portal\":57378,\"person-walking-arrow-loop-left\":58705,\"person-walking-arrow-right\":58706,\"person-walking-dashed-line-arrow-right\":58707,\"person-walking-luggage\":58708,\"person-walking-with-cane\":62109,\"person-walking\":62804,\"person\":61827,\"peseta-sign\":57889,\"peso-sign\":57890,\"phone-arrow-down-left\":57891,\"phone-arrow-right\":58814,\"phone-arrow-up-right\":57892,\"phone-flip\":63609,\"phone-hangup\":57893,\"phone-intercom\":58420,\"phone-missed\":57894,\"phone-office\":63101,\"phone-plus\":62674,\"phone-rotary\":63699,\"phone-slash\":62429,\"phone-volume\":62112,\"phone-xmark\":57895,\"phone\":61589,\"photo-film-music\":57896,\"photo-film\":63612,\"pi\":63102,\"piano-keyboard\":63701,\"piano\":63700,\"pickaxe\":58815,\"pickleball\":58421,\"pie\":63237,\"pig\":63238,\"piggy-bank\":62675,\"pills\":62596,\"pinata\":58307,\"pinball\":57897,\"pineapple\":58143,\"pipe-circle-check\":58422,\"pipe-collar\":58423,\"pipe-section\":58424,\"pipe-smoking\":58308,\"pipe-valve\":58425,\"pipe\":124,\"pizza-slice\":63512,\"pizza\":63511,\"place-of-worship\":63103,\"plane-arrival\":62895,\"plane-circle-check\":58709,\"plane-circle-exclamation\":58710,\"plane-circle-xmark\":58711,\"plane-departure\":62896,\"plane-engines\":62430,\"plane-lock\":58712,\"plane-prop\":57899,\"plane-slash\":57449,\"plane-tail\":57900,\"plane-up-slash\":57902,\"plane-up\":57901,\"plane\":61554,\"planet-moon\":57375,\"planet-ringed\":57376,\"plant-wilt\":58794,\"plate-utensils\":58427,\"plate-wheat\":58714,\"play-pause\":57903,\"play\":61515,\"plug-circle-bolt\":58715,\"plug-circle-check\":58716,\"plug-circle-exclamation\":58717,\"plug-circle-minus\":58718,\"plug-circle-plus\":58719,\"plug-circle-xmark\":58720,\"plug\":61926,\"plus-large\":58782,\"plus-minus\":58428,\"plus\":43,\"podcast\":62158,\"podium-star\":63320,\"podium\":63104,\"police-box\":57377,\"poll-people\":63321,\"pompebled\":58429,\"poo-storm\":63322,\"poo\":62206,\"pool-8-ball\":58309,\"poop\":63001,\"popcorn\":63513,\"popsicle\":58430,\"pot-food\":58431,\"potato\":58432,\"power-off\":61457,\"prescription-bottle-medical\":62598,\"prescription-bottle-pill\":58816,\"prescription-bottle\":62597,\"prescription\":62897,\"presentation-screen\":63109,\"pretzel\":58433,\"print-magnifying-glass\":63514,\"print-slash\":63110,\"print\":61487,\"projector\":63702,\"pump-medical\":57450,\"pump-soap\":57451,\"pump\":58434,\"pumpkin\":63239,\"puzzle-piece-simple\":57905,\"puzzle-piece\":61742,\"puzzle\":58435,\"q\":81,\"qrcode\":61481,\"question\":63,\"quote-left\":61709,\"quote-right\":61710,\"quotes\":57908,\"r\":82,\"rabbit-running\":63241,\"rabbit\":63240,\"raccoon\":58899,\"racquet\":62554,\"radar\":57380,\"radiation\":63417,\"radio-tuner\":63704,\"radio\":63703,\"rainbow\":63323,\"raindrops\":63324,\"ram\":63242,\"ramp-loading\":62676,\"ranking-star\":58721,\"raygun\":57381,\"receipt\":62787,\"record-vinyl\":63705,\"rectangle-ad\":63041,\"rectangle-barcode\":62563,\"rectangle-code\":58146,\"rectangle-history-circle-plus\":58531,\"rectangle-history-circle-user\":58532,\"rectangle-history\":58530,\"rectangle-list\":61474,\"rectangle-pro\":57909,\"rectangle-terminal\":57910,\"rectangle-vertical-history\":57911,\"rectangle-vertical\":62203,\"rectangle-wide\":62204,\"rectangle-xmark\":62480,\"rectangle\":62202,\"rectangles-mixed\":58147,\"recycle\":61880,\"reel\":57912,\"reflect-both\":58991,\"reflect-horizontal\":58980,\"reflect-vertical\":58981,\"refrigerator\":57382,\"registered\":62045,\"repeat-1\":62309,\"repeat\":62307,\"reply-all\":61730,\"reply-clock\":57913,\"reply\":62437,\"republican\":63326,\"restroom-simple\":57914,\"restroom\":63421,\"retweet\":61561,\"rhombus\":57915,\"ribbon\":62678,\"right-from-bracket\":62197,\"right-from-line\":62279,\"right-left-large\":58849,\"right-left\":62306,\"right-long-to-line\":58436,\"right-long\":62219,\"right-to-bracket\":62198,\"right-to-line\":62284,\"right\":62294,\"ring-diamond\":58795,\"ring\":63243,\"rings-wedding\":63515,\"road-barrier\":58722,\"road-bridge\":58723,\"road-circle-check\":58724,\"road-circle-exclamation\":58725,\"road-circle-xmark\":58726,\"road-lock\":58727,\"road-spikes\":58728,\"road\":61464,\"robot-astromech\":58066,\"robot\":62788,\"rocket-launch\":57383,\"rocket\":61749,\"roller-coaster\":58148,\"rotate-exclamation\":57916,\"rotate-left\":62186,\"rotate-reverse\":58929,\"rotate-right\":62201,\"rotate\":62193,\"route-highway\":63002,\"route-interstate\":63003,\"route\":62679,\"router\":63706,\"rss\":61598,\"ruble-sign\":61784,\"rug\":58729,\"rugby-ball\":58310,\"ruler-combined\":62790,\"ruler-horizontal\":62791,\"ruler-triangle\":63004,\"ruler-vertical\":62792,\"ruler\":62789,\"rupee-sign\":61782,\"rupiah-sign\":57917,\"rv\":63422,\"s\":83,\"sack-dollar\":63517,\"sack-xmark\":58730,\"sack\":63516,\"sailboat\":58437,\"salad\":63518,\"salt-shaker\":58438,\"sandwich\":63519,\"satellite-dish\":63424,\"satellite\":63423,\"sausage\":63520,\"saxophone-fire\":63707,\"saxophone\":63708,\"scale-balanced\":62030,\"scale-unbalanced-flip\":62742,\"scale-unbalanced\":62741,\"scalpel-line-dashed\":63006,\"scalpel\":63005,\"scanner-gun\":62600,\"scanner-image\":63731,\"scanner-keyboard\":62601,\"scanner-touchscreen\":62602,\"scarecrow\":63245,\"scarf\":63425,\"school-circle-check\":58731,\"school-circle-exclamation\":58732,\"school-circle-xmark\":58733,\"school-flag\":58734,\"school-lock\":58735,\"school\":62793,\"scissors\":61636,\"screen-users\":63037,\"screencast\":57918,\"screwdriver-wrench\":63449,\"screwdriver\":62794,\"scribble\":57919,\"scroll-old\":63247,\"scroll-torah\":63136,\"scroll\":63246,\"scrubber\":62200,\"scythe\":63248,\"sd-card\":63426,\"sd-cards\":57920,\"seal-exclamation\":57922,\"seal-question\":57923,\"seal\":57921,\"seat-airline\":57924,\"section\":58439,\"seedling\":62680,\"semicolon\":59,\"send-back\":63614,\"send-backward\":63615,\"sensor-cloud\":57388,\"sensor-fire\":57386,\"sensor-on\":57387,\"sensor-triangle-exclamation\":57385,\"sensor\":57384,\"server\":62003,\"shapes\":63007,\"share-all\":62311,\"share-from-square\":61773,\"share-nodes\":61920,\"share\":61540,\"sheep\":63249,\"sheet-plastic\":58737,\"shekel-sign\":61963,\"shelves-empty\":57926,\"shelves\":62592,\"shield-cat\":58738,\"shield-check\":62199,\"shield-cross\":63250,\"shield-dog\":58739,\"shield-exclamation\":57927,\"shield-halved\":62445,\"shield-heart\":58740,\"shield-keyhole\":57928,\"shield-minus\":57929,\"shield-plus\":57930,\"shield-quartered\":58741,\"shield-slash\":57931,\"shield-virus\":57452,\"shield-xmark\":57932,\"shield\":61746,\"ship\":61978,\"shirt-long-sleeve\":58311,\"shirt-running\":58312,\"shirt-tank-top\":58313,\"shirt\":62803,\"shish-kebab\":63521,\"shoe-prints\":62795,\"shop-lock\":58533,\"shop-slash\":57456,\"shop\":62799,\"shovel-snow\":63427,\"shovel\":63251,\"shower-down\":57933,\"shower\":62156,\"shredder\":63114,\"shrimp\":58440,\"shuffle\":61556,\"shutters\":58441,\"shuttle-space\":61847,\"shuttlecock\":62555,\"sickle\":63522,\"sidebar-flip\":57935,\"sidebar\":57934,\"sigma\":63115,\"sign-hanging\":62681,\"sign-post\":58916,\"sign-posts-wrench\":58918,\"sign-posts\":58917,\"signal-bars-fair\":63122,\"signal-bars-good\":63123,\"signal-bars-slash\":63124,\"signal-bars-weak\":63121,\"signal-bars\":63120,\"signal-fair\":63117,\"signal-good\":63118,\"signal-slash\":63125,\"signal-stream-slash\":57936,\"signal-stream\":63709,\"signal-strong\":63119,\"signal-weak\":63116,\"signal\":61458,\"signature-lock\":58314,\"signature-slash\":58315,\"signature\":62903,\"signs-post\":62071,\"sim-card\":63428,\"sim-cards\":57937,\"sink\":57453,\"siren-on\":57390,\"siren\":57389,\"sitemap\":61672,\"skeleton-ribs\":58827,\"skeleton\":63008,\"ski-boot-ski\":58317,\"ski-boot\":58316,\"skull-cow\":63710,\"skull-crossbones\":63252,\"skull\":62796,\"slash-back\":92,\"slash-forward\":47,\"slash\":63253,\"sleigh\":63436,\"slider\":57938,\"sliders-simple\":57939,\"sliders-up\":62449,\"sliders\":61918,\"slot-machine\":58318,\"smog\":63327,\"smoke\":63328,\"smoking\":62605,\"snake\":63254,\"snooze\":63616,\"snow-blowing\":63329,\"snowflake-droplets\":58817,\"snowflake\":62172,\"snowflakes\":63439,\"snowman-head\":63387,\"snowman\":63440,\"snowplow\":63442,\"soap\":57454,\"socks\":63126,\"soft-serve\":58368,\"solar-panel\":62906,\"solar-system\":57391,\"sort-down\":61661,\"sort-up\":61662,\"sort\":61660,\"spa\":62907,\"space-station-moon-construction\":57396,\"space-station-moon\":57395,\"spade\":62196,\"spaghetti-monster-flying\":63099,\"sparkle\":58838,\"sparkles\":63632,\"speaker\":63711,\"speakers\":63712,\"spell-check\":63633,\"spider-black-widow\":63256,\"spider-web\":63257,\"spider\":63255,\"spinner-scale\":58922,\"spinner-third\":62452,\"spinner\":61712,\"split\":57940,\"splotch\":62908,\"spoon\":62181,\"sportsball\":58443,\"spray-can-sparkles\":62928,\"spray-can\":62909,\"sprinkler-ceiling\":58444,\"sprinkler\":57397,\"square-0\":57941,\"square-1\":57942,\"square-2\":57943,\"square-3\":57944,\"square-4\":57945,\"square-5\":57946,\"square-6\":57947,\"square-7\":57948,\"square-8\":57949,\"square-9\":57950,\"square-a-lock\":58445,\"square-a\":57951,\"square-ampersand\":57952,\"square-arrow-down-left\":57953,\"square-arrow-down-right\":57954,\"square-arrow-down\":62265,\"square-arrow-left\":62266,\"square-arrow-right\":62267,\"square-arrow-up-left\":57955,\"square-arrow-up-right\":61772,\"square-arrow-up\":62268,\"square-b\":57956,\"square-binary\":59035,\"square-bolt\":57957,\"square-c\":57958,\"square-caret-down\":61776,\"square-caret-left\":61841,\"square-caret-right\":61778,\"square-caret-up\":61777,\"square-check\":61770,\"square-chevron-down\":62249,\"square-chevron-left\":62250,\"square-chevron-right\":62251,\"square-chevron-up\":62252,\"square-code\":57959,\"square-d\":57960,\"square-dashed-circle-plus\":58818,\"square-dashed\":57961,\"square-divide\":57962,\"square-dollar\":62185,\"square-down-left\":57963,\"square-down-right\":57964,\"square-down\":62288,\"square-e\":57965,\"square-ellipsis-vertical\":57967,\"square-ellipsis\":57966,\"square-envelope\":61849,\"square-exclamation\":62241,\"square-f\":57968,\"square-fragile\":62619,\"square-full\":62556,\"square-g\":57969,\"square-h\":61693,\"square-heart\":62664,\"square-i\":57970,\"square-info\":62223,\"square-j\":57971,\"square-k\":57972,\"square-kanban\":58504,\"square-l\":57973,\"square-left\":62289,\"square-list\":58505,\"square-m\":57974,\"square-minus\":61766,\"square-n\":57975,\"square-nfi\":58742,\"square-o\":57976,\"square-p\":57977,\"square-parking-slash\":62999,\"square-parking\":62784,\"square-pen\":61771,\"square-person-confined\":58743,\"square-phone-flip\":63611,\"square-phone-hangup\":57978,\"square-phone\":61592,\"square-plus\":61694,\"square-poll-horizontal\":63106,\"square-poll-vertical\":63105,\"square-q\":57979,\"square-quarters\":58446,\"square-question\":62205,\"square-quote\":58153,\"square-r\":57980,\"square-right\":62290,\"square-ring\":58447,\"square-root-variable\":63128,\"square-root\":63127,\"square-rss\":61763,\"square-s\":57981,\"square-share-nodes\":61921,\"square-sliders-vertical\":62450,\"square-sliders\":62448,\"square-small\":57982,\"square-star\":57983,\"square-t\":57984,\"square-terminal\":58154,\"square-this-way-up\":62623,\"square-u\":57985,\"square-up-left\":57986,\"square-up-right\":62304,\"square-up\":62291,\"square-user\":57987,\"square-v\":57988,\"square-virus\":58744,\"square-w\":57989,\"square-x\":57990,\"square-xmark\":62163,\"square-y\":57991,\"square-z\":57992,\"square\":61640,\"squid\":58448,\"squirrel\":63258,\"staff-snake\":58745,\"staff\":63259,\"stairs\":57993,\"stamp\":62911,\"standard-definition\":57994,\"stapler\":58799,\"star-and-crescent\":63129,\"star-christmas\":63444,\"star-exclamation\":62195,\"star-half-stroke\":62912,\"star-half\":61577,\"star-of-david\":63130,\"star-of-life\":63009,\"star-sharp-half-stroke\":57997,\"star-sharp-half\":57996,\"star-sharp\":57995,\"star-shooting\":57398,\"star\":61445,\"starfighter-twin-ion-engine-advanced\":57998,\"starfighter-twin-ion-engine\":57400,\"starfighter\":57399,\"stars\":63330,\"starship-freighter\":57402,\"starship\":57401,\"steak\":63524,\"steering-wheel\":63010,\"sterling-sign\":61780,\"stethoscope\":61681,\"stocking\":63445,\"stomach\":63011,\"stop\":61517,\"stopwatch-20\":57455,\"stopwatch\":62194,\"store-lock\":58534,\"store-slash\":57457,\"store\":62798,\"strawberry\":58155,\"street-view\":61981,\"stretcher\":63525,\"strikethrough\":61644,\"stroopwafel\":62801,\"subscript\":61740,\"subtitles-slash\":58896,\"subtitles\":58895,\"suitcase-medical\":61690,\"suitcase-rolling\":62913,\"suitcase\":61682,\"sun-bright\":57999,\"sun-cloud\":63331,\"sun-dust\":63332,\"sun-haze\":63333,\"sun-plant-wilt\":58746,\"sun\":61829,\"sunglasses\":63634,\"sunrise\":63334,\"sunset\":63335,\"superscript\":61739,\"sushi-roll\":58507,\"sushi\":58506,\"swap-arrows\":58890,\"swap\":58889,\"swatchbook\":62915,\"sword-laser-alt\":57404,\"sword-laser\":57403,\"sword\":63260,\"swords-laser\":57405,\"swords\":63261,\"symbols\":63598,\"synagogue\":63131,\"syringe\":62606,\"t-rex\":58921,\"t\":84,\"table-cells-column-lock\":59000,\"table-cells-column-unlock\":59024,\"table-cells-large\":61449,\"table-cells-lock\":59001,\"table-cells-row-lock\":59002,\"table-cells-row-unlock\":59025,\"table-cells-unlock\":59026,\"table-cells\":61450,\"table-columns\":61659,\"table-layout\":58000,\"table-list\":61451,\"table-picnic\":58157,\"table-pivot\":58001,\"table-rows\":58002,\"table-tennis-paddle-ball\":62557,\"table-tree\":58003,\"table\":61646,\"tablet-button\":61706,\"tablet-rugged\":62607,\"tablet-screen-button\":62458,\"tablet-screen\":62460,\"tablet\":62459,\"tablets\":62608,\"tachograph-digital\":62822,\"taco\":63526,\"tag\":61483,\"tags\":61484,\"tally-1\":58004,\"tally-2\":58005,\"tally-3\":58006,\"tally-4\":58007,\"tally\":63132,\"tamale\":58449,\"tank-water\":58450,\"tape\":62683,\"tarp-droplet\":58748,\"tarp\":58747,\"taxi-bus\":58008,\"taxi\":61882,\"teddy-bear\":58319,\"teeth-open\":63023,\"teeth\":63022,\"telescope\":57406,\"temperature-arrow-down\":57407,\"temperature-arrow-up\":57408,\"temperature-empty\":62155,\"temperature-full\":62151,\"temperature-half\":62153,\"temperature-high\":63337,\"temperature-list\":58009,\"temperature-low\":63339,\"temperature-quarter\":62154,\"temperature-snow\":63336,\"temperature-sun\":63338,\"temperature-three-quarters\":62152,\"tenge-sign\":63447,\"tennis-ball\":62558,\"tent-arrow-down-to-line\":58750,\"tent-arrow-left-right\":58751,\"tent-arrow-turn-left\":58752,\"tent-arrows-down\":58753,\"tent-double-peak\":58919,\"tent\":58749,\"tents\":58754,\"terminal\":61728,\"text-height\":61492,\"text-size\":63636,\"text-slash\":63613,\"text-width\":61493,\"text\":63635,\"thermometer\":62609,\"theta\":63134,\"thought-bubble\":58158,\"thumbs-down\":61797,\"thumbs-up\":61796,\"thumbtack-slash\":59023,\"thumbtack\":61581,\"tick\":58159,\"ticket-airline\":58010,\"ticket-perforated\":58942,\"ticket-simple\":62463,\"ticket\":61765,\"tickets-airline\":58011,\"tickets-perforated\":58943,\"tickets-simple\":58969,\"tickets\":58968,\"tilde\":126,\"timeline-arrow\":58013,\"timeline\":58012,\"timer\":58014,\"tire-flat\":63026,\"tire-pressure-warning\":63027,\"tire-rugged\":63028,\"tire\":63025,\"toggle-large-off\":58800,\"toggle-large-on\":58801,\"toggle-off\":61956,\"toggle-on\":61957,\"toilet-paper-blank-under\":58015,\"toilet-paper-blank\":63263,\"toilet-paper-check\":58802,\"toilet-paper-slash\":57458,\"toilet-paper-under-slash\":58017,\"toilet-paper-under\":58016,\"toilet-paper-xmark\":58803,\"toilet-paper\":63262,\"toilet-portable\":58755,\"toilet\":63448,\"toilets-portable\":58756,\"tomato\":58160,\"tombstone-blank\":63265,\"tombstone\":63264,\"toolbox\":62802,\"tooth\":62921,\"toothbrush\":63029,\"torii-gate\":63137,\"tornado\":63343,\"tower-broadcast\":62745,\"tower-cell\":58757,\"tower-control\":58018,\"tower-observation\":58758,\"tractor\":63266,\"trademark\":62044,\"traffic-cone\":63030,\"traffic-light-go\":63032,\"traffic-light-slow\":63033,\"traffic-light-stop\":63034,\"traffic-light\":63031,\"trailer\":57409,\"train-subway-tunnel\":58019,\"train-subway\":62009,\"train-track\":58451,\"train-tram\":58804,\"train-tunnel\":58452,\"train\":62008,\"transformer-bolt\":58020,\"transgender\":61989,\"transporter-1\":57411,\"transporter-2\":57412,\"transporter-3\":57413,\"transporter-4\":58021,\"transporter-5\":58022,\"transporter-6\":58023,\"transporter-7\":58024,\"transporter-empty\":57414,\"transporter\":57410,\"trash-arrow-up\":63529,\"trash-can-arrow-up\":63530,\"trash-can-check\":58025,\"trash-can-clock\":58026,\"trash-can-list\":58027,\"trash-can-plus\":58028,\"trash-can-slash\":58029,\"trash-can-undo\":63638,\"trash-can-xmark\":58030,\"trash-can\":62189,\"trash-check\":58031,\"trash-clock\":58032,\"trash-list\":58033,\"trash-plus\":58034,\"trash-slash\":58035,\"trash-undo\":63637,\"trash-xmark\":58036,\"trash\":61944,\"treasure-chest\":63267,\"tree-christmas\":63451,\"tree-city\":58759,\"tree-deciduous\":62464,\"tree-decorated\":63452,\"tree-large\":63453,\"tree-palm\":63531,\"tree\":61883,\"trees\":63268,\"triangle-exclamation\":61553,\"triangle-instrument\":63714,\"triangle-person-digging\":63581,\"triangle\":62188,\"tricycle-adult\":58820,\"tricycle\":58819,\"trillium\":58760,\"trophy-star\":62187,\"trophy\":61585,\"trowel-bricks\":58762,\"trowel\":58761,\"truck-arrow-right\":58763,\"truck-bolt\":58320,\"truck-clock\":62604,\"truck-container-empty\":58037,\"truck-container\":62684,\"truck-droplet\":58764,\"truck-fast\":62603,\"truck-field-un\":58766,\"truck-field\":58765,\"truck-fire\":58970,\"truck-flatbed\":58038,\"truck-front\":58039,\"truck-ladder\":58967,\"truck-medical\":61689,\"truck-monster\":63035,\"truck-moving\":62687,\"truck-pickup\":63036,\"truck-plane\":58767,\"truck-plow\":63454,\"truck-ramp-box\":62686,\"truck-ramp-couch\":62685,\"truck-ramp\":62688,\"truck-tow\":58040,\"truck-utensils\":58920,\"truck\":61649,\"trumpet\":63715,\"tty-answer\":58041,\"tty\":61924,\"tugrik-sign\":58042,\"turkey\":63269,\"turkish-lira-sign\":58043,\"turn-down-left\":58161,\"turn-down-right\":58453,\"turn-down\":62398,\"turn-left-down\":58935,\"turn-left-up\":58936,\"turn-left\":58934,\"turn-right\":58937,\"turn-up\":62399,\"turntable\":63716,\"turtle\":63270,\"tv-music\":63718,\"tv-retro\":62465,\"tv\":62060,\"typewriter\":63719,\"u\":85,\"ufo-beam\":57416,\"ufo\":57415,\"umbrella-beach\":62922,\"umbrella-simple\":58044,\"umbrella\":61673,\"underline\":61645,\"unicorn\":63271,\"uniform-martial-arts\":58321,\"union\":63138,\"universal-access\":62106,\"unlock-keyhole\":61758,\"unlock\":61596,\"up-down-left-right\":61618,\"up-down\":62264,\"up-from-bracket\":58768,\"up-from-dotted-line\":58454,\"up-from-line\":62278,\"up-left\":58045,\"up-long\":62220,\"up-right-and-down-left-from-center\":62500,\"up-right-from-square\":62301,\"up-right\":58046,\"up-to-bracket\":58990,\"up-to-dotted-line\":58455,\"up-to-line\":62285,\"up\":62295,\"upload\":61587,\"usb-drive\":63721,\"user-alien\":57418,\"user-astronaut\":62715,\"user-beard-bolt\":59017,\"user-bounty-hunter\":58047,\"user-check\":62716,\"user-chef\":58322,\"user-clock\":62717,\"user-cowboy\":63722,\"user-crown\":63140,\"user-doctor-hair-long\":58457,\"user-doctor-hair\":58456,\"user-doctor-message\":63534,\"user-doctor\":61680,\"user-gear\":62718,\"user-graduate\":62721,\"user-group-crown\":63141,\"user-group-simple\":58883,\"user-group\":62720,\"user-hair-buns\":58323,\"user-hair-long\":58459,\"user-hair-mullet\":58460,\"user-hair\":58458,\"user-headset\":63533,\"user-helmet-safety\":63532,\"user-hoodie\":59018,\"user-injured\":63272,\"user-large-slash\":62714,\"user-large\":62470,\"user-lock\":62722,\"user-magnifying-glass\":58821,\"user-minus\":62723,\"user-music\":63723,\"user-ninja\":62724,\"user-nurse-hair-long\":58462,\"user-nurse-hair\":58461,\"user-nurse\":63535,\"user-pen\":62719,\"user-pilot-tie\":58049,\"user-pilot\":58048,\"user-plus\":62004,\"user-police-tie\":58164,\"user-police\":58163,\"user-robot-xmarks\":58535,\"user-robot\":57419,\"user-secret\":61979,\"user-shakespeare\":58050,\"user-shield\":62725,\"user-slash\":62726,\"user-tag\":62727,\"user-tie-hair-long\":58464,\"user-tie-hair\":58463,\"user-tie\":62728,\"user-unlock\":57432,\"user-visor\":57420,\"user-vneck-hair-long\":58467,\"user-vneck-hair\":58466,\"user-vneck\":58465,\"user-xmark\":62005,\"user\":61447,\"users-between-lines\":58769,\"users-gear\":62729,\"users-line\":58770,\"users-medical\":63536,\"users-rays\":58771,\"users-rectangle\":58772,\"users-slash\":57459,\"users-viewfinder\":58773,\"users\":61632,\"utensils-slash\":58468,\"utensils\":62183,\"utility-pole-double\":58052,\"utility-pole\":58051,\"v\":86,\"vacuum-robot\":57422,\"vacuum\":57421,\"value-absolute\":63142,\"van-shuttle\":62902,\"vault\":58053,\"vector-circle\":58054,\"vector-polygon\":58055,\"vector-square\":62923,\"vent-damper\":58469,\"venus-double\":61990,\"venus-mars\":61992,\"venus\":61985,\"vest-patches\":57478,\"vest\":57477,\"vial-circle-check\":58774,\"vial-virus\":58775,\"vial\":62610,\"vials\":62611,\"video-arrow-down-left\":58056,\"video-arrow-up-right\":58057,\"video-plus\":62689,\"video-slash\":62690,\"video\":61501,\"vihara\":63143,\"violin\":63725,\"virus-covid-slash\":58537,\"virus-covid\":58536,\"virus-slash\":57461,\"virus\":57460,\"viruses\":57462,\"voicemail\":63639,\"volcano\":63344,\"volleyball\":62559,\"volume-high\":61480,\"volume-low\":61479,\"volume-off\":61478,\"volume-slash\":62178,\"volume-xmark\":63145,\"volume\":63144,\"vr-cardboard\":63273,\"w\":87,\"waffle\":58470,\"wagon-covered\":63726,\"walker\":63537,\"walkie-talkie\":63727,\"wallet\":62805,\"wand-magic-sparkles\":58058,\"wand-magic\":61648,\"wand-sparkles\":63275,\"wand\":63274,\"warehouse-full\":62613,\"warehouse\":62612,\"washing-machine\":63640,\"watch-apple\":58059,\"watch-calculator\":63728,\"watch-fitness\":63038,\"watch-smart\":58060,\"watch\":62177,\"water-arrow-down\":63348,\"water-arrow-up\":63349,\"water-ladder\":62917,\"water\":63347,\"watermelon-slice\":58167,\"wave-pulse\":62968,\"wave-sine\":63641,\"wave-square\":63550,\"wave-triangle\":63642,\"wave\":58971,\"waveform-lines\":63730,\"waveform\":63729,\"waves-sine\":58973,\"web-awesome\":59010,\"webhook\":58837,\"weight-hanging\":62925,\"weight-scale\":62614,\"whale\":63276,\"wheat-awn-circle-exclamation\":58776,\"wheat-awn-slash\":58168,\"wheat-awn\":58061,\"wheat-slash\":58169,\"wheat\":63277,\"wheelchair-move\":58062,\"wheelchair\":61843,\"whiskey-glass-ice\":63393,\"whiskey-glass\":63392,\"whistle\":62560,\"wifi-exclamation\":58063,\"wifi-fair\":63147,\"wifi-slash\":63148,\"wifi-weak\":63146,\"wifi\":61931,\"wind-turbine\":63643,\"wind-warning\":63350,\"wind\":63278,\"window-flip\":62479,\"window-frame-open\":57424,\"window-frame\":57423,\"window-maximize\":62160,\"window-minimize\":62161,\"window-restore\":62162,\"window\":62478,\"windsock\":63351,\"wine-bottle\":63279,\"wine-glass-crack\":62651,\"wine-glass-empty\":62926,\"wine-glass\":62691,\"won-sign\":61785,\"worm\":58777,\"wreath-laurel\":58834,\"wreath\":63458,\"wrench-simple\":58065,\"wrench\":61613,\"x-ray\":62615,\"x\":88,\"xmark-large\":58779,\"xmark-to-slot\":63345,\"xmark\":61453,\"xmarks-lines\":58778,\"y\":89,\"yen-sign\":61783,\"yin-yang\":63149,\"z\":90}"
  },
  {
    "path": "packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_sharp-duotone-thin.json",
    "content": "{\"0\":48,\"1\":49,\"2\":50,\"3\":51,\"4\":52,\"5\":53,\"6\":54,\"7\":55,\"8\":56,\"9\":57,\"00\":58471,\"360-degrees\":58076,\"a\":65,\"abacus\":63040,\"accent-grave\":96,\"acorn\":63150,\"address-book\":62137,\"address-card\":62139,\"air-conditioner\":63732,\"airplay\":57481,\"alarm-clock\":62286,\"alarm-exclamation\":63555,\"alarm-plus\":63556,\"alarm-snooze\":63557,\"album-circle-plus\":58508,\"album-circle-user\":58509,\"album-collection-circle-plus\":58510,\"album-collection-circle-user\":58511,\"album-collection\":63648,\"album\":63647,\"alicorn\":63152,\"alien-8bit\":63734,\"alien\":63733,\"align-center\":61495,\"align-justify\":61497,\"align-left\":61494,\"align-right\":61496,\"align-slash\":63558,\"alt\":57482,\"amp-guitar\":63649,\"ampersand\":38,\"anchor-circle-check\":58538,\"anchor-circle-exclamation\":58539,\"anchor-circle-xmark\":58540,\"anchor-lock\":58541,\"anchor\":61757,\"angel\":63353,\"angle-90\":57485,\"angle-down\":61703,\"angle-left\":61700,\"angle-right\":61701,\"angle-up\":61702,\"angle\":57484,\"angles-down\":61699,\"angles-left\":61696,\"angles-right\":61697,\"angles-up-down\":58893,\"angles-up\":61698,\"ankh\":63044,\"ant\":59008,\"apartment\":58472,\"aperture\":58079,\"apostrophe\":39,\"apple-core\":57487,\"apple-whole\":62929,\"archway\":62807,\"arrow-down-1-9\":61794,\"arrow-down-9-1\":63622,\"arrow-down-a-z\":61789,\"arrow-down-arrow-up\":63619,\"arrow-down-big-small\":63628,\"arrow-down-from-arc\":58900,\"arrow-down-from-bracket\":58983,\"arrow-down-from-dotted-line\":57488,\"arrow-down-from-line\":62277,\"arrow-down-left-and-arrow-up-right-to-center\":57490,\"arrow-down-left\":57489,\"arrow-down-long\":61813,\"arrow-down-right\":57491,\"arrow-down-short-wide\":63620,\"arrow-down-small-big\":63629,\"arrow-down-square-triangle\":63625,\"arrow-down-to-arc\":58542,\"arrow-down-to-bracket\":57492,\"arrow-down-to-dotted-line\":57493,\"arrow-down-to-line\":62269,\"arrow-down-to-square\":57494,\"arrow-down-triangle-square\":63624,\"arrow-down-up-across-line\":58543,\"arrow-down-up-lock\":58544,\"arrow-down-wide-short\":61792,\"arrow-down-z-a\":63617,\"arrow-down\":61539,\"arrow-left-from-arc\":58901,\"arrow-left-from-bracket\":58984,\"arrow-left-from-line\":62276,\"arrow-left-long-to-line\":58324,\"arrow-left-long\":61815,\"arrow-left-to-arc\":58902,\"arrow-left-to-bracket\":58985,\"arrow-left-to-line\":62270,\"arrow-left\":61536,\"arrow-pointer\":62021,\"arrow-progress\":58847,\"arrow-right-arrow-left\":61676,\"arrow-right-from-arc\":58545,\"arrow-right-from-bracket\":61579,\"arrow-right-from-line\":62275,\"arrow-right-long-to-line\":58325,\"arrow-right-long\":61816,\"arrow-right-to-arc\":58546,\"arrow-right-to-bracket\":61584,\"arrow-right-to-city\":58547,\"arrow-right-to-line\":62272,\"arrow-right\":61537,\"arrow-rotate-left\":61666,\"arrow-rotate-right\":61470,\"arrow-trend-down\":57495,\"arrow-trend-up\":57496,\"arrow-turn-down-left\":58081,\"arrow-turn-down-right\":58326,\"arrow-turn-down\":61769,\"arrow-turn-left-down\":58931,\"arrow-turn-left-up\":58932,\"arrow-turn-left\":58930,\"arrow-turn-right\":58933,\"arrow-turn-up\":61768,\"arrow-up-1-9\":61795,\"arrow-up-9-1\":63623,\"arrow-up-a-z\":61790,\"arrow-up-arrow-down\":57497,\"arrow-up-big-small\":63630,\"arrow-up-from-arc\":58548,\"arrow-up-from-bracket\":57498,\"arrow-up-from-dotted-line\":57499,\"arrow-up-from-ground-water\":58549,\"arrow-up-from-line\":62274,\"arrow-up-from-square\":57500,\"arrow-up-from-water-pump\":58550,\"arrow-up-left-from-circle\":57502,\"arrow-up-left\":57501,\"arrow-up-long\":61814,\"arrow-up-right-and-arrow-down-left-from-center\":57504,\"arrow-up-right-dots\":58551,\"arrow-up-right-from-square\":61582,\"arrow-up-right\":57503,\"arrow-up-short-wide\":63621,\"arrow-up-small-big\":63631,\"arrow-up-square-triangle\":63627,\"arrow-up-to-arc\":58903,\"arrow-up-to-bracket\":58986,\"arrow-up-to-dotted-line\":57505,\"arrow-up-to-line\":62273,\"arrow-up-triangle-square\":63626,\"arrow-up-wide-short\":61793,\"arrow-up-z-a\":63618,\"arrow-up\":61538,\"arrows-cross\":57506,\"arrows-down-to-line\":58552,\"arrows-down-to-people\":58553,\"arrows-from-dotted-line\":57507,\"arrows-from-line\":57508,\"arrows-left-right-to-line\":58554,\"arrows-left-right\":61566,\"arrows-maximize\":62237,\"arrows-minimize\":57509,\"arrows-repeat-1\":62310,\"arrows-repeat\":62308,\"arrows-retweet\":62305,\"arrows-rotate-reverse\":58928,\"arrows-rotate\":61473,\"arrows-spin\":58555,\"arrows-split-up-and-left\":58556,\"arrows-to-circle\":58557,\"arrows-to-dot\":58558,\"arrows-to-dotted-line\":57510,\"arrows-to-eye\":58559,\"arrows-to-line\":57511,\"arrows-turn-right\":58560,\"arrows-turn-to-dots\":58561,\"arrows-up-down-left-right\":61511,\"arrows-up-down\":61565,\"arrows-up-to-line\":58562,\"asterisk\":42,\"at\":64,\"atom-simple\":62931,\"atom\":62930,\"audio-description-slash\":57512,\"audio-description\":62110,\"austral-sign\":57513,\"avocado\":57514,\"award-simple\":57515,\"award\":62809,\"axe-battle\":63155,\"axe\":63154,\"b\":66,\"baby-carriage\":63357,\"baby\":63356,\"backpack\":62932,\"backward-fast\":61513,\"backward-step\":61512,\"backward\":61514,\"bacon\":63461,\"bacteria\":57433,\"bacterium\":57434,\"badge-check\":62262,\"badge-dollar\":63045,\"badge-percent\":63046,\"badge-sheriff\":63650,\"badge\":62261,\"badger-honey\":63156,\"badminton\":58170,\"bag-seedling\":58866,\"bag-shopping-minus\":58960,\"bag-shopping-plus\":58961,\"bag-shopping\":62096,\"bagel\":58327,\"bags-shopping\":63559,\"baguette\":58328,\"bahai\":63078,\"baht-sign\":57516,\"ball-pile\":63358,\"balloon\":58083,\"balloons\":58084,\"ballot-check\":63283,\"ballot\":63282,\"ban-bug\":63481,\"ban-parking\":62998,\"ban-smoking\":62797,\"ban\":61534,\"banana\":58085,\"bandage\":62562,\"bangladeshi-taka-sign\":58086,\"banjo\":63651,\"barcode-read\":62564,\"barcode-scan\":62565,\"barcode\":61482,\"bars-filter\":57517,\"bars-progress\":63528,\"bars-sort\":57518,\"bars-staggered\":62800,\"bars\":61641,\"baseball-bat-ball\":62514,\"baseball\":62515,\"basket-shopping-minus\":58962,\"basket-shopping-plus\":58963,\"basket-shopping-simple\":57519,\"basket-shopping\":62097,\"basketball-hoop\":62517,\"basketball\":62516,\"bat\":63157,\"bath\":62157,\"battery-bolt\":62326,\"battery-empty\":62020,\"battery-exclamation\":57520,\"battery-full\":62016,\"battery-half\":62018,\"battery-low\":57521,\"battery-quarter\":62019,\"battery-slash\":62327,\"battery-three-quarters\":62017,\"bed-bunk\":63736,\"bed-empty\":63737,\"bed-front\":63735,\"bed-pulse\":62599,\"bed\":62006,\"bee\":57522,\"beer-mug-empty\":61692,\"beer-mug\":57523,\"bell-concierge\":62818,\"bell-exclamation\":63560,\"bell-on\":63738,\"bell-plus\":63561,\"bell-ring\":58924,\"bell-school-slash\":62934,\"bell-school\":62933,\"bell-slash\":61942,\"bell\":61683,\"bells\":63359,\"bench-tree\":58087,\"bezier-curve\":62811,\"bicycle\":61958,\"billboard\":58829,\"bin-bottles-recycle\":58870,\"bin-bottles\":58869,\"bin-recycle\":58871,\"binary-circle-check\":58172,\"binary-lock\":58173,\"binary-slash\":58174,\"binary\":58171,\"binoculars\":61925,\"biohazard\":63360,\"bird\":58473,\"bitcoin-sign\":57524,\"blanket-fire\":58330,\"blanket\":62616,\"blender-phone\":63158,\"blender\":62743,\"blinds-open\":63740,\"blinds-raised\":63741,\"blinds\":63739,\"block-brick-fire\":58332,\"block-brick\":58331,\"block-question\":58333,\"block-quote\":57525,\"block\":58474,\"blog\":63361,\"blueberries\":58088,\"bluetooth\":62099,\"bold\":61490,\"bolt-auto\":57526,\"bolt-lightning\":57527,\"bolt-slash\":57528,\"bolt\":61671,\"bomb\":61922,\"bone-break\":62936,\"bone\":62935,\"bong\":62812,\"book-arrow-right\":57529,\"book-arrow-up\":57530,\"book-atlas\":62808,\"book-bible\":63047,\"book-blank\":62937,\"book-bookmark\":57531,\"book-circle-arrow-right\":57532,\"book-circle-arrow-up\":57533,\"book-copy\":57534,\"book-font\":57535,\"book-heart\":62617,\"book-journal-whills\":63082,\"book-medical\":63462,\"book-open-cover\":57536,\"book-open-reader\":62938,\"book-open\":62744,\"book-quran\":63111,\"book-section\":57537,\"book-skull\":63159,\"book-sparkles\":63160,\"book-tanakh\":63527,\"book-user\":63463,\"book\":61485,\"bookmark-slash\":57538,\"bookmark\":61486,\"books-medical\":63464,\"books\":62939,\"boombox\":63653,\"boot-heeled\":58175,\"boot\":63362,\"booth-curtain\":63284,\"border-all\":63564,\"border-bottom-right\":63572,\"border-bottom\":63565,\"border-center-h\":63644,\"border-center-v\":63645,\"border-inner\":63566,\"border-left\":63567,\"border-none\":63568,\"border-outer\":63569,\"border-right\":63570,\"border-top-left\":63571,\"border-top\":63573,\"bore-hole\":58563,\"bottle-baby\":58995,\"bottle-droplet\":58564,\"bottle-water\":58565,\"bow-arrow\":63161,\"bowl-chopsticks-noodles\":58090,\"bowl-chopsticks\":58089,\"bowl-food\":58566,\"bowl-hot\":63523,\"bowl-rice\":58091,\"bowl-scoop\":58334,\"bowl-scoops\":58335,\"bowl-soft-serve\":58475,\"bowl-spoon\":58336,\"bowling-ball-pin\":57539,\"bowling-ball\":62518,\"bowling-pins\":62519,\"box-archive\":61831,\"box-ballot\":63285,\"box-check\":62567,\"box-circle-check\":57540,\"box-dollar\":62624,\"box-heart\":62621,\"box-open-full\":62620,\"box-open\":62622,\"box-taped\":62618,\"box-tissue\":57435,\"box\":62566,\"boxes-packing\":58567,\"boxes-stacked\":62568,\"boxing-glove\":62520,\"bracket-curly-right\":125,\"bracket-curly\":123,\"bracket-round-right\":41,\"bracket-round\":40,\"bracket-square-right\":93,\"bracket-square\":91,\"brackets-curly\":63466,\"brackets-round\":57541,\"brackets-square\":63465,\"braille\":62113,\"brain-arrow-curved-right\":63095,\"brain-circuit\":57542,\"brain\":62940,\"brake-warning\":57543,\"brazilian-real-sign\":58476,\"bread-loaf\":63467,\"bread-slice-butter\":58337,\"bread-slice\":63468,\"bridge-circle-check\":58569,\"bridge-circle-exclamation\":58570,\"bridge-circle-xmark\":58571,\"bridge-lock\":58572,\"bridge-suspension\":58573,\"bridge-water\":58574,\"bridge\":58568,\"briefcase-arrow-right\":58098,\"briefcase-blank\":57544,\"briefcase-medical\":62569,\"briefcase\":61617,\"brightness-low\":57546,\"brightness\":57545,\"bring-forward\":63574,\"bring-front\":63575,\"broccoli\":58338,\"broom-ball\":62552,\"broom-wide\":58833,\"broom\":62746,\"browser\":62334,\"browsers\":57547,\"brush\":62813,\"bucket\":58575,\"bug-slash\":58512,\"bug\":61832,\"bugs\":58576,\"building-circle-arrow-right\":58577,\"building-circle-check\":58578,\"building-circle-exclamation\":58579,\"building-circle-xmark\":58580,\"building-columns\":61852,\"building-flag\":58581,\"building-lock\":58582,\"building-magnifying-glass\":58908,\"building-memo\":58910,\"building-ngo\":58583,\"building-shield\":58584,\"building-un\":58585,\"building-user\":58586,\"building-wheat\":58587,\"building\":61869,\"buildings\":57548,\"bulldozer\":58965,\"bullhorn\":61601,\"bullseye-arrow\":63048,\"bullseye-pointer\":63049,\"bullseye\":61760,\"buoy-mooring\":58806,\"buoy\":58805,\"burger-cheese\":63473,\"burger-fries\":57549,\"burger-glass\":57550,\"burger-lettuce\":58339,\"burger-soda\":63576,\"burger\":63493,\"burrito\":63469,\"burst\":58588,\"bus-school\":62941,\"bus-simple\":62814,\"bus\":61959,\"business-time\":63050,\"butter\":58340,\"c\":67,\"cabin\":58477,\"cabinet-filing\":63051,\"cable-car\":63450,\"cactus\":63655,\"caduceus\":59009,\"cake-candles\":61949,\"cake-slice\":58341,\"calculator-simple\":63052,\"calculator\":61932,\"calendar-arrow-down\":57552,\"calendar-arrow-up\":57553,\"calendar-check\":62068,\"calendar-circle-exclamation\":58478,\"calendar-circle-minus\":58479,\"calendar-circle-plus\":58480,\"calendar-circle-user\":58481,\"calendar-clock\":57554,\"calendar-day\":63363,\"calendar-days\":61555,\"calendar-exclamation\":62260,\"calendar-heart\":57555,\"calendar-image\":57556,\"calendar-lines-pen\":58482,\"calendar-lines\":57557,\"calendar-minus\":62066,\"calendar-pen\":62259,\"calendar-plus\":62065,\"calendar-range\":57558,\"calendar-star\":63286,\"calendar-users\":58850,\"calendar-week\":63364,\"calendar-xmark\":62067,\"calendar\":61747,\"calendars\":57559,\"camcorder\":63656,\"camera-cctv\":63660,\"camera-movie\":63657,\"camera-polaroid\":63658,\"camera-retro\":61571,\"camera-rotate\":57560,\"camera-security\":63742,\"camera-slash\":57561,\"camera-viewfinder\":57562,\"camera-web-slash\":63539,\"camera-web\":63538,\"camera\":61488,\"campfire\":63162,\"campground\":63163,\"can-food\":58342,\"candle-holder\":63164,\"candy-bar\":58344,\"candy-cane\":63366,\"candy-corn\":63165,\"candy\":58343,\"cannabis\":62815,\"cannon\":58946,\"capsules\":62571,\"car-battery\":62943,\"car-bolt\":58177,\"car-building\":63577,\"car-bump\":62944,\"car-burst\":62945,\"car-bus\":63578,\"car-circle-bolt\":58178,\"car-garage\":62946,\"car-mirrors\":58179,\"car-on\":58589,\"car-rear\":62942,\"car-side-bolt\":58180,\"car-side\":62948,\"car-tilt\":62949,\"car-tunnel\":58590,\"car-wash\":62950,\"car-wrench\":62947,\"car\":61881,\"caravan-simple\":57344,\"caravan\":63743,\"card-club\":58345,\"card-diamond\":58346,\"card-heart\":58347,\"card-spade\":58348,\"cards-blank\":58591,\"cards\":58349,\"caret-down\":61655,\"caret-left\":61657,\"caret-right\":61658,\"caret-up\":61656,\"carpool\":59036,\"carrot\":63367,\"cars\":63579,\"cart-arrow-down\":61976,\"cart-arrow-up\":58350,\"cart-circle-arrow-down\":58351,\"cart-circle-arrow-up\":58352,\"cart-circle-check\":58353,\"cart-circle-exclamation\":58354,\"cart-circle-plus\":58355,\"cart-circle-xmark\":58356,\"cart-flatbed-boxes\":62581,\"cart-flatbed-empty\":62582,\"cart-flatbed-suitcase\":62877,\"cart-flatbed\":62580,\"cart-minus\":57563,\"cart-plus\":61975,\"cart-shopping-fast\":57564,\"cart-shopping\":61562,\"cart-xmark\":57565,\"cash-register\":63368,\"cassette-betamax\":63652,\"cassette-tape\":63659,\"cassette-vhs\":63724,\"castle\":57566,\"cat-space\":57345,\"cat\":63166,\"cauldron\":63167,\"cedi-sign\":57567,\"cent-sign\":58357,\"certificate\":61603,\"chair-office\":63169,\"chair\":63168,\"chalkboard-user\":62748,\"chalkboard\":62747,\"champagne-glass\":63390,\"champagne-glasses\":63391,\"charging-station\":62951,\"chart-area\":61950,\"chart-bar\":61568,\"chart-bullet\":57569,\"chart-candlestick\":57570,\"chart-column\":57571,\"chart-diagram\":59029,\"chart-fft\":59038,\"chart-gantt\":57572,\"chart-kanban\":58959,\"chart-line-down\":63053,\"chart-line-up-down\":58839,\"chart-line-up\":57573,\"chart-line\":61953,\"chart-mixed-up-circle-currency\":58840,\"chart-mixed-up-circle-dollar\":58841,\"chart-mixed\":63043,\"chart-network\":63370,\"chart-pie-simple-circle-currency\":58884,\"chart-pie-simple-circle-dollar\":58885,\"chart-pie-simple\":63054,\"chart-pie\":61952,\"chart-pyramid\":57574,\"chart-radar\":57575,\"chart-scatter-3d\":57576,\"chart-scatter-bubble\":57577,\"chart-scatter\":63470,\"chart-simple-horizontal\":58484,\"chart-simple\":58483,\"chart-sine\":59037,\"chart-tree-map\":57578,\"chart-user\":63139,\"chart-waterfall\":57579,\"check-double\":62816,\"check-to-slot\":63346,\"check\":61452,\"cheese-swiss\":63472,\"cheese\":63471,\"cherries\":57580,\"chess-bishop-piece\":62523,\"chess-bishop\":62522,\"chess-board\":62524,\"chess-clock-flip\":62526,\"chess-clock\":62525,\"chess-king-piece\":62528,\"chess-king\":62527,\"chess-knight-piece\":62530,\"chess-knight\":62529,\"chess-pawn-piece\":62532,\"chess-pawn\":62531,\"chess-queen-piece\":62534,\"chess-queen\":62533,\"chess-rook-piece\":62536,\"chess-rook\":62535,\"chess\":62521,\"chestnut\":58358,\"chevron-down\":61560,\"chevron-left\":61523,\"chevron-right\":61524,\"chevron-up\":61559,\"chevrons-down\":62242,\"chevrons-left\":62243,\"chevrons-right\":62244,\"chevrons-up\":62245,\"chf-sign\":58882,\"child-combatant\":58592,\"child-dress\":58780,\"child-reaching\":58781,\"child\":61870,\"children\":58593,\"chimney\":63371,\"chopsticks\":58359,\"church\":62749,\"circle-0\":57581,\"circle-1\":57582,\"circle-2\":57583,\"circle-3\":57584,\"circle-4\":57585,\"circle-5\":57586,\"circle-6\":57587,\"circle-7\":57588,\"circle-8\":57589,\"circle-9\":57590,\"circle-a\":57591,\"circle-ampersand\":57592,\"circle-arrow-down-left\":57593,\"circle-arrow-down-right\":57594,\"circle-arrow-down\":61611,\"circle-arrow-left\":61608,\"circle-arrow-right\":61609,\"circle-arrow-up-left\":57595,\"circle-arrow-up-right\":57596,\"circle-arrow-up\":61610,\"circle-b\":57597,\"circle-bolt\":57598,\"circle-book-open\":57599,\"circle-bookmark\":57600,\"circle-c\":57601,\"circle-calendar\":57602,\"circle-camera\":57603,\"circle-caret-down\":62253,\"circle-caret-left\":62254,\"circle-caret-right\":62256,\"circle-caret-up\":62257,\"circle-check\":61528,\"circle-chevron-down\":61754,\"circle-chevron-left\":61751,\"circle-chevron-right\":61752,\"circle-chevron-up\":61753,\"circle-d\":57604,\"circle-dashed\":57605,\"circle-divide\":57606,\"circle-dollar-to-slot\":62649,\"circle-dollar\":62184,\"circle-dot\":61842,\"circle-down-left\":57607,\"circle-down-right\":57608,\"circle-down\":62296,\"circle-e\":57609,\"circle-ellipsis-vertical\":57611,\"circle-ellipsis\":57610,\"circle-envelope\":57612,\"circle-euro\":58830,\"circle-exclamation-check\":57613,\"circle-exclamation\":61546,\"circle-f\":57614,\"circle-g\":57615,\"circle-gf\":59007,\"circle-h\":62590,\"circle-half-stroke\":61506,\"circle-half\":57616,\"circle-heart\":62663,\"circle-i\":57617,\"circle-info\":61530,\"circle-j\":57618,\"circle-k\":57619,\"circle-l\":57620,\"circle-left\":62297,\"circle-location-arrow\":62978,\"circle-m\":57621,\"circle-microphone-lines\":57623,\"circle-microphone\":57622,\"circle-minus\":61526,\"circle-n\":57624,\"circle-nodes\":58594,\"circle-notch\":61902,\"circle-o\":57625,\"circle-p\":57626,\"circle-parking\":62997,\"circle-pause\":62091,\"circle-phone-flip\":57628,\"circle-phone-hangup\":57629,\"circle-phone\":57627,\"circle-play\":61764,\"circle-plus\":61525,\"circle-q\":57630,\"circle-quarter-stroke\":58835,\"circle-quarter\":57631,\"circle-quarters\":58360,\"circle-question\":61529,\"circle-r\":57632,\"circle-radiation\":63418,\"circle-right\":62298,\"circle-s\":57633,\"circle-small\":57634,\"circle-sort-down\":57393,\"circle-sort-up\":57394,\"circle-sort\":57392,\"circle-star\":57635,\"circle-sterling\":58831,\"circle-stop\":62093,\"circle-t\":57636,\"circle-three-quarters-stroke\":58836,\"circle-three-quarters\":57637,\"circle-trash\":57638,\"circle-u\":57639,\"circle-up-left\":57640,\"circle-up-right\":57641,\"circle-up\":62299,\"circle-user\":62141,\"circle-v\":57642,\"circle-video\":57643,\"circle-w\":57644,\"circle-waveform-lines\":57645,\"circle-wifi-circle-wifi\":59006,\"circle-wifi\":59005,\"circle-x\":57646,\"circle-xmark\":61527,\"circle-y\":57647,\"circle-yen\":58832,\"circle-z\":57648,\"circle\":61713,\"circles-overlap-3\":59041,\"circles-overlap\":58880,\"citrus-slice\":58101,\"citrus\":58100,\"city\":63055,\"clapperboard-play\":57650,\"clapperboard\":57649,\"clarinet\":63661,\"claw-marks\":63170,\"clipboard-check\":62572,\"clipboard-list-check\":63287,\"clipboard-list\":62573,\"clipboard-medical\":57651,\"clipboard-prescription\":62952,\"clipboard-question\":58595,\"clipboard-user\":63475,\"clipboard\":62248,\"clock-desk\":57652,\"clock-eight-thirty\":58182,\"clock-eight\":58181,\"clock-eleven-thirty\":58184,\"clock-eleven\":58183,\"clock-five-thirty\":58186,\"clock-five\":58185,\"clock-four-thirty\":58187,\"clock-nine-thirty\":58189,\"clock-nine\":58188,\"clock-one-thirty\":58191,\"clock-one\":58190,\"clock-rotate-left\":61914,\"clock-seven-thirty\":58193,\"clock-seven\":58192,\"clock-six-thirty\":58195,\"clock-six\":58194,\"clock-ten-thirty\":58197,\"clock-ten\":58196,\"clock-three-thirty\":58199,\"clock-three\":58198,\"clock-twelve-thirty\":58201,\"clock-twelve\":58200,\"clock-two-thirty\":58203,\"clock-two\":58202,\"clock\":61463,\"clone\":62029,\"closed-captioning-slash\":57653,\"closed-captioning\":61962,\"clothes-hanger\":57654,\"cloud-arrow-down\":61677,\"cloud-arrow-up\":61678,\"cloud-binary\":58881,\"cloud-bolt-moon\":63341,\"cloud-bolt-sun\":63342,\"cloud-bolt\":63340,\"cloud-check\":58204,\"cloud-drizzle\":63288,\"cloud-exclamation\":58513,\"cloud-fog\":63310,\"cloud-hail-mixed\":63290,\"cloud-hail\":63289,\"cloud-meatball\":63291,\"cloud-minus\":58205,\"cloud-moon-rain\":63292,\"cloud-moon\":63171,\"cloud-music\":63662,\"cloud-plus\":58206,\"cloud-question\":58514,\"cloud-rain\":63293,\"cloud-rainbow\":63294,\"cloud-showers-heavy\":63296,\"cloud-showers-water\":58596,\"cloud-showers\":63295,\"cloud-slash\":57655,\"cloud-sleet\":63297,\"cloud-snow\":63298,\"cloud-sun-rain\":63299,\"cloud-sun\":63172,\"cloud-word\":57656,\"cloud-xmark\":58207,\"cloud\":61634,\"clouds-moon\":63301,\"clouds-sun\":63302,\"clouds\":63300,\"clover\":57657,\"club\":62247,\"coconut\":58102,\"code-branch\":61734,\"code-commit\":62342,\"code-compare\":57658,\"code-fork\":57659,\"code-merge\":62343,\"code-pull-request-closed\":58361,\"code-pull-request-draft\":58362,\"code-pull-request\":57660,\"code-simple\":57661,\"code\":61729,\"coffee-bean\":57662,\"coffee-beans\":57663,\"coffee-pot\":57346,\"coffin-cross\":57425,\"coffin\":63174,\"coin-blank\":58363,\"coin-front\":58364,\"coin-vertical\":58365,\"coin\":63580,\"coins\":62750,\"colon-sign\":57664,\"colon\":58,\"columns-3\":58209,\"comet\":57347,\"comma\":44,\"command\":57666,\"comment-arrow-down\":57667,\"comment-arrow-up-right\":57669,\"comment-arrow-up\":57668,\"comment-captions\":57670,\"comment-check\":62636,\"comment-code\":57671,\"comment-dollar\":63057,\"comment-dots\":62637,\"comment-exclamation\":62639,\"comment-heart\":58824,\"comment-image\":57672,\"comment-lines\":62640,\"comment-medical\":63477,\"comment-middle-top\":57674,\"comment-middle\":57673,\"comment-minus\":62641,\"comment-music\":63664,\"comment-nodes\":59030,\"comment-pen\":62638,\"comment-plus\":62642,\"comment-question\":57675,\"comment-quote\":57676,\"comment-slash\":62643,\"comment-smile\":62644,\"comment-sms\":63437,\"comment-text\":57677,\"comment-xmark\":62645,\"comment\":61557,\"comments-dollar\":63059,\"comments-question-check\":57679,\"comments-question\":57678,\"comments\":61574,\"compact-disc\":62751,\"compass-drafting\":62824,\"compass-slash\":62953,\"compass\":61774,\"compress-wide\":62246,\"compress\":61542,\"computer-classic\":63665,\"computer-mouse-scrollwheel\":63693,\"computer-mouse\":63692,\"computer-speaker\":63666,\"computer\":58597,\"container-storage\":62647,\"conveyor-belt-arm\":58872,\"conveyor-belt-boxes\":62575,\"conveyor-belt-empty\":57680,\"conveyor-belt\":62574,\"cookie-bite\":62820,\"cookie\":62819,\"copy\":61637,\"copyright\":61945,\"corn\":63175,\"corner\":58366,\"couch\":62648,\"court-sport\":58947,\"cow\":63176,\"cowbell-circle-plus\":63668,\"cowbell\":63667,\"crab\":58367,\"crate-apple\":63153,\"crate-empty\":57681,\"credit-card-blank\":62345,\"credit-card-front\":62346,\"credit-card\":61597,\"cricket-bat-ball\":62537,\"croissant\":63478,\"crop-simple\":62821,\"crop\":61733,\"cross\":63060,\"crosshairs-simple\":58783,\"crosshairs\":61531,\"crow\":62752,\"crown\":62753,\"crutch\":63479,\"crutches\":63480,\"cruzeiro-sign\":57682,\"crystal-ball\":58210,\"cube\":61874,\"cubes-stacked\":58598,\"cubes\":61875,\"cucumber\":58369,\"cup-straw-swoosh\":58212,\"cup-straw\":58211,\"cup-togo\":63173,\"cupcake\":58370,\"curling-stone\":62538,\"custard\":58371,\"d\":68,\"dagger\":63179,\"dash\":58372,\"database\":61888,\"deer-rudolph\":63375,\"deer\":63374,\"delete-left\":62810,\"delete-right\":57684,\"democrat\":63303,\"desktop-arrow-down\":57685,\"desktop\":62352,\"dharmachakra\":63061,\"diagram-cells\":58485,\"diagram-lean-canvas\":57686,\"diagram-nested\":57687,\"diagram-next\":58486,\"diagram-predecessor\":58487,\"diagram-previous\":58488,\"diagram-project\":62786,\"diagram-sankey\":57688,\"diagram-subtask\":58489,\"diagram-successor\":58490,\"diagram-venn\":57690,\"dial-high\":57692,\"dial-low\":57693,\"dial-max\":57694,\"dial-med-low\":57696,\"dial-med\":57695,\"dial-min\":57697,\"dial-off\":57698,\"dial\":57691,\"diamond-exclamation\":58373,\"diamond-half-stroke\":58808,\"diamond-half\":58807,\"diamond-turn-right\":62955,\"diamond\":61977,\"diamonds-4\":59019,\"dice-d10\":63181,\"dice-d12\":63182,\"dice-d20\":63183,\"dice-d4\":63184,\"dice-d6\":63185,\"dice-d8\":63186,\"dice-five\":62755,\"dice-four\":62756,\"dice-one\":62757,\"dice-six\":62758,\"dice-three\":62759,\"dice-two\":62760,\"dice\":62754,\"dinosaur\":58878,\"diploma\":62954,\"disc-drive\":63669,\"disease\":63482,\"display-arrow-down\":57700,\"display-chart-up-circle-currency\":58853,\"display-chart-up-circle-dollar\":58854,\"display-chart-up\":58851,\"display-code\":57701,\"display-medical\":57702,\"display-slash\":58106,\"display\":57699,\"distribute-spacing-horizontal\":58213,\"distribute-spacing-vertical\":58214,\"ditto\":34,\"divide\":62761,\"dna\":62577,\"do-not-enter\":62956,\"dog-leashed\":63188,\"dog\":63187,\"dollar-sign\":36,\"dolly-empty\":62579,\"dolly\":62578,\"dolphin\":57704,\"dong-sign\":57705,\"donut\":58374,\"door-closed\":62762,\"door-open\":62763,\"dove\":62650,\"down-from-bracket\":58987,\"down-from-dotted-line\":58375,\"down-from-line\":62281,\"down-left-and-up-right-to-center\":62498,\"down-left\":57706,\"down-long\":62217,\"down-right\":57707,\"down-to-bracket\":58599,\"down-to-dotted-line\":58376,\"down-to-line\":62282,\"down\":62292,\"download\":61465,\"dragon\":63189,\"draw-circle\":62957,\"draw-polygon\":62958,\"draw-square\":62959,\"dreidel\":63378,\"drone-front\":63584,\"drone\":63583,\"droplet-degree\":63304,\"droplet-percent\":63312,\"droplet-slash\":62919,\"droplet\":61507,\"drum-steelpan\":62826,\"drum\":62825,\"drumstick-bite\":63191,\"drumstick\":63190,\"dryer-heat\":63586,\"dryer\":63585,\"duck\":63192,\"dumbbell\":62539,\"dumpster-fire\":63380,\"dumpster\":63379,\"dungeon\":63193,\"e\":69,\"ear-deaf\":62116,\"ear-listen\":62114,\"ear-muffs\":63381,\"ear\":62960,\"earth-africa\":62844,\"earth-americas\":62845,\"earth-asia\":62846,\"earth-europe\":63394,\"earth-oceania\":58491,\"eclipse\":63305,\"egg-fried\":63484,\"egg\":63483,\"eggplant\":57708,\"eject\":61522,\"elephant\":63194,\"elevator\":57709,\"ellipsis-stroke-vertical\":62364,\"ellipsis-stroke\":62363,\"ellipsis-vertical\":61762,\"ellipsis\":61761,\"empty-set\":63062,\"engine-warning\":62962,\"engine\":57710,\"envelope-circle-check\":58600,\"envelope-dot\":57711,\"envelope-open-dollar\":63063,\"envelope-open-text\":63064,\"envelope-open\":62134,\"envelope\":61664,\"envelopes-bulk\":63092,\"envelopes\":57712,\"equals\":61,\"eraser\":61741,\"escalator\":57713,\"ethernet\":63382,\"euro-sign\":61779,\"excavator\":58966,\"exclamation\":33,\"expand-wide\":62240,\"expand\":61541,\"explosion\":58601,\"eye-dropper-full\":57714,\"eye-dropper-half\":57715,\"eye-dropper\":61947,\"eye-evil\":63195,\"eye-low-vision\":62120,\"eye-slash\":61552,\"eye\":61550,\"eyes\":58215,\"f\":70,\"face-angry-horns\":58216,\"face-angry\":62806,\"face-anguished\":58217,\"face-anxious-sweat\":58218,\"face-astonished\":58219,\"face-awesome\":58377,\"face-beam-hand-over-mouth\":58492,\"face-clouds\":58493,\"face-confounded\":58220,\"face-confused\":58221,\"face-cowboy-hat\":58222,\"face-diagonal-mouth\":58494,\"face-disappointed\":58223,\"face-disguise\":58224,\"face-dizzy\":62823,\"face-dotted\":58495,\"face-downcast-sweat\":58225,\"face-drooling\":58226,\"face-exhaling\":58496,\"face-explode\":58110,\"face-expressionless\":58227,\"face-eyes-xmarks\":58228,\"face-fearful\":58229,\"face-flushed\":62841,\"face-frown-open\":62842,\"face-frown-slight\":58230,\"face-frown\":61721,\"face-glasses\":58231,\"face-grimace\":62847,\"face-grin-beam-sweat\":62851,\"face-grin-beam\":62850,\"face-grin-hearts\":62852,\"face-grin-squint-tears\":62854,\"face-grin-squint\":62853,\"face-grin-stars\":62855,\"face-grin-tears\":62856,\"face-grin-tongue-squint\":62858,\"face-grin-tongue-wink\":62859,\"face-grin-tongue\":62857,\"face-grin-wide\":62849,\"face-grin-wink\":62860,\"face-grin\":62848,\"face-hand-over-mouth\":58232,\"face-hand-peeking\":58497,\"face-hand-yawn\":58233,\"face-head-bandage\":58234,\"face-holding-back-tears\":58498,\"face-hushed\":58235,\"face-icicles\":58236,\"face-kiss-beam\":62871,\"face-kiss-closed-eyes\":58237,\"face-kiss-wink-heart\":62872,\"face-kiss\":62870,\"face-laugh-beam\":62874,\"face-laugh-squint\":62875,\"face-laugh-wink\":62876,\"face-laugh\":62873,\"face-lying\":58238,\"face-mask\":58239,\"face-meh-blank\":62884,\"face-meh\":61722,\"face-melting\":58499,\"face-monocle\":58240,\"face-nauseated\":58241,\"face-nose-steam\":58242,\"face-party\":58243,\"face-pensive\":58244,\"face-persevering\":58245,\"face-pleading\":58246,\"face-pouting\":58247,\"face-raised-eyebrow\":58248,\"face-relieved\":58249,\"face-rolling-eyes\":62885,\"face-sad-cry\":62899,\"face-sad-sweat\":58250,\"face-sad-tear\":62900,\"face-saluting\":58500,\"face-scream\":58251,\"face-shush\":58252,\"face-sleeping\":58253,\"face-sleepy\":58254,\"face-smile-beam\":62904,\"face-smile-halo\":58255,\"face-smile-hearts\":58256,\"face-smile-horns\":58257,\"face-smile-plus\":62905,\"face-smile-relaxed\":58258,\"face-smile-tear\":58259,\"face-smile-tongue\":58260,\"face-smile-upside-down\":58261,\"face-smile-wink\":62682,\"face-smile\":61720,\"face-smiling-hands\":58262,\"face-smirking\":58263,\"face-spiral-eyes\":58501,\"face-sunglasses\":58264,\"face-surprise\":62914,\"face-swear\":58265,\"face-thermometer\":58266,\"face-thinking\":58267,\"face-tired\":62920,\"face-tissue\":58268,\"face-tongue-money\":58269,\"face-tongue-sweat\":58270,\"face-unamused\":58271,\"face-viewfinder\":58111,\"face-vomit\":58272,\"face-weary\":58273,\"face-woozy\":58274,\"face-worried\":58275,\"face-zany\":58276,\"face-zipper\":58277,\"falafel\":58378,\"family-dress\":58113,\"family-pants\":58114,\"family\":58112,\"fan-table\":57348,\"fan\":63587,\"farm\":63588,\"faucet-drip\":57350,\"faucet\":57349,\"fax\":61868,\"feather-pointed\":62827,\"feather\":62765,\"fence\":58115,\"ferris-wheel\":57716,\"ferry\":58602,\"field-hockey-stick-ball\":62540,\"file-arrow-down\":62829,\"file-arrow-up\":62836,\"file-audio\":61895,\"file-binary\":57717,\"file-cad\":58994,\"file-certificate\":62963,\"file-chart-column\":63065,\"file-chart-pie\":63066,\"file-check\":62230,\"file-circle-check\":58784,\"file-circle-exclamation\":58603,\"file-circle-info\":58515,\"file-circle-minus\":58605,\"file-circle-plus\":58516,\"file-circle-question\":58607,\"file-circle-xmark\":58785,\"file-code\":61897,\"file-contract\":62828,\"file-csv\":63197,\"file-dashed-line\":63607,\"file-doc\":58861,\"file-eps\":58948,\"file-excel\":61891,\"file-exclamation\":62234,\"file-export\":62830,\"file-fragment\":59031,\"file-gif\":58949,\"file-half-dashed\":59032,\"file-heart\":57718,\"file-image\":61893,\"file-import\":62831,\"file-invoice-dollar\":62833,\"file-invoice\":62832,\"file-jpg\":58950,\"file-lines\":61788,\"file-lock\":58278,\"file-magnifying-glass\":63589,\"file-medical\":62583,\"file-minus\":62232,\"file-mov\":58951,\"file-mp3\":58952,\"file-mp4\":58953,\"file-music\":63670,\"file-pdf\":61889,\"file-pen\":62236,\"file-plus-minus\":57719,\"file-plus\":62233,\"file-png\":58982,\"file-powerpoint\":61892,\"file-ppt\":58954,\"file-prescription\":62834,\"file-shield\":58608,\"file-signature\":62835,\"file-slash\":58279,\"file-spreadsheet\":63067,\"file-svg\":58955,\"file-user\":63068,\"file-vector\":58956,\"file-video\":61896,\"file-waveform\":62584,\"file-word\":61890,\"file-xls\":58957,\"file-xmark\":62231,\"file-xml\":58964,\"file-zip\":58862,\"file-zipper\":61894,\"file\":61787,\"files-medical\":63485,\"files\":57720,\"fill-drip\":62838,\"fill\":62837,\"film-canister\":63671,\"film-simple\":62368,\"film-slash\":57721,\"film\":61448,\"films\":57722,\"filter-circle-dollar\":63074,\"filter-circle-xmark\":57723,\"filter-list\":57724,\"filter-slash\":57725,\"filter\":61616,\"filters\":57726,\"fingerprint\":62839,\"fire-burner\":58609,\"fire-extinguisher\":61748,\"fire-flame-curved\":63460,\"fire-flame-simple\":62570,\"fire-flame\":63199,\"fire-hydrant\":57727,\"fire-smoke\":63307,\"fire\":61549,\"fireplace\":63386,\"fish-bones\":58116,\"fish-cooked\":63486,\"fish-fins\":58610,\"fish\":62840,\"fishing-rod\":58280,\"flag-checkered\":61726,\"flag-pennant\":62550,\"flag-swallowtail\":63308,\"flag-usa\":63309,\"flag\":61476,\"flashlight\":63672,\"flask-gear\":58865,\"flask-round-poison\":63200,\"flask-round-potion\":63201,\"flask-vial\":58611,\"flask\":61635,\"flatbread-stuffed\":58380,\"flatbread\":58379,\"floppy-disk-circle-arrow-right\":57728,\"floppy-disk-circle-xmark\":57729,\"floppy-disk-pen\":57730,\"floppy-disk\":61639,\"floppy-disks\":57731,\"florin-sign\":57732,\"flower-daffodil\":63488,\"flower-tulip\":63489,\"flower\":63487,\"flute\":63673,\"flux-capacitor\":63674,\"flying-disc\":58281,\"folder-arrow-down\":57427,\"folder-arrow-up\":57428,\"folder-bookmark\":57734,\"folder-check\":58958,\"folder-closed\":57733,\"folder-gear\":57735,\"folder-grid\":57736,\"folder-heart\":57737,\"folder-image\":57738,\"folder-magnifying-glass\":57739,\"folder-medical\":57740,\"folder-minus\":63069,\"folder-music\":57741,\"folder-open\":61564,\"folder-plus\":63070,\"folder-tree\":63490,\"folder-user\":57742,\"folder-xmark\":63071,\"folder\":61563,\"folders\":63072,\"fondue-pot\":58381,\"font-awesome\":62132,\"font-case\":63590,\"font\":61489,\"football-helmet\":62543,\"football\":62542,\"fork-knife\":62182,\"fork\":62179,\"forklift\":62586,\"fort\":58502,\"forward-fast\":61520,\"forward-step\":61521,\"forward\":61518,\"frame\":58517,\"franc-sign\":57743,\"french-fries\":63491,\"frog\":62766,\"function\":63073,\"futbol\":61923,\"g\":71,\"galaxy\":57352,\"gallery-thumbnails\":58282,\"game-board-simple\":63592,\"game-board\":63591,\"game-console-handheld-crank\":58809,\"game-console-handheld\":63675,\"gamepad-modern\":58786,\"gamepad\":61723,\"garage-car\":57354,\"garage-open\":57355,\"garage\":57353,\"garlic\":58382,\"gas-pump-slash\":62964,\"gas-pump\":62767,\"gauge-circle-bolt\":58518,\"gauge-circle-minus\":58519,\"gauge-circle-plus\":58520,\"gauge-high\":63013,\"gauge-low\":63015,\"gauge-max\":63014,\"gauge-min\":63016,\"gauge-simple-high\":63018,\"gauge-simple-low\":63020,\"gauge-simple-max\":63019,\"gauge-simple-min\":63021,\"gauge-simple\":63017,\"gauge\":63012,\"gavel\":61667,\"gear-code\":58856,\"gear-complex-code\":58859,\"gear-complex\":58857,\"gear\":61459,\"gears\":61573,\"gem\":62373,\"genderless\":61997,\"ghost\":63202,\"gif\":57744,\"gift-card\":63075,\"gift\":61547,\"gifts\":63388,\"gingerbread-man\":63389,\"glass-citrus\":63593,\"glass-empty\":57745,\"glass-half\":57746,\"glass-water-droplet\":58613,\"glass-water\":58612,\"glass\":63492,\"glasses-round\":62965,\"glasses\":62768,\"globe-pointer\":58894,\"globe-snow\":63395,\"globe-stand\":62966,\"globe-wifi\":59013,\"globe\":61612,\"goal-net\":58283,\"golf-ball-tee\":62544,\"golf-club\":62545,\"golf-flag-hole\":58284,\"gopuram\":63076,\"graduation-cap\":61853,\"gramophone\":63677,\"grapes\":58118,\"grate-droplet\":57748,\"grate\":57747,\"greater-than-equal\":62770,\"greater-than\":62,\"grid-2-plus\":57751,\"grid-2\":57750,\"grid-4\":57752,\"grid-5\":57753,\"grid-dividers\":58285,\"grid-horizontal\":58119,\"grid-round-2-plus\":58844,\"grid-round-2\":58843,\"grid-round-4\":58845,\"grid-round-5\":58846,\"grid-round\":58842,\"grid\":57749,\"grill-fire\":58788,\"grill-hot\":58789,\"grill\":58787,\"grip-dots-vertical\":58385,\"grip-dots\":58384,\"grip-lines-vertical\":63397,\"grip-lines\":63396,\"grip-vertical\":62862,\"grip\":62861,\"group-arrows-rotate\":58614,\"guarani-sign\":57754,\"guitar-electric\":63678,\"guitar\":63398,\"guitars\":63679,\"gun-slash\":57756,\"gun-squirt\":57757,\"gun\":57755,\"h\":72,\"h1\":62227,\"h2\":62228,\"h3\":62229,\"h4\":63594,\"h5\":58386,\"h6\":58387,\"hammer-brush\":58912,\"hammer-crash\":58388,\"hammer-war\":63204,\"hammer\":63203,\"hamsa\":63077,\"hand-back-fist\":62037,\"hand-back-point-down\":57758,\"hand-back-point-left\":57759,\"hand-back-point-ribbon\":57760,\"hand-back-point-right\":57761,\"hand-back-point-up\":57762,\"hand-dots\":62561,\"hand-fingers-crossed\":57763,\"hand-fist\":63198,\"hand-heart\":62652,\"hand-holding-box\":62587,\"hand-holding-circle-dollar\":58913,\"hand-holding-dollar\":62656,\"hand-holding-droplet\":62657,\"hand-holding-hand\":58615,\"hand-holding-heart\":62654,\"hand-holding-magic\":63205,\"hand-holding-medical\":57436,\"hand-holding-seedling\":62655,\"hand-holding-skull\":57764,\"hand-holding\":62653,\"hand-horns\":57769,\"hand-lizard\":62040,\"hand-love\":57765,\"hand-middle-finger\":63494,\"hand-peace\":62043,\"hand-point-down\":61607,\"hand-point-left\":61605,\"hand-point-ribbon\":57766,\"hand-point-right\":61604,\"hand-point-up\":61606,\"hand-pointer\":62042,\"hand-scissors\":62039,\"hand-sparkles\":57437,\"hand-spock\":62041,\"hand-wave\":57767,\"hand\":62038,\"handcuffs\":58616,\"hands-asl-interpreting\":62115,\"hands-bound\":58617,\"hands-bubbles\":57438,\"hands-clapping\":57768,\"hands-holding-child\":58618,\"hands-holding-circle\":58619,\"hands-holding-diamond\":62588,\"hands-holding-dollar\":62661,\"hands-holding-heart\":62659,\"hands-holding\":62658,\"hands-praying\":63108,\"hands\":62119,\"handshake-angle\":62660,\"handshake-simple-slash\":57439,\"handshake-simple\":62662,\"handshake-slash\":57440,\"handshake\":62133,\"hanukiah\":63206,\"hard-drive\":61600,\"hashtag-lock\":58389,\"hashtag\":35,\"hat-beach\":58886,\"hat-chef\":63595,\"hat-cowboy-side\":63681,\"hat-cowboy\":63680,\"hat-santa\":63399,\"hat-winter\":63400,\"hat-witch\":63207,\"hat-wizard\":63208,\"head-side-brain\":63496,\"head-side-cough-slash\":57442,\"head-side-cough\":57441,\"head-side-gear\":58897,\"head-side-goggles\":63210,\"head-side-headphones\":63682,\"head-side-heart\":57770,\"head-side-mask\":57443,\"head-side-medical\":63497,\"head-side-virus\":57444,\"head-side\":63209,\"heading\":61916,\"headphones-simple\":62863,\"headphones\":61477,\"headset\":62864,\"heart-circle-bolt\":58620,\"heart-circle-check\":58621,\"heart-circle-exclamation\":58622,\"heart-circle-minus\":58623,\"heart-circle-plus\":58624,\"heart-circle-xmark\":58625,\"heart-crack\":63401,\"heart-half-stroke\":57772,\"heart-half\":57771,\"heart-pulse\":61982,\"heart\":61444,\"heat\":57356,\"helicopter-symbol\":58626,\"helicopter\":62771,\"helmet-battle\":63211,\"helmet-safety\":63495,\"helmet-un\":58627,\"hexagon-check\":58390,\"hexagon-divide\":57773,\"hexagon-exclamation\":58391,\"hexagon-image\":58628,\"hexagon-minus\":62215,\"hexagon-nodes-bolt\":59034,\"hexagon-nodes\":59033,\"hexagon-plus\":62208,\"hexagon-vertical-nft-slanted\":58630,\"hexagon-vertical-nft\":58629,\"hexagon-xmark\":62190,\"hexagon\":62226,\"high-definition\":57774,\"highlighter-line\":57775,\"highlighter\":62865,\"hill-avalanche\":58631,\"hill-rockslide\":58632,\"hippo\":63213,\"hockey-mask\":63214,\"hockey-puck\":62547,\"hockey-stick-puck\":58286,\"hockey-sticks\":62548,\"holly-berry\":63402,\"honey-pot\":58392,\"hood-cloak\":63215,\"horizontal-rule\":63596,\"horse-head\":63403,\"horse-saddle\":63683,\"horse\":63216,\"hose-reel\":58394,\"hose\":58393,\"hospital-user\":63501,\"hospital\":61688,\"hospitals\":63502,\"hot-tub-person\":62867,\"hotdog\":63503,\"hotel\":62868,\"hourglass-clock\":58395,\"hourglass-end\":62035,\"hourglass-half\":62034,\"hourglass-start\":62033,\"hourglass\":62036,\"house-blank\":58503,\"house-building\":57777,\"house-chimney-blank\":58288,\"house-chimney-crack\":63217,\"house-chimney-heart\":57778,\"house-chimney-medical\":63474,\"house-chimney-user\":57445,\"house-chimney-window\":57357,\"house-chimney\":58287,\"house-circle-check\":58633,\"house-circle-exclamation\":58634,\"house-circle-xmark\":58635,\"house-crack\":58289,\"house-day\":57358,\"house-fire\":58636,\"house-flag\":58637,\"house-flood-water-circle-arrow-right\":58639,\"house-flood-water\":58638,\"house-heart\":62665,\"house-laptop\":57446,\"house-lock\":58640,\"house-medical-circle-check\":58641,\"house-medical-circle-exclamation\":58642,\"house-medical-circle-xmark\":58643,\"house-medical-flag\":58644,\"house-medical\":58290,\"house-night\":57360,\"house-person-leave\":57359,\"house-person-return\":57361,\"house-signal\":57362,\"house-tree\":57779,\"house-tsunami\":58645,\"house-turret\":57780,\"house-user\":57776,\"house-water\":63311,\"house-window\":58291,\"house\":61461,\"hryvnia-sign\":63218,\"hundred-points\":58396,\"hurricane\":63313,\"hydra\":59014,\"hyphen\":45,\"i-cursor\":62022,\"i\":73,\"ice-cream\":63504,\"ice-skate\":63404,\"icicles\":63405,\"icons\":63597,\"id-badge\":62145,\"id-card-clip\":62591,\"id-card\":62146,\"igloo\":63406,\"image-landscape\":57781,\"image-polaroid-user\":57782,\"image-polaroid\":63684,\"image-portrait\":62432,\"image-slash\":57783,\"image-user\":57784,\"image\":61502,\"images-user\":57785,\"images\":62210,\"inbox-full\":57786,\"inbox-in\":62224,\"inbox-out\":62225,\"inbox\":61468,\"inboxes\":57787,\"indent\":61500,\"indian-rupee-sign\":57788,\"industry-windows\":62387,\"industry\":62069,\"infinity\":62772,\"info\":61737,\"inhaler\":62969,\"input-numeric\":57789,\"input-pipe\":57790,\"input-text\":57791,\"integral\":63079,\"interrobang\":58810,\"intersection\":63080,\"island-tropical\":63505,\"italic\":61491,\"j\":74,\"jack-o-lantern\":62222,\"jar-wheat\":58647,\"jar\":58646,\"jedi\":63081,\"jet-fighter-up\":58648,\"jet-fighter\":61691,\"joint\":62869,\"joystick\":63685,\"jug-bottle\":58875,\"jug-detergent\":58649,\"jug\":63686,\"k\":75,\"kaaba\":63083,\"kazoo\":63687,\"kerning\":63599,\"key-skeleton-left-right\":58292,\"key-skeleton\":63219,\"key\":61572,\"keyboard-brightness-low\":57793,\"keyboard-brightness\":57792,\"keyboard-down\":57794,\"keyboard-left\":57795,\"keyboard\":61724,\"keynote\":63084,\"khanda\":63085,\"kidneys\":62971,\"kip-sign\":57796,\"kit-medical\":62585,\"kitchen-set\":58650,\"kite\":63220,\"kiwi-bird\":62773,\"kiwi-fruit\":58124,\"knife-kitchen\":63221,\"knife\":62180,\"l\":76,\"lacrosse-stick-ball\":58294,\"lacrosse-stick\":58293,\"lambda\":63086,\"lamp-desk\":57364,\"lamp-floor\":57365,\"lamp-street\":57797,\"lamp\":62666,\"land-mine-on\":58651,\"landmark-dome\":63314,\"landmark-flag\":58652,\"landmark-magnifying-glass\":58914,\"landmark\":63087,\"language\":61867,\"laptop-arrow-down\":57798,\"laptop-binary\":58855,\"laptop-code\":62972,\"laptop-file\":58653,\"laptop-medical\":63506,\"laptop-mobile\":63610,\"laptop-slash\":57799,\"laptop\":61705,\"lari-sign\":57800,\"lasso-sparkles\":57801,\"lasso\":63688,\"layer-group\":62973,\"layer-minus\":62974,\"layer-plus\":62975,\"leaf-heart\":62667,\"leaf-maple\":63222,\"leaf-oak\":63223,\"leaf\":61548,\"leafy-green\":58397,\"left-from-bracket\":58988,\"left-from-line\":62280,\"left-long-to-line\":58398,\"left-long\":62218,\"left-right\":62263,\"left-to-bracket\":58989,\"left-to-line\":62283,\"left\":62293,\"lemon\":61588,\"less-than-equal\":62775,\"less-than\":60,\"life-ring\":61901,\"light-ceiling\":57366,\"light-emergency-on\":58400,\"light-emergency\":58399,\"light-switch-off\":57368,\"light-switch-on\":57369,\"light-switch\":57367,\"lightbulb-cfl-on\":58791,\"lightbulb-cfl\":58790,\"lightbulb-dollar\":63088,\"lightbulb-exclamation-on\":57802,\"lightbulb-exclamation\":63089,\"lightbulb-gear\":58877,\"lightbulb-message\":59015,\"lightbulb-on\":63090,\"lightbulb-slash\":63091,\"lightbulb\":61675,\"lighthouse\":58898,\"lights-holiday\":63410,\"line-columns\":63600,\"line-height\":63601,\"lines-leaning\":58654,\"link-horizontal-slash\":57804,\"link-horizontal\":57803,\"link-simple-slash\":57806,\"link-simple\":57805,\"link-slash\":61735,\"link\":61633,\"lips\":62976,\"lira-sign\":61845,\"list-check\":61614,\"list-dropdown\":57807,\"list-music\":63689,\"list-ol\":61643,\"list-radio\":57808,\"list-timeline\":57809,\"list-tree\":57810,\"list-ul\":61642,\"list\":61498,\"litecoin-sign\":57811,\"loader\":57812,\"lobster\":58401,\"location-arrow-up\":58938,\"location-arrow\":61732,\"location-check\":62982,\"location-crosshairs-slash\":62979,\"location-crosshairs\":62977,\"location-dot-slash\":62981,\"location-dot\":62405,\"location-exclamation\":62984,\"location-minus\":62985,\"location-pen\":62983,\"location-pin-lock\":58655,\"location-pin-slash\":62988,\"location-pin\":61505,\"location-plus\":62986,\"location-question\":62987,\"location-smile\":62989,\"location-xmark\":62990,\"lock-a\":58402,\"lock-hashtag\":58403,\"lock-keyhole-open\":62402,\"lock-keyhole\":62221,\"lock-open\":62401,\"lock\":61475,\"locust\":58656,\"lollipop\":58404,\"loveseat\":62668,\"luchador-mask\":62549,\"lungs-virus\":57447,\"lungs\":62980,\"m\":77,\"mace\":63224,\"magnet\":61558,\"magnifying-glass-arrow-right\":58657,\"magnifying-glass-arrows-rotate\":58974,\"magnifying-glass-chart\":58658,\"magnifying-glass-dollar\":63112,\"magnifying-glass-location\":63113,\"magnifying-glass-minus\":61456,\"magnifying-glass-music\":58975,\"magnifying-glass-play\":58976,\"magnifying-glass-plus\":61454,\"magnifying-glass-waveform\":58977,\"magnifying-glass\":61442,\"mailbox-flag-up\":58811,\"mailbox\":63507,\"manat-sign\":57813,\"mandolin\":63225,\"mango\":58127,\"manhole\":57814,\"map-location-dot\":62880,\"map-location\":62879,\"map-pin\":62070,\"map\":62073,\"marker\":62881,\"mars-and-venus-burst\":58659,\"mars-and-venus\":61988,\"mars-double\":61991,\"mars-stroke-right\":61995,\"mars-stroke-up\":61994,\"mars-stroke\":61993,\"mars\":61986,\"martini-glass-citrus\":62817,\"martini-glass-empty\":61440,\"martini-glass\":62843,\"mask-face\":57815,\"mask-snorkel\":58295,\"mask-ventilator\":58660,\"mask\":63226,\"masks-theater\":63024,\"mattress-pillow\":58661,\"maximize\":62238,\"meat\":63508,\"medal\":62882,\"megaphone\":63093,\"melon-slice\":58129,\"melon\":58128,\"memo-circle-check\":57817,\"memo-circle-info\":58522,\"memo-pad\":57818,\"memo\":57816,\"memory\":62776,\"menorah\":63094,\"mercury\":61987,\"merge\":58662,\"message-arrow-down\":57819,\"message-arrow-up-right\":57821,\"message-arrow-up\":57820,\"message-bot\":58296,\"message-captions\":57822,\"message-check\":62626,\"message-code\":57823,\"message-dollar\":63056,\"message-dots\":62627,\"message-exclamation\":62629,\"message-heart\":58825,\"message-image\":57824,\"message-lines\":62630,\"message-medical\":63476,\"message-middle-top\":57826,\"message-middle\":57825,\"message-minus\":62631,\"message-music\":63663,\"message-pen\":62628,\"message-plus\":62632,\"message-question\":57827,\"message-quote\":57828,\"message-slash\":62633,\"message-smile\":62634,\"message-sms\":57829,\"message-text\":57830,\"message-xmark\":62635,\"message\":62074,\"messages-dollar\":63058,\"messages-question\":57831,\"messages\":62646,\"meteor\":63315,\"meter-bolt\":57833,\"meter-droplet\":57834,\"meter-fire\":57835,\"meter\":57832,\"microchip-ai\":57836,\"microchip\":62171,\"microphone-lines-slash\":62777,\"microphone-lines\":62409,\"microphone-slash\":61745,\"microphone-stand\":63691,\"microphone\":61744,\"microscope\":62992,\"microwave\":57371,\"mill-sign\":57837,\"minimize\":63372,\"minus\":61544,\"mistletoe\":63412,\"mitten\":63413,\"mobile-button\":61707,\"mobile-notch\":57838,\"mobile-retro\":58663,\"mobile-screen-button\":62413,\"mobile-screen\":62415,\"mobile-signal-out\":57840,\"mobile-signal\":57839,\"mobile\":62414,\"money-bill-1-wave\":62779,\"money-bill-1\":62417,\"money-bill-simple-wave\":57842,\"money-bill-simple\":57841,\"money-bill-transfer\":58664,\"money-bill-trend-up\":58665,\"money-bill-wave\":62778,\"money-bill-wheat\":58666,\"money-bill\":61654,\"money-bills-simple\":57844,\"money-bills\":57843,\"money-check-dollar-pen\":63603,\"money-check-dollar\":62781,\"money-check-pen\":63602,\"money-check\":62780,\"money-from-bracket\":58130,\"money-simple-from-bracket\":58131,\"monitor-waveform\":62993,\"monkey\":63227,\"monument\":62886,\"moon-cloud\":63316,\"moon-over-sun\":63306,\"moon-stars\":63317,\"moon\":61830,\"moped\":58297,\"mortar-pestle\":62887,\"mosque\":63096,\"mosquito-net\":58668,\"mosquito\":58667,\"motorcycle\":61980,\"mound\":58669,\"mountain-city\":58670,\"mountain-sun\":58671,\"mountain\":63228,\"mountains\":63229,\"mouse-field\":58792,\"mp3-player\":63694,\"mug-hot\":63414,\"mug-marshmallows\":63415,\"mug-saucer\":61684,\"mug-tea-saucer\":57845,\"mug-tea\":63605,\"mug\":63604,\"mushroom\":58405,\"music-magnifying-glass\":58978,\"music-note-slash\":63696,\"music-note\":63695,\"music-slash\":63697,\"music\":61441,\"mustache\":58812,\"n\":78,\"naira-sign\":57846,\"narwhal\":63230,\"nesting-dolls\":58298,\"network-wired\":63231,\"neuter\":61996,\"newspaper\":61930,\"nfc-lock\":57848,\"nfc-magnifying-glass\":57849,\"nfc-pen\":57850,\"nfc-signal\":57851,\"nfc-slash\":57852,\"nfc-symbol\":58673,\"nfc-trash\":57853,\"nfc\":57847,\"nose\":58813,\"not-equal\":62782,\"notdef\":57854,\"note-medical\":57856,\"note-sticky\":62025,\"note\":57855,\"notebook\":57857,\"notes-medical\":62593,\"notes\":57858,\"o\":79,\"object-exclude\":58524,\"object-group\":62023,\"object-intersect\":58525,\"object-subtract\":58526,\"object-ungroup\":62024,\"object-union\":58527,\"objects-align-bottom\":58299,\"objects-align-center-horizontal\":58300,\"objects-align-center-vertical\":58301,\"objects-align-left\":58302,\"objects-align-right\":58303,\"objects-align-top\":58304,\"objects-column\":58305,\"octagon-check\":58406,\"octagon-divide\":57859,\"octagon-exclamation\":57860,\"octagon-minus\":62216,\"octagon-plus\":62209,\"octagon-xmark\":62192,\"octagon\":62214,\"octopus\":59016,\"oil-can-drip\":57861,\"oil-can\":62995,\"oil-temperature\":62996,\"oil-well\":58674,\"olive-branch\":58135,\"olive\":58134,\"om\":63097,\"omega\":63098,\"onion\":58407,\"option\":58136,\"ornament\":63416,\"otter\":63232,\"outdent\":61499,\"outlet\":57372,\"oven\":57373,\"overline\":63606,\"p\":80,\"page-caret-down\":58409,\"page-caret-up\":58410,\"page\":58408,\"pager\":63509,\"paint-roller\":62890,\"paintbrush-fine\":62889,\"paintbrush-pencil\":57862,\"paintbrush\":61948,\"palette\":62783,\"pallet-box\":57864,\"pallet-boxes\":62595,\"pallet\":62594,\"pan-food\":58411,\"pan-frying\":58412,\"pancakes\":58413,\"panel-ews\":58414,\"panel-fire\":58415,\"panorama\":57865,\"paper-plane-top\":57866,\"paper-plane\":61912,\"paperclip-vertical\":58306,\"paperclip\":61638,\"parachute-box\":62669,\"paragraph-left\":63608,\"paragraph\":61917,\"party-bell\":58138,\"party-horn\":58139,\"passport\":62891,\"paste\":61674,\"pause\":61516,\"paw-claws\":63234,\"paw-simple\":63233,\"paw\":61872,\"peace\":63100,\"peach\":57867,\"peanut\":58416,\"peanuts\":58417,\"peapod\":58140,\"pear\":57868,\"pedestal\":57869,\"pegasus\":63235,\"pen-circle\":57870,\"pen-clip-slash\":57871,\"pen-clip\":62213,\"pen-fancy-slash\":57872,\"pen-fancy\":62892,\"pen-field\":57873,\"pen-line\":57874,\"pen-nib-slash\":58529,\"pen-nib\":62893,\"pen-paintbrush\":63000,\"pen-ruler\":62894,\"pen-slash\":57875,\"pen-swirl\":57876,\"pen-to-square\":61508,\"pen\":62212,\"pencil-mechanical\":58826,\"pencil-slash\":57877,\"pencil\":62211,\"people-arrows\":57448,\"people-carry-box\":62670,\"people-dress-simple\":57880,\"people-dress\":57879,\"people-group\":58675,\"people-line\":58676,\"people-pants-simple\":57882,\"people-pants\":57881,\"people-pulling\":58677,\"people-robbery\":58678,\"people-roof\":58679,\"people-simple\":57883,\"people\":57878,\"pepper-hot\":63510,\"pepper\":58418,\"percent\":37,\"period\":46,\"person-arrow-down-to-line\":58680,\"person-arrow-up-from-line\":58681,\"person-biking-mountain\":63563,\"person-biking\":63562,\"person-booth\":63318,\"person-breastfeeding\":58682,\"person-burst\":58683,\"person-cane\":58684,\"person-carry-box\":62671,\"person-chalkboard\":58685,\"person-circle-check\":58686,\"person-circle-exclamation\":58687,\"person-circle-minus\":58688,\"person-circle-plus\":58689,\"person-circle-question\":58690,\"person-circle-xmark\":58691,\"person-digging\":63582,\"person-dolly-empty\":62673,\"person-dolly\":62672,\"person-dots-from-line\":62576,\"person-dress-burst\":58692,\"person-dress-fairy\":58887,\"person-dress-simple\":57884,\"person-dress\":61826,\"person-drowning\":58693,\"person-fairy\":58888,\"person-falling-burst\":58695,\"person-falling\":58694,\"person-from-portal\":57379,\"person-half-dress\":58696,\"person-harassing\":58697,\"person-hiking\":63212,\"person-military-pointing\":58698,\"person-military-rifle\":58699,\"person-military-to-person\":58700,\"person-pinball\":57885,\"person-praying\":63107,\"person-pregnant\":58142,\"person-rays\":58701,\"person-rifle\":58702,\"person-running-fast\":58879,\"person-running\":63244,\"person-seat-reclined\":57887,\"person-seat\":57886,\"person-shelter\":58703,\"person-sign\":63319,\"person-simple\":57888,\"person-skating\":63429,\"person-ski-jumping\":63431,\"person-ski-lift\":63432,\"person-skiing-nordic\":63434,\"person-skiing\":63433,\"person-sledding\":63435,\"person-snowboarding\":63438,\"person-snowmobiling\":63441,\"person-swimming\":62916,\"person-through-window\":58793,\"person-to-door\":58419,\"person-to-portal\":57378,\"person-walking-arrow-loop-left\":58705,\"person-walking-arrow-right\":58706,\"person-walking-dashed-line-arrow-right\":58707,\"person-walking-luggage\":58708,\"person-walking-with-cane\":62109,\"person-walking\":62804,\"person\":61827,\"peseta-sign\":57889,\"peso-sign\":57890,\"phone-arrow-down-left\":57891,\"phone-arrow-right\":58814,\"phone-arrow-up-right\":57892,\"phone-flip\":63609,\"phone-hangup\":57893,\"phone-intercom\":58420,\"phone-missed\":57894,\"phone-office\":63101,\"phone-plus\":62674,\"phone-rotary\":63699,\"phone-slash\":62429,\"phone-volume\":62112,\"phone-xmark\":57895,\"phone\":61589,\"photo-film-music\":57896,\"photo-film\":63612,\"pi\":63102,\"piano-keyboard\":63701,\"piano\":63700,\"pickaxe\":58815,\"pickleball\":58421,\"pie\":63237,\"pig\":63238,\"piggy-bank\":62675,\"pills\":62596,\"pinata\":58307,\"pinball\":57897,\"pineapple\":58143,\"pipe-circle-check\":58422,\"pipe-collar\":58423,\"pipe-section\":58424,\"pipe-smoking\":58308,\"pipe-valve\":58425,\"pipe\":124,\"pizza-slice\":63512,\"pizza\":63511,\"place-of-worship\":63103,\"plane-arrival\":62895,\"plane-circle-check\":58709,\"plane-circle-exclamation\":58710,\"plane-circle-xmark\":58711,\"plane-departure\":62896,\"plane-engines\":62430,\"plane-lock\":58712,\"plane-prop\":57899,\"plane-slash\":57449,\"plane-tail\":57900,\"plane-up-slash\":57902,\"plane-up\":57901,\"plane\":61554,\"planet-moon\":57375,\"planet-ringed\":57376,\"plant-wilt\":58794,\"plate-utensils\":58427,\"plate-wheat\":58714,\"play-pause\":57903,\"play\":61515,\"plug-circle-bolt\":58715,\"plug-circle-check\":58716,\"plug-circle-exclamation\":58717,\"plug-circle-minus\":58718,\"plug-circle-plus\":58719,\"plug-circle-xmark\":58720,\"plug\":61926,\"plus-large\":58782,\"plus-minus\":58428,\"plus\":43,\"podcast\":62158,\"podium-star\":63320,\"podium\":63104,\"police-box\":57377,\"poll-people\":63321,\"pompebled\":58429,\"poo-storm\":63322,\"poo\":62206,\"pool-8-ball\":58309,\"poop\":63001,\"popcorn\":63513,\"popsicle\":58430,\"pot-food\":58431,\"potato\":58432,\"power-off\":61457,\"prescription-bottle-medical\":62598,\"prescription-bottle-pill\":58816,\"prescription-bottle\":62597,\"prescription\":62897,\"presentation-screen\":63109,\"pretzel\":58433,\"print-magnifying-glass\":63514,\"print-slash\":63110,\"print\":61487,\"projector\":63702,\"pump-medical\":57450,\"pump-soap\":57451,\"pump\":58434,\"pumpkin\":63239,\"puzzle-piece-simple\":57905,\"puzzle-piece\":61742,\"puzzle\":58435,\"q\":81,\"qrcode\":61481,\"question\":63,\"quote-left\":61709,\"quote-right\":61710,\"quotes\":57908,\"r\":82,\"rabbit-running\":63241,\"rabbit\":63240,\"raccoon\":58899,\"racquet\":62554,\"radar\":57380,\"radiation\":63417,\"radio-tuner\":63704,\"radio\":63703,\"rainbow\":63323,\"raindrops\":63324,\"ram\":63242,\"ramp-loading\":62676,\"ranking-star\":58721,\"raygun\":57381,\"receipt\":62787,\"record-vinyl\":63705,\"rectangle-ad\":63041,\"rectangle-barcode\":62563,\"rectangle-code\":58146,\"rectangle-history-circle-plus\":58531,\"rectangle-history-circle-user\":58532,\"rectangle-history\":58530,\"rectangle-list\":61474,\"rectangle-pro\":57909,\"rectangle-terminal\":57910,\"rectangle-vertical-history\":57911,\"rectangle-vertical\":62203,\"rectangle-wide\":62204,\"rectangle-xmark\":62480,\"rectangle\":62202,\"rectangles-mixed\":58147,\"recycle\":61880,\"reel\":57912,\"reflect-both\":58991,\"reflect-horizontal\":58980,\"reflect-vertical\":58981,\"refrigerator\":57382,\"registered\":62045,\"repeat-1\":62309,\"repeat\":62307,\"reply-all\":61730,\"reply-clock\":57913,\"reply\":62437,\"republican\":63326,\"restroom-simple\":57914,\"restroom\":63421,\"retweet\":61561,\"rhombus\":57915,\"ribbon\":62678,\"right-from-bracket\":62197,\"right-from-line\":62279,\"right-left-large\":58849,\"right-left\":62306,\"right-long-to-line\":58436,\"right-long\":62219,\"right-to-bracket\":62198,\"right-to-line\":62284,\"right\":62294,\"ring-diamond\":58795,\"ring\":63243,\"rings-wedding\":63515,\"road-barrier\":58722,\"road-bridge\":58723,\"road-circle-check\":58724,\"road-circle-exclamation\":58725,\"road-circle-xmark\":58726,\"road-lock\":58727,\"road-spikes\":58728,\"road\":61464,\"robot-astromech\":58066,\"robot\":62788,\"rocket-launch\":57383,\"rocket\":61749,\"roller-coaster\":58148,\"rotate-exclamation\":57916,\"rotate-left\":62186,\"rotate-reverse\":58929,\"rotate-right\":62201,\"rotate\":62193,\"route-highway\":63002,\"route-interstate\":63003,\"route\":62679,\"router\":63706,\"rss\":61598,\"ruble-sign\":61784,\"rug\":58729,\"rugby-ball\":58310,\"ruler-combined\":62790,\"ruler-horizontal\":62791,\"ruler-triangle\":63004,\"ruler-vertical\":62792,\"ruler\":62789,\"rupee-sign\":61782,\"rupiah-sign\":57917,\"rv\":63422,\"s\":83,\"sack-dollar\":63517,\"sack-xmark\":58730,\"sack\":63516,\"sailboat\":58437,\"salad\":63518,\"salt-shaker\":58438,\"sandwich\":63519,\"satellite-dish\":63424,\"satellite\":63423,\"sausage\":63520,\"saxophone-fire\":63707,\"saxophone\":63708,\"scale-balanced\":62030,\"scale-unbalanced-flip\":62742,\"scale-unbalanced\":62741,\"scalpel-line-dashed\":63006,\"scalpel\":63005,\"scanner-gun\":62600,\"scanner-image\":63731,\"scanner-keyboard\":62601,\"scanner-touchscreen\":62602,\"scarecrow\":63245,\"scarf\":63425,\"school-circle-check\":58731,\"school-circle-exclamation\":58732,\"school-circle-xmark\":58733,\"school-flag\":58734,\"school-lock\":58735,\"school\":62793,\"scissors\":61636,\"screen-users\":63037,\"screencast\":57918,\"screwdriver-wrench\":63449,\"screwdriver\":62794,\"scribble\":57919,\"scroll-old\":63247,\"scroll-torah\":63136,\"scroll\":63246,\"scrubber\":62200,\"scythe\":63248,\"sd-card\":63426,\"sd-cards\":57920,\"seal-exclamation\":57922,\"seal-question\":57923,\"seal\":57921,\"seat-airline\":57924,\"section\":58439,\"seedling\":62680,\"semicolon\":59,\"send-back\":63614,\"send-backward\":63615,\"sensor-cloud\":57388,\"sensor-fire\":57386,\"sensor-on\":57387,\"sensor-triangle-exclamation\":57385,\"sensor\":57384,\"server\":62003,\"shapes\":63007,\"share-all\":62311,\"share-from-square\":61773,\"share-nodes\":61920,\"share\":61540,\"sheep\":63249,\"sheet-plastic\":58737,\"shekel-sign\":61963,\"shelves-empty\":57926,\"shelves\":62592,\"shield-cat\":58738,\"shield-check\":62199,\"shield-cross\":63250,\"shield-dog\":58739,\"shield-exclamation\":57927,\"shield-halved\":62445,\"shield-heart\":58740,\"shield-keyhole\":57928,\"shield-minus\":57929,\"shield-plus\":57930,\"shield-quartered\":58741,\"shield-slash\":57931,\"shield-virus\":57452,\"shield-xmark\":57932,\"shield\":61746,\"ship\":61978,\"shirt-long-sleeve\":58311,\"shirt-running\":58312,\"shirt-tank-top\":58313,\"shirt\":62803,\"shish-kebab\":63521,\"shoe-prints\":62795,\"shop-lock\":58533,\"shop-slash\":57456,\"shop\":62799,\"shovel-snow\":63427,\"shovel\":63251,\"shower-down\":57933,\"shower\":62156,\"shredder\":63114,\"shrimp\":58440,\"shuffle\":61556,\"shutters\":58441,\"shuttle-space\":61847,\"shuttlecock\":62555,\"sickle\":63522,\"sidebar-flip\":57935,\"sidebar\":57934,\"sigma\":63115,\"sign-hanging\":62681,\"sign-post\":58916,\"sign-posts-wrench\":58918,\"sign-posts\":58917,\"signal-bars-fair\":63122,\"signal-bars-good\":63123,\"signal-bars-slash\":63124,\"signal-bars-weak\":63121,\"signal-bars\":63120,\"signal-fair\":63117,\"signal-good\":63118,\"signal-slash\":63125,\"signal-stream-slash\":57936,\"signal-stream\":63709,\"signal-strong\":63119,\"signal-weak\":63116,\"signal\":61458,\"signature-lock\":58314,\"signature-slash\":58315,\"signature\":62903,\"signs-post\":62071,\"sim-card\":63428,\"sim-cards\":57937,\"sink\":57453,\"siren-on\":57390,\"siren\":57389,\"sitemap\":61672,\"skeleton-ribs\":58827,\"skeleton\":63008,\"ski-boot-ski\":58317,\"ski-boot\":58316,\"skull-cow\":63710,\"skull-crossbones\":63252,\"skull\":62796,\"slash-back\":92,\"slash-forward\":47,\"slash\":63253,\"sleigh\":63436,\"slider\":57938,\"sliders-simple\":57939,\"sliders-up\":62449,\"sliders\":61918,\"slot-machine\":58318,\"smog\":63327,\"smoke\":63328,\"smoking\":62605,\"snake\":63254,\"snooze\":63616,\"snow-blowing\":63329,\"snowflake-droplets\":58817,\"snowflake\":62172,\"snowflakes\":63439,\"snowman-head\":63387,\"snowman\":63440,\"snowplow\":63442,\"soap\":57454,\"socks\":63126,\"soft-serve\":58368,\"solar-panel\":62906,\"solar-system\":57391,\"sort-down\":61661,\"sort-up\":61662,\"sort\":61660,\"spa\":62907,\"space-station-moon-construction\":57396,\"space-station-moon\":57395,\"spade\":62196,\"spaghetti-monster-flying\":63099,\"sparkle\":58838,\"sparkles\":63632,\"speaker\":63711,\"speakers\":63712,\"spell-check\":63633,\"spider-black-widow\":63256,\"spider-web\":63257,\"spider\":63255,\"spinner-scale\":58922,\"spinner-third\":62452,\"spinner\":61712,\"split\":57940,\"splotch\":62908,\"spoon\":62181,\"sportsball\":58443,\"spray-can-sparkles\":62928,\"spray-can\":62909,\"sprinkler-ceiling\":58444,\"sprinkler\":57397,\"square-0\":57941,\"square-1\":57942,\"square-2\":57943,\"square-3\":57944,\"square-4\":57945,\"square-5\":57946,\"square-6\":57947,\"square-7\":57948,\"square-8\":57949,\"square-9\":57950,\"square-a-lock\":58445,\"square-a\":57951,\"square-ampersand\":57952,\"square-arrow-down-left\":57953,\"square-arrow-down-right\":57954,\"square-arrow-down\":62265,\"square-arrow-left\":62266,\"square-arrow-right\":62267,\"square-arrow-up-left\":57955,\"square-arrow-up-right\":61772,\"square-arrow-up\":62268,\"square-b\":57956,\"square-binary\":59035,\"square-bolt\":57957,\"square-c\":57958,\"square-caret-down\":61776,\"square-caret-left\":61841,\"square-caret-right\":61778,\"square-caret-up\":61777,\"square-check\":61770,\"square-chevron-down\":62249,\"square-chevron-left\":62250,\"square-chevron-right\":62251,\"square-chevron-up\":62252,\"square-code\":57959,\"square-d\":57960,\"square-dashed-circle-plus\":58818,\"square-dashed\":57961,\"square-divide\":57962,\"square-dollar\":62185,\"square-down-left\":57963,\"square-down-right\":57964,\"square-down\":62288,\"square-e\":57965,\"square-ellipsis-vertical\":57967,\"square-ellipsis\":57966,\"square-envelope\":61849,\"square-exclamation\":62241,\"square-f\":57968,\"square-fragile\":62619,\"square-full\":62556,\"square-g\":57969,\"square-h\":61693,\"square-heart\":62664,\"square-i\":57970,\"square-info\":62223,\"square-j\":57971,\"square-k\":57972,\"square-kanban\":58504,\"square-l\":57973,\"square-left\":62289,\"square-list\":58505,\"square-m\":57974,\"square-minus\":61766,\"square-n\":57975,\"square-nfi\":58742,\"square-o\":57976,\"square-p\":57977,\"square-parking-slash\":62999,\"square-parking\":62784,\"square-pen\":61771,\"square-person-confined\":58743,\"square-phone-flip\":63611,\"square-phone-hangup\":57978,\"square-phone\":61592,\"square-plus\":61694,\"square-poll-horizontal\":63106,\"square-poll-vertical\":63105,\"square-q\":57979,\"square-quarters\":58446,\"square-question\":62205,\"square-quote\":58153,\"square-r\":57980,\"square-right\":62290,\"square-ring\":58447,\"square-root-variable\":63128,\"square-root\":63127,\"square-rss\":61763,\"square-s\":57981,\"square-share-nodes\":61921,\"square-sliders-vertical\":62450,\"square-sliders\":62448,\"square-small\":57982,\"square-star\":57983,\"square-t\":57984,\"square-terminal\":58154,\"square-this-way-up\":62623,\"square-u\":57985,\"square-up-left\":57986,\"square-up-right\":62304,\"square-up\":62291,\"square-user\":57987,\"square-v\":57988,\"square-virus\":58744,\"square-w\":57989,\"square-x\":57990,\"square-xmark\":62163,\"square-y\":57991,\"square-z\":57992,\"square\":61640,\"squid\":58448,\"squirrel\":63258,\"staff-snake\":58745,\"staff\":63259,\"stairs\":57993,\"stamp\":62911,\"standard-definition\":57994,\"stapler\":58799,\"star-and-crescent\":63129,\"star-christmas\":63444,\"star-exclamation\":62195,\"star-half-stroke\":62912,\"star-half\":61577,\"star-of-david\":63130,\"star-of-life\":63009,\"star-sharp-half-stroke\":57997,\"star-sharp-half\":57996,\"star-sharp\":57995,\"star-shooting\":57398,\"star\":61445,\"starfighter-twin-ion-engine-advanced\":57998,\"starfighter-twin-ion-engine\":57400,\"starfighter\":57399,\"stars\":63330,\"starship-freighter\":57402,\"starship\":57401,\"steak\":63524,\"steering-wheel\":63010,\"sterling-sign\":61780,\"stethoscope\":61681,\"stocking\":63445,\"stomach\":63011,\"stop\":61517,\"stopwatch-20\":57455,\"stopwatch\":62194,\"store-lock\":58534,\"store-slash\":57457,\"store\":62798,\"strawberry\":58155,\"street-view\":61981,\"stretcher\":63525,\"strikethrough\":61644,\"stroopwafel\":62801,\"subscript\":61740,\"subtitles-slash\":58896,\"subtitles\":58895,\"suitcase-medical\":61690,\"suitcase-rolling\":62913,\"suitcase\":61682,\"sun-bright\":57999,\"sun-cloud\":63331,\"sun-dust\":63332,\"sun-haze\":63333,\"sun-plant-wilt\":58746,\"sun\":61829,\"sunglasses\":63634,\"sunrise\":63334,\"sunset\":63335,\"superscript\":61739,\"sushi-roll\":58507,\"sushi\":58506,\"swap-arrows\":58890,\"swap\":58889,\"swatchbook\":62915,\"sword-laser-alt\":57404,\"sword-laser\":57403,\"sword\":63260,\"swords-laser\":57405,\"swords\":63261,\"symbols\":63598,\"synagogue\":63131,\"syringe\":62606,\"t-rex\":58921,\"t\":84,\"table-cells-column-lock\":59000,\"table-cells-column-unlock\":59024,\"table-cells-large\":61449,\"table-cells-lock\":59001,\"table-cells-row-lock\":59002,\"table-cells-row-unlock\":59025,\"table-cells-unlock\":59026,\"table-cells\":61450,\"table-columns\":61659,\"table-layout\":58000,\"table-list\":61451,\"table-picnic\":58157,\"table-pivot\":58001,\"table-rows\":58002,\"table-tennis-paddle-ball\":62557,\"table-tree\":58003,\"table\":61646,\"tablet-button\":61706,\"tablet-rugged\":62607,\"tablet-screen-button\":62458,\"tablet-screen\":62460,\"tablet\":62459,\"tablets\":62608,\"tachograph-digital\":62822,\"taco\":63526,\"tag\":61483,\"tags\":61484,\"tally-1\":58004,\"tally-2\":58005,\"tally-3\":58006,\"tally-4\":58007,\"tally\":63132,\"tamale\":58449,\"tank-water\":58450,\"tape\":62683,\"tarp-droplet\":58748,\"tarp\":58747,\"taxi-bus\":58008,\"taxi\":61882,\"teddy-bear\":58319,\"teeth-open\":63023,\"teeth\":63022,\"telescope\":57406,\"temperature-arrow-down\":57407,\"temperature-arrow-up\":57408,\"temperature-empty\":62155,\"temperature-full\":62151,\"temperature-half\":62153,\"temperature-high\":63337,\"temperature-list\":58009,\"temperature-low\":63339,\"temperature-quarter\":62154,\"temperature-snow\":63336,\"temperature-sun\":63338,\"temperature-three-quarters\":62152,\"tenge-sign\":63447,\"tennis-ball\":62558,\"tent-arrow-down-to-line\":58750,\"tent-arrow-left-right\":58751,\"tent-arrow-turn-left\":58752,\"tent-arrows-down\":58753,\"tent-double-peak\":58919,\"tent\":58749,\"tents\":58754,\"terminal\":61728,\"text-height\":61492,\"text-size\":63636,\"text-slash\":63613,\"text-width\":61493,\"text\":63635,\"thermometer\":62609,\"theta\":63134,\"thought-bubble\":58158,\"thumbs-down\":61797,\"thumbs-up\":61796,\"thumbtack-slash\":59023,\"thumbtack\":61581,\"tick\":58159,\"ticket-airline\":58010,\"ticket-perforated\":58942,\"ticket-simple\":62463,\"ticket\":61765,\"tickets-airline\":58011,\"tickets-perforated\":58943,\"tickets-simple\":58969,\"tickets\":58968,\"tilde\":126,\"timeline-arrow\":58013,\"timeline\":58012,\"timer\":58014,\"tire-flat\":63026,\"tire-pressure-warning\":63027,\"tire-rugged\":63028,\"tire\":63025,\"toggle-large-off\":58800,\"toggle-large-on\":58801,\"toggle-off\":61956,\"toggle-on\":61957,\"toilet-paper-blank-under\":58015,\"toilet-paper-blank\":63263,\"toilet-paper-check\":58802,\"toilet-paper-slash\":57458,\"toilet-paper-under-slash\":58017,\"toilet-paper-under\":58016,\"toilet-paper-xmark\":58803,\"toilet-paper\":63262,\"toilet-portable\":58755,\"toilet\":63448,\"toilets-portable\":58756,\"tomato\":58160,\"tombstone-blank\":63265,\"tombstone\":63264,\"toolbox\":62802,\"tooth\":62921,\"toothbrush\":63029,\"torii-gate\":63137,\"tornado\":63343,\"tower-broadcast\":62745,\"tower-cell\":58757,\"tower-control\":58018,\"tower-observation\":58758,\"tractor\":63266,\"trademark\":62044,\"traffic-cone\":63030,\"traffic-light-go\":63032,\"traffic-light-slow\":63033,\"traffic-light-stop\":63034,\"traffic-light\":63031,\"trailer\":57409,\"train-subway-tunnel\":58019,\"train-subway\":62009,\"train-track\":58451,\"train-tram\":58804,\"train-tunnel\":58452,\"train\":62008,\"transformer-bolt\":58020,\"transgender\":61989,\"transporter-1\":57411,\"transporter-2\":57412,\"transporter-3\":57413,\"transporter-4\":58021,\"transporter-5\":58022,\"transporter-6\":58023,\"transporter-7\":58024,\"transporter-empty\":57414,\"transporter\":57410,\"trash-arrow-up\":63529,\"trash-can-arrow-up\":63530,\"trash-can-check\":58025,\"trash-can-clock\":58026,\"trash-can-list\":58027,\"trash-can-plus\":58028,\"trash-can-slash\":58029,\"trash-can-undo\":63638,\"trash-can-xmark\":58030,\"trash-can\":62189,\"trash-check\":58031,\"trash-clock\":58032,\"trash-list\":58033,\"trash-plus\":58034,\"trash-slash\":58035,\"trash-undo\":63637,\"trash-xmark\":58036,\"trash\":61944,\"treasure-chest\":63267,\"tree-christmas\":63451,\"tree-city\":58759,\"tree-deciduous\":62464,\"tree-decorated\":63452,\"tree-large\":63453,\"tree-palm\":63531,\"tree\":61883,\"trees\":63268,\"triangle-exclamation\":61553,\"triangle-instrument\":63714,\"triangle-person-digging\":63581,\"triangle\":62188,\"tricycle-adult\":58820,\"tricycle\":58819,\"trillium\":58760,\"trophy-star\":62187,\"trophy\":61585,\"trowel-bricks\":58762,\"trowel\":58761,\"truck-arrow-right\":58763,\"truck-bolt\":58320,\"truck-clock\":62604,\"truck-container-empty\":58037,\"truck-container\":62684,\"truck-droplet\":58764,\"truck-fast\":62603,\"truck-field-un\":58766,\"truck-field\":58765,\"truck-fire\":58970,\"truck-flatbed\":58038,\"truck-front\":58039,\"truck-ladder\":58967,\"truck-medical\":61689,\"truck-monster\":63035,\"truck-moving\":62687,\"truck-pickup\":63036,\"truck-plane\":58767,\"truck-plow\":63454,\"truck-ramp-box\":62686,\"truck-ramp-couch\":62685,\"truck-ramp\":62688,\"truck-tow\":58040,\"truck-utensils\":58920,\"truck\":61649,\"trumpet\":63715,\"tty-answer\":58041,\"tty\":61924,\"tugrik-sign\":58042,\"turkey\":63269,\"turkish-lira-sign\":58043,\"turn-down-left\":58161,\"turn-down-right\":58453,\"turn-down\":62398,\"turn-left-down\":58935,\"turn-left-up\":58936,\"turn-left\":58934,\"turn-right\":58937,\"turn-up\":62399,\"turntable\":63716,\"turtle\":63270,\"tv-music\":63718,\"tv-retro\":62465,\"tv\":62060,\"typewriter\":63719,\"u\":85,\"ufo-beam\":57416,\"ufo\":57415,\"umbrella-beach\":62922,\"umbrella-simple\":58044,\"umbrella\":61673,\"underline\":61645,\"unicorn\":63271,\"uniform-martial-arts\":58321,\"union\":63138,\"universal-access\":62106,\"unlock-keyhole\":61758,\"unlock\":61596,\"up-down-left-right\":61618,\"up-down\":62264,\"up-from-bracket\":58768,\"up-from-dotted-line\":58454,\"up-from-line\":62278,\"up-left\":58045,\"up-long\":62220,\"up-right-and-down-left-from-center\":62500,\"up-right-from-square\":62301,\"up-right\":58046,\"up-to-bracket\":58990,\"up-to-dotted-line\":58455,\"up-to-line\":62285,\"up\":62295,\"upload\":61587,\"usb-drive\":63721,\"user-alien\":57418,\"user-astronaut\":62715,\"user-beard-bolt\":59017,\"user-bounty-hunter\":58047,\"user-check\":62716,\"user-chef\":58322,\"user-clock\":62717,\"user-cowboy\":63722,\"user-crown\":63140,\"user-doctor-hair-long\":58457,\"user-doctor-hair\":58456,\"user-doctor-message\":63534,\"user-doctor\":61680,\"user-gear\":62718,\"user-graduate\":62721,\"user-group-crown\":63141,\"user-group-simple\":58883,\"user-group\":62720,\"user-hair-buns\":58323,\"user-hair-long\":58459,\"user-hair-mullet\":58460,\"user-hair\":58458,\"user-headset\":63533,\"user-helmet-safety\":63532,\"user-hoodie\":59018,\"user-injured\":63272,\"user-large-slash\":62714,\"user-large\":62470,\"user-lock\":62722,\"user-magnifying-glass\":58821,\"user-minus\":62723,\"user-music\":63723,\"user-ninja\":62724,\"user-nurse-hair-long\":58462,\"user-nurse-hair\":58461,\"user-nurse\":63535,\"user-pen\":62719,\"user-pilot-tie\":58049,\"user-pilot\":58048,\"user-plus\":62004,\"user-police-tie\":58164,\"user-police\":58163,\"user-robot-xmarks\":58535,\"user-robot\":57419,\"user-secret\":61979,\"user-shakespeare\":58050,\"user-shield\":62725,\"user-slash\":62726,\"user-tag\":62727,\"user-tie-hair-long\":58464,\"user-tie-hair\":58463,\"user-tie\":62728,\"user-unlock\":57432,\"user-visor\":57420,\"user-vneck-hair-long\":58467,\"user-vneck-hair\":58466,\"user-vneck\":58465,\"user-xmark\":62005,\"user\":61447,\"users-between-lines\":58769,\"users-gear\":62729,\"users-line\":58770,\"users-medical\":63536,\"users-rays\":58771,\"users-rectangle\":58772,\"users-slash\":57459,\"users-viewfinder\":58773,\"users\":61632,\"utensils-slash\":58468,\"utensils\":62183,\"utility-pole-double\":58052,\"utility-pole\":58051,\"v\":86,\"vacuum-robot\":57422,\"vacuum\":57421,\"value-absolute\":63142,\"van-shuttle\":62902,\"vault\":58053,\"vector-circle\":58054,\"vector-polygon\":58055,\"vector-square\":62923,\"vent-damper\":58469,\"venus-double\":61990,\"venus-mars\":61992,\"venus\":61985,\"vest-patches\":57478,\"vest\":57477,\"vial-circle-check\":58774,\"vial-virus\":58775,\"vial\":62610,\"vials\":62611,\"video-arrow-down-left\":58056,\"video-arrow-up-right\":58057,\"video-plus\":62689,\"video-slash\":62690,\"video\":61501,\"vihara\":63143,\"violin\":63725,\"virus-covid-slash\":58537,\"virus-covid\":58536,\"virus-slash\":57461,\"virus\":57460,\"viruses\":57462,\"voicemail\":63639,\"volcano\":63344,\"volleyball\":62559,\"volume-high\":61480,\"volume-low\":61479,\"volume-off\":61478,\"volume-slash\":62178,\"volume-xmark\":63145,\"volume\":63144,\"vr-cardboard\":63273,\"w\":87,\"waffle\":58470,\"wagon-covered\":63726,\"walker\":63537,\"walkie-talkie\":63727,\"wallet\":62805,\"wand-magic-sparkles\":58058,\"wand-magic\":61648,\"wand-sparkles\":63275,\"wand\":63274,\"warehouse-full\":62613,\"warehouse\":62612,\"washing-machine\":63640,\"watch-apple\":58059,\"watch-calculator\":63728,\"watch-fitness\":63038,\"watch-smart\":58060,\"watch\":62177,\"water-arrow-down\":63348,\"water-arrow-up\":63349,\"water-ladder\":62917,\"water\":63347,\"watermelon-slice\":58167,\"wave-pulse\":62968,\"wave-sine\":63641,\"wave-square\":63550,\"wave-triangle\":63642,\"wave\":58971,\"waveform-lines\":63730,\"waveform\":63729,\"waves-sine\":58973,\"web-awesome\":59010,\"webhook\":58837,\"weight-hanging\":62925,\"weight-scale\":62614,\"whale\":63276,\"wheat-awn-circle-exclamation\":58776,\"wheat-awn-slash\":58168,\"wheat-awn\":58061,\"wheat-slash\":58169,\"wheat\":63277,\"wheelchair-move\":58062,\"wheelchair\":61843,\"whiskey-glass-ice\":63393,\"whiskey-glass\":63392,\"whistle\":62560,\"wifi-exclamation\":58063,\"wifi-fair\":63147,\"wifi-slash\":63148,\"wifi-weak\":63146,\"wifi\":61931,\"wind-turbine\":63643,\"wind-warning\":63350,\"wind\":63278,\"window-flip\":62479,\"window-frame-open\":57424,\"window-frame\":57423,\"window-maximize\":62160,\"window-minimize\":62161,\"window-restore\":62162,\"window\":62478,\"windsock\":63351,\"wine-bottle\":63279,\"wine-glass-crack\":62651,\"wine-glass-empty\":62926,\"wine-glass\":62691,\"won-sign\":61785,\"worm\":58777,\"wreath-laurel\":58834,\"wreath\":63458,\"wrench-simple\":58065,\"wrench\":61613,\"x-ray\":62615,\"x\":88,\"xmark-large\":58779,\"xmark-to-slot\":63345,\"xmark\":61453,\"xmarks-lines\":58778,\"y\":89,\"yen-sign\":61783,\"yin-yang\":63149,\"z\":90}"
  },
  {
    "path": "packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_sharp.json",
    "content": "{\"0\":48,\"1\":49,\"2\":50,\"3\":51,\"4\":52,\"5\":53,\"6\":54,\"7\":55,\"8\":56,\"9\":57,\"00\":58471,\"360-degrees\":58076,\"a\":65,\"abacus\":63040,\"accent-grave\":96,\"acorn\":63150,\"address-book\":62137,\"address-card\":62139,\"air-conditioner\":63732,\"airplay\":57481,\"alarm-clock\":62286,\"alarm-exclamation\":63555,\"alarm-plus\":63556,\"alarm-snooze\":63557,\"album-circle-plus\":58508,\"album-circle-user\":58509,\"album-collection-circle-plus\":58510,\"album-collection-circle-user\":58511,\"album-collection\":63648,\"album\":63647,\"alicorn\":63152,\"alien-8bit\":63734,\"alien\":63733,\"align-center\":61495,\"align-justify\":61497,\"align-left\":61494,\"align-right\":61496,\"align-slash\":63558,\"alt\":57482,\"amp-guitar\":63649,\"ampersand\":38,\"anchor-circle-check\":58538,\"anchor-circle-exclamation\":58539,\"anchor-circle-xmark\":58540,\"anchor-lock\":58541,\"anchor\":61757,\"angel\":63353,\"angle-90\":57485,\"angle-down\":61703,\"angle-left\":61700,\"angle-right\":61701,\"angle-up\":61702,\"angle\":57484,\"angles-down\":61699,\"angles-left\":61696,\"angles-right\":61697,\"angles-up-down\":58893,\"angles-up\":61698,\"ankh\":63044,\"ant\":59008,\"apartment\":58472,\"aperture\":58079,\"apostrophe\":39,\"apple-core\":57487,\"apple-whole\":62929,\"archway\":62807,\"arrow-down-1-9\":61794,\"arrow-down-9-1\":63622,\"arrow-down-a-z\":61789,\"arrow-down-arrow-up\":63619,\"arrow-down-big-small\":63628,\"arrow-down-from-arc\":58900,\"arrow-down-from-bracket\":58983,\"arrow-down-from-dotted-line\":57488,\"arrow-down-from-line\":62277,\"arrow-down-left-and-arrow-up-right-to-center\":57490,\"arrow-down-left\":57489,\"arrow-down-long\":61813,\"arrow-down-right\":57491,\"arrow-down-short-wide\":63620,\"arrow-down-small-big\":63629,\"arrow-down-square-triangle\":63625,\"arrow-down-to-arc\":58542,\"arrow-down-to-bracket\":57492,\"arrow-down-to-dotted-line\":57493,\"arrow-down-to-line\":62269,\"arrow-down-to-square\":57494,\"arrow-down-triangle-square\":63624,\"arrow-down-up-across-line\":58543,\"arrow-down-up-lock\":58544,\"arrow-down-wide-short\":61792,\"arrow-down-z-a\":63617,\"arrow-down\":61539,\"arrow-left-from-arc\":58901,\"arrow-left-from-bracket\":58984,\"arrow-left-from-line\":62276,\"arrow-left-long-to-line\":58324,\"arrow-left-long\":61815,\"arrow-left-to-arc\":58902,\"arrow-left-to-bracket\":58985,\"arrow-left-to-line\":62270,\"arrow-left\":61536,\"arrow-pointer\":62021,\"arrow-progress\":58847,\"arrow-right-arrow-left\":61676,\"arrow-right-from-arc\":58545,\"arrow-right-from-bracket\":61579,\"arrow-right-from-line\":62275,\"arrow-right-long-to-line\":58325,\"arrow-right-long\":61816,\"arrow-right-to-arc\":58546,\"arrow-right-to-bracket\":61584,\"arrow-right-to-city\":58547,\"arrow-right-to-line\":62272,\"arrow-right\":61537,\"arrow-rotate-left\":61666,\"arrow-rotate-right\":61470,\"arrow-trend-down\":57495,\"arrow-trend-up\":57496,\"arrow-turn-down-left\":58081,\"arrow-turn-down-right\":58326,\"arrow-turn-down\":61769,\"arrow-turn-left-down\":58931,\"arrow-turn-left-up\":58932,\"arrow-turn-left\":58930,\"arrow-turn-right\":58933,\"arrow-turn-up\":61768,\"arrow-up-1-9\":61795,\"arrow-up-9-1\":63623,\"arrow-up-a-z\":61790,\"arrow-up-arrow-down\":57497,\"arrow-up-big-small\":63630,\"arrow-up-from-arc\":58548,\"arrow-up-from-bracket\":57498,\"arrow-up-from-dotted-line\":57499,\"arrow-up-from-ground-water\":58549,\"arrow-up-from-line\":62274,\"arrow-up-from-square\":57500,\"arrow-up-from-water-pump\":58550,\"arrow-up-left-from-circle\":57502,\"arrow-up-left\":57501,\"arrow-up-long\":61814,\"arrow-up-right-and-arrow-down-left-from-center\":57504,\"arrow-up-right-dots\":58551,\"arrow-up-right-from-square\":61582,\"arrow-up-right\":57503,\"arrow-up-short-wide\":63621,\"arrow-up-small-big\":63631,\"arrow-up-square-triangle\":63627,\"arrow-up-to-arc\":58903,\"arrow-up-to-bracket\":58986,\"arrow-up-to-dotted-line\":57505,\"arrow-up-to-line\":62273,\"arrow-up-triangle-square\":63626,\"arrow-up-wide-short\":61793,\"arrow-up-z-a\":63618,\"arrow-up\":61538,\"arrows-cross\":57506,\"arrows-down-to-line\":58552,\"arrows-down-to-people\":58553,\"arrows-from-dotted-line\":57507,\"arrows-from-line\":57508,\"arrows-left-right-to-line\":58554,\"arrows-left-right\":61566,\"arrows-maximize\":62237,\"arrows-minimize\":57509,\"arrows-repeat-1\":62310,\"arrows-repeat\":62308,\"arrows-retweet\":62305,\"arrows-rotate-reverse\":58928,\"arrows-rotate\":61473,\"arrows-spin\":58555,\"arrows-split-up-and-left\":58556,\"arrows-to-circle\":58557,\"arrows-to-dot\":58558,\"arrows-to-dotted-line\":57510,\"arrows-to-eye\":58559,\"arrows-to-line\":57511,\"arrows-turn-right\":58560,\"arrows-turn-to-dots\":58561,\"arrows-up-down-left-right\":61511,\"arrows-up-down\":61565,\"arrows-up-to-line\":58562,\"asterisk\":42,\"at\":64,\"atom-simple\":62931,\"atom\":62930,\"audio-description-slash\":57512,\"audio-description\":62110,\"austral-sign\":57513,\"avocado\":57514,\"award-simple\":57515,\"award\":62809,\"axe-battle\":63155,\"axe\":63154,\"b\":66,\"baby-carriage\":63357,\"baby\":63356,\"backpack\":62932,\"backward-fast\":61513,\"backward-step\":61512,\"backward\":61514,\"bacon\":63461,\"bacteria\":57433,\"bacterium\":57434,\"badge-check\":62262,\"badge-dollar\":63045,\"badge-percent\":63046,\"badge-sheriff\":63650,\"badge\":62261,\"badger-honey\":63156,\"badminton\":58170,\"bag-seedling\":58866,\"bag-shopping-minus\":58960,\"bag-shopping-plus\":58961,\"bag-shopping\":62096,\"bagel\":58327,\"bags-shopping\":63559,\"baguette\":58328,\"bahai\":63078,\"baht-sign\":57516,\"ball-pile\":63358,\"balloon\":58083,\"balloons\":58084,\"ballot-check\":63283,\"ballot\":63282,\"ban-bug\":63481,\"ban-parking\":62998,\"ban-smoking\":62797,\"ban\":61534,\"banana\":58085,\"bandage\":62562,\"bangladeshi-taka-sign\":58086,\"banjo\":63651,\"barcode-read\":62564,\"barcode-scan\":62565,\"barcode\":61482,\"bars-filter\":57517,\"bars-progress\":63528,\"bars-sort\":57518,\"bars-staggered\":62800,\"bars\":61641,\"baseball-bat-ball\":62514,\"baseball\":62515,\"basket-shopping-minus\":58962,\"basket-shopping-plus\":58963,\"basket-shopping-simple\":57519,\"basket-shopping\":62097,\"basketball-hoop\":62517,\"basketball\":62516,\"bat\":63157,\"bath\":62157,\"battery-bolt\":62326,\"battery-empty\":62020,\"battery-exclamation\":57520,\"battery-full\":62016,\"battery-half\":62018,\"battery-low\":57521,\"battery-quarter\":62019,\"battery-slash\":62327,\"battery-three-quarters\":62017,\"bed-bunk\":63736,\"bed-empty\":63737,\"bed-front\":63735,\"bed-pulse\":62599,\"bed\":62006,\"bee\":57522,\"beer-mug-empty\":61692,\"beer-mug\":57523,\"bell-concierge\":62818,\"bell-exclamation\":63560,\"bell-on\":63738,\"bell-plus\":63561,\"bell-ring\":58924,\"bell-school-slash\":62934,\"bell-school\":62933,\"bell-slash\":61942,\"bell\":61683,\"bells\":63359,\"bench-tree\":58087,\"bezier-curve\":62811,\"bicycle\":61958,\"billboard\":58829,\"bin-bottles-recycle\":58870,\"bin-bottles\":58869,\"bin-recycle\":58871,\"binary-circle-check\":58172,\"binary-lock\":58173,\"binary-slash\":58174,\"binary\":58171,\"binoculars\":61925,\"biohazard\":63360,\"bird\":58473,\"bitcoin-sign\":57524,\"blanket-fire\":58330,\"blanket\":62616,\"blender-phone\":63158,\"blender\":62743,\"blinds-open\":63740,\"blinds-raised\":63741,\"blinds\":63739,\"block-brick-fire\":58332,\"block-brick\":58331,\"block-question\":58333,\"block-quote\":57525,\"block\":58474,\"blog\":63361,\"blueberries\":58088,\"bluetooth\":62099,\"bold\":61490,\"bolt-auto\":57526,\"bolt-lightning\":57527,\"bolt-slash\":57528,\"bolt\":61671,\"bomb\":61922,\"bone-break\":62936,\"bone\":62935,\"bong\":62812,\"book-arrow-right\":57529,\"book-arrow-up\":57530,\"book-atlas\":62808,\"book-bible\":63047,\"book-blank\":62937,\"book-bookmark\":57531,\"book-circle-arrow-right\":57532,\"book-circle-arrow-up\":57533,\"book-copy\":57534,\"book-font\":57535,\"book-heart\":62617,\"book-journal-whills\":63082,\"book-medical\":63462,\"book-open-cover\":57536,\"book-open-reader\":62938,\"book-open\":62744,\"book-quran\":63111,\"book-section\":57537,\"book-skull\":63159,\"book-sparkles\":63160,\"book-tanakh\":63527,\"book-user\":63463,\"book\":61485,\"bookmark-slash\":57538,\"bookmark\":61486,\"books-medical\":63464,\"books\":62939,\"boombox\":63653,\"boot-heeled\":58175,\"boot\":63362,\"booth-curtain\":63284,\"border-all\":63564,\"border-bottom-right\":63572,\"border-bottom\":63565,\"border-center-h\":63644,\"border-center-v\":63645,\"border-inner\":63566,\"border-left\":63567,\"border-none\":63568,\"border-outer\":63569,\"border-right\":63570,\"border-top-left\":63571,\"border-top\":63573,\"bore-hole\":58563,\"bottle-baby\":58995,\"bottle-droplet\":58564,\"bottle-water\":58565,\"bow-arrow\":63161,\"bowl-chopsticks-noodles\":58090,\"bowl-chopsticks\":58089,\"bowl-food\":58566,\"bowl-hot\":63523,\"bowl-rice\":58091,\"bowl-scoop\":58334,\"bowl-scoops\":58335,\"bowl-soft-serve\":58475,\"bowl-spoon\":58336,\"bowling-ball-pin\":57539,\"bowling-ball\":62518,\"bowling-pins\":62519,\"box-archive\":61831,\"box-ballot\":63285,\"box-check\":62567,\"box-circle-check\":57540,\"box-dollar\":62624,\"box-heart\":62621,\"box-open-full\":62620,\"box-open\":62622,\"box-taped\":62618,\"box-tissue\":57435,\"box\":62566,\"boxes-packing\":58567,\"boxes-stacked\":62568,\"boxing-glove\":62520,\"bracket-curly-right\":125,\"bracket-curly\":123,\"bracket-round-right\":41,\"bracket-round\":40,\"bracket-square-right\":93,\"bracket-square\":91,\"brackets-curly\":63466,\"brackets-round\":57541,\"brackets-square\":63465,\"braille\":62113,\"brain-arrow-curved-right\":63095,\"brain-circuit\":57542,\"brain\":62940,\"brake-warning\":57543,\"brazilian-real-sign\":58476,\"bread-loaf\":63467,\"bread-slice-butter\":58337,\"bread-slice\":63468,\"bridge-circle-check\":58569,\"bridge-circle-exclamation\":58570,\"bridge-circle-xmark\":58571,\"bridge-lock\":58572,\"bridge-suspension\":58573,\"bridge-water\":58574,\"bridge\":58568,\"briefcase-arrow-right\":58098,\"briefcase-blank\":57544,\"briefcase-medical\":62569,\"briefcase\":61617,\"brightness-low\":57546,\"brightness\":57545,\"bring-forward\":63574,\"bring-front\":63575,\"broccoli\":58338,\"broom-ball\":62552,\"broom-wide\":58833,\"broom\":62746,\"browser\":62334,\"browsers\":57547,\"brush\":62813,\"bucket\":58575,\"bug-slash\":58512,\"bug\":61832,\"bugs\":58576,\"building-circle-arrow-right\":58577,\"building-circle-check\":58578,\"building-circle-exclamation\":58579,\"building-circle-xmark\":58580,\"building-columns\":61852,\"building-flag\":58581,\"building-lock\":58582,\"building-magnifying-glass\":58908,\"building-memo\":58910,\"building-ngo\":58583,\"building-shield\":58584,\"building-un\":58585,\"building-user\":58586,\"building-wheat\":58587,\"building\":61869,\"buildings\":57548,\"bulldozer\":58965,\"bullhorn\":61601,\"bullseye-arrow\":63048,\"bullseye-pointer\":63049,\"bullseye\":61760,\"buoy-mooring\":58806,\"buoy\":58805,\"burger-cheese\":63473,\"burger-fries\":57549,\"burger-glass\":57550,\"burger-lettuce\":58339,\"burger-soda\":63576,\"burger\":63493,\"burrito\":63469,\"burst\":58588,\"bus-school\":62941,\"bus-simple\":62814,\"bus\":61959,\"business-time\":63050,\"butter\":58340,\"c\":67,\"cabin\":58477,\"cabinet-filing\":63051,\"cable-car\":63450,\"cactus\":63655,\"caduceus\":59009,\"cake-candles\":61949,\"cake-slice\":58341,\"calculator-simple\":63052,\"calculator\":61932,\"calendar-arrow-down\":57552,\"calendar-arrow-up\":57553,\"calendar-check\":62068,\"calendar-circle-exclamation\":58478,\"calendar-circle-minus\":58479,\"calendar-circle-plus\":58480,\"calendar-circle-user\":58481,\"calendar-clock\":57554,\"calendar-day\":63363,\"calendar-days\":61555,\"calendar-exclamation\":62260,\"calendar-heart\":57555,\"calendar-image\":57556,\"calendar-lines-pen\":58482,\"calendar-lines\":57557,\"calendar-minus\":62066,\"calendar-pen\":62259,\"calendar-plus\":62065,\"calendar-range\":57558,\"calendar-star\":63286,\"calendar-users\":58850,\"calendar-week\":63364,\"calendar-xmark\":62067,\"calendar\":61747,\"calendars\":57559,\"camcorder\":63656,\"camera-cctv\":63660,\"camera-movie\":63657,\"camera-polaroid\":63658,\"camera-retro\":61571,\"camera-rotate\":57560,\"camera-security\":63742,\"camera-slash\":57561,\"camera-viewfinder\":57562,\"camera-web-slash\":63539,\"camera-web\":63538,\"camera\":61488,\"campfire\":63162,\"campground\":63163,\"can-food\":58342,\"candle-holder\":63164,\"candy-bar\":58344,\"candy-cane\":63366,\"candy-corn\":63165,\"candy\":58343,\"cannabis\":62815,\"cannon\":58946,\"capsules\":62571,\"car-battery\":62943,\"car-bolt\":58177,\"car-building\":63577,\"car-bump\":62944,\"car-burst\":62945,\"car-bus\":63578,\"car-circle-bolt\":58178,\"car-garage\":62946,\"car-mirrors\":58179,\"car-on\":58589,\"car-rear\":62942,\"car-side-bolt\":58180,\"car-side\":62948,\"car-tilt\":62949,\"car-tunnel\":58590,\"car-wash\":62950,\"car-wrench\":62947,\"car\":61881,\"caravan-simple\":57344,\"caravan\":63743,\"card-club\":58345,\"card-diamond\":58346,\"card-heart\":58347,\"card-spade\":58348,\"cards-blank\":58591,\"cards\":58349,\"caret-down\":61655,\"caret-left\":61657,\"caret-right\":61658,\"caret-up\":61656,\"carpool\":59036,\"carrot\":63367,\"cars\":63579,\"cart-arrow-down\":61976,\"cart-arrow-up\":58350,\"cart-circle-arrow-down\":58351,\"cart-circle-arrow-up\":58352,\"cart-circle-check\":58353,\"cart-circle-exclamation\":58354,\"cart-circle-plus\":58355,\"cart-circle-xmark\":58356,\"cart-flatbed-boxes\":62581,\"cart-flatbed-empty\":62582,\"cart-flatbed-suitcase\":62877,\"cart-flatbed\":62580,\"cart-minus\":57563,\"cart-plus\":61975,\"cart-shopping-fast\":57564,\"cart-shopping\":61562,\"cart-xmark\":57565,\"cash-register\":63368,\"cassette-betamax\":63652,\"cassette-tape\":63659,\"cassette-vhs\":63724,\"castle\":57566,\"cat-space\":57345,\"cat\":63166,\"cauldron\":63167,\"cedi-sign\":57567,\"cent-sign\":58357,\"certificate\":61603,\"chair-office\":63169,\"chair\":63168,\"chalkboard-user\":62748,\"chalkboard\":62747,\"champagne-glass\":63390,\"champagne-glasses\":63391,\"charging-station\":62951,\"chart-area\":61950,\"chart-bar\":61568,\"chart-bullet\":57569,\"chart-candlestick\":57570,\"chart-column\":57571,\"chart-diagram\":59029,\"chart-fft\":59038,\"chart-gantt\":57572,\"chart-kanban\":58959,\"chart-line-down\":63053,\"chart-line-up-down\":58839,\"chart-line-up\":57573,\"chart-line\":61953,\"chart-mixed-up-circle-currency\":58840,\"chart-mixed-up-circle-dollar\":58841,\"chart-mixed\":63043,\"chart-network\":63370,\"chart-pie-simple-circle-currency\":58884,\"chart-pie-simple-circle-dollar\":58885,\"chart-pie-simple\":63054,\"chart-pie\":61952,\"chart-pyramid\":57574,\"chart-radar\":57575,\"chart-scatter-3d\":57576,\"chart-scatter-bubble\":57577,\"chart-scatter\":63470,\"chart-simple-horizontal\":58484,\"chart-simple\":58483,\"chart-sine\":59037,\"chart-tree-map\":57578,\"chart-user\":63139,\"chart-waterfall\":57579,\"check-double\":62816,\"check-to-slot\":63346,\"check\":61452,\"cheese-swiss\":63472,\"cheese\":63471,\"cherries\":57580,\"chess-bishop-piece\":62523,\"chess-bishop\":62522,\"chess-board\":62524,\"chess-clock-flip\":62526,\"chess-clock\":62525,\"chess-king-piece\":62528,\"chess-king\":62527,\"chess-knight-piece\":62530,\"chess-knight\":62529,\"chess-pawn-piece\":62532,\"chess-pawn\":62531,\"chess-queen-piece\":62534,\"chess-queen\":62533,\"chess-rook-piece\":62536,\"chess-rook\":62535,\"chess\":62521,\"chestnut\":58358,\"chevron-down\":61560,\"chevron-left\":61523,\"chevron-right\":61524,\"chevron-up\":61559,\"chevrons-down\":62242,\"chevrons-left\":62243,\"chevrons-right\":62244,\"chevrons-up\":62245,\"chf-sign\":58882,\"child-combatant\":58592,\"child-dress\":58780,\"child-reaching\":58781,\"child\":61870,\"children\":58593,\"chimney\":63371,\"chopsticks\":58359,\"church\":62749,\"circle-0\":57581,\"circle-1\":57582,\"circle-2\":57583,\"circle-3\":57584,\"circle-4\":57585,\"circle-5\":57586,\"circle-6\":57587,\"circle-7\":57588,\"circle-8\":57589,\"circle-9\":57590,\"circle-a\":57591,\"circle-ampersand\":57592,\"circle-arrow-down-left\":57593,\"circle-arrow-down-right\":57594,\"circle-arrow-down\":61611,\"circle-arrow-left\":61608,\"circle-arrow-right\":61609,\"circle-arrow-up-left\":57595,\"circle-arrow-up-right\":57596,\"circle-arrow-up\":61610,\"circle-b\":57597,\"circle-bolt\":57598,\"circle-book-open\":57599,\"circle-bookmark\":57600,\"circle-c\":57601,\"circle-calendar\":57602,\"circle-camera\":57603,\"circle-caret-down\":62253,\"circle-caret-left\":62254,\"circle-caret-right\":62256,\"circle-caret-up\":62257,\"circle-check\":61528,\"circle-chevron-down\":61754,\"circle-chevron-left\":61751,\"circle-chevron-right\":61752,\"circle-chevron-up\":61753,\"circle-d\":57604,\"circle-dashed\":57605,\"circle-divide\":57606,\"circle-dollar-to-slot\":62649,\"circle-dollar\":62184,\"circle-dot\":61842,\"circle-down-left\":57607,\"circle-down-right\":57608,\"circle-down\":62296,\"circle-e\":57609,\"circle-ellipsis-vertical\":57611,\"circle-ellipsis\":57610,\"circle-envelope\":57612,\"circle-euro\":58830,\"circle-exclamation-check\":57613,\"circle-exclamation\":61546,\"circle-f\":57614,\"circle-g\":57615,\"circle-gf\":59007,\"circle-h\":62590,\"circle-half-stroke\":61506,\"circle-half\":57616,\"circle-heart\":62663,\"circle-i\":57617,\"circle-info\":61530,\"circle-j\":57618,\"circle-k\":57619,\"circle-l\":57620,\"circle-left\":62297,\"circle-location-arrow\":62978,\"circle-m\":57621,\"circle-microphone-lines\":57623,\"circle-microphone\":57622,\"circle-minus\":61526,\"circle-n\":57624,\"circle-nodes\":58594,\"circle-notch\":61902,\"circle-o\":57625,\"circle-p\":57626,\"circle-parking\":62997,\"circle-pause\":62091,\"circle-phone-flip\":57628,\"circle-phone-hangup\":57629,\"circle-phone\":57627,\"circle-play\":61764,\"circle-plus\":61525,\"circle-q\":57630,\"circle-quarter-stroke\":58835,\"circle-quarter\":57631,\"circle-quarters\":58360,\"circle-question\":61529,\"circle-r\":57632,\"circle-radiation\":63418,\"circle-right\":62298,\"circle-s\":57633,\"circle-small\":57634,\"circle-sort-down\":57393,\"circle-sort-up\":57394,\"circle-sort\":57392,\"circle-star\":57635,\"circle-sterling\":58831,\"circle-stop\":62093,\"circle-t\":57636,\"circle-three-quarters-stroke\":58836,\"circle-three-quarters\":57637,\"circle-trash\":57638,\"circle-u\":57639,\"circle-up-left\":57640,\"circle-up-right\":57641,\"circle-up\":62299,\"circle-user\":62141,\"circle-v\":57642,\"circle-video\":57643,\"circle-w\":57644,\"circle-waveform-lines\":57645,\"circle-wifi-circle-wifi\":59006,\"circle-wifi\":59005,\"circle-x\":57646,\"circle-xmark\":61527,\"circle-y\":57647,\"circle-yen\":58832,\"circle-z\":57648,\"circle\":61713,\"circles-overlap-3\":59041,\"circles-overlap\":58880,\"citrus-slice\":58101,\"citrus\":58100,\"city\":63055,\"clapperboard-play\":57650,\"clapperboard\":57649,\"clarinet\":63661,\"claw-marks\":63170,\"clipboard-check\":62572,\"clipboard-list-check\":63287,\"clipboard-list\":62573,\"clipboard-medical\":57651,\"clipboard-prescription\":62952,\"clipboard-question\":58595,\"clipboard-user\":63475,\"clipboard\":62248,\"clock-desk\":57652,\"clock-eight-thirty\":58182,\"clock-eight\":58181,\"clock-eleven-thirty\":58184,\"clock-eleven\":58183,\"clock-five-thirty\":58186,\"clock-five\":58185,\"clock-four-thirty\":58187,\"clock-nine-thirty\":58189,\"clock-nine\":58188,\"clock-one-thirty\":58191,\"clock-one\":58190,\"clock-rotate-left\":61914,\"clock-seven-thirty\":58193,\"clock-seven\":58192,\"clock-six-thirty\":58195,\"clock-six\":58194,\"clock-ten-thirty\":58197,\"clock-ten\":58196,\"clock-three-thirty\":58199,\"clock-three\":58198,\"clock-twelve-thirty\":58201,\"clock-twelve\":58200,\"clock-two-thirty\":58203,\"clock-two\":58202,\"clock\":61463,\"clone\":62029,\"closed-captioning-slash\":57653,\"closed-captioning\":61962,\"clothes-hanger\":57654,\"cloud-arrow-down\":61677,\"cloud-arrow-up\":61678,\"cloud-binary\":58881,\"cloud-bolt-moon\":63341,\"cloud-bolt-sun\":63342,\"cloud-bolt\":63340,\"cloud-check\":58204,\"cloud-drizzle\":63288,\"cloud-exclamation\":58513,\"cloud-fog\":63310,\"cloud-hail-mixed\":63290,\"cloud-hail\":63289,\"cloud-meatball\":63291,\"cloud-minus\":58205,\"cloud-moon-rain\":63292,\"cloud-moon\":63171,\"cloud-music\":63662,\"cloud-plus\":58206,\"cloud-question\":58514,\"cloud-rain\":63293,\"cloud-rainbow\":63294,\"cloud-showers-heavy\":63296,\"cloud-showers-water\":58596,\"cloud-showers\":63295,\"cloud-slash\":57655,\"cloud-sleet\":63297,\"cloud-snow\":63298,\"cloud-sun-rain\":63299,\"cloud-sun\":63172,\"cloud-word\":57656,\"cloud-xmark\":58207,\"cloud\":61634,\"clouds-moon\":63301,\"clouds-sun\":63302,\"clouds\":63300,\"clover\":57657,\"club\":62247,\"coconut\":58102,\"code-branch\":61734,\"code-commit\":62342,\"code-compare\":57658,\"code-fork\":57659,\"code-merge\":62343,\"code-pull-request-closed\":58361,\"code-pull-request-draft\":58362,\"code-pull-request\":57660,\"code-simple\":57661,\"code\":61729,\"coffee-bean\":57662,\"coffee-beans\":57663,\"coffee-pot\":57346,\"coffin-cross\":57425,\"coffin\":63174,\"coin-blank\":58363,\"coin-front\":58364,\"coin-vertical\":58365,\"coin\":63580,\"coins\":62750,\"colon-sign\":57664,\"colon\":58,\"columns-3\":58209,\"comet\":57347,\"comma\":44,\"command\":57666,\"comment-arrow-down\":57667,\"comment-arrow-up-right\":57669,\"comment-arrow-up\":57668,\"comment-captions\":57670,\"comment-check\":62636,\"comment-code\":57671,\"comment-dollar\":63057,\"comment-dots\":62637,\"comment-exclamation\":62639,\"comment-heart\":58824,\"comment-image\":57672,\"comment-lines\":62640,\"comment-medical\":63477,\"comment-middle-top\":57674,\"comment-middle\":57673,\"comment-minus\":62641,\"comment-music\":63664,\"comment-nodes\":59030,\"comment-pen\":62638,\"comment-plus\":62642,\"comment-question\":57675,\"comment-quote\":57676,\"comment-slash\":62643,\"comment-smile\":62644,\"comment-sms\":63437,\"comment-text\":57677,\"comment-xmark\":62645,\"comment\":61557,\"comments-dollar\":63059,\"comments-question-check\":57679,\"comments-question\":57678,\"comments\":61574,\"compact-disc\":62751,\"compass-drafting\":62824,\"compass-slash\":62953,\"compass\":61774,\"compress-wide\":62246,\"compress\":61542,\"computer-classic\":63665,\"computer-mouse-scrollwheel\":63693,\"computer-mouse\":63692,\"computer-speaker\":63666,\"computer\":58597,\"container-storage\":62647,\"conveyor-belt-arm\":58872,\"conveyor-belt-boxes\":62575,\"conveyor-belt-empty\":57680,\"conveyor-belt\":62574,\"cookie-bite\":62820,\"cookie\":62819,\"copy\":61637,\"copyright\":61945,\"corn\":63175,\"corner\":58366,\"couch\":62648,\"court-sport\":58947,\"cow\":63176,\"cowbell-circle-plus\":63668,\"cowbell\":63667,\"crab\":58367,\"crate-apple\":63153,\"crate-empty\":57681,\"credit-card-blank\":62345,\"credit-card-front\":62346,\"credit-card\":61597,\"cricket-bat-ball\":62537,\"croissant\":63478,\"crop-simple\":62821,\"crop\":61733,\"cross\":63060,\"crosshairs-simple\":58783,\"crosshairs\":61531,\"crow\":62752,\"crown\":62753,\"crutch\":63479,\"crutches\":63480,\"cruzeiro-sign\":57682,\"crystal-ball\":58210,\"cube\":61874,\"cubes-stacked\":58598,\"cubes\":61875,\"cucumber\":58369,\"cup-straw-swoosh\":58212,\"cup-straw\":58211,\"cup-togo\":63173,\"cupcake\":58370,\"curling-stone\":62538,\"custard\":58371,\"d\":68,\"dagger\":63179,\"dash\":58372,\"database\":61888,\"deer-rudolph\":63375,\"deer\":63374,\"delete-left\":62810,\"delete-right\":57684,\"democrat\":63303,\"desktop-arrow-down\":57685,\"desktop\":62352,\"dharmachakra\":63061,\"diagram-cells\":58485,\"diagram-lean-canvas\":57686,\"diagram-nested\":57687,\"diagram-next\":58486,\"diagram-predecessor\":58487,\"diagram-previous\":58488,\"diagram-project\":62786,\"diagram-sankey\":57688,\"diagram-subtask\":58489,\"diagram-successor\":58490,\"diagram-venn\":57690,\"dial-high\":57692,\"dial-low\":57693,\"dial-max\":57694,\"dial-med-low\":57696,\"dial-med\":57695,\"dial-min\":57697,\"dial-off\":57698,\"dial\":57691,\"diamond-exclamation\":58373,\"diamond-half-stroke\":58808,\"diamond-half\":58807,\"diamond-turn-right\":62955,\"diamond\":61977,\"diamonds-4\":59019,\"dice-d10\":63181,\"dice-d12\":63182,\"dice-d20\":63183,\"dice-d4\":63184,\"dice-d6\":63185,\"dice-d8\":63186,\"dice-five\":62755,\"dice-four\":62756,\"dice-one\":62757,\"dice-six\":62758,\"dice-three\":62759,\"dice-two\":62760,\"dice\":62754,\"dinosaur\":58878,\"diploma\":62954,\"disc-drive\":63669,\"disease\":63482,\"display-arrow-down\":57700,\"display-chart-up-circle-currency\":58853,\"display-chart-up-circle-dollar\":58854,\"display-chart-up\":58851,\"display-code\":57701,\"display-medical\":57702,\"display-slash\":58106,\"display\":57699,\"distribute-spacing-horizontal\":58213,\"distribute-spacing-vertical\":58214,\"ditto\":34,\"divide\":62761,\"dna\":62577,\"do-not-enter\":62956,\"dog-leashed\":63188,\"dog\":63187,\"dollar-sign\":36,\"dolly-empty\":62579,\"dolly\":62578,\"dolphin\":57704,\"dong-sign\":57705,\"donut\":58374,\"door-closed\":62762,\"door-open\":62763,\"dove\":62650,\"down-from-bracket\":58987,\"down-from-dotted-line\":58375,\"down-from-line\":62281,\"down-left-and-up-right-to-center\":62498,\"down-left\":57706,\"down-long\":62217,\"down-right\":57707,\"down-to-bracket\":58599,\"down-to-dotted-line\":58376,\"down-to-line\":62282,\"down\":62292,\"download\":61465,\"dragon\":63189,\"draw-circle\":62957,\"draw-polygon\":62958,\"draw-square\":62959,\"dreidel\":63378,\"drone-front\":63584,\"drone\":63583,\"droplet-degree\":63304,\"droplet-percent\":63312,\"droplet-slash\":62919,\"droplet\":61507,\"drum-steelpan\":62826,\"drum\":62825,\"drumstick-bite\":63191,\"drumstick\":63190,\"dryer-heat\":63586,\"dryer\":63585,\"duck\":63192,\"dumbbell\":62539,\"dumpster-fire\":63380,\"dumpster\":63379,\"dungeon\":63193,\"e\":69,\"ear-deaf\":62116,\"ear-listen\":62114,\"ear-muffs\":63381,\"ear\":62960,\"earth-africa\":62844,\"earth-americas\":62845,\"earth-asia\":62846,\"earth-europe\":63394,\"earth-oceania\":58491,\"eclipse\":63305,\"egg-fried\":63484,\"egg\":63483,\"eggplant\":57708,\"eject\":61522,\"elephant\":63194,\"elevator\":57709,\"ellipsis-stroke-vertical\":62364,\"ellipsis-stroke\":62363,\"ellipsis-vertical\":61762,\"ellipsis\":61761,\"empty-set\":63062,\"engine-warning\":62962,\"engine\":57710,\"envelope-circle-check\":58600,\"envelope-dot\":57711,\"envelope-open-dollar\":63063,\"envelope-open-text\":63064,\"envelope-open\":62134,\"envelope\":61664,\"envelopes-bulk\":63092,\"envelopes\":57712,\"equals\":61,\"eraser\":61741,\"escalator\":57713,\"ethernet\":63382,\"euro-sign\":61779,\"excavator\":58966,\"exclamation\":33,\"expand-wide\":62240,\"expand\":61541,\"explosion\":58601,\"eye-dropper-full\":57714,\"eye-dropper-half\":57715,\"eye-dropper\":61947,\"eye-evil\":63195,\"eye-low-vision\":62120,\"eye-slash\":61552,\"eye\":61550,\"eyes\":58215,\"f\":70,\"face-angry-horns\":58216,\"face-angry\":62806,\"face-anguished\":58217,\"face-anxious-sweat\":58218,\"face-astonished\":58219,\"face-awesome\":58377,\"face-beam-hand-over-mouth\":58492,\"face-clouds\":58493,\"face-confounded\":58220,\"face-confused\":58221,\"face-cowboy-hat\":58222,\"face-diagonal-mouth\":58494,\"face-disappointed\":58223,\"face-disguise\":58224,\"face-dizzy\":62823,\"face-dotted\":58495,\"face-downcast-sweat\":58225,\"face-drooling\":58226,\"face-exhaling\":58496,\"face-explode\":58110,\"face-expressionless\":58227,\"face-eyes-xmarks\":58228,\"face-fearful\":58229,\"face-flushed\":62841,\"face-frown-open\":62842,\"face-frown-slight\":58230,\"face-frown\":61721,\"face-glasses\":58231,\"face-grimace\":62847,\"face-grin-beam-sweat\":62851,\"face-grin-beam\":62850,\"face-grin-hearts\":62852,\"face-grin-squint-tears\":62854,\"face-grin-squint\":62853,\"face-grin-stars\":62855,\"face-grin-tears\":62856,\"face-grin-tongue-squint\":62858,\"face-grin-tongue-wink\":62859,\"face-grin-tongue\":62857,\"face-grin-wide\":62849,\"face-grin-wink\":62860,\"face-grin\":62848,\"face-hand-over-mouth\":58232,\"face-hand-peeking\":58497,\"face-hand-yawn\":58233,\"face-head-bandage\":58234,\"face-holding-back-tears\":58498,\"face-hushed\":58235,\"face-icicles\":58236,\"face-kiss-beam\":62871,\"face-kiss-closed-eyes\":58237,\"face-kiss-wink-heart\":62872,\"face-kiss\":62870,\"face-laugh-beam\":62874,\"face-laugh-squint\":62875,\"face-laugh-wink\":62876,\"face-laugh\":62873,\"face-lying\":58238,\"face-mask\":58239,\"face-meh-blank\":62884,\"face-meh\":61722,\"face-melting\":58499,\"face-monocle\":58240,\"face-nauseated\":58241,\"face-nose-steam\":58242,\"face-party\":58243,\"face-pensive\":58244,\"face-persevering\":58245,\"face-pleading\":58246,\"face-pouting\":58247,\"face-raised-eyebrow\":58248,\"face-relieved\":58249,\"face-rolling-eyes\":62885,\"face-sad-cry\":62899,\"face-sad-sweat\":58250,\"face-sad-tear\":62900,\"face-saluting\":58500,\"face-scream\":58251,\"face-shush\":58252,\"face-sleeping\":58253,\"face-sleepy\":58254,\"face-smile-beam\":62904,\"face-smile-halo\":58255,\"face-smile-hearts\":58256,\"face-smile-horns\":58257,\"face-smile-plus\":62905,\"face-smile-relaxed\":58258,\"face-smile-tear\":58259,\"face-smile-tongue\":58260,\"face-smile-upside-down\":58261,\"face-smile-wink\":62682,\"face-smile\":61720,\"face-smiling-hands\":58262,\"face-smirking\":58263,\"face-spiral-eyes\":58501,\"face-sunglasses\":58264,\"face-surprise\":62914,\"face-swear\":58265,\"face-thermometer\":58266,\"face-thinking\":58267,\"face-tired\":62920,\"face-tissue\":58268,\"face-tongue-money\":58269,\"face-tongue-sweat\":58270,\"face-unamused\":58271,\"face-viewfinder\":58111,\"face-vomit\":58272,\"face-weary\":58273,\"face-woozy\":58274,\"face-worried\":58275,\"face-zany\":58276,\"face-zipper\":58277,\"falafel\":58378,\"family-dress\":58113,\"family-pants\":58114,\"family\":58112,\"fan-table\":57348,\"fan\":63587,\"farm\":63588,\"faucet-drip\":57350,\"faucet\":57349,\"fax\":61868,\"feather-pointed\":62827,\"feather\":62765,\"fence\":58115,\"ferris-wheel\":57716,\"ferry\":58602,\"field-hockey-stick-ball\":62540,\"file-arrow-down\":62829,\"file-arrow-up\":62836,\"file-audio\":61895,\"file-binary\":57717,\"file-cad\":58994,\"file-certificate\":62963,\"file-chart-column\":63065,\"file-chart-pie\":63066,\"file-check\":62230,\"file-circle-check\":58784,\"file-circle-exclamation\":58603,\"file-circle-info\":58515,\"file-circle-minus\":58605,\"file-circle-plus\":58516,\"file-circle-question\":58607,\"file-circle-xmark\":58785,\"file-code\":61897,\"file-contract\":62828,\"file-csv\":63197,\"file-dashed-line\":63607,\"file-doc\":58861,\"file-eps\":58948,\"file-excel\":61891,\"file-exclamation\":62234,\"file-export\":62830,\"file-fragment\":59031,\"file-gif\":58949,\"file-half-dashed\":59032,\"file-heart\":57718,\"file-image\":61893,\"file-import\":62831,\"file-invoice-dollar\":62833,\"file-invoice\":62832,\"file-jpg\":58950,\"file-lines\":61788,\"file-lock\":58278,\"file-magnifying-glass\":63589,\"file-medical\":62583,\"file-minus\":62232,\"file-mov\":58951,\"file-mp3\":58952,\"file-mp4\":58953,\"file-music\":63670,\"file-pdf\":61889,\"file-pen\":62236,\"file-plus-minus\":57719,\"file-plus\":62233,\"file-png\":58982,\"file-powerpoint\":61892,\"file-ppt\":58954,\"file-prescription\":62834,\"file-shield\":58608,\"file-signature\":62835,\"file-slash\":58279,\"file-spreadsheet\":63067,\"file-svg\":58955,\"file-user\":63068,\"file-vector\":58956,\"file-video\":61896,\"file-waveform\":62584,\"file-word\":61890,\"file-xls\":58957,\"file-xmark\":62231,\"file-xml\":58964,\"file-zip\":58862,\"file-zipper\":61894,\"file\":61787,\"files-medical\":63485,\"files\":57720,\"fill-drip\":62838,\"fill\":62837,\"film-canister\":63671,\"film-simple\":62368,\"film-slash\":57721,\"film\":61448,\"films\":57722,\"filter-circle-dollar\":63074,\"filter-circle-xmark\":57723,\"filter-list\":57724,\"filter-slash\":57725,\"filter\":61616,\"filters\":57726,\"fingerprint\":62839,\"fire-burner\":58609,\"fire-extinguisher\":61748,\"fire-flame-curved\":63460,\"fire-flame-simple\":62570,\"fire-flame\":63199,\"fire-hydrant\":57727,\"fire-smoke\":63307,\"fire\":61549,\"fireplace\":63386,\"fish-bones\":58116,\"fish-cooked\":63486,\"fish-fins\":58610,\"fish\":62840,\"fishing-rod\":58280,\"flag-checkered\":61726,\"flag-pennant\":62550,\"flag-swallowtail\":63308,\"flag-usa\":63309,\"flag\":61476,\"flashlight\":63672,\"flask-gear\":58865,\"flask-round-poison\":63200,\"flask-round-potion\":63201,\"flask-vial\":58611,\"flask\":61635,\"flatbread-stuffed\":58380,\"flatbread\":58379,\"floppy-disk-circle-arrow-right\":57728,\"floppy-disk-circle-xmark\":57729,\"floppy-disk-pen\":57730,\"floppy-disk\":61639,\"floppy-disks\":57731,\"florin-sign\":57732,\"flower-daffodil\":63488,\"flower-tulip\":63489,\"flower\":63487,\"flute\":63673,\"flux-capacitor\":63674,\"flying-disc\":58281,\"folder-arrow-down\":57427,\"folder-arrow-up\":57428,\"folder-bookmark\":57734,\"folder-check\":58958,\"folder-closed\":57733,\"folder-gear\":57735,\"folder-grid\":57736,\"folder-heart\":57737,\"folder-image\":57738,\"folder-magnifying-glass\":57739,\"folder-medical\":57740,\"folder-minus\":63069,\"folder-music\":57741,\"folder-open\":61564,\"folder-plus\":63070,\"folder-tree\":63490,\"folder-user\":57742,\"folder-xmark\":63071,\"folder\":61563,\"folders\":63072,\"fondue-pot\":58381,\"font-awesome\":62132,\"font-case\":63590,\"font\":61489,\"football-helmet\":62543,\"football\":62542,\"fork-knife\":62182,\"fork\":62179,\"forklift\":62586,\"fort\":58502,\"forward-fast\":61520,\"forward-step\":61521,\"forward\":61518,\"frame\":58517,\"franc-sign\":57743,\"french-fries\":63491,\"frog\":62766,\"function\":63073,\"futbol\":61923,\"g\":71,\"galaxy\":57352,\"gallery-thumbnails\":58282,\"game-board-simple\":63592,\"game-board\":63591,\"game-console-handheld-crank\":58809,\"game-console-handheld\":63675,\"gamepad-modern\":58786,\"gamepad\":61723,\"garage-car\":57354,\"garage-open\":57355,\"garage\":57353,\"garlic\":58382,\"gas-pump-slash\":62964,\"gas-pump\":62767,\"gauge-circle-bolt\":58518,\"gauge-circle-minus\":58519,\"gauge-circle-plus\":58520,\"gauge-high\":63013,\"gauge-low\":63015,\"gauge-max\":63014,\"gauge-min\":63016,\"gauge-simple-high\":63018,\"gauge-simple-low\":63020,\"gauge-simple-max\":63019,\"gauge-simple-min\":63021,\"gauge-simple\":63017,\"gauge\":63012,\"gavel\":61667,\"gear-code\":58856,\"gear-complex-code\":58859,\"gear-complex\":58857,\"gear\":61459,\"gears\":61573,\"gem\":62373,\"genderless\":61997,\"ghost\":63202,\"gif\":57744,\"gift-card\":63075,\"gift\":61547,\"gifts\":63388,\"gingerbread-man\":63389,\"glass-citrus\":63593,\"glass-empty\":57745,\"glass-half\":57746,\"glass-water-droplet\":58613,\"glass-water\":58612,\"glass\":63492,\"glasses-round\":62965,\"glasses\":62768,\"globe-pointer\":58894,\"globe-snow\":63395,\"globe-stand\":62966,\"globe-wifi\":59013,\"globe\":61612,\"goal-net\":58283,\"golf-ball-tee\":62544,\"golf-club\":62545,\"golf-flag-hole\":58284,\"gopuram\":63076,\"graduation-cap\":61853,\"gramophone\":63677,\"grapes\":58118,\"grate-droplet\":57748,\"grate\":57747,\"greater-than-equal\":62770,\"greater-than\":62,\"grid-2-plus\":57751,\"grid-2\":57750,\"grid-4\":57752,\"grid-5\":57753,\"grid-dividers\":58285,\"grid-horizontal\":58119,\"grid-round-2-plus\":58844,\"grid-round-2\":58843,\"grid-round-4\":58845,\"grid-round-5\":58846,\"grid-round\":58842,\"grid\":57749,\"grill-fire\":58788,\"grill-hot\":58789,\"grill\":58787,\"grip-dots-vertical\":58385,\"grip-dots\":58384,\"grip-lines-vertical\":63397,\"grip-lines\":63396,\"grip-vertical\":62862,\"grip\":62861,\"group-arrows-rotate\":58614,\"guarani-sign\":57754,\"guitar-electric\":63678,\"guitar\":63398,\"guitars\":63679,\"gun-slash\":57756,\"gun-squirt\":57757,\"gun\":57755,\"h\":72,\"h1\":62227,\"h2\":62228,\"h3\":62229,\"h4\":63594,\"h5\":58386,\"h6\":58387,\"hammer-brush\":58912,\"hammer-crash\":58388,\"hammer-war\":63204,\"hammer\":63203,\"hamsa\":63077,\"hand-back-fist\":62037,\"hand-back-point-down\":57758,\"hand-back-point-left\":57759,\"hand-back-point-ribbon\":57760,\"hand-back-point-right\":57761,\"hand-back-point-up\":57762,\"hand-dots\":62561,\"hand-fingers-crossed\":57763,\"hand-fist\":63198,\"hand-heart\":62652,\"hand-holding-box\":62587,\"hand-holding-circle-dollar\":58913,\"hand-holding-dollar\":62656,\"hand-holding-droplet\":62657,\"hand-holding-hand\":58615,\"hand-holding-heart\":62654,\"hand-holding-magic\":63205,\"hand-holding-medical\":57436,\"hand-holding-seedling\":62655,\"hand-holding-skull\":57764,\"hand-holding\":62653,\"hand-horns\":57769,\"hand-lizard\":62040,\"hand-love\":57765,\"hand-middle-finger\":63494,\"hand-peace\":62043,\"hand-point-down\":61607,\"hand-point-left\":61605,\"hand-point-ribbon\":57766,\"hand-point-right\":61604,\"hand-point-up\":61606,\"hand-pointer\":62042,\"hand-scissors\":62039,\"hand-sparkles\":57437,\"hand-spock\":62041,\"hand-wave\":57767,\"hand\":62038,\"handcuffs\":58616,\"hands-asl-interpreting\":62115,\"hands-bound\":58617,\"hands-bubbles\":57438,\"hands-clapping\":57768,\"hands-holding-child\":58618,\"hands-holding-circle\":58619,\"hands-holding-diamond\":62588,\"hands-holding-dollar\":62661,\"hands-holding-heart\":62659,\"hands-holding\":62658,\"hands-praying\":63108,\"hands\":62119,\"handshake-angle\":62660,\"handshake-simple-slash\":57439,\"handshake-simple\":62662,\"handshake-slash\":57440,\"handshake\":62133,\"hanukiah\":63206,\"hard-drive\":61600,\"hashtag-lock\":58389,\"hashtag\":35,\"hat-beach\":58886,\"hat-chef\":63595,\"hat-cowboy-side\":63681,\"hat-cowboy\":63680,\"hat-santa\":63399,\"hat-winter\":63400,\"hat-witch\":63207,\"hat-wizard\":63208,\"head-side-brain\":63496,\"head-side-cough-slash\":57442,\"head-side-cough\":57441,\"head-side-gear\":58897,\"head-side-goggles\":63210,\"head-side-headphones\":63682,\"head-side-heart\":57770,\"head-side-mask\":57443,\"head-side-medical\":63497,\"head-side-virus\":57444,\"head-side\":63209,\"heading\":61916,\"headphones-simple\":62863,\"headphones\":61477,\"headset\":62864,\"heart-circle-bolt\":58620,\"heart-circle-check\":58621,\"heart-circle-exclamation\":58622,\"heart-circle-minus\":58623,\"heart-circle-plus\":58624,\"heart-circle-xmark\":58625,\"heart-crack\":63401,\"heart-half-stroke\":57772,\"heart-half\":57771,\"heart-pulse\":61982,\"heart\":61444,\"heat\":57356,\"helicopter-symbol\":58626,\"helicopter\":62771,\"helmet-battle\":63211,\"helmet-safety\":63495,\"helmet-un\":58627,\"hexagon-check\":58390,\"hexagon-divide\":57773,\"hexagon-exclamation\":58391,\"hexagon-image\":58628,\"hexagon-minus\":62215,\"hexagon-nodes-bolt\":59034,\"hexagon-nodes\":59033,\"hexagon-plus\":62208,\"hexagon-vertical-nft-slanted\":58630,\"hexagon-vertical-nft\":58629,\"hexagon-xmark\":62190,\"hexagon\":62226,\"high-definition\":57774,\"highlighter-line\":57775,\"highlighter\":62865,\"hill-avalanche\":58631,\"hill-rockslide\":58632,\"hippo\":63213,\"hockey-mask\":63214,\"hockey-puck\":62547,\"hockey-stick-puck\":58286,\"hockey-sticks\":62548,\"holly-berry\":63402,\"honey-pot\":58392,\"hood-cloak\":63215,\"horizontal-rule\":63596,\"horse-head\":63403,\"horse-saddle\":63683,\"horse\":63216,\"hose-reel\":58394,\"hose\":58393,\"hospital-user\":63501,\"hospital\":61688,\"hospitals\":63502,\"hot-tub-person\":62867,\"hotdog\":63503,\"hotel\":62868,\"hourglass-clock\":58395,\"hourglass-end\":62035,\"hourglass-half\":62034,\"hourglass-start\":62033,\"hourglass\":62036,\"house-blank\":58503,\"house-building\":57777,\"house-chimney-blank\":58288,\"house-chimney-crack\":63217,\"house-chimney-heart\":57778,\"house-chimney-medical\":63474,\"house-chimney-user\":57445,\"house-chimney-window\":57357,\"house-chimney\":58287,\"house-circle-check\":58633,\"house-circle-exclamation\":58634,\"house-circle-xmark\":58635,\"house-crack\":58289,\"house-day\":57358,\"house-fire\":58636,\"house-flag\":58637,\"house-flood-water-circle-arrow-right\":58639,\"house-flood-water\":58638,\"house-heart\":62665,\"house-laptop\":57446,\"house-lock\":58640,\"house-medical-circle-check\":58641,\"house-medical-circle-exclamation\":58642,\"house-medical-circle-xmark\":58643,\"house-medical-flag\":58644,\"house-medical\":58290,\"house-night\":57360,\"house-person-leave\":57359,\"house-person-return\":57361,\"house-signal\":57362,\"house-tree\":57779,\"house-tsunami\":58645,\"house-turret\":57780,\"house-user\":57776,\"house-water\":63311,\"house-window\":58291,\"house\":61461,\"hryvnia-sign\":63218,\"hundred-points\":58396,\"hurricane\":63313,\"hydra\":59014,\"hyphen\":45,\"i-cursor\":62022,\"i\":73,\"ice-cream\":63504,\"ice-skate\":63404,\"icicles\":63405,\"icons\":63597,\"id-badge\":62145,\"id-card-clip\":62591,\"id-card\":62146,\"igloo\":63406,\"image-landscape\":57781,\"image-polaroid-user\":57782,\"image-polaroid\":63684,\"image-portrait\":62432,\"image-slash\":57783,\"image-user\":57784,\"image\":61502,\"images-user\":57785,\"images\":62210,\"inbox-full\":57786,\"inbox-in\":62224,\"inbox-out\":62225,\"inbox\":61468,\"inboxes\":57787,\"indent\":61500,\"indian-rupee-sign\":57788,\"industry-windows\":62387,\"industry\":62069,\"infinity\":62772,\"info\":61737,\"inhaler\":62969,\"input-numeric\":57789,\"input-pipe\":57790,\"input-text\":57791,\"integral\":63079,\"interrobang\":58810,\"intersection\":63080,\"island-tropical\":63505,\"italic\":61491,\"j\":74,\"jack-o-lantern\":62222,\"jar-wheat\":58647,\"jar\":58646,\"jedi\":63081,\"jet-fighter-up\":58648,\"jet-fighter\":61691,\"joint\":62869,\"joystick\":63685,\"jug-bottle\":58875,\"jug-detergent\":58649,\"jug\":63686,\"k\":75,\"kaaba\":63083,\"kazoo\":63687,\"kerning\":63599,\"key-skeleton-left-right\":58292,\"key-skeleton\":63219,\"key\":61572,\"keyboard-brightness-low\":57793,\"keyboard-brightness\":57792,\"keyboard-down\":57794,\"keyboard-left\":57795,\"keyboard\":61724,\"keynote\":63084,\"khanda\":63085,\"kidneys\":62971,\"kip-sign\":57796,\"kit-medical\":62585,\"kitchen-set\":58650,\"kite\":63220,\"kiwi-bird\":62773,\"kiwi-fruit\":58124,\"knife-kitchen\":63221,\"knife\":62180,\"l\":76,\"lacrosse-stick-ball\":58294,\"lacrosse-stick\":58293,\"lambda\":63086,\"lamp-desk\":57364,\"lamp-floor\":57365,\"lamp-street\":57797,\"lamp\":62666,\"land-mine-on\":58651,\"landmark-dome\":63314,\"landmark-flag\":58652,\"landmark-magnifying-glass\":58914,\"landmark\":63087,\"language\":61867,\"laptop-arrow-down\":57798,\"laptop-binary\":58855,\"laptop-code\":62972,\"laptop-file\":58653,\"laptop-medical\":63506,\"laptop-mobile\":63610,\"laptop-slash\":57799,\"laptop\":61705,\"lari-sign\":57800,\"lasso-sparkles\":57801,\"lasso\":63688,\"layer-group\":62973,\"layer-minus\":62974,\"layer-plus\":62975,\"leaf-heart\":62667,\"leaf-maple\":63222,\"leaf-oak\":63223,\"leaf\":61548,\"leafy-green\":58397,\"left-from-bracket\":58988,\"left-from-line\":62280,\"left-long-to-line\":58398,\"left-long\":62218,\"left-right\":62263,\"left-to-bracket\":58989,\"left-to-line\":62283,\"left\":62293,\"lemon\":61588,\"less-than-equal\":62775,\"less-than\":60,\"life-ring\":61901,\"light-ceiling\":57366,\"light-emergency-on\":58400,\"light-emergency\":58399,\"light-switch-off\":57368,\"light-switch-on\":57369,\"light-switch\":57367,\"lightbulb-cfl-on\":58791,\"lightbulb-cfl\":58790,\"lightbulb-dollar\":63088,\"lightbulb-exclamation-on\":57802,\"lightbulb-exclamation\":63089,\"lightbulb-gear\":58877,\"lightbulb-message\":59015,\"lightbulb-on\":63090,\"lightbulb-slash\":63091,\"lightbulb\":61675,\"lighthouse\":58898,\"lights-holiday\":63410,\"line-columns\":63600,\"line-height\":63601,\"lines-leaning\":58654,\"link-horizontal-slash\":57804,\"link-horizontal\":57803,\"link-simple-slash\":57806,\"link-simple\":57805,\"link-slash\":61735,\"link\":61633,\"lips\":62976,\"lira-sign\":61845,\"list-check\":61614,\"list-dropdown\":57807,\"list-music\":63689,\"list-ol\":61643,\"list-radio\":57808,\"list-timeline\":57809,\"list-tree\":57810,\"list-ul\":61642,\"list\":61498,\"litecoin-sign\":57811,\"loader\":57812,\"lobster\":58401,\"location-arrow-up\":58938,\"location-arrow\":61732,\"location-check\":62982,\"location-crosshairs-slash\":62979,\"location-crosshairs\":62977,\"location-dot-slash\":62981,\"location-dot\":62405,\"location-exclamation\":62984,\"location-minus\":62985,\"location-pen\":62983,\"location-pin-lock\":58655,\"location-pin-slash\":62988,\"location-pin\":61505,\"location-plus\":62986,\"location-question\":62987,\"location-smile\":62989,\"location-xmark\":62990,\"lock-a\":58402,\"lock-hashtag\":58403,\"lock-keyhole-open\":62402,\"lock-keyhole\":62221,\"lock-open\":62401,\"lock\":61475,\"locust\":58656,\"lollipop\":58404,\"loveseat\":62668,\"luchador-mask\":62549,\"lungs-virus\":57447,\"lungs\":62980,\"m\":77,\"mace\":63224,\"magnet\":61558,\"magnifying-glass-arrow-right\":58657,\"magnifying-glass-arrows-rotate\":58974,\"magnifying-glass-chart\":58658,\"magnifying-glass-dollar\":63112,\"magnifying-glass-location\":63113,\"magnifying-glass-minus\":61456,\"magnifying-glass-music\":58975,\"magnifying-glass-play\":58976,\"magnifying-glass-plus\":61454,\"magnifying-glass-waveform\":58977,\"magnifying-glass\":61442,\"mailbox-flag-up\":58811,\"mailbox\":63507,\"manat-sign\":57813,\"mandolin\":63225,\"mango\":58127,\"manhole\":57814,\"map-location-dot\":62880,\"map-location\":62879,\"map-pin\":62070,\"map\":62073,\"marker\":62881,\"mars-and-venus-burst\":58659,\"mars-and-venus\":61988,\"mars-double\":61991,\"mars-stroke-right\":61995,\"mars-stroke-up\":61994,\"mars-stroke\":61993,\"mars\":61986,\"martini-glass-citrus\":62817,\"martini-glass-empty\":61440,\"martini-glass\":62843,\"mask-face\":57815,\"mask-snorkel\":58295,\"mask-ventilator\":58660,\"mask\":63226,\"masks-theater\":63024,\"mattress-pillow\":58661,\"maximize\":62238,\"meat\":63508,\"medal\":62882,\"megaphone\":63093,\"melon-slice\":58129,\"melon\":58128,\"memo-circle-check\":57817,\"memo-circle-info\":58522,\"memo-pad\":57818,\"memo\":57816,\"memory\":62776,\"menorah\":63094,\"mercury\":61987,\"merge\":58662,\"message-arrow-down\":57819,\"message-arrow-up-right\":57821,\"message-arrow-up\":57820,\"message-bot\":58296,\"message-captions\":57822,\"message-check\":62626,\"message-code\":57823,\"message-dollar\":63056,\"message-dots\":62627,\"message-exclamation\":62629,\"message-heart\":58825,\"message-image\":57824,\"message-lines\":62630,\"message-medical\":63476,\"message-middle-top\":57826,\"message-middle\":57825,\"message-minus\":62631,\"message-music\":63663,\"message-pen\":62628,\"message-plus\":62632,\"message-question\":57827,\"message-quote\":57828,\"message-slash\":62633,\"message-smile\":62634,\"message-sms\":57829,\"message-text\":57830,\"message-xmark\":62635,\"message\":62074,\"messages-dollar\":63058,\"messages-question\":57831,\"messages\":62646,\"meteor\":63315,\"meter-bolt\":57833,\"meter-droplet\":57834,\"meter-fire\":57835,\"meter\":57832,\"microchip-ai\":57836,\"microchip\":62171,\"microphone-lines-slash\":62777,\"microphone-lines\":62409,\"microphone-slash\":61745,\"microphone-stand\":63691,\"microphone\":61744,\"microscope\":62992,\"microwave\":57371,\"mill-sign\":57837,\"minimize\":63372,\"minus\":61544,\"mistletoe\":63412,\"mitten\":63413,\"mobile-button\":61707,\"mobile-notch\":57838,\"mobile-retro\":58663,\"mobile-screen-button\":62413,\"mobile-screen\":62415,\"mobile-signal-out\":57840,\"mobile-signal\":57839,\"mobile\":62414,\"money-bill-1-wave\":62779,\"money-bill-1\":62417,\"money-bill-simple-wave\":57842,\"money-bill-simple\":57841,\"money-bill-transfer\":58664,\"money-bill-trend-up\":58665,\"money-bill-wave\":62778,\"money-bill-wheat\":58666,\"money-bill\":61654,\"money-bills-simple\":57844,\"money-bills\":57843,\"money-check-dollar-pen\":63603,\"money-check-dollar\":62781,\"money-check-pen\":63602,\"money-check\":62780,\"money-from-bracket\":58130,\"money-simple-from-bracket\":58131,\"monitor-waveform\":62993,\"monkey\":63227,\"monument\":62886,\"moon-cloud\":63316,\"moon-over-sun\":63306,\"moon-stars\":63317,\"moon\":61830,\"moped\":58297,\"mortar-pestle\":62887,\"mosque\":63096,\"mosquito-net\":58668,\"mosquito\":58667,\"motorcycle\":61980,\"mound\":58669,\"mountain-city\":58670,\"mountain-sun\":58671,\"mountain\":63228,\"mountains\":63229,\"mouse-field\":58792,\"mp3-player\":63694,\"mug-hot\":63414,\"mug-marshmallows\":63415,\"mug-saucer\":61684,\"mug-tea-saucer\":57845,\"mug-tea\":63605,\"mug\":63604,\"mushroom\":58405,\"music-magnifying-glass\":58978,\"music-note-slash\":63696,\"music-note\":63695,\"music-slash\":63697,\"music\":61441,\"mustache\":58812,\"n\":78,\"naira-sign\":57846,\"narwhal\":63230,\"nesting-dolls\":58298,\"network-wired\":63231,\"neuter\":61996,\"newspaper\":61930,\"nfc-lock\":57848,\"nfc-magnifying-glass\":57849,\"nfc-pen\":57850,\"nfc-signal\":57851,\"nfc-slash\":57852,\"nfc-symbol\":58673,\"nfc-trash\":57853,\"nfc\":57847,\"nose\":58813,\"not-equal\":62782,\"notdef\":57854,\"note-medical\":57856,\"note-sticky\":62025,\"note\":57855,\"notebook\":57857,\"notes-medical\":62593,\"notes\":57858,\"o\":79,\"object-exclude\":58524,\"object-group\":62023,\"object-intersect\":58525,\"object-subtract\":58526,\"object-ungroup\":62024,\"object-union\":58527,\"objects-align-bottom\":58299,\"objects-align-center-horizontal\":58300,\"objects-align-center-vertical\":58301,\"objects-align-left\":58302,\"objects-align-right\":58303,\"objects-align-top\":58304,\"objects-column\":58305,\"octagon-check\":58406,\"octagon-divide\":57859,\"octagon-exclamation\":57860,\"octagon-minus\":62216,\"octagon-plus\":62209,\"octagon-xmark\":62192,\"octagon\":62214,\"octopus\":59016,\"oil-can-drip\":57861,\"oil-can\":62995,\"oil-temperature\":62996,\"oil-well\":58674,\"olive-branch\":58135,\"olive\":58134,\"om\":63097,\"omega\":63098,\"onion\":58407,\"option\":58136,\"ornament\":63416,\"otter\":63232,\"outdent\":61499,\"outlet\":57372,\"oven\":57373,\"overline\":63606,\"p\":80,\"page-caret-down\":58409,\"page-caret-up\":58410,\"page\":58408,\"pager\":63509,\"paint-roller\":62890,\"paintbrush-fine\":62889,\"paintbrush-pencil\":57862,\"paintbrush\":61948,\"palette\":62783,\"pallet-box\":57864,\"pallet-boxes\":62595,\"pallet\":62594,\"pan-food\":58411,\"pan-frying\":58412,\"pancakes\":58413,\"panel-ews\":58414,\"panel-fire\":58415,\"panorama\":57865,\"paper-plane-top\":57866,\"paper-plane\":61912,\"paperclip-vertical\":58306,\"paperclip\":61638,\"parachute-box\":62669,\"paragraph-left\":63608,\"paragraph\":61917,\"party-bell\":58138,\"party-horn\":58139,\"passport\":62891,\"paste\":61674,\"pause\":61516,\"paw-claws\":63234,\"paw-simple\":63233,\"paw\":61872,\"peace\":63100,\"peach\":57867,\"peanut\":58416,\"peanuts\":58417,\"peapod\":58140,\"pear\":57868,\"pedestal\":57869,\"pegasus\":63235,\"pen-circle\":57870,\"pen-clip-slash\":57871,\"pen-clip\":62213,\"pen-fancy-slash\":57872,\"pen-fancy\":62892,\"pen-field\":57873,\"pen-line\":57874,\"pen-nib-slash\":58529,\"pen-nib\":62893,\"pen-paintbrush\":63000,\"pen-ruler\":62894,\"pen-slash\":57875,\"pen-swirl\":57876,\"pen-to-square\":61508,\"pen\":62212,\"pencil-mechanical\":58826,\"pencil-slash\":57877,\"pencil\":62211,\"people-arrows\":57448,\"people-carry-box\":62670,\"people-dress-simple\":57880,\"people-dress\":57879,\"people-group\":58675,\"people-line\":58676,\"people-pants-simple\":57882,\"people-pants\":57881,\"people-pulling\":58677,\"people-robbery\":58678,\"people-roof\":58679,\"people-simple\":57883,\"people\":57878,\"pepper-hot\":63510,\"pepper\":58418,\"percent\":37,\"period\":46,\"person-arrow-down-to-line\":58680,\"person-arrow-up-from-line\":58681,\"person-biking-mountain\":63563,\"person-biking\":63562,\"person-booth\":63318,\"person-breastfeeding\":58682,\"person-burst\":58683,\"person-cane\":58684,\"person-carry-box\":62671,\"person-chalkboard\":58685,\"person-circle-check\":58686,\"person-circle-exclamation\":58687,\"person-circle-minus\":58688,\"person-circle-plus\":58689,\"person-circle-question\":58690,\"person-circle-xmark\":58691,\"person-digging\":63582,\"person-dolly-empty\":62673,\"person-dolly\":62672,\"person-dots-from-line\":62576,\"person-dress-burst\":58692,\"person-dress-fairy\":58887,\"person-dress-simple\":57884,\"person-dress\":61826,\"person-drowning\":58693,\"person-fairy\":58888,\"person-falling-burst\":58695,\"person-falling\":58694,\"person-from-portal\":57379,\"person-half-dress\":58696,\"person-harassing\":58697,\"person-hiking\":63212,\"person-military-pointing\":58698,\"person-military-rifle\":58699,\"person-military-to-person\":58700,\"person-pinball\":57885,\"person-praying\":63107,\"person-pregnant\":58142,\"person-rays\":58701,\"person-rifle\":58702,\"person-running-fast\":58879,\"person-running\":63244,\"person-seat-reclined\":57887,\"person-seat\":57886,\"person-shelter\":58703,\"person-sign\":63319,\"person-simple\":57888,\"person-skating\":63429,\"person-ski-jumping\":63431,\"person-ski-lift\":63432,\"person-skiing-nordic\":63434,\"person-skiing\":63433,\"person-sledding\":63435,\"person-snowboarding\":63438,\"person-snowmobiling\":63441,\"person-swimming\":62916,\"person-through-window\":58793,\"person-to-door\":58419,\"person-to-portal\":57378,\"person-walking-arrow-loop-left\":58705,\"person-walking-arrow-right\":58706,\"person-walking-dashed-line-arrow-right\":58707,\"person-walking-luggage\":58708,\"person-walking-with-cane\":62109,\"person-walking\":62804,\"person\":61827,\"peseta-sign\":57889,\"peso-sign\":57890,\"phone-arrow-down-left\":57891,\"phone-arrow-right\":58814,\"phone-arrow-up-right\":57892,\"phone-flip\":63609,\"phone-hangup\":57893,\"phone-intercom\":58420,\"phone-missed\":57894,\"phone-office\":63101,\"phone-plus\":62674,\"phone-rotary\":63699,\"phone-slash\":62429,\"phone-volume\":62112,\"phone-xmark\":57895,\"phone\":61589,\"photo-film-music\":57896,\"photo-film\":63612,\"pi\":63102,\"piano-keyboard\":63701,\"piano\":63700,\"pickaxe\":58815,\"pickleball\":58421,\"pie\":63237,\"pig\":63238,\"piggy-bank\":62675,\"pills\":62596,\"pinata\":58307,\"pinball\":57897,\"pineapple\":58143,\"pipe-circle-check\":58422,\"pipe-collar\":58423,\"pipe-section\":58424,\"pipe-smoking\":58308,\"pipe-valve\":58425,\"pipe\":124,\"pizza-slice\":63512,\"pizza\":63511,\"place-of-worship\":63103,\"plane-arrival\":62895,\"plane-circle-check\":58709,\"plane-circle-exclamation\":58710,\"plane-circle-xmark\":58711,\"plane-departure\":62896,\"plane-engines\":62430,\"plane-lock\":58712,\"plane-prop\":57899,\"plane-slash\":57449,\"plane-tail\":57900,\"plane-up-slash\":57902,\"plane-up\":57901,\"plane\":61554,\"planet-moon\":57375,\"planet-ringed\":57376,\"plant-wilt\":58794,\"plate-utensils\":58427,\"plate-wheat\":58714,\"play-pause\":57903,\"play\":61515,\"plug-circle-bolt\":58715,\"plug-circle-check\":58716,\"plug-circle-exclamation\":58717,\"plug-circle-minus\":58718,\"plug-circle-plus\":58719,\"plug-circle-xmark\":58720,\"plug\":61926,\"plus-large\":58782,\"plus-minus\":58428,\"plus\":43,\"podcast\":62158,\"podium-star\":63320,\"podium\":63104,\"police-box\":57377,\"poll-people\":63321,\"pompebled\":58429,\"poo-storm\":63322,\"poo\":62206,\"pool-8-ball\":58309,\"poop\":63001,\"popcorn\":63513,\"popsicle\":58430,\"pot-food\":58431,\"potato\":58432,\"power-off\":61457,\"prescription-bottle-medical\":62598,\"prescription-bottle-pill\":58816,\"prescription-bottle\":62597,\"prescription\":62897,\"presentation-screen\":63109,\"pretzel\":58433,\"print-magnifying-glass\":63514,\"print-slash\":63110,\"print\":61487,\"projector\":63702,\"pump-medical\":57450,\"pump-soap\":57451,\"pump\":58434,\"pumpkin\":63239,\"puzzle-piece-simple\":57905,\"puzzle-piece\":61742,\"puzzle\":58435,\"q\":81,\"qrcode\":61481,\"question\":63,\"quote-left\":61709,\"quote-right\":61710,\"quotes\":57908,\"r\":82,\"rabbit-running\":63241,\"rabbit\":63240,\"raccoon\":58899,\"racquet\":62554,\"radar\":57380,\"radiation\":63417,\"radio-tuner\":63704,\"radio\":63703,\"rainbow\":63323,\"raindrops\":63324,\"ram\":63242,\"ramp-loading\":62676,\"ranking-star\":58721,\"raygun\":57381,\"receipt\":62787,\"record-vinyl\":63705,\"rectangle-ad\":63041,\"rectangle-barcode\":62563,\"rectangle-code\":58146,\"rectangle-history-circle-plus\":58531,\"rectangle-history-circle-user\":58532,\"rectangle-history\":58530,\"rectangle-list\":61474,\"rectangle-pro\":57909,\"rectangle-terminal\":57910,\"rectangle-vertical-history\":57911,\"rectangle-vertical\":62203,\"rectangle-wide\":62204,\"rectangle-xmark\":62480,\"rectangle\":62202,\"rectangles-mixed\":58147,\"recycle\":61880,\"reel\":57912,\"reflect-both\":58991,\"reflect-horizontal\":58980,\"reflect-vertical\":58981,\"refrigerator\":57382,\"registered\":62045,\"repeat-1\":62309,\"repeat\":62307,\"reply-all\":61730,\"reply-clock\":57913,\"reply\":62437,\"republican\":63326,\"restroom-simple\":57914,\"restroom\":63421,\"retweet\":61561,\"rhombus\":57915,\"ribbon\":62678,\"right-from-bracket\":62197,\"right-from-line\":62279,\"right-left-large\":58849,\"right-left\":62306,\"right-long-to-line\":58436,\"right-long\":62219,\"right-to-bracket\":62198,\"right-to-line\":62284,\"right\":62294,\"ring-diamond\":58795,\"ring\":63243,\"rings-wedding\":63515,\"road-barrier\":58722,\"road-bridge\":58723,\"road-circle-check\":58724,\"road-circle-exclamation\":58725,\"road-circle-xmark\":58726,\"road-lock\":58727,\"road-spikes\":58728,\"road\":61464,\"robot-astromech\":58066,\"robot\":62788,\"rocket-launch\":57383,\"rocket\":61749,\"roller-coaster\":58148,\"rotate-exclamation\":57916,\"rotate-left\":62186,\"rotate-reverse\":58929,\"rotate-right\":62201,\"rotate\":62193,\"route-highway\":63002,\"route-interstate\":63003,\"route\":62679,\"router\":63706,\"rss\":61598,\"ruble-sign\":61784,\"rug\":58729,\"rugby-ball\":58310,\"ruler-combined\":62790,\"ruler-horizontal\":62791,\"ruler-triangle\":63004,\"ruler-vertical\":62792,\"ruler\":62789,\"rupee-sign\":61782,\"rupiah-sign\":57917,\"rv\":63422,\"s\":83,\"sack-dollar\":63517,\"sack-xmark\":58730,\"sack\":63516,\"sailboat\":58437,\"salad\":63518,\"salt-shaker\":58438,\"sandwich\":63519,\"satellite-dish\":63424,\"satellite\":63423,\"sausage\":63520,\"saxophone-fire\":63707,\"saxophone\":63708,\"scale-balanced\":62030,\"scale-unbalanced-flip\":62742,\"scale-unbalanced\":62741,\"scalpel-line-dashed\":63006,\"scalpel\":63005,\"scanner-gun\":62600,\"scanner-image\":63731,\"scanner-keyboard\":62601,\"scanner-touchscreen\":62602,\"scarecrow\":63245,\"scarf\":63425,\"school-circle-check\":58731,\"school-circle-exclamation\":58732,\"school-circle-xmark\":58733,\"school-flag\":58734,\"school-lock\":58735,\"school\":62793,\"scissors\":61636,\"screen-users\":63037,\"screencast\":57918,\"screwdriver-wrench\":63449,\"screwdriver\":62794,\"scribble\":57919,\"scroll-old\":63247,\"scroll-torah\":63136,\"scroll\":63246,\"scrubber\":62200,\"scythe\":63248,\"sd-card\":63426,\"sd-cards\":57920,\"seal-exclamation\":57922,\"seal-question\":57923,\"seal\":57921,\"seat-airline\":57924,\"section\":58439,\"seedling\":62680,\"semicolon\":59,\"send-back\":63614,\"send-backward\":63615,\"sensor-cloud\":57388,\"sensor-fire\":57386,\"sensor-on\":57387,\"sensor-triangle-exclamation\":57385,\"sensor\":57384,\"server\":62003,\"shapes\":63007,\"share-all\":62311,\"share-from-square\":61773,\"share-nodes\":61920,\"share\":61540,\"sheep\":63249,\"sheet-plastic\":58737,\"shekel-sign\":61963,\"shelves-empty\":57926,\"shelves\":62592,\"shield-cat\":58738,\"shield-check\":62199,\"shield-cross\":63250,\"shield-dog\":58739,\"shield-exclamation\":57927,\"shield-halved\":62445,\"shield-heart\":58740,\"shield-keyhole\":57928,\"shield-minus\":57929,\"shield-plus\":57930,\"shield-quartered\":58741,\"shield-slash\":57931,\"shield-virus\":57452,\"shield-xmark\":57932,\"shield\":61746,\"ship\":61978,\"shirt-long-sleeve\":58311,\"shirt-running\":58312,\"shirt-tank-top\":58313,\"shirt\":62803,\"shish-kebab\":63521,\"shoe-prints\":62795,\"shop-lock\":58533,\"shop-slash\":57456,\"shop\":62799,\"shovel-snow\":63427,\"shovel\":63251,\"shower-down\":57933,\"shower\":62156,\"shredder\":63114,\"shrimp\":58440,\"shuffle\":61556,\"shutters\":58441,\"shuttle-space\":61847,\"shuttlecock\":62555,\"sickle\":63522,\"sidebar-flip\":57935,\"sidebar\":57934,\"sigma\":63115,\"sign-hanging\":62681,\"sign-post\":58916,\"sign-posts-wrench\":58918,\"sign-posts\":58917,\"signal-bars-fair\":63122,\"signal-bars-good\":63123,\"signal-bars-slash\":63124,\"signal-bars-weak\":63121,\"signal-bars\":63120,\"signal-fair\":63117,\"signal-good\":63118,\"signal-slash\":63125,\"signal-stream-slash\":57936,\"signal-stream\":63709,\"signal-strong\":63119,\"signal-weak\":63116,\"signal\":61458,\"signature-lock\":58314,\"signature-slash\":58315,\"signature\":62903,\"signs-post\":62071,\"sim-card\":63428,\"sim-cards\":57937,\"sink\":57453,\"siren-on\":57390,\"siren\":57389,\"sitemap\":61672,\"skeleton-ribs\":58827,\"skeleton\":63008,\"ski-boot-ski\":58317,\"ski-boot\":58316,\"skull-cow\":63710,\"skull-crossbones\":63252,\"skull\":62796,\"slash-back\":92,\"slash-forward\":47,\"slash\":63253,\"sleigh\":63436,\"slider\":57938,\"sliders-simple\":57939,\"sliders-up\":62449,\"sliders\":61918,\"slot-machine\":58318,\"smog\":63327,\"smoke\":63328,\"smoking\":62605,\"snake\":63254,\"snooze\":63616,\"snow-blowing\":63329,\"snowflake-droplets\":58817,\"snowflake\":62172,\"snowflakes\":63439,\"snowman-head\":63387,\"snowman\":63440,\"snowplow\":63442,\"soap\":57454,\"socks\":63126,\"soft-serve\":58368,\"solar-panel\":62906,\"solar-system\":57391,\"sort-down\":61661,\"sort-up\":61662,\"sort\":61660,\"spa\":62907,\"space-station-moon-construction\":57396,\"space-station-moon\":57395,\"spade\":62196,\"spaghetti-monster-flying\":63099,\"sparkle\":58838,\"sparkles\":63632,\"speaker\":63711,\"speakers\":63712,\"spell-check\":63633,\"spider-black-widow\":63256,\"spider-web\":63257,\"spider\":63255,\"spinner-scale\":58922,\"spinner-third\":62452,\"spinner\":61712,\"split\":57940,\"splotch\":62908,\"spoon\":62181,\"sportsball\":58443,\"spray-can-sparkles\":62928,\"spray-can\":62909,\"sprinkler-ceiling\":58444,\"sprinkler\":57397,\"square-0\":57941,\"square-1\":57942,\"square-2\":57943,\"square-3\":57944,\"square-4\":57945,\"square-5\":57946,\"square-6\":57947,\"square-7\":57948,\"square-8\":57949,\"square-9\":57950,\"square-a-lock\":58445,\"square-a\":57951,\"square-ampersand\":57952,\"square-arrow-down-left\":57953,\"square-arrow-down-right\":57954,\"square-arrow-down\":62265,\"square-arrow-left\":62266,\"square-arrow-right\":62267,\"square-arrow-up-left\":57955,\"square-arrow-up-right\":61772,\"square-arrow-up\":62268,\"square-b\":57956,\"square-binary\":59035,\"square-bolt\":57957,\"square-c\":57958,\"square-caret-down\":61776,\"square-caret-left\":61841,\"square-caret-right\":61778,\"square-caret-up\":61777,\"square-check\":61770,\"square-chevron-down\":62249,\"square-chevron-left\":62250,\"square-chevron-right\":62251,\"square-chevron-up\":62252,\"square-code\":57959,\"square-d\":57960,\"square-dashed-circle-plus\":58818,\"square-dashed\":57961,\"square-divide\":57962,\"square-dollar\":62185,\"square-down-left\":57963,\"square-down-right\":57964,\"square-down\":62288,\"square-e\":57965,\"square-ellipsis-vertical\":57967,\"square-ellipsis\":57966,\"square-envelope\":61849,\"square-exclamation\":62241,\"square-f\":57968,\"square-fragile\":62619,\"square-full\":62556,\"square-g\":57969,\"square-h\":61693,\"square-heart\":62664,\"square-i\":57970,\"square-info\":62223,\"square-j\":57971,\"square-k\":57972,\"square-kanban\":58504,\"square-l\":57973,\"square-left\":62289,\"square-list\":58505,\"square-m\":57974,\"square-minus\":61766,\"square-n\":57975,\"square-nfi\":58742,\"square-o\":57976,\"square-p\":57977,\"square-parking-slash\":62999,\"square-parking\":62784,\"square-pen\":61771,\"square-person-confined\":58743,\"square-phone-flip\":63611,\"square-phone-hangup\":57978,\"square-phone\":61592,\"square-plus\":61694,\"square-poll-horizontal\":63106,\"square-poll-vertical\":63105,\"square-q\":57979,\"square-quarters\":58446,\"square-question\":62205,\"square-quote\":58153,\"square-r\":57980,\"square-right\":62290,\"square-ring\":58447,\"square-root-variable\":63128,\"square-root\":63127,\"square-rss\":61763,\"square-s\":57981,\"square-share-nodes\":61921,\"square-sliders-vertical\":62450,\"square-sliders\":62448,\"square-small\":57982,\"square-star\":57983,\"square-t\":57984,\"square-terminal\":58154,\"square-this-way-up\":62623,\"square-u\":57985,\"square-up-left\":57986,\"square-up-right\":62304,\"square-up\":62291,\"square-user\":57987,\"square-v\":57988,\"square-virus\":58744,\"square-w\":57989,\"square-x\":57990,\"square-xmark\":62163,\"square-y\":57991,\"square-z\":57992,\"square\":61640,\"squid\":58448,\"squirrel\":63258,\"staff-snake\":58745,\"staff\":63259,\"stairs\":57993,\"stamp\":62911,\"standard-definition\":57994,\"stapler\":58799,\"star-and-crescent\":63129,\"star-christmas\":63444,\"star-exclamation\":62195,\"star-half-stroke\":62912,\"star-half\":61577,\"star-of-david\":63130,\"star-of-life\":63009,\"star-sharp-half-stroke\":57997,\"star-sharp-half\":57996,\"star-sharp\":57995,\"star-shooting\":57398,\"star\":61445,\"starfighter-twin-ion-engine-advanced\":57998,\"starfighter-twin-ion-engine\":57400,\"starfighter\":57399,\"stars\":63330,\"starship-freighter\":57402,\"starship\":57401,\"steak\":63524,\"steering-wheel\":63010,\"sterling-sign\":61780,\"stethoscope\":61681,\"stocking\":63445,\"stomach\":63011,\"stop\":61517,\"stopwatch-20\":57455,\"stopwatch\":62194,\"store-lock\":58534,\"store-slash\":57457,\"store\":62798,\"strawberry\":58155,\"street-view\":61981,\"stretcher\":63525,\"strikethrough\":61644,\"stroopwafel\":62801,\"subscript\":61740,\"subtitles-slash\":58896,\"subtitles\":58895,\"suitcase-medical\":61690,\"suitcase-rolling\":62913,\"suitcase\":61682,\"sun-bright\":57999,\"sun-cloud\":63331,\"sun-dust\":63332,\"sun-haze\":63333,\"sun-plant-wilt\":58746,\"sun\":61829,\"sunglasses\":63634,\"sunrise\":63334,\"sunset\":63335,\"superscript\":61739,\"sushi-roll\":58507,\"sushi\":58506,\"swap-arrows\":58890,\"swap\":58889,\"swatchbook\":62915,\"sword-laser-alt\":57404,\"sword-laser\":57403,\"sword\":63260,\"swords-laser\":57405,\"swords\":63261,\"symbols\":63598,\"synagogue\":63131,\"syringe\":62606,\"t-rex\":58921,\"t\":84,\"table-cells-column-lock\":59000,\"table-cells-column-unlock\":59024,\"table-cells-large\":61449,\"table-cells-lock\":59001,\"table-cells-row-lock\":59002,\"table-cells-row-unlock\":59025,\"table-cells-unlock\":59026,\"table-cells\":61450,\"table-columns\":61659,\"table-layout\":58000,\"table-list\":61451,\"table-picnic\":58157,\"table-pivot\":58001,\"table-rows\":58002,\"table-tennis-paddle-ball\":62557,\"table-tree\":58003,\"table\":61646,\"tablet-button\":61706,\"tablet-rugged\":62607,\"tablet-screen-button\":62458,\"tablet-screen\":62460,\"tablet\":62459,\"tablets\":62608,\"tachograph-digital\":62822,\"taco\":63526,\"tag\":61483,\"tags\":61484,\"tally-1\":58004,\"tally-2\":58005,\"tally-3\":58006,\"tally-4\":58007,\"tally\":63132,\"tamale\":58449,\"tank-water\":58450,\"tape\":62683,\"tarp-droplet\":58748,\"tarp\":58747,\"taxi-bus\":58008,\"taxi\":61882,\"teddy-bear\":58319,\"teeth-open\":63023,\"teeth\":63022,\"telescope\":57406,\"temperature-arrow-down\":57407,\"temperature-arrow-up\":57408,\"temperature-empty\":62155,\"temperature-full\":62151,\"temperature-half\":62153,\"temperature-high\":63337,\"temperature-list\":58009,\"temperature-low\":63339,\"temperature-quarter\":62154,\"temperature-snow\":63336,\"temperature-sun\":63338,\"temperature-three-quarters\":62152,\"tenge-sign\":63447,\"tennis-ball\":62558,\"tent-arrow-down-to-line\":58750,\"tent-arrow-left-right\":58751,\"tent-arrow-turn-left\":58752,\"tent-arrows-down\":58753,\"tent-double-peak\":58919,\"tent\":58749,\"tents\":58754,\"terminal\":61728,\"text-height\":61492,\"text-size\":63636,\"text-slash\":63613,\"text-width\":61493,\"text\":63635,\"thermometer\":62609,\"theta\":63134,\"thought-bubble\":58158,\"thumbs-down\":61797,\"thumbs-up\":61796,\"thumbtack-slash\":59023,\"thumbtack\":61581,\"tick\":58159,\"ticket-airline\":58010,\"ticket-perforated\":58942,\"ticket-simple\":62463,\"ticket\":61765,\"tickets-airline\":58011,\"tickets-perforated\":58943,\"tickets-simple\":58969,\"tickets\":58968,\"tilde\":126,\"timeline-arrow\":58013,\"timeline\":58012,\"timer\":58014,\"tire-flat\":63026,\"tire-pressure-warning\":63027,\"tire-rugged\":63028,\"tire\":63025,\"toggle-large-off\":58800,\"toggle-large-on\":58801,\"toggle-off\":61956,\"toggle-on\":61957,\"toilet-paper-blank-under\":58015,\"toilet-paper-blank\":63263,\"toilet-paper-check\":58802,\"toilet-paper-slash\":57458,\"toilet-paper-under-slash\":58017,\"toilet-paper-under\":58016,\"toilet-paper-xmark\":58803,\"toilet-paper\":63262,\"toilet-portable\":58755,\"toilet\":63448,\"toilets-portable\":58756,\"tomato\":58160,\"tombstone-blank\":63265,\"tombstone\":63264,\"toolbox\":62802,\"tooth\":62921,\"toothbrush\":63029,\"torii-gate\":63137,\"tornado\":63343,\"tower-broadcast\":62745,\"tower-cell\":58757,\"tower-control\":58018,\"tower-observation\":58758,\"tractor\":63266,\"trademark\":62044,\"traffic-cone\":63030,\"traffic-light-go\":63032,\"traffic-light-slow\":63033,\"traffic-light-stop\":63034,\"traffic-light\":63031,\"trailer\":57409,\"train-subway-tunnel\":58019,\"train-subway\":62009,\"train-track\":58451,\"train-tram\":58804,\"train-tunnel\":58452,\"train\":62008,\"transformer-bolt\":58020,\"transgender\":61989,\"transporter-1\":57411,\"transporter-2\":57412,\"transporter-3\":57413,\"transporter-4\":58021,\"transporter-5\":58022,\"transporter-6\":58023,\"transporter-7\":58024,\"transporter-empty\":57414,\"transporter\":57410,\"trash-arrow-up\":63529,\"trash-can-arrow-up\":63530,\"trash-can-check\":58025,\"trash-can-clock\":58026,\"trash-can-list\":58027,\"trash-can-plus\":58028,\"trash-can-slash\":58029,\"trash-can-undo\":63638,\"trash-can-xmark\":58030,\"trash-can\":62189,\"trash-check\":58031,\"trash-clock\":58032,\"trash-list\":58033,\"trash-plus\":58034,\"trash-slash\":58035,\"trash-undo\":63637,\"trash-xmark\":58036,\"trash\":61944,\"treasure-chest\":63267,\"tree-christmas\":63451,\"tree-city\":58759,\"tree-deciduous\":62464,\"tree-decorated\":63452,\"tree-large\":63453,\"tree-palm\":63531,\"tree\":61883,\"trees\":63268,\"triangle-exclamation\":61553,\"triangle-instrument\":63714,\"triangle-person-digging\":63581,\"triangle\":62188,\"tricycle-adult\":58820,\"tricycle\":58819,\"trillium\":58760,\"trophy-star\":62187,\"trophy\":61585,\"trowel-bricks\":58762,\"trowel\":58761,\"truck-arrow-right\":58763,\"truck-bolt\":58320,\"truck-clock\":62604,\"truck-container-empty\":58037,\"truck-container\":62684,\"truck-droplet\":58764,\"truck-fast\":62603,\"truck-field-un\":58766,\"truck-field\":58765,\"truck-fire\":58970,\"truck-flatbed\":58038,\"truck-front\":58039,\"truck-ladder\":58967,\"truck-medical\":61689,\"truck-monster\":63035,\"truck-moving\":62687,\"truck-pickup\":63036,\"truck-plane\":58767,\"truck-plow\":63454,\"truck-ramp-box\":62686,\"truck-ramp-couch\":62685,\"truck-ramp\":62688,\"truck-tow\":58040,\"truck-utensils\":58920,\"truck\":61649,\"trumpet\":63715,\"tty-answer\":58041,\"tty\":61924,\"tugrik-sign\":58042,\"turkey\":63269,\"turkish-lira-sign\":58043,\"turn-down-left\":58161,\"turn-down-right\":58453,\"turn-down\":62398,\"turn-left-down\":58935,\"turn-left-up\":58936,\"turn-left\":58934,\"turn-right\":58937,\"turn-up\":62399,\"turntable\":63716,\"turtle\":63270,\"tv-music\":63718,\"tv-retro\":62465,\"tv\":62060,\"typewriter\":63719,\"u\":85,\"ufo-beam\":57416,\"ufo\":57415,\"umbrella-beach\":62922,\"umbrella-simple\":58044,\"umbrella\":61673,\"underline\":61645,\"unicorn\":63271,\"uniform-martial-arts\":58321,\"union\":63138,\"universal-access\":62106,\"unlock-keyhole\":61758,\"unlock\":61596,\"up-down-left-right\":61618,\"up-down\":62264,\"up-from-bracket\":58768,\"up-from-dotted-line\":58454,\"up-from-line\":62278,\"up-left\":58045,\"up-long\":62220,\"up-right-and-down-left-from-center\":62500,\"up-right-from-square\":62301,\"up-right\":58046,\"up-to-bracket\":58990,\"up-to-dotted-line\":58455,\"up-to-line\":62285,\"up\":62295,\"upload\":61587,\"usb-drive\":63721,\"user-alien\":57418,\"user-astronaut\":62715,\"user-beard-bolt\":59017,\"user-bounty-hunter\":58047,\"user-check\":62716,\"user-chef\":58322,\"user-clock\":62717,\"user-cowboy\":63722,\"user-crown\":63140,\"user-doctor-hair-long\":58457,\"user-doctor-hair\":58456,\"user-doctor-message\":63534,\"user-doctor\":61680,\"user-gear\":62718,\"user-graduate\":62721,\"user-group-crown\":63141,\"user-group-simple\":58883,\"user-group\":62720,\"user-hair-buns\":58323,\"user-hair-long\":58459,\"user-hair-mullet\":58460,\"user-hair\":58458,\"user-headset\":63533,\"user-helmet-safety\":63532,\"user-hoodie\":59018,\"user-injured\":63272,\"user-large-slash\":62714,\"user-large\":62470,\"user-lock\":62722,\"user-magnifying-glass\":58821,\"user-minus\":62723,\"user-music\":63723,\"user-ninja\":62724,\"user-nurse-hair-long\":58462,\"user-nurse-hair\":58461,\"user-nurse\":63535,\"user-pen\":62719,\"user-pilot-tie\":58049,\"user-pilot\":58048,\"user-plus\":62004,\"user-police-tie\":58164,\"user-police\":58163,\"user-robot-xmarks\":58535,\"user-robot\":57419,\"user-secret\":61979,\"user-shakespeare\":58050,\"user-shield\":62725,\"user-slash\":62726,\"user-tag\":62727,\"user-tie-hair-long\":58464,\"user-tie-hair\":58463,\"user-tie\":62728,\"user-unlock\":57432,\"user-visor\":57420,\"user-vneck-hair-long\":58467,\"user-vneck-hair\":58466,\"user-vneck\":58465,\"user-xmark\":62005,\"user\":61447,\"users-between-lines\":58769,\"users-gear\":62729,\"users-line\":58770,\"users-medical\":63536,\"users-rays\":58771,\"users-rectangle\":58772,\"users-slash\":57459,\"users-viewfinder\":58773,\"users\":61632,\"utensils-slash\":58468,\"utensils\":62183,\"utility-pole-double\":58052,\"utility-pole\":58051,\"v\":86,\"vacuum-robot\":57422,\"vacuum\":57421,\"value-absolute\":63142,\"van-shuttle\":62902,\"vault\":58053,\"vector-circle\":58054,\"vector-polygon\":58055,\"vector-square\":62923,\"vent-damper\":58469,\"venus-double\":61990,\"venus-mars\":61992,\"venus\":61985,\"vest-patches\":57478,\"vest\":57477,\"vial-circle-check\":58774,\"vial-virus\":58775,\"vial\":62610,\"vials\":62611,\"video-arrow-down-left\":58056,\"video-arrow-up-right\":58057,\"video-plus\":62689,\"video-slash\":62690,\"video\":61501,\"vihara\":63143,\"violin\":63725,\"virus-covid-slash\":58537,\"virus-covid\":58536,\"virus-slash\":57461,\"virus\":57460,\"viruses\":57462,\"voicemail\":63639,\"volcano\":63344,\"volleyball\":62559,\"volume-high\":61480,\"volume-low\":61479,\"volume-off\":61478,\"volume-slash\":62178,\"volume-xmark\":63145,\"volume\":63144,\"vr-cardboard\":63273,\"w\":87,\"waffle\":58470,\"wagon-covered\":63726,\"walker\":63537,\"walkie-talkie\":63727,\"wallet\":62805,\"wand-magic-sparkles\":58058,\"wand-magic\":61648,\"wand-sparkles\":63275,\"wand\":63274,\"warehouse-full\":62613,\"warehouse\":62612,\"washing-machine\":63640,\"watch-apple\":58059,\"watch-calculator\":63728,\"watch-fitness\":63038,\"watch-smart\":58060,\"watch\":62177,\"water-arrow-down\":63348,\"water-arrow-up\":63349,\"water-ladder\":62917,\"water\":63347,\"watermelon-slice\":58167,\"wave-pulse\":62968,\"wave-sine\":63641,\"wave-square\":63550,\"wave-triangle\":63642,\"wave\":58971,\"waveform-lines\":63730,\"waveform\":63729,\"waves-sine\":58973,\"web-awesome\":59010,\"webhook\":58837,\"weight-hanging\":62925,\"weight-scale\":62614,\"whale\":63276,\"wheat-awn-circle-exclamation\":58776,\"wheat-awn-slash\":58168,\"wheat-awn\":58061,\"wheat-slash\":58169,\"wheat\":63277,\"wheelchair-move\":58062,\"wheelchair\":61843,\"whiskey-glass-ice\":63393,\"whiskey-glass\":63392,\"whistle\":62560,\"wifi-exclamation\":58063,\"wifi-fair\":63147,\"wifi-slash\":63148,\"wifi-weak\":63146,\"wifi\":61931,\"wind-turbine\":63643,\"wind-warning\":63350,\"wind\":63278,\"window-flip\":62479,\"window-frame-open\":57424,\"window-frame\":57423,\"window-maximize\":62160,\"window-minimize\":62161,\"window-restore\":62162,\"window\":62478,\"windsock\":63351,\"wine-bottle\":63279,\"wine-glass-crack\":62651,\"wine-glass-empty\":62926,\"wine-glass\":62691,\"won-sign\":61785,\"worm\":58777,\"wreath-laurel\":58834,\"wreath\":63458,\"wrench-simple\":58065,\"wrench\":61613,\"x-ray\":62615,\"x\":88,\"xmark-large\":58779,\"xmark-to-slot\":63345,\"xmark\":61453,\"xmarks-lines\":58778,\"y\":89,\"yen-sign\":61783,\"yin-yang\":63149,\"z\":90}"
  },
  {
    "path": "packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_sharpLight.json",
    "content": "{\"0\":48,\"1\":49,\"2\":50,\"3\":51,\"4\":52,\"5\":53,\"6\":54,\"7\":55,\"8\":56,\"9\":57,\"00\":58471,\"360-degrees\":58076,\"a\":65,\"abacus\":63040,\"accent-grave\":96,\"acorn\":63150,\"address-book\":62137,\"address-card\":62139,\"air-conditioner\":63732,\"airplay\":57481,\"alarm-clock\":62286,\"alarm-exclamation\":63555,\"alarm-plus\":63556,\"alarm-snooze\":63557,\"album-circle-plus\":58508,\"album-circle-user\":58509,\"album-collection-circle-plus\":58510,\"album-collection-circle-user\":58511,\"album-collection\":63648,\"album\":63647,\"alicorn\":63152,\"alien-8bit\":63734,\"alien\":63733,\"align-center\":61495,\"align-justify\":61497,\"align-left\":61494,\"align-right\":61496,\"align-slash\":63558,\"alt\":57482,\"amp-guitar\":63649,\"ampersand\":38,\"anchor-circle-check\":58538,\"anchor-circle-exclamation\":58539,\"anchor-circle-xmark\":58540,\"anchor-lock\":58541,\"anchor\":61757,\"angel\":63353,\"angle-90\":57485,\"angle-down\":61703,\"angle-left\":61700,\"angle-right\":61701,\"angle-up\":61702,\"angle\":57484,\"angles-down\":61699,\"angles-left\":61696,\"angles-right\":61697,\"angles-up-down\":58893,\"angles-up\":61698,\"ankh\":63044,\"ant\":59008,\"apartment\":58472,\"aperture\":58079,\"apostrophe\":39,\"apple-core\":57487,\"apple-whole\":62929,\"archway\":62807,\"arrow-down-1-9\":61794,\"arrow-down-9-1\":63622,\"arrow-down-a-z\":61789,\"arrow-down-arrow-up\":63619,\"arrow-down-big-small\":63628,\"arrow-down-from-arc\":58900,\"arrow-down-from-bracket\":58983,\"arrow-down-from-dotted-line\":57488,\"arrow-down-from-line\":62277,\"arrow-down-left-and-arrow-up-right-to-center\":57490,\"arrow-down-left\":57489,\"arrow-down-long\":61813,\"arrow-down-right\":57491,\"arrow-down-short-wide\":63620,\"arrow-down-small-big\":63629,\"arrow-down-square-triangle\":63625,\"arrow-down-to-arc\":58542,\"arrow-down-to-bracket\":57492,\"arrow-down-to-dotted-line\":57493,\"arrow-down-to-line\":62269,\"arrow-down-to-square\":57494,\"arrow-down-triangle-square\":63624,\"arrow-down-up-across-line\":58543,\"arrow-down-up-lock\":58544,\"arrow-down-wide-short\":61792,\"arrow-down-z-a\":63617,\"arrow-down\":61539,\"arrow-left-from-arc\":58901,\"arrow-left-from-bracket\":58984,\"arrow-left-from-line\":62276,\"arrow-left-long-to-line\":58324,\"arrow-left-long\":61815,\"arrow-left-to-arc\":58902,\"arrow-left-to-bracket\":58985,\"arrow-left-to-line\":62270,\"arrow-left\":61536,\"arrow-pointer\":62021,\"arrow-progress\":58847,\"arrow-right-arrow-left\":61676,\"arrow-right-from-arc\":58545,\"arrow-right-from-bracket\":61579,\"arrow-right-from-line\":62275,\"arrow-right-long-to-line\":58325,\"arrow-right-long\":61816,\"arrow-right-to-arc\":58546,\"arrow-right-to-bracket\":61584,\"arrow-right-to-city\":58547,\"arrow-right-to-line\":62272,\"arrow-right\":61537,\"arrow-rotate-left\":61666,\"arrow-rotate-right\":61470,\"arrow-trend-down\":57495,\"arrow-trend-up\":57496,\"arrow-turn-down-left\":58081,\"arrow-turn-down-right\":58326,\"arrow-turn-down\":61769,\"arrow-turn-left-down\":58931,\"arrow-turn-left-up\":58932,\"arrow-turn-left\":58930,\"arrow-turn-right\":58933,\"arrow-turn-up\":61768,\"arrow-up-1-9\":61795,\"arrow-up-9-1\":63623,\"arrow-up-a-z\":61790,\"arrow-up-arrow-down\":57497,\"arrow-up-big-small\":63630,\"arrow-up-from-arc\":58548,\"arrow-up-from-bracket\":57498,\"arrow-up-from-dotted-line\":57499,\"arrow-up-from-ground-water\":58549,\"arrow-up-from-line\":62274,\"arrow-up-from-square\":57500,\"arrow-up-from-water-pump\":58550,\"arrow-up-left-from-circle\":57502,\"arrow-up-left\":57501,\"arrow-up-long\":61814,\"arrow-up-right-and-arrow-down-left-from-center\":57504,\"arrow-up-right-dots\":58551,\"arrow-up-right-from-square\":61582,\"arrow-up-right\":57503,\"arrow-up-short-wide\":63621,\"arrow-up-small-big\":63631,\"arrow-up-square-triangle\":63627,\"arrow-up-to-arc\":58903,\"arrow-up-to-bracket\":58986,\"arrow-up-to-dotted-line\":57505,\"arrow-up-to-line\":62273,\"arrow-up-triangle-square\":63626,\"arrow-up-wide-short\":61793,\"arrow-up-z-a\":63618,\"arrow-up\":61538,\"arrows-cross\":57506,\"arrows-down-to-line\":58552,\"arrows-down-to-people\":58553,\"arrows-from-dotted-line\":57507,\"arrows-from-line\":57508,\"arrows-left-right-to-line\":58554,\"arrows-left-right\":61566,\"arrows-maximize\":62237,\"arrows-minimize\":57509,\"arrows-repeat-1\":62310,\"arrows-repeat\":62308,\"arrows-retweet\":62305,\"arrows-rotate-reverse\":58928,\"arrows-rotate\":61473,\"arrows-spin\":58555,\"arrows-split-up-and-left\":58556,\"arrows-to-circle\":58557,\"arrows-to-dot\":58558,\"arrows-to-dotted-line\":57510,\"arrows-to-eye\":58559,\"arrows-to-line\":57511,\"arrows-turn-right\":58560,\"arrows-turn-to-dots\":58561,\"arrows-up-down-left-right\":61511,\"arrows-up-down\":61565,\"arrows-up-to-line\":58562,\"asterisk\":42,\"at\":64,\"atom-simple\":62931,\"atom\":62930,\"audio-description-slash\":57512,\"audio-description\":62110,\"austral-sign\":57513,\"avocado\":57514,\"award-simple\":57515,\"award\":62809,\"axe-battle\":63155,\"axe\":63154,\"b\":66,\"baby-carriage\":63357,\"baby\":63356,\"backpack\":62932,\"backward-fast\":61513,\"backward-step\":61512,\"backward\":61514,\"bacon\":63461,\"bacteria\":57433,\"bacterium\":57434,\"badge-check\":62262,\"badge-dollar\":63045,\"badge-percent\":63046,\"badge-sheriff\":63650,\"badge\":62261,\"badger-honey\":63156,\"badminton\":58170,\"bag-seedling\":58866,\"bag-shopping-minus\":58960,\"bag-shopping-plus\":58961,\"bag-shopping\":62096,\"bagel\":58327,\"bags-shopping\":63559,\"baguette\":58328,\"bahai\":63078,\"baht-sign\":57516,\"ball-pile\":63358,\"balloon\":58083,\"balloons\":58084,\"ballot-check\":63283,\"ballot\":63282,\"ban-bug\":63481,\"ban-parking\":62998,\"ban-smoking\":62797,\"ban\":61534,\"banana\":58085,\"bandage\":62562,\"bangladeshi-taka-sign\":58086,\"banjo\":63651,\"barcode-read\":62564,\"barcode-scan\":62565,\"barcode\":61482,\"bars-filter\":57517,\"bars-progress\":63528,\"bars-sort\":57518,\"bars-staggered\":62800,\"bars\":61641,\"baseball-bat-ball\":62514,\"baseball\":62515,\"basket-shopping-minus\":58962,\"basket-shopping-plus\":58963,\"basket-shopping-simple\":57519,\"basket-shopping\":62097,\"basketball-hoop\":62517,\"basketball\":62516,\"bat\":63157,\"bath\":62157,\"battery-bolt\":62326,\"battery-empty\":62020,\"battery-exclamation\":57520,\"battery-full\":62016,\"battery-half\":62018,\"battery-low\":57521,\"battery-quarter\":62019,\"battery-slash\":62327,\"battery-three-quarters\":62017,\"bed-bunk\":63736,\"bed-empty\":63737,\"bed-front\":63735,\"bed-pulse\":62599,\"bed\":62006,\"bee\":57522,\"beer-mug-empty\":61692,\"beer-mug\":57523,\"bell-concierge\":62818,\"bell-exclamation\":63560,\"bell-on\":63738,\"bell-plus\":63561,\"bell-ring\":58924,\"bell-school-slash\":62934,\"bell-school\":62933,\"bell-slash\":61942,\"bell\":61683,\"bells\":63359,\"bench-tree\":58087,\"bezier-curve\":62811,\"bicycle\":61958,\"billboard\":58829,\"bin-bottles-recycle\":58870,\"bin-bottles\":58869,\"bin-recycle\":58871,\"binary-circle-check\":58172,\"binary-lock\":58173,\"binary-slash\":58174,\"binary\":58171,\"binoculars\":61925,\"biohazard\":63360,\"bird\":58473,\"bitcoin-sign\":57524,\"blanket-fire\":58330,\"blanket\":62616,\"blender-phone\":63158,\"blender\":62743,\"blinds-open\":63740,\"blinds-raised\":63741,\"blinds\":63739,\"block-brick-fire\":58332,\"block-brick\":58331,\"block-question\":58333,\"block-quote\":57525,\"block\":58474,\"blog\":63361,\"blueberries\":58088,\"bluetooth\":62099,\"bold\":61490,\"bolt-auto\":57526,\"bolt-lightning\":57527,\"bolt-slash\":57528,\"bolt\":61671,\"bomb\":61922,\"bone-break\":62936,\"bone\":62935,\"bong\":62812,\"book-arrow-right\":57529,\"book-arrow-up\":57530,\"book-atlas\":62808,\"book-bible\":63047,\"book-blank\":62937,\"book-bookmark\":57531,\"book-circle-arrow-right\":57532,\"book-circle-arrow-up\":57533,\"book-copy\":57534,\"book-font\":57535,\"book-heart\":62617,\"book-journal-whills\":63082,\"book-medical\":63462,\"book-open-cover\":57536,\"book-open-reader\":62938,\"book-open\":62744,\"book-quran\":63111,\"book-section\":57537,\"book-skull\":63159,\"book-sparkles\":63160,\"book-tanakh\":63527,\"book-user\":63463,\"book\":61485,\"bookmark-slash\":57538,\"bookmark\":61486,\"books-medical\":63464,\"books\":62939,\"boombox\":63653,\"boot-heeled\":58175,\"boot\":63362,\"booth-curtain\":63284,\"border-all\":63564,\"border-bottom-right\":63572,\"border-bottom\":63565,\"border-center-h\":63644,\"border-center-v\":63645,\"border-inner\":63566,\"border-left\":63567,\"border-none\":63568,\"border-outer\":63569,\"border-right\":63570,\"border-top-left\":63571,\"border-top\":63573,\"bore-hole\":58563,\"bottle-baby\":58995,\"bottle-droplet\":58564,\"bottle-water\":58565,\"bow-arrow\":63161,\"bowl-chopsticks-noodles\":58090,\"bowl-chopsticks\":58089,\"bowl-food\":58566,\"bowl-hot\":63523,\"bowl-rice\":58091,\"bowl-scoop\":58334,\"bowl-scoops\":58335,\"bowl-soft-serve\":58475,\"bowl-spoon\":58336,\"bowling-ball-pin\":57539,\"bowling-ball\":62518,\"bowling-pins\":62519,\"box-archive\":61831,\"box-ballot\":63285,\"box-check\":62567,\"box-circle-check\":57540,\"box-dollar\":62624,\"box-heart\":62621,\"box-open-full\":62620,\"box-open\":62622,\"box-taped\":62618,\"box-tissue\":57435,\"box\":62566,\"boxes-packing\":58567,\"boxes-stacked\":62568,\"boxing-glove\":62520,\"bracket-curly-right\":125,\"bracket-curly\":123,\"bracket-round-right\":41,\"bracket-round\":40,\"bracket-square-right\":93,\"bracket-square\":91,\"brackets-curly\":63466,\"brackets-round\":57541,\"brackets-square\":63465,\"braille\":62113,\"brain-arrow-curved-right\":63095,\"brain-circuit\":57542,\"brain\":62940,\"brake-warning\":57543,\"brazilian-real-sign\":58476,\"bread-loaf\":63467,\"bread-slice-butter\":58337,\"bread-slice\":63468,\"bridge-circle-check\":58569,\"bridge-circle-exclamation\":58570,\"bridge-circle-xmark\":58571,\"bridge-lock\":58572,\"bridge-suspension\":58573,\"bridge-water\":58574,\"bridge\":58568,\"briefcase-arrow-right\":58098,\"briefcase-blank\":57544,\"briefcase-medical\":62569,\"briefcase\":61617,\"brightness-low\":57546,\"brightness\":57545,\"bring-forward\":63574,\"bring-front\":63575,\"broccoli\":58338,\"broom-ball\":62552,\"broom-wide\":58833,\"broom\":62746,\"browser\":62334,\"browsers\":57547,\"brush\":62813,\"bucket\":58575,\"bug-slash\":58512,\"bug\":61832,\"bugs\":58576,\"building-circle-arrow-right\":58577,\"building-circle-check\":58578,\"building-circle-exclamation\":58579,\"building-circle-xmark\":58580,\"building-columns\":61852,\"building-flag\":58581,\"building-lock\":58582,\"building-magnifying-glass\":58908,\"building-memo\":58910,\"building-ngo\":58583,\"building-shield\":58584,\"building-un\":58585,\"building-user\":58586,\"building-wheat\":58587,\"building\":61869,\"buildings\":57548,\"bulldozer\":58965,\"bullhorn\":61601,\"bullseye-arrow\":63048,\"bullseye-pointer\":63049,\"bullseye\":61760,\"buoy-mooring\":58806,\"buoy\":58805,\"burger-cheese\":63473,\"burger-fries\":57549,\"burger-glass\":57550,\"burger-lettuce\":58339,\"burger-soda\":63576,\"burger\":63493,\"burrito\":63469,\"burst\":58588,\"bus-school\":62941,\"bus-simple\":62814,\"bus\":61959,\"business-time\":63050,\"butter\":58340,\"c\":67,\"cabin\":58477,\"cabinet-filing\":63051,\"cable-car\":63450,\"cactus\":63655,\"caduceus\":59009,\"cake-candles\":61949,\"cake-slice\":58341,\"calculator-simple\":63052,\"calculator\":61932,\"calendar-arrow-down\":57552,\"calendar-arrow-up\":57553,\"calendar-check\":62068,\"calendar-circle-exclamation\":58478,\"calendar-circle-minus\":58479,\"calendar-circle-plus\":58480,\"calendar-circle-user\":58481,\"calendar-clock\":57554,\"calendar-day\":63363,\"calendar-days\":61555,\"calendar-exclamation\":62260,\"calendar-heart\":57555,\"calendar-image\":57556,\"calendar-lines-pen\":58482,\"calendar-lines\":57557,\"calendar-minus\":62066,\"calendar-pen\":62259,\"calendar-plus\":62065,\"calendar-range\":57558,\"calendar-star\":63286,\"calendar-users\":58850,\"calendar-week\":63364,\"calendar-xmark\":62067,\"calendar\":61747,\"calendars\":57559,\"camcorder\":63656,\"camera-cctv\":63660,\"camera-movie\":63657,\"camera-polaroid\":63658,\"camera-retro\":61571,\"camera-rotate\":57560,\"camera-security\":63742,\"camera-slash\":57561,\"camera-viewfinder\":57562,\"camera-web-slash\":63539,\"camera-web\":63538,\"camera\":61488,\"campfire\":63162,\"campground\":63163,\"can-food\":58342,\"candle-holder\":63164,\"candy-bar\":58344,\"candy-cane\":63366,\"candy-corn\":63165,\"candy\":58343,\"cannabis\":62815,\"cannon\":58946,\"capsules\":62571,\"car-battery\":62943,\"car-bolt\":58177,\"car-building\":63577,\"car-bump\":62944,\"car-burst\":62945,\"car-bus\":63578,\"car-circle-bolt\":58178,\"car-garage\":62946,\"car-mirrors\":58179,\"car-on\":58589,\"car-rear\":62942,\"car-side-bolt\":58180,\"car-side\":62948,\"car-tilt\":62949,\"car-tunnel\":58590,\"car-wash\":62950,\"car-wrench\":62947,\"car\":61881,\"caravan-simple\":57344,\"caravan\":63743,\"card-club\":58345,\"card-diamond\":58346,\"card-heart\":58347,\"card-spade\":58348,\"cards-blank\":58591,\"cards\":58349,\"caret-down\":61655,\"caret-left\":61657,\"caret-right\":61658,\"caret-up\":61656,\"carpool\":59036,\"carrot\":63367,\"cars\":63579,\"cart-arrow-down\":61976,\"cart-arrow-up\":58350,\"cart-circle-arrow-down\":58351,\"cart-circle-arrow-up\":58352,\"cart-circle-check\":58353,\"cart-circle-exclamation\":58354,\"cart-circle-plus\":58355,\"cart-circle-xmark\":58356,\"cart-flatbed-boxes\":62581,\"cart-flatbed-empty\":62582,\"cart-flatbed-suitcase\":62877,\"cart-flatbed\":62580,\"cart-minus\":57563,\"cart-plus\":61975,\"cart-shopping-fast\":57564,\"cart-shopping\":61562,\"cart-xmark\":57565,\"cash-register\":63368,\"cassette-betamax\":63652,\"cassette-tape\":63659,\"cassette-vhs\":63724,\"castle\":57566,\"cat-space\":57345,\"cat\":63166,\"cauldron\":63167,\"cedi-sign\":57567,\"cent-sign\":58357,\"certificate\":61603,\"chair-office\":63169,\"chair\":63168,\"chalkboard-user\":62748,\"chalkboard\":62747,\"champagne-glass\":63390,\"champagne-glasses\":63391,\"charging-station\":62951,\"chart-area\":61950,\"chart-bar\":61568,\"chart-bullet\":57569,\"chart-candlestick\":57570,\"chart-column\":57571,\"chart-diagram\":59029,\"chart-fft\":59038,\"chart-gantt\":57572,\"chart-kanban\":58959,\"chart-line-down\":63053,\"chart-line-up-down\":58839,\"chart-line-up\":57573,\"chart-line\":61953,\"chart-mixed-up-circle-currency\":58840,\"chart-mixed-up-circle-dollar\":58841,\"chart-mixed\":63043,\"chart-network\":63370,\"chart-pie-simple-circle-currency\":58884,\"chart-pie-simple-circle-dollar\":58885,\"chart-pie-simple\":63054,\"chart-pie\":61952,\"chart-pyramid\":57574,\"chart-radar\":57575,\"chart-scatter-3d\":57576,\"chart-scatter-bubble\":57577,\"chart-scatter\":63470,\"chart-simple-horizontal\":58484,\"chart-simple\":58483,\"chart-sine\":59037,\"chart-tree-map\":57578,\"chart-user\":63139,\"chart-waterfall\":57579,\"check-double\":62816,\"check-to-slot\":63346,\"check\":61452,\"cheese-swiss\":63472,\"cheese\":63471,\"cherries\":57580,\"chess-bishop-piece\":62523,\"chess-bishop\":62522,\"chess-board\":62524,\"chess-clock-flip\":62526,\"chess-clock\":62525,\"chess-king-piece\":62528,\"chess-king\":62527,\"chess-knight-piece\":62530,\"chess-knight\":62529,\"chess-pawn-piece\":62532,\"chess-pawn\":62531,\"chess-queen-piece\":62534,\"chess-queen\":62533,\"chess-rook-piece\":62536,\"chess-rook\":62535,\"chess\":62521,\"chestnut\":58358,\"chevron-down\":61560,\"chevron-left\":61523,\"chevron-right\":61524,\"chevron-up\":61559,\"chevrons-down\":62242,\"chevrons-left\":62243,\"chevrons-right\":62244,\"chevrons-up\":62245,\"chf-sign\":58882,\"child-combatant\":58592,\"child-dress\":58780,\"child-reaching\":58781,\"child\":61870,\"children\":58593,\"chimney\":63371,\"chopsticks\":58359,\"church\":62749,\"circle-0\":57581,\"circle-1\":57582,\"circle-2\":57583,\"circle-3\":57584,\"circle-4\":57585,\"circle-5\":57586,\"circle-6\":57587,\"circle-7\":57588,\"circle-8\":57589,\"circle-9\":57590,\"circle-a\":57591,\"circle-ampersand\":57592,\"circle-arrow-down-left\":57593,\"circle-arrow-down-right\":57594,\"circle-arrow-down\":61611,\"circle-arrow-left\":61608,\"circle-arrow-right\":61609,\"circle-arrow-up-left\":57595,\"circle-arrow-up-right\":57596,\"circle-arrow-up\":61610,\"circle-b\":57597,\"circle-bolt\":57598,\"circle-book-open\":57599,\"circle-bookmark\":57600,\"circle-c\":57601,\"circle-calendar\":57602,\"circle-camera\":57603,\"circle-caret-down\":62253,\"circle-caret-left\":62254,\"circle-caret-right\":62256,\"circle-caret-up\":62257,\"circle-check\":61528,\"circle-chevron-down\":61754,\"circle-chevron-left\":61751,\"circle-chevron-right\":61752,\"circle-chevron-up\":61753,\"circle-d\":57604,\"circle-dashed\":57605,\"circle-divide\":57606,\"circle-dollar-to-slot\":62649,\"circle-dollar\":62184,\"circle-dot\":61842,\"circle-down-left\":57607,\"circle-down-right\":57608,\"circle-down\":62296,\"circle-e\":57609,\"circle-ellipsis-vertical\":57611,\"circle-ellipsis\":57610,\"circle-envelope\":57612,\"circle-euro\":58830,\"circle-exclamation-check\":57613,\"circle-exclamation\":61546,\"circle-f\":57614,\"circle-g\":57615,\"circle-gf\":59007,\"circle-h\":62590,\"circle-half-stroke\":61506,\"circle-half\":57616,\"circle-heart\":62663,\"circle-i\":57617,\"circle-info\":61530,\"circle-j\":57618,\"circle-k\":57619,\"circle-l\":57620,\"circle-left\":62297,\"circle-location-arrow\":62978,\"circle-m\":57621,\"circle-microphone-lines\":57623,\"circle-microphone\":57622,\"circle-minus\":61526,\"circle-n\":57624,\"circle-nodes\":58594,\"circle-notch\":61902,\"circle-o\":57625,\"circle-p\":57626,\"circle-parking\":62997,\"circle-pause\":62091,\"circle-phone-flip\":57628,\"circle-phone-hangup\":57629,\"circle-phone\":57627,\"circle-play\":61764,\"circle-plus\":61525,\"circle-q\":57630,\"circle-quarter-stroke\":58835,\"circle-quarter\":57631,\"circle-quarters\":58360,\"circle-question\":61529,\"circle-r\":57632,\"circle-radiation\":63418,\"circle-right\":62298,\"circle-s\":57633,\"circle-small\":57634,\"circle-sort-down\":57393,\"circle-sort-up\":57394,\"circle-sort\":57392,\"circle-star\":57635,\"circle-sterling\":58831,\"circle-stop\":62093,\"circle-t\":57636,\"circle-three-quarters-stroke\":58836,\"circle-three-quarters\":57637,\"circle-trash\":57638,\"circle-u\":57639,\"circle-up-left\":57640,\"circle-up-right\":57641,\"circle-up\":62299,\"circle-user\":62141,\"circle-v\":57642,\"circle-video\":57643,\"circle-w\":57644,\"circle-waveform-lines\":57645,\"circle-wifi-circle-wifi\":59006,\"circle-wifi\":59005,\"circle-x\":57646,\"circle-xmark\":61527,\"circle-y\":57647,\"circle-yen\":58832,\"circle-z\":57648,\"circle\":61713,\"circles-overlap-3\":59041,\"circles-overlap\":58880,\"citrus-slice\":58101,\"citrus\":58100,\"city\":63055,\"clapperboard-play\":57650,\"clapperboard\":57649,\"clarinet\":63661,\"claw-marks\":63170,\"clipboard-check\":62572,\"clipboard-list-check\":63287,\"clipboard-list\":62573,\"clipboard-medical\":57651,\"clipboard-prescription\":62952,\"clipboard-question\":58595,\"clipboard-user\":63475,\"clipboard\":62248,\"clock-desk\":57652,\"clock-eight-thirty\":58182,\"clock-eight\":58181,\"clock-eleven-thirty\":58184,\"clock-eleven\":58183,\"clock-five-thirty\":58186,\"clock-five\":58185,\"clock-four-thirty\":58187,\"clock-nine-thirty\":58189,\"clock-nine\":58188,\"clock-one-thirty\":58191,\"clock-one\":58190,\"clock-rotate-left\":61914,\"clock-seven-thirty\":58193,\"clock-seven\":58192,\"clock-six-thirty\":58195,\"clock-six\":58194,\"clock-ten-thirty\":58197,\"clock-ten\":58196,\"clock-three-thirty\":58199,\"clock-three\":58198,\"clock-twelve-thirty\":58201,\"clock-twelve\":58200,\"clock-two-thirty\":58203,\"clock-two\":58202,\"clock\":61463,\"clone\":62029,\"closed-captioning-slash\":57653,\"closed-captioning\":61962,\"clothes-hanger\":57654,\"cloud-arrow-down\":61677,\"cloud-arrow-up\":61678,\"cloud-binary\":58881,\"cloud-bolt-moon\":63341,\"cloud-bolt-sun\":63342,\"cloud-bolt\":63340,\"cloud-check\":58204,\"cloud-drizzle\":63288,\"cloud-exclamation\":58513,\"cloud-fog\":63310,\"cloud-hail-mixed\":63290,\"cloud-hail\":63289,\"cloud-meatball\":63291,\"cloud-minus\":58205,\"cloud-moon-rain\":63292,\"cloud-moon\":63171,\"cloud-music\":63662,\"cloud-plus\":58206,\"cloud-question\":58514,\"cloud-rain\":63293,\"cloud-rainbow\":63294,\"cloud-showers-heavy\":63296,\"cloud-showers-water\":58596,\"cloud-showers\":63295,\"cloud-slash\":57655,\"cloud-sleet\":63297,\"cloud-snow\":63298,\"cloud-sun-rain\":63299,\"cloud-sun\":63172,\"cloud-word\":57656,\"cloud-xmark\":58207,\"cloud\":61634,\"clouds-moon\":63301,\"clouds-sun\":63302,\"clouds\":63300,\"clover\":57657,\"club\":62247,\"coconut\":58102,\"code-branch\":61734,\"code-commit\":62342,\"code-compare\":57658,\"code-fork\":57659,\"code-merge\":62343,\"code-pull-request-closed\":58361,\"code-pull-request-draft\":58362,\"code-pull-request\":57660,\"code-simple\":57661,\"code\":61729,\"coffee-bean\":57662,\"coffee-beans\":57663,\"coffee-pot\":57346,\"coffin-cross\":57425,\"coffin\":63174,\"coin-blank\":58363,\"coin-front\":58364,\"coin-vertical\":58365,\"coin\":63580,\"coins\":62750,\"colon-sign\":57664,\"colon\":58,\"columns-3\":58209,\"comet\":57347,\"comma\":44,\"command\":57666,\"comment-arrow-down\":57667,\"comment-arrow-up-right\":57669,\"comment-arrow-up\":57668,\"comment-captions\":57670,\"comment-check\":62636,\"comment-code\":57671,\"comment-dollar\":63057,\"comment-dots\":62637,\"comment-exclamation\":62639,\"comment-heart\":58824,\"comment-image\":57672,\"comment-lines\":62640,\"comment-medical\":63477,\"comment-middle-top\":57674,\"comment-middle\":57673,\"comment-minus\":62641,\"comment-music\":63664,\"comment-nodes\":59030,\"comment-pen\":62638,\"comment-plus\":62642,\"comment-question\":57675,\"comment-quote\":57676,\"comment-slash\":62643,\"comment-smile\":62644,\"comment-sms\":63437,\"comment-text\":57677,\"comment-xmark\":62645,\"comment\":61557,\"comments-dollar\":63059,\"comments-question-check\":57679,\"comments-question\":57678,\"comments\":61574,\"compact-disc\":62751,\"compass-drafting\":62824,\"compass-slash\":62953,\"compass\":61774,\"compress-wide\":62246,\"compress\":61542,\"computer-classic\":63665,\"computer-mouse-scrollwheel\":63693,\"computer-mouse\":63692,\"computer-speaker\":63666,\"computer\":58597,\"container-storage\":62647,\"conveyor-belt-arm\":58872,\"conveyor-belt-boxes\":62575,\"conveyor-belt-empty\":57680,\"conveyor-belt\":62574,\"cookie-bite\":62820,\"cookie\":62819,\"copy\":61637,\"copyright\":61945,\"corn\":63175,\"corner\":58366,\"couch\":62648,\"court-sport\":58947,\"cow\":63176,\"cowbell-circle-plus\":63668,\"cowbell\":63667,\"crab\":58367,\"crate-apple\":63153,\"crate-empty\":57681,\"credit-card-blank\":62345,\"credit-card-front\":62346,\"credit-card\":61597,\"cricket-bat-ball\":62537,\"croissant\":63478,\"crop-simple\":62821,\"crop\":61733,\"cross\":63060,\"crosshairs-simple\":58783,\"crosshairs\":61531,\"crow\":62752,\"crown\":62753,\"crutch\":63479,\"crutches\":63480,\"cruzeiro-sign\":57682,\"crystal-ball\":58210,\"cube\":61874,\"cubes-stacked\":58598,\"cubes\":61875,\"cucumber\":58369,\"cup-straw-swoosh\":58212,\"cup-straw\":58211,\"cup-togo\":63173,\"cupcake\":58370,\"curling-stone\":62538,\"custard\":58371,\"d\":68,\"dagger\":63179,\"dash\":58372,\"database\":61888,\"deer-rudolph\":63375,\"deer\":63374,\"delete-left\":62810,\"delete-right\":57684,\"democrat\":63303,\"desktop-arrow-down\":57685,\"desktop\":62352,\"dharmachakra\":63061,\"diagram-cells\":58485,\"diagram-lean-canvas\":57686,\"diagram-nested\":57687,\"diagram-next\":58486,\"diagram-predecessor\":58487,\"diagram-previous\":58488,\"diagram-project\":62786,\"diagram-sankey\":57688,\"diagram-subtask\":58489,\"diagram-successor\":58490,\"diagram-venn\":57690,\"dial-high\":57692,\"dial-low\":57693,\"dial-max\":57694,\"dial-med-low\":57696,\"dial-med\":57695,\"dial-min\":57697,\"dial-off\":57698,\"dial\":57691,\"diamond-exclamation\":58373,\"diamond-half-stroke\":58808,\"diamond-half\":58807,\"diamond-turn-right\":62955,\"diamond\":61977,\"diamonds-4\":59019,\"dice-d10\":63181,\"dice-d12\":63182,\"dice-d20\":63183,\"dice-d4\":63184,\"dice-d6\":63185,\"dice-d8\":63186,\"dice-five\":62755,\"dice-four\":62756,\"dice-one\":62757,\"dice-six\":62758,\"dice-three\":62759,\"dice-two\":62760,\"dice\":62754,\"dinosaur\":58878,\"diploma\":62954,\"disc-drive\":63669,\"disease\":63482,\"display-arrow-down\":57700,\"display-chart-up-circle-currency\":58853,\"display-chart-up-circle-dollar\":58854,\"display-chart-up\":58851,\"display-code\":57701,\"display-medical\":57702,\"display-slash\":58106,\"display\":57699,\"distribute-spacing-horizontal\":58213,\"distribute-spacing-vertical\":58214,\"ditto\":34,\"divide\":62761,\"dna\":62577,\"do-not-enter\":62956,\"dog-leashed\":63188,\"dog\":63187,\"dollar-sign\":36,\"dolly-empty\":62579,\"dolly\":62578,\"dolphin\":57704,\"dong-sign\":57705,\"donut\":58374,\"door-closed\":62762,\"door-open\":62763,\"dove\":62650,\"down-from-bracket\":58987,\"down-from-dotted-line\":58375,\"down-from-line\":62281,\"down-left-and-up-right-to-center\":62498,\"down-left\":57706,\"down-long\":62217,\"down-right\":57707,\"down-to-bracket\":58599,\"down-to-dotted-line\":58376,\"down-to-line\":62282,\"down\":62292,\"download\":61465,\"dragon\":63189,\"draw-circle\":62957,\"draw-polygon\":62958,\"draw-square\":62959,\"dreidel\":63378,\"drone-front\":63584,\"drone\":63583,\"droplet-degree\":63304,\"droplet-percent\":63312,\"droplet-slash\":62919,\"droplet\":61507,\"drum-steelpan\":62826,\"drum\":62825,\"drumstick-bite\":63191,\"drumstick\":63190,\"dryer-heat\":63586,\"dryer\":63585,\"duck\":63192,\"dumbbell\":62539,\"dumpster-fire\":63380,\"dumpster\":63379,\"dungeon\":63193,\"e\":69,\"ear-deaf\":62116,\"ear-listen\":62114,\"ear-muffs\":63381,\"ear\":62960,\"earth-africa\":62844,\"earth-americas\":62845,\"earth-asia\":62846,\"earth-europe\":63394,\"earth-oceania\":58491,\"eclipse\":63305,\"egg-fried\":63484,\"egg\":63483,\"eggplant\":57708,\"eject\":61522,\"elephant\":63194,\"elevator\":57709,\"ellipsis-stroke-vertical\":62364,\"ellipsis-stroke\":62363,\"ellipsis-vertical\":61762,\"ellipsis\":61761,\"empty-set\":63062,\"engine-warning\":62962,\"engine\":57710,\"envelope-circle-check\":58600,\"envelope-dot\":57711,\"envelope-open-dollar\":63063,\"envelope-open-text\":63064,\"envelope-open\":62134,\"envelope\":61664,\"envelopes-bulk\":63092,\"envelopes\":57712,\"equals\":61,\"eraser\":61741,\"escalator\":57713,\"ethernet\":63382,\"euro-sign\":61779,\"excavator\":58966,\"exclamation\":33,\"expand-wide\":62240,\"expand\":61541,\"explosion\":58601,\"eye-dropper-full\":57714,\"eye-dropper-half\":57715,\"eye-dropper\":61947,\"eye-evil\":63195,\"eye-low-vision\":62120,\"eye-slash\":61552,\"eye\":61550,\"eyes\":58215,\"f\":70,\"face-angry-horns\":58216,\"face-angry\":62806,\"face-anguished\":58217,\"face-anxious-sweat\":58218,\"face-astonished\":58219,\"face-awesome\":58377,\"face-beam-hand-over-mouth\":58492,\"face-clouds\":58493,\"face-confounded\":58220,\"face-confused\":58221,\"face-cowboy-hat\":58222,\"face-diagonal-mouth\":58494,\"face-disappointed\":58223,\"face-disguise\":58224,\"face-dizzy\":62823,\"face-dotted\":58495,\"face-downcast-sweat\":58225,\"face-drooling\":58226,\"face-exhaling\":58496,\"face-explode\":58110,\"face-expressionless\":58227,\"face-eyes-xmarks\":58228,\"face-fearful\":58229,\"face-flushed\":62841,\"face-frown-open\":62842,\"face-frown-slight\":58230,\"face-frown\":61721,\"face-glasses\":58231,\"face-grimace\":62847,\"face-grin-beam-sweat\":62851,\"face-grin-beam\":62850,\"face-grin-hearts\":62852,\"face-grin-squint-tears\":62854,\"face-grin-squint\":62853,\"face-grin-stars\":62855,\"face-grin-tears\":62856,\"face-grin-tongue-squint\":62858,\"face-grin-tongue-wink\":62859,\"face-grin-tongue\":62857,\"face-grin-wide\":62849,\"face-grin-wink\":62860,\"face-grin\":62848,\"face-hand-over-mouth\":58232,\"face-hand-peeking\":58497,\"face-hand-yawn\":58233,\"face-head-bandage\":58234,\"face-holding-back-tears\":58498,\"face-hushed\":58235,\"face-icicles\":58236,\"face-kiss-beam\":62871,\"face-kiss-closed-eyes\":58237,\"face-kiss-wink-heart\":62872,\"face-kiss\":62870,\"face-laugh-beam\":62874,\"face-laugh-squint\":62875,\"face-laugh-wink\":62876,\"face-laugh\":62873,\"face-lying\":58238,\"face-mask\":58239,\"face-meh-blank\":62884,\"face-meh\":61722,\"face-melting\":58499,\"face-monocle\":58240,\"face-nauseated\":58241,\"face-nose-steam\":58242,\"face-party\":58243,\"face-pensive\":58244,\"face-persevering\":58245,\"face-pleading\":58246,\"face-pouting\":58247,\"face-raised-eyebrow\":58248,\"face-relieved\":58249,\"face-rolling-eyes\":62885,\"face-sad-cry\":62899,\"face-sad-sweat\":58250,\"face-sad-tear\":62900,\"face-saluting\":58500,\"face-scream\":58251,\"face-shush\":58252,\"face-sleeping\":58253,\"face-sleepy\":58254,\"face-smile-beam\":62904,\"face-smile-halo\":58255,\"face-smile-hearts\":58256,\"face-smile-horns\":58257,\"face-smile-plus\":62905,\"face-smile-relaxed\":58258,\"face-smile-tear\":58259,\"face-smile-tongue\":58260,\"face-smile-upside-down\":58261,\"face-smile-wink\":62682,\"face-smile\":61720,\"face-smiling-hands\":58262,\"face-smirking\":58263,\"face-spiral-eyes\":58501,\"face-sunglasses\":58264,\"face-surprise\":62914,\"face-swear\":58265,\"face-thermometer\":58266,\"face-thinking\":58267,\"face-tired\":62920,\"face-tissue\":58268,\"face-tongue-money\":58269,\"face-tongue-sweat\":58270,\"face-unamused\":58271,\"face-viewfinder\":58111,\"face-vomit\":58272,\"face-weary\":58273,\"face-woozy\":58274,\"face-worried\":58275,\"face-zany\":58276,\"face-zipper\":58277,\"falafel\":58378,\"family-dress\":58113,\"family-pants\":58114,\"family\":58112,\"fan-table\":57348,\"fan\":63587,\"farm\":63588,\"faucet-drip\":57350,\"faucet\":57349,\"fax\":61868,\"feather-pointed\":62827,\"feather\":62765,\"fence\":58115,\"ferris-wheel\":57716,\"ferry\":58602,\"field-hockey-stick-ball\":62540,\"file-arrow-down\":62829,\"file-arrow-up\":62836,\"file-audio\":61895,\"file-binary\":57717,\"file-cad\":58994,\"file-certificate\":62963,\"file-chart-column\":63065,\"file-chart-pie\":63066,\"file-check\":62230,\"file-circle-check\":58784,\"file-circle-exclamation\":58603,\"file-circle-info\":58515,\"file-circle-minus\":58605,\"file-circle-plus\":58516,\"file-circle-question\":58607,\"file-circle-xmark\":58785,\"file-code\":61897,\"file-contract\":62828,\"file-csv\":63197,\"file-dashed-line\":63607,\"file-doc\":58861,\"file-eps\":58948,\"file-excel\":61891,\"file-exclamation\":62234,\"file-export\":62830,\"file-fragment\":59031,\"file-gif\":58949,\"file-half-dashed\":59032,\"file-heart\":57718,\"file-image\":61893,\"file-import\":62831,\"file-invoice-dollar\":62833,\"file-invoice\":62832,\"file-jpg\":58950,\"file-lines\":61788,\"file-lock\":58278,\"file-magnifying-glass\":63589,\"file-medical\":62583,\"file-minus\":62232,\"file-mov\":58951,\"file-mp3\":58952,\"file-mp4\":58953,\"file-music\":63670,\"file-pdf\":61889,\"file-pen\":62236,\"file-plus-minus\":57719,\"file-plus\":62233,\"file-png\":58982,\"file-powerpoint\":61892,\"file-ppt\":58954,\"file-prescription\":62834,\"file-shield\":58608,\"file-signature\":62835,\"file-slash\":58279,\"file-spreadsheet\":63067,\"file-svg\":58955,\"file-user\":63068,\"file-vector\":58956,\"file-video\":61896,\"file-waveform\":62584,\"file-word\":61890,\"file-xls\":58957,\"file-xmark\":62231,\"file-xml\":58964,\"file-zip\":58862,\"file-zipper\":61894,\"file\":61787,\"files-medical\":63485,\"files\":57720,\"fill-drip\":62838,\"fill\":62837,\"film-canister\":63671,\"film-simple\":62368,\"film-slash\":57721,\"film\":61448,\"films\":57722,\"filter-circle-dollar\":63074,\"filter-circle-xmark\":57723,\"filter-list\":57724,\"filter-slash\":57725,\"filter\":61616,\"filters\":57726,\"fingerprint\":62839,\"fire-burner\":58609,\"fire-extinguisher\":61748,\"fire-flame-curved\":63460,\"fire-flame-simple\":62570,\"fire-flame\":63199,\"fire-hydrant\":57727,\"fire-smoke\":63307,\"fire\":61549,\"fireplace\":63386,\"fish-bones\":58116,\"fish-cooked\":63486,\"fish-fins\":58610,\"fish\":62840,\"fishing-rod\":58280,\"flag-checkered\":61726,\"flag-pennant\":62550,\"flag-swallowtail\":63308,\"flag-usa\":63309,\"flag\":61476,\"flashlight\":63672,\"flask-gear\":58865,\"flask-round-poison\":63200,\"flask-round-potion\":63201,\"flask-vial\":58611,\"flask\":61635,\"flatbread-stuffed\":58380,\"flatbread\":58379,\"floppy-disk-circle-arrow-right\":57728,\"floppy-disk-circle-xmark\":57729,\"floppy-disk-pen\":57730,\"floppy-disk\":61639,\"floppy-disks\":57731,\"florin-sign\":57732,\"flower-daffodil\":63488,\"flower-tulip\":63489,\"flower\":63487,\"flute\":63673,\"flux-capacitor\":63674,\"flying-disc\":58281,\"folder-arrow-down\":57427,\"folder-arrow-up\":57428,\"folder-bookmark\":57734,\"folder-check\":58958,\"folder-closed\":57733,\"folder-gear\":57735,\"folder-grid\":57736,\"folder-heart\":57737,\"folder-image\":57738,\"folder-magnifying-glass\":57739,\"folder-medical\":57740,\"folder-minus\":63069,\"folder-music\":57741,\"folder-open\":61564,\"folder-plus\":63070,\"folder-tree\":63490,\"folder-user\":57742,\"folder-xmark\":63071,\"folder\":61563,\"folders\":63072,\"fondue-pot\":58381,\"font-awesome\":62132,\"font-case\":63590,\"font\":61489,\"football-helmet\":62543,\"football\":62542,\"fork-knife\":62182,\"fork\":62179,\"forklift\":62586,\"fort\":58502,\"forward-fast\":61520,\"forward-step\":61521,\"forward\":61518,\"frame\":58517,\"franc-sign\":57743,\"french-fries\":63491,\"frog\":62766,\"function\":63073,\"futbol\":61923,\"g\":71,\"galaxy\":57352,\"gallery-thumbnails\":58282,\"game-board-simple\":63592,\"game-board\":63591,\"game-console-handheld-crank\":58809,\"game-console-handheld\":63675,\"gamepad-modern\":58786,\"gamepad\":61723,\"garage-car\":57354,\"garage-open\":57355,\"garage\":57353,\"garlic\":58382,\"gas-pump-slash\":62964,\"gas-pump\":62767,\"gauge-circle-bolt\":58518,\"gauge-circle-minus\":58519,\"gauge-circle-plus\":58520,\"gauge-high\":63013,\"gauge-low\":63015,\"gauge-max\":63014,\"gauge-min\":63016,\"gauge-simple-high\":63018,\"gauge-simple-low\":63020,\"gauge-simple-max\":63019,\"gauge-simple-min\":63021,\"gauge-simple\":63017,\"gauge\":63012,\"gavel\":61667,\"gear-code\":58856,\"gear-complex-code\":58859,\"gear-complex\":58857,\"gear\":61459,\"gears\":61573,\"gem\":62373,\"genderless\":61997,\"ghost\":63202,\"gif\":57744,\"gift-card\":63075,\"gift\":61547,\"gifts\":63388,\"gingerbread-man\":63389,\"glass-citrus\":63593,\"glass-empty\":57745,\"glass-half\":57746,\"glass-water-droplet\":58613,\"glass-water\":58612,\"glass\":63492,\"glasses-round\":62965,\"glasses\":62768,\"globe-pointer\":58894,\"globe-snow\":63395,\"globe-stand\":62966,\"globe-wifi\":59013,\"globe\":61612,\"goal-net\":58283,\"golf-ball-tee\":62544,\"golf-club\":62545,\"golf-flag-hole\":58284,\"gopuram\":63076,\"graduation-cap\":61853,\"gramophone\":63677,\"grapes\":58118,\"grate-droplet\":57748,\"grate\":57747,\"greater-than-equal\":62770,\"greater-than\":62,\"grid-2-plus\":57751,\"grid-2\":57750,\"grid-4\":57752,\"grid-5\":57753,\"grid-dividers\":58285,\"grid-horizontal\":58119,\"grid-round-2-plus\":58844,\"grid-round-2\":58843,\"grid-round-4\":58845,\"grid-round-5\":58846,\"grid-round\":58842,\"grid\":57749,\"grill-fire\":58788,\"grill-hot\":58789,\"grill\":58787,\"grip-dots-vertical\":58385,\"grip-dots\":58384,\"grip-lines-vertical\":63397,\"grip-lines\":63396,\"grip-vertical\":62862,\"grip\":62861,\"group-arrows-rotate\":58614,\"guarani-sign\":57754,\"guitar-electric\":63678,\"guitar\":63398,\"guitars\":63679,\"gun-slash\":57756,\"gun-squirt\":57757,\"gun\":57755,\"h\":72,\"h1\":62227,\"h2\":62228,\"h3\":62229,\"h4\":63594,\"h5\":58386,\"h6\":58387,\"hammer-brush\":58912,\"hammer-crash\":58388,\"hammer-war\":63204,\"hammer\":63203,\"hamsa\":63077,\"hand-back-fist\":62037,\"hand-back-point-down\":57758,\"hand-back-point-left\":57759,\"hand-back-point-ribbon\":57760,\"hand-back-point-right\":57761,\"hand-back-point-up\":57762,\"hand-dots\":62561,\"hand-fingers-crossed\":57763,\"hand-fist\":63198,\"hand-heart\":62652,\"hand-holding-box\":62587,\"hand-holding-circle-dollar\":58913,\"hand-holding-dollar\":62656,\"hand-holding-droplet\":62657,\"hand-holding-hand\":58615,\"hand-holding-heart\":62654,\"hand-holding-magic\":63205,\"hand-holding-medical\":57436,\"hand-holding-seedling\":62655,\"hand-holding-skull\":57764,\"hand-holding\":62653,\"hand-horns\":57769,\"hand-lizard\":62040,\"hand-love\":57765,\"hand-middle-finger\":63494,\"hand-peace\":62043,\"hand-point-down\":61607,\"hand-point-left\":61605,\"hand-point-ribbon\":57766,\"hand-point-right\":61604,\"hand-point-up\":61606,\"hand-pointer\":62042,\"hand-scissors\":62039,\"hand-sparkles\":57437,\"hand-spock\":62041,\"hand-wave\":57767,\"hand\":62038,\"handcuffs\":58616,\"hands-asl-interpreting\":62115,\"hands-bound\":58617,\"hands-bubbles\":57438,\"hands-clapping\":57768,\"hands-holding-child\":58618,\"hands-holding-circle\":58619,\"hands-holding-diamond\":62588,\"hands-holding-dollar\":62661,\"hands-holding-heart\":62659,\"hands-holding\":62658,\"hands-praying\":63108,\"hands\":62119,\"handshake-angle\":62660,\"handshake-simple-slash\":57439,\"handshake-simple\":62662,\"handshake-slash\":57440,\"handshake\":62133,\"hanukiah\":63206,\"hard-drive\":61600,\"hashtag-lock\":58389,\"hashtag\":35,\"hat-beach\":58886,\"hat-chef\":63595,\"hat-cowboy-side\":63681,\"hat-cowboy\":63680,\"hat-santa\":63399,\"hat-winter\":63400,\"hat-witch\":63207,\"hat-wizard\":63208,\"head-side-brain\":63496,\"head-side-cough-slash\":57442,\"head-side-cough\":57441,\"head-side-gear\":58897,\"head-side-goggles\":63210,\"head-side-headphones\":63682,\"head-side-heart\":57770,\"head-side-mask\":57443,\"head-side-medical\":63497,\"head-side-virus\":57444,\"head-side\":63209,\"heading\":61916,\"headphones-simple\":62863,\"headphones\":61477,\"headset\":62864,\"heart-circle-bolt\":58620,\"heart-circle-check\":58621,\"heart-circle-exclamation\":58622,\"heart-circle-minus\":58623,\"heart-circle-plus\":58624,\"heart-circle-xmark\":58625,\"heart-crack\":63401,\"heart-half-stroke\":57772,\"heart-half\":57771,\"heart-pulse\":61982,\"heart\":61444,\"heat\":57356,\"helicopter-symbol\":58626,\"helicopter\":62771,\"helmet-battle\":63211,\"helmet-safety\":63495,\"helmet-un\":58627,\"hexagon-check\":58390,\"hexagon-divide\":57773,\"hexagon-exclamation\":58391,\"hexagon-image\":58628,\"hexagon-minus\":62215,\"hexagon-nodes-bolt\":59034,\"hexagon-nodes\":59033,\"hexagon-plus\":62208,\"hexagon-vertical-nft-slanted\":58630,\"hexagon-vertical-nft\":58629,\"hexagon-xmark\":62190,\"hexagon\":62226,\"high-definition\":57774,\"highlighter-line\":57775,\"highlighter\":62865,\"hill-avalanche\":58631,\"hill-rockslide\":58632,\"hippo\":63213,\"hockey-mask\":63214,\"hockey-puck\":62547,\"hockey-stick-puck\":58286,\"hockey-sticks\":62548,\"holly-berry\":63402,\"honey-pot\":58392,\"hood-cloak\":63215,\"horizontal-rule\":63596,\"horse-head\":63403,\"horse-saddle\":63683,\"horse\":63216,\"hose-reel\":58394,\"hose\":58393,\"hospital-user\":63501,\"hospital\":61688,\"hospitals\":63502,\"hot-tub-person\":62867,\"hotdog\":63503,\"hotel\":62868,\"hourglass-clock\":58395,\"hourglass-end\":62035,\"hourglass-half\":62034,\"hourglass-start\":62033,\"hourglass\":62036,\"house-blank\":58503,\"house-building\":57777,\"house-chimney-blank\":58288,\"house-chimney-crack\":63217,\"house-chimney-heart\":57778,\"house-chimney-medical\":63474,\"house-chimney-user\":57445,\"house-chimney-window\":57357,\"house-chimney\":58287,\"house-circle-check\":58633,\"house-circle-exclamation\":58634,\"house-circle-xmark\":58635,\"house-crack\":58289,\"house-day\":57358,\"house-fire\":58636,\"house-flag\":58637,\"house-flood-water-circle-arrow-right\":58639,\"house-flood-water\":58638,\"house-heart\":62665,\"house-laptop\":57446,\"house-lock\":58640,\"house-medical-circle-check\":58641,\"house-medical-circle-exclamation\":58642,\"house-medical-circle-xmark\":58643,\"house-medical-flag\":58644,\"house-medical\":58290,\"house-night\":57360,\"house-person-leave\":57359,\"house-person-return\":57361,\"house-signal\":57362,\"house-tree\":57779,\"house-tsunami\":58645,\"house-turret\":57780,\"house-user\":57776,\"house-water\":63311,\"house-window\":58291,\"house\":61461,\"hryvnia-sign\":63218,\"hundred-points\":58396,\"hurricane\":63313,\"hydra\":59014,\"hyphen\":45,\"i-cursor\":62022,\"i\":73,\"ice-cream\":63504,\"ice-skate\":63404,\"icicles\":63405,\"icons\":63597,\"id-badge\":62145,\"id-card-clip\":62591,\"id-card\":62146,\"igloo\":63406,\"image-landscape\":57781,\"image-polaroid-user\":57782,\"image-polaroid\":63684,\"image-portrait\":62432,\"image-slash\":57783,\"image-user\":57784,\"image\":61502,\"images-user\":57785,\"images\":62210,\"inbox-full\":57786,\"inbox-in\":62224,\"inbox-out\":62225,\"inbox\":61468,\"inboxes\":57787,\"indent\":61500,\"indian-rupee-sign\":57788,\"industry-windows\":62387,\"industry\":62069,\"infinity\":62772,\"info\":61737,\"inhaler\":62969,\"input-numeric\":57789,\"input-pipe\":57790,\"input-text\":57791,\"integral\":63079,\"interrobang\":58810,\"intersection\":63080,\"island-tropical\":63505,\"italic\":61491,\"j\":74,\"jack-o-lantern\":62222,\"jar-wheat\":58647,\"jar\":58646,\"jedi\":63081,\"jet-fighter-up\":58648,\"jet-fighter\":61691,\"joint\":62869,\"joystick\":63685,\"jug-bottle\":58875,\"jug-detergent\":58649,\"jug\":63686,\"k\":75,\"kaaba\":63083,\"kazoo\":63687,\"kerning\":63599,\"key-skeleton-left-right\":58292,\"key-skeleton\":63219,\"key\":61572,\"keyboard-brightness-low\":57793,\"keyboard-brightness\":57792,\"keyboard-down\":57794,\"keyboard-left\":57795,\"keyboard\":61724,\"keynote\":63084,\"khanda\":63085,\"kidneys\":62971,\"kip-sign\":57796,\"kit-medical\":62585,\"kitchen-set\":58650,\"kite\":63220,\"kiwi-bird\":62773,\"kiwi-fruit\":58124,\"knife-kitchen\":63221,\"knife\":62180,\"l\":76,\"lacrosse-stick-ball\":58294,\"lacrosse-stick\":58293,\"lambda\":63086,\"lamp-desk\":57364,\"lamp-floor\":57365,\"lamp-street\":57797,\"lamp\":62666,\"land-mine-on\":58651,\"landmark-dome\":63314,\"landmark-flag\":58652,\"landmark-magnifying-glass\":58914,\"landmark\":63087,\"language\":61867,\"laptop-arrow-down\":57798,\"laptop-binary\":58855,\"laptop-code\":62972,\"laptop-file\":58653,\"laptop-medical\":63506,\"laptop-mobile\":63610,\"laptop-slash\":57799,\"laptop\":61705,\"lari-sign\":57800,\"lasso-sparkles\":57801,\"lasso\":63688,\"layer-group\":62973,\"layer-minus\":62974,\"layer-plus\":62975,\"leaf-heart\":62667,\"leaf-maple\":63222,\"leaf-oak\":63223,\"leaf\":61548,\"leafy-green\":58397,\"left-from-bracket\":58988,\"left-from-line\":62280,\"left-long-to-line\":58398,\"left-long\":62218,\"left-right\":62263,\"left-to-bracket\":58989,\"left-to-line\":62283,\"left\":62293,\"lemon\":61588,\"less-than-equal\":62775,\"less-than\":60,\"life-ring\":61901,\"light-ceiling\":57366,\"light-emergency-on\":58400,\"light-emergency\":58399,\"light-switch-off\":57368,\"light-switch-on\":57369,\"light-switch\":57367,\"lightbulb-cfl-on\":58791,\"lightbulb-cfl\":58790,\"lightbulb-dollar\":63088,\"lightbulb-exclamation-on\":57802,\"lightbulb-exclamation\":63089,\"lightbulb-gear\":58877,\"lightbulb-message\":59015,\"lightbulb-on\":63090,\"lightbulb-slash\":63091,\"lightbulb\":61675,\"lighthouse\":58898,\"lights-holiday\":63410,\"line-columns\":63600,\"line-height\":63601,\"lines-leaning\":58654,\"link-horizontal-slash\":57804,\"link-horizontal\":57803,\"link-simple-slash\":57806,\"link-simple\":57805,\"link-slash\":61735,\"link\":61633,\"lips\":62976,\"lira-sign\":61845,\"list-check\":61614,\"list-dropdown\":57807,\"list-music\":63689,\"list-ol\":61643,\"list-radio\":57808,\"list-timeline\":57809,\"list-tree\":57810,\"list-ul\":61642,\"list\":61498,\"litecoin-sign\":57811,\"loader\":57812,\"lobster\":58401,\"location-arrow-up\":58938,\"location-arrow\":61732,\"location-check\":62982,\"location-crosshairs-slash\":62979,\"location-crosshairs\":62977,\"location-dot-slash\":62981,\"location-dot\":62405,\"location-exclamation\":62984,\"location-minus\":62985,\"location-pen\":62983,\"location-pin-lock\":58655,\"location-pin-slash\":62988,\"location-pin\":61505,\"location-plus\":62986,\"location-question\":62987,\"location-smile\":62989,\"location-xmark\":62990,\"lock-a\":58402,\"lock-hashtag\":58403,\"lock-keyhole-open\":62402,\"lock-keyhole\":62221,\"lock-open\":62401,\"lock\":61475,\"locust\":58656,\"lollipop\":58404,\"loveseat\":62668,\"luchador-mask\":62549,\"lungs-virus\":57447,\"lungs\":62980,\"m\":77,\"mace\":63224,\"magnet\":61558,\"magnifying-glass-arrow-right\":58657,\"magnifying-glass-arrows-rotate\":58974,\"magnifying-glass-chart\":58658,\"magnifying-glass-dollar\":63112,\"magnifying-glass-location\":63113,\"magnifying-glass-minus\":61456,\"magnifying-glass-music\":58975,\"magnifying-glass-play\":58976,\"magnifying-glass-plus\":61454,\"magnifying-glass-waveform\":58977,\"magnifying-glass\":61442,\"mailbox-flag-up\":58811,\"mailbox\":63507,\"manat-sign\":57813,\"mandolin\":63225,\"mango\":58127,\"manhole\":57814,\"map-location-dot\":62880,\"map-location\":62879,\"map-pin\":62070,\"map\":62073,\"marker\":62881,\"mars-and-venus-burst\":58659,\"mars-and-venus\":61988,\"mars-double\":61991,\"mars-stroke-right\":61995,\"mars-stroke-up\":61994,\"mars-stroke\":61993,\"mars\":61986,\"martini-glass-citrus\":62817,\"martini-glass-empty\":61440,\"martini-glass\":62843,\"mask-face\":57815,\"mask-snorkel\":58295,\"mask-ventilator\":58660,\"mask\":63226,\"masks-theater\":63024,\"mattress-pillow\":58661,\"maximize\":62238,\"meat\":63508,\"medal\":62882,\"megaphone\":63093,\"melon-slice\":58129,\"melon\":58128,\"memo-circle-check\":57817,\"memo-circle-info\":58522,\"memo-pad\":57818,\"memo\":57816,\"memory\":62776,\"menorah\":63094,\"mercury\":61987,\"merge\":58662,\"message-arrow-down\":57819,\"message-arrow-up-right\":57821,\"message-arrow-up\":57820,\"message-bot\":58296,\"message-captions\":57822,\"message-check\":62626,\"message-code\":57823,\"message-dollar\":63056,\"message-dots\":62627,\"message-exclamation\":62629,\"message-heart\":58825,\"message-image\":57824,\"message-lines\":62630,\"message-medical\":63476,\"message-middle-top\":57826,\"message-middle\":57825,\"message-minus\":62631,\"message-music\":63663,\"message-pen\":62628,\"message-plus\":62632,\"message-question\":57827,\"message-quote\":57828,\"message-slash\":62633,\"message-smile\":62634,\"message-sms\":57829,\"message-text\":57830,\"message-xmark\":62635,\"message\":62074,\"messages-dollar\":63058,\"messages-question\":57831,\"messages\":62646,\"meteor\":63315,\"meter-bolt\":57833,\"meter-droplet\":57834,\"meter-fire\":57835,\"meter\":57832,\"microchip-ai\":57836,\"microchip\":62171,\"microphone-lines-slash\":62777,\"microphone-lines\":62409,\"microphone-slash\":61745,\"microphone-stand\":63691,\"microphone\":61744,\"microscope\":62992,\"microwave\":57371,\"mill-sign\":57837,\"minimize\":63372,\"minus\":61544,\"mistletoe\":63412,\"mitten\":63413,\"mobile-button\":61707,\"mobile-notch\":57838,\"mobile-retro\":58663,\"mobile-screen-button\":62413,\"mobile-screen\":62415,\"mobile-signal-out\":57840,\"mobile-signal\":57839,\"mobile\":62414,\"money-bill-1-wave\":62779,\"money-bill-1\":62417,\"money-bill-simple-wave\":57842,\"money-bill-simple\":57841,\"money-bill-transfer\":58664,\"money-bill-trend-up\":58665,\"money-bill-wave\":62778,\"money-bill-wheat\":58666,\"money-bill\":61654,\"money-bills-simple\":57844,\"money-bills\":57843,\"money-check-dollar-pen\":63603,\"money-check-dollar\":62781,\"money-check-pen\":63602,\"money-check\":62780,\"money-from-bracket\":58130,\"money-simple-from-bracket\":58131,\"monitor-waveform\":62993,\"monkey\":63227,\"monument\":62886,\"moon-cloud\":63316,\"moon-over-sun\":63306,\"moon-stars\":63317,\"moon\":61830,\"moped\":58297,\"mortar-pestle\":62887,\"mosque\":63096,\"mosquito-net\":58668,\"mosquito\":58667,\"motorcycle\":61980,\"mound\":58669,\"mountain-city\":58670,\"mountain-sun\":58671,\"mountain\":63228,\"mountains\":63229,\"mouse-field\":58792,\"mp3-player\":63694,\"mug-hot\":63414,\"mug-marshmallows\":63415,\"mug-saucer\":61684,\"mug-tea-saucer\":57845,\"mug-tea\":63605,\"mug\":63604,\"mushroom\":58405,\"music-magnifying-glass\":58978,\"music-note-slash\":63696,\"music-note\":63695,\"music-slash\":63697,\"music\":61441,\"mustache\":58812,\"n\":78,\"naira-sign\":57846,\"narwhal\":63230,\"nesting-dolls\":58298,\"network-wired\":63231,\"neuter\":61996,\"newspaper\":61930,\"nfc-lock\":57848,\"nfc-magnifying-glass\":57849,\"nfc-pen\":57850,\"nfc-signal\":57851,\"nfc-slash\":57852,\"nfc-symbol\":58673,\"nfc-trash\":57853,\"nfc\":57847,\"nose\":58813,\"not-equal\":62782,\"notdef\":57854,\"note-medical\":57856,\"note-sticky\":62025,\"note\":57855,\"notebook\":57857,\"notes-medical\":62593,\"notes\":57858,\"o\":79,\"object-exclude\":58524,\"object-group\":62023,\"object-intersect\":58525,\"object-subtract\":58526,\"object-ungroup\":62024,\"object-union\":58527,\"objects-align-bottom\":58299,\"objects-align-center-horizontal\":58300,\"objects-align-center-vertical\":58301,\"objects-align-left\":58302,\"objects-align-right\":58303,\"objects-align-top\":58304,\"objects-column\":58305,\"octagon-check\":58406,\"octagon-divide\":57859,\"octagon-exclamation\":57860,\"octagon-minus\":62216,\"octagon-plus\":62209,\"octagon-xmark\":62192,\"octagon\":62214,\"octopus\":59016,\"oil-can-drip\":57861,\"oil-can\":62995,\"oil-temperature\":62996,\"oil-well\":58674,\"olive-branch\":58135,\"olive\":58134,\"om\":63097,\"omega\":63098,\"onion\":58407,\"option\":58136,\"ornament\":63416,\"otter\":63232,\"outdent\":61499,\"outlet\":57372,\"oven\":57373,\"overline\":63606,\"p\":80,\"page-caret-down\":58409,\"page-caret-up\":58410,\"page\":58408,\"pager\":63509,\"paint-roller\":62890,\"paintbrush-fine\":62889,\"paintbrush-pencil\":57862,\"paintbrush\":61948,\"palette\":62783,\"pallet-box\":57864,\"pallet-boxes\":62595,\"pallet\":62594,\"pan-food\":58411,\"pan-frying\":58412,\"pancakes\":58413,\"panel-ews\":58414,\"panel-fire\":58415,\"panorama\":57865,\"paper-plane-top\":57866,\"paper-plane\":61912,\"paperclip-vertical\":58306,\"paperclip\":61638,\"parachute-box\":62669,\"paragraph-left\":63608,\"paragraph\":61917,\"party-bell\":58138,\"party-horn\":58139,\"passport\":62891,\"paste\":61674,\"pause\":61516,\"paw-claws\":63234,\"paw-simple\":63233,\"paw\":61872,\"peace\":63100,\"peach\":57867,\"peanut\":58416,\"peanuts\":58417,\"peapod\":58140,\"pear\":57868,\"pedestal\":57869,\"pegasus\":63235,\"pen-circle\":57870,\"pen-clip-slash\":57871,\"pen-clip\":62213,\"pen-fancy-slash\":57872,\"pen-fancy\":62892,\"pen-field\":57873,\"pen-line\":57874,\"pen-nib-slash\":58529,\"pen-nib\":62893,\"pen-paintbrush\":63000,\"pen-ruler\":62894,\"pen-slash\":57875,\"pen-swirl\":57876,\"pen-to-square\":61508,\"pen\":62212,\"pencil-mechanical\":58826,\"pencil-slash\":57877,\"pencil\":62211,\"people-arrows\":57448,\"people-carry-box\":62670,\"people-dress-simple\":57880,\"people-dress\":57879,\"people-group\":58675,\"people-line\":58676,\"people-pants-simple\":57882,\"people-pants\":57881,\"people-pulling\":58677,\"people-robbery\":58678,\"people-roof\":58679,\"people-simple\":57883,\"people\":57878,\"pepper-hot\":63510,\"pepper\":58418,\"percent\":37,\"period\":46,\"person-arrow-down-to-line\":58680,\"person-arrow-up-from-line\":58681,\"person-biking-mountain\":63563,\"person-biking\":63562,\"person-booth\":63318,\"person-breastfeeding\":58682,\"person-burst\":58683,\"person-cane\":58684,\"person-carry-box\":62671,\"person-chalkboard\":58685,\"person-circle-check\":58686,\"person-circle-exclamation\":58687,\"person-circle-minus\":58688,\"person-circle-plus\":58689,\"person-circle-question\":58690,\"person-circle-xmark\":58691,\"person-digging\":63582,\"person-dolly-empty\":62673,\"person-dolly\":62672,\"person-dots-from-line\":62576,\"person-dress-burst\":58692,\"person-dress-fairy\":58887,\"person-dress-simple\":57884,\"person-dress\":61826,\"person-drowning\":58693,\"person-fairy\":58888,\"person-falling-burst\":58695,\"person-falling\":58694,\"person-from-portal\":57379,\"person-half-dress\":58696,\"person-harassing\":58697,\"person-hiking\":63212,\"person-military-pointing\":58698,\"person-military-rifle\":58699,\"person-military-to-person\":58700,\"person-pinball\":57885,\"person-praying\":63107,\"person-pregnant\":58142,\"person-rays\":58701,\"person-rifle\":58702,\"person-running-fast\":58879,\"person-running\":63244,\"person-seat-reclined\":57887,\"person-seat\":57886,\"person-shelter\":58703,\"person-sign\":63319,\"person-simple\":57888,\"person-skating\":63429,\"person-ski-jumping\":63431,\"person-ski-lift\":63432,\"person-skiing-nordic\":63434,\"person-skiing\":63433,\"person-sledding\":63435,\"person-snowboarding\":63438,\"person-snowmobiling\":63441,\"person-swimming\":62916,\"person-through-window\":58793,\"person-to-door\":58419,\"person-to-portal\":57378,\"person-walking-arrow-loop-left\":58705,\"person-walking-arrow-right\":58706,\"person-walking-dashed-line-arrow-right\":58707,\"person-walking-luggage\":58708,\"person-walking-with-cane\":62109,\"person-walking\":62804,\"person\":61827,\"peseta-sign\":57889,\"peso-sign\":57890,\"phone-arrow-down-left\":57891,\"phone-arrow-right\":58814,\"phone-arrow-up-right\":57892,\"phone-flip\":63609,\"phone-hangup\":57893,\"phone-intercom\":58420,\"phone-missed\":57894,\"phone-office\":63101,\"phone-plus\":62674,\"phone-rotary\":63699,\"phone-slash\":62429,\"phone-volume\":62112,\"phone-xmark\":57895,\"phone\":61589,\"photo-film-music\":57896,\"photo-film\":63612,\"pi\":63102,\"piano-keyboard\":63701,\"piano\":63700,\"pickaxe\":58815,\"pickleball\":58421,\"pie\":63237,\"pig\":63238,\"piggy-bank\":62675,\"pills\":62596,\"pinata\":58307,\"pinball\":57897,\"pineapple\":58143,\"pipe-circle-check\":58422,\"pipe-collar\":58423,\"pipe-section\":58424,\"pipe-smoking\":58308,\"pipe-valve\":58425,\"pipe\":124,\"pizza-slice\":63512,\"pizza\":63511,\"place-of-worship\":63103,\"plane-arrival\":62895,\"plane-circle-check\":58709,\"plane-circle-exclamation\":58710,\"plane-circle-xmark\":58711,\"plane-departure\":62896,\"plane-engines\":62430,\"plane-lock\":58712,\"plane-prop\":57899,\"plane-slash\":57449,\"plane-tail\":57900,\"plane-up-slash\":57902,\"plane-up\":57901,\"plane\":61554,\"planet-moon\":57375,\"planet-ringed\":57376,\"plant-wilt\":58794,\"plate-utensils\":58427,\"plate-wheat\":58714,\"play-pause\":57903,\"play\":61515,\"plug-circle-bolt\":58715,\"plug-circle-check\":58716,\"plug-circle-exclamation\":58717,\"plug-circle-minus\":58718,\"plug-circle-plus\":58719,\"plug-circle-xmark\":58720,\"plug\":61926,\"plus-large\":58782,\"plus-minus\":58428,\"plus\":43,\"podcast\":62158,\"podium-star\":63320,\"podium\":63104,\"police-box\":57377,\"poll-people\":63321,\"pompebled\":58429,\"poo-storm\":63322,\"poo\":62206,\"pool-8-ball\":58309,\"poop\":63001,\"popcorn\":63513,\"popsicle\":58430,\"pot-food\":58431,\"potato\":58432,\"power-off\":61457,\"prescription-bottle-medical\":62598,\"prescription-bottle-pill\":58816,\"prescription-bottle\":62597,\"prescription\":62897,\"presentation-screen\":63109,\"pretzel\":58433,\"print-magnifying-glass\":63514,\"print-slash\":63110,\"print\":61487,\"projector\":63702,\"pump-medical\":57450,\"pump-soap\":57451,\"pump\":58434,\"pumpkin\":63239,\"puzzle-piece-simple\":57905,\"puzzle-piece\":61742,\"puzzle\":58435,\"q\":81,\"qrcode\":61481,\"question\":63,\"quote-left\":61709,\"quote-right\":61710,\"quotes\":57908,\"r\":82,\"rabbit-running\":63241,\"rabbit\":63240,\"raccoon\":58899,\"racquet\":62554,\"radar\":57380,\"radiation\":63417,\"radio-tuner\":63704,\"radio\":63703,\"rainbow\":63323,\"raindrops\":63324,\"ram\":63242,\"ramp-loading\":62676,\"ranking-star\":58721,\"raygun\":57381,\"receipt\":62787,\"record-vinyl\":63705,\"rectangle-ad\":63041,\"rectangle-barcode\":62563,\"rectangle-code\":58146,\"rectangle-history-circle-plus\":58531,\"rectangle-history-circle-user\":58532,\"rectangle-history\":58530,\"rectangle-list\":61474,\"rectangle-pro\":57909,\"rectangle-terminal\":57910,\"rectangle-vertical-history\":57911,\"rectangle-vertical\":62203,\"rectangle-wide\":62204,\"rectangle-xmark\":62480,\"rectangle\":62202,\"rectangles-mixed\":58147,\"recycle\":61880,\"reel\":57912,\"reflect-both\":58991,\"reflect-horizontal\":58980,\"reflect-vertical\":58981,\"refrigerator\":57382,\"registered\":62045,\"repeat-1\":62309,\"repeat\":62307,\"reply-all\":61730,\"reply-clock\":57913,\"reply\":62437,\"republican\":63326,\"restroom-simple\":57914,\"restroom\":63421,\"retweet\":61561,\"rhombus\":57915,\"ribbon\":62678,\"right-from-bracket\":62197,\"right-from-line\":62279,\"right-left-large\":58849,\"right-left\":62306,\"right-long-to-line\":58436,\"right-long\":62219,\"right-to-bracket\":62198,\"right-to-line\":62284,\"right\":62294,\"ring-diamond\":58795,\"ring\":63243,\"rings-wedding\":63515,\"road-barrier\":58722,\"road-bridge\":58723,\"road-circle-check\":58724,\"road-circle-exclamation\":58725,\"road-circle-xmark\":58726,\"road-lock\":58727,\"road-spikes\":58728,\"road\":61464,\"robot-astromech\":58066,\"robot\":62788,\"rocket-launch\":57383,\"rocket\":61749,\"roller-coaster\":58148,\"rotate-exclamation\":57916,\"rotate-left\":62186,\"rotate-reverse\":58929,\"rotate-right\":62201,\"rotate\":62193,\"route-highway\":63002,\"route-interstate\":63003,\"route\":62679,\"router\":63706,\"rss\":61598,\"ruble-sign\":61784,\"rug\":58729,\"rugby-ball\":58310,\"ruler-combined\":62790,\"ruler-horizontal\":62791,\"ruler-triangle\":63004,\"ruler-vertical\":62792,\"ruler\":62789,\"rupee-sign\":61782,\"rupiah-sign\":57917,\"rv\":63422,\"s\":83,\"sack-dollar\":63517,\"sack-xmark\":58730,\"sack\":63516,\"sailboat\":58437,\"salad\":63518,\"salt-shaker\":58438,\"sandwich\":63519,\"satellite-dish\":63424,\"satellite\":63423,\"sausage\":63520,\"saxophone-fire\":63707,\"saxophone\":63708,\"scale-balanced\":62030,\"scale-unbalanced-flip\":62742,\"scale-unbalanced\":62741,\"scalpel-line-dashed\":63006,\"scalpel\":63005,\"scanner-gun\":62600,\"scanner-image\":63731,\"scanner-keyboard\":62601,\"scanner-touchscreen\":62602,\"scarecrow\":63245,\"scarf\":63425,\"school-circle-check\":58731,\"school-circle-exclamation\":58732,\"school-circle-xmark\":58733,\"school-flag\":58734,\"school-lock\":58735,\"school\":62793,\"scissors\":61636,\"screen-users\":63037,\"screencast\":57918,\"screwdriver-wrench\":63449,\"screwdriver\":62794,\"scribble\":57919,\"scroll-old\":63247,\"scroll-torah\":63136,\"scroll\":63246,\"scrubber\":62200,\"scythe\":63248,\"sd-card\":63426,\"sd-cards\":57920,\"seal-exclamation\":57922,\"seal-question\":57923,\"seal\":57921,\"seat-airline\":57924,\"section\":58439,\"seedling\":62680,\"semicolon\":59,\"send-back\":63614,\"send-backward\":63615,\"sensor-cloud\":57388,\"sensor-fire\":57386,\"sensor-on\":57387,\"sensor-triangle-exclamation\":57385,\"sensor\":57384,\"server\":62003,\"shapes\":63007,\"share-all\":62311,\"share-from-square\":61773,\"share-nodes\":61920,\"share\":61540,\"sheep\":63249,\"sheet-plastic\":58737,\"shekel-sign\":61963,\"shelves-empty\":57926,\"shelves\":62592,\"shield-cat\":58738,\"shield-check\":62199,\"shield-cross\":63250,\"shield-dog\":58739,\"shield-exclamation\":57927,\"shield-halved\":62445,\"shield-heart\":58740,\"shield-keyhole\":57928,\"shield-minus\":57929,\"shield-plus\":57930,\"shield-quartered\":58741,\"shield-slash\":57931,\"shield-virus\":57452,\"shield-xmark\":57932,\"shield\":61746,\"ship\":61978,\"shirt-long-sleeve\":58311,\"shirt-running\":58312,\"shirt-tank-top\":58313,\"shirt\":62803,\"shish-kebab\":63521,\"shoe-prints\":62795,\"shop-lock\":58533,\"shop-slash\":57456,\"shop\":62799,\"shovel-snow\":63427,\"shovel\":63251,\"shower-down\":57933,\"shower\":62156,\"shredder\":63114,\"shrimp\":58440,\"shuffle\":61556,\"shutters\":58441,\"shuttle-space\":61847,\"shuttlecock\":62555,\"sickle\":63522,\"sidebar-flip\":57935,\"sidebar\":57934,\"sigma\":63115,\"sign-hanging\":62681,\"sign-post\":58916,\"sign-posts-wrench\":58918,\"sign-posts\":58917,\"signal-bars-fair\":63122,\"signal-bars-good\":63123,\"signal-bars-slash\":63124,\"signal-bars-weak\":63121,\"signal-bars\":63120,\"signal-fair\":63117,\"signal-good\":63118,\"signal-slash\":63125,\"signal-stream-slash\":57936,\"signal-stream\":63709,\"signal-strong\":63119,\"signal-weak\":63116,\"signal\":61458,\"signature-lock\":58314,\"signature-slash\":58315,\"signature\":62903,\"signs-post\":62071,\"sim-card\":63428,\"sim-cards\":57937,\"sink\":57453,\"siren-on\":57390,\"siren\":57389,\"sitemap\":61672,\"skeleton-ribs\":58827,\"skeleton\":63008,\"ski-boot-ski\":58317,\"ski-boot\":58316,\"skull-cow\":63710,\"skull-crossbones\":63252,\"skull\":62796,\"slash-back\":92,\"slash-forward\":47,\"slash\":63253,\"sleigh\":63436,\"slider\":57938,\"sliders-simple\":57939,\"sliders-up\":62449,\"sliders\":61918,\"slot-machine\":58318,\"smog\":63327,\"smoke\":63328,\"smoking\":62605,\"snake\":63254,\"snooze\":63616,\"snow-blowing\":63329,\"snowflake-droplets\":58817,\"snowflake\":62172,\"snowflakes\":63439,\"snowman-head\":63387,\"snowman\":63440,\"snowplow\":63442,\"soap\":57454,\"socks\":63126,\"soft-serve\":58368,\"solar-panel\":62906,\"solar-system\":57391,\"sort-down\":61661,\"sort-up\":61662,\"sort\":61660,\"spa\":62907,\"space-station-moon-construction\":57396,\"space-station-moon\":57395,\"spade\":62196,\"spaghetti-monster-flying\":63099,\"sparkle\":58838,\"sparkles\":63632,\"speaker\":63711,\"speakers\":63712,\"spell-check\":63633,\"spider-black-widow\":63256,\"spider-web\":63257,\"spider\":63255,\"spinner-scale\":58922,\"spinner-third\":62452,\"spinner\":61712,\"split\":57940,\"splotch\":62908,\"spoon\":62181,\"sportsball\":58443,\"spray-can-sparkles\":62928,\"spray-can\":62909,\"sprinkler-ceiling\":58444,\"sprinkler\":57397,\"square-0\":57941,\"square-1\":57942,\"square-2\":57943,\"square-3\":57944,\"square-4\":57945,\"square-5\":57946,\"square-6\":57947,\"square-7\":57948,\"square-8\":57949,\"square-9\":57950,\"square-a-lock\":58445,\"square-a\":57951,\"square-ampersand\":57952,\"square-arrow-down-left\":57953,\"square-arrow-down-right\":57954,\"square-arrow-down\":62265,\"square-arrow-left\":62266,\"square-arrow-right\":62267,\"square-arrow-up-left\":57955,\"square-arrow-up-right\":61772,\"square-arrow-up\":62268,\"square-b\":57956,\"square-binary\":59035,\"square-bolt\":57957,\"square-c\":57958,\"square-caret-down\":61776,\"square-caret-left\":61841,\"square-caret-right\":61778,\"square-caret-up\":61777,\"square-check\":61770,\"square-chevron-down\":62249,\"square-chevron-left\":62250,\"square-chevron-right\":62251,\"square-chevron-up\":62252,\"square-code\":57959,\"square-d\":57960,\"square-dashed-circle-plus\":58818,\"square-dashed\":57961,\"square-divide\":57962,\"square-dollar\":62185,\"square-down-left\":57963,\"square-down-right\":57964,\"square-down\":62288,\"square-e\":57965,\"square-ellipsis-vertical\":57967,\"square-ellipsis\":57966,\"square-envelope\":61849,\"square-exclamation\":62241,\"square-f\":57968,\"square-fragile\":62619,\"square-full\":62556,\"square-g\":57969,\"square-h\":61693,\"square-heart\":62664,\"square-i\":57970,\"square-info\":62223,\"square-j\":57971,\"square-k\":57972,\"square-kanban\":58504,\"square-l\":57973,\"square-left\":62289,\"square-list\":58505,\"square-m\":57974,\"square-minus\":61766,\"square-n\":57975,\"square-nfi\":58742,\"square-o\":57976,\"square-p\":57977,\"square-parking-slash\":62999,\"square-parking\":62784,\"square-pen\":61771,\"square-person-confined\":58743,\"square-phone-flip\":63611,\"square-phone-hangup\":57978,\"square-phone\":61592,\"square-plus\":61694,\"square-poll-horizontal\":63106,\"square-poll-vertical\":63105,\"square-q\":57979,\"square-quarters\":58446,\"square-question\":62205,\"square-quote\":58153,\"square-r\":57980,\"square-right\":62290,\"square-ring\":58447,\"square-root-variable\":63128,\"square-root\":63127,\"square-rss\":61763,\"square-s\":57981,\"square-share-nodes\":61921,\"square-sliders-vertical\":62450,\"square-sliders\":62448,\"square-small\":57982,\"square-star\":57983,\"square-t\":57984,\"square-terminal\":58154,\"square-this-way-up\":62623,\"square-u\":57985,\"square-up-left\":57986,\"square-up-right\":62304,\"square-up\":62291,\"square-user\":57987,\"square-v\":57988,\"square-virus\":58744,\"square-w\":57989,\"square-x\":57990,\"square-xmark\":62163,\"square-y\":57991,\"square-z\":57992,\"square\":61640,\"squid\":58448,\"squirrel\":63258,\"staff-snake\":58745,\"staff\":63259,\"stairs\":57993,\"stamp\":62911,\"standard-definition\":57994,\"stapler\":58799,\"star-and-crescent\":63129,\"star-christmas\":63444,\"star-exclamation\":62195,\"star-half-stroke\":62912,\"star-half\":61577,\"star-of-david\":63130,\"star-of-life\":63009,\"star-sharp-half-stroke\":57997,\"star-sharp-half\":57996,\"star-sharp\":57995,\"star-shooting\":57398,\"star\":61445,\"starfighter-twin-ion-engine-advanced\":57998,\"starfighter-twin-ion-engine\":57400,\"starfighter\":57399,\"stars\":63330,\"starship-freighter\":57402,\"starship\":57401,\"steak\":63524,\"steering-wheel\":63010,\"sterling-sign\":61780,\"stethoscope\":61681,\"stocking\":63445,\"stomach\":63011,\"stop\":61517,\"stopwatch-20\":57455,\"stopwatch\":62194,\"store-lock\":58534,\"store-slash\":57457,\"store\":62798,\"strawberry\":58155,\"street-view\":61981,\"stretcher\":63525,\"strikethrough\":61644,\"stroopwafel\":62801,\"subscript\":61740,\"subtitles-slash\":58896,\"subtitles\":58895,\"suitcase-medical\":61690,\"suitcase-rolling\":62913,\"suitcase\":61682,\"sun-bright\":57999,\"sun-cloud\":63331,\"sun-dust\":63332,\"sun-haze\":63333,\"sun-plant-wilt\":58746,\"sun\":61829,\"sunglasses\":63634,\"sunrise\":63334,\"sunset\":63335,\"superscript\":61739,\"sushi-roll\":58507,\"sushi\":58506,\"swap-arrows\":58890,\"swap\":58889,\"swatchbook\":62915,\"sword-laser-alt\":57404,\"sword-laser\":57403,\"sword\":63260,\"swords-laser\":57405,\"swords\":63261,\"symbols\":63598,\"synagogue\":63131,\"syringe\":62606,\"t-rex\":58921,\"t\":84,\"table-cells-column-lock\":59000,\"table-cells-column-unlock\":59024,\"table-cells-large\":61449,\"table-cells-lock\":59001,\"table-cells-row-lock\":59002,\"table-cells-row-unlock\":59025,\"table-cells-unlock\":59026,\"table-cells\":61450,\"table-columns\":61659,\"table-layout\":58000,\"table-list\":61451,\"table-picnic\":58157,\"table-pivot\":58001,\"table-rows\":58002,\"table-tennis-paddle-ball\":62557,\"table-tree\":58003,\"table\":61646,\"tablet-button\":61706,\"tablet-rugged\":62607,\"tablet-screen-button\":62458,\"tablet-screen\":62460,\"tablet\":62459,\"tablets\":62608,\"tachograph-digital\":62822,\"taco\":63526,\"tag\":61483,\"tags\":61484,\"tally-1\":58004,\"tally-2\":58005,\"tally-3\":58006,\"tally-4\":58007,\"tally\":63132,\"tamale\":58449,\"tank-water\":58450,\"tape\":62683,\"tarp-droplet\":58748,\"tarp\":58747,\"taxi-bus\":58008,\"taxi\":61882,\"teddy-bear\":58319,\"teeth-open\":63023,\"teeth\":63022,\"telescope\":57406,\"temperature-arrow-down\":57407,\"temperature-arrow-up\":57408,\"temperature-empty\":62155,\"temperature-full\":62151,\"temperature-half\":62153,\"temperature-high\":63337,\"temperature-list\":58009,\"temperature-low\":63339,\"temperature-quarter\":62154,\"temperature-snow\":63336,\"temperature-sun\":63338,\"temperature-three-quarters\":62152,\"tenge-sign\":63447,\"tennis-ball\":62558,\"tent-arrow-down-to-line\":58750,\"tent-arrow-left-right\":58751,\"tent-arrow-turn-left\":58752,\"tent-arrows-down\":58753,\"tent-double-peak\":58919,\"tent\":58749,\"tents\":58754,\"terminal\":61728,\"text-height\":61492,\"text-size\":63636,\"text-slash\":63613,\"text-width\":61493,\"text\":63635,\"thermometer\":62609,\"theta\":63134,\"thought-bubble\":58158,\"thumbs-down\":61797,\"thumbs-up\":61796,\"thumbtack-slash\":59023,\"thumbtack\":61581,\"tick\":58159,\"ticket-airline\":58010,\"ticket-perforated\":58942,\"ticket-simple\":62463,\"ticket\":61765,\"tickets-airline\":58011,\"tickets-perforated\":58943,\"tickets-simple\":58969,\"tickets\":58968,\"tilde\":126,\"timeline-arrow\":58013,\"timeline\":58012,\"timer\":58014,\"tire-flat\":63026,\"tire-pressure-warning\":63027,\"tire-rugged\":63028,\"tire\":63025,\"toggle-large-off\":58800,\"toggle-large-on\":58801,\"toggle-off\":61956,\"toggle-on\":61957,\"toilet-paper-blank-under\":58015,\"toilet-paper-blank\":63263,\"toilet-paper-check\":58802,\"toilet-paper-slash\":57458,\"toilet-paper-under-slash\":58017,\"toilet-paper-under\":58016,\"toilet-paper-xmark\":58803,\"toilet-paper\":63262,\"toilet-portable\":58755,\"toilet\":63448,\"toilets-portable\":58756,\"tomato\":58160,\"tombstone-blank\":63265,\"tombstone\":63264,\"toolbox\":62802,\"tooth\":62921,\"toothbrush\":63029,\"torii-gate\":63137,\"tornado\":63343,\"tower-broadcast\":62745,\"tower-cell\":58757,\"tower-control\":58018,\"tower-observation\":58758,\"tractor\":63266,\"trademark\":62044,\"traffic-cone\":63030,\"traffic-light-go\":63032,\"traffic-light-slow\":63033,\"traffic-light-stop\":63034,\"traffic-light\":63031,\"trailer\":57409,\"train-subway-tunnel\":58019,\"train-subway\":62009,\"train-track\":58451,\"train-tram\":58804,\"train-tunnel\":58452,\"train\":62008,\"transformer-bolt\":58020,\"transgender\":61989,\"transporter-1\":57411,\"transporter-2\":57412,\"transporter-3\":57413,\"transporter-4\":58021,\"transporter-5\":58022,\"transporter-6\":58023,\"transporter-7\":58024,\"transporter-empty\":57414,\"transporter\":57410,\"trash-arrow-up\":63529,\"trash-can-arrow-up\":63530,\"trash-can-check\":58025,\"trash-can-clock\":58026,\"trash-can-list\":58027,\"trash-can-plus\":58028,\"trash-can-slash\":58029,\"trash-can-undo\":63638,\"trash-can-xmark\":58030,\"trash-can\":62189,\"trash-check\":58031,\"trash-clock\":58032,\"trash-list\":58033,\"trash-plus\":58034,\"trash-slash\":58035,\"trash-undo\":63637,\"trash-xmark\":58036,\"trash\":61944,\"treasure-chest\":63267,\"tree-christmas\":63451,\"tree-city\":58759,\"tree-deciduous\":62464,\"tree-decorated\":63452,\"tree-large\":63453,\"tree-palm\":63531,\"tree\":61883,\"trees\":63268,\"triangle-exclamation\":61553,\"triangle-instrument\":63714,\"triangle-person-digging\":63581,\"triangle\":62188,\"tricycle-adult\":58820,\"tricycle\":58819,\"trillium\":58760,\"trophy-star\":62187,\"trophy\":61585,\"trowel-bricks\":58762,\"trowel\":58761,\"truck-arrow-right\":58763,\"truck-bolt\":58320,\"truck-clock\":62604,\"truck-container-empty\":58037,\"truck-container\":62684,\"truck-droplet\":58764,\"truck-fast\":62603,\"truck-field-un\":58766,\"truck-field\":58765,\"truck-fire\":58970,\"truck-flatbed\":58038,\"truck-front\":58039,\"truck-ladder\":58967,\"truck-medical\":61689,\"truck-monster\":63035,\"truck-moving\":62687,\"truck-pickup\":63036,\"truck-plane\":58767,\"truck-plow\":63454,\"truck-ramp-box\":62686,\"truck-ramp-couch\":62685,\"truck-ramp\":62688,\"truck-tow\":58040,\"truck-utensils\":58920,\"truck\":61649,\"trumpet\":63715,\"tty-answer\":58041,\"tty\":61924,\"tugrik-sign\":58042,\"turkey\":63269,\"turkish-lira-sign\":58043,\"turn-down-left\":58161,\"turn-down-right\":58453,\"turn-down\":62398,\"turn-left-down\":58935,\"turn-left-up\":58936,\"turn-left\":58934,\"turn-right\":58937,\"turn-up\":62399,\"turntable\":63716,\"turtle\":63270,\"tv-music\":63718,\"tv-retro\":62465,\"tv\":62060,\"typewriter\":63719,\"u\":85,\"ufo-beam\":57416,\"ufo\":57415,\"umbrella-beach\":62922,\"umbrella-simple\":58044,\"umbrella\":61673,\"underline\":61645,\"unicorn\":63271,\"uniform-martial-arts\":58321,\"union\":63138,\"universal-access\":62106,\"unlock-keyhole\":61758,\"unlock\":61596,\"up-down-left-right\":61618,\"up-down\":62264,\"up-from-bracket\":58768,\"up-from-dotted-line\":58454,\"up-from-line\":62278,\"up-left\":58045,\"up-long\":62220,\"up-right-and-down-left-from-center\":62500,\"up-right-from-square\":62301,\"up-right\":58046,\"up-to-bracket\":58990,\"up-to-dotted-line\":58455,\"up-to-line\":62285,\"up\":62295,\"upload\":61587,\"usb-drive\":63721,\"user-alien\":57418,\"user-astronaut\":62715,\"user-beard-bolt\":59017,\"user-bounty-hunter\":58047,\"user-check\":62716,\"user-chef\":58322,\"user-clock\":62717,\"user-cowboy\":63722,\"user-crown\":63140,\"user-doctor-hair-long\":58457,\"user-doctor-hair\":58456,\"user-doctor-message\":63534,\"user-doctor\":61680,\"user-gear\":62718,\"user-graduate\":62721,\"user-group-crown\":63141,\"user-group-simple\":58883,\"user-group\":62720,\"user-hair-buns\":58323,\"user-hair-long\":58459,\"user-hair-mullet\":58460,\"user-hair\":58458,\"user-headset\":63533,\"user-helmet-safety\":63532,\"user-hoodie\":59018,\"user-injured\":63272,\"user-large-slash\":62714,\"user-large\":62470,\"user-lock\":62722,\"user-magnifying-glass\":58821,\"user-minus\":62723,\"user-music\":63723,\"user-ninja\":62724,\"user-nurse-hair-long\":58462,\"user-nurse-hair\":58461,\"user-nurse\":63535,\"user-pen\":62719,\"user-pilot-tie\":58049,\"user-pilot\":58048,\"user-plus\":62004,\"user-police-tie\":58164,\"user-police\":58163,\"user-robot-xmarks\":58535,\"user-robot\":57419,\"user-secret\":61979,\"user-shakespeare\":58050,\"user-shield\":62725,\"user-slash\":62726,\"user-tag\":62727,\"user-tie-hair-long\":58464,\"user-tie-hair\":58463,\"user-tie\":62728,\"user-unlock\":57432,\"user-visor\":57420,\"user-vneck-hair-long\":58467,\"user-vneck-hair\":58466,\"user-vneck\":58465,\"user-xmark\":62005,\"user\":61447,\"users-between-lines\":58769,\"users-gear\":62729,\"users-line\":58770,\"users-medical\":63536,\"users-rays\":58771,\"users-rectangle\":58772,\"users-slash\":57459,\"users-viewfinder\":58773,\"users\":61632,\"utensils-slash\":58468,\"utensils\":62183,\"utility-pole-double\":58052,\"utility-pole\":58051,\"v\":86,\"vacuum-robot\":57422,\"vacuum\":57421,\"value-absolute\":63142,\"van-shuttle\":62902,\"vault\":58053,\"vector-circle\":58054,\"vector-polygon\":58055,\"vector-square\":62923,\"vent-damper\":58469,\"venus-double\":61990,\"venus-mars\":61992,\"venus\":61985,\"vest-patches\":57478,\"vest\":57477,\"vial-circle-check\":58774,\"vial-virus\":58775,\"vial\":62610,\"vials\":62611,\"video-arrow-down-left\":58056,\"video-arrow-up-right\":58057,\"video-plus\":62689,\"video-slash\":62690,\"video\":61501,\"vihara\":63143,\"violin\":63725,\"virus-covid-slash\":58537,\"virus-covid\":58536,\"virus-slash\":57461,\"virus\":57460,\"viruses\":57462,\"voicemail\":63639,\"volcano\":63344,\"volleyball\":62559,\"volume-high\":61480,\"volume-low\":61479,\"volume-off\":61478,\"volume-slash\":62178,\"volume-xmark\":63145,\"volume\":63144,\"vr-cardboard\":63273,\"w\":87,\"waffle\":58470,\"wagon-covered\":63726,\"walker\":63537,\"walkie-talkie\":63727,\"wallet\":62805,\"wand-magic-sparkles\":58058,\"wand-magic\":61648,\"wand-sparkles\":63275,\"wand\":63274,\"warehouse-full\":62613,\"warehouse\":62612,\"washing-machine\":63640,\"watch-apple\":58059,\"watch-calculator\":63728,\"watch-fitness\":63038,\"watch-smart\":58060,\"watch\":62177,\"water-arrow-down\":63348,\"water-arrow-up\":63349,\"water-ladder\":62917,\"water\":63347,\"watermelon-slice\":58167,\"wave-pulse\":62968,\"wave-sine\":63641,\"wave-square\":63550,\"wave-triangle\":63642,\"wave\":58971,\"waveform-lines\":63730,\"waveform\":63729,\"waves-sine\":58973,\"web-awesome\":59010,\"webhook\":58837,\"weight-hanging\":62925,\"weight-scale\":62614,\"whale\":63276,\"wheat-awn-circle-exclamation\":58776,\"wheat-awn-slash\":58168,\"wheat-awn\":58061,\"wheat-slash\":58169,\"wheat\":63277,\"wheelchair-move\":58062,\"wheelchair\":61843,\"whiskey-glass-ice\":63393,\"whiskey-glass\":63392,\"whistle\":62560,\"wifi-exclamation\":58063,\"wifi-fair\":63147,\"wifi-slash\":63148,\"wifi-weak\":63146,\"wifi\":61931,\"wind-turbine\":63643,\"wind-warning\":63350,\"wind\":63278,\"window-flip\":62479,\"window-frame-open\":57424,\"window-frame\":57423,\"window-maximize\":62160,\"window-minimize\":62161,\"window-restore\":62162,\"window\":62478,\"windsock\":63351,\"wine-bottle\":63279,\"wine-glass-crack\":62651,\"wine-glass-empty\":62926,\"wine-glass\":62691,\"won-sign\":61785,\"worm\":58777,\"wreath-laurel\":58834,\"wreath\":63458,\"wrench-simple\":58065,\"wrench\":61613,\"x-ray\":62615,\"x\":88,\"xmark-large\":58779,\"xmark-to-slot\":63345,\"xmark\":61453,\"xmarks-lines\":58778,\"y\":89,\"yen-sign\":61783,\"yin-yang\":63149,\"z\":90}"
  },
  {
    "path": "packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_sharpSolid.json",
    "content": "{\"0\":48,\"1\":49,\"2\":50,\"3\":51,\"4\":52,\"5\":53,\"6\":54,\"7\":55,\"8\":56,\"9\":57,\"00\":58471,\"360-degrees\":58076,\"a\":65,\"abacus\":63040,\"accent-grave\":96,\"acorn\":63150,\"address-book\":62137,\"address-card\":62139,\"air-conditioner\":63732,\"airplay\":57481,\"alarm-clock\":62286,\"alarm-exclamation\":63555,\"alarm-plus\":63556,\"alarm-snooze\":63557,\"album-circle-plus\":58508,\"album-circle-user\":58509,\"album-collection-circle-plus\":58510,\"album-collection-circle-user\":58511,\"album-collection\":63648,\"album\":63647,\"alicorn\":63152,\"alien-8bit\":63734,\"alien\":63733,\"align-center\":61495,\"align-justify\":61497,\"align-left\":61494,\"align-right\":61496,\"align-slash\":63558,\"alt\":57482,\"amp-guitar\":63649,\"ampersand\":38,\"anchor-circle-check\":58538,\"anchor-circle-exclamation\":58539,\"anchor-circle-xmark\":58540,\"anchor-lock\":58541,\"anchor\":61757,\"angel\":63353,\"angle-90\":57485,\"angle-down\":61703,\"angle-left\":61700,\"angle-right\":61701,\"angle-up\":61702,\"angle\":57484,\"angles-down\":61699,\"angles-left\":61696,\"angles-right\":61697,\"angles-up-down\":58893,\"angles-up\":61698,\"ankh\":63044,\"ant\":59008,\"apartment\":58472,\"aperture\":58079,\"apostrophe\":39,\"apple-core\":57487,\"apple-whole\":62929,\"archway\":62807,\"arrow-down-1-9\":61794,\"arrow-down-9-1\":63622,\"arrow-down-a-z\":61789,\"arrow-down-arrow-up\":63619,\"arrow-down-big-small\":63628,\"arrow-down-from-arc\":58900,\"arrow-down-from-bracket\":58983,\"arrow-down-from-dotted-line\":57488,\"arrow-down-from-line\":62277,\"arrow-down-left-and-arrow-up-right-to-center\":57490,\"arrow-down-left\":57489,\"arrow-down-long\":61813,\"arrow-down-right\":57491,\"arrow-down-short-wide\":63620,\"arrow-down-small-big\":63629,\"arrow-down-square-triangle\":63625,\"arrow-down-to-arc\":58542,\"arrow-down-to-bracket\":57492,\"arrow-down-to-dotted-line\":57493,\"arrow-down-to-line\":62269,\"arrow-down-to-square\":57494,\"arrow-down-triangle-square\":63624,\"arrow-down-up-across-line\":58543,\"arrow-down-up-lock\":58544,\"arrow-down-wide-short\":61792,\"arrow-down-z-a\":63617,\"arrow-down\":61539,\"arrow-left-from-arc\":58901,\"arrow-left-from-bracket\":58984,\"arrow-left-from-line\":62276,\"arrow-left-long-to-line\":58324,\"arrow-left-long\":61815,\"arrow-left-to-arc\":58902,\"arrow-left-to-bracket\":58985,\"arrow-left-to-line\":62270,\"arrow-left\":61536,\"arrow-pointer\":62021,\"arrow-progress\":58847,\"arrow-right-arrow-left\":61676,\"arrow-right-from-arc\":58545,\"arrow-right-from-bracket\":61579,\"arrow-right-from-line\":62275,\"arrow-right-long-to-line\":58325,\"arrow-right-long\":61816,\"arrow-right-to-arc\":58546,\"arrow-right-to-bracket\":61584,\"arrow-right-to-city\":58547,\"arrow-right-to-line\":62272,\"arrow-right\":61537,\"arrow-rotate-left\":61666,\"arrow-rotate-right\":61470,\"arrow-trend-down\":57495,\"arrow-trend-up\":57496,\"arrow-turn-down-left\":58081,\"arrow-turn-down-right\":58326,\"arrow-turn-down\":61769,\"arrow-turn-left-down\":58931,\"arrow-turn-left-up\":58932,\"arrow-turn-left\":58930,\"arrow-turn-right\":58933,\"arrow-turn-up\":61768,\"arrow-up-1-9\":61795,\"arrow-up-9-1\":63623,\"arrow-up-a-z\":61790,\"arrow-up-arrow-down\":57497,\"arrow-up-big-small\":63630,\"arrow-up-from-arc\":58548,\"arrow-up-from-bracket\":57498,\"arrow-up-from-dotted-line\":57499,\"arrow-up-from-ground-water\":58549,\"arrow-up-from-line\":62274,\"arrow-up-from-square\":57500,\"arrow-up-from-water-pump\":58550,\"arrow-up-left-from-circle\":57502,\"arrow-up-left\":57501,\"arrow-up-long\":61814,\"arrow-up-right-and-arrow-down-left-from-center\":57504,\"arrow-up-right-dots\":58551,\"arrow-up-right-from-square\":61582,\"arrow-up-right\":57503,\"arrow-up-short-wide\":63621,\"arrow-up-small-big\":63631,\"arrow-up-square-triangle\":63627,\"arrow-up-to-arc\":58903,\"arrow-up-to-bracket\":58986,\"arrow-up-to-dotted-line\":57505,\"arrow-up-to-line\":62273,\"arrow-up-triangle-square\":63626,\"arrow-up-wide-short\":61793,\"arrow-up-z-a\":63618,\"arrow-up\":61538,\"arrows-cross\":57506,\"arrows-down-to-line\":58552,\"arrows-down-to-people\":58553,\"arrows-from-dotted-line\":57507,\"arrows-from-line\":57508,\"arrows-left-right-to-line\":58554,\"arrows-left-right\":61566,\"arrows-maximize\":62237,\"arrows-minimize\":57509,\"arrows-repeat-1\":62310,\"arrows-repeat\":62308,\"arrows-retweet\":62305,\"arrows-rotate-reverse\":58928,\"arrows-rotate\":61473,\"arrows-spin\":58555,\"arrows-split-up-and-left\":58556,\"arrows-to-circle\":58557,\"arrows-to-dot\":58558,\"arrows-to-dotted-line\":57510,\"arrows-to-eye\":58559,\"arrows-to-line\":57511,\"arrows-turn-right\":58560,\"arrows-turn-to-dots\":58561,\"arrows-up-down-left-right\":61511,\"arrows-up-down\":61565,\"arrows-up-to-line\":58562,\"asterisk\":42,\"at\":64,\"atom-simple\":62931,\"atom\":62930,\"audio-description-slash\":57512,\"audio-description\":62110,\"austral-sign\":57513,\"avocado\":57514,\"award-simple\":57515,\"award\":62809,\"axe-battle\":63155,\"axe\":63154,\"b\":66,\"baby-carriage\":63357,\"baby\":63356,\"backpack\":62932,\"backward-fast\":61513,\"backward-step\":61512,\"backward\":61514,\"bacon\":63461,\"bacteria\":57433,\"bacterium\":57434,\"badge-check\":62262,\"badge-dollar\":63045,\"badge-percent\":63046,\"badge-sheriff\":63650,\"badge\":62261,\"badger-honey\":63156,\"badminton\":58170,\"bag-seedling\":58866,\"bag-shopping-minus\":58960,\"bag-shopping-plus\":58961,\"bag-shopping\":62096,\"bagel\":58327,\"bags-shopping\":63559,\"baguette\":58328,\"bahai\":63078,\"baht-sign\":57516,\"ball-pile\":63358,\"balloon\":58083,\"balloons\":58084,\"ballot-check\":63283,\"ballot\":63282,\"ban-bug\":63481,\"ban-parking\":62998,\"ban-smoking\":62797,\"ban\":61534,\"banana\":58085,\"bandage\":62562,\"bangladeshi-taka-sign\":58086,\"banjo\":63651,\"barcode-read\":62564,\"barcode-scan\":62565,\"barcode\":61482,\"bars-filter\":57517,\"bars-progress\":63528,\"bars-sort\":57518,\"bars-staggered\":62800,\"bars\":61641,\"baseball-bat-ball\":62514,\"baseball\":62515,\"basket-shopping-minus\":58962,\"basket-shopping-plus\":58963,\"basket-shopping-simple\":57519,\"basket-shopping\":62097,\"basketball-hoop\":62517,\"basketball\":62516,\"bat\":63157,\"bath\":62157,\"battery-bolt\":62326,\"battery-empty\":62020,\"battery-exclamation\":57520,\"battery-full\":62016,\"battery-half\":62018,\"battery-low\":57521,\"battery-quarter\":62019,\"battery-slash\":62327,\"battery-three-quarters\":62017,\"bed-bunk\":63736,\"bed-empty\":63737,\"bed-front\":63735,\"bed-pulse\":62599,\"bed\":62006,\"bee\":57522,\"beer-mug-empty\":61692,\"beer-mug\":57523,\"bell-concierge\":62818,\"bell-exclamation\":63560,\"bell-on\":63738,\"bell-plus\":63561,\"bell-ring\":58924,\"bell-school-slash\":62934,\"bell-school\":62933,\"bell-slash\":61942,\"bell\":61683,\"bells\":63359,\"bench-tree\":58087,\"bezier-curve\":62811,\"bicycle\":61958,\"billboard\":58829,\"bin-bottles-recycle\":58870,\"bin-bottles\":58869,\"bin-recycle\":58871,\"binary-circle-check\":58172,\"binary-lock\":58173,\"binary-slash\":58174,\"binary\":58171,\"binoculars\":61925,\"biohazard\":63360,\"bird\":58473,\"bitcoin-sign\":57524,\"blanket-fire\":58330,\"blanket\":62616,\"blender-phone\":63158,\"blender\":62743,\"blinds-open\":63740,\"blinds-raised\":63741,\"blinds\":63739,\"block-brick-fire\":58332,\"block-brick\":58331,\"block-question\":58333,\"block-quote\":57525,\"block\":58474,\"blog\":63361,\"blueberries\":58088,\"bluetooth\":62099,\"bold\":61490,\"bolt-auto\":57526,\"bolt-lightning\":57527,\"bolt-slash\":57528,\"bolt\":61671,\"bomb\":61922,\"bone-break\":62936,\"bone\":62935,\"bong\":62812,\"book-arrow-right\":57529,\"book-arrow-up\":57530,\"book-atlas\":62808,\"book-bible\":63047,\"book-blank\":62937,\"book-bookmark\":57531,\"book-circle-arrow-right\":57532,\"book-circle-arrow-up\":57533,\"book-copy\":57534,\"book-font\":57535,\"book-heart\":62617,\"book-journal-whills\":63082,\"book-medical\":63462,\"book-open-cover\":57536,\"book-open-reader\":62938,\"book-open\":62744,\"book-quran\":63111,\"book-section\":57537,\"book-skull\":63159,\"book-sparkles\":63160,\"book-tanakh\":63527,\"book-user\":63463,\"book\":61485,\"bookmark-slash\":57538,\"bookmark\":61486,\"books-medical\":63464,\"books\":62939,\"boombox\":63653,\"boot-heeled\":58175,\"boot\":63362,\"booth-curtain\":63284,\"border-all\":63564,\"border-bottom-right\":63572,\"border-bottom\":63565,\"border-center-h\":63644,\"border-center-v\":63645,\"border-inner\":63566,\"border-left\":63567,\"border-none\":63568,\"border-outer\":63569,\"border-right\":63570,\"border-top-left\":63571,\"border-top\":63573,\"bore-hole\":58563,\"bottle-baby\":58995,\"bottle-droplet\":58564,\"bottle-water\":58565,\"bow-arrow\":63161,\"bowl-chopsticks-noodles\":58090,\"bowl-chopsticks\":58089,\"bowl-food\":58566,\"bowl-hot\":63523,\"bowl-rice\":58091,\"bowl-scoop\":58334,\"bowl-scoops\":58335,\"bowl-soft-serve\":58475,\"bowl-spoon\":58336,\"bowling-ball-pin\":57539,\"bowling-ball\":62518,\"bowling-pins\":62519,\"box-archive\":61831,\"box-ballot\":63285,\"box-check\":62567,\"box-circle-check\":57540,\"box-dollar\":62624,\"box-heart\":62621,\"box-open-full\":62620,\"box-open\":62622,\"box-taped\":62618,\"box-tissue\":57435,\"box\":62566,\"boxes-packing\":58567,\"boxes-stacked\":62568,\"boxing-glove\":62520,\"bracket-curly-right\":125,\"bracket-curly\":123,\"bracket-round-right\":41,\"bracket-round\":40,\"bracket-square-right\":93,\"bracket-square\":91,\"brackets-curly\":63466,\"brackets-round\":57541,\"brackets-square\":63465,\"braille\":62113,\"brain-arrow-curved-right\":63095,\"brain-circuit\":57542,\"brain\":62940,\"brake-warning\":57543,\"brazilian-real-sign\":58476,\"bread-loaf\":63467,\"bread-slice-butter\":58337,\"bread-slice\":63468,\"bridge-circle-check\":58569,\"bridge-circle-exclamation\":58570,\"bridge-circle-xmark\":58571,\"bridge-lock\":58572,\"bridge-suspension\":58573,\"bridge-water\":58574,\"bridge\":58568,\"briefcase-arrow-right\":58098,\"briefcase-blank\":57544,\"briefcase-medical\":62569,\"briefcase\":61617,\"brightness-low\":57546,\"brightness\":57545,\"bring-forward\":63574,\"bring-front\":63575,\"broccoli\":58338,\"broom-ball\":62552,\"broom-wide\":58833,\"broom\":62746,\"browser\":62334,\"browsers\":57547,\"brush\":62813,\"bucket\":58575,\"bug-slash\":58512,\"bug\":61832,\"bugs\":58576,\"building-circle-arrow-right\":58577,\"building-circle-check\":58578,\"building-circle-exclamation\":58579,\"building-circle-xmark\":58580,\"building-columns\":61852,\"building-flag\":58581,\"building-lock\":58582,\"building-magnifying-glass\":58908,\"building-memo\":58910,\"building-ngo\":58583,\"building-shield\":58584,\"building-un\":58585,\"building-user\":58586,\"building-wheat\":58587,\"building\":61869,\"buildings\":57548,\"bulldozer\":58965,\"bullhorn\":61601,\"bullseye-arrow\":63048,\"bullseye-pointer\":63049,\"bullseye\":61760,\"buoy-mooring\":58806,\"buoy\":58805,\"burger-cheese\":63473,\"burger-fries\":57549,\"burger-glass\":57550,\"burger-lettuce\":58339,\"burger-soda\":63576,\"burger\":63493,\"burrito\":63469,\"burst\":58588,\"bus-school\":62941,\"bus-simple\":62814,\"bus\":61959,\"business-time\":63050,\"butter\":58340,\"c\":67,\"cabin\":58477,\"cabinet-filing\":63051,\"cable-car\":63450,\"cactus\":63655,\"caduceus\":59009,\"cake-candles\":61949,\"cake-slice\":58341,\"calculator-simple\":63052,\"calculator\":61932,\"calendar-arrow-down\":57552,\"calendar-arrow-up\":57553,\"calendar-check\":62068,\"calendar-circle-exclamation\":58478,\"calendar-circle-minus\":58479,\"calendar-circle-plus\":58480,\"calendar-circle-user\":58481,\"calendar-clock\":57554,\"calendar-day\":63363,\"calendar-days\":61555,\"calendar-exclamation\":62260,\"calendar-heart\":57555,\"calendar-image\":57556,\"calendar-lines-pen\":58482,\"calendar-lines\":57557,\"calendar-minus\":62066,\"calendar-pen\":62259,\"calendar-plus\":62065,\"calendar-range\":57558,\"calendar-star\":63286,\"calendar-users\":58850,\"calendar-week\":63364,\"calendar-xmark\":62067,\"calendar\":61747,\"calendars\":57559,\"camcorder\":63656,\"camera-cctv\":63660,\"camera-movie\":63657,\"camera-polaroid\":63658,\"camera-retro\":61571,\"camera-rotate\":57560,\"camera-security\":63742,\"camera-slash\":57561,\"camera-viewfinder\":57562,\"camera-web-slash\":63539,\"camera-web\":63538,\"camera\":61488,\"campfire\":63162,\"campground\":63163,\"can-food\":58342,\"candle-holder\":63164,\"candy-bar\":58344,\"candy-cane\":63366,\"candy-corn\":63165,\"candy\":58343,\"cannabis\":62815,\"cannon\":58946,\"capsules\":62571,\"car-battery\":62943,\"car-bolt\":58177,\"car-building\":63577,\"car-bump\":62944,\"car-burst\":62945,\"car-bus\":63578,\"car-circle-bolt\":58178,\"car-garage\":62946,\"car-mirrors\":58179,\"car-on\":58589,\"car-rear\":62942,\"car-side-bolt\":58180,\"car-side\":62948,\"car-tilt\":62949,\"car-tunnel\":58590,\"car-wash\":62950,\"car-wrench\":62947,\"car\":61881,\"caravan-simple\":57344,\"caravan\":63743,\"card-club\":58345,\"card-diamond\":58346,\"card-heart\":58347,\"card-spade\":58348,\"cards-blank\":58591,\"cards\":58349,\"caret-down\":61655,\"caret-left\":61657,\"caret-right\":61658,\"caret-up\":61656,\"carpool\":59036,\"carrot\":63367,\"cars\":63579,\"cart-arrow-down\":61976,\"cart-arrow-up\":58350,\"cart-circle-arrow-down\":58351,\"cart-circle-arrow-up\":58352,\"cart-circle-check\":58353,\"cart-circle-exclamation\":58354,\"cart-circle-plus\":58355,\"cart-circle-xmark\":58356,\"cart-flatbed-boxes\":62581,\"cart-flatbed-empty\":62582,\"cart-flatbed-suitcase\":62877,\"cart-flatbed\":62580,\"cart-minus\":57563,\"cart-plus\":61975,\"cart-shopping-fast\":57564,\"cart-shopping\":61562,\"cart-xmark\":57565,\"cash-register\":63368,\"cassette-betamax\":63652,\"cassette-tape\":63659,\"cassette-vhs\":63724,\"castle\":57566,\"cat-space\":57345,\"cat\":63166,\"cauldron\":63167,\"cedi-sign\":57567,\"cent-sign\":58357,\"certificate\":61603,\"chair-office\":63169,\"chair\":63168,\"chalkboard-user\":62748,\"chalkboard\":62747,\"champagne-glass\":63390,\"champagne-glasses\":63391,\"charging-station\":62951,\"chart-area\":61950,\"chart-bar\":61568,\"chart-bullet\":57569,\"chart-candlestick\":57570,\"chart-column\":57571,\"chart-diagram\":59029,\"chart-fft\":59038,\"chart-gantt\":57572,\"chart-kanban\":58959,\"chart-line-down\":63053,\"chart-line-up-down\":58839,\"chart-line-up\":57573,\"chart-line\":61953,\"chart-mixed-up-circle-currency\":58840,\"chart-mixed-up-circle-dollar\":58841,\"chart-mixed\":63043,\"chart-network\":63370,\"chart-pie-simple-circle-currency\":58884,\"chart-pie-simple-circle-dollar\":58885,\"chart-pie-simple\":63054,\"chart-pie\":61952,\"chart-pyramid\":57574,\"chart-radar\":57575,\"chart-scatter-3d\":57576,\"chart-scatter-bubble\":57577,\"chart-scatter\":63470,\"chart-simple-horizontal\":58484,\"chart-simple\":58483,\"chart-sine\":59037,\"chart-tree-map\":57578,\"chart-user\":63139,\"chart-waterfall\":57579,\"check-double\":62816,\"check-to-slot\":63346,\"check\":61452,\"cheese-swiss\":63472,\"cheese\":63471,\"cherries\":57580,\"chess-bishop-piece\":62523,\"chess-bishop\":62522,\"chess-board\":62524,\"chess-clock-flip\":62526,\"chess-clock\":62525,\"chess-king-piece\":62528,\"chess-king\":62527,\"chess-knight-piece\":62530,\"chess-knight\":62529,\"chess-pawn-piece\":62532,\"chess-pawn\":62531,\"chess-queen-piece\":62534,\"chess-queen\":62533,\"chess-rook-piece\":62536,\"chess-rook\":62535,\"chess\":62521,\"chestnut\":58358,\"chevron-down\":61560,\"chevron-left\":61523,\"chevron-right\":61524,\"chevron-up\":61559,\"chevrons-down\":62242,\"chevrons-left\":62243,\"chevrons-right\":62244,\"chevrons-up\":62245,\"chf-sign\":58882,\"child-combatant\":58592,\"child-dress\":58780,\"child-reaching\":58781,\"child\":61870,\"children\":58593,\"chimney\":63371,\"chopsticks\":58359,\"church\":62749,\"circle-0\":57581,\"circle-1\":57582,\"circle-2\":57583,\"circle-3\":57584,\"circle-4\":57585,\"circle-5\":57586,\"circle-6\":57587,\"circle-7\":57588,\"circle-8\":57589,\"circle-9\":57590,\"circle-a\":57591,\"circle-ampersand\":57592,\"circle-arrow-down-left\":57593,\"circle-arrow-down-right\":57594,\"circle-arrow-down\":61611,\"circle-arrow-left\":61608,\"circle-arrow-right\":61609,\"circle-arrow-up-left\":57595,\"circle-arrow-up-right\":57596,\"circle-arrow-up\":61610,\"circle-b\":57597,\"circle-bolt\":57598,\"circle-book-open\":57599,\"circle-bookmark\":57600,\"circle-c\":57601,\"circle-calendar\":57602,\"circle-camera\":57603,\"circle-caret-down\":62253,\"circle-caret-left\":62254,\"circle-caret-right\":62256,\"circle-caret-up\":62257,\"circle-check\":61528,\"circle-chevron-down\":61754,\"circle-chevron-left\":61751,\"circle-chevron-right\":61752,\"circle-chevron-up\":61753,\"circle-d\":57604,\"circle-dashed\":57605,\"circle-divide\":57606,\"circle-dollar-to-slot\":62649,\"circle-dollar\":62184,\"circle-dot\":61842,\"circle-down-left\":57607,\"circle-down-right\":57608,\"circle-down\":62296,\"circle-e\":57609,\"circle-ellipsis-vertical\":57611,\"circle-ellipsis\":57610,\"circle-envelope\":57612,\"circle-euro\":58830,\"circle-exclamation-check\":57613,\"circle-exclamation\":61546,\"circle-f\":57614,\"circle-g\":57615,\"circle-gf\":59007,\"circle-h\":62590,\"circle-half-stroke\":61506,\"circle-half\":57616,\"circle-heart\":62663,\"circle-i\":57617,\"circle-info\":61530,\"circle-j\":57618,\"circle-k\":57619,\"circle-l\":57620,\"circle-left\":62297,\"circle-location-arrow\":62978,\"circle-m\":57621,\"circle-microphone-lines\":57623,\"circle-microphone\":57622,\"circle-minus\":61526,\"circle-n\":57624,\"circle-nodes\":58594,\"circle-notch\":61902,\"circle-o\":57625,\"circle-p\":57626,\"circle-parking\":62997,\"circle-pause\":62091,\"circle-phone-flip\":57628,\"circle-phone-hangup\":57629,\"circle-phone\":57627,\"circle-play\":61764,\"circle-plus\":61525,\"circle-q\":57630,\"circle-quarter-stroke\":58835,\"circle-quarter\":57631,\"circle-quarters\":58360,\"circle-question\":61529,\"circle-r\":57632,\"circle-radiation\":63418,\"circle-right\":62298,\"circle-s\":57633,\"circle-small\":57634,\"circle-sort-down\":57393,\"circle-sort-up\":57394,\"circle-sort\":57392,\"circle-star\":57635,\"circle-sterling\":58831,\"circle-stop\":62093,\"circle-t\":57636,\"circle-three-quarters-stroke\":58836,\"circle-three-quarters\":57637,\"circle-trash\":57638,\"circle-u\":57639,\"circle-up-left\":57640,\"circle-up-right\":57641,\"circle-up\":62299,\"circle-user\":62141,\"circle-v\":57642,\"circle-video\":57643,\"circle-w\":57644,\"circle-waveform-lines\":57645,\"circle-wifi-circle-wifi\":59006,\"circle-wifi\":59005,\"circle-x\":57646,\"circle-xmark\":61527,\"circle-y\":57647,\"circle-yen\":58832,\"circle-z\":57648,\"circle\":61713,\"circles-overlap-3\":59041,\"circles-overlap\":58880,\"citrus-slice\":58101,\"citrus\":58100,\"city\":63055,\"clapperboard-play\":57650,\"clapperboard\":57649,\"clarinet\":63661,\"claw-marks\":63170,\"clipboard-check\":62572,\"clipboard-list-check\":63287,\"clipboard-list\":62573,\"clipboard-medical\":57651,\"clipboard-prescription\":62952,\"clipboard-question\":58595,\"clipboard-user\":63475,\"clipboard\":62248,\"clock-desk\":57652,\"clock-eight-thirty\":58182,\"clock-eight\":58181,\"clock-eleven-thirty\":58184,\"clock-eleven\":58183,\"clock-five-thirty\":58186,\"clock-five\":58185,\"clock-four-thirty\":58187,\"clock-nine-thirty\":58189,\"clock-nine\":58188,\"clock-one-thirty\":58191,\"clock-one\":58190,\"clock-rotate-left\":61914,\"clock-seven-thirty\":58193,\"clock-seven\":58192,\"clock-six-thirty\":58195,\"clock-six\":58194,\"clock-ten-thirty\":58197,\"clock-ten\":58196,\"clock-three-thirty\":58199,\"clock-three\":58198,\"clock-twelve-thirty\":58201,\"clock-twelve\":58200,\"clock-two-thirty\":58203,\"clock-two\":58202,\"clock\":61463,\"clone\":62029,\"closed-captioning-slash\":57653,\"closed-captioning\":61962,\"clothes-hanger\":57654,\"cloud-arrow-down\":61677,\"cloud-arrow-up\":61678,\"cloud-binary\":58881,\"cloud-bolt-moon\":63341,\"cloud-bolt-sun\":63342,\"cloud-bolt\":63340,\"cloud-check\":58204,\"cloud-drizzle\":63288,\"cloud-exclamation\":58513,\"cloud-fog\":63310,\"cloud-hail-mixed\":63290,\"cloud-hail\":63289,\"cloud-meatball\":63291,\"cloud-minus\":58205,\"cloud-moon-rain\":63292,\"cloud-moon\":63171,\"cloud-music\":63662,\"cloud-plus\":58206,\"cloud-question\":58514,\"cloud-rain\":63293,\"cloud-rainbow\":63294,\"cloud-showers-heavy\":63296,\"cloud-showers-water\":58596,\"cloud-showers\":63295,\"cloud-slash\":57655,\"cloud-sleet\":63297,\"cloud-snow\":63298,\"cloud-sun-rain\":63299,\"cloud-sun\":63172,\"cloud-word\":57656,\"cloud-xmark\":58207,\"cloud\":61634,\"clouds-moon\":63301,\"clouds-sun\":63302,\"clouds\":63300,\"clover\":57657,\"club\":62247,\"coconut\":58102,\"code-branch\":61734,\"code-commit\":62342,\"code-compare\":57658,\"code-fork\":57659,\"code-merge\":62343,\"code-pull-request-closed\":58361,\"code-pull-request-draft\":58362,\"code-pull-request\":57660,\"code-simple\":57661,\"code\":61729,\"coffee-bean\":57662,\"coffee-beans\":57663,\"coffee-pot\":57346,\"coffin-cross\":57425,\"coffin\":63174,\"coin-blank\":58363,\"coin-front\":58364,\"coin-vertical\":58365,\"coin\":63580,\"coins\":62750,\"colon-sign\":57664,\"colon\":58,\"columns-3\":58209,\"comet\":57347,\"comma\":44,\"command\":57666,\"comment-arrow-down\":57667,\"comment-arrow-up-right\":57669,\"comment-arrow-up\":57668,\"comment-captions\":57670,\"comment-check\":62636,\"comment-code\":57671,\"comment-dollar\":63057,\"comment-dots\":62637,\"comment-exclamation\":62639,\"comment-heart\":58824,\"comment-image\":57672,\"comment-lines\":62640,\"comment-medical\":63477,\"comment-middle-top\":57674,\"comment-middle\":57673,\"comment-minus\":62641,\"comment-music\":63664,\"comment-nodes\":59030,\"comment-pen\":62638,\"comment-plus\":62642,\"comment-question\":57675,\"comment-quote\":57676,\"comment-slash\":62643,\"comment-smile\":62644,\"comment-sms\":63437,\"comment-text\":57677,\"comment-xmark\":62645,\"comment\":61557,\"comments-dollar\":63059,\"comments-question-check\":57679,\"comments-question\":57678,\"comments\":61574,\"compact-disc\":62751,\"compass-drafting\":62824,\"compass-slash\":62953,\"compass\":61774,\"compress-wide\":62246,\"compress\":61542,\"computer-classic\":63665,\"computer-mouse-scrollwheel\":63693,\"computer-mouse\":63692,\"computer-speaker\":63666,\"computer\":58597,\"container-storage\":62647,\"conveyor-belt-arm\":58872,\"conveyor-belt-boxes\":62575,\"conveyor-belt-empty\":57680,\"conveyor-belt\":62574,\"cookie-bite\":62820,\"cookie\":62819,\"copy\":61637,\"copyright\":61945,\"corn\":63175,\"corner\":58366,\"couch\":62648,\"court-sport\":58947,\"cow\":63176,\"cowbell-circle-plus\":63668,\"cowbell\":63667,\"crab\":58367,\"crate-apple\":63153,\"crate-empty\":57681,\"credit-card-blank\":62345,\"credit-card-front\":62346,\"credit-card\":61597,\"cricket-bat-ball\":62537,\"croissant\":63478,\"crop-simple\":62821,\"crop\":61733,\"cross\":63060,\"crosshairs-simple\":58783,\"crosshairs\":61531,\"crow\":62752,\"crown\":62753,\"crutch\":63479,\"crutches\":63480,\"cruzeiro-sign\":57682,\"crystal-ball\":58210,\"cube\":61874,\"cubes-stacked\":58598,\"cubes\":61875,\"cucumber\":58369,\"cup-straw-swoosh\":58212,\"cup-straw\":58211,\"cup-togo\":63173,\"cupcake\":58370,\"curling-stone\":62538,\"custard\":58371,\"d\":68,\"dagger\":63179,\"dash\":58372,\"database\":61888,\"deer-rudolph\":63375,\"deer\":63374,\"delete-left\":62810,\"delete-right\":57684,\"democrat\":63303,\"desktop-arrow-down\":57685,\"desktop\":62352,\"dharmachakra\":63061,\"diagram-cells\":58485,\"diagram-lean-canvas\":57686,\"diagram-nested\":57687,\"diagram-next\":58486,\"diagram-predecessor\":58487,\"diagram-previous\":58488,\"diagram-project\":62786,\"diagram-sankey\":57688,\"diagram-subtask\":58489,\"diagram-successor\":58490,\"diagram-venn\":57690,\"dial-high\":57692,\"dial-low\":57693,\"dial-max\":57694,\"dial-med-low\":57696,\"dial-med\":57695,\"dial-min\":57697,\"dial-off\":57698,\"dial\":57691,\"diamond-exclamation\":58373,\"diamond-half-stroke\":58808,\"diamond-half\":58807,\"diamond-turn-right\":62955,\"diamond\":61977,\"diamonds-4\":59019,\"dice-d10\":63181,\"dice-d12\":63182,\"dice-d20\":63183,\"dice-d4\":63184,\"dice-d6\":63185,\"dice-d8\":63186,\"dice-five\":62755,\"dice-four\":62756,\"dice-one\":62757,\"dice-six\":62758,\"dice-three\":62759,\"dice-two\":62760,\"dice\":62754,\"dinosaur\":58878,\"diploma\":62954,\"disc-drive\":63669,\"disease\":63482,\"display-arrow-down\":57700,\"display-chart-up-circle-currency\":58853,\"display-chart-up-circle-dollar\":58854,\"display-chart-up\":58851,\"display-code\":57701,\"display-medical\":57702,\"display-slash\":58106,\"display\":57699,\"distribute-spacing-horizontal\":58213,\"distribute-spacing-vertical\":58214,\"ditto\":34,\"divide\":62761,\"dna\":62577,\"do-not-enter\":62956,\"dog-leashed\":63188,\"dog\":63187,\"dollar-sign\":36,\"dolly-empty\":62579,\"dolly\":62578,\"dolphin\":57704,\"dong-sign\":57705,\"donut\":58374,\"door-closed\":62762,\"door-open\":62763,\"dove\":62650,\"down-from-bracket\":58987,\"down-from-dotted-line\":58375,\"down-from-line\":62281,\"down-left-and-up-right-to-center\":62498,\"down-left\":57706,\"down-long\":62217,\"down-right\":57707,\"down-to-bracket\":58599,\"down-to-dotted-line\":58376,\"down-to-line\":62282,\"down\":62292,\"download\":61465,\"dragon\":63189,\"draw-circle\":62957,\"draw-polygon\":62958,\"draw-square\":62959,\"dreidel\":63378,\"drone-front\":63584,\"drone\":63583,\"droplet-degree\":63304,\"droplet-percent\":63312,\"droplet-slash\":62919,\"droplet\":61507,\"drum-steelpan\":62826,\"drum\":62825,\"drumstick-bite\":63191,\"drumstick\":63190,\"dryer-heat\":63586,\"dryer\":63585,\"duck\":63192,\"dumbbell\":62539,\"dumpster-fire\":63380,\"dumpster\":63379,\"dungeon\":63193,\"e\":69,\"ear-deaf\":62116,\"ear-listen\":62114,\"ear-muffs\":63381,\"ear\":62960,\"earth-africa\":62844,\"earth-americas\":62845,\"earth-asia\":62846,\"earth-europe\":63394,\"earth-oceania\":58491,\"eclipse\":63305,\"egg-fried\":63484,\"egg\":63483,\"eggplant\":57708,\"eject\":61522,\"elephant\":63194,\"elevator\":57709,\"ellipsis-stroke-vertical\":62364,\"ellipsis-stroke\":62363,\"ellipsis-vertical\":61762,\"ellipsis\":61761,\"empty-set\":63062,\"engine-warning\":62962,\"engine\":57710,\"envelope-circle-check\":58600,\"envelope-dot\":57711,\"envelope-open-dollar\":63063,\"envelope-open-text\":63064,\"envelope-open\":62134,\"envelope\":61664,\"envelopes-bulk\":63092,\"envelopes\":57712,\"equals\":61,\"eraser\":61741,\"escalator\":57713,\"ethernet\":63382,\"euro-sign\":61779,\"excavator\":58966,\"exclamation\":33,\"expand-wide\":62240,\"expand\":61541,\"explosion\":58601,\"eye-dropper-full\":57714,\"eye-dropper-half\":57715,\"eye-dropper\":61947,\"eye-evil\":63195,\"eye-low-vision\":62120,\"eye-slash\":61552,\"eye\":61550,\"eyes\":58215,\"f\":70,\"face-angry-horns\":58216,\"face-angry\":62806,\"face-anguished\":58217,\"face-anxious-sweat\":58218,\"face-astonished\":58219,\"face-awesome\":58377,\"face-beam-hand-over-mouth\":58492,\"face-clouds\":58493,\"face-confounded\":58220,\"face-confused\":58221,\"face-cowboy-hat\":58222,\"face-diagonal-mouth\":58494,\"face-disappointed\":58223,\"face-disguise\":58224,\"face-dizzy\":62823,\"face-dotted\":58495,\"face-downcast-sweat\":58225,\"face-drooling\":58226,\"face-exhaling\":58496,\"face-explode\":58110,\"face-expressionless\":58227,\"face-eyes-xmarks\":58228,\"face-fearful\":58229,\"face-flushed\":62841,\"face-frown-open\":62842,\"face-frown-slight\":58230,\"face-frown\":61721,\"face-glasses\":58231,\"face-grimace\":62847,\"face-grin-beam-sweat\":62851,\"face-grin-beam\":62850,\"face-grin-hearts\":62852,\"face-grin-squint-tears\":62854,\"face-grin-squint\":62853,\"face-grin-stars\":62855,\"face-grin-tears\":62856,\"face-grin-tongue-squint\":62858,\"face-grin-tongue-wink\":62859,\"face-grin-tongue\":62857,\"face-grin-wide\":62849,\"face-grin-wink\":62860,\"face-grin\":62848,\"face-hand-over-mouth\":58232,\"face-hand-peeking\":58497,\"face-hand-yawn\":58233,\"face-head-bandage\":58234,\"face-holding-back-tears\":58498,\"face-hushed\":58235,\"face-icicles\":58236,\"face-kiss-beam\":62871,\"face-kiss-closed-eyes\":58237,\"face-kiss-wink-heart\":62872,\"face-kiss\":62870,\"face-laugh-beam\":62874,\"face-laugh-squint\":62875,\"face-laugh-wink\":62876,\"face-laugh\":62873,\"face-lying\":58238,\"face-mask\":58239,\"face-meh-blank\":62884,\"face-meh\":61722,\"face-melting\":58499,\"face-monocle\":58240,\"face-nauseated\":58241,\"face-nose-steam\":58242,\"face-party\":58243,\"face-pensive\":58244,\"face-persevering\":58245,\"face-pleading\":58246,\"face-pouting\":58247,\"face-raised-eyebrow\":58248,\"face-relieved\":58249,\"face-rolling-eyes\":62885,\"face-sad-cry\":62899,\"face-sad-sweat\":58250,\"face-sad-tear\":62900,\"face-saluting\":58500,\"face-scream\":58251,\"face-shush\":58252,\"face-sleeping\":58253,\"face-sleepy\":58254,\"face-smile-beam\":62904,\"face-smile-halo\":58255,\"face-smile-hearts\":58256,\"face-smile-horns\":58257,\"face-smile-plus\":62905,\"face-smile-relaxed\":58258,\"face-smile-tear\":58259,\"face-smile-tongue\":58260,\"face-smile-upside-down\":58261,\"face-smile-wink\":62682,\"face-smile\":61720,\"face-smiling-hands\":58262,\"face-smirking\":58263,\"face-spiral-eyes\":58501,\"face-sunglasses\":58264,\"face-surprise\":62914,\"face-swear\":58265,\"face-thermometer\":58266,\"face-thinking\":58267,\"face-tired\":62920,\"face-tissue\":58268,\"face-tongue-money\":58269,\"face-tongue-sweat\":58270,\"face-unamused\":58271,\"face-viewfinder\":58111,\"face-vomit\":58272,\"face-weary\":58273,\"face-woozy\":58274,\"face-worried\":58275,\"face-zany\":58276,\"face-zipper\":58277,\"falafel\":58378,\"family-dress\":58113,\"family-pants\":58114,\"family\":58112,\"fan-table\":57348,\"fan\":63587,\"farm\":63588,\"faucet-drip\":57350,\"faucet\":57349,\"fax\":61868,\"feather-pointed\":62827,\"feather\":62765,\"fence\":58115,\"ferris-wheel\":57716,\"ferry\":58602,\"field-hockey-stick-ball\":62540,\"file-arrow-down\":62829,\"file-arrow-up\":62836,\"file-audio\":61895,\"file-binary\":57717,\"file-cad\":58994,\"file-certificate\":62963,\"file-chart-column\":63065,\"file-chart-pie\":63066,\"file-check\":62230,\"file-circle-check\":58784,\"file-circle-exclamation\":58603,\"file-circle-info\":58515,\"file-circle-minus\":58605,\"file-circle-plus\":58516,\"file-circle-question\":58607,\"file-circle-xmark\":58785,\"file-code\":61897,\"file-contract\":62828,\"file-csv\":63197,\"file-dashed-line\":63607,\"file-doc\":58861,\"file-eps\":58948,\"file-excel\":61891,\"file-exclamation\":62234,\"file-export\":62830,\"file-fragment\":59031,\"file-gif\":58949,\"file-half-dashed\":59032,\"file-heart\":57718,\"file-image\":61893,\"file-import\":62831,\"file-invoice-dollar\":62833,\"file-invoice\":62832,\"file-jpg\":58950,\"file-lines\":61788,\"file-lock\":58278,\"file-magnifying-glass\":63589,\"file-medical\":62583,\"file-minus\":62232,\"file-mov\":58951,\"file-mp3\":58952,\"file-mp4\":58953,\"file-music\":63670,\"file-pdf\":61889,\"file-pen\":62236,\"file-plus-minus\":57719,\"file-plus\":62233,\"file-png\":58982,\"file-powerpoint\":61892,\"file-ppt\":58954,\"file-prescription\":62834,\"file-shield\":58608,\"file-signature\":62835,\"file-slash\":58279,\"file-spreadsheet\":63067,\"file-svg\":58955,\"file-user\":63068,\"file-vector\":58956,\"file-video\":61896,\"file-waveform\":62584,\"file-word\":61890,\"file-xls\":58957,\"file-xmark\":62231,\"file-xml\":58964,\"file-zip\":58862,\"file-zipper\":61894,\"file\":61787,\"files-medical\":63485,\"files\":57720,\"fill-drip\":62838,\"fill\":62837,\"film-canister\":63671,\"film-simple\":62368,\"film-slash\":57721,\"film\":61448,\"films\":57722,\"filter-circle-dollar\":63074,\"filter-circle-xmark\":57723,\"filter-list\":57724,\"filter-slash\":57725,\"filter\":61616,\"filters\":57726,\"fingerprint\":62839,\"fire-burner\":58609,\"fire-extinguisher\":61748,\"fire-flame-curved\":63460,\"fire-flame-simple\":62570,\"fire-flame\":63199,\"fire-hydrant\":57727,\"fire-smoke\":63307,\"fire\":61549,\"fireplace\":63386,\"fish-bones\":58116,\"fish-cooked\":63486,\"fish-fins\":58610,\"fish\":62840,\"fishing-rod\":58280,\"flag-checkered\":61726,\"flag-pennant\":62550,\"flag-swallowtail\":63308,\"flag-usa\":63309,\"flag\":61476,\"flashlight\":63672,\"flask-gear\":58865,\"flask-round-poison\":63200,\"flask-round-potion\":63201,\"flask-vial\":58611,\"flask\":61635,\"flatbread-stuffed\":58380,\"flatbread\":58379,\"floppy-disk-circle-arrow-right\":57728,\"floppy-disk-circle-xmark\":57729,\"floppy-disk-pen\":57730,\"floppy-disk\":61639,\"floppy-disks\":57731,\"florin-sign\":57732,\"flower-daffodil\":63488,\"flower-tulip\":63489,\"flower\":63487,\"flute\":63673,\"flux-capacitor\":63674,\"flying-disc\":58281,\"folder-arrow-down\":57427,\"folder-arrow-up\":57428,\"folder-bookmark\":57734,\"folder-check\":58958,\"folder-closed\":57733,\"folder-gear\":57735,\"folder-grid\":57736,\"folder-heart\":57737,\"folder-image\":57738,\"folder-magnifying-glass\":57739,\"folder-medical\":57740,\"folder-minus\":63069,\"folder-music\":57741,\"folder-open\":61564,\"folder-plus\":63070,\"folder-tree\":63490,\"folder-user\":57742,\"folder-xmark\":63071,\"folder\":61563,\"folders\":63072,\"fondue-pot\":58381,\"font-awesome\":62132,\"font-case\":63590,\"font\":61489,\"football-helmet\":62543,\"football\":62542,\"fork-knife\":62182,\"fork\":62179,\"forklift\":62586,\"fort\":58502,\"forward-fast\":61520,\"forward-step\":61521,\"forward\":61518,\"frame\":58517,\"franc-sign\":57743,\"french-fries\":63491,\"frog\":62766,\"function\":63073,\"futbol\":61923,\"g\":71,\"galaxy\":57352,\"gallery-thumbnails\":58282,\"game-board-simple\":63592,\"game-board\":63591,\"game-console-handheld-crank\":58809,\"game-console-handheld\":63675,\"gamepad-modern\":58786,\"gamepad\":61723,\"garage-car\":57354,\"garage-open\":57355,\"garage\":57353,\"garlic\":58382,\"gas-pump-slash\":62964,\"gas-pump\":62767,\"gauge-circle-bolt\":58518,\"gauge-circle-minus\":58519,\"gauge-circle-plus\":58520,\"gauge-high\":63013,\"gauge-low\":63015,\"gauge-max\":63014,\"gauge-min\":63016,\"gauge-simple-high\":63018,\"gauge-simple-low\":63020,\"gauge-simple-max\":63019,\"gauge-simple-min\":63021,\"gauge-simple\":63017,\"gauge\":63012,\"gavel\":61667,\"gear-code\":58856,\"gear-complex-code\":58859,\"gear-complex\":58857,\"gear\":61459,\"gears\":61573,\"gem\":62373,\"genderless\":61997,\"ghost\":63202,\"gif\":57744,\"gift-card\":63075,\"gift\":61547,\"gifts\":63388,\"gingerbread-man\":63389,\"glass-citrus\":63593,\"glass-empty\":57745,\"glass-half\":57746,\"glass-water-droplet\":58613,\"glass-water\":58612,\"glass\":63492,\"glasses-round\":62965,\"glasses\":62768,\"globe-pointer\":58894,\"globe-snow\":63395,\"globe-stand\":62966,\"globe-wifi\":59013,\"globe\":61612,\"goal-net\":58283,\"golf-ball-tee\":62544,\"golf-club\":62545,\"golf-flag-hole\":58284,\"gopuram\":63076,\"graduation-cap\":61853,\"gramophone\":63677,\"grapes\":58118,\"grate-droplet\":57748,\"grate\":57747,\"greater-than-equal\":62770,\"greater-than\":62,\"grid-2-plus\":57751,\"grid-2\":57750,\"grid-4\":57752,\"grid-5\":57753,\"grid-dividers\":58285,\"grid-horizontal\":58119,\"grid-round-2-plus\":58844,\"grid-round-2\":58843,\"grid-round-4\":58845,\"grid-round-5\":58846,\"grid-round\":58842,\"grid\":57749,\"grill-fire\":58788,\"grill-hot\":58789,\"grill\":58787,\"grip-dots-vertical\":58385,\"grip-dots\":58384,\"grip-lines-vertical\":63397,\"grip-lines\":63396,\"grip-vertical\":62862,\"grip\":62861,\"group-arrows-rotate\":58614,\"guarani-sign\":57754,\"guitar-electric\":63678,\"guitar\":63398,\"guitars\":63679,\"gun-slash\":57756,\"gun-squirt\":57757,\"gun\":57755,\"h\":72,\"h1\":62227,\"h2\":62228,\"h3\":62229,\"h4\":63594,\"h5\":58386,\"h6\":58387,\"hammer-brush\":58912,\"hammer-crash\":58388,\"hammer-war\":63204,\"hammer\":63203,\"hamsa\":63077,\"hand-back-fist\":62037,\"hand-back-point-down\":57758,\"hand-back-point-left\":57759,\"hand-back-point-ribbon\":57760,\"hand-back-point-right\":57761,\"hand-back-point-up\":57762,\"hand-dots\":62561,\"hand-fingers-crossed\":57763,\"hand-fist\":63198,\"hand-heart\":62652,\"hand-holding-box\":62587,\"hand-holding-circle-dollar\":58913,\"hand-holding-dollar\":62656,\"hand-holding-droplet\":62657,\"hand-holding-hand\":58615,\"hand-holding-heart\":62654,\"hand-holding-magic\":63205,\"hand-holding-medical\":57436,\"hand-holding-seedling\":62655,\"hand-holding-skull\":57764,\"hand-holding\":62653,\"hand-horns\":57769,\"hand-lizard\":62040,\"hand-love\":57765,\"hand-middle-finger\":63494,\"hand-peace\":62043,\"hand-point-down\":61607,\"hand-point-left\":61605,\"hand-point-ribbon\":57766,\"hand-point-right\":61604,\"hand-point-up\":61606,\"hand-pointer\":62042,\"hand-scissors\":62039,\"hand-sparkles\":57437,\"hand-spock\":62041,\"hand-wave\":57767,\"hand\":62038,\"handcuffs\":58616,\"hands-asl-interpreting\":62115,\"hands-bound\":58617,\"hands-bubbles\":57438,\"hands-clapping\":57768,\"hands-holding-child\":58618,\"hands-holding-circle\":58619,\"hands-holding-diamond\":62588,\"hands-holding-dollar\":62661,\"hands-holding-heart\":62659,\"hands-holding\":62658,\"hands-praying\":63108,\"hands\":62119,\"handshake-angle\":62660,\"handshake-simple-slash\":57439,\"handshake-simple\":62662,\"handshake-slash\":57440,\"handshake\":62133,\"hanukiah\":63206,\"hard-drive\":61600,\"hashtag-lock\":58389,\"hashtag\":35,\"hat-beach\":58886,\"hat-chef\":63595,\"hat-cowboy-side\":63681,\"hat-cowboy\":63680,\"hat-santa\":63399,\"hat-winter\":63400,\"hat-witch\":63207,\"hat-wizard\":63208,\"head-side-brain\":63496,\"head-side-cough-slash\":57442,\"head-side-cough\":57441,\"head-side-gear\":58897,\"head-side-goggles\":63210,\"head-side-headphones\":63682,\"head-side-heart\":57770,\"head-side-mask\":57443,\"head-side-medical\":63497,\"head-side-virus\":57444,\"head-side\":63209,\"heading\":61916,\"headphones-simple\":62863,\"headphones\":61477,\"headset\":62864,\"heart-circle-bolt\":58620,\"heart-circle-check\":58621,\"heart-circle-exclamation\":58622,\"heart-circle-minus\":58623,\"heart-circle-plus\":58624,\"heart-circle-xmark\":58625,\"heart-crack\":63401,\"heart-half-stroke\":57772,\"heart-half\":57771,\"heart-pulse\":61982,\"heart\":61444,\"heat\":57356,\"helicopter-symbol\":58626,\"helicopter\":62771,\"helmet-battle\":63211,\"helmet-safety\":63495,\"helmet-un\":58627,\"hexagon-check\":58390,\"hexagon-divide\":57773,\"hexagon-exclamation\":58391,\"hexagon-image\":58628,\"hexagon-minus\":62215,\"hexagon-nodes-bolt\":59034,\"hexagon-nodes\":59033,\"hexagon-plus\":62208,\"hexagon-vertical-nft-slanted\":58630,\"hexagon-vertical-nft\":58629,\"hexagon-xmark\":62190,\"hexagon\":62226,\"high-definition\":57774,\"highlighter-line\":57775,\"highlighter\":62865,\"hill-avalanche\":58631,\"hill-rockslide\":58632,\"hippo\":63213,\"hockey-mask\":63214,\"hockey-puck\":62547,\"hockey-stick-puck\":58286,\"hockey-sticks\":62548,\"holly-berry\":63402,\"honey-pot\":58392,\"hood-cloak\":63215,\"horizontal-rule\":63596,\"horse-head\":63403,\"horse-saddle\":63683,\"horse\":63216,\"hose-reel\":58394,\"hose\":58393,\"hospital-user\":63501,\"hospital\":61688,\"hospitals\":63502,\"hot-tub-person\":62867,\"hotdog\":63503,\"hotel\":62868,\"hourglass-clock\":58395,\"hourglass-end\":62035,\"hourglass-half\":62034,\"hourglass-start\":62033,\"hourglass\":62036,\"house-blank\":58503,\"house-building\":57777,\"house-chimney-blank\":58288,\"house-chimney-crack\":63217,\"house-chimney-heart\":57778,\"house-chimney-medical\":63474,\"house-chimney-user\":57445,\"house-chimney-window\":57357,\"house-chimney\":58287,\"house-circle-check\":58633,\"house-circle-exclamation\":58634,\"house-circle-xmark\":58635,\"house-crack\":58289,\"house-day\":57358,\"house-fire\":58636,\"house-flag\":58637,\"house-flood-water-circle-arrow-right\":58639,\"house-flood-water\":58638,\"house-heart\":62665,\"house-laptop\":57446,\"house-lock\":58640,\"house-medical-circle-check\":58641,\"house-medical-circle-exclamation\":58642,\"house-medical-circle-xmark\":58643,\"house-medical-flag\":58644,\"house-medical\":58290,\"house-night\":57360,\"house-person-leave\":57359,\"house-person-return\":57361,\"house-signal\":57362,\"house-tree\":57779,\"house-tsunami\":58645,\"house-turret\":57780,\"house-user\":57776,\"house-water\":63311,\"house-window\":58291,\"house\":61461,\"hryvnia-sign\":63218,\"hundred-points\":58396,\"hurricane\":63313,\"hydra\":59014,\"hyphen\":45,\"i-cursor\":62022,\"i\":73,\"ice-cream\":63504,\"ice-skate\":63404,\"icicles\":63405,\"icons\":63597,\"id-badge\":62145,\"id-card-clip\":62591,\"id-card\":62146,\"igloo\":63406,\"image-landscape\":57781,\"image-polaroid-user\":57782,\"image-polaroid\":63684,\"image-portrait\":62432,\"image-slash\":57783,\"image-user\":57784,\"image\":61502,\"images-user\":57785,\"images\":62210,\"inbox-full\":57786,\"inbox-in\":62224,\"inbox-out\":62225,\"inbox\":61468,\"inboxes\":57787,\"indent\":61500,\"indian-rupee-sign\":57788,\"industry-windows\":62387,\"industry\":62069,\"infinity\":62772,\"info\":61737,\"inhaler\":62969,\"input-numeric\":57789,\"input-pipe\":57790,\"input-text\":57791,\"integral\":63079,\"interrobang\":58810,\"intersection\":63080,\"island-tropical\":63505,\"italic\":61491,\"j\":74,\"jack-o-lantern\":62222,\"jar-wheat\":58647,\"jar\":58646,\"jedi\":63081,\"jet-fighter-up\":58648,\"jet-fighter\":61691,\"joint\":62869,\"joystick\":63685,\"jug-bottle\":58875,\"jug-detergent\":58649,\"jug\":63686,\"k\":75,\"kaaba\":63083,\"kazoo\":63687,\"kerning\":63599,\"key-skeleton-left-right\":58292,\"key-skeleton\":63219,\"key\":61572,\"keyboard-brightness-low\":57793,\"keyboard-brightness\":57792,\"keyboard-down\":57794,\"keyboard-left\":57795,\"keyboard\":61724,\"keynote\":63084,\"khanda\":63085,\"kidneys\":62971,\"kip-sign\":57796,\"kit-medical\":62585,\"kitchen-set\":58650,\"kite\":63220,\"kiwi-bird\":62773,\"kiwi-fruit\":58124,\"knife-kitchen\":63221,\"knife\":62180,\"l\":76,\"lacrosse-stick-ball\":58294,\"lacrosse-stick\":58293,\"lambda\":63086,\"lamp-desk\":57364,\"lamp-floor\":57365,\"lamp-street\":57797,\"lamp\":62666,\"land-mine-on\":58651,\"landmark-dome\":63314,\"landmark-flag\":58652,\"landmark-magnifying-glass\":58914,\"landmark\":63087,\"language\":61867,\"laptop-arrow-down\":57798,\"laptop-binary\":58855,\"laptop-code\":62972,\"laptop-file\":58653,\"laptop-medical\":63506,\"laptop-mobile\":63610,\"laptop-slash\":57799,\"laptop\":61705,\"lari-sign\":57800,\"lasso-sparkles\":57801,\"lasso\":63688,\"layer-group\":62973,\"layer-minus\":62974,\"layer-plus\":62975,\"leaf-heart\":62667,\"leaf-maple\":63222,\"leaf-oak\":63223,\"leaf\":61548,\"leafy-green\":58397,\"left-from-bracket\":58988,\"left-from-line\":62280,\"left-long-to-line\":58398,\"left-long\":62218,\"left-right\":62263,\"left-to-bracket\":58989,\"left-to-line\":62283,\"left\":62293,\"lemon\":61588,\"less-than-equal\":62775,\"less-than\":60,\"life-ring\":61901,\"light-ceiling\":57366,\"light-emergency-on\":58400,\"light-emergency\":58399,\"light-switch-off\":57368,\"light-switch-on\":57369,\"light-switch\":57367,\"lightbulb-cfl-on\":58791,\"lightbulb-cfl\":58790,\"lightbulb-dollar\":63088,\"lightbulb-exclamation-on\":57802,\"lightbulb-exclamation\":63089,\"lightbulb-gear\":58877,\"lightbulb-message\":59015,\"lightbulb-on\":63090,\"lightbulb-slash\":63091,\"lightbulb\":61675,\"lighthouse\":58898,\"lights-holiday\":63410,\"line-columns\":63600,\"line-height\":63601,\"lines-leaning\":58654,\"link-horizontal-slash\":57804,\"link-horizontal\":57803,\"link-simple-slash\":57806,\"link-simple\":57805,\"link-slash\":61735,\"link\":61633,\"lips\":62976,\"lira-sign\":61845,\"list-check\":61614,\"list-dropdown\":57807,\"list-music\":63689,\"list-ol\":61643,\"list-radio\":57808,\"list-timeline\":57809,\"list-tree\":57810,\"list-ul\":61642,\"list\":61498,\"litecoin-sign\":57811,\"loader\":57812,\"lobster\":58401,\"location-arrow-up\":58938,\"location-arrow\":61732,\"location-check\":62982,\"location-crosshairs-slash\":62979,\"location-crosshairs\":62977,\"location-dot-slash\":62981,\"location-dot\":62405,\"location-exclamation\":62984,\"location-minus\":62985,\"location-pen\":62983,\"location-pin-lock\":58655,\"location-pin-slash\":62988,\"location-pin\":61505,\"location-plus\":62986,\"location-question\":62987,\"location-smile\":62989,\"location-xmark\":62990,\"lock-a\":58402,\"lock-hashtag\":58403,\"lock-keyhole-open\":62402,\"lock-keyhole\":62221,\"lock-open\":62401,\"lock\":61475,\"locust\":58656,\"lollipop\":58404,\"loveseat\":62668,\"luchador-mask\":62549,\"lungs-virus\":57447,\"lungs\":62980,\"m\":77,\"mace\":63224,\"magnet\":61558,\"magnifying-glass-arrow-right\":58657,\"magnifying-glass-arrows-rotate\":58974,\"magnifying-glass-chart\":58658,\"magnifying-glass-dollar\":63112,\"magnifying-glass-location\":63113,\"magnifying-glass-minus\":61456,\"magnifying-glass-music\":58975,\"magnifying-glass-play\":58976,\"magnifying-glass-plus\":61454,\"magnifying-glass-waveform\":58977,\"magnifying-glass\":61442,\"mailbox-flag-up\":58811,\"mailbox\":63507,\"manat-sign\":57813,\"mandolin\":63225,\"mango\":58127,\"manhole\":57814,\"map-location-dot\":62880,\"map-location\":62879,\"map-pin\":62070,\"map\":62073,\"marker\":62881,\"mars-and-venus-burst\":58659,\"mars-and-venus\":61988,\"mars-double\":61991,\"mars-stroke-right\":61995,\"mars-stroke-up\":61994,\"mars-stroke\":61993,\"mars\":61986,\"martini-glass-citrus\":62817,\"martini-glass-empty\":61440,\"martini-glass\":62843,\"mask-face\":57815,\"mask-snorkel\":58295,\"mask-ventilator\":58660,\"mask\":63226,\"masks-theater\":63024,\"mattress-pillow\":58661,\"maximize\":62238,\"meat\":63508,\"medal\":62882,\"megaphone\":63093,\"melon-slice\":58129,\"melon\":58128,\"memo-circle-check\":57817,\"memo-circle-info\":58522,\"memo-pad\":57818,\"memo\":57816,\"memory\":62776,\"menorah\":63094,\"mercury\":61987,\"merge\":58662,\"message-arrow-down\":57819,\"message-arrow-up-right\":57821,\"message-arrow-up\":57820,\"message-bot\":58296,\"message-captions\":57822,\"message-check\":62626,\"message-code\":57823,\"message-dollar\":63056,\"message-dots\":62627,\"message-exclamation\":62629,\"message-heart\":58825,\"message-image\":57824,\"message-lines\":62630,\"message-medical\":63476,\"message-middle-top\":57826,\"message-middle\":57825,\"message-minus\":62631,\"message-music\":63663,\"message-pen\":62628,\"message-plus\":62632,\"message-question\":57827,\"message-quote\":57828,\"message-slash\":62633,\"message-smile\":62634,\"message-sms\":57829,\"message-text\":57830,\"message-xmark\":62635,\"message\":62074,\"messages-dollar\":63058,\"messages-question\":57831,\"messages\":62646,\"meteor\":63315,\"meter-bolt\":57833,\"meter-droplet\":57834,\"meter-fire\":57835,\"meter\":57832,\"microchip-ai\":57836,\"microchip\":62171,\"microphone-lines-slash\":62777,\"microphone-lines\":62409,\"microphone-slash\":61745,\"microphone-stand\":63691,\"microphone\":61744,\"microscope\":62992,\"microwave\":57371,\"mill-sign\":57837,\"minimize\":63372,\"minus\":61544,\"mistletoe\":63412,\"mitten\":63413,\"mobile-button\":61707,\"mobile-notch\":57838,\"mobile-retro\":58663,\"mobile-screen-button\":62413,\"mobile-screen\":62415,\"mobile-signal-out\":57840,\"mobile-signal\":57839,\"mobile\":62414,\"money-bill-1-wave\":62779,\"money-bill-1\":62417,\"money-bill-simple-wave\":57842,\"money-bill-simple\":57841,\"money-bill-transfer\":58664,\"money-bill-trend-up\":58665,\"money-bill-wave\":62778,\"money-bill-wheat\":58666,\"money-bill\":61654,\"money-bills-simple\":57844,\"money-bills\":57843,\"money-check-dollar-pen\":63603,\"money-check-dollar\":62781,\"money-check-pen\":63602,\"money-check\":62780,\"money-from-bracket\":58130,\"money-simple-from-bracket\":58131,\"monitor-waveform\":62993,\"monkey\":63227,\"monument\":62886,\"moon-cloud\":63316,\"moon-over-sun\":63306,\"moon-stars\":63317,\"moon\":61830,\"moped\":58297,\"mortar-pestle\":62887,\"mosque\":63096,\"mosquito-net\":58668,\"mosquito\":58667,\"motorcycle\":61980,\"mound\":58669,\"mountain-city\":58670,\"mountain-sun\":58671,\"mountain\":63228,\"mountains\":63229,\"mouse-field\":58792,\"mp3-player\":63694,\"mug-hot\":63414,\"mug-marshmallows\":63415,\"mug-saucer\":61684,\"mug-tea-saucer\":57845,\"mug-tea\":63605,\"mug\":63604,\"mushroom\":58405,\"music-magnifying-glass\":58978,\"music-note-slash\":63696,\"music-note\":63695,\"music-slash\":63697,\"music\":61441,\"mustache\":58812,\"n\":78,\"naira-sign\":57846,\"narwhal\":63230,\"nesting-dolls\":58298,\"network-wired\":63231,\"neuter\":61996,\"newspaper\":61930,\"nfc-lock\":57848,\"nfc-magnifying-glass\":57849,\"nfc-pen\":57850,\"nfc-signal\":57851,\"nfc-slash\":57852,\"nfc-symbol\":58673,\"nfc-trash\":57853,\"nfc\":57847,\"nose\":58813,\"not-equal\":62782,\"notdef\":57854,\"note-medical\":57856,\"note-sticky\":62025,\"note\":57855,\"notebook\":57857,\"notes-medical\":62593,\"notes\":57858,\"o\":79,\"object-exclude\":58524,\"object-group\":62023,\"object-intersect\":58525,\"object-subtract\":58526,\"object-ungroup\":62024,\"object-union\":58527,\"objects-align-bottom\":58299,\"objects-align-center-horizontal\":58300,\"objects-align-center-vertical\":58301,\"objects-align-left\":58302,\"objects-align-right\":58303,\"objects-align-top\":58304,\"objects-column\":58305,\"octagon-check\":58406,\"octagon-divide\":57859,\"octagon-exclamation\":57860,\"octagon-minus\":62216,\"octagon-plus\":62209,\"octagon-xmark\":62192,\"octagon\":62214,\"octopus\":59016,\"oil-can-drip\":57861,\"oil-can\":62995,\"oil-temperature\":62996,\"oil-well\":58674,\"olive-branch\":58135,\"olive\":58134,\"om\":63097,\"omega\":63098,\"onion\":58407,\"option\":58136,\"ornament\":63416,\"otter\":63232,\"outdent\":61499,\"outlet\":57372,\"oven\":57373,\"overline\":63606,\"p\":80,\"page-caret-down\":58409,\"page-caret-up\":58410,\"page\":58408,\"pager\":63509,\"paint-roller\":62890,\"paintbrush-fine\":62889,\"paintbrush-pencil\":57862,\"paintbrush\":61948,\"palette\":62783,\"pallet-box\":57864,\"pallet-boxes\":62595,\"pallet\":62594,\"pan-food\":58411,\"pan-frying\":58412,\"pancakes\":58413,\"panel-ews\":58414,\"panel-fire\":58415,\"panorama\":57865,\"paper-plane-top\":57866,\"paper-plane\":61912,\"paperclip-vertical\":58306,\"paperclip\":61638,\"parachute-box\":62669,\"paragraph-left\":63608,\"paragraph\":61917,\"party-bell\":58138,\"party-horn\":58139,\"passport\":62891,\"paste\":61674,\"pause\":61516,\"paw-claws\":63234,\"paw-simple\":63233,\"paw\":61872,\"peace\":63100,\"peach\":57867,\"peanut\":58416,\"peanuts\":58417,\"peapod\":58140,\"pear\":57868,\"pedestal\":57869,\"pegasus\":63235,\"pen-circle\":57870,\"pen-clip-slash\":57871,\"pen-clip\":62213,\"pen-fancy-slash\":57872,\"pen-fancy\":62892,\"pen-field\":57873,\"pen-line\":57874,\"pen-nib-slash\":58529,\"pen-nib\":62893,\"pen-paintbrush\":63000,\"pen-ruler\":62894,\"pen-slash\":57875,\"pen-swirl\":57876,\"pen-to-square\":61508,\"pen\":62212,\"pencil-mechanical\":58826,\"pencil-slash\":57877,\"pencil\":62211,\"people-arrows\":57448,\"people-carry-box\":62670,\"people-dress-simple\":57880,\"people-dress\":57879,\"people-group\":58675,\"people-line\":58676,\"people-pants-simple\":57882,\"people-pants\":57881,\"people-pulling\":58677,\"people-robbery\":58678,\"people-roof\":58679,\"people-simple\":57883,\"people\":57878,\"pepper-hot\":63510,\"pepper\":58418,\"percent\":37,\"period\":46,\"person-arrow-down-to-line\":58680,\"person-arrow-up-from-line\":58681,\"person-biking-mountain\":63563,\"person-biking\":63562,\"person-booth\":63318,\"person-breastfeeding\":58682,\"person-burst\":58683,\"person-cane\":58684,\"person-carry-box\":62671,\"person-chalkboard\":58685,\"person-circle-check\":58686,\"person-circle-exclamation\":58687,\"person-circle-minus\":58688,\"person-circle-plus\":58689,\"person-circle-question\":58690,\"person-circle-xmark\":58691,\"person-digging\":63582,\"person-dolly-empty\":62673,\"person-dolly\":62672,\"person-dots-from-line\":62576,\"person-dress-burst\":58692,\"person-dress-fairy\":58887,\"person-dress-simple\":57884,\"person-dress\":61826,\"person-drowning\":58693,\"person-fairy\":58888,\"person-falling-burst\":58695,\"person-falling\":58694,\"person-from-portal\":57379,\"person-half-dress\":58696,\"person-harassing\":58697,\"person-hiking\":63212,\"person-military-pointing\":58698,\"person-military-rifle\":58699,\"person-military-to-person\":58700,\"person-pinball\":57885,\"person-praying\":63107,\"person-pregnant\":58142,\"person-rays\":58701,\"person-rifle\":58702,\"person-running-fast\":58879,\"person-running\":63244,\"person-seat-reclined\":57887,\"person-seat\":57886,\"person-shelter\":58703,\"person-sign\":63319,\"person-simple\":57888,\"person-skating\":63429,\"person-ski-jumping\":63431,\"person-ski-lift\":63432,\"person-skiing-nordic\":63434,\"person-skiing\":63433,\"person-sledding\":63435,\"person-snowboarding\":63438,\"person-snowmobiling\":63441,\"person-swimming\":62916,\"person-through-window\":58793,\"person-to-door\":58419,\"person-to-portal\":57378,\"person-walking-arrow-loop-left\":58705,\"person-walking-arrow-right\":58706,\"person-walking-dashed-line-arrow-right\":58707,\"person-walking-luggage\":58708,\"person-walking-with-cane\":62109,\"person-walking\":62804,\"person\":61827,\"peseta-sign\":57889,\"peso-sign\":57890,\"phone-arrow-down-left\":57891,\"phone-arrow-right\":58814,\"phone-arrow-up-right\":57892,\"phone-flip\":63609,\"phone-hangup\":57893,\"phone-intercom\":58420,\"phone-missed\":57894,\"phone-office\":63101,\"phone-plus\":62674,\"phone-rotary\":63699,\"phone-slash\":62429,\"phone-volume\":62112,\"phone-xmark\":57895,\"phone\":61589,\"photo-film-music\":57896,\"photo-film\":63612,\"pi\":63102,\"piano-keyboard\":63701,\"piano\":63700,\"pickaxe\":58815,\"pickleball\":58421,\"pie\":63237,\"pig\":63238,\"piggy-bank\":62675,\"pills\":62596,\"pinata\":58307,\"pinball\":57897,\"pineapple\":58143,\"pipe-circle-check\":58422,\"pipe-collar\":58423,\"pipe-section\":58424,\"pipe-smoking\":58308,\"pipe-valve\":58425,\"pipe\":124,\"pizza-slice\":63512,\"pizza\":63511,\"place-of-worship\":63103,\"plane-arrival\":62895,\"plane-circle-check\":58709,\"plane-circle-exclamation\":58710,\"plane-circle-xmark\":58711,\"plane-departure\":62896,\"plane-engines\":62430,\"plane-lock\":58712,\"plane-prop\":57899,\"plane-slash\":57449,\"plane-tail\":57900,\"plane-up-slash\":57902,\"plane-up\":57901,\"plane\":61554,\"planet-moon\":57375,\"planet-ringed\":57376,\"plant-wilt\":58794,\"plate-utensils\":58427,\"plate-wheat\":58714,\"play-pause\":57903,\"play\":61515,\"plug-circle-bolt\":58715,\"plug-circle-check\":58716,\"plug-circle-exclamation\":58717,\"plug-circle-minus\":58718,\"plug-circle-plus\":58719,\"plug-circle-xmark\":58720,\"plug\":61926,\"plus-large\":58782,\"plus-minus\":58428,\"plus\":43,\"podcast\":62158,\"podium-star\":63320,\"podium\":63104,\"police-box\":57377,\"poll-people\":63321,\"pompebled\":58429,\"poo-storm\":63322,\"poo\":62206,\"pool-8-ball\":58309,\"poop\":63001,\"popcorn\":63513,\"popsicle\":58430,\"pot-food\":58431,\"potato\":58432,\"power-off\":61457,\"prescription-bottle-medical\":62598,\"prescription-bottle-pill\":58816,\"prescription-bottle\":62597,\"prescription\":62897,\"presentation-screen\":63109,\"pretzel\":58433,\"print-magnifying-glass\":63514,\"print-slash\":63110,\"print\":61487,\"projector\":63702,\"pump-medical\":57450,\"pump-soap\":57451,\"pump\":58434,\"pumpkin\":63239,\"puzzle-piece-simple\":57905,\"puzzle-piece\":61742,\"puzzle\":58435,\"q\":81,\"qrcode\":61481,\"question\":63,\"quote-left\":61709,\"quote-right\":61710,\"quotes\":57908,\"r\":82,\"rabbit-running\":63241,\"rabbit\":63240,\"raccoon\":58899,\"racquet\":62554,\"radar\":57380,\"radiation\":63417,\"radio-tuner\":63704,\"radio\":63703,\"rainbow\":63323,\"raindrops\":63324,\"ram\":63242,\"ramp-loading\":62676,\"ranking-star\":58721,\"raygun\":57381,\"receipt\":62787,\"record-vinyl\":63705,\"rectangle-ad\":63041,\"rectangle-barcode\":62563,\"rectangle-code\":58146,\"rectangle-history-circle-plus\":58531,\"rectangle-history-circle-user\":58532,\"rectangle-history\":58530,\"rectangle-list\":61474,\"rectangle-pro\":57909,\"rectangle-terminal\":57910,\"rectangle-vertical-history\":57911,\"rectangle-vertical\":62203,\"rectangle-wide\":62204,\"rectangle-xmark\":62480,\"rectangle\":62202,\"rectangles-mixed\":58147,\"recycle\":61880,\"reel\":57912,\"reflect-both\":58991,\"reflect-horizontal\":58980,\"reflect-vertical\":58981,\"refrigerator\":57382,\"registered\":62045,\"repeat-1\":62309,\"repeat\":62307,\"reply-all\":61730,\"reply-clock\":57913,\"reply\":62437,\"republican\":63326,\"restroom-simple\":57914,\"restroom\":63421,\"retweet\":61561,\"rhombus\":57915,\"ribbon\":62678,\"right-from-bracket\":62197,\"right-from-line\":62279,\"right-left-large\":58849,\"right-left\":62306,\"right-long-to-line\":58436,\"right-long\":62219,\"right-to-bracket\":62198,\"right-to-line\":62284,\"right\":62294,\"ring-diamond\":58795,\"ring\":63243,\"rings-wedding\":63515,\"road-barrier\":58722,\"road-bridge\":58723,\"road-circle-check\":58724,\"road-circle-exclamation\":58725,\"road-circle-xmark\":58726,\"road-lock\":58727,\"road-spikes\":58728,\"road\":61464,\"robot-astromech\":58066,\"robot\":62788,\"rocket-launch\":57383,\"rocket\":61749,\"roller-coaster\":58148,\"rotate-exclamation\":57916,\"rotate-left\":62186,\"rotate-reverse\":58929,\"rotate-right\":62201,\"rotate\":62193,\"route-highway\":63002,\"route-interstate\":63003,\"route\":62679,\"router\":63706,\"rss\":61598,\"ruble-sign\":61784,\"rug\":58729,\"rugby-ball\":58310,\"ruler-combined\":62790,\"ruler-horizontal\":62791,\"ruler-triangle\":63004,\"ruler-vertical\":62792,\"ruler\":62789,\"rupee-sign\":61782,\"rupiah-sign\":57917,\"rv\":63422,\"s\":83,\"sack-dollar\":63517,\"sack-xmark\":58730,\"sack\":63516,\"sailboat\":58437,\"salad\":63518,\"salt-shaker\":58438,\"sandwich\":63519,\"satellite-dish\":63424,\"satellite\":63423,\"sausage\":63520,\"saxophone-fire\":63707,\"saxophone\":63708,\"scale-balanced\":62030,\"scale-unbalanced-flip\":62742,\"scale-unbalanced\":62741,\"scalpel-line-dashed\":63006,\"scalpel\":63005,\"scanner-gun\":62600,\"scanner-image\":63731,\"scanner-keyboard\":62601,\"scanner-touchscreen\":62602,\"scarecrow\":63245,\"scarf\":63425,\"school-circle-check\":58731,\"school-circle-exclamation\":58732,\"school-circle-xmark\":58733,\"school-flag\":58734,\"school-lock\":58735,\"school\":62793,\"scissors\":61636,\"screen-users\":63037,\"screencast\":57918,\"screwdriver-wrench\":63449,\"screwdriver\":62794,\"scribble\":57919,\"scroll-old\":63247,\"scroll-torah\":63136,\"scroll\":63246,\"scrubber\":62200,\"scythe\":63248,\"sd-card\":63426,\"sd-cards\":57920,\"seal-exclamation\":57922,\"seal-question\":57923,\"seal\":57921,\"seat-airline\":57924,\"section\":58439,\"seedling\":62680,\"semicolon\":59,\"send-back\":63614,\"send-backward\":63615,\"sensor-cloud\":57388,\"sensor-fire\":57386,\"sensor-on\":57387,\"sensor-triangle-exclamation\":57385,\"sensor\":57384,\"server\":62003,\"shapes\":63007,\"share-all\":62311,\"share-from-square\":61773,\"share-nodes\":61920,\"share\":61540,\"sheep\":63249,\"sheet-plastic\":58737,\"shekel-sign\":61963,\"shelves-empty\":57926,\"shelves\":62592,\"shield-cat\":58738,\"shield-check\":62199,\"shield-cross\":63250,\"shield-dog\":58739,\"shield-exclamation\":57927,\"shield-halved\":62445,\"shield-heart\":58740,\"shield-keyhole\":57928,\"shield-minus\":57929,\"shield-plus\":57930,\"shield-quartered\":58741,\"shield-slash\":57931,\"shield-virus\":57452,\"shield-xmark\":57932,\"shield\":61746,\"ship\":61978,\"shirt-long-sleeve\":58311,\"shirt-running\":58312,\"shirt-tank-top\":58313,\"shirt\":62803,\"shish-kebab\":63521,\"shoe-prints\":62795,\"shop-lock\":58533,\"shop-slash\":57456,\"shop\":62799,\"shovel-snow\":63427,\"shovel\":63251,\"shower-down\":57933,\"shower\":62156,\"shredder\":63114,\"shrimp\":58440,\"shuffle\":61556,\"shutters\":58441,\"shuttle-space\":61847,\"shuttlecock\":62555,\"sickle\":63522,\"sidebar-flip\":57935,\"sidebar\":57934,\"sigma\":63115,\"sign-hanging\":62681,\"sign-post\":58916,\"sign-posts-wrench\":58918,\"sign-posts\":58917,\"signal-bars-fair\":63122,\"signal-bars-good\":63123,\"signal-bars-slash\":63124,\"signal-bars-weak\":63121,\"signal-bars\":63120,\"signal-fair\":63117,\"signal-good\":63118,\"signal-slash\":63125,\"signal-stream-slash\":57936,\"signal-stream\":63709,\"signal-strong\":63119,\"signal-weak\":63116,\"signal\":61458,\"signature-lock\":58314,\"signature-slash\":58315,\"signature\":62903,\"signs-post\":62071,\"sim-card\":63428,\"sim-cards\":57937,\"sink\":57453,\"siren-on\":57390,\"siren\":57389,\"sitemap\":61672,\"skeleton-ribs\":58827,\"skeleton\":63008,\"ski-boot-ski\":58317,\"ski-boot\":58316,\"skull-cow\":63710,\"skull-crossbones\":63252,\"skull\":62796,\"slash-back\":92,\"slash-forward\":47,\"slash\":63253,\"sleigh\":63436,\"slider\":57938,\"sliders-simple\":57939,\"sliders-up\":62449,\"sliders\":61918,\"slot-machine\":58318,\"smog\":63327,\"smoke\":63328,\"smoking\":62605,\"snake\":63254,\"snooze\":63616,\"snow-blowing\":63329,\"snowflake-droplets\":58817,\"snowflake\":62172,\"snowflakes\":63439,\"snowman-head\":63387,\"snowman\":63440,\"snowplow\":63442,\"soap\":57454,\"socks\":63126,\"soft-serve\":58368,\"solar-panel\":62906,\"solar-system\":57391,\"sort-down\":61661,\"sort-up\":61662,\"sort\":61660,\"spa\":62907,\"space-station-moon-construction\":57396,\"space-station-moon\":57395,\"spade\":62196,\"spaghetti-monster-flying\":63099,\"sparkle\":58838,\"sparkles\":63632,\"speaker\":63711,\"speakers\":63712,\"spell-check\":63633,\"spider-black-widow\":63256,\"spider-web\":63257,\"spider\":63255,\"spinner-scale\":58922,\"spinner-third\":62452,\"spinner\":61712,\"split\":57940,\"splotch\":62908,\"spoon\":62181,\"sportsball\":58443,\"spray-can-sparkles\":62928,\"spray-can\":62909,\"sprinkler-ceiling\":58444,\"sprinkler\":57397,\"square-0\":57941,\"square-1\":57942,\"square-2\":57943,\"square-3\":57944,\"square-4\":57945,\"square-5\":57946,\"square-6\":57947,\"square-7\":57948,\"square-8\":57949,\"square-9\":57950,\"square-a-lock\":58445,\"square-a\":57951,\"square-ampersand\":57952,\"square-arrow-down-left\":57953,\"square-arrow-down-right\":57954,\"square-arrow-down\":62265,\"square-arrow-left\":62266,\"square-arrow-right\":62267,\"square-arrow-up-left\":57955,\"square-arrow-up-right\":61772,\"square-arrow-up\":62268,\"square-b\":57956,\"square-binary\":59035,\"square-bolt\":57957,\"square-c\":57958,\"square-caret-down\":61776,\"square-caret-left\":61841,\"square-caret-right\":61778,\"square-caret-up\":61777,\"square-check\":61770,\"square-chevron-down\":62249,\"square-chevron-left\":62250,\"square-chevron-right\":62251,\"square-chevron-up\":62252,\"square-code\":57959,\"square-d\":57960,\"square-dashed-circle-plus\":58818,\"square-dashed\":57961,\"square-divide\":57962,\"square-dollar\":62185,\"square-down-left\":57963,\"square-down-right\":57964,\"square-down\":62288,\"square-e\":57965,\"square-ellipsis-vertical\":57967,\"square-ellipsis\":57966,\"square-envelope\":61849,\"square-exclamation\":62241,\"square-f\":57968,\"square-fragile\":62619,\"square-full\":62556,\"square-g\":57969,\"square-h\":61693,\"square-heart\":62664,\"square-i\":57970,\"square-info\":62223,\"square-j\":57971,\"square-k\":57972,\"square-kanban\":58504,\"square-l\":57973,\"square-left\":62289,\"square-list\":58505,\"square-m\":57974,\"square-minus\":61766,\"square-n\":57975,\"square-nfi\":58742,\"square-o\":57976,\"square-p\":57977,\"square-parking-slash\":62999,\"square-parking\":62784,\"square-pen\":61771,\"square-person-confined\":58743,\"square-phone-flip\":63611,\"square-phone-hangup\":57978,\"square-phone\":61592,\"square-plus\":61694,\"square-poll-horizontal\":63106,\"square-poll-vertical\":63105,\"square-q\":57979,\"square-quarters\":58446,\"square-question\":62205,\"square-quote\":58153,\"square-r\":57980,\"square-right\":62290,\"square-ring\":58447,\"square-root-variable\":63128,\"square-root\":63127,\"square-rss\":61763,\"square-s\":57981,\"square-share-nodes\":61921,\"square-sliders-vertical\":62450,\"square-sliders\":62448,\"square-small\":57982,\"square-star\":57983,\"square-t\":57984,\"square-terminal\":58154,\"square-this-way-up\":62623,\"square-u\":57985,\"square-up-left\":57986,\"square-up-right\":62304,\"square-up\":62291,\"square-user\":57987,\"square-v\":57988,\"square-virus\":58744,\"square-w\":57989,\"square-x\":57990,\"square-xmark\":62163,\"square-y\":57991,\"square-z\":57992,\"square\":61640,\"squid\":58448,\"squirrel\":63258,\"staff-snake\":58745,\"staff\":63259,\"stairs\":57993,\"stamp\":62911,\"standard-definition\":57994,\"stapler\":58799,\"star-and-crescent\":63129,\"star-christmas\":63444,\"star-exclamation\":62195,\"star-half-stroke\":62912,\"star-half\":61577,\"star-of-david\":63130,\"star-of-life\":63009,\"star-sharp-half-stroke\":57997,\"star-sharp-half\":57996,\"star-sharp\":57995,\"star-shooting\":57398,\"star\":61445,\"starfighter-twin-ion-engine-advanced\":57998,\"starfighter-twin-ion-engine\":57400,\"starfighter\":57399,\"stars\":63330,\"starship-freighter\":57402,\"starship\":57401,\"steak\":63524,\"steering-wheel\":63010,\"sterling-sign\":61780,\"stethoscope\":61681,\"stocking\":63445,\"stomach\":63011,\"stop\":61517,\"stopwatch-20\":57455,\"stopwatch\":62194,\"store-lock\":58534,\"store-slash\":57457,\"store\":62798,\"strawberry\":58155,\"street-view\":61981,\"stretcher\":63525,\"strikethrough\":61644,\"stroopwafel\":62801,\"subscript\":61740,\"subtitles-slash\":58896,\"subtitles\":58895,\"suitcase-medical\":61690,\"suitcase-rolling\":62913,\"suitcase\":61682,\"sun-bright\":57999,\"sun-cloud\":63331,\"sun-dust\":63332,\"sun-haze\":63333,\"sun-plant-wilt\":58746,\"sun\":61829,\"sunglasses\":63634,\"sunrise\":63334,\"sunset\":63335,\"superscript\":61739,\"sushi-roll\":58507,\"sushi\":58506,\"swap-arrows\":58890,\"swap\":58889,\"swatchbook\":62915,\"sword-laser-alt\":57404,\"sword-laser\":57403,\"sword\":63260,\"swords-laser\":57405,\"swords\":63261,\"symbols\":63598,\"synagogue\":63131,\"syringe\":62606,\"t-rex\":58921,\"t\":84,\"table-cells-column-lock\":59000,\"table-cells-column-unlock\":59024,\"table-cells-large\":61449,\"table-cells-lock\":59001,\"table-cells-row-lock\":59002,\"table-cells-row-unlock\":59025,\"table-cells-unlock\":59026,\"table-cells\":61450,\"table-columns\":61659,\"table-layout\":58000,\"table-list\":61451,\"table-picnic\":58157,\"table-pivot\":58001,\"table-rows\":58002,\"table-tennis-paddle-ball\":62557,\"table-tree\":58003,\"table\":61646,\"tablet-button\":61706,\"tablet-rugged\":62607,\"tablet-screen-button\":62458,\"tablet-screen\":62460,\"tablet\":62459,\"tablets\":62608,\"tachograph-digital\":62822,\"taco\":63526,\"tag\":61483,\"tags\":61484,\"tally-1\":58004,\"tally-2\":58005,\"tally-3\":58006,\"tally-4\":58007,\"tally\":63132,\"tamale\":58449,\"tank-water\":58450,\"tape\":62683,\"tarp-droplet\":58748,\"tarp\":58747,\"taxi-bus\":58008,\"taxi\":61882,\"teddy-bear\":58319,\"teeth-open\":63023,\"teeth\":63022,\"telescope\":57406,\"temperature-arrow-down\":57407,\"temperature-arrow-up\":57408,\"temperature-empty\":62155,\"temperature-full\":62151,\"temperature-half\":62153,\"temperature-high\":63337,\"temperature-list\":58009,\"temperature-low\":63339,\"temperature-quarter\":62154,\"temperature-snow\":63336,\"temperature-sun\":63338,\"temperature-three-quarters\":62152,\"tenge-sign\":63447,\"tennis-ball\":62558,\"tent-arrow-down-to-line\":58750,\"tent-arrow-left-right\":58751,\"tent-arrow-turn-left\":58752,\"tent-arrows-down\":58753,\"tent-double-peak\":58919,\"tent\":58749,\"tents\":58754,\"terminal\":61728,\"text-height\":61492,\"text-size\":63636,\"text-slash\":63613,\"text-width\":61493,\"text\":63635,\"thermometer\":62609,\"theta\":63134,\"thought-bubble\":58158,\"thumbs-down\":61797,\"thumbs-up\":61796,\"thumbtack-slash\":59023,\"thumbtack\":61581,\"tick\":58159,\"ticket-airline\":58010,\"ticket-perforated\":58942,\"ticket-simple\":62463,\"ticket\":61765,\"tickets-airline\":58011,\"tickets-perforated\":58943,\"tickets-simple\":58969,\"tickets\":58968,\"tilde\":126,\"timeline-arrow\":58013,\"timeline\":58012,\"timer\":58014,\"tire-flat\":63026,\"tire-pressure-warning\":63027,\"tire-rugged\":63028,\"tire\":63025,\"toggle-large-off\":58800,\"toggle-large-on\":58801,\"toggle-off\":61956,\"toggle-on\":61957,\"toilet-paper-blank-under\":58015,\"toilet-paper-blank\":63263,\"toilet-paper-check\":58802,\"toilet-paper-slash\":57458,\"toilet-paper-under-slash\":58017,\"toilet-paper-under\":58016,\"toilet-paper-xmark\":58803,\"toilet-paper\":63262,\"toilet-portable\":58755,\"toilet\":63448,\"toilets-portable\":58756,\"tomato\":58160,\"tombstone-blank\":63265,\"tombstone\":63264,\"toolbox\":62802,\"tooth\":62921,\"toothbrush\":63029,\"torii-gate\":63137,\"tornado\":63343,\"tower-broadcast\":62745,\"tower-cell\":58757,\"tower-control\":58018,\"tower-observation\":58758,\"tractor\":63266,\"trademark\":62044,\"traffic-cone\":63030,\"traffic-light-go\":63032,\"traffic-light-slow\":63033,\"traffic-light-stop\":63034,\"traffic-light\":63031,\"trailer\":57409,\"train-subway-tunnel\":58019,\"train-subway\":62009,\"train-track\":58451,\"train-tram\":58804,\"train-tunnel\":58452,\"train\":62008,\"transformer-bolt\":58020,\"transgender\":61989,\"transporter-1\":57411,\"transporter-2\":57412,\"transporter-3\":57413,\"transporter-4\":58021,\"transporter-5\":58022,\"transporter-6\":58023,\"transporter-7\":58024,\"transporter-empty\":57414,\"transporter\":57410,\"trash-arrow-up\":63529,\"trash-can-arrow-up\":63530,\"trash-can-check\":58025,\"trash-can-clock\":58026,\"trash-can-list\":58027,\"trash-can-plus\":58028,\"trash-can-slash\":58029,\"trash-can-undo\":63638,\"trash-can-xmark\":58030,\"trash-can\":62189,\"trash-check\":58031,\"trash-clock\":58032,\"trash-list\":58033,\"trash-plus\":58034,\"trash-slash\":58035,\"trash-undo\":63637,\"trash-xmark\":58036,\"trash\":61944,\"treasure-chest\":63267,\"tree-christmas\":63451,\"tree-city\":58759,\"tree-deciduous\":62464,\"tree-decorated\":63452,\"tree-large\":63453,\"tree-palm\":63531,\"tree\":61883,\"trees\":63268,\"triangle-exclamation\":61553,\"triangle-instrument\":63714,\"triangle-person-digging\":63581,\"triangle\":62188,\"tricycle-adult\":58820,\"tricycle\":58819,\"trillium\":58760,\"trophy-star\":62187,\"trophy\":61585,\"trowel-bricks\":58762,\"trowel\":58761,\"truck-arrow-right\":58763,\"truck-bolt\":58320,\"truck-clock\":62604,\"truck-container-empty\":58037,\"truck-container\":62684,\"truck-droplet\":58764,\"truck-fast\":62603,\"truck-field-un\":58766,\"truck-field\":58765,\"truck-fire\":58970,\"truck-flatbed\":58038,\"truck-front\":58039,\"truck-ladder\":58967,\"truck-medical\":61689,\"truck-monster\":63035,\"truck-moving\":62687,\"truck-pickup\":63036,\"truck-plane\":58767,\"truck-plow\":63454,\"truck-ramp-box\":62686,\"truck-ramp-couch\":62685,\"truck-ramp\":62688,\"truck-tow\":58040,\"truck-utensils\":58920,\"truck\":61649,\"trumpet\":63715,\"tty-answer\":58041,\"tty\":61924,\"tugrik-sign\":58042,\"turkey\":63269,\"turkish-lira-sign\":58043,\"turn-down-left\":58161,\"turn-down-right\":58453,\"turn-down\":62398,\"turn-left-down\":58935,\"turn-left-up\":58936,\"turn-left\":58934,\"turn-right\":58937,\"turn-up\":62399,\"turntable\":63716,\"turtle\":63270,\"tv-music\":63718,\"tv-retro\":62465,\"tv\":62060,\"typewriter\":63719,\"u\":85,\"ufo-beam\":57416,\"ufo\":57415,\"umbrella-beach\":62922,\"umbrella-simple\":58044,\"umbrella\":61673,\"underline\":61645,\"unicorn\":63271,\"uniform-martial-arts\":58321,\"union\":63138,\"universal-access\":62106,\"unlock-keyhole\":61758,\"unlock\":61596,\"up-down-left-right\":61618,\"up-down\":62264,\"up-from-bracket\":58768,\"up-from-dotted-line\":58454,\"up-from-line\":62278,\"up-left\":58045,\"up-long\":62220,\"up-right-and-down-left-from-center\":62500,\"up-right-from-square\":62301,\"up-right\":58046,\"up-to-bracket\":58990,\"up-to-dotted-line\":58455,\"up-to-line\":62285,\"up\":62295,\"upload\":61587,\"usb-drive\":63721,\"user-alien\":57418,\"user-astronaut\":62715,\"user-beard-bolt\":59017,\"user-bounty-hunter\":58047,\"user-check\":62716,\"user-chef\":58322,\"user-clock\":62717,\"user-cowboy\":63722,\"user-crown\":63140,\"user-doctor-hair-long\":58457,\"user-doctor-hair\":58456,\"user-doctor-message\":63534,\"user-doctor\":61680,\"user-gear\":62718,\"user-graduate\":62721,\"user-group-crown\":63141,\"user-group-simple\":58883,\"user-group\":62720,\"user-hair-buns\":58323,\"user-hair-long\":58459,\"user-hair-mullet\":58460,\"user-hair\":58458,\"user-headset\":63533,\"user-helmet-safety\":63532,\"user-hoodie\":59018,\"user-injured\":63272,\"user-large-slash\":62714,\"user-large\":62470,\"user-lock\":62722,\"user-magnifying-glass\":58821,\"user-minus\":62723,\"user-music\":63723,\"user-ninja\":62724,\"user-nurse-hair-long\":58462,\"user-nurse-hair\":58461,\"user-nurse\":63535,\"user-pen\":62719,\"user-pilot-tie\":58049,\"user-pilot\":58048,\"user-plus\":62004,\"user-police-tie\":58164,\"user-police\":58163,\"user-robot-xmarks\":58535,\"user-robot\":57419,\"user-secret\":61979,\"user-shakespeare\":58050,\"user-shield\":62725,\"user-slash\":62726,\"user-tag\":62727,\"user-tie-hair-long\":58464,\"user-tie-hair\":58463,\"user-tie\":62728,\"user-unlock\":57432,\"user-visor\":57420,\"user-vneck-hair-long\":58467,\"user-vneck-hair\":58466,\"user-vneck\":58465,\"user-xmark\":62005,\"user\":61447,\"users-between-lines\":58769,\"users-gear\":62729,\"users-line\":58770,\"users-medical\":63536,\"users-rays\":58771,\"users-rectangle\":58772,\"users-slash\":57459,\"users-viewfinder\":58773,\"users\":61632,\"utensils-slash\":58468,\"utensils\":62183,\"utility-pole-double\":58052,\"utility-pole\":58051,\"v\":86,\"vacuum-robot\":57422,\"vacuum\":57421,\"value-absolute\":63142,\"van-shuttle\":62902,\"vault\":58053,\"vector-circle\":58054,\"vector-polygon\":58055,\"vector-square\":62923,\"vent-damper\":58469,\"venus-double\":61990,\"venus-mars\":61992,\"venus\":61985,\"vest-patches\":57478,\"vest\":57477,\"vial-circle-check\":58774,\"vial-virus\":58775,\"vial\":62610,\"vials\":62611,\"video-arrow-down-left\":58056,\"video-arrow-up-right\":58057,\"video-plus\":62689,\"video-slash\":62690,\"video\":61501,\"vihara\":63143,\"violin\":63725,\"virus-covid-slash\":58537,\"virus-covid\":58536,\"virus-slash\":57461,\"virus\":57460,\"viruses\":57462,\"voicemail\":63639,\"volcano\":63344,\"volleyball\":62559,\"volume-high\":61480,\"volume-low\":61479,\"volume-off\":61478,\"volume-slash\":62178,\"volume-xmark\":63145,\"volume\":63144,\"vr-cardboard\":63273,\"w\":87,\"waffle\":58470,\"wagon-covered\":63726,\"walker\":63537,\"walkie-talkie\":63727,\"wallet\":62805,\"wand-magic-sparkles\":58058,\"wand-magic\":61648,\"wand-sparkles\":63275,\"wand\":63274,\"warehouse-full\":62613,\"warehouse\":62612,\"washing-machine\":63640,\"watch-apple\":58059,\"watch-calculator\":63728,\"watch-fitness\":63038,\"watch-smart\":58060,\"watch\":62177,\"water-arrow-down\":63348,\"water-arrow-up\":63349,\"water-ladder\":62917,\"water\":63347,\"watermelon-slice\":58167,\"wave-pulse\":62968,\"wave-sine\":63641,\"wave-square\":63550,\"wave-triangle\":63642,\"wave\":58971,\"waveform-lines\":63730,\"waveform\":63729,\"waves-sine\":58973,\"web-awesome\":59010,\"webhook\":58837,\"weight-hanging\":62925,\"weight-scale\":62614,\"whale\":63276,\"wheat-awn-circle-exclamation\":58776,\"wheat-awn-slash\":58168,\"wheat-awn\":58061,\"wheat-slash\":58169,\"wheat\":63277,\"wheelchair-move\":58062,\"wheelchair\":61843,\"whiskey-glass-ice\":63393,\"whiskey-glass\":63392,\"whistle\":62560,\"wifi-exclamation\":58063,\"wifi-fair\":63147,\"wifi-slash\":63148,\"wifi-weak\":63146,\"wifi\":61931,\"wind-turbine\":63643,\"wind-warning\":63350,\"wind\":63278,\"window-flip\":62479,\"window-frame-open\":57424,\"window-frame\":57423,\"window-maximize\":62160,\"window-minimize\":62161,\"window-restore\":62162,\"window\":62478,\"windsock\":63351,\"wine-bottle\":63279,\"wine-glass-crack\":62651,\"wine-glass-empty\":62926,\"wine-glass\":62691,\"won-sign\":61785,\"worm\":58777,\"wreath-laurel\":58834,\"wreath\":63458,\"wrench-simple\":58065,\"wrench\":61613,\"x-ray\":62615,\"x\":88,\"xmark-large\":58779,\"xmark-to-slot\":63345,\"xmark\":61453,\"xmarks-lines\":58778,\"y\":89,\"yen-sign\":61783,\"yin-yang\":63149,\"z\":90}"
  },
  {
    "path": "packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_sharpThin.json",
    "content": "{\"0\":48,\"1\":49,\"2\":50,\"3\":51,\"4\":52,\"5\":53,\"6\":54,\"7\":55,\"8\":56,\"9\":57,\"00\":58471,\"360-degrees\":58076,\"a\":65,\"abacus\":63040,\"accent-grave\":96,\"acorn\":63150,\"address-book\":62137,\"address-card\":62139,\"air-conditioner\":63732,\"airplay\":57481,\"alarm-clock\":62286,\"alarm-exclamation\":63555,\"alarm-plus\":63556,\"alarm-snooze\":63557,\"album-circle-plus\":58508,\"album-circle-user\":58509,\"album-collection-circle-plus\":58510,\"album-collection-circle-user\":58511,\"album-collection\":63648,\"album\":63647,\"alicorn\":63152,\"alien-8bit\":63734,\"alien\":63733,\"align-center\":61495,\"align-justify\":61497,\"align-left\":61494,\"align-right\":61496,\"align-slash\":63558,\"alt\":57482,\"amp-guitar\":63649,\"ampersand\":38,\"anchor-circle-check\":58538,\"anchor-circle-exclamation\":58539,\"anchor-circle-xmark\":58540,\"anchor-lock\":58541,\"anchor\":61757,\"angel\":63353,\"angle-90\":57485,\"angle-down\":61703,\"angle-left\":61700,\"angle-right\":61701,\"angle-up\":61702,\"angle\":57484,\"angles-down\":61699,\"angles-left\":61696,\"angles-right\":61697,\"angles-up-down\":58893,\"angles-up\":61698,\"ankh\":63044,\"ant\":59008,\"apartment\":58472,\"aperture\":58079,\"apostrophe\":39,\"apple-core\":57487,\"apple-whole\":62929,\"archway\":62807,\"arrow-down-1-9\":61794,\"arrow-down-9-1\":63622,\"arrow-down-a-z\":61789,\"arrow-down-arrow-up\":63619,\"arrow-down-big-small\":63628,\"arrow-down-from-arc\":58900,\"arrow-down-from-bracket\":58983,\"arrow-down-from-dotted-line\":57488,\"arrow-down-from-line\":62277,\"arrow-down-left-and-arrow-up-right-to-center\":57490,\"arrow-down-left\":57489,\"arrow-down-long\":61813,\"arrow-down-right\":57491,\"arrow-down-short-wide\":63620,\"arrow-down-small-big\":63629,\"arrow-down-square-triangle\":63625,\"arrow-down-to-arc\":58542,\"arrow-down-to-bracket\":57492,\"arrow-down-to-dotted-line\":57493,\"arrow-down-to-line\":62269,\"arrow-down-to-square\":57494,\"arrow-down-triangle-square\":63624,\"arrow-down-up-across-line\":58543,\"arrow-down-up-lock\":58544,\"arrow-down-wide-short\":61792,\"arrow-down-z-a\":63617,\"arrow-down\":61539,\"arrow-left-from-arc\":58901,\"arrow-left-from-bracket\":58984,\"arrow-left-from-line\":62276,\"arrow-left-long-to-line\":58324,\"arrow-left-long\":61815,\"arrow-left-to-arc\":58902,\"arrow-left-to-bracket\":58985,\"arrow-left-to-line\":62270,\"arrow-left\":61536,\"arrow-pointer\":62021,\"arrow-progress\":58847,\"arrow-right-arrow-left\":61676,\"arrow-right-from-arc\":58545,\"arrow-right-from-bracket\":61579,\"arrow-right-from-line\":62275,\"arrow-right-long-to-line\":58325,\"arrow-right-long\":61816,\"arrow-right-to-arc\":58546,\"arrow-right-to-bracket\":61584,\"arrow-right-to-city\":58547,\"arrow-right-to-line\":62272,\"arrow-right\":61537,\"arrow-rotate-left\":61666,\"arrow-rotate-right\":61470,\"arrow-trend-down\":57495,\"arrow-trend-up\":57496,\"arrow-turn-down-left\":58081,\"arrow-turn-down-right\":58326,\"arrow-turn-down\":61769,\"arrow-turn-left-down\":58931,\"arrow-turn-left-up\":58932,\"arrow-turn-left\":58930,\"arrow-turn-right\":58933,\"arrow-turn-up\":61768,\"arrow-up-1-9\":61795,\"arrow-up-9-1\":63623,\"arrow-up-a-z\":61790,\"arrow-up-arrow-down\":57497,\"arrow-up-big-small\":63630,\"arrow-up-from-arc\":58548,\"arrow-up-from-bracket\":57498,\"arrow-up-from-dotted-line\":57499,\"arrow-up-from-ground-water\":58549,\"arrow-up-from-line\":62274,\"arrow-up-from-square\":57500,\"arrow-up-from-water-pump\":58550,\"arrow-up-left-from-circle\":57502,\"arrow-up-left\":57501,\"arrow-up-long\":61814,\"arrow-up-right-and-arrow-down-left-from-center\":57504,\"arrow-up-right-dots\":58551,\"arrow-up-right-from-square\":61582,\"arrow-up-right\":57503,\"arrow-up-short-wide\":63621,\"arrow-up-small-big\":63631,\"arrow-up-square-triangle\":63627,\"arrow-up-to-arc\":58903,\"arrow-up-to-bracket\":58986,\"arrow-up-to-dotted-line\":57505,\"arrow-up-to-line\":62273,\"arrow-up-triangle-square\":63626,\"arrow-up-wide-short\":61793,\"arrow-up-z-a\":63618,\"arrow-up\":61538,\"arrows-cross\":57506,\"arrows-down-to-line\":58552,\"arrows-down-to-people\":58553,\"arrows-from-dotted-line\":57507,\"arrows-from-line\":57508,\"arrows-left-right-to-line\":58554,\"arrows-left-right\":61566,\"arrows-maximize\":62237,\"arrows-minimize\":57509,\"arrows-repeat-1\":62310,\"arrows-repeat\":62308,\"arrows-retweet\":62305,\"arrows-rotate-reverse\":58928,\"arrows-rotate\":61473,\"arrows-spin\":58555,\"arrows-split-up-and-left\":58556,\"arrows-to-circle\":58557,\"arrows-to-dot\":58558,\"arrows-to-dotted-line\":57510,\"arrows-to-eye\":58559,\"arrows-to-line\":57511,\"arrows-turn-right\":58560,\"arrows-turn-to-dots\":58561,\"arrows-up-down-left-right\":61511,\"arrows-up-down\":61565,\"arrows-up-to-line\":58562,\"asterisk\":42,\"at\":64,\"atom-simple\":62931,\"atom\":62930,\"audio-description-slash\":57512,\"audio-description\":62110,\"austral-sign\":57513,\"avocado\":57514,\"award-simple\":57515,\"award\":62809,\"axe-battle\":63155,\"axe\":63154,\"b\":66,\"baby-carriage\":63357,\"baby\":63356,\"backpack\":62932,\"backward-fast\":61513,\"backward-step\":61512,\"backward\":61514,\"bacon\":63461,\"bacteria\":57433,\"bacterium\":57434,\"badge-check\":62262,\"badge-dollar\":63045,\"badge-percent\":63046,\"badge-sheriff\":63650,\"badge\":62261,\"badger-honey\":63156,\"badminton\":58170,\"bag-seedling\":58866,\"bag-shopping-minus\":58960,\"bag-shopping-plus\":58961,\"bag-shopping\":62096,\"bagel\":58327,\"bags-shopping\":63559,\"baguette\":58328,\"bahai\":63078,\"baht-sign\":57516,\"ball-pile\":63358,\"balloon\":58083,\"balloons\":58084,\"ballot-check\":63283,\"ballot\":63282,\"ban-bug\":63481,\"ban-parking\":62998,\"ban-smoking\":62797,\"ban\":61534,\"banana\":58085,\"bandage\":62562,\"bangladeshi-taka-sign\":58086,\"banjo\":63651,\"barcode-read\":62564,\"barcode-scan\":62565,\"barcode\":61482,\"bars-filter\":57517,\"bars-progress\":63528,\"bars-sort\":57518,\"bars-staggered\":62800,\"bars\":61641,\"baseball-bat-ball\":62514,\"baseball\":62515,\"basket-shopping-minus\":58962,\"basket-shopping-plus\":58963,\"basket-shopping-simple\":57519,\"basket-shopping\":62097,\"basketball-hoop\":62517,\"basketball\":62516,\"bat\":63157,\"bath\":62157,\"battery-bolt\":62326,\"battery-empty\":62020,\"battery-exclamation\":57520,\"battery-full\":62016,\"battery-half\":62018,\"battery-low\":57521,\"battery-quarter\":62019,\"battery-slash\":62327,\"battery-three-quarters\":62017,\"bed-bunk\":63736,\"bed-empty\":63737,\"bed-front\":63735,\"bed-pulse\":62599,\"bed\":62006,\"bee\":57522,\"beer-mug-empty\":61692,\"beer-mug\":57523,\"bell-concierge\":62818,\"bell-exclamation\":63560,\"bell-on\":63738,\"bell-plus\":63561,\"bell-ring\":58924,\"bell-school-slash\":62934,\"bell-school\":62933,\"bell-slash\":61942,\"bell\":61683,\"bells\":63359,\"bench-tree\":58087,\"bezier-curve\":62811,\"bicycle\":61958,\"billboard\":58829,\"bin-bottles-recycle\":58870,\"bin-bottles\":58869,\"bin-recycle\":58871,\"binary-circle-check\":58172,\"binary-lock\":58173,\"binary-slash\":58174,\"binary\":58171,\"binoculars\":61925,\"biohazard\":63360,\"bird\":58473,\"bitcoin-sign\":57524,\"blanket-fire\":58330,\"blanket\":62616,\"blender-phone\":63158,\"blender\":62743,\"blinds-open\":63740,\"blinds-raised\":63741,\"blinds\":63739,\"block-brick-fire\":58332,\"block-brick\":58331,\"block-question\":58333,\"block-quote\":57525,\"block\":58474,\"blog\":63361,\"blueberries\":58088,\"bluetooth\":62099,\"bold\":61490,\"bolt-auto\":57526,\"bolt-lightning\":57527,\"bolt-slash\":57528,\"bolt\":61671,\"bomb\":61922,\"bone-break\":62936,\"bone\":62935,\"bong\":62812,\"book-arrow-right\":57529,\"book-arrow-up\":57530,\"book-atlas\":62808,\"book-bible\":63047,\"book-blank\":62937,\"book-bookmark\":57531,\"book-circle-arrow-right\":57532,\"book-circle-arrow-up\":57533,\"book-copy\":57534,\"book-font\":57535,\"book-heart\":62617,\"book-journal-whills\":63082,\"book-medical\":63462,\"book-open-cover\":57536,\"book-open-reader\":62938,\"book-open\":62744,\"book-quran\":63111,\"book-section\":57537,\"book-skull\":63159,\"book-sparkles\":63160,\"book-tanakh\":63527,\"book-user\":63463,\"book\":61485,\"bookmark-slash\":57538,\"bookmark\":61486,\"books-medical\":63464,\"books\":62939,\"boombox\":63653,\"boot-heeled\":58175,\"boot\":63362,\"booth-curtain\":63284,\"border-all\":63564,\"border-bottom-right\":63572,\"border-bottom\":63565,\"border-center-h\":63644,\"border-center-v\":63645,\"border-inner\":63566,\"border-left\":63567,\"border-none\":63568,\"border-outer\":63569,\"border-right\":63570,\"border-top-left\":63571,\"border-top\":63573,\"bore-hole\":58563,\"bottle-baby\":58995,\"bottle-droplet\":58564,\"bottle-water\":58565,\"bow-arrow\":63161,\"bowl-chopsticks-noodles\":58090,\"bowl-chopsticks\":58089,\"bowl-food\":58566,\"bowl-hot\":63523,\"bowl-rice\":58091,\"bowl-scoop\":58334,\"bowl-scoops\":58335,\"bowl-soft-serve\":58475,\"bowl-spoon\":58336,\"bowling-ball-pin\":57539,\"bowling-ball\":62518,\"bowling-pins\":62519,\"box-archive\":61831,\"box-ballot\":63285,\"box-check\":62567,\"box-circle-check\":57540,\"box-dollar\":62624,\"box-heart\":62621,\"box-open-full\":62620,\"box-open\":62622,\"box-taped\":62618,\"box-tissue\":57435,\"box\":62566,\"boxes-packing\":58567,\"boxes-stacked\":62568,\"boxing-glove\":62520,\"bracket-curly-right\":125,\"bracket-curly\":123,\"bracket-round-right\":41,\"bracket-round\":40,\"bracket-square-right\":93,\"bracket-square\":91,\"brackets-curly\":63466,\"brackets-round\":57541,\"brackets-square\":63465,\"braille\":62113,\"brain-arrow-curved-right\":63095,\"brain-circuit\":57542,\"brain\":62940,\"brake-warning\":57543,\"brazilian-real-sign\":58476,\"bread-loaf\":63467,\"bread-slice-butter\":58337,\"bread-slice\":63468,\"bridge-circle-check\":58569,\"bridge-circle-exclamation\":58570,\"bridge-circle-xmark\":58571,\"bridge-lock\":58572,\"bridge-suspension\":58573,\"bridge-water\":58574,\"bridge\":58568,\"briefcase-arrow-right\":58098,\"briefcase-blank\":57544,\"briefcase-medical\":62569,\"briefcase\":61617,\"brightness-low\":57546,\"brightness\":57545,\"bring-forward\":63574,\"bring-front\":63575,\"broccoli\":58338,\"broom-ball\":62552,\"broom-wide\":58833,\"broom\":62746,\"browser\":62334,\"browsers\":57547,\"brush\":62813,\"bucket\":58575,\"bug-slash\":58512,\"bug\":61832,\"bugs\":58576,\"building-circle-arrow-right\":58577,\"building-circle-check\":58578,\"building-circle-exclamation\":58579,\"building-circle-xmark\":58580,\"building-columns\":61852,\"building-flag\":58581,\"building-lock\":58582,\"building-magnifying-glass\":58908,\"building-memo\":58910,\"building-ngo\":58583,\"building-shield\":58584,\"building-un\":58585,\"building-user\":58586,\"building-wheat\":58587,\"building\":61869,\"buildings\":57548,\"bulldozer\":58965,\"bullhorn\":61601,\"bullseye-arrow\":63048,\"bullseye-pointer\":63049,\"bullseye\":61760,\"buoy-mooring\":58806,\"buoy\":58805,\"burger-cheese\":63473,\"burger-fries\":57549,\"burger-glass\":57550,\"burger-lettuce\":58339,\"burger-soda\":63576,\"burger\":63493,\"burrito\":63469,\"burst\":58588,\"bus-school\":62941,\"bus-simple\":62814,\"bus\":61959,\"business-time\":63050,\"butter\":58340,\"c\":67,\"cabin\":58477,\"cabinet-filing\":63051,\"cable-car\":63450,\"cactus\":63655,\"caduceus\":59009,\"cake-candles\":61949,\"cake-slice\":58341,\"calculator-simple\":63052,\"calculator\":61932,\"calendar-arrow-down\":57552,\"calendar-arrow-up\":57553,\"calendar-check\":62068,\"calendar-circle-exclamation\":58478,\"calendar-circle-minus\":58479,\"calendar-circle-plus\":58480,\"calendar-circle-user\":58481,\"calendar-clock\":57554,\"calendar-day\":63363,\"calendar-days\":61555,\"calendar-exclamation\":62260,\"calendar-heart\":57555,\"calendar-image\":57556,\"calendar-lines-pen\":58482,\"calendar-lines\":57557,\"calendar-minus\":62066,\"calendar-pen\":62259,\"calendar-plus\":62065,\"calendar-range\":57558,\"calendar-star\":63286,\"calendar-users\":58850,\"calendar-week\":63364,\"calendar-xmark\":62067,\"calendar\":61747,\"calendars\":57559,\"camcorder\":63656,\"camera-cctv\":63660,\"camera-movie\":63657,\"camera-polaroid\":63658,\"camera-retro\":61571,\"camera-rotate\":57560,\"camera-security\":63742,\"camera-slash\":57561,\"camera-viewfinder\":57562,\"camera-web-slash\":63539,\"camera-web\":63538,\"camera\":61488,\"campfire\":63162,\"campground\":63163,\"can-food\":58342,\"candle-holder\":63164,\"candy-bar\":58344,\"candy-cane\":63366,\"candy-corn\":63165,\"candy\":58343,\"cannabis\":62815,\"cannon\":58946,\"capsules\":62571,\"car-battery\":62943,\"car-bolt\":58177,\"car-building\":63577,\"car-bump\":62944,\"car-burst\":62945,\"car-bus\":63578,\"car-circle-bolt\":58178,\"car-garage\":62946,\"car-mirrors\":58179,\"car-on\":58589,\"car-rear\":62942,\"car-side-bolt\":58180,\"car-side\":62948,\"car-tilt\":62949,\"car-tunnel\":58590,\"car-wash\":62950,\"car-wrench\":62947,\"car\":61881,\"caravan-simple\":57344,\"caravan\":63743,\"card-club\":58345,\"card-diamond\":58346,\"card-heart\":58347,\"card-spade\":58348,\"cards-blank\":58591,\"cards\":58349,\"caret-down\":61655,\"caret-left\":61657,\"caret-right\":61658,\"caret-up\":61656,\"carpool\":59036,\"carrot\":63367,\"cars\":63579,\"cart-arrow-down\":61976,\"cart-arrow-up\":58350,\"cart-circle-arrow-down\":58351,\"cart-circle-arrow-up\":58352,\"cart-circle-check\":58353,\"cart-circle-exclamation\":58354,\"cart-circle-plus\":58355,\"cart-circle-xmark\":58356,\"cart-flatbed-boxes\":62581,\"cart-flatbed-empty\":62582,\"cart-flatbed-suitcase\":62877,\"cart-flatbed\":62580,\"cart-minus\":57563,\"cart-plus\":61975,\"cart-shopping-fast\":57564,\"cart-shopping\":61562,\"cart-xmark\":57565,\"cash-register\":63368,\"cassette-betamax\":63652,\"cassette-tape\":63659,\"cassette-vhs\":63724,\"castle\":57566,\"cat-space\":57345,\"cat\":63166,\"cauldron\":63167,\"cedi-sign\":57567,\"cent-sign\":58357,\"certificate\":61603,\"chair-office\":63169,\"chair\":63168,\"chalkboard-user\":62748,\"chalkboard\":62747,\"champagne-glass\":63390,\"champagne-glasses\":63391,\"charging-station\":62951,\"chart-area\":61950,\"chart-bar\":61568,\"chart-bullet\":57569,\"chart-candlestick\":57570,\"chart-column\":57571,\"chart-diagram\":59029,\"chart-fft\":59038,\"chart-gantt\":57572,\"chart-kanban\":58959,\"chart-line-down\":63053,\"chart-line-up-down\":58839,\"chart-line-up\":57573,\"chart-line\":61953,\"chart-mixed-up-circle-currency\":58840,\"chart-mixed-up-circle-dollar\":58841,\"chart-mixed\":63043,\"chart-network\":63370,\"chart-pie-simple-circle-currency\":58884,\"chart-pie-simple-circle-dollar\":58885,\"chart-pie-simple\":63054,\"chart-pie\":61952,\"chart-pyramid\":57574,\"chart-radar\":57575,\"chart-scatter-3d\":57576,\"chart-scatter-bubble\":57577,\"chart-scatter\":63470,\"chart-simple-horizontal\":58484,\"chart-simple\":58483,\"chart-sine\":59037,\"chart-tree-map\":57578,\"chart-user\":63139,\"chart-waterfall\":57579,\"check-double\":62816,\"check-to-slot\":63346,\"check\":61452,\"cheese-swiss\":63472,\"cheese\":63471,\"cherries\":57580,\"chess-bishop-piece\":62523,\"chess-bishop\":62522,\"chess-board\":62524,\"chess-clock-flip\":62526,\"chess-clock\":62525,\"chess-king-piece\":62528,\"chess-king\":62527,\"chess-knight-piece\":62530,\"chess-knight\":62529,\"chess-pawn-piece\":62532,\"chess-pawn\":62531,\"chess-queen-piece\":62534,\"chess-queen\":62533,\"chess-rook-piece\":62536,\"chess-rook\":62535,\"chess\":62521,\"chestnut\":58358,\"chevron-down\":61560,\"chevron-left\":61523,\"chevron-right\":61524,\"chevron-up\":61559,\"chevrons-down\":62242,\"chevrons-left\":62243,\"chevrons-right\":62244,\"chevrons-up\":62245,\"chf-sign\":58882,\"child-combatant\":58592,\"child-dress\":58780,\"child-reaching\":58781,\"child\":61870,\"children\":58593,\"chimney\":63371,\"chopsticks\":58359,\"church\":62749,\"circle-0\":57581,\"circle-1\":57582,\"circle-2\":57583,\"circle-3\":57584,\"circle-4\":57585,\"circle-5\":57586,\"circle-6\":57587,\"circle-7\":57588,\"circle-8\":57589,\"circle-9\":57590,\"circle-a\":57591,\"circle-ampersand\":57592,\"circle-arrow-down-left\":57593,\"circle-arrow-down-right\":57594,\"circle-arrow-down\":61611,\"circle-arrow-left\":61608,\"circle-arrow-right\":61609,\"circle-arrow-up-left\":57595,\"circle-arrow-up-right\":57596,\"circle-arrow-up\":61610,\"circle-b\":57597,\"circle-bolt\":57598,\"circle-book-open\":57599,\"circle-bookmark\":57600,\"circle-c\":57601,\"circle-calendar\":57602,\"circle-camera\":57603,\"circle-caret-down\":62253,\"circle-caret-left\":62254,\"circle-caret-right\":62256,\"circle-caret-up\":62257,\"circle-check\":61528,\"circle-chevron-down\":61754,\"circle-chevron-left\":61751,\"circle-chevron-right\":61752,\"circle-chevron-up\":61753,\"circle-d\":57604,\"circle-dashed\":57605,\"circle-divide\":57606,\"circle-dollar-to-slot\":62649,\"circle-dollar\":62184,\"circle-dot\":61842,\"circle-down-left\":57607,\"circle-down-right\":57608,\"circle-down\":62296,\"circle-e\":57609,\"circle-ellipsis-vertical\":57611,\"circle-ellipsis\":57610,\"circle-envelope\":57612,\"circle-euro\":58830,\"circle-exclamation-check\":57613,\"circle-exclamation\":61546,\"circle-f\":57614,\"circle-g\":57615,\"circle-gf\":59007,\"circle-h\":62590,\"circle-half-stroke\":61506,\"circle-half\":57616,\"circle-heart\":62663,\"circle-i\":57617,\"circle-info\":61530,\"circle-j\":57618,\"circle-k\":57619,\"circle-l\":57620,\"circle-left\":62297,\"circle-location-arrow\":62978,\"circle-m\":57621,\"circle-microphone-lines\":57623,\"circle-microphone\":57622,\"circle-minus\":61526,\"circle-n\":57624,\"circle-nodes\":58594,\"circle-notch\":61902,\"circle-o\":57625,\"circle-p\":57626,\"circle-parking\":62997,\"circle-pause\":62091,\"circle-phone-flip\":57628,\"circle-phone-hangup\":57629,\"circle-phone\":57627,\"circle-play\":61764,\"circle-plus\":61525,\"circle-q\":57630,\"circle-quarter-stroke\":58835,\"circle-quarter\":57631,\"circle-quarters\":58360,\"circle-question\":61529,\"circle-r\":57632,\"circle-radiation\":63418,\"circle-right\":62298,\"circle-s\":57633,\"circle-small\":57634,\"circle-sort-down\":57393,\"circle-sort-up\":57394,\"circle-sort\":57392,\"circle-star\":57635,\"circle-sterling\":58831,\"circle-stop\":62093,\"circle-t\":57636,\"circle-three-quarters-stroke\":58836,\"circle-three-quarters\":57637,\"circle-trash\":57638,\"circle-u\":57639,\"circle-up-left\":57640,\"circle-up-right\":57641,\"circle-up\":62299,\"circle-user\":62141,\"circle-v\":57642,\"circle-video\":57643,\"circle-w\":57644,\"circle-waveform-lines\":57645,\"circle-wifi-circle-wifi\":59006,\"circle-wifi\":59005,\"circle-x\":57646,\"circle-xmark\":61527,\"circle-y\":57647,\"circle-yen\":58832,\"circle-z\":57648,\"circle\":61713,\"circles-overlap-3\":59041,\"circles-overlap\":58880,\"citrus-slice\":58101,\"citrus\":58100,\"city\":63055,\"clapperboard-play\":57650,\"clapperboard\":57649,\"clarinet\":63661,\"claw-marks\":63170,\"clipboard-check\":62572,\"clipboard-list-check\":63287,\"clipboard-list\":62573,\"clipboard-medical\":57651,\"clipboard-prescription\":62952,\"clipboard-question\":58595,\"clipboard-user\":63475,\"clipboard\":62248,\"clock-desk\":57652,\"clock-eight-thirty\":58182,\"clock-eight\":58181,\"clock-eleven-thirty\":58184,\"clock-eleven\":58183,\"clock-five-thirty\":58186,\"clock-five\":58185,\"clock-four-thirty\":58187,\"clock-nine-thirty\":58189,\"clock-nine\":58188,\"clock-one-thirty\":58191,\"clock-one\":58190,\"clock-rotate-left\":61914,\"clock-seven-thirty\":58193,\"clock-seven\":58192,\"clock-six-thirty\":58195,\"clock-six\":58194,\"clock-ten-thirty\":58197,\"clock-ten\":58196,\"clock-three-thirty\":58199,\"clock-three\":58198,\"clock-twelve-thirty\":58201,\"clock-twelve\":58200,\"clock-two-thirty\":58203,\"clock-two\":58202,\"clock\":61463,\"clone\":62029,\"closed-captioning-slash\":57653,\"closed-captioning\":61962,\"clothes-hanger\":57654,\"cloud-arrow-down\":61677,\"cloud-arrow-up\":61678,\"cloud-binary\":58881,\"cloud-bolt-moon\":63341,\"cloud-bolt-sun\":63342,\"cloud-bolt\":63340,\"cloud-check\":58204,\"cloud-drizzle\":63288,\"cloud-exclamation\":58513,\"cloud-fog\":63310,\"cloud-hail-mixed\":63290,\"cloud-hail\":63289,\"cloud-meatball\":63291,\"cloud-minus\":58205,\"cloud-moon-rain\":63292,\"cloud-moon\":63171,\"cloud-music\":63662,\"cloud-plus\":58206,\"cloud-question\":58514,\"cloud-rain\":63293,\"cloud-rainbow\":63294,\"cloud-showers-heavy\":63296,\"cloud-showers-water\":58596,\"cloud-showers\":63295,\"cloud-slash\":57655,\"cloud-sleet\":63297,\"cloud-snow\":63298,\"cloud-sun-rain\":63299,\"cloud-sun\":63172,\"cloud-word\":57656,\"cloud-xmark\":58207,\"cloud\":61634,\"clouds-moon\":63301,\"clouds-sun\":63302,\"clouds\":63300,\"clover\":57657,\"club\":62247,\"coconut\":58102,\"code-branch\":61734,\"code-commit\":62342,\"code-compare\":57658,\"code-fork\":57659,\"code-merge\":62343,\"code-pull-request-closed\":58361,\"code-pull-request-draft\":58362,\"code-pull-request\":57660,\"code-simple\":57661,\"code\":61729,\"coffee-bean\":57662,\"coffee-beans\":57663,\"coffee-pot\":57346,\"coffin-cross\":57425,\"coffin\":63174,\"coin-blank\":58363,\"coin-front\":58364,\"coin-vertical\":58365,\"coin\":63580,\"coins\":62750,\"colon-sign\":57664,\"colon\":58,\"columns-3\":58209,\"comet\":57347,\"comma\":44,\"command\":57666,\"comment-arrow-down\":57667,\"comment-arrow-up-right\":57669,\"comment-arrow-up\":57668,\"comment-captions\":57670,\"comment-check\":62636,\"comment-code\":57671,\"comment-dollar\":63057,\"comment-dots\":62637,\"comment-exclamation\":62639,\"comment-heart\":58824,\"comment-image\":57672,\"comment-lines\":62640,\"comment-medical\":63477,\"comment-middle-top\":57674,\"comment-middle\":57673,\"comment-minus\":62641,\"comment-music\":63664,\"comment-nodes\":59030,\"comment-pen\":62638,\"comment-plus\":62642,\"comment-question\":57675,\"comment-quote\":57676,\"comment-slash\":62643,\"comment-smile\":62644,\"comment-sms\":63437,\"comment-text\":57677,\"comment-xmark\":62645,\"comment\":61557,\"comments-dollar\":63059,\"comments-question-check\":57679,\"comments-question\":57678,\"comments\":61574,\"compact-disc\":62751,\"compass-drafting\":62824,\"compass-slash\":62953,\"compass\":61774,\"compress-wide\":62246,\"compress\":61542,\"computer-classic\":63665,\"computer-mouse-scrollwheel\":63693,\"computer-mouse\":63692,\"computer-speaker\":63666,\"computer\":58597,\"container-storage\":62647,\"conveyor-belt-arm\":58872,\"conveyor-belt-boxes\":62575,\"conveyor-belt-empty\":57680,\"conveyor-belt\":62574,\"cookie-bite\":62820,\"cookie\":62819,\"copy\":61637,\"copyright\":61945,\"corn\":63175,\"corner\":58366,\"couch\":62648,\"court-sport\":58947,\"cow\":63176,\"cowbell-circle-plus\":63668,\"cowbell\":63667,\"crab\":58367,\"crate-apple\":63153,\"crate-empty\":57681,\"credit-card-blank\":62345,\"credit-card-front\":62346,\"credit-card\":61597,\"cricket-bat-ball\":62537,\"croissant\":63478,\"crop-simple\":62821,\"crop\":61733,\"cross\":63060,\"crosshairs-simple\":58783,\"crosshairs\":61531,\"crow\":62752,\"crown\":62753,\"crutch\":63479,\"crutches\":63480,\"cruzeiro-sign\":57682,\"crystal-ball\":58210,\"cube\":61874,\"cubes-stacked\":58598,\"cubes\":61875,\"cucumber\":58369,\"cup-straw-swoosh\":58212,\"cup-straw\":58211,\"cup-togo\":63173,\"cupcake\":58370,\"curling-stone\":62538,\"custard\":58371,\"d\":68,\"dagger\":63179,\"dash\":58372,\"database\":61888,\"deer-rudolph\":63375,\"deer\":63374,\"delete-left\":62810,\"delete-right\":57684,\"democrat\":63303,\"desktop-arrow-down\":57685,\"desktop\":62352,\"dharmachakra\":63061,\"diagram-cells\":58485,\"diagram-lean-canvas\":57686,\"diagram-nested\":57687,\"diagram-next\":58486,\"diagram-predecessor\":58487,\"diagram-previous\":58488,\"diagram-project\":62786,\"diagram-sankey\":57688,\"diagram-subtask\":58489,\"diagram-successor\":58490,\"diagram-venn\":57690,\"dial-high\":57692,\"dial-low\":57693,\"dial-max\":57694,\"dial-med-low\":57696,\"dial-med\":57695,\"dial-min\":57697,\"dial-off\":57698,\"dial\":57691,\"diamond-exclamation\":58373,\"diamond-half-stroke\":58808,\"diamond-half\":58807,\"diamond-turn-right\":62955,\"diamond\":61977,\"diamonds-4\":59019,\"dice-d10\":63181,\"dice-d12\":63182,\"dice-d20\":63183,\"dice-d4\":63184,\"dice-d6\":63185,\"dice-d8\":63186,\"dice-five\":62755,\"dice-four\":62756,\"dice-one\":62757,\"dice-six\":62758,\"dice-three\":62759,\"dice-two\":62760,\"dice\":62754,\"dinosaur\":58878,\"diploma\":62954,\"disc-drive\":63669,\"disease\":63482,\"display-arrow-down\":57700,\"display-chart-up-circle-currency\":58853,\"display-chart-up-circle-dollar\":58854,\"display-chart-up\":58851,\"display-code\":57701,\"display-medical\":57702,\"display-slash\":58106,\"display\":57699,\"distribute-spacing-horizontal\":58213,\"distribute-spacing-vertical\":58214,\"ditto\":34,\"divide\":62761,\"dna\":62577,\"do-not-enter\":62956,\"dog-leashed\":63188,\"dog\":63187,\"dollar-sign\":36,\"dolly-empty\":62579,\"dolly\":62578,\"dolphin\":57704,\"dong-sign\":57705,\"donut\":58374,\"door-closed\":62762,\"door-open\":62763,\"dove\":62650,\"down-from-bracket\":58987,\"down-from-dotted-line\":58375,\"down-from-line\":62281,\"down-left-and-up-right-to-center\":62498,\"down-left\":57706,\"down-long\":62217,\"down-right\":57707,\"down-to-bracket\":58599,\"down-to-dotted-line\":58376,\"down-to-line\":62282,\"down\":62292,\"download\":61465,\"dragon\":63189,\"draw-circle\":62957,\"draw-polygon\":62958,\"draw-square\":62959,\"dreidel\":63378,\"drone-front\":63584,\"drone\":63583,\"droplet-degree\":63304,\"droplet-percent\":63312,\"droplet-slash\":62919,\"droplet\":61507,\"drum-steelpan\":62826,\"drum\":62825,\"drumstick-bite\":63191,\"drumstick\":63190,\"dryer-heat\":63586,\"dryer\":63585,\"duck\":63192,\"dumbbell\":62539,\"dumpster-fire\":63380,\"dumpster\":63379,\"dungeon\":63193,\"e\":69,\"ear-deaf\":62116,\"ear-listen\":62114,\"ear-muffs\":63381,\"ear\":62960,\"earth-africa\":62844,\"earth-americas\":62845,\"earth-asia\":62846,\"earth-europe\":63394,\"earth-oceania\":58491,\"eclipse\":63305,\"egg-fried\":63484,\"egg\":63483,\"eggplant\":57708,\"eject\":61522,\"elephant\":63194,\"elevator\":57709,\"ellipsis-stroke-vertical\":62364,\"ellipsis-stroke\":62363,\"ellipsis-vertical\":61762,\"ellipsis\":61761,\"empty-set\":63062,\"engine-warning\":62962,\"engine\":57710,\"envelope-circle-check\":58600,\"envelope-dot\":57711,\"envelope-open-dollar\":63063,\"envelope-open-text\":63064,\"envelope-open\":62134,\"envelope\":61664,\"envelopes-bulk\":63092,\"envelopes\":57712,\"equals\":61,\"eraser\":61741,\"escalator\":57713,\"ethernet\":63382,\"euro-sign\":61779,\"excavator\":58966,\"exclamation\":33,\"expand-wide\":62240,\"expand\":61541,\"explosion\":58601,\"eye-dropper-full\":57714,\"eye-dropper-half\":57715,\"eye-dropper\":61947,\"eye-evil\":63195,\"eye-low-vision\":62120,\"eye-slash\":61552,\"eye\":61550,\"eyes\":58215,\"f\":70,\"face-angry-horns\":58216,\"face-angry\":62806,\"face-anguished\":58217,\"face-anxious-sweat\":58218,\"face-astonished\":58219,\"face-awesome\":58377,\"face-beam-hand-over-mouth\":58492,\"face-clouds\":58493,\"face-confounded\":58220,\"face-confused\":58221,\"face-cowboy-hat\":58222,\"face-diagonal-mouth\":58494,\"face-disappointed\":58223,\"face-disguise\":58224,\"face-dizzy\":62823,\"face-dotted\":58495,\"face-downcast-sweat\":58225,\"face-drooling\":58226,\"face-exhaling\":58496,\"face-explode\":58110,\"face-expressionless\":58227,\"face-eyes-xmarks\":58228,\"face-fearful\":58229,\"face-flushed\":62841,\"face-frown-open\":62842,\"face-frown-slight\":58230,\"face-frown\":61721,\"face-glasses\":58231,\"face-grimace\":62847,\"face-grin-beam-sweat\":62851,\"face-grin-beam\":62850,\"face-grin-hearts\":62852,\"face-grin-squint-tears\":62854,\"face-grin-squint\":62853,\"face-grin-stars\":62855,\"face-grin-tears\":62856,\"face-grin-tongue-squint\":62858,\"face-grin-tongue-wink\":62859,\"face-grin-tongue\":62857,\"face-grin-wide\":62849,\"face-grin-wink\":62860,\"face-grin\":62848,\"face-hand-over-mouth\":58232,\"face-hand-peeking\":58497,\"face-hand-yawn\":58233,\"face-head-bandage\":58234,\"face-holding-back-tears\":58498,\"face-hushed\":58235,\"face-icicles\":58236,\"face-kiss-beam\":62871,\"face-kiss-closed-eyes\":58237,\"face-kiss-wink-heart\":62872,\"face-kiss\":62870,\"face-laugh-beam\":62874,\"face-laugh-squint\":62875,\"face-laugh-wink\":62876,\"face-laugh\":62873,\"face-lying\":58238,\"face-mask\":58239,\"face-meh-blank\":62884,\"face-meh\":61722,\"face-melting\":58499,\"face-monocle\":58240,\"face-nauseated\":58241,\"face-nose-steam\":58242,\"face-party\":58243,\"face-pensive\":58244,\"face-persevering\":58245,\"face-pleading\":58246,\"face-pouting\":58247,\"face-raised-eyebrow\":58248,\"face-relieved\":58249,\"face-rolling-eyes\":62885,\"face-sad-cry\":62899,\"face-sad-sweat\":58250,\"face-sad-tear\":62900,\"face-saluting\":58500,\"face-scream\":58251,\"face-shush\":58252,\"face-sleeping\":58253,\"face-sleepy\":58254,\"face-smile-beam\":62904,\"face-smile-halo\":58255,\"face-smile-hearts\":58256,\"face-smile-horns\":58257,\"face-smile-plus\":62905,\"face-smile-relaxed\":58258,\"face-smile-tear\":58259,\"face-smile-tongue\":58260,\"face-smile-upside-down\":58261,\"face-smile-wink\":62682,\"face-smile\":61720,\"face-smiling-hands\":58262,\"face-smirking\":58263,\"face-spiral-eyes\":58501,\"face-sunglasses\":58264,\"face-surprise\":62914,\"face-swear\":58265,\"face-thermometer\":58266,\"face-thinking\":58267,\"face-tired\":62920,\"face-tissue\":58268,\"face-tongue-money\":58269,\"face-tongue-sweat\":58270,\"face-unamused\":58271,\"face-viewfinder\":58111,\"face-vomit\":58272,\"face-weary\":58273,\"face-woozy\":58274,\"face-worried\":58275,\"face-zany\":58276,\"face-zipper\":58277,\"falafel\":58378,\"family-dress\":58113,\"family-pants\":58114,\"family\":58112,\"fan-table\":57348,\"fan\":63587,\"farm\":63588,\"faucet-drip\":57350,\"faucet\":57349,\"fax\":61868,\"feather-pointed\":62827,\"feather\":62765,\"fence\":58115,\"ferris-wheel\":57716,\"ferry\":58602,\"field-hockey-stick-ball\":62540,\"file-arrow-down\":62829,\"file-arrow-up\":62836,\"file-audio\":61895,\"file-binary\":57717,\"file-cad\":58994,\"file-certificate\":62963,\"file-chart-column\":63065,\"file-chart-pie\":63066,\"file-check\":62230,\"file-circle-check\":58784,\"file-circle-exclamation\":58603,\"file-circle-info\":58515,\"file-circle-minus\":58605,\"file-circle-plus\":58516,\"file-circle-question\":58607,\"file-circle-xmark\":58785,\"file-code\":61897,\"file-contract\":62828,\"file-csv\":63197,\"file-dashed-line\":63607,\"file-doc\":58861,\"file-eps\":58948,\"file-excel\":61891,\"file-exclamation\":62234,\"file-export\":62830,\"file-fragment\":59031,\"file-gif\":58949,\"file-half-dashed\":59032,\"file-heart\":57718,\"file-image\":61893,\"file-import\":62831,\"file-invoice-dollar\":62833,\"file-invoice\":62832,\"file-jpg\":58950,\"file-lines\":61788,\"file-lock\":58278,\"file-magnifying-glass\":63589,\"file-medical\":62583,\"file-minus\":62232,\"file-mov\":58951,\"file-mp3\":58952,\"file-mp4\":58953,\"file-music\":63670,\"file-pdf\":61889,\"file-pen\":62236,\"file-plus-minus\":57719,\"file-plus\":62233,\"file-png\":58982,\"file-powerpoint\":61892,\"file-ppt\":58954,\"file-prescription\":62834,\"file-shield\":58608,\"file-signature\":62835,\"file-slash\":58279,\"file-spreadsheet\":63067,\"file-svg\":58955,\"file-user\":63068,\"file-vector\":58956,\"file-video\":61896,\"file-waveform\":62584,\"file-word\":61890,\"file-xls\":58957,\"file-xmark\":62231,\"file-xml\":58964,\"file-zip\":58862,\"file-zipper\":61894,\"file\":61787,\"files-medical\":63485,\"files\":57720,\"fill-drip\":62838,\"fill\":62837,\"film-canister\":63671,\"film-simple\":62368,\"film-slash\":57721,\"film\":61448,\"films\":57722,\"filter-circle-dollar\":63074,\"filter-circle-xmark\":57723,\"filter-list\":57724,\"filter-slash\":57725,\"filter\":61616,\"filters\":57726,\"fingerprint\":62839,\"fire-burner\":58609,\"fire-extinguisher\":61748,\"fire-flame-curved\":63460,\"fire-flame-simple\":62570,\"fire-flame\":63199,\"fire-hydrant\":57727,\"fire-smoke\":63307,\"fire\":61549,\"fireplace\":63386,\"fish-bones\":58116,\"fish-cooked\":63486,\"fish-fins\":58610,\"fish\":62840,\"fishing-rod\":58280,\"flag-checkered\":61726,\"flag-pennant\":62550,\"flag-swallowtail\":63308,\"flag-usa\":63309,\"flag\":61476,\"flashlight\":63672,\"flask-gear\":58865,\"flask-round-poison\":63200,\"flask-round-potion\":63201,\"flask-vial\":58611,\"flask\":61635,\"flatbread-stuffed\":58380,\"flatbread\":58379,\"floppy-disk-circle-arrow-right\":57728,\"floppy-disk-circle-xmark\":57729,\"floppy-disk-pen\":57730,\"floppy-disk\":61639,\"floppy-disks\":57731,\"florin-sign\":57732,\"flower-daffodil\":63488,\"flower-tulip\":63489,\"flower\":63487,\"flute\":63673,\"flux-capacitor\":63674,\"flying-disc\":58281,\"folder-arrow-down\":57427,\"folder-arrow-up\":57428,\"folder-bookmark\":57734,\"folder-check\":58958,\"folder-closed\":57733,\"folder-gear\":57735,\"folder-grid\":57736,\"folder-heart\":57737,\"folder-image\":57738,\"folder-magnifying-glass\":57739,\"folder-medical\":57740,\"folder-minus\":63069,\"folder-music\":57741,\"folder-open\":61564,\"folder-plus\":63070,\"folder-tree\":63490,\"folder-user\":57742,\"folder-xmark\":63071,\"folder\":61563,\"folders\":63072,\"fondue-pot\":58381,\"font-awesome\":62132,\"font-case\":63590,\"font\":61489,\"football-helmet\":62543,\"football\":62542,\"fork-knife\":62182,\"fork\":62179,\"forklift\":62586,\"fort\":58502,\"forward-fast\":61520,\"forward-step\":61521,\"forward\":61518,\"frame\":58517,\"franc-sign\":57743,\"french-fries\":63491,\"frog\":62766,\"function\":63073,\"futbol\":61923,\"g\":71,\"galaxy\":57352,\"gallery-thumbnails\":58282,\"game-board-simple\":63592,\"game-board\":63591,\"game-console-handheld-crank\":58809,\"game-console-handheld\":63675,\"gamepad-modern\":58786,\"gamepad\":61723,\"garage-car\":57354,\"garage-open\":57355,\"garage\":57353,\"garlic\":58382,\"gas-pump-slash\":62964,\"gas-pump\":62767,\"gauge-circle-bolt\":58518,\"gauge-circle-minus\":58519,\"gauge-circle-plus\":58520,\"gauge-high\":63013,\"gauge-low\":63015,\"gauge-max\":63014,\"gauge-min\":63016,\"gauge-simple-high\":63018,\"gauge-simple-low\":63020,\"gauge-simple-max\":63019,\"gauge-simple-min\":63021,\"gauge-simple\":63017,\"gauge\":63012,\"gavel\":61667,\"gear-code\":58856,\"gear-complex-code\":58859,\"gear-complex\":58857,\"gear\":61459,\"gears\":61573,\"gem\":62373,\"genderless\":61997,\"ghost\":63202,\"gif\":57744,\"gift-card\":63075,\"gift\":61547,\"gifts\":63388,\"gingerbread-man\":63389,\"glass-citrus\":63593,\"glass-empty\":57745,\"glass-half\":57746,\"glass-water-droplet\":58613,\"glass-water\":58612,\"glass\":63492,\"glasses-round\":62965,\"glasses\":62768,\"globe-pointer\":58894,\"globe-snow\":63395,\"globe-stand\":62966,\"globe-wifi\":59013,\"globe\":61612,\"goal-net\":58283,\"golf-ball-tee\":62544,\"golf-club\":62545,\"golf-flag-hole\":58284,\"gopuram\":63076,\"graduation-cap\":61853,\"gramophone\":63677,\"grapes\":58118,\"grate-droplet\":57748,\"grate\":57747,\"greater-than-equal\":62770,\"greater-than\":62,\"grid-2-plus\":57751,\"grid-2\":57750,\"grid-4\":57752,\"grid-5\":57753,\"grid-dividers\":58285,\"grid-horizontal\":58119,\"grid-round-2-plus\":58844,\"grid-round-2\":58843,\"grid-round-4\":58845,\"grid-round-5\":58846,\"grid-round\":58842,\"grid\":57749,\"grill-fire\":58788,\"grill-hot\":58789,\"grill\":58787,\"grip-dots-vertical\":58385,\"grip-dots\":58384,\"grip-lines-vertical\":63397,\"grip-lines\":63396,\"grip-vertical\":62862,\"grip\":62861,\"group-arrows-rotate\":58614,\"guarani-sign\":57754,\"guitar-electric\":63678,\"guitar\":63398,\"guitars\":63679,\"gun-slash\":57756,\"gun-squirt\":57757,\"gun\":57755,\"h\":72,\"h1\":62227,\"h2\":62228,\"h3\":62229,\"h4\":63594,\"h5\":58386,\"h6\":58387,\"hammer-brush\":58912,\"hammer-crash\":58388,\"hammer-war\":63204,\"hammer\":63203,\"hamsa\":63077,\"hand-back-fist\":62037,\"hand-back-point-down\":57758,\"hand-back-point-left\":57759,\"hand-back-point-ribbon\":57760,\"hand-back-point-right\":57761,\"hand-back-point-up\":57762,\"hand-dots\":62561,\"hand-fingers-crossed\":57763,\"hand-fist\":63198,\"hand-heart\":62652,\"hand-holding-box\":62587,\"hand-holding-circle-dollar\":58913,\"hand-holding-dollar\":62656,\"hand-holding-droplet\":62657,\"hand-holding-hand\":58615,\"hand-holding-heart\":62654,\"hand-holding-magic\":63205,\"hand-holding-medical\":57436,\"hand-holding-seedling\":62655,\"hand-holding-skull\":57764,\"hand-holding\":62653,\"hand-horns\":57769,\"hand-lizard\":62040,\"hand-love\":57765,\"hand-middle-finger\":63494,\"hand-peace\":62043,\"hand-point-down\":61607,\"hand-point-left\":61605,\"hand-point-ribbon\":57766,\"hand-point-right\":61604,\"hand-point-up\":61606,\"hand-pointer\":62042,\"hand-scissors\":62039,\"hand-sparkles\":57437,\"hand-spock\":62041,\"hand-wave\":57767,\"hand\":62038,\"handcuffs\":58616,\"hands-asl-interpreting\":62115,\"hands-bound\":58617,\"hands-bubbles\":57438,\"hands-clapping\":57768,\"hands-holding-child\":58618,\"hands-holding-circle\":58619,\"hands-holding-diamond\":62588,\"hands-holding-dollar\":62661,\"hands-holding-heart\":62659,\"hands-holding\":62658,\"hands-praying\":63108,\"hands\":62119,\"handshake-angle\":62660,\"handshake-simple-slash\":57439,\"handshake-simple\":62662,\"handshake-slash\":57440,\"handshake\":62133,\"hanukiah\":63206,\"hard-drive\":61600,\"hashtag-lock\":58389,\"hashtag\":35,\"hat-beach\":58886,\"hat-chef\":63595,\"hat-cowboy-side\":63681,\"hat-cowboy\":63680,\"hat-santa\":63399,\"hat-winter\":63400,\"hat-witch\":63207,\"hat-wizard\":63208,\"head-side-brain\":63496,\"head-side-cough-slash\":57442,\"head-side-cough\":57441,\"head-side-gear\":58897,\"head-side-goggles\":63210,\"head-side-headphones\":63682,\"head-side-heart\":57770,\"head-side-mask\":57443,\"head-side-medical\":63497,\"head-side-virus\":57444,\"head-side\":63209,\"heading\":61916,\"headphones-simple\":62863,\"headphones\":61477,\"headset\":62864,\"heart-circle-bolt\":58620,\"heart-circle-check\":58621,\"heart-circle-exclamation\":58622,\"heart-circle-minus\":58623,\"heart-circle-plus\":58624,\"heart-circle-xmark\":58625,\"heart-crack\":63401,\"heart-half-stroke\":57772,\"heart-half\":57771,\"heart-pulse\":61982,\"heart\":61444,\"heat\":57356,\"helicopter-symbol\":58626,\"helicopter\":62771,\"helmet-battle\":63211,\"helmet-safety\":63495,\"helmet-un\":58627,\"hexagon-check\":58390,\"hexagon-divide\":57773,\"hexagon-exclamation\":58391,\"hexagon-image\":58628,\"hexagon-minus\":62215,\"hexagon-nodes-bolt\":59034,\"hexagon-nodes\":59033,\"hexagon-plus\":62208,\"hexagon-vertical-nft-slanted\":58630,\"hexagon-vertical-nft\":58629,\"hexagon-xmark\":62190,\"hexagon\":62226,\"high-definition\":57774,\"highlighter-line\":57775,\"highlighter\":62865,\"hill-avalanche\":58631,\"hill-rockslide\":58632,\"hippo\":63213,\"hockey-mask\":63214,\"hockey-puck\":62547,\"hockey-stick-puck\":58286,\"hockey-sticks\":62548,\"holly-berry\":63402,\"honey-pot\":58392,\"hood-cloak\":63215,\"horizontal-rule\":63596,\"horse-head\":63403,\"horse-saddle\":63683,\"horse\":63216,\"hose-reel\":58394,\"hose\":58393,\"hospital-user\":63501,\"hospital\":61688,\"hospitals\":63502,\"hot-tub-person\":62867,\"hotdog\":63503,\"hotel\":62868,\"hourglass-clock\":58395,\"hourglass-end\":62035,\"hourglass-half\":62034,\"hourglass-start\":62033,\"hourglass\":62036,\"house-blank\":58503,\"house-building\":57777,\"house-chimney-blank\":58288,\"house-chimney-crack\":63217,\"house-chimney-heart\":57778,\"house-chimney-medical\":63474,\"house-chimney-user\":57445,\"house-chimney-window\":57357,\"house-chimney\":58287,\"house-circle-check\":58633,\"house-circle-exclamation\":58634,\"house-circle-xmark\":58635,\"house-crack\":58289,\"house-day\":57358,\"house-fire\":58636,\"house-flag\":58637,\"house-flood-water-circle-arrow-right\":58639,\"house-flood-water\":58638,\"house-heart\":62665,\"house-laptop\":57446,\"house-lock\":58640,\"house-medical-circle-check\":58641,\"house-medical-circle-exclamation\":58642,\"house-medical-circle-xmark\":58643,\"house-medical-flag\":58644,\"house-medical\":58290,\"house-night\":57360,\"house-person-leave\":57359,\"house-person-return\":57361,\"house-signal\":57362,\"house-tree\":57779,\"house-tsunami\":58645,\"house-turret\":57780,\"house-user\":57776,\"house-water\":63311,\"house-window\":58291,\"house\":61461,\"hryvnia-sign\":63218,\"hundred-points\":58396,\"hurricane\":63313,\"hydra\":59014,\"hyphen\":45,\"i-cursor\":62022,\"i\":73,\"ice-cream\":63504,\"ice-skate\":63404,\"icicles\":63405,\"icons\":63597,\"id-badge\":62145,\"id-card-clip\":62591,\"id-card\":62146,\"igloo\":63406,\"image-landscape\":57781,\"image-polaroid-user\":57782,\"image-polaroid\":63684,\"image-portrait\":62432,\"image-slash\":57783,\"image-user\":57784,\"image\":61502,\"images-user\":57785,\"images\":62210,\"inbox-full\":57786,\"inbox-in\":62224,\"inbox-out\":62225,\"inbox\":61468,\"inboxes\":57787,\"indent\":61500,\"indian-rupee-sign\":57788,\"industry-windows\":62387,\"industry\":62069,\"infinity\":62772,\"info\":61737,\"inhaler\":62969,\"input-numeric\":57789,\"input-pipe\":57790,\"input-text\":57791,\"integral\":63079,\"interrobang\":58810,\"intersection\":63080,\"island-tropical\":63505,\"italic\":61491,\"j\":74,\"jack-o-lantern\":62222,\"jar-wheat\":58647,\"jar\":58646,\"jedi\":63081,\"jet-fighter-up\":58648,\"jet-fighter\":61691,\"joint\":62869,\"joystick\":63685,\"jug-bottle\":58875,\"jug-detergent\":58649,\"jug\":63686,\"k\":75,\"kaaba\":63083,\"kazoo\":63687,\"kerning\":63599,\"key-skeleton-left-right\":58292,\"key-skeleton\":63219,\"key\":61572,\"keyboard-brightness-low\":57793,\"keyboard-brightness\":57792,\"keyboard-down\":57794,\"keyboard-left\":57795,\"keyboard\":61724,\"keynote\":63084,\"khanda\":63085,\"kidneys\":62971,\"kip-sign\":57796,\"kit-medical\":62585,\"kitchen-set\":58650,\"kite\":63220,\"kiwi-bird\":62773,\"kiwi-fruit\":58124,\"knife-kitchen\":63221,\"knife\":62180,\"l\":76,\"lacrosse-stick-ball\":58294,\"lacrosse-stick\":58293,\"lambda\":63086,\"lamp-desk\":57364,\"lamp-floor\":57365,\"lamp-street\":57797,\"lamp\":62666,\"land-mine-on\":58651,\"landmark-dome\":63314,\"landmark-flag\":58652,\"landmark-magnifying-glass\":58914,\"landmark\":63087,\"language\":61867,\"laptop-arrow-down\":57798,\"laptop-binary\":58855,\"laptop-code\":62972,\"laptop-file\":58653,\"laptop-medical\":63506,\"laptop-mobile\":63610,\"laptop-slash\":57799,\"laptop\":61705,\"lari-sign\":57800,\"lasso-sparkles\":57801,\"lasso\":63688,\"layer-group\":62973,\"layer-minus\":62974,\"layer-plus\":62975,\"leaf-heart\":62667,\"leaf-maple\":63222,\"leaf-oak\":63223,\"leaf\":61548,\"leafy-green\":58397,\"left-from-bracket\":58988,\"left-from-line\":62280,\"left-long-to-line\":58398,\"left-long\":62218,\"left-right\":62263,\"left-to-bracket\":58989,\"left-to-line\":62283,\"left\":62293,\"lemon\":61588,\"less-than-equal\":62775,\"less-than\":60,\"life-ring\":61901,\"light-ceiling\":57366,\"light-emergency-on\":58400,\"light-emergency\":58399,\"light-switch-off\":57368,\"light-switch-on\":57369,\"light-switch\":57367,\"lightbulb-cfl-on\":58791,\"lightbulb-cfl\":58790,\"lightbulb-dollar\":63088,\"lightbulb-exclamation-on\":57802,\"lightbulb-exclamation\":63089,\"lightbulb-gear\":58877,\"lightbulb-message\":59015,\"lightbulb-on\":63090,\"lightbulb-slash\":63091,\"lightbulb\":61675,\"lighthouse\":58898,\"lights-holiday\":63410,\"line-columns\":63600,\"line-height\":63601,\"lines-leaning\":58654,\"link-horizontal-slash\":57804,\"link-horizontal\":57803,\"link-simple-slash\":57806,\"link-simple\":57805,\"link-slash\":61735,\"link\":61633,\"lips\":62976,\"lira-sign\":61845,\"list-check\":61614,\"list-dropdown\":57807,\"list-music\":63689,\"list-ol\":61643,\"list-radio\":57808,\"list-timeline\":57809,\"list-tree\":57810,\"list-ul\":61642,\"list\":61498,\"litecoin-sign\":57811,\"loader\":57812,\"lobster\":58401,\"location-arrow-up\":58938,\"location-arrow\":61732,\"location-check\":62982,\"location-crosshairs-slash\":62979,\"location-crosshairs\":62977,\"location-dot-slash\":62981,\"location-dot\":62405,\"location-exclamation\":62984,\"location-minus\":62985,\"location-pen\":62983,\"location-pin-lock\":58655,\"location-pin-slash\":62988,\"location-pin\":61505,\"location-plus\":62986,\"location-question\":62987,\"location-smile\":62989,\"location-xmark\":62990,\"lock-a\":58402,\"lock-hashtag\":58403,\"lock-keyhole-open\":62402,\"lock-keyhole\":62221,\"lock-open\":62401,\"lock\":61475,\"locust\":58656,\"lollipop\":58404,\"loveseat\":62668,\"luchador-mask\":62549,\"lungs-virus\":57447,\"lungs\":62980,\"m\":77,\"mace\":63224,\"magnet\":61558,\"magnifying-glass-arrow-right\":58657,\"magnifying-glass-arrows-rotate\":58974,\"magnifying-glass-chart\":58658,\"magnifying-glass-dollar\":63112,\"magnifying-glass-location\":63113,\"magnifying-glass-minus\":61456,\"magnifying-glass-music\":58975,\"magnifying-glass-play\":58976,\"magnifying-glass-plus\":61454,\"magnifying-glass-waveform\":58977,\"magnifying-glass\":61442,\"mailbox-flag-up\":58811,\"mailbox\":63507,\"manat-sign\":57813,\"mandolin\":63225,\"mango\":58127,\"manhole\":57814,\"map-location-dot\":62880,\"map-location\":62879,\"map-pin\":62070,\"map\":62073,\"marker\":62881,\"mars-and-venus-burst\":58659,\"mars-and-venus\":61988,\"mars-double\":61991,\"mars-stroke-right\":61995,\"mars-stroke-up\":61994,\"mars-stroke\":61993,\"mars\":61986,\"martini-glass-citrus\":62817,\"martini-glass-empty\":61440,\"martini-glass\":62843,\"mask-face\":57815,\"mask-snorkel\":58295,\"mask-ventilator\":58660,\"mask\":63226,\"masks-theater\":63024,\"mattress-pillow\":58661,\"maximize\":62238,\"meat\":63508,\"medal\":62882,\"megaphone\":63093,\"melon-slice\":58129,\"melon\":58128,\"memo-circle-check\":57817,\"memo-circle-info\":58522,\"memo-pad\":57818,\"memo\":57816,\"memory\":62776,\"menorah\":63094,\"mercury\":61987,\"merge\":58662,\"message-arrow-down\":57819,\"message-arrow-up-right\":57821,\"message-arrow-up\":57820,\"message-bot\":58296,\"message-captions\":57822,\"message-check\":62626,\"message-code\":57823,\"message-dollar\":63056,\"message-dots\":62627,\"message-exclamation\":62629,\"message-heart\":58825,\"message-image\":57824,\"message-lines\":62630,\"message-medical\":63476,\"message-middle-top\":57826,\"message-middle\":57825,\"message-minus\":62631,\"message-music\":63663,\"message-pen\":62628,\"message-plus\":62632,\"message-question\":57827,\"message-quote\":57828,\"message-slash\":62633,\"message-smile\":62634,\"message-sms\":57829,\"message-text\":57830,\"message-xmark\":62635,\"message\":62074,\"messages-dollar\":63058,\"messages-question\":57831,\"messages\":62646,\"meteor\":63315,\"meter-bolt\":57833,\"meter-droplet\":57834,\"meter-fire\":57835,\"meter\":57832,\"microchip-ai\":57836,\"microchip\":62171,\"microphone-lines-slash\":62777,\"microphone-lines\":62409,\"microphone-slash\":61745,\"microphone-stand\":63691,\"microphone\":61744,\"microscope\":62992,\"microwave\":57371,\"mill-sign\":57837,\"minimize\":63372,\"minus\":61544,\"mistletoe\":63412,\"mitten\":63413,\"mobile-button\":61707,\"mobile-notch\":57838,\"mobile-retro\":58663,\"mobile-screen-button\":62413,\"mobile-screen\":62415,\"mobile-signal-out\":57840,\"mobile-signal\":57839,\"mobile\":62414,\"money-bill-1-wave\":62779,\"money-bill-1\":62417,\"money-bill-simple-wave\":57842,\"money-bill-simple\":57841,\"money-bill-transfer\":58664,\"money-bill-trend-up\":58665,\"money-bill-wave\":62778,\"money-bill-wheat\":58666,\"money-bill\":61654,\"money-bills-simple\":57844,\"money-bills\":57843,\"money-check-dollar-pen\":63603,\"money-check-dollar\":62781,\"money-check-pen\":63602,\"money-check\":62780,\"money-from-bracket\":58130,\"money-simple-from-bracket\":58131,\"monitor-waveform\":62993,\"monkey\":63227,\"monument\":62886,\"moon-cloud\":63316,\"moon-over-sun\":63306,\"moon-stars\":63317,\"moon\":61830,\"moped\":58297,\"mortar-pestle\":62887,\"mosque\":63096,\"mosquito-net\":58668,\"mosquito\":58667,\"motorcycle\":61980,\"mound\":58669,\"mountain-city\":58670,\"mountain-sun\":58671,\"mountain\":63228,\"mountains\":63229,\"mouse-field\":58792,\"mp3-player\":63694,\"mug-hot\":63414,\"mug-marshmallows\":63415,\"mug-saucer\":61684,\"mug-tea-saucer\":57845,\"mug-tea\":63605,\"mug\":63604,\"mushroom\":58405,\"music-magnifying-glass\":58978,\"music-note-slash\":63696,\"music-note\":63695,\"music-slash\":63697,\"music\":61441,\"mustache\":58812,\"n\":78,\"naira-sign\":57846,\"narwhal\":63230,\"nesting-dolls\":58298,\"network-wired\":63231,\"neuter\":61996,\"newspaper\":61930,\"nfc-lock\":57848,\"nfc-magnifying-glass\":57849,\"nfc-pen\":57850,\"nfc-signal\":57851,\"nfc-slash\":57852,\"nfc-symbol\":58673,\"nfc-trash\":57853,\"nfc\":57847,\"nose\":58813,\"not-equal\":62782,\"notdef\":57854,\"note-medical\":57856,\"note-sticky\":62025,\"note\":57855,\"notebook\":57857,\"notes-medical\":62593,\"notes\":57858,\"o\":79,\"object-exclude\":58524,\"object-group\":62023,\"object-intersect\":58525,\"object-subtract\":58526,\"object-ungroup\":62024,\"object-union\":58527,\"objects-align-bottom\":58299,\"objects-align-center-horizontal\":58300,\"objects-align-center-vertical\":58301,\"objects-align-left\":58302,\"objects-align-right\":58303,\"objects-align-top\":58304,\"objects-column\":58305,\"octagon-check\":58406,\"octagon-divide\":57859,\"octagon-exclamation\":57860,\"octagon-minus\":62216,\"octagon-plus\":62209,\"octagon-xmark\":62192,\"octagon\":62214,\"octopus\":59016,\"oil-can-drip\":57861,\"oil-can\":62995,\"oil-temperature\":62996,\"oil-well\":58674,\"olive-branch\":58135,\"olive\":58134,\"om\":63097,\"omega\":63098,\"onion\":58407,\"option\":58136,\"ornament\":63416,\"otter\":63232,\"outdent\":61499,\"outlet\":57372,\"oven\":57373,\"overline\":63606,\"p\":80,\"page-caret-down\":58409,\"page-caret-up\":58410,\"page\":58408,\"pager\":63509,\"paint-roller\":62890,\"paintbrush-fine\":62889,\"paintbrush-pencil\":57862,\"paintbrush\":61948,\"palette\":62783,\"pallet-box\":57864,\"pallet-boxes\":62595,\"pallet\":62594,\"pan-food\":58411,\"pan-frying\":58412,\"pancakes\":58413,\"panel-ews\":58414,\"panel-fire\":58415,\"panorama\":57865,\"paper-plane-top\":57866,\"paper-plane\":61912,\"paperclip-vertical\":58306,\"paperclip\":61638,\"parachute-box\":62669,\"paragraph-left\":63608,\"paragraph\":61917,\"party-bell\":58138,\"party-horn\":58139,\"passport\":62891,\"paste\":61674,\"pause\":61516,\"paw-claws\":63234,\"paw-simple\":63233,\"paw\":61872,\"peace\":63100,\"peach\":57867,\"peanut\":58416,\"peanuts\":58417,\"peapod\":58140,\"pear\":57868,\"pedestal\":57869,\"pegasus\":63235,\"pen-circle\":57870,\"pen-clip-slash\":57871,\"pen-clip\":62213,\"pen-fancy-slash\":57872,\"pen-fancy\":62892,\"pen-field\":57873,\"pen-line\":57874,\"pen-nib-slash\":58529,\"pen-nib\":62893,\"pen-paintbrush\":63000,\"pen-ruler\":62894,\"pen-slash\":57875,\"pen-swirl\":57876,\"pen-to-square\":61508,\"pen\":62212,\"pencil-mechanical\":58826,\"pencil-slash\":57877,\"pencil\":62211,\"people-arrows\":57448,\"people-carry-box\":62670,\"people-dress-simple\":57880,\"people-dress\":57879,\"people-group\":58675,\"people-line\":58676,\"people-pants-simple\":57882,\"people-pants\":57881,\"people-pulling\":58677,\"people-robbery\":58678,\"people-roof\":58679,\"people-simple\":57883,\"people\":57878,\"pepper-hot\":63510,\"pepper\":58418,\"percent\":37,\"period\":46,\"person-arrow-down-to-line\":58680,\"person-arrow-up-from-line\":58681,\"person-biking-mountain\":63563,\"person-biking\":63562,\"person-booth\":63318,\"person-breastfeeding\":58682,\"person-burst\":58683,\"person-cane\":58684,\"person-carry-box\":62671,\"person-chalkboard\":58685,\"person-circle-check\":58686,\"person-circle-exclamation\":58687,\"person-circle-minus\":58688,\"person-circle-plus\":58689,\"person-circle-question\":58690,\"person-circle-xmark\":58691,\"person-digging\":63582,\"person-dolly-empty\":62673,\"person-dolly\":62672,\"person-dots-from-line\":62576,\"person-dress-burst\":58692,\"person-dress-fairy\":58887,\"person-dress-simple\":57884,\"person-dress\":61826,\"person-drowning\":58693,\"person-fairy\":58888,\"person-falling-burst\":58695,\"person-falling\":58694,\"person-from-portal\":57379,\"person-half-dress\":58696,\"person-harassing\":58697,\"person-hiking\":63212,\"person-military-pointing\":58698,\"person-military-rifle\":58699,\"person-military-to-person\":58700,\"person-pinball\":57885,\"person-praying\":63107,\"person-pregnant\":58142,\"person-rays\":58701,\"person-rifle\":58702,\"person-running-fast\":58879,\"person-running\":63244,\"person-seat-reclined\":57887,\"person-seat\":57886,\"person-shelter\":58703,\"person-sign\":63319,\"person-simple\":57888,\"person-skating\":63429,\"person-ski-jumping\":63431,\"person-ski-lift\":63432,\"person-skiing-nordic\":63434,\"person-skiing\":63433,\"person-sledding\":63435,\"person-snowboarding\":63438,\"person-snowmobiling\":63441,\"person-swimming\":62916,\"person-through-window\":58793,\"person-to-door\":58419,\"person-to-portal\":57378,\"person-walking-arrow-loop-left\":58705,\"person-walking-arrow-right\":58706,\"person-walking-dashed-line-arrow-right\":58707,\"person-walking-luggage\":58708,\"person-walking-with-cane\":62109,\"person-walking\":62804,\"person\":61827,\"peseta-sign\":57889,\"peso-sign\":57890,\"phone-arrow-down-left\":57891,\"phone-arrow-right\":58814,\"phone-arrow-up-right\":57892,\"phone-flip\":63609,\"phone-hangup\":57893,\"phone-intercom\":58420,\"phone-missed\":57894,\"phone-office\":63101,\"phone-plus\":62674,\"phone-rotary\":63699,\"phone-slash\":62429,\"phone-volume\":62112,\"phone-xmark\":57895,\"phone\":61589,\"photo-film-music\":57896,\"photo-film\":63612,\"pi\":63102,\"piano-keyboard\":63701,\"piano\":63700,\"pickaxe\":58815,\"pickleball\":58421,\"pie\":63237,\"pig\":63238,\"piggy-bank\":62675,\"pills\":62596,\"pinata\":58307,\"pinball\":57897,\"pineapple\":58143,\"pipe-circle-check\":58422,\"pipe-collar\":58423,\"pipe-section\":58424,\"pipe-smoking\":58308,\"pipe-valve\":58425,\"pipe\":124,\"pizza-slice\":63512,\"pizza\":63511,\"place-of-worship\":63103,\"plane-arrival\":62895,\"plane-circle-check\":58709,\"plane-circle-exclamation\":58710,\"plane-circle-xmark\":58711,\"plane-departure\":62896,\"plane-engines\":62430,\"plane-lock\":58712,\"plane-prop\":57899,\"plane-slash\":57449,\"plane-tail\":57900,\"plane-up-slash\":57902,\"plane-up\":57901,\"plane\":61554,\"planet-moon\":57375,\"planet-ringed\":57376,\"plant-wilt\":58794,\"plate-utensils\":58427,\"plate-wheat\":58714,\"play-pause\":57903,\"play\":61515,\"plug-circle-bolt\":58715,\"plug-circle-check\":58716,\"plug-circle-exclamation\":58717,\"plug-circle-minus\":58718,\"plug-circle-plus\":58719,\"plug-circle-xmark\":58720,\"plug\":61926,\"plus-large\":58782,\"plus-minus\":58428,\"plus\":43,\"podcast\":62158,\"podium-star\":63320,\"podium\":63104,\"police-box\":57377,\"poll-people\":63321,\"pompebled\":58429,\"poo-storm\":63322,\"poo\":62206,\"pool-8-ball\":58309,\"poop\":63001,\"popcorn\":63513,\"popsicle\":58430,\"pot-food\":58431,\"potato\":58432,\"power-off\":61457,\"prescription-bottle-medical\":62598,\"prescription-bottle-pill\":58816,\"prescription-bottle\":62597,\"prescription\":62897,\"presentation-screen\":63109,\"pretzel\":58433,\"print-magnifying-glass\":63514,\"print-slash\":63110,\"print\":61487,\"projector\":63702,\"pump-medical\":57450,\"pump-soap\":57451,\"pump\":58434,\"pumpkin\":63239,\"puzzle-piece-simple\":57905,\"puzzle-piece\":61742,\"puzzle\":58435,\"q\":81,\"qrcode\":61481,\"question\":63,\"quote-left\":61709,\"quote-right\":61710,\"quotes\":57908,\"r\":82,\"rabbit-running\":63241,\"rabbit\":63240,\"raccoon\":58899,\"racquet\":62554,\"radar\":57380,\"radiation\":63417,\"radio-tuner\":63704,\"radio\":63703,\"rainbow\":63323,\"raindrops\":63324,\"ram\":63242,\"ramp-loading\":62676,\"ranking-star\":58721,\"raygun\":57381,\"receipt\":62787,\"record-vinyl\":63705,\"rectangle-ad\":63041,\"rectangle-barcode\":62563,\"rectangle-code\":58146,\"rectangle-history-circle-plus\":58531,\"rectangle-history-circle-user\":58532,\"rectangle-history\":58530,\"rectangle-list\":61474,\"rectangle-pro\":57909,\"rectangle-terminal\":57910,\"rectangle-vertical-history\":57911,\"rectangle-vertical\":62203,\"rectangle-wide\":62204,\"rectangle-xmark\":62480,\"rectangle\":62202,\"rectangles-mixed\":58147,\"recycle\":61880,\"reel\":57912,\"reflect-both\":58991,\"reflect-horizontal\":58980,\"reflect-vertical\":58981,\"refrigerator\":57382,\"registered\":62045,\"repeat-1\":62309,\"repeat\":62307,\"reply-all\":61730,\"reply-clock\":57913,\"reply\":62437,\"republican\":63326,\"restroom-simple\":57914,\"restroom\":63421,\"retweet\":61561,\"rhombus\":57915,\"ribbon\":62678,\"right-from-bracket\":62197,\"right-from-line\":62279,\"right-left-large\":58849,\"right-left\":62306,\"right-long-to-line\":58436,\"right-long\":62219,\"right-to-bracket\":62198,\"right-to-line\":62284,\"right\":62294,\"ring-diamond\":58795,\"ring\":63243,\"rings-wedding\":63515,\"road-barrier\":58722,\"road-bridge\":58723,\"road-circle-check\":58724,\"road-circle-exclamation\":58725,\"road-circle-xmark\":58726,\"road-lock\":58727,\"road-spikes\":58728,\"road\":61464,\"robot-astromech\":58066,\"robot\":62788,\"rocket-launch\":57383,\"rocket\":61749,\"roller-coaster\":58148,\"rotate-exclamation\":57916,\"rotate-left\":62186,\"rotate-reverse\":58929,\"rotate-right\":62201,\"rotate\":62193,\"route-highway\":63002,\"route-interstate\":63003,\"route\":62679,\"router\":63706,\"rss\":61598,\"ruble-sign\":61784,\"rug\":58729,\"rugby-ball\":58310,\"ruler-combined\":62790,\"ruler-horizontal\":62791,\"ruler-triangle\":63004,\"ruler-vertical\":62792,\"ruler\":62789,\"rupee-sign\":61782,\"rupiah-sign\":57917,\"rv\":63422,\"s\":83,\"sack-dollar\":63517,\"sack-xmark\":58730,\"sack\":63516,\"sailboat\":58437,\"salad\":63518,\"salt-shaker\":58438,\"sandwich\":63519,\"satellite-dish\":63424,\"satellite\":63423,\"sausage\":63520,\"saxophone-fire\":63707,\"saxophone\":63708,\"scale-balanced\":62030,\"scale-unbalanced-flip\":62742,\"scale-unbalanced\":62741,\"scalpel-line-dashed\":63006,\"scalpel\":63005,\"scanner-gun\":62600,\"scanner-image\":63731,\"scanner-keyboard\":62601,\"scanner-touchscreen\":62602,\"scarecrow\":63245,\"scarf\":63425,\"school-circle-check\":58731,\"school-circle-exclamation\":58732,\"school-circle-xmark\":58733,\"school-flag\":58734,\"school-lock\":58735,\"school\":62793,\"scissors\":61636,\"screen-users\":63037,\"screencast\":57918,\"screwdriver-wrench\":63449,\"screwdriver\":62794,\"scribble\":57919,\"scroll-old\":63247,\"scroll-torah\":63136,\"scroll\":63246,\"scrubber\":62200,\"scythe\":63248,\"sd-card\":63426,\"sd-cards\":57920,\"seal-exclamation\":57922,\"seal-question\":57923,\"seal\":57921,\"seat-airline\":57924,\"section\":58439,\"seedling\":62680,\"semicolon\":59,\"send-back\":63614,\"send-backward\":63615,\"sensor-cloud\":57388,\"sensor-fire\":57386,\"sensor-on\":57387,\"sensor-triangle-exclamation\":57385,\"sensor\":57384,\"server\":62003,\"shapes\":63007,\"share-all\":62311,\"share-from-square\":61773,\"share-nodes\":61920,\"share\":61540,\"sheep\":63249,\"sheet-plastic\":58737,\"shekel-sign\":61963,\"shelves-empty\":57926,\"shelves\":62592,\"shield-cat\":58738,\"shield-check\":62199,\"shield-cross\":63250,\"shield-dog\":58739,\"shield-exclamation\":57927,\"shield-halved\":62445,\"shield-heart\":58740,\"shield-keyhole\":57928,\"shield-minus\":57929,\"shield-plus\":57930,\"shield-quartered\":58741,\"shield-slash\":57931,\"shield-virus\":57452,\"shield-xmark\":57932,\"shield\":61746,\"ship\":61978,\"shirt-long-sleeve\":58311,\"shirt-running\":58312,\"shirt-tank-top\":58313,\"shirt\":62803,\"shish-kebab\":63521,\"shoe-prints\":62795,\"shop-lock\":58533,\"shop-slash\":57456,\"shop\":62799,\"shovel-snow\":63427,\"shovel\":63251,\"shower-down\":57933,\"shower\":62156,\"shredder\":63114,\"shrimp\":58440,\"shuffle\":61556,\"shutters\":58441,\"shuttle-space\":61847,\"shuttlecock\":62555,\"sickle\":63522,\"sidebar-flip\":57935,\"sidebar\":57934,\"sigma\":63115,\"sign-hanging\":62681,\"sign-post\":58916,\"sign-posts-wrench\":58918,\"sign-posts\":58917,\"signal-bars-fair\":63122,\"signal-bars-good\":63123,\"signal-bars-slash\":63124,\"signal-bars-weak\":63121,\"signal-bars\":63120,\"signal-fair\":63117,\"signal-good\":63118,\"signal-slash\":63125,\"signal-stream-slash\":57936,\"signal-stream\":63709,\"signal-strong\":63119,\"signal-weak\":63116,\"signal\":61458,\"signature-lock\":58314,\"signature-slash\":58315,\"signature\":62903,\"signs-post\":62071,\"sim-card\":63428,\"sim-cards\":57937,\"sink\":57453,\"siren-on\":57390,\"siren\":57389,\"sitemap\":61672,\"skeleton-ribs\":58827,\"skeleton\":63008,\"ski-boot-ski\":58317,\"ski-boot\":58316,\"skull-cow\":63710,\"skull-crossbones\":63252,\"skull\":62796,\"slash-back\":92,\"slash-forward\":47,\"slash\":63253,\"sleigh\":63436,\"slider\":57938,\"sliders-simple\":57939,\"sliders-up\":62449,\"sliders\":61918,\"slot-machine\":58318,\"smog\":63327,\"smoke\":63328,\"smoking\":62605,\"snake\":63254,\"snooze\":63616,\"snow-blowing\":63329,\"snowflake-droplets\":58817,\"snowflake\":62172,\"snowflakes\":63439,\"snowman-head\":63387,\"snowman\":63440,\"snowplow\":63442,\"soap\":57454,\"socks\":63126,\"soft-serve\":58368,\"solar-panel\":62906,\"solar-system\":57391,\"sort-down\":61661,\"sort-up\":61662,\"sort\":61660,\"spa\":62907,\"space-station-moon-construction\":57396,\"space-station-moon\":57395,\"spade\":62196,\"spaghetti-monster-flying\":63099,\"sparkle\":58838,\"sparkles\":63632,\"speaker\":63711,\"speakers\":63712,\"spell-check\":63633,\"spider-black-widow\":63256,\"spider-web\":63257,\"spider\":63255,\"spinner-scale\":58922,\"spinner-third\":62452,\"spinner\":61712,\"split\":57940,\"splotch\":62908,\"spoon\":62181,\"sportsball\":58443,\"spray-can-sparkles\":62928,\"spray-can\":62909,\"sprinkler-ceiling\":58444,\"sprinkler\":57397,\"square-0\":57941,\"square-1\":57942,\"square-2\":57943,\"square-3\":57944,\"square-4\":57945,\"square-5\":57946,\"square-6\":57947,\"square-7\":57948,\"square-8\":57949,\"square-9\":57950,\"square-a-lock\":58445,\"square-a\":57951,\"square-ampersand\":57952,\"square-arrow-down-left\":57953,\"square-arrow-down-right\":57954,\"square-arrow-down\":62265,\"square-arrow-left\":62266,\"square-arrow-right\":62267,\"square-arrow-up-left\":57955,\"square-arrow-up-right\":61772,\"square-arrow-up\":62268,\"square-b\":57956,\"square-binary\":59035,\"square-bolt\":57957,\"square-c\":57958,\"square-caret-down\":61776,\"square-caret-left\":61841,\"square-caret-right\":61778,\"square-caret-up\":61777,\"square-check\":61770,\"square-chevron-down\":62249,\"square-chevron-left\":62250,\"square-chevron-right\":62251,\"square-chevron-up\":62252,\"square-code\":57959,\"square-d\":57960,\"square-dashed-circle-plus\":58818,\"square-dashed\":57961,\"square-divide\":57962,\"square-dollar\":62185,\"square-down-left\":57963,\"square-down-right\":57964,\"square-down\":62288,\"square-e\":57965,\"square-ellipsis-vertical\":57967,\"square-ellipsis\":57966,\"square-envelope\":61849,\"square-exclamation\":62241,\"square-f\":57968,\"square-fragile\":62619,\"square-full\":62556,\"square-g\":57969,\"square-h\":61693,\"square-heart\":62664,\"square-i\":57970,\"square-info\":62223,\"square-j\":57971,\"square-k\":57972,\"square-kanban\":58504,\"square-l\":57973,\"square-left\":62289,\"square-list\":58505,\"square-m\":57974,\"square-minus\":61766,\"square-n\":57975,\"square-nfi\":58742,\"square-o\":57976,\"square-p\":57977,\"square-parking-slash\":62999,\"square-parking\":62784,\"square-pen\":61771,\"square-person-confined\":58743,\"square-phone-flip\":63611,\"square-phone-hangup\":57978,\"square-phone\":61592,\"square-plus\":61694,\"square-poll-horizontal\":63106,\"square-poll-vertical\":63105,\"square-q\":57979,\"square-quarters\":58446,\"square-question\":62205,\"square-quote\":58153,\"square-r\":57980,\"square-right\":62290,\"square-ring\":58447,\"square-root-variable\":63128,\"square-root\":63127,\"square-rss\":61763,\"square-s\":57981,\"square-share-nodes\":61921,\"square-sliders-vertical\":62450,\"square-sliders\":62448,\"square-small\":57982,\"square-star\":57983,\"square-t\":57984,\"square-terminal\":58154,\"square-this-way-up\":62623,\"square-u\":57985,\"square-up-left\":57986,\"square-up-right\":62304,\"square-up\":62291,\"square-user\":57987,\"square-v\":57988,\"square-virus\":58744,\"square-w\":57989,\"square-x\":57990,\"square-xmark\":62163,\"square-y\":57991,\"square-z\":57992,\"square\":61640,\"squid\":58448,\"squirrel\":63258,\"staff-snake\":58745,\"staff\":63259,\"stairs\":57993,\"stamp\":62911,\"standard-definition\":57994,\"stapler\":58799,\"star-and-crescent\":63129,\"star-christmas\":63444,\"star-exclamation\":62195,\"star-half-stroke\":62912,\"star-half\":61577,\"star-of-david\":63130,\"star-of-life\":63009,\"star-sharp-half-stroke\":57997,\"star-sharp-half\":57996,\"star-sharp\":57995,\"star-shooting\":57398,\"star\":61445,\"starfighter-twin-ion-engine-advanced\":57998,\"starfighter-twin-ion-engine\":57400,\"starfighter\":57399,\"stars\":63330,\"starship-freighter\":57402,\"starship\":57401,\"steak\":63524,\"steering-wheel\":63010,\"sterling-sign\":61780,\"stethoscope\":61681,\"stocking\":63445,\"stomach\":63011,\"stop\":61517,\"stopwatch-20\":57455,\"stopwatch\":62194,\"store-lock\":58534,\"store-slash\":57457,\"store\":62798,\"strawberry\":58155,\"street-view\":61981,\"stretcher\":63525,\"strikethrough\":61644,\"stroopwafel\":62801,\"subscript\":61740,\"subtitles-slash\":58896,\"subtitles\":58895,\"suitcase-medical\":61690,\"suitcase-rolling\":62913,\"suitcase\":61682,\"sun-bright\":57999,\"sun-cloud\":63331,\"sun-dust\":63332,\"sun-haze\":63333,\"sun-plant-wilt\":58746,\"sun\":61829,\"sunglasses\":63634,\"sunrise\":63334,\"sunset\":63335,\"superscript\":61739,\"sushi-roll\":58507,\"sushi\":58506,\"swap-arrows\":58890,\"swap\":58889,\"swatchbook\":62915,\"sword-laser-alt\":57404,\"sword-laser\":57403,\"sword\":63260,\"swords-laser\":57405,\"swords\":63261,\"symbols\":63598,\"synagogue\":63131,\"syringe\":62606,\"t-rex\":58921,\"t\":84,\"table-cells-column-lock\":59000,\"table-cells-column-unlock\":59024,\"table-cells-large\":61449,\"table-cells-lock\":59001,\"table-cells-row-lock\":59002,\"table-cells-row-unlock\":59025,\"table-cells-unlock\":59026,\"table-cells\":61450,\"table-columns\":61659,\"table-layout\":58000,\"table-list\":61451,\"table-picnic\":58157,\"table-pivot\":58001,\"table-rows\":58002,\"table-tennis-paddle-ball\":62557,\"table-tree\":58003,\"table\":61646,\"tablet-button\":61706,\"tablet-rugged\":62607,\"tablet-screen-button\":62458,\"tablet-screen\":62460,\"tablet\":62459,\"tablets\":62608,\"tachograph-digital\":62822,\"taco\":63526,\"tag\":61483,\"tags\":61484,\"tally-1\":58004,\"tally-2\":58005,\"tally-3\":58006,\"tally-4\":58007,\"tally\":63132,\"tamale\":58449,\"tank-water\":58450,\"tape\":62683,\"tarp-droplet\":58748,\"tarp\":58747,\"taxi-bus\":58008,\"taxi\":61882,\"teddy-bear\":58319,\"teeth-open\":63023,\"teeth\":63022,\"telescope\":57406,\"temperature-arrow-down\":57407,\"temperature-arrow-up\":57408,\"temperature-empty\":62155,\"temperature-full\":62151,\"temperature-half\":62153,\"temperature-high\":63337,\"temperature-list\":58009,\"temperature-low\":63339,\"temperature-quarter\":62154,\"temperature-snow\":63336,\"temperature-sun\":63338,\"temperature-three-quarters\":62152,\"tenge-sign\":63447,\"tennis-ball\":62558,\"tent-arrow-down-to-line\":58750,\"tent-arrow-left-right\":58751,\"tent-arrow-turn-left\":58752,\"tent-arrows-down\":58753,\"tent-double-peak\":58919,\"tent\":58749,\"tents\":58754,\"terminal\":61728,\"text-height\":61492,\"text-size\":63636,\"text-slash\":63613,\"text-width\":61493,\"text\":63635,\"thermometer\":62609,\"theta\":63134,\"thought-bubble\":58158,\"thumbs-down\":61797,\"thumbs-up\":61796,\"thumbtack-slash\":59023,\"thumbtack\":61581,\"tick\":58159,\"ticket-airline\":58010,\"ticket-perforated\":58942,\"ticket-simple\":62463,\"ticket\":61765,\"tickets-airline\":58011,\"tickets-perforated\":58943,\"tickets-simple\":58969,\"tickets\":58968,\"tilde\":126,\"timeline-arrow\":58013,\"timeline\":58012,\"timer\":58014,\"tire-flat\":63026,\"tire-pressure-warning\":63027,\"tire-rugged\":63028,\"tire\":63025,\"toggle-large-off\":58800,\"toggle-large-on\":58801,\"toggle-off\":61956,\"toggle-on\":61957,\"toilet-paper-blank-under\":58015,\"toilet-paper-blank\":63263,\"toilet-paper-check\":58802,\"toilet-paper-slash\":57458,\"toilet-paper-under-slash\":58017,\"toilet-paper-under\":58016,\"toilet-paper-xmark\":58803,\"toilet-paper\":63262,\"toilet-portable\":58755,\"toilet\":63448,\"toilets-portable\":58756,\"tomato\":58160,\"tombstone-blank\":63265,\"tombstone\":63264,\"toolbox\":62802,\"tooth\":62921,\"toothbrush\":63029,\"torii-gate\":63137,\"tornado\":63343,\"tower-broadcast\":62745,\"tower-cell\":58757,\"tower-control\":58018,\"tower-observation\":58758,\"tractor\":63266,\"trademark\":62044,\"traffic-cone\":63030,\"traffic-light-go\":63032,\"traffic-light-slow\":63033,\"traffic-light-stop\":63034,\"traffic-light\":63031,\"trailer\":57409,\"train-subway-tunnel\":58019,\"train-subway\":62009,\"train-track\":58451,\"train-tram\":58804,\"train-tunnel\":58452,\"train\":62008,\"transformer-bolt\":58020,\"transgender\":61989,\"transporter-1\":57411,\"transporter-2\":57412,\"transporter-3\":57413,\"transporter-4\":58021,\"transporter-5\":58022,\"transporter-6\":58023,\"transporter-7\":58024,\"transporter-empty\":57414,\"transporter\":57410,\"trash-arrow-up\":63529,\"trash-can-arrow-up\":63530,\"trash-can-check\":58025,\"trash-can-clock\":58026,\"trash-can-list\":58027,\"trash-can-plus\":58028,\"trash-can-slash\":58029,\"trash-can-undo\":63638,\"trash-can-xmark\":58030,\"trash-can\":62189,\"trash-check\":58031,\"trash-clock\":58032,\"trash-list\":58033,\"trash-plus\":58034,\"trash-slash\":58035,\"trash-undo\":63637,\"trash-xmark\":58036,\"trash\":61944,\"treasure-chest\":63267,\"tree-christmas\":63451,\"tree-city\":58759,\"tree-deciduous\":62464,\"tree-decorated\":63452,\"tree-large\":63453,\"tree-palm\":63531,\"tree\":61883,\"trees\":63268,\"triangle-exclamation\":61553,\"triangle-instrument\":63714,\"triangle-person-digging\":63581,\"triangle\":62188,\"tricycle-adult\":58820,\"tricycle\":58819,\"trillium\":58760,\"trophy-star\":62187,\"trophy\":61585,\"trowel-bricks\":58762,\"trowel\":58761,\"truck-arrow-right\":58763,\"truck-bolt\":58320,\"truck-clock\":62604,\"truck-container-empty\":58037,\"truck-container\":62684,\"truck-droplet\":58764,\"truck-fast\":62603,\"truck-field-un\":58766,\"truck-field\":58765,\"truck-fire\":58970,\"truck-flatbed\":58038,\"truck-front\":58039,\"truck-ladder\":58967,\"truck-medical\":61689,\"truck-monster\":63035,\"truck-moving\":62687,\"truck-pickup\":63036,\"truck-plane\":58767,\"truck-plow\":63454,\"truck-ramp-box\":62686,\"truck-ramp-couch\":62685,\"truck-ramp\":62688,\"truck-tow\":58040,\"truck-utensils\":58920,\"truck\":61649,\"trumpet\":63715,\"tty-answer\":58041,\"tty\":61924,\"tugrik-sign\":58042,\"turkey\":63269,\"turkish-lira-sign\":58043,\"turn-down-left\":58161,\"turn-down-right\":58453,\"turn-down\":62398,\"turn-left-down\":58935,\"turn-left-up\":58936,\"turn-left\":58934,\"turn-right\":58937,\"turn-up\":62399,\"turntable\":63716,\"turtle\":63270,\"tv-music\":63718,\"tv-retro\":62465,\"tv\":62060,\"typewriter\":63719,\"u\":85,\"ufo-beam\":57416,\"ufo\":57415,\"umbrella-beach\":62922,\"umbrella-simple\":58044,\"umbrella\":61673,\"underline\":61645,\"unicorn\":63271,\"uniform-martial-arts\":58321,\"union\":63138,\"universal-access\":62106,\"unlock-keyhole\":61758,\"unlock\":61596,\"up-down-left-right\":61618,\"up-down\":62264,\"up-from-bracket\":58768,\"up-from-dotted-line\":58454,\"up-from-line\":62278,\"up-left\":58045,\"up-long\":62220,\"up-right-and-down-left-from-center\":62500,\"up-right-from-square\":62301,\"up-right\":58046,\"up-to-bracket\":58990,\"up-to-dotted-line\":58455,\"up-to-line\":62285,\"up\":62295,\"upload\":61587,\"usb-drive\":63721,\"user-alien\":57418,\"user-astronaut\":62715,\"user-beard-bolt\":59017,\"user-bounty-hunter\":58047,\"user-check\":62716,\"user-chef\":58322,\"user-clock\":62717,\"user-cowboy\":63722,\"user-crown\":63140,\"user-doctor-hair-long\":58457,\"user-doctor-hair\":58456,\"user-doctor-message\":63534,\"user-doctor\":61680,\"user-gear\":62718,\"user-graduate\":62721,\"user-group-crown\":63141,\"user-group-simple\":58883,\"user-group\":62720,\"user-hair-buns\":58323,\"user-hair-long\":58459,\"user-hair-mullet\":58460,\"user-hair\":58458,\"user-headset\":63533,\"user-helmet-safety\":63532,\"user-hoodie\":59018,\"user-injured\":63272,\"user-large-slash\":62714,\"user-large\":62470,\"user-lock\":62722,\"user-magnifying-glass\":58821,\"user-minus\":62723,\"user-music\":63723,\"user-ninja\":62724,\"user-nurse-hair-long\":58462,\"user-nurse-hair\":58461,\"user-nurse\":63535,\"user-pen\":62719,\"user-pilot-tie\":58049,\"user-pilot\":58048,\"user-plus\":62004,\"user-police-tie\":58164,\"user-police\":58163,\"user-robot-xmarks\":58535,\"user-robot\":57419,\"user-secret\":61979,\"user-shakespeare\":58050,\"user-shield\":62725,\"user-slash\":62726,\"user-tag\":62727,\"user-tie-hair-long\":58464,\"user-tie-hair\":58463,\"user-tie\":62728,\"user-unlock\":57432,\"user-visor\":57420,\"user-vneck-hair-long\":58467,\"user-vneck-hair\":58466,\"user-vneck\":58465,\"user-xmark\":62005,\"user\":61447,\"users-between-lines\":58769,\"users-gear\":62729,\"users-line\":58770,\"users-medical\":63536,\"users-rays\":58771,\"users-rectangle\":58772,\"users-slash\":57459,\"users-viewfinder\":58773,\"users\":61632,\"utensils-slash\":58468,\"utensils\":62183,\"utility-pole-double\":58052,\"utility-pole\":58051,\"v\":86,\"vacuum-robot\":57422,\"vacuum\":57421,\"value-absolute\":63142,\"van-shuttle\":62902,\"vault\":58053,\"vector-circle\":58054,\"vector-polygon\":58055,\"vector-square\":62923,\"vent-damper\":58469,\"venus-double\":61990,\"venus-mars\":61992,\"venus\":61985,\"vest-patches\":57478,\"vest\":57477,\"vial-circle-check\":58774,\"vial-virus\":58775,\"vial\":62610,\"vials\":62611,\"video-arrow-down-left\":58056,\"video-arrow-up-right\":58057,\"video-plus\":62689,\"video-slash\":62690,\"video\":61501,\"vihara\":63143,\"violin\":63725,\"virus-covid-slash\":58537,\"virus-covid\":58536,\"virus-slash\":57461,\"virus\":57460,\"viruses\":57462,\"voicemail\":63639,\"volcano\":63344,\"volleyball\":62559,\"volume-high\":61480,\"volume-low\":61479,\"volume-off\":61478,\"volume-slash\":62178,\"volume-xmark\":63145,\"volume\":63144,\"vr-cardboard\":63273,\"w\":87,\"waffle\":58470,\"wagon-covered\":63726,\"walker\":63537,\"walkie-talkie\":63727,\"wallet\":62805,\"wand-magic-sparkles\":58058,\"wand-magic\":61648,\"wand-sparkles\":63275,\"wand\":63274,\"warehouse-full\":62613,\"warehouse\":62612,\"washing-machine\":63640,\"watch-apple\":58059,\"watch-calculator\":63728,\"watch-fitness\":63038,\"watch-smart\":58060,\"watch\":62177,\"water-arrow-down\":63348,\"water-arrow-up\":63349,\"water-ladder\":62917,\"water\":63347,\"watermelon-slice\":58167,\"wave-pulse\":62968,\"wave-sine\":63641,\"wave-square\":63550,\"wave-triangle\":63642,\"wave\":58971,\"waveform-lines\":63730,\"waveform\":63729,\"waves-sine\":58973,\"web-awesome\":59010,\"webhook\":58837,\"weight-hanging\":62925,\"weight-scale\":62614,\"whale\":63276,\"wheat-awn-circle-exclamation\":58776,\"wheat-awn-slash\":58168,\"wheat-awn\":58061,\"wheat-slash\":58169,\"wheat\":63277,\"wheelchair-move\":58062,\"wheelchair\":61843,\"whiskey-glass-ice\":63393,\"whiskey-glass\":63392,\"whistle\":62560,\"wifi-exclamation\":58063,\"wifi-fair\":63147,\"wifi-slash\":63148,\"wifi-weak\":63146,\"wifi\":61931,\"wind-turbine\":63643,\"wind-warning\":63350,\"wind\":63278,\"window-flip\":62479,\"window-frame-open\":57424,\"window-frame\":57423,\"window-maximize\":62160,\"window-minimize\":62161,\"window-restore\":62162,\"window\":62478,\"windsock\":63351,\"wine-bottle\":63279,\"wine-glass-crack\":62651,\"wine-glass-empty\":62926,\"wine-glass\":62691,\"won-sign\":61785,\"worm\":58777,\"wreath-laurel\":58834,\"wreath\":63458,\"wrench-simple\":58065,\"wrench\":61613,\"x-ray\":62615,\"x\":88,\"xmark-large\":58779,\"xmark-to-slot\":63345,\"xmark\":61453,\"xmarks-lines\":58778,\"y\":89,\"yen-sign\":61783,\"yin-yang\":63149,\"z\":90}"
  },
  {
    "path": "packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_solid.json",
    "content": "{\"0\":48,\"1\":49,\"2\":50,\"3\":51,\"4\":52,\"5\":53,\"6\":54,\"7\":55,\"8\":56,\"9\":57,\"00\":58471,\"360-degrees\":58076,\"a\":65,\"abacus\":63040,\"accent-grave\":96,\"acorn\":63150,\"address-book\":62137,\"address-card\":62139,\"air-conditioner\":63732,\"airplay\":57481,\"alarm-clock\":62286,\"alarm-exclamation\":63555,\"alarm-plus\":63556,\"alarm-snooze\":63557,\"album-circle-plus\":58508,\"album-circle-user\":58509,\"album-collection-circle-plus\":58510,\"album-collection-circle-user\":58511,\"album-collection\":63648,\"album\":63647,\"alicorn\":63152,\"alien-8bit\":63734,\"alien\":63733,\"align-center\":61495,\"align-justify\":61497,\"align-left\":61494,\"align-right\":61496,\"align-slash\":63558,\"alt\":57482,\"amp-guitar\":63649,\"ampersand\":38,\"anchor-circle-check\":58538,\"anchor-circle-exclamation\":58539,\"anchor-circle-xmark\":58540,\"anchor-lock\":58541,\"anchor\":61757,\"angel\":63353,\"angle-90\":57485,\"angle-down\":61703,\"angle-left\":61700,\"angle-right\":61701,\"angle-up\":61702,\"angle\":57484,\"angles-down\":61699,\"angles-left\":61696,\"angles-right\":61697,\"angles-up-down\":58893,\"angles-up\":61698,\"ankh\":63044,\"ant\":59008,\"apartment\":58472,\"aperture\":58079,\"apostrophe\":39,\"apple-core\":57487,\"apple-whole\":62929,\"archway\":62807,\"arrow-down-1-9\":61794,\"arrow-down-9-1\":63622,\"arrow-down-a-z\":61789,\"arrow-down-arrow-up\":63619,\"arrow-down-big-small\":63628,\"arrow-down-from-arc\":58900,\"arrow-down-from-bracket\":58983,\"arrow-down-from-dotted-line\":57488,\"arrow-down-from-line\":62277,\"arrow-down-left-and-arrow-up-right-to-center\":57490,\"arrow-down-left\":57489,\"arrow-down-long\":61813,\"arrow-down-right\":57491,\"arrow-down-short-wide\":63620,\"arrow-down-small-big\":63629,\"arrow-down-square-triangle\":63625,\"arrow-down-to-arc\":58542,\"arrow-down-to-bracket\":57492,\"arrow-down-to-dotted-line\":57493,\"arrow-down-to-line\":62269,\"arrow-down-to-square\":57494,\"arrow-down-triangle-square\":63624,\"arrow-down-up-across-line\":58543,\"arrow-down-up-lock\":58544,\"arrow-down-wide-short\":61792,\"arrow-down-z-a\":63617,\"arrow-down\":61539,\"arrow-left-from-arc\":58901,\"arrow-left-from-bracket\":58984,\"arrow-left-from-line\":62276,\"arrow-left-long-to-line\":58324,\"arrow-left-long\":61815,\"arrow-left-to-arc\":58902,\"arrow-left-to-bracket\":58985,\"arrow-left-to-line\":62270,\"arrow-left\":61536,\"arrow-pointer\":62021,\"arrow-progress\":58847,\"arrow-right-arrow-left\":61676,\"arrow-right-from-arc\":58545,\"arrow-right-from-bracket\":61579,\"arrow-right-from-line\":62275,\"arrow-right-long-to-line\":58325,\"arrow-right-long\":61816,\"arrow-right-to-arc\":58546,\"arrow-right-to-bracket\":61584,\"arrow-right-to-city\":58547,\"arrow-right-to-line\":62272,\"arrow-right\":61537,\"arrow-rotate-left\":61666,\"arrow-rotate-right\":61470,\"arrow-trend-down\":57495,\"arrow-trend-up\":57496,\"arrow-turn-down-left\":58081,\"arrow-turn-down-right\":58326,\"arrow-turn-down\":61769,\"arrow-turn-left-down\":58931,\"arrow-turn-left-up\":58932,\"arrow-turn-left\":58930,\"arrow-turn-right\":58933,\"arrow-turn-up\":61768,\"arrow-up-1-9\":61795,\"arrow-up-9-1\":63623,\"arrow-up-a-z\":61790,\"arrow-up-arrow-down\":57497,\"arrow-up-big-small\":63630,\"arrow-up-from-arc\":58548,\"arrow-up-from-bracket\":57498,\"arrow-up-from-dotted-line\":57499,\"arrow-up-from-ground-water\":58549,\"arrow-up-from-line\":62274,\"arrow-up-from-square\":57500,\"arrow-up-from-water-pump\":58550,\"arrow-up-left-from-circle\":57502,\"arrow-up-left\":57501,\"arrow-up-long\":61814,\"arrow-up-right-and-arrow-down-left-from-center\":57504,\"arrow-up-right-dots\":58551,\"arrow-up-right-from-square\":61582,\"arrow-up-right\":57503,\"arrow-up-short-wide\":63621,\"arrow-up-small-big\":63631,\"arrow-up-square-triangle\":63627,\"arrow-up-to-arc\":58903,\"arrow-up-to-bracket\":58986,\"arrow-up-to-dotted-line\":57505,\"arrow-up-to-line\":62273,\"arrow-up-triangle-square\":63626,\"arrow-up-wide-short\":61793,\"arrow-up-z-a\":63618,\"arrow-up\":61538,\"arrows-cross\":57506,\"arrows-down-to-line\":58552,\"arrows-down-to-people\":58553,\"arrows-from-dotted-line\":57507,\"arrows-from-line\":57508,\"arrows-left-right-to-line\":58554,\"arrows-left-right\":61566,\"arrows-maximize\":62237,\"arrows-minimize\":57509,\"arrows-repeat-1\":62310,\"arrows-repeat\":62308,\"arrows-retweet\":62305,\"arrows-rotate-reverse\":58928,\"arrows-rotate\":61473,\"arrows-spin\":58555,\"arrows-split-up-and-left\":58556,\"arrows-to-circle\":58557,\"arrows-to-dot\":58558,\"arrows-to-dotted-line\":57510,\"arrows-to-eye\":58559,\"arrows-to-line\":57511,\"arrows-turn-right\":58560,\"arrows-turn-to-dots\":58561,\"arrows-up-down-left-right\":61511,\"arrows-up-down\":61565,\"arrows-up-to-line\":58562,\"asterisk\":42,\"at\":64,\"atom-simple\":62931,\"atom\":62930,\"audio-description-slash\":57512,\"audio-description\":62110,\"austral-sign\":57513,\"avocado\":57514,\"award-simple\":57515,\"award\":62809,\"axe-battle\":63155,\"axe\":63154,\"b\":66,\"baby-carriage\":63357,\"baby\":63356,\"backpack\":62932,\"backward-fast\":61513,\"backward-step\":61512,\"backward\":61514,\"bacon\":63461,\"bacteria\":57433,\"bacterium\":57434,\"badge-check\":62262,\"badge-dollar\":63045,\"badge-percent\":63046,\"badge-sheriff\":63650,\"badge\":62261,\"badger-honey\":63156,\"badminton\":58170,\"bag-seedling\":58866,\"bag-shopping-minus\":58960,\"bag-shopping-plus\":58961,\"bag-shopping\":62096,\"bagel\":58327,\"bags-shopping\":63559,\"baguette\":58328,\"bahai\":63078,\"baht-sign\":57516,\"ball-pile\":63358,\"balloon\":58083,\"balloons\":58084,\"ballot-check\":63283,\"ballot\":63282,\"ban-bug\":63481,\"ban-parking\":62998,\"ban-smoking\":62797,\"ban\":61534,\"banana\":58085,\"bandage\":62562,\"bangladeshi-taka-sign\":58086,\"banjo\":63651,\"barcode-read\":62564,\"barcode-scan\":62565,\"barcode\":61482,\"bars-filter\":57517,\"bars-progress\":63528,\"bars-sort\":57518,\"bars-staggered\":62800,\"bars\":61641,\"baseball-bat-ball\":62514,\"baseball\":62515,\"basket-shopping-minus\":58962,\"basket-shopping-plus\":58963,\"basket-shopping-simple\":57519,\"basket-shopping\":62097,\"basketball-hoop\":62517,\"basketball\":62516,\"bat\":63157,\"bath\":62157,\"battery-bolt\":62326,\"battery-empty\":62020,\"battery-exclamation\":57520,\"battery-full\":62016,\"battery-half\":62018,\"battery-low\":57521,\"battery-quarter\":62019,\"battery-slash\":62327,\"battery-three-quarters\":62017,\"bed-bunk\":63736,\"bed-empty\":63737,\"bed-front\":63735,\"bed-pulse\":62599,\"bed\":62006,\"bee\":57522,\"beer-mug-empty\":61692,\"beer-mug\":57523,\"bell-concierge\":62818,\"bell-exclamation\":63560,\"bell-on\":63738,\"bell-plus\":63561,\"bell-ring\":58924,\"bell-school-slash\":62934,\"bell-school\":62933,\"bell-slash\":61942,\"bell\":61683,\"bells\":63359,\"bench-tree\":58087,\"bezier-curve\":62811,\"bicycle\":61958,\"billboard\":58829,\"bin-bottles-recycle\":58870,\"bin-bottles\":58869,\"bin-recycle\":58871,\"binary-circle-check\":58172,\"binary-lock\":58173,\"binary-slash\":58174,\"binary\":58171,\"binoculars\":61925,\"biohazard\":63360,\"bird\":58473,\"bitcoin-sign\":57524,\"blanket-fire\":58330,\"blanket\":62616,\"blender-phone\":63158,\"blender\":62743,\"blinds-open\":63740,\"blinds-raised\":63741,\"blinds\":63739,\"block-brick-fire\":58332,\"block-brick\":58331,\"block-question\":58333,\"block-quote\":57525,\"block\":58474,\"blog\":63361,\"blueberries\":58088,\"bluetooth\":62099,\"bold\":61490,\"bolt-auto\":57526,\"bolt-lightning\":57527,\"bolt-slash\":57528,\"bolt\":61671,\"bomb\":61922,\"bone-break\":62936,\"bone\":62935,\"bong\":62812,\"book-arrow-right\":57529,\"book-arrow-up\":57530,\"book-atlas\":62808,\"book-bible\":63047,\"book-blank\":62937,\"book-bookmark\":57531,\"book-circle-arrow-right\":57532,\"book-circle-arrow-up\":57533,\"book-copy\":57534,\"book-font\":57535,\"book-heart\":62617,\"book-journal-whills\":63082,\"book-medical\":63462,\"book-open-cover\":57536,\"book-open-reader\":62938,\"book-open\":62744,\"book-quran\":63111,\"book-section\":57537,\"book-skull\":63159,\"book-sparkles\":63160,\"book-tanakh\":63527,\"book-user\":63463,\"book\":61485,\"bookmark-slash\":57538,\"bookmark\":61486,\"books-medical\":63464,\"books\":62939,\"boombox\":63653,\"boot-heeled\":58175,\"boot\":63362,\"booth-curtain\":63284,\"border-all\":63564,\"border-bottom-right\":63572,\"border-bottom\":63565,\"border-center-h\":63644,\"border-center-v\":63645,\"border-inner\":63566,\"border-left\":63567,\"border-none\":63568,\"border-outer\":63569,\"border-right\":63570,\"border-top-left\":63571,\"border-top\":63573,\"bore-hole\":58563,\"bottle-baby\":58995,\"bottle-droplet\":58564,\"bottle-water\":58565,\"bow-arrow\":63161,\"bowl-chopsticks-noodles\":58090,\"bowl-chopsticks\":58089,\"bowl-food\":58566,\"bowl-hot\":63523,\"bowl-rice\":58091,\"bowl-scoop\":58334,\"bowl-scoops\":58335,\"bowl-soft-serve\":58475,\"bowl-spoon\":58336,\"bowling-ball-pin\":57539,\"bowling-ball\":62518,\"bowling-pins\":62519,\"box-archive\":61831,\"box-ballot\":63285,\"box-check\":62567,\"box-circle-check\":57540,\"box-dollar\":62624,\"box-heart\":62621,\"box-open-full\":62620,\"box-open\":62622,\"box-taped\":62618,\"box-tissue\":57435,\"box\":62566,\"boxes-packing\":58567,\"boxes-stacked\":62568,\"boxing-glove\":62520,\"bracket-curly-right\":125,\"bracket-curly\":123,\"bracket-round-right\":41,\"bracket-round\":40,\"bracket-square-right\":93,\"bracket-square\":91,\"brackets-curly\":63466,\"brackets-round\":57541,\"brackets-square\":63465,\"braille\":62113,\"brain-arrow-curved-right\":63095,\"brain-circuit\":57542,\"brain\":62940,\"brake-warning\":57543,\"brazilian-real-sign\":58476,\"bread-loaf\":63467,\"bread-slice-butter\":58337,\"bread-slice\":63468,\"bridge-circle-check\":58569,\"bridge-circle-exclamation\":58570,\"bridge-circle-xmark\":58571,\"bridge-lock\":58572,\"bridge-suspension\":58573,\"bridge-water\":58574,\"bridge\":58568,\"briefcase-arrow-right\":58098,\"briefcase-blank\":57544,\"briefcase-medical\":62569,\"briefcase\":61617,\"brightness-low\":57546,\"brightness\":57545,\"bring-forward\":63574,\"bring-front\":63575,\"broccoli\":58338,\"broom-ball\":62552,\"broom-wide\":58833,\"broom\":62746,\"browser\":62334,\"browsers\":57547,\"brush\":62813,\"bucket\":58575,\"bug-slash\":58512,\"bug\":61832,\"bugs\":58576,\"building-circle-arrow-right\":58577,\"building-circle-check\":58578,\"building-circle-exclamation\":58579,\"building-circle-xmark\":58580,\"building-columns\":61852,\"building-flag\":58581,\"building-lock\":58582,\"building-magnifying-glass\":58908,\"building-memo\":58910,\"building-ngo\":58583,\"building-shield\":58584,\"building-un\":58585,\"building-user\":58586,\"building-wheat\":58587,\"building\":61869,\"buildings\":57548,\"bulldozer\":58965,\"bullhorn\":61601,\"bullseye-arrow\":63048,\"bullseye-pointer\":63049,\"bullseye\":61760,\"buoy-mooring\":58806,\"buoy\":58805,\"burger-cheese\":63473,\"burger-fries\":57549,\"burger-glass\":57550,\"burger-lettuce\":58339,\"burger-soda\":63576,\"burger\":63493,\"burrito\":63469,\"burst\":58588,\"bus-school\":62941,\"bus-simple\":62814,\"bus\":61959,\"business-time\":63050,\"butter\":58340,\"c\":67,\"cabin\":58477,\"cabinet-filing\":63051,\"cable-car\":63450,\"cactus\":63655,\"caduceus\":59009,\"cake-candles\":61949,\"cake-slice\":58341,\"calculator-simple\":63052,\"calculator\":61932,\"calendar-arrow-down\":57552,\"calendar-arrow-up\":57553,\"calendar-check\":62068,\"calendar-circle-exclamation\":58478,\"calendar-circle-minus\":58479,\"calendar-circle-plus\":58480,\"calendar-circle-user\":58481,\"calendar-clock\":57554,\"calendar-day\":63363,\"calendar-days\":61555,\"calendar-exclamation\":62260,\"calendar-heart\":57555,\"calendar-image\":57556,\"calendar-lines-pen\":58482,\"calendar-lines\":57557,\"calendar-minus\":62066,\"calendar-pen\":62259,\"calendar-plus\":62065,\"calendar-range\":57558,\"calendar-star\":63286,\"calendar-users\":58850,\"calendar-week\":63364,\"calendar-xmark\":62067,\"calendar\":61747,\"calendars\":57559,\"camcorder\":63656,\"camera-cctv\":63660,\"camera-movie\":63657,\"camera-polaroid\":63658,\"camera-retro\":61571,\"camera-rotate\":57560,\"camera-security\":63742,\"camera-slash\":57561,\"camera-viewfinder\":57562,\"camera-web-slash\":63539,\"camera-web\":63538,\"camera\":61488,\"campfire\":63162,\"campground\":63163,\"can-food\":58342,\"candle-holder\":63164,\"candy-bar\":58344,\"candy-cane\":63366,\"candy-corn\":63165,\"candy\":58343,\"cannabis\":62815,\"cannon\":58946,\"capsules\":62571,\"car-battery\":62943,\"car-bolt\":58177,\"car-building\":63577,\"car-bump\":62944,\"car-burst\":62945,\"car-bus\":63578,\"car-circle-bolt\":58178,\"car-garage\":62946,\"car-mirrors\":58179,\"car-on\":58589,\"car-rear\":62942,\"car-side-bolt\":58180,\"car-side\":62948,\"car-tilt\":62949,\"car-tunnel\":58590,\"car-wash\":62950,\"car-wrench\":62947,\"car\":61881,\"caravan-simple\":57344,\"caravan\":63743,\"card-club\":58345,\"card-diamond\":58346,\"card-heart\":58347,\"card-spade\":58348,\"cards-blank\":58591,\"cards\":58349,\"caret-down\":61655,\"caret-left\":61657,\"caret-right\":61658,\"caret-up\":61656,\"carpool\":59036,\"carrot\":63367,\"cars\":63579,\"cart-arrow-down\":61976,\"cart-arrow-up\":58350,\"cart-circle-arrow-down\":58351,\"cart-circle-arrow-up\":58352,\"cart-circle-check\":58353,\"cart-circle-exclamation\":58354,\"cart-circle-plus\":58355,\"cart-circle-xmark\":58356,\"cart-flatbed-boxes\":62581,\"cart-flatbed-empty\":62582,\"cart-flatbed-suitcase\":62877,\"cart-flatbed\":62580,\"cart-minus\":57563,\"cart-plus\":61975,\"cart-shopping-fast\":57564,\"cart-shopping\":61562,\"cart-xmark\":57565,\"cash-register\":63368,\"cassette-betamax\":63652,\"cassette-tape\":63659,\"cassette-vhs\":63724,\"castle\":57566,\"cat-space\":57345,\"cat\":63166,\"cauldron\":63167,\"cedi-sign\":57567,\"cent-sign\":58357,\"certificate\":61603,\"chair-office\":63169,\"chair\":63168,\"chalkboard-user\":62748,\"chalkboard\":62747,\"champagne-glass\":63390,\"champagne-glasses\":63391,\"charging-station\":62951,\"chart-area\":61950,\"chart-bar\":61568,\"chart-bullet\":57569,\"chart-candlestick\":57570,\"chart-column\":57571,\"chart-diagram\":59029,\"chart-fft\":59038,\"chart-gantt\":57572,\"chart-kanban\":58959,\"chart-line-down\":63053,\"chart-line-up-down\":58839,\"chart-line-up\":57573,\"chart-line\":61953,\"chart-mixed-up-circle-currency\":58840,\"chart-mixed-up-circle-dollar\":58841,\"chart-mixed\":63043,\"chart-network\":63370,\"chart-pie-simple-circle-currency\":58884,\"chart-pie-simple-circle-dollar\":58885,\"chart-pie-simple\":63054,\"chart-pie\":61952,\"chart-pyramid\":57574,\"chart-radar\":57575,\"chart-scatter-3d\":57576,\"chart-scatter-bubble\":57577,\"chart-scatter\":63470,\"chart-simple-horizontal\":58484,\"chart-simple\":58483,\"chart-sine\":59037,\"chart-tree-map\":57578,\"chart-user\":63139,\"chart-waterfall\":57579,\"check-double\":62816,\"check-to-slot\":63346,\"check\":61452,\"cheese-swiss\":63472,\"cheese\":63471,\"cherries\":57580,\"chess-bishop-piece\":62523,\"chess-bishop\":62522,\"chess-board\":62524,\"chess-clock-flip\":62526,\"chess-clock\":62525,\"chess-king-piece\":62528,\"chess-king\":62527,\"chess-knight-piece\":62530,\"chess-knight\":62529,\"chess-pawn-piece\":62532,\"chess-pawn\":62531,\"chess-queen-piece\":62534,\"chess-queen\":62533,\"chess-rook-piece\":62536,\"chess-rook\":62535,\"chess\":62521,\"chestnut\":58358,\"chevron-down\":61560,\"chevron-left\":61523,\"chevron-right\":61524,\"chevron-up\":61559,\"chevrons-down\":62242,\"chevrons-left\":62243,\"chevrons-right\":62244,\"chevrons-up\":62245,\"chf-sign\":58882,\"child-combatant\":58592,\"child-dress\":58780,\"child-reaching\":58781,\"child\":61870,\"children\":58593,\"chimney\":63371,\"chopsticks\":58359,\"church\":62749,\"circle-0\":57581,\"circle-1\":57582,\"circle-2\":57583,\"circle-3\":57584,\"circle-4\":57585,\"circle-5\":57586,\"circle-6\":57587,\"circle-7\":57588,\"circle-8\":57589,\"circle-9\":57590,\"circle-a\":57591,\"circle-ampersand\":57592,\"circle-arrow-down-left\":57593,\"circle-arrow-down-right\":57594,\"circle-arrow-down\":61611,\"circle-arrow-left\":61608,\"circle-arrow-right\":61609,\"circle-arrow-up-left\":57595,\"circle-arrow-up-right\":57596,\"circle-arrow-up\":61610,\"circle-b\":57597,\"circle-bolt\":57598,\"circle-book-open\":57599,\"circle-bookmark\":57600,\"circle-c\":57601,\"circle-calendar\":57602,\"circle-camera\":57603,\"circle-caret-down\":62253,\"circle-caret-left\":62254,\"circle-caret-right\":62256,\"circle-caret-up\":62257,\"circle-check\":61528,\"circle-chevron-down\":61754,\"circle-chevron-left\":61751,\"circle-chevron-right\":61752,\"circle-chevron-up\":61753,\"circle-d\":57604,\"circle-dashed\":57605,\"circle-divide\":57606,\"circle-dollar-to-slot\":62649,\"circle-dollar\":62184,\"circle-dot\":61842,\"circle-down-left\":57607,\"circle-down-right\":57608,\"circle-down\":62296,\"circle-e\":57609,\"circle-ellipsis-vertical\":57611,\"circle-ellipsis\":57610,\"circle-envelope\":57612,\"circle-euro\":58830,\"circle-exclamation-check\":57613,\"circle-exclamation\":61546,\"circle-f\":57614,\"circle-g\":57615,\"circle-gf\":59007,\"circle-h\":62590,\"circle-half-stroke\":61506,\"circle-half\":57616,\"circle-heart\":62663,\"circle-i\":57617,\"circle-info\":61530,\"circle-j\":57618,\"circle-k\":57619,\"circle-l\":57620,\"circle-left\":62297,\"circle-location-arrow\":62978,\"circle-m\":57621,\"circle-microphone-lines\":57623,\"circle-microphone\":57622,\"circle-minus\":61526,\"circle-n\":57624,\"circle-nodes\":58594,\"circle-notch\":61902,\"circle-o\":57625,\"circle-p\":57626,\"circle-parking\":62997,\"circle-pause\":62091,\"circle-phone-flip\":57628,\"circle-phone-hangup\":57629,\"circle-phone\":57627,\"circle-play\":61764,\"circle-plus\":61525,\"circle-q\":57630,\"circle-quarter-stroke\":58835,\"circle-quarter\":57631,\"circle-quarters\":58360,\"circle-question\":61529,\"circle-r\":57632,\"circle-radiation\":63418,\"circle-right\":62298,\"circle-s\":57633,\"circle-small\":57634,\"circle-sort-down\":57393,\"circle-sort-up\":57394,\"circle-sort\":57392,\"circle-star\":57635,\"circle-sterling\":58831,\"circle-stop\":62093,\"circle-t\":57636,\"circle-three-quarters-stroke\":58836,\"circle-three-quarters\":57637,\"circle-trash\":57638,\"circle-u\":57639,\"circle-up-left\":57640,\"circle-up-right\":57641,\"circle-up\":62299,\"circle-user\":62141,\"circle-v\":57642,\"circle-video\":57643,\"circle-w\":57644,\"circle-waveform-lines\":57645,\"circle-wifi-circle-wifi\":59006,\"circle-wifi\":59005,\"circle-x\":57646,\"circle-xmark\":61527,\"circle-y\":57647,\"circle-yen\":58832,\"circle-z\":57648,\"circle\":61713,\"circles-overlap-3\":59041,\"circles-overlap\":58880,\"citrus-slice\":58101,\"citrus\":58100,\"city\":63055,\"clapperboard-play\":57650,\"clapperboard\":57649,\"clarinet\":63661,\"claw-marks\":63170,\"clipboard-check\":62572,\"clipboard-list-check\":63287,\"clipboard-list\":62573,\"clipboard-medical\":57651,\"clipboard-prescription\":62952,\"clipboard-question\":58595,\"clipboard-user\":63475,\"clipboard\":62248,\"clock-desk\":57652,\"clock-eight-thirty\":58182,\"clock-eight\":58181,\"clock-eleven-thirty\":58184,\"clock-eleven\":58183,\"clock-five-thirty\":58186,\"clock-five\":58185,\"clock-four-thirty\":58187,\"clock-nine-thirty\":58189,\"clock-nine\":58188,\"clock-one-thirty\":58191,\"clock-one\":58190,\"clock-rotate-left\":61914,\"clock-seven-thirty\":58193,\"clock-seven\":58192,\"clock-six-thirty\":58195,\"clock-six\":58194,\"clock-ten-thirty\":58197,\"clock-ten\":58196,\"clock-three-thirty\":58199,\"clock-three\":58198,\"clock-twelve-thirty\":58201,\"clock-twelve\":58200,\"clock-two-thirty\":58203,\"clock-two\":58202,\"clock\":61463,\"clone\":62029,\"closed-captioning-slash\":57653,\"closed-captioning\":61962,\"clothes-hanger\":57654,\"cloud-arrow-down\":61677,\"cloud-arrow-up\":61678,\"cloud-binary\":58881,\"cloud-bolt-moon\":63341,\"cloud-bolt-sun\":63342,\"cloud-bolt\":63340,\"cloud-check\":58204,\"cloud-drizzle\":63288,\"cloud-exclamation\":58513,\"cloud-fog\":63310,\"cloud-hail-mixed\":63290,\"cloud-hail\":63289,\"cloud-meatball\":63291,\"cloud-minus\":58205,\"cloud-moon-rain\":63292,\"cloud-moon\":63171,\"cloud-music\":63662,\"cloud-plus\":58206,\"cloud-question\":58514,\"cloud-rain\":63293,\"cloud-rainbow\":63294,\"cloud-showers-heavy\":63296,\"cloud-showers-water\":58596,\"cloud-showers\":63295,\"cloud-slash\":57655,\"cloud-sleet\":63297,\"cloud-snow\":63298,\"cloud-sun-rain\":63299,\"cloud-sun\":63172,\"cloud-word\":57656,\"cloud-xmark\":58207,\"cloud\":61634,\"clouds-moon\":63301,\"clouds-sun\":63302,\"clouds\":63300,\"clover\":57657,\"club\":62247,\"coconut\":58102,\"code-branch\":61734,\"code-commit\":62342,\"code-compare\":57658,\"code-fork\":57659,\"code-merge\":62343,\"code-pull-request-closed\":58361,\"code-pull-request-draft\":58362,\"code-pull-request\":57660,\"code-simple\":57661,\"code\":61729,\"coffee-bean\":57662,\"coffee-beans\":57663,\"coffee-pot\":57346,\"coffin-cross\":57425,\"coffin\":63174,\"coin-blank\":58363,\"coin-front\":58364,\"coin-vertical\":58365,\"coin\":63580,\"coins\":62750,\"colon-sign\":57664,\"colon\":58,\"columns-3\":58209,\"comet\":57347,\"comma\":44,\"command\":57666,\"comment-arrow-down\":57667,\"comment-arrow-up-right\":57669,\"comment-arrow-up\":57668,\"comment-captions\":57670,\"comment-check\":62636,\"comment-code\":57671,\"comment-dollar\":63057,\"comment-dots\":62637,\"comment-exclamation\":62639,\"comment-heart\":58824,\"comment-image\":57672,\"comment-lines\":62640,\"comment-medical\":63477,\"comment-middle-top\":57674,\"comment-middle\":57673,\"comment-minus\":62641,\"comment-music\":63664,\"comment-nodes\":59030,\"comment-pen\":62638,\"comment-plus\":62642,\"comment-question\":57675,\"comment-quote\":57676,\"comment-slash\":62643,\"comment-smile\":62644,\"comment-sms\":63437,\"comment-text\":57677,\"comment-xmark\":62645,\"comment\":61557,\"comments-dollar\":63059,\"comments-question-check\":57679,\"comments-question\":57678,\"comments\":61574,\"compact-disc\":62751,\"compass-drafting\":62824,\"compass-slash\":62953,\"compass\":61774,\"compress-wide\":62246,\"compress\":61542,\"computer-classic\":63665,\"computer-mouse-scrollwheel\":63693,\"computer-mouse\":63692,\"computer-speaker\":63666,\"computer\":58597,\"container-storage\":62647,\"conveyor-belt-arm\":58872,\"conveyor-belt-boxes\":62575,\"conveyor-belt-empty\":57680,\"conveyor-belt\":62574,\"cookie-bite\":62820,\"cookie\":62819,\"copy\":61637,\"copyright\":61945,\"corn\":63175,\"corner\":58366,\"couch\":62648,\"court-sport\":58947,\"cow\":63176,\"cowbell-circle-plus\":63668,\"cowbell\":63667,\"crab\":58367,\"crate-apple\":63153,\"crate-empty\":57681,\"credit-card-blank\":62345,\"credit-card-front\":62346,\"credit-card\":61597,\"cricket-bat-ball\":62537,\"croissant\":63478,\"crop-simple\":62821,\"crop\":61733,\"cross\":63060,\"crosshairs-simple\":58783,\"crosshairs\":61531,\"crow\":62752,\"crown\":62753,\"crutch\":63479,\"crutches\":63480,\"cruzeiro-sign\":57682,\"crystal-ball\":58210,\"cube\":61874,\"cubes-stacked\":58598,\"cubes\":61875,\"cucumber\":58369,\"cup-straw-swoosh\":58212,\"cup-straw\":58211,\"cup-togo\":63173,\"cupcake\":58370,\"curling-stone\":62538,\"custard\":58371,\"d\":68,\"dagger\":63179,\"dash\":58372,\"database\":61888,\"deer-rudolph\":63375,\"deer\":63374,\"delete-left\":62810,\"delete-right\":57684,\"democrat\":63303,\"desktop-arrow-down\":57685,\"desktop\":62352,\"dharmachakra\":63061,\"diagram-cells\":58485,\"diagram-lean-canvas\":57686,\"diagram-nested\":57687,\"diagram-next\":58486,\"diagram-predecessor\":58487,\"diagram-previous\":58488,\"diagram-project\":62786,\"diagram-sankey\":57688,\"diagram-subtask\":58489,\"diagram-successor\":58490,\"diagram-venn\":57690,\"dial-high\":57692,\"dial-low\":57693,\"dial-max\":57694,\"dial-med-low\":57696,\"dial-med\":57695,\"dial-min\":57697,\"dial-off\":57698,\"dial\":57691,\"diamond-exclamation\":58373,\"diamond-half-stroke\":58808,\"diamond-half\":58807,\"diamond-turn-right\":62955,\"diamond\":61977,\"diamonds-4\":59019,\"dice-d10\":63181,\"dice-d12\":63182,\"dice-d20\":63183,\"dice-d4\":63184,\"dice-d6\":63185,\"dice-d8\":63186,\"dice-five\":62755,\"dice-four\":62756,\"dice-one\":62757,\"dice-six\":62758,\"dice-three\":62759,\"dice-two\":62760,\"dice\":62754,\"dinosaur\":58878,\"diploma\":62954,\"disc-drive\":63669,\"disease\":63482,\"display-arrow-down\":57700,\"display-chart-up-circle-currency\":58853,\"display-chart-up-circle-dollar\":58854,\"display-chart-up\":58851,\"display-code\":57701,\"display-medical\":57702,\"display-slash\":58106,\"display\":57699,\"distribute-spacing-horizontal\":58213,\"distribute-spacing-vertical\":58214,\"ditto\":34,\"divide\":62761,\"dna\":62577,\"do-not-enter\":62956,\"dog-leashed\":63188,\"dog\":63187,\"dollar-sign\":36,\"dolly-empty\":62579,\"dolly\":62578,\"dolphin\":57704,\"dong-sign\":57705,\"donut\":58374,\"door-closed\":62762,\"door-open\":62763,\"dove\":62650,\"down-from-bracket\":58987,\"down-from-dotted-line\":58375,\"down-from-line\":62281,\"down-left-and-up-right-to-center\":62498,\"down-left\":57706,\"down-long\":62217,\"down-right\":57707,\"down-to-bracket\":58599,\"down-to-dotted-line\":58376,\"down-to-line\":62282,\"down\":62292,\"download\":61465,\"dragon\":63189,\"draw-circle\":62957,\"draw-polygon\":62958,\"draw-square\":62959,\"dreidel\":63378,\"drone-front\":63584,\"drone\":63583,\"droplet-degree\":63304,\"droplet-percent\":63312,\"droplet-slash\":62919,\"droplet\":61507,\"drum-steelpan\":62826,\"drum\":62825,\"drumstick-bite\":63191,\"drumstick\":63190,\"dryer-heat\":63586,\"dryer\":63585,\"duck\":63192,\"dumbbell\":62539,\"dumpster-fire\":63380,\"dumpster\":63379,\"dungeon\":63193,\"e\":69,\"ear-deaf\":62116,\"ear-listen\":62114,\"ear-muffs\":63381,\"ear\":62960,\"earth-africa\":62844,\"earth-americas\":62845,\"earth-asia\":62846,\"earth-europe\":63394,\"earth-oceania\":58491,\"eclipse\":63305,\"egg-fried\":63484,\"egg\":63483,\"eggplant\":57708,\"eject\":61522,\"elephant\":63194,\"elevator\":57709,\"ellipsis-stroke-vertical\":62364,\"ellipsis-stroke\":62363,\"ellipsis-vertical\":61762,\"ellipsis\":61761,\"empty-set\":63062,\"engine-warning\":62962,\"engine\":57710,\"envelope-circle-check\":58600,\"envelope-dot\":57711,\"envelope-open-dollar\":63063,\"envelope-open-text\":63064,\"envelope-open\":62134,\"envelope\":61664,\"envelopes-bulk\":63092,\"envelopes\":57712,\"equals\":61,\"eraser\":61741,\"escalator\":57713,\"ethernet\":63382,\"euro-sign\":61779,\"excavator\":58966,\"exclamation\":33,\"expand-wide\":62240,\"expand\":61541,\"explosion\":58601,\"eye-dropper-full\":57714,\"eye-dropper-half\":57715,\"eye-dropper\":61947,\"eye-evil\":63195,\"eye-low-vision\":62120,\"eye-slash\":61552,\"eye\":61550,\"eyes\":58215,\"f\":70,\"face-angry-horns\":58216,\"face-angry\":62806,\"face-anguished\":58217,\"face-anxious-sweat\":58218,\"face-astonished\":58219,\"face-awesome\":58377,\"face-beam-hand-over-mouth\":58492,\"face-clouds\":58493,\"face-confounded\":58220,\"face-confused\":58221,\"face-cowboy-hat\":58222,\"face-diagonal-mouth\":58494,\"face-disappointed\":58223,\"face-disguise\":58224,\"face-dizzy\":62823,\"face-dotted\":58495,\"face-downcast-sweat\":58225,\"face-drooling\":58226,\"face-exhaling\":58496,\"face-explode\":58110,\"face-expressionless\":58227,\"face-eyes-xmarks\":58228,\"face-fearful\":58229,\"face-flushed\":62841,\"face-frown-open\":62842,\"face-frown-slight\":58230,\"face-frown\":61721,\"face-glasses\":58231,\"face-grimace\":62847,\"face-grin-beam-sweat\":62851,\"face-grin-beam\":62850,\"face-grin-hearts\":62852,\"face-grin-squint-tears\":62854,\"face-grin-squint\":62853,\"face-grin-stars\":62855,\"face-grin-tears\":62856,\"face-grin-tongue-squint\":62858,\"face-grin-tongue-wink\":62859,\"face-grin-tongue\":62857,\"face-grin-wide\":62849,\"face-grin-wink\":62860,\"face-grin\":62848,\"face-hand-over-mouth\":58232,\"face-hand-peeking\":58497,\"face-hand-yawn\":58233,\"face-head-bandage\":58234,\"face-holding-back-tears\":58498,\"face-hushed\":58235,\"face-icicles\":58236,\"face-kiss-beam\":62871,\"face-kiss-closed-eyes\":58237,\"face-kiss-wink-heart\":62872,\"face-kiss\":62870,\"face-laugh-beam\":62874,\"face-laugh-squint\":62875,\"face-laugh-wink\":62876,\"face-laugh\":62873,\"face-lying\":58238,\"face-mask\":58239,\"face-meh-blank\":62884,\"face-meh\":61722,\"face-melting\":58499,\"face-monocle\":58240,\"face-nauseated\":58241,\"face-nose-steam\":58242,\"face-party\":58243,\"face-pensive\":58244,\"face-persevering\":58245,\"face-pleading\":58246,\"face-pouting\":58247,\"face-raised-eyebrow\":58248,\"face-relieved\":58249,\"face-rolling-eyes\":62885,\"face-sad-cry\":62899,\"face-sad-sweat\":58250,\"face-sad-tear\":62900,\"face-saluting\":58500,\"face-scream\":58251,\"face-shush\":58252,\"face-sleeping\":58253,\"face-sleepy\":58254,\"face-smile-beam\":62904,\"face-smile-halo\":58255,\"face-smile-hearts\":58256,\"face-smile-horns\":58257,\"face-smile-plus\":62905,\"face-smile-relaxed\":58258,\"face-smile-tear\":58259,\"face-smile-tongue\":58260,\"face-smile-upside-down\":58261,\"face-smile-wink\":62682,\"face-smile\":61720,\"face-smiling-hands\":58262,\"face-smirking\":58263,\"face-spiral-eyes\":58501,\"face-sunglasses\":58264,\"face-surprise\":62914,\"face-swear\":58265,\"face-thermometer\":58266,\"face-thinking\":58267,\"face-tired\":62920,\"face-tissue\":58268,\"face-tongue-money\":58269,\"face-tongue-sweat\":58270,\"face-unamused\":58271,\"face-viewfinder\":58111,\"face-vomit\":58272,\"face-weary\":58273,\"face-woozy\":58274,\"face-worried\":58275,\"face-zany\":58276,\"face-zipper\":58277,\"falafel\":58378,\"family-dress\":58113,\"family-pants\":58114,\"family\":58112,\"fan-table\":57348,\"fan\":63587,\"farm\":63588,\"faucet-drip\":57350,\"faucet\":57349,\"fax\":61868,\"feather-pointed\":62827,\"feather\":62765,\"fence\":58115,\"ferris-wheel\":57716,\"ferry\":58602,\"field-hockey-stick-ball\":62540,\"file-arrow-down\":62829,\"file-arrow-up\":62836,\"file-audio\":61895,\"file-binary\":57717,\"file-cad\":58994,\"file-certificate\":62963,\"file-chart-column\":63065,\"file-chart-pie\":63066,\"file-check\":62230,\"file-circle-check\":58784,\"file-circle-exclamation\":58603,\"file-circle-info\":58515,\"file-circle-minus\":58605,\"file-circle-plus\":58516,\"file-circle-question\":58607,\"file-circle-xmark\":58785,\"file-code\":61897,\"file-contract\":62828,\"file-csv\":63197,\"file-dashed-line\":63607,\"file-doc\":58861,\"file-eps\":58948,\"file-excel\":61891,\"file-exclamation\":62234,\"file-export\":62830,\"file-fragment\":59031,\"file-gif\":58949,\"file-half-dashed\":59032,\"file-heart\":57718,\"file-image\":61893,\"file-import\":62831,\"file-invoice-dollar\":62833,\"file-invoice\":62832,\"file-jpg\":58950,\"file-lines\":61788,\"file-lock\":58278,\"file-magnifying-glass\":63589,\"file-medical\":62583,\"file-minus\":62232,\"file-mov\":58951,\"file-mp3\":58952,\"file-mp4\":58953,\"file-music\":63670,\"file-pdf\":61889,\"file-pen\":62236,\"file-plus-minus\":57719,\"file-plus\":62233,\"file-png\":58982,\"file-powerpoint\":61892,\"file-ppt\":58954,\"file-prescription\":62834,\"file-shield\":58608,\"file-signature\":62835,\"file-slash\":58279,\"file-spreadsheet\":63067,\"file-svg\":58955,\"file-user\":63068,\"file-vector\":58956,\"file-video\":61896,\"file-waveform\":62584,\"file-word\":61890,\"file-xls\":58957,\"file-xmark\":62231,\"file-xml\":58964,\"file-zip\":58862,\"file-zipper\":61894,\"file\":61787,\"files-medical\":63485,\"files\":57720,\"fill-drip\":62838,\"fill\":62837,\"film-canister\":63671,\"film-simple\":62368,\"film-slash\":57721,\"film\":61448,\"films\":57722,\"filter-circle-dollar\":63074,\"filter-circle-xmark\":57723,\"filter-list\":57724,\"filter-slash\":57725,\"filter\":61616,\"filters\":57726,\"fingerprint\":62839,\"fire-burner\":58609,\"fire-extinguisher\":61748,\"fire-flame-curved\":63460,\"fire-flame-simple\":62570,\"fire-flame\":63199,\"fire-hydrant\":57727,\"fire-smoke\":63307,\"fire\":61549,\"fireplace\":63386,\"fish-bones\":58116,\"fish-cooked\":63486,\"fish-fins\":58610,\"fish\":62840,\"fishing-rod\":58280,\"flag-checkered\":61726,\"flag-pennant\":62550,\"flag-swallowtail\":63308,\"flag-usa\":63309,\"flag\":61476,\"flashlight\":63672,\"flask-gear\":58865,\"flask-round-poison\":63200,\"flask-round-potion\":63201,\"flask-vial\":58611,\"flask\":61635,\"flatbread-stuffed\":58380,\"flatbread\":58379,\"floppy-disk-circle-arrow-right\":57728,\"floppy-disk-circle-xmark\":57729,\"floppy-disk-pen\":57730,\"floppy-disk\":61639,\"floppy-disks\":57731,\"florin-sign\":57732,\"flower-daffodil\":63488,\"flower-tulip\":63489,\"flower\":63487,\"flute\":63673,\"flux-capacitor\":63674,\"flying-disc\":58281,\"folder-arrow-down\":57427,\"folder-arrow-up\":57428,\"folder-bookmark\":57734,\"folder-check\":58958,\"folder-closed\":57733,\"folder-gear\":57735,\"folder-grid\":57736,\"folder-heart\":57737,\"folder-image\":57738,\"folder-magnifying-glass\":57739,\"folder-medical\":57740,\"folder-minus\":63069,\"folder-music\":57741,\"folder-open\":61564,\"folder-plus\":63070,\"folder-tree\":63490,\"folder-user\":57742,\"folder-xmark\":63071,\"folder\":61563,\"folders\":63072,\"fondue-pot\":58381,\"font-awesome\":62132,\"font-case\":63590,\"font\":61489,\"football-helmet\":62543,\"football\":62542,\"fork-knife\":62182,\"fork\":62179,\"forklift\":62586,\"fort\":58502,\"forward-fast\":61520,\"forward-step\":61521,\"forward\":61518,\"frame\":58517,\"franc-sign\":57743,\"french-fries\":63491,\"frog\":62766,\"function\":63073,\"futbol\":61923,\"g\":71,\"galaxy\":57352,\"gallery-thumbnails\":58282,\"game-board-simple\":63592,\"game-board\":63591,\"game-console-handheld-crank\":58809,\"game-console-handheld\":63675,\"gamepad-modern\":58786,\"gamepad\":61723,\"garage-car\":57354,\"garage-open\":57355,\"garage\":57353,\"garlic\":58382,\"gas-pump-slash\":62964,\"gas-pump\":62767,\"gauge-circle-bolt\":58518,\"gauge-circle-minus\":58519,\"gauge-circle-plus\":58520,\"gauge-high\":63013,\"gauge-low\":63015,\"gauge-max\":63014,\"gauge-min\":63016,\"gauge-simple-high\":63018,\"gauge-simple-low\":63020,\"gauge-simple-max\":63019,\"gauge-simple-min\":63021,\"gauge-simple\":63017,\"gauge\":63012,\"gavel\":61667,\"gear-code\":58856,\"gear-complex-code\":58859,\"gear-complex\":58857,\"gear\":61459,\"gears\":61573,\"gem\":62373,\"genderless\":61997,\"ghost\":63202,\"gif\":57744,\"gift-card\":63075,\"gift\":61547,\"gifts\":63388,\"gingerbread-man\":63389,\"glass-citrus\":63593,\"glass-empty\":57745,\"glass-half\":57746,\"glass-water-droplet\":58613,\"glass-water\":58612,\"glass\":63492,\"glasses-round\":62965,\"glasses\":62768,\"globe-pointer\":58894,\"globe-snow\":63395,\"globe-stand\":62966,\"globe-wifi\":59013,\"globe\":61612,\"goal-net\":58283,\"golf-ball-tee\":62544,\"golf-club\":62545,\"golf-flag-hole\":58284,\"gopuram\":63076,\"graduation-cap\":61853,\"gramophone\":63677,\"grapes\":58118,\"grate-droplet\":57748,\"grate\":57747,\"greater-than-equal\":62770,\"greater-than\":62,\"grid-2-plus\":57751,\"grid-2\":57750,\"grid-4\":57752,\"grid-5\":57753,\"grid-dividers\":58285,\"grid-horizontal\":58119,\"grid-round-2-plus\":58844,\"grid-round-2\":58843,\"grid-round-4\":58845,\"grid-round-5\":58846,\"grid-round\":58842,\"grid\":57749,\"grill-fire\":58788,\"grill-hot\":58789,\"grill\":58787,\"grip-dots-vertical\":58385,\"grip-dots\":58384,\"grip-lines-vertical\":63397,\"grip-lines\":63396,\"grip-vertical\":62862,\"grip\":62861,\"group-arrows-rotate\":58614,\"guarani-sign\":57754,\"guitar-electric\":63678,\"guitar\":63398,\"guitars\":63679,\"gun-slash\":57756,\"gun-squirt\":57757,\"gun\":57755,\"h\":72,\"h1\":62227,\"h2\":62228,\"h3\":62229,\"h4\":63594,\"h5\":58386,\"h6\":58387,\"hammer-brush\":58912,\"hammer-crash\":58388,\"hammer-war\":63204,\"hammer\":63203,\"hamsa\":63077,\"hand-back-fist\":62037,\"hand-back-point-down\":57758,\"hand-back-point-left\":57759,\"hand-back-point-ribbon\":57760,\"hand-back-point-right\":57761,\"hand-back-point-up\":57762,\"hand-dots\":62561,\"hand-fingers-crossed\":57763,\"hand-fist\":63198,\"hand-heart\":62652,\"hand-holding-box\":62587,\"hand-holding-circle-dollar\":58913,\"hand-holding-dollar\":62656,\"hand-holding-droplet\":62657,\"hand-holding-hand\":58615,\"hand-holding-heart\":62654,\"hand-holding-magic\":63205,\"hand-holding-medical\":57436,\"hand-holding-seedling\":62655,\"hand-holding-skull\":57764,\"hand-holding\":62653,\"hand-horns\":57769,\"hand-lizard\":62040,\"hand-love\":57765,\"hand-middle-finger\":63494,\"hand-peace\":62043,\"hand-point-down\":61607,\"hand-point-left\":61605,\"hand-point-ribbon\":57766,\"hand-point-right\":61604,\"hand-point-up\":61606,\"hand-pointer\":62042,\"hand-scissors\":62039,\"hand-sparkles\":57437,\"hand-spock\":62041,\"hand-wave\":57767,\"hand\":62038,\"handcuffs\":58616,\"hands-asl-interpreting\":62115,\"hands-bound\":58617,\"hands-bubbles\":57438,\"hands-clapping\":57768,\"hands-holding-child\":58618,\"hands-holding-circle\":58619,\"hands-holding-diamond\":62588,\"hands-holding-dollar\":62661,\"hands-holding-heart\":62659,\"hands-holding\":62658,\"hands-praying\":63108,\"hands\":62119,\"handshake-angle\":62660,\"handshake-simple-slash\":57439,\"handshake-simple\":62662,\"handshake-slash\":57440,\"handshake\":62133,\"hanukiah\":63206,\"hard-drive\":61600,\"hashtag-lock\":58389,\"hashtag\":35,\"hat-beach\":58886,\"hat-chef\":63595,\"hat-cowboy-side\":63681,\"hat-cowboy\":63680,\"hat-santa\":63399,\"hat-winter\":63400,\"hat-witch\":63207,\"hat-wizard\":63208,\"head-side-brain\":63496,\"head-side-cough-slash\":57442,\"head-side-cough\":57441,\"head-side-gear\":58897,\"head-side-goggles\":63210,\"head-side-headphones\":63682,\"head-side-heart\":57770,\"head-side-mask\":57443,\"head-side-medical\":63497,\"head-side-virus\":57444,\"head-side\":63209,\"heading\":61916,\"headphones-simple\":62863,\"headphones\":61477,\"headset\":62864,\"heart-circle-bolt\":58620,\"heart-circle-check\":58621,\"heart-circle-exclamation\":58622,\"heart-circle-minus\":58623,\"heart-circle-plus\":58624,\"heart-circle-xmark\":58625,\"heart-crack\":63401,\"heart-half-stroke\":57772,\"heart-half\":57771,\"heart-pulse\":61982,\"heart\":61444,\"heat\":57356,\"helicopter-symbol\":58626,\"helicopter\":62771,\"helmet-battle\":63211,\"helmet-safety\":63495,\"helmet-un\":58627,\"hexagon-check\":58390,\"hexagon-divide\":57773,\"hexagon-exclamation\":58391,\"hexagon-image\":58628,\"hexagon-minus\":62215,\"hexagon-nodes-bolt\":59034,\"hexagon-nodes\":59033,\"hexagon-plus\":62208,\"hexagon-vertical-nft-slanted\":58630,\"hexagon-vertical-nft\":58629,\"hexagon-xmark\":62190,\"hexagon\":62226,\"high-definition\":57774,\"highlighter-line\":57775,\"highlighter\":62865,\"hill-avalanche\":58631,\"hill-rockslide\":58632,\"hippo\":63213,\"hockey-mask\":63214,\"hockey-puck\":62547,\"hockey-stick-puck\":58286,\"hockey-sticks\":62548,\"holly-berry\":63402,\"honey-pot\":58392,\"hood-cloak\":63215,\"horizontal-rule\":63596,\"horse-head\":63403,\"horse-saddle\":63683,\"horse\":63216,\"hose-reel\":58394,\"hose\":58393,\"hospital-user\":63501,\"hospital\":61688,\"hospitals\":63502,\"hot-tub-person\":62867,\"hotdog\":63503,\"hotel\":62868,\"hourglass-clock\":58395,\"hourglass-end\":62035,\"hourglass-half\":62034,\"hourglass-start\":62033,\"hourglass\":62036,\"house-blank\":58503,\"house-building\":57777,\"house-chimney-blank\":58288,\"house-chimney-crack\":63217,\"house-chimney-heart\":57778,\"house-chimney-medical\":63474,\"house-chimney-user\":57445,\"house-chimney-window\":57357,\"house-chimney\":58287,\"house-circle-check\":58633,\"house-circle-exclamation\":58634,\"house-circle-xmark\":58635,\"house-crack\":58289,\"house-day\":57358,\"house-fire\":58636,\"house-flag\":58637,\"house-flood-water-circle-arrow-right\":58639,\"house-flood-water\":58638,\"house-heart\":62665,\"house-laptop\":57446,\"house-lock\":58640,\"house-medical-circle-check\":58641,\"house-medical-circle-exclamation\":58642,\"house-medical-circle-xmark\":58643,\"house-medical-flag\":58644,\"house-medical\":58290,\"house-night\":57360,\"house-person-leave\":57359,\"house-person-return\":57361,\"house-signal\":57362,\"house-tree\":57779,\"house-tsunami\":58645,\"house-turret\":57780,\"house-user\":57776,\"house-water\":63311,\"house-window\":58291,\"house\":61461,\"hryvnia-sign\":63218,\"hundred-points\":58396,\"hurricane\":63313,\"hydra\":59014,\"hyphen\":45,\"i-cursor\":62022,\"i\":73,\"ice-cream\":63504,\"ice-skate\":63404,\"icicles\":63405,\"icons\":63597,\"id-badge\":62145,\"id-card-clip\":62591,\"id-card\":62146,\"igloo\":63406,\"image-landscape\":57781,\"image-polaroid-user\":57782,\"image-polaroid\":63684,\"image-portrait\":62432,\"image-slash\":57783,\"image-user\":57784,\"image\":61502,\"images-user\":57785,\"images\":62210,\"inbox-full\":57786,\"inbox-in\":62224,\"inbox-out\":62225,\"inbox\":61468,\"inboxes\":57787,\"indent\":61500,\"indian-rupee-sign\":57788,\"industry-windows\":62387,\"industry\":62069,\"infinity\":62772,\"info\":61737,\"inhaler\":62969,\"input-numeric\":57789,\"input-pipe\":57790,\"input-text\":57791,\"integral\":63079,\"interrobang\":58810,\"intersection\":63080,\"island-tropical\":63505,\"italic\":61491,\"j\":74,\"jack-o-lantern\":62222,\"jar-wheat\":58647,\"jar\":58646,\"jedi\":63081,\"jet-fighter-up\":58648,\"jet-fighter\":61691,\"joint\":62869,\"joystick\":63685,\"jug-bottle\":58875,\"jug-detergent\":58649,\"jug\":63686,\"k\":75,\"kaaba\":63083,\"kazoo\":63687,\"kerning\":63599,\"key-skeleton-left-right\":58292,\"key-skeleton\":63219,\"key\":61572,\"keyboard-brightness-low\":57793,\"keyboard-brightness\":57792,\"keyboard-down\":57794,\"keyboard-left\":57795,\"keyboard\":61724,\"keynote\":63084,\"khanda\":63085,\"kidneys\":62971,\"kip-sign\":57796,\"kit-medical\":62585,\"kitchen-set\":58650,\"kite\":63220,\"kiwi-bird\":62773,\"kiwi-fruit\":58124,\"knife-kitchen\":63221,\"knife\":62180,\"l\":76,\"lacrosse-stick-ball\":58294,\"lacrosse-stick\":58293,\"lambda\":63086,\"lamp-desk\":57364,\"lamp-floor\":57365,\"lamp-street\":57797,\"lamp\":62666,\"land-mine-on\":58651,\"landmark-dome\":63314,\"landmark-flag\":58652,\"landmark-magnifying-glass\":58914,\"landmark\":63087,\"language\":61867,\"laptop-arrow-down\":57798,\"laptop-binary\":58855,\"laptop-code\":62972,\"laptop-file\":58653,\"laptop-medical\":63506,\"laptop-mobile\":63610,\"laptop-slash\":57799,\"laptop\":61705,\"lari-sign\":57800,\"lasso-sparkles\":57801,\"lasso\":63688,\"layer-group\":62973,\"layer-minus\":62974,\"layer-plus\":62975,\"leaf-heart\":62667,\"leaf-maple\":63222,\"leaf-oak\":63223,\"leaf\":61548,\"leafy-green\":58397,\"left-from-bracket\":58988,\"left-from-line\":62280,\"left-long-to-line\":58398,\"left-long\":62218,\"left-right\":62263,\"left-to-bracket\":58989,\"left-to-line\":62283,\"left\":62293,\"lemon\":61588,\"less-than-equal\":62775,\"less-than\":60,\"life-ring\":61901,\"light-ceiling\":57366,\"light-emergency-on\":58400,\"light-emergency\":58399,\"light-switch-off\":57368,\"light-switch-on\":57369,\"light-switch\":57367,\"lightbulb-cfl-on\":58791,\"lightbulb-cfl\":58790,\"lightbulb-dollar\":63088,\"lightbulb-exclamation-on\":57802,\"lightbulb-exclamation\":63089,\"lightbulb-gear\":58877,\"lightbulb-message\":59015,\"lightbulb-on\":63090,\"lightbulb-slash\":63091,\"lightbulb\":61675,\"lighthouse\":58898,\"lights-holiday\":63410,\"line-columns\":63600,\"line-height\":63601,\"lines-leaning\":58654,\"link-horizontal-slash\":57804,\"link-horizontal\":57803,\"link-simple-slash\":57806,\"link-simple\":57805,\"link-slash\":61735,\"link\":61633,\"lips\":62976,\"lira-sign\":61845,\"list-check\":61614,\"list-dropdown\":57807,\"list-music\":63689,\"list-ol\":61643,\"list-radio\":57808,\"list-timeline\":57809,\"list-tree\":57810,\"list-ul\":61642,\"list\":61498,\"litecoin-sign\":57811,\"loader\":57812,\"lobster\":58401,\"location-arrow-up\":58938,\"location-arrow\":61732,\"location-check\":62982,\"location-crosshairs-slash\":62979,\"location-crosshairs\":62977,\"location-dot-slash\":62981,\"location-dot\":62405,\"location-exclamation\":62984,\"location-minus\":62985,\"location-pen\":62983,\"location-pin-lock\":58655,\"location-pin-slash\":62988,\"location-pin\":61505,\"location-plus\":62986,\"location-question\":62987,\"location-smile\":62989,\"location-xmark\":62990,\"lock-a\":58402,\"lock-hashtag\":58403,\"lock-keyhole-open\":62402,\"lock-keyhole\":62221,\"lock-open\":62401,\"lock\":61475,\"locust\":58656,\"lollipop\":58404,\"loveseat\":62668,\"luchador-mask\":62549,\"lungs-virus\":57447,\"lungs\":62980,\"m\":77,\"mace\":63224,\"magnet\":61558,\"magnifying-glass-arrow-right\":58657,\"magnifying-glass-arrows-rotate\":58974,\"magnifying-glass-chart\":58658,\"magnifying-glass-dollar\":63112,\"magnifying-glass-location\":63113,\"magnifying-glass-minus\":61456,\"magnifying-glass-music\":58975,\"magnifying-glass-play\":58976,\"magnifying-glass-plus\":61454,\"magnifying-glass-waveform\":58977,\"magnifying-glass\":61442,\"mailbox-flag-up\":58811,\"mailbox\":63507,\"manat-sign\":57813,\"mandolin\":63225,\"mango\":58127,\"manhole\":57814,\"map-location-dot\":62880,\"map-location\":62879,\"map-pin\":62070,\"map\":62073,\"marker\":62881,\"mars-and-venus-burst\":58659,\"mars-and-venus\":61988,\"mars-double\":61991,\"mars-stroke-right\":61995,\"mars-stroke-up\":61994,\"mars-stroke\":61993,\"mars\":61986,\"martini-glass-citrus\":62817,\"martini-glass-empty\":61440,\"martini-glass\":62843,\"mask-face\":57815,\"mask-snorkel\":58295,\"mask-ventilator\":58660,\"mask\":63226,\"masks-theater\":63024,\"mattress-pillow\":58661,\"maximize\":62238,\"meat\":63508,\"medal\":62882,\"megaphone\":63093,\"melon-slice\":58129,\"melon\":58128,\"memo-circle-check\":57817,\"memo-circle-info\":58522,\"memo-pad\":57818,\"memo\":57816,\"memory\":62776,\"menorah\":63094,\"mercury\":61987,\"merge\":58662,\"message-arrow-down\":57819,\"message-arrow-up-right\":57821,\"message-arrow-up\":57820,\"message-bot\":58296,\"message-captions\":57822,\"message-check\":62626,\"message-code\":57823,\"message-dollar\":63056,\"message-dots\":62627,\"message-exclamation\":62629,\"message-heart\":58825,\"message-image\":57824,\"message-lines\":62630,\"message-medical\":63476,\"message-middle-top\":57826,\"message-middle\":57825,\"message-minus\":62631,\"message-music\":63663,\"message-pen\":62628,\"message-plus\":62632,\"message-question\":57827,\"message-quote\":57828,\"message-slash\":62633,\"message-smile\":62634,\"message-sms\":57829,\"message-text\":57830,\"message-xmark\":62635,\"message\":62074,\"messages-dollar\":63058,\"messages-question\":57831,\"messages\":62646,\"meteor\":63315,\"meter-bolt\":57833,\"meter-droplet\":57834,\"meter-fire\":57835,\"meter\":57832,\"microchip-ai\":57836,\"microchip\":62171,\"microphone-lines-slash\":62777,\"microphone-lines\":62409,\"microphone-slash\":61745,\"microphone-stand\":63691,\"microphone\":61744,\"microscope\":62992,\"microwave\":57371,\"mill-sign\":57837,\"minimize\":63372,\"minus\":61544,\"mistletoe\":63412,\"mitten\":63413,\"mobile-button\":61707,\"mobile-notch\":57838,\"mobile-retro\":58663,\"mobile-screen-button\":62413,\"mobile-screen\":62415,\"mobile-signal-out\":57840,\"mobile-signal\":57839,\"mobile\":62414,\"money-bill-1-wave\":62779,\"money-bill-1\":62417,\"money-bill-simple-wave\":57842,\"money-bill-simple\":57841,\"money-bill-transfer\":58664,\"money-bill-trend-up\":58665,\"money-bill-wave\":62778,\"money-bill-wheat\":58666,\"money-bill\":61654,\"money-bills-simple\":57844,\"money-bills\":57843,\"money-check-dollar-pen\":63603,\"money-check-dollar\":62781,\"money-check-pen\":63602,\"money-check\":62780,\"money-from-bracket\":58130,\"money-simple-from-bracket\":58131,\"monitor-waveform\":62993,\"monkey\":63227,\"monument\":62886,\"moon-cloud\":63316,\"moon-over-sun\":63306,\"moon-stars\":63317,\"moon\":61830,\"moped\":58297,\"mortar-pestle\":62887,\"mosque\":63096,\"mosquito-net\":58668,\"mosquito\":58667,\"motorcycle\":61980,\"mound\":58669,\"mountain-city\":58670,\"mountain-sun\":58671,\"mountain\":63228,\"mountains\":63229,\"mouse-field\":58792,\"mp3-player\":63694,\"mug-hot\":63414,\"mug-marshmallows\":63415,\"mug-saucer\":61684,\"mug-tea-saucer\":57845,\"mug-tea\":63605,\"mug\":63604,\"mushroom\":58405,\"music-magnifying-glass\":58978,\"music-note-slash\":63696,\"music-note\":63695,\"music-slash\":63697,\"music\":61441,\"mustache\":58812,\"n\":78,\"naira-sign\":57846,\"narwhal\":63230,\"nesting-dolls\":58298,\"network-wired\":63231,\"neuter\":61996,\"newspaper\":61930,\"nfc-lock\":57848,\"nfc-magnifying-glass\":57849,\"nfc-pen\":57850,\"nfc-signal\":57851,\"nfc-slash\":57852,\"nfc-symbol\":58673,\"nfc-trash\":57853,\"nfc\":57847,\"nose\":58813,\"not-equal\":62782,\"notdef\":57854,\"note-medical\":57856,\"note-sticky\":62025,\"note\":57855,\"notebook\":57857,\"notes-medical\":62593,\"notes\":57858,\"o\":79,\"object-exclude\":58524,\"object-group\":62023,\"object-intersect\":58525,\"object-subtract\":58526,\"object-ungroup\":62024,\"object-union\":58527,\"objects-align-bottom\":58299,\"objects-align-center-horizontal\":58300,\"objects-align-center-vertical\":58301,\"objects-align-left\":58302,\"objects-align-right\":58303,\"objects-align-top\":58304,\"objects-column\":58305,\"octagon-check\":58406,\"octagon-divide\":57859,\"octagon-exclamation\":57860,\"octagon-minus\":62216,\"octagon-plus\":62209,\"octagon-xmark\":62192,\"octagon\":62214,\"octopus\":59016,\"oil-can-drip\":57861,\"oil-can\":62995,\"oil-temperature\":62996,\"oil-well\":58674,\"olive-branch\":58135,\"olive\":58134,\"om\":63097,\"omega\":63098,\"onion\":58407,\"option\":58136,\"ornament\":63416,\"otter\":63232,\"outdent\":61499,\"outlet\":57372,\"oven\":57373,\"overline\":63606,\"p\":80,\"page-caret-down\":58409,\"page-caret-up\":58410,\"page\":58408,\"pager\":63509,\"paint-roller\":62890,\"paintbrush-fine\":62889,\"paintbrush-pencil\":57862,\"paintbrush\":61948,\"palette\":62783,\"pallet-box\":57864,\"pallet-boxes\":62595,\"pallet\":62594,\"pan-food\":58411,\"pan-frying\":58412,\"pancakes\":58413,\"panel-ews\":58414,\"panel-fire\":58415,\"panorama\":57865,\"paper-plane-top\":57866,\"paper-plane\":61912,\"paperclip-vertical\":58306,\"paperclip\":61638,\"parachute-box\":62669,\"paragraph-left\":63608,\"paragraph\":61917,\"party-bell\":58138,\"party-horn\":58139,\"passport\":62891,\"paste\":61674,\"pause\":61516,\"paw-claws\":63234,\"paw-simple\":63233,\"paw\":61872,\"peace\":63100,\"peach\":57867,\"peanut\":58416,\"peanuts\":58417,\"peapod\":58140,\"pear\":57868,\"pedestal\":57869,\"pegasus\":63235,\"pen-circle\":57870,\"pen-clip-slash\":57871,\"pen-clip\":62213,\"pen-fancy-slash\":57872,\"pen-fancy\":62892,\"pen-field\":57873,\"pen-line\":57874,\"pen-nib-slash\":58529,\"pen-nib\":62893,\"pen-paintbrush\":63000,\"pen-ruler\":62894,\"pen-slash\":57875,\"pen-swirl\":57876,\"pen-to-square\":61508,\"pen\":62212,\"pencil-mechanical\":58826,\"pencil-slash\":57877,\"pencil\":62211,\"people-arrows\":57448,\"people-carry-box\":62670,\"people-dress-simple\":57880,\"people-dress\":57879,\"people-group\":58675,\"people-line\":58676,\"people-pants-simple\":57882,\"people-pants\":57881,\"people-pulling\":58677,\"people-robbery\":58678,\"people-roof\":58679,\"people-simple\":57883,\"people\":57878,\"pepper-hot\":63510,\"pepper\":58418,\"percent\":37,\"period\":46,\"person-arrow-down-to-line\":58680,\"person-arrow-up-from-line\":58681,\"person-biking-mountain\":63563,\"person-biking\":63562,\"person-booth\":63318,\"person-breastfeeding\":58682,\"person-burst\":58683,\"person-cane\":58684,\"person-carry-box\":62671,\"person-chalkboard\":58685,\"person-circle-check\":58686,\"person-circle-exclamation\":58687,\"person-circle-minus\":58688,\"person-circle-plus\":58689,\"person-circle-question\":58690,\"person-circle-xmark\":58691,\"person-digging\":63582,\"person-dolly-empty\":62673,\"person-dolly\":62672,\"person-dots-from-line\":62576,\"person-dress-burst\":58692,\"person-dress-fairy\":58887,\"person-dress-simple\":57884,\"person-dress\":61826,\"person-drowning\":58693,\"person-fairy\":58888,\"person-falling-burst\":58695,\"person-falling\":58694,\"person-from-portal\":57379,\"person-half-dress\":58696,\"person-harassing\":58697,\"person-hiking\":63212,\"person-military-pointing\":58698,\"person-military-rifle\":58699,\"person-military-to-person\":58700,\"person-pinball\":57885,\"person-praying\":63107,\"person-pregnant\":58142,\"person-rays\":58701,\"person-rifle\":58702,\"person-running-fast\":58879,\"person-running\":63244,\"person-seat-reclined\":57887,\"person-seat\":57886,\"person-shelter\":58703,\"person-sign\":63319,\"person-simple\":57888,\"person-skating\":63429,\"person-ski-jumping\":63431,\"person-ski-lift\":63432,\"person-skiing-nordic\":63434,\"person-skiing\":63433,\"person-sledding\":63435,\"person-snowboarding\":63438,\"person-snowmobiling\":63441,\"person-swimming\":62916,\"person-through-window\":58793,\"person-to-door\":58419,\"person-to-portal\":57378,\"person-walking-arrow-loop-left\":58705,\"person-walking-arrow-right\":58706,\"person-walking-dashed-line-arrow-right\":58707,\"person-walking-luggage\":58708,\"person-walking-with-cane\":62109,\"person-walking\":62804,\"person\":61827,\"peseta-sign\":57889,\"peso-sign\":57890,\"phone-arrow-down-left\":57891,\"phone-arrow-right\":58814,\"phone-arrow-up-right\":57892,\"phone-flip\":63609,\"phone-hangup\":57893,\"phone-intercom\":58420,\"phone-missed\":57894,\"phone-office\":63101,\"phone-plus\":62674,\"phone-rotary\":63699,\"phone-slash\":62429,\"phone-volume\":62112,\"phone-xmark\":57895,\"phone\":61589,\"photo-film-music\":57896,\"photo-film\":63612,\"pi\":63102,\"piano-keyboard\":63701,\"piano\":63700,\"pickaxe\":58815,\"pickleball\":58421,\"pie\":63237,\"pig\":63238,\"piggy-bank\":62675,\"pills\":62596,\"pinata\":58307,\"pinball\":57897,\"pineapple\":58143,\"pipe-circle-check\":58422,\"pipe-collar\":58423,\"pipe-section\":58424,\"pipe-smoking\":58308,\"pipe-valve\":58425,\"pipe\":124,\"pizza-slice\":63512,\"pizza\":63511,\"place-of-worship\":63103,\"plane-arrival\":62895,\"plane-circle-check\":58709,\"plane-circle-exclamation\":58710,\"plane-circle-xmark\":58711,\"plane-departure\":62896,\"plane-engines\":62430,\"plane-lock\":58712,\"plane-prop\":57899,\"plane-slash\":57449,\"plane-tail\":57900,\"plane-up-slash\":57902,\"plane-up\":57901,\"plane\":61554,\"planet-moon\":57375,\"planet-ringed\":57376,\"plant-wilt\":58794,\"plate-utensils\":58427,\"plate-wheat\":58714,\"play-pause\":57903,\"play\":61515,\"plug-circle-bolt\":58715,\"plug-circle-check\":58716,\"plug-circle-exclamation\":58717,\"plug-circle-minus\":58718,\"plug-circle-plus\":58719,\"plug-circle-xmark\":58720,\"plug\":61926,\"plus-large\":58782,\"plus-minus\":58428,\"plus\":43,\"podcast\":62158,\"podium-star\":63320,\"podium\":63104,\"police-box\":57377,\"poll-people\":63321,\"pompebled\":58429,\"poo-storm\":63322,\"poo\":62206,\"pool-8-ball\":58309,\"poop\":63001,\"popcorn\":63513,\"popsicle\":58430,\"pot-food\":58431,\"potato\":58432,\"power-off\":61457,\"prescription-bottle-medical\":62598,\"prescription-bottle-pill\":58816,\"prescription-bottle\":62597,\"prescription\":62897,\"presentation-screen\":63109,\"pretzel\":58433,\"print-magnifying-glass\":63514,\"print-slash\":63110,\"print\":61487,\"projector\":63702,\"pump-medical\":57450,\"pump-soap\":57451,\"pump\":58434,\"pumpkin\":63239,\"puzzle-piece-simple\":57905,\"puzzle-piece\":61742,\"puzzle\":58435,\"q\":81,\"qrcode\":61481,\"question\":63,\"quote-left\":61709,\"quote-right\":61710,\"quotes\":57908,\"r\":82,\"rabbit-running\":63241,\"rabbit\":63240,\"raccoon\":58899,\"racquet\":62554,\"radar\":57380,\"radiation\":63417,\"radio-tuner\":63704,\"radio\":63703,\"rainbow\":63323,\"raindrops\":63324,\"ram\":63242,\"ramp-loading\":62676,\"ranking-star\":58721,\"raygun\":57381,\"receipt\":62787,\"record-vinyl\":63705,\"rectangle-ad\":63041,\"rectangle-barcode\":62563,\"rectangle-code\":58146,\"rectangle-history-circle-plus\":58531,\"rectangle-history-circle-user\":58532,\"rectangle-history\":58530,\"rectangle-list\":61474,\"rectangle-pro\":57909,\"rectangle-terminal\":57910,\"rectangle-vertical-history\":57911,\"rectangle-vertical\":62203,\"rectangle-wide\":62204,\"rectangle-xmark\":62480,\"rectangle\":62202,\"rectangles-mixed\":58147,\"recycle\":61880,\"reel\":57912,\"reflect-both\":58991,\"reflect-horizontal\":58980,\"reflect-vertical\":58981,\"refrigerator\":57382,\"registered\":62045,\"repeat-1\":62309,\"repeat\":62307,\"reply-all\":61730,\"reply-clock\":57913,\"reply\":62437,\"republican\":63326,\"restroom-simple\":57914,\"restroom\":63421,\"retweet\":61561,\"rhombus\":57915,\"ribbon\":62678,\"right-from-bracket\":62197,\"right-from-line\":62279,\"right-left-large\":58849,\"right-left\":62306,\"right-long-to-line\":58436,\"right-long\":62219,\"right-to-bracket\":62198,\"right-to-line\":62284,\"right\":62294,\"ring-diamond\":58795,\"ring\":63243,\"rings-wedding\":63515,\"road-barrier\":58722,\"road-bridge\":58723,\"road-circle-check\":58724,\"road-circle-exclamation\":58725,\"road-circle-xmark\":58726,\"road-lock\":58727,\"road-spikes\":58728,\"road\":61464,\"robot-astromech\":58066,\"robot\":62788,\"rocket-launch\":57383,\"rocket\":61749,\"roller-coaster\":58148,\"rotate-exclamation\":57916,\"rotate-left\":62186,\"rotate-reverse\":58929,\"rotate-right\":62201,\"rotate\":62193,\"route-highway\":63002,\"route-interstate\":63003,\"route\":62679,\"router\":63706,\"rss\":61598,\"ruble-sign\":61784,\"rug\":58729,\"rugby-ball\":58310,\"ruler-combined\":62790,\"ruler-horizontal\":62791,\"ruler-triangle\":63004,\"ruler-vertical\":62792,\"ruler\":62789,\"rupee-sign\":61782,\"rupiah-sign\":57917,\"rv\":63422,\"s\":83,\"sack-dollar\":63517,\"sack-xmark\":58730,\"sack\":63516,\"sailboat\":58437,\"salad\":63518,\"salt-shaker\":58438,\"sandwich\":63519,\"satellite-dish\":63424,\"satellite\":63423,\"sausage\":63520,\"saxophone-fire\":63707,\"saxophone\":63708,\"scale-balanced\":62030,\"scale-unbalanced-flip\":62742,\"scale-unbalanced\":62741,\"scalpel-line-dashed\":63006,\"scalpel\":63005,\"scanner-gun\":62600,\"scanner-image\":63731,\"scanner-keyboard\":62601,\"scanner-touchscreen\":62602,\"scarecrow\":63245,\"scarf\":63425,\"school-circle-check\":58731,\"school-circle-exclamation\":58732,\"school-circle-xmark\":58733,\"school-flag\":58734,\"school-lock\":58735,\"school\":62793,\"scissors\":61636,\"screen-users\":63037,\"screencast\":57918,\"screwdriver-wrench\":63449,\"screwdriver\":62794,\"scribble\":57919,\"scroll-old\":63247,\"scroll-torah\":63136,\"scroll\":63246,\"scrubber\":62200,\"scythe\":63248,\"sd-card\":63426,\"sd-cards\":57920,\"seal-exclamation\":57922,\"seal-question\":57923,\"seal\":57921,\"seat-airline\":57924,\"section\":58439,\"seedling\":62680,\"semicolon\":59,\"send-back\":63614,\"send-backward\":63615,\"sensor-cloud\":57388,\"sensor-fire\":57386,\"sensor-on\":57387,\"sensor-triangle-exclamation\":57385,\"sensor\":57384,\"server\":62003,\"shapes\":63007,\"share-all\":62311,\"share-from-square\":61773,\"share-nodes\":61920,\"share\":61540,\"sheep\":63249,\"sheet-plastic\":58737,\"shekel-sign\":61963,\"shelves-empty\":57926,\"shelves\":62592,\"shield-cat\":58738,\"shield-check\":62199,\"shield-cross\":63250,\"shield-dog\":58739,\"shield-exclamation\":57927,\"shield-halved\":62445,\"shield-heart\":58740,\"shield-keyhole\":57928,\"shield-minus\":57929,\"shield-plus\":57930,\"shield-quartered\":58741,\"shield-slash\":57931,\"shield-virus\":57452,\"shield-xmark\":57932,\"shield\":61746,\"ship\":61978,\"shirt-long-sleeve\":58311,\"shirt-running\":58312,\"shirt-tank-top\":58313,\"shirt\":62803,\"shish-kebab\":63521,\"shoe-prints\":62795,\"shop-lock\":58533,\"shop-slash\":57456,\"shop\":62799,\"shovel-snow\":63427,\"shovel\":63251,\"shower-down\":57933,\"shower\":62156,\"shredder\":63114,\"shrimp\":58440,\"shuffle\":61556,\"shutters\":58441,\"shuttle-space\":61847,\"shuttlecock\":62555,\"sickle\":63522,\"sidebar-flip\":57935,\"sidebar\":57934,\"sigma\":63115,\"sign-hanging\":62681,\"sign-post\":58916,\"sign-posts-wrench\":58918,\"sign-posts\":58917,\"signal-bars-fair\":63122,\"signal-bars-good\":63123,\"signal-bars-slash\":63124,\"signal-bars-weak\":63121,\"signal-bars\":63120,\"signal-fair\":63117,\"signal-good\":63118,\"signal-slash\":63125,\"signal-stream-slash\":57936,\"signal-stream\":63709,\"signal-strong\":63119,\"signal-weak\":63116,\"signal\":61458,\"signature-lock\":58314,\"signature-slash\":58315,\"signature\":62903,\"signs-post\":62071,\"sim-card\":63428,\"sim-cards\":57937,\"sink\":57453,\"siren-on\":57390,\"siren\":57389,\"sitemap\":61672,\"skeleton-ribs\":58827,\"skeleton\":63008,\"ski-boot-ski\":58317,\"ski-boot\":58316,\"skull-cow\":63710,\"skull-crossbones\":63252,\"skull\":62796,\"slash-back\":92,\"slash-forward\":47,\"slash\":63253,\"sleigh\":63436,\"slider\":57938,\"sliders-simple\":57939,\"sliders-up\":62449,\"sliders\":61918,\"slot-machine\":58318,\"smog\":63327,\"smoke\":63328,\"smoking\":62605,\"snake\":63254,\"snooze\":63616,\"snow-blowing\":63329,\"snowflake-droplets\":58817,\"snowflake\":62172,\"snowflakes\":63439,\"snowman-head\":63387,\"snowman\":63440,\"snowplow\":63442,\"soap\":57454,\"socks\":63126,\"soft-serve\":58368,\"solar-panel\":62906,\"solar-system\":57391,\"sort-down\":61661,\"sort-up\":61662,\"sort\":61660,\"spa\":62907,\"space-station-moon-construction\":57396,\"space-station-moon\":57395,\"spade\":62196,\"spaghetti-monster-flying\":63099,\"sparkle\":58838,\"sparkles\":63632,\"speaker\":63711,\"speakers\":63712,\"spell-check\":63633,\"spider-black-widow\":63256,\"spider-web\":63257,\"spider\":63255,\"spinner-scale\":58922,\"spinner-third\":62452,\"spinner\":61712,\"split\":57940,\"splotch\":62908,\"spoon\":62181,\"sportsball\":58443,\"spray-can-sparkles\":62928,\"spray-can\":62909,\"sprinkler-ceiling\":58444,\"sprinkler\":57397,\"square-0\":57941,\"square-1\":57942,\"square-2\":57943,\"square-3\":57944,\"square-4\":57945,\"square-5\":57946,\"square-6\":57947,\"square-7\":57948,\"square-8\":57949,\"square-9\":57950,\"square-a-lock\":58445,\"square-a\":57951,\"square-ampersand\":57952,\"square-arrow-down-left\":57953,\"square-arrow-down-right\":57954,\"square-arrow-down\":62265,\"square-arrow-left\":62266,\"square-arrow-right\":62267,\"square-arrow-up-left\":57955,\"square-arrow-up-right\":61772,\"square-arrow-up\":62268,\"square-b\":57956,\"square-binary\":59035,\"square-bolt\":57957,\"square-c\":57958,\"square-caret-down\":61776,\"square-caret-left\":61841,\"square-caret-right\":61778,\"square-caret-up\":61777,\"square-check\":61770,\"square-chevron-down\":62249,\"square-chevron-left\":62250,\"square-chevron-right\":62251,\"square-chevron-up\":62252,\"square-code\":57959,\"square-d\":57960,\"square-dashed-circle-plus\":58818,\"square-dashed\":57961,\"square-divide\":57962,\"square-dollar\":62185,\"square-down-left\":57963,\"square-down-right\":57964,\"square-down\":62288,\"square-e\":57965,\"square-ellipsis-vertical\":57967,\"square-ellipsis\":57966,\"square-envelope\":61849,\"square-exclamation\":62241,\"square-f\":57968,\"square-fragile\":62619,\"square-full\":62556,\"square-g\":57969,\"square-h\":61693,\"square-heart\":62664,\"square-i\":57970,\"square-info\":62223,\"square-j\":57971,\"square-k\":57972,\"square-kanban\":58504,\"square-l\":57973,\"square-left\":62289,\"square-list\":58505,\"square-m\":57974,\"square-minus\":61766,\"square-n\":57975,\"square-nfi\":58742,\"square-o\":57976,\"square-p\":57977,\"square-parking-slash\":62999,\"square-parking\":62784,\"square-pen\":61771,\"square-person-confined\":58743,\"square-phone-flip\":63611,\"square-phone-hangup\":57978,\"square-phone\":61592,\"square-plus\":61694,\"square-poll-horizontal\":63106,\"square-poll-vertical\":63105,\"square-q\":57979,\"square-quarters\":58446,\"square-question\":62205,\"square-quote\":58153,\"square-r\":57980,\"square-right\":62290,\"square-ring\":58447,\"square-root-variable\":63128,\"square-root\":63127,\"square-rss\":61763,\"square-s\":57981,\"square-share-nodes\":61921,\"square-sliders-vertical\":62450,\"square-sliders\":62448,\"square-small\":57982,\"square-star\":57983,\"square-t\":57984,\"square-terminal\":58154,\"square-this-way-up\":62623,\"square-u\":57985,\"square-up-left\":57986,\"square-up-right\":62304,\"square-up\":62291,\"square-user\":57987,\"square-v\":57988,\"square-virus\":58744,\"square-w\":57989,\"square-x\":57990,\"square-xmark\":62163,\"square-y\":57991,\"square-z\":57992,\"square\":61640,\"squid\":58448,\"squirrel\":63258,\"staff-snake\":58745,\"staff\":63259,\"stairs\":57993,\"stamp\":62911,\"standard-definition\":57994,\"stapler\":58799,\"star-and-crescent\":63129,\"star-christmas\":63444,\"star-exclamation\":62195,\"star-half-stroke\":62912,\"star-half\":61577,\"star-of-david\":63130,\"star-of-life\":63009,\"star-sharp-half-stroke\":57997,\"star-sharp-half\":57996,\"star-sharp\":57995,\"star-shooting\":57398,\"star\":61445,\"starfighter-twin-ion-engine-advanced\":57998,\"starfighter-twin-ion-engine\":57400,\"starfighter\":57399,\"stars\":63330,\"starship-freighter\":57402,\"starship\":57401,\"steak\":63524,\"steering-wheel\":63010,\"sterling-sign\":61780,\"stethoscope\":61681,\"stocking\":63445,\"stomach\":63011,\"stop\":61517,\"stopwatch-20\":57455,\"stopwatch\":62194,\"store-lock\":58534,\"store-slash\":57457,\"store\":62798,\"strawberry\":58155,\"street-view\":61981,\"stretcher\":63525,\"strikethrough\":61644,\"stroopwafel\":62801,\"subscript\":61740,\"subtitles-slash\":58896,\"subtitles\":58895,\"suitcase-medical\":61690,\"suitcase-rolling\":62913,\"suitcase\":61682,\"sun-bright\":57999,\"sun-cloud\":63331,\"sun-dust\":63332,\"sun-haze\":63333,\"sun-plant-wilt\":58746,\"sun\":61829,\"sunglasses\":63634,\"sunrise\":63334,\"sunset\":63335,\"superscript\":61739,\"sushi-roll\":58507,\"sushi\":58506,\"swap-arrows\":58890,\"swap\":58889,\"swatchbook\":62915,\"sword-laser-alt\":57404,\"sword-laser\":57403,\"sword\":63260,\"swords-laser\":57405,\"swords\":63261,\"symbols\":63598,\"synagogue\":63131,\"syringe\":62606,\"t-rex\":58921,\"t\":84,\"table-cells-column-lock\":59000,\"table-cells-column-unlock\":59024,\"table-cells-large\":61449,\"table-cells-lock\":59001,\"table-cells-row-lock\":59002,\"table-cells-row-unlock\":59025,\"table-cells-unlock\":59026,\"table-cells\":61450,\"table-columns\":61659,\"table-layout\":58000,\"table-list\":61451,\"table-picnic\":58157,\"table-pivot\":58001,\"table-rows\":58002,\"table-tennis-paddle-ball\":62557,\"table-tree\":58003,\"table\":61646,\"tablet-button\":61706,\"tablet-rugged\":62607,\"tablet-screen-button\":62458,\"tablet-screen\":62460,\"tablet\":62459,\"tablets\":62608,\"tachograph-digital\":62822,\"taco\":63526,\"tag\":61483,\"tags\":61484,\"tally-1\":58004,\"tally-2\":58005,\"tally-3\":58006,\"tally-4\":58007,\"tally\":63132,\"tamale\":58449,\"tank-water\":58450,\"tape\":62683,\"tarp-droplet\":58748,\"tarp\":58747,\"taxi-bus\":58008,\"taxi\":61882,\"teddy-bear\":58319,\"teeth-open\":63023,\"teeth\":63022,\"telescope\":57406,\"temperature-arrow-down\":57407,\"temperature-arrow-up\":57408,\"temperature-empty\":62155,\"temperature-full\":62151,\"temperature-half\":62153,\"temperature-high\":63337,\"temperature-list\":58009,\"temperature-low\":63339,\"temperature-quarter\":62154,\"temperature-snow\":63336,\"temperature-sun\":63338,\"temperature-three-quarters\":62152,\"tenge-sign\":63447,\"tennis-ball\":62558,\"tent-arrow-down-to-line\":58750,\"tent-arrow-left-right\":58751,\"tent-arrow-turn-left\":58752,\"tent-arrows-down\":58753,\"tent-double-peak\":58919,\"tent\":58749,\"tents\":58754,\"terminal\":61728,\"text-height\":61492,\"text-size\":63636,\"text-slash\":63613,\"text-width\":61493,\"text\":63635,\"thermometer\":62609,\"theta\":63134,\"thought-bubble\":58158,\"thumbs-down\":61797,\"thumbs-up\":61796,\"thumbtack-slash\":59023,\"thumbtack\":61581,\"tick\":58159,\"ticket-airline\":58010,\"ticket-perforated\":58942,\"ticket-simple\":62463,\"ticket\":61765,\"tickets-airline\":58011,\"tickets-perforated\":58943,\"tickets-simple\":58969,\"tickets\":58968,\"tilde\":126,\"timeline-arrow\":58013,\"timeline\":58012,\"timer\":58014,\"tire-flat\":63026,\"tire-pressure-warning\":63027,\"tire-rugged\":63028,\"tire\":63025,\"toggle-large-off\":58800,\"toggle-large-on\":58801,\"toggle-off\":61956,\"toggle-on\":61957,\"toilet-paper-blank-under\":58015,\"toilet-paper-blank\":63263,\"toilet-paper-check\":58802,\"toilet-paper-slash\":57458,\"toilet-paper-under-slash\":58017,\"toilet-paper-under\":58016,\"toilet-paper-xmark\":58803,\"toilet-paper\":63262,\"toilet-portable\":58755,\"toilet\":63448,\"toilets-portable\":58756,\"tomato\":58160,\"tombstone-blank\":63265,\"tombstone\":63264,\"toolbox\":62802,\"tooth\":62921,\"toothbrush\":63029,\"torii-gate\":63137,\"tornado\":63343,\"tower-broadcast\":62745,\"tower-cell\":58757,\"tower-control\":58018,\"tower-observation\":58758,\"tractor\":63266,\"trademark\":62044,\"traffic-cone\":63030,\"traffic-light-go\":63032,\"traffic-light-slow\":63033,\"traffic-light-stop\":63034,\"traffic-light\":63031,\"trailer\":57409,\"train-subway-tunnel\":58019,\"train-subway\":62009,\"train-track\":58451,\"train-tram\":58804,\"train-tunnel\":58452,\"train\":62008,\"transformer-bolt\":58020,\"transgender\":61989,\"transporter-1\":57411,\"transporter-2\":57412,\"transporter-3\":57413,\"transporter-4\":58021,\"transporter-5\":58022,\"transporter-6\":58023,\"transporter-7\":58024,\"transporter-empty\":57414,\"transporter\":57410,\"trash-arrow-up\":63529,\"trash-can-arrow-up\":63530,\"trash-can-check\":58025,\"trash-can-clock\":58026,\"trash-can-list\":58027,\"trash-can-plus\":58028,\"trash-can-slash\":58029,\"trash-can-undo\":63638,\"trash-can-xmark\":58030,\"trash-can\":62189,\"trash-check\":58031,\"trash-clock\":58032,\"trash-list\":58033,\"trash-plus\":58034,\"trash-slash\":58035,\"trash-undo\":63637,\"trash-xmark\":58036,\"trash\":61944,\"treasure-chest\":63267,\"tree-christmas\":63451,\"tree-city\":58759,\"tree-deciduous\":62464,\"tree-decorated\":63452,\"tree-large\":63453,\"tree-palm\":63531,\"tree\":61883,\"trees\":63268,\"triangle-exclamation\":61553,\"triangle-instrument\":63714,\"triangle-person-digging\":63581,\"triangle\":62188,\"tricycle-adult\":58820,\"tricycle\":58819,\"trillium\":58760,\"trophy-star\":62187,\"trophy\":61585,\"trowel-bricks\":58762,\"trowel\":58761,\"truck-arrow-right\":58763,\"truck-bolt\":58320,\"truck-clock\":62604,\"truck-container-empty\":58037,\"truck-container\":62684,\"truck-droplet\":58764,\"truck-fast\":62603,\"truck-field-un\":58766,\"truck-field\":58765,\"truck-fire\":58970,\"truck-flatbed\":58038,\"truck-front\":58039,\"truck-ladder\":58967,\"truck-medical\":61689,\"truck-monster\":63035,\"truck-moving\":62687,\"truck-pickup\":63036,\"truck-plane\":58767,\"truck-plow\":63454,\"truck-ramp-box\":62686,\"truck-ramp-couch\":62685,\"truck-ramp\":62688,\"truck-tow\":58040,\"truck-utensils\":58920,\"truck\":61649,\"trumpet\":63715,\"tty-answer\":58041,\"tty\":61924,\"tugrik-sign\":58042,\"turkey\":63269,\"turkish-lira-sign\":58043,\"turn-down-left\":58161,\"turn-down-right\":58453,\"turn-down\":62398,\"turn-left-down\":58935,\"turn-left-up\":58936,\"turn-left\":58934,\"turn-right\":58937,\"turn-up\":62399,\"turntable\":63716,\"turtle\":63270,\"tv-music\":63718,\"tv-retro\":62465,\"tv\":62060,\"typewriter\":63719,\"u\":85,\"ufo-beam\":57416,\"ufo\":57415,\"umbrella-beach\":62922,\"umbrella-simple\":58044,\"umbrella\":61673,\"underline\":61645,\"unicorn\":63271,\"uniform-martial-arts\":58321,\"union\":63138,\"universal-access\":62106,\"unlock-keyhole\":61758,\"unlock\":61596,\"up-down-left-right\":61618,\"up-down\":62264,\"up-from-bracket\":58768,\"up-from-dotted-line\":58454,\"up-from-line\":62278,\"up-left\":58045,\"up-long\":62220,\"up-right-and-down-left-from-center\":62500,\"up-right-from-square\":62301,\"up-right\":58046,\"up-to-bracket\":58990,\"up-to-dotted-line\":58455,\"up-to-line\":62285,\"up\":62295,\"upload\":61587,\"usb-drive\":63721,\"user-alien\":57418,\"user-astronaut\":62715,\"user-beard-bolt\":59017,\"user-bounty-hunter\":58047,\"user-check\":62716,\"user-chef\":58322,\"user-clock\":62717,\"user-cowboy\":63722,\"user-crown\":63140,\"user-doctor-hair-long\":58457,\"user-doctor-hair\":58456,\"user-doctor-message\":63534,\"user-doctor\":61680,\"user-gear\":62718,\"user-graduate\":62721,\"user-group-crown\":63141,\"user-group-simple\":58883,\"user-group\":62720,\"user-hair-buns\":58323,\"user-hair-long\":58459,\"user-hair-mullet\":58460,\"user-hair\":58458,\"user-headset\":63533,\"user-helmet-safety\":63532,\"user-hoodie\":59018,\"user-injured\":63272,\"user-large-slash\":62714,\"user-large\":62470,\"user-lock\":62722,\"user-magnifying-glass\":58821,\"user-minus\":62723,\"user-music\":63723,\"user-ninja\":62724,\"user-nurse-hair-long\":58462,\"user-nurse-hair\":58461,\"user-nurse\":63535,\"user-pen\":62719,\"user-pilot-tie\":58049,\"user-pilot\":58048,\"user-plus\":62004,\"user-police-tie\":58164,\"user-police\":58163,\"user-robot-xmarks\":58535,\"user-robot\":57419,\"user-secret\":61979,\"user-shakespeare\":58050,\"user-shield\":62725,\"user-slash\":62726,\"user-tag\":62727,\"user-tie-hair-long\":58464,\"user-tie-hair\":58463,\"user-tie\":62728,\"user-unlock\":57432,\"user-visor\":57420,\"user-vneck-hair-long\":58467,\"user-vneck-hair\":58466,\"user-vneck\":58465,\"user-xmark\":62005,\"user\":61447,\"users-between-lines\":58769,\"users-gear\":62729,\"users-line\":58770,\"users-medical\":63536,\"users-rays\":58771,\"users-rectangle\":58772,\"users-slash\":57459,\"users-viewfinder\":58773,\"users\":61632,\"utensils-slash\":58468,\"utensils\":62183,\"utility-pole-double\":58052,\"utility-pole\":58051,\"v\":86,\"vacuum-robot\":57422,\"vacuum\":57421,\"value-absolute\":63142,\"van-shuttle\":62902,\"vault\":58053,\"vector-circle\":58054,\"vector-polygon\":58055,\"vector-square\":62923,\"vent-damper\":58469,\"venus-double\":61990,\"venus-mars\":61992,\"venus\":61985,\"vest-patches\":57478,\"vest\":57477,\"vial-circle-check\":58774,\"vial-virus\":58775,\"vial\":62610,\"vials\":62611,\"video-arrow-down-left\":58056,\"video-arrow-up-right\":58057,\"video-plus\":62689,\"video-slash\":62690,\"video\":61501,\"vihara\":63143,\"violin\":63725,\"virus-covid-slash\":58537,\"virus-covid\":58536,\"virus-slash\":57461,\"virus\":57460,\"viruses\":57462,\"voicemail\":63639,\"volcano\":63344,\"volleyball\":62559,\"volume-high\":61480,\"volume-low\":61479,\"volume-off\":61478,\"volume-slash\":62178,\"volume-xmark\":63145,\"volume\":63144,\"vr-cardboard\":63273,\"w\":87,\"waffle\":58470,\"wagon-covered\":63726,\"walker\":63537,\"walkie-talkie\":63727,\"wallet\":62805,\"wand-magic-sparkles\":58058,\"wand-magic\":61648,\"wand-sparkles\":63275,\"wand\":63274,\"warehouse-full\":62613,\"warehouse\":62612,\"washing-machine\":63640,\"watch-apple\":58059,\"watch-calculator\":63728,\"watch-fitness\":63038,\"watch-smart\":58060,\"watch\":62177,\"water-arrow-down\":63348,\"water-arrow-up\":63349,\"water-ladder\":62917,\"water\":63347,\"watermelon-slice\":58167,\"wave-pulse\":62968,\"wave-sine\":63641,\"wave-square\":63550,\"wave-triangle\":63642,\"wave\":58971,\"waveform-lines\":63730,\"waveform\":63729,\"waves-sine\":58973,\"web-awesome\":59010,\"webhook\":58837,\"weight-hanging\":62925,\"weight-scale\":62614,\"whale\":63276,\"wheat-awn-circle-exclamation\":58776,\"wheat-awn-slash\":58168,\"wheat-awn\":58061,\"wheat-slash\":58169,\"wheat\":63277,\"wheelchair-move\":58062,\"wheelchair\":61843,\"whiskey-glass-ice\":63393,\"whiskey-glass\":63392,\"whistle\":62560,\"wifi-exclamation\":58063,\"wifi-fair\":63147,\"wifi-slash\":63148,\"wifi-weak\":63146,\"wifi\":61931,\"wind-turbine\":63643,\"wind-warning\":63350,\"wind\":63278,\"window-flip\":62479,\"window-frame-open\":57424,\"window-frame\":57423,\"window-maximize\":62160,\"window-minimize\":62161,\"window-restore\":62162,\"window\":62478,\"windsock\":63351,\"wine-bottle\":63279,\"wine-glass-crack\":62651,\"wine-glass-empty\":62926,\"wine-glass\":62691,\"won-sign\":61785,\"worm\":58777,\"wreath-laurel\":58834,\"wreath\":63458,\"wrench-simple\":58065,\"wrench\":61613,\"x-ray\":62615,\"x\":88,\"xmark-large\":58779,\"xmark-to-slot\":63345,\"xmark\":61453,\"xmarks-lines\":58778,\"y\":89,\"yen-sign\":61783,\"yin-yang\":63149,\"z\":90}"
  },
  {
    "path": "packages/fontawesome6-pro/glyphmaps/FontAwesome6Pro_thin.json",
    "content": "{\"0\":48,\"1\":49,\"2\":50,\"3\":51,\"4\":52,\"5\":53,\"6\":54,\"7\":55,\"8\":56,\"9\":57,\"00\":58471,\"360-degrees\":58076,\"a\":65,\"abacus\":63040,\"accent-grave\":96,\"acorn\":63150,\"address-book\":62137,\"address-card\":62139,\"air-conditioner\":63732,\"airplay\":57481,\"alarm-clock\":62286,\"alarm-exclamation\":63555,\"alarm-plus\":63556,\"alarm-snooze\":63557,\"album-circle-plus\":58508,\"album-circle-user\":58509,\"album-collection-circle-plus\":58510,\"album-collection-circle-user\":58511,\"album-collection\":63648,\"album\":63647,\"alicorn\":63152,\"alien-8bit\":63734,\"alien\":63733,\"align-center\":61495,\"align-justify\":61497,\"align-left\":61494,\"align-right\":61496,\"align-slash\":63558,\"alt\":57482,\"amp-guitar\":63649,\"ampersand\":38,\"anchor-circle-check\":58538,\"anchor-circle-exclamation\":58539,\"anchor-circle-xmark\":58540,\"anchor-lock\":58541,\"anchor\":61757,\"angel\":63353,\"angle-90\":57485,\"angle-down\":61703,\"angle-left\":61700,\"angle-right\":61701,\"angle-up\":61702,\"angle\":57484,\"angles-down\":61699,\"angles-left\":61696,\"angles-right\":61697,\"angles-up-down\":58893,\"angles-up\":61698,\"ankh\":63044,\"ant\":59008,\"apartment\":58472,\"aperture\":58079,\"apostrophe\":39,\"apple-core\":57487,\"apple-whole\":62929,\"archway\":62807,\"arrow-down-1-9\":61794,\"arrow-down-9-1\":63622,\"arrow-down-a-z\":61789,\"arrow-down-arrow-up\":63619,\"arrow-down-big-small\":63628,\"arrow-down-from-arc\":58900,\"arrow-down-from-bracket\":58983,\"arrow-down-from-dotted-line\":57488,\"arrow-down-from-line\":62277,\"arrow-down-left-and-arrow-up-right-to-center\":57490,\"arrow-down-left\":57489,\"arrow-down-long\":61813,\"arrow-down-right\":57491,\"arrow-down-short-wide\":63620,\"arrow-down-small-big\":63629,\"arrow-down-square-triangle\":63625,\"arrow-down-to-arc\":58542,\"arrow-down-to-bracket\":57492,\"arrow-down-to-dotted-line\":57493,\"arrow-down-to-line\":62269,\"arrow-down-to-square\":57494,\"arrow-down-triangle-square\":63624,\"arrow-down-up-across-line\":58543,\"arrow-down-up-lock\":58544,\"arrow-down-wide-short\":61792,\"arrow-down-z-a\":63617,\"arrow-down\":61539,\"arrow-left-from-arc\":58901,\"arrow-left-from-bracket\":58984,\"arrow-left-from-line\":62276,\"arrow-left-long-to-line\":58324,\"arrow-left-long\":61815,\"arrow-left-to-arc\":58902,\"arrow-left-to-bracket\":58985,\"arrow-left-to-line\":62270,\"arrow-left\":61536,\"arrow-pointer\":62021,\"arrow-progress\":58847,\"arrow-right-arrow-left\":61676,\"arrow-right-from-arc\":58545,\"arrow-right-from-bracket\":61579,\"arrow-right-from-line\":62275,\"arrow-right-long-to-line\":58325,\"arrow-right-long\":61816,\"arrow-right-to-arc\":58546,\"arrow-right-to-bracket\":61584,\"arrow-right-to-city\":58547,\"arrow-right-to-line\":62272,\"arrow-right\":61537,\"arrow-rotate-left\":61666,\"arrow-rotate-right\":61470,\"arrow-trend-down\":57495,\"arrow-trend-up\":57496,\"arrow-turn-down-left\":58081,\"arrow-turn-down-right\":58326,\"arrow-turn-down\":61769,\"arrow-turn-left-down\":58931,\"arrow-turn-left-up\":58932,\"arrow-turn-left\":58930,\"arrow-turn-right\":58933,\"arrow-turn-up\":61768,\"arrow-up-1-9\":61795,\"arrow-up-9-1\":63623,\"arrow-up-a-z\":61790,\"arrow-up-arrow-down\":57497,\"arrow-up-big-small\":63630,\"arrow-up-from-arc\":58548,\"arrow-up-from-bracket\":57498,\"arrow-up-from-dotted-line\":57499,\"arrow-up-from-ground-water\":58549,\"arrow-up-from-line\":62274,\"arrow-up-from-square\":57500,\"arrow-up-from-water-pump\":58550,\"arrow-up-left-from-circle\":57502,\"arrow-up-left\":57501,\"arrow-up-long\":61814,\"arrow-up-right-and-arrow-down-left-from-center\":57504,\"arrow-up-right-dots\":58551,\"arrow-up-right-from-square\":61582,\"arrow-up-right\":57503,\"arrow-up-short-wide\":63621,\"arrow-up-small-big\":63631,\"arrow-up-square-triangle\":63627,\"arrow-up-to-arc\":58903,\"arrow-up-to-bracket\":58986,\"arrow-up-to-dotted-line\":57505,\"arrow-up-to-line\":62273,\"arrow-up-triangle-square\":63626,\"arrow-up-wide-short\":61793,\"arrow-up-z-a\":63618,\"arrow-up\":61538,\"arrows-cross\":57506,\"arrows-down-to-line\":58552,\"arrows-down-to-people\":58553,\"arrows-from-dotted-line\":57507,\"arrows-from-line\":57508,\"arrows-left-right-to-line\":58554,\"arrows-left-right\":61566,\"arrows-maximize\":62237,\"arrows-minimize\":57509,\"arrows-repeat-1\":62310,\"arrows-repeat\":62308,\"arrows-retweet\":62305,\"arrows-rotate-reverse\":58928,\"arrows-rotate\":61473,\"arrows-spin\":58555,\"arrows-split-up-and-left\":58556,\"arrows-to-circle\":58557,\"arrows-to-dot\":58558,\"arrows-to-dotted-line\":57510,\"arrows-to-eye\":58559,\"arrows-to-line\":57511,\"arrows-turn-right\":58560,\"arrows-turn-to-dots\":58561,\"arrows-up-down-left-right\":61511,\"arrows-up-down\":61565,\"arrows-up-to-line\":58562,\"asterisk\":42,\"at\":64,\"atom-simple\":62931,\"atom\":62930,\"audio-description-slash\":57512,\"audio-description\":62110,\"austral-sign\":57513,\"avocado\":57514,\"award-simple\":57515,\"award\":62809,\"axe-battle\":63155,\"axe\":63154,\"b\":66,\"baby-carriage\":63357,\"baby\":63356,\"backpack\":62932,\"backward-fast\":61513,\"backward-step\":61512,\"backward\":61514,\"bacon\":63461,\"bacteria\":57433,\"bacterium\":57434,\"badge-check\":62262,\"badge-dollar\":63045,\"badge-percent\":63046,\"badge-sheriff\":63650,\"badge\":62261,\"badger-honey\":63156,\"badminton\":58170,\"bag-seedling\":58866,\"bag-shopping-minus\":58960,\"bag-shopping-plus\":58961,\"bag-shopping\":62096,\"bagel\":58327,\"bags-shopping\":63559,\"baguette\":58328,\"bahai\":63078,\"baht-sign\":57516,\"ball-pile\":63358,\"balloon\":58083,\"balloons\":58084,\"ballot-check\":63283,\"ballot\":63282,\"ban-bug\":63481,\"ban-parking\":62998,\"ban-smoking\":62797,\"ban\":61534,\"banana\":58085,\"bandage\":62562,\"bangladeshi-taka-sign\":58086,\"banjo\":63651,\"barcode-read\":62564,\"barcode-scan\":62565,\"barcode\":61482,\"bars-filter\":57517,\"bars-progress\":63528,\"bars-sort\":57518,\"bars-staggered\":62800,\"bars\":61641,\"baseball-bat-ball\":62514,\"baseball\":62515,\"basket-shopping-minus\":58962,\"basket-shopping-plus\":58963,\"basket-shopping-simple\":57519,\"basket-shopping\":62097,\"basketball-hoop\":62517,\"basketball\":62516,\"bat\":63157,\"bath\":62157,\"battery-bolt\":62326,\"battery-empty\":62020,\"battery-exclamation\":57520,\"battery-full\":62016,\"battery-half\":62018,\"battery-low\":57521,\"battery-quarter\":62019,\"battery-slash\":62327,\"battery-three-quarters\":62017,\"bed-bunk\":63736,\"bed-empty\":63737,\"bed-front\":63735,\"bed-pulse\":62599,\"bed\":62006,\"bee\":57522,\"beer-mug-empty\":61692,\"beer-mug\":57523,\"bell-concierge\":62818,\"bell-exclamation\":63560,\"bell-on\":63738,\"bell-plus\":63561,\"bell-ring\":58924,\"bell-school-slash\":62934,\"bell-school\":62933,\"bell-slash\":61942,\"bell\":61683,\"bells\":63359,\"bench-tree\":58087,\"bezier-curve\":62811,\"bicycle\":61958,\"billboard\":58829,\"bin-bottles-recycle\":58870,\"bin-bottles\":58869,\"bin-recycle\":58871,\"binary-circle-check\":58172,\"binary-lock\":58173,\"binary-slash\":58174,\"binary\":58171,\"binoculars\":61925,\"biohazard\":63360,\"bird\":58473,\"bitcoin-sign\":57524,\"blanket-fire\":58330,\"blanket\":62616,\"blender-phone\":63158,\"blender\":62743,\"blinds-open\":63740,\"blinds-raised\":63741,\"blinds\":63739,\"block-brick-fire\":58332,\"block-brick\":58331,\"block-question\":58333,\"block-quote\":57525,\"block\":58474,\"blog\":63361,\"blueberries\":58088,\"bluetooth\":62099,\"bold\":61490,\"bolt-auto\":57526,\"bolt-lightning\":57527,\"bolt-slash\":57528,\"bolt\":61671,\"bomb\":61922,\"bone-break\":62936,\"bone\":62935,\"bong\":62812,\"book-arrow-right\":57529,\"book-arrow-up\":57530,\"book-atlas\":62808,\"book-bible\":63047,\"book-blank\":62937,\"book-bookmark\":57531,\"book-circle-arrow-right\":57532,\"book-circle-arrow-up\":57533,\"book-copy\":57534,\"book-font\":57535,\"book-heart\":62617,\"book-journal-whills\":63082,\"book-medical\":63462,\"book-open-cover\":57536,\"book-open-reader\":62938,\"book-open\":62744,\"book-quran\":63111,\"book-section\":57537,\"book-skull\":63159,\"book-sparkles\":63160,\"book-tanakh\":63527,\"book-user\":63463,\"book\":61485,\"bookmark-slash\":57538,\"bookmark\":61486,\"books-medical\":63464,\"books\":62939,\"boombox\":63653,\"boot-heeled\":58175,\"boot\":63362,\"booth-curtain\":63284,\"border-all\":63564,\"border-bottom-right\":63572,\"border-bottom\":63565,\"border-center-h\":63644,\"border-center-v\":63645,\"border-inner\":63566,\"border-left\":63567,\"border-none\":63568,\"border-outer\":63569,\"border-right\":63570,\"border-top-left\":63571,\"border-top\":63573,\"bore-hole\":58563,\"bottle-baby\":58995,\"bottle-droplet\":58564,\"bottle-water\":58565,\"bow-arrow\":63161,\"bowl-chopsticks-noodles\":58090,\"bowl-chopsticks\":58089,\"bowl-food\":58566,\"bowl-hot\":63523,\"bowl-rice\":58091,\"bowl-scoop\":58334,\"bowl-scoops\":58335,\"bowl-soft-serve\":58475,\"bowl-spoon\":58336,\"bowling-ball-pin\":57539,\"bowling-ball\":62518,\"bowling-pins\":62519,\"box-archive\":61831,\"box-ballot\":63285,\"box-check\":62567,\"box-circle-check\":57540,\"box-dollar\":62624,\"box-heart\":62621,\"box-open-full\":62620,\"box-open\":62622,\"box-taped\":62618,\"box-tissue\":57435,\"box\":62566,\"boxes-packing\":58567,\"boxes-stacked\":62568,\"boxing-glove\":62520,\"bracket-curly-right\":125,\"bracket-curly\":123,\"bracket-round-right\":41,\"bracket-round\":40,\"bracket-square-right\":93,\"bracket-square\":91,\"brackets-curly\":63466,\"brackets-round\":57541,\"brackets-square\":63465,\"braille\":62113,\"brain-arrow-curved-right\":63095,\"brain-circuit\":57542,\"brain\":62940,\"brake-warning\":57543,\"brazilian-real-sign\":58476,\"bread-loaf\":63467,\"bread-slice-butter\":58337,\"bread-slice\":63468,\"bridge-circle-check\":58569,\"bridge-circle-exclamation\":58570,\"bridge-circle-xmark\":58571,\"bridge-lock\":58572,\"bridge-suspension\":58573,\"bridge-water\":58574,\"bridge\":58568,\"briefcase-arrow-right\":58098,\"briefcase-blank\":57544,\"briefcase-medical\":62569,\"briefcase\":61617,\"brightness-low\":57546,\"brightness\":57545,\"bring-forward\":63574,\"bring-front\":63575,\"broccoli\":58338,\"broom-ball\":62552,\"broom-wide\":58833,\"broom\":62746,\"browser\":62334,\"browsers\":57547,\"brush\":62813,\"bucket\":58575,\"bug-slash\":58512,\"bug\":61832,\"bugs\":58576,\"building-circle-arrow-right\":58577,\"building-circle-check\":58578,\"building-circle-exclamation\":58579,\"building-circle-xmark\":58580,\"building-columns\":61852,\"building-flag\":58581,\"building-lock\":58582,\"building-magnifying-glass\":58908,\"building-memo\":58910,\"building-ngo\":58583,\"building-shield\":58584,\"building-un\":58585,\"building-user\":58586,\"building-wheat\":58587,\"building\":61869,\"buildings\":57548,\"bulldozer\":58965,\"bullhorn\":61601,\"bullseye-arrow\":63048,\"bullseye-pointer\":63049,\"bullseye\":61760,\"buoy-mooring\":58806,\"buoy\":58805,\"burger-cheese\":63473,\"burger-fries\":57549,\"burger-glass\":57550,\"burger-lettuce\":58339,\"burger-soda\":63576,\"burger\":63493,\"burrito\":63469,\"burst\":58588,\"bus-school\":62941,\"bus-simple\":62814,\"bus\":61959,\"business-time\":63050,\"butter\":58340,\"c\":67,\"cabin\":58477,\"cabinet-filing\":63051,\"cable-car\":63450,\"cactus\":63655,\"caduceus\":59009,\"cake-candles\":61949,\"cake-slice\":58341,\"calculator-simple\":63052,\"calculator\":61932,\"calendar-arrow-down\":57552,\"calendar-arrow-up\":57553,\"calendar-check\":62068,\"calendar-circle-exclamation\":58478,\"calendar-circle-minus\":58479,\"calendar-circle-plus\":58480,\"calendar-circle-user\":58481,\"calendar-clock\":57554,\"calendar-day\":63363,\"calendar-days\":61555,\"calendar-exclamation\":62260,\"calendar-heart\":57555,\"calendar-image\":57556,\"calendar-lines-pen\":58482,\"calendar-lines\":57557,\"calendar-minus\":62066,\"calendar-pen\":62259,\"calendar-plus\":62065,\"calendar-range\":57558,\"calendar-star\":63286,\"calendar-users\":58850,\"calendar-week\":63364,\"calendar-xmark\":62067,\"calendar\":61747,\"calendars\":57559,\"camcorder\":63656,\"camera-cctv\":63660,\"camera-movie\":63657,\"camera-polaroid\":63658,\"camera-retro\":61571,\"camera-rotate\":57560,\"camera-security\":63742,\"camera-slash\":57561,\"camera-viewfinder\":57562,\"camera-web-slash\":63539,\"camera-web\":63538,\"camera\":61488,\"campfire\":63162,\"campground\":63163,\"can-food\":58342,\"candle-holder\":63164,\"candy-bar\":58344,\"candy-cane\":63366,\"candy-corn\":63165,\"candy\":58343,\"cannabis\":62815,\"cannon\":58946,\"capsules\":62571,\"car-battery\":62943,\"car-bolt\":58177,\"car-building\":63577,\"car-bump\":62944,\"car-burst\":62945,\"car-bus\":63578,\"car-circle-bolt\":58178,\"car-garage\":62946,\"car-mirrors\":58179,\"car-on\":58589,\"car-rear\":62942,\"car-side-bolt\":58180,\"car-side\":62948,\"car-tilt\":62949,\"car-tunnel\":58590,\"car-wash\":62950,\"car-wrench\":62947,\"car\":61881,\"caravan-simple\":57344,\"caravan\":63743,\"card-club\":58345,\"card-diamond\":58346,\"card-heart\":58347,\"card-spade\":58348,\"cards-blank\":58591,\"cards\":58349,\"caret-down\":61655,\"caret-left\":61657,\"caret-right\":61658,\"caret-up\":61656,\"carpool\":59036,\"carrot\":63367,\"cars\":63579,\"cart-arrow-down\":61976,\"cart-arrow-up\":58350,\"cart-circle-arrow-down\":58351,\"cart-circle-arrow-up\":58352,\"cart-circle-check\":58353,\"cart-circle-exclamation\":58354,\"cart-circle-plus\":58355,\"cart-circle-xmark\":58356,\"cart-flatbed-boxes\":62581,\"cart-flatbed-empty\":62582,\"cart-flatbed-suitcase\":62877,\"cart-flatbed\":62580,\"cart-minus\":57563,\"cart-plus\":61975,\"cart-shopping-fast\":57564,\"cart-shopping\":61562,\"cart-xmark\":57565,\"cash-register\":63368,\"cassette-betamax\":63652,\"cassette-tape\":63659,\"cassette-vhs\":63724,\"castle\":57566,\"cat-space\":57345,\"cat\":63166,\"cauldron\":63167,\"cedi-sign\":57567,\"cent-sign\":58357,\"certificate\":61603,\"chair-office\":63169,\"chair\":63168,\"chalkboard-user\":62748,\"chalkboard\":62747,\"champagne-glass\":63390,\"champagne-glasses\":63391,\"charging-station\":62951,\"chart-area\":61950,\"chart-bar\":61568,\"chart-bullet\":57569,\"chart-candlestick\":57570,\"chart-column\":57571,\"chart-diagram\":59029,\"chart-fft\":59038,\"chart-gantt\":57572,\"chart-kanban\":58959,\"chart-line-down\":63053,\"chart-line-up-down\":58839,\"chart-line-up\":57573,\"chart-line\":61953,\"chart-mixed-up-circle-currency\":58840,\"chart-mixed-up-circle-dollar\":58841,\"chart-mixed\":63043,\"chart-network\":63370,\"chart-pie-simple-circle-currency\":58884,\"chart-pie-simple-circle-dollar\":58885,\"chart-pie-simple\":63054,\"chart-pie\":61952,\"chart-pyramid\":57574,\"chart-radar\":57575,\"chart-scatter-3d\":57576,\"chart-scatter-bubble\":57577,\"chart-scatter\":63470,\"chart-simple-horizontal\":58484,\"chart-simple\":58483,\"chart-sine\":59037,\"chart-tree-map\":57578,\"chart-user\":63139,\"chart-waterfall\":57579,\"check-double\":62816,\"check-to-slot\":63346,\"check\":61452,\"cheese-swiss\":63472,\"cheese\":63471,\"cherries\":57580,\"chess-bishop-piece\":62523,\"chess-bishop\":62522,\"chess-board\":62524,\"chess-clock-flip\":62526,\"chess-clock\":62525,\"chess-king-piece\":62528,\"chess-king\":62527,\"chess-knight-piece\":62530,\"chess-knight\":62529,\"chess-pawn-piece\":62532,\"chess-pawn\":62531,\"chess-queen-piece\":62534,\"chess-queen\":62533,\"chess-rook-piece\":62536,\"chess-rook\":62535,\"chess\":62521,\"chestnut\":58358,\"chevron-down\":61560,\"chevron-left\":61523,\"chevron-right\":61524,\"chevron-up\":61559,\"chevrons-down\":62242,\"chevrons-left\":62243,\"chevrons-right\":62244,\"chevrons-up\":62245,\"chf-sign\":58882,\"child-combatant\":58592,\"child-dress\":58780,\"child-reaching\":58781,\"child\":61870,\"children\":58593,\"chimney\":63371,\"chopsticks\":58359,\"church\":62749,\"circle-0\":57581,\"circle-1\":57582,\"circle-2\":57583,\"circle-3\":57584,\"circle-4\":57585,\"circle-5\":57586,\"circle-6\":57587,\"circle-7\":57588,\"circle-8\":57589,\"circle-9\":57590,\"circle-a\":57591,\"circle-ampersand\":57592,\"circle-arrow-down-left\":57593,\"circle-arrow-down-right\":57594,\"circle-arrow-down\":61611,\"circle-arrow-left\":61608,\"circle-arrow-right\":61609,\"circle-arrow-up-left\":57595,\"circle-arrow-up-right\":57596,\"circle-arrow-up\":61610,\"circle-b\":57597,\"circle-bolt\":57598,\"circle-book-open\":57599,\"circle-bookmark\":57600,\"circle-c\":57601,\"circle-calendar\":57602,\"circle-camera\":57603,\"circle-caret-down\":62253,\"circle-caret-left\":62254,\"circle-caret-right\":62256,\"circle-caret-up\":62257,\"circle-check\":61528,\"circle-chevron-down\":61754,\"circle-chevron-left\":61751,\"circle-chevron-right\":61752,\"circle-chevron-up\":61753,\"circle-d\":57604,\"circle-dashed\":57605,\"circle-divide\":57606,\"circle-dollar-to-slot\":62649,\"circle-dollar\":62184,\"circle-dot\":61842,\"circle-down-left\":57607,\"circle-down-right\":57608,\"circle-down\":62296,\"circle-e\":57609,\"circle-ellipsis-vertical\":57611,\"circle-ellipsis\":57610,\"circle-envelope\":57612,\"circle-euro\":58830,\"circle-exclamation-check\":57613,\"circle-exclamation\":61546,\"circle-f\":57614,\"circle-g\":57615,\"circle-gf\":59007,\"circle-h\":62590,\"circle-half-stroke\":61506,\"circle-half\":57616,\"circle-heart\":62663,\"circle-i\":57617,\"circle-info\":61530,\"circle-j\":57618,\"circle-k\":57619,\"circle-l\":57620,\"circle-left\":62297,\"circle-location-arrow\":62978,\"circle-m\":57621,\"circle-microphone-lines\":57623,\"circle-microphone\":57622,\"circle-minus\":61526,\"circle-n\":57624,\"circle-nodes\":58594,\"circle-notch\":61902,\"circle-o\":57625,\"circle-p\":57626,\"circle-parking\":62997,\"circle-pause\":62091,\"circle-phone-flip\":57628,\"circle-phone-hangup\":57629,\"circle-phone\":57627,\"circle-play\":61764,\"circle-plus\":61525,\"circle-q\":57630,\"circle-quarter-stroke\":58835,\"circle-quarter\":57631,\"circle-quarters\":58360,\"circle-question\":61529,\"circle-r\":57632,\"circle-radiation\":63418,\"circle-right\":62298,\"circle-s\":57633,\"circle-small\":57634,\"circle-sort-down\":57393,\"circle-sort-up\":57394,\"circle-sort\":57392,\"circle-star\":57635,\"circle-sterling\":58831,\"circle-stop\":62093,\"circle-t\":57636,\"circle-three-quarters-stroke\":58836,\"circle-three-quarters\":57637,\"circle-trash\":57638,\"circle-u\":57639,\"circle-up-left\":57640,\"circle-up-right\":57641,\"circle-up\":62299,\"circle-user\":62141,\"circle-v\":57642,\"circle-video\":57643,\"circle-w\":57644,\"circle-waveform-lines\":57645,\"circle-wifi-circle-wifi\":59006,\"circle-wifi\":59005,\"circle-x\":57646,\"circle-xmark\":61527,\"circle-y\":57647,\"circle-yen\":58832,\"circle-z\":57648,\"circle\":61713,\"circles-overlap-3\":59041,\"circles-overlap\":58880,\"citrus-slice\":58101,\"citrus\":58100,\"city\":63055,\"clapperboard-play\":57650,\"clapperboard\":57649,\"clarinet\":63661,\"claw-marks\":63170,\"clipboard-check\":62572,\"clipboard-list-check\":63287,\"clipboard-list\":62573,\"clipboard-medical\":57651,\"clipboard-prescription\":62952,\"clipboard-question\":58595,\"clipboard-user\":63475,\"clipboard\":62248,\"clock-desk\":57652,\"clock-eight-thirty\":58182,\"clock-eight\":58181,\"clock-eleven-thirty\":58184,\"clock-eleven\":58183,\"clock-five-thirty\":58186,\"clock-five\":58185,\"clock-four-thirty\":58187,\"clock-nine-thirty\":58189,\"clock-nine\":58188,\"clock-one-thirty\":58191,\"clock-one\":58190,\"clock-rotate-left\":61914,\"clock-seven-thirty\":58193,\"clock-seven\":58192,\"clock-six-thirty\":58195,\"clock-six\":58194,\"clock-ten-thirty\":58197,\"clock-ten\":58196,\"clock-three-thirty\":58199,\"clock-three\":58198,\"clock-twelve-thirty\":58201,\"clock-twelve\":58200,\"clock-two-thirty\":58203,\"clock-two\":58202,\"clock\":61463,\"clone\":62029,\"closed-captioning-slash\":57653,\"closed-captioning\":61962,\"clothes-hanger\":57654,\"cloud-arrow-down\":61677,\"cloud-arrow-up\":61678,\"cloud-binary\":58881,\"cloud-bolt-moon\":63341,\"cloud-bolt-sun\":63342,\"cloud-bolt\":63340,\"cloud-check\":58204,\"cloud-drizzle\":63288,\"cloud-exclamation\":58513,\"cloud-fog\":63310,\"cloud-hail-mixed\":63290,\"cloud-hail\":63289,\"cloud-meatball\":63291,\"cloud-minus\":58205,\"cloud-moon-rain\":63292,\"cloud-moon\":63171,\"cloud-music\":63662,\"cloud-plus\":58206,\"cloud-question\":58514,\"cloud-rain\":63293,\"cloud-rainbow\":63294,\"cloud-showers-heavy\":63296,\"cloud-showers-water\":58596,\"cloud-showers\":63295,\"cloud-slash\":57655,\"cloud-sleet\":63297,\"cloud-snow\":63298,\"cloud-sun-rain\":63299,\"cloud-sun\":63172,\"cloud-word\":57656,\"cloud-xmark\":58207,\"cloud\":61634,\"clouds-moon\":63301,\"clouds-sun\":63302,\"clouds\":63300,\"clover\":57657,\"club\":62247,\"coconut\":58102,\"code-branch\":61734,\"code-commit\":62342,\"code-compare\":57658,\"code-fork\":57659,\"code-merge\":62343,\"code-pull-request-closed\":58361,\"code-pull-request-draft\":58362,\"code-pull-request\":57660,\"code-simple\":57661,\"code\":61729,\"coffee-bean\":57662,\"coffee-beans\":57663,\"coffee-pot\":57346,\"coffin-cross\":57425,\"coffin\":63174,\"coin-blank\":58363,\"coin-front\":58364,\"coin-vertical\":58365,\"coin\":63580,\"coins\":62750,\"colon-sign\":57664,\"colon\":58,\"columns-3\":58209,\"comet\":57347,\"comma\":44,\"command\":57666,\"comment-arrow-down\":57667,\"comment-arrow-up-right\":57669,\"comment-arrow-up\":57668,\"comment-captions\":57670,\"comment-check\":62636,\"comment-code\":57671,\"comment-dollar\":63057,\"comment-dots\":62637,\"comment-exclamation\":62639,\"comment-heart\":58824,\"comment-image\":57672,\"comment-lines\":62640,\"comment-medical\":63477,\"comment-middle-top\":57674,\"comment-middle\":57673,\"comment-minus\":62641,\"comment-music\":63664,\"comment-nodes\":59030,\"comment-pen\":62638,\"comment-plus\":62642,\"comment-question\":57675,\"comment-quote\":57676,\"comment-slash\":62643,\"comment-smile\":62644,\"comment-sms\":63437,\"comment-text\":57677,\"comment-xmark\":62645,\"comment\":61557,\"comments-dollar\":63059,\"comments-question-check\":57679,\"comments-question\":57678,\"comments\":61574,\"compact-disc\":62751,\"compass-drafting\":62824,\"compass-slash\":62953,\"compass\":61774,\"compress-wide\":62246,\"compress\":61542,\"computer-classic\":63665,\"computer-mouse-scrollwheel\":63693,\"computer-mouse\":63692,\"computer-speaker\":63666,\"computer\":58597,\"container-storage\":62647,\"conveyor-belt-arm\":58872,\"conveyor-belt-boxes\":62575,\"conveyor-belt-empty\":57680,\"conveyor-belt\":62574,\"cookie-bite\":62820,\"cookie\":62819,\"copy\":61637,\"copyright\":61945,\"corn\":63175,\"corner\":58366,\"couch\":62648,\"court-sport\":58947,\"cow\":63176,\"cowbell-circle-plus\":63668,\"cowbell\":63667,\"crab\":58367,\"crate-apple\":63153,\"crate-empty\":57681,\"credit-card-blank\":62345,\"credit-card-front\":62346,\"credit-card\":61597,\"cricket-bat-ball\":62537,\"croissant\":63478,\"crop-simple\":62821,\"crop\":61733,\"cross\":63060,\"crosshairs-simple\":58783,\"crosshairs\":61531,\"crow\":62752,\"crown\":62753,\"crutch\":63479,\"crutches\":63480,\"cruzeiro-sign\":57682,\"crystal-ball\":58210,\"cube\":61874,\"cubes-stacked\":58598,\"cubes\":61875,\"cucumber\":58369,\"cup-straw-swoosh\":58212,\"cup-straw\":58211,\"cup-togo\":63173,\"cupcake\":58370,\"curling-stone\":62538,\"custard\":58371,\"d\":68,\"dagger\":63179,\"dash\":58372,\"database\":61888,\"deer-rudolph\":63375,\"deer\":63374,\"delete-left\":62810,\"delete-right\":57684,\"democrat\":63303,\"desktop-arrow-down\":57685,\"desktop\":62352,\"dharmachakra\":63061,\"diagram-cells\":58485,\"diagram-lean-canvas\":57686,\"diagram-nested\":57687,\"diagram-next\":58486,\"diagram-predecessor\":58487,\"diagram-previous\":58488,\"diagram-project\":62786,\"diagram-sankey\":57688,\"diagram-subtask\":58489,\"diagram-successor\":58490,\"diagram-venn\":57690,\"dial-high\":57692,\"dial-low\":57693,\"dial-max\":57694,\"dial-med-low\":57696,\"dial-med\":57695,\"dial-min\":57697,\"dial-off\":57698,\"dial\":57691,\"diamond-exclamation\":58373,\"diamond-half-stroke\":58808,\"diamond-half\":58807,\"diamond-turn-right\":62955,\"diamond\":61977,\"diamonds-4\":59019,\"dice-d10\":63181,\"dice-d12\":63182,\"dice-d20\":63183,\"dice-d4\":63184,\"dice-d6\":63185,\"dice-d8\":63186,\"dice-five\":62755,\"dice-four\":62756,\"dice-one\":62757,\"dice-six\":62758,\"dice-three\":62759,\"dice-two\":62760,\"dice\":62754,\"dinosaur\":58878,\"diploma\":62954,\"disc-drive\":63669,\"disease\":63482,\"display-arrow-down\":57700,\"display-chart-up-circle-currency\":58853,\"display-chart-up-circle-dollar\":58854,\"display-chart-up\":58851,\"display-code\":57701,\"display-medical\":57702,\"display-slash\":58106,\"display\":57699,\"distribute-spacing-horizontal\":58213,\"distribute-spacing-vertical\":58214,\"ditto\":34,\"divide\":62761,\"dna\":62577,\"do-not-enter\":62956,\"dog-leashed\":63188,\"dog\":63187,\"dollar-sign\":36,\"dolly-empty\":62579,\"dolly\":62578,\"dolphin\":57704,\"dong-sign\":57705,\"donut\":58374,\"door-closed\":62762,\"door-open\":62763,\"dove\":62650,\"down-from-bracket\":58987,\"down-from-dotted-line\":58375,\"down-from-line\":62281,\"down-left-and-up-right-to-center\":62498,\"down-left\":57706,\"down-long\":62217,\"down-right\":57707,\"down-to-bracket\":58599,\"down-to-dotted-line\":58376,\"down-to-line\":62282,\"down\":62292,\"download\":61465,\"dragon\":63189,\"draw-circle\":62957,\"draw-polygon\":62958,\"draw-square\":62959,\"dreidel\":63378,\"drone-front\":63584,\"drone\":63583,\"droplet-degree\":63304,\"droplet-percent\":63312,\"droplet-slash\":62919,\"droplet\":61507,\"drum-steelpan\":62826,\"drum\":62825,\"drumstick-bite\":63191,\"drumstick\":63190,\"dryer-heat\":63586,\"dryer\":63585,\"duck\":63192,\"dumbbell\":62539,\"dumpster-fire\":63380,\"dumpster\":63379,\"dungeon\":63193,\"e\":69,\"ear-deaf\":62116,\"ear-listen\":62114,\"ear-muffs\":63381,\"ear\":62960,\"earth-africa\":62844,\"earth-americas\":62845,\"earth-asia\":62846,\"earth-europe\":63394,\"earth-oceania\":58491,\"eclipse\":63305,\"egg-fried\":63484,\"egg\":63483,\"eggplant\":57708,\"eject\":61522,\"elephant\":63194,\"elevator\":57709,\"ellipsis-stroke-vertical\":62364,\"ellipsis-stroke\":62363,\"ellipsis-vertical\":61762,\"ellipsis\":61761,\"empty-set\":63062,\"engine-warning\":62962,\"engine\":57710,\"envelope-circle-check\":58600,\"envelope-dot\":57711,\"envelope-open-dollar\":63063,\"envelope-open-text\":63064,\"envelope-open\":62134,\"envelope\":61664,\"envelopes-bulk\":63092,\"envelopes\":57712,\"equals\":61,\"eraser\":61741,\"escalator\":57713,\"ethernet\":63382,\"euro-sign\":61779,\"excavator\":58966,\"exclamation\":33,\"expand-wide\":62240,\"expand\":61541,\"explosion\":58601,\"eye-dropper-full\":57714,\"eye-dropper-half\":57715,\"eye-dropper\":61947,\"eye-evil\":63195,\"eye-low-vision\":62120,\"eye-slash\":61552,\"eye\":61550,\"eyes\":58215,\"f\":70,\"face-angry-horns\":58216,\"face-angry\":62806,\"face-anguished\":58217,\"face-anxious-sweat\":58218,\"face-astonished\":58219,\"face-awesome\":58377,\"face-beam-hand-over-mouth\":58492,\"face-clouds\":58493,\"face-confounded\":58220,\"face-confused\":58221,\"face-cowboy-hat\":58222,\"face-diagonal-mouth\":58494,\"face-disappointed\":58223,\"face-disguise\":58224,\"face-dizzy\":62823,\"face-dotted\":58495,\"face-downcast-sweat\":58225,\"face-drooling\":58226,\"face-exhaling\":58496,\"face-explode\":58110,\"face-expressionless\":58227,\"face-eyes-xmarks\":58228,\"face-fearful\":58229,\"face-flushed\":62841,\"face-frown-open\":62842,\"face-frown-slight\":58230,\"face-frown\":61721,\"face-glasses\":58231,\"face-grimace\":62847,\"face-grin-beam-sweat\":62851,\"face-grin-beam\":62850,\"face-grin-hearts\":62852,\"face-grin-squint-tears\":62854,\"face-grin-squint\":62853,\"face-grin-stars\":62855,\"face-grin-tears\":62856,\"face-grin-tongue-squint\":62858,\"face-grin-tongue-wink\":62859,\"face-grin-tongue\":62857,\"face-grin-wide\":62849,\"face-grin-wink\":62860,\"face-grin\":62848,\"face-hand-over-mouth\":58232,\"face-hand-peeking\":58497,\"face-hand-yawn\":58233,\"face-head-bandage\":58234,\"face-holding-back-tears\":58498,\"face-hushed\":58235,\"face-icicles\":58236,\"face-kiss-beam\":62871,\"face-kiss-closed-eyes\":58237,\"face-kiss-wink-heart\":62872,\"face-kiss\":62870,\"face-laugh-beam\":62874,\"face-laugh-squint\":62875,\"face-laugh-wink\":62876,\"face-laugh\":62873,\"face-lying\":58238,\"face-mask\":58239,\"face-meh-blank\":62884,\"face-meh\":61722,\"face-melting\":58499,\"face-monocle\":58240,\"face-nauseated\":58241,\"face-nose-steam\":58242,\"face-party\":58243,\"face-pensive\":58244,\"face-persevering\":58245,\"face-pleading\":58246,\"face-pouting\":58247,\"face-raised-eyebrow\":58248,\"face-relieved\":58249,\"face-rolling-eyes\":62885,\"face-sad-cry\":62899,\"face-sad-sweat\":58250,\"face-sad-tear\":62900,\"face-saluting\":58500,\"face-scream\":58251,\"face-shush\":58252,\"face-sleeping\":58253,\"face-sleepy\":58254,\"face-smile-beam\":62904,\"face-smile-halo\":58255,\"face-smile-hearts\":58256,\"face-smile-horns\":58257,\"face-smile-plus\":62905,\"face-smile-relaxed\":58258,\"face-smile-tear\":58259,\"face-smile-tongue\":58260,\"face-smile-upside-down\":58261,\"face-smile-wink\":62682,\"face-smile\":61720,\"face-smiling-hands\":58262,\"face-smirking\":58263,\"face-spiral-eyes\":58501,\"face-sunglasses\":58264,\"face-surprise\":62914,\"face-swear\":58265,\"face-thermometer\":58266,\"face-thinking\":58267,\"face-tired\":62920,\"face-tissue\":58268,\"face-tongue-money\":58269,\"face-tongue-sweat\":58270,\"face-unamused\":58271,\"face-viewfinder\":58111,\"face-vomit\":58272,\"face-weary\":58273,\"face-woozy\":58274,\"face-worried\":58275,\"face-zany\":58276,\"face-zipper\":58277,\"falafel\":58378,\"family-dress\":58113,\"family-pants\":58114,\"family\":58112,\"fan-table\":57348,\"fan\":63587,\"farm\":63588,\"faucet-drip\":57350,\"faucet\":57349,\"fax\":61868,\"feather-pointed\":62827,\"feather\":62765,\"fence\":58115,\"ferris-wheel\":57716,\"ferry\":58602,\"field-hockey-stick-ball\":62540,\"file-arrow-down\":62829,\"file-arrow-up\":62836,\"file-audio\":61895,\"file-binary\":57717,\"file-cad\":58994,\"file-certificate\":62963,\"file-chart-column\":63065,\"file-chart-pie\":63066,\"file-check\":62230,\"file-circle-check\":58784,\"file-circle-exclamation\":58603,\"file-circle-info\":58515,\"file-circle-minus\":58605,\"file-circle-plus\":58516,\"file-circle-question\":58607,\"file-circle-xmark\":58785,\"file-code\":61897,\"file-contract\":62828,\"file-csv\":63197,\"file-dashed-line\":63607,\"file-doc\":58861,\"file-eps\":58948,\"file-excel\":61891,\"file-exclamation\":62234,\"file-export\":62830,\"file-fragment\":59031,\"file-gif\":58949,\"file-half-dashed\":59032,\"file-heart\":57718,\"file-image\":61893,\"file-import\":62831,\"file-invoice-dollar\":62833,\"file-invoice\":62832,\"file-jpg\":58950,\"file-lines\":61788,\"file-lock\":58278,\"file-magnifying-glass\":63589,\"file-medical\":62583,\"file-minus\":62232,\"file-mov\":58951,\"file-mp3\":58952,\"file-mp4\":58953,\"file-music\":63670,\"file-pdf\":61889,\"file-pen\":62236,\"file-plus-minus\":57719,\"file-plus\":62233,\"file-png\":58982,\"file-powerpoint\":61892,\"file-ppt\":58954,\"file-prescription\":62834,\"file-shield\":58608,\"file-signature\":62835,\"file-slash\":58279,\"file-spreadsheet\":63067,\"file-svg\":58955,\"file-user\":63068,\"file-vector\":58956,\"file-video\":61896,\"file-waveform\":62584,\"file-word\":61890,\"file-xls\":58957,\"file-xmark\":62231,\"file-xml\":58964,\"file-zip\":58862,\"file-zipper\":61894,\"file\":61787,\"files-medical\":63485,\"files\":57720,\"fill-drip\":62838,\"fill\":62837,\"film-canister\":63671,\"film-simple\":62368,\"film-slash\":57721,\"film\":61448,\"films\":57722,\"filter-circle-dollar\":63074,\"filter-circle-xmark\":57723,\"filter-list\":57724,\"filter-slash\":57725,\"filter\":61616,\"filters\":57726,\"fingerprint\":62839,\"fire-burner\":58609,\"fire-extinguisher\":61748,\"fire-flame-curved\":63460,\"fire-flame-simple\":62570,\"fire-flame\":63199,\"fire-hydrant\":57727,\"fire-smoke\":63307,\"fire\":61549,\"fireplace\":63386,\"fish-bones\":58116,\"fish-cooked\":63486,\"fish-fins\":58610,\"fish\":62840,\"fishing-rod\":58280,\"flag-checkered\":61726,\"flag-pennant\":62550,\"flag-swallowtail\":63308,\"flag-usa\":63309,\"flag\":61476,\"flashlight\":63672,\"flask-gear\":58865,\"flask-round-poison\":63200,\"flask-round-potion\":63201,\"flask-vial\":58611,\"flask\":61635,\"flatbread-stuffed\":58380,\"flatbread\":58379,\"floppy-disk-circle-arrow-right\":57728,\"floppy-disk-circle-xmark\":57729,\"floppy-disk-pen\":57730,\"floppy-disk\":61639,\"floppy-disks\":57731,\"florin-sign\":57732,\"flower-daffodil\":63488,\"flower-tulip\":63489,\"flower\":63487,\"flute\":63673,\"flux-capacitor\":63674,\"flying-disc\":58281,\"folder-arrow-down\":57427,\"folder-arrow-up\":57428,\"folder-bookmark\":57734,\"folder-check\":58958,\"folder-closed\":57733,\"folder-gear\":57735,\"folder-grid\":57736,\"folder-heart\":57737,\"folder-image\":57738,\"folder-magnifying-glass\":57739,\"folder-medical\":57740,\"folder-minus\":63069,\"folder-music\":57741,\"folder-open\":61564,\"folder-plus\":63070,\"folder-tree\":63490,\"folder-user\":57742,\"folder-xmark\":63071,\"folder\":61563,\"folders\":63072,\"fondue-pot\":58381,\"font-awesome\":62132,\"font-case\":63590,\"font\":61489,\"football-helmet\":62543,\"football\":62542,\"fork-knife\":62182,\"fork\":62179,\"forklift\":62586,\"fort\":58502,\"forward-fast\":61520,\"forward-step\":61521,\"forward\":61518,\"frame\":58517,\"franc-sign\":57743,\"french-fries\":63491,\"frog\":62766,\"function\":63073,\"futbol\":61923,\"g\":71,\"galaxy\":57352,\"gallery-thumbnails\":58282,\"game-board-simple\":63592,\"game-board\":63591,\"game-console-handheld-crank\":58809,\"game-console-handheld\":63675,\"gamepad-modern\":58786,\"gamepad\":61723,\"garage-car\":57354,\"garage-open\":57355,\"garage\":57353,\"garlic\":58382,\"gas-pump-slash\":62964,\"gas-pump\":62767,\"gauge-circle-bolt\":58518,\"gauge-circle-minus\":58519,\"gauge-circle-plus\":58520,\"gauge-high\":63013,\"gauge-low\":63015,\"gauge-max\":63014,\"gauge-min\":63016,\"gauge-simple-high\":63018,\"gauge-simple-low\":63020,\"gauge-simple-max\":63019,\"gauge-simple-min\":63021,\"gauge-simple\":63017,\"gauge\":63012,\"gavel\":61667,\"gear-code\":58856,\"gear-complex-code\":58859,\"gear-complex\":58857,\"gear\":61459,\"gears\":61573,\"gem\":62373,\"genderless\":61997,\"ghost\":63202,\"gif\":57744,\"gift-card\":63075,\"gift\":61547,\"gifts\":63388,\"gingerbread-man\":63389,\"glass-citrus\":63593,\"glass-empty\":57745,\"glass-half\":57746,\"glass-water-droplet\":58613,\"glass-water\":58612,\"glass\":63492,\"glasses-round\":62965,\"glasses\":62768,\"globe-pointer\":58894,\"globe-snow\":63395,\"globe-stand\":62966,\"globe-wifi\":59013,\"globe\":61612,\"goal-net\":58283,\"golf-ball-tee\":62544,\"golf-club\":62545,\"golf-flag-hole\":58284,\"gopuram\":63076,\"graduation-cap\":61853,\"gramophone\":63677,\"grapes\":58118,\"grate-droplet\":57748,\"grate\":57747,\"greater-than-equal\":62770,\"greater-than\":62,\"grid-2-plus\":57751,\"grid-2\":57750,\"grid-4\":57752,\"grid-5\":57753,\"grid-dividers\":58285,\"grid-horizontal\":58119,\"grid-round-2-plus\":58844,\"grid-round-2\":58843,\"grid-round-4\":58845,\"grid-round-5\":58846,\"grid-round\":58842,\"grid\":57749,\"grill-fire\":58788,\"grill-hot\":58789,\"grill\":58787,\"grip-dots-vertical\":58385,\"grip-dots\":58384,\"grip-lines-vertical\":63397,\"grip-lines\":63396,\"grip-vertical\":62862,\"grip\":62861,\"group-arrows-rotate\":58614,\"guarani-sign\":57754,\"guitar-electric\":63678,\"guitar\":63398,\"guitars\":63679,\"gun-slash\":57756,\"gun-squirt\":57757,\"gun\":57755,\"h\":72,\"h1\":62227,\"h2\":62228,\"h3\":62229,\"h4\":63594,\"h5\":58386,\"h6\":58387,\"hammer-brush\":58912,\"hammer-crash\":58388,\"hammer-war\":63204,\"hammer\":63203,\"hamsa\":63077,\"hand-back-fist\":62037,\"hand-back-point-down\":57758,\"hand-back-point-left\":57759,\"hand-back-point-ribbon\":57760,\"hand-back-point-right\":57761,\"hand-back-point-up\":57762,\"hand-dots\":62561,\"hand-fingers-crossed\":57763,\"hand-fist\":63198,\"hand-heart\":62652,\"hand-holding-box\":62587,\"hand-holding-circle-dollar\":58913,\"hand-holding-dollar\":62656,\"hand-holding-droplet\":62657,\"hand-holding-hand\":58615,\"hand-holding-heart\":62654,\"hand-holding-magic\":63205,\"hand-holding-medical\":57436,\"hand-holding-seedling\":62655,\"hand-holding-skull\":57764,\"hand-holding\":62653,\"hand-horns\":57769,\"hand-lizard\":62040,\"hand-love\":57765,\"hand-middle-finger\":63494,\"hand-peace\":62043,\"hand-point-down\":61607,\"hand-point-left\":61605,\"hand-point-ribbon\":57766,\"hand-point-right\":61604,\"hand-point-up\":61606,\"hand-pointer\":62042,\"hand-scissors\":62039,\"hand-sparkles\":57437,\"hand-spock\":62041,\"hand-wave\":57767,\"hand\":62038,\"handcuffs\":58616,\"hands-asl-interpreting\":62115,\"hands-bound\":58617,\"hands-bubbles\":57438,\"hands-clapping\":57768,\"hands-holding-child\":58618,\"hands-holding-circle\":58619,\"hands-holding-diamond\":62588,\"hands-holding-dollar\":62661,\"hands-holding-heart\":62659,\"hands-holding\":62658,\"hands-praying\":63108,\"hands\":62119,\"handshake-angle\":62660,\"handshake-simple-slash\":57439,\"handshake-simple\":62662,\"handshake-slash\":57440,\"handshake\":62133,\"hanukiah\":63206,\"hard-drive\":61600,\"hashtag-lock\":58389,\"hashtag\":35,\"hat-beach\":58886,\"hat-chef\":63595,\"hat-cowboy-side\":63681,\"hat-cowboy\":63680,\"hat-santa\":63399,\"hat-winter\":63400,\"hat-witch\":63207,\"hat-wizard\":63208,\"head-side-brain\":63496,\"head-side-cough-slash\":57442,\"head-side-cough\":57441,\"head-side-gear\":58897,\"head-side-goggles\":63210,\"head-side-headphones\":63682,\"head-side-heart\":57770,\"head-side-mask\":57443,\"head-side-medical\":63497,\"head-side-virus\":57444,\"head-side\":63209,\"heading\":61916,\"headphones-simple\":62863,\"headphones\":61477,\"headset\":62864,\"heart-circle-bolt\":58620,\"heart-circle-check\":58621,\"heart-circle-exclamation\":58622,\"heart-circle-minus\":58623,\"heart-circle-plus\":58624,\"heart-circle-xmark\":58625,\"heart-crack\":63401,\"heart-half-stroke\":57772,\"heart-half\":57771,\"heart-pulse\":61982,\"heart\":61444,\"heat\":57356,\"helicopter-symbol\":58626,\"helicopter\":62771,\"helmet-battle\":63211,\"helmet-safety\":63495,\"helmet-un\":58627,\"hexagon-check\":58390,\"hexagon-divide\":57773,\"hexagon-exclamation\":58391,\"hexagon-image\":58628,\"hexagon-minus\":62215,\"hexagon-nodes-bolt\":59034,\"hexagon-nodes\":59033,\"hexagon-plus\":62208,\"hexagon-vertical-nft-slanted\":58630,\"hexagon-vertical-nft\":58629,\"hexagon-xmark\":62190,\"hexagon\":62226,\"high-definition\":57774,\"highlighter-line\":57775,\"highlighter\":62865,\"hill-avalanche\":58631,\"hill-rockslide\":58632,\"hippo\":63213,\"hockey-mask\":63214,\"hockey-puck\":62547,\"hockey-stick-puck\":58286,\"hockey-sticks\":62548,\"holly-berry\":63402,\"honey-pot\":58392,\"hood-cloak\":63215,\"horizontal-rule\":63596,\"horse-head\":63403,\"horse-saddle\":63683,\"horse\":63216,\"hose-reel\":58394,\"hose\":58393,\"hospital-user\":63501,\"hospital\":61688,\"hospitals\":63502,\"hot-tub-person\":62867,\"hotdog\":63503,\"hotel\":62868,\"hourglass-clock\":58395,\"hourglass-end\":62035,\"hourglass-half\":62034,\"hourglass-start\":62033,\"hourglass\":62036,\"house-blank\":58503,\"house-building\":57777,\"house-chimney-blank\":58288,\"house-chimney-crack\":63217,\"house-chimney-heart\":57778,\"house-chimney-medical\":63474,\"house-chimney-user\":57445,\"house-chimney-window\":57357,\"house-chimney\":58287,\"house-circle-check\":58633,\"house-circle-exclamation\":58634,\"house-circle-xmark\":58635,\"house-crack\":58289,\"house-day\":57358,\"house-fire\":58636,\"house-flag\":58637,\"house-flood-water-circle-arrow-right\":58639,\"house-flood-water\":58638,\"house-heart\":62665,\"house-laptop\":57446,\"house-lock\":58640,\"house-medical-circle-check\":58641,\"house-medical-circle-exclamation\":58642,\"house-medical-circle-xmark\":58643,\"house-medical-flag\":58644,\"house-medical\":58290,\"house-night\":57360,\"house-person-leave\":57359,\"house-person-return\":57361,\"house-signal\":57362,\"house-tree\":57779,\"house-tsunami\":58645,\"house-turret\":57780,\"house-user\":57776,\"house-water\":63311,\"house-window\":58291,\"house\":61461,\"hryvnia-sign\":63218,\"hundred-points\":58396,\"hurricane\":63313,\"hydra\":59014,\"hyphen\":45,\"i-cursor\":62022,\"i\":73,\"ice-cream\":63504,\"ice-skate\":63404,\"icicles\":63405,\"icons\":63597,\"id-badge\":62145,\"id-card-clip\":62591,\"id-card\":62146,\"igloo\":63406,\"image-landscape\":57781,\"image-polaroid-user\":57782,\"image-polaroid\":63684,\"image-portrait\":62432,\"image-slash\":57783,\"image-user\":57784,\"image\":61502,\"images-user\":57785,\"images\":62210,\"inbox-full\":57786,\"inbox-in\":62224,\"inbox-out\":62225,\"inbox\":61468,\"inboxes\":57787,\"indent\":61500,\"indian-rupee-sign\":57788,\"industry-windows\":62387,\"industry\":62069,\"infinity\":62772,\"info\":61737,\"inhaler\":62969,\"input-numeric\":57789,\"input-pipe\":57790,\"input-text\":57791,\"integral\":63079,\"interrobang\":58810,\"intersection\":63080,\"island-tropical\":63505,\"italic\":61491,\"j\":74,\"jack-o-lantern\":62222,\"jar-wheat\":58647,\"jar\":58646,\"jedi\":63081,\"jet-fighter-up\":58648,\"jet-fighter\":61691,\"joint\":62869,\"joystick\":63685,\"jug-bottle\":58875,\"jug-detergent\":58649,\"jug\":63686,\"k\":75,\"kaaba\":63083,\"kazoo\":63687,\"kerning\":63599,\"key-skeleton-left-right\":58292,\"key-skeleton\":63219,\"key\":61572,\"keyboard-brightness-low\":57793,\"keyboard-brightness\":57792,\"keyboard-down\":57794,\"keyboard-left\":57795,\"keyboard\":61724,\"keynote\":63084,\"khanda\":63085,\"kidneys\":62971,\"kip-sign\":57796,\"kit-medical\":62585,\"kitchen-set\":58650,\"kite\":63220,\"kiwi-bird\":62773,\"kiwi-fruit\":58124,\"knife-kitchen\":63221,\"knife\":62180,\"l\":76,\"lacrosse-stick-ball\":58294,\"lacrosse-stick\":58293,\"lambda\":63086,\"lamp-desk\":57364,\"lamp-floor\":57365,\"lamp-street\":57797,\"lamp\":62666,\"land-mine-on\":58651,\"landmark-dome\":63314,\"landmark-flag\":58652,\"landmark-magnifying-glass\":58914,\"landmark\":63087,\"language\":61867,\"laptop-arrow-down\":57798,\"laptop-binary\":58855,\"laptop-code\":62972,\"laptop-file\":58653,\"laptop-medical\":63506,\"laptop-mobile\":63610,\"laptop-slash\":57799,\"laptop\":61705,\"lari-sign\":57800,\"lasso-sparkles\":57801,\"lasso\":63688,\"layer-group\":62973,\"layer-minus\":62974,\"layer-plus\":62975,\"leaf-heart\":62667,\"leaf-maple\":63222,\"leaf-oak\":63223,\"leaf\":61548,\"leafy-green\":58397,\"left-from-bracket\":58988,\"left-from-line\":62280,\"left-long-to-line\":58398,\"left-long\":62218,\"left-right\":62263,\"left-to-bracket\":58989,\"left-to-line\":62283,\"left\":62293,\"lemon\":61588,\"less-than-equal\":62775,\"less-than\":60,\"life-ring\":61901,\"light-ceiling\":57366,\"light-emergency-on\":58400,\"light-emergency\":58399,\"light-switch-off\":57368,\"light-switch-on\":57369,\"light-switch\":57367,\"lightbulb-cfl-on\":58791,\"lightbulb-cfl\":58790,\"lightbulb-dollar\":63088,\"lightbulb-exclamation-on\":57802,\"lightbulb-exclamation\":63089,\"lightbulb-gear\":58877,\"lightbulb-message\":59015,\"lightbulb-on\":63090,\"lightbulb-slash\":63091,\"lightbulb\":61675,\"lighthouse\":58898,\"lights-holiday\":63410,\"line-columns\":63600,\"line-height\":63601,\"lines-leaning\":58654,\"link-horizontal-slash\":57804,\"link-horizontal\":57803,\"link-simple-slash\":57806,\"link-simple\":57805,\"link-slash\":61735,\"link\":61633,\"lips\":62976,\"lira-sign\":61845,\"list-check\":61614,\"list-dropdown\":57807,\"list-music\":63689,\"list-ol\":61643,\"list-radio\":57808,\"list-timeline\":57809,\"list-tree\":57810,\"list-ul\":61642,\"list\":61498,\"litecoin-sign\":57811,\"loader\":57812,\"lobster\":58401,\"location-arrow-up\":58938,\"location-arrow\":61732,\"location-check\":62982,\"location-crosshairs-slash\":62979,\"location-crosshairs\":62977,\"location-dot-slash\":62981,\"location-dot\":62405,\"location-exclamation\":62984,\"location-minus\":62985,\"location-pen\":62983,\"location-pin-lock\":58655,\"location-pin-slash\":62988,\"location-pin\":61505,\"location-plus\":62986,\"location-question\":62987,\"location-smile\":62989,\"location-xmark\":62990,\"lock-a\":58402,\"lock-hashtag\":58403,\"lock-keyhole-open\":62402,\"lock-keyhole\":62221,\"lock-open\":62401,\"lock\":61475,\"locust\":58656,\"lollipop\":58404,\"loveseat\":62668,\"luchador-mask\":62549,\"lungs-virus\":57447,\"lungs\":62980,\"m\":77,\"mace\":63224,\"magnet\":61558,\"magnifying-glass-arrow-right\":58657,\"magnifying-glass-arrows-rotate\":58974,\"magnifying-glass-chart\":58658,\"magnifying-glass-dollar\":63112,\"magnifying-glass-location\":63113,\"magnifying-glass-minus\":61456,\"magnifying-glass-music\":58975,\"magnifying-glass-play\":58976,\"magnifying-glass-plus\":61454,\"magnifying-glass-waveform\":58977,\"magnifying-glass\":61442,\"mailbox-flag-up\":58811,\"mailbox\":63507,\"manat-sign\":57813,\"mandolin\":63225,\"mango\":58127,\"manhole\":57814,\"map-location-dot\":62880,\"map-location\":62879,\"map-pin\":62070,\"map\":62073,\"marker\":62881,\"mars-and-venus-burst\":58659,\"mars-and-venus\":61988,\"mars-double\":61991,\"mars-stroke-right\":61995,\"mars-stroke-up\":61994,\"mars-stroke\":61993,\"mars\":61986,\"martini-glass-citrus\":62817,\"martini-glass-empty\":61440,\"martini-glass\":62843,\"mask-face\":57815,\"mask-snorkel\":58295,\"mask-ventilator\":58660,\"mask\":63226,\"masks-theater\":63024,\"mattress-pillow\":58661,\"maximize\":62238,\"meat\":63508,\"medal\":62882,\"megaphone\":63093,\"melon-slice\":58129,\"melon\":58128,\"memo-circle-check\":57817,\"memo-circle-info\":58522,\"memo-pad\":57818,\"memo\":57816,\"memory\":62776,\"menorah\":63094,\"mercury\":61987,\"merge\":58662,\"message-arrow-down\":57819,\"message-arrow-up-right\":57821,\"message-arrow-up\":57820,\"message-bot\":58296,\"message-captions\":57822,\"message-check\":62626,\"message-code\":57823,\"message-dollar\":63056,\"message-dots\":62627,\"message-exclamation\":62629,\"message-heart\":58825,\"message-image\":57824,\"message-lines\":62630,\"message-medical\":63476,\"message-middle-top\":57826,\"message-middle\":57825,\"message-minus\":62631,\"message-music\":63663,\"message-pen\":62628,\"message-plus\":62632,\"message-question\":57827,\"message-quote\":57828,\"message-slash\":62633,\"message-smile\":62634,\"message-sms\":57829,\"message-text\":57830,\"message-xmark\":62635,\"message\":62074,\"messages-dollar\":63058,\"messages-question\":57831,\"messages\":62646,\"meteor\":63315,\"meter-bolt\":57833,\"meter-droplet\":57834,\"meter-fire\":57835,\"meter\":57832,\"microchip-ai\":57836,\"microchip\":62171,\"microphone-lines-slash\":62777,\"microphone-lines\":62409,\"microphone-slash\":61745,\"microphone-stand\":63691,\"microphone\":61744,\"microscope\":62992,\"microwave\":57371,\"mill-sign\":57837,\"minimize\":63372,\"minus\":61544,\"mistletoe\":63412,\"mitten\":63413,\"mobile-button\":61707,\"mobile-notch\":57838,\"mobile-retro\":58663,\"mobile-screen-button\":62413,\"mobile-screen\":62415,\"mobile-signal-out\":57840,\"mobile-signal\":57839,\"mobile\":62414,\"money-bill-1-wave\":62779,\"money-bill-1\":62417,\"money-bill-simple-wave\":57842,\"money-bill-simple\":57841,\"money-bill-transfer\":58664,\"money-bill-trend-up\":58665,\"money-bill-wave\":62778,\"money-bill-wheat\":58666,\"money-bill\":61654,\"money-bills-simple\":57844,\"money-bills\":57843,\"money-check-dollar-pen\":63603,\"money-check-dollar\":62781,\"money-check-pen\":63602,\"money-check\":62780,\"money-from-bracket\":58130,\"money-simple-from-bracket\":58131,\"monitor-waveform\":62993,\"monkey\":63227,\"monument\":62886,\"moon-cloud\":63316,\"moon-over-sun\":63306,\"moon-stars\":63317,\"moon\":61830,\"moped\":58297,\"mortar-pestle\":62887,\"mosque\":63096,\"mosquito-net\":58668,\"mosquito\":58667,\"motorcycle\":61980,\"mound\":58669,\"mountain-city\":58670,\"mountain-sun\":58671,\"mountain\":63228,\"mountains\":63229,\"mouse-field\":58792,\"mp3-player\":63694,\"mug-hot\":63414,\"mug-marshmallows\":63415,\"mug-saucer\":61684,\"mug-tea-saucer\":57845,\"mug-tea\":63605,\"mug\":63604,\"mushroom\":58405,\"music-magnifying-glass\":58978,\"music-note-slash\":63696,\"music-note\":63695,\"music-slash\":63697,\"music\":61441,\"mustache\":58812,\"n\":78,\"naira-sign\":57846,\"narwhal\":63230,\"nesting-dolls\":58298,\"network-wired\":63231,\"neuter\":61996,\"newspaper\":61930,\"nfc-lock\":57848,\"nfc-magnifying-glass\":57849,\"nfc-pen\":57850,\"nfc-signal\":57851,\"nfc-slash\":57852,\"nfc-symbol\":58673,\"nfc-trash\":57853,\"nfc\":57847,\"nose\":58813,\"not-equal\":62782,\"notdef\":57854,\"note-medical\":57856,\"note-sticky\":62025,\"note\":57855,\"notebook\":57857,\"notes-medical\":62593,\"notes\":57858,\"o\":79,\"object-exclude\":58524,\"object-group\":62023,\"object-intersect\":58525,\"object-subtract\":58526,\"object-ungroup\":62024,\"object-union\":58527,\"objects-align-bottom\":58299,\"objects-align-center-horizontal\":58300,\"objects-align-center-vertical\":58301,\"objects-align-left\":58302,\"objects-align-right\":58303,\"objects-align-top\":58304,\"objects-column\":58305,\"octagon-check\":58406,\"octagon-divide\":57859,\"octagon-exclamation\":57860,\"octagon-minus\":62216,\"octagon-plus\":62209,\"octagon-xmark\":62192,\"octagon\":62214,\"octopus\":59016,\"oil-can-drip\":57861,\"oil-can\":62995,\"oil-temperature\":62996,\"oil-well\":58674,\"olive-branch\":58135,\"olive\":58134,\"om\":63097,\"omega\":63098,\"onion\":58407,\"option\":58136,\"ornament\":63416,\"otter\":63232,\"outdent\":61499,\"outlet\":57372,\"oven\":57373,\"overline\":63606,\"p\":80,\"page-caret-down\":58409,\"page-caret-up\":58410,\"page\":58408,\"pager\":63509,\"paint-roller\":62890,\"paintbrush-fine\":62889,\"paintbrush-pencil\":57862,\"paintbrush\":61948,\"palette\":62783,\"pallet-box\":57864,\"pallet-boxes\":62595,\"pallet\":62594,\"pan-food\":58411,\"pan-frying\":58412,\"pancakes\":58413,\"panel-ews\":58414,\"panel-fire\":58415,\"panorama\":57865,\"paper-plane-top\":57866,\"paper-plane\":61912,\"paperclip-vertical\":58306,\"paperclip\":61638,\"parachute-box\":62669,\"paragraph-left\":63608,\"paragraph\":61917,\"party-bell\":58138,\"party-horn\":58139,\"passport\":62891,\"paste\":61674,\"pause\":61516,\"paw-claws\":63234,\"paw-simple\":63233,\"paw\":61872,\"peace\":63100,\"peach\":57867,\"peanut\":58416,\"peanuts\":58417,\"peapod\":58140,\"pear\":57868,\"pedestal\":57869,\"pegasus\":63235,\"pen-circle\":57870,\"pen-clip-slash\":57871,\"pen-clip\":62213,\"pen-fancy-slash\":57872,\"pen-fancy\":62892,\"pen-field\":57873,\"pen-line\":57874,\"pen-nib-slash\":58529,\"pen-nib\":62893,\"pen-paintbrush\":63000,\"pen-ruler\":62894,\"pen-slash\":57875,\"pen-swirl\":57876,\"pen-to-square\":61508,\"pen\":62212,\"pencil-mechanical\":58826,\"pencil-slash\":57877,\"pencil\":62211,\"people-arrows\":57448,\"people-carry-box\":62670,\"people-dress-simple\":57880,\"people-dress\":57879,\"people-group\":58675,\"people-line\":58676,\"people-pants-simple\":57882,\"people-pants\":57881,\"people-pulling\":58677,\"people-robbery\":58678,\"people-roof\":58679,\"people-simple\":57883,\"people\":57878,\"pepper-hot\":63510,\"pepper\":58418,\"percent\":37,\"period\":46,\"person-arrow-down-to-line\":58680,\"person-arrow-up-from-line\":58681,\"person-biking-mountain\":63563,\"person-biking\":63562,\"person-booth\":63318,\"person-breastfeeding\":58682,\"person-burst\":58683,\"person-cane\":58684,\"person-carry-box\":62671,\"person-chalkboard\":58685,\"person-circle-check\":58686,\"person-circle-exclamation\":58687,\"person-circle-minus\":58688,\"person-circle-plus\":58689,\"person-circle-question\":58690,\"person-circle-xmark\":58691,\"person-digging\":63582,\"person-dolly-empty\":62673,\"person-dolly\":62672,\"person-dots-from-line\":62576,\"person-dress-burst\":58692,\"person-dress-fairy\":58887,\"person-dress-simple\":57884,\"person-dress\":61826,\"person-drowning\":58693,\"person-fairy\":58888,\"person-falling-burst\":58695,\"person-falling\":58694,\"person-from-portal\":57379,\"person-half-dress\":58696,\"person-harassing\":58697,\"person-hiking\":63212,\"person-military-pointing\":58698,\"person-military-rifle\":58699,\"person-military-to-person\":58700,\"person-pinball\":57885,\"person-praying\":63107,\"person-pregnant\":58142,\"person-rays\":58701,\"person-rifle\":58702,\"person-running-fast\":58879,\"person-running\":63244,\"person-seat-reclined\":57887,\"person-seat\":57886,\"person-shelter\":58703,\"person-sign\":63319,\"person-simple\":57888,\"person-skating\":63429,\"person-ski-jumping\":63431,\"person-ski-lift\":63432,\"person-skiing-nordic\":63434,\"person-skiing\":63433,\"person-sledding\":63435,\"person-snowboarding\":63438,\"person-snowmobiling\":63441,\"person-swimming\":62916,\"person-through-window\":58793,\"person-to-door\":58419,\"person-to-portal\":57378,\"person-walking-arrow-loop-left\":58705,\"person-walking-arrow-right\":58706,\"person-walking-dashed-line-arrow-right\":58707,\"person-walking-luggage\":58708,\"person-walking-with-cane\":62109,\"person-walking\":62804,\"person\":61827,\"peseta-sign\":57889,\"peso-sign\":57890,\"phone-arrow-down-left\":57891,\"phone-arrow-right\":58814,\"phone-arrow-up-right\":57892,\"phone-flip\":63609,\"phone-hangup\":57893,\"phone-intercom\":58420,\"phone-missed\":57894,\"phone-office\":63101,\"phone-plus\":62674,\"phone-rotary\":63699,\"phone-slash\":62429,\"phone-volume\":62112,\"phone-xmark\":57895,\"phone\":61589,\"photo-film-music\":57896,\"photo-film\":63612,\"pi\":63102,\"piano-keyboard\":63701,\"piano\":63700,\"pickaxe\":58815,\"pickleball\":58421,\"pie\":63237,\"pig\":63238,\"piggy-bank\":62675,\"pills\":62596,\"pinata\":58307,\"pinball\":57897,\"pineapple\":58143,\"pipe-circle-check\":58422,\"pipe-collar\":58423,\"pipe-section\":58424,\"pipe-smoking\":58308,\"pipe-valve\":58425,\"pipe\":124,\"pizza-slice\":63512,\"pizza\":63511,\"place-of-worship\":63103,\"plane-arrival\":62895,\"plane-circle-check\":58709,\"plane-circle-exclamation\":58710,\"plane-circle-xmark\":58711,\"plane-departure\":62896,\"plane-engines\":62430,\"plane-lock\":58712,\"plane-prop\":57899,\"plane-slash\":57449,\"plane-tail\":57900,\"plane-up-slash\":57902,\"plane-up\":57901,\"plane\":61554,\"planet-moon\":57375,\"planet-ringed\":57376,\"plant-wilt\":58794,\"plate-utensils\":58427,\"plate-wheat\":58714,\"play-pause\":57903,\"play\":61515,\"plug-circle-bolt\":58715,\"plug-circle-check\":58716,\"plug-circle-exclamation\":58717,\"plug-circle-minus\":58718,\"plug-circle-plus\":58719,\"plug-circle-xmark\":58720,\"plug\":61926,\"plus-large\":58782,\"plus-minus\":58428,\"plus\":43,\"podcast\":62158,\"podium-star\":63320,\"podium\":63104,\"police-box\":57377,\"poll-people\":63321,\"pompebled\":58429,\"poo-storm\":63322,\"poo\":62206,\"pool-8-ball\":58309,\"poop\":63001,\"popcorn\":63513,\"popsicle\":58430,\"pot-food\":58431,\"potato\":58432,\"power-off\":61457,\"prescription-bottle-medical\":62598,\"prescription-bottle-pill\":58816,\"prescription-bottle\":62597,\"prescription\":62897,\"presentation-screen\":63109,\"pretzel\":58433,\"print-magnifying-glass\":63514,\"print-slash\":63110,\"print\":61487,\"projector\":63702,\"pump-medical\":57450,\"pump-soap\":57451,\"pump\":58434,\"pumpkin\":63239,\"puzzle-piece-simple\":57905,\"puzzle-piece\":61742,\"puzzle\":58435,\"q\":81,\"qrcode\":61481,\"question\":63,\"quote-left\":61709,\"quote-right\":61710,\"quotes\":57908,\"r\":82,\"rabbit-running\":63241,\"rabbit\":63240,\"raccoon\":58899,\"racquet\":62554,\"radar\":57380,\"radiation\":63417,\"radio-tuner\":63704,\"radio\":63703,\"rainbow\":63323,\"raindrops\":63324,\"ram\":63242,\"ramp-loading\":62676,\"ranking-star\":58721,\"raygun\":57381,\"receipt\":62787,\"record-vinyl\":63705,\"rectangle-ad\":63041,\"rectangle-barcode\":62563,\"rectangle-code\":58146,\"rectangle-history-circle-plus\":58531,\"rectangle-history-circle-user\":58532,\"rectangle-history\":58530,\"rectangle-list\":61474,\"rectangle-pro\":57909,\"rectangle-terminal\":57910,\"rectangle-vertical-history\":57911,\"rectangle-vertical\":62203,\"rectangle-wide\":62204,\"rectangle-xmark\":62480,\"rectangle\":62202,\"rectangles-mixed\":58147,\"recycle\":61880,\"reel\":57912,\"reflect-both\":58991,\"reflect-horizontal\":58980,\"reflect-vertical\":58981,\"refrigerator\":57382,\"registered\":62045,\"repeat-1\":62309,\"repeat\":62307,\"reply-all\":61730,\"reply-clock\":57913,\"reply\":62437,\"republican\":63326,\"restroom-simple\":57914,\"restroom\":63421,\"retweet\":61561,\"rhombus\":57915,\"ribbon\":62678,\"right-from-bracket\":62197,\"right-from-line\":62279,\"right-left-large\":58849,\"right-left\":62306,\"right-long-to-line\":58436,\"right-long\":62219,\"right-to-bracket\":62198,\"right-to-line\":62284,\"right\":62294,\"ring-diamond\":58795,\"ring\":63243,\"rings-wedding\":63515,\"road-barrier\":58722,\"road-bridge\":58723,\"road-circle-check\":58724,\"road-circle-exclamation\":58725,\"road-circle-xmark\":58726,\"road-lock\":58727,\"road-spikes\":58728,\"road\":61464,\"robot-astromech\":58066,\"robot\":62788,\"rocket-launch\":57383,\"rocket\":61749,\"roller-coaster\":58148,\"rotate-exclamation\":57916,\"rotate-left\":62186,\"rotate-reverse\":58929,\"rotate-right\":62201,\"rotate\":62193,\"route-highway\":63002,\"route-interstate\":63003,\"route\":62679,\"router\":63706,\"rss\":61598,\"ruble-sign\":61784,\"rug\":58729,\"rugby-ball\":58310,\"ruler-combined\":62790,\"ruler-horizontal\":62791,\"ruler-triangle\":63004,\"ruler-vertical\":62792,\"ruler\":62789,\"rupee-sign\":61782,\"rupiah-sign\":57917,\"rv\":63422,\"s\":83,\"sack-dollar\":63517,\"sack-xmark\":58730,\"sack\":63516,\"sailboat\":58437,\"salad\":63518,\"salt-shaker\":58438,\"sandwich\":63519,\"satellite-dish\":63424,\"satellite\":63423,\"sausage\":63520,\"saxophone-fire\":63707,\"saxophone\":63708,\"scale-balanced\":62030,\"scale-unbalanced-flip\":62742,\"scale-unbalanced\":62741,\"scalpel-line-dashed\":63006,\"scalpel\":63005,\"scanner-gun\":62600,\"scanner-image\":63731,\"scanner-keyboard\":62601,\"scanner-touchscreen\":62602,\"scarecrow\":63245,\"scarf\":63425,\"school-circle-check\":58731,\"school-circle-exclamation\":58732,\"school-circle-xmark\":58733,\"school-flag\":58734,\"school-lock\":58735,\"school\":62793,\"scissors\":61636,\"screen-users\":63037,\"screencast\":57918,\"screwdriver-wrench\":63449,\"screwdriver\":62794,\"scribble\":57919,\"scroll-old\":63247,\"scroll-torah\":63136,\"scroll\":63246,\"scrubber\":62200,\"scythe\":63248,\"sd-card\":63426,\"sd-cards\":57920,\"seal-exclamation\":57922,\"seal-question\":57923,\"seal\":57921,\"seat-airline\":57924,\"section\":58439,\"seedling\":62680,\"semicolon\":59,\"send-back\":63614,\"send-backward\":63615,\"sensor-cloud\":57388,\"sensor-fire\":57386,\"sensor-on\":57387,\"sensor-triangle-exclamation\":57385,\"sensor\":57384,\"server\":62003,\"shapes\":63007,\"share-all\":62311,\"share-from-square\":61773,\"share-nodes\":61920,\"share\":61540,\"sheep\":63249,\"sheet-plastic\":58737,\"shekel-sign\":61963,\"shelves-empty\":57926,\"shelves\":62592,\"shield-cat\":58738,\"shield-check\":62199,\"shield-cross\":63250,\"shield-dog\":58739,\"shield-exclamation\":57927,\"shield-halved\":62445,\"shield-heart\":58740,\"shield-keyhole\":57928,\"shield-minus\":57929,\"shield-plus\":57930,\"shield-quartered\":58741,\"shield-slash\":57931,\"shield-virus\":57452,\"shield-xmark\":57932,\"shield\":61746,\"ship\":61978,\"shirt-long-sleeve\":58311,\"shirt-running\":58312,\"shirt-tank-top\":58313,\"shirt\":62803,\"shish-kebab\":63521,\"shoe-prints\":62795,\"shop-lock\":58533,\"shop-slash\":57456,\"shop\":62799,\"shovel-snow\":63427,\"shovel\":63251,\"shower-down\":57933,\"shower\":62156,\"shredder\":63114,\"shrimp\":58440,\"shuffle\":61556,\"shutters\":58441,\"shuttle-space\":61847,\"shuttlecock\":62555,\"sickle\":63522,\"sidebar-flip\":57935,\"sidebar\":57934,\"sigma\":63115,\"sign-hanging\":62681,\"sign-post\":58916,\"sign-posts-wrench\":58918,\"sign-posts\":58917,\"signal-bars-fair\":63122,\"signal-bars-good\":63123,\"signal-bars-slash\":63124,\"signal-bars-weak\":63121,\"signal-bars\":63120,\"signal-fair\":63117,\"signal-good\":63118,\"signal-slash\":63125,\"signal-stream-slash\":57936,\"signal-stream\":63709,\"signal-strong\":63119,\"signal-weak\":63116,\"signal\":61458,\"signature-lock\":58314,\"signature-slash\":58315,\"signature\":62903,\"signs-post\":62071,\"sim-card\":63428,\"sim-cards\":57937,\"sink\":57453,\"siren-on\":57390,\"siren\":57389,\"sitemap\":61672,\"skeleton-ribs\":58827,\"skeleton\":63008,\"ski-boot-ski\":58317,\"ski-boot\":58316,\"skull-cow\":63710,\"skull-crossbones\":63252,\"skull\":62796,\"slash-back\":92,\"slash-forward\":47,\"slash\":63253,\"sleigh\":63436,\"slider\":57938,\"sliders-simple\":57939,\"sliders-up\":62449,\"sliders\":61918,\"slot-machine\":58318,\"smog\":63327,\"smoke\":63328,\"smoking\":62605,\"snake\":63254,\"snooze\":63616,\"snow-blowing\":63329,\"snowflake-droplets\":58817,\"snowflake\":62172,\"snowflakes\":63439,\"snowman-head\":63387,\"snowman\":63440,\"snowplow\":63442,\"soap\":57454,\"socks\":63126,\"soft-serve\":58368,\"solar-panel\":62906,\"solar-system\":57391,\"sort-down\":61661,\"sort-up\":61662,\"sort\":61660,\"spa\":62907,\"space-station-moon-construction\":57396,\"space-station-moon\":57395,\"spade\":62196,\"spaghetti-monster-flying\":63099,\"sparkle\":58838,\"sparkles\":63632,\"speaker\":63711,\"speakers\":63712,\"spell-check\":63633,\"spider-black-widow\":63256,\"spider-web\":63257,\"spider\":63255,\"spinner-scale\":58922,\"spinner-third\":62452,\"spinner\":61712,\"split\":57940,\"splotch\":62908,\"spoon\":62181,\"sportsball\":58443,\"spray-can-sparkles\":62928,\"spray-can\":62909,\"sprinkler-ceiling\":58444,\"sprinkler\":57397,\"square-0\":57941,\"square-1\":57942,\"square-2\":57943,\"square-3\":57944,\"square-4\":57945,\"square-5\":57946,\"square-6\":57947,\"square-7\":57948,\"square-8\":57949,\"square-9\":57950,\"square-a-lock\":58445,\"square-a\":57951,\"square-ampersand\":57952,\"square-arrow-down-left\":57953,\"square-arrow-down-right\":57954,\"square-arrow-down\":62265,\"square-arrow-left\":62266,\"square-arrow-right\":62267,\"square-arrow-up-left\":57955,\"square-arrow-up-right\":61772,\"square-arrow-up\":62268,\"square-b\":57956,\"square-binary\":59035,\"square-bolt\":57957,\"square-c\":57958,\"square-caret-down\":61776,\"square-caret-left\":61841,\"square-caret-right\":61778,\"square-caret-up\":61777,\"square-check\":61770,\"square-chevron-down\":62249,\"square-chevron-left\":62250,\"square-chevron-right\":62251,\"square-chevron-up\":62252,\"square-code\":57959,\"square-d\":57960,\"square-dashed-circle-plus\":58818,\"square-dashed\":57961,\"square-divide\":57962,\"square-dollar\":62185,\"square-down-left\":57963,\"square-down-right\":57964,\"square-down\":62288,\"square-e\":57965,\"square-ellipsis-vertical\":57967,\"square-ellipsis\":57966,\"square-envelope\":61849,\"square-exclamation\":62241,\"square-f\":57968,\"square-fragile\":62619,\"square-full\":62556,\"square-g\":57969,\"square-h\":61693,\"square-heart\":62664,\"square-i\":57970,\"square-info\":62223,\"square-j\":57971,\"square-k\":57972,\"square-kanban\":58504,\"square-l\":57973,\"square-left\":62289,\"square-list\":58505,\"square-m\":57974,\"square-minus\":61766,\"square-n\":57975,\"square-nfi\":58742,\"square-o\":57976,\"square-p\":57977,\"square-parking-slash\":62999,\"square-parking\":62784,\"square-pen\":61771,\"square-person-confined\":58743,\"square-phone-flip\":63611,\"square-phone-hangup\":57978,\"square-phone\":61592,\"square-plus\":61694,\"square-poll-horizontal\":63106,\"square-poll-vertical\":63105,\"square-q\":57979,\"square-quarters\":58446,\"square-question\":62205,\"square-quote\":58153,\"square-r\":57980,\"square-right\":62290,\"square-ring\":58447,\"square-root-variable\":63128,\"square-root\":63127,\"square-rss\":61763,\"square-s\":57981,\"square-share-nodes\":61921,\"square-sliders-vertical\":62450,\"square-sliders\":62448,\"square-small\":57982,\"square-star\":57983,\"square-t\":57984,\"square-terminal\":58154,\"square-this-way-up\":62623,\"square-u\":57985,\"square-up-left\":57986,\"square-up-right\":62304,\"square-up\":62291,\"square-user\":57987,\"square-v\":57988,\"square-virus\":58744,\"square-w\":57989,\"square-x\":57990,\"square-xmark\":62163,\"square-y\":57991,\"square-z\":57992,\"square\":61640,\"squid\":58448,\"squirrel\":63258,\"staff-snake\":58745,\"staff\":63259,\"stairs\":57993,\"stamp\":62911,\"standard-definition\":57994,\"stapler\":58799,\"star-and-crescent\":63129,\"star-christmas\":63444,\"star-exclamation\":62195,\"star-half-stroke\":62912,\"star-half\":61577,\"star-of-david\":63130,\"star-of-life\":63009,\"star-sharp-half-stroke\":57997,\"star-sharp-half\":57996,\"star-sharp\":57995,\"star-shooting\":57398,\"star\":61445,\"starfighter-twin-ion-engine-advanced\":57998,\"starfighter-twin-ion-engine\":57400,\"starfighter\":57399,\"stars\":63330,\"starship-freighter\":57402,\"starship\":57401,\"steak\":63524,\"steering-wheel\":63010,\"sterling-sign\":61780,\"stethoscope\":61681,\"stocking\":63445,\"stomach\":63011,\"stop\":61517,\"stopwatch-20\":57455,\"stopwatch\":62194,\"store-lock\":58534,\"store-slash\":57457,\"store\":62798,\"strawberry\":58155,\"street-view\":61981,\"stretcher\":63525,\"strikethrough\":61644,\"stroopwafel\":62801,\"subscript\":61740,\"subtitles-slash\":58896,\"subtitles\":58895,\"suitcase-medical\":61690,\"suitcase-rolling\":62913,\"suitcase\":61682,\"sun-bright\":57999,\"sun-cloud\":63331,\"sun-dust\":63332,\"sun-haze\":63333,\"sun-plant-wilt\":58746,\"sun\":61829,\"sunglasses\":63634,\"sunrise\":63334,\"sunset\":63335,\"superscript\":61739,\"sushi-roll\":58507,\"sushi\":58506,\"swap-arrows\":58890,\"swap\":58889,\"swatchbook\":62915,\"sword-laser-alt\":57404,\"sword-laser\":57403,\"sword\":63260,\"swords-laser\":57405,\"swords\":63261,\"symbols\":63598,\"synagogue\":63131,\"syringe\":62606,\"t-rex\":58921,\"t\":84,\"table-cells-column-lock\":59000,\"table-cells-column-unlock\":59024,\"table-cells-large\":61449,\"table-cells-lock\":59001,\"table-cells-row-lock\":59002,\"table-cells-row-unlock\":59025,\"table-cells-unlock\":59026,\"table-cells\":61450,\"table-columns\":61659,\"table-layout\":58000,\"table-list\":61451,\"table-picnic\":58157,\"table-pivot\":58001,\"table-rows\":58002,\"table-tennis-paddle-ball\":62557,\"table-tree\":58003,\"table\":61646,\"tablet-button\":61706,\"tablet-rugged\":62607,\"tablet-screen-button\":62458,\"tablet-screen\":62460,\"tablet\":62459,\"tablets\":62608,\"tachograph-digital\":62822,\"taco\":63526,\"tag\":61483,\"tags\":61484,\"tally-1\":58004,\"tally-2\":58005,\"tally-3\":58006,\"tally-4\":58007,\"tally\":63132,\"tamale\":58449,\"tank-water\":58450,\"tape\":62683,\"tarp-droplet\":58748,\"tarp\":58747,\"taxi-bus\":58008,\"taxi\":61882,\"teddy-bear\":58319,\"teeth-open\":63023,\"teeth\":63022,\"telescope\":57406,\"temperature-arrow-down\":57407,\"temperature-arrow-up\":57408,\"temperature-empty\":62155,\"temperature-full\":62151,\"temperature-half\":62153,\"temperature-high\":63337,\"temperature-list\":58009,\"temperature-low\":63339,\"temperature-quarter\":62154,\"temperature-snow\":63336,\"temperature-sun\":63338,\"temperature-three-quarters\":62152,\"tenge-sign\":63447,\"tennis-ball\":62558,\"tent-arrow-down-to-line\":58750,\"tent-arrow-left-right\":58751,\"tent-arrow-turn-left\":58752,\"tent-arrows-down\":58753,\"tent-double-peak\":58919,\"tent\":58749,\"tents\":58754,\"terminal\":61728,\"text-height\":61492,\"text-size\":63636,\"text-slash\":63613,\"text-width\":61493,\"text\":63635,\"thermometer\":62609,\"theta\":63134,\"thought-bubble\":58158,\"thumbs-down\":61797,\"thumbs-up\":61796,\"thumbtack-slash\":59023,\"thumbtack\":61581,\"tick\":58159,\"ticket-airline\":58010,\"ticket-perforated\":58942,\"ticket-simple\":62463,\"ticket\":61765,\"tickets-airline\":58011,\"tickets-perforated\":58943,\"tickets-simple\":58969,\"tickets\":58968,\"tilde\":126,\"timeline-arrow\":58013,\"timeline\":58012,\"timer\":58014,\"tire-flat\":63026,\"tire-pressure-warning\":63027,\"tire-rugged\":63028,\"tire\":63025,\"toggle-large-off\":58800,\"toggle-large-on\":58801,\"toggle-off\":61956,\"toggle-on\":61957,\"toilet-paper-blank-under\":58015,\"toilet-paper-blank\":63263,\"toilet-paper-check\":58802,\"toilet-paper-slash\":57458,\"toilet-paper-under-slash\":58017,\"toilet-paper-under\":58016,\"toilet-paper-xmark\":58803,\"toilet-paper\":63262,\"toilet-portable\":58755,\"toilet\":63448,\"toilets-portable\":58756,\"tomato\":58160,\"tombstone-blank\":63265,\"tombstone\":63264,\"toolbox\":62802,\"tooth\":62921,\"toothbrush\":63029,\"torii-gate\":63137,\"tornado\":63343,\"tower-broadcast\":62745,\"tower-cell\":58757,\"tower-control\":58018,\"tower-observation\":58758,\"tractor\":63266,\"trademark\":62044,\"traffic-cone\":63030,\"traffic-light-go\":63032,\"traffic-light-slow\":63033,\"traffic-light-stop\":63034,\"traffic-light\":63031,\"trailer\":57409,\"train-subway-tunnel\":58019,\"train-subway\":62009,\"train-track\":58451,\"train-tram\":58804,\"train-tunnel\":58452,\"train\":62008,\"transformer-bolt\":58020,\"transgender\":61989,\"transporter-1\":57411,\"transporter-2\":57412,\"transporter-3\":57413,\"transporter-4\":58021,\"transporter-5\":58022,\"transporter-6\":58023,\"transporter-7\":58024,\"transporter-empty\":57414,\"transporter\":57410,\"trash-arrow-up\":63529,\"trash-can-arrow-up\":63530,\"trash-can-check\":58025,\"trash-can-clock\":58026,\"trash-can-list\":58027,\"trash-can-plus\":58028,\"trash-can-slash\":58029,\"trash-can-undo\":63638,\"trash-can-xmark\":58030,\"trash-can\":62189,\"trash-check\":58031,\"trash-clock\":58032,\"trash-list\":58033,\"trash-plus\":58034,\"trash-slash\":58035,\"trash-undo\":63637,\"trash-xmark\":58036,\"trash\":61944,\"treasure-chest\":63267,\"tree-christmas\":63451,\"tree-city\":58759,\"tree-deciduous\":62464,\"tree-decorated\":63452,\"tree-large\":63453,\"tree-palm\":63531,\"tree\":61883,\"trees\":63268,\"triangle-exclamation\":61553,\"triangle-instrument\":63714,\"triangle-person-digging\":63581,\"triangle\":62188,\"tricycle-adult\":58820,\"tricycle\":58819,\"trillium\":58760,\"trophy-star\":62187,\"trophy\":61585,\"trowel-bricks\":58762,\"trowel\":58761,\"truck-arrow-right\":58763,\"truck-bolt\":58320,\"truck-clock\":62604,\"truck-container-empty\":58037,\"truck-container\":62684,\"truck-droplet\":58764,\"truck-fast\":62603,\"truck-field-un\":58766,\"truck-field\":58765,\"truck-fire\":58970,\"truck-flatbed\":58038,\"truck-front\":58039,\"truck-ladder\":58967,\"truck-medical\":61689,\"truck-monster\":63035,\"truck-moving\":62687,\"truck-pickup\":63036,\"truck-plane\":58767,\"truck-plow\":63454,\"truck-ramp-box\":62686,\"truck-ramp-couch\":62685,\"truck-ramp\":62688,\"truck-tow\":58040,\"truck-utensils\":58920,\"truck\":61649,\"trumpet\":63715,\"tty-answer\":58041,\"tty\":61924,\"tugrik-sign\":58042,\"turkey\":63269,\"turkish-lira-sign\":58043,\"turn-down-left\":58161,\"turn-down-right\":58453,\"turn-down\":62398,\"turn-left-down\":58935,\"turn-left-up\":58936,\"turn-left\":58934,\"turn-right\":58937,\"turn-up\":62399,\"turntable\":63716,\"turtle\":63270,\"tv-music\":63718,\"tv-retro\":62465,\"tv\":62060,\"typewriter\":63719,\"u\":85,\"ufo-beam\":57416,\"ufo\":57415,\"umbrella-beach\":62922,\"umbrella-simple\":58044,\"umbrella\":61673,\"underline\":61645,\"unicorn\":63271,\"uniform-martial-arts\":58321,\"union\":63138,\"universal-access\":62106,\"unlock-keyhole\":61758,\"unlock\":61596,\"up-down-left-right\":61618,\"up-down\":62264,\"up-from-bracket\":58768,\"up-from-dotted-line\":58454,\"up-from-line\":62278,\"up-left\":58045,\"up-long\":62220,\"up-right-and-down-left-from-center\":62500,\"up-right-from-square\":62301,\"up-right\":58046,\"up-to-bracket\":58990,\"up-to-dotted-line\":58455,\"up-to-line\":62285,\"up\":62295,\"upload\":61587,\"usb-drive\":63721,\"user-alien\":57418,\"user-astronaut\":62715,\"user-beard-bolt\":59017,\"user-bounty-hunter\":58047,\"user-check\":62716,\"user-chef\":58322,\"user-clock\":62717,\"user-cowboy\":63722,\"user-crown\":63140,\"user-doctor-hair-long\":58457,\"user-doctor-hair\":58456,\"user-doctor-message\":63534,\"user-doctor\":61680,\"user-gear\":62718,\"user-graduate\":62721,\"user-group-crown\":63141,\"user-group-simple\":58883,\"user-group\":62720,\"user-hair-buns\":58323,\"user-hair-long\":58459,\"user-hair-mullet\":58460,\"user-hair\":58458,\"user-headset\":63533,\"user-helmet-safety\":63532,\"user-hoodie\":59018,\"user-injured\":63272,\"user-large-slash\":62714,\"user-large\":62470,\"user-lock\":62722,\"user-magnifying-glass\":58821,\"user-minus\":62723,\"user-music\":63723,\"user-ninja\":62724,\"user-nurse-hair-long\":58462,\"user-nurse-hair\":58461,\"user-nurse\":63535,\"user-pen\":62719,\"user-pilot-tie\":58049,\"user-pilot\":58048,\"user-plus\":62004,\"user-police-tie\":58164,\"user-police\":58163,\"user-robot-xmarks\":58535,\"user-robot\":57419,\"user-secret\":61979,\"user-shakespeare\":58050,\"user-shield\":62725,\"user-slash\":62726,\"user-tag\":62727,\"user-tie-hair-long\":58464,\"user-tie-hair\":58463,\"user-tie\":62728,\"user-unlock\":57432,\"user-visor\":57420,\"user-vneck-hair-long\":58467,\"user-vneck-hair\":58466,\"user-vneck\":58465,\"user-xmark\":62005,\"user\":61447,\"users-between-lines\":58769,\"users-gear\":62729,\"users-line\":58770,\"users-medical\":63536,\"users-rays\":58771,\"users-rectangle\":58772,\"users-slash\":57459,\"users-viewfinder\":58773,\"users\":61632,\"utensils-slash\":58468,\"utensils\":62183,\"utility-pole-double\":58052,\"utility-pole\":58051,\"v\":86,\"vacuum-robot\":57422,\"vacuum\":57421,\"value-absolute\":63142,\"van-shuttle\":62902,\"vault\":58053,\"vector-circle\":58054,\"vector-polygon\":58055,\"vector-square\":62923,\"vent-damper\":58469,\"venus-double\":61990,\"venus-mars\":61992,\"venus\":61985,\"vest-patches\":57478,\"vest\":57477,\"vial-circle-check\":58774,\"vial-virus\":58775,\"vial\":62610,\"vials\":62611,\"video-arrow-down-left\":58056,\"video-arrow-up-right\":58057,\"video-plus\":62689,\"video-slash\":62690,\"video\":61501,\"vihara\":63143,\"violin\":63725,\"virus-covid-slash\":58537,\"virus-covid\":58536,\"virus-slash\":57461,\"virus\":57460,\"viruses\":57462,\"voicemail\":63639,\"volcano\":63344,\"volleyball\":62559,\"volume-high\":61480,\"volume-low\":61479,\"volume-off\":61478,\"volume-slash\":62178,\"volume-xmark\":63145,\"volume\":63144,\"vr-cardboard\":63273,\"w\":87,\"waffle\":58470,\"wagon-covered\":63726,\"walker\":63537,\"walkie-talkie\":63727,\"wallet\":62805,\"wand-magic-sparkles\":58058,\"wand-magic\":61648,\"wand-sparkles\":63275,\"wand\":63274,\"warehouse-full\":62613,\"warehouse\":62612,\"washing-machine\":63640,\"watch-apple\":58059,\"watch-calculator\":63728,\"watch-fitness\":63038,\"watch-smart\":58060,\"watch\":62177,\"water-arrow-down\":63348,\"water-arrow-up\":63349,\"water-ladder\":62917,\"water\":63347,\"watermelon-slice\":58167,\"wave-pulse\":62968,\"wave-sine\":63641,\"wave-square\":63550,\"wave-triangle\":63642,\"wave\":58971,\"waveform-lines\":63730,\"waveform\":63729,\"waves-sine\":58973,\"web-awesome\":59010,\"webhook\":58837,\"weight-hanging\":62925,\"weight-scale\":62614,\"whale\":63276,\"wheat-awn-circle-exclamation\":58776,\"wheat-awn-slash\":58168,\"wheat-awn\":58061,\"wheat-slash\":58169,\"wheat\":63277,\"wheelchair-move\":58062,\"wheelchair\":61843,\"whiskey-glass-ice\":63393,\"whiskey-glass\":63392,\"whistle\":62560,\"wifi-exclamation\":58063,\"wifi-fair\":63147,\"wifi-slash\":63148,\"wifi-weak\":63146,\"wifi\":61931,\"wind-turbine\":63643,\"wind-warning\":63350,\"wind\":63278,\"window-flip\":62479,\"window-frame-open\":57424,\"window-frame\":57423,\"window-maximize\":62160,\"window-minimize\":62161,\"window-restore\":62162,\"window\":62478,\"windsock\":63351,\"wine-bottle\":63279,\"wine-glass-crack\":62651,\"wine-glass-empty\":62926,\"wine-glass\":62691,\"won-sign\":61785,\"worm\":58777,\"wreath-laurel\":58834,\"wreath\":63458,\"wrench-simple\":58065,\"wrench\":61613,\"x-ray\":62615,\"x\":88,\"xmark-large\":58779,\"xmark-to-slot\":63345,\"xmark\":61453,\"xmarks-lines\":58778,\"y\":89,\"yen-sign\":61783,\"yin-yang\":63149,\"z\":90}"
  },
  {
    "path": "packages/fontawesome6-pro/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontawesome6-pro\",\n  \"version\": \"12.4.0\",\n  \"description\": \"Fontawesome6 Pro font for react native vector icons\",\n  \"source\": \"./src/index.tsx\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"fontawesome6-pro\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/fontawesome6-pro\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\",\n    \"@react-native-vector-icons/fontawesome-common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/fontawesome6-pro/react-native-vector-icons-fontawesome6-pro.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-fontawesome6-pro'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\n\n  s.script_phase = {\n    name: 'Copy Custom Fonts',\n    execution_position: :after_compile,\n    script: <<~SCRIPT\n      set -e\n\n      HEAD=\"(RNVI-fontawesome6-pro)\"\n\n      echo \"${HEAD} START_COPY_FONTS\"\n\n      echo \"${HEAD} PWD: $(pwd)\"\n\n      #\n      # Find the custom font Directory\n      #\n\n      # Assume the project root is always two directories above the POD_ROOT\n      echo \"${HEAD} PODS_ROOT: $PODS_ROOT\"\n\n      PROJECT_ROOT=\"${PODS_ROOT}/../..\"\n      echo \"${HEAD} PROJECT_ROOT: $PROJECT_ROOT\"\n\n      cd $PROJECT_ROOT\n      FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/\"//g')\n      if [ -z \"$FONTS_DIR\" ]; then\n        FONTS_DIR=\"rnvi-fonts\"\n      fi\n      echo \"${HEAD} FONTS_DIR: $FONTS_DIR\"\n\n      FONTS_DIR=\"${PROJECT_ROOT}/${FONTS_DIR}/fontawesome6-pro\"\n      if [ ! -d \"$FONTS_DIR\" ]; then\n        echo \"${HEAD} $FONTS_DIR not found\"\n        exit 0\n      fi\n\n      #\n      # Find the destination we copy to\n      #\n\n      echo \"${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR\"\n      XCODE_DIR=$(ls -d \"$PODS_CONFIGURATION_BUILD_DIR\"/*.app)\n      echo \"${HEAD} XCODE_DIR: $XCODE_DIR\"\n      if [ -z \"$XCODE_DIR\" ]; then\n        echo \"Could not find XCODE_DIR to copy fonts to\"\n        exit 1\n      fi\n\n      DEST_DIR=\"${XCODE_DIR}\"\n      mkdir -p \"$DEST_DIR\"\n\n      #\n      # Copy the fonts\n      #\n\n      echo \"${HEAD} Copying the following files to $DEST_DIR\"\n      ls \"$FONTS_DIR\" | sed \"s/^/${HEAD} /\"\n\n      rsync -avr --copy-links --no-relative $FONTS_DIR/ \"$DEST_DIR\"\n\n      echo \"${HEAD} END:RNVI_COPY_FONTS\"\n    SCRIPT\n  }\nend\n"
  },
  {
    "path": "packages/fontawesome6-pro/src/index.tsx",
    "content": "/* eslint-disable react/jsx-pascal-case, no-console */\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * Instead, modify the template in `fontawesome-common/generator`.\n *\n * FontAwesome6Pro icon set component.\n * Usage: <FontAwesome6Pro name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport type { ComponentProps } from 'react';\nimport { Platform, type TextStyle } from 'react-native';\n\nimport { createIconSet, DEFAULT_ICON_COLOR, DEFAULT_ICON_SIZE } from '@react-native-vector-icons/common';\n\nimport brandGM from '../glyphmaps/FontAwesome6Pro_brand.json';\nimport duotoneGM from '../glyphmaps/FontAwesome6Pro_duotone.json';\nimport lightGM from '../glyphmaps/FontAwesome6Pro_light.json';\nimport regularGM from '../glyphmaps/FontAwesome6Pro_regular.json';\nimport sharpGM from '../glyphmaps/FontAwesome6Pro_sharp.json';\nimport sharpLightGM from '../glyphmaps/FontAwesome6Pro_sharpLight.json';\nimport sharpSolidGM from '../glyphmaps/FontAwesome6Pro_sharpSolid.json';\nimport sharpThinGM from '../glyphmaps/FontAwesome6Pro_sharpThin.json';\nimport solidGM from '../glyphmaps/FontAwesome6Pro_solid.json';\nimport thinGM from '../glyphmaps/FontAwesome6Pro_thin.json';\n\nimport metadata from '../glyphmaps/FontAwesome6Pro_meta.json';\n\nconst glyphValidator = (glyph: string, iconType: keyof typeof metadata) => metadata[iconType]?.includes(glyph);\n\nconst fontStyle = (fontWeight: TextStyle['fontWeight']) =>\n  Platform.select({\n    ios: {\n      fontWeight,\n    },\n    default: {},\n  });\n\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst ThinIcon = createIconSet(thinGM, {\n  postScriptName: 'FontAwesome6Pro-Thin',\n  fontFileName: 'FontAwesome6_Pro_Thin.ttf',\n  fontStyle: fontStyle('100')\n});\nexport type FontAwesome6ProThinIconName = keyof typeof thinGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst LightIcon = createIconSet(lightGM, {\n  postScriptName: 'FontAwesome6Pro-Light',\n  fontFileName: 'FontAwesome6_Pro_Light.ttf',\n  fontStyle: fontStyle('300')\n});\nexport type FontAwesome6ProLightIconName = keyof typeof lightGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst RegularIcon = createIconSet(regularGM, {\n  postScriptName: 'FontAwesome6Pro-Regular',\n  fontFileName: 'FontAwesome6_Pro_Regular.ttf',\n  fontStyle: fontStyle('400')\n});\nexport type FontAwesome6ProRegularIconName = keyof typeof regularGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst SolidIcon = createIconSet(solidGM, {\n  postScriptName: 'FontAwesome6Pro-Solid',\n  fontFileName: 'FontAwesome6_Pro_Solid.ttf',\n  fontStyle: fontStyle('900')\n});\nexport type FontAwesome6ProSolidIconName = keyof typeof solidGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst SharpThinIcon = createIconSet(sharpThinGM, {\n  postScriptName: 'FontAwesome6Sharp-Thin',\n  fontFileName: 'FontAwesome6_Pro_Sharp_Thin.ttf',\n  fontStyle: fontStyle('100')\n});\nexport type FontAwesome6ProSharpThinIconName = keyof typeof sharpThinGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst SharpLightIcon = createIconSet(sharpLightGM, {\n  postScriptName: 'FontAwesome6Sharp-Light',\n  fontFileName: 'FontAwesome6_Pro_Sharp_Light.ttf',\n  fontStyle: fontStyle('300')\n});\nexport type FontAwesome6ProSharpLightIconName = keyof typeof sharpLightGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst SharpIcon = createIconSet(sharpGM, {\n  postScriptName: 'FontAwesome6Sharp-Regular',\n  fontFileName: 'FontAwesome6_Pro_Sharp_Regular.ttf',\n  fontStyle: fontStyle('400')\n});\nexport type FontAwesome6ProSharpIconName = keyof typeof sharpGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst SharpSolidIcon = createIconSet(sharpSolidGM, {\n  postScriptName: 'FontAwesome6Sharp-Solid',\n  fontFileName: 'FontAwesome6_Pro_Sharp_Solid.ttf',\n  fontStyle: fontStyle('900')\n});\nexport type FontAwesome6ProSharpSolidIconName = keyof typeof sharpSolidGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst DuotoneIcon = createIconSet(duotoneGM, {\n  postScriptName: 'FontAwesome6Duotone-Solid',\n  fontFileName: 'FontAwesome6_Pro_Duotone.ttf',\n  fontStyle: fontStyle('900')\n});\nexport type FontAwesome6ProDuotoneIconName = keyof typeof duotoneGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst BrandIcon = createIconSet(brandGM, {\n  postScriptName: 'FontAwesome6Brands-Regular',\n  fontFileName: 'FontAwesome6_Pro_Brands.ttf',\n  fontStyle: fontStyle('400')\n});\nexport type FontAwesome6ProBrandIconName = keyof typeof brandGM;\ntype Props =\n  | ({ iconStyle: 'thin' } & ComponentProps<typeof ThinIcon>)\n  | ({ iconStyle: 'light' } & ComponentProps<typeof LightIcon>)\n  | ({ iconStyle: 'regular' } & ComponentProps<typeof RegularIcon>)\n  | ({ iconStyle: 'solid' } & ComponentProps<typeof SolidIcon>)\n  | ({ iconStyle: 'sharpThin' } & ComponentProps<typeof SharpThinIcon>)\n  | ({ iconStyle: 'sharpLight' } & ComponentProps<typeof SharpLightIcon>)\n  | ({ iconStyle: 'sharp' } & ComponentProps<typeof SharpIcon>)\n  | ({ iconStyle: 'sharpSolid' } & ComponentProps<typeof SharpSolidIcon>)\n  | ({ iconStyle: 'duotone' } & ComponentProps<typeof DuotoneIcon>)\n  | ({ iconStyle: 'brand' } & ComponentProps<typeof BrandIcon>)\n  | ({ iconStyle?: never } & ComponentProps<typeof RegularIcon>);\n\nexport const FontAwesome6Pro = (props: Props) => {\n  const { iconStyle, name } = props;\n  if (!iconStyle) {\n    if (!glyphValidator(name, 'regular')) {\n      console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for 'regular' icon type for FontAwesome6Pro`);\n    }\n    return <RegularIcon {...props} />;\n  }\n\n  if (!glyphValidator(name, iconStyle)) {\n    console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for '${iconStyle}' icon type for FontAwesome6Pro`);\n\n    return <RegularIcon {...(props as ComponentProps<typeof RegularIcon>)} />;\n  }\n\n  switch (iconStyle) {\n    case 'brand':\n      return <BrandIcon {...props} />;\n    case 'duotone':\n      return <DuotoneIcon {...props} />;\n    case 'light':\n      return <LightIcon {...props} />;\n    case 'regular':\n      return <RegularIcon {...props} />;\n    case 'sharp':\n      return <SharpIcon {...props} />;\n    case 'sharpLight':\n      return <SharpLightIcon {...props} />;\n    case 'sharpSolid':\n      return <SharpSolidIcon {...props} />;\n    case 'sharpThin':\n      return <SharpThinIcon {...props} />;\n    case 'solid':\n      return <SolidIcon {...props} />;\n    case 'thin':\n      return <ThinIcon {...props} />;\n    default:\n      console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome6Pro`);\n      return <RegularIcon {...(props as ComponentProps<typeof RegularIcon>)} />;\n  }\n};\n\ntype GetImageSourceFunc = {\n  (\n    iconStyle: 'brand',\n    name: ComponentProps<typeof BrandIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof BrandIcon)['getImageSource']>;\n  (\n    iconStyle: 'duotone',\n    name: ComponentProps<typeof DuotoneIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof DuotoneIcon)['getImageSource']>;\n  (\n    iconStyle: 'light',\n    name: ComponentProps<typeof LightIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof LightIcon)['getImageSource']>;\n  (\n    iconStyle: 'regular',\n    name: ComponentProps<typeof RegularIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof RegularIcon)['getImageSource']>;\n  (\n    iconStyle: 'sharp',\n    name: ComponentProps<typeof SharpIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SharpIcon)['getImageSource']>;\n  (\n    iconStyle: 'sharpLight',\n    name: ComponentProps<typeof SharpLightIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SharpLightIcon)['getImageSource']>;\n  (\n    iconStyle: 'sharpSolid',\n    name: ComponentProps<typeof SharpSolidIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SharpSolidIcon)['getImageSource']>;\n  (\n    iconStyle: 'sharpThin',\n    name: ComponentProps<typeof SharpThinIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SharpThinIcon)['getImageSource']>;\n  (\n    iconStyle: 'solid',\n    name: ComponentProps<typeof SolidIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SolidIcon)['getImageSource']>;\n  (\n    iconStyle: 'thin',\n    name: ComponentProps<typeof ThinIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof ThinIcon)['getImageSource']>;\n};\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst getImageSource: GetImageSourceFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => {\n  switch (iconStyle) {\n    case 'brand':\n      return BrandIcon.getImageSource(name as keyof typeof brandGM, size, color);\n    case 'duotone':\n      return DuotoneIcon.getImageSource(name as keyof typeof duotoneGM, size, color);\n    case 'light':\n      return LightIcon.getImageSource(name as keyof typeof lightGM, size, color);\n    case 'regular':\n      return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color);\n    case 'sharp':\n      return SharpIcon.getImageSource(name as keyof typeof sharpGM, size, color);\n    case 'sharpLight':\n      return SharpLightIcon.getImageSource(name as keyof typeof sharpLightGM, size, color);\n    case 'sharpSolid':\n      return SharpSolidIcon.getImageSource(name as keyof typeof sharpSolidGM, size, color);\n    case 'sharpThin':\n      return SharpThinIcon.getImageSource(name as keyof typeof sharpThinGM, size, color);\n    case 'solid':\n      return SolidIcon.getImageSource(name as keyof typeof solidGM, size, color);\n    case 'thin':\n      return ThinIcon.getImageSource(name as keyof typeof thinGM, size, color);\n    default:\n      console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome6Pro`);\n      return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color);\n  }\n};\nFontAwesome6Pro.getImageSource = getImageSource;\n\ntype GetImageSourceSyncFunc = {\n  (\n    iconStyle: 'brand',\n    name: ComponentProps<typeof BrandIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof BrandIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'duotone',\n    name: ComponentProps<typeof DuotoneIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof DuotoneIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'light',\n    name: ComponentProps<typeof LightIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof LightIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'regular',\n    name: ComponentProps<typeof RegularIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof RegularIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'sharp',\n    name: ComponentProps<typeof SharpIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SharpIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'sharpLight',\n    name: ComponentProps<typeof SharpLightIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SharpLightIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'sharpSolid',\n    name: ComponentProps<typeof SharpSolidIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SharpSolidIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'sharpThin',\n    name: ComponentProps<typeof SharpThinIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SharpThinIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'solid',\n    name: ComponentProps<typeof SolidIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SolidIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'thin',\n    name: ComponentProps<typeof ThinIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof ThinIcon)['getImageSourceSync']>;\n};\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst getImageSourceSync: GetImageSourceSyncFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => {\n  switch (iconStyle) {\n    case 'brand':\n      return BrandIcon.getImageSourceSync(name as keyof typeof brandGM, size, color);\n    case 'duotone':\n      return DuotoneIcon.getImageSourceSync(name as keyof typeof duotoneGM, size, color);\n    case 'light':\n      return LightIcon.getImageSourceSync(name as keyof typeof lightGM, size, color);\n    case 'regular':\n      return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color);\n    case 'sharp':\n      return SharpIcon.getImageSourceSync(name as keyof typeof sharpGM, size, color);\n    case 'sharpLight':\n      return SharpLightIcon.getImageSourceSync(name as keyof typeof sharpLightGM, size, color);\n    case 'sharpSolid':\n      return SharpSolidIcon.getImageSourceSync(name as keyof typeof sharpSolidGM, size, color);\n    case 'sharpThin':\n      return SharpThinIcon.getImageSourceSync(name as keyof typeof sharpThinGM, size, color);\n    case 'solid':\n      return SolidIcon.getImageSourceSync(name as keyof typeof solidGM, size, color);\n    case 'thin':\n      return ThinIcon.getImageSourceSync(name as keyof typeof thinGM, size, color);\n    default:\n      console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome6Pro`);\n      return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color);\n  }\n};\nFontAwesome6Pro.getImageSourceSync = getImageSourceSync;\n\nexport type FontAwesome6ProIconName = ComponentProps<typeof FontAwesome6Pro>['name'];\n\n/** @alias */\nexport default FontAwesome6Pro;\n"
  },
  {
    "path": "packages/fontawesome6-pro/src/static.tsx",
    "content": "/* eslint-disable react/jsx-pascal-case, no-console */\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * Instead, modify the template in `fontawesome-common/generator`.\n *\n * FontAwesome6Pro icon set component.\n * Usage: <FontAwesome6Pro name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport type { ComponentProps } from 'react';\nimport { Platform, type TextStyle } from 'react-native';\n\nimport { createIconSet, DEFAULT_ICON_COLOR, DEFAULT_ICON_SIZE } from '@react-native-vector-icons/common';\n\nimport brandGM from '../glyphmaps/FontAwesome6Pro_brand.json';\nimport duotoneGM from '../glyphmaps/FontAwesome6Pro_duotone.json';\nimport lightGM from '../glyphmaps/FontAwesome6Pro_light.json';\nimport regularGM from '../glyphmaps/FontAwesome6Pro_regular.json';\nimport sharpGM from '../glyphmaps/FontAwesome6Pro_sharp.json';\nimport sharpLightGM from '../glyphmaps/FontAwesome6Pro_sharpLight.json';\nimport sharpSolidGM from '../glyphmaps/FontAwesome6Pro_sharpSolid.json';\nimport sharpThinGM from '../glyphmaps/FontAwesome6Pro_sharpThin.json';\nimport solidGM from '../glyphmaps/FontAwesome6Pro_solid.json';\nimport thinGM from '../glyphmaps/FontAwesome6Pro_thin.json';\n\nimport metadata from '../glyphmaps/FontAwesome6Pro_meta.json';\n\nconst glyphValidator = (glyph: string, iconType: keyof typeof metadata) => metadata[iconType]?.includes(glyph);\n\nconst fontStyle = (fontWeight: TextStyle['fontWeight']) =>\n  Platform.select({\n    ios: {\n      fontWeight,\n    },\n    default: {},\n  });\n\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst ThinIcon = createIconSet(thinGM, {\n  postScriptName: 'FontAwesome6Pro-Thin',\n  fontFileName: 'FontAwesome6_Pro_Thin.ttf',\n  fontStyle: fontStyle('100')\n});\nexport type FontAwesome6ProThinIconName = keyof typeof thinGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst LightIcon = createIconSet(lightGM, {\n  postScriptName: 'FontAwesome6Pro-Light',\n  fontFileName: 'FontAwesome6_Pro_Light.ttf',\n  fontStyle: fontStyle('300')\n});\nexport type FontAwesome6ProLightIconName = keyof typeof lightGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst RegularIcon = createIconSet(regularGM, {\n  postScriptName: 'FontAwesome6Pro-Regular',\n  fontFileName: 'FontAwesome6_Pro_Regular.ttf',\n  fontStyle: fontStyle('400')\n});\nexport type FontAwesome6ProRegularIconName = keyof typeof regularGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst SolidIcon = createIconSet(solidGM, {\n  postScriptName: 'FontAwesome6Pro-Solid',\n  fontFileName: 'FontAwesome6_Pro_Solid.ttf',\n  fontStyle: fontStyle('900')\n});\nexport type FontAwesome6ProSolidIconName = keyof typeof solidGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst SharpThinIcon = createIconSet(sharpThinGM, {\n  postScriptName: 'FontAwesome6Sharp-Thin',\n  fontFileName: 'FontAwesome6_Pro_Sharp_Thin.ttf',\n  fontStyle: fontStyle('100')\n});\nexport type FontAwesome6ProSharpThinIconName = keyof typeof sharpThinGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst SharpLightIcon = createIconSet(sharpLightGM, {\n  postScriptName: 'FontAwesome6Sharp-Light',\n  fontFileName: 'FontAwesome6_Pro_Sharp_Light.ttf',\n  fontStyle: fontStyle('300')\n});\nexport type FontAwesome6ProSharpLightIconName = keyof typeof sharpLightGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst SharpIcon = createIconSet(sharpGM, {\n  postScriptName: 'FontAwesome6Sharp-Regular',\n  fontFileName: 'FontAwesome6_Pro_Sharp_Regular.ttf',\n  fontStyle: fontStyle('400')\n});\nexport type FontAwesome6ProSharpIconName = keyof typeof sharpGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst SharpSolidIcon = createIconSet(sharpSolidGM, {\n  postScriptName: 'FontAwesome6Sharp-Solid',\n  fontFileName: 'FontAwesome6_Pro_Sharp_Solid.ttf',\n  fontStyle: fontStyle('900')\n});\nexport type FontAwesome6ProSharpSolidIconName = keyof typeof sharpSolidGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst DuotoneIcon = createIconSet(duotoneGM, {\n  postScriptName: 'FontAwesome6Duotone-Solid',\n  fontFileName: 'FontAwesome6_Pro_Duotone.ttf',\n  fontStyle: fontStyle('900')\n});\nexport type FontAwesome6ProDuotoneIconName = keyof typeof duotoneGM;\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst BrandIcon = createIconSet(brandGM, {\n  postScriptName: 'FontAwesome6Brands-Regular',\n  fontFileName: 'FontAwesome6_Pro_Brands.ttf',\n  fontStyle: fontStyle('400')\n});\nexport type FontAwesome6ProBrandIconName = keyof typeof brandGM;\ntype Props =\n  | ({ iconStyle: 'thin' } & ComponentProps<typeof ThinIcon>)\n  | ({ iconStyle: 'light' } & ComponentProps<typeof LightIcon>)\n  | ({ iconStyle: 'regular' } & ComponentProps<typeof RegularIcon>)\n  | ({ iconStyle: 'solid' } & ComponentProps<typeof SolidIcon>)\n  | ({ iconStyle: 'sharpThin' } & ComponentProps<typeof SharpThinIcon>)\n  | ({ iconStyle: 'sharpLight' } & ComponentProps<typeof SharpLightIcon>)\n  | ({ iconStyle: 'sharp' } & ComponentProps<typeof SharpIcon>)\n  | ({ iconStyle: 'sharpSolid' } & ComponentProps<typeof SharpSolidIcon>)\n  | ({ iconStyle: 'duotone' } & ComponentProps<typeof DuotoneIcon>)\n  | ({ iconStyle: 'brand' } & ComponentProps<typeof BrandIcon>)\n  | ({ iconStyle?: never } & ComponentProps<typeof RegularIcon>);\n\nexport const FontAwesome6Pro = (props: Props) => {\n  const { iconStyle, name } = props;\n  if (!iconStyle) {\n    if (!glyphValidator(name, 'regular')) {\n      console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for 'regular' icon type for FontAwesome6Pro`);\n    }\n    return <RegularIcon {...props} />;\n  }\n\n  if (!glyphValidator(name, iconStyle)) {\n    console.warn(`noSuchGlyph: glyph ${String(name)} does not exist for '${iconStyle}' icon type for FontAwesome6Pro`);\n\n    return <RegularIcon {...(props as ComponentProps<typeof RegularIcon>)} />;\n  }\n\n  switch (iconStyle) {\n    case 'brand':\n      return <BrandIcon {...props} />;\n    case 'duotone':\n      return <DuotoneIcon {...props} />;\n    case 'light':\n      return <LightIcon {...props} />;\n    case 'regular':\n      return <RegularIcon {...props} />;\n    case 'sharp':\n      return <SharpIcon {...props} />;\n    case 'sharpLight':\n      return <SharpLightIcon {...props} />;\n    case 'sharpSolid':\n      return <SharpSolidIcon {...props} />;\n    case 'sharpThin':\n      return <SharpThinIcon {...props} />;\n    case 'solid':\n      return <SolidIcon {...props} />;\n    case 'thin':\n      return <ThinIcon {...props} />;\n    default:\n      console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome6Pro`);\n      return <RegularIcon {...(props as ComponentProps<typeof RegularIcon>)} />;\n  }\n};\n\ntype GetImageSourceFunc = {\n  (\n    iconStyle: 'brand',\n    name: ComponentProps<typeof BrandIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof BrandIcon)['getImageSource']>;\n  (\n    iconStyle: 'duotone',\n    name: ComponentProps<typeof DuotoneIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof DuotoneIcon)['getImageSource']>;\n  (\n    iconStyle: 'light',\n    name: ComponentProps<typeof LightIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof LightIcon)['getImageSource']>;\n  (\n    iconStyle: 'regular',\n    name: ComponentProps<typeof RegularIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof RegularIcon)['getImageSource']>;\n  (\n    iconStyle: 'sharp',\n    name: ComponentProps<typeof SharpIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SharpIcon)['getImageSource']>;\n  (\n    iconStyle: 'sharpLight',\n    name: ComponentProps<typeof SharpLightIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SharpLightIcon)['getImageSource']>;\n  (\n    iconStyle: 'sharpSolid',\n    name: ComponentProps<typeof SharpSolidIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SharpSolidIcon)['getImageSource']>;\n  (\n    iconStyle: 'sharpThin',\n    name: ComponentProps<typeof SharpThinIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SharpThinIcon)['getImageSource']>;\n  (\n    iconStyle: 'solid',\n    name: ComponentProps<typeof SolidIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SolidIcon)['getImageSource']>;\n  (\n    iconStyle: 'thin',\n    name: ComponentProps<typeof ThinIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof ThinIcon)['getImageSource']>;\n};\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst getImageSource: GetImageSourceFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => {\n  switch (iconStyle) {\n    case 'brand':\n      return BrandIcon.getImageSource(name as keyof typeof brandGM, size, color);\n    case 'duotone':\n      return DuotoneIcon.getImageSource(name as keyof typeof duotoneGM, size, color);\n    case 'light':\n      return LightIcon.getImageSource(name as keyof typeof lightGM, size, color);\n    case 'regular':\n      return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color);\n    case 'sharp':\n      return SharpIcon.getImageSource(name as keyof typeof sharpGM, size, color);\n    case 'sharpLight':\n      return SharpLightIcon.getImageSource(name as keyof typeof sharpLightGM, size, color);\n    case 'sharpSolid':\n      return SharpSolidIcon.getImageSource(name as keyof typeof sharpSolidGM, size, color);\n    case 'sharpThin':\n      return SharpThinIcon.getImageSource(name as keyof typeof sharpThinGM, size, color);\n    case 'solid':\n      return SolidIcon.getImageSource(name as keyof typeof solidGM, size, color);\n    case 'thin':\n      return ThinIcon.getImageSource(name as keyof typeof thinGM, size, color);\n    default:\n      console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome6Pro`);\n      return RegularIcon.getImageSource(name as keyof typeof regularGM, size, color);\n  }\n};\nFontAwesome6Pro.getImageSource = getImageSource;\n\ntype GetImageSourceSyncFunc = {\n  (\n    iconStyle: 'brand',\n    name: ComponentProps<typeof BrandIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof BrandIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'duotone',\n    name: ComponentProps<typeof DuotoneIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof DuotoneIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'light',\n    name: ComponentProps<typeof LightIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof LightIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'regular',\n    name: ComponentProps<typeof RegularIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof RegularIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'sharp',\n    name: ComponentProps<typeof SharpIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SharpIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'sharpLight',\n    name: ComponentProps<typeof SharpLightIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SharpLightIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'sharpSolid',\n    name: ComponentProps<typeof SharpSolidIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SharpSolidIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'sharpThin',\n    name: ComponentProps<typeof SharpThinIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SharpThinIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'solid',\n    name: ComponentProps<typeof SolidIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof SolidIcon)['getImageSourceSync']>;\n  (\n    iconStyle: 'thin',\n    name: ComponentProps<typeof ThinIcon>['name'],\n    size?: number,\n    color?: TextStyle['color'],\n  ): ReturnType<(typeof ThinIcon)['getImageSourceSync']>;\n};\n// biome-ignore format: We want these to be consistent and we are fine with single for all\nconst getImageSourceSync: GetImageSourceSyncFunc = (iconStyle, name, size = DEFAULT_ICON_SIZE, color = DEFAULT_ICON_COLOR) => {\n  switch (iconStyle) {\n    case 'brand':\n      return BrandIcon.getImageSourceSync(name as keyof typeof brandGM, size, color);\n    case 'duotone':\n      return DuotoneIcon.getImageSourceSync(name as keyof typeof duotoneGM, size, color);\n    case 'light':\n      return LightIcon.getImageSourceSync(name as keyof typeof lightGM, size, color);\n    case 'regular':\n      return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color);\n    case 'sharp':\n      return SharpIcon.getImageSourceSync(name as keyof typeof sharpGM, size, color);\n    case 'sharpLight':\n      return SharpLightIcon.getImageSourceSync(name as keyof typeof sharpLightGM, size, color);\n    case 'sharpSolid':\n      return SharpSolidIcon.getImageSourceSync(name as keyof typeof sharpSolidGM, size, color);\n    case 'sharpThin':\n      return SharpThinIcon.getImageSourceSync(name as keyof typeof sharpThinGM, size, color);\n    case 'solid':\n      return SolidIcon.getImageSourceSync(name as keyof typeof solidGM, size, color);\n    case 'thin':\n      return ThinIcon.getImageSourceSync(name as keyof typeof thinGM, size, color);\n    default:\n      console.warn(`noSuchIconTypeName: '${iconStyle}' icon type does not exist for FontAwesome6Pro`);\n      return RegularIcon.getImageSourceSync(name as keyof typeof regularGM, size, color);\n  }\n};\nFontAwesome6Pro.getImageSourceSync = getImageSourceSync;\n\nexport type FontAwesome6ProIconName = ComponentProps<typeof FontAwesome6Pro>['name'];\n\n/** @alias */\nexport default FontAwesome6Pro;\n"
  },
  {
    "path": "packages/fontawesome6-pro/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/fontawesome6-pro/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontcustom-docker/CHANGELOG.md",
    "content": ""
  },
  {
    "path": "packages/fontcustom-docker/Dockerfile",
    "content": "FROM debian:11-slim\n\nWORKDIR /usr/src/app\n\n# NOTE: Use this again if fontforge does a new release\n# RUN apt-get -y update \\\n#   && apt-get -y upgrade \\\n#   && apt-get -y --no-install-recommends install fontcustom \\\n#   && apt clean \\\n#   && rm -rf /var/lib/apt/lists/*\n\nRUN apt-get -y update \\\n  && apt-get -y upgrade \\\n  && apt-get -y --no-install-recommends install \\\n  fontcustom \\\n  libjpeg-dev libtiff5-dev libpng-dev libfreetype6-dev libgif-dev libgtk-3-dev libxml2-dev \\\n  libpango1.0-dev libcairo2-dev libspiro-dev libwoff-dev python3-dev ninja-build cmake build-essential gettext \\\n  git ca-certificates \\\n  && apt clean \\\n  && rm -rf /var/lib/apt/lists/*\n\nRUN git clone https://github.com/fontforge/fontforge.git\nRUN mkdir fontforge/build\n\nWORKDIR /usr/src/app/fontforge/build\n\nRUN cmake -GNinja .. \\\n  && ninja \\\n  && ninja install \\\n  && cd ../.. \\\n  && rm -rf /usr/src/app/fontforge\n\nRUN dpkg -r --force-depends fontforge\n\nWORKDIR /usr/src/app\n\nENTRYPOINT [\"/usr/bin/fontcustom\"]\n"
  },
  {
    "path": "packages/fontcustom-docker/README.md",
    "content": "# font custom docker\n\nWe need a fontcustom with a newer font forge for reproducible builds\n"
  },
  {
    "path": "packages/fontcustom-docker/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontcustom-docker\",\n  \"private\": true,\n  \"version\": \"0.0.1\",\n  \"description\": \"Updated fontcustom docker image\",\n  \"scripts\": {\n    \"build\": \"docker build -t johnf/fontcustom .\",\n    \"publish\": \"docker push johnf/fontcustom\"\n  }\n}\n"
  },
  {
    "path": "packages/fontello/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontello\",\n    \"customReadme\": true,\n    \"customSrc\": true,\n    \"noGlyphmap\": true,\n    \"copyCustomFonts\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontello/CHANGELOG.md",
    "content": "## 12.4.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.3.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 12.3.2 (2026-03-10)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n## 12.3.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 12.3.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.2.0 (2025-08-03)\n\n### 🚀 Features\n\n- export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.3.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.1.0 (2025-07-12)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.1.0\n\n## 12.0.2 (2025-06-15)\n\n### 🩹 Fixes\n\n- new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.2\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.1 (2025-06-15)\n\n### 🩹 Fixes\n\n- try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745))\n- remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767))\n- convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765))\n- updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c))\n- **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.1\n\n### ❤️ Thank You\n\n- Alexander Kucheryavenko @Red1tum\n- John Ferlito @johnf\n- Md. Jayed Hasan @JayedHasan232\n\n# 12.0.0 (2025-05-04)\n\n### 🚀 Features\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n- add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702))\n\n### 🩹 Fixes\n\n- upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691))\n- upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690))\n- mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99))\n\n### ⚠️  Breaking Changes\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n\n### ❤️ Thank You\n\n- Chanphirom Sok @chanphiromsok\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontello/README.md",
    "content": "# React Native Vector Icons - Fontello\n\nReact Native Vector Icons font package to support using custom fonts created with [Fontello](https://fontello.com)\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/fontello\n```\n\n## Usage\n\n1. Add the config.json somewhere in your project to be imported\n2. Add the ttf file into `rnvi-fonts/fontello`. You can customise this location as described in [react-native-vector-icons](../../README.md#custom-fonts)\n3. Add this package to your project\n\n```sh\npnpm install @react-native-vector-icons/fontello\n```\n\n4. Create the component in your project and use it\n\n```js\nimport createIconSet from '@react-native-vector-icons/fontello';\nimport fontelloConfig from './config.json';\nconst Icon = createIconSet(fontelloConfig);\n\nconst icon = <Icon name=\"comments\" />;\n```\n\nIf you want to customise the font postscript name and filename you can pass extra arguments.\n\n```js\nimport createIconSet from \"@react-native-vector-icons/fontello\";\nimport fontelloConfig from \"./config.json\";\nconst Icon = createIconSet(fontelloConfig, \"Font Family\", \"FontFamily.ttf\");\n```\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/fontello/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.fontello\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFontello\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.fontello\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-fontello\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontello/fonts\"\n  eachFile { println \"(RNVI:fontello) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n\ntask copyExtraFonts(type: Copy) {\n  from \"${rootDir.parentFile.absolutePath}/rnvi-fonts/fontello\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontello/fonts\"\n  eachFile { println \"(RNVI:fontello) Copying custom font: ${it.file}\" }\n}\n\npreBuild.dependsOn(copyExtraFonts)\n"
  },
  {
    "path": "packages/fontello/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.fontello\">\n</manifest>\n"
  },
  {
    "path": "packages/fontello/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/fontello/android/src/main/java/VectorIconsFontelloPackage.kt",
    "content": "package com.reactnativevectoricons.fontello\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFontelloPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/fontello/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/fontello/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontello\",\n  \"version\": \"12.4.0\",\n  \"description\": \"Fontello font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    }\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"fontello\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/fontello\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/fontello/react-native-vector-icons-fontello.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-fontello'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\n\n  s.script_phase = {\n    name: 'Copy Custom Fonts',\n    execution_position: :after_compile,\n    script: <<~SCRIPT\n      set -e\n\n      HEAD=\"(RNVI-fontello)\"\n\n      echo \"${HEAD} START_COPY_FONTS\"\n\n      echo \"${HEAD} PWD: $(pwd)\"\n\n      #\n      # Find the custom font Directory\n      #\n\n      # Assume the project root is always two directories above the POD_ROOT\n      echo \"${HEAD} PODS_ROOT: $PODS_ROOT\"\n\n      PROJECT_ROOT=\"${PODS_ROOT}/../..\"\n      echo \"${HEAD} PROJECT_ROOT: $PROJECT_ROOT\"\n\n      cd $PROJECT_ROOT\n      FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/\"//g')\n      if [ -z \"$FONTS_DIR\" ]; then\n        FONTS_DIR=\"rnvi-fonts\"\n      fi\n      echo \"${HEAD} FONTS_DIR: $FONTS_DIR\"\n\n      FONTS_DIR=\"${PROJECT_ROOT}/${FONTS_DIR}/fontello\"\n      if [ ! -d \"$FONTS_DIR\" ]; then\n        echo \"${HEAD} $FONTS_DIR not found\"\n        exit 0\n      fi\n\n      #\n      # Find the destination we copy to\n      #\n\n      echo \"${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR\"\n      XCODE_DIR=$(ls -d \"$PODS_CONFIGURATION_BUILD_DIR\"/*.app)\n      echo \"${HEAD} XCODE_DIR: $XCODE_DIR\"\n      if [ -z \"$XCODE_DIR\" ]; then\n        echo \"Could not find XCODE_DIR to copy fonts to\"\n        exit 1\n      fi\n\n      DEST_DIR=\"${XCODE_DIR}\"\n      mkdir -p \"$DEST_DIR\"\n\n      #\n      # Copy the fonts\n      #\n\n      echo \"${HEAD} Copying the following files to $DEST_DIR\"\n      ls \"$FONTS_DIR\" | sed \"s/^/${HEAD} /\"\n\n      rsync -avr --copy-links --no-relative $FONTS_DIR/ \"$DEST_DIR\"\n\n      echo \"${HEAD} END:RNVI_COPY_FONTS\"\n    SCRIPT\n  }\nend\n"
  },
  {
    "path": "packages/fontello/src/index.ts",
    "content": "/**\n * Fontello icon set component.\n * Usage: <Fontello name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { type CreateIconSetOptions, createIconSet, type IconComponent } from '@react-native-vector-icons/common';\n\ntype FontelloConfig = {\n  name: string;\n  css_prefix_text: string;\n  css_use_suffix: boolean;\n  hinting: boolean;\n  units_per_em: number;\n  ascent: number;\n  glyphs: Array<{\n    uid: string;\n    css: string;\n    code: number;\n    src: string;\n  }>;\n};\n\ntype FontelloComponent = IconComponent<Record<string, number>>;\n\n// entries are optional because they can be derived from the config\ntype Options = Partial<CreateIconSetOptions>;\n\nexport default function createIconSetFromFontello(\n  config: FontelloConfig,\n  postScriptName?: string,\n  fontFileName?: string,\n): FontelloComponent;\nexport default function createIconSetFromFontello(config: FontelloConfig, options: Options): FontelloComponent;\nexport default function createIconSetFromFontello(\n  config: FontelloConfig,\n  postScriptNameOrOptions?: string | Options,\n  fontFileNameParam?: string,\n): FontelloComponent {\n  const { postScriptName, fontFileName, fontSource, fontStyle } =\n    typeof postScriptNameOrOptions === 'object'\n      ? postScriptNameOrOptions\n      : {\n          postScriptName: postScriptNameOrOptions,\n          fontFileName: fontFileNameParam,\n        };\n\n  const glyphMap: Record<string, number> = {};\n  config.glyphs.forEach((glyph) => {\n    glyphMap[glyph.css] = glyph.code;\n  });\n\n  const fontFamily = postScriptName || config.name || 'fontello';\n\n  return createIconSet(glyphMap, {\n    postScriptName: fontFamily,\n    fontFileName: fontFileName || `${fontFamily}.ttf`,\n    fontSource,\n    fontStyle,\n  });\n}\n"
  },
  {
    "path": "packages/fontello/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/fontello/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/fontisto/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"fontisto\",\n    \"postScriptName\": \"fontisto\",\n    \"upstreamFont\": \"fontisto\",\n    \"buildSteps\": {\n      \"glyphmap\": {\n        \"location\": \"../../node_modules/fontisto/css/fontisto/fontisto.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fi-\"\n      },\n      \"copyFont\": {\n        \"location\": \"../../node_modules/fontisto/fonts/fontisto/fontisto.ttf\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"12.0.0\",\n        \"upstream\": \"3.0.4\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/fontisto/CHANGELOG.md",
    "content": "## 12.5.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.4.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 12.4.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.4.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 12.4.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.3.0 (2025-08-03)\n\n### 🚀 Features\n\n- export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.3.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.2.0 (2025-07-20)\n\n### 🚀 Features\n\n- add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.2.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.1.0 (2025-07-12)\n\n### 🚀 Features\n\n- export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.1.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.2 (2025-06-15)\n\n### 🩹 Fixes\n\n- new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.2\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.1 (2025-06-15)\n\n### 🩹 Fixes\n\n- try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745))\n- remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767))\n- convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765))\n- updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c))\n- **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.1\n\n### ❤️ Thank You\n\n- Alexander Kucheryavenko @Red1tum\n- John Ferlito @johnf\n- Md. Jayed Hasan @JayedHasan232\n\n# 12.0.0 (2025-05-04)\n\n### 🚀 Features\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n- add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702))\n\n### 🩹 Fixes\n\n- upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691))\n- upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690))\n- mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99))\n\n### ⚠️  Breaking Changes\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n\n### ❤️ Thank You\n\n- Chanphirom Sok @chanphiromsok\n- John Ferlito @johnf"
  },
  {
    "path": "packages/fontisto/README.md",
    "content": "# React Native Vector Icons - Fontisto\n\nFontisto font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/fontisto\n```\n\n## Usage\n\n```jsx\nimport { Fontisto } from '@react-native-vector-icons/fontisto';\n\n// ...\n\n<Fontisto name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 12.0.0 | 3.0.4 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/fontisto/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.fontisto\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFontisto\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.fontisto\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-fontisto\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-fontisto/fonts\"\n  eachFile { println \"(RNVI:fontisto) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n"
  },
  {
    "path": "packages/fontisto/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.fontisto\">\n</manifest>\n"
  },
  {
    "path": "packages/fontisto/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/fontisto/android/src/main/java/VectorIconsFontistoPackage.kt",
    "content": "package com.reactnativevectoricons.fontisto\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFontistoPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/fontisto/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/fontisto/glyphmaps/Fontisto.json",
    "content": "{\n  \"acrobat-reader\": 60095,\n  \"applemusic\": 60096,\n  \"atlassian\": 60097,\n  \"aws\": 60098,\n  \"baidu\": 60099,\n  \"bing\": 60100,\n  \"bower\": 60101,\n  \"dailymotion\": 60102,\n  \"delicious\": 60103,\n  \"deviantart\": 60104,\n  \"disqus\": 60105,\n  \"flipboard\": 60106,\n  \"graphql\": 60107,\n  \"hexo\": 60108,\n  \"hipchat\": 60109,\n  \"icq\": 60110,\n  \"invision\": 60111,\n  \"jekyll\": 60112,\n  \"jira\": 60113,\n  \"json\": 60114,\n  \"livestream\": 60115,\n  \"messenger\": 60116,\n  \"meteor\": 60117,\n  \"onenote\": 60118,\n  \"mongodb\": 60119,\n  \"netflix\": 60120,\n  \"nginx\": 60121,\n  \"odnoklassniki\": 60122,\n  \"onedrive\": 60123,\n  \"origin\": 60124,\n  \"pingdom\": 60125,\n  \"rails\": 60126,\n  \"raspberry-pi\": 60127,\n  \"redis\": 60128,\n  \"redux\": 60129,\n  \"saucelabs\": 60130,\n  \"scorp\": 60131,\n  \"sentry\": 60132,\n  \"shazam\": 60133,\n  \"shopify\": 60134,\n  \"sinaweibo\": 60135,\n  \"slides\": 60136,\n  \"sublimetext\": 60137,\n  \"swift\": 60138,\n  \"ted\": 60139,\n  \"telegram\": 60140,\n  \"tesla\": 60141,\n  \"tinder\": 60142,\n  \"treehouse\": 60143,\n  \"twoo\": 60144,\n  \"udacity\": 60145,\n  \"webstorm\": 60146,\n  \"wix\": 60147,\n  \"yandex-international\": 60148,\n  \"yandex\": 60149,\n  \"ember\": 60087,\n  \"cpanel\": 60088,\n  \"viber\": 60089,\n  \"deskpro\": 60090,\n  \"discord\": 60091,\n  \"discourse\": 60092,\n  \"adobe\": 60059,\n  \"algolia\": 60060,\n  \"atom\": 60061,\n  \"babel\": 60062,\n  \"coffeescript\": 60063,\n  \"electronjs\": 60064,\n  \"mysql\": 60065,\n  \"oracle\": 60066,\n  \"php\": 60067,\n  \"sourcetree\": 60068,\n  \"ubuntu\": 60069,\n  \"unity\": 60070,\n  \"unreal-engine\": 60071,\n  \"webpack\": 60072,\n  \"angelist\": 60026,\n  \"app-store\": 60027,\n  \"digg\": 60030,\n  \"dockers\": 60031,\n  \"envato\": 60032,\n  \"gitlab\": 60033,\n  \"google-drive\": 60034,\n  \"google-play\": 60035,\n  \"grunt\": 60036,\n  \"gulp\": 60037,\n  \"hacker-news\": 60038,\n  \"imdb\": 60039,\n  \"jenkins\": 60040,\n  \"joomla\": 60041,\n  \"kickstarter\": 60042,\n  \"laravel\": 60043,\n  \"less\": 60044,\n  \"line\": 60045,\n  \"npm\": 60046,\n  \"periscope\": 60047,\n  \"product-hunt\": 60048,\n  \"quora\": 60049,\n  \"skyatlas\": 60050,\n  \"stylus\": 60051,\n  \"travis\": 60052,\n  \"trello\": 60053,\n  \"uber\": 60054,\n  \"vine\": 60055,\n  \"visual-studio\": 60056,\n  \"vk\": 60057,\n  \"vuejs\": 60058,\n  \"microsoft\": 60025,\n  \"blogger\": 60028,\n  \"500px\": 59658,\n  \"amazon\": 59659,\n  \"ampproject\": 59660,\n  \"android\": 59661,\n  \"angularjs\": 59662,\n  \"apple\": 59663,\n  \"behance\": 59664,\n  \"bitbucket\": 59665,\n  \"bluetooth-b\": 59666,\n  \"cloudflare\": 59667,\n  \"codepen\": 59668,\n  \"css3\": 59669,\n  \"dribbble\": 59670,\n  \"dropbox\": 59671,\n  \"facebook\": 59672,\n  \"flickr\": 59673,\n  \"foursquare\": 59674,\n  \"git\": 59675,\n  \"github\": 59676,\n  \"google-plus\": 59677,\n  \"google\": 59678,\n  \"hangout\": 59679,\n  \"houzz\": 59680,\n  \"html5\": 59681,\n  \"instagram\": 59682,\n  \"java\": 59683,\n  \"jquery\": 59684,\n  \"jsfiddle\": 59685,\n  \"linkedin\": 59686,\n  \"linux\": 59687,\n  \"magento\": 59688,\n  \"maxcdn\": 59689,\n  \"medium\": 59690,\n  \"meetup\": 59691,\n  \"nodejs\": 59692,\n  \"opencart\": 59693,\n  \"pinterest\": 59694,\n  \"playstation\": 59695,\n  \"python\": 59696,\n  \"react\": 59697,\n  \"reddit\": 59698,\n  \"ruby\": 59699,\n  \"sass\": 59700,\n  \"skype\": 59701,\n  \"slack\": 59702,\n  \"snapchat\": 59703,\n  \"soundcloud\": 59704,\n  \"spotify\": 59705,\n  \"stack-overflow\": 59706,\n  \"steam\": 59707,\n  \"stumbleupon\": 59708,\n  \"svn\": 59709,\n  \"swarm\": 59710,\n  \"tripadvisor\": 59711,\n  \"tumblr\": 59712,\n  \"twitch\": 59713,\n  \"twitter\": 59714,\n  \"vimeo\": 59715,\n  \"wetransfer\": 59716,\n  \"whatsapp\": 59717,\n  \"wifi-logo\": 59718,\n  \"wikipedia\": 59719,\n  \"windows\": 59720,\n  \"wordpress\": 59721,\n  \"xbox\": 59722,\n  \"yahoo\": 59723,\n  \"yelp\": 59724,\n  \"youtube-play\": 59725,\n  \"cocoapods\": 60200,\n  \"composer\": 60201,\n  \"yarn\": 60202,\n  \"language\": 59943,\n  \"toggle-off\": 59948,\n  \"toggle-on\": 60029,\n  \"anchor\": 60094,\n  \"archive\": 60150,\n  \"at\": 60151,\n  \"ban\": 60152,\n  \"battery-half\": 60153,\n  \"battery-full\": 60154,\n  \"battery-empty\": 60155,\n  \"battery-quarter\": 60156,\n  \"battery-three-quarters\": 60157,\n  \"bell-alt\": 60158,\n  \"bell\": 60159,\n  \"bookmark-alt\": 60160,\n  \"bookmark\": 60161,\n  \"bug\": 60162,\n  \"calculator\": 60163,\n  \"calendar\": 60164,\n  \"crosshairs\": 60165,\n  \"desktop\": 60166,\n  \"download\": 60167,\n  \"film\": 60168,\n  \"history\": 60169,\n  \"hourglass-end\": 60170,\n  \"hourglass-half\": 60171,\n  \"hourglass-start\": 60172,\n  \"hourglass\": 60173,\n  \"info\": 60174,\n  \"key\": 60175,\n  \"keyboard\": 60176,\n  \"laptop\": 60177,\n  \"lightbulb\": 60178,\n  \"magnet\": 60179,\n  \"map-marker-alt\": 60180,\n  \"map-marker\": 60181,\n  \"map\": 60182,\n  \"mobile-alt\": 60183,\n  \"mobile\": 60184,\n  \"paw\": 60185,\n  \"phone\": 60186,\n  \"power\": 60187,\n  \"qrcode\": 60188,\n  \"question\": 60189,\n  \"search\": 60190,\n  \"sitemap\": 60191,\n  \"star-half\": 60192,\n  \"stopwatch\": 60193,\n  \"tablet-alt\": 60194,\n  \"tablet\": 60195,\n  \"ticket\": 60196,\n  \"tv\": 60197,\n  \"upload\": 60198,\n  \"user-secret\": 60199,\n  \"camera\": 59798,\n  \"clock\": 59799,\n  \"close-a\": 59800,\n  \"code\": 59801,\n  \"comment\": 59802,\n  \"commenting\": 59803,\n  \"comments\": 59804,\n  \"crop\": 59805,\n  \"cursor\": 59806,\n  \"database\": 59807,\n  \"date\": 59808,\n  \"earth\": 59809,\n  \"email\": 59810,\n  \"eye\": 59811,\n  \"female\": 59812,\n  \"favorite\": 59813,\n  \"filter\": 59814,\n  \"fire\": 59815,\n  \"flag\": 59816,\n  \"flash\": 59817,\n  \"home\": 59818,\n  \"link\": 59819,\n  \"locked\": 59820,\n  \"male\": 59821,\n  \"minus-a\": 59822,\n  \"more-v-a\": 59823,\n  \"more-v\": 59824,\n  \"move-h-a\": 59825,\n  \"move-h\": 59826,\n  \"nav-icon-a\": 59827,\n  \"nav-icon-grid-a\": 59828,\n  \"nav-icon-grid\": 59829,\n  \"nav-icon-list-a\": 59830,\n  \"nav-icon-list\": 59831,\n  \"nav-icon\": 59832,\n  \"navigate\": 59833,\n  \"paper-plane\": 59834,\n  \"person\": 59835,\n  \"persons\": 59836,\n  \"picture\": 59837,\n  \"plus-a\": 59838,\n  \"print\": 59839,\n  \"quote-a-left\": 59840,\n  \"quote-a-right\": 59841,\n  \"quote-left\": 59842,\n  \"quote-right\": 59843,\n  \"reply\": 59844,\n  \"rss\": 59845,\n  \"scissors\": 59846,\n  \"share-a\": 59847,\n  \"share\": 59848,\n  \"trash\": 59849,\n  \"unlocked\": 59850,\n  \"usb\": 59851,\n  \"wifi\": 59852,\n  \"world-o\": 59853,\n  \"world\": 59854,\n  \"zoom\": 59855,\n  \"adjust\": 60015,\n  \"recycle\": 60016,\n  \"pinboard\": 60093,\n  \"zoom-minus\": 60082,\n  \"zoom-plus\": 60083,\n  \"check\": 60084,\n  \"asterisk\": 60085,\n  \"hashtag\": 60086,\n  \"checkbox-active\": 59778,\n  \"checkbox-passive\": 59779,\n  \"radio-btn-active\": 59780,\n  \"radio-btn-passive\": 59781,\n  \"shopping-bag-1\": 60011,\n  \"shopping-bag\": 60012,\n  \"shopping-barcode\": 60017,\n  \"shopping-basket-add\": 60018,\n  \"shopping-basket-remove\": 60019,\n  \"shopping-basket\": 60020,\n  \"shopping-package\": 60021,\n  \"shopping-pos-machine\": 60022,\n  \"shopping-sale\": 60023,\n  \"shopping-store\": 60024,\n  \"angle-dobule-down\": 59748,\n  \"angle-dobule-left\": 59749,\n  \"angle-dobule-right\": 59750,\n  \"angle-dobule-up\": 59751,\n  \"angle-down\": 59752,\n  \"angle-left\": 59753,\n  \"angle-right\": 59754,\n  \"angle-up\": 59755,\n  \"arrow-down-l\": 59756,\n  \"arrow-down\": 59757,\n  \"arrow-expand\": 59758,\n  \"arrow-h\": 59759,\n  \"arrow-left-l\": 59760,\n  \"arrow-left\": 59761,\n  \"arrow-move\": 59762,\n  \"arrow-resize\": 59763,\n  \"arrow-return-left\": 59764,\n  \"arrow-return-right\": 59765,\n  \"arrow-right-l\": 59766,\n  \"arrow-right\": 59767,\n  \"arrow-swap\": 59768,\n  \"arrow-up-l\": 59769,\n  \"arrow-up\": 59770,\n  \"arrow-v\": 59771,\n  \"caret-down\": 59772,\n  \"caret-left\": 59773,\n  \"caret-right\": 59774,\n  \"caret-up\": 59775,\n  \"fi\": 59776,\n  \"fontisto\": 59777,\n  \"backward\": 59866,\n  \"eject\": 59867,\n  \"equalizer\": 59868,\n  \"forward\": 59869,\n  \"headphone\": 59870,\n  \"heart\": 59871,\n  \"mic\": 59872,\n  \"music-note\": 59873,\n  \"pause\": 59874,\n  \"play-list\": 59875,\n  \"play\": 59876,\n  \"player-settings\": 59877,\n  \"podcast\": 59878,\n  \"random\": 59879,\n  \"record\": 59880,\n  \"star\": 59881,\n  \"step-backwrad\": 59882,\n  \"step-forward\": 59883,\n  \"stop\": 59884,\n  \"volume-down\": 59885,\n  \"volume-mute\": 59886,\n  \"volume-off\": 59887,\n  \"volume-up\": 59888,\n  \"airplay\": 60008,\n  \"bold\": 59918,\n  \"broken-link\": 59919,\n  \"center-align\": 59920,\n  \"close\": 59921,\n  \"columns\": 59922,\n  \"copy\": 59923,\n  \"eraser\": 59924,\n  \"export\": 59925,\n  \"file-1\": 59926,\n  \"file-2\": 59927,\n  \"folder\": 59928,\n  \"font\": 59929,\n  \"import\": 59930,\n  \"indent\": 59931,\n  \"italic\": 59932,\n  \"justify\": 59933,\n  \"left-align\": 59934,\n  \"link2\": 59935,\n  \"list-1\": 59936,\n  \"list-2\": 59937,\n  \"outdent\": 59938,\n  \"paperclip\": 59939,\n  \"paragraph\": 59940,\n  \"paste\": 59941,\n  \"preview\": 59942,\n  \"print2\": 59943,\n  \"redo\": 59944,\n  \"right-align\": 59945,\n  \"save-1\": 59946,\n  \"save\": 59947,\n  \"scissors2\": 59948,\n  \"strikethrough\": 59949,\n  \"subscript\": 59950,\n  \"superscript\": 59951,\n  \"table-1\": 59952,\n  \"table-2\": 59953,\n  \"text-height\": 59954,\n  \"text-width\": 59955,\n  \"underline\": 59956,\n  \"undo\": 59957,\n  \"cloud-down\": 59958,\n  \"cloud-refresh\": 59959,\n  \"cloud-up\": 59960,\n  \"cloudy-gusts\": 59961,\n  \"cloudy\": 59962,\n  \"compass\": 59963,\n  \"day-cloudy\": 59964,\n  \"day-haze\": 59965,\n  \"day-lightning\": 59966,\n  \"day-rain\": 59967,\n  \"day-snow\": 59968,\n  \"day-sunny\": 59969,\n  \"fog\": 59970,\n  \"horizon-alt\": 59971,\n  \"horizon\": 59972,\n  \"lightning\": 59973,\n  \"lightnings\": 59974,\n  \"night-alt-cloudy\": 59975,\n  \"night-alt-lightning\": 59976,\n  \"night-alt-rain\": 59977,\n  \"night-alt-snow\": 59978,\n  \"night-clear\": 59979,\n  \"rain\": 59980,\n  \"rainbow\": 59981,\n  \"rains\": 59982,\n  \"snow\": 59983,\n  \"snows\": 59984,\n  \"thermometer\": 59985,\n  \"umbrella\": 59986,\n  \"wind\": 59987,\n  \"confused\": 59988,\n  \"dizzy\": 59989,\n  \"expressionless\": 59990,\n  \"frowning\": 59991,\n  \"heart-eyes\": 59992,\n  \"laughing\": 59993,\n  \"mad\": 59994,\n  \"nervous\": 59995,\n  \"neutral\": 59996,\n  \"open-mouth\": 59997,\n  \"rage\": 59998,\n  \"slightly-smile\": 59999,\n  \"smiley\": 60000,\n  \"smiling\": 60001,\n  \"stuck-out-tongue\": 60002,\n  \"sunglasses\": 60003,\n  \"surprised\": 60004,\n  \"tongue\": 60005,\n  \"wink\": 60006,\n  \"zipper-mouth\": 60007,\n  \"aids\": 60233,\n  \"ambulance\": 60234,\n  \"bandage\": 60235,\n  \"bed-patient\": 60236,\n  \"blood-drop\": 60237,\n  \"blood-test\": 60238,\n  \"blood\": 60239,\n  \"dna\": 60240,\n  \"doctor\": 60241,\n  \"drug-pack\": 60242,\n  \"first-aid-alt\": 60243,\n  \"heart-alt\": 60244,\n  \"heartbeat-alt\": 60245,\n  \"heartbeat\": 60246,\n  \"helicopter-ambulance\": 60247,\n  \"hospital\": 60248,\n  \"injection-syringe\": 60249,\n  \"laboratory\": 60250,\n  \"nurse\": 60251,\n  \"nursing-home\": 60252,\n  \"paralysis-disability\": 60253,\n  \"pills\": 60254,\n  \"prescription\": 60255,\n  \"pulse\": 60256,\n  \"stethoscope\": 60257,\n  \"surgical-knife\": 60258,\n  \"tablets\": 60259,\n  \"test-bottle\": 60260,\n  \"test-tube-alt\": 60261,\n  \"test-tube\": 60262,\n  \"thermometer-alt\": 60263,\n  \"american-express\": 59856,\n  \"credit-card\": 59857,\n  \"google-wallet\": 59858,\n  \"iyzigo\": 59859,\n  \"mastercard\": 59860,\n  \"paypal-p\": 59861,\n  \"paypal\": 59862,\n  \"payu\": 59863,\n  \"troy\": 59864,\n  \"visa\": 59865,\n  \"dinners-club\": 60010,\n  \"apple-pay\": 60009,\n  \"discover\": 60013,\n  \"jcb\": 60014,\n  \"dislike\": 59796,\n  \"like\": 59797,\n  \"audio-description\": 59648,\n  \"blind\": 59649,\n  \"braille\": 59650,\n  \"deaf\": 59651,\n  \"fa-american-sign-language-interpreting\": 59652,\n  \"low-vision\": 59654,\n  \"tty\": 59655,\n  \"universal-acces\": 59656,\n  \"wheelchair\": 59657,\n  \"area-chart\": 59732,\n  \"bar-chart\": 59733,\n  \"line-chart\": 59734,\n  \"pie-chart-1\": 59735,\n  \"pie-chart-2\": 59736,\n  \"chrome\": 59726,\n  \"edge\": 59727,\n  \"firefox\": 59728,\n  \"internet-explorer\": 59729,\n  \"opera\": 59730,\n  \"safari\": 59731,\n  \"bitcoin\": 59737,\n  \"dollar\": 59738,\n  \"euro\": 59739,\n  \"gbp\": 59740,\n  \"gg\": 59741,\n  \"ils\": 59742,\n  \"inr\": 59743,\n  \"krw\": 59744,\n  \"rouble\": 59745,\n  \"tl\": 59746,\n  \"yen\": 59747,\n  \"genderless\": 59782,\n  \"intersex\": 59783,\n  \"mars-double\": 59784,\n  \"mars-stroke-h\": 59785,\n  \"mars-stroke-v\": 59786,\n  \"mars-stroke\": 59787,\n  \"mars\": 59788,\n  \"mercury\": 59789,\n  \"neuter\": 59790,\n  \"transgender-alt\": 59791,\n  \"transgender\": 59792,\n  \"venus-double\": 59793,\n  \"venus-mars\": 59794,\n  \"venus\": 59795,\n  \"automobile\": 59899,\n  \"bicycle\": 59900,\n  \"bus\": 59901,\n  \"car\": 59902,\n  \"helicopter\": 59903,\n  \"metro\": 59904,\n  \"motorcycle\": 59905,\n  \"plane\": 59906,\n  \"rocket\": 59907,\n  \"ship\": 59908,\n  \"subway\": 59909,\n  \"taxi\": 59910,\n  \"train\": 59911,\n  \"truck\": 59912,\n  \"yacht\": 59913,\n  \"beach-slipper\": 60203,\n  \"bus-ticket\": 60204,\n  \"cocktail\": 60205,\n  \"compass-alt\": 60206,\n  \"direction-sign\": 60207,\n  \"do-not-disturb\": 60208,\n  \"flotation-ring\": 60209,\n  \"holiday-village\": 60210,\n  \"hot-air-balloon\": 60211,\n  \"hotel-alt\": 60212,\n  \"hotel\": 60213,\n  \"island\": 60214,\n  \"money-symbol\": 60215,\n  \"parasol\": 60216,\n  \"passport-alt\": 60217,\n  \"passport\": 60218,\n  \"photograph\": 60219,\n  \"plane-ticket\": 60220,\n  \"room\": 60221,\n  \"sait-boat\": 60222,\n  \"snorkel\": 60223,\n  \"suitcase-alt\": 60224,\n  \"suitcase\": 60225,\n  \"sun\": 60226,\n  \"sunglasses-alt\": 60227,\n  \"swimsuit\": 60228,\n  \"tent\": 60229,\n  \"ticket-alt\": 60230,\n  \"train-ticket\": 60231,\n  \"wallet\": 60232,\n  \"circle-o-notch\": 59889,\n  \"propeller-1\": 59890,\n  \"propeller-2\": 59891,\n  \"propeller-3\": 59892,\n  \"propeller-4\": 59893,\n  \"spinner-cog\": 59894,\n  \"spinner-fidget\": 59895,\n  \"spinner-refresh\": 59896,\n  \"spinner-rotate-forward\": 59897,\n  \"spinner\": 59898,\n  \"snowflake\": 60081,\n  \"snowflake-1\": 60073,\n  \"snowflake-2\": 60074,\n  \"snowflake-3\": 60075,\n  \"snowflake-4\": 60076,\n  \"snowflake-5\": 60077,\n  \"snowflake-6\": 60078,\n  \"snowflake-7\": 60079,\n  \"snowflake-8\": 60080,\n  \"curve\": 59915,\n  \"ellipse\": 59916,\n  \"rectangle\": 59917,\n  \"shield\": 59914\n}"
  },
  {
    "path": "packages/fontisto/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/fontisto\",\n  \"version\": \"12.5.0\",\n  \"description\": \"Fontisto font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\",\n    \"./fonts/*.ttf\": \"./fonts/*.ttf\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"fontisto\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/fontisto\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\",\n    \"fontisto\": \"3.0.4\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/fontisto/react-native-vector-icons-fontisto.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-fontisto'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\nend\n"
  },
  {
    "path": "packages/fontisto/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * Fontisto icon set component.\n * Usage: <Fontisto name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/Fontisto.json';\n\nexport const Fontisto = createIconSet(glyphMap, {\n  postScriptName: 'fontisto',\n  fontFileName: 'Fontisto.ttf',\n  fontSource: require('../fonts/Fontisto.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require\n});\n\nexport type FontistoIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default Fontisto;\n"
  },
  {
    "path": "packages/fontisto/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * Fontisto icon set component.\n * Usage: <Fontisto name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/Fontisto.json';\n\nexport const Fontisto = createIconSet(glyphMap, {\n  postScriptName: 'fontisto',\n  fontFileName: 'Fontisto.ttf',\n});\n\nexport type FontistoIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default Fontisto;\n"
  },
  {
    "path": "packages/fontisto/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/fontisto/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/foundation/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"foundation\",\n    \"postScriptName\": \"fontcustom\",\n    \"upstreamFont\": \"foundation-icons\",\n    \"buildSteps\": {\n      \"glyphmap\": {\n        \"location\": \"../../node_modules/foundation-icons/foundation-icons.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".fi-\"\n      },\n      \"copyFont\": {\n        \"location\": \"../../node_modules/foundation-icons/foundation-icons.ttf\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"12.0.0\",\n        \"upstream\": \"2.0.0\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/foundation/CHANGELOG.md",
    "content": "## 12.5.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.4.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 12.4.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.4.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 12.4.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.3.0 (2025-08-03)\n\n### 🚀 Features\n\n- export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.3.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.2.0 (2025-07-20)\n\n### 🚀 Features\n\n- add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.2.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.1.0 (2025-07-12)\n\n### 🚀 Features\n\n- export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.1.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.2 (2025-06-15)\n\n### 🩹 Fixes\n\n- new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.2\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.1 (2025-06-15)\n\n### 🩹 Fixes\n\n- try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745))\n- remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767))\n- convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765))\n- updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c))\n- **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.1\n\n### ❤️ Thank You\n\n- Alexander Kucheryavenko @Red1tum\n- John Ferlito @johnf\n- Md. Jayed Hasan @JayedHasan232\n\n# 12.0.0 (2025-05-04)\n\n### 🚀 Features\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n- add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702))\n\n### 🩹 Fixes\n\n- upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691))\n- upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690))\n- mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99))\n\n### ⚠️  Breaking Changes\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n\n### ❤️ Thank You\n\n- Chanphirom Sok @chanphiromsok\n- John Ferlito @johnf"
  },
  {
    "path": "packages/foundation/README.md",
    "content": "# React Native Vector Icons - Foundation\n\nFoundation font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/foundation\n```\n\n## Usage\n\n```jsx\nimport { Foundation } from '@react-native-vector-icons/foundation';\n\n// ...\n\n<Foundation name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 12.0.0 | 2.0.0 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/foundation/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.foundation\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsFoundation\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.foundation\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-foundation\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-foundation/fonts\"\n  eachFile { println \"(RNVI:foundation) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n"
  },
  {
    "path": "packages/foundation/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.foundation\">\n</manifest>\n"
  },
  {
    "path": "packages/foundation/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/foundation/android/src/main/java/VectorIconsFoundationPackage.kt",
    "content": "package com.reactnativevectoricons.foundation\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsFoundationPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/foundation/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/foundation/glyphmaps/Foundation.json",
    "content": "{\n  \"address-book\": 61696,\n  \"alert\": 61697,\n  \"align-center\": 61698,\n  \"align-justify\": 61699,\n  \"align-left\": 61700,\n  \"align-right\": 61701,\n  \"anchor\": 61702,\n  \"annotate\": 61703,\n  \"archive\": 61704,\n  \"arrow-down\": 61705,\n  \"arrow-left\": 61706,\n  \"arrow-right\": 61707,\n  \"arrow-up\": 61708,\n  \"arrows-compress\": 61709,\n  \"arrows-expand\": 61710,\n  \"arrows-in\": 61711,\n  \"arrows-out\": 61712,\n  \"asl\": 61713,\n  \"asterisk\": 61714,\n  \"at-sign\": 61715,\n  \"background-color\": 61716,\n  \"battery-empty\": 61717,\n  \"battery-full\": 61718,\n  \"battery-half\": 61719,\n  \"bitcoin-circle\": 61720,\n  \"bitcoin\": 61721,\n  \"blind\": 61722,\n  \"bluetooth\": 61723,\n  \"bold\": 61724,\n  \"book-bookmark\": 61725,\n  \"book\": 61726,\n  \"bookmark\": 61727,\n  \"braille\": 61728,\n  \"burst-new\": 61729,\n  \"burst-sale\": 61730,\n  \"burst\": 61731,\n  \"calendar\": 61732,\n  \"camera\": 61733,\n  \"check\": 61734,\n  \"checkbox\": 61735,\n  \"clipboard-notes\": 61736,\n  \"clipboard-pencil\": 61737,\n  \"clipboard\": 61738,\n  \"clock\": 61739,\n  \"closed-caption\": 61740,\n  \"cloud\": 61741,\n  \"comment-minus\": 61742,\n  \"comment-quotes\": 61743,\n  \"comment-video\": 61744,\n  \"comment\": 61745,\n  \"comments\": 61746,\n  \"compass\": 61747,\n  \"contrast\": 61748,\n  \"credit-card\": 61749,\n  \"crop\": 61750,\n  \"crown\": 61751,\n  \"css3\": 61752,\n  \"database\": 61753,\n  \"die-five\": 61754,\n  \"die-four\": 61755,\n  \"die-one\": 61756,\n  \"die-six\": 61757,\n  \"die-three\": 61758,\n  \"die-two\": 61759,\n  \"dislike\": 61760,\n  \"dollar-bill\": 61761,\n  \"dollar\": 61762,\n  \"download\": 61763,\n  \"eject\": 61764,\n  \"elevator\": 61765,\n  \"euro\": 61766,\n  \"eye\": 61767,\n  \"fast-forward\": 61768,\n  \"female-symbol\": 61769,\n  \"female\": 61770,\n  \"filter\": 61771,\n  \"first-aid\": 61772,\n  \"flag\": 61773,\n  \"folder-add\": 61774,\n  \"folder-lock\": 61775,\n  \"folder\": 61776,\n  \"foot\": 61777,\n  \"foundation\": 61778,\n  \"graph-bar\": 61779,\n  \"graph-horizontal\": 61780,\n  \"graph-pie\": 61781,\n  \"graph-trend\": 61782,\n  \"guide-dog\": 61783,\n  \"hearing-aid\": 61784,\n  \"heart\": 61785,\n  \"home\": 61786,\n  \"html5\": 61787,\n  \"indent-less\": 61788,\n  \"indent-more\": 61789,\n  \"info\": 61790,\n  \"italic\": 61791,\n  \"key\": 61792,\n  \"laptop\": 61793,\n  \"layout\": 61794,\n  \"lightbulb\": 61795,\n  \"like\": 61796,\n  \"link\": 61797,\n  \"list-bullet\": 61798,\n  \"list-number\": 61799,\n  \"list-thumbnails\": 61800,\n  \"list\": 61801,\n  \"lock\": 61802,\n  \"loop\": 61803,\n  \"magnifying-glass\": 61804,\n  \"mail\": 61805,\n  \"male-female\": 61806,\n  \"male-symbol\": 61807,\n  \"male\": 61808,\n  \"map\": 61809,\n  \"marker\": 61810,\n  \"megaphone\": 61811,\n  \"microphone\": 61812,\n  \"minus-circle\": 61813,\n  \"minus\": 61814,\n  \"mobile-signal\": 61815,\n  \"mobile\": 61816,\n  \"monitor\": 61817,\n  \"mountains\": 61818,\n  \"music\": 61819,\n  \"next\": 61820,\n  \"no-dogs\": 61821,\n  \"no-smoking\": 61822,\n  \"page-add\": 61823,\n  \"page-copy\": 61824,\n  \"page-csv\": 61825,\n  \"page-delete\": 61826,\n  \"page-doc\": 61827,\n  \"page-edit\": 61828,\n  \"page-export-csv\": 61829,\n  \"page-export-doc\": 61830,\n  \"page-export-pdf\": 61831,\n  \"page-export\": 61832,\n  \"page-filled\": 61833,\n  \"page-multiple\": 61834,\n  \"page-pdf\": 61835,\n  \"page-remove\": 61836,\n  \"page-search\": 61837,\n  \"page\": 61838,\n  \"paint-bucket\": 61839,\n  \"paperclip\": 61840,\n  \"pause\": 61841,\n  \"paw\": 61842,\n  \"paypal\": 61843,\n  \"pencil\": 61844,\n  \"photo\": 61845,\n  \"play-circle\": 61846,\n  \"play-video\": 61847,\n  \"play\": 61848,\n  \"plus\": 61849,\n  \"pound\": 61850,\n  \"power\": 61851,\n  \"previous\": 61852,\n  \"price-tag\": 61853,\n  \"pricetag-multiple\": 61854,\n  \"print\": 61855,\n  \"prohibited\": 61856,\n  \"projection-screen\": 61857,\n  \"puzzle\": 61858,\n  \"quote\": 61859,\n  \"record\": 61860,\n  \"refresh\": 61861,\n  \"results-demographics\": 61862,\n  \"results\": 61863,\n  \"rewind-ten\": 61864,\n  \"rewind\": 61865,\n  \"rss\": 61866,\n  \"safety-cone\": 61867,\n  \"save\": 61868,\n  \"share\": 61869,\n  \"sheriff-badge\": 61870,\n  \"shield\": 61871,\n  \"shopping-bag\": 61872,\n  \"shopping-cart\": 61873,\n  \"shuffle\": 61874,\n  \"skull\": 61875,\n  \"social-500px\": 61876,\n  \"social-adobe\": 61877,\n  \"social-amazon\": 61878,\n  \"social-android\": 61879,\n  \"social-apple\": 61880,\n  \"social-behance\": 61881,\n  \"social-bing\": 61882,\n  \"social-blogger\": 61883,\n  \"social-delicious\": 61884,\n  \"social-designer-news\": 61885,\n  \"social-deviant-art\": 61886,\n  \"social-digg\": 61887,\n  \"social-dribbble\": 61888,\n  \"social-drive\": 61889,\n  \"social-dropbox\": 61890,\n  \"social-evernote\": 61891,\n  \"social-facebook\": 61892,\n  \"social-flickr\": 61893,\n  \"social-forrst\": 61894,\n  \"social-foursquare\": 61895,\n  \"social-game-center\": 61896,\n  \"social-github\": 61897,\n  \"social-google-plus\": 61898,\n  \"social-hacker-news\": 61899,\n  \"social-hi5\": 61900,\n  \"social-instagram\": 61901,\n  \"social-joomla\": 61902,\n  \"social-lastfm\": 61903,\n  \"social-linkedin\": 61904,\n  \"social-medium\": 61905,\n  \"social-myspace\": 61906,\n  \"social-orkut\": 61907,\n  \"social-path\": 61908,\n  \"social-picasa\": 61909,\n  \"social-pinterest\": 61910,\n  \"social-rdio\": 61911,\n  \"social-reddit\": 61912,\n  \"social-skillshare\": 61913,\n  \"social-skype\": 61914,\n  \"social-smashing-mag\": 61915,\n  \"social-snapchat\": 61916,\n  \"social-spotify\": 61917,\n  \"social-squidoo\": 61918,\n  \"social-stack-overflow\": 61919,\n  \"social-steam\": 61920,\n  \"social-stumbleupon\": 61921,\n  \"social-treehouse\": 61922,\n  \"social-tumblr\": 61923,\n  \"social-twitter\": 61924,\n  \"social-vimeo\": 61925,\n  \"social-windows\": 61926,\n  \"social-xbox\": 61927,\n  \"social-yahoo\": 61928,\n  \"social-yelp\": 61929,\n  \"social-youtube\": 61930,\n  \"social-zerply\": 61931,\n  \"social-zurb\": 61932,\n  \"sound\": 61933,\n  \"star\": 61934,\n  \"stop\": 61935,\n  \"strikethrough\": 61936,\n  \"subscript\": 61937,\n  \"superscript\": 61938,\n  \"tablet-landscape\": 61939,\n  \"tablet-portrait\": 61940,\n  \"target-two\": 61941,\n  \"target\": 61942,\n  \"telephone-accessible\": 61943,\n  \"telephone\": 61944,\n  \"text-color\": 61945,\n  \"thumbnails\": 61946,\n  \"ticket\": 61947,\n  \"torso-business\": 61948,\n  \"torso-female\": 61949,\n  \"torso\": 61950,\n  \"torsos-all-female\": 61951,\n  \"torsos-all\": 61952,\n  \"torsos-female-male\": 61953,\n  \"torsos-male-female\": 61954,\n  \"torsos\": 61955,\n  \"trash\": 61956,\n  \"trees\": 61957,\n  \"trophy\": 61958,\n  \"underline\": 61959,\n  \"universal-access\": 61960,\n  \"unlink\": 61961,\n  \"unlock\": 61962,\n  \"upload-cloud\": 61963,\n  \"upload\": 61964,\n  \"usb\": 61965,\n  \"video\": 61966,\n  \"volume-none\": 61967,\n  \"volume-strike\": 61968,\n  \"volume\": 61969,\n  \"web\": 61970,\n  \"wheelchair\": 61971,\n  \"widget\": 61972,\n  \"wrench\": 61973,\n  \"x-circle\": 61974,\n  \"x\": 61975,\n  \"yen\": 61976,\n  \"zoom-in\": 61977,\n  \"zoom-out\": 61978\n}"
  },
  {
    "path": "packages/foundation/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/foundation\",\n  \"version\": \"12.5.0\",\n  \"description\": \"Foundation font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\",\n    \"./fonts/*.ttf\": \"./fonts/*.ttf\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"foundation\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/foundation\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\",\n    \"foundation-icons\": \"2.0.0\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/foundation/react-native-vector-icons-foundation.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-foundation'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\nend\n"
  },
  {
    "path": "packages/foundation/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * Foundation icon set component.\n * Usage: <Foundation name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/Foundation.json';\n\nexport const Foundation = createIconSet(glyphMap, {\n  postScriptName: 'fontcustom',\n  fontFileName: 'Foundation.ttf',\n  fontSource: require('../fonts/Foundation.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require\n});\n\nexport type FoundationIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default Foundation;\n"
  },
  {
    "path": "packages/foundation/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * Foundation icon set component.\n * Usage: <Foundation name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/Foundation.json';\n\nexport const Foundation = createIconSet(glyphMap, {\n  postScriptName: 'fontcustom',\n  fontFileName: 'Foundation.ttf',\n});\n\nexport type FoundationIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default Foundation;\n"
  },
  {
    "path": "packages/foundation/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/foundation/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/generator-react-native-vector-icons/.gitignore",
    "content": "generators\n/tsconfig.tsbuildinfo\n"
  },
  {
    "path": "packages/generator-react-native-vector-icons/CHANGELOG.md",
    "content": "## 12.5.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.4.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.4.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 12.4.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.3.0 (2025-08-03)\n\n### 🚀 Features\n\n- export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.2.0 (2025-07-20)\n\n### 🚀 Features\n\n- add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.1.0 (2025-07-12)\n\n### 🚀 Features\n\n- export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761))\n\n### 🩹 Fixes\n\n- upgrade Octicons to 19.15.3 ([#1795](https://github.com/oblador/react-native-vector-icons/pull/1795))\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.3 (2025-06-15)\n\n### 🩹 Fixes\n\n- update generator to fix the sign on the version tables ([#1775](https://github.com/oblador/react-native-vector-icons/pull/1775))\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.2 (2025-06-15)\n\n### 🩹 Fixes\n\n- new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774))\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.1 (2025-06-15)\n\n### 🩹 Fixes\n\n- try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745))\n- remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767))\n- convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765))\n- updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c))\n- **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742))\n\n### ❤️ Thank You\n\n- Alexander Kucheryavenko @Red1tum\n- John Ferlito @johnf\n- Md. Jayed Hasan @JayedHasan232\n\n# 12.0.0 (2025-05-04)\n\n### 🚀 Features\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n- add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702))\n\n### 🩹 Fixes\n\n- upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691))\n- upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690))\n\n### ⚠️  Breaking Changes\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n\n### ❤️ Thank You\n\n- Chanphirom Sok @chanphiromsok\n- John Ferlito @johnf"
  },
  {
    "path": "packages/generator-react-native-vector-icons/README.md",
    "content": "# generator-react-native-vector-icons\n\nThis package can generate individual icon packages.\n\nUsage:\n\n1. Run `pnpm run watch-tsc` in this package to trigger a build to create the generator.\n2. Run `pnpm run watch-deps` in this package to create the generator.\n3. Run `pnpm run generate` from the root of the repository to generate the individual icon packages.\n"
  },
  {
    "path": "packages/generator-react-native-vector-icons/package.json",
    "content": "{\n  \"name\": \"generator-react-native-vector-icons\",\n  \"version\": \"12.5.0\",\n  \"description\": \"Generates React Native vector icons font library\",\n  \"type\": \"module\",\n  \"files\": [\n    \"generators\"\n  ],\n  \"main\": \"generators/index.js\",\n  \"keywords\": [\n    \"react-native-vector-icons\",\n    \"yeoman-generator\"\n  ],\n  \"dependencies\": {\n    \"mem-fs\": \"^4.1.2\",\n    \"npm-registry-fetch\": \"^18.0.2\",\n    \"oslllo-svg-fixer\": \"^5.0.0\",\n    \"postcss\": \"^8.4.49\",\n    \"postcss-selector-parser\": \"^7.0.0\",\n    \"registry-auth-token\": \"^5.0.3\",\n    \"semver\": \"^7.6.3\",\n    \"yeoman-generator\": \"^7.4.0\"\n  },\n  \"devDependencies\": {\n    \"@types/npm-registry-fetch\": \"^8.0.7\",\n    \"@types/semver\": \"^7.5.8\",\n    \"@yeoman/types\": \"^1.5.0\",\n    \"copyfiles\": \"^2.4.1\",\n    \"onchange\": \"^7.1.0\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"scripts\": {\n    \"prepare\": \"npm run clean && tsc && npm run copydeps\",\n    \"copydeps\": \"copyfiles --up 1 'src/*/templates/**' 'src/*/fontforge/**' generators\",\n    \"lint\": \"eslint ./src --ext .js,.ts\",\n    \"clean\": \"rm -rf ./generators\",\n    \"watch\": \"npm run watch-tsc --silent & npm run watch-deps --silent\",\n    \"watch-deps\": \"onchange 'src/*/templates/**' 'src/*/fontforge/**' --initial -- pnpm run copydeps\",\n    \"watch-tsc\": \"tsc -w\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/generator-react-native-vector-icons\"\n  },\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  }\n}\n"
  },
  {
    "path": "packages/generator-react-native-vector-icons/src/app/fontforge/correct-direction.py",
    "content": "import fontforge\n\nfont_path = sys.argv[1]\n\nfont = fontforge.open(font_path)\n\n# Iterate through all glyphs in the font\nfor glyph in font.glyphs():\n   glyph.correctDirection()\n\nfont.generate(font_path)\n\nprint(f'Fixed direction on all glyphs and saved to {font_path}')\n"
  },
  {
    "path": "packages/generator-react-native-vector-icons/src/app/generateGlyphmap.ts",
    "content": "import fs from 'node:fs';\n\nimport postcss from 'postcss';\nimport parser from 'postcss-selector-parser';\n\nconst extractGlyphMapFromCodepoints = (fileName: string) => {\n  const codepoints = fs.readFileSync(fileName, { encoding: 'utf8' }).split('\\n');\n\n  const glyphMap: Record<string, number> = {};\n\n  codepoints.forEach((point) => {\n    const parts = point.split(' ');\n    if (parts[0] && parts[1]) {\n      glyphMap[parts[0].replace(/_/g, '-')] = Number.parseInt(parts[1], 16);\n    }\n  });\n\n  return glyphMap;\n};\n\nconst extractGlyphMapFromCss = (fileName: string, selectorPrefix: string) => {\n  const css = fs.readFileSync(fileName, 'utf-8');\n  const glyphMap: Record<string, number> = {};\n\n  const selectorPattern = `${escapeRegExp(selectorPrefix)}([A-Za-z0-9_-]+)::?before`;\n  postcss.parse(css).walkRules((rule) => {\n    const iconNames: string[] = [];\n    const transform = (selectors: parser.Root) => {\n      selectors.walk((selector) => {\n        const md = selector.toString().match(selectorPattern);\n        if (md?.[1]) {\n          iconNames.push(md[1]);\n        }\n      });\n    };\n\n    parser(transform).processSync(rule.selector);\n\n    const contents: string[] = [];\n    rule.walkDecls('content', (decl) => {\n      const content = decl.value.replace(/['\"]/g, ''); // Remove quotes\n      contents.push(content);\n    });\n\n    const content = contents[0];\n    if (!content || content === 'var(--fa)') {\n      return;\n    }\n    const codePoint = Number.parseInt(content.slice(1), 16);\n\n    iconNames.forEach((iconName) => {\n      glyphMap[iconName] = codePoint;\n    });\n  });\n\n  // TODO: Quick hack for fontawesome - refactor this to be more general\n  const selectorPatternFA = `${escapeRegExp(selectorPrefix)}([A-Za-z0-9_-]+)$`;\n  postcss.parse(css).walkRules((rule) => {\n    const iconNames: string[] = [];\n    const transform = (selectors: parser.Root) => {\n      selectors.walk((selector) => {\n        const md = selector.toString().match(selectorPatternFA);\n        if (md?.[1]) {\n          iconNames.push(md[1]);\n        }\n      });\n    };\n\n    parser(transform).processSync(rule.selector);\n\n    const contents: string[] = [];\n    rule.walkDecls('--fa', (decl) => {\n      const content = decl.value.replace(/^['\"]/g, '').replace(/['\"]$/g, ''); // Remove quotes\n      if (content.length === 2 && content[0] === '\\\\') {\n        contents.push(content.at(1) || '');\n      } else {\n        contents.push(content);\n      }\n    });\n\n    const content = contents[0];\n    if (!content) {\n      return;\n    }\n    let codePoint = Number.parseInt(content.slice(1), 16);\n    if (Number.isNaN(codePoint)) {\n      codePoint = content.codePointAt(0) || 0;\n    }\n\n    iconNames.forEach((iconName) => {\n      glyphMap[iconName] = codePoint;\n    });\n  });\n\n  return glyphMap;\n};\n\nconst escapeRegExp = (str: string) => str.replace(/[-[\\]/{}()*+?.\\\\^$|]/g, '\\\\$&');\n\nexport const generateGlyphmap = (mode: 'css' | 'codepoints', fileName: string, selectorPrefix = '.icon-') => {\n  if (!fileName) {\n    throw new Error('No files provided');\n  }\n  const glyphMap =\n    mode === 'css' ? extractGlyphMapFromCss(fileName, selectorPrefix) : extractGlyphMapFromCodepoints(fileName);\n\n  return JSON.stringify(glyphMap, null, '  ');\n};\n"
  },
  {
    "path": "packages/generator-react-native-vector-icons/src/app/index.ts",
    "content": "/* eslint-disable no-underscore-dangle,import/no-unresolved */\n\nimport fs from 'node:fs';\nimport os from 'node:os';\nimport path from 'node:path';\n\nimport npmFetch from 'npm-registry-fetch';\nimport getAuthToken from 'registry-auth-token';\nimport semver from 'semver';\nimport Generator, { type BaseOptions } from 'yeoman-generator';\n\nimport { generateGlyphmap } from './generateGlyphmap.js';\n\ninterface Data {\n  name: string;\n  packageName: string;\n  className: string;\n  postScriptName: string;\n  fontFileName: string;\n  androidName: string;\n  dependencies: Record<string, string>;\n  upstreamFont?: string | { registry?: string; packageName: string; versionRange: string; versionOnly?: boolean };\n  packageJSON?: Record<string, Record<string, string>>;\n  versionSuffix?: string;\n  customReadme?: boolean;\n  customSrc?: string | boolean;\n  copyCustomFonts?: boolean;\n  source: string;\n  customAssets?: boolean;\n  commonPackage?: string;\n  noGlyphmap?: boolean;\n  extraExports: string;\n  meta: Record<string, object>;\n  buildSteps: {\n    preScript?: {\n      script: string;\n    };\n    renameSVGs?: {\n      location: string;\n      keepPostfix?: string;\n    };\n    fixSVGPaths?: {\n      location: string;\n      cleanup?: boolean;\n    };\n    fontCustom?: {\n      location: string;\n      cleanup?: boolean;\n    };\n    glyphmap?: {\n      mode: 'css' | 'codepoints';\n      location: string | [string, string][];\n      prefix?: string;\n      cleanup?: boolean;\n    };\n    copyFont?: {\n      location: string | [string, string][];\n    };\n    fontforgeScript?: {\n      script: string;\n    };\n    postScript?: {\n      script: string;\n    };\n  };\n  versions?: { rnvi: string; upstream: string }[];\n  versionTable?: string;\n}\n\nconst { uid, gid } = os.userInfo();\n\ntype Arguments = BaseOptions & {\n  currentVersion: string;\n};\n\nexport default class extends Generator<Arguments> {\n  data: Data;\n\n  constructor(args: string | string[], opts: Arguments) {\n    super(args, opts, { customInstallTask: true });\n\n    this.option('current-version', { type: String, description: 'Current package version' });\n\n    this.data = this._data();\n  }\n\n  async writing() {\n    const upstreamVersion = await this._resolveUpstreamVersion();\n    if (upstreamVersion) {\n      this._updateVersionTracking(upstreamVersion);\n    }\n    this._writeTemplates();\n    await this._fixPackageVersion();\n    await this._addFontDependencies(upstreamVersion);\n    await this._addDependencies();\n  }\n\n  async install() {\n    if (this.options.skipInstall) {\n      return;\n    }\n    this.spawnSync('pnpm', ['install', '--filter', '.', '--ignore-scripts']);\n  }\n\n  end() {\n    this._buildSteps();\n  }\n\n  _docker(image: string, args: string[], options: string[] = []) {\n    const { exitCode } = this.spawnSync(\n      'docker',\n      [\n        'run',\n        '--rm',\n        `--volume=${process.cwd()}:/usr/src/app`,\n        `--volume=${process.cwd()}/../../node_modules:/usr/src/app/node_modules`,\n        `--user=${uid}:${gid}`,\n        '--env=SOURCE_DATE_EPOCH=1702622477', // TODO: Should we use something more sensible as the date for the fonts\n        ...options,\n        image,\n        ...args,\n      ],\n      { stdio: 'inherit' },\n    );\n\n    if (exitCode !== 0) {\n      throw new Error(`${image} exited with exitCode ${exitCode}`);\n    }\n  }\n\n  _writeTemplates() {\n    const { data } = this;\n\n    const files: Array<string | [string, string]> = [\n      'package.json',\n      'tsconfig.json',\n      'tsconfig.build.json',\n      'babel.config.js',\n      'android/build.gradle',\n      'android/src/main/AndroidManifestNew.xml',\n      'android/src/main/AndroidManifest.xml',\n    ];\n    files.push(['android/src/main/java/Package.kt', `android/src/main/java/VectorIcons${data.className}Package.kt`]);\n\n    files.push(['font.podspec', `react-native-vector-icons-${data.packageName}.podspec`]);\n\n    if (data.customSrc === true) {\n      // Do nothing\n    } else if (data.customSrc) {\n      files.push([data.customSrc, data.customSrc.endsWith('.tsx') ? 'src/index.tsx' : 'src/index.ts']);\n    } else {\n      files.push('src/index.ts');\n      files.push('src/static.ts');\n    }\n\n    if (!data.customReadme) {\n      files.push('README.md');\n    }\n\n    files.forEach((file) => {\n      if (typeof file === 'string') {\n        this.fs.copyTpl(this.templatePath(file), this.destinationPath(file), data);\n      } else {\n        const [from, to] = file;\n\n        this.fs.copyTpl(this.templatePath(from), this.destinationPath(to), data);\n      }\n    });\n\n    // Render static version of customSrc (same template, no fontSource requires)\n    if (data.customSrc && data.customSrc !== true) {\n      const staticDest = data.customSrc.endsWith('.tsx') ? 'src/static.tsx' : 'src/static.ts';\n      this.fs.copyTpl(this.templatePath(data.customSrc), this.destinationPath(staticDest), { ...data, isStatic: true });\n    }\n  }\n\n  async _fixPackageVersion() {\n    this.fs.extendJSON(this.destinationPath('package.json'), { version: this.options.currentVersion });\n  }\n\n  async _resolveUpstreamVersion(): Promise<string | undefined> {\n    const { data } = this;\n\n    if (!data.upstreamFont) {\n      return undefined;\n    }\n\n    if (typeof data.upstreamFont === 'string') {\n      const packageInfo = (await npmFetch.json(`https://registry.npmjs.org/${data.upstreamFont}/latest`)) as {\n        version: string;\n      };\n      return packageInfo.version;\n    }\n\n    const registry = data.upstreamFont.registry ?? 'https://registry.npmjs.org';\n    const versionRange = data.upstreamFont.versionRange || '*';\n    const authToken = getAuthToken(registry.replace(/^https?:/, ''));\n\n    const packageInfo = await npmFetch.json(`${registry}/${data.upstreamFont.packageName}`, {\n      forceAuth: { _authToken: authToken?.token },\n    });\n    const versions = Object.keys(packageInfo.versions as string[]);\n    const resolvedVersion = semver.maxSatisfying(versions, versionRange);\n    if (!resolvedVersion) {\n      throw new Error(`Invalid upstreamFont ${data.upstreamFont.packageName}: no matching version`);\n    }\n    return resolvedVersion;\n  }\n\n  _updateVersionTracking(upstreamVersion: string) {\n    const { currentVersion } = this.options;\n    let { versions } = this.data;\n\n    if (!versions || versions.length === 0) {\n      versions = [{ rnvi: currentVersion, upstream: upstreamVersion }];\n    } else {\n      const lastIndex = versions.length - 1;\n\n      const version = versions[lastIndex];\n      if (!version) {\n        throw new Error('Invalid versions data: empty version entry');\n      }\n\n      if (version.upstream !== upstreamVersion) {\n        if (version.rnvi === currentVersion) {\n          version.upstream = upstreamVersion;\n        } else {\n          versions.push({ rnvi: currentVersion, upstream: upstreamVersion });\n        }\n      }\n    }\n\n    this.config.set('versions', versions);\n    this.data.versions = versions;\n\n    const versionTable: string[] = [];\n    versions.forEach((version) => {\n      versionTable.push(`| > ${version.rnvi} | ${version.upstream} |`);\n    });\n    this.data.versionTable = versionTable.join('\\n');\n  }\n\n  async _addFontDependencies(resolvedVersion?: string) {\n    const { data } = this;\n\n    if (!data.upstreamFont || !resolvedVersion) {\n      return;\n    }\n\n    if (typeof data.upstreamFont === 'object' && data.upstreamFont.versionOnly) {\n      return;\n    }\n\n    const packageName = typeof data.upstreamFont === 'string' ? data.upstreamFont : data.upstreamFont.packageName;\n    await this.addDevDependencies({ [packageName]: resolvedVersion });\n  }\n\n  async _addDependencies() {\n    const { data } = this;\n\n    if (!data.dependencies) {\n      return;\n    }\n\n    Object.entries(data.dependencies).forEach(async ([depName, depVersion]) => {\n      await this.addDependencies({ [depName]: depVersion as string });\n    });\n  }\n\n  _buildSteps() {\n    this._preScript();\n    this._renameSVGs();\n    this._fixSVGPaths();\n    this._buildFontCustom();\n    this._buildGlyphmap();\n    this._copyFont();\n    this._fontForgeScript();\n    this._postScript();\n  }\n\n  _preScript() {\n    const { preScript } = this.data.buildSteps;\n    if (!preScript) {\n      return;\n    }\n\n    const { exitCode } = this.spawnSync('bash', ['-c', preScript.script], { stdio: 'inherit' });\n\n    if (exitCode !== 0) {\n      throw new Error(`preScript exited with exitCode ${exitCode}`);\n    }\n  }\n\n  _renameSVGs() {\n    const { renameSVGs } = this.data.buildSteps;\n    if (!renameSVGs) {\n      return;\n    }\n    const { keepPostfix, location } = renameSVGs;\n\n    fs.mkdirSync('renamedSVGs');\n\n    if (keepPostfix) {\n      const files = fs.readdirSync(location);\n      files.forEach((file) => {\n        if (file.endsWith(`${keepPostfix}.svg`)) {\n          // Delete files that do not end with -16.svg\n          fs.copyFileSync(path.join(location, file), path.join('renamedSVGs', file.replace(keepPostfix, '')));\n        }\n      });\n    }\n  }\n\n  _fixSVGPaths() {\n    const { fixSVGPaths } = this.data.buildSteps;\n    if (!fixSVGPaths) {\n      return;\n    }\n\n    fs.mkdirSync('fixedSvg');\n\n    const location = fixSVGPaths.cleanup ? 'renamedSVGs' : fixSVGPaths.location;\n\n    const { exitCode } = this.spawnSync(\n      '../../node_modules/.bin/oslllo-svg-fixer',\n      ['-s', location, '-d', 'fixedSvg'],\n      { stdio: 'inherit' },\n    );\n\n    if (exitCode !== 0) {\n      throw new Error(`oslllo-svg-fixer exited with exitCode ${exitCode}`);\n    }\n\n    if (fixSVGPaths.cleanup) {\n      fs.rmSync('renamedSVgs', { recursive: true });\n    }\n  }\n\n  _buildFontCustom() {\n    const { data } = this;\n\n    const { fontCustom } = this.data.buildSteps;\n    if (!fontCustom) {\n      return;\n    }\n\n    const args = [\n      'compile',\n      fontCustom.location,\n      '--templates',\n      'css',\n      '--name',\n      data.className,\n      '--force',\n      '--no-hash',\n    ];\n\n    this._docker('johnf/fontcustom', args);\n\n    if (!fs.existsSync('fonts')) {\n      fs.mkdirSync('fonts');\n    }\n    fs.renameSync(`${data.className}/${data.className}.ttf`, `fonts/${data.className}.ttf`);\n    fs.renameSync(`${data.className}/${data.className}.css`, `${data.className}.css`);\n\n    fs.rmSync(data.className, { recursive: true });\n\n    if (fontCustom.cleanup) {\n      fs.rmSync(fontCustom.location, { recursive: true });\n    }\n  }\n\n  _fontForgeScript() {\n    const { data } = this;\n\n    const { fontforgeScript } = this.data.buildSteps;\n    if (!fontforgeScript) {\n      return;\n    }\n\n    const options = [\n      '--entrypoint=/usr/local/bin/fontforge',\n      `--volume=${process.cwd()}/../../node_modules/generator-react-native-vector-icons/generators/app/fontforge/${fontforgeScript.script}:/script.py`,\n    ];\n\n    const args = ['-script', '/script.py', `fonts/${data.className}.ttf`];\n\n    this._docker('johnf/fontcustom', args, options);\n  }\n\n  _buildGlyphmap() {\n    const { data } = this;\n\n    const { glyphmap } = this.data.buildSteps;\n    if (!glyphmap) {\n      return;\n    }\n\n    let locations: [string, string][] = [];\n    if (!glyphmap.location) {\n      locations.push([`${data.className}.css`, data.fontFileName]);\n    } else if (typeof glyphmap.location === 'string') {\n      locations.push([glyphmap.location, data.className]);\n    } else {\n      locations = glyphmap.location;\n    }\n\n    if (!fs.existsSync('glyphmaps')) {\n      fs.mkdirSync('glyphmaps');\n    }\n\n    locations.forEach(([from, to]) => {\n      const json = generateGlyphmap(glyphmap.mode, from, glyphmap.prefix);\n\n      fs.writeFileSync(`glyphmaps/${to}.json`, json);\n\n      if (glyphmap.cleanup) {\n        fs.rmSync(from);\n      }\n    });\n  }\n\n  _copyFont() {\n    const { data } = this;\n\n    const { copyFont } = this.data.buildSteps;\n    if (!copyFont) {\n      return;\n    }\n\n    if (!fs.existsSync('fonts')) {\n      fs.mkdirSync('fonts');\n    }\n\n    let locations: [string, string][] = [];\n    if (typeof copyFont.location === 'string') {\n      locations.push([copyFont.location, data.fontFileName]);\n    } else {\n      locations = copyFont.location;\n    }\n\n    locations.forEach(([from, to]) => {\n      if (from.endsWith('.ttf')) {\n        fs.cpSync(from, `fonts/${to}.ttf`);\n\n        return;\n      }\n\n      if (from.endsWith('.woff2')) {\n        const { exitCode } = this.spawnSync('woff2_decompress', [from], { stdio: 'inherit' });\n\n        if (exitCode !== 0) {\n          throw new Error(`woff2_decompress exited with exitCode ${exitCode}`);\n        }\n\n        fs.renameSync(from.replace(/\\.woff2$/, '.ttf'), `fonts/${to}.ttf`);\n\n        return;\n      }\n\n      throw new Error(`Unsupported font format: ${from}`);\n    });\n  }\n\n  _postScript() {\n    const { postScript } = this.data.buildSteps;\n    if (!postScript) {\n      return;\n    }\n\n    const { exitCode } = this.spawnSync('bash', ['-c', postScript.script], { stdio: 'inherit' });\n\n    if (exitCode !== 0) {\n      throw new Error(`postScript exited with exitCode ${exitCode}`);\n    }\n  }\n\n  _data() {\n    // TODO: Use zod to vaidate the .yo-rc.json data\n    const data = this.config.getAll() as unknown as Data;\n    // ant-design\n    if (!data.packageName) {\n      throw new Error('packageName is required');\n    }\n\n    // Ant Design\n    data.name ||= data.packageName\n      .split('-')\n      .map((x) => x.charAt(0).toUpperCase() + x.slice(1))\n      .join(' ');\n    // AntDesign\n    data.className ||= data.packageName\n      .split('-')\n      .map((x) => x.charAt(0).toUpperCase() + x.slice(1))\n      .join('');\n    // AntDesign\n    data.postScriptName ||= data.className;\n    data.fontFileName ||= data.className;\n    // ant_design\n    data.androidName = data.packageName.replaceAll('-', '_');\n\n    data.buildSteps ||= {};\n    data.customReadme ||= false;\n    data.customAssets ||= false;\n    data.copyCustomFonts ||= false;\n    data.commonPackage ||= 'common';\n    data.source = './src/index.ts';\n    if (typeof data.customSrc === 'string') {\n      data.source = data.customSrc.endsWith('.tsx') ? './src/index.tsx' : './src/index.ts';\n    }\n\n    if (data.versions) {\n      const versionTable: string[] = [];\n      data.versions.forEach((version) => {\n        versionTable.push(`| > ${version.rnvi} | ${version.upstream} |`);\n      });\n\n      data.versionTable = versionTable.join('\\n');\n    }\n\n    const extraExports = [];\n    if (!data.noGlyphmap) {\n      extraExports.push('\"./glyphmaps/*.json\": \"./glyphmaps/*.json\"');\n    }\n\n    if (!data.copyCustomFonts) {\n      extraExports.push('\"./fonts/*.ttf\": \"./fonts/*.ttf\"');\n    }\n\n    data.extraExports = extraExports.length === 0 ? '' : `,\\n    ${extraExports.join(',\\n    ')}`;\n\n    return data;\n  }\n}\n"
  },
  {
    "path": "packages/generator-react-native-vector-icons/src/app/templates/README.md",
    "content": "# React Native Vector Icons - <%= name %>\n\n<%= name %> font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n<% if (copyCustomFonts) { -%>\n> [!IMPORTANT]\n> This package does not include the fonts. You must provide them yourself.\n\n<% } -%>\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/<%= packageName %>\n```\n\n<% if (copyCustomFonts) { -%>\n## Custom Fonts\n\nThis package requires you to provide the font files. Place your `.ttf` font\nfile in the following location:\n\n```\nrnvi-fonts/<%= packageName %>/<%= fontFileName %>.ttf\n```\n\nThe font will be automatically copied during the build process for both iOS and\nAndroid.\n\n<% } -%>\n## Usage\n\n```jsx\nimport { <%= className %> } from '@react-native-vector-icons/<%= packageName %>';\n\n// ...\n\n<<%= className %> name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n<% if (versionTable) { -%>\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n<%= versionTable %>\n\n<% } -%>\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/generator-react-native-vector-icons/src/app/templates/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.<%= androidName %>\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIcons<%= className %>\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.<%= androidName %>\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-<%= packageName %>\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-<%= packageName %>/fonts\"\n  eachFile { println \"(RNVI:<%= packageName %>) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n<% if (copyCustomFonts) { -%>\n\ntask copyExtraFonts(type: Copy) {\n  from \"${rootDir.parentFile.absolutePath}/rnvi-fonts/<%= packageName %>\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-<%= packageName %>/fonts\"\n  eachFile { println \"(RNVI:<%= packageName %>) Copying custom font: ${it.file}\" }\n}\n\npreBuild.dependsOn(copyExtraFonts)\n<% } -%>\n"
  },
  {
    "path": "packages/generator-react-native-vector-icons/src/app/templates/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.<%= androidName %>\">\n</manifest>\n"
  },
  {
    "path": "packages/generator-react-native-vector-icons/src/app/templates/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/generator-react-native-vector-icons/src/app/templates/android/src/main/java/Package.kt",
    "content": "package com.reactnativevectoricons.<%= androidName %>\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIcons<%= className %>Package : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/generator-react-native-vector-icons/src/app/templates/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/generator-react-native-vector-icons/src/app/templates/font.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-<%= packageName %>'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\n<% if (copyCustomFonts) { -%>\n\n  s.script_phase = {\n    name: 'Copy Custom Fonts',\n    execution_position: :after_compile,\n    script: <<~SCRIPT\n      set -e\n\n      HEAD=\"(RNVI-<%= packageName %>)\"\n\n      echo \"${HEAD} START_COPY_FONTS\"\n\n      echo \"${HEAD} PWD: $(pwd)\"\n\n      #\n      # Find the custom font Directory\n      #\n\n      # Assume the project root is always two directories above the POD_ROOT\n      echo \"${HEAD} PODS_ROOT: $PODS_ROOT\"\n\n      PROJECT_ROOT=\"${PODS_ROOT}/../..\"\n      echo \"${HEAD} PROJECT_ROOT: $PROJECT_ROOT\"\n\n      cd $PROJECT_ROOT\n      FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/\"//g')\n      if [ -z \"$FONTS_DIR\" ]; then\n        FONTS_DIR=\"rnvi-fonts\"\n      fi\n      echo \"${HEAD} FONTS_DIR: $FONTS_DIR\"\n\n      FONTS_DIR=\"${PROJECT_ROOT}/${FONTS_DIR}/<%= packageName %>\"\n      if [ ! -d \"$FONTS_DIR\" ]; then\n        echo \"${HEAD} $FONTS_DIR not found\"\n        exit 0\n      fi\n\n      #\n      # Find the destination we copy to\n      #\n\n      echo \"${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR\"\n      XCODE_DIR=$(ls -d \"$PODS_CONFIGURATION_BUILD_DIR\"/*.app)\n      echo \"${HEAD} XCODE_DIR: $XCODE_DIR\"\n      if [ -z \"$XCODE_DIR\" ]; then\n        echo \"Could not find XCODE_DIR to copy fonts to\"\n        exit 1\n      fi\n\n      DEST_DIR=\"${XCODE_DIR}\"\n      mkdir -p \"$DEST_DIR\"\n\n      #\n      # Copy the fonts\n      #\n\n      echo \"${HEAD} Copying the following files to $DEST_DIR\"\n      ls \"$FONTS_DIR\" | sed \"s/^/${HEAD} /\"\n\n      rsync -avr --copy-links --no-relative $FONTS_DIR/ \"$DEST_DIR\"\n\n      echo \"${HEAD} END:RNVI_COPY_FONTS\"\n    SCRIPT\n  }\n<% } -%>\nend\n"
  },
  {
    "path": "packages/generator-react-native-vector-icons/src/app/templates/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/<%= packageName %>\",\n  \"version\": \"0.0.1-alpha.1\",\n  \"description\": \"<%= name %> font for react native vector icons\",\n  \"source\": \"<%= source %>\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    }<% if (customSrc !== true) { -%>,\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    }<% } -%><%- extraExports -%>\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"<%= packageName %>\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/<%= packageName %>\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/generator-react-native-vector-icons/src/app/templates/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * <%= className %> icon set component.\n * Usage: <<%= className %> name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/<%= commonPackage %>';\n\nimport glyphMap from '../glyphmaps/<%= className %>.json';\n\nexport const <%= className %> = createIconSet(glyphMap, {\n  postScriptName: '<%= postScriptName %>',\n  fontFileName: '<%= fontFileName %>.ttf',\n<% if (!copyCustomFonts) { -%>\n  fontSource: require('../fonts/<%= fontFileName %>.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require\n<% } -%>\n});\n\nexport type <%= className %>IconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default <%= className %>;\n"
  },
  {
    "path": "packages/generator-react-native-vector-icons/src/app/templates/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * <%= className %> icon set component.\n * Usage: <<%= className %> name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/<%= commonPackage %>';\n\nimport glyphMap from '../glyphmaps/<%= className %>.json';\n\nexport const <%= className %> = createIconSet(glyphMap, {\n  postScriptName: '<%= postScriptName %>',\n  fontFileName: '<%= fontFileName %>.ttf',\n});\n\nexport type <%= className %>IconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default <%= className %>;\n"
  },
  {
    "path": "packages/generator-react-native-vector-icons/src/app/templates/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/generator-react-native-vector-icons/src/app/templates/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/generator-react-native-vector-icons/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.json\",\n  \"compilerOptions\": {\n    \"noEmit\": false,\n    \"rootDir\": \"./src\",\n    \"outDir\": \"./generators\"\n  },\n  \"include\": [\"./src\"],\n  \"exclude\": [\"node_modules\", \"src/*/templates\"]\n}\n"
  },
  {
    "path": "packages/get-image/.watchmanconfig",
    "content": "{}\n"
  },
  {
    "path": "packages/get-image/CHANGELOG.md",
    "content": "## 12.3.0 (2025-11-01)\n\nThis was a version bump only for @react-native-vector-icons/get-image to align it with other projects, there were no code changes.\n\n## 12.2.0 (2025-08-03)\n\nThis was a version bump only for @react-native-vector-icons/get-image to align it with other projects, there were no code changes.\n\n## 12.1.0 (2025-07-12)\n\n### 🩹 Fixes\n\n- **web:** throw a meaningful error in getImageForFont ([#1792](https://github.com/oblador/react-native-vector-icons/pull/1792))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.0.2 (2025-06-15)\n\n### 🩹 Fixes\n\n- new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774))\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.1 (2025-06-15)\n\n### 🩹 Fixes\n\n- remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767))\n- convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765))\n- updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c))\n- **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742))\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n- Md. Jayed Hasan @JayedHasan232\n\n# 12.0.0 (2025-05-04)\n\n### 🚀 Features\n\n- make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n\n### ❤️ Thank You\n\n- John Ferlito @johnf"
  },
  {
    "path": "packages/get-image/android/build.gradle",
    "content": "buildscript {\n  // Buildscript is evaluated before everything else so we can't use getExtOrDefault\n  def kotlin_version = rootProject.ext.has(\"kotlinVersion\") ? rootProject.ext.get(\"kotlinVersion\") : project.properties[\"VectorIcons_kotlinVersion\"]\n\n  repositories {\n    google()\n    mavenCentral()\n  }\n\n  dependencies {\n    classpath \"com.android.tools.build:gradle:7.2.1\"\n    // noinspection DifferentKotlinGradleVersion\n    classpath \"org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version\"\n  }\n}\n\ndef reactNativeArchitectures() {\n  def value = rootProject.getProperties().get(\"reactNativeArchitectures\")\n  return value ? value.split(\",\") : [\"armeabi-v7a\", \"x86\", \"x86_64\", \"arm64-v8a\"]\n}\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef getExtOrDefault(name) {\n  return rootProject.ext.has(name) ? rootProject.ext.get(name) : project.properties[\"VectorIcons_\" + name]\n}\n\ndef getExtOrIntegerDefault(name) {\n  return rootProject.ext.has(name) ? rootProject.ext.get(name) : (project.properties[\"VectorIcons_\" + name]).toInteger()\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nimport groovy.json.JsonSlurper\n\ndef generatedCompat() {\n  def rnviProject = rootProject.allprojects.find { it.name == 'react-native-vector-icons_get-image' }\n  if (rnviProject == null) return false\n\n  def reactNativeManifest = file(\"${rnviProject.projectDir}/../../../react-native/package.json\")\n  def reactNativeVersion = new JsonSlurper().parseText(reactNativeManifest.text).version as String\n\n  reactNativeVersion.matches('(0.71.*|0.72.*|0.73.*)')\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.get_image\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion getExtOrIntegerDefault(\"compileSdkVersion\")\n\n  defaultConfig {\n    minSdkVersion getExtOrIntegerDefault(\"minSdkVersion\")\n    targetSdkVersion getExtOrIntegerDefault(\"targetSdkVersion\")\n    buildConfigField \"boolean\", \"IS_NEW_ARCHITECTURE_ENABLED\", isNewArchitectureEnabled().toString()\n\n  }\n\n  buildFeatures {\n    buildConfig true\n  }\n\n  buildTypes {\n    release {\n      minifyEnabled false\n    }\n  }\n\n  lintOptions {\n    disable \"GradleCompatible\"\n  }\n\n  compileOptions {\n    sourceCompatibility JavaVersion.VERSION_1_8\n    targetCompatibility JavaVersion.VERSION_1_8\n  }\n\n  sourceSets {\n    main {\n      if (isNewArchitectureEnabled()) {\n        java.srcDirs += [\n          \"src/newarch\",\n        ]\n        if (!generatedCompat()) {\n          println(\"Adding generated directories\")\n          println(\"Adding generated directories\")\n          println(\"Adding generated directories\")\n          // NOTE: create-react-native-library has these here but it breaks <= 0.73\n          java.srcDirs += [\n            // Codegen specs\n            \"generated/java\",\n            \"generated/jni\"\n          ]\n        }\n      } else {\n        java.srcDirs += [\"src/oldarch\"]\n      }\n    }\n  }\n}\n\nrepositories {\n  mavenCentral()\n  google()\n}\n\ndef kotlin_version = getExtOrDefault(\"kotlinVersion\")\n\ndependencies {\n  // For < 0.71, this will be from the local maven repo\n  // For > 0.71, this will be replaced by `com.facebook.react:react-android:$version` by react gradle plugin\n  //noinspection GradleDynamicVersion\n  implementation \"com.facebook.react:react-native:+\"\n  implementation \"org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIcons\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.get_image\"\n  }\n}\n"
  },
  {
    "path": "packages/get-image/android/gradle.properties",
    "content": "VectorIcons_kotlinVersion=1.7.0\nVectorIcons_minSdkVersion=21\nVectorIcons_targetSdkVersion=31\nVectorIcons_compileSdkVersion=31\nVectorIcons_ndkversion=21.4.7075529\n"
  },
  {
    "path": "packages/get-image/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n          package=\"com.reactnativevectoricons.get_image\">\n</manifest>\n"
  },
  {
    "path": "packages/get-image/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/get-image/android/src/main/java/com/reactnativevectoricons/get_image/VectorIconsModule.kt",
    "content": "package com.reactnativevectoricons.get_image\n\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.bridge.ReactMethod\nimport com.facebook.react.bridge.Promise\n\nimport com.facebook.react.util.RNLog\nimport com.facebook.react.views.text.ReactFontManager\n\nimport android.graphics.*\n\nimport java.io.File\nimport java.io.FileOutputStream\nimport java.io.IOException\n\nclass VectorIconsModule internal constructor(context: ReactApplicationContext) :\n  VectorIconsSpec(context) {\n\n  @ReactMethod\n  override fun getImageForFont(fontFamilyName: String, glyph: String, fontSize: Double, color: Double, promise: Promise) {\n    try {\n      val imagePath = getImageForFontSync(fontFamilyName, glyph, fontSize, color)\n      promise.resolve(imagePath)\n    } catch (e: Throwable) {\n      promise.reject(\"Failed to get image for font family \\\"$fontFamilyName\\\":${e.message}\", e)\n    }\n  }\n\n  @ReactMethod(isBlockingSynchronousMethod = true)\n  override fun getImageForFontSync(fontFamilyName: String, glyph: String, fontSize: Double, color: Double): String {\n    val context = reactApplicationContext\n    val cacheFolder = context.cacheDir\n    val cacheFolderPath = \"${cacheFolder.absolutePath}/\"\n\n    val scale = context.resources.displayMetrics.density\n    val scaleSuffix = \"@${if (scale == scale.toInt().toFloat()) scale.toInt() else scale}x\"\n    val size = Math.round(fontSize * scale).toInt()\n    val cacheKey = \"$fontFamilyName:$glyph:$color\"\n    val hash = cacheKey.hashCode().toString(32)\n    val cacheFilePath = \"${cacheFolderPath}${hash}_${fontSize}${scaleSuffix}.png\"\n    val cacheFileUrl = \"file://$cacheFilePath\"\n    val cacheFile = File(cacheFilePath)\n\n    if (cacheFile.exists()) {\n      return cacheFileUrl\n    }\n\n    val typeface = ReactFontManager.getInstance().getTypeface(fontFamilyName, Typeface.NORMAL, context.assets)\n    if (typeface == Typeface.DEFAULT) {\n      RNLog.w(context, \"getImageForFontSync: the lookup for $fontFamilyName returned the default typeface, this likely means that the font is not available on the device.\")\n    }\n    val paint =\n            Paint().apply {\n              this.typeface = typeface\n              this.color = color.toInt()\n              textSize = size.toFloat()\n              isAntiAlias = true\n            }\n    val textBounds = Rect()\n    paint.getTextBounds(glyph, 0, glyph.length, textBounds)\n\n    val offsetX = 0\n    val offsetY = size - paint.fontMetrics.bottom.toInt()\n\n    val bitmap = Bitmap.createBitmap(size, size, Bitmap.Config.ARGB_8888)\n    val canvas = Canvas(bitmap)\n    canvas.drawText(glyph, offsetX.toFloat(), offsetY.toFloat(), paint)\n\n    try {\n      FileOutputStream(cacheFile).use { fos ->\n        bitmap.compress(Bitmap.CompressFormat.PNG, 100, fos)\n        fos.flush()\n        return cacheFileUrl\n      }\n    } catch (e: IOException) {\n      // we're rethrowing this as a runtime exception because we can't change the method signature\n      // to `throws IOException`\n      // that would be at odds with the codegen-generated spec\n      throw RuntimeException(e)\n    }\n  }\n\n  companion object {\n    const val NAME = \"VectorIcons\"\n  }\n}\n"
  },
  {
    "path": "packages/get-image/android/src/main/java/com/reactnativevectoricons/get_image/VectorIconsPackage.kt",
    "content": "package com.reactnativevectoricons.get_image\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.module.model.ReactModuleInfoProvider\nimport com.facebook.react.module.model.ReactModuleInfo\nimport java.util.HashMap\n\nclass VectorIconsPackage : TurboReactPackage() {\n  override fun getModule(name: String, reactContext: ReactApplicationContext): NativeModule? {\n    return if (name == VectorIconsModule.NAME) {\n      VectorIconsModule(reactContext)\n    } else {\n      null\n    }\n  }\n\n  override fun getReactModuleInfoProvider(): ReactModuleInfoProvider {\n    return ReactModuleInfoProvider {\n      val moduleInfos: MutableMap<String, ReactModuleInfo> = HashMap()\n      val isTurboModule: Boolean = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED\n      moduleInfos[VectorIconsModule.NAME] = ReactModuleInfo(\n        VectorIconsModule.NAME, // name\n        VectorIconsModule.NAME, // className\n        false,  // canOverrideExistingModule\n        false,  // needsEagerInit\n        false, // hasConstants NOTE: This is deprecated but we need it to keep compatability with RN <= 0.72\n        false,  // isCxxModule\n        isTurboModule // isTurboModule\n      )\n      moduleInfos\n    }\n  }\n}\n"
  },
  {
    "path": "packages/get-image/android/src/newarch/VectorIconsSpec.kt",
    "content": "package com.reactnativevectoricons.get_image\n\nimport com.facebook.react.bridge.ReactApplicationContext\n\nabstract class VectorIconsSpec internal constructor(context: ReactApplicationContext) :\n  NativeVectorIconsSpec(context) {\n}\n"
  },
  {
    "path": "packages/get-image/android/src/oldarch/VectorIconsSpec.kt",
    "content": "/**\n * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).\n *\n * Do not edit this file as changes may cause incorrect behavior.\n *\n * Instead turn on new architecture, make JS spec file changes, re-run codegen (you can trigger that by rebuilding) and copy codegen result here.\n *\n * @generated by codegen project: GenerateModuleJavaSpec.js\n *\n * @nolint\n */\n\npackage com.reactnativevectoricons.get_image\n\nimport com.facebook.proguard.annotations.DoNotStrip\nimport com.facebook.react.bridge.Promise\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.bridge.ReactContextBaseJavaModule\nimport com.facebook.react.bridge.ReactMethod\nimport com.facebook.react.turbomodule.core.interfaces.TurboModule\n\nabstract class VectorIconsSpec internal constructor(context: ReactApplicationContext) :\n  ReactContextBaseJavaModule(context) {\n\n  companion object {\n    const val NAME = \"VectorIcons\"\n  }\n\n  override fun getName(): String = NAME\n\n  @ReactMethod\n  @DoNotStrip\n  abstract fun getImageForFont(fontFamilyName: String, glyph: String, fontSize: Double, color: Double, promise: Promise)\n\n  @ReactMethod(isBlockingSynchronousMethod = true)\n  @DoNotStrip\n  abstract fun getImageForFontSync(fontFamilyName: String, glyph: String, fontSize: Double, color: Double): String\n}\n"
  },
  {
    "path": "packages/get-image/babel.config.js",
    "content": "module.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/get-image/ios/VectorIcons.h",
    "content": "\n#ifdef RCT_NEW_ARCH_ENABLED\n#import \"RNVectorIconsSpec.h\"\n\n@interface VectorIcons : NSObject <NativeVectorIconsSpec>\n#else\n#import <React/RCTBridgeModule.h>\n\n@interface VectorIcons : NSObject <RCTBridgeModule>\n#endif\n\n// - (NSString *)hexStringFromColor:(UIColor *)color;\n// - (NSString *)generateFilePath:(NSString *)glyph withFontName:(NSString\n// *)fontName\n//                                                  withFontSize:(CGFloat)fontSize\n//                                                  withColor:(UIColor *)color\n//                                                  withExtraIdentifier:(NSString\n//                                                  *)identifier;\n// - (BOOL)createAndSaveGlyphImage:(NSString *)glyph withFont:(UIFont *)font\n//                                                   withFilePath:(NSString\n//                                                   *)filePath\n//                                                   withColor:(UIColor *)color;\n//\n@end\n"
  },
  {
    "path": "packages/get-image/ios/VectorIcons.mm",
    "content": "#import \"VectorIcons.h\"\n\n#import <CoreText/CoreText.h>\n#import <React/RCTBridge.h>\n#import <React/RCTConvert.h>\n#import <React/RCTFont.h>\n#import <React/RCTUtils.h>\n\nNSString *const RNVIErrorDomain = @\"com.reactnativevectoricons.get_image\";\nenum {\n  RNVIGenericError = 1000,\n};\n\n@implementation VectorIcons\nRCT_EXPORT_MODULE()\n\n- (NSString *)hexStringFromColor:(UIColor *)color {\n  const CGFloat *components = CGColorGetComponents(color.CGColor);\n\n  CGFloat r = components[0];\n  CGFloat g = components[1];\n  CGFloat b = components[2];\n\n  return [NSString stringWithFormat:@\"#%02lX%02lX%02lX\", lroundf(r * 255),\n                                    lroundf(g * 255), lroundf(b * 255)];\n}\n\n- (NSString *)generateFilePath:(NSString *)glyph\n                  withFontName:(NSString *)fontName\n                  withFontSize:(CGFloat)fontSize\n                     withColor:(UIColor *)color\n           withExtraIdentifier:(NSString *)identifier {\n  CGFloat screenScale = RCTScreenScale();\n  NSString *hexColor = [self hexStringFromColor:color];\n  NSString *fileName =\n      [NSString stringWithFormat:@\"%@RNVectorIcons_%@_%@_%@_%.f%@@%.fx.png\",\n                                 NSTemporaryDirectory(), identifier, fontName,\n                                 glyph, fontSize, hexColor, screenScale];\n\n  return fileName;\n}\n\n- (BOOL)createAndSaveGlyphImage:(NSString *)glyph\n                       withFont:(UIFont *)font\n                   withFilePath:(NSString *)filePath\n                      withColor:(UIColor *)color {\n  if (![[NSFileManager defaultManager] fileExistsAtPath:filePath]) {\n    // No cached icon exists, we need to create it and persist to disk\n\n    NSAttributedString *attributedString =\n        [[NSAttributedString alloc] initWithString:glyph\n                                        attributes:@{\n                                          NSFontAttributeName : font,\n                                          NSForegroundColorAttributeName : color\n                                        }];\n\n    CGSize iconSize = [attributedString size];\n    UIGraphicsBeginImageContextWithOptions(iconSize, NO, 0.0);\n    [attributedString drawAtPoint:CGPointMake(0, 0)];\n\n    UIImage *iconImage = UIGraphicsGetImageFromCurrentImageContext();\n    UIGraphicsEndImageContext();\n\n    NSData *imageData = UIImagePNGRepresentation(iconImage);\n    return [imageData writeToFile:filePath atomically:YES];\n  }\n\n  return YES;\n}\n\n- (NSString *)createGlyphImagePathForFont:(NSString *)fontName\n                                withGlyph:(NSString *)glyph\n                             withFontSize:(CGFloat)fontSize\n                                withColor:(double)color\n                                withError:(NSError **)error {\n  UIColor *parsedColor = [RCTConvert UIColor:@(color)];\n  UIFont *font = [UIFont fontWithName:fontName size:fontSize];\n  if (!font) {\n    *error = [NSError\n        errorWithDomain:RNVIErrorDomain\n                   code:RNVIGenericError\n               userInfo:@{\n                 NSLocalizedDescriptionKey :\n                     [NSString stringWithFormat:\n                                   @\"No font found for font name \\\"%@\\\". Make \"\n                                   @\"sure the font is included in info.plist.\",\n                                   fontName]\n               }];\n    return nil;\n  }\n  NSString *filePath = [self generateFilePath:glyph\n                                 withFontName:fontName\n                                 withFontSize:fontSize\n                                    withColor:parsedColor\n                          withExtraIdentifier:@\"\"];\n\n  BOOL success = [self createAndSaveGlyphImage:glyph\n                                      withFont:font\n                                  withFilePath:filePath\n                                     withColor:parsedColor];\n\n  if (!success) {\n    *error = [NSError errorWithDomain:RNVIErrorDomain\n                                 code:RNVIGenericError\n                             userInfo:@{\n                               NSLocalizedDescriptionKey :\n                                   @\"Failed to write rendered icon image\"\n                             }];\n    return nil;\n  }\n  return filePath;\n}\n\nRCT_EXPORT_METHOD(getImageForFont : (NSString *)fontName glyph : (NSString *)\n                      glyph fontSize : (CGFloat)fontSize color : (double)\n                          color resolve : (RCTPromiseResolveBlock)\n                              resolve reject : (RCTPromiseRejectBlock)reject) {\n  NSError *error = nil;\n  NSString *filePath = [self createGlyphImagePathForFont:fontName\n                                               withGlyph:glyph\n                                            withFontSize:fontSize\n                                               withColor:color\n                                               withError:&error];\n  if (error != nil) {\n    reject([NSString stringWithFormat:@\"%ld\", (long)error.code],\n           error.localizedDescription, error);\n  } else {\n    resolve(filePath);\n  }\n}\n\nRCT_EXPORT_BLOCKING_SYNCHRONOUS_METHOD(\n    getImageForFontSync : (NSString *)fontName glyph : (NSString *)\n        glyph fontSize : (CGFloat)fontSize color : (double)color) {\n  NSError *error = nil;\n  NSString *glyphImage = [self createGlyphImagePathForFont:fontName\n                                                 withGlyph:glyph\n                                              withFontSize:fontSize\n                                                 withColor:color\n                                                 withError:&error];\n  if (error == nil && glyphImage != nil) {\n    return glyphImage;\n  } else {\n    NSString *reason =\n        error ? error.localizedDescription : @\"Failed to create glyph image\";\n\n    @throw [NSException exceptionWithName:@\"RNVectorIconsException\"\n                                   reason:reason\n                                 userInfo:nil];\n  }\n}\n\n// Don't compile this code when we build for the old architecture.\n#ifdef RCT_NEW_ARCH_ENABLED\n- (std::shared_ptr<facebook::react::TurboModule>)getTurboModule:\n    (const facebook::react::ObjCTurboModule::InitParams &)params {\n  return std::make_shared<facebook::react::NativeVectorIconsSpecJSI>(params);\n}\n#endif\n\n@end\n"
  },
  {
    "path": "packages/get-image/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/get-image\",\n  \"version\": \"12.3.0\",\n  \"description\": \"Glyph to png conversion for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    }\n  },\n  \"files\": [\n    \"scripts\",\n    \"src\",\n    \"lib\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"react-native.config.js\",\n    \"!ios/generated\",\n    \"!android/generated\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build example/android/build example/android/app/build example/ios/build lib\",\n    \"prepare\": \"bob build\",\n    \"prepack\": \"cp ../../README.md .\",\n    \"postpack\": \"rm README.md\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/get-image\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react\": \"19.1.0\",\n    \"react-native\": \"0.80.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"turbo\": \"^1.13.4\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"codegenConfig\": {\n    \"name\": \"RNVectorIconsSpec\",\n    \"type\": \"modules\",\n    \"jsSrcsDir\": \"src\",\n    \"android\": {\n      \"javaPackageName\": \"com.reactnativevectoricons.get_image\"\n    },\n    \"includesGeneratedCode\": false\n  },\n  \"create-react-native-library\": {\n    \"type\": \"module-mixed\",\n    \"languages\": \"kotlin-objc\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/get-image/react-native-vector-icons.podspec",
    "content": "require \"json\"\n\npackage = JSON.parse(File.read(File.join(__dir__, \"package.json\")))\n\nPod::Spec.new do |s|\n  s.name         = \"react-native-vector-icons\"\n  s.version      = package[\"version\"]\n  s.summary      = package[\"description\"]\n  s.homepage     = package[\"homepage\"]\n  s.license      = package[\"license\"]\n  s.authors      = package[\"author\"]\n\n  s.platforms    = { :ios => min_ios_version_supported, :tvos => \"9.0\", :visionos => \"1.0\" }\n  s.source       = { :git => package[\"repository\"][\"url\"], :tag => \"v#{s.version}\" }\n\n  s.source_files = \"ios/**/*.{h,m,mm}\"\n\n  install_modules_dependencies(s)\nend\n"
  },
  {
    "path": "packages/get-image/react-native.config.js",
    "content": "/**\n * @type {import('@react-native-community/cli-types').UserDependencyConfig}\n */\nmodule.exports = {\n  dependency: {\n    platforms: {\n      android: {\n        // NOTE: We aren't shipping generated files as this eesm to break react 0.73 due to missing include paths for react-native\n        cmakeListsPath: 'build/generated/source/codegen/jni/CMakeLists.txt',\n      },\n    },\n  },\n};\n"
  },
  {
    "path": "packages/get-image/src/NativeVectorIcons.ts",
    "content": "import type { TurboModule } from 'react-native';\nimport { TurboModuleRegistry } from 'react-native';\n\nexport interface Spec extends TurboModule {\n  getImageForFont(fontFamilyName: string, glyph: string, fontSize: number, color: number): Promise<string>;\n\n  getImageForFontSync(fontFamilyName: string, glyph: string, fontSize: number, color: number): string;\n}\n\nexport default TurboModuleRegistry.getEnforcing<Spec>('VectorIcons');\n"
  },
  {
    "path": "packages/get-image/src/NativeVectorIcons.web.ts",
    "content": "import type { Spec } from './NativeVectorIcons';\n\nconst webImpl: Spec = {\n  async getImageForFont() {\n    throw new Error('getImageForFont is not available for web');\n  },\n  getImageForFontSync() {\n    throw new Error('getImageForFontSync is not available for web');\n  },\n};\n\nexport default webImpl;\n"
  },
  {
    "path": "packages/get-image/src/ensure-native-module-available.ts",
    "content": "import NativeIconAPI from './NativeVectorIcons';\n\nexport function ensureNativeModuleAvailable() {\n  if (!NativeIconAPI) {\n    throw new Error(\n      'The native RNVectorIcons API is not available, did you properly integrate the module? Please verify your autolinking setup and recompile.',\n    );\n  }\n}\n"
  },
  {
    "path": "packages/get-image/src/index.ts",
    "content": "import { Platform } from 'react-native';\n\nexport { ensureNativeModuleAvailable } from './ensure-native-module-available';\n\nconst LINKING_ERROR = `\n  The package '@react-native-vector-icons/get-image' doesn't seem to be linked. Make sure:\n    ${Platform.select({ ios: \"- You have run 'pod install'\\n\", default: '' })}\n    - You rebuilt the app after installing the package\\n'\n    - You are not using Expo Go\n  `;\n\n// eslint-disable-next-line @typescript-eslint/no-require-imports\nconst VectorIconsModule = require('./NativeVectorIcons').default;\n\nconst VectorIcons = VectorIconsModule\n  ? VectorIconsModule\n  : new Proxy(\n      {},\n      {\n        get() {\n          throw new Error(LINKING_ERROR);\n        },\n      },\n    );\n\nexport function getImageForFont(\n  fontFamilyName: string,\n  glyph: string,\n  fontSize: number,\n  color: number,\n): Promise<string> {\n  return VectorIcons.getImageForFont(fontFamilyName, glyph, fontSize, color);\n}\n\nexport function getImageForFontSync(fontFamilyName: string, glyph: string, fontSize: number, color: number): string {\n  return VectorIcons.getImageForFontSync(fontFamilyName, glyph, fontSize, color);\n}\n"
  },
  {
    "path": "packages/get-image/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/get-image/turbo.json",
    "content": "{\n  \"$schema\": \"https://turbo.build/schema.json\",\n  \"pipeline\": {\n    \"build:android\": {\n      \"env\": [\"ORG_GRADLE_PROJECT_newArchEnabled\"],\n      \"inputs\": [\n        \"package.json\",\n        \"android\",\n        \"!android/build\",\n        \"src/*.ts\",\n        \"src/*.tsx\",\n        \"example/package.json\",\n        \"example/android\",\n        \"!example/android/.gradle\",\n        \"!example/android/build\",\n        \"!example/android/app/build\"\n      ],\n      \"outputs\": []\n    },\n    \"build:ios\": {\n      \"env\": [\"RCT_NEW_ARCH_ENABLED\"],\n      \"inputs\": [\n        \"package.json\",\n        \"*.podspec\",\n        \"ios\",\n        \"src/*.ts\",\n        \"src/*.tsx\",\n        \"example/package.json\",\n        \"example/ios\",\n        \"!example/ios/build\",\n        \"!example/ios/Pods\"\n      ],\n      \"outputs\": []\n    }\n  }\n}\n"
  },
  {
    "path": "packages/icomoon/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"icomoon\",\n    \"customReadme\": true,\n    \"customSrc\": true,\n    \"noGlyphmap\": true,\n    \"copyCustomFonts\": true\n  }\n}\n"
  },
  {
    "path": "packages/icomoon/CHANGELOG.md",
    "content": "## 12.4.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.3.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 12.3.2 (2026-03-10)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n## 12.3.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 12.3.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.2.0 (2025-08-03)\n\n### 🚀 Features\n\n- export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.3.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.1.0 (2025-07-12)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.1.0\n\n## 12.0.2 (2025-06-15)\n\n### 🩹 Fixes\n\n- new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.2\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.1 (2025-06-15)\n\n### 🩹 Fixes\n\n- try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745))\n- remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767))\n- convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765))\n- updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c))\n- **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.1\n\n### ❤️ Thank You\n\n- Alexander Kucheryavenko @Red1tum\n- John Ferlito @johnf\n- Md. Jayed Hasan @JayedHasan232\n\n# 12.0.0 (2025-05-04)\n\n### 🚀 Features\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n- add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702))\n\n### 🩹 Fixes\n\n- upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691))\n- upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690))\n- mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99))\n\n### ⚠️  Breaking Changes\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n\n### ❤️ Thank You\n\n- Chanphirom Sok @chanphiromsok\n- John Ferlito @johnf"
  },
  {
    "path": "packages/icomoon/README.md",
    "content": "# React Native Vector Icons - IcoMoon\n\nReact Native Vector Icons font package to support [IcoMoon fonts](https://icomoon.io/app)\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/icomoon\n```\n\n## Usage\n\n1. Add the config.json somewhere in your project to be imported\n1. Add the ttf file into `rnvi-fonts/icomoon`. You can customise this location as described in [react-native-vector-icons](../../README.md#custom-fonts)\n1. Add this package to your project\n\n```sh\nnpm install @react-native-vector-icons/icomoon\n```\n\n4. Create the component in your project and use it\n\n```js\nimport createIconSet from '@react-native-vector-icons/icomoon';\nimport icoMoonConfig from './IcoMoon-Free.json';\nconst Icon = createIconSet(icoMoonConfig);\n\nconst icon = <Icon name=\"comments\" />;\n```\n\nIf you want to customise the font postscript name and filename you can pass extra arguments.\n\n```js\nimport createIconSet from \"@react-native-vector-icons/icomoon\";\nimport icoMoonConfig from \"./IcoMoon-Free.json\";\nconst Icon = createIconSet(icoMoonConfig, \"Font Family\", \"FontFamily.ttf\");\n```\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/icomoon/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.icomoon\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsIcomoon\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.icomoon\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-icomoon\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-icomoon/fonts\"\n  eachFile { println \"(RNVI:icomoon) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n\ntask copyExtraFonts(type: Copy) {\n  from \"${rootDir.parentFile.absolutePath}/rnvi-fonts/icomoon\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-icomoon/fonts\"\n  eachFile { println \"(RNVI:icomoon) Copying custom font: ${it.file}\" }\n}\n\npreBuild.dependsOn(copyExtraFonts)\n"
  },
  {
    "path": "packages/icomoon/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.icomoon\">\n</manifest>\n"
  },
  {
    "path": "packages/icomoon/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/icomoon/android/src/main/java/VectorIconsIcomoonPackage.kt",
    "content": "package com.reactnativevectoricons.icomoon\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsIcomoonPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/icomoon/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/icomoon/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/icomoon\",\n  \"version\": \"12.4.0\",\n  \"description\": \"Icomoon font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    }\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"icomoon\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/icomoon\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/icomoon/react-native-vector-icons-icomoon.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-icomoon'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\n\n  s.script_phase = {\n    name: 'Copy Custom Fonts',\n    execution_position: :after_compile,\n    script: <<~SCRIPT\n      set -e\n\n      HEAD=\"(RNVI-icomoon)\"\n\n      echo \"${HEAD} START_COPY_FONTS\"\n\n      echo \"${HEAD} PWD: $(pwd)\"\n\n      #\n      # Find the custom font Directory\n      #\n\n      # Assume the project root is always two directories above the POD_ROOT\n      echo \"${HEAD} PODS_ROOT: $PODS_ROOT\"\n\n      PROJECT_ROOT=\"${PODS_ROOT}/../..\"\n      echo \"${HEAD} PROJECT_ROOT: $PROJECT_ROOT\"\n\n      cd $PROJECT_ROOT\n      FONTS_DIR=$(npm pkg get reactNativeVectorIcons.fontDir | grep ':' | grep -v '{}' | sed 's/.*: //;s/\"//g')\n      if [ -z \"$FONTS_DIR\" ]; then\n        FONTS_DIR=\"rnvi-fonts\"\n      fi\n      echo \"${HEAD} FONTS_DIR: $FONTS_DIR\"\n\n      FONTS_DIR=\"${PROJECT_ROOT}/${FONTS_DIR}/icomoon\"\n      if [ ! -d \"$FONTS_DIR\" ]; then\n        echo \"${HEAD} $FONTS_DIR not found\"\n        exit 0\n      fi\n\n      #\n      # Find the destination we copy to\n      #\n\n      echo \"${HEAD} PODS_CONFIGURATION_BUILD_DIR: $PODS_CONFIGURATION_BUILD_DIR\"\n      XCODE_DIR=$(ls -d \"$PODS_CONFIGURATION_BUILD_DIR\"/*.app)\n      echo \"${HEAD} XCODE_DIR: $XCODE_DIR\"\n      if [ -z \"$XCODE_DIR\" ]; then\n        echo \"Could not find XCODE_DIR to copy fonts to\"\n        exit 1\n      fi\n\n      DEST_DIR=\"${XCODE_DIR}\"\n      mkdir -p \"$DEST_DIR\"\n\n      #\n      # Copy the fonts\n      #\n\n      echo \"${HEAD} Copying the following files to $DEST_DIR\"\n      ls \"$FONTS_DIR\" | sed \"s/^/${HEAD} /\"\n\n      rsync -avr --copy-links --no-relative $FONTS_DIR/ \"$DEST_DIR\"\n\n      echo \"${HEAD} END:RNVI_COPY_FONTS\"\n    SCRIPT\n  }\nend\n"
  },
  {
    "path": "packages/icomoon/src/index.ts",
    "content": "/**\n * Fontello icon set component.\n * Usage: <Fontello name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { type CreateIconSetOptions, createIconSet, type IconComponent } from '@react-native-vector-icons/common';\n\ntype IcoMoonIcon = {\n  properties: {\n    name: string;\n    code: number;\n  };\n};\ntype IcoMoonConfig = {\n  icons: IcoMoonIcon[];\n  preferences: {\n    fontPref: {\n      metadata: {\n        fontFamily: string;\n      };\n    };\n  };\n};\n\ntype IcoMoonComponent = IconComponent<Record<string, number>>;\n\n// entries are optional because they can be derived from the config\ntype Options = Partial<CreateIconSetOptions>;\n\nexport default function createIconSetFromIcoMoon(\n  config: IcoMoonConfig,\n  postScriptName?: string,\n  fontFileName?: string,\n): IcoMoonComponent;\nexport default function createIconSetFromIcoMoon(config: IcoMoonConfig, options: Options): IcoMoonComponent;\nexport default function createIconSetFromIcoMoon(\n  config: IcoMoonConfig,\n  postScriptNameOrOptions?: string | Options,\n  fontFileNameParam?: string,\n): IcoMoonComponent {\n  const { postScriptName, fontFileName, fontSource, fontStyle } =\n    typeof postScriptNameOrOptions === 'object'\n      ? postScriptNameOrOptions\n      : {\n          postScriptName: postScriptNameOrOptions,\n          fontFileName: fontFileNameParam,\n        };\n\n  const glyphMap: Record<string, number> = {};\n  config.icons.forEach((icon) => {\n    icon.properties.name.split(/\\s*,\\s*/g).forEach((name) => {\n      glyphMap[name] = icon.properties.code;\n    });\n  });\n\n  const fontFamily = postScriptName || config.preferences.fontPref.metadata.fontFamily;\n\n  return createIconSet(glyphMap, {\n    postScriptName: fontFamily,\n    fontFileName: fontFileName || `${fontFamily}.ttf`,\n    fontSource,\n    fontStyle,\n  });\n}\n"
  },
  {
    "path": "packages/icomoon/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/icomoon/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/icon-explorer/.gitignore",
    "content": "*.binlog\n*.hprof\n*.xcworkspace/\n*.zip\n.DS_Store\n.gradle/\n.idea/\n.vs/\n.xcode.env\nPods/\nbuild/\ndist/*\n!dist/.gitignore\nlocal.properties\nmsbuild.binlog\nnode_modules/\n\n# Make sure we don't accidentally commit out fontawesomepro test fonts\nrnvi-fonts/fontawesome5-pro\nrnvi-fonts/fontawesome6-pro\n"
  },
  {
    "path": "packages/icon-explorer/.owl/.gitignore",
    "content": "# generated by react-native-owl\ndiff/\nlatest/\nreport/\n"
  },
  {
    "path": "packages/icon-explorer/.watchmanconfig",
    "content": "{}\n"
  },
  {
    "path": "packages/icon-explorer/README.md",
    "content": "## Testing RN versions\n\nTo locally test a particular version\n\n```sh\n./set-rn-version.sh android stable|0.73|0.72...\npnpm install\npnpm run start\npnpm run test:android\ngit restore -p\n```\n"
  },
  {
    "path": "packages/icon-explorer/__tests__/App.owl.tsx",
    "content": "import { press, scrollToEnd, takeScreenshot, toExist } from '@johnf/react-native-owl';\n\ndescribe('App.tsx', () => {\n  it('show home top', async () => {\n    await toExist('AntD');\n\n    const screen = await takeScreenshot('home-top');\n\n    // NOTE: Sometimes ios home bar has the wrong color so we crop the bottom\n    expect(screen).toMatchBaseline({ bottomCrop: 20 });\n  });\n\n  it('show home bottom', async () => {\n    await toExist('AntD');\n\n    await scrollToEnd('scrollview');\n\n    const screen = await takeScreenshot('home-bottom');\n\n    // NOTE: Sometimes ios home bar has the wrong color so we crop the bottom\n    expect(screen).toMatchBaseline({ bottomCrop: 20 });\n  });\n\n  it('should load Test fonts', async () => {\n    await toExist('TestMode');\n    await press('TestMode');\n\n    await toExist('TestScreen');\n\n    const screen = await takeScreenshot('tests');\n\n    // NOTE: Sometimes ios home bar has the wrong color so we crop the bottom\n    expect(screen).toMatchBaseline({ bottomCrop: 20 });\n  });\n});\n"
  },
  {
    "path": "packages/icon-explorer/android/build.gradle",
    "content": "buildscript {\n    apply(from: {\n        def searchDir = rootDir.toPath()\n        do {\n            def p = searchDir.resolve(\"node_modules/react-native-test-app/android/dependencies.gradle\")\n            if (p.toFile().exists()) {\n                return p.toRealPath().toString()\n            }\n        } while (searchDir = searchDir.getParent())\n        throw new GradleException(\"Could not find `react-native-test-app`\");\n    }())\n\n    repositories {\n        mavenCentral()\n        google()\n    }\n\n    dependencies {\n        getReactNativeDependencies().each { dependency ->\n            classpath(dependency)\n        }\n    }\n}\n\nallprojects {\n    repositories {\n        {\n            def searchDir = rootDir.toPath()\n            do {\n                def p = searchDir.resolve(\"node_modules/react-native/android\")\n                if (p.toFile().exists()) {\n                    maven {\n                        url(p.toRealPath().toString())\n                    }\n                    break\n                }\n            } while (searchDir = searchDir.getParent())\n            // As of 0.80, React Native is no longer installed from npm\n        }()\n        mavenCentral()\n        google()\n    }\n}\n"
  },
  {
    "path": "packages/icon-explorer/android/gradle/wrapper/gradle-wrapper.properties",
    "content": "distributionBase=GRADLE_USER_HOME\ndistributionPath=wrapper/dists\ndistributionUrl=https\\://services.gradle.org/distributions/gradle-8.14.1-bin.zip\nnetworkTimeout=10000\nvalidateDistributionUrl=true\nzipStoreBase=GRADLE_USER_HOME\nzipStorePath=wrapper/dists\n"
  },
  {
    "path": "packages/icon-explorer/android/gradle.properties",
    "content": "# Project-wide Gradle settings.\n\n# IDE (e.g. Android Studio) users:\n# Gradle settings configured through the IDE *will override*\n# any settings specified in this file.\n\n# For more details on how to configure your build environment visit\n# http://www.gradle.org/docs/current/userguide/build_environment.html\n\n# Specifies the JVM arguments used for the Gradle Daemon. The setting is\n# particularly useful for configuring JVM memory settings for build performance.\n# This does not affect the JVM settings for the Gradle client VM.\n# The default is `-Xmx512m -XX:MaxMetaspaceSize=256m`.\norg.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8\n\n# When configured, Gradle will fork up to org.gradle.workers.max JVMs to execute\n# projects in parallel. To learn more about parallel task execution, see the\n# section on Gradle build performance:\n# https://docs.gradle.org/current/userguide/performance.html#parallel_execution.\n# Default is `false`.\n#org.gradle.parallel=true\n\n# AndroidX package structure to make it clearer which packages are bundled with the\n# Android operating system, and which are packaged with your app's APK\n# https://developer.android.com/topic/libraries/support-library/androidx-rn\nandroid.useAndroidX=true\n# Automatically convert third-party libraries to use AndroidX\n#android.enableJetifier=true\n# Jetifier randomly fails on these libraries\n#android.jetifier.ignorelist=hermes-android,react-android\n\n# Use this property to specify which architecture you want to build.\n# You can also override it from the CLI using\n# ./gradlew <task> -PreactNativeArchitectures=x86_64\nreactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64\n\n# Use this property to enable support to the new architecture.\n# This will allow you to use TurboModules and the Fabric render in\n# your application. You should enable this flag either if you want\n# to write custom TurboModules/Fabric components OR use libraries that\n# are providing them.\n# Note that this is incompatible with web debugging.\n#newArchEnabled=true\n#bridgelessEnabled=true\n\n# Uncomment the line below to build React Native from source.\n#react.buildFromSource=true\n\n# Version of Android NDK to build against.\n#ANDROID_NDK_VERSION=26.1.10909125\n\n# Version of Kotlin to build against.\n#KOTLIN_VERSION=1.8.22\n"
  },
  {
    "path": "packages/icon-explorer/android/gradlew",
    "content": "#!/bin/sh\n\n#\n# Copyright © 2015-2021 the original authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#      https://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n#\n\n##############################################################################\n#\n#   Gradle start up script for POSIX generated by Gradle.\n#\n#   Important for running:\n#\n#   (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is\n#       noncompliant, but you have some other compliant shell such as ksh or\n#       bash, then to run this script, type that shell name before the whole\n#       command line, like:\n#\n#           ksh Gradle\n#\n#       Busybox and similar reduced shells will NOT work, because this script\n#       requires all of these POSIX shell features:\n#         * functions;\n#         * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,\n#           «${var#prefix}», «${var%suffix}», and «$( cmd )»;\n#         * compound commands having a testable exit status, especially «case»;\n#         * various built-in commands including «command», «set», and «ulimit».\n#\n#   Important for patching:\n#\n#   (2) This script targets any POSIX shell, so it avoids extensions provided\n#       by Bash, Ksh, etc; in particular arrays are avoided.\n#\n#       The \"traditional\" practice of packing multiple parameters into a\n#       space-separated string is a well documented source of bugs and security\n#       problems, so this is (mostly) avoided, by progressively accumulating\n#       options in \"$@\", and eventually passing that to Java.\n#\n#       Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,\n#       and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;\n#       see the in-line comments for details.\n#\n#       There are tweaks for specific operating systems such as AIX, CygWin,\n#       Darwin, MinGW, and NonStop.\n#\n#   (3) This script is generated from the Groovy template\n#       https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt\n#       within the Gradle project.\n#\n#       You can find Gradle at https://github.com/gradle/gradle/.\n#\n##############################################################################\n\n# Attempt to set APP_HOME\n\n# Resolve links: $0 may be a link\napp_path=$0\n\n# Need this for daisy-chained symlinks.\nwhile\n    APP_HOME=${app_path%\"${app_path##*/}\"}  # leaves a trailing /; empty if no leading path\n    [ -h \"$app_path\" ]\ndo\n    ls=$( ls -ld \"$app_path\" )\n    link=${ls#*' -> '}\n    case $link in             #(\n      /*)   app_path=$link ;; #(\n      *)    app_path=$APP_HOME$link ;;\n    esac\ndone\n\n# This is normally unused\n# shellcheck disable=SC2034\nAPP_BASE_NAME=${0##*/}\n# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)\nAPP_HOME=$( cd \"${APP_HOME:-./}\" > /dev/null && pwd -P ) || exit\n\n# Use the maximum available, or set MAX_FD != -1 to use that value.\nMAX_FD=maximum\n\nwarn () {\n    echo \"$*\"\n} >&2\n\ndie () {\n    echo\n    echo \"$*\"\n    echo\n    exit 1\n} >&2\n\n# OS specific support (must be 'true' or 'false').\ncygwin=false\nmsys=false\ndarwin=false\nnonstop=false\ncase \"$( uname )\" in                #(\n  CYGWIN* )         cygwin=true  ;; #(\n  Darwin* )         darwin=true  ;; #(\n  MSYS* | MINGW* )  msys=true    ;; #(\n  NONSTOP* )        nonstop=true ;;\nesac\n\nCLASSPATH=\"\\\\\\\"\\\\\\\"\"\n\n\n# Determine the Java command to use to start the JVM.\nif [ -n \"$JAVA_HOME\" ] ; then\n    if [ -x \"$JAVA_HOME/jre/sh/java\" ] ; then\n        # IBM's JDK on AIX uses strange locations for the executables\n        JAVACMD=$JAVA_HOME/jre/sh/java\n    else\n        JAVACMD=$JAVA_HOME/bin/java\n    fi\n    if [ ! -x \"$JAVACMD\" ] ; then\n        die \"ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME\n\nPlease set the JAVA_HOME variable in your environment to match the\nlocation of your Java installation.\"\n    fi\nelse\n    JAVACMD=java\n    if ! command -v java >/dev/null 2>&1\n    then\n        die \"ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.\n\nPlease set the JAVA_HOME variable in your environment to match the\nlocation of your Java installation.\"\n    fi\nfi\n\n# Increase the maximum file descriptors if we can.\nif ! \"$cygwin\" && ! \"$darwin\" && ! \"$nonstop\" ; then\n    case $MAX_FD in #(\n      max*)\n        # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.\n        # shellcheck disable=SC2039,SC3045\n        MAX_FD=$( ulimit -H -n ) ||\n            warn \"Could not query maximum file descriptor limit\"\n    esac\n    case $MAX_FD in  #(\n      '' | soft) :;; #(\n      *)\n        # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.\n        # shellcheck disable=SC2039,SC3045\n        ulimit -n \"$MAX_FD\" ||\n            warn \"Could not set maximum file descriptor limit to $MAX_FD\"\n    esac\nfi\n\n# Collect all arguments for the java command, stacking in reverse order:\n#   * args from the command line\n#   * the main class name\n#   * -classpath\n#   * -D...appname settings\n#   * --module-path (only if needed)\n#   * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.\n\n# For Cygwin or MSYS, switch paths to Windows format before running java\nif \"$cygwin\" || \"$msys\" ; then\n    APP_HOME=$( cygpath --path --mixed \"$APP_HOME\" )\n    CLASSPATH=$( cygpath --path --mixed \"$CLASSPATH\" )\n\n    JAVACMD=$( cygpath --unix \"$JAVACMD\" )\n\n    # Now convert the arguments - kludge to limit ourselves to /bin/sh\n    for arg do\n        if\n            case $arg in                                #(\n              -*)   false ;;                            # don't mess with options #(\n              /?*)  t=${arg#/} t=/${t%%/*}              # looks like a POSIX filepath\n                    [ -e \"$t\" ] ;;                      #(\n              *)    false ;;\n            esac\n        then\n            arg=$( cygpath --path --ignore --mixed \"$arg\" )\n        fi\n        # Roll the args list around exactly as many times as the number of\n        # args, so each arg winds up back in the position where it started, but\n        # possibly modified.\n        #\n        # NB: a `for` loop captures its iteration list before it begins, so\n        # changing the positional parameters here affects neither the number of\n        # iterations, nor the values presented in `arg`.\n        shift                   # remove old arg\n        set -- \"$@\" \"$arg\"      # push replacement arg\n    done\nfi\n\n\n# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.\nDEFAULT_JVM_OPTS='\"-Xmx64m\" \"-Xms64m\"'\n\n# Collect all arguments for the java command:\n#   * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,\n#     and any embedded shellness will be escaped.\n#   * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be\n#     treated as '${Hostname}' itself on the command line.\n\nset -- \\\n        \"-Dorg.gradle.appname=$APP_BASE_NAME\" \\\n        -classpath \"$CLASSPATH\" \\\n        -jar \"$APP_HOME/gradle/wrapper/gradle-wrapper.jar\" \\\n        \"$@\"\n\n# Stop when \"xargs\" is not available.\nif ! command -v xargs >/dev/null 2>&1\nthen\n    die \"xargs is not available\"\nfi\n\n# Use \"xargs\" to parse quoted args.\n#\n# With -n1 it outputs one arg per line, with the quotes and backslashes removed.\n#\n# In Bash we could simply go:\n#\n#   readarray ARGS < <( xargs -n1 <<<\"$var\" ) &&\n#   set -- \"${ARGS[@]}\" \"$@\"\n#\n# but POSIX shell has neither arrays nor command substitution, so instead we\n# post-process each arg (as a line of input to sed) to backslash-escape any\n# character that might be a shell metacharacter, then use eval to reverse\n# that process (while maintaining the separation between arguments), and wrap\n# the whole thing up as a single \"set\" statement.\n#\n# This will of course break if any of these variables contains a newline or\n# an unmatched quote.\n#\n\neval \"set -- $(\n        printf '%s\\n' \"$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS\" |\n        xargs -n1 |\n        sed ' s~[^-[:alnum:]+,./:=@_]~\\\\&~g; ' |\n        tr '\\n' ' '\n    )\" '\"$@\"'\n\nexec \"$JAVACMD\" \"$@\"\n"
  },
  {
    "path": "packages/icon-explorer/android/gradlew.bat",
    "content": "@REM Copyright (c) Meta Platforms, Inc. and affiliates.\r\n@REM\r\n@REM This source code is licensed under the MIT license found in the\r\n@REM LICENSE file in the root directory of this source tree.\r\n\r\n@rem\r\n@rem Copyright 2015 the original author or authors.\r\n@rem\r\n@rem Licensed under the Apache License, Version 2.0 (the \"License\");\r\n@rem you may not use this file except in compliance with the License.\r\n@rem You may obtain a copy of the License at\r\n@rem\r\n@rem      https://www.apache.org/licenses/LICENSE-2.0\r\n@rem\r\n@rem Unless required by applicable law or agreed to in writing, software\r\n@rem distributed under the License is distributed on an \"AS IS\" BASIS,\r\n@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n@rem See the License for the specific language governing permissions and\r\n@rem limitations under the License.\r\n@rem\r\n\r\n@if \"%DEBUG%\"==\"\" @echo off\r\n@rem ##########################################################################\r\n@rem\r\n@rem  Gradle startup script for Windows\r\n@rem\r\n@rem ##########################################################################\r\n\r\n@rem Set local scope for the variables with windows NT shell\r\nif \"%OS%\"==\"Windows_NT\" setlocal\r\n\r\nset DIRNAME=%~dp0\r\nif \"%DIRNAME%\"==\"\" set DIRNAME=.\r\n@rem This is normally unused\r\nset APP_BASE_NAME=%~n0\r\nset APP_HOME=%DIRNAME%\r\n\r\n@rem Resolve any \".\" and \"..\" in APP_HOME to make it shorter.\r\nfor %%i in (\"%APP_HOME%\") do set APP_HOME=%%~fi\r\n\r\n@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.\r\nset DEFAULT_JVM_OPTS=\"-Xmx64m\" \"-Xms64m\"\r\n\r\n@rem Find java.exe\r\nif defined JAVA_HOME goto findJavaFromJavaHome\r\n\r\nset JAVA_EXE=java.exe\r\n%JAVA_EXE% -version >NUL 2>&1\r\nif %ERRORLEVEL% equ 0 goto execute\r\n\r\necho. 1>&2\r\necho ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2\r\necho. 1>&2\r\necho Please set the JAVA_HOME variable in your environment to match the 1>&2\r\necho location of your Java installation. 1>&2\r\n\r\ngoto fail\r\n\r\n:findJavaFromJavaHome\r\nset JAVA_HOME=%JAVA_HOME:\"=%\r\nset JAVA_EXE=%JAVA_HOME%/bin/java.exe\r\n\r\nif exist \"%JAVA_EXE%\" goto execute\r\n\r\necho. 1>&2\r\necho ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2\r\necho. 1>&2\r\necho Please set the JAVA_HOME variable in your environment to match the 1>&2\r\necho location of your Java installation. 1>&2\r\n\r\ngoto fail\r\n\r\n:execute\r\n@rem Setup the command line\r\n\r\nset CLASSPATH=\r\n\r\n\r\n@rem Execute Gradle\r\n\"%JAVA_EXE%\" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% \"-Dorg.gradle.appname=%APP_BASE_NAME%\" -classpath \"%CLASSPATH%\" -jar \"%APP_HOME%\\gradle\\wrapper\\gradle-wrapper.jar\" %*\r\n\r\n:end\r\n@rem End local scope for the variables with windows NT shell\r\nif %ERRORLEVEL% equ 0 goto mainEnd\r\n\r\n:fail\r\nrem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of\r\nrem the _cmd.exe /c_ return code!\r\nset EXIT_CODE=%ERRORLEVEL%\r\nif %EXIT_CODE% equ 0 set EXIT_CODE=1\r\nif not \"\"==\"%GRADLE_EXIT_CONSOLE%\" exit %EXIT_CODE%\r\nexit /b %EXIT_CODE%\r\n\r\n:mainEnd\r\nif \"%OS%\"==\"Windows_NT\" endlocal\r\n\r\n:omega\r\n"
  },
  {
    "path": "packages/icon-explorer/android/settings.gradle",
    "content": "pluginManagement {\n    repositories {\n        gradlePluginPortal()\n        mavenCentral()\n        google()\n    }\n}\n\nrootProject.name = \"IconExplorer\"\n\napply(from: {\n    def searchDir = rootDir.toPath()\n    do {\n        def p = searchDir.resolve(\"node_modules/react-native-test-app/test-app.gradle\")\n        if (p.toFile().exists()) {\n            return p.toRealPath().toString()\n        }\n    } while (searchDir = searchDir.getParent())\n    throw new GradleException(\"Could not find `react-native-test-app`\");\n}())\napplyTestAppSettings(settings)\n"
  },
  {
    "path": "packages/icon-explorer/app.json",
    "content": "{\n  \"name\": \"IconExplorer\",\n  \"displayName\": \"IconExplorer\",\n  \"singleApp\": \"IconExplorer\",\n  \"components\": [\n    {\n      \"appKey\": \"IconExplorer\",\n      \"displayName\": \"IconExplorer\",\n      \"slug\": \"IconExplorer\"\n    }\n  ],\n  \"plugins\": [\"./configPlugin.js\"],\n  \"resources\": {\n    \"android\": [\"dist/res\", \"dist/main.android.jsbundle\"],\n    \"ios\": [\"dist/assets\", \"dist/main.ios.jsbundle\"],\n    \"macos\": [\"dist/assets\", \"dist/main.macos.jsbundle\"],\n    \"visionos\": [\"dist/assets\", \"dist/main.visionos.jsbundle\"],\n    \"windows\": [\"dist/assets\", \"dist/main.windows.bundle\"]\n  }\n}\n"
  },
  {
    "path": "packages/icon-explorer/babel.config.js",
    "content": "module.exports = {\n  presets: ['@rnx-kit/babel-preset-metro-react-native'],\n};\n"
  },
  {
    "path": "packages/icon-explorer/configPlugin.js",
    "content": "const { withInfoPlist } = require('@expo/config-plugins'); // eslint-disable-line import/no-extraneous-dependencies, @typescript-eslint/no-require-imports\n\n// Add all our fonts to the plist\nmodule.exports = (config) =>\n  withInfoPlist(config, (c) => {\n    c.ios ||= {};\n    c.ios.infoPlist ||= {};\n\n    c.ios.infoPlist.UIAppFonts ||= [];\n\n    // TODO can we generate this list?\n    const fonts = [\n      'AntDesign.ttf',\n      'Entypo.ttf',\n      'EvilIcons.ttf',\n      'Feather.ttf',\n      'FontAwesome.ttf',\n      'FontAwesome5_Brands.ttf',\n      'FontAwesome5_Regular.ttf',\n      'FontAwesome5_Solid.ttf',\n      'FontAwesome6_Brands.ttf',\n      'FontAwesome6_Regular.ttf',\n      'FontAwesome6_Solid.ttf',\n      'Fontisto.ttf',\n      'Foundation.ttf',\n      'Ionicons.ttf',\n      'MaterialDesignIcons.ttf',\n      'MaterialIcons.ttf',\n      'Octicons.ttf',\n      'SimpleLineIcons.ttf',\n      'Zocial.ttf',\n      'fontello.ttf',\n      'icomoon.ttf',\n      'Lucide.ttf',\n    ];\n\n    // biome-ignore lint/suspicious/useIterableCallbackReturn: @expo doesn't go deep enough on the types\n    fonts.forEach((font) => c.ios.infoPlist.UIAppFonts.push(font));\n\n    return c;\n  });\n"
  },
  {
    "path": "packages/icon-explorer/index.js",
    "content": "/**\n * @format\n */\n\nimport { AppRegistry } from 'react-native';\n\nimport { name as appName } from './app.json';\nimport App from './src/App';\n\nAppRegistry.registerComponent(appName, () => App);\n"
  },
  {
    "path": "packages/icon-explorer/index.test.js",
    "content": "/* eslint-disable @typescript-eslint/no-require-imports */\n\n// Setup the Owl client\nrequire('@johnf/react-native-owl/lib/commonjs/client').initClient();\n\n// Load the app as normal\nrequire('./index');\n"
  },
  {
    "path": "packages/icon-explorer/ios/Podfile",
    "content": "ws_dir = Pathname.new(__dir__)\nws_dir = ws_dir.parent until\n  File.exist?(\"#{ws_dir}/node_modules/react-native-test-app/test_app.rb\") ||\n  ws_dir.expand_path.to_s == '/'\nrequire \"#{ws_dir}/node_modules/react-native-test-app/test_app.rb\"\n\nworkspace 'IconExplorer.xcworkspace'\n\nuse_test_app! hermes_enabled: true, fabric_enabled: true\n"
  },
  {
    "path": "packages/icon-explorer/jest.config.js",
    "content": "/** @type {import('@jest/types').Config.InitialOptions} */\nmodule.exports = {\n  preset: 'ts-jest',\n  testTimeout: 30 * 1000,\n  reporters: ['default', ['jest-junit', { outputDirectory: '.owl/report', outputName: 'report.xml' }]],\n  verbose: true,\n};\n"
  },
  {
    "path": "packages/icon-explorer/macos/Podfile",
    "content": "ws_dir = Pathname.new(__dir__)\nws_dir = ws_dir.parent until\n  File.exist?(\"#{ws_dir}/node_modules/react-native-test-app/macos/test_app.rb\") ||\n  ws_dir.expand_path.to_s == '/'\nrequire \"#{ws_dir}/node_modules/react-native-test-app/macos/test_app.rb\"\n\nworkspace 'IconExplorer.xcworkspace'\n\nuse_test_app!\n"
  },
  {
    "path": "packages/icon-explorer/metro.config.js",
    "content": "const path = require('node:path');\n\nconst { makeMetroConfig } = require('@rnx-kit/metro-config');\n\nconst projectRoot = __dirname;\nconst monorepoRoot = path.resolve(projectRoot, '../..');\n\nmodule.exports = makeMetroConfig({\n  watchFolders: [monorepoRoot],\n  resolver: {\n    nodeModulesPaths: [path.resolve(projectRoot, 'node_modules'), path.resolve(monorepoRoot, 'node_modules')],\n  },\n  transformer: {\n    getTransformOptions: async () => ({\n      transform: {\n        experimentalImportSupport: false,\n        inlineRequires: false,\n      },\n    }),\n  },\n});\n"
  },
  {
    "path": "packages/icon-explorer/owl.config.json",
    "content": "{\n  \"ios\": {\n    \"workspace\": \"ios/IconExplorer.xcworkspace\",\n    \"scheme\": \"ReactTestApp\",\n    \"configuration\": \"Debug\",\n    \"device\": \"iPhone 16\"\n  },\n  \"android\": {\n    \"packageName\": \"com.microsoft.reacttestapp\"\n  }\n}\n"
  },
  {
    "path": "packages/icon-explorer/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/icon-explorer\",\n  \"version\": \"12.0.0\",\n  \"private\": true,\n  \"scripts\": {\n    \"android\": \"react-native run-android\",\n    \"ios\": \"react-native run-ios\",\n    \"build:android\": \"npm run mkdist && react-native bundle --entry-file index.js --platform android --dev true --bundle-output dist/main.android.jsbundle --assets-dest dist/res\",\n    \"build:ios\": \"npm run mkdist && react-native bundle --entry-file index.js --platform ios --dev true --bundle-output dist/main.ios.jsbundle --assets-dest dist\",\n    \"build:owl:ios\": \"npm run mkdist && react-native bundle --entry-file index.test.js --platform ios --dev true --bundle-output dist/main.ios.jsbundle --assets-dest dist\",\n    \"build:owl:android\": \"npm run mkdist && react-native bundle --entry-file index.test.js --platform android --dev true --bundle-output dist/main.android.jsbundle --assets-dest dist/res\",\n    \"build:macos\": \"npm run mkdist && react-native bundle --entry-file index.js --platform macos --dev true --bundle-output dist/main.macos.jsbundle --assets-dest dist\",\n    \"build:visionos\": \"npm run mkdist && react-native bundle --entry-file index.js --platform ios --dev true --bundle-output dist/main.visionos.jsbundle --assets-dest dist\",\n    \"build:windows\": \"npm run mkdist && react-native bundle --entry-file index.js --platform windows --dev true --bundle-output dist/main.windows.bundle --assets-dest dist\",\n    \"lint\": \"eslint .\",\n    \"macos\": \"react-native run-macos --scheme IconExplorer\",\n    \"mkdist\": \"node -e \\\"require('node:fs').mkdirSync('dist', { recursive: true, mode: 0o755 })\\\"\",\n    \"start\": \"react-native start\",\n    \"test:android:build\": \"owl build --platform android\",\n    \"test:android:run\": \"owl test --platform android\",\n    \"test:ios:build\": \"owl build --platform ios\",\n    \"test:ios:run\": \"owl test --platform ios\",\n    \"visionos\": \"react-native run-visionos\",\n    \"windows\": \"react-native run-windows --sln windows/IconExplorer.sln\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/ant-design\": \"workspace:*\",\n    \"@react-native-vector-icons/entypo\": \"workspace:*\",\n    \"@react-native-vector-icons/evil-icons\": \"workspace:*\",\n    \"@react-native-vector-icons/feather\": \"workspace:*\",\n    \"@react-native-vector-icons/fontawesome\": \"workspace:*\",\n    \"@react-native-vector-icons/fontawesome5\": \"workspace:*\",\n    \"@react-native-vector-icons/fontawesome5-pro\": \"workspace:*\",\n    \"@react-native-vector-icons/fontawesome6\": \"workspace:*\",\n    \"@react-native-vector-icons/fontawesome6-pro\": \"workspace:*\",\n    \"@react-native-vector-icons/fontello\": \"workspace:*\",\n    \"@react-native-vector-icons/fontisto\": \"workspace:*\",\n    \"@react-native-vector-icons/foundation\": \"workspace:*\",\n    \"@react-native-vector-icons/get-image\": \"workspace:*\",\n    \"@react-native-vector-icons/icomoon\": \"workspace:*\",\n    \"@react-native-vector-icons/ionicons\": \"workspace:*\",\n    \"@react-native-vector-icons/lucide\": \"workspace:*\",\n    \"@react-native-vector-icons/material-design-icons\": \"workspace:*\",\n    \"@react-native-vector-icons/material-icons\": \"workspace:*\",\n    \"@react-native-vector-icons/octicons\": \"workspace:*\",\n    \"@react-native-vector-icons/simple-line-icons\": \"workspace:*\",\n    \"@react-native-vector-icons/zocial\": \"workspace:*\",\n    \"react\": \"19.1.0\",\n    \"react-native\": \"0.80.0\",\n    \"react-native-animatable\": \"^1.4.0\"\n  },\n  \"devDependencies\": {\n    \"@babel/core\": \"^7.26.0\",\n    \"@babel/preset-env\": \"^7.26.0\",\n    \"@babel/runtime\": \"^7.26.0\",\n    \"@expo/config-plugins\": \"^8.0.11\",\n    \"@jest/types\": \"^29.6.3\",\n    \"@johnf/react-native-owl\": \"^1.4.10\",\n    \"@react-native-community/cli\": \"19.0.0\",\n    \"@react-native-community/cli-platform-android\": \"19.0.0\",\n    \"@react-native-community/cli-platform-ios\": \"19.0.0\",\n    \"@react-native/babel-preset\": \"0.80.0\",\n    \"@react-native/eslint-config\": \"0.80.0\",\n    \"@react-native/metro-config\": \"0.80.0\",\n    \"@react-native/typescript-config\": \"0.80.0\",\n    \"@rnx-kit/align-deps\": \"^3.0.8\",\n    \"@rnx-kit/babel-preset-metro-react-native\": \"^2.0.0\",\n    \"@rnx-kit/metro-config\": \"^2.1.0\",\n    \"@types/jest\": \"^29.5.14\",\n    \"@types/node\": \"^20.17.11\",\n    \"@types/react\": \"^19.1.0\",\n    \"@types/react-test-renderer\": \"^19.1.0\",\n    \"babel-jest\": \"^29.7.0\",\n    \"eslint\": \"^8.57.1\",\n    \"jest\": \"^29.7.0\",\n    \"jest-junit\": \"^16.0.0\",\n    \"react-native-test-app\": \"^4.4.0\",\n    \"react-test-renderer\": \"19.1.0\",\n    \"ts-jest\": \"^29.2.5\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"engines\": {\n    \"node\": \">=18\"\n  },\n  \"reactNativeVectorIcons\": {\n    \"fontDir\": \"src/rnvi-fonts\"\n  }\n}\n"
  },
  {
    "path": "packages/icon-explorer/react-native.config.js",
    "content": "const project = (() => {\n  try {\n    const { configureProjects } = require('react-native-test-app');\n    return configureProjects({\n      android: {\n        sourceDir: 'android',\n      },\n      ios: {\n        sourceDir: 'ios',\n      },\n      windows: {\n        sourceDir: 'windows',\n        solutionFile: 'windows/IconExplorer.sln',\n      },\n    });\n  } catch (_) {\n    return undefined;\n  }\n})();\n\nmodule.exports = {\n  ...(project ? { project } : undefined),\n};\n"
  },
  {
    "path": "packages/icon-explorer/set-rn-version.sh",
    "content": "#!/usr/bin/env bash\n\nset -e\n\nARCH=$1\nif [ -z \"$ARCH\" ]; then\n  echo \"Please provide a new or old arch\"\n  exit 1\nfi\n\nVERSION=$2\nif [ -z \"$VERSION\" ]; then\n  echo \"Please provide a valid RN version\"\n  exit 1\nfi\n\necho \"Switching to $VERSION (arch: $ARCH)\"\n\npnpm rnx-align-deps --requirements react-native@\"$VERSION\" --write\n\npnpm add --ignore-scripts react-native@\"^$VERSION.0\"\n\n# align-deps rolls this back, so force the latest\npnpm add --ignore-scripts react-native-test-app@latest\n\npnpm install --frozen-lockfile --ignore-scripts --filter .\n\n# We don't package them so remove them\nrm -rf ../get-image/android/generated\nrm -rf ../get-image/ios/generated\n\n# Make react-native-owl work in monorepo\nmkdir -p node_modules\ncd node_modules\nln -nfs ../../../node_modules/@johnf/react-native-owl react-native-owl\nln -nfs ../../../node_modules/react-native react-native\ncd -\n\nif [ \"$ARCH\" = \"new\" ]; then\n  if [ \"$(uname)\" == \"Darwin\" ]; then\n    sed -i.bak -e 's/fabric_enabled:.*/fabric_enabled: true/' ios/Podfile\n  else\n    echo \"newArchEnabled=true\" >>android/gradle.properties\n  fi\nelse\n  if [ \"$(uname)\" == \"Darwin\" ]; then\n    sed -i.bak -e 's/fabric_enabled:.*/fabric_enabled: false/' ios/Podfile\n  else\n    echo \"newArchEnabled=false\" >>android/gradle.properties\n  fi\nfi\n\nif [ \"$(uname)\" == \"Darwin\" ]; then\n  pnpm run build:owl:ios\n  pod update --project-directory=ios\nelse\n  pnpm run build:owl:android\nfi\n"
  },
  {
    "path": "packages/icon-explorer/src/App.tsx",
    "content": "import { useCallback, useEffect, useState } from 'react';\nimport { BackHandler, LogBox, Pressable, Text, View } from 'react-native';\n\nimport { Home, type IconName } from './Home';\nimport { IconList, MultiIconList } from './IconList';\nimport { TestMode } from './TestMode';\n\n// We don't want ref error that react-native-owl is generating in our screenshots\nLogBox.ignoreAllLogs(true);\n\ntype NavType = {\n  view: 'Home' | 'IconSet' | 'MultiIconSet' | 'TestMode';\n  iconName?: IconName;\n  iconStyle?: string;\n};\n\nconst App = () => {\n  const [state, setState] = useState<NavType>({ view: 'Home' });\n\n  const navigateToIconSet = (iconName: IconName) => {\n    setState({ view: 'IconSet', iconName, iconStyle: undefined });\n  };\n\n  const navigateToMultiIconSet = (iconName: IconName) => {\n    setState({ view: 'MultiIconSet', iconName, iconStyle: undefined });\n  };\n\n  const navigateToIconSetWithStyle = (iconStyle: string, iconName: IconName) => {\n    setState({ view: 'IconSet', iconName, iconStyle });\n  };\n\n  const handleTestMode = () => setState({ view: 'TestMode' });\n\n  const handleBackPress = useCallback(() => {\n    if (state.view === 'IconSet' && state.iconStyle) {\n      setState({ view: 'MultiIconSet', iconName: state.iconName, iconStyle: undefined });\n\n      return true;\n    }\n\n    if (['IconSet', 'MultiIconSet', 'TestMode'].includes(state.view)) {\n      setState({ view: 'Home', iconName: undefined, iconStyle: undefined });\n\n      return true;\n    }\n\n    return false;\n  }, [state]);\n\n  useEffect(() => {\n    const handler = BackHandler.addEventListener('hardwareBackPress', handleBackPress);\n    return handler.remove;\n  }, [handleBackPress]);\n\n  const renderContent = () => {\n    switch (state.view) {\n      case 'Home':\n        return <Home navigator={navigateToIconSet} multiNavigator={navigateToMultiIconSet} />;\n      case 'IconSet':\n        // @ts-expect-error We are doing some strange things\n        return <IconList iconName={state.iconName} iconStyle={state.iconStyle} />;\n      case 'MultiIconSet':\n        // @ts-expect-error We are doing some strange things\n        return <MultiIconList iconName={state.iconName} navigator={navigateToIconSetWithStyle} />;\n      case 'TestMode':\n        return <TestMode />;\n      default:\n        throw new Error('Invalid view');\n    }\n  };\n\n  return (\n    <View style={{ flex: 1, paddingTop: 10, backgroundColor: '#ffffff' }}>\n      {renderContent()}\n      <Pressable testID=\"TestMode\" onPress={handleTestMode}>\n        <Text>TEST MODE</Text>\n      </Pressable>\n    </View>\n  );\n};\n\nexport default App;\n"
  },
  {
    "path": "packages/icon-explorer/src/Home.tsx",
    "content": "import type { ReactNode } from 'react';\nimport { Image, Pressable, ScrollView, SectionList, StyleSheet, Text, View, type ViewProps } from 'react-native';\n\nimport { FontAwesome } from '@react-native-vector-icons/fontawesome';\nimport { FontAwesome6 } from '@react-native-vector-icons/fontawesome6';\n\nimport { createAnimatableComponent } from './animatable';\nimport ICON_SETS from './icon-sets';\n\n// @ts-expect-error: We don't care this is wrong for the tests\nconst AnimatableIcon = createAnimatableComponent(FontAwesome);\n\nconst STYLING: (Parameters<typeof FontAwesome>[0] & {\n  containerStyle?: ViewProps['style'];\n})[] = [\n  { name: 'github', size: 40, color: '#333' },\n  {\n    name: 'heart',\n    size: 30,\n    color: 'white',\n    containerStyle: {\n      backgroundColor: '#e0284f',\n      borderRadius: 23,\n      paddingHorizontal: 8,\n      paddingTop: 9,\n      paddingBottom: 7,\n    },\n  },\n  {\n    name: 'star',\n    size: 20,\n    color: '#FF0000',\n    containerStyle: {\n      borderRadius: 20,\n      padding: 7,\n      borderWidth: 3,\n      backgroundColor: '#FFDD00',\n      borderColor: '#165E00',\n    },\n  },\n  {\n    name: 'font',\n    size: 20,\n    color: 'white',\n    containerStyle: {\n      borderRadius: 5,\n      padding: 5,\n      backgroundColor: '#47678e',\n    },\n  },\n];\n\nconst INLINE = [\n  {\n    name: 'inline',\n    children: (\n      <Text>\n        This text has <FontAwesome name=\"rocket\" /> inline <FontAwesome name=\"hand-peace-o\"> icons!</FontAwesome>\n      </Text>\n    ),\n  },\n];\n\nconst getImageFA = FontAwesome.getImageSourceSync('check', 40, 'green');\nconst getImageFA6 = FontAwesome6.getImageSourceSync('solid', 'check', 40, 'green');\n\nconst GETIMAGE = [\n  {\n    name: 'get-image',\n    children: (\n      <>\n        <Image source={getImageFA} style={{ width: 40, height: 40 }} />\n\n        <Image source={getImageFA6} style={{ width: 40, height: 40 }} />\n      </>\n    ),\n  },\n];\n\nconst ANIMATED = [\n  {\n    name: 'animated',\n    children: (\n      <AnimatableIcon\n        animation=\"pulse\"\n        easing=\"ease-out\"\n        iterationCount=\"infinite\"\n        name=\"heart\"\n        size={30}\n        color=\"#e0284f\"\n      />\n    ),\n  },\n];\n\nconst styles = StyleSheet.create({\n  sectionHeader: {\n    paddingVertical: 5,\n    paddingHorizontal: 10,\n    backgroundColor: '#eee',\n  },\n  sectionHeaderTitle: {\n    fontWeight: '500',\n    fontSize: 11,\n  },\n  row: {\n    flexDirection: 'row',\n    justifyContent: 'center',\n    padding: 10,\n  },\n  separator: {\n    height: StyleSheet.hairlineWidth,\n    backgroundColor: '#ccc',\n  },\n  text: {\n    flex: 6,\n  },\n  glyphCount: {\n    flex: 1,\n    fontSize: 11,\n    fontWeight: '500',\n    textAlign: 'right',\n  },\n  button: {\n    padding: 4,\n    backgroundColor: '#ADA6EA',\n    width: 100,\n  },\n  buttonText: { color: 'white' },\n});\n\nexport type IconName = keyof typeof ICON_SETS;\nexport type IconSet = (typeof ICON_SETS)[IconName];\n\nconst ItemSeparator = () => <View style={styles.separator} />;\n\nconst renderRow = (item: { children: ReactNode }) => <View style={styles.row}>{item.children}</View>;\n\nconst renderStyling = (item: (typeof STYLING)[number]) => (\n  <View style={styles.row}>\n    <View style={item.containerStyle}>\n      <FontAwesome {...item} />\n    </View>\n  </View>\n);\n\nexport const Home = ({\n  navigator,\n  multiNavigator,\n}: {\n  navigator: (iconName: IconName) => void;\n  multiNavigator: (iconName: IconName) => void;\n}) => {\n  const renderIcon = (itemName: IconName) => {\n    const item = ICON_SETS[itemName];\n\n    return (\n      <Pressable testID={itemName} onPress={() => (item.meta ? multiNavigator(itemName) : navigator(itemName))}>\n        <View style={styles.row}>\n          <Text style={styles.text}>{itemName}</Text>\n          <Text style={styles.glyphCount}>{item.glyphNames.length}</Text>\n        </View>\n      </Pressable>\n    );\n  };\n\n  const iconNames = Object.keys(ICON_SETS) as IconName[];\n\n  const sections = [\n    {\n      title: 'ICON SETS',\n      data: iconNames.map((itemName) => renderIcon(itemName)),\n    },\n    { title: 'INLINE', data: INLINE.map((item) => renderRow(item)) },\n    {\n      title: 'SYNCHROUNOUS',\n      data: GETIMAGE.map((item) => renderRow(item)),\n    },\n    { title: 'ANIMATED', data: ANIMATED.map((item) => renderRow(item)) },\n    { title: 'STYLING', data: STYLING.map((item) => renderStyling(item)) },\n  ];\n\n  return (\n    <SectionList\n      renderScrollComponent={(props) => <ScrollView {...props} testID=\"scrollview\" />}\n      sections={sections}\n      renderItem={({ item }) => item}\n      renderSectionHeader={({ section }) => (\n        <View style={styles.sectionHeader}>\n          <Text testID=\"title\" style={styles.sectionHeaderTitle}>\n            {section.title}\n          </Text>\n        </View>\n      )}\n      ItemSeparatorComponent={ItemSeparator}\n      initialNumToRender={15}\n    />\n  );\n};\n"
  },
  {
    "path": "packages/icon-explorer/src/IconList.tsx",
    "content": "import { useEffect, useState } from 'react';\nimport {\n  DeviceEventEmitter,\n  FlatList,\n  type NativeSyntheticEvent,\n  Platform,\n  Pressable,\n  StyleSheet,\n  Text,\n  TextInput,\n  type TextInputChangeEventData,\n  View,\n} from 'react-native';\n\nimport type { IconName, IconSet } from './Home';\nimport ICON_SETS from './icon-sets';\n\nconst styles = StyleSheet.create({\n  container: {\n    flex: 1,\n  },\n  searchBar: {\n    padding: 3,\n    paddingLeft: 8,\n    flexDirection: 'row',\n    alignItems: 'center',\n    borderBottomWidth: 1,\n    borderColor: '#444',\n  },\n  searchBarInput: {\n    fontSize: 15,\n    flex: 1,\n    height: 45,\n  },\n  list: {\n    flex: 1,\n  },\n  row: {\n    flexDirection: 'row',\n    justifyContent: 'center',\n    padding: 10,\n    overflow: 'hidden',\n    borderBottomWidth: 1,\n    borderColor: '#ddd',\n  },\n  icon: {\n    textAlign: 'center',\n    marginRight: 10,\n    width: 20,\n  },\n  heading: {\n    color: '#000',\n    fontWeight: '800',\n    marginLeft: 10,\n  },\n  text: {\n    flex: 1,\n  },\n  glyphCount: {\n    flex: 1,\n    fontSize: 11,\n    fontWeight: '500',\n    textAlign: 'right',\n  },\n});\n\nconst getFilteredGlyphNames = (iconStyle: string | undefined, iconSet: IconSet, query: string) => {\n  const icons = iconStyle\n    ? (iconSet.meta?.[iconStyle as keyof typeof iconSet.meta] || []).map((name) => [name])\n    : iconSet.glyphNames;\n\n  return icons.filter((glyphNames) => glyphNames.find((glyphName) => glyphName.indexOf(query) !== -1));\n};\n\nexport const IconList = ({ iconName, iconStyle = undefined }: { iconName: IconName; iconStyle?: string }) => {\n  const iconSet = ICON_SETS[iconName];\n  const [filter, setFilter] = useState('');\n\n  useEffect(() => {\n    if (Platform.OS !== 'macos') {\n      return undefined;\n    }\n\n    const searchListner = DeviceEventEmitter.addListener('onSearchIcons', (e) => setFilter(e.query.toLowerCase()));\n\n    return searchListner.remove;\n  }, []);\n\n  const handleSearchChange = (event: NativeSyntheticEvent<TextInputChangeEventData>) =>\n    setFilter(event.nativeEvent.text.toLowerCase());\n\n  const glyphNames = getFilteredGlyphNames(iconStyle, iconSet, filter);\n\n  const Icon = iconSet.component;\n\n  return (\n    <View style={styles.container}>\n      <Text style={styles.heading}>\n        {iconName}\n        {iconStyle ? ` - ${iconStyle}` : ''}\n      </Text>\n      <View style={styles.searchBar}>\n        <TextInput\n          autoCapitalize=\"none\"\n          autoCorrect={false}\n          onChange={handleSearchChange}\n          placeholder=\"Search an icon...\"\n          style={styles.searchBarInput}\n        />\n      </View>\n\n      <FlatList\n        data={glyphNames}\n        style={styles.list}\n        renderItem={({ item }) => (\n          <View style={styles.row}>\n            {/* @ts-expect-error because we are doing magic */}\n            <Icon iconStyle={iconStyle} name={item[0]} size={20} style={styles.icon} />\n            <Text selectable style={styles.text}>\n              {item.join(', ')}\n            </Text>\n          </View>\n        )}\n        automaticallyAdjustContentInsets={false}\n        keyboardDismissMode=\"on-drag\"\n        keyboardShouldPersistTaps=\"always\"\n        showsVerticalScrollIndicator={false}\n        initialNumToRender={20}\n        keyExtractor={(item) => item[0]}\n      />\n    </View>\n  );\n};\n\nexport const MultiIconList = ({\n  iconName,\n  navigator,\n}: {\n  iconName: IconName;\n  navigator: (iconStyle: string, iconName: IconName) => void;\n}) => {\n  const iconSet = ICON_SETS[iconName];\n  if (!iconSet.meta) {\n    throw new Error(`Icon ${iconName} has no Meta how did we get here?`);\n  }\n\n  return (\n    <View style={styles.container}>\n      <Text style={styles.heading}>{iconName}</Text>\n      <FlatList\n        data={Object.keys(iconSet.meta)}\n        style={styles.list}\n        renderItem={({ item: iconStyle }) => (\n          <Pressable testID={iconStyle} onPress={() => navigator(iconStyle, iconName)}>\n            <View style={styles.row}>\n              <Text style={styles.text}>{iconStyle}</Text>\n              <Text style={styles.glyphCount}>{iconSet.meta[iconStyle as keyof typeof iconSet.meta].length}</Text>\n            </View>\n          </Pressable>\n        )}\n        automaticallyAdjustContentInsets={false}\n        keyboardDismissMode=\"on-drag\"\n        keyboardShouldPersistTaps=\"always\"\n        showsVerticalScrollIndicator={false}\n        initialNumToRender={20}\n        keyExtractor={(item) => item[0]}\n      />\n    </View>\n  );\n};\n"
  },
  {
    "path": "packages/icon-explorer/src/TestMode.tsx",
    "content": "import type { ReactNode } from 'react';\nimport { ScrollView, Text, View } from 'react-native';\n\nimport { AntDesign } from '@react-native-vector-icons/ant-design';\nimport { Entypo } from '@react-native-vector-icons/entypo';\nimport { EvilIcons } from '@react-native-vector-icons/evil-icons';\nimport { Feather } from '@react-native-vector-icons/feather';\nimport { FontAwesome } from '@react-native-vector-icons/fontawesome';\nimport { FontAwesome5 } from '@react-native-vector-icons/fontawesome5';\nimport { FontAwesome5Pro, type FontAwesome5ProSolidIconName } from '@react-native-vector-icons/fontawesome5-pro';\nimport { FontAwesome6 } from '@react-native-vector-icons/fontawesome6';\nimport { FontAwesome6Pro } from '@react-native-vector-icons/fontawesome6-pro';\nimport createFontelloIconSet from '@react-native-vector-icons/fontello';\nimport { Fontisto } from '@react-native-vector-icons/fontisto';\nimport { Foundation } from '@react-native-vector-icons/foundation';\nimport createIcoMoonIconSet from '@react-native-vector-icons/icomoon';\nimport { Ionicons } from '@react-native-vector-icons/ionicons';\nimport { Lucide } from '@react-native-vector-icons/lucide';\nimport { MaterialDesignIcons } from '@react-native-vector-icons/material-design-icons';\nimport { MaterialIcons } from '@react-native-vector-icons/material-icons';\nimport { Octicons } from '@react-native-vector-icons/octicons';\nimport { SimpleLineIcons } from '@react-native-vector-icons/simple-line-icons';\nimport { Zocial } from '@react-native-vector-icons/zocial';\n\nimport FontelloConfig from './configs/fontello.config.json';\nimport IcoMoonConfig from './configs/icomoon.config.json';\n\nconst Fontello = createFontelloIconSet(FontelloConfig);\nconst FontelloGlyphs: Record<string, number> = {};\nFontelloConfig.glyphs.forEach((glyph) => {\n  FontelloGlyphs[glyph.css] = glyph.code;\n});\n\nconst IcoMoon = createIcoMoonIconSet(IcoMoonConfig);\nconst IcoMoonGlyphs: Record<string, number> = {};\nIcoMoonConfig.icons.forEach((icon) => {\n  icon.properties.name.split(/\\s*,\\s*/g).forEach((name) => {\n    IcoMoonGlyphs[name] = icon.properties.code;\n  });\n});\n\ninterface IconRowProps {\n  label: string;\n  children: ReactNode;\n}\n\nconst IconRow = ({ label, children }: IconRowProps) => (\n  <View style={{ flexDirection: 'row', alignItems: 'center', gap: 10 }}>\n    <Text>{label}:</Text>\n    {children}\n  </View>\n);\n\n/**\n * @public\n * Show knip ignores it\n */\nexport const OurTypeTestIcon = ({\n  name,\n  size = 24,\n  color = '#000',\n}: {\n  size: number;\n  color: string;\n  name: FontAwesome5ProSolidIconName;\n}) => <FontAwesome5Pro name={name} size={size} color={color} iconStyle=\"solid\" />;\n\nexport const TestMode = () => {\n  const iconConfig = [\n    { Component: AntDesign, name: 'home', label: 'AntD' },\n    { Component: Entypo, name: 'home', label: 'Entypo' },\n    { Component: EvilIcons, name: 'archive', label: 'EvilIcons' },\n    { Component: Feather, name: 'home', label: 'Feather' },\n    { Component: FontAwesome, name: 'home', label: 'FontAwesome' },\n    { Component: FontAwesome5, name: 'home', label: 'FontAwesome5', iconStyle: 'solid' },\n    { Component: FontAwesome5Pro, name: 'home', label: 'FontAwesome5Pro' },\n    { Component: FontAwesome6, name: 'house', label: 'FontAwesome6', iconStyle: 'solid' },\n    { Component: FontAwesome6Pro, name: 'house', label: 'FontAwesome6Pro' },\n    { Component: Fontello, name: 'home', label: 'Fontello' },\n    { Component: Fontisto, name: 'home', label: 'Fontisto' },\n    { Component: Foundation, name: 'home', label: 'Foundation' },\n    { Component: IcoMoon, name: 'home', label: 'IcoMoon' },\n    { Component: Ionicons, name: 'home', label: 'Ionicons' },\n    { Component: Lucide, name: 'house', label: 'Lucide' },\n    { Component: MaterialDesignIcons, name: 'home', label: 'MaterialDesignIcons' },\n    { Component: MaterialIcons, name: 'home', label: 'MaterialIcons' },\n    { Component: Octicons, name: 'home', label: 'Octicons' },\n    { Component: SimpleLineIcons, name: 'home', label: 'SimpleLineIcons' },\n    { Component: Zocial, name: 'email', label: 'Zocial' },\n  ];\n\n  return (\n    <ScrollView testID=\"TestScreen\" contentContainerStyle={{ padding: 20 }}>\n      {iconConfig.map((config) => {\n        const { Component, name, label, iconStyle } = config;\n\n        return (\n          <IconRow key={label} label={label}>\n            {/* @ts-expect-error ignore */}\n            <Component name={name} size={12} iconStyle={iconStyle} />\n          </IconRow>\n        );\n      })}\n    </ScrollView>\n  );\n};\n"
  },
  {
    "path": "packages/icon-explorer/src/Types.tsx",
    "content": "/* This file exists to make sure the types work properly */\n\nimport { AntDesign } from '@react-native-vector-icons/ant-design';\nimport { FontAwesome5 } from '@react-native-vector-icons/fontawesome5';\n\nexport const Component = () => {\n  AntDesign.getImageSource('robot', 20, 'red');\n  FontAwesome5.getImageSource('regular', 'address-book', 20, 'red');\n  // @ts-expect-error bad font name\n  FontAwesome5.getImageSource('brand', 'address-book', 20, 'red');\n  // @ts-expect-error bad font name\n  FontAwesome5.getImageSource('solid', 'github', 20, 'red');\n\n  return (\n    <>\n      <AntDesign name=\"robot\" />\n      {/* @ts-expect-error bad font name */}\n      <AntDesign name=\"rnvi\" />\n\n      <FontAwesome5 name=\"address-book\" />\n      <FontAwesome5 iconStyle=\"regular\" name=\"address-book\" />\n      <FontAwesome5 iconStyle=\"brand\" name=\"github\" />\n      <FontAwesome5 iconStyle=\"solid\" name=\"address-book\" />\n      {/* @ts-expect-error bad font name */}\n      <FontAwesome5 name=\"500px\" />\n      {/* @ts-expect-error no name */}\n      <FontAwesome5 iconStyle=\"solid\" />\n      {/* @ts-expect-error no name */}\n      <FontAwesome5 iconStyle=\"olid\" />\n      {/* @ts-expect-error bad name for style */}\n      <FontAwesome5 iconStyle=\"solid\" name=\"github\" />\n      {/* @ts-expect-error bad name for style */}\n      <FontAwesome5 iconStyle=\"brand\" name=\"address-book\" />\n    </>\n  );\n};\n"
  },
  {
    "path": "packages/icon-explorer/src/animatable.tsx",
    "content": "import type React from 'react';\nimport { ScrollView } from 'react-native';\n\nimport { createAnimatableComponent as createAnimatableComponentRNA } from 'react-native-animatable';\n\nconst createAnimatableComponentMock = (component: React.FC) => component;\n\nconst disableAnimations = () => {\n  const scroll = <ScrollView showsVerticalScrollIndicator />;\n\n  return !scroll.props.showsVerticalScrollIndicator;\n};\n\nexport const createAnimatableComponent = disableAnimations()\n  ? createAnimatableComponentMock\n  : createAnimatableComponentRNA;\n"
  },
  {
    "path": "packages/icon-explorer/src/configs/fontello.config.json",
    "content": "{\n  \"name\": \"\",\n  \"css_prefix_text\": \"icon-\",\n  \"css_use_suffix\": false,\n  \"hinting\": true,\n  \"units_per_em\": 1000,\n  \"ascent\": 850,\n  \"glyphs\": [\n    {\n      \"uid\": \"a42f298da5c64e646a5d532724cd6e15\",\n      \"css\": \"home\",\n      \"code\": 59392,\n      \"src\": \"typicons\"\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/icon-explorer/src/configs/icomoon.config.json",
    "content": "{\"IcoMoonType\":\"selection\",\"icons\":[{\"icon\":{\"paths\":[\"M1024 590.444l-512-397.426-512 397.428v-162.038l512-397.426 512 397.428zM896 576v384h-256v-256h-256v256h-256v-384l384-288z\"],\"tags\":[\"home\",\"house\"],\"defaultCode\":59648,\"grid\":16,\"attrs\":[]},\"attrs\":[],\"properties\":{\"ligatures\":\"home, house\",\"name\":\"home\",\"order\":2,\"id\":1,\"prevSize\":32,\"code\":59648},\"setIdx\":0,\"setId\":1,\"iconIdx\":0}],\"height\":1024,\"metadata\":{\"name\":\"icomoon\"},\"preferences\":{\"showGlyphs\":true,\"showQuickUse\":true,\"showQuickUse2\":true,\"showSVGs\":true,\"fontPref\":{\"prefix\":\"icon-\",\"metadata\":{\"fontFamily\":\"icomoon\",\"majorVersion\":1,\"minorVersion\":0},\"metrics\":{\"emSize\":1024,\"baseline\":6.25,\"whitespace\":50},\"embed\":false,\"noie8\":true,\"ie7\":false},\"imagePref\":{\"prefix\":\"icon-\",\"png\":true,\"useClassSelector\":true,\"color\":0,\"bgColor\":16777215,\"classSelector\":\".icon\"},\"historySize\":50,\"showCodes\":true,\"gridSize\":16}}"
  },
  {
    "path": "packages/icon-explorer/src/icon-sets.tsx",
    "content": "import { AntDesign } from '@react-native-vector-icons/ant-design';\nimport AntDesignGlyphs from '@react-native-vector-icons/ant-design/glyphmaps/AntDesign.json';\nimport { Entypo } from '@react-native-vector-icons/entypo';\nimport EntypoGlyphs from '@react-native-vector-icons/entypo/glyphmaps/Entypo.json';\nimport { EvilIcons } from '@react-native-vector-icons/evil-icons';\nimport EvilIconsGlyphs from '@react-native-vector-icons/evil-icons/glyphmaps/EvilIcons.json';\nimport { Feather } from '@react-native-vector-icons/feather';\nimport FeatherGlyphs from '@react-native-vector-icons/feather/glyphmaps/Feather.json';\nimport { FontAwesome } from '@react-native-vector-icons/fontawesome';\nimport FontAwesomeGlyphs from '@react-native-vector-icons/fontawesome/glyphmaps/FontAwesome.json';\nimport { FontAwesome5 } from '@react-native-vector-icons/fontawesome5';\nimport FontAwesome5Glyphs from '@react-native-vector-icons/fontawesome5/glyphmaps/FontAwesome5.json';\nimport FontAwesome5Meta from '@react-native-vector-icons/fontawesome5/glyphmaps/FontAwesome5_meta.json';\nimport { FontAwesome5Pro } from '@react-native-vector-icons/fontawesome5-pro';\nimport FontAwesome5ProGlyphs from '@react-native-vector-icons/fontawesome5-pro/glyphmaps/FontAwesome5Pro.json';\nimport FontAwesome5ProMeta from '@react-native-vector-icons/fontawesome5-pro/glyphmaps/FontAwesome5Pro_meta.json';\nimport { FontAwesome6 } from '@react-native-vector-icons/fontawesome6';\nimport FontAwesome6Glyphs from '@react-native-vector-icons/fontawesome6/glyphmaps/FontAwesome6.json';\nimport FontAwesome6Meta from '@react-native-vector-icons/fontawesome6/glyphmaps/FontAwesome6_meta.json';\nimport { FontAwesome6Pro } from '@react-native-vector-icons/fontawesome6-pro';\nimport FontAwesome6ProGlyphs from '@react-native-vector-icons/fontawesome6-pro/glyphmaps/FontAwesome6Pro.json';\nimport FontAwesome6ProMeta from '@react-native-vector-icons/fontawesome6-pro/glyphmaps/FontAwesome6Pro_meta.json';\nimport createFontelloIconSet from '@react-native-vector-icons/fontello';\nimport { Fontisto } from '@react-native-vector-icons/fontisto';\nimport FontistoGlyphs from '@react-native-vector-icons/fontisto/glyphmaps/Fontisto.json';\nimport { Foundation } from '@react-native-vector-icons/foundation';\nimport FoundationGlyphs from '@react-native-vector-icons/foundation/glyphmaps/Foundation.json';\nimport createIcoMoonIconSet from '@react-native-vector-icons/icomoon';\nimport { Ionicons } from '@react-native-vector-icons/ionicons';\nimport IoniconsGlyphs from '@react-native-vector-icons/ionicons/glyphmaps/Ionicons.json';\nimport { Lucide } from '@react-native-vector-icons/lucide';\nimport LucideGlyphs from '@react-native-vector-icons/lucide/glyphmaps/Lucide.json';\nimport { MaterialDesignIcons } from '@react-native-vector-icons/material-design-icons';\nimport MaterialDesignIconsGlyphs from '@react-native-vector-icons/material-design-icons/glyphmaps/MaterialDesignIcons.json';\nimport { MaterialIcons } from '@react-native-vector-icons/material-icons';\nimport MaterialIconsGlyphs from '@react-native-vector-icons/material-icons/glyphmaps/MaterialIcons.json';\nimport { Octicons } from '@react-native-vector-icons/octicons';\nimport OcticonsGlyphs from '@react-native-vector-icons/octicons/glyphmaps/Octicons.json';\nimport { SimpleLineIcons } from '@react-native-vector-icons/simple-line-icons';\nimport SimpleLineIconsGlyphs from '@react-native-vector-icons/simple-line-icons/glyphmaps/SimpleLineIcons.json';\nimport { Zocial } from '@react-native-vector-icons/zocial';\nimport ZocialGlyphs from '@react-native-vector-icons/zocial/glyphmaps/Zocial.json';\n\nimport FontelloConfig from './configs/fontello.config.json';\nimport IcoMoonConfig from './configs/icomoon.config.json';\n\nconst Fontello = createFontelloIconSet(FontelloConfig);\nconst FontelloGlyphs: Record<string, number> = {};\nFontelloConfig.glyphs.forEach((glyph) => {\n  FontelloGlyphs[glyph.css] = glyph.code;\n});\n\nconst IcoMoon = createIcoMoonIconSet(IcoMoonConfig);\nconst IcoMoonGlyphs: Record<string, number> = {};\nIcoMoonConfig.icons.forEach((icon) => {\n  icon.properties.name.split(/\\s*,\\s*/g).forEach((name) => {\n    IcoMoonGlyphs[name] = icon.properties.code;\n  });\n});\n\nconst groupGlyphNames = (glyphMap: Record<string, number>) => {\n  const result: Record<number, string[]> = {};\n\n  Object.entries(glyphMap).forEach(([glyphName, glyphValue]) => {\n    result[glyphValue] ||= [];\n\n    result[glyphValue].push(glyphName);\n  });\n\n  return Object.values(result);\n};\n\nconst iconSets = {\n  AntD: { component: AntDesign, glyphNames: groupGlyphNames(AntDesignGlyphs), meta: undefined },\n  Entypo: { component: Entypo, glyphNames: groupGlyphNames(EntypoGlyphs), meta: undefined },\n  EvilIcons: { component: EvilIcons, glyphNames: groupGlyphNames(EvilIconsGlyphs), meta: undefined },\n  Feather: { component: Feather, glyphNames: groupGlyphNames(FeatherGlyphs), meta: undefined },\n  FontAwesome: { component: FontAwesome, glyphNames: groupGlyphNames(FontAwesomeGlyphs), meta: undefined },\n  FontAwesome5: { component: FontAwesome5, glyphNames: groupGlyphNames(FontAwesome5Glyphs), meta: FontAwesome5Meta },\n  FontAwesome5Pro: {\n    component: FontAwesome5Pro,\n    glyphNames: groupGlyphNames(FontAwesome5ProGlyphs),\n    meta: FontAwesome5ProMeta,\n  },\n  FontAwesome6: { component: FontAwesome6, glyphNames: groupGlyphNames(FontAwesome6Glyphs), meta: FontAwesome6Meta },\n  FontAwesome6Pro: {\n    component: FontAwesome6Pro,\n    glyphNames: groupGlyphNames(FontAwesome6ProGlyphs),\n    meta: FontAwesome6ProMeta,\n  },\n  Fontello: { component: Fontello, glyphNames: groupGlyphNames(FontelloGlyphs), meta: undefined },\n  Lucide: { component: Lucide, glyphNames: groupGlyphNames(LucideGlyphs), meta: undefined },\n  Fontisto: { component: Fontisto, glyphNames: groupGlyphNames(FontistoGlyphs), meta: undefined },\n  Foundation: { component: Foundation, glyphNames: groupGlyphNames(FoundationGlyphs), meta: undefined },\n  IcoMoon: { component: IcoMoon, glyphNames: groupGlyphNames(IcoMoonGlyphs), meta: undefined },\n  Ionicons: { component: Ionicons, glyphNames: groupGlyphNames(IoniconsGlyphs), meta: undefined },\n  MaterialIcons: { component: MaterialIcons, glyphNames: groupGlyphNames(MaterialIconsGlyphs), meta: undefined },\n  MaterialCommunityIcons: {\n    component: MaterialDesignIcons,\n    glyphNames: groupGlyphNames(MaterialDesignIconsGlyphs),\n    meta: undefined,\n  },\n  Octicons: { component: Octicons, glyphNames: groupGlyphNames(OcticonsGlyphs), meta: undefined },\n  SimpleLineIcons: { component: SimpleLineIcons, glyphNames: groupGlyphNames(SimpleLineIconsGlyphs), meta: undefined },\n  Zocial: { component: Zocial, glyphNames: groupGlyphNames(ZocialGlyphs), meta: undefined },\n};\n\nexport default iconSets;\n"
  },
  {
    "path": "packages/icon-explorer/tsconfig.json",
    "content": "{\n  \"extends\": \"@react-native/typescript-config\"\n}\n"
  },
  {
    "path": "packages/icon-explorer/visionos/Podfile",
    "content": "ws_dir = Pathname.new(__dir__)\nws_dir = ws_dir.parent until\n  File.exist?(\"#{ws_dir}/node_modules/react-native-test-app/visionos/test_app.rb\") ||\n  ws_dir.expand_path.to_s == '/'\nrequire \"#{ws_dir}/node_modules/react-native-test-app/visionos/test_app.rb\"\n\nworkspace 'IconExplorer.xcworkspace'\n\nuse_test_app!\n"
  },
  {
    "path": "packages/ionicons/.fontcustom-manifest.json",
    "content": "{\n  \"checksum\": {\n    \"previous\": \"e96312b6719260d2b09198146ebf6dbf01cf43de83c88a7b6e2e944ec41a2e50\",\n    \"current\": \"e96312b6719260d2b09198146ebf6dbf01cf43de83c88a7b6e2e944ec41a2e50\"\n  },\n  \"fonts\": [\n    \"Ionicons/Ionicons.ttf\",\n    \"Ionicons/Ionicons.svg\",\n    \"Ionicons/Ionicons.woff\",\n    \"Ionicons/Ionicons.eot\",\n    \"Ionicons/Ionicons.woff2\"\n  ],\n  \"glyphs\": {\n    \"accessibility\": {\n      \"codepoint\": 61696,\n      \"source\": \"fixedSvg/accessibility.svg\"\n    },\n    \"accessibility-outline\": {\n      \"codepoint\": 61697,\n      \"source\": \"fixedSvg/accessibility-outline.svg\"\n    },\n    \"accessibility-sharp\": {\n      \"codepoint\": 61698,\n      \"source\": \"fixedSvg/accessibility-sharp.svg\"\n    },\n    \"add\": {\n      \"codepoint\": 61699,\n      \"source\": \"fixedSvg/add.svg\"\n    },\n    \"add-circle\": {\n      \"codepoint\": 61700,\n      \"source\": \"fixedSvg/add-circle.svg\"\n    },\n    \"add-circle-outline\": {\n      \"codepoint\": 61701,\n      \"source\": \"fixedSvg/add-circle-outline.svg\"\n    },\n    \"add-circle-sharp\": {\n      \"codepoint\": 61702,\n      \"source\": \"fixedSvg/add-circle-sharp.svg\"\n    },\n    \"add-outline\": {\n      \"codepoint\": 61703,\n      \"source\": \"fixedSvg/add-outline.svg\"\n    },\n    \"add-sharp\": {\n      \"codepoint\": 61704,\n      \"source\": \"fixedSvg/add-sharp.svg\"\n    },\n    \"airplane\": {\n      \"codepoint\": 61705,\n      \"source\": \"fixedSvg/airplane.svg\"\n    },\n    \"airplane-outline\": {\n      \"codepoint\": 61706,\n      \"source\": \"fixedSvg/airplane-outline.svg\"\n    },\n    \"airplane-sharp\": {\n      \"codepoint\": 61707,\n      \"source\": \"fixedSvg/airplane-sharp.svg\"\n    },\n    \"alarm\": {\n      \"codepoint\": 61708,\n      \"source\": \"fixedSvg/alarm.svg\"\n    },\n    \"alarm-outline\": {\n      \"codepoint\": 61709,\n      \"source\": \"fixedSvg/alarm-outline.svg\"\n    },\n    \"alarm-sharp\": {\n      \"codepoint\": 61710,\n      \"source\": \"fixedSvg/alarm-sharp.svg\"\n    },\n    \"albums\": {\n      \"codepoint\": 61711,\n      \"source\": \"fixedSvg/albums.svg\"\n    },\n    \"albums-outline\": {\n      \"codepoint\": 61712,\n      \"source\": \"fixedSvg/albums-outline.svg\"\n    },\n    \"albums-sharp\": {\n      \"codepoint\": 61713,\n      \"source\": \"fixedSvg/albums-sharp.svg\"\n    },\n    \"alert\": {\n      \"codepoint\": 61714,\n      \"source\": \"fixedSvg/alert.svg\"\n    },\n    \"alert-circle\": {\n      \"codepoint\": 61715,\n      \"source\": \"fixedSvg/alert-circle.svg\"\n    },\n    \"alert-circle-outline\": {\n      \"codepoint\": 61716,\n      \"source\": \"fixedSvg/alert-circle-outline.svg\"\n    },\n    \"alert-circle-sharp\": {\n      \"codepoint\": 61717,\n      \"source\": \"fixedSvg/alert-circle-sharp.svg\"\n    },\n    \"alert-outline\": {\n      \"codepoint\": 61718,\n      \"source\": \"fixedSvg/alert-outline.svg\"\n    },\n    \"alert-sharp\": {\n      \"codepoint\": 61719,\n      \"source\": \"fixedSvg/alert-sharp.svg\"\n    },\n    \"american-football\": {\n      \"codepoint\": 61720,\n      \"source\": \"fixedSvg/american-football.svg\"\n    },\n    \"american-football-outline\": {\n      \"codepoint\": 61721,\n      \"source\": \"fixedSvg/american-football-outline.svg\"\n    },\n    \"american-football-sharp\": {\n      \"codepoint\": 61722,\n      \"source\": \"fixedSvg/american-football-sharp.svg\"\n    },\n    \"analytics\": {\n      \"codepoint\": 61723,\n      \"source\": \"fixedSvg/analytics.svg\"\n    },\n    \"analytics-outline\": {\n      \"codepoint\": 61724,\n      \"source\": \"fixedSvg/analytics-outline.svg\"\n    },\n    \"analytics-sharp\": {\n      \"codepoint\": 61725,\n      \"source\": \"fixedSvg/analytics-sharp.svg\"\n    },\n    \"aperture\": {\n      \"codepoint\": 61726,\n      \"source\": \"fixedSvg/aperture.svg\"\n    },\n    \"aperture-outline\": {\n      \"codepoint\": 61727,\n      \"source\": \"fixedSvg/aperture-outline.svg\"\n    },\n    \"aperture-sharp\": {\n      \"codepoint\": 61728,\n      \"source\": \"fixedSvg/aperture-sharp.svg\"\n    },\n    \"apps\": {\n      \"codepoint\": 61729,\n      \"source\": \"fixedSvg/apps.svg\"\n    },\n    \"apps-outline\": {\n      \"codepoint\": 61730,\n      \"source\": \"fixedSvg/apps-outline.svg\"\n    },\n    \"apps-sharp\": {\n      \"codepoint\": 61731,\n      \"source\": \"fixedSvg/apps-sharp.svg\"\n    },\n    \"archive\": {\n      \"codepoint\": 61732,\n      \"source\": \"fixedSvg/archive.svg\"\n    },\n    \"archive-outline\": {\n      \"codepoint\": 61733,\n      \"source\": \"fixedSvg/archive-outline.svg\"\n    },\n    \"archive-sharp\": {\n      \"codepoint\": 61734,\n      \"source\": \"fixedSvg/archive-sharp.svg\"\n    },\n    \"arrow-back\": {\n      \"codepoint\": 61735,\n      \"source\": \"fixedSvg/arrow-back.svg\"\n    },\n    \"arrow-back-circle\": {\n      \"codepoint\": 61736,\n      \"source\": \"fixedSvg/arrow-back-circle.svg\"\n    },\n    \"arrow-back-circle-outline\": {\n      \"codepoint\": 61737,\n      \"source\": \"fixedSvg/arrow-back-circle-outline.svg\"\n    },\n    \"arrow-back-circle-sharp\": {\n      \"codepoint\": 61738,\n      \"source\": \"fixedSvg/arrow-back-circle-sharp.svg\"\n    },\n    \"arrow-back-outline\": {\n      \"codepoint\": 61739,\n      \"source\": \"fixedSvg/arrow-back-outline.svg\"\n    },\n    \"arrow-back-sharp\": {\n      \"codepoint\": 61740,\n      \"source\": \"fixedSvg/arrow-back-sharp.svg\"\n    },\n    \"arrow-down\": {\n      \"codepoint\": 61741,\n      \"source\": \"fixedSvg/arrow-down.svg\"\n    },\n    \"arrow-down-circle\": {\n      \"codepoint\": 61742,\n      \"source\": \"fixedSvg/arrow-down-circle.svg\"\n    },\n    \"arrow-down-circle-outline\": {\n      \"codepoint\": 61743,\n      \"source\": \"fixedSvg/arrow-down-circle-outline.svg\"\n    },\n    \"arrow-down-circle-sharp\": {\n      \"codepoint\": 61744,\n      \"source\": \"fixedSvg/arrow-down-circle-sharp.svg\"\n    },\n    \"arrow-down-left-box\": {\n      \"codepoint\": 63034,\n      \"source\": \"fixedSvg/arrow-down-left-box.svg\"\n    },\n    \"arrow-down-left-box-outline\": {\n      \"codepoint\": 63035,\n      \"source\": \"fixedSvg/arrow-down-left-box-outline.svg\"\n    },\n    \"arrow-down-left-box-sharp\": {\n      \"codepoint\": 63036,\n      \"source\": \"fixedSvg/arrow-down-left-box-sharp.svg\"\n    },\n    \"arrow-down-outline\": {\n      \"codepoint\": 61745,\n      \"source\": \"fixedSvg/arrow-down-outline.svg\"\n    },\n    \"arrow-down-right-box\": {\n      \"codepoint\": 63037,\n      \"source\": \"fixedSvg/arrow-down-right-box.svg\"\n    },\n    \"arrow-down-right-box-outline\": {\n      \"codepoint\": 63038,\n      \"source\": \"fixedSvg/arrow-down-right-box-outline.svg\"\n    },\n    \"arrow-down-right-box-sharp\": {\n      \"codepoint\": 63039,\n      \"source\": \"fixedSvg/arrow-down-right-box-sharp.svg\"\n    },\n    \"arrow-down-sharp\": {\n      \"codepoint\": 61746,\n      \"source\": \"fixedSvg/arrow-down-sharp.svg\"\n    },\n    \"arrow-forward\": {\n      \"codepoint\": 61747,\n      \"source\": \"fixedSvg/arrow-forward.svg\"\n    },\n    \"arrow-forward-circle\": {\n      \"codepoint\": 61748,\n      \"source\": \"fixedSvg/arrow-forward-circle.svg\"\n    },\n    \"arrow-forward-circle-outline\": {\n      \"codepoint\": 61749,\n      \"source\": \"fixedSvg/arrow-forward-circle-outline.svg\"\n    },\n    \"arrow-forward-circle-sharp\": {\n      \"codepoint\": 61750,\n      \"source\": \"fixedSvg/arrow-forward-circle-sharp.svg\"\n    },\n    \"arrow-forward-outline\": {\n      \"codepoint\": 61751,\n      \"source\": \"fixedSvg/arrow-forward-outline.svg\"\n    },\n    \"arrow-forward-sharp\": {\n      \"codepoint\": 61752,\n      \"source\": \"fixedSvg/arrow-forward-sharp.svg\"\n    },\n    \"arrow-redo\": {\n      \"codepoint\": 61753,\n      \"source\": \"fixedSvg/arrow-redo.svg\"\n    },\n    \"arrow-redo-circle\": {\n      \"codepoint\": 61754,\n      \"source\": \"fixedSvg/arrow-redo-circle.svg\"\n    },\n    \"arrow-redo-circle-outline\": {\n      \"codepoint\": 61755,\n      \"source\": \"fixedSvg/arrow-redo-circle-outline.svg\"\n    },\n    \"arrow-redo-circle-sharp\": {\n      \"codepoint\": 61756,\n      \"source\": \"fixedSvg/arrow-redo-circle-sharp.svg\"\n    },\n    \"arrow-redo-outline\": {\n      \"codepoint\": 61757,\n      \"source\": \"fixedSvg/arrow-redo-outline.svg\"\n    },\n    \"arrow-redo-sharp\": {\n      \"codepoint\": 61758,\n      \"source\": \"fixedSvg/arrow-redo-sharp.svg\"\n    },\n    \"arrow-undo\": {\n      \"codepoint\": 61759,\n      \"source\": \"fixedSvg/arrow-undo.svg\"\n    },\n    \"arrow-undo-circle\": {\n      \"codepoint\": 61760,\n      \"source\": \"fixedSvg/arrow-undo-circle.svg\"\n    },\n    \"arrow-undo-circle-outline\": {\n      \"codepoint\": 61761,\n      \"source\": \"fixedSvg/arrow-undo-circle-outline.svg\"\n    },\n    \"arrow-undo-circle-sharp\": {\n      \"codepoint\": 61762,\n      \"source\": \"fixedSvg/arrow-undo-circle-sharp.svg\"\n    },\n    \"arrow-undo-outline\": {\n      \"codepoint\": 61763,\n      \"source\": \"fixedSvg/arrow-undo-outline.svg\"\n    },\n    \"arrow-undo-sharp\": {\n      \"codepoint\": 61764,\n      \"source\": \"fixedSvg/arrow-undo-sharp.svg\"\n    },\n    \"arrow-up\": {\n      \"codepoint\": 61765,\n      \"source\": \"fixedSvg/arrow-up.svg\"\n    },\n    \"arrow-up-circle\": {\n      \"codepoint\": 61766,\n      \"source\": \"fixedSvg/arrow-up-circle.svg\"\n    },\n    \"arrow-up-circle-outline\": {\n      \"codepoint\": 61767,\n      \"source\": \"fixedSvg/arrow-up-circle-outline.svg\"\n    },\n    \"arrow-up-circle-sharp\": {\n      \"codepoint\": 61768,\n      \"source\": \"fixedSvg/arrow-up-circle-sharp.svg\"\n    },\n    \"arrow-up-left-box\": {\n      \"codepoint\": 63040,\n      \"source\": \"fixedSvg/arrow-up-left-box.svg\"\n    },\n    \"arrow-up-left-box-outline\": {\n      \"codepoint\": 63041,\n      \"source\": \"fixedSvg/arrow-up-left-box-outline.svg\"\n    },\n    \"arrow-up-left-box-sharp\": {\n      \"codepoint\": 63042,\n      \"source\": \"fixedSvg/arrow-up-left-box-sharp.svg\"\n    },\n    \"arrow-up-outline\": {\n      \"codepoint\": 61769,\n      \"source\": \"fixedSvg/arrow-up-outline.svg\"\n    },\n    \"arrow-up-right-box\": {\n      \"codepoint\": 63043,\n      \"source\": \"fixedSvg/arrow-up-right-box.svg\"\n    },\n    \"arrow-up-right-box-outline\": {\n      \"codepoint\": 63044,\n      \"source\": \"fixedSvg/arrow-up-right-box-outline.svg\"\n    },\n    \"arrow-up-right-box-sharp\": {\n      \"codepoint\": 63045,\n      \"source\": \"fixedSvg/arrow-up-right-box-sharp.svg\"\n    },\n    \"arrow-up-sharp\": {\n      \"codepoint\": 61770,\n      \"source\": \"fixedSvg/arrow-up-sharp.svg\"\n    },\n    \"at\": {\n      \"codepoint\": 61771,\n      \"source\": \"fixedSvg/at.svg\"\n    },\n    \"at-circle\": {\n      \"codepoint\": 61772,\n      \"source\": \"fixedSvg/at-circle.svg\"\n    },\n    \"at-circle-outline\": {\n      \"codepoint\": 61773,\n      \"source\": \"fixedSvg/at-circle-outline.svg\"\n    },\n    \"at-circle-sharp\": {\n      \"codepoint\": 61774,\n      \"source\": \"fixedSvg/at-circle-sharp.svg\"\n    },\n    \"at-outline\": {\n      \"codepoint\": 61775,\n      \"source\": \"fixedSvg/at-outline.svg\"\n    },\n    \"at-sharp\": {\n      \"codepoint\": 61776,\n      \"source\": \"fixedSvg/at-sharp.svg\"\n    },\n    \"attach\": {\n      \"codepoint\": 61777,\n      \"source\": \"fixedSvg/attach.svg\"\n    },\n    \"attach-outline\": {\n      \"codepoint\": 61778,\n      \"source\": \"fixedSvg/attach-outline.svg\"\n    },\n    \"attach-sharp\": {\n      \"codepoint\": 61779,\n      \"source\": \"fixedSvg/attach-sharp.svg\"\n    },\n    \"backspace\": {\n      \"codepoint\": 61780,\n      \"source\": \"fixedSvg/backspace.svg\"\n    },\n    \"backspace-outline\": {\n      \"codepoint\": 61781,\n      \"source\": \"fixedSvg/backspace-outline.svg\"\n    },\n    \"backspace-sharp\": {\n      \"codepoint\": 61782,\n      \"source\": \"fixedSvg/backspace-sharp.svg\"\n    },\n    \"bag\": {\n      \"codepoint\": 61783,\n      \"source\": \"fixedSvg/bag.svg\"\n    },\n    \"bag-add\": {\n      \"codepoint\": 61784,\n      \"source\": \"fixedSvg/bag-add.svg\"\n    },\n    \"bag-add-outline\": {\n      \"codepoint\": 61785,\n      \"source\": \"fixedSvg/bag-add-outline.svg\"\n    },\n    \"bag-add-sharp\": {\n      \"codepoint\": 61786,\n      \"source\": \"fixedSvg/bag-add-sharp.svg\"\n    },\n    \"bag-check\": {\n      \"codepoint\": 61787,\n      \"source\": \"fixedSvg/bag-check.svg\"\n    },\n    \"bag-check-outline\": {\n      \"codepoint\": 61788,\n      \"source\": \"fixedSvg/bag-check-outline.svg\"\n    },\n    \"bag-check-sharp\": {\n      \"codepoint\": 61789,\n      \"source\": \"fixedSvg/bag-check-sharp.svg\"\n    },\n    \"bag-handle\": {\n      \"codepoint\": 61790,\n      \"source\": \"fixedSvg/bag-handle.svg\"\n    },\n    \"bag-handle-outline\": {\n      \"codepoint\": 61791,\n      \"source\": \"fixedSvg/bag-handle-outline.svg\"\n    },\n    \"bag-handle-sharp\": {\n      \"codepoint\": 61792,\n      \"source\": \"fixedSvg/bag-handle-sharp.svg\"\n    },\n    \"bag-outline\": {\n      \"codepoint\": 61793,\n      \"source\": \"fixedSvg/bag-outline.svg\"\n    },\n    \"bag-remove\": {\n      \"codepoint\": 61794,\n      \"source\": \"fixedSvg/bag-remove.svg\"\n    },\n    \"bag-remove-outline\": {\n      \"codepoint\": 61795,\n      \"source\": \"fixedSvg/bag-remove-outline.svg\"\n    },\n    \"bag-remove-sharp\": {\n      \"codepoint\": 61796,\n      \"source\": \"fixedSvg/bag-remove-sharp.svg\"\n    },\n    \"bag-sharp\": {\n      \"codepoint\": 61797,\n      \"source\": \"fixedSvg/bag-sharp.svg\"\n    },\n    \"balloon\": {\n      \"codepoint\": 61798,\n      \"source\": \"fixedSvg/balloon.svg\"\n    },\n    \"balloon-outline\": {\n      \"codepoint\": 61799,\n      \"source\": \"fixedSvg/balloon-outline.svg\"\n    },\n    \"balloon-sharp\": {\n      \"codepoint\": 61800,\n      \"source\": \"fixedSvg/balloon-sharp.svg\"\n    },\n    \"ban\": {\n      \"codepoint\": 61801,\n      \"source\": \"fixedSvg/ban.svg\"\n    },\n    \"ban-outline\": {\n      \"codepoint\": 61802,\n      \"source\": \"fixedSvg/ban-outline.svg\"\n    },\n    \"ban-sharp\": {\n      \"codepoint\": 61803,\n      \"source\": \"fixedSvg/ban-sharp.svg\"\n    },\n    \"bandage\": {\n      \"codepoint\": 61804,\n      \"source\": \"fixedSvg/bandage.svg\"\n    },\n    \"bandage-outline\": {\n      \"codepoint\": 61805,\n      \"source\": \"fixedSvg/bandage-outline.svg\"\n    },\n    \"bandage-sharp\": {\n      \"codepoint\": 61806,\n      \"source\": \"fixedSvg/bandage-sharp.svg\"\n    },\n    \"bar-chart\": {\n      \"codepoint\": 61807,\n      \"source\": \"fixedSvg/bar-chart.svg\"\n    },\n    \"bar-chart-outline\": {\n      \"codepoint\": 61808,\n      \"source\": \"fixedSvg/bar-chart-outline.svg\"\n    },\n    \"bar-chart-sharp\": {\n      \"codepoint\": 61809,\n      \"source\": \"fixedSvg/bar-chart-sharp.svg\"\n    },\n    \"barbell\": {\n      \"codepoint\": 61810,\n      \"source\": \"fixedSvg/barbell.svg\"\n    },\n    \"barbell-outline\": {\n      \"codepoint\": 61811,\n      \"source\": \"fixedSvg/barbell-outline.svg\"\n    },\n    \"barbell-sharp\": {\n      \"codepoint\": 61812,\n      \"source\": \"fixedSvg/barbell-sharp.svg\"\n    },\n    \"barcode\": {\n      \"codepoint\": 61813,\n      \"source\": \"fixedSvg/barcode.svg\"\n    },\n    \"barcode-outline\": {\n      \"codepoint\": 61814,\n      \"source\": \"fixedSvg/barcode-outline.svg\"\n    },\n    \"barcode-sharp\": {\n      \"codepoint\": 61815,\n      \"source\": \"fixedSvg/barcode-sharp.svg\"\n    },\n    \"baseball\": {\n      \"codepoint\": 61816,\n      \"source\": \"fixedSvg/baseball.svg\"\n    },\n    \"baseball-outline\": {\n      \"codepoint\": 61817,\n      \"source\": \"fixedSvg/baseball-outline.svg\"\n    },\n    \"baseball-sharp\": {\n      \"codepoint\": 61818,\n      \"source\": \"fixedSvg/baseball-sharp.svg\"\n    },\n    \"basket\": {\n      \"codepoint\": 61819,\n      \"source\": \"fixedSvg/basket.svg\"\n    },\n    \"basket-outline\": {\n      \"codepoint\": 61820,\n      \"source\": \"fixedSvg/basket-outline.svg\"\n    },\n    \"basket-sharp\": {\n      \"codepoint\": 61821,\n      \"source\": \"fixedSvg/basket-sharp.svg\"\n    },\n    \"basketball\": {\n      \"codepoint\": 61822,\n      \"source\": \"fixedSvg/basketball.svg\"\n    },\n    \"basketball-outline\": {\n      \"codepoint\": 61823,\n      \"source\": \"fixedSvg/basketball-outline.svg\"\n    },\n    \"basketball-sharp\": {\n      \"codepoint\": 61824,\n      \"source\": \"fixedSvg/basketball-sharp.svg\"\n    },\n    \"battery-charging\": {\n      \"codepoint\": 61825,\n      \"source\": \"fixedSvg/battery-charging.svg\"\n    },\n    \"battery-charging-outline\": {\n      \"codepoint\": 61826,\n      \"source\": \"fixedSvg/battery-charging-outline.svg\"\n    },\n    \"battery-charging-sharp\": {\n      \"codepoint\": 61827,\n      \"source\": \"fixedSvg/battery-charging-sharp.svg\"\n    },\n    \"battery-dead\": {\n      \"codepoint\": 61828,\n      \"source\": \"fixedSvg/battery-dead.svg\"\n    },\n    \"battery-dead-outline\": {\n      \"codepoint\": 61829,\n      \"source\": \"fixedSvg/battery-dead-outline.svg\"\n    },\n    \"battery-dead-sharp\": {\n      \"codepoint\": 61830,\n      \"source\": \"fixedSvg/battery-dead-sharp.svg\"\n    },\n    \"battery-full\": {\n      \"codepoint\": 61831,\n      \"source\": \"fixedSvg/battery-full.svg\"\n    },\n    \"battery-full-outline\": {\n      \"codepoint\": 61832,\n      \"source\": \"fixedSvg/battery-full-outline.svg\"\n    },\n    \"battery-full-sharp\": {\n      \"codepoint\": 61833,\n      \"source\": \"fixedSvg/battery-full-sharp.svg\"\n    },\n    \"battery-half\": {\n      \"codepoint\": 61834,\n      \"source\": \"fixedSvg/battery-half.svg\"\n    },\n    \"battery-half-outline\": {\n      \"codepoint\": 61835,\n      \"source\": \"fixedSvg/battery-half-outline.svg\"\n    },\n    \"battery-half-sharp\": {\n      \"codepoint\": 61836,\n      \"source\": \"fixedSvg/battery-half-sharp.svg\"\n    },\n    \"beaker\": {\n      \"codepoint\": 61837,\n      \"source\": \"fixedSvg/beaker.svg\"\n    },\n    \"beaker-outline\": {\n      \"codepoint\": 61838,\n      \"source\": \"fixedSvg/beaker-outline.svg\"\n    },\n    \"beaker-sharp\": {\n      \"codepoint\": 61839,\n      \"source\": \"fixedSvg/beaker-sharp.svg\"\n    },\n    \"bed\": {\n      \"codepoint\": 61840,\n      \"source\": \"fixedSvg/bed.svg\"\n    },\n    \"bed-outline\": {\n      \"codepoint\": 61841,\n      \"source\": \"fixedSvg/bed-outline.svg\"\n    },\n    \"bed-sharp\": {\n      \"codepoint\": 61842,\n      \"source\": \"fixedSvg/bed-sharp.svg\"\n    },\n    \"beer\": {\n      \"codepoint\": 61843,\n      \"source\": \"fixedSvg/beer.svg\"\n    },\n    \"beer-outline\": {\n      \"codepoint\": 61844,\n      \"source\": \"fixedSvg/beer-outline.svg\"\n    },\n    \"beer-sharp\": {\n      \"codepoint\": 61845,\n      \"source\": \"fixedSvg/beer-sharp.svg\"\n    },\n    \"bicycle\": {\n      \"codepoint\": 61846,\n      \"source\": \"fixedSvg/bicycle.svg\"\n    },\n    \"bicycle-outline\": {\n      \"codepoint\": 61847,\n      \"source\": \"fixedSvg/bicycle-outline.svg\"\n    },\n    \"bicycle-sharp\": {\n      \"codepoint\": 61848,\n      \"source\": \"fixedSvg/bicycle-sharp.svg\"\n    },\n    \"binoculars\": {\n      \"codepoint\": 63046,\n      \"source\": \"fixedSvg/binoculars.svg\"\n    },\n    \"binoculars-outline\": {\n      \"codepoint\": 63047,\n      \"source\": \"fixedSvg/binoculars-outline.svg\"\n    },\n    \"binoculars-sharp\": {\n      \"codepoint\": 63048,\n      \"source\": \"fixedSvg/binoculars-sharp.svg\"\n    },\n    \"bluetooth\": {\n      \"codepoint\": 61849,\n      \"source\": \"fixedSvg/bluetooth.svg\"\n    },\n    \"bluetooth-outline\": {\n      \"codepoint\": 61850,\n      \"source\": \"fixedSvg/bluetooth-outline.svg\"\n    },\n    \"bluetooth-sharp\": {\n      \"codepoint\": 61851,\n      \"source\": \"fixedSvg/bluetooth-sharp.svg\"\n    },\n    \"boat\": {\n      \"codepoint\": 61852,\n      \"source\": \"fixedSvg/boat.svg\"\n    },\n    \"boat-outline\": {\n      \"codepoint\": 61853,\n      \"source\": \"fixedSvg/boat-outline.svg\"\n    },\n    \"boat-sharp\": {\n      \"codepoint\": 61854,\n      \"source\": \"fixedSvg/boat-sharp.svg\"\n    },\n    \"body\": {\n      \"codepoint\": 61855,\n      \"source\": \"fixedSvg/body.svg\"\n    },\n    \"body-outline\": {\n      \"codepoint\": 61856,\n      \"source\": \"fixedSvg/body-outline.svg\"\n    },\n    \"body-sharp\": {\n      \"codepoint\": 61857,\n      \"source\": \"fixedSvg/body-sharp.svg\"\n    },\n    \"bonfire\": {\n      \"codepoint\": 61858,\n      \"source\": \"fixedSvg/bonfire.svg\"\n    },\n    \"bonfire-outline\": {\n      \"codepoint\": 61859,\n      \"source\": \"fixedSvg/bonfire-outline.svg\"\n    },\n    \"bonfire-sharp\": {\n      \"codepoint\": 61860,\n      \"source\": \"fixedSvg/bonfire-sharp.svg\"\n    },\n    \"book\": {\n      \"codepoint\": 61861,\n      \"source\": \"fixedSvg/book.svg\"\n    },\n    \"book-outline\": {\n      \"codepoint\": 61862,\n      \"source\": \"fixedSvg/book-outline.svg\"\n    },\n    \"book-sharp\": {\n      \"codepoint\": 61863,\n      \"source\": \"fixedSvg/book-sharp.svg\"\n    },\n    \"bookmark\": {\n      \"codepoint\": 61864,\n      \"source\": \"fixedSvg/bookmark.svg\"\n    },\n    \"bookmark-outline\": {\n      \"codepoint\": 61865,\n      \"source\": \"fixedSvg/bookmark-outline.svg\"\n    },\n    \"bookmark-sharp\": {\n      \"codepoint\": 61866,\n      \"source\": \"fixedSvg/bookmark-sharp.svg\"\n    },\n    \"bookmarks\": {\n      \"codepoint\": 61867,\n      \"source\": \"fixedSvg/bookmarks.svg\"\n    },\n    \"bookmarks-outline\": {\n      \"codepoint\": 61868,\n      \"source\": \"fixedSvg/bookmarks-outline.svg\"\n    },\n    \"bookmarks-sharp\": {\n      \"codepoint\": 61869,\n      \"source\": \"fixedSvg/bookmarks-sharp.svg\"\n    },\n    \"bowling-ball\": {\n      \"codepoint\": 61870,\n      \"source\": \"fixedSvg/bowling-ball.svg\"\n    },\n    \"bowling-ball-outline\": {\n      \"codepoint\": 61871,\n      \"source\": \"fixedSvg/bowling-ball-outline.svg\"\n    },\n    \"bowling-ball-sharp\": {\n      \"codepoint\": 61872,\n      \"source\": \"fixedSvg/bowling-ball-sharp.svg\"\n    },\n    \"briefcase\": {\n      \"codepoint\": 61873,\n      \"source\": \"fixedSvg/briefcase.svg\"\n    },\n    \"briefcase-outline\": {\n      \"codepoint\": 61874,\n      \"source\": \"fixedSvg/briefcase-outline.svg\"\n    },\n    \"briefcase-sharp\": {\n      \"codepoint\": 61875,\n      \"source\": \"fixedSvg/briefcase-sharp.svg\"\n    },\n    \"browsers\": {\n      \"codepoint\": 61876,\n      \"source\": \"fixedSvg/browsers.svg\"\n    },\n    \"browsers-outline\": {\n      \"codepoint\": 61877,\n      \"source\": \"fixedSvg/browsers-outline.svg\"\n    },\n    \"browsers-sharp\": {\n      \"codepoint\": 61878,\n      \"source\": \"fixedSvg/browsers-sharp.svg\"\n    },\n    \"brush\": {\n      \"codepoint\": 61879,\n      \"source\": \"fixedSvg/brush.svg\"\n    },\n    \"brush-outline\": {\n      \"codepoint\": 61880,\n      \"source\": \"fixedSvg/brush-outline.svg\"\n    },\n    \"brush-sharp\": {\n      \"codepoint\": 61881,\n      \"source\": \"fixedSvg/brush-sharp.svg\"\n    },\n    \"bug\": {\n      \"codepoint\": 61882,\n      \"source\": \"fixedSvg/bug.svg\"\n    },\n    \"bug-outline\": {\n      \"codepoint\": 61883,\n      \"source\": \"fixedSvg/bug-outline.svg\"\n    },\n    \"bug-sharp\": {\n      \"codepoint\": 61884,\n      \"source\": \"fixedSvg/bug-sharp.svg\"\n    },\n    \"build\": {\n      \"codepoint\": 61885,\n      \"source\": \"fixedSvg/build.svg\"\n    },\n    \"build-outline\": {\n      \"codepoint\": 61886,\n      \"source\": \"fixedSvg/build-outline.svg\"\n    },\n    \"build-sharp\": {\n      \"codepoint\": 61887,\n      \"source\": \"fixedSvg/build-sharp.svg\"\n    },\n    \"bulb\": {\n      \"codepoint\": 61888,\n      \"source\": \"fixedSvg/bulb.svg\"\n    },\n    \"bulb-outline\": {\n      \"codepoint\": 61889,\n      \"source\": \"fixedSvg/bulb-outline.svg\"\n    },\n    \"bulb-sharp\": {\n      \"codepoint\": 61890,\n      \"source\": \"fixedSvg/bulb-sharp.svg\"\n    },\n    \"bus\": {\n      \"codepoint\": 61891,\n      \"source\": \"fixedSvg/bus.svg\"\n    },\n    \"bus-outline\": {\n      \"codepoint\": 61892,\n      \"source\": \"fixedSvg/bus-outline.svg\"\n    },\n    \"bus-sharp\": {\n      \"codepoint\": 61893,\n      \"source\": \"fixedSvg/bus-sharp.svg\"\n    },\n    \"business\": {\n      \"codepoint\": 61894,\n      \"source\": \"fixedSvg/business.svg\"\n    },\n    \"business-outline\": {\n      \"codepoint\": 61895,\n      \"source\": \"fixedSvg/business-outline.svg\"\n    },\n    \"business-sharp\": {\n      \"codepoint\": 61896,\n      \"source\": \"fixedSvg/business-sharp.svg\"\n    },\n    \"cafe\": {\n      \"codepoint\": 61897,\n      \"source\": \"fixedSvg/cafe.svg\"\n    },\n    \"cafe-outline\": {\n      \"codepoint\": 61898,\n      \"source\": \"fixedSvg/cafe-outline.svg\"\n    },\n    \"cafe-sharp\": {\n      \"codepoint\": 61899,\n      \"source\": \"fixedSvg/cafe-sharp.svg\"\n    },\n    \"calculator\": {\n      \"codepoint\": 61900,\n      \"source\": \"fixedSvg/calculator.svg\"\n    },\n    \"calculator-outline\": {\n      \"codepoint\": 61901,\n      \"source\": \"fixedSvg/calculator-outline.svg\"\n    },\n    \"calculator-sharp\": {\n      \"codepoint\": 61902,\n      \"source\": \"fixedSvg/calculator-sharp.svg\"\n    },\n    \"calendar\": {\n      \"codepoint\": 61903,\n      \"source\": \"fixedSvg/calendar.svg\"\n    },\n    \"calendar-clear\": {\n      \"codepoint\": 61904,\n      \"source\": \"fixedSvg/calendar-clear.svg\"\n    },\n    \"calendar-clear-outline\": {\n      \"codepoint\": 61905,\n      \"source\": \"fixedSvg/calendar-clear-outline.svg\"\n    },\n    \"calendar-clear-sharp\": {\n      \"codepoint\": 61906,\n      \"source\": \"fixedSvg/calendar-clear-sharp.svg\"\n    },\n    \"calendar-number\": {\n      \"codepoint\": 61907,\n      \"source\": \"fixedSvg/calendar-number.svg\"\n    },\n    \"calendar-number-outline\": {\n      \"codepoint\": 61908,\n      \"source\": \"fixedSvg/calendar-number-outline.svg\"\n    },\n    \"calendar-number-sharp\": {\n      \"codepoint\": 61909,\n      \"source\": \"fixedSvg/calendar-number-sharp.svg\"\n    },\n    \"calendar-outline\": {\n      \"codepoint\": 61910,\n      \"source\": \"fixedSvg/calendar-outline.svg\"\n    },\n    \"calendar-sharp\": {\n      \"codepoint\": 61911,\n      \"source\": \"fixedSvg/calendar-sharp.svg\"\n    },\n    \"call\": {\n      \"codepoint\": 61912,\n      \"source\": \"fixedSvg/call.svg\"\n    },\n    \"call-outline\": {\n      \"codepoint\": 61913,\n      \"source\": \"fixedSvg/call-outline.svg\"\n    },\n    \"call-sharp\": {\n      \"codepoint\": 61914,\n      \"source\": \"fixedSvg/call-sharp.svg\"\n    },\n    \"camera\": {\n      \"codepoint\": 61915,\n      \"source\": \"fixedSvg/camera.svg\"\n    },\n    \"camera-outline\": {\n      \"codepoint\": 61916,\n      \"source\": \"fixedSvg/camera-outline.svg\"\n    },\n    \"camera-reverse\": {\n      \"codepoint\": 61917,\n      \"source\": \"fixedSvg/camera-reverse.svg\"\n    },\n    \"camera-reverse-outline\": {\n      \"codepoint\": 61918,\n      \"source\": \"fixedSvg/camera-reverse-outline.svg\"\n    },\n    \"camera-reverse-sharp\": {\n      \"codepoint\": 61919,\n      \"source\": \"fixedSvg/camera-reverse-sharp.svg\"\n    },\n    \"camera-sharp\": {\n      \"codepoint\": 61920,\n      \"source\": \"fixedSvg/camera-sharp.svg\"\n    },\n    \"car\": {\n      \"codepoint\": 61921,\n      \"source\": \"fixedSvg/car.svg\"\n    },\n    \"car-outline\": {\n      \"codepoint\": 61922,\n      \"source\": \"fixedSvg/car-outline.svg\"\n    },\n    \"car-sharp\": {\n      \"codepoint\": 61923,\n      \"source\": \"fixedSvg/car-sharp.svg\"\n    },\n    \"car-sport\": {\n      \"codepoint\": 61924,\n      \"source\": \"fixedSvg/car-sport.svg\"\n    },\n    \"car-sport-outline\": {\n      \"codepoint\": 61925,\n      \"source\": \"fixedSvg/car-sport-outline.svg\"\n    },\n    \"car-sport-sharp\": {\n      \"codepoint\": 61926,\n      \"source\": \"fixedSvg/car-sport-sharp.svg\"\n    },\n    \"card\": {\n      \"codepoint\": 61927,\n      \"source\": \"fixedSvg/card.svg\"\n    },\n    \"card-outline\": {\n      \"codepoint\": 61928,\n      \"source\": \"fixedSvg/card-outline.svg\"\n    },\n    \"card-sharp\": {\n      \"codepoint\": 61929,\n      \"source\": \"fixedSvg/card-sharp.svg\"\n    },\n    \"caret-back\": {\n      \"codepoint\": 61930,\n      \"source\": \"fixedSvg/caret-back.svg\"\n    },\n    \"caret-back-circle\": {\n      \"codepoint\": 61931,\n      \"source\": \"fixedSvg/caret-back-circle.svg\"\n    },\n    \"caret-back-circle-outline\": {\n      \"codepoint\": 61932,\n      \"source\": \"fixedSvg/caret-back-circle-outline.svg\"\n    },\n    \"caret-back-circle-sharp\": {\n      \"codepoint\": 61933,\n      \"source\": \"fixedSvg/caret-back-circle-sharp.svg\"\n    },\n    \"caret-back-outline\": {\n      \"codepoint\": 61934,\n      \"source\": \"fixedSvg/caret-back-outline.svg\"\n    },\n    \"caret-back-sharp\": {\n      \"codepoint\": 61935,\n      \"source\": \"fixedSvg/caret-back-sharp.svg\"\n    },\n    \"caret-down\": {\n      \"codepoint\": 61936,\n      \"source\": \"fixedSvg/caret-down.svg\"\n    },\n    \"caret-down-circle\": {\n      \"codepoint\": 61937,\n      \"source\": \"fixedSvg/caret-down-circle.svg\"\n    },\n    \"caret-down-circle-outline\": {\n      \"codepoint\": 61938,\n      \"source\": \"fixedSvg/caret-down-circle-outline.svg\"\n    },\n    \"caret-down-circle-sharp\": {\n      \"codepoint\": 61939,\n      \"source\": \"fixedSvg/caret-down-circle-sharp.svg\"\n    },\n    \"caret-down-outline\": {\n      \"codepoint\": 61940,\n      \"source\": \"fixedSvg/caret-down-outline.svg\"\n    },\n    \"caret-down-sharp\": {\n      \"codepoint\": 61941,\n      \"source\": \"fixedSvg/caret-down-sharp.svg\"\n    },\n    \"caret-forward\": {\n      \"codepoint\": 61942,\n      \"source\": \"fixedSvg/caret-forward.svg\"\n    },\n    \"caret-forward-circle\": {\n      \"codepoint\": 61943,\n      \"source\": \"fixedSvg/caret-forward-circle.svg\"\n    },\n    \"caret-forward-circle-outline\": {\n      \"codepoint\": 61944,\n      \"source\": \"fixedSvg/caret-forward-circle-outline.svg\"\n    },\n    \"caret-forward-circle-sharp\": {\n      \"codepoint\": 61945,\n      \"source\": \"fixedSvg/caret-forward-circle-sharp.svg\"\n    },\n    \"caret-forward-outline\": {\n      \"codepoint\": 61946,\n      \"source\": \"fixedSvg/caret-forward-outline.svg\"\n    },\n    \"caret-forward-sharp\": {\n      \"codepoint\": 61947,\n      \"source\": \"fixedSvg/caret-forward-sharp.svg\"\n    },\n    \"caret-up\": {\n      \"codepoint\": 61948,\n      \"source\": \"fixedSvg/caret-up.svg\"\n    },\n    \"caret-up-circle\": {\n      \"codepoint\": 61949,\n      \"source\": \"fixedSvg/caret-up-circle.svg\"\n    },\n    \"caret-up-circle-outline\": {\n      \"codepoint\": 61950,\n      \"source\": \"fixedSvg/caret-up-circle-outline.svg\"\n    },\n    \"caret-up-circle-sharp\": {\n      \"codepoint\": 61951,\n      \"source\": \"fixedSvg/caret-up-circle-sharp.svg\"\n    },\n    \"caret-up-outline\": {\n      \"codepoint\": 61952,\n      \"source\": \"fixedSvg/caret-up-outline.svg\"\n    },\n    \"caret-up-sharp\": {\n      \"codepoint\": 61953,\n      \"source\": \"fixedSvg/caret-up-sharp.svg\"\n    },\n    \"cart\": {\n      \"codepoint\": 61954,\n      \"source\": \"fixedSvg/cart.svg\"\n    },\n    \"cart-outline\": {\n      \"codepoint\": 61955,\n      \"source\": \"fixedSvg/cart-outline.svg\"\n    },\n    \"cart-sharp\": {\n      \"codepoint\": 61956,\n      \"source\": \"fixedSvg/cart-sharp.svg\"\n    },\n    \"cash\": {\n      \"codepoint\": 61957,\n      \"source\": \"fixedSvg/cash.svg\"\n    },\n    \"cash-outline\": {\n      \"codepoint\": 61958,\n      \"source\": \"fixedSvg/cash-outline.svg\"\n    },\n    \"cash-sharp\": {\n      \"codepoint\": 61959,\n      \"source\": \"fixedSvg/cash-sharp.svg\"\n    },\n    \"cellular\": {\n      \"codepoint\": 61960,\n      \"source\": \"fixedSvg/cellular.svg\"\n    },\n    \"cellular-outline\": {\n      \"codepoint\": 61961,\n      \"source\": \"fixedSvg/cellular-outline.svg\"\n    },\n    \"cellular-sharp\": {\n      \"codepoint\": 61962,\n      \"source\": \"fixedSvg/cellular-sharp.svg\"\n    },\n    \"chatbox\": {\n      \"codepoint\": 61963,\n      \"source\": \"fixedSvg/chatbox.svg\"\n    },\n    \"chatbox-ellipses\": {\n      \"codepoint\": 61964,\n      \"source\": \"fixedSvg/chatbox-ellipses.svg\"\n    },\n    \"chatbox-ellipses-outline\": {\n      \"codepoint\": 61965,\n      \"source\": \"fixedSvg/chatbox-ellipses-outline.svg\"\n    },\n    \"chatbox-ellipses-sharp\": {\n      \"codepoint\": 61966,\n      \"source\": \"fixedSvg/chatbox-ellipses-sharp.svg\"\n    },\n    \"chatbox-outline\": {\n      \"codepoint\": 61967,\n      \"source\": \"fixedSvg/chatbox-outline.svg\"\n    },\n    \"chatbox-sharp\": {\n      \"codepoint\": 61968,\n      \"source\": \"fixedSvg/chatbox-sharp.svg\"\n    },\n    \"chatbubble\": {\n      \"codepoint\": 61969,\n      \"source\": \"fixedSvg/chatbubble.svg\"\n    },\n    \"chatbubble-ellipses\": {\n      \"codepoint\": 61970,\n      \"source\": \"fixedSvg/chatbubble-ellipses.svg\"\n    },\n    \"chatbubble-ellipses-outline\": {\n      \"codepoint\": 61971,\n      \"source\": \"fixedSvg/chatbubble-ellipses-outline.svg\"\n    },\n    \"chatbubble-ellipses-sharp\": {\n      \"codepoint\": 61972,\n      \"source\": \"fixedSvg/chatbubble-ellipses-sharp.svg\"\n    },\n    \"chatbubble-outline\": {\n      \"codepoint\": 61973,\n      \"source\": \"fixedSvg/chatbubble-outline.svg\"\n    },\n    \"chatbubble-sharp\": {\n      \"codepoint\": 61974,\n      \"source\": \"fixedSvg/chatbubble-sharp.svg\"\n    },\n    \"chatbubbles\": {\n      \"codepoint\": 61975,\n      \"source\": \"fixedSvg/chatbubbles.svg\"\n    },\n    \"chatbubbles-outline\": {\n      \"codepoint\": 61976,\n      \"source\": \"fixedSvg/chatbubbles-outline.svg\"\n    },\n    \"chatbubbles-sharp\": {\n      \"codepoint\": 61977,\n      \"source\": \"fixedSvg/chatbubbles-sharp.svg\"\n    },\n    \"checkbox\": {\n      \"codepoint\": 61978,\n      \"source\": \"fixedSvg/checkbox.svg\"\n    },\n    \"checkbox-outline\": {\n      \"codepoint\": 61979,\n      \"source\": \"fixedSvg/checkbox-outline.svg\"\n    },\n    \"checkbox-sharp\": {\n      \"codepoint\": 61980,\n      \"source\": \"fixedSvg/checkbox-sharp.svg\"\n    },\n    \"checkmark\": {\n      \"codepoint\": 61981,\n      \"source\": \"fixedSvg/checkmark.svg\"\n    },\n    \"checkmark-circle\": {\n      \"codepoint\": 61982,\n      \"source\": \"fixedSvg/checkmark-circle.svg\"\n    },\n    \"checkmark-circle-outline\": {\n      \"codepoint\": 61983,\n      \"source\": \"fixedSvg/checkmark-circle-outline.svg\"\n    },\n    \"checkmark-circle-sharp\": {\n      \"codepoint\": 61984,\n      \"source\": \"fixedSvg/checkmark-circle-sharp.svg\"\n    },\n    \"checkmark-done\": {\n      \"codepoint\": 61985,\n      \"source\": \"fixedSvg/checkmark-done.svg\"\n    },\n    \"checkmark-done-circle\": {\n      \"codepoint\": 61986,\n      \"source\": \"fixedSvg/checkmark-done-circle.svg\"\n    },\n    \"checkmark-done-circle-outline\": {\n      \"codepoint\": 61987,\n      \"source\": \"fixedSvg/checkmark-done-circle-outline.svg\"\n    },\n    \"checkmark-done-circle-sharp\": {\n      \"codepoint\": 61988,\n      \"source\": \"fixedSvg/checkmark-done-circle-sharp.svg\"\n    },\n    \"checkmark-done-outline\": {\n      \"codepoint\": 61989,\n      \"source\": \"fixedSvg/checkmark-done-outline.svg\"\n    },\n    \"checkmark-done-sharp\": {\n      \"codepoint\": 61990,\n      \"source\": \"fixedSvg/checkmark-done-sharp.svg\"\n    },\n    \"checkmark-outline\": {\n      \"codepoint\": 61991,\n      \"source\": \"fixedSvg/checkmark-outline.svg\"\n    },\n    \"checkmark-sharp\": {\n      \"codepoint\": 61992,\n      \"source\": \"fixedSvg/checkmark-sharp.svg\"\n    },\n    \"chevron-back\": {\n      \"codepoint\": 61993,\n      \"source\": \"fixedSvg/chevron-back.svg\"\n    },\n    \"chevron-back-circle\": {\n      \"codepoint\": 61994,\n      \"source\": \"fixedSvg/chevron-back-circle.svg\"\n    },\n    \"chevron-back-circle-outline\": {\n      \"codepoint\": 61995,\n      \"source\": \"fixedSvg/chevron-back-circle-outline.svg\"\n    },\n    \"chevron-back-circle-sharp\": {\n      \"codepoint\": 61996,\n      \"source\": \"fixedSvg/chevron-back-circle-sharp.svg\"\n    },\n    \"chevron-back-outline\": {\n      \"codepoint\": 61997,\n      \"source\": \"fixedSvg/chevron-back-outline.svg\"\n    },\n    \"chevron-back-sharp\": {\n      \"codepoint\": 61998,\n      \"source\": \"fixedSvg/chevron-back-sharp.svg\"\n    },\n    \"chevron-collapse\": {\n      \"codepoint\": 61999,\n      \"source\": \"fixedSvg/chevron-collapse.svg\"\n    },\n    \"chevron-collapse-outline\": {\n      \"codepoint\": 62000,\n      \"source\": \"fixedSvg/chevron-collapse-outline.svg\"\n    },\n    \"chevron-collapse-sharp\": {\n      \"codepoint\": 62001,\n      \"source\": \"fixedSvg/chevron-collapse-sharp.svg\"\n    },\n    \"chevron-down\": {\n      \"codepoint\": 62002,\n      \"source\": \"fixedSvg/chevron-down.svg\"\n    },\n    \"chevron-down-circle\": {\n      \"codepoint\": 62003,\n      \"source\": \"fixedSvg/chevron-down-circle.svg\"\n    },\n    \"chevron-down-circle-outline\": {\n      \"codepoint\": 62004,\n      \"source\": \"fixedSvg/chevron-down-circle-outline.svg\"\n    },\n    \"chevron-down-circle-sharp\": {\n      \"codepoint\": 62005,\n      \"source\": \"fixedSvg/chevron-down-circle-sharp.svg\"\n    },\n    \"chevron-down-outline\": {\n      \"codepoint\": 62006,\n      \"source\": \"fixedSvg/chevron-down-outline.svg\"\n    },\n    \"chevron-down-sharp\": {\n      \"codepoint\": 62007,\n      \"source\": \"fixedSvg/chevron-down-sharp.svg\"\n    },\n    \"chevron-expand\": {\n      \"codepoint\": 62008,\n      \"source\": \"fixedSvg/chevron-expand.svg\"\n    },\n    \"chevron-expand-outline\": {\n      \"codepoint\": 62009,\n      \"source\": \"fixedSvg/chevron-expand-outline.svg\"\n    },\n    \"chevron-expand-sharp\": {\n      \"codepoint\": 62010,\n      \"source\": \"fixedSvg/chevron-expand-sharp.svg\"\n    },\n    \"chevron-forward\": {\n      \"codepoint\": 62011,\n      \"source\": \"fixedSvg/chevron-forward.svg\"\n    },\n    \"chevron-forward-circle\": {\n      \"codepoint\": 62012,\n      \"source\": \"fixedSvg/chevron-forward-circle.svg\"\n    },\n    \"chevron-forward-circle-outline\": {\n      \"codepoint\": 62013,\n      \"source\": \"fixedSvg/chevron-forward-circle-outline.svg\"\n    },\n    \"chevron-forward-circle-sharp\": {\n      \"codepoint\": 62014,\n      \"source\": \"fixedSvg/chevron-forward-circle-sharp.svg\"\n    },\n    \"chevron-forward-outline\": {\n      \"codepoint\": 62015,\n      \"source\": \"fixedSvg/chevron-forward-outline.svg\"\n    },\n    \"chevron-forward-sharp\": {\n      \"codepoint\": 62016,\n      \"source\": \"fixedSvg/chevron-forward-sharp.svg\"\n    },\n    \"chevron-up\": {\n      \"codepoint\": 62017,\n      \"source\": \"fixedSvg/chevron-up.svg\"\n    },\n    \"chevron-up-circle\": {\n      \"codepoint\": 62018,\n      \"source\": \"fixedSvg/chevron-up-circle.svg\"\n    },\n    \"chevron-up-circle-outline\": {\n      \"codepoint\": 62019,\n      \"source\": \"fixedSvg/chevron-up-circle-outline.svg\"\n    },\n    \"chevron-up-circle-sharp\": {\n      \"codepoint\": 62020,\n      \"source\": \"fixedSvg/chevron-up-circle-sharp.svg\"\n    },\n    \"chevron-up-outline\": {\n      \"codepoint\": 62021,\n      \"source\": \"fixedSvg/chevron-up-outline.svg\"\n    },\n    \"chevron-up-sharp\": {\n      \"codepoint\": 62022,\n      \"source\": \"fixedSvg/chevron-up-sharp.svg\"\n    },\n    \"clipboard\": {\n      \"codepoint\": 62023,\n      \"source\": \"fixedSvg/clipboard.svg\"\n    },\n    \"clipboard-outline\": {\n      \"codepoint\": 62024,\n      \"source\": \"fixedSvg/clipboard-outline.svg\"\n    },\n    \"clipboard-sharp\": {\n      \"codepoint\": 62025,\n      \"source\": \"fixedSvg/clipboard-sharp.svg\"\n    },\n    \"close\": {\n      \"codepoint\": 62026,\n      \"source\": \"fixedSvg/close.svg\"\n    },\n    \"close-circle\": {\n      \"codepoint\": 62027,\n      \"source\": \"fixedSvg/close-circle.svg\"\n    },\n    \"close-circle-outline\": {\n      \"codepoint\": 62028,\n      \"source\": \"fixedSvg/close-circle-outline.svg\"\n    },\n    \"close-circle-sharp\": {\n      \"codepoint\": 62029,\n      \"source\": \"fixedSvg/close-circle-sharp.svg\"\n    },\n    \"close-outline\": {\n      \"codepoint\": 62030,\n      \"source\": \"fixedSvg/close-outline.svg\"\n    },\n    \"close-sharp\": {\n      \"codepoint\": 62031,\n      \"source\": \"fixedSvg/close-sharp.svg\"\n    },\n    \"cloud\": {\n      \"codepoint\": 62032,\n      \"source\": \"fixedSvg/cloud.svg\"\n    },\n    \"cloud-circle\": {\n      \"codepoint\": 62033,\n      \"source\": \"fixedSvg/cloud-circle.svg\"\n    },\n    \"cloud-circle-outline\": {\n      \"codepoint\": 62034,\n      \"source\": \"fixedSvg/cloud-circle-outline.svg\"\n    },\n    \"cloud-circle-sharp\": {\n      \"codepoint\": 62035,\n      \"source\": \"fixedSvg/cloud-circle-sharp.svg\"\n    },\n    \"cloud-done\": {\n      \"codepoint\": 62036,\n      \"source\": \"fixedSvg/cloud-done.svg\"\n    },\n    \"cloud-done-outline\": {\n      \"codepoint\": 62037,\n      \"source\": \"fixedSvg/cloud-done-outline.svg\"\n    },\n    \"cloud-done-sharp\": {\n      \"codepoint\": 62038,\n      \"source\": \"fixedSvg/cloud-done-sharp.svg\"\n    },\n    \"cloud-download\": {\n      \"codepoint\": 62039,\n      \"source\": \"fixedSvg/cloud-download.svg\"\n    },\n    \"cloud-download-outline\": {\n      \"codepoint\": 62040,\n      \"source\": \"fixedSvg/cloud-download-outline.svg\"\n    },\n    \"cloud-download-sharp\": {\n      \"codepoint\": 62041,\n      \"source\": \"fixedSvg/cloud-download-sharp.svg\"\n    },\n    \"cloud-offline\": {\n      \"codepoint\": 62042,\n      \"source\": \"fixedSvg/cloud-offline.svg\"\n    },\n    \"cloud-offline-outline\": {\n      \"codepoint\": 62043,\n      \"source\": \"fixedSvg/cloud-offline-outline.svg\"\n    },\n    \"cloud-offline-sharp\": {\n      \"codepoint\": 62044,\n      \"source\": \"fixedSvg/cloud-offline-sharp.svg\"\n    },\n    \"cloud-outline\": {\n      \"codepoint\": 62045,\n      \"source\": \"fixedSvg/cloud-outline.svg\"\n    },\n    \"cloud-sharp\": {\n      \"codepoint\": 62046,\n      \"source\": \"fixedSvg/cloud-sharp.svg\"\n    },\n    \"cloud-upload\": {\n      \"codepoint\": 62047,\n      \"source\": \"fixedSvg/cloud-upload.svg\"\n    },\n    \"cloud-upload-outline\": {\n      \"codepoint\": 62048,\n      \"source\": \"fixedSvg/cloud-upload-outline.svg\"\n    },\n    \"cloud-upload-sharp\": {\n      \"codepoint\": 62049,\n      \"source\": \"fixedSvg/cloud-upload-sharp.svg\"\n    },\n    \"cloudy\": {\n      \"codepoint\": 62050,\n      \"source\": \"fixedSvg/cloudy.svg\"\n    },\n    \"cloudy-night\": {\n      \"codepoint\": 62051,\n      \"source\": \"fixedSvg/cloudy-night.svg\"\n    },\n    \"cloudy-night-outline\": {\n      \"codepoint\": 62052,\n      \"source\": \"fixedSvg/cloudy-night-outline.svg\"\n    },\n    \"cloudy-night-sharp\": {\n      \"codepoint\": 62053,\n      \"source\": \"fixedSvg/cloudy-night-sharp.svg\"\n    },\n    \"cloudy-outline\": {\n      \"codepoint\": 62054,\n      \"source\": \"fixedSvg/cloudy-outline.svg\"\n    },\n    \"cloudy-sharp\": {\n      \"codepoint\": 62055,\n      \"source\": \"fixedSvg/cloudy-sharp.svg\"\n    },\n    \"code\": {\n      \"codepoint\": 62056,\n      \"source\": \"fixedSvg/code.svg\"\n    },\n    \"code-download\": {\n      \"codepoint\": 62057,\n      \"source\": \"fixedSvg/code-download.svg\"\n    },\n    \"code-download-outline\": {\n      \"codepoint\": 62058,\n      \"source\": \"fixedSvg/code-download-outline.svg\"\n    },\n    \"code-download-sharp\": {\n      \"codepoint\": 62059,\n      \"source\": \"fixedSvg/code-download-sharp.svg\"\n    },\n    \"code-outline\": {\n      \"codepoint\": 62060,\n      \"source\": \"fixedSvg/code-outline.svg\"\n    },\n    \"code-sharp\": {\n      \"codepoint\": 62061,\n      \"source\": \"fixedSvg/code-sharp.svg\"\n    },\n    \"code-slash\": {\n      \"codepoint\": 62062,\n      \"source\": \"fixedSvg/code-slash.svg\"\n    },\n    \"code-slash-outline\": {\n      \"codepoint\": 62063,\n      \"source\": \"fixedSvg/code-slash-outline.svg\"\n    },\n    \"code-slash-sharp\": {\n      \"codepoint\": 62064,\n      \"source\": \"fixedSvg/code-slash-sharp.svg\"\n    },\n    \"code-working\": {\n      \"codepoint\": 62065,\n      \"source\": \"fixedSvg/code-working.svg\"\n    },\n    \"code-working-outline\": {\n      \"codepoint\": 62066,\n      \"source\": \"fixedSvg/code-working-outline.svg\"\n    },\n    \"code-working-sharp\": {\n      \"codepoint\": 62067,\n      \"source\": \"fixedSvg/code-working-sharp.svg\"\n    },\n    \"cog\": {\n      \"codepoint\": 62068,\n      \"source\": \"fixedSvg/cog.svg\"\n    },\n    \"cog-outline\": {\n      \"codepoint\": 62069,\n      \"source\": \"fixedSvg/cog-outline.svg\"\n    },\n    \"cog-sharp\": {\n      \"codepoint\": 62070,\n      \"source\": \"fixedSvg/cog-sharp.svg\"\n    },\n    \"color-fill\": {\n      \"codepoint\": 62071,\n      \"source\": \"fixedSvg/color-fill.svg\"\n    },\n    \"color-fill-outline\": {\n      \"codepoint\": 62072,\n      \"source\": \"fixedSvg/color-fill-outline.svg\"\n    },\n    \"color-fill-sharp\": {\n      \"codepoint\": 62073,\n      \"source\": \"fixedSvg/color-fill-sharp.svg\"\n    },\n    \"color-filter\": {\n      \"codepoint\": 62074,\n      \"source\": \"fixedSvg/color-filter.svg\"\n    },\n    \"color-filter-outline\": {\n      \"codepoint\": 62075,\n      \"source\": \"fixedSvg/color-filter-outline.svg\"\n    },\n    \"color-filter-sharp\": {\n      \"codepoint\": 62076,\n      \"source\": \"fixedSvg/color-filter-sharp.svg\"\n    },\n    \"color-palette\": {\n      \"codepoint\": 62077,\n      \"source\": \"fixedSvg/color-palette.svg\"\n    },\n    \"color-palette-outline\": {\n      \"codepoint\": 62078,\n      \"source\": \"fixedSvg/color-palette-outline.svg\"\n    },\n    \"color-palette-sharp\": {\n      \"codepoint\": 62079,\n      \"source\": \"fixedSvg/color-palette-sharp.svg\"\n    },\n    \"color-wand\": {\n      \"codepoint\": 62080,\n      \"source\": \"fixedSvg/color-wand.svg\"\n    },\n    \"color-wand-outline\": {\n      \"codepoint\": 62081,\n      \"source\": \"fixedSvg/color-wand-outline.svg\"\n    },\n    \"color-wand-sharp\": {\n      \"codepoint\": 62082,\n      \"source\": \"fixedSvg/color-wand-sharp.svg\"\n    },\n    \"compass\": {\n      \"codepoint\": 62083,\n      \"source\": \"fixedSvg/compass.svg\"\n    },\n    \"compass-outline\": {\n      \"codepoint\": 62084,\n      \"source\": \"fixedSvg/compass-outline.svg\"\n    },\n    \"compass-sharp\": {\n      \"codepoint\": 62085,\n      \"source\": \"fixedSvg/compass-sharp.svg\"\n    },\n    \"construct\": {\n      \"codepoint\": 62086,\n      \"source\": \"fixedSvg/construct.svg\"\n    },\n    \"construct-outline\": {\n      \"codepoint\": 62087,\n      \"source\": \"fixedSvg/construct-outline.svg\"\n    },\n    \"construct-sharp\": {\n      \"codepoint\": 62088,\n      \"source\": \"fixedSvg/construct-sharp.svg\"\n    },\n    \"contract\": {\n      \"codepoint\": 62089,\n      \"source\": \"fixedSvg/contract.svg\"\n    },\n    \"contract-outline\": {\n      \"codepoint\": 62090,\n      \"source\": \"fixedSvg/contract-outline.svg\"\n    },\n    \"contract-sharp\": {\n      \"codepoint\": 62091,\n      \"source\": \"fixedSvg/contract-sharp.svg\"\n    },\n    \"contrast\": {\n      \"codepoint\": 62092,\n      \"source\": \"fixedSvg/contrast.svg\"\n    },\n    \"contrast-outline\": {\n      \"codepoint\": 62093,\n      \"source\": \"fixedSvg/contrast-outline.svg\"\n    },\n    \"contrast-sharp\": {\n      \"codepoint\": 62094,\n      \"source\": \"fixedSvg/contrast-sharp.svg\"\n    },\n    \"copy\": {\n      \"codepoint\": 62095,\n      \"source\": \"fixedSvg/copy.svg\"\n    },\n    \"copy-outline\": {\n      \"codepoint\": 62096,\n      \"source\": \"fixedSvg/copy-outline.svg\"\n    },\n    \"copy-sharp\": {\n      \"codepoint\": 62097,\n      \"source\": \"fixedSvg/copy-sharp.svg\"\n    },\n    \"create\": {\n      \"codepoint\": 62098,\n      \"source\": \"fixedSvg/create.svg\"\n    },\n    \"create-outline\": {\n      \"codepoint\": 62099,\n      \"source\": \"fixedSvg/create-outline.svg\"\n    },\n    \"create-sharp\": {\n      \"codepoint\": 62100,\n      \"source\": \"fixedSvg/create-sharp.svg\"\n    },\n    \"crop\": {\n      \"codepoint\": 62101,\n      \"source\": \"fixedSvg/crop.svg\"\n    },\n    \"crop-outline\": {\n      \"codepoint\": 62102,\n      \"source\": \"fixedSvg/crop-outline.svg\"\n    },\n    \"crop-sharp\": {\n      \"codepoint\": 62103,\n      \"source\": \"fixedSvg/crop-sharp.svg\"\n    },\n    \"cube\": {\n      \"codepoint\": 62104,\n      \"source\": \"fixedSvg/cube.svg\"\n    },\n    \"cube-outline\": {\n      \"codepoint\": 62105,\n      \"source\": \"fixedSvg/cube-outline.svg\"\n    },\n    \"cube-sharp\": {\n      \"codepoint\": 62106,\n      \"source\": \"fixedSvg/cube-sharp.svg\"\n    },\n    \"cut\": {\n      \"codepoint\": 62107,\n      \"source\": \"fixedSvg/cut.svg\"\n    },\n    \"cut-outline\": {\n      \"codepoint\": 62108,\n      \"source\": \"fixedSvg/cut-outline.svg\"\n    },\n    \"cut-sharp\": {\n      \"codepoint\": 62109,\n      \"source\": \"fixedSvg/cut-sharp.svg\"\n    },\n    \"desktop\": {\n      \"codepoint\": 62110,\n      \"source\": \"fixedSvg/desktop.svg\"\n    },\n    \"desktop-outline\": {\n      \"codepoint\": 62111,\n      \"source\": \"fixedSvg/desktop-outline.svg\"\n    },\n    \"desktop-sharp\": {\n      \"codepoint\": 62112,\n      \"source\": \"fixedSvg/desktop-sharp.svg\"\n    },\n    \"diamond\": {\n      \"codepoint\": 62113,\n      \"source\": \"fixedSvg/diamond.svg\"\n    },\n    \"diamond-outline\": {\n      \"codepoint\": 62114,\n      \"source\": \"fixedSvg/diamond-outline.svg\"\n    },\n    \"diamond-sharp\": {\n      \"codepoint\": 62115,\n      \"source\": \"fixedSvg/diamond-sharp.svg\"\n    },\n    \"dice\": {\n      \"codepoint\": 62116,\n      \"source\": \"fixedSvg/dice.svg\"\n    },\n    \"dice-outline\": {\n      \"codepoint\": 62117,\n      \"source\": \"fixedSvg/dice-outline.svg\"\n    },\n    \"dice-sharp\": {\n      \"codepoint\": 62118,\n      \"source\": \"fixedSvg/dice-sharp.svg\"\n    },\n    \"disc\": {\n      \"codepoint\": 62119,\n      \"source\": \"fixedSvg/disc.svg\"\n    },\n    \"disc-outline\": {\n      \"codepoint\": 62120,\n      \"source\": \"fixedSvg/disc-outline.svg\"\n    },\n    \"disc-sharp\": {\n      \"codepoint\": 62121,\n      \"source\": \"fixedSvg/disc-sharp.svg\"\n    },\n    \"document\": {\n      \"codepoint\": 62122,\n      \"source\": \"fixedSvg/document.svg\"\n    },\n    \"document-attach\": {\n      \"codepoint\": 62123,\n      \"source\": \"fixedSvg/document-attach.svg\"\n    },\n    \"document-attach-outline\": {\n      \"codepoint\": 62124,\n      \"source\": \"fixedSvg/document-attach-outline.svg\"\n    },\n    \"document-attach-sharp\": {\n      \"codepoint\": 62125,\n      \"source\": \"fixedSvg/document-attach-sharp.svg\"\n    },\n    \"document-lock\": {\n      \"codepoint\": 62126,\n      \"source\": \"fixedSvg/document-lock.svg\"\n    },\n    \"document-lock-outline\": {\n      \"codepoint\": 62127,\n      \"source\": \"fixedSvg/document-lock-outline.svg\"\n    },\n    \"document-lock-sharp\": {\n      \"codepoint\": 62128,\n      \"source\": \"fixedSvg/document-lock-sharp.svg\"\n    },\n    \"document-outline\": {\n      \"codepoint\": 62129,\n      \"source\": \"fixedSvg/document-outline.svg\"\n    },\n    \"document-sharp\": {\n      \"codepoint\": 62130,\n      \"source\": \"fixedSvg/document-sharp.svg\"\n    },\n    \"document-text\": {\n      \"codepoint\": 62131,\n      \"source\": \"fixedSvg/document-text.svg\"\n    },\n    \"document-text-outline\": {\n      \"codepoint\": 62132,\n      \"source\": \"fixedSvg/document-text-outline.svg\"\n    },\n    \"document-text-sharp\": {\n      \"codepoint\": 62133,\n      \"source\": \"fixedSvg/document-text-sharp.svg\"\n    },\n    \"documents\": {\n      \"codepoint\": 62134,\n      \"source\": \"fixedSvg/documents.svg\"\n    },\n    \"documents-outline\": {\n      \"codepoint\": 62135,\n      \"source\": \"fixedSvg/documents-outline.svg\"\n    },\n    \"documents-sharp\": {\n      \"codepoint\": 62136,\n      \"source\": \"fixedSvg/documents-sharp.svg\"\n    },\n    \"download\": {\n      \"codepoint\": 62137,\n      \"source\": \"fixedSvg/download.svg\"\n    },\n    \"download-outline\": {\n      \"codepoint\": 62138,\n      \"source\": \"fixedSvg/download-outline.svg\"\n    },\n    \"download-sharp\": {\n      \"codepoint\": 62139,\n      \"source\": \"fixedSvg/download-sharp.svg\"\n    },\n    \"duplicate\": {\n      \"codepoint\": 62140,\n      \"source\": \"fixedSvg/duplicate.svg\"\n    },\n    \"duplicate-outline\": {\n      \"codepoint\": 62141,\n      \"source\": \"fixedSvg/duplicate-outline.svg\"\n    },\n    \"duplicate-sharp\": {\n      \"codepoint\": 62142,\n      \"source\": \"fixedSvg/duplicate-sharp.svg\"\n    },\n    \"ear\": {\n      \"codepoint\": 62143,\n      \"source\": \"fixedSvg/ear.svg\"\n    },\n    \"ear-outline\": {\n      \"codepoint\": 62144,\n      \"source\": \"fixedSvg/ear-outline.svg\"\n    },\n    \"ear-sharp\": {\n      \"codepoint\": 62145,\n      \"source\": \"fixedSvg/ear-sharp.svg\"\n    },\n    \"earth\": {\n      \"codepoint\": 62146,\n      \"source\": \"fixedSvg/earth.svg\"\n    },\n    \"earth-outline\": {\n      \"codepoint\": 62147,\n      \"source\": \"fixedSvg/earth-outline.svg\"\n    },\n    \"earth-sharp\": {\n      \"codepoint\": 62148,\n      \"source\": \"fixedSvg/earth-sharp.svg\"\n    },\n    \"easel\": {\n      \"codepoint\": 62149,\n      \"source\": \"fixedSvg/easel.svg\"\n    },\n    \"easel-outline\": {\n      \"codepoint\": 62150,\n      \"source\": \"fixedSvg/easel-outline.svg\"\n    },\n    \"easel-sharp\": {\n      \"codepoint\": 62151,\n      \"source\": \"fixedSvg/easel-sharp.svg\"\n    },\n    \"egg\": {\n      \"codepoint\": 62152,\n      \"source\": \"fixedSvg/egg.svg\"\n    },\n    \"egg-outline\": {\n      \"codepoint\": 62153,\n      \"source\": \"fixedSvg/egg-outline.svg\"\n    },\n    \"egg-sharp\": {\n      \"codepoint\": 62154,\n      \"source\": \"fixedSvg/egg-sharp.svg\"\n    },\n    \"ellipse\": {\n      \"codepoint\": 62155,\n      \"source\": \"fixedSvg/ellipse.svg\"\n    },\n    \"ellipse-outline\": {\n      \"codepoint\": 62156,\n      \"source\": \"fixedSvg/ellipse-outline.svg\"\n    },\n    \"ellipse-sharp\": {\n      \"codepoint\": 62157,\n      \"source\": \"fixedSvg/ellipse-sharp.svg\"\n    },\n    \"ellipsis-horizontal\": {\n      \"codepoint\": 62158,\n      \"source\": \"fixedSvg/ellipsis-horizontal.svg\"\n    },\n    \"ellipsis-horizontal-circle\": {\n      \"codepoint\": 62159,\n      \"source\": \"fixedSvg/ellipsis-horizontal-circle.svg\"\n    },\n    \"ellipsis-horizontal-circle-outline\": {\n      \"codepoint\": 62160,\n      \"source\": \"fixedSvg/ellipsis-horizontal-circle-outline.svg\"\n    },\n    \"ellipsis-horizontal-circle-sharp\": {\n      \"codepoint\": 62161,\n      \"source\": \"fixedSvg/ellipsis-horizontal-circle-sharp.svg\"\n    },\n    \"ellipsis-horizontal-outline\": {\n      \"codepoint\": 62162,\n      \"source\": \"fixedSvg/ellipsis-horizontal-outline.svg\"\n    },\n    \"ellipsis-horizontal-sharp\": {\n      \"codepoint\": 62163,\n      \"source\": \"fixedSvg/ellipsis-horizontal-sharp.svg\"\n    },\n    \"ellipsis-vertical\": {\n      \"codepoint\": 62164,\n      \"source\": \"fixedSvg/ellipsis-vertical.svg\"\n    },\n    \"ellipsis-vertical-circle\": {\n      \"codepoint\": 62165,\n      \"source\": \"fixedSvg/ellipsis-vertical-circle.svg\"\n    },\n    \"ellipsis-vertical-circle-outline\": {\n      \"codepoint\": 62166,\n      \"source\": \"fixedSvg/ellipsis-vertical-circle-outline.svg\"\n    },\n    \"ellipsis-vertical-circle-sharp\": {\n      \"codepoint\": 62167,\n      \"source\": \"fixedSvg/ellipsis-vertical-circle-sharp.svg\"\n    },\n    \"ellipsis-vertical-outline\": {\n      \"codepoint\": 62168,\n      \"source\": \"fixedSvg/ellipsis-vertical-outline.svg\"\n    },\n    \"ellipsis-vertical-sharp\": {\n      \"codepoint\": 62169,\n      \"source\": \"fixedSvg/ellipsis-vertical-sharp.svg\"\n    },\n    \"enter\": {\n      \"codepoint\": 62170,\n      \"source\": \"fixedSvg/enter.svg\"\n    },\n    \"enter-outline\": {\n      \"codepoint\": 62171,\n      \"source\": \"fixedSvg/enter-outline.svg\"\n    },\n    \"enter-sharp\": {\n      \"codepoint\": 62172,\n      \"source\": \"fixedSvg/enter-sharp.svg\"\n    },\n    \"exit\": {\n      \"codepoint\": 62173,\n      \"source\": \"fixedSvg/exit.svg\"\n    },\n    \"exit-outline\": {\n      \"codepoint\": 62174,\n      \"source\": \"fixedSvg/exit-outline.svg\"\n    },\n    \"exit-sharp\": {\n      \"codepoint\": 62175,\n      \"source\": \"fixedSvg/exit-sharp.svg\"\n    },\n    \"expand\": {\n      \"codepoint\": 62176,\n      \"source\": \"fixedSvg/expand.svg\"\n    },\n    \"expand-outline\": {\n      \"codepoint\": 62177,\n      \"source\": \"fixedSvg/expand-outline.svg\"\n    },\n    \"expand-sharp\": {\n      \"codepoint\": 62178,\n      \"source\": \"fixedSvg/expand-sharp.svg\"\n    },\n    \"extension-puzzle\": {\n      \"codepoint\": 62179,\n      \"source\": \"fixedSvg/extension-puzzle.svg\"\n    },\n    \"extension-puzzle-outline\": {\n      \"codepoint\": 62180,\n      \"source\": \"fixedSvg/extension-puzzle-outline.svg\"\n    },\n    \"extension-puzzle-sharp\": {\n      \"codepoint\": 62181,\n      \"source\": \"fixedSvg/extension-puzzle-sharp.svg\"\n    },\n    \"eye\": {\n      \"codepoint\": 62182,\n      \"source\": \"fixedSvg/eye.svg\"\n    },\n    \"eye-off\": {\n      \"codepoint\": 62183,\n      \"source\": \"fixedSvg/eye-off.svg\"\n    },\n    \"eye-off-outline\": {\n      \"codepoint\": 62184,\n      \"source\": \"fixedSvg/eye-off-outline.svg\"\n    },\n    \"eye-off-sharp\": {\n      \"codepoint\": 62185,\n      \"source\": \"fixedSvg/eye-off-sharp.svg\"\n    },\n    \"eye-outline\": {\n      \"codepoint\": 62186,\n      \"source\": \"fixedSvg/eye-outline.svg\"\n    },\n    \"eye-sharp\": {\n      \"codepoint\": 62187,\n      \"source\": \"fixedSvg/eye-sharp.svg\"\n    },\n    \"eyedrop\": {\n      \"codepoint\": 62188,\n      \"source\": \"fixedSvg/eyedrop.svg\"\n    },\n    \"eyedrop-outline\": {\n      \"codepoint\": 62189,\n      \"source\": \"fixedSvg/eyedrop-outline.svg\"\n    },\n    \"eyedrop-sharp\": {\n      \"codepoint\": 62190,\n      \"source\": \"fixedSvg/eyedrop-sharp.svg\"\n    },\n    \"fast-food\": {\n      \"codepoint\": 62191,\n      \"source\": \"fixedSvg/fast-food.svg\"\n    },\n    \"fast-food-outline\": {\n      \"codepoint\": 62192,\n      \"source\": \"fixedSvg/fast-food-outline.svg\"\n    },\n    \"fast-food-sharp\": {\n      \"codepoint\": 62193,\n      \"source\": \"fixedSvg/fast-food-sharp.svg\"\n    },\n    \"female\": {\n      \"codepoint\": 62194,\n      \"source\": \"fixedSvg/female.svg\"\n    },\n    \"female-outline\": {\n      \"codepoint\": 62195,\n      \"source\": \"fixedSvg/female-outline.svg\"\n    },\n    \"female-sharp\": {\n      \"codepoint\": 62196,\n      \"source\": \"fixedSvg/female-sharp.svg\"\n    },\n    \"file-tray\": {\n      \"codepoint\": 62197,\n      \"source\": \"fixedSvg/file-tray.svg\"\n    },\n    \"file-tray-full\": {\n      \"codepoint\": 62198,\n      \"source\": \"fixedSvg/file-tray-full.svg\"\n    },\n    \"file-tray-full-outline\": {\n      \"codepoint\": 62199,\n      \"source\": \"fixedSvg/file-tray-full-outline.svg\"\n    },\n    \"file-tray-full-sharp\": {\n      \"codepoint\": 62200,\n      \"source\": \"fixedSvg/file-tray-full-sharp.svg\"\n    },\n    \"file-tray-outline\": {\n      \"codepoint\": 62201,\n      \"source\": \"fixedSvg/file-tray-outline.svg\"\n    },\n    \"file-tray-sharp\": {\n      \"codepoint\": 62202,\n      \"source\": \"fixedSvg/file-tray-sharp.svg\"\n    },\n    \"file-tray-stacked\": {\n      \"codepoint\": 62203,\n      \"source\": \"fixedSvg/file-tray-stacked.svg\"\n    },\n    \"file-tray-stacked-outline\": {\n      \"codepoint\": 62204,\n      \"source\": \"fixedSvg/file-tray-stacked-outline.svg\"\n    },\n    \"file-tray-stacked-sharp\": {\n      \"codepoint\": 62205,\n      \"source\": \"fixedSvg/file-tray-stacked-sharp.svg\"\n    },\n    \"film\": {\n      \"codepoint\": 62206,\n      \"source\": \"fixedSvg/film.svg\"\n    },\n    \"film-outline\": {\n      \"codepoint\": 62207,\n      \"source\": \"fixedSvg/film-outline.svg\"\n    },\n    \"film-sharp\": {\n      \"codepoint\": 62208,\n      \"source\": \"fixedSvg/film-sharp.svg\"\n    },\n    \"filter\": {\n      \"codepoint\": 62209,\n      \"source\": \"fixedSvg/filter.svg\"\n    },\n    \"filter-circle\": {\n      \"codepoint\": 62210,\n      \"source\": \"fixedSvg/filter-circle.svg\"\n    },\n    \"filter-circle-outline\": {\n      \"codepoint\": 62211,\n      \"source\": \"fixedSvg/filter-circle-outline.svg\"\n    },\n    \"filter-circle-sharp\": {\n      \"codepoint\": 62212,\n      \"source\": \"fixedSvg/filter-circle-sharp.svg\"\n    },\n    \"filter-outline\": {\n      \"codepoint\": 62213,\n      \"source\": \"fixedSvg/filter-outline.svg\"\n    },\n    \"filter-sharp\": {\n      \"codepoint\": 62214,\n      \"source\": \"fixedSvg/filter-sharp.svg\"\n    },\n    \"finger-print\": {\n      \"codepoint\": 62215,\n      \"source\": \"fixedSvg/finger-print.svg\"\n    },\n    \"finger-print-outline\": {\n      \"codepoint\": 62216,\n      \"source\": \"fixedSvg/finger-print-outline.svg\"\n    },\n    \"finger-print-sharp\": {\n      \"codepoint\": 62217,\n      \"source\": \"fixedSvg/finger-print-sharp.svg\"\n    },\n    \"fish\": {\n      \"codepoint\": 62218,\n      \"source\": \"fixedSvg/fish.svg\"\n    },\n    \"fish-outline\": {\n      \"codepoint\": 62219,\n      \"source\": \"fixedSvg/fish-outline.svg\"\n    },\n    \"fish-sharp\": {\n      \"codepoint\": 62220,\n      \"source\": \"fixedSvg/fish-sharp.svg\"\n    },\n    \"fitness\": {\n      \"codepoint\": 62221,\n      \"source\": \"fixedSvg/fitness.svg\"\n    },\n    \"fitness-outline\": {\n      \"codepoint\": 62222,\n      \"source\": \"fixedSvg/fitness-outline.svg\"\n    },\n    \"fitness-sharp\": {\n      \"codepoint\": 62223,\n      \"source\": \"fixedSvg/fitness-sharp.svg\"\n    },\n    \"flag\": {\n      \"codepoint\": 62224,\n      \"source\": \"fixedSvg/flag.svg\"\n    },\n    \"flag-outline\": {\n      \"codepoint\": 62225,\n      \"source\": \"fixedSvg/flag-outline.svg\"\n    },\n    \"flag-sharp\": {\n      \"codepoint\": 62226,\n      \"source\": \"fixedSvg/flag-sharp.svg\"\n    },\n    \"flame\": {\n      \"codepoint\": 62227,\n      \"source\": \"fixedSvg/flame.svg\"\n    },\n    \"flame-outline\": {\n      \"codepoint\": 62228,\n      \"source\": \"fixedSvg/flame-outline.svg\"\n    },\n    \"flame-sharp\": {\n      \"codepoint\": 62229,\n      \"source\": \"fixedSvg/flame-sharp.svg\"\n    },\n    \"flash\": {\n      \"codepoint\": 62230,\n      \"source\": \"fixedSvg/flash.svg\"\n    },\n    \"flash-off\": {\n      \"codepoint\": 62231,\n      \"source\": \"fixedSvg/flash-off.svg\"\n    },\n    \"flash-off-outline\": {\n      \"codepoint\": 62232,\n      \"source\": \"fixedSvg/flash-off-outline.svg\"\n    },\n    \"flash-off-sharp\": {\n      \"codepoint\": 62233,\n      \"source\": \"fixedSvg/flash-off-sharp.svg\"\n    },\n    \"flash-outline\": {\n      \"codepoint\": 62234,\n      \"source\": \"fixedSvg/flash-outline.svg\"\n    },\n    \"flash-sharp\": {\n      \"codepoint\": 62235,\n      \"source\": \"fixedSvg/flash-sharp.svg\"\n    },\n    \"flashlight\": {\n      \"codepoint\": 62236,\n      \"source\": \"fixedSvg/flashlight.svg\"\n    },\n    \"flashlight-outline\": {\n      \"codepoint\": 62237,\n      \"source\": \"fixedSvg/flashlight-outline.svg\"\n    },\n    \"flashlight-sharp\": {\n      \"codepoint\": 62238,\n      \"source\": \"fixedSvg/flashlight-sharp.svg\"\n    },\n    \"flask\": {\n      \"codepoint\": 62239,\n      \"source\": \"fixedSvg/flask.svg\"\n    },\n    \"flask-outline\": {\n      \"codepoint\": 62240,\n      \"source\": \"fixedSvg/flask-outline.svg\"\n    },\n    \"flask-sharp\": {\n      \"codepoint\": 62241,\n      \"source\": \"fixedSvg/flask-sharp.svg\"\n    },\n    \"flower\": {\n      \"codepoint\": 62242,\n      \"source\": \"fixedSvg/flower.svg\"\n    },\n    \"flower-outline\": {\n      \"codepoint\": 62243,\n      \"source\": \"fixedSvg/flower-outline.svg\"\n    },\n    \"flower-sharp\": {\n      \"codepoint\": 62244,\n      \"source\": \"fixedSvg/flower-sharp.svg\"\n    },\n    \"folder\": {\n      \"codepoint\": 62245,\n      \"source\": \"fixedSvg/folder.svg\"\n    },\n    \"folder-open\": {\n      \"codepoint\": 62246,\n      \"source\": \"fixedSvg/folder-open.svg\"\n    },\n    \"folder-open-outline\": {\n      \"codepoint\": 62247,\n      \"source\": \"fixedSvg/folder-open-outline.svg\"\n    },\n    \"folder-open-sharp\": {\n      \"codepoint\": 62248,\n      \"source\": \"fixedSvg/folder-open-sharp.svg\"\n    },\n    \"folder-outline\": {\n      \"codepoint\": 62249,\n      \"source\": \"fixedSvg/folder-outline.svg\"\n    },\n    \"folder-sharp\": {\n      \"codepoint\": 62250,\n      \"source\": \"fixedSvg/folder-sharp.svg\"\n    },\n    \"football\": {\n      \"codepoint\": 62251,\n      \"source\": \"fixedSvg/football.svg\"\n    },\n    \"football-outline\": {\n      \"codepoint\": 62252,\n      \"source\": \"fixedSvg/football-outline.svg\"\n    },\n    \"football-sharp\": {\n      \"codepoint\": 62253,\n      \"source\": \"fixedSvg/football-sharp.svg\"\n    },\n    \"footsteps\": {\n      \"codepoint\": 62254,\n      \"source\": \"fixedSvg/footsteps.svg\"\n    },\n    \"footsteps-outline\": {\n      \"codepoint\": 62255,\n      \"source\": \"fixedSvg/footsteps-outline.svg\"\n    },\n    \"footsteps-sharp\": {\n      \"codepoint\": 62256,\n      \"source\": \"fixedSvg/footsteps-sharp.svg\"\n    },\n    \"funnel\": {\n      \"codepoint\": 62257,\n      \"source\": \"fixedSvg/funnel.svg\"\n    },\n    \"funnel-outline\": {\n      \"codepoint\": 62258,\n      \"source\": \"fixedSvg/funnel-outline.svg\"\n    },\n    \"funnel-sharp\": {\n      \"codepoint\": 62259,\n      \"source\": \"fixedSvg/funnel-sharp.svg\"\n    },\n    \"game-controller\": {\n      \"codepoint\": 62260,\n      \"source\": \"fixedSvg/game-controller.svg\"\n    },\n    \"game-controller-outline\": {\n      \"codepoint\": 62261,\n      \"source\": \"fixedSvg/game-controller-outline.svg\"\n    },\n    \"game-controller-sharp\": {\n      \"codepoint\": 62262,\n      \"source\": \"fixedSvg/game-controller-sharp.svg\"\n    },\n    \"gift\": {\n      \"codepoint\": 62263,\n      \"source\": \"fixedSvg/gift.svg\"\n    },\n    \"gift-outline\": {\n      \"codepoint\": 62264,\n      \"source\": \"fixedSvg/gift-outline.svg\"\n    },\n    \"gift-sharp\": {\n      \"codepoint\": 62265,\n      \"source\": \"fixedSvg/gift-sharp.svg\"\n    },\n    \"git-branch\": {\n      \"codepoint\": 62266,\n      \"source\": \"fixedSvg/git-branch.svg\"\n    },\n    \"git-branch-outline\": {\n      \"codepoint\": 62267,\n      \"source\": \"fixedSvg/git-branch-outline.svg\"\n    },\n    \"git-branch-sharp\": {\n      \"codepoint\": 62268,\n      \"source\": \"fixedSvg/git-branch-sharp.svg\"\n    },\n    \"git-commit\": {\n      \"codepoint\": 62269,\n      \"source\": \"fixedSvg/git-commit.svg\"\n    },\n    \"git-commit-outline\": {\n      \"codepoint\": 62270,\n      \"source\": \"fixedSvg/git-commit-outline.svg\"\n    },\n    \"git-commit-sharp\": {\n      \"codepoint\": 62271,\n      \"source\": \"fixedSvg/git-commit-sharp.svg\"\n    },\n    \"git-compare\": {\n      \"codepoint\": 62272,\n      \"source\": \"fixedSvg/git-compare.svg\"\n    },\n    \"git-compare-outline\": {\n      \"codepoint\": 62273,\n      \"source\": \"fixedSvg/git-compare-outline.svg\"\n    },\n    \"git-compare-sharp\": {\n      \"codepoint\": 62274,\n      \"source\": \"fixedSvg/git-compare-sharp.svg\"\n    },\n    \"git-merge\": {\n      \"codepoint\": 62275,\n      \"source\": \"fixedSvg/git-merge.svg\"\n    },\n    \"git-merge-outline\": {\n      \"codepoint\": 62276,\n      \"source\": \"fixedSvg/git-merge-outline.svg\"\n    },\n    \"git-merge-sharp\": {\n      \"codepoint\": 62277,\n      \"source\": \"fixedSvg/git-merge-sharp.svg\"\n    },\n    \"git-network\": {\n      \"codepoint\": 62278,\n      \"source\": \"fixedSvg/git-network.svg\"\n    },\n    \"git-network-outline\": {\n      \"codepoint\": 62279,\n      \"source\": \"fixedSvg/git-network-outline.svg\"\n    },\n    \"git-network-sharp\": {\n      \"codepoint\": 62280,\n      \"source\": \"fixedSvg/git-network-sharp.svg\"\n    },\n    \"git-pull-request\": {\n      \"codepoint\": 62281,\n      \"source\": \"fixedSvg/git-pull-request.svg\"\n    },\n    \"git-pull-request-outline\": {\n      \"codepoint\": 62282,\n      \"source\": \"fixedSvg/git-pull-request-outline.svg\"\n    },\n    \"git-pull-request-sharp\": {\n      \"codepoint\": 62283,\n      \"source\": \"fixedSvg/git-pull-request-sharp.svg\"\n    },\n    \"glasses\": {\n      \"codepoint\": 62284,\n      \"source\": \"fixedSvg/glasses.svg\"\n    },\n    \"glasses-outline\": {\n      \"codepoint\": 62285,\n      \"source\": \"fixedSvg/glasses-outline.svg\"\n    },\n    \"glasses-sharp\": {\n      \"codepoint\": 62286,\n      \"source\": \"fixedSvg/glasses-sharp.svg\"\n    },\n    \"globe\": {\n      \"codepoint\": 62287,\n      \"source\": \"fixedSvg/globe.svg\"\n    },\n    \"globe-outline\": {\n      \"codepoint\": 62288,\n      \"source\": \"fixedSvg/globe-outline.svg\"\n    },\n    \"globe-sharp\": {\n      \"codepoint\": 62289,\n      \"source\": \"fixedSvg/globe-sharp.svg\"\n    },\n    \"golf\": {\n      \"codepoint\": 62290,\n      \"source\": \"fixedSvg/golf.svg\"\n    },\n    \"golf-outline\": {\n      \"codepoint\": 62291,\n      \"source\": \"fixedSvg/golf-outline.svg\"\n    },\n    \"golf-sharp\": {\n      \"codepoint\": 62292,\n      \"source\": \"fixedSvg/golf-sharp.svg\"\n    },\n    \"grid\": {\n      \"codepoint\": 62293,\n      \"source\": \"fixedSvg/grid.svg\"\n    },\n    \"grid-outline\": {\n      \"codepoint\": 62294,\n      \"source\": \"fixedSvg/grid-outline.svg\"\n    },\n    \"grid-sharp\": {\n      \"codepoint\": 62295,\n      \"source\": \"fixedSvg/grid-sharp.svg\"\n    },\n    \"hammer\": {\n      \"codepoint\": 62296,\n      \"source\": \"fixedSvg/hammer.svg\"\n    },\n    \"hammer-outline\": {\n      \"codepoint\": 62297,\n      \"source\": \"fixedSvg/hammer-outline.svg\"\n    },\n    \"hammer-sharp\": {\n      \"codepoint\": 62298,\n      \"source\": \"fixedSvg/hammer-sharp.svg\"\n    },\n    \"hand-left\": {\n      \"codepoint\": 62299,\n      \"source\": \"fixedSvg/hand-left.svg\"\n    },\n    \"hand-left-outline\": {\n      \"codepoint\": 62300,\n      \"source\": \"fixedSvg/hand-left-outline.svg\"\n    },\n    \"hand-left-sharp\": {\n      \"codepoint\": 62301,\n      \"source\": \"fixedSvg/hand-left-sharp.svg\"\n    },\n    \"hand-right\": {\n      \"codepoint\": 62302,\n      \"source\": \"fixedSvg/hand-right.svg\"\n    },\n    \"hand-right-outline\": {\n      \"codepoint\": 62303,\n      \"source\": \"fixedSvg/hand-right-outline.svg\"\n    },\n    \"hand-right-sharp\": {\n      \"codepoint\": 62304,\n      \"source\": \"fixedSvg/hand-right-sharp.svg\"\n    },\n    \"happy\": {\n      \"codepoint\": 62305,\n      \"source\": \"fixedSvg/happy.svg\"\n    },\n    \"happy-outline\": {\n      \"codepoint\": 62306,\n      \"source\": \"fixedSvg/happy-outline.svg\"\n    },\n    \"happy-sharp\": {\n      \"codepoint\": 62307,\n      \"source\": \"fixedSvg/happy-sharp.svg\"\n    },\n    \"hardware-chip\": {\n      \"codepoint\": 62308,\n      \"source\": \"fixedSvg/hardware-chip.svg\"\n    },\n    \"hardware-chip-outline\": {\n      \"codepoint\": 62309,\n      \"source\": \"fixedSvg/hardware-chip-outline.svg\"\n    },\n    \"hardware-chip-sharp\": {\n      \"codepoint\": 62310,\n      \"source\": \"fixedSvg/hardware-chip-sharp.svg\"\n    },\n    \"headset\": {\n      \"codepoint\": 62311,\n      \"source\": \"fixedSvg/headset.svg\"\n    },\n    \"headset-outline\": {\n      \"codepoint\": 62312,\n      \"source\": \"fixedSvg/headset-outline.svg\"\n    },\n    \"headset-sharp\": {\n      \"codepoint\": 62313,\n      \"source\": \"fixedSvg/headset-sharp.svg\"\n    },\n    \"heart\": {\n      \"codepoint\": 62314,\n      \"source\": \"fixedSvg/heart.svg\"\n    },\n    \"heart-circle\": {\n      \"codepoint\": 62315,\n      \"source\": \"fixedSvg/heart-circle.svg\"\n    },\n    \"heart-circle-outline\": {\n      \"codepoint\": 62316,\n      \"source\": \"fixedSvg/heart-circle-outline.svg\"\n    },\n    \"heart-circle-sharp\": {\n      \"codepoint\": 62317,\n      \"source\": \"fixedSvg/heart-circle-sharp.svg\"\n    },\n    \"heart-dislike\": {\n      \"codepoint\": 62318,\n      \"source\": \"fixedSvg/heart-dislike.svg\"\n    },\n    \"heart-dislike-circle\": {\n      \"codepoint\": 62319,\n      \"source\": \"fixedSvg/heart-dislike-circle.svg\"\n    },\n    \"heart-dislike-circle-outline\": {\n      \"codepoint\": 62320,\n      \"source\": \"fixedSvg/heart-dislike-circle-outline.svg\"\n    },\n    \"heart-dislike-circle-sharp\": {\n      \"codepoint\": 62321,\n      \"source\": \"fixedSvg/heart-dislike-circle-sharp.svg\"\n    },\n    \"heart-dislike-outline\": {\n      \"codepoint\": 62322,\n      \"source\": \"fixedSvg/heart-dislike-outline.svg\"\n    },\n    \"heart-dislike-sharp\": {\n      \"codepoint\": 62323,\n      \"source\": \"fixedSvg/heart-dislike-sharp.svg\"\n    },\n    \"heart-half\": {\n      \"codepoint\": 62324,\n      \"source\": \"fixedSvg/heart-half.svg\"\n    },\n    \"heart-half-outline\": {\n      \"codepoint\": 62325,\n      \"source\": \"fixedSvg/heart-half-outline.svg\"\n    },\n    \"heart-half-sharp\": {\n      \"codepoint\": 62326,\n      \"source\": \"fixedSvg/heart-half-sharp.svg\"\n    },\n    \"heart-outline\": {\n      \"codepoint\": 62327,\n      \"source\": \"fixedSvg/heart-outline.svg\"\n    },\n    \"heart-sharp\": {\n      \"codepoint\": 62328,\n      \"source\": \"fixedSvg/heart-sharp.svg\"\n    },\n    \"help\": {\n      \"codepoint\": 62329,\n      \"source\": \"fixedSvg/help.svg\"\n    },\n    \"help-buoy\": {\n      \"codepoint\": 62330,\n      \"source\": \"fixedSvg/help-buoy.svg\"\n    },\n    \"help-buoy-outline\": {\n      \"codepoint\": 62331,\n      \"source\": \"fixedSvg/help-buoy-outline.svg\"\n    },\n    \"help-buoy-sharp\": {\n      \"codepoint\": 62332,\n      \"source\": \"fixedSvg/help-buoy-sharp.svg\"\n    },\n    \"help-circle\": {\n      \"codepoint\": 62333,\n      \"source\": \"fixedSvg/help-circle.svg\"\n    },\n    \"help-circle-outline\": {\n      \"codepoint\": 62334,\n      \"source\": \"fixedSvg/help-circle-outline.svg\"\n    },\n    \"help-circle-sharp\": {\n      \"codepoint\": 62335,\n      \"source\": \"fixedSvg/help-circle-sharp.svg\"\n    },\n    \"help-outline\": {\n      \"codepoint\": 62336,\n      \"source\": \"fixedSvg/help-outline.svg\"\n    },\n    \"help-sharp\": {\n      \"codepoint\": 62337,\n      \"source\": \"fixedSvg/help-sharp.svg\"\n    },\n    \"home\": {\n      \"codepoint\": 62338,\n      \"source\": \"fixedSvg/home.svg\"\n    },\n    \"home-outline\": {\n      \"codepoint\": 62339,\n      \"source\": \"fixedSvg/home-outline.svg\"\n    },\n    \"home-sharp\": {\n      \"codepoint\": 62340,\n      \"source\": \"fixedSvg/home-sharp.svg\"\n    },\n    \"hourglass\": {\n      \"codepoint\": 62341,\n      \"source\": \"fixedSvg/hourglass.svg\"\n    },\n    \"hourglass-outline\": {\n      \"codepoint\": 62342,\n      \"source\": \"fixedSvg/hourglass-outline.svg\"\n    },\n    \"hourglass-sharp\": {\n      \"codepoint\": 62343,\n      \"source\": \"fixedSvg/hourglass-sharp.svg\"\n    },\n    \"ice-cream\": {\n      \"codepoint\": 62344,\n      \"source\": \"fixedSvg/ice-cream.svg\"\n    },\n    \"ice-cream-outline\": {\n      \"codepoint\": 62345,\n      \"source\": \"fixedSvg/ice-cream-outline.svg\"\n    },\n    \"ice-cream-sharp\": {\n      \"codepoint\": 62346,\n      \"source\": \"fixedSvg/ice-cream-sharp.svg\"\n    },\n    \"id-card\": {\n      \"codepoint\": 62347,\n      \"source\": \"fixedSvg/id-card.svg\"\n    },\n    \"id-card-outline\": {\n      \"codepoint\": 62348,\n      \"source\": \"fixedSvg/id-card-outline.svg\"\n    },\n    \"id-card-sharp\": {\n      \"codepoint\": 62349,\n      \"source\": \"fixedSvg/id-card-sharp.svg\"\n    },\n    \"image\": {\n      \"codepoint\": 62350,\n      \"source\": \"fixedSvg/image.svg\"\n    },\n    \"image-outline\": {\n      \"codepoint\": 62351,\n      \"source\": \"fixedSvg/image-outline.svg\"\n    },\n    \"image-sharp\": {\n      \"codepoint\": 62352,\n      \"source\": \"fixedSvg/image-sharp.svg\"\n    },\n    \"images\": {\n      \"codepoint\": 62353,\n      \"source\": \"fixedSvg/images.svg\"\n    },\n    \"images-outline\": {\n      \"codepoint\": 62354,\n      \"source\": \"fixedSvg/images-outline.svg\"\n    },\n    \"images-sharp\": {\n      \"codepoint\": 62355,\n      \"source\": \"fixedSvg/images-sharp.svg\"\n    },\n    \"infinite\": {\n      \"codepoint\": 62356,\n      \"source\": \"fixedSvg/infinite.svg\"\n    },\n    \"infinite-outline\": {\n      \"codepoint\": 62357,\n      \"source\": \"fixedSvg/infinite-outline.svg\"\n    },\n    \"infinite-sharp\": {\n      \"codepoint\": 62358,\n      \"source\": \"fixedSvg/infinite-sharp.svg\"\n    },\n    \"information\": {\n      \"codepoint\": 62359,\n      \"source\": \"fixedSvg/information.svg\"\n    },\n    \"information-circle\": {\n      \"codepoint\": 62360,\n      \"source\": \"fixedSvg/information-circle.svg\"\n    },\n    \"information-circle-outline\": {\n      \"codepoint\": 62361,\n      \"source\": \"fixedSvg/information-circle-outline.svg\"\n    },\n    \"information-circle-sharp\": {\n      \"codepoint\": 62362,\n      \"source\": \"fixedSvg/information-circle-sharp.svg\"\n    },\n    \"information-outline\": {\n      \"codepoint\": 62363,\n      \"source\": \"fixedSvg/information-outline.svg\"\n    },\n    \"information-sharp\": {\n      \"codepoint\": 62364,\n      \"source\": \"fixedSvg/information-sharp.svg\"\n    },\n    \"invert-mode\": {\n      \"codepoint\": 62365,\n      \"source\": \"fixedSvg/invert-mode.svg\"\n    },\n    \"invert-mode-outline\": {\n      \"codepoint\": 62366,\n      \"source\": \"fixedSvg/invert-mode-outline.svg\"\n    },\n    \"invert-mode-sharp\": {\n      \"codepoint\": 62367,\n      \"source\": \"fixedSvg/invert-mode-sharp.svg\"\n    },\n    \"journal\": {\n      \"codepoint\": 62368,\n      \"source\": \"fixedSvg/journal.svg\"\n    },\n    \"journal-outline\": {\n      \"codepoint\": 62369,\n      \"source\": \"fixedSvg/journal-outline.svg\"\n    },\n    \"journal-sharp\": {\n      \"codepoint\": 62370,\n      \"source\": \"fixedSvg/journal-sharp.svg\"\n    },\n    \"key\": {\n      \"codepoint\": 62371,\n      \"source\": \"fixedSvg/key.svg\"\n    },\n    \"key-outline\": {\n      \"codepoint\": 62372,\n      \"source\": \"fixedSvg/key-outline.svg\"\n    },\n    \"key-sharp\": {\n      \"codepoint\": 62373,\n      \"source\": \"fixedSvg/key-sharp.svg\"\n    },\n    \"keypad\": {\n      \"codepoint\": 62374,\n      \"source\": \"fixedSvg/keypad.svg\"\n    },\n    \"keypad-outline\": {\n      \"codepoint\": 62375,\n      \"source\": \"fixedSvg/keypad-outline.svg\"\n    },\n    \"keypad-sharp\": {\n      \"codepoint\": 62376,\n      \"source\": \"fixedSvg/keypad-sharp.svg\"\n    },\n    \"language\": {\n      \"codepoint\": 62377,\n      \"source\": \"fixedSvg/language.svg\"\n    },\n    \"language-outline\": {\n      \"codepoint\": 62378,\n      \"source\": \"fixedSvg/language-outline.svg\"\n    },\n    \"language-sharp\": {\n      \"codepoint\": 62379,\n      \"source\": \"fixedSvg/language-sharp.svg\"\n    },\n    \"laptop\": {\n      \"codepoint\": 62380,\n      \"source\": \"fixedSvg/laptop.svg\"\n    },\n    \"laptop-outline\": {\n      \"codepoint\": 62381,\n      \"source\": \"fixedSvg/laptop-outline.svg\"\n    },\n    \"laptop-sharp\": {\n      \"codepoint\": 62382,\n      \"source\": \"fixedSvg/laptop-sharp.svg\"\n    },\n    \"layers\": {\n      \"codepoint\": 62383,\n      \"source\": \"fixedSvg/layers.svg\"\n    },\n    \"layers-outline\": {\n      \"codepoint\": 62384,\n      \"source\": \"fixedSvg/layers-outline.svg\"\n    },\n    \"layers-sharp\": {\n      \"codepoint\": 62385,\n      \"source\": \"fixedSvg/layers-sharp.svg\"\n    },\n    \"leaf\": {\n      \"codepoint\": 62386,\n      \"source\": \"fixedSvg/leaf.svg\"\n    },\n    \"leaf-outline\": {\n      \"codepoint\": 62387,\n      \"source\": \"fixedSvg/leaf-outline.svg\"\n    },\n    \"leaf-sharp\": {\n      \"codepoint\": 62388,\n      \"source\": \"fixedSvg/leaf-sharp.svg\"\n    },\n    \"library\": {\n      \"codepoint\": 62389,\n      \"source\": \"fixedSvg/library.svg\"\n    },\n    \"library-outline\": {\n      \"codepoint\": 62390,\n      \"source\": \"fixedSvg/library-outline.svg\"\n    },\n    \"library-sharp\": {\n      \"codepoint\": 62391,\n      \"source\": \"fixedSvg/library-sharp.svg\"\n    },\n    \"link\": {\n      \"codepoint\": 62392,\n      \"source\": \"fixedSvg/link.svg\"\n    },\n    \"link-outline\": {\n      \"codepoint\": 62393,\n      \"source\": \"fixedSvg/link-outline.svg\"\n    },\n    \"link-sharp\": {\n      \"codepoint\": 62394,\n      \"source\": \"fixedSvg/link-sharp.svg\"\n    },\n    \"list\": {\n      \"codepoint\": 62395,\n      \"source\": \"fixedSvg/list.svg\"\n    },\n    \"list-circle\": {\n      \"codepoint\": 62396,\n      \"source\": \"fixedSvg/list-circle.svg\"\n    },\n    \"list-circle-outline\": {\n      \"codepoint\": 62397,\n      \"source\": \"fixedSvg/list-circle-outline.svg\"\n    },\n    \"list-circle-sharp\": {\n      \"codepoint\": 62398,\n      \"source\": \"fixedSvg/list-circle-sharp.svg\"\n    },\n    \"list-outline\": {\n      \"codepoint\": 62399,\n      \"source\": \"fixedSvg/list-outline.svg\"\n    },\n    \"list-sharp\": {\n      \"codepoint\": 62400,\n      \"source\": \"fixedSvg/list-sharp.svg\"\n    },\n    \"locate\": {\n      \"codepoint\": 62401,\n      \"source\": \"fixedSvg/locate.svg\"\n    },\n    \"locate-outline\": {\n      \"codepoint\": 62402,\n      \"source\": \"fixedSvg/locate-outline.svg\"\n    },\n    \"locate-sharp\": {\n      \"codepoint\": 62403,\n      \"source\": \"fixedSvg/locate-sharp.svg\"\n    },\n    \"location\": {\n      \"codepoint\": 62404,\n      \"source\": \"fixedSvg/location.svg\"\n    },\n    \"location-outline\": {\n      \"codepoint\": 62405,\n      \"source\": \"fixedSvg/location-outline.svg\"\n    },\n    \"location-sharp\": {\n      \"codepoint\": 62406,\n      \"source\": \"fixedSvg/location-sharp.svg\"\n    },\n    \"lock-closed\": {\n      \"codepoint\": 62407,\n      \"source\": \"fixedSvg/lock-closed.svg\"\n    },\n    \"lock-closed-outline\": {\n      \"codepoint\": 62408,\n      \"source\": \"fixedSvg/lock-closed-outline.svg\"\n    },\n    \"lock-closed-sharp\": {\n      \"codepoint\": 62409,\n      \"source\": \"fixedSvg/lock-closed-sharp.svg\"\n    },\n    \"lock-open\": {\n      \"codepoint\": 62410,\n      \"source\": \"fixedSvg/lock-open.svg\"\n    },\n    \"lock-open-outline\": {\n      \"codepoint\": 62411,\n      \"source\": \"fixedSvg/lock-open-outline.svg\"\n    },\n    \"lock-open-sharp\": {\n      \"codepoint\": 62412,\n      \"source\": \"fixedSvg/lock-open-sharp.svg\"\n    },\n    \"log-in\": {\n      \"codepoint\": 62413,\n      \"source\": \"fixedSvg/log-in.svg\"\n    },\n    \"log-in-outline\": {\n      \"codepoint\": 62414,\n      \"source\": \"fixedSvg/log-in-outline.svg\"\n    },\n    \"log-in-sharp\": {\n      \"codepoint\": 62415,\n      \"source\": \"fixedSvg/log-in-sharp.svg\"\n    },\n    \"log-out\": {\n      \"codepoint\": 62416,\n      \"source\": \"fixedSvg/log-out.svg\"\n    },\n    \"log-out-outline\": {\n      \"codepoint\": 62417,\n      \"source\": \"fixedSvg/log-out-outline.svg\"\n    },\n    \"log-out-sharp\": {\n      \"codepoint\": 62418,\n      \"source\": \"fixedSvg/log-out-sharp.svg\"\n    },\n    \"logo-alipay\": {\n      \"codepoint\": 62419,\n      \"source\": \"fixedSvg/logo-alipay.svg\"\n    },\n    \"logo-amazon\": {\n      \"codepoint\": 62420,\n      \"source\": \"fixedSvg/logo-amazon.svg\"\n    },\n    \"logo-amplify\": {\n      \"codepoint\": 62421,\n      \"source\": \"fixedSvg/logo-amplify.svg\"\n    },\n    \"logo-android\": {\n      \"codepoint\": 62422,\n      \"source\": \"fixedSvg/logo-android.svg\"\n    },\n    \"logo-angular\": {\n      \"codepoint\": 62423,\n      \"source\": \"fixedSvg/logo-angular.svg\"\n    },\n    \"logo-appflow\": {\n      \"codepoint\": 63049,\n      \"source\": \"fixedSvg/logo-appflow.svg\"\n    },\n    \"logo-apple\": {\n      \"codepoint\": 62424,\n      \"source\": \"fixedSvg/logo-apple.svg\"\n    },\n    \"logo-apple-appstore\": {\n      \"codepoint\": 62425,\n      \"source\": \"fixedSvg/logo-apple-appstore.svg\"\n    },\n    \"logo-apple-ar\": {\n      \"codepoint\": 62426,\n      \"source\": \"fixedSvg/logo-apple-ar.svg\"\n    },\n    \"logo-behance\": {\n      \"codepoint\": 62427,\n      \"source\": \"fixedSvg/logo-behance.svg\"\n    },\n    \"logo-bitbucket\": {\n      \"codepoint\": 62428,\n      \"source\": \"fixedSvg/logo-bitbucket.svg\"\n    },\n    \"logo-bitcoin\": {\n      \"codepoint\": 62429,\n      \"source\": \"fixedSvg/logo-bitcoin.svg\"\n    },\n    \"logo-buffer\": {\n      \"codepoint\": 62430,\n      \"source\": \"fixedSvg/logo-buffer.svg\"\n    },\n    \"logo-capacitor\": {\n      \"codepoint\": 62431,\n      \"source\": \"fixedSvg/logo-capacitor.svg\"\n    },\n    \"logo-chrome\": {\n      \"codepoint\": 62432,\n      \"source\": \"fixedSvg/logo-chrome.svg\"\n    },\n    \"logo-closed-captioning\": {\n      \"codepoint\": 62433,\n      \"source\": \"fixedSvg/logo-closed-captioning.svg\"\n    },\n    \"logo-codepen\": {\n      \"codepoint\": 62434,\n      \"source\": \"fixedSvg/logo-codepen.svg\"\n    },\n    \"logo-css3\": {\n      \"codepoint\": 62435,\n      \"source\": \"fixedSvg/logo-css3.svg\"\n    },\n    \"logo-designernews\": {\n      \"codepoint\": 62436,\n      \"source\": \"fixedSvg/logo-designernews.svg\"\n    },\n    \"logo-deviantart\": {\n      \"codepoint\": 62437,\n      \"source\": \"fixedSvg/logo-deviantart.svg\"\n    },\n    \"logo-discord\": {\n      \"codepoint\": 62438,\n      \"source\": \"fixedSvg/logo-discord.svg\"\n    },\n    \"logo-docker\": {\n      \"codepoint\": 62439,\n      \"source\": \"fixedSvg/logo-docker.svg\"\n    },\n    \"logo-dribbble\": {\n      \"codepoint\": 62440,\n      \"source\": \"fixedSvg/logo-dribbble.svg\"\n    },\n    \"logo-dropbox\": {\n      \"codepoint\": 62441,\n      \"source\": \"fixedSvg/logo-dropbox.svg\"\n    },\n    \"logo-edge\": {\n      \"codepoint\": 62442,\n      \"source\": \"fixedSvg/logo-edge.svg\"\n    },\n    \"logo-electron\": {\n      \"codepoint\": 62443,\n      \"source\": \"fixedSvg/logo-electron.svg\"\n    },\n    \"logo-euro\": {\n      \"codepoint\": 62444,\n      \"source\": \"fixedSvg/logo-euro.svg\"\n    },\n    \"logo-facebook\": {\n      \"codepoint\": 62445,\n      \"source\": \"fixedSvg/logo-facebook.svg\"\n    },\n    \"logo-figma\": {\n      \"codepoint\": 62446,\n      \"source\": \"fixedSvg/logo-figma.svg\"\n    },\n    \"logo-firebase\": {\n      \"codepoint\": 62447,\n      \"source\": \"fixedSvg/logo-firebase.svg\"\n    },\n    \"logo-firefox\": {\n      \"codepoint\": 62448,\n      \"source\": \"fixedSvg/logo-firefox.svg\"\n    },\n    \"logo-flickr\": {\n      \"codepoint\": 62449,\n      \"source\": \"fixedSvg/logo-flickr.svg\"\n    },\n    \"logo-foursquare\": {\n      \"codepoint\": 62450,\n      \"source\": \"fixedSvg/logo-foursquare.svg\"\n    },\n    \"logo-github\": {\n      \"codepoint\": 62451,\n      \"source\": \"fixedSvg/logo-github.svg\"\n    },\n    \"logo-gitlab\": {\n      \"codepoint\": 62452,\n      \"source\": \"fixedSvg/logo-gitlab.svg\"\n    },\n    \"logo-google\": {\n      \"codepoint\": 62453,\n      \"source\": \"fixedSvg/logo-google.svg\"\n    },\n    \"logo-google-playstore\": {\n      \"codepoint\": 62454,\n      \"source\": \"fixedSvg/logo-google-playstore.svg\"\n    },\n    \"logo-hackernews\": {\n      \"codepoint\": 62455,\n      \"source\": \"fixedSvg/logo-hackernews.svg\"\n    },\n    \"logo-html5\": {\n      \"codepoint\": 62456,\n      \"source\": \"fixedSvg/logo-html5.svg\"\n    },\n    \"logo-instagram\": {\n      \"codepoint\": 62457,\n      \"source\": \"fixedSvg/logo-instagram.svg\"\n    },\n    \"logo-ionic\": {\n      \"codepoint\": 62458,\n      \"source\": \"fixedSvg/logo-ionic.svg\"\n    },\n    \"logo-ionitron\": {\n      \"codepoint\": 62459,\n      \"source\": \"fixedSvg/logo-ionitron.svg\"\n    },\n    \"logo-javascript\": {\n      \"codepoint\": 62460,\n      \"source\": \"fixedSvg/logo-javascript.svg\"\n    },\n    \"logo-laravel\": {\n      \"codepoint\": 62461,\n      \"source\": \"fixedSvg/logo-laravel.svg\"\n    },\n    \"logo-linkedin\": {\n      \"codepoint\": 62462,\n      \"source\": \"fixedSvg/logo-linkedin.svg\"\n    },\n    \"logo-markdown\": {\n      \"codepoint\": 62463,\n      \"source\": \"fixedSvg/logo-markdown.svg\"\n    },\n    \"logo-mastodon\": {\n      \"codepoint\": 62464,\n      \"source\": \"fixedSvg/logo-mastodon.svg\"\n    },\n    \"logo-medium\": {\n      \"codepoint\": 62465,\n      \"source\": \"fixedSvg/logo-medium.svg\"\n    },\n    \"logo-microsoft\": {\n      \"codepoint\": 62466,\n      \"source\": \"fixedSvg/logo-microsoft.svg\"\n    },\n    \"logo-no-smoking\": {\n      \"codepoint\": 62467,\n      \"source\": \"fixedSvg/logo-no-smoking.svg\"\n    },\n    \"logo-nodejs\": {\n      \"codepoint\": 62468,\n      \"source\": \"fixedSvg/logo-nodejs.svg\"\n    },\n    \"logo-npm\": {\n      \"codepoint\": 62469,\n      \"source\": \"fixedSvg/logo-npm.svg\"\n    },\n    \"logo-octocat\": {\n      \"codepoint\": 62470,\n      \"source\": \"fixedSvg/logo-octocat.svg\"\n    },\n    \"logo-paypal\": {\n      \"codepoint\": 62471,\n      \"source\": \"fixedSvg/logo-paypal.svg\"\n    },\n    \"logo-pinterest\": {\n      \"codepoint\": 62472,\n      \"source\": \"fixedSvg/logo-pinterest.svg\"\n    },\n    \"logo-playstation\": {\n      \"codepoint\": 62473,\n      \"source\": \"fixedSvg/logo-playstation.svg\"\n    },\n    \"logo-pwa\": {\n      \"codepoint\": 62474,\n      \"source\": \"fixedSvg/logo-pwa.svg\"\n    },\n    \"logo-python\": {\n      \"codepoint\": 62475,\n      \"source\": \"fixedSvg/logo-python.svg\"\n    },\n    \"logo-react\": {\n      \"codepoint\": 62476,\n      \"source\": \"fixedSvg/logo-react.svg\"\n    },\n    \"logo-reddit\": {\n      \"codepoint\": 62477,\n      \"source\": \"fixedSvg/logo-reddit.svg\"\n    },\n    \"logo-rss\": {\n      \"codepoint\": 62478,\n      \"source\": \"fixedSvg/logo-rss.svg\"\n    },\n    \"logo-sass\": {\n      \"codepoint\": 62479,\n      \"source\": \"fixedSvg/logo-sass.svg\"\n    },\n    \"logo-skype\": {\n      \"codepoint\": 62480,\n      \"source\": \"fixedSvg/logo-skype.svg\"\n    },\n    \"logo-slack\": {\n      \"codepoint\": 62481,\n      \"source\": \"fixedSvg/logo-slack.svg\"\n    },\n    \"logo-snapchat\": {\n      \"codepoint\": 62482,\n      \"source\": \"fixedSvg/logo-snapchat.svg\"\n    },\n    \"logo-soundcloud\": {\n      \"codepoint\": 62483,\n      \"source\": \"fixedSvg/logo-soundcloud.svg\"\n    },\n    \"logo-stackoverflow\": {\n      \"codepoint\": 62484,\n      \"source\": \"fixedSvg/logo-stackoverflow.svg\"\n    },\n    \"logo-steam\": {\n      \"codepoint\": 62485,\n      \"source\": \"fixedSvg/logo-steam.svg\"\n    },\n    \"logo-stencil\": {\n      \"codepoint\": 62486,\n      \"source\": \"fixedSvg/logo-stencil.svg\"\n    },\n    \"logo-tableau\": {\n      \"codepoint\": 62487,\n      \"source\": \"fixedSvg/logo-tableau.svg\"\n    },\n    \"logo-threads\": {\n      \"codepoint\": 63052,\n      \"source\": \"fixedSvg/logo-threads.svg\"\n    },\n    \"logo-tiktok\": {\n      \"codepoint\": 62488,\n      \"source\": \"fixedSvg/logo-tiktok.svg\"\n    },\n    \"logo-trapeze\": {\n      \"codepoint\": 63050,\n      \"source\": \"fixedSvg/logo-trapeze.svg\"\n    },\n    \"logo-tumblr\": {\n      \"codepoint\": 62489,\n      \"source\": \"fixedSvg/logo-tumblr.svg\"\n    },\n    \"logo-tux\": {\n      \"codepoint\": 62490,\n      \"source\": \"fixedSvg/logo-tux.svg\"\n    },\n    \"logo-twitch\": {\n      \"codepoint\": 62491,\n      \"source\": \"fixedSvg/logo-twitch.svg\"\n    },\n    \"logo-twitter\": {\n      \"codepoint\": 62492,\n      \"source\": \"fixedSvg/logo-twitter.svg\"\n    },\n    \"logo-usd\": {\n      \"codepoint\": 62493,\n      \"source\": \"fixedSvg/logo-usd.svg\"\n    },\n    \"logo-venmo\": {\n      \"codepoint\": 62494,\n      \"source\": \"fixedSvg/logo-venmo.svg\"\n    },\n    \"logo-vercel\": {\n      \"codepoint\": 62495,\n      \"source\": \"fixedSvg/logo-vercel.svg\"\n    },\n    \"logo-vimeo\": {\n      \"codepoint\": 62496,\n      \"source\": \"fixedSvg/logo-vimeo.svg\"\n    },\n    \"logo-vk\": {\n      \"codepoint\": 62497,\n      \"source\": \"fixedSvg/logo-vk.svg\"\n    },\n    \"logo-vue\": {\n      \"codepoint\": 62498,\n      \"source\": \"fixedSvg/logo-vue.svg\"\n    },\n    \"logo-web-component\": {\n      \"codepoint\": 62499,\n      \"source\": \"fixedSvg/logo-web-component.svg\"\n    },\n    \"logo-wechat\": {\n      \"codepoint\": 62500,\n      \"source\": \"fixedSvg/logo-wechat.svg\"\n    },\n    \"logo-whatsapp\": {\n      \"codepoint\": 62501,\n      \"source\": \"fixedSvg/logo-whatsapp.svg\"\n    },\n    \"logo-windows\": {\n      \"codepoint\": 62502,\n      \"source\": \"fixedSvg/logo-windows.svg\"\n    },\n    \"logo-wordpress\": {\n      \"codepoint\": 62503,\n      \"source\": \"fixedSvg/logo-wordpress.svg\"\n    },\n    \"logo-x\": {\n      \"codepoint\": 63051,\n      \"source\": \"fixedSvg/logo-x.svg\"\n    },\n    \"logo-xbox\": {\n      \"codepoint\": 62504,\n      \"source\": \"fixedSvg/logo-xbox.svg\"\n    },\n    \"logo-xing\": {\n      \"codepoint\": 62505,\n      \"source\": \"fixedSvg/logo-xing.svg\"\n    },\n    \"logo-yahoo\": {\n      \"codepoint\": 62506,\n      \"source\": \"fixedSvg/logo-yahoo.svg\"\n    },\n    \"logo-yen\": {\n      \"codepoint\": 62507,\n      \"source\": \"fixedSvg/logo-yen.svg\"\n    },\n    \"logo-youtube\": {\n      \"codepoint\": 62508,\n      \"source\": \"fixedSvg/logo-youtube.svg\"\n    },\n    \"magnet\": {\n      \"codepoint\": 62509,\n      \"source\": \"fixedSvg/magnet.svg\"\n    },\n    \"magnet-outline\": {\n      \"codepoint\": 62510,\n      \"source\": \"fixedSvg/magnet-outline.svg\"\n    },\n    \"magnet-sharp\": {\n      \"codepoint\": 62511,\n      \"source\": \"fixedSvg/magnet-sharp.svg\"\n    },\n    \"mail\": {\n      \"codepoint\": 62512,\n      \"source\": \"fixedSvg/mail.svg\"\n    },\n    \"mail-open\": {\n      \"codepoint\": 62513,\n      \"source\": \"fixedSvg/mail-open.svg\"\n    },\n    \"mail-open-outline\": {\n      \"codepoint\": 62514,\n      \"source\": \"fixedSvg/mail-open-outline.svg\"\n    },\n    \"mail-open-sharp\": {\n      \"codepoint\": 62515,\n      \"source\": \"fixedSvg/mail-open-sharp.svg\"\n    },\n    \"mail-outline\": {\n      \"codepoint\": 62516,\n      \"source\": \"fixedSvg/mail-outline.svg\"\n    },\n    \"mail-sharp\": {\n      \"codepoint\": 62517,\n      \"source\": \"fixedSvg/mail-sharp.svg\"\n    },\n    \"mail-unread\": {\n      \"codepoint\": 62518,\n      \"source\": \"fixedSvg/mail-unread.svg\"\n    },\n    \"mail-unread-outline\": {\n      \"codepoint\": 62519,\n      \"source\": \"fixedSvg/mail-unread-outline.svg\"\n    },\n    \"mail-unread-sharp\": {\n      \"codepoint\": 62520,\n      \"source\": \"fixedSvg/mail-unread-sharp.svg\"\n    },\n    \"male\": {\n      \"codepoint\": 62521,\n      \"source\": \"fixedSvg/male.svg\"\n    },\n    \"male-female\": {\n      \"codepoint\": 62522,\n      \"source\": \"fixedSvg/male-female.svg\"\n    },\n    \"male-female-outline\": {\n      \"codepoint\": 62523,\n      \"source\": \"fixedSvg/male-female-outline.svg\"\n    },\n    \"male-female-sharp\": {\n      \"codepoint\": 62524,\n      \"source\": \"fixedSvg/male-female-sharp.svg\"\n    },\n    \"male-outline\": {\n      \"codepoint\": 62525,\n      \"source\": \"fixedSvg/male-outline.svg\"\n    },\n    \"male-sharp\": {\n      \"codepoint\": 62526,\n      \"source\": \"fixedSvg/male-sharp.svg\"\n    },\n    \"man\": {\n      \"codepoint\": 62527,\n      \"source\": \"fixedSvg/man.svg\"\n    },\n    \"man-outline\": {\n      \"codepoint\": 62528,\n      \"source\": \"fixedSvg/man-outline.svg\"\n    },\n    \"man-sharp\": {\n      \"codepoint\": 62529,\n      \"source\": \"fixedSvg/man-sharp.svg\"\n    },\n    \"map\": {\n      \"codepoint\": 62530,\n      \"source\": \"fixedSvg/map.svg\"\n    },\n    \"map-outline\": {\n      \"codepoint\": 62531,\n      \"source\": \"fixedSvg/map-outline.svg\"\n    },\n    \"map-sharp\": {\n      \"codepoint\": 62532,\n      \"source\": \"fixedSvg/map-sharp.svg\"\n    },\n    \"medal\": {\n      \"codepoint\": 62533,\n      \"source\": \"fixedSvg/medal.svg\"\n    },\n    \"medal-outline\": {\n      \"codepoint\": 62534,\n      \"source\": \"fixedSvg/medal-outline.svg\"\n    },\n    \"medal-sharp\": {\n      \"codepoint\": 62535,\n      \"source\": \"fixedSvg/medal-sharp.svg\"\n    },\n    \"medical\": {\n      \"codepoint\": 62536,\n      \"source\": \"fixedSvg/medical.svg\"\n    },\n    \"medical-outline\": {\n      \"codepoint\": 62537,\n      \"source\": \"fixedSvg/medical-outline.svg\"\n    },\n    \"medical-sharp\": {\n      \"codepoint\": 62538,\n      \"source\": \"fixedSvg/medical-sharp.svg\"\n    },\n    \"medkit\": {\n      \"codepoint\": 62539,\n      \"source\": \"fixedSvg/medkit.svg\"\n    },\n    \"medkit-outline\": {\n      \"codepoint\": 62540,\n      \"source\": \"fixedSvg/medkit-outline.svg\"\n    },\n    \"medkit-sharp\": {\n      \"codepoint\": 62541,\n      \"source\": \"fixedSvg/medkit-sharp.svg\"\n    },\n    \"megaphone\": {\n      \"codepoint\": 62542,\n      \"source\": \"fixedSvg/megaphone.svg\"\n    },\n    \"megaphone-outline\": {\n      \"codepoint\": 62543,\n      \"source\": \"fixedSvg/megaphone-outline.svg\"\n    },\n    \"megaphone-sharp\": {\n      \"codepoint\": 62544,\n      \"source\": \"fixedSvg/megaphone-sharp.svg\"\n    },\n    \"menu\": {\n      \"codepoint\": 62545,\n      \"source\": \"fixedSvg/menu.svg\"\n    },\n    \"menu-outline\": {\n      \"codepoint\": 62546,\n      \"source\": \"fixedSvg/menu-outline.svg\"\n    },\n    \"menu-sharp\": {\n      \"codepoint\": 62547,\n      \"source\": \"fixedSvg/menu-sharp.svg\"\n    },\n    \"mic\": {\n      \"codepoint\": 62548,\n      \"source\": \"fixedSvg/mic.svg\"\n    },\n    \"mic-circle\": {\n      \"codepoint\": 62549,\n      \"source\": \"fixedSvg/mic-circle.svg\"\n    },\n    \"mic-circle-outline\": {\n      \"codepoint\": 62550,\n      \"source\": \"fixedSvg/mic-circle-outline.svg\"\n    },\n    \"mic-circle-sharp\": {\n      \"codepoint\": 62551,\n      \"source\": \"fixedSvg/mic-circle-sharp.svg\"\n    },\n    \"mic-off\": {\n      \"codepoint\": 62552,\n      \"source\": \"fixedSvg/mic-off.svg\"\n    },\n    \"mic-off-circle\": {\n      \"codepoint\": 62553,\n      \"source\": \"fixedSvg/mic-off-circle.svg\"\n    },\n    \"mic-off-circle-outline\": {\n      \"codepoint\": 62554,\n      \"source\": \"fixedSvg/mic-off-circle-outline.svg\"\n    },\n    \"mic-off-circle-sharp\": {\n      \"codepoint\": 62555,\n      \"source\": \"fixedSvg/mic-off-circle-sharp.svg\"\n    },\n    \"mic-off-outline\": {\n      \"codepoint\": 62556,\n      \"source\": \"fixedSvg/mic-off-outline.svg\"\n    },\n    \"mic-off-sharp\": {\n      \"codepoint\": 62557,\n      \"source\": \"fixedSvg/mic-off-sharp.svg\"\n    },\n    \"mic-outline\": {\n      \"codepoint\": 62558,\n      \"source\": \"fixedSvg/mic-outline.svg\"\n    },\n    \"mic-sharp\": {\n      \"codepoint\": 62559,\n      \"source\": \"fixedSvg/mic-sharp.svg\"\n    },\n    \"moon\": {\n      \"codepoint\": 62560,\n      \"source\": \"fixedSvg/moon.svg\"\n    },\n    \"moon-outline\": {\n      \"codepoint\": 62561,\n      \"source\": \"fixedSvg/moon-outline.svg\"\n    },\n    \"moon-sharp\": {\n      \"codepoint\": 62562,\n      \"source\": \"fixedSvg/moon-sharp.svg\"\n    },\n    \"move\": {\n      \"codepoint\": 62563,\n      \"source\": \"fixedSvg/move.svg\"\n    },\n    \"move-outline\": {\n      \"codepoint\": 62564,\n      \"source\": \"fixedSvg/move-outline.svg\"\n    },\n    \"move-sharp\": {\n      \"codepoint\": 62565,\n      \"source\": \"fixedSvg/move-sharp.svg\"\n    },\n    \"musical-note\": {\n      \"codepoint\": 62566,\n      \"source\": \"fixedSvg/musical-note.svg\"\n    },\n    \"musical-note-outline\": {\n      \"codepoint\": 62567,\n      \"source\": \"fixedSvg/musical-note-outline.svg\"\n    },\n    \"musical-note-sharp\": {\n      \"codepoint\": 62568,\n      \"source\": \"fixedSvg/musical-note-sharp.svg\"\n    },\n    \"musical-notes\": {\n      \"codepoint\": 62569,\n      \"source\": \"fixedSvg/musical-notes.svg\"\n    },\n    \"musical-notes-outline\": {\n      \"codepoint\": 62570,\n      \"source\": \"fixedSvg/musical-notes-outline.svg\"\n    },\n    \"musical-notes-sharp\": {\n      \"codepoint\": 62571,\n      \"source\": \"fixedSvg/musical-notes-sharp.svg\"\n    },\n    \"navigate\": {\n      \"codepoint\": 62572,\n      \"source\": \"fixedSvg/navigate.svg\"\n    },\n    \"navigate-circle\": {\n      \"codepoint\": 62573,\n      \"source\": \"fixedSvg/navigate-circle.svg\"\n    },\n    \"navigate-circle-outline\": {\n      \"codepoint\": 62574,\n      \"source\": \"fixedSvg/navigate-circle-outline.svg\"\n    },\n    \"navigate-circle-sharp\": {\n      \"codepoint\": 62575,\n      \"source\": \"fixedSvg/navigate-circle-sharp.svg\"\n    },\n    \"navigate-outline\": {\n      \"codepoint\": 62576,\n      \"source\": \"fixedSvg/navigate-outline.svg\"\n    },\n    \"navigate-sharp\": {\n      \"codepoint\": 62577,\n      \"source\": \"fixedSvg/navigate-sharp.svg\"\n    },\n    \"newspaper\": {\n      \"codepoint\": 62578,\n      \"source\": \"fixedSvg/newspaper.svg\"\n    },\n    \"newspaper-outline\": {\n      \"codepoint\": 62579,\n      \"source\": \"fixedSvg/newspaper-outline.svg\"\n    },\n    \"newspaper-sharp\": {\n      \"codepoint\": 62580,\n      \"source\": \"fixedSvg/newspaper-sharp.svg\"\n    },\n    \"notifications\": {\n      \"codepoint\": 62581,\n      \"source\": \"fixedSvg/notifications.svg\"\n    },\n    \"notifications-circle\": {\n      \"codepoint\": 62582,\n      \"source\": \"fixedSvg/notifications-circle.svg\"\n    },\n    \"notifications-circle-outline\": {\n      \"codepoint\": 62583,\n      \"source\": \"fixedSvg/notifications-circle-outline.svg\"\n    },\n    \"notifications-circle-sharp\": {\n      \"codepoint\": 62584,\n      \"source\": \"fixedSvg/notifications-circle-sharp.svg\"\n    },\n    \"notifications-off\": {\n      \"codepoint\": 62585,\n      \"source\": \"fixedSvg/notifications-off.svg\"\n    },\n    \"notifications-off-circle\": {\n      \"codepoint\": 62586,\n      \"source\": \"fixedSvg/notifications-off-circle.svg\"\n    },\n    \"notifications-off-circle-outline\": {\n      \"codepoint\": 62587,\n      \"source\": \"fixedSvg/notifications-off-circle-outline.svg\"\n    },\n    \"notifications-off-circle-sharp\": {\n      \"codepoint\": 62588,\n      \"source\": \"fixedSvg/notifications-off-circle-sharp.svg\"\n    },\n    \"notifications-off-outline\": {\n      \"codepoint\": 62589,\n      \"source\": \"fixedSvg/notifications-off-outline.svg\"\n    },\n    \"notifications-off-sharp\": {\n      \"codepoint\": 62590,\n      \"source\": \"fixedSvg/notifications-off-sharp.svg\"\n    },\n    \"notifications-outline\": {\n      \"codepoint\": 62591,\n      \"source\": \"fixedSvg/notifications-outline.svg\"\n    },\n    \"notifications-sharp\": {\n      \"codepoint\": 62592,\n      \"source\": \"fixedSvg/notifications-sharp.svg\"\n    },\n    \"nuclear\": {\n      \"codepoint\": 62593,\n      \"source\": \"fixedSvg/nuclear.svg\"\n    },\n    \"nuclear-outline\": {\n      \"codepoint\": 62594,\n      \"source\": \"fixedSvg/nuclear-outline.svg\"\n    },\n    \"nuclear-sharp\": {\n      \"codepoint\": 62595,\n      \"source\": \"fixedSvg/nuclear-sharp.svg\"\n    },\n    \"nutrition\": {\n      \"codepoint\": 62596,\n      \"source\": \"fixedSvg/nutrition.svg\"\n    },\n    \"nutrition-outline\": {\n      \"codepoint\": 62597,\n      \"source\": \"fixedSvg/nutrition-outline.svg\"\n    },\n    \"nutrition-sharp\": {\n      \"codepoint\": 62598,\n      \"source\": \"fixedSvg/nutrition-sharp.svg\"\n    },\n    \"open\": {\n      \"codepoint\": 62599,\n      \"source\": \"fixedSvg/open.svg\"\n    },\n    \"open-outline\": {\n      \"codepoint\": 62600,\n      \"source\": \"fixedSvg/open-outline.svg\"\n    },\n    \"open-sharp\": {\n      \"codepoint\": 62601,\n      \"source\": \"fixedSvg/open-sharp.svg\"\n    },\n    \"options\": {\n      \"codepoint\": 62602,\n      \"source\": \"fixedSvg/options.svg\"\n    },\n    \"options-outline\": {\n      \"codepoint\": 62603,\n      \"source\": \"fixedSvg/options-outline.svg\"\n    },\n    \"options-sharp\": {\n      \"codepoint\": 62604,\n      \"source\": \"fixedSvg/options-sharp.svg\"\n    },\n    \"paper-plane\": {\n      \"codepoint\": 62605,\n      \"source\": \"fixedSvg/paper-plane.svg\"\n    },\n    \"paper-plane-outline\": {\n      \"codepoint\": 62606,\n      \"source\": \"fixedSvg/paper-plane-outline.svg\"\n    },\n    \"paper-plane-sharp\": {\n      \"codepoint\": 62607,\n      \"source\": \"fixedSvg/paper-plane-sharp.svg\"\n    },\n    \"partly-sunny\": {\n      \"codepoint\": 62608,\n      \"source\": \"fixedSvg/partly-sunny.svg\"\n    },\n    \"partly-sunny-outline\": {\n      \"codepoint\": 62609,\n      \"source\": \"fixedSvg/partly-sunny-outline.svg\"\n    },\n    \"partly-sunny-sharp\": {\n      \"codepoint\": 62610,\n      \"source\": \"fixedSvg/partly-sunny-sharp.svg\"\n    },\n    \"pause\": {\n      \"codepoint\": 62611,\n      \"source\": \"fixedSvg/pause.svg\"\n    },\n    \"pause-circle\": {\n      \"codepoint\": 62612,\n      \"source\": \"fixedSvg/pause-circle.svg\"\n    },\n    \"pause-circle-outline\": {\n      \"codepoint\": 62613,\n      \"source\": \"fixedSvg/pause-circle-outline.svg\"\n    },\n    \"pause-circle-sharp\": {\n      \"codepoint\": 62614,\n      \"source\": \"fixedSvg/pause-circle-sharp.svg\"\n    },\n    \"pause-outline\": {\n      \"codepoint\": 62615,\n      \"source\": \"fixedSvg/pause-outline.svg\"\n    },\n    \"pause-sharp\": {\n      \"codepoint\": 62616,\n      \"source\": \"fixedSvg/pause-sharp.svg\"\n    },\n    \"paw\": {\n      \"codepoint\": 62617,\n      \"source\": \"fixedSvg/paw.svg\"\n    },\n    \"paw-outline\": {\n      \"codepoint\": 62618,\n      \"source\": \"fixedSvg/paw-outline.svg\"\n    },\n    \"paw-sharp\": {\n      \"codepoint\": 62619,\n      \"source\": \"fixedSvg/paw-sharp.svg\"\n    },\n    \"pencil\": {\n      \"codepoint\": 62620,\n      \"source\": \"fixedSvg/pencil.svg\"\n    },\n    \"pencil-outline\": {\n      \"codepoint\": 62621,\n      \"source\": \"fixedSvg/pencil-outline.svg\"\n    },\n    \"pencil-sharp\": {\n      \"codepoint\": 62622,\n      \"source\": \"fixedSvg/pencil-sharp.svg\"\n    },\n    \"people\": {\n      \"codepoint\": 62623,\n      \"source\": \"fixedSvg/people.svg\"\n    },\n    \"people-circle\": {\n      \"codepoint\": 62624,\n      \"source\": \"fixedSvg/people-circle.svg\"\n    },\n    \"people-circle-outline\": {\n      \"codepoint\": 62625,\n      \"source\": \"fixedSvg/people-circle-outline.svg\"\n    },\n    \"people-circle-sharp\": {\n      \"codepoint\": 62626,\n      \"source\": \"fixedSvg/people-circle-sharp.svg\"\n    },\n    \"people-outline\": {\n      \"codepoint\": 62627,\n      \"source\": \"fixedSvg/people-outline.svg\"\n    },\n    \"people-sharp\": {\n      \"codepoint\": 62628,\n      \"source\": \"fixedSvg/people-sharp.svg\"\n    },\n    \"person\": {\n      \"codepoint\": 62629,\n      \"source\": \"fixedSvg/person.svg\"\n    },\n    \"person-add\": {\n      \"codepoint\": 62630,\n      \"source\": \"fixedSvg/person-add.svg\"\n    },\n    \"person-add-outline\": {\n      \"codepoint\": 62631,\n      \"source\": \"fixedSvg/person-add-outline.svg\"\n    },\n    \"person-add-sharp\": {\n      \"codepoint\": 62632,\n      \"source\": \"fixedSvg/person-add-sharp.svg\"\n    },\n    \"person-circle\": {\n      \"codepoint\": 62633,\n      \"source\": \"fixedSvg/person-circle.svg\"\n    },\n    \"person-circle-outline\": {\n      \"codepoint\": 62634,\n      \"source\": \"fixedSvg/person-circle-outline.svg\"\n    },\n    \"person-circle-sharp\": {\n      \"codepoint\": 62635,\n      \"source\": \"fixedSvg/person-circle-sharp.svg\"\n    },\n    \"person-outline\": {\n      \"codepoint\": 62636,\n      \"source\": \"fixedSvg/person-outline.svg\"\n    },\n    \"person-remove\": {\n      \"codepoint\": 62637,\n      \"source\": \"fixedSvg/person-remove.svg\"\n    },\n    \"person-remove-outline\": {\n      \"codepoint\": 62638,\n      \"source\": \"fixedSvg/person-remove-outline.svg\"\n    },\n    \"person-remove-sharp\": {\n      \"codepoint\": 62639,\n      \"source\": \"fixedSvg/person-remove-sharp.svg\"\n    },\n    \"person-sharp\": {\n      \"codepoint\": 62640,\n      \"source\": \"fixedSvg/person-sharp.svg\"\n    },\n    \"phone-landscape\": {\n      \"codepoint\": 62641,\n      \"source\": \"fixedSvg/phone-landscape.svg\"\n    },\n    \"phone-landscape-outline\": {\n      \"codepoint\": 62642,\n      \"source\": \"fixedSvg/phone-landscape-outline.svg\"\n    },\n    \"phone-landscape-sharp\": {\n      \"codepoint\": 62643,\n      \"source\": \"fixedSvg/phone-landscape-sharp.svg\"\n    },\n    \"phone-portrait\": {\n      \"codepoint\": 62644,\n      \"source\": \"fixedSvg/phone-portrait.svg\"\n    },\n    \"phone-portrait-outline\": {\n      \"codepoint\": 62645,\n      \"source\": \"fixedSvg/phone-portrait-outline.svg\"\n    },\n    \"phone-portrait-sharp\": {\n      \"codepoint\": 62646,\n      \"source\": \"fixedSvg/phone-portrait-sharp.svg\"\n    },\n    \"pie-chart\": {\n      \"codepoint\": 62647,\n      \"source\": \"fixedSvg/pie-chart.svg\"\n    },\n    \"pie-chart-outline\": {\n      \"codepoint\": 62648,\n      \"source\": \"fixedSvg/pie-chart-outline.svg\"\n    },\n    \"pie-chart-sharp\": {\n      \"codepoint\": 62649,\n      \"source\": \"fixedSvg/pie-chart-sharp.svg\"\n    },\n    \"pin\": {\n      \"codepoint\": 62650,\n      \"source\": \"fixedSvg/pin.svg\"\n    },\n    \"pin-outline\": {\n      \"codepoint\": 62651,\n      \"source\": \"fixedSvg/pin-outline.svg\"\n    },\n    \"pin-sharp\": {\n      \"codepoint\": 62652,\n      \"source\": \"fixedSvg/pin-sharp.svg\"\n    },\n    \"pint\": {\n      \"codepoint\": 62653,\n      \"source\": \"fixedSvg/pint.svg\"\n    },\n    \"pint-outline\": {\n      \"codepoint\": 62654,\n      \"source\": \"fixedSvg/pint-outline.svg\"\n    },\n    \"pint-sharp\": {\n      \"codepoint\": 62655,\n      \"source\": \"fixedSvg/pint-sharp.svg\"\n    },\n    \"pizza\": {\n      \"codepoint\": 62656,\n      \"source\": \"fixedSvg/pizza.svg\"\n    },\n    \"pizza-outline\": {\n      \"codepoint\": 62657,\n      \"source\": \"fixedSvg/pizza-outline.svg\"\n    },\n    \"pizza-sharp\": {\n      \"codepoint\": 62658,\n      \"source\": \"fixedSvg/pizza-sharp.svg\"\n    },\n    \"planet\": {\n      \"codepoint\": 62659,\n      \"source\": \"fixedSvg/planet.svg\"\n    },\n    \"planet-outline\": {\n      \"codepoint\": 62660,\n      \"source\": \"fixedSvg/planet-outline.svg\"\n    },\n    \"planet-sharp\": {\n      \"codepoint\": 62661,\n      \"source\": \"fixedSvg/planet-sharp.svg\"\n    },\n    \"play\": {\n      \"codepoint\": 62662,\n      \"source\": \"fixedSvg/play.svg\"\n    },\n    \"play-back\": {\n      \"codepoint\": 62663,\n      \"source\": \"fixedSvg/play-back.svg\"\n    },\n    \"play-back-circle\": {\n      \"codepoint\": 62664,\n      \"source\": \"fixedSvg/play-back-circle.svg\"\n    },\n    \"play-back-circle-outline\": {\n      \"codepoint\": 62665,\n      \"source\": \"fixedSvg/play-back-circle-outline.svg\"\n    },\n    \"play-back-circle-sharp\": {\n      \"codepoint\": 62666,\n      \"source\": \"fixedSvg/play-back-circle-sharp.svg\"\n    },\n    \"play-back-outline\": {\n      \"codepoint\": 62667,\n      \"source\": \"fixedSvg/play-back-outline.svg\"\n    },\n    \"play-back-sharp\": {\n      \"codepoint\": 62668,\n      \"source\": \"fixedSvg/play-back-sharp.svg\"\n    },\n    \"play-circle\": {\n      \"codepoint\": 62669,\n      \"source\": \"fixedSvg/play-circle.svg\"\n    },\n    \"play-circle-outline\": {\n      \"codepoint\": 62670,\n      \"source\": \"fixedSvg/play-circle-outline.svg\"\n    },\n    \"play-circle-sharp\": {\n      \"codepoint\": 62671,\n      \"source\": \"fixedSvg/play-circle-sharp.svg\"\n    },\n    \"play-forward\": {\n      \"codepoint\": 62672,\n      \"source\": \"fixedSvg/play-forward.svg\"\n    },\n    \"play-forward-circle\": {\n      \"codepoint\": 62673,\n      \"source\": \"fixedSvg/play-forward-circle.svg\"\n    },\n    \"play-forward-circle-outline\": {\n      \"codepoint\": 62674,\n      \"source\": \"fixedSvg/play-forward-circle-outline.svg\"\n    },\n    \"play-forward-circle-sharp\": {\n      \"codepoint\": 62675,\n      \"source\": \"fixedSvg/play-forward-circle-sharp.svg\"\n    },\n    \"play-forward-outline\": {\n      \"codepoint\": 62676,\n      \"source\": \"fixedSvg/play-forward-outline.svg\"\n    },\n    \"play-forward-sharp\": {\n      \"codepoint\": 62677,\n      \"source\": \"fixedSvg/play-forward-sharp.svg\"\n    },\n    \"play-outline\": {\n      \"codepoint\": 62678,\n      \"source\": \"fixedSvg/play-outline.svg\"\n    },\n    \"play-sharp\": {\n      \"codepoint\": 62679,\n      \"source\": \"fixedSvg/play-sharp.svg\"\n    },\n    \"play-skip-back\": {\n      \"codepoint\": 62680,\n      \"source\": \"fixedSvg/play-skip-back.svg\"\n    },\n    \"play-skip-back-circle\": {\n      \"codepoint\": 62681,\n      \"source\": \"fixedSvg/play-skip-back-circle.svg\"\n    },\n    \"play-skip-back-circle-outline\": {\n      \"codepoint\": 62682,\n      \"source\": \"fixedSvg/play-skip-back-circle-outline.svg\"\n    },\n    \"play-skip-back-circle-sharp\": {\n      \"codepoint\": 62683,\n      \"source\": \"fixedSvg/play-skip-back-circle-sharp.svg\"\n    },\n    \"play-skip-back-outline\": {\n      \"codepoint\": 62684,\n      \"source\": \"fixedSvg/play-skip-back-outline.svg\"\n    },\n    \"play-skip-back-sharp\": {\n      \"codepoint\": 62685,\n      \"source\": \"fixedSvg/play-skip-back-sharp.svg\"\n    },\n    \"play-skip-forward\": {\n      \"codepoint\": 62686,\n      \"source\": \"fixedSvg/play-skip-forward.svg\"\n    },\n    \"play-skip-forward-circle\": {\n      \"codepoint\": 62687,\n      \"source\": \"fixedSvg/play-skip-forward-circle.svg\"\n    },\n    \"play-skip-forward-circle-outline\": {\n      \"codepoint\": 62688,\n      \"source\": \"fixedSvg/play-skip-forward-circle-outline.svg\"\n    },\n    \"play-skip-forward-circle-sharp\": {\n      \"codepoint\": 62689,\n      \"source\": \"fixedSvg/play-skip-forward-circle-sharp.svg\"\n    },\n    \"play-skip-forward-outline\": {\n      \"codepoint\": 62690,\n      \"source\": \"fixedSvg/play-skip-forward-outline.svg\"\n    },\n    \"play-skip-forward-sharp\": {\n      \"codepoint\": 62691,\n      \"source\": \"fixedSvg/play-skip-forward-sharp.svg\"\n    },\n    \"podium\": {\n      \"codepoint\": 62692,\n      \"source\": \"fixedSvg/podium.svg\"\n    },\n    \"podium-outline\": {\n      \"codepoint\": 62693,\n      \"source\": \"fixedSvg/podium-outline.svg\"\n    },\n    \"podium-sharp\": {\n      \"codepoint\": 62694,\n      \"source\": \"fixedSvg/podium-sharp.svg\"\n    },\n    \"power\": {\n      \"codepoint\": 62695,\n      \"source\": \"fixedSvg/power.svg\"\n    },\n    \"power-outline\": {\n      \"codepoint\": 62696,\n      \"source\": \"fixedSvg/power-outline.svg\"\n    },\n    \"power-sharp\": {\n      \"codepoint\": 62697,\n      \"source\": \"fixedSvg/power-sharp.svg\"\n    },\n    \"pricetag\": {\n      \"codepoint\": 62698,\n      \"source\": \"fixedSvg/pricetag.svg\"\n    },\n    \"pricetag-outline\": {\n      \"codepoint\": 62699,\n      \"source\": \"fixedSvg/pricetag-outline.svg\"\n    },\n    \"pricetag-sharp\": {\n      \"codepoint\": 62700,\n      \"source\": \"fixedSvg/pricetag-sharp.svg\"\n    },\n    \"pricetags\": {\n      \"codepoint\": 62701,\n      \"source\": \"fixedSvg/pricetags.svg\"\n    },\n    \"pricetags-outline\": {\n      \"codepoint\": 62702,\n      \"source\": \"fixedSvg/pricetags-outline.svg\"\n    },\n    \"pricetags-sharp\": {\n      \"codepoint\": 62703,\n      \"source\": \"fixedSvg/pricetags-sharp.svg\"\n    },\n    \"print\": {\n      \"codepoint\": 62704,\n      \"source\": \"fixedSvg/print.svg\"\n    },\n    \"print-outline\": {\n      \"codepoint\": 62705,\n      \"source\": \"fixedSvg/print-outline.svg\"\n    },\n    \"print-sharp\": {\n      \"codepoint\": 62706,\n      \"source\": \"fixedSvg/print-sharp.svg\"\n    },\n    \"prism\": {\n      \"codepoint\": 62707,\n      \"source\": \"fixedSvg/prism.svg\"\n    },\n    \"prism-outline\": {\n      \"codepoint\": 62708,\n      \"source\": \"fixedSvg/prism-outline.svg\"\n    },\n    \"prism-sharp\": {\n      \"codepoint\": 62709,\n      \"source\": \"fixedSvg/prism-sharp.svg\"\n    },\n    \"pulse\": {\n      \"codepoint\": 62710,\n      \"source\": \"fixedSvg/pulse.svg\"\n    },\n    \"pulse-outline\": {\n      \"codepoint\": 62711,\n      \"source\": \"fixedSvg/pulse-outline.svg\"\n    },\n    \"pulse-sharp\": {\n      \"codepoint\": 62712,\n      \"source\": \"fixedSvg/pulse-sharp.svg\"\n    },\n    \"push\": {\n      \"codepoint\": 62713,\n      \"source\": \"fixedSvg/push.svg\"\n    },\n    \"push-outline\": {\n      \"codepoint\": 62714,\n      \"source\": \"fixedSvg/push-outline.svg\"\n    },\n    \"push-sharp\": {\n      \"codepoint\": 62715,\n      \"source\": \"fixedSvg/push-sharp.svg\"\n    },\n    \"qr-code\": {\n      \"codepoint\": 62716,\n      \"source\": \"fixedSvg/qr-code.svg\"\n    },\n    \"qr-code-outline\": {\n      \"codepoint\": 62717,\n      \"source\": \"fixedSvg/qr-code-outline.svg\"\n    },\n    \"qr-code-sharp\": {\n      \"codepoint\": 62718,\n      \"source\": \"fixedSvg/qr-code-sharp.svg\"\n    },\n    \"radio\": {\n      \"codepoint\": 62719,\n      \"source\": \"fixedSvg/radio.svg\"\n    },\n    \"radio-button-off\": {\n      \"codepoint\": 62720,\n      \"source\": \"fixedSvg/radio-button-off.svg\"\n    },\n    \"radio-button-off-outline\": {\n      \"codepoint\": 62721,\n      \"source\": \"fixedSvg/radio-button-off-outline.svg\"\n    },\n    \"radio-button-off-sharp\": {\n      \"codepoint\": 62722,\n      \"source\": \"fixedSvg/radio-button-off-sharp.svg\"\n    },\n    \"radio-button-on\": {\n      \"codepoint\": 62723,\n      \"source\": \"fixedSvg/radio-button-on.svg\"\n    },\n    \"radio-button-on-outline\": {\n      \"codepoint\": 62724,\n      \"source\": \"fixedSvg/radio-button-on-outline.svg\"\n    },\n    \"radio-button-on-sharp\": {\n      \"codepoint\": 62725,\n      \"source\": \"fixedSvg/radio-button-on-sharp.svg\"\n    },\n    \"radio-outline\": {\n      \"codepoint\": 62726,\n      \"source\": \"fixedSvg/radio-outline.svg\"\n    },\n    \"radio-sharp\": {\n      \"codepoint\": 62727,\n      \"source\": \"fixedSvg/radio-sharp.svg\"\n    },\n    \"rainy\": {\n      \"codepoint\": 62728,\n      \"source\": \"fixedSvg/rainy.svg\"\n    },\n    \"rainy-outline\": {\n      \"codepoint\": 62729,\n      \"source\": \"fixedSvg/rainy-outline.svg\"\n    },\n    \"rainy-sharp\": {\n      \"codepoint\": 62730,\n      \"source\": \"fixedSvg/rainy-sharp.svg\"\n    },\n    \"reader\": {\n      \"codepoint\": 62731,\n      \"source\": \"fixedSvg/reader.svg\"\n    },\n    \"reader-outline\": {\n      \"codepoint\": 62732,\n      \"source\": \"fixedSvg/reader-outline.svg\"\n    },\n    \"reader-sharp\": {\n      \"codepoint\": 62733,\n      \"source\": \"fixedSvg/reader-sharp.svg\"\n    },\n    \"receipt\": {\n      \"codepoint\": 62734,\n      \"source\": \"fixedSvg/receipt.svg\"\n    },\n    \"receipt-outline\": {\n      \"codepoint\": 62735,\n      \"source\": \"fixedSvg/receipt-outline.svg\"\n    },\n    \"receipt-sharp\": {\n      \"codepoint\": 62736,\n      \"source\": \"fixedSvg/receipt-sharp.svg\"\n    },\n    \"recording\": {\n      \"codepoint\": 62737,\n      \"source\": \"fixedSvg/recording.svg\"\n    },\n    \"recording-outline\": {\n      \"codepoint\": 62738,\n      \"source\": \"fixedSvg/recording-outline.svg\"\n    },\n    \"recording-sharp\": {\n      \"codepoint\": 62739,\n      \"source\": \"fixedSvg/recording-sharp.svg\"\n    },\n    \"refresh\": {\n      \"codepoint\": 62740,\n      \"source\": \"fixedSvg/refresh.svg\"\n    },\n    \"refresh-circle\": {\n      \"codepoint\": 62741,\n      \"source\": \"fixedSvg/refresh-circle.svg\"\n    },\n    \"refresh-circle-outline\": {\n      \"codepoint\": 62742,\n      \"source\": \"fixedSvg/refresh-circle-outline.svg\"\n    },\n    \"refresh-circle-sharp\": {\n      \"codepoint\": 62743,\n      \"source\": \"fixedSvg/refresh-circle-sharp.svg\"\n    },\n    \"refresh-outline\": {\n      \"codepoint\": 62744,\n      \"source\": \"fixedSvg/refresh-outline.svg\"\n    },\n    \"refresh-sharp\": {\n      \"codepoint\": 62745,\n      \"source\": \"fixedSvg/refresh-sharp.svg\"\n    },\n    \"reload\": {\n      \"codepoint\": 62746,\n      \"source\": \"fixedSvg/reload.svg\"\n    },\n    \"reload-circle\": {\n      \"codepoint\": 62747,\n      \"source\": \"fixedSvg/reload-circle.svg\"\n    },\n    \"reload-circle-outline\": {\n      \"codepoint\": 62748,\n      \"source\": \"fixedSvg/reload-circle-outline.svg\"\n    },\n    \"reload-circle-sharp\": {\n      \"codepoint\": 62749,\n      \"source\": \"fixedSvg/reload-circle-sharp.svg\"\n    },\n    \"reload-outline\": {\n      \"codepoint\": 62750,\n      \"source\": \"fixedSvg/reload-outline.svg\"\n    },\n    \"reload-sharp\": {\n      \"codepoint\": 62751,\n      \"source\": \"fixedSvg/reload-sharp.svg\"\n    },\n    \"remove\": {\n      \"codepoint\": 62752,\n      \"source\": \"fixedSvg/remove.svg\"\n    },\n    \"remove-circle\": {\n      \"codepoint\": 62753,\n      \"source\": \"fixedSvg/remove-circle.svg\"\n    },\n    \"remove-circle-outline\": {\n      \"codepoint\": 62754,\n      \"source\": \"fixedSvg/remove-circle-outline.svg\"\n    },\n    \"remove-circle-sharp\": {\n      \"codepoint\": 62755,\n      \"source\": \"fixedSvg/remove-circle-sharp.svg\"\n    },\n    \"remove-outline\": {\n      \"codepoint\": 62756,\n      \"source\": \"fixedSvg/remove-outline.svg\"\n    },\n    \"remove-sharp\": {\n      \"codepoint\": 62757,\n      \"source\": \"fixedSvg/remove-sharp.svg\"\n    },\n    \"reorder-four\": {\n      \"codepoint\": 62758,\n      \"source\": \"fixedSvg/reorder-four.svg\"\n    },\n    \"reorder-four-outline\": {\n      \"codepoint\": 62759,\n      \"source\": \"fixedSvg/reorder-four-outline.svg\"\n    },\n    \"reorder-four-sharp\": {\n      \"codepoint\": 62760,\n      \"source\": \"fixedSvg/reorder-four-sharp.svg\"\n    },\n    \"reorder-three\": {\n      \"codepoint\": 62761,\n      \"source\": \"fixedSvg/reorder-three.svg\"\n    },\n    \"reorder-three-outline\": {\n      \"codepoint\": 62762,\n      \"source\": \"fixedSvg/reorder-three-outline.svg\"\n    },\n    \"reorder-three-sharp\": {\n      \"codepoint\": 62763,\n      \"source\": \"fixedSvg/reorder-three-sharp.svg\"\n    },\n    \"reorder-two\": {\n      \"codepoint\": 62764,\n      \"source\": \"fixedSvg/reorder-two.svg\"\n    },\n    \"reorder-two-outline\": {\n      \"codepoint\": 62765,\n      \"source\": \"fixedSvg/reorder-two-outline.svg\"\n    },\n    \"reorder-two-sharp\": {\n      \"codepoint\": 62766,\n      \"source\": \"fixedSvg/reorder-two-sharp.svg\"\n    },\n    \"repeat\": {\n      \"codepoint\": 62767,\n      \"source\": \"fixedSvg/repeat.svg\"\n    },\n    \"repeat-outline\": {\n      \"codepoint\": 62768,\n      \"source\": \"fixedSvg/repeat-outline.svg\"\n    },\n    \"repeat-sharp\": {\n      \"codepoint\": 62769,\n      \"source\": \"fixedSvg/repeat-sharp.svg\"\n    },\n    \"resize\": {\n      \"codepoint\": 62770,\n      \"source\": \"fixedSvg/resize.svg\"\n    },\n    \"resize-outline\": {\n      \"codepoint\": 62771,\n      \"source\": \"fixedSvg/resize-outline.svg\"\n    },\n    \"resize-sharp\": {\n      \"codepoint\": 62772,\n      \"source\": \"fixedSvg/resize-sharp.svg\"\n    },\n    \"restaurant\": {\n      \"codepoint\": 62773,\n      \"source\": \"fixedSvg/restaurant.svg\"\n    },\n    \"restaurant-outline\": {\n      \"codepoint\": 62774,\n      \"source\": \"fixedSvg/restaurant-outline.svg\"\n    },\n    \"restaurant-sharp\": {\n      \"codepoint\": 62775,\n      \"source\": \"fixedSvg/restaurant-sharp.svg\"\n    },\n    \"return-down-back\": {\n      \"codepoint\": 62776,\n      \"source\": \"fixedSvg/return-down-back.svg\"\n    },\n    \"return-down-back-outline\": {\n      \"codepoint\": 62777,\n      \"source\": \"fixedSvg/return-down-back-outline.svg\"\n    },\n    \"return-down-back-sharp\": {\n      \"codepoint\": 62778,\n      \"source\": \"fixedSvg/return-down-back-sharp.svg\"\n    },\n    \"return-down-forward\": {\n      \"codepoint\": 62779,\n      \"source\": \"fixedSvg/return-down-forward.svg\"\n    },\n    \"return-down-forward-outline\": {\n      \"codepoint\": 62780,\n      \"source\": \"fixedSvg/return-down-forward-outline.svg\"\n    },\n    \"return-down-forward-sharp\": {\n      \"codepoint\": 62781,\n      \"source\": \"fixedSvg/return-down-forward-sharp.svg\"\n    },\n    \"return-up-back\": {\n      \"codepoint\": 62782,\n      \"source\": \"fixedSvg/return-up-back.svg\"\n    },\n    \"return-up-back-outline\": {\n      \"codepoint\": 62783,\n      \"source\": \"fixedSvg/return-up-back-outline.svg\"\n    },\n    \"return-up-back-sharp\": {\n      \"codepoint\": 62784,\n      \"source\": \"fixedSvg/return-up-back-sharp.svg\"\n    },\n    \"return-up-forward\": {\n      \"codepoint\": 62785,\n      \"source\": \"fixedSvg/return-up-forward.svg\"\n    },\n    \"return-up-forward-outline\": {\n      \"codepoint\": 62786,\n      \"source\": \"fixedSvg/return-up-forward-outline.svg\"\n    },\n    \"return-up-forward-sharp\": {\n      \"codepoint\": 62787,\n      \"source\": \"fixedSvg/return-up-forward-sharp.svg\"\n    },\n    \"ribbon\": {\n      \"codepoint\": 62788,\n      \"source\": \"fixedSvg/ribbon.svg\"\n    },\n    \"ribbon-outline\": {\n      \"codepoint\": 62789,\n      \"source\": \"fixedSvg/ribbon-outline.svg\"\n    },\n    \"ribbon-sharp\": {\n      \"codepoint\": 62790,\n      \"source\": \"fixedSvg/ribbon-sharp.svg\"\n    },\n    \"rocket\": {\n      \"codepoint\": 62791,\n      \"source\": \"fixedSvg/rocket.svg\"\n    },\n    \"rocket-outline\": {\n      \"codepoint\": 62792,\n      \"source\": \"fixedSvg/rocket-outline.svg\"\n    },\n    \"rocket-sharp\": {\n      \"codepoint\": 62793,\n      \"source\": \"fixedSvg/rocket-sharp.svg\"\n    },\n    \"rose\": {\n      \"codepoint\": 62794,\n      \"source\": \"fixedSvg/rose.svg\"\n    },\n    \"rose-outline\": {\n      \"codepoint\": 62795,\n      \"source\": \"fixedSvg/rose-outline.svg\"\n    },\n    \"rose-sharp\": {\n      \"codepoint\": 62796,\n      \"source\": \"fixedSvg/rose-sharp.svg\"\n    },\n    \"sad\": {\n      \"codepoint\": 62797,\n      \"source\": \"fixedSvg/sad.svg\"\n    },\n    \"sad-outline\": {\n      \"codepoint\": 62798,\n      \"source\": \"fixedSvg/sad-outline.svg\"\n    },\n    \"sad-sharp\": {\n      \"codepoint\": 62799,\n      \"source\": \"fixedSvg/sad-sharp.svg\"\n    },\n    \"save\": {\n      \"codepoint\": 62800,\n      \"source\": \"fixedSvg/save.svg\"\n    },\n    \"save-outline\": {\n      \"codepoint\": 62801,\n      \"source\": \"fixedSvg/save-outline.svg\"\n    },\n    \"save-sharp\": {\n      \"codepoint\": 62802,\n      \"source\": \"fixedSvg/save-sharp.svg\"\n    },\n    \"scale\": {\n      \"codepoint\": 62803,\n      \"source\": \"fixedSvg/scale.svg\"\n    },\n    \"scale-outline\": {\n      \"codepoint\": 62804,\n      \"source\": \"fixedSvg/scale-outline.svg\"\n    },\n    \"scale-sharp\": {\n      \"codepoint\": 62805,\n      \"source\": \"fixedSvg/scale-sharp.svg\"\n    },\n    \"scan\": {\n      \"codepoint\": 62806,\n      \"source\": \"fixedSvg/scan.svg\"\n    },\n    \"scan-circle\": {\n      \"codepoint\": 62807,\n      \"source\": \"fixedSvg/scan-circle.svg\"\n    },\n    \"scan-circle-outline\": {\n      \"codepoint\": 62808,\n      \"source\": \"fixedSvg/scan-circle-outline.svg\"\n    },\n    \"scan-circle-sharp\": {\n      \"codepoint\": 62809,\n      \"source\": \"fixedSvg/scan-circle-sharp.svg\"\n    },\n    \"scan-outline\": {\n      \"codepoint\": 62810,\n      \"source\": \"fixedSvg/scan-outline.svg\"\n    },\n    \"scan-sharp\": {\n      \"codepoint\": 62811,\n      \"source\": \"fixedSvg/scan-sharp.svg\"\n    },\n    \"school\": {\n      \"codepoint\": 62812,\n      \"source\": \"fixedSvg/school.svg\"\n    },\n    \"school-outline\": {\n      \"codepoint\": 62813,\n      \"source\": \"fixedSvg/school-outline.svg\"\n    },\n    \"school-sharp\": {\n      \"codepoint\": 62814,\n      \"source\": \"fixedSvg/school-sharp.svg\"\n    },\n    \"search\": {\n      \"codepoint\": 62815,\n      \"source\": \"fixedSvg/search.svg\"\n    },\n    \"search-circle\": {\n      \"codepoint\": 62816,\n      \"source\": \"fixedSvg/search-circle.svg\"\n    },\n    \"search-circle-outline\": {\n      \"codepoint\": 62817,\n      \"source\": \"fixedSvg/search-circle-outline.svg\"\n    },\n    \"search-circle-sharp\": {\n      \"codepoint\": 62818,\n      \"source\": \"fixedSvg/search-circle-sharp.svg\"\n    },\n    \"search-outline\": {\n      \"codepoint\": 62819,\n      \"source\": \"fixedSvg/search-outline.svg\"\n    },\n    \"search-sharp\": {\n      \"codepoint\": 62820,\n      \"source\": \"fixedSvg/search-sharp.svg\"\n    },\n    \"send\": {\n      \"codepoint\": 62821,\n      \"source\": \"fixedSvg/send.svg\"\n    },\n    \"send-outline\": {\n      \"codepoint\": 62822,\n      \"source\": \"fixedSvg/send-outline.svg\"\n    },\n    \"send-sharp\": {\n      \"codepoint\": 62823,\n      \"source\": \"fixedSvg/send-sharp.svg\"\n    },\n    \"server\": {\n      \"codepoint\": 62824,\n      \"source\": \"fixedSvg/server.svg\"\n    },\n    \"server-outline\": {\n      \"codepoint\": 62825,\n      \"source\": \"fixedSvg/server-outline.svg\"\n    },\n    \"server-sharp\": {\n      \"codepoint\": 62826,\n      \"source\": \"fixedSvg/server-sharp.svg\"\n    },\n    \"settings\": {\n      \"codepoint\": 62827,\n      \"source\": \"fixedSvg/settings.svg\"\n    },\n    \"settings-outline\": {\n      \"codepoint\": 62828,\n      \"source\": \"fixedSvg/settings-outline.svg\"\n    },\n    \"settings-sharp\": {\n      \"codepoint\": 62829,\n      \"source\": \"fixedSvg/settings-sharp.svg\"\n    },\n    \"shapes\": {\n      \"codepoint\": 62830,\n      \"source\": \"fixedSvg/shapes.svg\"\n    },\n    \"shapes-outline\": {\n      \"codepoint\": 62831,\n      \"source\": \"fixedSvg/shapes-outline.svg\"\n    },\n    \"shapes-sharp\": {\n      \"codepoint\": 62832,\n      \"source\": \"fixedSvg/shapes-sharp.svg\"\n    },\n    \"share\": {\n      \"codepoint\": 62833,\n      \"source\": \"fixedSvg/share.svg\"\n    },\n    \"share-outline\": {\n      \"codepoint\": 62834,\n      \"source\": \"fixedSvg/share-outline.svg\"\n    },\n    \"share-sharp\": {\n      \"codepoint\": 62835,\n      \"source\": \"fixedSvg/share-sharp.svg\"\n    },\n    \"share-social\": {\n      \"codepoint\": 62836,\n      \"source\": \"fixedSvg/share-social.svg\"\n    },\n    \"share-social-outline\": {\n      \"codepoint\": 62837,\n      \"source\": \"fixedSvg/share-social-outline.svg\"\n    },\n    \"share-social-sharp\": {\n      \"codepoint\": 62838,\n      \"source\": \"fixedSvg/share-social-sharp.svg\"\n    },\n    \"shield\": {\n      \"codepoint\": 62839,\n      \"source\": \"fixedSvg/shield.svg\"\n    },\n    \"shield-checkmark\": {\n      \"codepoint\": 62840,\n      \"source\": \"fixedSvg/shield-checkmark.svg\"\n    },\n    \"shield-checkmark-outline\": {\n      \"codepoint\": 62841,\n      \"source\": \"fixedSvg/shield-checkmark-outline.svg\"\n    },\n    \"shield-checkmark-sharp\": {\n      \"codepoint\": 62842,\n      \"source\": \"fixedSvg/shield-checkmark-sharp.svg\"\n    },\n    \"shield-half\": {\n      \"codepoint\": 62843,\n      \"source\": \"fixedSvg/shield-half.svg\"\n    },\n    \"shield-half-outline\": {\n      \"codepoint\": 62844,\n      \"source\": \"fixedSvg/shield-half-outline.svg\"\n    },\n    \"shield-half-sharp\": {\n      \"codepoint\": 62845,\n      \"source\": \"fixedSvg/shield-half-sharp.svg\"\n    },\n    \"shield-outline\": {\n      \"codepoint\": 62846,\n      \"source\": \"fixedSvg/shield-outline.svg\"\n    },\n    \"shield-sharp\": {\n      \"codepoint\": 62847,\n      \"source\": \"fixedSvg/shield-sharp.svg\"\n    },\n    \"shirt\": {\n      \"codepoint\": 62848,\n      \"source\": \"fixedSvg/shirt.svg\"\n    },\n    \"shirt-outline\": {\n      \"codepoint\": 62849,\n      \"source\": \"fixedSvg/shirt-outline.svg\"\n    },\n    \"shirt-sharp\": {\n      \"codepoint\": 62850,\n      \"source\": \"fixedSvg/shirt-sharp.svg\"\n    },\n    \"shuffle\": {\n      \"codepoint\": 62851,\n      \"source\": \"fixedSvg/shuffle.svg\"\n    },\n    \"shuffle-outline\": {\n      \"codepoint\": 62852,\n      \"source\": \"fixedSvg/shuffle-outline.svg\"\n    },\n    \"shuffle-sharp\": {\n      \"codepoint\": 62853,\n      \"source\": \"fixedSvg/shuffle-sharp.svg\"\n    },\n    \"skull\": {\n      \"codepoint\": 62854,\n      \"source\": \"fixedSvg/skull.svg\"\n    },\n    \"skull-outline\": {\n      \"codepoint\": 62855,\n      \"source\": \"fixedSvg/skull-outline.svg\"\n    },\n    \"skull-sharp\": {\n      \"codepoint\": 62856,\n      \"source\": \"fixedSvg/skull-sharp.svg\"\n    },\n    \"snow\": {\n      \"codepoint\": 62857,\n      \"source\": \"fixedSvg/snow.svg\"\n    },\n    \"snow-outline\": {\n      \"codepoint\": 62858,\n      \"source\": \"fixedSvg/snow-outline.svg\"\n    },\n    \"snow-sharp\": {\n      \"codepoint\": 62859,\n      \"source\": \"fixedSvg/snow-sharp.svg\"\n    },\n    \"sparkles\": {\n      \"codepoint\": 62860,\n      \"source\": \"fixedSvg/sparkles.svg\"\n    },\n    \"sparkles-outline\": {\n      \"codepoint\": 62861,\n      \"source\": \"fixedSvg/sparkles-outline.svg\"\n    },\n    \"sparkles-sharp\": {\n      \"codepoint\": 62862,\n      \"source\": \"fixedSvg/sparkles-sharp.svg\"\n    },\n    \"speedometer\": {\n      \"codepoint\": 62863,\n      \"source\": \"fixedSvg/speedometer.svg\"\n    },\n    \"speedometer-outline\": {\n      \"codepoint\": 62864,\n      \"source\": \"fixedSvg/speedometer-outline.svg\"\n    },\n    \"speedometer-sharp\": {\n      \"codepoint\": 62865,\n      \"source\": \"fixedSvg/speedometer-sharp.svg\"\n    },\n    \"square\": {\n      \"codepoint\": 62866,\n      \"source\": \"fixedSvg/square.svg\"\n    },\n    \"square-outline\": {\n      \"codepoint\": 62867,\n      \"source\": \"fixedSvg/square-outline.svg\"\n    },\n    \"square-sharp\": {\n      \"codepoint\": 62868,\n      \"source\": \"fixedSvg/square-sharp.svg\"\n    },\n    \"star\": {\n      \"codepoint\": 62869,\n      \"source\": \"fixedSvg/star.svg\"\n    },\n    \"star-half\": {\n      \"codepoint\": 62870,\n      \"source\": \"fixedSvg/star-half.svg\"\n    },\n    \"star-half-outline\": {\n      \"codepoint\": 62871,\n      \"source\": \"fixedSvg/star-half-outline.svg\"\n    },\n    \"star-half-sharp\": {\n      \"codepoint\": 62872,\n      \"source\": \"fixedSvg/star-half-sharp.svg\"\n    },\n    \"star-outline\": {\n      \"codepoint\": 62873,\n      \"source\": \"fixedSvg/star-outline.svg\"\n    },\n    \"star-sharp\": {\n      \"codepoint\": 62874,\n      \"source\": \"fixedSvg/star-sharp.svg\"\n    },\n    \"stats-chart\": {\n      \"codepoint\": 62875,\n      \"source\": \"fixedSvg/stats-chart.svg\"\n    },\n    \"stats-chart-outline\": {\n      \"codepoint\": 62876,\n      \"source\": \"fixedSvg/stats-chart-outline.svg\"\n    },\n    \"stats-chart-sharp\": {\n      \"codepoint\": 62877,\n      \"source\": \"fixedSvg/stats-chart-sharp.svg\"\n    },\n    \"stop\": {\n      \"codepoint\": 62878,\n      \"source\": \"fixedSvg/stop.svg\"\n    },\n    \"stop-circle\": {\n      \"codepoint\": 62879,\n      \"source\": \"fixedSvg/stop-circle.svg\"\n    },\n    \"stop-circle-outline\": {\n      \"codepoint\": 62880,\n      \"source\": \"fixedSvg/stop-circle-outline.svg\"\n    },\n    \"stop-circle-sharp\": {\n      \"codepoint\": 62881,\n      \"source\": \"fixedSvg/stop-circle-sharp.svg\"\n    },\n    \"stop-outline\": {\n      \"codepoint\": 62882,\n      \"source\": \"fixedSvg/stop-outline.svg\"\n    },\n    \"stop-sharp\": {\n      \"codepoint\": 62883,\n      \"source\": \"fixedSvg/stop-sharp.svg\"\n    },\n    \"stopwatch\": {\n      \"codepoint\": 62884,\n      \"source\": \"fixedSvg/stopwatch.svg\"\n    },\n    \"stopwatch-outline\": {\n      \"codepoint\": 62885,\n      \"source\": \"fixedSvg/stopwatch-outline.svg\"\n    },\n    \"stopwatch-sharp\": {\n      \"codepoint\": 62886,\n      \"source\": \"fixedSvg/stopwatch-sharp.svg\"\n    },\n    \"storefront\": {\n      \"codepoint\": 62887,\n      \"source\": \"fixedSvg/storefront.svg\"\n    },\n    \"storefront-outline\": {\n      \"codepoint\": 62888,\n      \"source\": \"fixedSvg/storefront-outline.svg\"\n    },\n    \"storefront-sharp\": {\n      \"codepoint\": 62889,\n      \"source\": \"fixedSvg/storefront-sharp.svg\"\n    },\n    \"subway\": {\n      \"codepoint\": 62890,\n      \"source\": \"fixedSvg/subway.svg\"\n    },\n    \"subway-outline\": {\n      \"codepoint\": 62891,\n      \"source\": \"fixedSvg/subway-outline.svg\"\n    },\n    \"subway-sharp\": {\n      \"codepoint\": 62892,\n      \"source\": \"fixedSvg/subway-sharp.svg\"\n    },\n    \"sunny\": {\n      \"codepoint\": 62893,\n      \"source\": \"fixedSvg/sunny.svg\"\n    },\n    \"sunny-outline\": {\n      \"codepoint\": 62894,\n      \"source\": \"fixedSvg/sunny-outline.svg\"\n    },\n    \"sunny-sharp\": {\n      \"codepoint\": 62895,\n      \"source\": \"fixedSvg/sunny-sharp.svg\"\n    },\n    \"swap-horizontal\": {\n      \"codepoint\": 62896,\n      \"source\": \"fixedSvg/swap-horizontal.svg\"\n    },\n    \"swap-horizontal-outline\": {\n      \"codepoint\": 62897,\n      \"source\": \"fixedSvg/swap-horizontal-outline.svg\"\n    },\n    \"swap-horizontal-sharp\": {\n      \"codepoint\": 62898,\n      \"source\": \"fixedSvg/swap-horizontal-sharp.svg\"\n    },\n    \"swap-vertical\": {\n      \"codepoint\": 62899,\n      \"source\": \"fixedSvg/swap-vertical.svg\"\n    },\n    \"swap-vertical-outline\": {\n      \"codepoint\": 62900,\n      \"source\": \"fixedSvg/swap-vertical-outline.svg\"\n    },\n    \"swap-vertical-sharp\": {\n      \"codepoint\": 62901,\n      \"source\": \"fixedSvg/swap-vertical-sharp.svg\"\n    },\n    \"sync\": {\n      \"codepoint\": 62902,\n      \"source\": \"fixedSvg/sync.svg\"\n    },\n    \"sync-circle\": {\n      \"codepoint\": 62903,\n      \"source\": \"fixedSvg/sync-circle.svg\"\n    },\n    \"sync-circle-outline\": {\n      \"codepoint\": 62904,\n      \"source\": \"fixedSvg/sync-circle-outline.svg\"\n    },\n    \"sync-circle-sharp\": {\n      \"codepoint\": 62905,\n      \"source\": \"fixedSvg/sync-circle-sharp.svg\"\n    },\n    \"sync-outline\": {\n      \"codepoint\": 62906,\n      \"source\": \"fixedSvg/sync-outline.svg\"\n    },\n    \"sync-sharp\": {\n      \"codepoint\": 62907,\n      \"source\": \"fixedSvg/sync-sharp.svg\"\n    },\n    \"tablet-landscape\": {\n      \"codepoint\": 62908,\n      \"source\": \"fixedSvg/tablet-landscape.svg\"\n    },\n    \"tablet-landscape-outline\": {\n      \"codepoint\": 62909,\n      \"source\": \"fixedSvg/tablet-landscape-outline.svg\"\n    },\n    \"tablet-landscape-sharp\": {\n      \"codepoint\": 62910,\n      \"source\": \"fixedSvg/tablet-landscape-sharp.svg\"\n    },\n    \"tablet-portrait\": {\n      \"codepoint\": 62911,\n      \"source\": \"fixedSvg/tablet-portrait.svg\"\n    },\n    \"tablet-portrait-outline\": {\n      \"codepoint\": 62912,\n      \"source\": \"fixedSvg/tablet-portrait-outline.svg\"\n    },\n    \"tablet-portrait-sharp\": {\n      \"codepoint\": 62913,\n      \"source\": \"fixedSvg/tablet-portrait-sharp.svg\"\n    },\n    \"telescope\": {\n      \"codepoint\": 62914,\n      \"source\": \"fixedSvg/telescope.svg\"\n    },\n    \"telescope-outline\": {\n      \"codepoint\": 62915,\n      \"source\": \"fixedSvg/telescope-outline.svg\"\n    },\n    \"telescope-sharp\": {\n      \"codepoint\": 62916,\n      \"source\": \"fixedSvg/telescope-sharp.svg\"\n    },\n    \"tennisball\": {\n      \"codepoint\": 62917,\n      \"source\": \"fixedSvg/tennisball.svg\"\n    },\n    \"tennisball-outline\": {\n      \"codepoint\": 62918,\n      \"source\": \"fixedSvg/tennisball-outline.svg\"\n    },\n    \"tennisball-sharp\": {\n      \"codepoint\": 62919,\n      \"source\": \"fixedSvg/tennisball-sharp.svg\"\n    },\n    \"terminal\": {\n      \"codepoint\": 62920,\n      \"source\": \"fixedSvg/terminal.svg\"\n    },\n    \"terminal-outline\": {\n      \"codepoint\": 62921,\n      \"source\": \"fixedSvg/terminal-outline.svg\"\n    },\n    \"terminal-sharp\": {\n      \"codepoint\": 62922,\n      \"source\": \"fixedSvg/terminal-sharp.svg\"\n    },\n    \"text\": {\n      \"codepoint\": 62923,\n      \"source\": \"fixedSvg/text.svg\"\n    },\n    \"text-outline\": {\n      \"codepoint\": 62924,\n      \"source\": \"fixedSvg/text-outline.svg\"\n    },\n    \"text-sharp\": {\n      \"codepoint\": 62925,\n      \"source\": \"fixedSvg/text-sharp.svg\"\n    },\n    \"thermometer\": {\n      \"codepoint\": 62926,\n      \"source\": \"fixedSvg/thermometer.svg\"\n    },\n    \"thermometer-outline\": {\n      \"codepoint\": 62927,\n      \"source\": \"fixedSvg/thermometer-outline.svg\"\n    },\n    \"thermometer-sharp\": {\n      \"codepoint\": 62928,\n      \"source\": \"fixedSvg/thermometer-sharp.svg\"\n    },\n    \"thumbs-down\": {\n      \"codepoint\": 62929,\n      \"source\": \"fixedSvg/thumbs-down.svg\"\n    },\n    \"thumbs-down-outline\": {\n      \"codepoint\": 62930,\n      \"source\": \"fixedSvg/thumbs-down-outline.svg\"\n    },\n    \"thumbs-down-sharp\": {\n      \"codepoint\": 62931,\n      \"source\": \"fixedSvg/thumbs-down-sharp.svg\"\n    },\n    \"thumbs-up\": {\n      \"codepoint\": 62932,\n      \"source\": \"fixedSvg/thumbs-up.svg\"\n    },\n    \"thumbs-up-outline\": {\n      \"codepoint\": 62933,\n      \"source\": \"fixedSvg/thumbs-up-outline.svg\"\n    },\n    \"thumbs-up-sharp\": {\n      \"codepoint\": 62934,\n      \"source\": \"fixedSvg/thumbs-up-sharp.svg\"\n    },\n    \"thunderstorm\": {\n      \"codepoint\": 62935,\n      \"source\": \"fixedSvg/thunderstorm.svg\"\n    },\n    \"thunderstorm-outline\": {\n      \"codepoint\": 62936,\n      \"source\": \"fixedSvg/thunderstorm-outline.svg\"\n    },\n    \"thunderstorm-sharp\": {\n      \"codepoint\": 62937,\n      \"source\": \"fixedSvg/thunderstorm-sharp.svg\"\n    },\n    \"ticket\": {\n      \"codepoint\": 62938,\n      \"source\": \"fixedSvg/ticket.svg\"\n    },\n    \"ticket-outline\": {\n      \"codepoint\": 62939,\n      \"source\": \"fixedSvg/ticket-outline.svg\"\n    },\n    \"ticket-sharp\": {\n      \"codepoint\": 62940,\n      \"source\": \"fixedSvg/ticket-sharp.svg\"\n    },\n    \"time\": {\n      \"codepoint\": 62941,\n      \"source\": \"fixedSvg/time.svg\"\n    },\n    \"time-outline\": {\n      \"codepoint\": 62942,\n      \"source\": \"fixedSvg/time-outline.svg\"\n    },\n    \"time-sharp\": {\n      \"codepoint\": 62943,\n      \"source\": \"fixedSvg/time-sharp.svg\"\n    },\n    \"timer\": {\n      \"codepoint\": 62944,\n      \"source\": \"fixedSvg/timer.svg\"\n    },\n    \"timer-outline\": {\n      \"codepoint\": 62945,\n      \"source\": \"fixedSvg/timer-outline.svg\"\n    },\n    \"timer-sharp\": {\n      \"codepoint\": 62946,\n      \"source\": \"fixedSvg/timer-sharp.svg\"\n    },\n    \"today\": {\n      \"codepoint\": 62947,\n      \"source\": \"fixedSvg/today.svg\"\n    },\n    \"today-outline\": {\n      \"codepoint\": 62948,\n      \"source\": \"fixedSvg/today-outline.svg\"\n    },\n    \"today-sharp\": {\n      \"codepoint\": 62949,\n      \"source\": \"fixedSvg/today-sharp.svg\"\n    },\n    \"toggle\": {\n      \"codepoint\": 62950,\n      \"source\": \"fixedSvg/toggle.svg\"\n    },\n    \"toggle-outline\": {\n      \"codepoint\": 62951,\n      \"source\": \"fixedSvg/toggle-outline.svg\"\n    },\n    \"toggle-sharp\": {\n      \"codepoint\": 62952,\n      \"source\": \"fixedSvg/toggle-sharp.svg\"\n    },\n    \"trail-sign\": {\n      \"codepoint\": 62953,\n      \"source\": \"fixedSvg/trail-sign.svg\"\n    },\n    \"trail-sign-outline\": {\n      \"codepoint\": 62954,\n      \"source\": \"fixedSvg/trail-sign-outline.svg\"\n    },\n    \"trail-sign-sharp\": {\n      \"codepoint\": 62955,\n      \"source\": \"fixedSvg/trail-sign-sharp.svg\"\n    },\n    \"train\": {\n      \"codepoint\": 62956,\n      \"source\": \"fixedSvg/train.svg\"\n    },\n    \"train-outline\": {\n      \"codepoint\": 62957,\n      \"source\": \"fixedSvg/train-outline.svg\"\n    },\n    \"train-sharp\": {\n      \"codepoint\": 62958,\n      \"source\": \"fixedSvg/train-sharp.svg\"\n    },\n    \"transgender\": {\n      \"codepoint\": 62959,\n      \"source\": \"fixedSvg/transgender.svg\"\n    },\n    \"transgender-outline\": {\n      \"codepoint\": 62960,\n      \"source\": \"fixedSvg/transgender-outline.svg\"\n    },\n    \"transgender-sharp\": {\n      \"codepoint\": 62961,\n      \"source\": \"fixedSvg/transgender-sharp.svg\"\n    },\n    \"trash\": {\n      \"codepoint\": 62962,\n      \"source\": \"fixedSvg/trash.svg\"\n    },\n    \"trash-bin\": {\n      \"codepoint\": 62963,\n      \"source\": \"fixedSvg/trash-bin.svg\"\n    },\n    \"trash-bin-outline\": {\n      \"codepoint\": 62964,\n      \"source\": \"fixedSvg/trash-bin-outline.svg\"\n    },\n    \"trash-bin-sharp\": {\n      \"codepoint\": 62965,\n      \"source\": \"fixedSvg/trash-bin-sharp.svg\"\n    },\n    \"trash-outline\": {\n      \"codepoint\": 62966,\n      \"source\": \"fixedSvg/trash-outline.svg\"\n    },\n    \"trash-sharp\": {\n      \"codepoint\": 62967,\n      \"source\": \"fixedSvg/trash-sharp.svg\"\n    },\n    \"trending-down\": {\n      \"codepoint\": 62968,\n      \"source\": \"fixedSvg/trending-down.svg\"\n    },\n    \"trending-down-outline\": {\n      \"codepoint\": 62969,\n      \"source\": \"fixedSvg/trending-down-outline.svg\"\n    },\n    \"trending-down-sharp\": {\n      \"codepoint\": 62970,\n      \"source\": \"fixedSvg/trending-down-sharp.svg\"\n    },\n    \"trending-up\": {\n      \"codepoint\": 62971,\n      \"source\": \"fixedSvg/trending-up.svg\"\n    },\n    \"trending-up-outline\": {\n      \"codepoint\": 62972,\n      \"source\": \"fixedSvg/trending-up-outline.svg\"\n    },\n    \"trending-up-sharp\": {\n      \"codepoint\": 62973,\n      \"source\": \"fixedSvg/trending-up-sharp.svg\"\n    },\n    \"triangle\": {\n      \"codepoint\": 62974,\n      \"source\": \"fixedSvg/triangle.svg\"\n    },\n    \"triangle-outline\": {\n      \"codepoint\": 62975,\n      \"source\": \"fixedSvg/triangle-outline.svg\"\n    },\n    \"triangle-sharp\": {\n      \"codepoint\": 62976,\n      \"source\": \"fixedSvg/triangle-sharp.svg\"\n    },\n    \"trophy\": {\n      \"codepoint\": 62977,\n      \"source\": \"fixedSvg/trophy.svg\"\n    },\n    \"trophy-outline\": {\n      \"codepoint\": 62978,\n      \"source\": \"fixedSvg/trophy-outline.svg\"\n    },\n    \"trophy-sharp\": {\n      \"codepoint\": 62979,\n      \"source\": \"fixedSvg/trophy-sharp.svg\"\n    },\n    \"tv\": {\n      \"codepoint\": 62980,\n      \"source\": \"fixedSvg/tv.svg\"\n    },\n    \"tv-outline\": {\n      \"codepoint\": 62981,\n      \"source\": \"fixedSvg/tv-outline.svg\"\n    },\n    \"tv-sharp\": {\n      \"codepoint\": 62982,\n      \"source\": \"fixedSvg/tv-sharp.svg\"\n    },\n    \"umbrella\": {\n      \"codepoint\": 62983,\n      \"source\": \"fixedSvg/umbrella.svg\"\n    },\n    \"umbrella-outline\": {\n      \"codepoint\": 62984,\n      \"source\": \"fixedSvg/umbrella-outline.svg\"\n    },\n    \"umbrella-sharp\": {\n      \"codepoint\": 62985,\n      \"source\": \"fixedSvg/umbrella-sharp.svg\"\n    },\n    \"unlink\": {\n      \"codepoint\": 62986,\n      \"source\": \"fixedSvg/unlink.svg\"\n    },\n    \"unlink-outline\": {\n      \"codepoint\": 62987,\n      \"source\": \"fixedSvg/unlink-outline.svg\"\n    },\n    \"unlink-sharp\": {\n      \"codepoint\": 62988,\n      \"source\": \"fixedSvg/unlink-sharp.svg\"\n    },\n    \"videocam\": {\n      \"codepoint\": 62989,\n      \"source\": \"fixedSvg/videocam.svg\"\n    },\n    \"videocam-off\": {\n      \"codepoint\": 62990,\n      \"source\": \"fixedSvg/videocam-off.svg\"\n    },\n    \"videocam-off-outline\": {\n      \"codepoint\": 62991,\n      \"source\": \"fixedSvg/videocam-off-outline.svg\"\n    },\n    \"videocam-off-sharp\": {\n      \"codepoint\": 62992,\n      \"source\": \"fixedSvg/videocam-off-sharp.svg\"\n    },\n    \"videocam-outline\": {\n      \"codepoint\": 62993,\n      \"source\": \"fixedSvg/videocam-outline.svg\"\n    },\n    \"videocam-sharp\": {\n      \"codepoint\": 62994,\n      \"source\": \"fixedSvg/videocam-sharp.svg\"\n    },\n    \"volume-high\": {\n      \"codepoint\": 62995,\n      \"source\": \"fixedSvg/volume-high.svg\"\n    },\n    \"volume-high-outline\": {\n      \"codepoint\": 62996,\n      \"source\": \"fixedSvg/volume-high-outline.svg\"\n    },\n    \"volume-high-sharp\": {\n      \"codepoint\": 62997,\n      \"source\": \"fixedSvg/volume-high-sharp.svg\"\n    },\n    \"volume-low\": {\n      \"codepoint\": 62998,\n      \"source\": \"fixedSvg/volume-low.svg\"\n    },\n    \"volume-low-outline\": {\n      \"codepoint\": 62999,\n      \"source\": \"fixedSvg/volume-low-outline.svg\"\n    },\n    \"volume-low-sharp\": {\n      \"codepoint\": 63000,\n      \"source\": \"fixedSvg/volume-low-sharp.svg\"\n    },\n    \"volume-medium\": {\n      \"codepoint\": 63001,\n      \"source\": \"fixedSvg/volume-medium.svg\"\n    },\n    \"volume-medium-outline\": {\n      \"codepoint\": 63002,\n      \"source\": \"fixedSvg/volume-medium-outline.svg\"\n    },\n    \"volume-medium-sharp\": {\n      \"codepoint\": 63003,\n      \"source\": \"fixedSvg/volume-medium-sharp.svg\"\n    },\n    \"volume-mute\": {\n      \"codepoint\": 63004,\n      \"source\": \"fixedSvg/volume-mute.svg\"\n    },\n    \"volume-mute-outline\": {\n      \"codepoint\": 63005,\n      \"source\": \"fixedSvg/volume-mute-outline.svg\"\n    },\n    \"volume-mute-sharp\": {\n      \"codepoint\": 63006,\n      \"source\": \"fixedSvg/volume-mute-sharp.svg\"\n    },\n    \"volume-off\": {\n      \"codepoint\": 63007,\n      \"source\": \"fixedSvg/volume-off.svg\"\n    },\n    \"volume-off-outline\": {\n      \"codepoint\": 63008,\n      \"source\": \"fixedSvg/volume-off-outline.svg\"\n    },\n    \"volume-off-sharp\": {\n      \"codepoint\": 63009,\n      \"source\": \"fixedSvg/volume-off-sharp.svg\"\n    },\n    \"walk\": {\n      \"codepoint\": 63010,\n      \"source\": \"fixedSvg/walk.svg\"\n    },\n    \"walk-outline\": {\n      \"codepoint\": 63011,\n      \"source\": \"fixedSvg/walk-outline.svg\"\n    },\n    \"walk-sharp\": {\n      \"codepoint\": 63012,\n      \"source\": \"fixedSvg/walk-sharp.svg\"\n    },\n    \"wallet\": {\n      \"codepoint\": 63013,\n      \"source\": \"fixedSvg/wallet.svg\"\n    },\n    \"wallet-outline\": {\n      \"codepoint\": 63014,\n      \"source\": \"fixedSvg/wallet-outline.svg\"\n    },\n    \"wallet-sharp\": {\n      \"codepoint\": 63015,\n      \"source\": \"fixedSvg/wallet-sharp.svg\"\n    },\n    \"warning\": {\n      \"codepoint\": 63016,\n      \"source\": \"fixedSvg/warning.svg\"\n    },\n    \"warning-outline\": {\n      \"codepoint\": 63017,\n      \"source\": \"fixedSvg/warning-outline.svg\"\n    },\n    \"warning-sharp\": {\n      \"codepoint\": 63018,\n      \"source\": \"fixedSvg/warning-sharp.svg\"\n    },\n    \"watch\": {\n      \"codepoint\": 63019,\n      \"source\": \"fixedSvg/watch.svg\"\n    },\n    \"watch-outline\": {\n      \"codepoint\": 63020,\n      \"source\": \"fixedSvg/watch-outline.svg\"\n    },\n    \"watch-sharp\": {\n      \"codepoint\": 63021,\n      \"source\": \"fixedSvg/watch-sharp.svg\"\n    },\n    \"water\": {\n      \"codepoint\": 63022,\n      \"source\": \"fixedSvg/water.svg\"\n    },\n    \"water-outline\": {\n      \"codepoint\": 63023,\n      \"source\": \"fixedSvg/water-outline.svg\"\n    },\n    \"water-sharp\": {\n      \"codepoint\": 63024,\n      \"source\": \"fixedSvg/water-sharp.svg\"\n    },\n    \"wifi\": {\n      \"codepoint\": 63025,\n      \"source\": \"fixedSvg/wifi.svg\"\n    },\n    \"wifi-outline\": {\n      \"codepoint\": 63026,\n      \"source\": \"fixedSvg/wifi-outline.svg\"\n    },\n    \"wifi-sharp\": {\n      \"codepoint\": 63027,\n      \"source\": \"fixedSvg/wifi-sharp.svg\"\n    },\n    \"wine\": {\n      \"codepoint\": 63028,\n      \"source\": \"fixedSvg/wine.svg\"\n    },\n    \"wine-outline\": {\n      \"codepoint\": 63029,\n      \"source\": \"fixedSvg/wine-outline.svg\"\n    },\n    \"wine-sharp\": {\n      \"codepoint\": 63030,\n      \"source\": \"fixedSvg/wine-sharp.svg\"\n    },\n    \"woman\": {\n      \"codepoint\": 63031,\n      \"source\": \"fixedSvg/woman.svg\"\n    },\n    \"woman-outline\": {\n      \"codepoint\": 63032,\n      \"source\": \"fixedSvg/woman-outline.svg\"\n    },\n    \"woman-sharp\": {\n      \"codepoint\": 63033,\n      \"source\": \"fixedSvg/woman-sharp.svg\"\n    }\n  },\n  \"options\": {\n    \"autowidth\": false,\n    \"config\": false,\n    \"copyright\": \"\",\n    \"css3\": false,\n    \"css_selector\": \".icon-{{glyph}}\",\n    \"debug\": false,\n    \"font_ascent\": 448,\n    \"font_descent\": 64,\n    \"font_design_size\": 16,\n    \"font_em\": 512,\n    \"font_name\": \"Ionicons\",\n    \"force\": true,\n    \"input\": {\n      \"templates\": \"fixedSvg\",\n      \"vectors\": \"fixedSvg\"\n    },\n    \"no_hash\": true,\n    \"output\": {\n      \"css\": \"Ionicons\",\n      \"fonts\": \"Ionicons\",\n      \"preview\": \"Ionicons\"\n    },\n    \"preprocessor_path\": null,\n    \"quiet\": false,\n    \"templates\": [\n      \"css\"\n    ]\n  },\n  \"templates\": [\n    \"Ionicons/Ionicons.css\"\n  ]\n}"
  },
  {
    "path": "packages/ionicons/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"ionicons\",\n    \"upstreamFont\": \"ionicons\",\n    \"buildSteps\": {\n      \"fixSVGPaths\": {\n        \"location\": \"../../node_modules/ionicons/dist/svg\"\n      },\n      \"fontCustom\": {\n        \"location\": \"fixedSvg\",\n        \"cleanup\": true\n      },\n      \"fontforgeScript\": {\n        \"script\": \"correct-direction.py\"\n      },\n      \"glyphmap\": {\n        \"mode\": \"css\",\n        \"cleanup\": true\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"12.0.0\",\n        \"upstream\": \"7.4.0\"\n      },\n      {\n        \"rnvi\": \"12.0.1\",\n        \"upstream\": \"8.0.8\"\n      },\n      {\n        \"rnvi\": \"12.4.1\",\n        \"upstream\": \"8.0.13\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/ionicons/CHANGELOG.md",
    "content": "## 12.5.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.4.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 12.4.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🩹 Fixes\n\n- upgrade Font Awesome to 7.2.0 ([#1874](https://github.com/oblador/react-native-vector-icons/pull/1874))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.4.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 12.4.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.3.0 (2025-08-03)\n\n### 🚀 Features\n\n- export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.3.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.2.0 (2025-07-20)\n\n### 🚀 Features\n\n- add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.2.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.1.0 (2025-07-12)\n\n### 🚀 Features\n\n- export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.1.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.2 (2025-06-15)\n\n### 🩹 Fixes\n\n- new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.2\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.1 (2025-06-15)\n\n### 🩹 Fixes\n\n- try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745))\n- remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767))\n- convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765))\n- updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c))\n- **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.1\n\n### ❤️ Thank You\n\n- Alexander Kucheryavenko @Red1tum\n- John Ferlito @johnf\n- Md. Jayed Hasan @JayedHasan232\n\n# 12.0.0 (2025-05-04)\n\n### 🚀 Features\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n- add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702))\n\n### 🩹 Fixes\n\n- upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691))\n- upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690))\n- mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99))\n\n### ⚠️  Breaking Changes\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n\n### ❤️ Thank You\n\n- Chanphirom Sok @chanphiromsok\n- John Ferlito @johnf"
  },
  {
    "path": "packages/ionicons/README.md",
    "content": "# React Native Vector Icons - Ionicons\n\nIonicons font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/ionicons\n```\n\n## Usage\n\n```jsx\nimport { Ionicons } from '@react-native-vector-icons/ionicons';\n\n// ...\n\n<Ionicons name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 12.0.0 | 7.4.0 |\n| &gt; 12.0.1 | 8.0.8 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/ionicons/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.ionicons\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsIonicons\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.ionicons\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-ionicons\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-ionicons/fonts\"\n  eachFile { println \"(RNVI:ionicons) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n"
  },
  {
    "path": "packages/ionicons/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.ionicons\">\n</manifest>\n"
  },
  {
    "path": "packages/ionicons/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/ionicons/android/src/main/java/VectorIconsIoniconsPackage.kt",
    "content": "package com.reactnativevectoricons.ionicons\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsIoniconsPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/ionicons/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/ionicons/glyphmaps/Ionicons.json",
    "content": "{\n  \"accessibility\": 61696,\n  \"accessibility-outline\": 61697,\n  \"accessibility-sharp\": 61698,\n  \"add\": 61699,\n  \"add-circle\": 61700,\n  \"add-circle-outline\": 61701,\n  \"add-circle-sharp\": 61702,\n  \"add-outline\": 61703,\n  \"add-sharp\": 61704,\n  \"airplane\": 61705,\n  \"airplane-outline\": 61706,\n  \"airplane-sharp\": 61707,\n  \"alarm\": 61708,\n  \"alarm-outline\": 61709,\n  \"alarm-sharp\": 61710,\n  \"albums\": 61711,\n  \"albums-outline\": 61712,\n  \"albums-sharp\": 61713,\n  \"alert\": 61714,\n  \"alert-circle\": 61715,\n  \"alert-circle-outline\": 61716,\n  \"alert-circle-sharp\": 61717,\n  \"alert-outline\": 61718,\n  \"alert-sharp\": 61719,\n  \"american-football\": 61720,\n  \"american-football-outline\": 61721,\n  \"american-football-sharp\": 61722,\n  \"analytics\": 61723,\n  \"analytics-outline\": 61724,\n  \"analytics-sharp\": 61725,\n  \"aperture\": 61726,\n  \"aperture-outline\": 61727,\n  \"aperture-sharp\": 61728,\n  \"apps\": 61729,\n  \"apps-outline\": 61730,\n  \"apps-sharp\": 61731,\n  \"archive\": 61732,\n  \"archive-outline\": 61733,\n  \"archive-sharp\": 61734,\n  \"arrow-back\": 61735,\n  \"arrow-back-circle\": 61736,\n  \"arrow-back-circle-outline\": 61737,\n  \"arrow-back-circle-sharp\": 61738,\n  \"arrow-back-outline\": 61739,\n  \"arrow-back-sharp\": 61740,\n  \"arrow-down\": 61741,\n  \"arrow-down-circle\": 61742,\n  \"arrow-down-circle-outline\": 61743,\n  \"arrow-down-circle-sharp\": 61744,\n  \"arrow-down-left-box\": 63034,\n  \"arrow-down-left-box-outline\": 63035,\n  \"arrow-down-left-box-sharp\": 63036,\n  \"arrow-down-outline\": 61745,\n  \"arrow-down-right-box\": 63037,\n  \"arrow-down-right-box-outline\": 63038,\n  \"arrow-down-right-box-sharp\": 63039,\n  \"arrow-down-sharp\": 61746,\n  \"arrow-forward\": 61747,\n  \"arrow-forward-circle\": 61748,\n  \"arrow-forward-circle-outline\": 61749,\n  \"arrow-forward-circle-sharp\": 61750,\n  \"arrow-forward-outline\": 61751,\n  \"arrow-forward-sharp\": 61752,\n  \"arrow-redo\": 61753,\n  \"arrow-redo-circle\": 61754,\n  \"arrow-redo-circle-outline\": 61755,\n  \"arrow-redo-circle-sharp\": 61756,\n  \"arrow-redo-outline\": 61757,\n  \"arrow-redo-sharp\": 61758,\n  \"arrow-undo\": 61759,\n  \"arrow-undo-circle\": 61760,\n  \"arrow-undo-circle-outline\": 61761,\n  \"arrow-undo-circle-sharp\": 61762,\n  \"arrow-undo-outline\": 61763,\n  \"arrow-undo-sharp\": 61764,\n  \"arrow-up\": 61765,\n  \"arrow-up-circle\": 61766,\n  \"arrow-up-circle-outline\": 61767,\n  \"arrow-up-circle-sharp\": 61768,\n  \"arrow-up-left-box\": 63040,\n  \"arrow-up-left-box-outline\": 63041,\n  \"arrow-up-left-box-sharp\": 63042,\n  \"arrow-up-outline\": 61769,\n  \"arrow-up-right-box\": 63043,\n  \"arrow-up-right-box-outline\": 63044,\n  \"arrow-up-right-box-sharp\": 63045,\n  \"arrow-up-sharp\": 61770,\n  \"at\": 61771,\n  \"at-circle\": 61772,\n  \"at-circle-outline\": 61773,\n  \"at-circle-sharp\": 61774,\n  \"at-outline\": 61775,\n  \"at-sharp\": 61776,\n  \"attach\": 61777,\n  \"attach-outline\": 61778,\n  \"attach-sharp\": 61779,\n  \"backspace\": 61780,\n  \"backspace-outline\": 61781,\n  \"backspace-sharp\": 61782,\n  \"bag\": 61783,\n  \"bag-add\": 61784,\n  \"bag-add-outline\": 61785,\n  \"bag-add-sharp\": 61786,\n  \"bag-check\": 61787,\n  \"bag-check-outline\": 61788,\n  \"bag-check-sharp\": 61789,\n  \"bag-handle\": 61790,\n  \"bag-handle-outline\": 61791,\n  \"bag-handle-sharp\": 61792,\n  \"bag-outline\": 61793,\n  \"bag-remove\": 61794,\n  \"bag-remove-outline\": 61795,\n  \"bag-remove-sharp\": 61796,\n  \"bag-sharp\": 61797,\n  \"balloon\": 61798,\n  \"balloon-outline\": 61799,\n  \"balloon-sharp\": 61800,\n  \"ban\": 61801,\n  \"ban-outline\": 61802,\n  \"ban-sharp\": 61803,\n  \"bandage\": 61804,\n  \"bandage-outline\": 61805,\n  \"bandage-sharp\": 61806,\n  \"bar-chart\": 61807,\n  \"bar-chart-outline\": 61808,\n  \"bar-chart-sharp\": 61809,\n  \"barbell\": 61810,\n  \"barbell-outline\": 61811,\n  \"barbell-sharp\": 61812,\n  \"barcode\": 61813,\n  \"barcode-outline\": 61814,\n  \"barcode-sharp\": 61815,\n  \"baseball\": 61816,\n  \"baseball-outline\": 61817,\n  \"baseball-sharp\": 61818,\n  \"basket\": 61819,\n  \"basket-outline\": 61820,\n  \"basket-sharp\": 61821,\n  \"basketball\": 61822,\n  \"basketball-outline\": 61823,\n  \"basketball-sharp\": 61824,\n  \"battery-charging\": 61825,\n  \"battery-charging-outline\": 61826,\n  \"battery-charging-sharp\": 61827,\n  \"battery-dead\": 61828,\n  \"battery-dead-outline\": 61829,\n  \"battery-dead-sharp\": 61830,\n  \"battery-full\": 61831,\n  \"battery-full-outline\": 61832,\n  \"battery-full-sharp\": 61833,\n  \"battery-half\": 61834,\n  \"battery-half-outline\": 61835,\n  \"battery-half-sharp\": 61836,\n  \"beaker\": 61837,\n  \"beaker-outline\": 61838,\n  \"beaker-sharp\": 61839,\n  \"bed\": 61840,\n  \"bed-outline\": 61841,\n  \"bed-sharp\": 61842,\n  \"beer\": 61843,\n  \"beer-outline\": 61844,\n  \"beer-sharp\": 61845,\n  \"bicycle\": 61846,\n  \"bicycle-outline\": 61847,\n  \"bicycle-sharp\": 61848,\n  \"binoculars\": 63046,\n  \"binoculars-outline\": 63047,\n  \"binoculars-sharp\": 63048,\n  \"bluetooth\": 61849,\n  \"bluetooth-outline\": 61850,\n  \"bluetooth-sharp\": 61851,\n  \"boat\": 61852,\n  \"boat-outline\": 61853,\n  \"boat-sharp\": 61854,\n  \"body\": 61855,\n  \"body-outline\": 61856,\n  \"body-sharp\": 61857,\n  \"bonfire\": 61858,\n  \"bonfire-outline\": 61859,\n  \"bonfire-sharp\": 61860,\n  \"book\": 61861,\n  \"book-outline\": 61862,\n  \"book-sharp\": 61863,\n  \"bookmark\": 61864,\n  \"bookmark-outline\": 61865,\n  \"bookmark-sharp\": 61866,\n  \"bookmarks\": 61867,\n  \"bookmarks-outline\": 61868,\n  \"bookmarks-sharp\": 61869,\n  \"bowling-ball\": 61870,\n  \"bowling-ball-outline\": 61871,\n  \"bowling-ball-sharp\": 61872,\n  \"briefcase\": 61873,\n  \"briefcase-outline\": 61874,\n  \"briefcase-sharp\": 61875,\n  \"browsers\": 61876,\n  \"browsers-outline\": 61877,\n  \"browsers-sharp\": 61878,\n  \"brush\": 61879,\n  \"brush-outline\": 61880,\n  \"brush-sharp\": 61881,\n  \"bug\": 61882,\n  \"bug-outline\": 61883,\n  \"bug-sharp\": 61884,\n  \"build\": 61885,\n  \"build-outline\": 61886,\n  \"build-sharp\": 61887,\n  \"bulb\": 61888,\n  \"bulb-outline\": 61889,\n  \"bulb-sharp\": 61890,\n  \"bus\": 61891,\n  \"bus-outline\": 61892,\n  \"bus-sharp\": 61893,\n  \"business\": 61894,\n  \"business-outline\": 61895,\n  \"business-sharp\": 61896,\n  \"cafe\": 61897,\n  \"cafe-outline\": 61898,\n  \"cafe-sharp\": 61899,\n  \"calculator\": 61900,\n  \"calculator-outline\": 61901,\n  \"calculator-sharp\": 61902,\n  \"calendar\": 61903,\n  \"calendar-clear\": 61904,\n  \"calendar-clear-outline\": 61905,\n  \"calendar-clear-sharp\": 61906,\n  \"calendar-number\": 61907,\n  \"calendar-number-outline\": 61908,\n  \"calendar-number-sharp\": 61909,\n  \"calendar-outline\": 61910,\n  \"calendar-sharp\": 61911,\n  \"call\": 61912,\n  \"call-outline\": 61913,\n  \"call-sharp\": 61914,\n  \"camera\": 61915,\n  \"camera-outline\": 61916,\n  \"camera-reverse\": 61917,\n  \"camera-reverse-outline\": 61918,\n  \"camera-reverse-sharp\": 61919,\n  \"camera-sharp\": 61920,\n  \"car\": 61921,\n  \"car-outline\": 61922,\n  \"car-sharp\": 61923,\n  \"car-sport\": 61924,\n  \"car-sport-outline\": 61925,\n  \"car-sport-sharp\": 61926,\n  \"card\": 61927,\n  \"card-outline\": 61928,\n  \"card-sharp\": 61929,\n  \"caret-back\": 61930,\n  \"caret-back-circle\": 61931,\n  \"caret-back-circle-outline\": 61932,\n  \"caret-back-circle-sharp\": 61933,\n  \"caret-back-outline\": 61934,\n  \"caret-back-sharp\": 61935,\n  \"caret-down\": 61936,\n  \"caret-down-circle\": 61937,\n  \"caret-down-circle-outline\": 61938,\n  \"caret-down-circle-sharp\": 61939,\n  \"caret-down-outline\": 61940,\n  \"caret-down-sharp\": 61941,\n  \"caret-forward\": 61942,\n  \"caret-forward-circle\": 61943,\n  \"caret-forward-circle-outline\": 61944,\n  \"caret-forward-circle-sharp\": 61945,\n  \"caret-forward-outline\": 61946,\n  \"caret-forward-sharp\": 61947,\n  \"caret-up\": 61948,\n  \"caret-up-circle\": 61949,\n  \"caret-up-circle-outline\": 61950,\n  \"caret-up-circle-sharp\": 61951,\n  \"caret-up-outline\": 61952,\n  \"caret-up-sharp\": 61953,\n  \"cart\": 61954,\n  \"cart-outline\": 61955,\n  \"cart-sharp\": 61956,\n  \"cash\": 61957,\n  \"cash-outline\": 61958,\n  \"cash-sharp\": 61959,\n  \"cellular\": 61960,\n  \"cellular-outline\": 61961,\n  \"cellular-sharp\": 61962,\n  \"chatbox\": 61963,\n  \"chatbox-ellipses\": 61964,\n  \"chatbox-ellipses-outline\": 61965,\n  \"chatbox-ellipses-sharp\": 61966,\n  \"chatbox-outline\": 61967,\n  \"chatbox-sharp\": 61968,\n  \"chatbubble\": 61969,\n  \"chatbubble-ellipses\": 61970,\n  \"chatbubble-ellipses-outline\": 61971,\n  \"chatbubble-ellipses-sharp\": 61972,\n  \"chatbubble-outline\": 61973,\n  \"chatbubble-sharp\": 61974,\n  \"chatbubbles\": 61975,\n  \"chatbubbles-outline\": 61976,\n  \"chatbubbles-sharp\": 61977,\n  \"checkbox\": 61978,\n  \"checkbox-outline\": 61979,\n  \"checkbox-sharp\": 61980,\n  \"checkmark\": 61981,\n  \"checkmark-circle\": 61982,\n  \"checkmark-circle-outline\": 61983,\n  \"checkmark-circle-sharp\": 61984,\n  \"checkmark-done\": 61985,\n  \"checkmark-done-circle\": 61986,\n  \"checkmark-done-circle-outline\": 61987,\n  \"checkmark-done-circle-sharp\": 61988,\n  \"checkmark-done-outline\": 61989,\n  \"checkmark-done-sharp\": 61990,\n  \"checkmark-outline\": 61991,\n  \"checkmark-sharp\": 61992,\n  \"chevron-back\": 61993,\n  \"chevron-back-circle\": 61994,\n  \"chevron-back-circle-outline\": 61995,\n  \"chevron-back-circle-sharp\": 61996,\n  \"chevron-back-outline\": 61997,\n  \"chevron-back-sharp\": 61998,\n  \"chevron-collapse\": 61999,\n  \"chevron-collapse-outline\": 62000,\n  \"chevron-collapse-sharp\": 62001,\n  \"chevron-down\": 62002,\n  \"chevron-down-circle\": 62003,\n  \"chevron-down-circle-outline\": 62004,\n  \"chevron-down-circle-sharp\": 62005,\n  \"chevron-down-outline\": 62006,\n  \"chevron-down-sharp\": 62007,\n  \"chevron-expand\": 62008,\n  \"chevron-expand-outline\": 62009,\n  \"chevron-expand-sharp\": 62010,\n  \"chevron-forward\": 62011,\n  \"chevron-forward-circle\": 62012,\n  \"chevron-forward-circle-outline\": 62013,\n  \"chevron-forward-circle-sharp\": 62014,\n  \"chevron-forward-outline\": 62015,\n  \"chevron-forward-sharp\": 62016,\n  \"chevron-up\": 62017,\n  \"chevron-up-circle\": 62018,\n  \"chevron-up-circle-outline\": 62019,\n  \"chevron-up-circle-sharp\": 62020,\n  \"chevron-up-outline\": 62021,\n  \"chevron-up-sharp\": 62022,\n  \"clipboard\": 62023,\n  \"clipboard-outline\": 62024,\n  \"clipboard-sharp\": 62025,\n  \"close\": 62026,\n  \"close-circle\": 62027,\n  \"close-circle-outline\": 62028,\n  \"close-circle-sharp\": 62029,\n  \"close-outline\": 62030,\n  \"close-sharp\": 62031,\n  \"cloud\": 62032,\n  \"cloud-circle\": 62033,\n  \"cloud-circle-outline\": 62034,\n  \"cloud-circle-sharp\": 62035,\n  \"cloud-done\": 62036,\n  \"cloud-done-outline\": 62037,\n  \"cloud-done-sharp\": 62038,\n  \"cloud-download\": 62039,\n  \"cloud-download-outline\": 62040,\n  \"cloud-download-sharp\": 62041,\n  \"cloud-offline\": 62042,\n  \"cloud-offline-outline\": 62043,\n  \"cloud-offline-sharp\": 62044,\n  \"cloud-outline\": 62045,\n  \"cloud-sharp\": 62046,\n  \"cloud-upload\": 62047,\n  \"cloud-upload-outline\": 62048,\n  \"cloud-upload-sharp\": 62049,\n  \"cloudy\": 62050,\n  \"cloudy-night\": 62051,\n  \"cloudy-night-outline\": 62052,\n  \"cloudy-night-sharp\": 62053,\n  \"cloudy-outline\": 62054,\n  \"cloudy-sharp\": 62055,\n  \"code\": 62056,\n  \"code-download\": 62057,\n  \"code-download-outline\": 62058,\n  \"code-download-sharp\": 62059,\n  \"code-outline\": 62060,\n  \"code-sharp\": 62061,\n  \"code-slash\": 62062,\n  \"code-slash-outline\": 62063,\n  \"code-slash-sharp\": 62064,\n  \"code-working\": 62065,\n  \"code-working-outline\": 62066,\n  \"code-working-sharp\": 62067,\n  \"cog\": 62068,\n  \"cog-outline\": 62069,\n  \"cog-sharp\": 62070,\n  \"color-fill\": 62071,\n  \"color-fill-outline\": 62072,\n  \"color-fill-sharp\": 62073,\n  \"color-filter\": 62074,\n  \"color-filter-outline\": 62075,\n  \"color-filter-sharp\": 62076,\n  \"color-palette\": 62077,\n  \"color-palette-outline\": 62078,\n  \"color-palette-sharp\": 62079,\n  \"color-wand\": 62080,\n  \"color-wand-outline\": 62081,\n  \"color-wand-sharp\": 62082,\n  \"compass\": 62083,\n  \"compass-outline\": 62084,\n  \"compass-sharp\": 62085,\n  \"construct\": 62086,\n  \"construct-outline\": 62087,\n  \"construct-sharp\": 62088,\n  \"contract\": 62089,\n  \"contract-outline\": 62090,\n  \"contract-sharp\": 62091,\n  \"contrast\": 62092,\n  \"contrast-outline\": 62093,\n  \"contrast-sharp\": 62094,\n  \"copy\": 62095,\n  \"copy-outline\": 62096,\n  \"copy-sharp\": 62097,\n  \"create\": 62098,\n  \"create-outline\": 62099,\n  \"create-sharp\": 62100,\n  \"crop\": 62101,\n  \"crop-outline\": 62102,\n  \"crop-sharp\": 62103,\n  \"cube\": 62104,\n  \"cube-outline\": 62105,\n  \"cube-sharp\": 62106,\n  \"cut\": 62107,\n  \"cut-outline\": 62108,\n  \"cut-sharp\": 62109,\n  \"desktop\": 62110,\n  \"desktop-outline\": 62111,\n  \"desktop-sharp\": 62112,\n  \"diamond\": 62113,\n  \"diamond-outline\": 62114,\n  \"diamond-sharp\": 62115,\n  \"dice\": 62116,\n  \"dice-outline\": 62117,\n  \"dice-sharp\": 62118,\n  \"disc\": 62119,\n  \"disc-outline\": 62120,\n  \"disc-sharp\": 62121,\n  \"document\": 62122,\n  \"document-attach\": 62123,\n  \"document-attach-outline\": 62124,\n  \"document-attach-sharp\": 62125,\n  \"document-lock\": 62126,\n  \"document-lock-outline\": 62127,\n  \"document-lock-sharp\": 62128,\n  \"document-outline\": 62129,\n  \"document-sharp\": 62130,\n  \"document-text\": 62131,\n  \"document-text-outline\": 62132,\n  \"document-text-sharp\": 62133,\n  \"documents\": 62134,\n  \"documents-outline\": 62135,\n  \"documents-sharp\": 62136,\n  \"download\": 62137,\n  \"download-outline\": 62138,\n  \"download-sharp\": 62139,\n  \"duplicate\": 62140,\n  \"duplicate-outline\": 62141,\n  \"duplicate-sharp\": 62142,\n  \"ear\": 62143,\n  \"ear-outline\": 62144,\n  \"ear-sharp\": 62145,\n  \"earth\": 62146,\n  \"earth-outline\": 62147,\n  \"earth-sharp\": 62148,\n  \"easel\": 62149,\n  \"easel-outline\": 62150,\n  \"easel-sharp\": 62151,\n  \"egg\": 62152,\n  \"egg-outline\": 62153,\n  \"egg-sharp\": 62154,\n  \"ellipse\": 62155,\n  \"ellipse-outline\": 62156,\n  \"ellipse-sharp\": 62157,\n  \"ellipsis-horizontal\": 62158,\n  \"ellipsis-horizontal-circle\": 62159,\n  \"ellipsis-horizontal-circle-outline\": 62160,\n  \"ellipsis-horizontal-circle-sharp\": 62161,\n  \"ellipsis-horizontal-outline\": 62162,\n  \"ellipsis-horizontal-sharp\": 62163,\n  \"ellipsis-vertical\": 62164,\n  \"ellipsis-vertical-circle\": 62165,\n  \"ellipsis-vertical-circle-outline\": 62166,\n  \"ellipsis-vertical-circle-sharp\": 62167,\n  \"ellipsis-vertical-outline\": 62168,\n  \"ellipsis-vertical-sharp\": 62169,\n  \"enter\": 62170,\n  \"enter-outline\": 62171,\n  \"enter-sharp\": 62172,\n  \"exit\": 62173,\n  \"exit-outline\": 62174,\n  \"exit-sharp\": 62175,\n  \"expand\": 62176,\n  \"expand-outline\": 62177,\n  \"expand-sharp\": 62178,\n  \"extension-puzzle\": 62179,\n  \"extension-puzzle-outline\": 62180,\n  \"extension-puzzle-sharp\": 62181,\n  \"eye\": 62182,\n  \"eye-off\": 62183,\n  \"eye-off-outline\": 62184,\n  \"eye-off-sharp\": 62185,\n  \"eye-outline\": 62186,\n  \"eye-sharp\": 62187,\n  \"eyedrop\": 62188,\n  \"eyedrop-outline\": 62189,\n  \"eyedrop-sharp\": 62190,\n  \"fast-food\": 62191,\n  \"fast-food-outline\": 62192,\n  \"fast-food-sharp\": 62193,\n  \"female\": 62194,\n  \"female-outline\": 62195,\n  \"female-sharp\": 62196,\n  \"file-tray\": 62197,\n  \"file-tray-full\": 62198,\n  \"file-tray-full-outline\": 62199,\n  \"file-tray-full-sharp\": 62200,\n  \"file-tray-outline\": 62201,\n  \"file-tray-sharp\": 62202,\n  \"file-tray-stacked\": 62203,\n  \"file-tray-stacked-outline\": 62204,\n  \"file-tray-stacked-sharp\": 62205,\n  \"film\": 62206,\n  \"film-outline\": 62207,\n  \"film-sharp\": 62208,\n  \"filter\": 62209,\n  \"filter-circle\": 62210,\n  \"filter-circle-outline\": 62211,\n  \"filter-circle-sharp\": 62212,\n  \"filter-outline\": 62213,\n  \"filter-sharp\": 62214,\n  \"finger-print\": 62215,\n  \"finger-print-outline\": 62216,\n  \"finger-print-sharp\": 62217,\n  \"fish\": 62218,\n  \"fish-outline\": 62219,\n  \"fish-sharp\": 62220,\n  \"fitness\": 62221,\n  \"fitness-outline\": 62222,\n  \"fitness-sharp\": 62223,\n  \"flag\": 62224,\n  \"flag-outline\": 62225,\n  \"flag-sharp\": 62226,\n  \"flame\": 62227,\n  \"flame-outline\": 62228,\n  \"flame-sharp\": 62229,\n  \"flash\": 62230,\n  \"flash-off\": 62231,\n  \"flash-off-outline\": 62232,\n  \"flash-off-sharp\": 62233,\n  \"flash-outline\": 62234,\n  \"flash-sharp\": 62235,\n  \"flashlight\": 62236,\n  \"flashlight-outline\": 62237,\n  \"flashlight-sharp\": 62238,\n  \"flask\": 62239,\n  \"flask-outline\": 62240,\n  \"flask-sharp\": 62241,\n  \"flower\": 62242,\n  \"flower-outline\": 62243,\n  \"flower-sharp\": 62244,\n  \"folder\": 62245,\n  \"folder-open\": 62246,\n  \"folder-open-outline\": 62247,\n  \"folder-open-sharp\": 62248,\n  \"folder-outline\": 62249,\n  \"folder-sharp\": 62250,\n  \"football\": 62251,\n  \"football-outline\": 62252,\n  \"football-sharp\": 62253,\n  \"footsteps\": 62254,\n  \"footsteps-outline\": 62255,\n  \"footsteps-sharp\": 62256,\n  \"funnel\": 62257,\n  \"funnel-outline\": 62258,\n  \"funnel-sharp\": 62259,\n  \"game-controller\": 62260,\n  \"game-controller-outline\": 62261,\n  \"game-controller-sharp\": 62262,\n  \"gift\": 62263,\n  \"gift-outline\": 62264,\n  \"gift-sharp\": 62265,\n  \"git-branch\": 62266,\n  \"git-branch-outline\": 62267,\n  \"git-branch-sharp\": 62268,\n  \"git-commit\": 62269,\n  \"git-commit-outline\": 62270,\n  \"git-commit-sharp\": 62271,\n  \"git-compare\": 62272,\n  \"git-compare-outline\": 62273,\n  \"git-compare-sharp\": 62274,\n  \"git-merge\": 62275,\n  \"git-merge-outline\": 62276,\n  \"git-merge-sharp\": 62277,\n  \"git-network\": 62278,\n  \"git-network-outline\": 62279,\n  \"git-network-sharp\": 62280,\n  \"git-pull-request\": 62281,\n  \"git-pull-request-outline\": 62282,\n  \"git-pull-request-sharp\": 62283,\n  \"glasses\": 62284,\n  \"glasses-outline\": 62285,\n  \"glasses-sharp\": 62286,\n  \"globe\": 62287,\n  \"globe-outline\": 62288,\n  \"globe-sharp\": 62289,\n  \"golf\": 62290,\n  \"golf-outline\": 62291,\n  \"golf-sharp\": 62292,\n  \"grid\": 62293,\n  \"grid-outline\": 62294,\n  \"grid-sharp\": 62295,\n  \"hammer\": 62296,\n  \"hammer-outline\": 62297,\n  \"hammer-sharp\": 62298,\n  \"hand-left\": 62299,\n  \"hand-left-outline\": 62300,\n  \"hand-left-sharp\": 62301,\n  \"hand-right\": 62302,\n  \"hand-right-outline\": 62303,\n  \"hand-right-sharp\": 62304,\n  \"happy\": 62305,\n  \"happy-outline\": 62306,\n  \"happy-sharp\": 62307,\n  \"hardware-chip\": 62308,\n  \"hardware-chip-outline\": 62309,\n  \"hardware-chip-sharp\": 62310,\n  \"headset\": 62311,\n  \"headset-outline\": 62312,\n  \"headset-sharp\": 62313,\n  \"heart\": 62314,\n  \"heart-circle\": 62315,\n  \"heart-circle-outline\": 62316,\n  \"heart-circle-sharp\": 62317,\n  \"heart-dislike\": 62318,\n  \"heart-dislike-circle\": 62319,\n  \"heart-dislike-circle-outline\": 62320,\n  \"heart-dislike-circle-sharp\": 62321,\n  \"heart-dislike-outline\": 62322,\n  \"heart-dislike-sharp\": 62323,\n  \"heart-half\": 62324,\n  \"heart-half-outline\": 62325,\n  \"heart-half-sharp\": 62326,\n  \"heart-outline\": 62327,\n  \"heart-sharp\": 62328,\n  \"help\": 62329,\n  \"help-buoy\": 62330,\n  \"help-buoy-outline\": 62331,\n  \"help-buoy-sharp\": 62332,\n  \"help-circle\": 62333,\n  \"help-circle-outline\": 62334,\n  \"help-circle-sharp\": 62335,\n  \"help-outline\": 62336,\n  \"help-sharp\": 62337,\n  \"home\": 62338,\n  \"home-outline\": 62339,\n  \"home-sharp\": 62340,\n  \"hourglass\": 62341,\n  \"hourglass-outline\": 62342,\n  \"hourglass-sharp\": 62343,\n  \"ice-cream\": 62344,\n  \"ice-cream-outline\": 62345,\n  \"ice-cream-sharp\": 62346,\n  \"id-card\": 62347,\n  \"id-card-outline\": 62348,\n  \"id-card-sharp\": 62349,\n  \"image\": 62350,\n  \"image-outline\": 62351,\n  \"image-sharp\": 62352,\n  \"images\": 62353,\n  \"images-outline\": 62354,\n  \"images-sharp\": 62355,\n  \"infinite\": 62356,\n  \"infinite-outline\": 62357,\n  \"infinite-sharp\": 62358,\n  \"information\": 62359,\n  \"information-circle\": 62360,\n  \"information-circle-outline\": 62361,\n  \"information-circle-sharp\": 62362,\n  \"information-outline\": 62363,\n  \"information-sharp\": 62364,\n  \"invert-mode\": 62365,\n  \"invert-mode-outline\": 62366,\n  \"invert-mode-sharp\": 62367,\n  \"journal\": 62368,\n  \"journal-outline\": 62369,\n  \"journal-sharp\": 62370,\n  \"key\": 62371,\n  \"key-outline\": 62372,\n  \"key-sharp\": 62373,\n  \"keypad\": 62374,\n  \"keypad-outline\": 62375,\n  \"keypad-sharp\": 62376,\n  \"language\": 62377,\n  \"language-outline\": 62378,\n  \"language-sharp\": 62379,\n  \"laptop\": 62380,\n  \"laptop-outline\": 62381,\n  \"laptop-sharp\": 62382,\n  \"layers\": 62383,\n  \"layers-outline\": 62384,\n  \"layers-sharp\": 62385,\n  \"leaf\": 62386,\n  \"leaf-outline\": 62387,\n  \"leaf-sharp\": 62388,\n  \"library\": 62389,\n  \"library-outline\": 62390,\n  \"library-sharp\": 62391,\n  \"link\": 62392,\n  \"link-outline\": 62393,\n  \"link-sharp\": 62394,\n  \"list\": 62395,\n  \"list-circle\": 62396,\n  \"list-circle-outline\": 62397,\n  \"list-circle-sharp\": 62398,\n  \"list-outline\": 62399,\n  \"list-sharp\": 62400,\n  \"locate\": 62401,\n  \"locate-outline\": 62402,\n  \"locate-sharp\": 62403,\n  \"location\": 62404,\n  \"location-outline\": 62405,\n  \"location-sharp\": 62406,\n  \"lock-closed\": 62407,\n  \"lock-closed-outline\": 62408,\n  \"lock-closed-sharp\": 62409,\n  \"lock-open\": 62410,\n  \"lock-open-outline\": 62411,\n  \"lock-open-sharp\": 62412,\n  \"log-in\": 62413,\n  \"log-in-outline\": 62414,\n  \"log-in-sharp\": 62415,\n  \"log-out\": 62416,\n  \"log-out-outline\": 62417,\n  \"log-out-sharp\": 62418,\n  \"logo-alipay\": 62419,\n  \"logo-amazon\": 62420,\n  \"logo-amplify\": 62421,\n  \"logo-android\": 62422,\n  \"logo-angular\": 62423,\n  \"logo-appflow\": 63049,\n  \"logo-apple\": 62424,\n  \"logo-apple-appstore\": 62425,\n  \"logo-apple-ar\": 62426,\n  \"logo-behance\": 62427,\n  \"logo-bitbucket\": 62428,\n  \"logo-bitcoin\": 62429,\n  \"logo-buffer\": 62430,\n  \"logo-capacitor\": 62431,\n  \"logo-chrome\": 62432,\n  \"logo-closed-captioning\": 62433,\n  \"logo-codepen\": 62434,\n  \"logo-css3\": 62435,\n  \"logo-designernews\": 62436,\n  \"logo-deviantart\": 62437,\n  \"logo-discord\": 62438,\n  \"logo-docker\": 62439,\n  \"logo-dribbble\": 62440,\n  \"logo-dropbox\": 62441,\n  \"logo-edge\": 62442,\n  \"logo-electron\": 62443,\n  \"logo-euro\": 62444,\n  \"logo-facebook\": 62445,\n  \"logo-figma\": 62446,\n  \"logo-firebase\": 62447,\n  \"logo-firefox\": 62448,\n  \"logo-flickr\": 62449,\n  \"logo-foursquare\": 62450,\n  \"logo-github\": 62451,\n  \"logo-gitlab\": 62452,\n  \"logo-google\": 62453,\n  \"logo-google-playstore\": 62454,\n  \"logo-hackernews\": 62455,\n  \"logo-html5\": 62456,\n  \"logo-instagram\": 62457,\n  \"logo-ionic\": 62458,\n  \"logo-ionitron\": 62459,\n  \"logo-javascript\": 62460,\n  \"logo-laravel\": 62461,\n  \"logo-linkedin\": 62462,\n  \"logo-markdown\": 62463,\n  \"logo-mastodon\": 62464,\n  \"logo-medium\": 62465,\n  \"logo-microsoft\": 62466,\n  \"logo-no-smoking\": 62467,\n  \"logo-nodejs\": 62468,\n  \"logo-npm\": 62469,\n  \"logo-octocat\": 62470,\n  \"logo-paypal\": 62471,\n  \"logo-pinterest\": 62472,\n  \"logo-playstation\": 62473,\n  \"logo-pwa\": 62474,\n  \"logo-python\": 62475,\n  \"logo-react\": 62476,\n  \"logo-reddit\": 62477,\n  \"logo-rss\": 62478,\n  \"logo-sass\": 62479,\n  \"logo-skype\": 62480,\n  \"logo-slack\": 62481,\n  \"logo-snapchat\": 62482,\n  \"logo-soundcloud\": 62483,\n  \"logo-stackoverflow\": 62484,\n  \"logo-steam\": 62485,\n  \"logo-stencil\": 62486,\n  \"logo-tableau\": 62487,\n  \"logo-threads\": 63052,\n  \"logo-tiktok\": 62488,\n  \"logo-trapeze\": 63050,\n  \"logo-tumblr\": 62489,\n  \"logo-tux\": 62490,\n  \"logo-twitch\": 62491,\n  \"logo-twitter\": 62492,\n  \"logo-usd\": 62493,\n  \"logo-venmo\": 62494,\n  \"logo-vercel\": 62495,\n  \"logo-vimeo\": 62496,\n  \"logo-vk\": 62497,\n  \"logo-vue\": 62498,\n  \"logo-web-component\": 62499,\n  \"logo-wechat\": 62500,\n  \"logo-whatsapp\": 62501,\n  \"logo-windows\": 62502,\n  \"logo-wordpress\": 62503,\n  \"logo-x\": 63051,\n  \"logo-xbox\": 62504,\n  \"logo-xing\": 62505,\n  \"logo-yahoo\": 62506,\n  \"logo-yen\": 62507,\n  \"logo-youtube\": 62508,\n  \"magnet\": 62509,\n  \"magnet-outline\": 62510,\n  \"magnet-sharp\": 62511,\n  \"mail\": 62512,\n  \"mail-open\": 62513,\n  \"mail-open-outline\": 62514,\n  \"mail-open-sharp\": 62515,\n  \"mail-outline\": 62516,\n  \"mail-sharp\": 62517,\n  \"mail-unread\": 62518,\n  \"mail-unread-outline\": 62519,\n  \"mail-unread-sharp\": 62520,\n  \"male\": 62521,\n  \"male-female\": 62522,\n  \"male-female-outline\": 62523,\n  \"male-female-sharp\": 62524,\n  \"male-outline\": 62525,\n  \"male-sharp\": 62526,\n  \"man\": 62527,\n  \"man-outline\": 62528,\n  \"man-sharp\": 62529,\n  \"map\": 62530,\n  \"map-outline\": 62531,\n  \"map-sharp\": 62532,\n  \"medal\": 62533,\n  \"medal-outline\": 62534,\n  \"medal-sharp\": 62535,\n  \"medical\": 62536,\n  \"medical-outline\": 62537,\n  \"medical-sharp\": 62538,\n  \"medkit\": 62539,\n  \"medkit-outline\": 62540,\n  \"medkit-sharp\": 62541,\n  \"megaphone\": 62542,\n  \"megaphone-outline\": 62543,\n  \"megaphone-sharp\": 62544,\n  \"menu\": 62545,\n  \"menu-outline\": 62546,\n  \"menu-sharp\": 62547,\n  \"mic\": 62548,\n  \"mic-circle\": 62549,\n  \"mic-circle-outline\": 62550,\n  \"mic-circle-sharp\": 62551,\n  \"mic-off\": 62552,\n  \"mic-off-circle\": 62553,\n  \"mic-off-circle-outline\": 62554,\n  \"mic-off-circle-sharp\": 62555,\n  \"mic-off-outline\": 62556,\n  \"mic-off-sharp\": 62557,\n  \"mic-outline\": 62558,\n  \"mic-sharp\": 62559,\n  \"moon\": 62560,\n  \"moon-outline\": 62561,\n  \"moon-sharp\": 62562,\n  \"move\": 62563,\n  \"move-outline\": 62564,\n  \"move-sharp\": 62565,\n  \"musical-note\": 62566,\n  \"musical-note-outline\": 62567,\n  \"musical-note-sharp\": 62568,\n  \"musical-notes\": 62569,\n  \"musical-notes-outline\": 62570,\n  \"musical-notes-sharp\": 62571,\n  \"navigate\": 62572,\n  \"navigate-circle\": 62573,\n  \"navigate-circle-outline\": 62574,\n  \"navigate-circle-sharp\": 62575,\n  \"navigate-outline\": 62576,\n  \"navigate-sharp\": 62577,\n  \"newspaper\": 62578,\n  \"newspaper-outline\": 62579,\n  \"newspaper-sharp\": 62580,\n  \"notifications\": 62581,\n  \"notifications-circle\": 62582,\n  \"notifications-circle-outline\": 62583,\n  \"notifications-circle-sharp\": 62584,\n  \"notifications-off\": 62585,\n  \"notifications-off-circle\": 62586,\n  \"notifications-off-circle-outline\": 62587,\n  \"notifications-off-circle-sharp\": 62588,\n  \"notifications-off-outline\": 62589,\n  \"notifications-off-sharp\": 62590,\n  \"notifications-outline\": 62591,\n  \"notifications-sharp\": 62592,\n  \"nuclear\": 62593,\n  \"nuclear-outline\": 62594,\n  \"nuclear-sharp\": 62595,\n  \"nutrition\": 62596,\n  \"nutrition-outline\": 62597,\n  \"nutrition-sharp\": 62598,\n  \"open\": 62599,\n  \"open-outline\": 62600,\n  \"open-sharp\": 62601,\n  \"options\": 62602,\n  \"options-outline\": 62603,\n  \"options-sharp\": 62604,\n  \"paper-plane\": 62605,\n  \"paper-plane-outline\": 62606,\n  \"paper-plane-sharp\": 62607,\n  \"partly-sunny\": 62608,\n  \"partly-sunny-outline\": 62609,\n  \"partly-sunny-sharp\": 62610,\n  \"pause\": 62611,\n  \"pause-circle\": 62612,\n  \"pause-circle-outline\": 62613,\n  \"pause-circle-sharp\": 62614,\n  \"pause-outline\": 62615,\n  \"pause-sharp\": 62616,\n  \"paw\": 62617,\n  \"paw-outline\": 62618,\n  \"paw-sharp\": 62619,\n  \"pencil\": 62620,\n  \"pencil-outline\": 62621,\n  \"pencil-sharp\": 62622,\n  \"people\": 62623,\n  \"people-circle\": 62624,\n  \"people-circle-outline\": 62625,\n  \"people-circle-sharp\": 62626,\n  \"people-outline\": 62627,\n  \"people-sharp\": 62628,\n  \"person\": 62629,\n  \"person-add\": 62630,\n  \"person-add-outline\": 62631,\n  \"person-add-sharp\": 62632,\n  \"person-circle\": 62633,\n  \"person-circle-outline\": 62634,\n  \"person-circle-sharp\": 62635,\n  \"person-outline\": 62636,\n  \"person-remove\": 62637,\n  \"person-remove-outline\": 62638,\n  \"person-remove-sharp\": 62639,\n  \"person-sharp\": 62640,\n  \"phone-landscape\": 62641,\n  \"phone-landscape-outline\": 62642,\n  \"phone-landscape-sharp\": 62643,\n  \"phone-portrait\": 62644,\n  \"phone-portrait-outline\": 62645,\n  \"phone-portrait-sharp\": 62646,\n  \"pie-chart\": 62647,\n  \"pie-chart-outline\": 62648,\n  \"pie-chart-sharp\": 62649,\n  \"pin\": 62650,\n  \"pin-outline\": 62651,\n  \"pin-sharp\": 62652,\n  \"pint\": 62653,\n  \"pint-outline\": 62654,\n  \"pint-sharp\": 62655,\n  \"pizza\": 62656,\n  \"pizza-outline\": 62657,\n  \"pizza-sharp\": 62658,\n  \"planet\": 62659,\n  \"planet-outline\": 62660,\n  \"planet-sharp\": 62661,\n  \"play\": 62662,\n  \"play-back\": 62663,\n  \"play-back-circle\": 62664,\n  \"play-back-circle-outline\": 62665,\n  \"play-back-circle-sharp\": 62666,\n  \"play-back-outline\": 62667,\n  \"play-back-sharp\": 62668,\n  \"play-circle\": 62669,\n  \"play-circle-outline\": 62670,\n  \"play-circle-sharp\": 62671,\n  \"play-forward\": 62672,\n  \"play-forward-circle\": 62673,\n  \"play-forward-circle-outline\": 62674,\n  \"play-forward-circle-sharp\": 62675,\n  \"play-forward-outline\": 62676,\n  \"play-forward-sharp\": 62677,\n  \"play-outline\": 62678,\n  \"play-sharp\": 62679,\n  \"play-skip-back\": 62680,\n  \"play-skip-back-circle\": 62681,\n  \"play-skip-back-circle-outline\": 62682,\n  \"play-skip-back-circle-sharp\": 62683,\n  \"play-skip-back-outline\": 62684,\n  \"play-skip-back-sharp\": 62685,\n  \"play-skip-forward\": 62686,\n  \"play-skip-forward-circle\": 62687,\n  \"play-skip-forward-circle-outline\": 62688,\n  \"play-skip-forward-circle-sharp\": 62689,\n  \"play-skip-forward-outline\": 62690,\n  \"play-skip-forward-sharp\": 62691,\n  \"podium\": 62692,\n  \"podium-outline\": 62693,\n  \"podium-sharp\": 62694,\n  \"power\": 62695,\n  \"power-outline\": 62696,\n  \"power-sharp\": 62697,\n  \"pricetag\": 62698,\n  \"pricetag-outline\": 62699,\n  \"pricetag-sharp\": 62700,\n  \"pricetags\": 62701,\n  \"pricetags-outline\": 62702,\n  \"pricetags-sharp\": 62703,\n  \"print\": 62704,\n  \"print-outline\": 62705,\n  \"print-sharp\": 62706,\n  \"prism\": 62707,\n  \"prism-outline\": 62708,\n  \"prism-sharp\": 62709,\n  \"pulse\": 62710,\n  \"pulse-outline\": 62711,\n  \"pulse-sharp\": 62712,\n  \"push\": 62713,\n  \"push-outline\": 62714,\n  \"push-sharp\": 62715,\n  \"qr-code\": 62716,\n  \"qr-code-outline\": 62717,\n  \"qr-code-sharp\": 62718,\n  \"radio\": 62719,\n  \"radio-button-off\": 62720,\n  \"radio-button-off-outline\": 62721,\n  \"radio-button-off-sharp\": 62722,\n  \"radio-button-on\": 62723,\n  \"radio-button-on-outline\": 62724,\n  \"radio-button-on-sharp\": 62725,\n  \"radio-outline\": 62726,\n  \"radio-sharp\": 62727,\n  \"rainy\": 62728,\n  \"rainy-outline\": 62729,\n  \"rainy-sharp\": 62730,\n  \"reader\": 62731,\n  \"reader-outline\": 62732,\n  \"reader-sharp\": 62733,\n  \"receipt\": 62734,\n  \"receipt-outline\": 62735,\n  \"receipt-sharp\": 62736,\n  \"recording\": 62737,\n  \"recording-outline\": 62738,\n  \"recording-sharp\": 62739,\n  \"refresh\": 62740,\n  \"refresh-circle\": 62741,\n  \"refresh-circle-outline\": 62742,\n  \"refresh-circle-sharp\": 62743,\n  \"refresh-outline\": 62744,\n  \"refresh-sharp\": 62745,\n  \"reload\": 62746,\n  \"reload-circle\": 62747,\n  \"reload-circle-outline\": 62748,\n  \"reload-circle-sharp\": 62749,\n  \"reload-outline\": 62750,\n  \"reload-sharp\": 62751,\n  \"remove\": 62752,\n  \"remove-circle\": 62753,\n  \"remove-circle-outline\": 62754,\n  \"remove-circle-sharp\": 62755,\n  \"remove-outline\": 62756,\n  \"remove-sharp\": 62757,\n  \"reorder-four\": 62758,\n  \"reorder-four-outline\": 62759,\n  \"reorder-four-sharp\": 62760,\n  \"reorder-three\": 62761,\n  \"reorder-three-outline\": 62762,\n  \"reorder-three-sharp\": 62763,\n  \"reorder-two\": 62764,\n  \"reorder-two-outline\": 62765,\n  \"reorder-two-sharp\": 62766,\n  \"repeat\": 62767,\n  \"repeat-outline\": 62768,\n  \"repeat-sharp\": 62769,\n  \"resize\": 62770,\n  \"resize-outline\": 62771,\n  \"resize-sharp\": 62772,\n  \"restaurant\": 62773,\n  \"restaurant-outline\": 62774,\n  \"restaurant-sharp\": 62775,\n  \"return-down-back\": 62776,\n  \"return-down-back-outline\": 62777,\n  \"return-down-back-sharp\": 62778,\n  \"return-down-forward\": 62779,\n  \"return-down-forward-outline\": 62780,\n  \"return-down-forward-sharp\": 62781,\n  \"return-up-back\": 62782,\n  \"return-up-back-outline\": 62783,\n  \"return-up-back-sharp\": 62784,\n  \"return-up-forward\": 62785,\n  \"return-up-forward-outline\": 62786,\n  \"return-up-forward-sharp\": 62787,\n  \"ribbon\": 62788,\n  \"ribbon-outline\": 62789,\n  \"ribbon-sharp\": 62790,\n  \"rocket\": 62791,\n  \"rocket-outline\": 62792,\n  \"rocket-sharp\": 62793,\n  \"rose\": 62794,\n  \"rose-outline\": 62795,\n  \"rose-sharp\": 62796,\n  \"sad\": 62797,\n  \"sad-outline\": 62798,\n  \"sad-sharp\": 62799,\n  \"save\": 62800,\n  \"save-outline\": 62801,\n  \"save-sharp\": 62802,\n  \"scale\": 62803,\n  \"scale-outline\": 62804,\n  \"scale-sharp\": 62805,\n  \"scan\": 62806,\n  \"scan-circle\": 62807,\n  \"scan-circle-outline\": 62808,\n  \"scan-circle-sharp\": 62809,\n  \"scan-outline\": 62810,\n  \"scan-sharp\": 62811,\n  \"school\": 62812,\n  \"school-outline\": 62813,\n  \"school-sharp\": 62814,\n  \"search\": 62815,\n  \"search-circle\": 62816,\n  \"search-circle-outline\": 62817,\n  \"search-circle-sharp\": 62818,\n  \"search-outline\": 62819,\n  \"search-sharp\": 62820,\n  \"send\": 62821,\n  \"send-outline\": 62822,\n  \"send-sharp\": 62823,\n  \"server\": 62824,\n  \"server-outline\": 62825,\n  \"server-sharp\": 62826,\n  \"settings\": 62827,\n  \"settings-outline\": 62828,\n  \"settings-sharp\": 62829,\n  \"shapes\": 62830,\n  \"shapes-outline\": 62831,\n  \"shapes-sharp\": 62832,\n  \"share\": 62833,\n  \"share-outline\": 62834,\n  \"share-sharp\": 62835,\n  \"share-social\": 62836,\n  \"share-social-outline\": 62837,\n  \"share-social-sharp\": 62838,\n  \"shield\": 62839,\n  \"shield-checkmark\": 62840,\n  \"shield-checkmark-outline\": 62841,\n  \"shield-checkmark-sharp\": 62842,\n  \"shield-half\": 62843,\n  \"shield-half-outline\": 62844,\n  \"shield-half-sharp\": 62845,\n  \"shield-outline\": 62846,\n  \"shield-sharp\": 62847,\n  \"shirt\": 62848,\n  \"shirt-outline\": 62849,\n  \"shirt-sharp\": 62850,\n  \"shuffle\": 62851,\n  \"shuffle-outline\": 62852,\n  \"shuffle-sharp\": 62853,\n  \"skull\": 62854,\n  \"skull-outline\": 62855,\n  \"skull-sharp\": 62856,\n  \"snow\": 62857,\n  \"snow-outline\": 62858,\n  \"snow-sharp\": 62859,\n  \"sparkles\": 62860,\n  \"sparkles-outline\": 62861,\n  \"sparkles-sharp\": 62862,\n  \"speedometer\": 62863,\n  \"speedometer-outline\": 62864,\n  \"speedometer-sharp\": 62865,\n  \"square\": 62866,\n  \"square-outline\": 62867,\n  \"square-sharp\": 62868,\n  \"star\": 62869,\n  \"star-half\": 62870,\n  \"star-half-outline\": 62871,\n  \"star-half-sharp\": 62872,\n  \"star-outline\": 62873,\n  \"star-sharp\": 62874,\n  \"stats-chart\": 62875,\n  \"stats-chart-outline\": 62876,\n  \"stats-chart-sharp\": 62877,\n  \"stop\": 62878,\n  \"stop-circle\": 62879,\n  \"stop-circle-outline\": 62880,\n  \"stop-circle-sharp\": 62881,\n  \"stop-outline\": 62882,\n  \"stop-sharp\": 62883,\n  \"stopwatch\": 62884,\n  \"stopwatch-outline\": 62885,\n  \"stopwatch-sharp\": 62886,\n  \"storefront\": 62887,\n  \"storefront-outline\": 62888,\n  \"storefront-sharp\": 62889,\n  \"subway\": 62890,\n  \"subway-outline\": 62891,\n  \"subway-sharp\": 62892,\n  \"sunny\": 62893,\n  \"sunny-outline\": 62894,\n  \"sunny-sharp\": 62895,\n  \"swap-horizontal\": 62896,\n  \"swap-horizontal-outline\": 62897,\n  \"swap-horizontal-sharp\": 62898,\n  \"swap-vertical\": 62899,\n  \"swap-vertical-outline\": 62900,\n  \"swap-vertical-sharp\": 62901,\n  \"sync\": 62902,\n  \"sync-circle\": 62903,\n  \"sync-circle-outline\": 62904,\n  \"sync-circle-sharp\": 62905,\n  \"sync-outline\": 62906,\n  \"sync-sharp\": 62907,\n  \"tablet-landscape\": 62908,\n  \"tablet-landscape-outline\": 62909,\n  \"tablet-landscape-sharp\": 62910,\n  \"tablet-portrait\": 62911,\n  \"tablet-portrait-outline\": 62912,\n  \"tablet-portrait-sharp\": 62913,\n  \"telescope\": 62914,\n  \"telescope-outline\": 62915,\n  \"telescope-sharp\": 62916,\n  \"tennisball\": 62917,\n  \"tennisball-outline\": 62918,\n  \"tennisball-sharp\": 62919,\n  \"terminal\": 62920,\n  \"terminal-outline\": 62921,\n  \"terminal-sharp\": 62922,\n  \"text\": 62923,\n  \"text-outline\": 62924,\n  \"text-sharp\": 62925,\n  \"thermometer\": 62926,\n  \"thermometer-outline\": 62927,\n  \"thermometer-sharp\": 62928,\n  \"thumbs-down\": 62929,\n  \"thumbs-down-outline\": 62930,\n  \"thumbs-down-sharp\": 62931,\n  \"thumbs-up\": 62932,\n  \"thumbs-up-outline\": 62933,\n  \"thumbs-up-sharp\": 62934,\n  \"thunderstorm\": 62935,\n  \"thunderstorm-outline\": 62936,\n  \"thunderstorm-sharp\": 62937,\n  \"ticket\": 62938,\n  \"ticket-outline\": 62939,\n  \"ticket-sharp\": 62940,\n  \"time\": 62941,\n  \"time-outline\": 62942,\n  \"time-sharp\": 62943,\n  \"timer\": 62944,\n  \"timer-outline\": 62945,\n  \"timer-sharp\": 62946,\n  \"today\": 62947,\n  \"today-outline\": 62948,\n  \"today-sharp\": 62949,\n  \"toggle\": 62950,\n  \"toggle-outline\": 62951,\n  \"toggle-sharp\": 62952,\n  \"trail-sign\": 62953,\n  \"trail-sign-outline\": 62954,\n  \"trail-sign-sharp\": 62955,\n  \"train\": 62956,\n  \"train-outline\": 62957,\n  \"train-sharp\": 62958,\n  \"transgender\": 62959,\n  \"transgender-outline\": 62960,\n  \"transgender-sharp\": 62961,\n  \"trash\": 62962,\n  \"trash-bin\": 62963,\n  \"trash-bin-outline\": 62964,\n  \"trash-bin-sharp\": 62965,\n  \"trash-outline\": 62966,\n  \"trash-sharp\": 62967,\n  \"trending-down\": 62968,\n  \"trending-down-outline\": 62969,\n  \"trending-down-sharp\": 62970,\n  \"trending-up\": 62971,\n  \"trending-up-outline\": 62972,\n  \"trending-up-sharp\": 62973,\n  \"triangle\": 62974,\n  \"triangle-outline\": 62975,\n  \"triangle-sharp\": 62976,\n  \"trophy\": 62977,\n  \"trophy-outline\": 62978,\n  \"trophy-sharp\": 62979,\n  \"tv\": 62980,\n  \"tv-outline\": 62981,\n  \"tv-sharp\": 62982,\n  \"umbrella\": 62983,\n  \"umbrella-outline\": 62984,\n  \"umbrella-sharp\": 62985,\n  \"unlink\": 62986,\n  \"unlink-outline\": 62987,\n  \"unlink-sharp\": 62988,\n  \"videocam\": 62989,\n  \"videocam-off\": 62990,\n  \"videocam-off-outline\": 62991,\n  \"videocam-off-sharp\": 62992,\n  \"videocam-outline\": 62993,\n  \"videocam-sharp\": 62994,\n  \"volume-high\": 62995,\n  \"volume-high-outline\": 62996,\n  \"volume-high-sharp\": 62997,\n  \"volume-low\": 62998,\n  \"volume-low-outline\": 62999,\n  \"volume-low-sharp\": 63000,\n  \"volume-medium\": 63001,\n  \"volume-medium-outline\": 63002,\n  \"volume-medium-sharp\": 63003,\n  \"volume-mute\": 63004,\n  \"volume-mute-outline\": 63005,\n  \"volume-mute-sharp\": 63006,\n  \"volume-off\": 63007,\n  \"volume-off-outline\": 63008,\n  \"volume-off-sharp\": 63009,\n  \"walk\": 63010,\n  \"walk-outline\": 63011,\n  \"walk-sharp\": 63012,\n  \"wallet\": 63013,\n  \"wallet-outline\": 63014,\n  \"wallet-sharp\": 63015,\n  \"warning\": 63016,\n  \"warning-outline\": 63017,\n  \"warning-sharp\": 63018,\n  \"watch\": 63019,\n  \"watch-outline\": 63020,\n  \"watch-sharp\": 63021,\n  \"water\": 63022,\n  \"water-outline\": 63023,\n  \"water-sharp\": 63024,\n  \"wifi\": 63025,\n  \"wifi-outline\": 63026,\n  \"wifi-sharp\": 63027,\n  \"wine\": 63028,\n  \"wine-outline\": 63029,\n  \"wine-sharp\": 63030,\n  \"woman\": 63031,\n  \"woman-outline\": 63032,\n  \"woman-sharp\": 63033\n}"
  },
  {
    "path": "packages/ionicons/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/ionicons\",\n  \"version\": \"12.5.0\",\n  \"description\": \"Ionicons font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\",\n    \"./fonts/*.ttf\": \"./fonts/*.ttf\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"ionicons\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/ionicons\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\",\n    \"ionicons\": \"8.0.13\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/ionicons/react-native-vector-icons-ionicons.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-ionicons'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\nend\n"
  },
  {
    "path": "packages/ionicons/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * Ionicons icon set component.\n * Usage: <Ionicons name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/Ionicons.json';\n\nexport const Ionicons = createIconSet(glyphMap, {\n  postScriptName: 'Ionicons',\n  fontFileName: 'Ionicons.ttf',\n  fontSource: require('../fonts/Ionicons.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require\n});\n\nexport type IoniconsIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default Ionicons;\n"
  },
  {
    "path": "packages/ionicons/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * Ionicons icon set component.\n * Usage: <Ionicons name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/Ionicons.json';\n\nexport const Ionicons = createIconSet(glyphMap, {\n  postScriptName: 'Ionicons',\n  fontFileName: 'Ionicons.ttf',\n});\n\nexport type IoniconsIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default Ionicons;\n"
  },
  {
    "path": "packages/ionicons/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/ionicons/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/lucide/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"lucide\",\n    \"upstreamFont\": \"lucide-static\",\n    \"buildSteps\": {\n      \"glyphmap\": {\n        \"location\": \"../../node_modules/lucide-static/font/lucide.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".icon-\"\n      },\n      \"copyFont\": {\n        \"location\": \"../../node_modules/lucide-static/font/lucide.ttf\",\n        \"cleanup\": true\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"12.0.0\",\n        \"upstream\": \"0.473.0\"\n      },\n      {\n        \"rnvi\": \"12.0.1\",\n        \"upstream\": \"0.525.0\"\n      },\n      {\n        \"rnvi\": \"12.4.1\",\n        \"upstream\": \"0.576.0\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/lucide/CHANGELOG.md",
    "content": "## 12.5.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.4.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 12.4.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🩹 Fixes\n\n- upgrade Lucide to 0.576.0 ([#1875](https://github.com/oblador/react-native-vector-icons/pull/1875))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.4.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 12.4.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🩹 Fixes\n\n- upgrade lucide to 0.548.0 ([#1852](https://github.com/oblador/react-native-vector-icons/pull/1852))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.3.0 (2025-08-03)\n\n### 🚀 Features\n\n- export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.3.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.2.0 (2025-07-20)\n\n### 🚀 Features\n\n- add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.2.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.1.0 (2025-07-12)\n\n### 🚀 Features\n\n- export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761))\n\n### 🩹 Fixes\n\n- upgrade lucide to 0.525.0 ([#1798](https://github.com/oblador/react-native-vector-icons/pull/1798))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.1.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.2 (2025-06-15)\n\n### 🩹 Fixes\n\n- new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.2\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.1 (2025-06-15)\n\n### 🩹 Fixes\n\n- try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745))\n- remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767))\n- convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765))\n- updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c))\n- **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.1\n\n### ❤️ Thank You\n\n- Alexander Kucheryavenko @Red1tum\n- John Ferlito @johnf\n- Md. Jayed Hasan @JayedHasan232\n\n# 12.0.0 (2025-05-04)\n\n### 🚀 Features\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n- add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702))\n\n### ⚠️  Breaking Changes\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n\n### ❤️ Thank You\n\n- Chanphirom Sok @chanphiromsok\n- John Ferlito @johnf"
  },
  {
    "path": "packages/lucide/README.md",
    "content": "# React Native Vector Icons - Lucide\n\nLucide font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/lucide\n```\n\n## Usage\n\n```jsx\nimport { Lucide } from '@react-native-vector-icons/lucide';\n\n// ...\n\n<Lucide name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 12.0.0 | 0.473.0 |\n| &gt; 12.0.1 | 0.525.0 |\n| &gt; 12.4.1 | 0.576.0 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/lucide/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.lucide\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsLucide\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.lucide\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-lucide\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-lucide/fonts\"\n  eachFile { println \"(RNVI:lucide) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n"
  },
  {
    "path": "packages/lucide/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.lucide\">\n</manifest>\n"
  },
  {
    "path": "packages/lucide/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/lucide/android/src/main/java/VectorIconsLucidePackage.kt",
    "content": "package com.reactnativevectoricons.lucide\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsLucidePackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/lucide/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/lucide/glyphmaps/Lucide.json",
    "content": "{\n  \"a-arrow-down\": 58757,\n  \"a-arrow-up\": 58758,\n  \"a-large-small\": 58759,\n  \"accessibility\": 58007,\n  \"activity-square\": 58548,\n  \"activity\": 57400,\n  \"air-vent\": 58189,\n  \"airplay\": 57401,\n  \"alarm-check\": 57836,\n  \"alarm-clock-check\": 57836,\n  \"alarm-clock-minus\": 57837,\n  \"alarm-clock-off\": 57915,\n  \"alarm-clock-plus\": 57838,\n  \"alarm-clock\": 57402,\n  \"alarm-minus\": 57837,\n  \"alarm-plus\": 57838,\n  \"alarm-smoke\": 58747,\n  \"album\": 57403,\n  \"alert-circle\": 57463,\n  \"alert-octagon\": 57639,\n  \"alert-triangle\": 57747,\n  \"align-center-horizontal\": 57964,\n  \"align-center-vertical\": 57965,\n  \"align-center\": 57730,\n  \"align-end-horizontal\": 57966,\n  \"align-end-vertical\": 57967,\n  \"align-horizontal-distribute-center\": 57404,\n  \"align-horizontal-distribute-end\": 57405,\n  \"align-horizontal-distribute-start\": 57406,\n  \"align-horizontal-justify-center\": 57970,\n  \"align-horizontal-justify-end\": 57971,\n  \"align-horizontal-justify-start\": 57972,\n  \"align-horizontal-space-around\": 57973,\n  \"align-horizontal-space-between\": 57974,\n  \"align-justify\": 57732,\n  \"align-left\": 57733,\n  \"align-right\": 57731,\n  \"align-start-horizontal\": 57968,\n  \"align-start-vertical\": 57969,\n  \"align-vertical-distribute-center\": 57982,\n  \"align-vertical-distribute-end\": 57983,\n  \"align-vertical-distribute-start\": 57984,\n  \"align-vertical-justify-center\": 57975,\n  \"align-vertical-justify-end\": 57976,\n  \"align-vertical-justify-start\": 57977,\n  \"align-vertical-space-around\": 57978,\n  \"align-vertical-space-between\": 57979,\n  \"ambulance\": 58811,\n  \"ampersand\": 58524,\n  \"ampersands\": 58525,\n  \"amphora\": 58907,\n  \"anchor\": 57407,\n  \"angry\": 58108,\n  \"annoyed\": 58109,\n  \"antenna\": 58594,\n  \"anvil\": 58752,\n  \"aperture\": 57408,\n  \"app-window-mac\": 58834,\n  \"app-window\": 58406,\n  \"apple\": 58190,\n  \"archive-restore\": 58061,\n  \"archive-x\": 58636,\n  \"archive\": 57409,\n  \"area-chart\": 58579,\n  \"armchair\": 58048,\n  \"arrow-big-down-dash\": 58397,\n  \"arrow-big-down\": 57825,\n  \"arrow-big-left-dash\": 58398,\n  \"arrow-big-left\": 57826,\n  \"arrow-big-right-dash\": 58399,\n  \"arrow-big-right\": 57827,\n  \"arrow-big-up-dash\": 58400,\n  \"arrow-big-up\": 57828,\n  \"arrow-down-0-1\": 58387,\n  \"arrow-down-01\": 58387,\n  \"arrow-down-1-0\": 58388,\n  \"arrow-down-10\": 58388,\n  \"arrow-down-a-z\": 58389,\n  \"arrow-down-az\": 58389,\n  \"arrow-down-circle\": 57464,\n  \"arrow-down-from-line\": 58452,\n  \"arrow-down-left-from-circle\": 58359,\n  \"arrow-down-left-from-square\": 58785,\n  \"arrow-down-left-square\": 58549,\n  \"arrow-down-left\": 57411,\n  \"arrow-down-narrow-wide\": 57412,\n  \"arrow-down-right-from-circle\": 58360,\n  \"arrow-down-right-from-square\": 58786,\n  \"arrow-down-right-square\": 58550,\n  \"arrow-down-right\": 57413,\n  \"arrow-down-square\": 58407,\n  \"arrow-down-to-dot\": 58445,\n  \"arrow-down-to-line\": 58453,\n  \"arrow-down-up\": 57414,\n  \"arrow-down-wide-narrow\": 57415,\n  \"arrow-down-z-a\": 58390,\n  \"arrow-down-za\": 58390,\n  \"arrow-down\": 57410,\n  \"arrow-left-circle\": 57465,\n  \"arrow-left-from-line\": 58454,\n  \"arrow-left-right\": 57930,\n  \"arrow-left-square\": 58408,\n  \"arrow-left-to-line\": 58455,\n  \"arrow-left\": 57416,\n  \"arrow-right-circle\": 57466,\n  \"arrow-right-from-line\": 58456,\n  \"arrow-right-left\": 58391,\n  \"arrow-right-square\": 58409,\n  \"arrow-right-to-line\": 58457,\n  \"arrow-right\": 57417,\n  \"arrow-up-0-1\": 58392,\n  \"arrow-up-01\": 58392,\n  \"arrow-up-1-0\": 58393,\n  \"arrow-up-10\": 58393,\n  \"arrow-up-a-z\": 58394,\n  \"arrow-up-az\": 58394,\n  \"arrow-up-circle\": 57467,\n  \"arrow-up-down\": 58237,\n  \"arrow-up-from-dot\": 58446,\n  \"arrow-up-from-line\": 58458,\n  \"arrow-up-left-from-circle\": 58361,\n  \"arrow-up-left-from-square\": 58787,\n  \"arrow-up-left-square\": 58551,\n  \"arrow-up-left\": 57419,\n  \"arrow-up-narrow-wide\": 57420,\n  \"arrow-up-right-from-circle\": 58362,\n  \"arrow-up-right-from-square\": 58788,\n  \"arrow-up-right-square\": 58552,\n  \"arrow-up-right\": 57421,\n  \"arrow-up-square\": 58410,\n  \"arrow-up-to-line\": 58459,\n  \"arrow-up-wide-narrow\": 58395,\n  \"arrow-up-z-a\": 58396,\n  \"arrow-up-za\": 58396,\n  \"arrow-up\": 57418,\n  \"arrows-up-from-line\": 58580,\n  \"asterisk-square\": 57704,\n  \"asterisk\": 57839,\n  \"at-sign\": 57422,\n  \"atom\": 58327,\n  \"audio-lines\": 58714,\n  \"audio-waveform\": 58715,\n  \"award\": 57423,\n  \"axe\": 57424,\n  \"axis-3-d\": 58110,\n  \"axis-3d\": 58110,\n  \"baby\": 58062,\n  \"backpack\": 58056,\n  \"badge-alert\": 58485,\n  \"badge-cent\": 58639,\n  \"badge-check\": 57921,\n  \"badge-dollar-sign\": 58486,\n  \"badge-euro\": 58640,\n  \"badge-help\": 58491,\n  \"badge-indian-rupee\": 58641,\n  \"badge-info\": 58487,\n  \"badge-japanese-yen\": 58642,\n  \"badge-minus\": 58488,\n  \"badge-percent\": 58489,\n  \"badge-plus\": 58490,\n  \"badge-pound-sterling\": 58643,\n  \"badge-question-mark\": 58491,\n  \"badge-russian-ruble\": 58644,\n  \"badge-swiss-franc\": 58645,\n  \"badge-turkish-lira\": 59006,\n  \"badge-x\": 58492,\n  \"badge\": 58484,\n  \"baggage-claim\": 58057,\n  \"balloon\": 59055,\n  \"ban\": 57425,\n  \"banana\": 58191,\n  \"bandage\": 58909,\n  \"banknote-arrow-down\": 58956,\n  \"banknote-arrow-up\": 58957,\n  \"banknote-x\": 58958,\n  \"banknote\": 57426,\n  \"bar-chart-2\": 57448,\n  \"bar-chart-3\": 58019,\n  \"bar-chart-4\": 58020,\n  \"bar-chart-big\": 58537,\n  \"bar-chart-horizontal-big\": 58535,\n  \"bar-chart-horizontal\": 58018,\n  \"bar-chart\": 57450,\n  \"barcode\": 58675,\n  \"barrel\": 58997,\n  \"baseline\": 57989,\n  \"bath\": 58027,\n  \"battery-charging\": 57428,\n  \"battery-full\": 57429,\n  \"battery-low\": 57430,\n  \"battery-medium\": 57431,\n  \"battery-plus\": 58942,\n  \"battery-warning\": 58284,\n  \"battery\": 57427,\n  \"beaker\": 57432,\n  \"bean-off\": 58256,\n  \"bean\": 58255,\n  \"bed-double\": 58050,\n  \"bed-single\": 58051,\n  \"bed\": 58049,\n  \"beef\": 58277,\n  \"beer-off\": 58841,\n  \"beer\": 58063,\n  \"bell-dot\": 58411,\n  \"bell-electric\": 58748,\n  \"bell-minus\": 57840,\n  \"bell-off\": 57434,\n  \"bell-plus\": 57841,\n  \"bell-ring\": 57892,\n  \"bell\": 57433,\n  \"between-horizonal-end\": 58769,\n  \"between-horizonal-start\": 58770,\n  \"between-horizontal-end\": 58769,\n  \"between-horizontal-start\": 58770,\n  \"between-vertical-end\": 58771,\n  \"between-vertical-start\": 58772,\n  \"biceps-flexed\": 58859,\n  \"bike\": 57810,\n  \"binary\": 57842,\n  \"binoculars\": 58913,\n  \"biohazard\": 58433,\n  \"bird\": 58309,\n  \"birdhouse\": 59034,\n  \"bitcoin\": 57435,\n  \"blend\": 58780,\n  \"blinds\": 58304,\n  \"blocks\": 58618,\n  \"bluetooth-connected\": 57784,\n  \"bluetooth-off\": 57785,\n  \"bluetooth-searching\": 57786,\n  \"bluetooth\": 57436,\n  \"bold\": 57437,\n  \"bolt\": 58764,\n  \"bomb\": 58111,\n  \"bone\": 58200,\n  \"book-a\": 58692,\n  \"book-alert\": 58994,\n  \"book-audio\": 58693,\n  \"book-check\": 58694,\n  \"book-copy\": 58348,\n  \"book-dashed\": 58349,\n  \"book-down\": 58350,\n  \"book-headphones\": 58695,\n  \"book-heart\": 58696,\n  \"book-image\": 58697,\n  \"book-key\": 58351,\n  \"book-lock\": 58352,\n  \"book-marked\": 58353,\n  \"book-minus\": 58354,\n  \"book-open-check\": 58241,\n  \"book-open-text\": 58698,\n  \"book-open\": 57439,\n  \"book-plus\": 58355,\n  \"book-search\": 59051,\n  \"book-template\": 58349,\n  \"book-text\": 58699,\n  \"book-type\": 58700,\n  \"book-up-2\": 58534,\n  \"book-up\": 58356,\n  \"book-user\": 58701,\n  \"book-x\": 58357,\n  \"book\": 57438,\n  \"bookmark-check\": 58655,\n  \"bookmark-minus\": 57916,\n  \"bookmark-plus\": 57917,\n  \"bookmark-x\": 58656,\n  \"bookmark\": 57440,\n  \"boom-box\": 58606,\n  \"bot-message-square\": 58830,\n  \"bot-off\": 58848,\n  \"bot\": 57787,\n  \"bottle-wine\": 59003,\n  \"bow-arrow\": 58974,\n  \"box-select\": 57803,\n  \"box\": 57441,\n  \"boxes\": 58064,\n  \"braces\": 58218,\n  \"brackets\": 58435,\n  \"brain-circuit\": 58311,\n  \"brain-cog\": 58312,\n  \"brain\": 58310,\n  \"brick-wall-fire\": 58963,\n  \"brick-wall-shield\": 59024,\n  \"brick-wall\": 58753,\n  \"briefcase-business\": 58837,\n  \"briefcase-conveyor-belt\": 58923,\n  \"briefcase-medical\": 58838,\n  \"briefcase\": 57442,\n  \"bring-to-front\": 58607,\n  \"brush-cleaning\": 58982,\n  \"brush\": 57811,\n  \"bubbles\": 58964,\n  \"bug-off\": 58637,\n  \"bug-play\": 58638,\n  \"bug\": 57868,\n  \"building-2\": 58000,\n  \"building\": 57804,\n  \"bus-front\": 58619,\n  \"bus\": 57812,\n  \"cable-car\": 58620,\n  \"cable\": 58595,\n  \"cake-slice\": 58553,\n  \"cake\": 58180,\n  \"calculator\": 57788,\n  \"calendar-1\": 58928,\n  \"calendar-arrow-down\": 58878,\n  \"calendar-arrow-up\": 58879,\n  \"calendar-check-2\": 58040,\n  \"calendar-check\": 58039,\n  \"calendar-clock\": 58116,\n  \"calendar-cog\": 58861,\n  \"calendar-days\": 58041,\n  \"calendar-fold\": 58804,\n  \"calendar-heart\": 58117,\n  \"calendar-minus-2\": 58805,\n  \"calendar-minus\": 58042,\n  \"calendar-off\": 58043,\n  \"calendar-plus-2\": 58806,\n  \"calendar-plus\": 58044,\n  \"calendar-range\": 58045,\n  \"calendar-search\": 58118,\n  \"calendar-sync\": 58934,\n  \"calendar-x-2\": 58047,\n  \"calendar-x\": 58046,\n  \"calendar\": 57443,\n  \"calendars\": 59047,\n  \"camera-off\": 57445,\n  \"camera\": 57444,\n  \"candlestick-chart\": 58536,\n  \"candy-cane\": 58554,\n  \"candy-off\": 58258,\n  \"candy\": 58257,\n  \"cannabis-off\": 59055,\n  \"cannabis\": 58836,\n  \"captions-off\": 58817,\n  \"captions\": 58276,\n  \"car-front\": 58621,\n  \"car-taxi-front\": 58622,\n  \"car\": 57813,\n  \"caravan\": 58681,\n  \"card-sim\": 58993,\n  \"carrot\": 57946,\n  \"case-lower\": 58328,\n  \"case-sensitive\": 58329,\n  \"case-upper\": 58330,\n  \"cassette-tape\": 58570,\n  \"cast\": 57446,\n  \"castle\": 58336,\n  \"cat\": 58252,\n  \"cctv\": 58749,\n  \"chart-area\": 58579,\n  \"chart-bar-big\": 58535,\n  \"chart-bar-decreasing\": 58887,\n  \"chart-bar-increasing\": 58888,\n  \"chart-bar-stacked\": 58889,\n  \"chart-bar\": 58018,\n  \"chart-candlestick\": 58536,\n  \"chart-column-big\": 58537,\n  \"chart-column-decreasing\": 57447,\n  \"chart-column-increasing\": 58020,\n  \"chart-column-stacked\": 58890,\n  \"chart-column\": 58019,\n  \"chart-gantt\": 58916,\n  \"chart-line\": 58021,\n  \"chart-network\": 58891,\n  \"chart-no-axes-column-decreasing\": 57449,\n  \"chart-no-axes-column-increasing\": 57450,\n  \"chart-no-axes-column\": 57448,\n  \"chart-no-axes-combined\": 58892,\n  \"chart-no-axes-gantt\": 58564,\n  \"chart-pie\": 57451,\n  \"chart-scatter\": 58506,\n  \"chart-spline\": 58893,\n  \"check-check\": 58254,\n  \"check-circle-2\": 57894,\n  \"check-circle\": 57468,\n  \"check-line\": 58987,\n  \"check-square-2\": 58713,\n  \"check-square\": 57706,\n  \"check\": 57452,\n  \"chef-hat\": 58028,\n  \"cherry\": 58192,\n  \"chess-bishop\": 59040,\n  \"chess-king\": 59041,\n  \"chess-knight\": 59042,\n  \"chess-pawn\": 59043,\n  \"chess-queen\": 59044,\n  \"chess-rook\": 59045,\n  \"chevron-down-circle\": 58589,\n  \"chevron-down-square\": 58319,\n  \"chevron-down\": 57453,\n  \"chevron-first\": 57923,\n  \"chevron-last\": 57924,\n  \"chevron-left-circle\": 58590,\n  \"chevron-left-square\": 58320,\n  \"chevron-left\": 57454,\n  \"chevron-right-circle\": 58591,\n  \"chevron-right-square\": 58321,\n  \"chevron-right\": 57455,\n  \"chevron-up-circle\": 58592,\n  \"chevron-up-square\": 58322,\n  \"chevron-up\": 57456,\n  \"chevrons-down-up\": 57896,\n  \"chevrons-down\": 57457,\n  \"chevrons-left-right-ellipsis\": 58911,\n  \"chevrons-left-right\": 58003,\n  \"chevrons-left\": 57458,\n  \"chevrons-right-left\": 58004,\n  \"chevrons-right\": 57459,\n  \"chevrons-up-down\": 57873,\n  \"chevrons-up\": 57460,\n  \"chrome\": 57461,\n  \"chromium\": 57461,\n  \"church\": 58337,\n  \"cigarette-off\": 58055,\n  \"cigarette\": 58054,\n  \"circle-alert\": 57463,\n  \"circle-arrow-down\": 57464,\n  \"circle-arrow-left\": 57465,\n  \"circle-arrow-out-down-left\": 58359,\n  \"circle-arrow-out-down-right\": 58360,\n  \"circle-arrow-out-up-left\": 58361,\n  \"circle-arrow-out-up-right\": 58362,\n  \"circle-arrow-right\": 57466,\n  \"circle-arrow-up\": 57467,\n  \"circle-check-big\": 57468,\n  \"circle-check\": 57894,\n  \"circle-chevron-down\": 58589,\n  \"circle-chevron-left\": 58590,\n  \"circle-chevron-right\": 58591,\n  \"circle-chevron-up\": 58592,\n  \"circle-dashed\": 58544,\n  \"circle-divide\": 57469,\n  \"circle-dollar-sign\": 58493,\n  \"circle-dot-dashed\": 58545,\n  \"circle-dot\": 58181,\n  \"circle-ellipsis\": 58182,\n  \"circle-equal\": 58368,\n  \"circle-fading-arrow-up\": 58904,\n  \"circle-fading-plus\": 58812,\n  \"circle-gauge\": 58593,\n  \"circle-help\": 57474,\n  \"circle-minus\": 57470,\n  \"circle-off\": 58369,\n  \"circle-parking-off\": 58314,\n  \"circle-parking\": 58313,\n  \"circle-pause\": 57471,\n  \"circle-percent\": 58650,\n  \"circle-pile\": 59055,\n  \"circle-play\": 57472,\n  \"circle-plus\": 57473,\n  \"circle-pound-sterling\": 58989,\n  \"circle-power\": 58704,\n  \"circle-question-mark\": 57474,\n  \"circle-slash-2\": 57875,\n  \"circle-slash\": 58370,\n  \"circle-slashed\": 57875,\n  \"circle-small\": 58944,\n  \"circle-star\": 59021,\n  \"circle-stop\": 57475,\n  \"circle-user-round\": 58466,\n  \"circle-user\": 58465,\n  \"circle-x\": 57476,\n  \"circle\": 57462,\n  \"circuit-board\": 58371,\n  \"citrus\": 58229,\n  \"clapperboard\": 58011,\n  \"clipboard-check\": 57881,\n  \"clipboard-clock\": 59016,\n  \"clipboard-copy\": 57893,\n  \"clipboard-edit\": 58119,\n  \"clipboard-list\": 57478,\n  \"clipboard-minus\": 58814,\n  \"clipboard-paste\": 58344,\n  \"clipboard-pen-line\": 58120,\n  \"clipboard-pen\": 58119,\n  \"clipboard-plus\": 58815,\n  \"clipboard-signature\": 58120,\n  \"clipboard-type\": 58121,\n  \"clipboard-x\": 57890,\n  \"clipboard\": 57477,\n  \"clock-1\": 57931,\n  \"clock-10\": 57932,\n  \"clock-11\": 57933,\n  \"clock-12\": 57934,\n  \"clock-2\": 57935,\n  \"clock-3\": 57936,\n  \"clock-4\": 57937,\n  \"clock-5\": 57938,\n  \"clock-6\": 57939,\n  \"clock-7\": 57940,\n  \"clock-8\": 57941,\n  \"clock-9\": 57942,\n  \"clock-alert\": 58922,\n  \"clock-arrow-down\": 58880,\n  \"clock-arrow-up\": 58881,\n  \"clock-check\": 59038,\n  \"clock-fading\": 58954,\n  \"clock-plus\": 58983,\n  \"clock\": 57479,\n  \"closed-caption\": 59018,\n  \"cloud-alert\": 58931,\n  \"cloud-backup\": 59055,\n  \"cloud-check\": 58990,\n  \"cloud-cog\": 58122,\n  \"cloud-download\": 57481,\n  \"cloud-drizzle\": 57482,\n  \"cloud-fog\": 57876,\n  \"cloud-hail\": 57483,\n  \"cloud-lightning\": 57484,\n  \"cloud-moon-rain\": 58106,\n  \"cloud-moon\": 57877,\n  \"cloud-off\": 57485,\n  \"cloud-rain-wind\": 57487,\n  \"cloud-rain\": 57486,\n  \"cloud-snow\": 57488,\n  \"cloud-sun-rain\": 58107,\n  \"cloud-sun\": 57878,\n  \"cloud-sync\": 59055,\n  \"cloud-upload\": 57489,\n  \"cloud\": 57480,\n  \"cloudy\": 57879,\n  \"clover\": 57490,\n  \"club\": 58518,\n  \"code-2\": 57862,\n  \"code-square\": 57707,\n  \"code-xml\": 57862,\n  \"code\": 57491,\n  \"codepen\": 57492,\n  \"codesandbox\": 57493,\n  \"coffee\": 57494,\n  \"cog\": 58123,\n  \"coins\": 57495,\n  \"columns-2\": 57496,\n  \"columns-3-cog\": 58977,\n  \"columns-3\": 57497,\n  \"columns-4\": 58761,\n  \"columns-settings\": 58977,\n  \"columns\": 57496,\n  \"combine\": 58444,\n  \"command\": 57498,\n  \"compass\": 57499,\n  \"component\": 58029,\n  \"computer\": 58596,\n  \"concierge-bell\": 58232,\n  \"cone\": 58659,\n  \"construction\": 58292,\n  \"contact-2\": 58467,\n  \"contact-round\": 58467,\n  \"contact\": 57500,\n  \"container\": 58581,\n  \"contrast\": 57501,\n  \"cookie\": 57963,\n  \"cooking-pot\": 58756,\n  \"copy-check\": 58363,\n  \"copy-minus\": 58364,\n  \"copy-plus\": 58365,\n  \"copy-slash\": 58366,\n  \"copy-x\": 58367,\n  \"copy\": 57502,\n  \"copyleft\": 57503,\n  \"copyright\": 57504,\n  \"corner-down-left\": 57505,\n  \"corner-down-right\": 57506,\n  \"corner-left-down\": 57507,\n  \"corner-left-up\": 57508,\n  \"corner-right-down\": 57509,\n  \"corner-right-up\": 57510,\n  \"corner-up-left\": 57511,\n  \"corner-up-right\": 57512,\n  \"cpu\": 57513,\n  \"creative-commons\": 58290,\n  \"credit-card\": 57514,\n  \"croissant\": 58030,\n  \"crop\": 57515,\n  \"cross\": 57829,\n  \"crosshair\": 57516,\n  \"crown\": 57814,\n  \"cuboid\": 58660,\n  \"cup-soda\": 58065,\n  \"curly-braces\": 58218,\n  \"currency\": 57904,\n  \"cylinder\": 58661,\n  \"dam\": 58886,\n  \"database-backup\": 58283,\n  \"database-search\": 59057,\n  \"database-zap\": 58635,\n  \"database\": 57517,\n  \"decimals-arrow-left\": 58972,\n  \"decimals-arrow-right\": 58973,\n  \"delete\": 57518,\n  \"dessert\": 58555,\n  \"diameter\": 58662,\n  \"diamond-minus\": 58849,\n  \"diamond-percent\": 58651,\n  \"diamond-plus\": 58850,\n  \"diamond\": 58066,\n  \"dice-1\": 57991,\n  \"dice-2\": 57992,\n  \"dice-3\": 57993,\n  \"dice-4\": 57994,\n  \"dice-5\": 57995,\n  \"dice-6\": 57996,\n  \"dices\": 58053,\n  \"diff\": 58124,\n  \"disc-2\": 58358,\n  \"disc-3\": 58516,\n  \"disc-album\": 58716,\n  \"disc\": 57519,\n  \"divide-circle\": 57469,\n  \"divide-square\": 57709,\n  \"divide\": 57520,\n  \"dna-off\": 58260,\n  \"dna\": 58259,\n  \"dock\": 58835,\n  \"dog\": 58253,\n  \"dollar-sign\": 57521,\n  \"donut\": 58556,\n  \"door-closed-locked\": 58980,\n  \"door-closed\": 58325,\n  \"door-open\": 58326,\n  \"dot-square\": 57710,\n  \"dot\": 58447,\n  \"download-cloud\": 57481,\n  \"download\": 57522,\n  \"drafting-compass\": 58663,\n  \"drama\": 58657,\n  \"dribbble\": 57523,\n  \"drill\": 58765,\n  \"drone\": 58998,\n  \"droplet-off\": 58936,\n  \"droplet\": 57524,\n  \"droplets\": 57525,\n  \"drum\": 58717,\n  \"drumstick\": 57947,\n  \"dumbbell\": 58273,\n  \"ear-off\": 58243,\n  \"ear\": 58242,\n  \"earth-lock\": 58828,\n  \"earth\": 57843,\n  \"eclipse\": 58781,\n  \"edit-2\": 57647,\n  \"edit-3\": 57648,\n  \"edit\": 57714,\n  \"egg-fried\": 58193,\n  \"egg-off\": 58261,\n  \"egg\": 57949,\n  \"ellipsis-vertical\": 57527,\n  \"ellipsis\": 57526,\n  \"equal-approximately\": 58932,\n  \"equal-not\": 57790,\n  \"equal-square\": 57711,\n  \"equal\": 57789,\n  \"eraser\": 57999,\n  \"ethernet-port\": 58912,\n  \"euro\": 57528,\n  \"ev-charger\": 59031,\n  \"expand\": 57882,\n  \"external-link\": 57529,\n  \"eye-closed\": 58926,\n  \"eye-off\": 57531,\n  \"eye\": 57530,\n  \"facebook\": 57532,\n  \"factory\": 58015,\n  \"fan\": 58233,\n  \"fast-forward\": 57533,\n  \"feather\": 57534,\n  \"fence\": 58754,\n  \"ferris-wheel\": 58495,\n  \"figma\": 57535,\n  \"file-archive\": 58125,\n  \"file-audio-2\": 58138,\n  \"file-audio\": 58138,\n  \"file-axis-3-d\": 58126,\n  \"file-axis-3d\": 58126,\n  \"file-badge-2\": 58127,\n  \"file-badge\": 58127,\n  \"file-bar-chart-2\": 58129,\n  \"file-bar-chart\": 58130,\n  \"file-box\": 58128,\n  \"file-braces-corner\": 58220,\n  \"file-braces\": 58219,\n  \"file-chart-column-increasing\": 58130,\n  \"file-chart-column\": 58129,\n  \"file-chart-line\": 58131,\n  \"file-chart-pie\": 58132,\n  \"file-check-2\": 57538,\n  \"file-check-corner\": 57538,\n  \"file-check\": 57537,\n  \"file-clock\": 58133,\n  \"file-code-2\": 58462,\n  \"file-code-corner\": 58462,\n  \"file-code\": 57539,\n  \"file-cog-2\": 58134,\n  \"file-cog\": 58134,\n  \"file-diff\": 58135,\n  \"file-digit\": 57540,\n  \"file-down\": 58136,\n  \"file-edit\": 58143,\n  \"file-exclamation-point\": 58137,\n  \"file-headphone\": 58138,\n  \"file-heart\": 58139,\n  \"file-image\": 58140,\n  \"file-input\": 57541,\n  \"file-json-2\": 58220,\n  \"file-json\": 58219,\n  \"file-key-2\": 58141,\n  \"file-key\": 58141,\n  \"file-line-chart\": 58131,\n  \"file-lock-2\": 58142,\n  \"file-lock\": 58142,\n  \"file-minus-2\": 57543,\n  \"file-minus-corner\": 57543,\n  \"file-minus\": 57542,\n  \"file-music\": 58718,\n  \"file-output\": 57544,\n  \"file-pen-line\": 58144,\n  \"file-pen\": 58143,\n  \"file-pie-chart\": 58132,\n  \"file-play\": 58145,\n  \"file-plus-2\": 57546,\n  \"file-plus-corner\": 57546,\n  \"file-plus\": 57545,\n  \"file-question-mark\": 58146,\n  \"file-question\": 58146,\n  \"file-scan\": 58147,\n  \"file-search-2\": 58148,\n  \"file-search-corner\": 58148,\n  \"file-search\": 57547,\n  \"file-signal\": 58149,\n  \"file-signature\": 58144,\n  \"file-sliders\": 58784,\n  \"file-spreadsheet\": 58150,\n  \"file-stack\": 58529,\n  \"file-symlink\": 58151,\n  \"file-terminal\": 58152,\n  \"file-text\": 57548,\n  \"file-type-2\": 58221,\n  \"file-type-corner\": 58221,\n  \"file-type\": 58153,\n  \"file-up\": 58154,\n  \"file-user\": 58925,\n  \"file-video-2\": 58155,\n  \"file-video-camera\": 58155,\n  \"file-video\": 58145,\n  \"file-volume-2\": 58149,\n  \"file-volume\": 58156,\n  \"file-warning\": 58137,\n  \"file-x-2\": 57550,\n  \"file-x-corner\": 57550,\n  \"file-x\": 57549,\n  \"file\": 57536,\n  \"files\": 57551,\n  \"film\": 57552,\n  \"filter-x\": 58293,\n  \"filter\": 57564,\n  \"fingerprint-pattern\": 58059,\n  \"fingerprint\": 58059,\n  \"fire-extinguisher\": 58750,\n  \"fish-off\": 58288,\n  \"fish-symbol\": 58612,\n  \"fish\": 58278,\n  \"fishing-hook\": 59055,\n  \"fishing-rod\": 59057,\n  \"flag-off\": 58002,\n  \"flag-triangle-left\": 57911,\n  \"flag-triangle-right\": 57912,\n  \"flag\": 57553,\n  \"flame-kindling\": 58682,\n  \"flame\": 57554,\n  \"flashlight-off\": 57556,\n  \"flashlight\": 57555,\n  \"flask-conical-off\": 58262,\n  \"flask-conical\": 57557,\n  \"flask-round\": 57558,\n  \"flip-horizontal-2\": 58206,\n  \"flip-horizontal\": 58205,\n  \"flip-vertical-2\": 58208,\n  \"flip-vertical\": 58207,\n  \"flower-2\": 58068,\n  \"flower\": 58067,\n  \"focus\": 58014,\n  \"fold-horizontal\": 58427,\n  \"fold-vertical\": 58428,\n  \"folder-archive\": 58157,\n  \"folder-check\": 58158,\n  \"folder-clock\": 58159,\n  \"folder-closed\": 58160,\n  \"folder-code\": 58875,\n  \"folder-cog-2\": 58161,\n  \"folder-cog\": 58161,\n  \"folder-dot\": 58565,\n  \"folder-down\": 58162,\n  \"folder-edit\": 58168,\n  \"folder-git-2\": 58378,\n  \"folder-git\": 58377,\n  \"folder-heart\": 58163,\n  \"folder-input\": 58164,\n  \"folder-kanban\": 58566,\n  \"folder-key\": 58165,\n  \"folder-lock\": 58166,\n  \"folder-minus\": 57560,\n  \"folder-open-dot\": 58567,\n  \"folder-open\": 57927,\n  \"folder-output\": 58167,\n  \"folder-pen\": 58168,\n  \"folder-plus\": 57561,\n  \"folder-root\": 58568,\n  \"folder-search-2\": 58170,\n  \"folder-search\": 58169,\n  \"folder-symlink\": 58171,\n  \"folder-sync\": 58569,\n  \"folder-tree\": 58172,\n  \"folder-up\": 58173,\n  \"folder-x\": 58174,\n  \"folder\": 57559,\n  \"folders\": 58175,\n  \"footprints\": 58297,\n  \"fork-knife-crossed\": 58103,\n  \"fork-knife\": 58102,\n  \"forklift\": 58305,\n  \"form-input\": 57887,\n  \"form\": 59048,\n  \"forward\": 57897,\n  \"frame\": 58001,\n  \"framer\": 57562,\n  \"frown\": 57563,\n  \"fuel\": 58031,\n  \"fullscreen\": 58676,\n  \"function-square\": 57901,\n  \"funnel-plus\": 57565,\n  \"funnel-x\": 58293,\n  \"funnel\": 57564,\n  \"gallery-horizontal-end\": 58575,\n  \"gallery-horizontal\": 58574,\n  \"gallery-thumbnails\": 58576,\n  \"gallery-vertical-end\": 58578,\n  \"gallery-vertical\": 58577,\n  \"gamepad-2\": 57567,\n  \"gamepad-directional\": 59035,\n  \"gamepad\": 57566,\n  \"gantt-chart-square\": 58916,\n  \"gantt-chart\": 58564,\n  \"gauge-circle\": 58593,\n  \"gauge\": 57791,\n  \"gavel\": 57568,\n  \"gem\": 57922,\n  \"georgian-lari\": 59000,\n  \"ghost\": 57870,\n  \"gift\": 57569,\n  \"git-branch-minus\": 59036,\n  \"git-branch-plus\": 57844,\n  \"git-branch\": 57570,\n  \"git-commit-horizontal\": 57571,\n  \"git-commit-vertical\": 58706,\n  \"git-commit\": 57571,\n  \"git-compare-arrows\": 58707,\n  \"git-compare\": 58201,\n  \"git-fork\": 57997,\n  \"git-graph\": 58708,\n  \"git-merge-conflict\": 59057,\n  \"git-merge\": 57572,\n  \"git-pull-request-arrow\": 58709,\n  \"git-pull-request-closed\": 58202,\n  \"git-pull-request-create-arrow\": 58711,\n  \"git-pull-request-create\": 58710,\n  \"git-pull-request-draft\": 58203,\n  \"git-pull-request\": 57573,\n  \"github\": 57574,\n  \"gitlab\": 57575,\n  \"glass-water\": 58069,\n  \"glasses\": 57869,\n  \"globe-2\": 57843,\n  \"globe-lock\": 58829,\n  \"globe-off\": 59057,\n  \"globe-x\": 59057,\n  \"globe\": 57576,\n  \"goal\": 58533,\n  \"gpu\": 58986,\n  \"grab\": 57830,\n  \"graduation-cap\": 57908,\n  \"grape\": 58194,\n  \"grid-2-x-2-check\": 58852,\n  \"grid-2-x-2-plus\": 58920,\n  \"grid-2-x-2-x\": 58853,\n  \"grid-2-x-2\": 58623,\n  \"grid-2x2-check\": 58852,\n  \"grid-2x2-plus\": 58920,\n  \"grid-2x2-x\": 58853,\n  \"grid-2x2\": 58623,\n  \"grid-3-x-3\": 57577,\n  \"grid-3x2\": 58991,\n  \"grid-3x3\": 57577,\n  \"grid\": 57577,\n  \"grip-horizontal\": 57578,\n  \"grip-vertical\": 57579,\n  \"grip\": 58289,\n  \"group\": 58468,\n  \"guitar\": 58719,\n  \"ham\": 58839,\n  \"hamburger\": 58981,\n  \"hammer\": 57580,\n  \"hand-coins\": 58808,\n  \"hand-fist\": 59019,\n  \"hand-grab\": 57830,\n  \"hand-heart\": 58809,\n  \"hand-helping\": 58296,\n  \"hand-metal\": 57900,\n  \"hand-platter\": 58810,\n  \"hand\": 57815,\n  \"handbag\": 59017,\n  \"handshake\": 58816,\n  \"hard-drive-download\": 58597,\n  \"hard-drive-upload\": 58598,\n  \"hard-drive\": 57581,\n  \"hard-hat\": 57582,\n  \"hash\": 57583,\n  \"hat-glasses\": 59011,\n  \"haze\": 57584,\n  \"hd\": 59055,\n  \"hdmi-port\": 58599,\n  \"heading-1\": 58245,\n  \"heading-2\": 58246,\n  \"heading-3\": 58247,\n  \"heading-4\": 58248,\n  \"heading-5\": 58249,\n  \"heading-6\": 58250,\n  \"heading\": 58244,\n  \"headphone-off\": 58921,\n  \"headphones\": 57585,\n  \"headset\": 58813,\n  \"heart-crack\": 58070,\n  \"heart-handshake\": 58071,\n  \"heart-minus\": 58961,\n  \"heart-off\": 58005,\n  \"heart-plus\": 58962,\n  \"heart-pulse\": 58222,\n  \"heart\": 57586,\n  \"heater\": 58766,\n  \"helicopter\": 59037,\n  \"help-circle\": 57474,\n  \"helping-hand\": 58296,\n  \"hexagon\": 57587,\n  \"highlighter\": 57588,\n  \"history\": 57845,\n  \"home\": 57589,\n  \"hop-off\": 58264,\n  \"hop\": 58263,\n  \"hospital\": 58840,\n  \"hotel\": 58338,\n  \"hourglass\": 58006,\n  \"house-heart\": 59029,\n  \"house-plug\": 58864,\n  \"house-plus\": 58865,\n  \"house-wifi\": 58940,\n  \"house\": 57589,\n  \"ice-cream-2\": 58279,\n  \"ice-cream-bowl\": 58279,\n  \"ice-cream-cone\": 58195,\n  \"ice-cream\": 58195,\n  \"id-card-lanyard\": 58992,\n  \"id-card\": 58903,\n  \"image-down\": 58684,\n  \"image-minus\": 57846,\n  \"image-off\": 57792,\n  \"image-play\": 58847,\n  \"image-plus\": 57847,\n  \"image-up\": 58827,\n  \"image-upscale\": 58935,\n  \"image\": 57590,\n  \"images\": 58820,\n  \"import\": 57903,\n  \"inbox\": 57591,\n  \"indent-decrease\": 57607,\n  \"indent-increase\": 57608,\n  \"indent\": 57608,\n  \"indian-rupee\": 57592,\n  \"infinity\": 57831,\n  \"info\": 57593,\n  \"inspect\": 57858,\n  \"inspection-panel\": 58755,\n  \"instagram\": 57594,\n  \"italic\": 57595,\n  \"iteration-ccw\": 58403,\n  \"iteration-cw\": 58404,\n  \"japanese-yen\": 57596,\n  \"joystick\": 58197,\n  \"kanban-square-dashed\": 57708,\n  \"kanban-square\": 57712,\n  \"kanban\": 58588,\n  \"kayak\": 59023,\n  \"key-round\": 58531,\n  \"key-square\": 58532,\n  \"key\": 57597,\n  \"keyboard-music\": 58720,\n  \"keyboard-off\": 58846,\n  \"keyboard\": 57988,\n  \"lamp-ceiling\": 58073,\n  \"lamp-desk\": 58074,\n  \"lamp-floor\": 58075,\n  \"lamp-wall-down\": 58076,\n  \"lamp-wall-up\": 58077,\n  \"lamp\": 58072,\n  \"land-plot\": 58664,\n  \"landmark\": 57914,\n  \"languages\": 57598,\n  \"laptop-2\": 57816,\n  \"laptop-minimal-check\": 58930,\n  \"laptop-minimal\": 57816,\n  \"laptop\": 57805,\n  \"lasso-select\": 57807,\n  \"lasso\": 57806,\n  \"laugh\": 58112,\n  \"layers-2\": 58666,\n  \"layers-3\": 58665,\n  \"layers-plus\": 59055,\n  \"layers\": 58665,\n  \"layout-dashboard\": 57793,\n  \"layout-grid\": 57599,\n  \"layout-list\": 57817,\n  \"layout-panel-left\": 58480,\n  \"layout-panel-top\": 58481,\n  \"layout-template\": 57863,\n  \"layout\": 57644,\n  \"leaf\": 58078,\n  \"leafy-green\": 58479,\n  \"lectern\": 58857,\n  \"lens-concave\": 59057,\n  \"lens-convex\": 59057,\n  \"letter-text\": 58885,\n  \"library-big\": 58702,\n  \"library-square\": 58703,\n  \"library\": 57600,\n  \"life-buoy\": 57601,\n  \"ligature\": 58426,\n  \"lightbulb-off\": 57864,\n  \"lightbulb\": 57794,\n  \"line-chart\": 58021,\n  \"line-dot-right-horizontal\": 59057,\n  \"line-squiggle\": 59002,\n  \"link-2-off\": 57604,\n  \"link-2\": 57603,\n  \"link\": 57602,\n  \"linkedin\": 57605,\n  \"list-check\": 58874,\n  \"list-checks\": 57808,\n  \"list-chevrons-down-up\": 59028,\n  \"list-chevrons-up-down\": 59030,\n  \"list-collapse\": 58779,\n  \"list-end\": 58079,\n  \"list-filter-plus\": 58937,\n  \"list-filter\": 58464,\n  \"list-indent-decrease\": 57607,\n  \"list-indent-increase\": 57608,\n  \"list-minus\": 57918,\n  \"list-music\": 58080,\n  \"list-ordered\": 57809,\n  \"list-plus\": 57919,\n  \"list-restart\": 58450,\n  \"list-start\": 58081,\n  \"list-todo\": 58563,\n  \"list-tree\": 58376,\n  \"list-video\": 58082,\n  \"list-x\": 57920,\n  \"list\": 57606,\n  \"loader-2\": 57610,\n  \"loader-circle\": 57610,\n  \"loader-pinwheel\": 58854,\n  \"loader\": 57609,\n  \"locate-fixed\": 57819,\n  \"locate-off\": 57986,\n  \"locate\": 57818,\n  \"location-edit\": 58965,\n  \"lock-keyhole-open\": 58674,\n  \"lock-keyhole\": 58673,\n  \"lock-open\": 57612,\n  \"lock\": 57611,\n  \"log-in\": 57613,\n  \"log-out\": 57614,\n  \"logs\": 58868,\n  \"lollipop\": 58557,\n  \"luggage\": 58058,\n  \"m-square\": 58627,\n  \"magnet\": 58037,\n  \"mail-check\": 58209,\n  \"mail-minus\": 58210,\n  \"mail-open\": 58211,\n  \"mail-plus\": 58212,\n  \"mail-question-mark\": 58213,\n  \"mail-question\": 58213,\n  \"mail-search\": 58214,\n  \"mail-warning\": 58215,\n  \"mail-x\": 58216,\n  \"mail\": 57615,\n  \"mailbox\": 58324,\n  \"mails\": 58217,\n  \"map-minus\": 59014,\n  \"map-pin-check-inside\": 58896,\n  \"map-pin-check\": 58895,\n  \"map-pin-house\": 58908,\n  \"map-pin-minus-inside\": 58898,\n  \"map-pin-minus\": 58897,\n  \"map-pin-off\": 58022,\n  \"map-pin-pen\": 58965,\n  \"map-pin-plus-inside\": 58900,\n  \"map-pin-plus\": 58899,\n  \"map-pin-x-inside\": 58902,\n  \"map-pin-x\": 58901,\n  \"map-pin\": 57617,\n  \"map-pinned\": 58685,\n  \"map-plus\": 58943,\n  \"map\": 57616,\n  \"mars-stroke\": 58946,\n  \"mars\": 58945,\n  \"martini\": 58083,\n  \"maximize-2\": 57619,\n  \"maximize\": 57618,\n  \"medal\": 58223,\n  \"megaphone-off\": 58224,\n  \"megaphone\": 57909,\n  \"meh\": 57620,\n  \"memory-stick\": 58437,\n  \"menu-square\": 58451,\n  \"menu\": 57621,\n  \"merge\": 58431,\n  \"message-circle-check\": 59057,\n  \"message-circle-code\": 58722,\n  \"message-circle-dashed\": 58723,\n  \"message-circle-heart\": 58724,\n  \"message-circle-more\": 58725,\n  \"message-circle-off\": 58726,\n  \"message-circle-plus\": 58727,\n  \"message-circle-question-mark\": 58728,\n  \"message-circle-question\": 58728,\n  \"message-circle-reply\": 58729,\n  \"message-circle-warning\": 58730,\n  \"message-circle-x\": 58731,\n  \"message-circle\": 57622,\n  \"message-square-check\": 59057,\n  \"message-square-code\": 58732,\n  \"message-square-dashed\": 58379,\n  \"message-square-diff\": 58733,\n  \"message-square-dot\": 58734,\n  \"message-square-heart\": 58735,\n  \"message-square-lock\": 58924,\n  \"message-square-more\": 58736,\n  \"message-square-off\": 58737,\n  \"message-square-plus\": 58380,\n  \"message-square-quote\": 58738,\n  \"message-square-reply\": 58739,\n  \"message-square-share\": 58740,\n  \"message-square-text\": 58741,\n  \"message-square-warning\": 58742,\n  \"message-square-x\": 58743,\n  \"message-square\": 57623,\n  \"messages-square\": 58381,\n  \"metronome\": 59057,\n  \"mic-2\": 58185,\n  \"mic-off\": 57625,\n  \"mic-vocal\": 58185,\n  \"mic\": 57624,\n  \"microchip\": 58906,\n  \"microscope\": 58084,\n  \"microwave\": 58234,\n  \"milestone\": 58008,\n  \"milk-off\": 58266,\n  \"milk\": 58265,\n  \"minimize-2\": 57627,\n  \"minimize\": 57626,\n  \"minus-circle\": 57470,\n  \"minus-square\": 57713,\n  \"minus\": 57628,\n  \"mirror-rectangular\": 59057,\n  \"mirror-round\": 59057,\n  \"monitor-check\": 58498,\n  \"monitor-cloud\": 59033,\n  \"monitor-cog\": 58883,\n  \"monitor-dot\": 58499,\n  \"monitor-down\": 58401,\n  \"monitor-off\": 57820,\n  \"monitor-pause\": 58500,\n  \"monitor-play\": 58501,\n  \"monitor-smartphone\": 58274,\n  \"monitor-speaker\": 57872,\n  \"monitor-stop\": 58502,\n  \"monitor-up\": 58402,\n  \"monitor-x\": 58503,\n  \"monitor\": 57629,\n  \"moon-star\": 58384,\n  \"moon\": 57630,\n  \"more-horizontal\": 57526,\n  \"more-vertical\": 57527,\n  \"motorbike\": 59032,\n  \"mountain-snow\": 57906,\n  \"mountain\": 57905,\n  \"mouse-left\": 59057,\n  \"mouse-off\": 58843,\n  \"mouse-pointer-2-off\": 59046,\n  \"mouse-pointer-2\": 57795,\n  \"mouse-pointer-ban\": 58855,\n  \"mouse-pointer-click\": 57632,\n  \"mouse-pointer-square-dashed\": 58633,\n  \"mouse-pointer\": 57631,\n  \"mouse-right\": 59057,\n  \"mouse\": 57998,\n  \"move-3-d\": 58085,\n  \"move-3d\": 58085,\n  \"move-diagonal-2\": 57797,\n  \"move-diagonal\": 57796,\n  \"move-down-left\": 58509,\n  \"move-down-right\": 58510,\n  \"move-down\": 58508,\n  \"move-horizontal\": 57798,\n  \"move-left\": 58511,\n  \"move-right\": 58512,\n  \"move-up-left\": 58514,\n  \"move-up-right\": 58515,\n  \"move-up\": 58513,\n  \"move-vertical\": 57799,\n  \"move\": 57633,\n  \"music-2\": 58186,\n  \"music-3\": 58187,\n  \"music-4\": 58188,\n  \"music\": 57634,\n  \"navigation-2-off\": 58023,\n  \"navigation-2\": 57636,\n  \"navigation-off\": 58024,\n  \"navigation\": 57635,\n  \"network\": 57637,\n  \"newspaper\": 58184,\n  \"nfc\": 58307,\n  \"non-binary\": 58947,\n  \"notebook-pen\": 58774,\n  \"notebook-tabs\": 58775,\n  \"notebook-text\": 58776,\n  \"notebook\": 58773,\n  \"notepad-text-dashed\": 58778,\n  \"notepad-text\": 58777,\n  \"nut-off\": 58268,\n  \"nut\": 58267,\n  \"octagon-alert\": 57639,\n  \"octagon-minus\": 58919,\n  \"octagon-pause\": 57883,\n  \"octagon-x\": 57640,\n  \"octagon\": 57638,\n  \"omega\": 58905,\n  \"option\": 57848,\n  \"orbit\": 58343,\n  \"origami\": 58851,\n  \"outdent\": 57607,\n  \"package-2\": 58176,\n  \"package-check\": 57958,\n  \"package-minus\": 57959,\n  \"package-open\": 58060,\n  \"package-plus\": 57960,\n  \"package-search\": 57961,\n  \"package-x\": 57962,\n  \"package\": 57641,\n  \"paint-bucket\": 58086,\n  \"paint-roller\": 58782,\n  \"paintbrush-2\": 58088,\n  \"paintbrush-vertical\": 58088,\n  \"paintbrush\": 58087,\n  \"palette\": 57821,\n  \"palmtree\": 57985,\n  \"panda\": 58984,\n  \"panel-bottom-close\": 58413,\n  \"panel-bottom-dashed\": 58414,\n  \"panel-bottom-inactive\": 58414,\n  \"panel-bottom-open\": 58415,\n  \"panel-bottom\": 58412,\n  \"panel-left-close\": 57884,\n  \"panel-left-dashed\": 58416,\n  \"panel-left-inactive\": 58416,\n  \"panel-left-open\": 57885,\n  \"panel-left-right-dashed\": 59026,\n  \"panel-left\": 57642,\n  \"panel-right-close\": 58418,\n  \"panel-right-dashed\": 58419,\n  \"panel-right-inactive\": 58419,\n  \"panel-right-open\": 58420,\n  \"panel-right\": 58417,\n  \"panel-top-bottom-dashed\": 59027,\n  \"panel-top-close\": 58422,\n  \"panel-top-dashed\": 58423,\n  \"panel-top-inactive\": 58423,\n  \"panel-top-open\": 58424,\n  \"panel-top\": 58421,\n  \"panels-left-bottom\": 57643,\n  \"panels-left-right\": 57497,\n  \"panels-right-bottom\": 58760,\n  \"panels-top-bottom\": 58762,\n  \"panels-top-left\": 57644,\n  \"paperclip\": 57645,\n  \"parentheses\": 58436,\n  \"parking-circle-off\": 58314,\n  \"parking-circle\": 58313,\n  \"parking-meter\": 58624,\n  \"parking-square-off\": 58316,\n  \"parking-square\": 58315,\n  \"party-popper\": 58179,\n  \"pause-circle\": 57471,\n  \"pause-octagon\": 57883,\n  \"pause\": 57646,\n  \"paw-print\": 58613,\n  \"pc-case\": 58438,\n  \"pen-box\": 57714,\n  \"pen-line\": 57648,\n  \"pen-off\": 58862,\n  \"pen-square\": 57714,\n  \"pen-tool\": 57649,\n  \"pen\": 57647,\n  \"pencil-line\": 58608,\n  \"pencil-off\": 58863,\n  \"pencil-ruler\": 58609,\n  \"pencil\": 57849,\n  \"pentagon\": 58667,\n  \"percent-circle\": 58650,\n  \"percent-diamond\": 58651,\n  \"percent-square\": 58652,\n  \"percent\": 57650,\n  \"person-standing\": 57886,\n  \"philippine-peso\": 58884,\n  \"phone-call\": 57652,\n  \"phone-forwarded\": 57653,\n  \"phone-incoming\": 57654,\n  \"phone-missed\": 57655,\n  \"phone-off\": 57656,\n  \"phone-outgoing\": 57657,\n  \"phone\": 57651,\n  \"pi-square\": 58504,\n  \"pi\": 58482,\n  \"piano\": 58721,\n  \"pickaxe\": 58822,\n  \"picture-in-picture-2\": 58287,\n  \"picture-in-picture\": 58286,\n  \"pie-chart\": 57451,\n  \"piggy-bank\": 57658,\n  \"pilcrow-left\": 58844,\n  \"pilcrow-right\": 58845,\n  \"pilcrow-square\": 58507,\n  \"pilcrow\": 58275,\n  \"pill-bottle\": 58858,\n  \"pill\": 58301,\n  \"pin-off\": 58038,\n  \"pin\": 57945,\n  \"pipette\": 57659,\n  \"pizza\": 58196,\n  \"plane-landing\": 58317,\n  \"plane-takeoff\": 58318,\n  \"plane\": 57822,\n  \"play-circle\": 57472,\n  \"play-square\": 58497,\n  \"play\": 57660,\n  \"plug-2\": 58240,\n  \"plug-zap-2\": 58460,\n  \"plug-zap\": 58460,\n  \"plug\": 58239,\n  \"plus-circle\": 57473,\n  \"plus-square\": 57715,\n  \"plus\": 57661,\n  \"pocket-knife\": 58528,\n  \"pocket\": 57662,\n  \"podcast\": 57850,\n  \"pointer-off\": 58751,\n  \"pointer\": 57832,\n  \"popcorn\": 58558,\n  \"popsicle\": 58559,\n  \"pound-sterling\": 57663,\n  \"power-circle\": 58704,\n  \"power-off\": 57865,\n  \"power-square\": 58705,\n  \"power\": 57664,\n  \"presentation\": 58542,\n  \"printer-check\": 58869,\n  \"printer-x\": 59057,\n  \"printer\": 57665,\n  \"projector\": 58543,\n  \"proportions\": 58831,\n  \"puzzle\": 58012,\n  \"pyramid\": 58668,\n  \"qr-code\": 57823,\n  \"quote\": 57913,\n  \"rabbit\": 58614,\n  \"radar\": 58519,\n  \"radiation\": 58434,\n  \"radical\": 58818,\n  \"radio-receiver\": 57851,\n  \"radio-tower\": 58372,\n  \"radio\": 57666,\n  \"radius\": 58669,\n  \"rail-symbol\": 58625,\n  \"rainbow\": 58562,\n  \"rat\": 58347,\n  \"ratio\": 58600,\n  \"receipt-cent\": 58789,\n  \"receipt-euro\": 58790,\n  \"receipt-indian-rupee\": 58791,\n  \"receipt-japanese-yen\": 58792,\n  \"receipt-pound-sterling\": 58793,\n  \"receipt-russian-ruble\": 58794,\n  \"receipt-swiss-franc\": 58795,\n  \"receipt-text\": 58796,\n  \"receipt-turkish-lira\": 59007,\n  \"receipt\": 58323,\n  \"rectangle-circle\": 58995,\n  \"rectangle-ellipsis\": 57887,\n  \"rectangle-goggles\": 58966,\n  \"rectangle-horizontal\": 58230,\n  \"rectangle-vertical\": 58231,\n  \"recycle\": 58089,\n  \"redo-2\": 58016,\n  \"redo-dot\": 58448,\n  \"redo\": 57667,\n  \"refresh-ccw-dot\": 58546,\n  \"refresh-ccw\": 57668,\n  \"refresh-cw-off\": 58520,\n  \"refresh-cw\": 57669,\n  \"refrigerator\": 58235,\n  \"regex\": 57852,\n  \"remove-formatting\": 58291,\n  \"repeat-1\": 57853,\n  \"repeat-2\": 58385,\n  \"repeat\": 57670,\n  \"replace-all\": 58332,\n  \"replace\": 58331,\n  \"reply-all\": 57899,\n  \"reply\": 57898,\n  \"rewind\": 57671,\n  \"ribbon\": 58712,\n  \"rocket\": 57990,\n  \"rocking-chair\": 57907,\n  \"roller-coaster\": 58496,\n  \"rose\": 59025,\n  \"rotate-3-d\": 58090,\n  \"rotate-3d\": 58090,\n  \"rotate-ccw-key\": 58960,\n  \"rotate-ccw-square\": 58832,\n  \"rotate-ccw\": 57672,\n  \"rotate-cw-square\": 58833,\n  \"rotate-cw\": 57673,\n  \"route-off\": 58687,\n  \"route\": 58686,\n  \"router\": 58303,\n  \"rows-2\": 58425,\n  \"rows-3\": 58762,\n  \"rows-4\": 58763,\n  \"rows\": 58425,\n  \"rss\": 57674,\n  \"ruler-dimension-line\": 58978,\n  \"ruler\": 57675,\n  \"russian-ruble\": 57676,\n  \"sailboat\": 58238,\n  \"salad\": 58280,\n  \"sandwich\": 58281,\n  \"satellite-dish\": 58440,\n  \"satellite\": 58439,\n  \"saudi-riyal\": 58955,\n  \"save-all\": 58383,\n  \"save-off\": 58867,\n  \"save\": 57677,\n  \"scale-3-d\": 58091,\n  \"scale-3d\": 58091,\n  \"scale\": 57874,\n  \"scaling\": 58092,\n  \"scan-barcode\": 58677,\n  \"scan-eye\": 58678,\n  \"scan-face\": 58225,\n  \"scan-heart\": 58938,\n  \"scan-line\": 57944,\n  \"scan-qr-code\": 58870,\n  \"scan-search\": 58679,\n  \"scan-text\": 58680,\n  \"scan\": 57943,\n  \"scatter-chart\": 58506,\n  \"school-2\": 58341,\n  \"school\": 58339,\n  \"scissors-line-dashed\": 58601,\n  \"scissors-square-dashed-bottom\": 58603,\n  \"scissors-square\": 58604,\n  \"scissors\": 57678,\n  \"scooter\": 59052,\n  \"screen-share-off\": 57680,\n  \"screen-share\": 57679,\n  \"scroll-text\": 58463,\n  \"scroll\": 58093,\n  \"search-alert\": 59055,\n  \"search-check\": 58538,\n  \"search-code\": 58539,\n  \"search-slash\": 58540,\n  \"search-x\": 58541,\n  \"search\": 57681,\n  \"section\": 58856,\n  \"send-horizonal\": 58610,\n  \"send-horizontal\": 58610,\n  \"send-to-back\": 58611,\n  \"send\": 57682,\n  \"separator-horizontal\": 57800,\n  \"separator-vertical\": 57801,\n  \"server-cog\": 58177,\n  \"server-crash\": 57833,\n  \"server-off\": 57834,\n  \"server\": 57683,\n  \"settings-2\": 57925,\n  \"settings\": 57684,\n  \"shapes\": 58547,\n  \"share-2\": 57686,\n  \"share\": 57685,\n  \"sheet\": 57687,\n  \"shell\": 58615,\n  \"shelving-unit\": 59057,\n  \"shield-alert\": 57854,\n  \"shield-ban\": 57689,\n  \"shield-check\": 57855,\n  \"shield-close\": 57856,\n  \"shield-ellipsis\": 58646,\n  \"shield-half\": 58647,\n  \"shield-minus\": 58648,\n  \"shield-off\": 57690,\n  \"shield-plus\": 58649,\n  \"shield-question-mark\": 58382,\n  \"shield-question\": 58382,\n  \"shield-user\": 58951,\n  \"shield-x\": 57856,\n  \"shield\": 57688,\n  \"ship-wheel\": 58626,\n  \"ship\": 58298,\n  \"shirt\": 57802,\n  \"shopping-bag\": 57691,\n  \"shopping-basket\": 58602,\n  \"shopping-cart\": 57692,\n  \"shovel\": 57693,\n  \"shower-head\": 58236,\n  \"shredder\": 58971,\n  \"shrimp\": 58953,\n  \"shrink\": 57888,\n  \"shrub\": 58094,\n  \"shuffle\": 57694,\n  \"sidebar-close\": 57884,\n  \"sidebar-open\": 57885,\n  \"sidebar\": 57642,\n  \"sigma-square\": 58505,\n  \"sigma\": 57857,\n  \"signal-high\": 57952,\n  \"signal-low\": 57953,\n  \"signal-medium\": 57954,\n  \"signal-zero\": 57955,\n  \"signal\": 57951,\n  \"signature\": 58866,\n  \"signpost-big\": 58689,\n  \"signpost\": 58688,\n  \"siren\": 58095,\n  \"skip-back\": 57695,\n  \"skip-forward\": 57696,\n  \"skull\": 57889,\n  \"slack\": 57697,\n  \"slash-square\": 57716,\n  \"slash\": 58653,\n  \"slice\": 58096,\n  \"sliders-horizontal\": 58010,\n  \"sliders-vertical\": 57698,\n  \"sliders\": 57698,\n  \"smartphone-charging\": 57902,\n  \"smartphone-nfc\": 58308,\n  \"smartphone\": 57699,\n  \"smile-plus\": 58113,\n  \"smile\": 57700,\n  \"snail\": 58616,\n  \"snowflake\": 57701,\n  \"soap-dispenser-droplet\": 58985,\n  \"sofa\": 58052,\n  \"solar-panel\": 59039,\n  \"sort-asc\": 57420,\n  \"sort-desc\": 57415,\n  \"soup\": 58282,\n  \"space\": 58333,\n  \"spade\": 58521,\n  \"sparkle\": 58494,\n  \"sparkles\": 58386,\n  \"speaker\": 57702,\n  \"speech\": 58654,\n  \"spell-check-2\": 58523,\n  \"spell-check\": 58522,\n  \"spline-pointer\": 58959,\n  \"spline\": 58251,\n  \"split-square-horizontal\": 58294,\n  \"split-square-vertical\": 58295,\n  \"split\": 58432,\n  \"spool\": 58999,\n  \"spotlight\": 59010,\n  \"spray-can\": 58517,\n  \"sprout\": 57835,\n  \"square-activity\": 58548,\n  \"square-arrow-down-left\": 58549,\n  \"square-arrow-down-right\": 58550,\n  \"square-arrow-down\": 58407,\n  \"square-arrow-left\": 58408,\n  \"square-arrow-out-down-left\": 58785,\n  \"square-arrow-out-down-right\": 58786,\n  \"square-arrow-out-up-left\": 58787,\n  \"square-arrow-out-up-right\": 58788,\n  \"square-arrow-right-enter\": 59057,\n  \"square-arrow-right-exit\": 59057,\n  \"square-arrow-right\": 58409,\n  \"square-arrow-up-left\": 58551,\n  \"square-arrow-up-right\": 58552,\n  \"square-arrow-up\": 58410,\n  \"square-asterisk\": 57704,\n  \"square-bottom-dashed-scissors\": 58603,\n  \"square-centerline-dashed-horizontal\": 59057,\n  \"square-centerline-dashed-vertical\": 59057,\n  \"square-chart-gantt\": 57705,\n  \"square-check-big\": 57706,\n  \"square-check\": 58713,\n  \"square-chevron-down\": 58319,\n  \"square-chevron-left\": 58320,\n  \"square-chevron-right\": 58321,\n  \"square-chevron-up\": 58322,\n  \"square-code\": 57707,\n  \"square-dashed-bottom-code\": 58561,\n  \"square-dashed-bottom\": 58560,\n  \"square-dashed-kanban\": 57708,\n  \"square-dashed-mouse-pointer\": 58633,\n  \"square-dashed-top-solid\": 58988,\n  \"square-dashed\": 57803,\n  \"square-divide\": 57709,\n  \"square-dot\": 57710,\n  \"square-equal\": 57711,\n  \"square-function\": 57901,\n  \"square-gantt-chart\": 57705,\n  \"square-kanban\": 57712,\n  \"square-library\": 58703,\n  \"square-m\": 58627,\n  \"square-menu\": 58451,\n  \"square-minus\": 57713,\n  \"square-mouse-pointer\": 57858,\n  \"square-parking-off\": 58316,\n  \"square-parking\": 58315,\n  \"square-pause\": 59012,\n  \"square-pen\": 57714,\n  \"square-percent\": 58652,\n  \"square-pi\": 58504,\n  \"square-pilcrow\": 58507,\n  \"square-play\": 58497,\n  \"square-plus\": 57715,\n  \"square-power\": 58705,\n  \"square-radical\": 58819,\n  \"square-round-corner\": 58952,\n  \"square-scissors\": 58604,\n  \"square-sigma\": 58505,\n  \"square-slash\": 57716,\n  \"square-split-horizontal\": 58294,\n  \"square-split-vertical\": 58295,\n  \"square-square\": 58894,\n  \"square-stack\": 58530,\n  \"square-star\": 59022,\n  \"square-stop\": 59013,\n  \"square-terminal\": 57866,\n  \"square-user-round\": 58470,\n  \"square-user\": 58469,\n  \"square-x\": 57717,\n  \"square\": 57703,\n  \"squares-exclude\": 58967,\n  \"squares-intersect\": 58968,\n  \"squares-subtract\": 58969,\n  \"squares-unite\": 58970,\n  \"squircle-dashed\": 59001,\n  \"squircle\": 58746,\n  \"squirrel\": 58527,\n  \"stamp\": 58299,\n  \"star-half\": 57867,\n  \"star-off\": 58032,\n  \"star\": 57718,\n  \"stars\": 58386,\n  \"step-back\": 58345,\n  \"step-forward\": 58346,\n  \"stethoscope\": 58097,\n  \"sticker\": 58114,\n  \"sticky-note\": 58115,\n  \"stone\": 59055,\n  \"stop-circle\": 57475,\n  \"store\": 58340,\n  \"stretch-horizontal\": 57980,\n  \"stretch-vertical\": 57981,\n  \"strikethrough\": 57719,\n  \"subscript\": 57948,\n  \"subtitles\": 58276,\n  \"sun-dim\": 58009,\n  \"sun-medium\": 58033,\n  \"sun-moon\": 58034,\n  \"sun-snow\": 58226,\n  \"sun\": 57720,\n  \"sunrise\": 57721,\n  \"sunset\": 57722,\n  \"superscript\": 57950,\n  \"swatch-book\": 58783,\n  \"swiss-franc\": 57723,\n  \"switch-camera\": 57724,\n  \"sword\": 58035,\n  \"swords\": 58036,\n  \"syringe\": 58098,\n  \"table-2\": 58105,\n  \"table-cells-merge\": 58823,\n  \"table-cells-split\": 58824,\n  \"table-columns-split\": 58825,\n  \"table-config\": 58977,\n  \"table-of-contents\": 58910,\n  \"table-properties\": 58587,\n  \"table-rows-split\": 58826,\n  \"table\": 57725,\n  \"tablet-smartphone\": 58634,\n  \"tablet\": 57726,\n  \"tablets\": 58302,\n  \"tag\": 57727,\n  \"tags\": 58204,\n  \"tally-1\": 58582,\n  \"tally-2\": 58583,\n  \"tally-3\": 58584,\n  \"tally-4\": 58585,\n  \"tally-5\": 58586,\n  \"tangent\": 58670,\n  \"target\": 57728,\n  \"telescope\": 58821,\n  \"tent-tree\": 58683,\n  \"tent\": 57895,\n  \"terminal-square\": 57866,\n  \"terminal\": 57729,\n  \"test-tube-2\": 58374,\n  \"test-tube-diagonal\": 58374,\n  \"test-tube\": 58373,\n  \"test-tubes\": 58375,\n  \"text-align-center\": 57730,\n  \"text-align-end\": 57731,\n  \"text-align-justify\": 57732,\n  \"text-align-start\": 57733,\n  \"text-cursor-input\": 57957,\n  \"text-cursor\": 57956,\n  \"text-initial\": 58885,\n  \"text-quote\": 58526,\n  \"text-search\": 58797,\n  \"text-select\": 58334,\n  \"text-selection\": 58334,\n  \"text-wrap\": 57928,\n  \"text\": 57733,\n  \"theater\": 58658,\n  \"thermometer-snowflake\": 57735,\n  \"thermometer-sun\": 57736,\n  \"thermometer\": 57734,\n  \"thumbs-down\": 57737,\n  \"thumbs-up\": 57738,\n  \"ticket-check\": 58798,\n  \"ticket-minus\": 58799,\n  \"ticket-percent\": 58800,\n  \"ticket-plus\": 58801,\n  \"ticket-slash\": 58802,\n  \"ticket-x\": 58803,\n  \"ticket\": 57871,\n  \"tickets-plane\": 58915,\n  \"tickets\": 58914,\n  \"timer-off\": 57929,\n  \"timer-reset\": 57910,\n  \"timer\": 57824,\n  \"toggle-left\": 57739,\n  \"toggle-right\": 57740,\n  \"toilet\": 58933,\n  \"tool-case\": 59005,\n  \"toolbox\": 59056,\n  \"tornado\": 57880,\n  \"torus\": 58671,\n  \"touchpad-off\": 58442,\n  \"touchpad\": 58441,\n  \"towel-rack\": 59057,\n  \"tower-control\": 58300,\n  \"toy-brick\": 58183,\n  \"tractor\": 58628,\n  \"traffic-cone\": 58629,\n  \"train-front-tunnel\": 58631,\n  \"train-front\": 58630,\n  \"train-track\": 58632,\n  \"train\": 58025,\n  \"tram-front\": 58025,\n  \"transgender\": 58948,\n  \"trash-2\": 57742,\n  \"trash\": 57741,\n  \"tree-deciduous\": 58099,\n  \"tree-palm\": 57985,\n  \"tree-pine\": 58100,\n  \"trees\": 58101,\n  \"trello\": 57743,\n  \"trending-down\": 57744,\n  \"trending-up-down\": 58917,\n  \"trending-up\": 57745,\n  \"triangle-alert\": 57747,\n  \"triangle-dashed\": 58941,\n  \"triangle-right\": 58605,\n  \"triangle\": 57746,\n  \"trophy\": 58227,\n  \"truck-electric\": 58975,\n  \"truck\": 57748,\n  \"turkish-lira\": 59008,\n  \"turntable\": 59020,\n  \"turtle\": 58617,\n  \"tv-2\": 57859,\n  \"tv-minimal-play\": 58860,\n  \"tv-minimal\": 57859,\n  \"tv\": 57749,\n  \"twitch\": 57750,\n  \"twitter\": 57751,\n  \"type-outline\": 58882,\n  \"type\": 57752,\n  \"umbrella-off\": 58691,\n  \"umbrella\": 57753,\n  \"underline\": 57754,\n  \"undo-2\": 58017,\n  \"undo-dot\": 58449,\n  \"undo\": 57755,\n  \"unfold-horizontal\": 58429,\n  \"unfold-vertical\": 58430,\n  \"ungroup\": 58471,\n  \"university\": 58341,\n  \"unlink-2\": 57757,\n  \"unlink\": 57756,\n  \"unlock-keyhole\": 58674,\n  \"unlock\": 57612,\n  \"unplug\": 58461,\n  \"upload-cloud\": 57489,\n  \"upload\": 57758,\n  \"usb\": 58198,\n  \"user-2\": 58472,\n  \"user-check-2\": 58473,\n  \"user-check\": 57760,\n  \"user-circle-2\": 58466,\n  \"user-circle\": 58465,\n  \"user-cog-2\": 58474,\n  \"user-cog\": 58178,\n  \"user-key\": 59057,\n  \"user-lock\": 58976,\n  \"user-minus-2\": 58475,\n  \"user-minus\": 57761,\n  \"user-pen\": 58876,\n  \"user-plus-2\": 58476,\n  \"user-plus\": 57762,\n  \"user-round-check\": 58473,\n  \"user-round-cog\": 58474,\n  \"user-round-key\": 59057,\n  \"user-round-minus\": 58475,\n  \"user-round-pen\": 58877,\n  \"user-round-plus\": 58476,\n  \"user-round-search\": 58744,\n  \"user-round-x\": 58477,\n  \"user-round\": 58472,\n  \"user-search\": 58745,\n  \"user-square-2\": 58470,\n  \"user-square\": 58469,\n  \"user-star\": 59015,\n  \"user-x-2\": 58477,\n  \"user-x\": 57763,\n  \"user\": 57759,\n  \"users-2\": 58478,\n  \"users-round\": 58478,\n  \"users\": 57764,\n  \"utensils-crossed\": 58103,\n  \"utensils\": 58102,\n  \"utility-pole\": 58306,\n  \"van\": 59053,\n  \"variable\": 58483,\n  \"vault\": 58767,\n  \"vector-square\": 59004,\n  \"vegan\": 58269,\n  \"venetian-mask\": 58026,\n  \"venus-and-mars\": 58950,\n  \"venus\": 58949,\n  \"verified\": 57921,\n  \"vibrate-off\": 58013,\n  \"vibrate\": 57891,\n  \"video-off\": 57766,\n  \"video\": 57765,\n  \"videotape\": 58571,\n  \"view\": 57767,\n  \"voicemail\": 57768,\n  \"volleyball\": 58927,\n  \"volume-1\": 57770,\n  \"volume-2\": 57771,\n  \"volume-off\": 58918,\n  \"volume-x\": 57772,\n  \"volume\": 57769,\n  \"vote\": 58285,\n  \"wallet-2\": 58573,\n  \"wallet-cards\": 58572,\n  \"wallet-minimal\": 58573,\n  \"wallet\": 57860,\n  \"wallpaper\": 58443,\n  \"wand-2\": 58199,\n  \"wand-sparkles\": 58199,\n  \"wand\": 57926,\n  \"warehouse\": 58342,\n  \"washing-machine\": 58768,\n  \"watch\": 57773,\n  \"waves-arrow-down\": 59049,\n  \"waves-arrow-up\": 59050,\n  \"waves-ladder\": 58939,\n  \"waves\": 57987,\n  \"waypoints\": 58690,\n  \"webcam\": 57861,\n  \"webhook-off\": 58807,\n  \"webhook\": 58228,\n  \"weight-tilde\": 59054,\n  \"weight\": 58672,\n  \"wheat-off\": 58271,\n  \"wheat\": 58270,\n  \"whole-word\": 58335,\n  \"wifi-cog\": 58996,\n  \"wifi-high\": 58871,\n  \"wifi-low\": 58872,\n  \"wifi-off\": 57775,\n  \"wifi-pen\": 58979,\n  \"wifi-sync\": 59009,\n  \"wifi-zero\": 58873,\n  \"wifi\": 57774,\n  \"wind-arrow-down\": 58929,\n  \"wind\": 57776,\n  \"wine-off\": 58272,\n  \"wine\": 58104,\n  \"workflow\": 58405,\n  \"worm\": 58842,\n  \"wrap-text\": 57928,\n  \"wrench\": 57777,\n  \"x-circle\": 57476,\n  \"x-line-top\": 59057,\n  \"x-octagon\": 57640,\n  \"x-square\": 57717,\n  \"x\": 57778,\n  \"youtube\": 57779,\n  \"zap-off\": 57781,\n  \"zap\": 57780,\n  \"zodiac-aquarius\": 59057,\n  \"zodiac-aries\": 59057,\n  \"zodiac-cancer\": 59057,\n  \"zodiac-capricorn\": 59057,\n  \"zodiac-gemini\": 59057,\n  \"zodiac-leo\": 59057,\n  \"zodiac-libra\": 59057,\n  \"zodiac-ophiuchus\": 59057,\n  \"zodiac-pisces\": 59057,\n  \"zodiac-sagittarius\": 59057,\n  \"zodiac-scorpio\": 59057,\n  \"zodiac-taurus\": 59057,\n  \"zodiac-virgo\": 59057,\n  \"zoom-in\": 57782,\n  \"zoom-out\": 57783\n}"
  },
  {
    "path": "packages/lucide/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/lucide\",\n  \"version\": \"12.5.0\",\n  \"description\": \"Lucide font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\",\n    \"./fonts/*.ttf\": \"./fonts/*.ttf\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"lucide\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/lucide\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\",\n    \"lucide-static\": \"0.576.0\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/lucide/react-native-vector-icons-lucide.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-lucide'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\nend\n"
  },
  {
    "path": "packages/lucide/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * Lucide icon set component.\n * Usage: <Lucide name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/Lucide.json';\n\nexport const Lucide = createIconSet(glyphMap, {\n  postScriptName: 'Lucide',\n  fontFileName: 'Lucide.ttf',\n  fontSource: require('../fonts/Lucide.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require\n});\n\nexport type LucideIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default Lucide;\n"
  },
  {
    "path": "packages/lucide/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * Lucide icon set component.\n * Usage: <Lucide name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/Lucide.json';\n\nexport const Lucide = createIconSet(glyphMap, {\n  postScriptName: 'Lucide',\n  fontFileName: 'Lucide.ttf',\n});\n\nexport type LucideIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default Lucide;\n"
  },
  {
    "path": "packages/lucide/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/lucide/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/material-design-icons/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"material-design-icons\",\n    \"upstreamFont\": \"@mdi/font\",\n    \"buildSteps\": {\n      \"glyphmap\": {\n        \"location\": \"../../node_modules/@mdi/font/css/materialdesignicons.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".mdi-\"\n      },\n      \"copyFont\": {\n        \"location\": \"../../node_modules/@mdi/font/fonts/materialdesignicons-webfont.ttf\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"12.0.0\",\n        \"upstream\": \"7.4.47\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/material-design-icons/CHANGELOG.md",
    "content": "## 12.5.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.4.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 12.4.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.4.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 12.4.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.3.0 (2025-08-03)\n\n### 🚀 Features\n\n- export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.3.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.2.0 (2025-07-20)\n\n### 🚀 Features\n\n- add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.2.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.1.0 (2025-07-12)\n\n### 🚀 Features\n\n- export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.1.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.2 (2025-06-15)\n\n### 🩹 Fixes\n\n- new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.2\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.1 (2025-06-15)\n\n### 🩹 Fixes\n\n- try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745))\n- remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767))\n- convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765))\n- updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c))\n- **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.1\n\n### ❤️ Thank You\n\n- Alexander Kucheryavenko @Red1tum\n- John Ferlito @johnf\n- Md. Jayed Hasan @JayedHasan232\n\n# 12.0.0 (2025-05-04)\n\n### 🚀 Features\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n- add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702))\n\n### 🩹 Fixes\n\n- upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691))\n- upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690))\n- mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99))\n\n### ⚠️  Breaking Changes\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n\n### ❤️ Thank You\n\n- Chanphirom Sok @chanphiromsok\n- John Ferlito @johnf"
  },
  {
    "path": "packages/material-design-icons/README.md",
    "content": "# React Native Vector Icons - Material Design Icons\n\nMaterial Design Icons font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/material-design-icons\n```\n\n## Usage\n\n```jsx\nimport { MaterialDesignIcons } from '@react-native-vector-icons/material-design-icons';\n\n// ...\n\n<MaterialDesignIcons name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 12.0.0 | 7.4.47 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/material-design-icons/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.material_design_icons\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsMaterialDesignIcons\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.material_design_icons\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-material-design-icons\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-material-design-icons/fonts\"\n  eachFile { println \"(RNVI:material-design-icons) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n"
  },
  {
    "path": "packages/material-design-icons/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.material_design_icons\">\n</manifest>\n"
  },
  {
    "path": "packages/material-design-icons/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/material-design-icons/android/src/main/java/VectorIconsMaterialDesignIconsPackage.kt",
    "content": "package com.reactnativevectoricons.material_design_icons\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsMaterialDesignIconsPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/material-design-icons/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/material-design-icons/glyphmaps/MaterialDesignIcons.json",
    "content": "{\n  \"ab-testing\": 983497,\n  \"abacus\": 988896,\n  \"abjad-arabic\": 987944,\n  \"abjad-hebrew\": 987945,\n  \"abugida-devanagari\": 987946,\n  \"abugida-thai\": 987947,\n  \"access-point\": 983043,\n  \"access-point-check\": 988472,\n  \"access-point-minus\": 988473,\n  \"access-point-network\": 983042,\n  \"access-point-network-off\": 986081,\n  \"access-point-off\": 988433,\n  \"access-point-plus\": 988474,\n  \"access-point-remove\": 988475,\n  \"account\": 983044,\n  \"account-alert\": 983045,\n  \"account-alert-outline\": 985936,\n  \"account-arrow-down\": 989288,\n  \"account-arrow-down-outline\": 989289,\n  \"account-arrow-left\": 985937,\n  \"account-arrow-left-outline\": 985938,\n  \"account-arrow-right\": 985939,\n  \"account-arrow-right-outline\": 985940,\n  \"account-arrow-up\": 989287,\n  \"account-arrow-up-outline\": 989290,\n  \"account-badge\": 989962,\n  \"account-badge-outline\": 989963,\n  \"account-box\": 983046,\n  \"account-box-edit-outline\": 990408,\n  \"account-box-minus-outline\": 990409,\n  \"account-box-multiple\": 985396,\n  \"account-box-multiple-outline\": 987146,\n  \"account-box-outline\": 983047,\n  \"account-box-plus-outline\": 990410,\n  \"account-cancel\": 987871,\n  \"account-cancel-outline\": 987872,\n  \"account-card\": 990116,\n  \"account-card-outline\": 990117,\n  \"account-cash\": 987287,\n  \"account-cash-outline\": 987288,\n  \"account-check\": 983048,\n  \"account-check-outline\": 986082,\n  \"account-child\": 985737,\n  \"account-child-circle\": 985738,\n  \"account-child-outline\": 987336,\n  \"account-circle\": 983049,\n  \"account-circle-outline\": 985941,\n  \"account-clock\": 985942,\n  \"account-clock-outline\": 985943,\n  \"account-cog\": 988016,\n  \"account-cog-outline\": 988017,\n  \"account-convert\": 983050,\n  \"account-convert-outline\": 987905,\n  \"account-cowboy-hat\": 986779,\n  \"account-cowboy-hat-outline\": 989171,\n  \"account-credit-card\": 990118,\n  \"account-credit-card-outline\": 990119,\n  \"account-details\": 984625,\n  \"account-details-outline\": 988018,\n  \"account-edit\": 984764,\n  \"account-edit-outline\": 987131,\n  \"account-eye\": 984096,\n  \"account-eye-outline\": 987771,\n  \"account-file\": 990375,\n  \"account-file-outline\": 990376,\n  \"account-file-text\": 990377,\n  \"account-file-text-outline\": 990378,\n  \"account-filter\": 985398,\n  \"account-filter-outline\": 987037,\n  \"account-group\": 985161,\n  \"account-group-outline\": 985944,\n  \"account-hard-hat\": 984501,\n  \"account-hard-hat-outline\": 989727,\n  \"account-heart\": 985241,\n  \"account-heart-outline\": 986083,\n  \"account-injury\": 989205,\n  \"account-injury-outline\": 989206,\n  \"account-key\": 983051,\n  \"account-key-outline\": 986084,\n  \"account-lock\": 987486,\n  \"account-lock-open\": 989536,\n  \"account-lock-open-outline\": 989537,\n  \"account-lock-outline\": 987487,\n  \"account-minus\": 983053,\n  \"account-minus-outline\": 985836,\n  \"account-multiple\": 983054,\n  \"account-multiple-check\": 985285,\n  \"account-multiple-check-outline\": 987646,\n  \"account-multiple-minus\": 984531,\n  \"account-multiple-minus-outline\": 986085,\n  \"account-multiple-outline\": 983055,\n  \"account-multiple-plus\": 983056,\n  \"account-multiple-plus-outline\": 985088,\n  \"account-multiple-remove\": 987658,\n  \"account-multiple-remove-outline\": 987659,\n  \"account-music\": 985091,\n  \"account-music-outline\": 986345,\n  \"account-network\": 983057,\n  \"account-network-off\": 989937,\n  \"account-network-off-outline\": 989938,\n  \"account-network-outline\": 986086,\n  \"account-off\": 983058,\n  \"account-off-outline\": 986087,\n  \"account-outline\": 983059,\n  \"account-plus\": 983060,\n  \"account-plus-outline\": 985089,\n  \"account-question\": 985945,\n  \"account-question-outline\": 985946,\n  \"account-reactivate\": 988459,\n  \"account-reactivate-outline\": 988460,\n  \"account-remove\": 983061,\n  \"account-remove-outline\": 985837,\n  \"account-school\": 989728,\n  \"account-school-outline\": 989729,\n  \"account-search\": 983062,\n  \"account-search-outline\": 985397,\n  \"account-settings\": 984624,\n  \"account-settings-outline\": 987337,\n  \"account-star\": 983063,\n  \"account-star-outline\": 986088,\n  \"account-supervisor\": 985739,\n  \"account-supervisor-circle\": 985740,\n  \"account-supervisor-circle-outline\": 988396,\n  \"account-supervisor-outline\": 987437,\n  \"account-switch\": 983065,\n  \"account-switch-outline\": 984267,\n  \"account-sync\": 989467,\n  \"account-sync-outline\": 989468,\n  \"account-tag\": 990235,\n  \"account-tag-outline\": 990236,\n  \"account-tie\": 986339,\n  \"account-tie-hat\": 989336,\n  \"account-tie-hat-outline\": 989337,\n  \"account-tie-outline\": 987338,\n  \"account-tie-voice\": 987912,\n  \"account-tie-voice-off\": 987914,\n  \"account-tie-voice-off-outline\": 987915,\n  \"account-tie-voice-outline\": 987913,\n  \"account-tie-woman\": 989836,\n  \"account-voice\": 984523,\n  \"account-voice-off\": 986836,\n  \"account-wrench\": 989338,\n  \"account-wrench-outline\": 989339,\n  \"adjust\": 983066,\n  \"advertisements\": 989482,\n  \"advertisements-off\": 989483,\n  \"air-conditioner\": 983067,\n  \"air-filter\": 986435,\n  \"air-horn\": 986540,\n  \"air-humidifier\": 987289,\n  \"air-humidifier-off\": 988262,\n  \"air-purifier\": 986436,\n  \"air-purifier-off\": 990039,\n  \"airbag\": 986089,\n  \"airballoon\": 983068,\n  \"airballoon-outline\": 987147,\n  \"airplane\": 983069,\n  \"airplane-alert\": 989306,\n  \"airplane-check\": 989307,\n  \"airplane-clock\": 989308,\n  \"airplane-cog\": 989309,\n  \"airplane-edit\": 989310,\n  \"airplane-landing\": 984532,\n  \"airplane-marker\": 989311,\n  \"airplane-minus\": 989312,\n  \"airplane-off\": 983070,\n  \"airplane-plus\": 989313,\n  \"airplane-remove\": 989314,\n  \"airplane-search\": 989315,\n  \"airplane-settings\": 989316,\n  \"airplane-takeoff\": 984533,\n  \"airport\": 985163,\n  \"alarm\": 983072,\n  \"alarm-bell\": 984974,\n  \"alarm-check\": 983073,\n  \"alarm-light\": 984975,\n  \"alarm-light-off\": 988958,\n  \"alarm-light-off-outline\": 988959,\n  \"alarm-light-outline\": 986090,\n  \"alarm-multiple\": 983074,\n  \"alarm-note\": 986737,\n  \"alarm-note-off\": 986738,\n  \"alarm-off\": 983075,\n  \"alarm-panel\": 988612,\n  \"alarm-panel-outline\": 988613,\n  \"alarm-plus\": 983076,\n  \"alarm-snooze\": 984718,\n  \"album\": 983077,\n  \"alert\": 983078,\n  \"alert-box\": 983079,\n  \"alert-box-outline\": 986340,\n  \"alert-circle\": 983080,\n  \"alert-circle-check\": 987629,\n  \"alert-circle-check-outline\": 987630,\n  \"alert-circle-outline\": 984534,\n  \"alert-decagram\": 984765,\n  \"alert-decagram-outline\": 986341,\n  \"alert-minus\": 988347,\n  \"alert-minus-outline\": 988350,\n  \"alert-octagon\": 983081,\n  \"alert-octagon-outline\": 986342,\n  \"alert-octagram\": 984935,\n  \"alert-octagram-outline\": 986343,\n  \"alert-outline\": 983082,\n  \"alert-plus\": 988346,\n  \"alert-plus-outline\": 988349,\n  \"alert-remove\": 988348,\n  \"alert-remove-outline\": 988351,\n  \"alert-rhombus\": 987598,\n  \"alert-rhombus-outline\": 987599,\n  \"alien\": 985242,\n  \"alien-outline\": 987339,\n  \"align-horizontal-center\": 987587,\n  \"align-horizontal-distribute\": 989538,\n  \"align-horizontal-left\": 987586,\n  \"align-horizontal-right\": 987588,\n  \"align-vertical-bottom\": 987589,\n  \"align-vertical-center\": 987590,\n  \"align-vertical-distribute\": 989539,\n  \"align-vertical-top\": 987591,\n  \"all-inclusive\": 984766,\n  \"all-inclusive-box\": 989325,\n  \"all-inclusive-box-outline\": 989326,\n  \"allergy\": 987736,\n  \"alpha\": 983083,\n  \"alpha-a\": 985838,\n  \"alpha-a-box\": 985864,\n  \"alpha-a-box-outline\": 986091,\n  \"alpha-a-circle\": 986092,\n  \"alpha-a-circle-outline\": 986093,\n  \"alpha-b\": 985839,\n  \"alpha-b-box\": 985865,\n  \"alpha-b-box-outline\": 986094,\n  \"alpha-b-circle\": 986095,\n  \"alpha-b-circle-outline\": 986096,\n  \"alpha-c\": 985840,\n  \"alpha-c-box\": 985866,\n  \"alpha-c-box-outline\": 986097,\n  \"alpha-c-circle\": 986098,\n  \"alpha-c-circle-outline\": 986099,\n  \"alpha-d\": 985841,\n  \"alpha-d-box\": 985867,\n  \"alpha-d-box-outline\": 986100,\n  \"alpha-d-circle\": 986101,\n  \"alpha-d-circle-outline\": 986102,\n  \"alpha-e\": 985842,\n  \"alpha-e-box\": 985868,\n  \"alpha-e-box-outline\": 986103,\n  \"alpha-e-circle\": 986104,\n  \"alpha-e-circle-outline\": 986105,\n  \"alpha-f\": 985843,\n  \"alpha-f-box\": 985869,\n  \"alpha-f-box-outline\": 986106,\n  \"alpha-f-circle\": 986107,\n  \"alpha-f-circle-outline\": 986108,\n  \"alpha-g\": 985844,\n  \"alpha-g-box\": 985870,\n  \"alpha-g-box-outline\": 986109,\n  \"alpha-g-circle\": 986110,\n  \"alpha-g-circle-outline\": 986111,\n  \"alpha-h\": 985845,\n  \"alpha-h-box\": 985871,\n  \"alpha-h-box-outline\": 986112,\n  \"alpha-h-circle\": 986113,\n  \"alpha-h-circle-outline\": 986114,\n  \"alpha-i\": 985846,\n  \"alpha-i-box\": 985872,\n  \"alpha-i-box-outline\": 986115,\n  \"alpha-i-circle\": 986116,\n  \"alpha-i-circle-outline\": 986117,\n  \"alpha-j\": 985847,\n  \"alpha-j-box\": 985873,\n  \"alpha-j-box-outline\": 986118,\n  \"alpha-j-circle\": 986119,\n  \"alpha-j-circle-outline\": 986120,\n  \"alpha-k\": 985848,\n  \"alpha-k-box\": 985874,\n  \"alpha-k-box-outline\": 986121,\n  \"alpha-k-circle\": 986122,\n  \"alpha-k-circle-outline\": 986123,\n  \"alpha-l\": 985849,\n  \"alpha-l-box\": 985875,\n  \"alpha-l-box-outline\": 986124,\n  \"alpha-l-circle\": 986125,\n  \"alpha-l-circle-outline\": 986126,\n  \"alpha-m\": 985850,\n  \"alpha-m-box\": 985876,\n  \"alpha-m-box-outline\": 986127,\n  \"alpha-m-circle\": 986128,\n  \"alpha-m-circle-outline\": 986129,\n  \"alpha-n\": 985851,\n  \"alpha-n-box\": 985877,\n  \"alpha-n-box-outline\": 986130,\n  \"alpha-n-circle\": 986131,\n  \"alpha-n-circle-outline\": 986132,\n  \"alpha-o\": 985852,\n  \"alpha-o-box\": 985878,\n  \"alpha-o-box-outline\": 986133,\n  \"alpha-o-circle\": 986134,\n  \"alpha-o-circle-outline\": 986135,\n  \"alpha-p\": 985853,\n  \"alpha-p-box\": 985879,\n  \"alpha-p-box-outline\": 986136,\n  \"alpha-p-circle\": 986137,\n  \"alpha-p-circle-outline\": 986138,\n  \"alpha-q\": 985854,\n  \"alpha-q-box\": 985880,\n  \"alpha-q-box-outline\": 986139,\n  \"alpha-q-circle\": 986140,\n  \"alpha-q-circle-outline\": 986141,\n  \"alpha-r\": 985855,\n  \"alpha-r-box\": 985881,\n  \"alpha-r-box-outline\": 986142,\n  \"alpha-r-circle\": 986143,\n  \"alpha-r-circle-outline\": 986144,\n  \"alpha-s\": 985856,\n  \"alpha-s-box\": 985882,\n  \"alpha-s-box-outline\": 986145,\n  \"alpha-s-circle\": 986146,\n  \"alpha-s-circle-outline\": 986147,\n  \"alpha-t\": 985857,\n  \"alpha-t-box\": 985883,\n  \"alpha-t-box-outline\": 986148,\n  \"alpha-t-circle\": 986149,\n  \"alpha-t-circle-outline\": 986150,\n  \"alpha-u\": 985858,\n  \"alpha-u-box\": 985884,\n  \"alpha-u-box-outline\": 986151,\n  \"alpha-u-circle\": 986152,\n  \"alpha-u-circle-outline\": 986153,\n  \"alpha-v\": 985859,\n  \"alpha-v-box\": 985885,\n  \"alpha-v-box-outline\": 986154,\n  \"alpha-v-circle\": 986155,\n  \"alpha-v-circle-outline\": 986156,\n  \"alpha-w\": 985860,\n  \"alpha-w-box\": 985886,\n  \"alpha-w-box-outline\": 986157,\n  \"alpha-w-circle\": 986158,\n  \"alpha-w-circle-outline\": 986159,\n  \"alpha-x\": 985861,\n  \"alpha-x-box\": 985887,\n  \"alpha-x-box-outline\": 986160,\n  \"alpha-x-circle\": 986161,\n  \"alpha-x-circle-outline\": 986162,\n  \"alpha-y\": 985862,\n  \"alpha-y-box\": 985888,\n  \"alpha-y-box-outline\": 986163,\n  \"alpha-y-circle\": 986164,\n  \"alpha-y-circle-outline\": 986165,\n  \"alpha-z\": 985863,\n  \"alpha-z-box\": 985889,\n  \"alpha-z-box-outline\": 986166,\n  \"alpha-z-circle\": 986167,\n  \"alpha-z-circle-outline\": 986168,\n  \"alphabet-aurebesh\": 987948,\n  \"alphabet-cyrillic\": 987949,\n  \"alphabet-greek\": 987950,\n  \"alphabet-latin\": 987951,\n  \"alphabet-piqad\": 987952,\n  \"alphabet-tengwar\": 987959,\n  \"alphabetical\": 983084,\n  \"alphabetical-off\": 987148,\n  \"alphabetical-variant\": 987149,\n  \"alphabetical-variant-off\": 987150,\n  \"altimeter\": 984535,\n  \"ambulance\": 983087,\n  \"ammunition\": 986344,\n  \"ampersand\": 985741,\n  \"amplifier\": 983088,\n  \"amplifier-off\": 987573,\n  \"anchor\": 983089,\n  \"android\": 983090,\n  \"android-studio\": 983092,\n  \"angle-acute\": 985399,\n  \"angle-obtuse\": 985400,\n  \"angle-right\": 985401,\n  \"angular\": 984754,\n  \"angularjs\": 984767,\n  \"animation\": 984536,\n  \"animation-outline\": 985743,\n  \"animation-play\": 985402,\n  \"animation-play-outline\": 985744,\n  \"ansible\": 987290,\n  \"antenna\": 987417,\n  \"anvil\": 985243,\n  \"apache-kafka\": 987151,\n  \"api\": 987291,\n  \"api-off\": 987735,\n  \"apple\": 983093,\n  \"apple-finder\": 983094,\n  \"apple-icloud\": 983096,\n  \"apple-ios\": 983095,\n  \"apple-keyboard-caps\": 984626,\n  \"apple-keyboard-command\": 984627,\n  \"apple-keyboard-control\": 984628,\n  \"apple-keyboard-option\": 984629,\n  \"apple-keyboard-shift\": 984630,\n  \"apple-safari\": 983097,\n  \"application\": 985286,\n  \"application-array\": 987381,\n  \"application-array-outline\": 987382,\n  \"application-braces\": 987383,\n  \"application-braces-outline\": 987384,\n  \"application-brackets\": 986251,\n  \"application-brackets-outline\": 986252,\n  \"application-cog\": 984693,\n  \"application-cog-outline\": 988535,\n  \"application-edit\": 983214,\n  \"application-edit-outline\": 984601,\n  \"application-export\": 986541,\n  \"application-import\": 986542,\n  \"application-outline\": 984596,\n  \"application-parentheses\": 987385,\n  \"application-parentheses-outline\": 987386,\n  \"application-settings\": 985952,\n  \"application-settings-outline\": 988501,\n  \"application-variable\": 987387,\n  \"application-variable-outline\": 987388,\n  \"approximately-equal\": 987038,\n  \"approximately-equal-box\": 987039,\n  \"apps\": 983099,\n  \"apps-box\": 986438,\n  \"arch\": 985287,\n  \"archive\": 983100,\n  \"archive-alert\": 988413,\n  \"archive-alert-outline\": 988414,\n  \"archive-arrow-down\": 987737,\n  \"archive-arrow-down-outline\": 987738,\n  \"archive-arrow-up\": 987739,\n  \"archive-arrow-up-outline\": 987740,\n  \"archive-cancel\": 989003,\n  \"archive-cancel-outline\": 989004,\n  \"archive-check\": 989005,\n  \"archive-check-outline\": 989006,\n  \"archive-clock\": 989007,\n  \"archive-clock-outline\": 989008,\n  \"archive-cog\": 989009,\n  \"archive-cog-outline\": 989010,\n  \"archive-edit\": 989011,\n  \"archive-edit-outline\": 989012,\n  \"archive-eye\": 989013,\n  \"archive-eye-outline\": 989014,\n  \"archive-lock\": 989015,\n  \"archive-lock-open\": 989016,\n  \"archive-lock-open-outline\": 989017,\n  \"archive-lock-outline\": 989018,\n  \"archive-marker\": 989019,\n  \"archive-marker-outline\": 989020,\n  \"archive-minus\": 989021,\n  \"archive-minus-outline\": 989022,\n  \"archive-music\": 989023,\n  \"archive-music-outline\": 989024,\n  \"archive-off\": 989025,\n  \"archive-off-outline\": 989026,\n  \"archive-outline\": 987662,\n  \"archive-plus\": 989027,\n  \"archive-plus-outline\": 989028,\n  \"archive-refresh\": 989029,\n  \"archive-refresh-outline\": 989030,\n  \"archive-remove\": 989031,\n  \"archive-remove-outline\": 989032,\n  \"archive-search\": 989033,\n  \"archive-search-outline\": 989034,\n  \"archive-settings\": 989035,\n  \"archive-settings-outline\": 989036,\n  \"archive-star\": 989037,\n  \"archive-star-outline\": 989038,\n  \"archive-sync\": 989039,\n  \"archive-sync-outline\": 989040,\n  \"arm-flex\": 987095,\n  \"arm-flex-outline\": 987094,\n  \"arrange-bring-forward\": 983101,\n  \"arrange-bring-to-front\": 983102,\n  \"arrange-send-backward\": 983103,\n  \"arrange-send-to-back\": 983104,\n  \"arrow-all\": 983105,\n  \"arrow-bottom-left\": 983106,\n  \"arrow-bottom-left-bold-box\": 989540,\n  \"arrow-bottom-left-bold-box-outline\": 989541,\n  \"arrow-bottom-left-bold-outline\": 985527,\n  \"arrow-bottom-left-thick\": 985528,\n  \"arrow-bottom-left-thin\": 989622,\n  \"arrow-bottom-left-thin-circle-outline\": 988566,\n  \"arrow-bottom-right\": 983107,\n  \"arrow-bottom-right-bold-box\": 989542,\n  \"arrow-bottom-right-bold-box-outline\": 989543,\n  \"arrow-bottom-right-bold-outline\": 985529,\n  \"arrow-bottom-right-thick\": 985530,\n  \"arrow-bottom-right-thin\": 989623,\n  \"arrow-bottom-right-thin-circle-outline\": 988565,\n  \"arrow-collapse\": 984597,\n  \"arrow-collapse-all\": 983108,\n  \"arrow-collapse-down\": 984978,\n  \"arrow-collapse-horizontal\": 985164,\n  \"arrow-collapse-left\": 984979,\n  \"arrow-collapse-right\": 984980,\n  \"arrow-collapse-up\": 984981,\n  \"arrow-collapse-vertical\": 985165,\n  \"arrow-decision\": 985531,\n  \"arrow-decision-auto\": 985532,\n  \"arrow-decision-auto-outline\": 985533,\n  \"arrow-decision-outline\": 985534,\n  \"arrow-down\": 983109,\n  \"arrow-down-bold\": 984878,\n  \"arrow-down-bold-box\": 984879,\n  \"arrow-down-bold-box-outline\": 984880,\n  \"arrow-down-bold-circle\": 983111,\n  \"arrow-down-bold-circle-outline\": 983112,\n  \"arrow-down-bold-hexagon-outline\": 983113,\n  \"arrow-down-bold-outline\": 985535,\n  \"arrow-down-box\": 984768,\n  \"arrow-down-circle\": 986331,\n  \"arrow-down-circle-outline\": 986332,\n  \"arrow-down-drop-circle\": 983114,\n  \"arrow-down-drop-circle-outline\": 983115,\n  \"arrow-down-left\": 989089,\n  \"arrow-down-left-bold\": 989090,\n  \"arrow-down-right\": 989091,\n  \"arrow-down-right-bold\": 989092,\n  \"arrow-down-thick\": 983110,\n  \"arrow-down-thin\": 989619,\n  \"arrow-down-thin-circle-outline\": 988569,\n  \"arrow-expand\": 984598,\n  \"arrow-expand-all\": 983116,\n  \"arrow-expand-down\": 984982,\n  \"arrow-expand-horizontal\": 985166,\n  \"arrow-expand-left\": 984983,\n  \"arrow-expand-right\": 984984,\n  \"arrow-expand-up\": 984985,\n  \"arrow-expand-vertical\": 985167,\n  \"arrow-horizontal-lock\": 987483,\n  \"arrow-left\": 983117,\n  \"arrow-left-bold\": 984881,\n  \"arrow-left-bold-box\": 984882,\n  \"arrow-left-bold-box-outline\": 984883,\n  \"arrow-left-bold-circle\": 983119,\n  \"arrow-left-bold-circle-outline\": 983120,\n  \"arrow-left-bold-hexagon-outline\": 983121,\n  \"arrow-left-bold-outline\": 985536,\n  \"arrow-left-bottom\": 989093,\n  \"arrow-left-bottom-bold\": 989094,\n  \"arrow-left-box\": 984769,\n  \"arrow-left-circle\": 986333,\n  \"arrow-left-circle-outline\": 986334,\n  \"arrow-left-drop-circle\": 983122,\n  \"arrow-left-drop-circle-outline\": 983123,\n  \"arrow-left-right\": 986739,\n  \"arrow-left-right-bold\": 986740,\n  \"arrow-left-right-bold-outline\": 985537,\n  \"arrow-left-thick\": 983118,\n  \"arrow-left-thin\": 989617,\n  \"arrow-left-thin-circle-outline\": 988570,\n  \"arrow-left-top\": 989095,\n  \"arrow-left-top-bold\": 989096,\n  \"arrow-oscillating\": 990353,\n  \"arrow-oscillating-off\": 990354,\n  \"arrow-projectile\": 989248,\n  \"arrow-projectile-multiple\": 989247,\n  \"arrow-right\": 983124,\n  \"arrow-right-bold\": 984884,\n  \"arrow-right-bold-box\": 984885,\n  \"arrow-right-bold-box-outline\": 984886,\n  \"arrow-right-bold-circle\": 983126,\n  \"arrow-right-bold-circle-outline\": 983127,\n  \"arrow-right-bold-hexagon-outline\": 983128,\n  \"arrow-right-bold-outline\": 985538,\n  \"arrow-right-bottom\": 989097,\n  \"arrow-right-bottom-bold\": 989098,\n  \"arrow-right-box\": 984770,\n  \"arrow-right-circle\": 986335,\n  \"arrow-right-circle-outline\": 986336,\n  \"arrow-right-drop-circle\": 983129,\n  \"arrow-right-drop-circle-outline\": 983130,\n  \"arrow-right-thick\": 983125,\n  \"arrow-right-thin\": 989616,\n  \"arrow-right-thin-circle-outline\": 988568,\n  \"arrow-right-top\": 989099,\n  \"arrow-right-top-bold\": 989100,\n  \"arrow-split-horizontal\": 985403,\n  \"arrow-split-vertical\": 985404,\n  \"arrow-top-left\": 983131,\n  \"arrow-top-left-bold-box\": 989544,\n  \"arrow-top-left-bold-box-outline\": 989545,\n  \"arrow-top-left-bold-outline\": 985539,\n  \"arrow-top-left-bottom-right\": 986741,\n  \"arrow-top-left-bottom-right-bold\": 986742,\n  \"arrow-top-left-thick\": 985540,\n  \"arrow-top-left-thin\": 989621,\n  \"arrow-top-left-thin-circle-outline\": 988563,\n  \"arrow-top-right\": 983132,\n  \"arrow-top-right-bold-box\": 989546,\n  \"arrow-top-right-bold-box-outline\": 989547,\n  \"arrow-top-right-bold-outline\": 985541,\n  \"arrow-top-right-bottom-left\": 986743,\n  \"arrow-top-right-bottom-left-bold\": 986744,\n  \"arrow-top-right-thick\": 985542,\n  \"arrow-top-right-thin\": 989620,\n  \"arrow-top-right-thin-circle-outline\": 988564,\n  \"arrow-u-down-left\": 989101,\n  \"arrow-u-down-left-bold\": 989102,\n  \"arrow-u-down-right\": 989103,\n  \"arrow-u-down-right-bold\": 989104,\n  \"arrow-u-left-bottom\": 989105,\n  \"arrow-u-left-bottom-bold\": 989106,\n  \"arrow-u-left-top\": 989107,\n  \"arrow-u-left-top-bold\": 989108,\n  \"arrow-u-right-bottom\": 989109,\n  \"arrow-u-right-bottom-bold\": 989110,\n  \"arrow-u-right-top\": 989111,\n  \"arrow-u-right-top-bold\": 989112,\n  \"arrow-u-up-left\": 989113,\n  \"arrow-u-up-left-bold\": 989114,\n  \"arrow-u-up-right\": 989115,\n  \"arrow-u-up-right-bold\": 989116,\n  \"arrow-up\": 983133,\n  \"arrow-up-bold\": 984887,\n  \"arrow-up-bold-box\": 984888,\n  \"arrow-up-bold-box-outline\": 984889,\n  \"arrow-up-bold-circle\": 983135,\n  \"arrow-up-bold-circle-outline\": 983136,\n  \"arrow-up-bold-hexagon-outline\": 983137,\n  \"arrow-up-bold-outline\": 985543,\n  \"arrow-up-box\": 984771,\n  \"arrow-up-circle\": 986337,\n  \"arrow-up-circle-outline\": 986338,\n  \"arrow-up-down\": 986745,\n  \"arrow-up-down-bold\": 986746,\n  \"arrow-up-down-bold-outline\": 985544,\n  \"arrow-up-drop-circle\": 983138,\n  \"arrow-up-drop-circle-outline\": 983139,\n  \"arrow-up-left\": 989117,\n  \"arrow-up-left-bold\": 989118,\n  \"arrow-up-right\": 989119,\n  \"arrow-up-right-bold\": 989120,\n  \"arrow-up-thick\": 983134,\n  \"arrow-up-thin\": 989618,\n  \"arrow-up-thin-circle-outline\": 988567,\n  \"arrow-vertical-lock\": 987484,\n  \"artboard\": 990106,\n  \"artstation\": 985947,\n  \"aspect-ratio\": 985636,\n  \"assistant\": 983140,\n  \"asterisk\": 984772,\n  \"asterisk-circle-outline\": 989735,\n  \"at\": 983141,\n  \"atlassian\": 985092,\n  \"atm\": 986439,\n  \"atom\": 984936,\n  \"atom-variant\": 986747,\n  \"attachment\": 983142,\n  \"attachment-check\": 989889,\n  \"attachment-lock\": 989636,\n  \"attachment-minus\": 989890,\n  \"attachment-off\": 989891,\n  \"attachment-plus\": 989892,\n  \"attachment-remove\": 989893,\n  \"atv\": 990064,\n  \"audio-input-rca\": 989291,\n  \"audio-input-stereo-minijack\": 989292,\n  \"audio-input-xlr\": 989293,\n  \"audio-video\": 985405,\n  \"audio-video-off\": 987574,\n  \"augmented-reality\": 985168,\n  \"aurora\": 990137,\n  \"auto-download\": 988030,\n  \"auto-fix\": 983144,\n  \"auto-mode\": 990240,\n  \"auto-upload\": 983145,\n  \"autorenew\": 983146,\n  \"autorenew-off\": 989671,\n  \"av-timer\": 983147,\n  \"awning\": 990087,\n  \"awning-outline\": 990088,\n  \"aws\": 986639,\n  \"axe\": 985288,\n  \"axe-battle\": 989250,\n  \"axis\": 986440,\n  \"axis-arrow\": 986441,\n  \"axis-arrow-info\": 988174,\n  \"axis-arrow-lock\": 986442,\n  \"axis-lock\": 986443,\n  \"axis-x-arrow\": 986444,\n  \"axis-x-arrow-lock\": 986445,\n  \"axis-x-rotate-clockwise\": 986446,\n  \"axis-x-rotate-counterclockwise\": 986447,\n  \"axis-x-y-arrow-lock\": 986448,\n  \"axis-y-arrow\": 986449,\n  \"axis-y-arrow-lock\": 986450,\n  \"axis-y-rotate-clockwise\": 986451,\n  \"axis-y-rotate-counterclockwise\": 986452,\n  \"axis-z-arrow\": 986453,\n  \"axis-z-arrow-lock\": 986454,\n  \"axis-z-rotate-clockwise\": 986455,\n  \"axis-z-rotate-counterclockwise\": 986456,\n  \"babel\": 985637,\n  \"baby\": 983148,\n  \"baby-bottle\": 986937,\n  \"baby-bottle-outline\": 986938,\n  \"baby-buggy\": 988128,\n  \"baby-buggy-off\": 989939,\n  \"baby-carriage\": 984719,\n  \"baby-carriage-off\": 987040,\n  \"baby-face\": 986748,\n  \"baby-face-outline\": 986749,\n  \"backburger\": 983149,\n  \"backspace\": 983150,\n  \"backspace-outline\": 985948,\n  \"backspace-reverse\": 986750,\n  \"backspace-reverse-outline\": 986751,\n  \"backup-restore\": 983151,\n  \"bacteria\": 986837,\n  \"bacteria-outline\": 986838,\n  \"badge-account\": 986535,\n  \"badge-account-alert\": 986536,\n  \"badge-account-alert-outline\": 986537,\n  \"badge-account-horizontal\": 986637,\n  \"badge-account-horizontal-outline\": 986638,\n  \"badge-account-outline\": 986538,\n  \"badminton\": 985169,\n  \"bag-carry-on\": 986939,\n  \"bag-carry-on-check\": 986469,\n  \"bag-carry-on-off\": 986940,\n  \"bag-checked\": 986941,\n  \"bag-personal\": 986640,\n  \"bag-personal-off\": 986641,\n  \"bag-personal-off-outline\": 986642,\n  \"bag-personal-outline\": 986643,\n  \"bag-personal-plus\": 990372,\n  \"bag-personal-plus-outline\": 990373,\n  \"bag-personal-tag\": 989964,\n  \"bag-personal-tag-outline\": 989965,\n  \"bag-suitcase\": 988555,\n  \"bag-suitcase-off\": 988557,\n  \"bag-suitcase-off-outline\": 988558,\n  \"bag-suitcase-outline\": 988556,\n  \"baguette\": 986942,\n  \"balcony\": 989207,\n  \"balloon\": 985638,\n  \"ballot\": 985545,\n  \"ballot-outline\": 985546,\n  \"ballot-recount\": 986169,\n  \"ballot-recount-outline\": 986170,\n  \"bandage\": 986543,\n  \"bank\": 983152,\n  \"bank-check\": 988757,\n  \"bank-circle\": 990211,\n  \"bank-circle-outline\": 990212,\n  \"bank-minus\": 986544,\n  \"bank-off\": 988758,\n  \"bank-off-outline\": 988759,\n  \"bank-outline\": 986752,\n  \"bank-plus\": 986545,\n  \"bank-remove\": 986546,\n  \"bank-transfer\": 985639,\n  \"bank-transfer-in\": 985640,\n  \"bank-transfer-out\": 985641,\n  \"barcode\": 983153,\n  \"barcode-off\": 987702,\n  \"barcode-scan\": 983154,\n  \"barley\": 983155,\n  \"barley-off\": 985949,\n  \"barn\": 985950,\n  \"barrel\": 983156,\n  \"barrel-outline\": 989736,\n  \"baseball\": 985170,\n  \"baseball-bat\": 985171,\n  \"baseball-diamond\": 988652,\n  \"baseball-diamond-outline\": 988653,\n  \"baseball-outline\": 990298,\n  \"bash\": 987523,\n  \"basket\": 983158,\n  \"basket-check\": 989413,\n  \"basket-check-outline\": 989414,\n  \"basket-fill\": 983159,\n  \"basket-minus\": 988451,\n  \"basket-minus-outline\": 988452,\n  \"basket-off\": 988453,\n  \"basket-off-outline\": 988454,\n  \"basket-outline\": 987521,\n  \"basket-plus\": 988455,\n  \"basket-plus-outline\": 988456,\n  \"basket-remove\": 988457,\n  \"basket-remove-outline\": 988458,\n  \"basket-unfill\": 983160,\n  \"basketball\": 985094,\n  \"basketball-hoop\": 986171,\n  \"basketball-hoop-outline\": 986172,\n  \"bat\": 985951,\n  \"bathtub\": 989208,\n  \"bathtub-outline\": 989209,\n  \"battery\": 983161,\n  \"battery-10\": 983162,\n  \"battery-10-bluetooth\": 985406,\n  \"battery-20\": 983163,\n  \"battery-20-bluetooth\": 985407,\n  \"battery-30\": 983164,\n  \"battery-30-bluetooth\": 985408,\n  \"battery-40\": 983165,\n  \"battery-40-bluetooth\": 985409,\n  \"battery-50\": 983166,\n  \"battery-50-bluetooth\": 985410,\n  \"battery-60\": 983167,\n  \"battery-60-bluetooth\": 985411,\n  \"battery-70\": 983168,\n  \"battery-70-bluetooth\": 985412,\n  \"battery-80\": 983169,\n  \"battery-80-bluetooth\": 985413,\n  \"battery-90\": 983170,\n  \"battery-90-bluetooth\": 985414,\n  \"battery-alert\": 983171,\n  \"battery-alert-bluetooth\": 985415,\n  \"battery-alert-variant\": 987340,\n  \"battery-alert-variant-outline\": 987341,\n  \"battery-arrow-down\": 989150,\n  \"battery-arrow-down-outline\": 989151,\n  \"battery-arrow-up\": 989152,\n  \"battery-arrow-up-outline\": 989153,\n  \"battery-bluetooth\": 985416,\n  \"battery-bluetooth-variant\": 985417,\n  \"battery-charging\": 983172,\n  \"battery-charging-10\": 985244,\n  \"battery-charging-100\": 983173,\n  \"battery-charging-20\": 983174,\n  \"battery-charging-30\": 983175,\n  \"battery-charging-40\": 983176,\n  \"battery-charging-50\": 985245,\n  \"battery-charging-60\": 983177,\n  \"battery-charging-70\": 985246,\n  \"battery-charging-80\": 983178,\n  \"battery-charging-90\": 983179,\n  \"battery-charging-high\": 987814,\n  \"battery-charging-low\": 987812,\n  \"battery-charging-medium\": 987813,\n  \"battery-charging-outline\": 985247,\n  \"battery-charging-wireless\": 985095,\n  \"battery-charging-wireless-10\": 985096,\n  \"battery-charging-wireless-20\": 985097,\n  \"battery-charging-wireless-30\": 985098,\n  \"battery-charging-wireless-40\": 985099,\n  \"battery-charging-wireless-50\": 985100,\n  \"battery-charging-wireless-60\": 985101,\n  \"battery-charging-wireless-70\": 985102,\n  \"battery-charging-wireless-80\": 985103,\n  \"battery-charging-wireless-90\": 985104,\n  \"battery-charging-wireless-alert\": 985105,\n  \"battery-charging-wireless-outline\": 985106,\n  \"battery-check\": 989154,\n  \"battery-check-outline\": 989155,\n  \"battery-clock\": 989669,\n  \"battery-clock-outline\": 989670,\n  \"battery-heart\": 987663,\n  \"battery-heart-outline\": 987664,\n  \"battery-heart-variant\": 987665,\n  \"battery-high\": 987811,\n  \"battery-lock\": 989084,\n  \"battery-lock-open\": 989085,\n  \"battery-low\": 987809,\n  \"battery-medium\": 987810,\n  \"battery-minus\": 989156,\n  \"battery-minus-outline\": 989157,\n  \"battery-minus-variant\": 983180,\n  \"battery-negative\": 983181,\n  \"battery-off\": 987741,\n  \"battery-off-outline\": 987742,\n  \"battery-outline\": 983182,\n  \"battery-plus\": 989158,\n  \"battery-plus-outline\": 989159,\n  \"battery-plus-variant\": 983183,\n  \"battery-positive\": 983184,\n  \"battery-remove\": 989160,\n  \"battery-remove-outline\": 989161,\n  \"battery-sync\": 989236,\n  \"battery-sync-outline\": 989237,\n  \"battery-unknown\": 983185,\n  \"battery-unknown-bluetooth\": 985418,\n  \"beach\": 983186,\n  \"beaker\": 986346,\n  \"beaker-alert\": 987689,\n  \"beaker-alert-outline\": 987690,\n  \"beaker-check\": 987691,\n  \"beaker-check-outline\": 987692,\n  \"beaker-minus\": 987693,\n  \"beaker-minus-outline\": 987694,\n  \"beaker-outline\": 984720,\n  \"beaker-plus\": 987695,\n  \"beaker-plus-outline\": 987696,\n  \"beaker-question\": 987697,\n  \"beaker-question-outline\": 987698,\n  \"beaker-remove\": 987699,\n  \"beaker-remove-outline\": 987700,\n  \"bed\": 983779,\n  \"bed-clock\": 990100,\n  \"bed-double\": 987092,\n  \"bed-double-outline\": 987091,\n  \"bed-empty\": 985248,\n  \"bed-king\": 987090,\n  \"bed-king-outline\": 987089,\n  \"bed-outline\": 983193,\n  \"bed-queen\": 987088,\n  \"bed-queen-outline\": 987099,\n  \"bed-single\": 987245,\n  \"bed-single-outline\": 987246,\n  \"bee\": 987041,\n  \"bee-flower\": 987042,\n  \"beehive-off-outline\": 988141,\n  \"beehive-outline\": 987342,\n  \"beekeeper\": 988386,\n  \"beer\": 983192,\n  \"beer-outline\": 987916,\n  \"bell\": 983194,\n  \"bell-alert\": 986457,\n  \"bell-alert-outline\": 986753,\n  \"bell-badge\": 987499,\n  \"bell-badge-outline\": 983416,\n  \"bell-cancel\": 988135,\n  \"bell-cancel-outline\": 988136,\n  \"bell-check\": 987621,\n  \"bell-check-outline\": 987622,\n  \"bell-circle\": 986458,\n  \"bell-circle-outline\": 986459,\n  \"bell-cog\": 989737,\n  \"bell-cog-outline\": 989738,\n  \"bell-minus\": 988137,\n  \"bell-minus-outline\": 988138,\n  \"bell-off\": 983195,\n  \"bell-off-outline\": 985745,\n  \"bell-outline\": 983196,\n  \"bell-plus\": 983197,\n  \"bell-plus-outline\": 985746,\n  \"bell-remove\": 988139,\n  \"bell-remove-outline\": 988140,\n  \"bell-ring\": 983198,\n  \"bell-ring-outline\": 983199,\n  \"bell-sleep\": 983200,\n  \"bell-sleep-outline\": 985747,\n  \"bench\": 990241,\n  \"bench-back\": 990242,\n  \"beta\": 983201,\n  \"betamax\": 985547,\n  \"biathlon\": 986644,\n  \"bicycle\": 987292,\n  \"bicycle-basket\": 987701,\n  \"bicycle-cargo\": 989340,\n  \"bicycle-electric\": 988596,\n  \"bicycle-penny-farthing\": 988649,\n  \"bike\": 983203,\n  \"bike-fast\": 987423,\n  \"bike-pedal\": 990243,\n  \"bike-pedal-clipless\": 990244,\n  \"bike-pedal-mountain\": 990245,\n  \"billboard\": 987152,\n  \"billiards\": 985953,\n  \"billiards-rack\": 985954,\n  \"binoculars\": 983205,\n  \"bio\": 983206,\n  \"biohazard\": 983207,\n  \"bird\": 988614,\n  \"bitbucket\": 983208,\n  \"bitcoin\": 985107,\n  \"black-mesa\": 983209,\n  \"blender\": 986347,\n  \"blender-outline\": 989210,\n  \"blender-software\": 983211,\n  \"blinds\": 983212,\n  \"blinds-horizontal\": 989739,\n  \"blinds-horizontal-closed\": 989740,\n  \"blinds-open\": 987153,\n  \"blinds-vertical\": 989741,\n  \"blinds-vertical-closed\": 989742,\n  \"block-helper\": 983213,\n  \"blood-bag\": 986348,\n  \"bluetooth\": 983215,\n  \"bluetooth-audio\": 983216,\n  \"bluetooth-connect\": 983217,\n  \"bluetooth-off\": 983218,\n  \"bluetooth-settings\": 983219,\n  \"bluetooth-transfer\": 983220,\n  \"blur\": 983221,\n  \"blur-linear\": 983222,\n  \"blur-off\": 983223,\n  \"blur-radial\": 983224,\n  \"bolt\": 986547,\n  \"bomb\": 984721,\n  \"bomb-off\": 984773,\n  \"bone\": 983225,\n  \"bone-off\": 989664,\n  \"book\": 983226,\n  \"book-account\": 988077,\n  \"book-account-outline\": 988078,\n  \"book-alert\": 988796,\n  \"book-alert-outline\": 988797,\n  \"book-alphabet\": 984605,\n  \"book-arrow-down\": 988798,\n  \"book-arrow-down-outline\": 988799,\n  \"book-arrow-left\": 988800,\n  \"book-arrow-left-outline\": 988801,\n  \"book-arrow-right\": 988802,\n  \"book-arrow-right-outline\": 988803,\n  \"book-arrow-up\": 988804,\n  \"book-arrow-up-outline\": 988805,\n  \"book-cancel\": 988806,\n  \"book-cancel-outline\": 988807,\n  \"book-check\": 988403,\n  \"book-check-outline\": 988404,\n  \"book-clock\": 988808,\n  \"book-clock-outline\": 988809,\n  \"book-cog\": 988810,\n  \"book-cog-outline\": 988811,\n  \"book-cross\": 983202,\n  \"book-edit\": 988812,\n  \"book-edit-outline\": 988813,\n  \"book-education\": 988873,\n  \"book-education-outline\": 988874,\n  \"book-heart\": 989725,\n  \"book-heart-outline\": 989726,\n  \"book-information-variant\": 987247,\n  \"book-lock\": 984986,\n  \"book-lock-open\": 984987,\n  \"book-lock-open-outline\": 988814,\n  \"book-lock-outline\": 988815,\n  \"book-marker\": 988816,\n  \"book-marker-outline\": 988817,\n  \"book-minus\": 984537,\n  \"book-minus-multiple\": 985748,\n  \"book-minus-multiple-outline\": 985355,\n  \"book-minus-outline\": 988818,\n  \"book-multiple\": 983227,\n  \"book-multiple-outline\": 984118,\n  \"book-music\": 983143,\n  \"book-music-outline\": 988819,\n  \"book-off\": 988820,\n  \"book-off-outline\": 988821,\n  \"book-open\": 983229,\n  \"book-open-blank-variant\": 983230,\n  \"book-open-blank-variant-outline\": 990411,\n  \"book-open-outline\": 985955,\n  \"book-open-page-variant\": 984538,\n  \"book-open-page-variant-outline\": 988630,\n  \"book-open-variant\": 988407,\n  \"book-open-variant-outline\": 990412,\n  \"book-outline\": 985956,\n  \"book-play\": 986754,\n  \"book-play-outline\": 986755,\n  \"book-plus\": 984539,\n  \"book-plus-multiple\": 985749,\n  \"book-plus-multiple-outline\": 985822,\n  \"book-plus-outline\": 988822,\n  \"book-refresh\": 988823,\n  \"book-refresh-outline\": 988824,\n  \"book-remove\": 985751,\n  \"book-remove-multiple\": 985750,\n  \"book-remove-multiple-outline\": 984266,\n  \"book-remove-outline\": 988825,\n  \"book-search\": 986756,\n  \"book-search-outline\": 986757,\n  \"book-settings\": 988826,\n  \"book-settings-outline\": 988827,\n  \"book-sync\": 988828,\n  \"book-sync-outline\": 988872,\n  \"book-variant\": 983231,\n  \"bookmark\": 983232,\n  \"bookmark-box\": 990069,\n  \"bookmark-box-multiple\": 989548,\n  \"bookmark-box-multiple-outline\": 989549,\n  \"bookmark-box-outline\": 990070,\n  \"bookmark-check\": 983233,\n  \"bookmark-check-outline\": 988027,\n  \"bookmark-minus\": 985548,\n  \"bookmark-minus-outline\": 985549,\n  \"bookmark-multiple\": 986645,\n  \"bookmark-multiple-outline\": 986646,\n  \"bookmark-music\": 983234,\n  \"bookmark-music-outline\": 988025,\n  \"bookmark-off\": 985550,\n  \"bookmark-off-outline\": 985551,\n  \"bookmark-outline\": 983235,\n  \"bookmark-plus\": 983237,\n  \"bookmark-plus-outline\": 983236,\n  \"bookmark-remove\": 983238,\n  \"bookmark-remove-outline\": 988026,\n  \"bookshelf\": 987743,\n  \"boom-gate\": 986758,\n  \"boom-gate-alert\": 986759,\n  \"boom-gate-alert-outline\": 986760,\n  \"boom-gate-arrow-down\": 986761,\n  \"boom-gate-arrow-down-outline\": 986762,\n  \"boom-gate-arrow-up\": 986764,\n  \"boom-gate-arrow-up-outline\": 986765,\n  \"boom-gate-outline\": 986763,\n  \"boom-gate-up\": 989177,\n  \"boom-gate-up-outline\": 989178,\n  \"boombox\": 984540,\n  \"boomerang\": 987343,\n  \"bootstrap\": 984774,\n  \"border-all\": 983239,\n  \"border-all-variant\": 985249,\n  \"border-bottom\": 983240,\n  \"border-bottom-variant\": 985250,\n  \"border-color\": 983241,\n  \"border-horizontal\": 983242,\n  \"border-inside\": 983243,\n  \"border-left\": 983244,\n  \"border-left-variant\": 985251,\n  \"border-none\": 983245,\n  \"border-none-variant\": 985252,\n  \"border-outside\": 983246,\n  \"border-radius\": 989940,\n  \"border-right\": 983247,\n  \"border-right-variant\": 985253,\n  \"border-style\": 983248,\n  \"border-top\": 983249,\n  \"border-top-variant\": 985254,\n  \"border-vertical\": 983250,\n  \"bottle-soda\": 987248,\n  \"bottle-soda-classic\": 987249,\n  \"bottle-soda-classic-outline\": 988003,\n  \"bottle-soda-outline\": 987250,\n  \"bottle-tonic\": 987438,\n  \"bottle-tonic-outline\": 987439,\n  \"bottle-tonic-plus\": 987440,\n  \"bottle-tonic-plus-outline\": 987441,\n  \"bottle-tonic-skull\": 987442,\n  \"bottle-tonic-skull-outline\": 987443,\n  \"bottle-wine\": 985172,\n  \"bottle-wine-outline\": 987920,\n  \"bow-arrow\": 989249,\n  \"bow-tie\": 984696,\n  \"bowl\": 983694,\n  \"bowl-mix\": 984599,\n  \"bowl-mix-outline\": 983780,\n  \"bowl-outline\": 983721,\n  \"bowling\": 983251,\n  \"box\": 983252,\n  \"box-cutter\": 983253,\n  \"box-cutter-off\": 985930,\n  \"box-shadow\": 984631,\n  \"boxing-glove\": 985957,\n  \"braille\": 985552,\n  \"brain\": 985553,\n  \"bread-slice\": 986350,\n  \"bread-slice-outline\": 986351,\n  \"bridge\": 984600,\n  \"briefcase\": 983254,\n  \"briefcase-account\": 986352,\n  \"briefcase-account-outline\": 986353,\n  \"briefcase-arrow-left-right\": 989837,\n  \"briefcase-arrow-left-right-outline\": 989838,\n  \"briefcase-arrow-up-down\": 989839,\n  \"briefcase-arrow-up-down-outline\": 989840,\n  \"briefcase-check\": 983255,\n  \"briefcase-check-outline\": 987934,\n  \"briefcase-clock\": 987344,\n  \"briefcase-clock-outline\": 987345,\n  \"briefcase-download\": 983256,\n  \"briefcase-download-outline\": 986173,\n  \"briefcase-edit\": 985752,\n  \"briefcase-edit-outline\": 986174,\n  \"briefcase-eye\": 989145,\n  \"briefcase-eye-outline\": 989146,\n  \"briefcase-minus\": 985642,\n  \"briefcase-minus-outline\": 986175,\n  \"briefcase-off\": 988760,\n  \"briefcase-off-outline\": 988761,\n  \"briefcase-outline\": 985108,\n  \"briefcase-plus\": 985643,\n  \"briefcase-plus-outline\": 986176,\n  \"briefcase-remove\": 985644,\n  \"briefcase-remove-outline\": 986177,\n  \"briefcase-search\": 985645,\n  \"briefcase-search-outline\": 986178,\n  \"briefcase-upload\": 983257,\n  \"briefcase-upload-outline\": 986179,\n  \"briefcase-variant\": 988308,\n  \"briefcase-variant-off\": 988762,\n  \"briefcase-variant-off-outline\": 988763,\n  \"briefcase-variant-outline\": 988309,\n  \"brightness-1\": 983258,\n  \"brightness-2\": 983259,\n  \"brightness-3\": 983260,\n  \"brightness-4\": 983261,\n  \"brightness-5\": 983262,\n  \"brightness-6\": 983263,\n  \"brightness-7\": 983264,\n  \"brightness-auto\": 983265,\n  \"brightness-percent\": 986354,\n  \"broadcast\": 988960,\n  \"broadcast-off\": 988961,\n  \"broom\": 983266,\n  \"brush\": 983267,\n  \"brush-off\": 989041,\n  \"brush-outline\": 989709,\n  \"brush-variant\": 989203,\n  \"bucket\": 988181,\n  \"bucket-outline\": 988182,\n  \"buffet\": 984440,\n  \"bug\": 983268,\n  \"bug-check\": 985646,\n  \"bug-check-outline\": 985647,\n  \"bug-outline\": 985648,\n  \"bug-pause\": 989941,\n  \"bug-pause-outline\": 989942,\n  \"bug-play\": 989943,\n  \"bug-play-outline\": 989944,\n  \"bug-stop\": 989945,\n  \"bug-stop-outline\": 989946,\n  \"bugle\": 986548,\n  \"bulkhead-light\": 989743,\n  \"bulldozer\": 985890,\n  \"bullet\": 986355,\n  \"bulletin-board\": 983269,\n  \"bullhorn\": 983270,\n  \"bullhorn-outline\": 985891,\n  \"bullhorn-variant\": 989550,\n  \"bullhorn-variant-outline\": 989551,\n  \"bullseye\": 984541,\n  \"bullseye-arrow\": 985289,\n  \"bulma\": 987879,\n  \"bunk-bed\": 987906,\n  \"bunk-bed-outline\": 983191,\n  \"bus\": 983271,\n  \"bus-alert\": 985753,\n  \"bus-articulated-end\": 984988,\n  \"bus-articulated-front\": 984989,\n  \"bus-clock\": 985290,\n  \"bus-double-decker\": 984990,\n  \"bus-electric\": 989469,\n  \"bus-marker\": 987666,\n  \"bus-multiple\": 986943,\n  \"bus-school\": 984991,\n  \"bus-side\": 984992,\n  \"bus-sign\": 990401,\n  \"bus-stop\": 987154,\n  \"bus-stop-covered\": 987155,\n  \"bus-stop-uncovered\": 987156,\n  \"bus-wrench\": 990402,\n  \"butterfly\": 988553,\n  \"butterfly-outline\": 988554,\n  \"button-cursor\": 990031,\n  \"button-pointer\": 990032,\n  \"cabin-a-frame\": 989324,\n  \"cable-data\": 988052,\n  \"cached\": 983272,\n  \"cactus\": 986549,\n  \"cake\": 983273,\n  \"cake-layered\": 983274,\n  \"cake-variant\": 983275,\n  \"cake-variant-outline\": 989168,\n  \"calculator\": 983276,\n  \"calculator-variant\": 985754,\n  \"calculator-variant-outline\": 988582,\n  \"calendar\": 983277,\n  \"calendar-account\": 986839,\n  \"calendar-account-outline\": 986840,\n  \"calendar-alert\": 985649,\n  \"calendar-alert-outline\": 990050,\n  \"calendar-arrow-left\": 987444,\n  \"calendar-arrow-right\": 987445,\n  \"calendar-badge\": 990109,\n  \"calendar-badge-outline\": 990110,\n  \"calendar-blank\": 983278,\n  \"calendar-blank-multiple\": 987251,\n  \"calendar-blank-outline\": 985958,\n  \"calendar-check\": 983279,\n  \"calendar-check-outline\": 986180,\n  \"calendar-clock\": 983280,\n  \"calendar-clock-outline\": 988897,\n  \"calendar-collapse-horizontal\": 989341,\n  \"calendar-collapse-horizontal-outline\": 990051,\n  \"calendar-cursor\": 988539,\n  \"calendar-cursor-outline\": 990052,\n  \"calendar-edit\": 985255,\n  \"calendar-edit-outline\": 990053,\n  \"calendar-end\": 988780,\n  \"calendar-end-outline\": 990054,\n  \"calendar-expand-horizontal\": 989342,\n  \"calendar-expand-horizontal-outline\": 990055,\n  \"calendar-export\": 985892,\n  \"calendar-export-outline\": 990056,\n  \"calendar-filter\": 989746,\n  \"calendar-filter-outline\": 989747,\n  \"calendar-heart\": 985554,\n  \"calendar-heart-outline\": 990057,\n  \"calendar-import\": 985893,\n  \"calendar-import-outline\": 990058,\n  \"calendar-lock\": 988737,\n  \"calendar-lock-open\": 990043,\n  \"calendar-lock-open-outline\": 990044,\n  \"calendar-lock-outline\": 988738,\n  \"calendar-minus\": 986460,\n  \"calendar-minus-outline\": 990059,\n  \"calendar-month\": 986647,\n  \"calendar-month-outline\": 986648,\n  \"calendar-multiple\": 983281,\n  \"calendar-multiple-check\": 983282,\n  \"calendar-multiselect\": 985650,\n  \"calendar-multiselect-outline\": 990037,\n  \"calendar-outline\": 985959,\n  \"calendar-plus\": 983283,\n  \"calendar-plus-outline\": 990060,\n  \"calendar-question\": 984722,\n  \"calendar-question-outline\": 990061,\n  \"calendar-range\": 984697,\n  \"calendar-range-outline\": 985960,\n  \"calendar-refresh\": 983521,\n  \"calendar-refresh-outline\": 983555,\n  \"calendar-remove\": 983284,\n  \"calendar-remove-outline\": 986181,\n  \"calendar-search\": 985420,\n  \"calendar-search-outline\": 990062,\n  \"calendar-star\": 985555,\n  \"calendar-star-four-points\": 990239,\n  \"calendar-star-outline\": 990035,\n  \"calendar-start\": 988781,\n  \"calendar-start-outline\": 990063,\n  \"calendar-sync\": 986766,\n  \"calendar-sync-outline\": 986767,\n  \"calendar-text\": 983285,\n  \"calendar-text-outline\": 986182,\n  \"calendar-today\": 983286,\n  \"calendar-today-outline\": 989744,\n  \"calendar-week\": 985651,\n  \"calendar-week-begin\": 985652,\n  \"calendar-week-begin-outline\": 989745,\n  \"calendar-week-outline\": 989748,\n  \"calendar-weekend\": 986841,\n  \"calendar-weekend-outline\": 986842,\n  \"call-made\": 983287,\n  \"call-merge\": 983288,\n  \"call-missed\": 983289,\n  \"call-received\": 983290,\n  \"call-split\": 983291,\n  \"camcorder\": 983292,\n  \"camcorder-off\": 983295,\n  \"camera\": 983296,\n  \"camera-account\": 985291,\n  \"camera-burst\": 984723,\n  \"camera-control\": 985961,\n  \"camera-document\": 989297,\n  \"camera-document-off\": 989298,\n  \"camera-enhance\": 983297,\n  \"camera-enhance-outline\": 985962,\n  \"camera-flip\": 988633,\n  \"camera-flip-outline\": 988634,\n  \"camera-front\": 983298,\n  \"camera-front-variant\": 983299,\n  \"camera-gopro\": 984993,\n  \"camera-image\": 985292,\n  \"camera-iris\": 983300,\n  \"camera-lock\": 989716,\n  \"camera-lock-open\": 990221,\n  \"camera-lock-open-outline\": 990222,\n  \"camera-lock-outline\": 989717,\n  \"camera-marker\": 989607,\n  \"camera-marker-outline\": 989608,\n  \"camera-metering-center\": 984994,\n  \"camera-metering-matrix\": 984995,\n  \"camera-metering-partial\": 984996,\n  \"camera-metering-spot\": 984997,\n  \"camera-off\": 984543,\n  \"camera-off-outline\": 989631,\n  \"camera-outline\": 986461,\n  \"camera-party-mode\": 983301,\n  \"camera-plus\": 986843,\n  \"camera-plus-outline\": 986844,\n  \"camera-rear\": 983302,\n  \"camera-rear-variant\": 983303,\n  \"camera-retake\": 986649,\n  \"camera-retake-outline\": 986650,\n  \"camera-switch\": 983304,\n  \"camera-switch-outline\": 985162,\n  \"camera-timer\": 983305,\n  \"camera-wireless\": 986550,\n  \"camera-wireless-outline\": 986551,\n  \"campfire\": 986845,\n  \"cancel\": 984890,\n  \"candelabra\": 989138,\n  \"candelabra-fire\": 989139,\n  \"candle\": 984546,\n  \"candy\": 989552,\n  \"candy-off\": 989553,\n  \"candy-off-outline\": 989554,\n  \"candy-outline\": 989555,\n  \"candycane\": 983306,\n  \"cannabis\": 984998,\n  \"cannabis-off\": 988782,\n  \"caps-lock\": 985755,\n  \"car\": 983307,\n  \"car-2-plus\": 987157,\n  \"car-3-plus\": 987158,\n  \"car-arrow-left\": 988082,\n  \"car-arrow-right\": 988083,\n  \"car-back\": 986651,\n  \"car-battery\": 983308,\n  \"car-brake-abs\": 986183,\n  \"car-brake-alert\": 986184,\n  \"car-brake-fluid-level\": 989449,\n  \"car-brake-hold\": 986462,\n  \"car-brake-low-pressure\": 989450,\n  \"car-brake-parking\": 986463,\n  \"car-brake-retarder\": 987159,\n  \"car-brake-temperature\": 989451,\n  \"car-brake-worn-linings\": 989452,\n  \"car-child-seat\": 987043,\n  \"car-clock\": 989556,\n  \"car-clutch\": 987160,\n  \"car-cog\": 988108,\n  \"car-connected\": 983309,\n  \"car-convertible\": 984999,\n  \"car-coolant-level\": 987161,\n  \"car-cruise-control\": 986464,\n  \"car-defrost-front\": 986465,\n  \"car-defrost-rear\": 986466,\n  \"car-door\": 985963,\n  \"car-door-lock\": 987293,\n  \"car-door-lock-open\": 990337,\n  \"car-electric\": 985964,\n  \"car-electric-outline\": 988597,\n  \"car-emergency\": 988687,\n  \"car-esp\": 986185,\n  \"car-estate\": 985000,\n  \"car-hatchback\": 985001,\n  \"car-info\": 987582,\n  \"car-key\": 985965,\n  \"car-lifted-pickup\": 988461,\n  \"car-light-alert\": 989453,\n  \"car-light-dimmed\": 986186,\n  \"car-light-fog\": 986187,\n  \"car-light-high\": 986188,\n  \"car-limousine\": 985293,\n  \"car-multiple\": 985966,\n  \"car-off\": 986652,\n  \"car-outline\": 988397,\n  \"car-parking-lights\": 986467,\n  \"car-pickup\": 985002,\n  \"car-search\": 990093,\n  \"car-search-outline\": 990094,\n  \"car-seat\": 987044,\n  \"car-seat-cooler\": 987045,\n  \"car-seat-heater\": 987046,\n  \"car-select\": 989305,\n  \"car-settings\": 988109,\n  \"car-shift-pattern\": 986944,\n  \"car-side\": 985003,\n  \"car-speed-limiter\": 989454,\n  \"car-sports\": 985004,\n  \"car-tire-alert\": 986189,\n  \"car-traction-control\": 986468,\n  \"car-turbocharger\": 987162,\n  \"car-wash\": 983310,\n  \"car-windshield\": 987163,\n  \"car-windshield-outline\": 987164,\n  \"car-wireless\": 989304,\n  \"car-wrench\": 989204,\n  \"carabiner\": 988352,\n  \"caravan\": 985005,\n  \"card\": 985967,\n  \"card-account-details\": 984530,\n  \"card-account-details-outline\": 986539,\n  \"card-account-details-star\": 983715,\n  \"card-account-details-star-outline\": 984795,\n  \"card-account-mail\": 983438,\n  \"card-account-mail-outline\": 986776,\n  \"card-account-phone\": 986777,\n  \"card-account-phone-outline\": 986778,\n  \"card-bulleted\": 985968,\n  \"card-bulleted-off\": 985969,\n  \"card-bulleted-off-outline\": 985970,\n  \"card-bulleted-outline\": 985971,\n  \"card-bulleted-settings\": 985972,\n  \"card-bulleted-settings-outline\": 985973,\n  \"card-minus\": 988672,\n  \"card-minus-outline\": 988673,\n  \"card-multiple\": 989169,\n  \"card-multiple-outline\": 989170,\n  \"card-off\": 988674,\n  \"card-off-outline\": 988675,\n  \"card-outline\": 985974,\n  \"card-plus\": 987647,\n  \"card-plus-outline\": 987648,\n  \"card-remove\": 988676,\n  \"card-remove-outline\": 988677,\n  \"card-search\": 987252,\n  \"card-search-outline\": 987253,\n  \"card-text\": 985975,\n  \"card-text-outline\": 985976,\n  \"cards\": 984632,\n  \"cards-club\": 985294,\n  \"cards-club-outline\": 989343,\n  \"cards-diamond\": 985295,\n  \"cards-diamond-outline\": 987165,\n  \"cards-heart\": 985296,\n  \"cards-heart-outline\": 989344,\n  \"cards-outline\": 984633,\n  \"cards-playing\": 989345,\n  \"cards-playing-club\": 989346,\n  \"cards-playing-club-multiple\": 989347,\n  \"cards-playing-club-multiple-outline\": 989348,\n  \"cards-playing-club-outline\": 989349,\n  \"cards-playing-diamond\": 989350,\n  \"cards-playing-diamond-multiple\": 989351,\n  \"cards-playing-diamond-multiple-outline\": 989352,\n  \"cards-playing-diamond-outline\": 989353,\n  \"cards-playing-heart\": 989354,\n  \"cards-playing-heart-multiple\": 989355,\n  \"cards-playing-heart-multiple-outline\": 989356,\n  \"cards-playing-heart-outline\": 989357,\n  \"cards-playing-outline\": 984634,\n  \"cards-playing-spade\": 989358,\n  \"cards-playing-spade-multiple\": 989359,\n  \"cards-playing-spade-multiple-outline\": 989360,\n  \"cards-playing-spade-outline\": 989361,\n  \"cards-spade\": 985297,\n  \"cards-spade-outline\": 989362,\n  \"cards-variant\": 984775,\n  \"carrot\": 983311,\n  \"cart\": 983312,\n  \"cart-arrow-down\": 986470,\n  \"cart-arrow-right\": 986190,\n  \"cart-arrow-up\": 986471,\n  \"cart-check\": 988650,\n  \"cart-heart\": 989408,\n  \"cart-minus\": 986472,\n  \"cart-off\": 984683,\n  \"cart-outline\": 983313,\n  \"cart-percent\": 990126,\n  \"cart-plus\": 983314,\n  \"cart-remove\": 986473,\n  \"cart-variant\": 988651,\n  \"case-sensitive-alt\": 983315,\n  \"cash\": 983316,\n  \"cash-100\": 983317,\n  \"cash-check\": 988398,\n  \"cash-clock\": 989841,\n  \"cash-edit\": 990379,\n  \"cash-fast\": 989276,\n  \"cash-lock\": 988394,\n  \"cash-lock-open\": 988395,\n  \"cash-marker\": 986552,\n  \"cash-minus\": 987744,\n  \"cash-multiple\": 983318,\n  \"cash-off\": 990329,\n  \"cash-plus\": 987745,\n  \"cash-refund\": 985756,\n  \"cash-register\": 986356,\n  \"cash-remove\": 987746,\n  \"cash-sync\": 989842,\n  \"cassette\": 985556,\n  \"cast\": 983320,\n  \"cast-audio\": 987166,\n  \"cast-audio-variant\": 989001,\n  \"cast-connected\": 983321,\n  \"cast-education\": 986653,\n  \"cast-off\": 984970,\n  \"cast-variant\": 983071,\n  \"castle\": 983322,\n  \"cat\": 983323,\n  \"cctv\": 985006,\n  \"cctv-off\": 989279,\n  \"ceiling-fan\": 989079,\n  \"ceiling-fan-light\": 989080,\n  \"ceiling-light\": 984937,\n  \"ceiling-light-multiple\": 989405,\n  \"ceiling-light-multiple-outline\": 989406,\n  \"ceiling-light-outline\": 989127,\n  \"cellphone\": 983324,\n  \"cellphone-arrow-down\": 985557,\n  \"cellphone-arrow-down-variant\": 989637,\n  \"cellphone-basic\": 983326,\n  \"cellphone-charging\": 988055,\n  \"cellphone-check\": 989181,\n  \"cellphone-cog\": 985425,\n  \"cellphone-dock\": 983327,\n  \"cellphone-information\": 986945,\n  \"cellphone-key\": 985422,\n  \"cellphone-link\": 983329,\n  \"cellphone-link-off\": 983330,\n  \"cellphone-lock\": 985423,\n  \"cellphone-marker\": 989242,\n  \"cellphone-message\": 985299,\n  \"cellphone-message-off\": 987346,\n  \"cellphone-nfc\": 986768,\n  \"cellphone-nfc-off\": 987864,\n  \"cellphone-off\": 985424,\n  \"cellphone-play\": 987167,\n  \"cellphone-remove\": 985421,\n  \"cellphone-screenshot\": 985653,\n  \"cellphone-settings\": 983331,\n  \"cellphone-sound\": 985426,\n  \"cellphone-text\": 985298,\n  \"cellphone-wireless\": 985109,\n  \"centos\": 987418,\n  \"certificate\": 983332,\n  \"certificate-outline\": 987528,\n  \"chair-rolling\": 986952,\n  \"chair-school\": 983333,\n  \"chandelier\": 989075,\n  \"charity\": 986191,\n  \"charity-search\": 990338,\n  \"chart-arc\": 983334,\n  \"chart-areaspline\": 983335,\n  \"chart-areaspline-variant\": 986769,\n  \"chart-bar\": 983336,\n  \"chart-bar-stacked\": 984938,\n  \"chart-bell-curve\": 986192,\n  \"chart-bell-curve-cumulative\": 987047,\n  \"chart-box\": 988493,\n  \"chart-box-multiple\": 990413,\n  \"chart-box-multiple-outline\": 990414,\n  \"chart-box-outline\": 988494,\n  \"chart-box-plus-outline\": 988495,\n  \"chart-bubble\": 984547,\n  \"chart-donut\": 985007,\n  \"chart-donut-variant\": 985008,\n  \"chart-gantt\": 984684,\n  \"chart-histogram\": 983337,\n  \"chart-line\": 983338,\n  \"chart-line-stacked\": 984939,\n  \"chart-line-variant\": 985009,\n  \"chart-multiline\": 985300,\n  \"chart-multiple\": 987667,\n  \"chart-pie\": 983339,\n  \"chart-pie-outline\": 990175,\n  \"chart-ppf\": 988032,\n  \"chart-sankey\": 987615,\n  \"chart-sankey-variant\": 987616,\n  \"chart-scatter-plot\": 986770,\n  \"chart-scatter-plot-hexbin\": 984685,\n  \"chart-timeline\": 984686,\n  \"chart-timeline-variant\": 986771,\n  \"chart-timeline-variant-shimmer\": 988598,\n  \"chart-tree\": 986772,\n  \"chart-waterfall\": 989464,\n  \"chat\": 985977,\n  \"chat-alert\": 985978,\n  \"chat-alert-outline\": 987849,\n  \"chat-minus\": 988176,\n  \"chat-minus-outline\": 988179,\n  \"chat-outline\": 986846,\n  \"chat-plus\": 988175,\n  \"chat-plus-outline\": 988178,\n  \"chat-processing\": 985979,\n  \"chat-processing-outline\": 987850,\n  \"chat-question\": 988984,\n  \"chat-question-outline\": 988985,\n  \"chat-remove\": 988177,\n  \"chat-remove-outline\": 988180,\n  \"chat-sleep\": 987857,\n  \"chat-sleep-outline\": 987858,\n  \"check\": 983340,\n  \"check-all\": 983341,\n  \"check-bold\": 986654,\n  \"check-circle\": 984544,\n  \"check-circle-outline\": 984545,\n  \"check-decagram\": 984977,\n  \"check-decagram-outline\": 988992,\n  \"check-network\": 986195,\n  \"check-network-outline\": 986196,\n  \"check-outline\": 985173,\n  \"check-underline\": 986655,\n  \"check-underline-circle\": 986656,\n  \"check-underline-circle-outline\": 986657,\n  \"checkbook\": 985757,\n  \"checkbook-arrow-left\": 990237,\n  \"checkbook-arrow-right\": 990238,\n  \"checkbox-blank\": 983342,\n  \"checkbox-blank-badge\": 987510,\n  \"checkbox-blank-badge-outline\": 983319,\n  \"checkbox-blank-circle\": 983343,\n  \"checkbox-blank-circle-outline\": 983344,\n  \"checkbox-blank-off\": 987884,\n  \"checkbox-blank-off-outline\": 987885,\n  \"checkbox-blank-outline\": 983345,\n  \"checkbox-intermediate\": 985174,\n  \"checkbox-intermediate-variant\": 990036,\n  \"checkbox-marked\": 983346,\n  \"checkbox-marked-circle\": 983347,\n  \"checkbox-marked-circle-auto-outline\": 990246,\n  \"checkbox-marked-circle-minus-outline\": 990247,\n  \"checkbox-marked-circle-outline\": 983348,\n  \"checkbox-marked-circle-plus-outline\": 989479,\n  \"checkbox-marked-outline\": 983349,\n  \"checkbox-multiple-blank\": 983350,\n  \"checkbox-multiple-blank-circle\": 984635,\n  \"checkbox-multiple-blank-circle-outline\": 984636,\n  \"checkbox-multiple-blank-outline\": 983351,\n  \"checkbox-multiple-marked\": 983352,\n  \"checkbox-multiple-marked-circle\": 984637,\n  \"checkbox-multiple-marked-circle-outline\": 984638,\n  \"checkbox-multiple-marked-outline\": 983353,\n  \"checkbox-multiple-outline\": 986193,\n  \"checkbox-outline\": 986194,\n  \"checkerboard\": 983354,\n  \"checkerboard-minus\": 987650,\n  \"checkerboard-plus\": 987649,\n  \"checkerboard-remove\": 987651,\n  \"cheese\": 987833,\n  \"cheese-off\": 988142,\n  \"chef-hat\": 985980,\n  \"chemical-weapon\": 983355,\n  \"chess-bishop\": 985180,\n  \"chess-king\": 985175,\n  \"chess-knight\": 985176,\n  \"chess-pawn\": 985177,\n  \"chess-queen\": 985178,\n  \"chess-rook\": 985179,\n  \"chevron-double-down\": 983356,\n  \"chevron-double-left\": 983357,\n  \"chevron-double-right\": 983358,\n  \"chevron-double-up\": 983359,\n  \"chevron-down\": 983360,\n  \"chevron-down-box\": 985558,\n  \"chevron-down-box-outline\": 985559,\n  \"chevron-down-circle\": 985894,\n  \"chevron-down-circle-outline\": 985895,\n  \"chevron-left\": 983361,\n  \"chevron-left-box\": 985560,\n  \"chevron-left-box-outline\": 985561,\n  \"chevron-left-circle\": 985896,\n  \"chevron-left-circle-outline\": 985897,\n  \"chevron-right\": 983362,\n  \"chevron-right-box\": 985562,\n  \"chevron-right-box-outline\": 985563,\n  \"chevron-right-circle\": 985898,\n  \"chevron-right-circle-outline\": 985899,\n  \"chevron-triple-down\": 986553,\n  \"chevron-triple-left\": 986554,\n  \"chevron-triple-right\": 986555,\n  \"chevron-triple-up\": 986556,\n  \"chevron-up\": 983363,\n  \"chevron-up-box\": 985564,\n  \"chevron-up-box-outline\": 985565,\n  \"chevron-up-circle\": 985900,\n  \"chevron-up-circle-outline\": 985901,\n  \"chili-alert\": 989162,\n  \"chili-alert-outline\": 989163,\n  \"chili-hot\": 985010,\n  \"chili-hot-outline\": 989164,\n  \"chili-medium\": 985011,\n  \"chili-medium-outline\": 989165,\n  \"chili-mild\": 985012,\n  \"chili-mild-outline\": 989166,\n  \"chili-off\": 988263,\n  \"chili-off-outline\": 989167,\n  \"chip\": 984602,\n  \"church\": 983364,\n  \"church-outline\": 989954,\n  \"cigar\": 987529,\n  \"cigar-off\": 988187,\n  \"circle\": 984933,\n  \"circle-box\": 988636,\n  \"circle-box-outline\": 988637,\n  \"circle-double\": 986773,\n  \"circle-edit-outline\": 985301,\n  \"circle-expand\": 986774,\n  \"circle-half\": 988053,\n  \"circle-half-full\": 988054,\n  \"circle-medium\": 985566,\n  \"circle-multiple\": 985912,\n  \"circle-multiple-outline\": 984725,\n  \"circle-off-outline\": 987347,\n  \"circle-opacity\": 989267,\n  \"circle-outline\": 984934,\n  \"circle-slice-1\": 985758,\n  \"circle-slice-2\": 985759,\n  \"circle-slice-3\": 985760,\n  \"circle-slice-4\": 985761,\n  \"circle-slice-5\": 985762,\n  \"circle-slice-6\": 985763,\n  \"circle-slice-7\": 985764,\n  \"circle-slice-8\": 985765,\n  \"circle-small\": 985567,\n  \"circular-saw\": 986658,\n  \"city\": 983366,\n  \"city-switch\": 990248,\n  \"city-variant\": 985654,\n  \"city-variant-outline\": 985655,\n  \"clipboard\": 983367,\n  \"clipboard-account\": 983368,\n  \"clipboard-account-outline\": 986197,\n  \"clipboard-alert\": 983369,\n  \"clipboard-alert-outline\": 986359,\n  \"clipboard-arrow-down\": 983370,\n  \"clipboard-arrow-down-outline\": 986198,\n  \"clipboard-arrow-left\": 983371,\n  \"clipboard-arrow-left-outline\": 986360,\n  \"clipboard-arrow-right\": 986361,\n  \"clipboard-arrow-right-outline\": 986362,\n  \"clipboard-arrow-up\": 986199,\n  \"clipboard-arrow-up-outline\": 986200,\n  \"clipboard-check\": 983374,\n  \"clipboard-check-multiple\": 987747,\n  \"clipboard-check-multiple-outline\": 987748,\n  \"clipboard-check-outline\": 985256,\n  \"clipboard-clock\": 988898,\n  \"clipboard-clock-outline\": 988899,\n  \"clipboard-edit\": 988389,\n  \"clipboard-edit-outline\": 988390,\n  \"clipboard-file\": 987749,\n  \"clipboard-file-outline\": 987750,\n  \"clipboard-flow\": 984776,\n  \"clipboard-flow-outline\": 987415,\n  \"clipboard-list\": 987348,\n  \"clipboard-list-outline\": 987349,\n  \"clipboard-minus\": 988696,\n  \"clipboard-minus-outline\": 988697,\n  \"clipboard-multiple\": 987751,\n  \"clipboard-multiple-outline\": 987752,\n  \"clipboard-off\": 988698,\n  \"clipboard-off-outline\": 988699,\n  \"clipboard-outline\": 983372,\n  \"clipboard-play\": 986201,\n  \"clipboard-play-multiple\": 987753,\n  \"clipboard-play-multiple-outline\": 987754,\n  \"clipboard-play-outline\": 986202,\n  \"clipboard-plus\": 984913,\n  \"clipboard-plus-outline\": 987935,\n  \"clipboard-pulse\": 985181,\n  \"clipboard-pulse-outline\": 985182,\n  \"clipboard-remove\": 988700,\n  \"clipboard-remove-outline\": 988701,\n  \"clipboard-search\": 988702,\n  \"clipboard-search-outline\": 988703,\n  \"clipboard-text\": 983373,\n  \"clipboard-text-clock\": 989433,\n  \"clipboard-text-clock-outline\": 989434,\n  \"clipboard-text-multiple\": 987755,\n  \"clipboard-text-multiple-outline\": 987756,\n  \"clipboard-text-off\": 988704,\n  \"clipboard-text-off-outline\": 988705,\n  \"clipboard-text-outline\": 985656,\n  \"clipboard-text-play\": 986203,\n  \"clipboard-text-play-outline\": 986204,\n  \"clipboard-text-search\": 988706,\n  \"clipboard-text-search-outline\": 988707,\n  \"clippy\": 983375,\n  \"clock\": 985428,\n  \"clock-alert\": 985429,\n  \"clock-alert-outline\": 984526,\n  \"clock-check\": 987048,\n  \"clock-check-outline\": 987049,\n  \"clock-digital\": 986775,\n  \"clock-edit\": 989626,\n  \"clock-edit-outline\": 989627,\n  \"clock-end\": 983377,\n  \"clock-fast\": 983378,\n  \"clock-in\": 983379,\n  \"clock-minus\": 989283,\n  \"clock-minus-outline\": 989284,\n  \"clock-out\": 983380,\n  \"clock-outline\": 983376,\n  \"clock-plus\": 989281,\n  \"clock-plus-outline\": 989282,\n  \"clock-remove\": 989285,\n  \"clock-remove-outline\": 989286,\n  \"clock-star-four-points\": 990249,\n  \"clock-star-four-points-outline\": 990250,\n  \"clock-start\": 983381,\n  \"clock-time-eight\": 988230,\n  \"clock-time-eight-outline\": 988242,\n  \"clock-time-eleven\": 988233,\n  \"clock-time-eleven-outline\": 988245,\n  \"clock-time-five\": 988227,\n  \"clock-time-five-outline\": 988239,\n  \"clock-time-four\": 988226,\n  \"clock-time-four-outline\": 988238,\n  \"clock-time-nine\": 988231,\n  \"clock-time-nine-outline\": 988243,\n  \"clock-time-one\": 988223,\n  \"clock-time-one-outline\": 988235,\n  \"clock-time-seven\": 988229,\n  \"clock-time-seven-outline\": 988241,\n  \"clock-time-six\": 988228,\n  \"clock-time-six-outline\": 988240,\n  \"clock-time-ten\": 988232,\n  \"clock-time-ten-outline\": 988244,\n  \"clock-time-three\": 988225,\n  \"clock-time-three-outline\": 988237,\n  \"clock-time-twelve\": 988234,\n  \"clock-time-twelve-outline\": 988246,\n  \"clock-time-two\": 988224,\n  \"clock-time-two-outline\": 988236,\n  \"close\": 983382,\n  \"close-box\": 983383,\n  \"close-box-multiple\": 986205,\n  \"close-box-multiple-outline\": 986206,\n  \"close-box-outline\": 983384,\n  \"close-circle\": 983385,\n  \"close-circle-multiple\": 984618,\n  \"close-circle-multiple-outline\": 985219,\n  \"close-circle-outline\": 983386,\n  \"close-network\": 983387,\n  \"close-network-outline\": 986207,\n  \"close-octagon\": 983388,\n  \"close-octagon-outline\": 983389,\n  \"close-outline\": 984777,\n  \"close-thick\": 988056,\n  \"closed-caption\": 983390,\n  \"closed-caption-outline\": 986557,\n  \"cloud\": 983391,\n  \"cloud-alert\": 985568,\n  \"cloud-alert-outline\": 990176,\n  \"cloud-arrow-down\": 990177,\n  \"cloud-arrow-down-outline\": 990178,\n  \"cloud-arrow-left\": 990179,\n  \"cloud-arrow-left-outline\": 990180,\n  \"cloud-arrow-right\": 990181,\n  \"cloud-arrow-right-outline\": 990182,\n  \"cloud-arrow-up\": 990183,\n  \"cloud-arrow-up-outline\": 990184,\n  \"cloud-braces\": 985013,\n  \"cloud-cancel\": 990185,\n  \"cloud-cancel-outline\": 990186,\n  \"cloud-check\": 990187,\n  \"cloud-check-outline\": 990188,\n  \"cloud-check-variant\": 983392,\n  \"cloud-check-variant-outline\": 987852,\n  \"cloud-circle\": 983393,\n  \"cloud-circle-outline\": 990189,\n  \"cloud-clock\": 990190,\n  \"cloud-clock-outline\": 990191,\n  \"cloud-cog\": 990192,\n  \"cloud-cog-outline\": 990193,\n  \"cloud-download\": 983394,\n  \"cloud-download-outline\": 985981,\n  \"cloud-key\": 990369,\n  \"cloud-key-outline\": 990370,\n  \"cloud-lock\": 987633,\n  \"cloud-lock-open\": 990194,\n  \"cloud-lock-open-outline\": 990195,\n  \"cloud-lock-outline\": 987634,\n  \"cloud-minus\": 990196,\n  \"cloud-minus-outline\": 990197,\n  \"cloud-off\": 990198,\n  \"cloud-off-outline\": 983396,\n  \"cloud-outline\": 983395,\n  \"cloud-percent\": 989749,\n  \"cloud-percent-outline\": 989750,\n  \"cloud-plus\": 990199,\n  \"cloud-plus-outline\": 990200,\n  \"cloud-print\": 983397,\n  \"cloud-print-outline\": 983398,\n  \"cloud-question\": 985657,\n  \"cloud-question-outline\": 990201,\n  \"cloud-refresh\": 990202,\n  \"cloud-refresh-outline\": 990203,\n  \"cloud-refresh-variant\": 984362,\n  \"cloud-refresh-variant-outline\": 990204,\n  \"cloud-remove\": 990205,\n  \"cloud-remove-outline\": 990206,\n  \"cloud-search\": 985430,\n  \"cloud-search-outline\": 985431,\n  \"cloud-sync\": 984639,\n  \"cloud-sync-outline\": 987862,\n  \"cloud-tags\": 985014,\n  \"cloud-upload\": 983399,\n  \"cloud-upload-outline\": 985982,\n  \"clouds\": 990101,\n  \"clover\": 985110,\n  \"clover-outline\": 990306,\n  \"coach-lamp\": 987168,\n  \"coach-lamp-variant\": 989751,\n  \"coat-rack\": 987294,\n  \"code-array\": 983400,\n  \"code-block-braces\": 990339,\n  \"code-block-brackets\": 990340,\n  \"code-block-parentheses\": 990341,\n  \"code-block-tags\": 990342,\n  \"code-braces\": 983401,\n  \"code-braces-box\": 987350,\n  \"code-brackets\": 983402,\n  \"code-equal\": 983403,\n  \"code-greater-than\": 983404,\n  \"code-greater-than-or-equal\": 983405,\n  \"code-json\": 984614,\n  \"code-less-than\": 983406,\n  \"code-less-than-or-equal\": 983407,\n  \"code-not-equal\": 983408,\n  \"code-not-equal-variant\": 983409,\n  \"code-parentheses\": 983410,\n  \"code-parentheses-box\": 987351,\n  \"code-string\": 983411,\n  \"code-tags\": 983412,\n  \"code-tags-check\": 984724,\n  \"codepen\": 983413,\n  \"coffee\": 983414,\n  \"coffee-maker\": 987295,\n  \"coffee-maker-check\": 989489,\n  \"coffee-maker-check-outline\": 989490,\n  \"coffee-maker-outline\": 989211,\n  \"coffee-off\": 987050,\n  \"coffee-off-outline\": 987051,\n  \"coffee-outline\": 984778,\n  \"coffee-to-go\": 983415,\n  \"coffee-to-go-outline\": 987918,\n  \"coffin\": 985983,\n  \"cog\": 984211,\n  \"cog-box\": 984212,\n  \"cog-clockwise\": 987613,\n  \"cog-counterclockwise\": 987614,\n  \"cog-off\": 988110,\n  \"cog-off-outline\": 988111,\n  \"cog-outline\": 985275,\n  \"cog-pause\": 989491,\n  \"cog-pause-outline\": 989492,\n  \"cog-play\": 989493,\n  \"cog-play-outline\": 989494,\n  \"cog-refresh\": 988254,\n  \"cog-refresh-outline\": 988255,\n  \"cog-stop\": 989495,\n  \"cog-stop-outline\": 989496,\n  \"cog-sync\": 988256,\n  \"cog-sync-outline\": 988257,\n  \"cog-transfer\": 987227,\n  \"cog-transfer-outline\": 987228,\n  \"cogs\": 985302,\n  \"collage\": 984640,\n  \"collapse-all\": 985766,\n  \"collapse-all-outline\": 985767,\n  \"color-helper\": 983417,\n  \"comma\": 986659,\n  \"comma-box\": 986667,\n  \"comma-box-outline\": 986660,\n  \"comma-circle\": 986661,\n  \"comma-circle-outline\": 986662,\n  \"comment\": 983418,\n  \"comment-account\": 983419,\n  \"comment-account-outline\": 983420,\n  \"comment-alert\": 983421,\n  \"comment-alert-outline\": 983422,\n  \"comment-arrow-left\": 985569,\n  \"comment-arrow-left-outline\": 985570,\n  \"comment-arrow-right\": 985571,\n  \"comment-arrow-right-outline\": 985572,\n  \"comment-bookmark\": 988590,\n  \"comment-bookmark-outline\": 988591,\n  \"comment-check\": 983423,\n  \"comment-check-outline\": 983424,\n  \"comment-edit\": 987583,\n  \"comment-edit-outline\": 987844,\n  \"comment-eye\": 985658,\n  \"comment-eye-outline\": 985659,\n  \"comment-flash\": 988592,\n  \"comment-flash-outline\": 988593,\n  \"comment-minus\": 988639,\n  \"comment-minus-outline\": 988640,\n  \"comment-multiple\": 985183,\n  \"comment-multiple-outline\": 983425,\n  \"comment-off\": 988641,\n  \"comment-off-outline\": 988642,\n  \"comment-outline\": 983426,\n  \"comment-plus\": 985573,\n  \"comment-plus-outline\": 983427,\n  \"comment-processing\": 983428,\n  \"comment-processing-outline\": 983429,\n  \"comment-question\": 985111,\n  \"comment-question-outline\": 983430,\n  \"comment-quote\": 987169,\n  \"comment-quote-outline\": 987170,\n  \"comment-remove\": 984542,\n  \"comment-remove-outline\": 983431,\n  \"comment-search\": 985660,\n  \"comment-search-outline\": 985661,\n  \"comment-text\": 983432,\n  \"comment-text-multiple\": 985184,\n  \"comment-text-multiple-outline\": 985185,\n  \"comment-text-outline\": 983433,\n  \"compare\": 983434,\n  \"compare-horizontal\": 988306,\n  \"compare-remove\": 989363,\n  \"compare-vertical\": 988307,\n  \"compass\": 983435,\n  \"compass-off\": 985984,\n  \"compass-off-outline\": 985985,\n  \"compass-outline\": 983436,\n  \"compass-rose\": 988034,\n  \"compost\": 989752,\n  \"cone\": 989516,\n  \"cone-off\": 989517,\n  \"connection\": 988694,\n  \"console\": 983437,\n  \"console-line\": 985015,\n  \"console-network\": 985257,\n  \"console-network-outline\": 986208,\n  \"consolidate\": 987352,\n  \"contactless-payment\": 986474,\n  \"contactless-payment-circle\": 983841,\n  \"contactless-payment-circle-outline\": 984072,\n  \"contacts\": 984779,\n  \"contacts-outline\": 984504,\n  \"contain\": 985662,\n  \"contain-end\": 985663,\n  \"contain-start\": 985664,\n  \"content-copy\": 983439,\n  \"content-cut\": 983440,\n  \"content-duplicate\": 983441,\n  \"content-paste\": 983442,\n  \"content-save\": 983443,\n  \"content-save-alert\": 986946,\n  \"content-save-alert-outline\": 986947,\n  \"content-save-all\": 983444,\n  \"content-save-all-outline\": 986948,\n  \"content-save-check\": 989418,\n  \"content-save-check-outline\": 989419,\n  \"content-save-cog\": 988251,\n  \"content-save-cog-outline\": 988252,\n  \"content-save-edit\": 986363,\n  \"content-save-edit-outline\": 986364,\n  \"content-save-minus\": 990019,\n  \"content-save-minus-outline\": 990020,\n  \"content-save-move\": 986663,\n  \"content-save-move-outline\": 986664,\n  \"content-save-off\": 988739,\n  \"content-save-off-outline\": 988740,\n  \"content-save-outline\": 985112,\n  \"content-save-plus\": 990017,\n  \"content-save-plus-outline\": 990018,\n  \"content-save-settings\": 984603,\n  \"content-save-settings-outline\": 985902,\n  \"contrast\": 983445,\n  \"contrast-box\": 983446,\n  \"contrast-circle\": 983447,\n  \"controller\": 983732,\n  \"controller-classic\": 985986,\n  \"controller-classic-outline\": 985987,\n  \"controller-off\": 983733,\n  \"cookie\": 983448,\n  \"cookie-alert\": 988880,\n  \"cookie-alert-outline\": 988881,\n  \"cookie-check\": 988882,\n  \"cookie-check-outline\": 988883,\n  \"cookie-clock\": 988900,\n  \"cookie-clock-outline\": 988901,\n  \"cookie-cog\": 988884,\n  \"cookie-cog-outline\": 988885,\n  \"cookie-edit\": 988902,\n  \"cookie-edit-outline\": 988903,\n  \"cookie-lock\": 988904,\n  \"cookie-lock-outline\": 988905,\n  \"cookie-minus\": 988890,\n  \"cookie-minus-outline\": 988891,\n  \"cookie-off\": 988906,\n  \"cookie-off-outline\": 988907,\n  \"cookie-outline\": 988894,\n  \"cookie-plus\": 988886,\n  \"cookie-plus-outline\": 988887,\n  \"cookie-refresh\": 988908,\n  \"cookie-refresh-outline\": 988909,\n  \"cookie-remove\": 988888,\n  \"cookie-remove-outline\": 988889,\n  \"cookie-settings\": 988892,\n  \"cookie-settings-outline\": 988893,\n  \"coolant-temperature\": 984008,\n  \"copyleft\": 989497,\n  \"copyright\": 984550,\n  \"cordova\": 985432,\n  \"corn\": 985016,\n  \"corn-off\": 988143,\n  \"cosine-wave\": 988281,\n  \"counter\": 983449,\n  \"countertop\": 989212,\n  \"countertop-outline\": 989213,\n  \"cow\": 983450,\n  \"cow-off\": 989436,\n  \"cpu-32-bit\": 986847,\n  \"cpu-64-bit\": 986848,\n  \"cradle\": 989579,\n  \"cradle-outline\": 989585,\n  \"crane\": 985186,\n  \"creation\": 984692,\n  \"creation-outline\": 990251,\n  \"creative-commons\": 986475,\n  \"credit-card\": 987119,\n  \"credit-card-check\": 988112,\n  \"credit-card-check-outline\": 988113,\n  \"credit-card-chip\": 989455,\n  \"credit-card-chip-outline\": 989456,\n  \"credit-card-clock\": 986849,\n  \"credit-card-clock-outline\": 986850,\n  \"credit-card-edit\": 989143,\n  \"credit-card-edit-outline\": 989144,\n  \"credit-card-fast\": 989457,\n  \"credit-card-fast-outline\": 989458,\n  \"credit-card-lock\": 989415,\n  \"credit-card-lock-outline\": 989416,\n  \"credit-card-marker\": 984744,\n  \"credit-card-marker-outline\": 986558,\n  \"credit-card-minus\": 987052,\n  \"credit-card-minus-outline\": 987053,\n  \"credit-card-multiple\": 987120,\n  \"credit-card-multiple-outline\": 983452,\n  \"credit-card-off\": 987121,\n  \"credit-card-off-outline\": 984548,\n  \"credit-card-outline\": 983451,\n  \"credit-card-plus\": 987122,\n  \"credit-card-plus-outline\": 984694,\n  \"credit-card-refresh\": 988741,\n  \"credit-card-refresh-outline\": 988742,\n  \"credit-card-refund\": 987123,\n  \"credit-card-refund-outline\": 985768,\n  \"credit-card-remove\": 987054,\n  \"credit-card-remove-outline\": 987055,\n  \"credit-card-scan\": 987124,\n  \"credit-card-scan-outline\": 983453,\n  \"credit-card-search\": 988743,\n  \"credit-card-search-outline\": 988744,\n  \"credit-card-settings\": 987125,\n  \"credit-card-settings-outline\": 985303,\n  \"credit-card-sync\": 988745,\n  \"credit-card-sync-outline\": 988746,\n  \"credit-card-wireless\": 985090,\n  \"credit-card-wireless-off\": 984442,\n  \"credit-card-wireless-off-outline\": 984443,\n  \"credit-card-wireless-outline\": 986476,\n  \"cricket\": 986477,\n  \"crop\": 983454,\n  \"crop-free\": 983455,\n  \"crop-landscape\": 983456,\n  \"crop-portrait\": 983457,\n  \"crop-rotate\": 984726,\n  \"crop-square\": 983458,\n  \"cross\": 985427,\n  \"cross-bolnisi\": 986349,\n  \"cross-celtic\": 986357,\n  \"cross-outline\": 986358,\n  \"crosshairs\": 983459,\n  \"crosshairs-gps\": 983460,\n  \"crosshairs-off\": 986949,\n  \"crosshairs-question\": 987446,\n  \"crowd\": 989557,\n  \"crown\": 983461,\n  \"crown-circle\": 989148,\n  \"crown-circle-outline\": 989149,\n  \"crown-outline\": 987600,\n  \"cryengine\": 985433,\n  \"crystal-ball\": 985903,\n  \"cube\": 983462,\n  \"cube-off\": 988188,\n  \"cube-off-outline\": 988189,\n  \"cube-outline\": 983463,\n  \"cube-scan\": 985988,\n  \"cube-send\": 983464,\n  \"cube-unfolded\": 983465,\n  \"cup\": 983466,\n  \"cup-off\": 984549,\n  \"cup-off-outline\": 988029,\n  \"cup-outline\": 987919,\n  \"cup-water\": 983467,\n  \"cupboard\": 986950,\n  \"cupboard-outline\": 986951,\n  \"cupcake\": 985434,\n  \"curling\": 985187,\n  \"currency-bdt\": 985188,\n  \"currency-brl\": 985989,\n  \"currency-btc\": 983468,\n  \"currency-cny\": 985018,\n  \"currency-eth\": 985019,\n  \"currency-eur\": 983469,\n  \"currency-eur-off\": 987925,\n  \"currency-fra\": 989753,\n  \"currency-gbp\": 983470,\n  \"currency-ils\": 986209,\n  \"currency-inr\": 983471,\n  \"currency-jpy\": 985020,\n  \"currency-krw\": 985021,\n  \"currency-kzt\": 985189,\n  \"currency-mnt\": 988434,\n  \"currency-ngn\": 983472,\n  \"currency-php\": 985574,\n  \"currency-rial\": 986780,\n  \"currency-rub\": 983473,\n  \"currency-rupee\": 989558,\n  \"currency-sign\": 985022,\n  \"currency-thb\": 990213,\n  \"currency-try\": 983474,\n  \"currency-twd\": 985023,\n  \"currency-uah\": 990107,\n  \"currency-usd\": 983489,\n  \"currency-usd-off\": 984698,\n  \"current-ac\": 988288,\n  \"current-dc\": 985436,\n  \"cursor-default\": 983488,\n  \"cursor-default-click\": 986365,\n  \"cursor-default-click-outline\": 986366,\n  \"cursor-default-gesture\": 987431,\n  \"cursor-default-gesture-outline\": 987432,\n  \"cursor-default-outline\": 983487,\n  \"cursor-move\": 983486,\n  \"cursor-pointer\": 983485,\n  \"cursor-text\": 984551,\n  \"curtains\": 989254,\n  \"curtains-closed\": 989255,\n  \"cylinder\": 989518,\n  \"cylinder-off\": 989519,\n  \"dance-ballroom\": 988667,\n  \"dance-pole\": 988536,\n  \"data-matrix\": 988476,\n  \"data-matrix-edit\": 988477,\n  \"data-matrix-minus\": 988478,\n  \"data-matrix-plus\": 988479,\n  \"data-matrix-remove\": 988480,\n  \"data-matrix-scan\": 988481,\n  \"database\": 983484,\n  \"database-alert\": 988730,\n  \"database-alert-outline\": 988708,\n  \"database-arrow-down\": 988731,\n  \"database-arrow-down-outline\": 988709,\n  \"database-arrow-left\": 988732,\n  \"database-arrow-left-outline\": 988710,\n  \"database-arrow-right\": 988733,\n  \"database-arrow-right-outline\": 988711,\n  \"database-arrow-up\": 988734,\n  \"database-arrow-up-outline\": 988712,\n  \"database-check\": 985769,\n  \"database-check-outline\": 988713,\n  \"database-clock\": 988735,\n  \"database-clock-outline\": 988714,\n  \"database-cog\": 988747,\n  \"database-cog-outline\": 988748,\n  \"database-edit\": 985990,\n  \"database-edit-outline\": 988715,\n  \"database-export\": 985438,\n  \"database-export-outline\": 988716,\n  \"database-eye\": 989471,\n  \"database-eye-off\": 989472,\n  \"database-eye-off-outline\": 989473,\n  \"database-eye-outline\": 989474,\n  \"database-import\": 985437,\n  \"database-import-outline\": 988717,\n  \"database-lock\": 985770,\n  \"database-lock-outline\": 988718,\n  \"database-marker\": 987894,\n  \"database-marker-outline\": 988719,\n  \"database-minus\": 983483,\n  \"database-minus-outline\": 988720,\n  \"database-off\": 988736,\n  \"database-off-outline\": 988721,\n  \"database-outline\": 988722,\n  \"database-plus\": 983482,\n  \"database-plus-outline\": 988723,\n  \"database-refresh\": 984514,\n  \"database-refresh-outline\": 988724,\n  \"database-remove\": 986368,\n  \"database-remove-outline\": 988725,\n  \"database-search\": 985190,\n  \"database-search-outline\": 988726,\n  \"database-settings\": 986369,\n  \"database-settings-outline\": 988727,\n  \"database-sync\": 986367,\n  \"database-sync-outline\": 988728,\n  \"death-star\": 985304,\n  \"death-star-variant\": 985305,\n  \"deathly-hallows\": 985991,\n  \"debian\": 985306,\n  \"debug-step-into\": 983481,\n  \"debug-step-out\": 983480,\n  \"debug-step-over\": 983479,\n  \"decagram\": 984940,\n  \"decagram-outline\": 984941,\n  \"decimal\": 987297,\n  \"decimal-comma\": 987298,\n  \"decimal-comma-decrease\": 987299,\n  \"decimal-comma-increase\": 987300,\n  \"decimal-decrease\": 983478,\n  \"decimal-increase\": 983477,\n  \"delete\": 983476,\n  \"delete-alert\": 987301,\n  \"delete-alert-outline\": 987302,\n  \"delete-circle\": 984707,\n  \"delete-circle-outline\": 985992,\n  \"delete-clock\": 988502,\n  \"delete-clock-outline\": 988503,\n  \"delete-empty\": 984780,\n  \"delete-empty-outline\": 986781,\n  \"delete-forever\": 984552,\n  \"delete-forever-outline\": 985993,\n  \"delete-off\": 987303,\n  \"delete-off-outline\": 987304,\n  \"delete-outline\": 985575,\n  \"delete-restore\": 985113,\n  \"delete-sweep\": 984553,\n  \"delete-sweep-outline\": 986210,\n  \"delete-variant\": 983475,\n  \"delta\": 983490,\n  \"desk\": 987705,\n  \"desk-lamp\": 985439,\n  \"desk-lamp-off\": 989983,\n  \"desk-lamp-on\": 989984,\n  \"deskphone\": 983491,\n  \"desktop-classic\": 985024,\n  \"desktop-tower\": 983493,\n  \"desktop-tower-monitor\": 985771,\n  \"details\": 983494,\n  \"dev-to\": 986478,\n  \"developer-board\": 984727,\n  \"deviantart\": 983495,\n  \"devices\": 987056,\n  \"dharmachakra\": 985419,\n  \"diabetes\": 987430,\n  \"dialpad\": 984604,\n  \"diameter\": 986211,\n  \"diameter-outline\": 986212,\n  \"diameter-variant\": 986213,\n  \"diamond\": 985994,\n  \"diamond-outline\": 985995,\n  \"diamond-stone\": 983496,\n  \"diaper-outline\": 990415,\n  \"dice-1\": 983498,\n  \"dice-1-outline\": 987466,\n  \"dice-2\": 983499,\n  \"dice-2-outline\": 987467,\n  \"dice-3\": 983500,\n  \"dice-3-outline\": 987468,\n  \"dice-4\": 983501,\n  \"dice-4-outline\": 987469,\n  \"dice-5\": 983502,\n  \"dice-5-outline\": 987470,\n  \"dice-6\": 983503,\n  \"dice-6-outline\": 987471,\n  \"dice-d10\": 987475,\n  \"dice-d10-outline\": 984943,\n  \"dice-d12\": 987476,\n  \"dice-d12-outline\": 985191,\n  \"dice-d20\": 987477,\n  \"dice-d20-outline\": 984554,\n  \"dice-d4\": 987472,\n  \"dice-d4-outline\": 984555,\n  \"dice-d6\": 987473,\n  \"dice-d6-outline\": 984557,\n  \"dice-d8\": 987474,\n  \"dice-d8-outline\": 984556,\n  \"dice-multiple\": 984942,\n  \"dice-multiple-outline\": 987478,\n  \"digital-ocean\": 987703,\n  \"dip-switch\": 985025,\n  \"directions\": 983504,\n  \"directions-fork\": 984641,\n  \"disc\": 984558,\n  \"disc-alert\": 983505,\n  \"disc-player\": 985440,\n  \"dishwasher\": 985772,\n  \"dishwasher-alert\": 987576,\n  \"dishwasher-off\": 987577,\n  \"disqus\": 983506,\n  \"distribute-horizontal-center\": 987593,\n  \"distribute-horizontal-left\": 987592,\n  \"distribute-horizontal-right\": 987594,\n  \"distribute-vertical-bottom\": 987595,\n  \"distribute-vertical-center\": 987596,\n  \"distribute-vertical-top\": 987597,\n  \"diversify\": 989303,\n  \"diving\": 989559,\n  \"diving-flippers\": 986559,\n  \"diving-helmet\": 986560,\n  \"diving-scuba\": 990071,\n  \"diving-scuba-flag\": 986562,\n  \"diving-scuba-mask\": 986561,\n  \"diving-scuba-tank\": 986563,\n  \"diving-scuba-tank-multiple\": 986564,\n  \"diving-snorkel\": 986565,\n  \"division\": 983508,\n  \"division-box\": 983509,\n  \"dlna\": 985665,\n  \"dna\": 984708,\n  \"dns\": 983510,\n  \"dns-outline\": 985996,\n  \"dock-bottom\": 987305,\n  \"dock-left\": 987306,\n  \"dock-right\": 987307,\n  \"dock-top\": 988435,\n  \"dock-window\": 987308,\n  \"docker\": 985192,\n  \"doctor\": 985666,\n  \"dog\": 985667,\n  \"dog-service\": 985773,\n  \"dog-side\": 985668,\n  \"dog-side-off\": 988910,\n  \"dolby\": 984755,\n  \"dolly\": 986782,\n  \"dolphin\": 989364,\n  \"domain\": 983511,\n  \"domain-off\": 986479,\n  \"domain-plus\": 987309,\n  \"domain-remove\": 987310,\n  \"domain-switch\": 990252,\n  \"dome-light\": 988190,\n  \"domino-mask\": 987171,\n  \"donkey\": 985026,\n  \"door\": 985114,\n  \"door-closed\": 985115,\n  \"door-closed-cancel\": 990355,\n  \"door-closed-lock\": 987311,\n  \"door-open\": 985116,\n  \"door-sliding\": 989214,\n  \"door-sliding-lock\": 989215,\n  \"door-sliding-open\": 989216,\n  \"doorbell\": 987878,\n  \"doorbell-video\": 985193,\n  \"dot-net\": 985774,\n  \"dots-circle\": 989560,\n  \"dots-grid\": 988668,\n  \"dots-hexagon\": 988671,\n  \"dots-horizontal\": 983512,\n  \"dots-horizontal-circle\": 985027,\n  \"dots-horizontal-circle-outline\": 985997,\n  \"dots-square\": 988669,\n  \"dots-triangle\": 988670,\n  \"dots-vertical\": 983513,\n  \"dots-vertical-circle\": 985028,\n  \"dots-vertical-circle-outline\": 985998,\n  \"download\": 983514,\n  \"download-box\": 988258,\n  \"download-box-outline\": 988259,\n  \"download-circle\": 988260,\n  \"download-circle-outline\": 988261,\n  \"download-lock\": 987936,\n  \"download-lock-outline\": 987937,\n  \"download-multiple\": 985577,\n  \"download-multiple-outline\": 990416,\n  \"download-network\": 984820,\n  \"download-network-outline\": 986214,\n  \"download-off\": 987312,\n  \"download-off-outline\": 987313,\n  \"download-outline\": 985999,\n  \"drag\": 983515,\n  \"drag-horizontal\": 983516,\n  \"drag-horizontal-variant\": 987888,\n  \"drag-variant\": 986000,\n  \"drag-vertical\": 983517,\n  \"drag-vertical-variant\": 987889,\n  \"drama-masks\": 986370,\n  \"draw\": 986953,\n  \"draw-pen\": 989625,\n  \"drawing\": 983518,\n  \"drawing-box\": 983519,\n  \"dresser\": 986954,\n  \"dresser-outline\": 986955,\n  \"drone\": 983522,\n  \"dropbox\": 983523,\n  \"drupal\": 983524,\n  \"duck\": 983525,\n  \"dumbbell\": 983526,\n  \"dump-truck\": 986215,\n  \"ear-hearing\": 985029,\n  \"ear-hearing-loop\": 989934,\n  \"ear-hearing-off\": 985669,\n  \"earbuds\": 989263,\n  \"earbuds-off\": 989264,\n  \"earbuds-off-outline\": 989265,\n  \"earbuds-outline\": 989266,\n  \"earth\": 983527,\n  \"earth-arrow-down\": 990343,\n  \"earth-arrow-left\": 990344,\n  \"earth-arrow-right\": 987921,\n  \"earth-arrow-up\": 990345,\n  \"earth-box\": 984781,\n  \"earth-box-minus\": 988167,\n  \"earth-box-off\": 984782,\n  \"earth-box-plus\": 988166,\n  \"earth-box-remove\": 988168,\n  \"earth-minus\": 988164,\n  \"earth-off\": 983528,\n  \"earth-plus\": 988163,\n  \"earth-remove\": 988165,\n  \"egg\": 985775,\n  \"egg-easter\": 985776,\n  \"egg-fried\": 989258,\n  \"egg-off\": 988144,\n  \"egg-off-outline\": 988145,\n  \"egg-outline\": 988146,\n  \"eiffel-tower\": 988523,\n  \"eight-track\": 985578,\n  \"eject\": 983530,\n  \"eject-circle\": 989987,\n  \"eject-circle-outline\": 989988,\n  \"eject-outline\": 986001,\n  \"electric-switch\": 986783,\n  \"electric-switch-closed\": 987353,\n  \"electron-framework\": 987172,\n  \"elephant\": 985030,\n  \"elevation-decline\": 983531,\n  \"elevation-rise\": 983532,\n  \"elevator\": 983533,\n  \"elevator-down\": 987842,\n  \"elevator-passenger\": 988033,\n  \"elevator-passenger-off\": 989561,\n  \"elevator-passenger-off-outline\": 989562,\n  \"elevator-passenger-outline\": 989563,\n  \"elevator-up\": 987841,\n  \"ellipse\": 986784,\n  \"ellipse-outline\": 986785,\n  \"email\": 983534,\n  \"email-alert\": 984783,\n  \"email-alert-outline\": 986434,\n  \"email-arrow-left\": 987354,\n  \"email-arrow-left-outline\": 987355,\n  \"email-arrow-right\": 987356,\n  \"email-arrow-right-outline\": 987357,\n  \"email-box\": 986371,\n  \"email-check\": 985777,\n  \"email-check-outline\": 985778,\n  \"email-edit\": 986851,\n  \"email-edit-outline\": 986852,\n  \"email-fast\": 989295,\n  \"email-fast-outline\": 989296,\n  \"email-heart-outline\": 990299,\n  \"email-lock\": 983537,\n  \"email-lock-outline\": 990049,\n  \"email-mark-as-unread\": 986002,\n  \"email-minus\": 986853,\n  \"email-minus-outline\": 986854,\n  \"email-multiple\": 986855,\n  \"email-multiple-outline\": 986856,\n  \"email-newsletter\": 987057,\n  \"email-off\": 988131,\n  \"email-off-outline\": 988132,\n  \"email-open\": 983535,\n  \"email-open-heart-outline\": 990300,\n  \"email-open-multiple\": 986857,\n  \"email-open-multiple-outline\": 986858,\n  \"email-open-outline\": 984559,\n  \"email-outline\": 983536,\n  \"email-plus\": 985579,\n  \"email-plus-outline\": 985580,\n  \"email-remove\": 988769,\n  \"email-remove-outline\": 988770,\n  \"email-seal\": 989531,\n  \"email-seal-outline\": 989532,\n  \"email-search\": 985441,\n  \"email-search-outline\": 985442,\n  \"email-sync\": 987847,\n  \"email-sync-outline\": 987848,\n  \"email-variant\": 984560,\n  \"ember\": 985904,\n  \"emby\": 984756,\n  \"emoticon\": 986216,\n  \"emoticon-angry\": 986217,\n  \"emoticon-angry-outline\": 986218,\n  \"emoticon-confused\": 987358,\n  \"emoticon-confused-outline\": 987359,\n  \"emoticon-cool\": 986219,\n  \"emoticon-cool-outline\": 983539,\n  \"emoticon-cry\": 986220,\n  \"emoticon-cry-outline\": 986221,\n  \"emoticon-dead\": 986222,\n  \"emoticon-dead-outline\": 984731,\n  \"emoticon-devil\": 986223,\n  \"emoticon-devil-outline\": 983540,\n  \"emoticon-excited\": 986224,\n  \"emoticon-excited-outline\": 984732,\n  \"emoticon-frown\": 986956,\n  \"emoticon-frown-outline\": 986957,\n  \"emoticon-happy\": 986225,\n  \"emoticon-happy-outline\": 983541,\n  \"emoticon-kiss\": 986226,\n  \"emoticon-kiss-outline\": 986227,\n  \"emoticon-lol\": 987668,\n  \"emoticon-lol-outline\": 987669,\n  \"emoticon-minus\": 990386,\n  \"emoticon-minus-outline\": 990387,\n  \"emoticon-neutral\": 986228,\n  \"emoticon-neutral-outline\": 983542,\n  \"emoticon-outline\": 983538,\n  \"emoticon-plus\": 990388,\n  \"emoticon-plus-outline\": 990389,\n  \"emoticon-poop\": 983543,\n  \"emoticon-poop-outline\": 986229,\n  \"emoticon-remove\": 990390,\n  \"emoticon-remove-outline\": 990391,\n  \"emoticon-sad\": 986230,\n  \"emoticon-sad-outline\": 983544,\n  \"emoticon-sick\": 988540,\n  \"emoticon-sick-outline\": 988541,\n  \"emoticon-tongue\": 983545,\n  \"emoticon-tongue-outline\": 986231,\n  \"emoticon-wink\": 986232,\n  \"emoticon-wink-outline\": 986233,\n  \"engine\": 983546,\n  \"engine-off\": 985670,\n  \"engine-off-outline\": 985671,\n  \"engine-outline\": 983547,\n  \"epsilon\": 987360,\n  \"equal\": 983548,\n  \"equal-box\": 983549,\n  \"equalizer\": 986786,\n  \"equalizer-outline\": 986787,\n  \"eraser\": 983550,\n  \"eraser-variant\": 984642,\n  \"escalator\": 983551,\n  \"escalator-box\": 988057,\n  \"escalator-down\": 987840,\n  \"escalator-up\": 987839,\n  \"eslint\": 986234,\n  \"et\": 985779,\n  \"ethereum\": 985194,\n  \"ethernet\": 983552,\n  \"ethernet-cable\": 983553,\n  \"ethernet-cable-off\": 983554,\n  \"ethernet-off\": 990417,\n  \"ev-plug-ccs1\": 988441,\n  \"ev-plug-ccs2\": 988442,\n  \"ev-plug-chademo\": 988443,\n  \"ev-plug-tesla\": 988444,\n  \"ev-plug-type1\": 988445,\n  \"ev-plug-type2\": 988446,\n  \"ev-station\": 984561,\n  \"evernote\": 983556,\n  \"excavator\": 987173,\n  \"exclamation\": 983557,\n  \"exclamation-thick\": 987704,\n  \"exit-run\": 985672,\n  \"exit-to-app\": 983558,\n  \"expand-all\": 985780,\n  \"expand-all-outline\": 985781,\n  \"expansion-card\": 985262,\n  \"expansion-card-variant\": 987058,\n  \"exponent\": 985443,\n  \"exponent-box\": 985444,\n  \"export\": 983559,\n  \"export-variant\": 986003,\n  \"eye\": 983560,\n  \"eye-arrow-left\": 989437,\n  \"eye-arrow-left-outline\": 989438,\n  \"eye-arrow-right\": 989439,\n  \"eye-arrow-right-outline\": 989440,\n  \"eye-check\": 986372,\n  \"eye-check-outline\": 986373,\n  \"eye-circle\": 986004,\n  \"eye-circle-outline\": 986005,\n  \"eye-closed\": 990371,\n  \"eye-lock\": 990214,\n  \"eye-lock-open\": 990215,\n  \"eye-lock-open-outline\": 990216,\n  \"eye-lock-outline\": 990217,\n  \"eye-minus\": 987174,\n  \"eye-minus-outline\": 987175,\n  \"eye-off\": 983561,\n  \"eye-off-outline\": 984785,\n  \"eye-outline\": 984784,\n  \"eye-plus\": 985195,\n  \"eye-plus-outline\": 985196,\n  \"eye-refresh\": 989564,\n  \"eye-refresh-outline\": 989565,\n  \"eye-remove\": 988643,\n  \"eye-remove-outline\": 988644,\n  \"eye-settings\": 985197,\n  \"eye-settings-outline\": 985198,\n  \"eyedropper\": 983562,\n  \"eyedropper-minus\": 988125,\n  \"eyedropper-off\": 988127,\n  \"eyedropper-plus\": 988124,\n  \"eyedropper-remove\": 988126,\n  \"eyedropper-variant\": 983563,\n  \"face-agent\": 986480,\n  \"face-man\": 984643,\n  \"face-man-outline\": 986006,\n  \"face-man-profile\": 984644,\n  \"face-man-shimmer\": 988620,\n  \"face-man-shimmer-outline\": 988621,\n  \"face-mask\": 988550,\n  \"face-mask-outline\": 988551,\n  \"face-recognition\": 986235,\n  \"face-woman\": 987255,\n  \"face-woman-outline\": 987256,\n  \"face-woman-profile\": 987254,\n  \"face-woman-shimmer\": 988622,\n  \"face-woman-shimmer-outline\": 988623,\n  \"facebook\": 983564,\n  \"facebook-gaming\": 985053,\n  \"facebook-messenger\": 983566,\n  \"facebook-workplace\": 985905,\n  \"factory\": 983567,\n  \"family-tree\": 988686,\n  \"fan\": 983568,\n  \"fan-alert\": 988268,\n  \"fan-auto\": 988957,\n  \"fan-chevron-down\": 988269,\n  \"fan-chevron-up\": 988270,\n  \"fan-clock\": 989754,\n  \"fan-minus\": 988272,\n  \"fan-off\": 985117,\n  \"fan-plus\": 988271,\n  \"fan-remove\": 988273,\n  \"fan-speed-1\": 988274,\n  \"fan-speed-2\": 988275,\n  \"fan-speed-3\": 988276,\n  \"fast-forward\": 983569,\n  \"fast-forward-10\": 986481,\n  \"fast-forward-15\": 989498,\n  \"fast-forward-30\": 986374,\n  \"fast-forward-45\": 989970,\n  \"fast-forward-5\": 987640,\n  \"fast-forward-60\": 988683,\n  \"fast-forward-outline\": 984786,\n  \"faucet\": 989993,\n  \"faucet-variant\": 989994,\n  \"fax\": 983570,\n  \"feather\": 984787,\n  \"feature-search\": 985673,\n  \"feature-search-outline\": 985674,\n  \"fedora\": 985307,\n  \"fence\": 989082,\n  \"fence-electric\": 989174,\n  \"fencing\": 988353,\n  \"ferris-wheel\": 986788,\n  \"ferry\": 983571,\n  \"file\": 983572,\n  \"file-account\": 984891,\n  \"file-account-outline\": 987176,\n  \"file-alert\": 985675,\n  \"file-alert-outline\": 985676,\n  \"file-arrow-left-right\": 989843,\n  \"file-arrow-left-right-outline\": 989844,\n  \"file-arrow-up-down\": 989845,\n  \"file-arrow-up-down-outline\": 989846,\n  \"file-cabinet\": 985782,\n  \"file-cad\": 986859,\n  \"file-cad-box\": 986860,\n  \"file-cancel\": 986566,\n  \"file-cancel-outline\": 986567,\n  \"file-certificate\": 987526,\n  \"file-certificate-outline\": 987527,\n  \"file-chart\": 983573,\n  \"file-chart-check\": 989638,\n  \"file-chart-check-outline\": 989639,\n  \"file-chart-outline\": 987177,\n  \"file-check\": 983574,\n  \"file-check-outline\": 986665,\n  \"file-clock\": 987873,\n  \"file-clock-outline\": 987874,\n  \"file-cloud\": 983575,\n  \"file-cloud-outline\": 987178,\n  \"file-code\": 983598,\n  \"file-code-outline\": 987179,\n  \"file-cog\": 987259,\n  \"file-cog-outline\": 987260,\n  \"file-compare\": 985258,\n  \"file-delimited\": 983576,\n  \"file-delimited-outline\": 986789,\n  \"file-document\": 983577,\n  \"file-document-alert\": 989847,\n  \"file-document-alert-outline\": 989848,\n  \"file-document-arrow-right\": 990223,\n  \"file-document-arrow-right-outline\": 990224,\n  \"file-document-check\": 989849,\n  \"file-document-check-outline\": 989850,\n  \"file-document-edit\": 986568,\n  \"file-document-edit-outline\": 986569,\n  \"file-document-minus\": 989851,\n  \"file-document-minus-outline\": 989852,\n  \"file-document-multiple\": 988439,\n  \"file-document-multiple-outline\": 988440,\n  \"file-document-outline\": 985582,\n  \"file-document-plus\": 989853,\n  \"file-document-plus-outline\": 989854,\n  \"file-document-refresh\": 990330,\n  \"file-document-refresh-outline\": 990331,\n  \"file-document-remove\": 989855,\n  \"file-document-remove-outline\": 989856,\n  \"file-download\": 985445,\n  \"file-download-outline\": 985446,\n  \"file-edit\": 987623,\n  \"file-edit-outline\": 987624,\n  \"file-excel\": 983579,\n  \"file-excel-box\": 983580,\n  \"file-excel-box-outline\": 987180,\n  \"file-excel-outline\": 987181,\n  \"file-export\": 983581,\n  \"file-export-outline\": 987182,\n  \"file-eye\": 986570,\n  \"file-eye-outline\": 986571,\n  \"file-find\": 983582,\n  \"file-find-outline\": 986007,\n  \"file-gif-box\": 986488,\n  \"file-hidden\": 984595,\n  \"file-image\": 983583,\n  \"file-image-marker\": 989042,\n  \"file-image-marker-outline\": 989043,\n  \"file-image-minus\": 989499,\n  \"file-image-minus-outline\": 989500,\n  \"file-image-outline\": 986800,\n  \"file-image-plus\": 989501,\n  \"file-image-plus-outline\": 989502,\n  \"file-image-remove\": 989503,\n  \"file-image-remove-outline\": 989504,\n  \"file-import\": 983584,\n  \"file-import-outline\": 987183,\n  \"file-jpg-box\": 983589,\n  \"file-key\": 987524,\n  \"file-key-outline\": 987525,\n  \"file-link\": 987511,\n  \"file-link-outline\": 987512,\n  \"file-lock\": 983585,\n  \"file-lock-open\": 989640,\n  \"file-lock-open-outline\": 989641,\n  \"file-lock-outline\": 987184,\n  \"file-marker\": 989044,\n  \"file-marker-outline\": 989045,\n  \"file-minus\": 989857,\n  \"file-minus-outline\": 989858,\n  \"file-move\": 985785,\n  \"file-move-outline\": 987185,\n  \"file-multiple\": 983586,\n  \"file-multiple-outline\": 987186,\n  \"file-music\": 983587,\n  \"file-music-outline\": 986666,\n  \"file-outline\": 983588,\n  \"file-pdf-box\": 983590,\n  \"file-percent\": 985118,\n  \"file-percent-outline\": 987187,\n  \"file-phone\": 987513,\n  \"file-phone-outline\": 987514,\n  \"file-plus\": 984914,\n  \"file-plus-outline\": 986861,\n  \"file-png-box\": 986669,\n  \"file-powerpoint\": 983591,\n  \"file-powerpoint-box\": 983592,\n  \"file-powerpoint-box-outline\": 987188,\n  \"file-powerpoint-outline\": 987189,\n  \"file-presentation-box\": 983593,\n  \"file-question\": 985199,\n  \"file-question-outline\": 987190,\n  \"file-refresh\": 985368,\n  \"file-refresh-outline\": 984385,\n  \"file-remove\": 986008,\n  \"file-remove-outline\": 987191,\n  \"file-replace\": 985906,\n  \"file-replace-outline\": 985907,\n  \"file-restore\": 984688,\n  \"file-restore-outline\": 987192,\n  \"file-rotate-left\": 989755,\n  \"file-rotate-left-outline\": 989756,\n  \"file-rotate-right\": 989757,\n  \"file-rotate-right-outline\": 989758,\n  \"file-search\": 986236,\n  \"file-search-outline\": 986237,\n  \"file-send\": 983594,\n  \"file-send-outline\": 987193,\n  \"file-settings\": 987257,\n  \"file-settings-outline\": 987258,\n  \"file-sign\": 989635,\n  \"file-star\": 987194,\n  \"file-star-four-points\": 990253,\n  \"file-star-four-points-outline\": 990254,\n  \"file-star-outline\": 987195,\n  \"file-swap\": 987060,\n  \"file-swap-outline\": 987061,\n  \"file-sync\": 987670,\n  \"file-sync-outline\": 987671,\n  \"file-table\": 986238,\n  \"file-table-box\": 987361,\n  \"file-table-box-multiple\": 987362,\n  \"file-table-box-multiple-outline\": 987363,\n  \"file-table-box-outline\": 987364,\n  \"file-table-outline\": 986239,\n  \"file-tree\": 984645,\n  \"file-tree-outline\": 988114,\n  \"file-undo\": 985308,\n  \"file-undo-outline\": 987196,\n  \"file-upload\": 985677,\n  \"file-upload-outline\": 985678,\n  \"file-video\": 983595,\n  \"file-video-outline\": 986668,\n  \"file-word\": 983596,\n  \"file-word-box\": 983597,\n  \"file-word-box-outline\": 987197,\n  \"file-word-outline\": 987198,\n  \"file-xml-box\": 990027,\n  \"film\": 983599,\n  \"filmstrip\": 983600,\n  \"filmstrip-box\": 983858,\n  \"filmstrip-box-multiple\": 986392,\n  \"filmstrip-off\": 983601,\n  \"filter\": 983602,\n  \"filter-check\": 989420,\n  \"filter-check-outline\": 989421,\n  \"filter-cog\": 989859,\n  \"filter-cog-outline\": 989860,\n  \"filter-menu\": 987365,\n  \"filter-menu-outline\": 987366,\n  \"filter-minus\": 986862,\n  \"filter-minus-outline\": 986863,\n  \"filter-multiple\": 989759,\n  \"filter-multiple-outline\": 989760,\n  \"filter-off\": 988399,\n  \"filter-off-outline\": 988400,\n  \"filter-outline\": 983603,\n  \"filter-plus\": 986864,\n  \"filter-plus-outline\": 986865,\n  \"filter-remove\": 983604,\n  \"filter-remove-outline\": 983605,\n  \"filter-settings\": 989861,\n  \"filter-settings-outline\": 989862,\n  \"filter-variant\": 983606,\n  \"filter-variant-minus\": 987410,\n  \"filter-variant-plus\": 987411,\n  \"filter-variant-remove\": 987199,\n  \"finance\": 985119,\n  \"find-replace\": 984788,\n  \"fingerprint\": 983607,\n  \"fingerprint-off\": 986801,\n  \"fire\": 983608,\n  \"fire-alert\": 988631,\n  \"fire-circle\": 989191,\n  \"fire-extinguisher\": 986866,\n  \"fire-hydrant\": 987447,\n  \"fire-hydrant-alert\": 987448,\n  \"fire-hydrant-off\": 987449,\n  \"fire-off\": 988962,\n  \"fire-station\": 990403,\n  \"fire-truck\": 985259,\n  \"firebase\": 985447,\n  \"firefox\": 983609,\n  \"fireplace\": 986670,\n  \"fireplace-off\": 986671,\n  \"firewire\": 984510,\n  \"firework\": 986672,\n  \"firework-off\": 988963,\n  \"fish\": 983610,\n  \"fish-off\": 988147,\n  \"fishbowl\": 986867,\n  \"fishbowl-outline\": 986868,\n  \"fit-to-page\": 986869,\n  \"fit-to-page-outline\": 986870,\n  \"fit-to-screen\": 989428,\n  \"fit-to-screen-outline\": 989429,\n  \"flag\": 983611,\n  \"flag-checkered\": 983612,\n  \"flag-minus\": 986009,\n  \"flag-minus-outline\": 987314,\n  \"flag-off\": 989422,\n  \"flag-off-outline\": 989423,\n  \"flag-outline\": 983613,\n  \"flag-plus\": 986010,\n  \"flag-plus-outline\": 987315,\n  \"flag-remove\": 986011,\n  \"flag-remove-outline\": 987316,\n  \"flag-triangle\": 983615,\n  \"flag-variant\": 983616,\n  \"flag-variant-minus\": 990132,\n  \"flag-variant-minus-outline\": 990133,\n  \"flag-variant-off\": 990128,\n  \"flag-variant-off-outline\": 990129,\n  \"flag-variant-outline\": 983614,\n  \"flag-variant-plus\": 990130,\n  \"flag-variant-plus-outline\": 990131,\n  \"flag-variant-remove\": 990134,\n  \"flag-variant-remove-outline\": 990135,\n  \"flare\": 986482,\n  \"flash\": 983617,\n  \"flash-alert\": 986871,\n  \"flash-alert-outline\": 986872,\n  \"flash-auto\": 983618,\n  \"flash-off\": 983619,\n  \"flash-off-outline\": 990021,\n  \"flash-outline\": 984789,\n  \"flash-red-eye\": 984699,\n  \"flash-triangle\": 989981,\n  \"flash-triangle-outline\": 989982,\n  \"flashlight\": 983620,\n  \"flashlight-off\": 983621,\n  \"flask\": 983187,\n  \"flask-empty\": 983188,\n  \"flask-empty-minus\": 987706,\n  \"flask-empty-minus-outline\": 987707,\n  \"flask-empty-off\": 988148,\n  \"flask-empty-off-outline\": 988149,\n  \"flask-empty-outline\": 983189,\n  \"flask-empty-plus\": 987708,\n  \"flask-empty-plus-outline\": 987709,\n  \"flask-empty-remove\": 987710,\n  \"flask-empty-remove-outline\": 987711,\n  \"flask-minus\": 987712,\n  \"flask-minus-outline\": 987713,\n  \"flask-off\": 988150,\n  \"flask-off-outline\": 988151,\n  \"flask-outline\": 983190,\n  \"flask-plus\": 987714,\n  \"flask-plus-outline\": 987715,\n  \"flask-remove\": 987716,\n  \"flask-remove-outline\": 987717,\n  \"flask-round-bottom\": 987723,\n  \"flask-round-bottom-empty\": 987724,\n  \"flask-round-bottom-empty-outline\": 987725,\n  \"flask-round-bottom-outline\": 987726,\n  \"fleur-de-lis\": 987907,\n  \"flip-horizontal\": 987367,\n  \"flip-to-back\": 983623,\n  \"flip-to-front\": 983624,\n  \"flip-vertical\": 987368,\n  \"floor-lamp\": 985309,\n  \"floor-lamp-dual\": 987200,\n  \"floor-lamp-dual-outline\": 989134,\n  \"floor-lamp-outline\": 989128,\n  \"floor-lamp-torchiere\": 988999,\n  \"floor-lamp-torchiere-outline\": 989142,\n  \"floor-lamp-torchiere-variant\": 987201,\n  \"floor-lamp-torchiere-variant-outline\": 989135,\n  \"floor-plan\": 985121,\n  \"floppy\": 983625,\n  \"floppy-variant\": 985583,\n  \"flower\": 983626,\n  \"flower-outline\": 985584,\n  \"flower-pollen\": 989317,\n  \"flower-pollen-outline\": 989318,\n  \"flower-poppy\": 986376,\n  \"flower-tulip\": 985585,\n  \"flower-tulip-outline\": 985586,\n  \"focus-auto\": 986958,\n  \"focus-field\": 986959,\n  \"focus-field-horizontal\": 986960,\n  \"focus-field-vertical\": 986961,\n  \"folder\": 983627,\n  \"folder-account\": 983628,\n  \"folder-account-outline\": 986012,\n  \"folder-alert\": 986572,\n  \"folder-alert-outline\": 986573,\n  \"folder-arrow-down\": 989672,\n  \"folder-arrow-down-outline\": 989673,\n  \"folder-arrow-left\": 989674,\n  \"folder-arrow-left-outline\": 989675,\n  \"folder-arrow-left-right\": 989676,\n  \"folder-arrow-left-right-outline\": 989677,\n  \"folder-arrow-right\": 989678,\n  \"folder-arrow-right-outline\": 989679,\n  \"folder-arrow-up\": 989680,\n  \"folder-arrow-up-down\": 989681,\n  \"folder-arrow-up-down-outline\": 989682,\n  \"folder-arrow-up-outline\": 989683,\n  \"folder-cancel\": 989684,\n  \"folder-cancel-outline\": 989685,\n  \"folder-check\": 989566,\n  \"folder-check-outline\": 989567,\n  \"folder-clock\": 985786,\n  \"folder-clock-outline\": 985787,\n  \"folder-cog\": 987263,\n  \"folder-cog-outline\": 987264,\n  \"folder-download\": 983629,\n  \"folder-download-outline\": 987369,\n  \"folder-edit\": 985310,\n  \"folder-edit-outline\": 986574,\n  \"folder-eye\": 989066,\n  \"folder-eye-outline\": 989067,\n  \"folder-file\": 989686,\n  \"folder-file-outline\": 989687,\n  \"folder-google-drive\": 983630,\n  \"folder-heart\": 987370,\n  \"folder-heart-outline\": 987371,\n  \"folder-hidden\": 989086,\n  \"folder-home\": 987317,\n  \"folder-home-outline\": 987318,\n  \"folder-image\": 983631,\n  \"folder-information\": 987319,\n  \"folder-information-outline\": 987320,\n  \"folder-key\": 985260,\n  \"folder-key-network\": 985261,\n  \"folder-key-network-outline\": 986240,\n  \"folder-key-outline\": 987372,\n  \"folder-lock\": 983632,\n  \"folder-lock-open\": 983633,\n  \"folder-lock-open-outline\": 989863,\n  \"folder-lock-outline\": 989864,\n  \"folder-marker\": 987757,\n  \"folder-marker-outline\": 987758,\n  \"folder-minus\": 990025,\n  \"folder-minus-outline\": 990026,\n  \"folder-move\": 983634,\n  \"folder-move-outline\": 987718,\n  \"folder-multiple\": 983635,\n  \"folder-multiple-image\": 983636,\n  \"folder-multiple-outline\": 983637,\n  \"folder-multiple-plus\": 988286,\n  \"folder-multiple-plus-outline\": 988287,\n  \"folder-music\": 987993,\n  \"folder-music-outline\": 987994,\n  \"folder-network\": 985200,\n  \"folder-network-outline\": 986241,\n  \"folder-off\": 989688,\n  \"folder-off-outline\": 989689,\n  \"folder-open\": 984944,\n  \"folder-open-outline\": 986575,\n  \"folder-outline\": 983638,\n  \"folder-play\": 989690,\n  \"folder-play-outline\": 989691,\n  \"folder-plus\": 983639,\n  \"folder-plus-outline\": 986013,\n  \"folder-pound\": 986377,\n  \"folder-pound-outline\": 986378,\n  \"folder-question\": 989642,\n  \"folder-question-outline\": 989643,\n  \"folder-refresh\": 984905,\n  \"folder-refresh-outline\": 984386,\n  \"folder-remove\": 983640,\n  \"folder-remove-outline\": 986014,\n  \"folder-search\": 985448,\n  \"folder-search-outline\": 985449,\n  \"folder-settings\": 987261,\n  \"folder-settings-outline\": 987262,\n  \"folder-star\": 984733,\n  \"folder-star-multiple\": 988115,\n  \"folder-star-multiple-outline\": 988116,\n  \"folder-star-outline\": 986015,\n  \"folder-swap\": 987062,\n  \"folder-swap-outline\": 987063,\n  \"folder-sync\": 986379,\n  \"folder-sync-outline\": 986380,\n  \"folder-table\": 987875,\n  \"folder-table-outline\": 987876,\n  \"folder-text\": 986242,\n  \"folder-text-outline\": 986243,\n  \"folder-upload\": 983641,\n  \"folder-upload-outline\": 987373,\n  \"folder-wrench\": 989692,\n  \"folder-wrench-outline\": 989693,\n  \"folder-zip\": 984811,\n  \"folder-zip-outline\": 985017,\n  \"font-awesome\": 983098,\n  \"food\": 983642,\n  \"food-apple\": 983643,\n  \"food-apple-outline\": 986244,\n  \"food-croissant\": 985032,\n  \"food-drumstick\": 988191,\n  \"food-drumstick-off\": 988264,\n  \"food-drumstick-off-outline\": 988265,\n  \"food-drumstick-outline\": 988192,\n  \"food-fork-drink\": 984562,\n  \"food-halal\": 988530,\n  \"food-hot-dog\": 989259,\n  \"food-kosher\": 988531,\n  \"food-off\": 984563,\n  \"food-off-outline\": 989461,\n  \"food-outline\": 989462,\n  \"food-steak\": 988266,\n  \"food-steak-off\": 988267,\n  \"food-takeout-box\": 989238,\n  \"food-takeout-box-outline\": 989239,\n  \"food-turkey\": 988956,\n  \"food-variant\": 983644,\n  \"food-variant-off\": 988133,\n  \"foot-print\": 986962,\n  \"football\": 983645,\n  \"football-australian\": 983646,\n  \"football-helmet\": 983647,\n  \"forest\": 989335,\n  \"forest-outline\": 990307,\n  \"forklift\": 985033,\n  \"form-dropdown\": 988160,\n  \"form-select\": 988161,\n  \"form-textarea\": 987285,\n  \"form-textbox\": 984590,\n  \"form-textbox-lock\": 987997,\n  \"form-textbox-password\": 985077,\n  \"format-align-bottom\": 984915,\n  \"format-align-center\": 983648,\n  \"format-align-justify\": 983649,\n  \"format-align-left\": 983650,\n  \"format-align-middle\": 984916,\n  \"format-align-right\": 983651,\n  \"format-align-top\": 984917,\n  \"format-annotation-minus\": 985788,\n  \"format-annotation-plus\": 984646,\n  \"format-bold\": 983652,\n  \"format-clear\": 983653,\n  \"format-color-fill\": 983654,\n  \"format-color-highlight\": 986673,\n  \"format-color-marker-cancel\": 987923,\n  \"format-color-text\": 984734,\n  \"format-columns\": 985311,\n  \"format-float-center\": 983655,\n  \"format-float-left\": 983656,\n  \"format-float-none\": 983657,\n  \"format-float-right\": 983658,\n  \"format-font\": 984790,\n  \"format-font-size-decrease\": 985587,\n  \"format-font-size-increase\": 985588,\n  \"format-header-1\": 983659,\n  \"format-header-2\": 983660,\n  \"format-header-3\": 983661,\n  \"format-header-4\": 983662,\n  \"format-header-5\": 983663,\n  \"format-header-6\": 983664,\n  \"format-header-decrease\": 983665,\n  \"format-header-equal\": 983666,\n  \"format-header-increase\": 983667,\n  \"format-header-pound\": 983668,\n  \"format-horizontal-align-center\": 984606,\n  \"format-horizontal-align-left\": 984607,\n  \"format-horizontal-align-right\": 984608,\n  \"format-indent-decrease\": 983669,\n  \"format-indent-increase\": 983670,\n  \"format-italic\": 983671,\n  \"format-letter-case\": 985908,\n  \"format-letter-case-lower\": 985909,\n  \"format-letter-case-upper\": 985910,\n  \"format-letter-ends-with\": 987064,\n  \"format-letter-matches\": 987065,\n  \"format-letter-spacing\": 989526,\n  \"format-letter-spacing-variant\": 989947,\n  \"format-letter-starts-with\": 987066,\n  \"format-line-height\": 989948,\n  \"format-line-spacing\": 983672,\n  \"format-line-style\": 984520,\n  \"format-line-weight\": 984521,\n  \"format-list-bulleted\": 983673,\n  \"format-list-bulleted-square\": 986576,\n  \"format-list-bulleted-triangle\": 986802,\n  \"format-list-bulleted-type\": 983674,\n  \"format-list-checkbox\": 985450,\n  \"format-list-checks\": 984918,\n  \"format-list-group\": 989280,\n  \"format-list-group-plus\": 990038,\n  \"format-list-numbered\": 983675,\n  \"format-list-numbered-rtl\": 986381,\n  \"format-list-text\": 987759,\n  \"format-overline\": 986803,\n  \"format-page-break\": 984791,\n  \"format-page-split\": 989463,\n  \"format-paint\": 983676,\n  \"format-paragraph\": 983677,\n  \"format-paragraph-spacing\": 989949,\n  \"format-pilcrow\": 984792,\n  \"format-pilcrow-arrow-left\": 983686,\n  \"format-pilcrow-arrow-right\": 983685,\n  \"format-quote-close\": 983678,\n  \"format-quote-close-outline\": 987560,\n  \"format-quote-open\": 984919,\n  \"format-quote-open-outline\": 987559,\n  \"format-rotate-90\": 984746,\n  \"format-section\": 984735,\n  \"format-size\": 983679,\n  \"format-strikethrough\": 983680,\n  \"format-strikethrough-variant\": 983681,\n  \"format-subscript\": 983682,\n  \"format-superscript\": 983683,\n  \"format-text\": 983684,\n  \"format-text-rotation-angle-down\": 987067,\n  \"format-text-rotation-angle-up\": 987068,\n  \"format-text-rotation-down\": 986483,\n  \"format-text-rotation-down-vertical\": 987069,\n  \"format-text-rotation-none\": 986484,\n  \"format-text-rotation-up\": 987070,\n  \"format-text-rotation-vertical\": 987071,\n  \"format-text-variant\": 986674,\n  \"format-text-variant-outline\": 988431,\n  \"format-text-wrapping-clip\": 986382,\n  \"format-text-wrapping-overflow\": 986383,\n  \"format-text-wrapping-wrap\": 986384,\n  \"format-textbox\": 986385,\n  \"format-title\": 984564,\n  \"format-underline\": 983687,\n  \"format-underline-wavy\": 989417,\n  \"format-vertical-align-bottom\": 984609,\n  \"format-vertical-align-center\": 984610,\n  \"format-vertical-align-top\": 984611,\n  \"format-wrap-inline\": 983688,\n  \"format-wrap-square\": 983689,\n  \"format-wrap-tight\": 983690,\n  \"format-wrap-top-bottom\": 983691,\n  \"forum\": 983692,\n  \"forum-minus\": 989865,\n  \"forum-minus-outline\": 989866,\n  \"forum-outline\": 985122,\n  \"forum-plus\": 989867,\n  \"forum-plus-outline\": 989868,\n  \"forum-remove\": 989869,\n  \"forum-remove-outline\": 989870,\n  \"forward\": 983693,\n  \"forwardburger\": 986485,\n  \"fountain\": 985451,\n  \"fountain-pen\": 986386,\n  \"fountain-pen-tip\": 986387,\n  \"fraction-one-half\": 989586,\n  \"freebsd\": 985312,\n  \"french-fries\": 989527,\n  \"frequently-asked-questions\": 986804,\n  \"fridge\": 983696,\n  \"fridge-alert\": 987569,\n  \"fridge-alert-outline\": 987570,\n  \"fridge-bottom\": 983698,\n  \"fridge-industrial\": 988654,\n  \"fridge-industrial-alert\": 988655,\n  \"fridge-industrial-alert-outline\": 988656,\n  \"fridge-industrial-off\": 988657,\n  \"fridge-industrial-off-outline\": 988658,\n  \"fridge-industrial-outline\": 988659,\n  \"fridge-off\": 987567,\n  \"fridge-off-outline\": 987568,\n  \"fridge-outline\": 983695,\n  \"fridge-top\": 983697,\n  \"fridge-variant\": 988660,\n  \"fridge-variant-alert\": 988661,\n  \"fridge-variant-alert-outline\": 988662,\n  \"fridge-variant-off\": 988663,\n  \"fridge-variant-off-outline\": 988664,\n  \"fridge-variant-outline\": 988665,\n  \"fruit-cherries\": 987202,\n  \"fruit-cherries-off\": 988152,\n  \"fruit-citrus\": 987203,\n  \"fruit-citrus-off\": 988153,\n  \"fruit-grapes\": 987204,\n  \"fruit-grapes-outline\": 987205,\n  \"fruit-pear\": 989710,\n  \"fruit-pineapple\": 987206,\n  \"fruit-watermelon\": 987207,\n  \"fuel\": 985034,\n  \"fuel-cell\": 989365,\n  \"fullscreen\": 983699,\n  \"fullscreen-exit\": 983700,\n  \"function\": 983701,\n  \"function-variant\": 985201,\n  \"furigana-horizontal\": 987265,\n  \"furigana-vertical\": 987266,\n  \"fuse\": 986245,\n  \"fuse-alert\": 988205,\n  \"fuse-blade\": 986246,\n  \"fuse-off\": 988204,\n  \"gamepad\": 983702,\n  \"gamepad-circle\": 986675,\n  \"gamepad-circle-down\": 986676,\n  \"gamepad-circle-left\": 986677,\n  \"gamepad-circle-outline\": 986678,\n  \"gamepad-circle-right\": 986679,\n  \"gamepad-circle-up\": 986680,\n  \"gamepad-down\": 986681,\n  \"gamepad-left\": 986682,\n  \"gamepad-outline\": 989465,\n  \"gamepad-right\": 986683,\n  \"gamepad-round\": 986684,\n  \"gamepad-round-down\": 986685,\n  \"gamepad-round-left\": 986686,\n  \"gamepad-round-outline\": 986687,\n  \"gamepad-round-right\": 986688,\n  \"gamepad-round-up\": 986689,\n  \"gamepad-square\": 986805,\n  \"gamepad-square-outline\": 986806,\n  \"gamepad-up\": 986690,\n  \"gamepad-variant\": 983703,\n  \"gamepad-variant-outline\": 986807,\n  \"gamma\": 987374,\n  \"gantry-crane\": 986577,\n  \"garage\": 984793,\n  \"garage-alert\": 985202,\n  \"garage-alert-variant\": 987861,\n  \"garage-lock\": 989179,\n  \"garage-open\": 984794,\n  \"garage-open-variant\": 987860,\n  \"garage-variant\": 987859,\n  \"garage-variant-lock\": 989180,\n  \"gas-burner\": 989723,\n  \"gas-cylinder\": 984647,\n  \"gas-station\": 983704,\n  \"gas-station-in-use\": 990404,\n  \"gas-station-in-use-outline\": 990405,\n  \"gas-station-off\": 988169,\n  \"gas-station-off-outline\": 988170,\n  \"gas-station-outline\": 986808,\n  \"gate\": 983705,\n  \"gate-alert\": 989176,\n  \"gate-and\": 985313,\n  \"gate-arrow-left\": 989175,\n  \"gate-arrow-right\": 987497,\n  \"gate-buffer\": 989950,\n  \"gate-nand\": 985314,\n  \"gate-nor\": 985315,\n  \"gate-not\": 985316,\n  \"gate-open\": 987498,\n  \"gate-or\": 985317,\n  \"gate-xnor\": 985318,\n  \"gate-xor\": 985319,\n  \"gatsby\": 986691,\n  \"gauge\": 983706,\n  \"gauge-empty\": 985203,\n  \"gauge-full\": 985204,\n  \"gauge-low\": 985205,\n  \"gavel\": 983707,\n  \"gender-female\": 983708,\n  \"gender-male\": 983709,\n  \"gender-male-female\": 983710,\n  \"gender-male-female-variant\": 987455,\n  \"gender-non-binary\": 987456,\n  \"gender-transgender\": 983711,\n  \"generator-mobile\": 990346,\n  \"generator-portable\": 990347,\n  \"generator-stationary\": 990348,\n  \"gentoo\": 985320,\n  \"gesture\": 985035,\n  \"gesture-double-tap\": 984892,\n  \"gesture-pinch\": 985789,\n  \"gesture-spread\": 985790,\n  \"gesture-swipe\": 986486,\n  \"gesture-swipe-down\": 984893,\n  \"gesture-swipe-horizontal\": 985791,\n  \"gesture-swipe-left\": 984894,\n  \"gesture-swipe-right\": 984895,\n  \"gesture-swipe-up\": 984896,\n  \"gesture-swipe-vertical\": 985792,\n  \"gesture-tap\": 984897,\n  \"gesture-tap-box\": 987817,\n  \"gesture-tap-button\": 987816,\n  \"gesture-tap-hold\": 986487,\n  \"gesture-two-double-tap\": 984898,\n  \"gesture-two-tap\": 984899,\n  \"ghost\": 983712,\n  \"ghost-off\": 985589,\n  \"ghost-off-outline\": 988764,\n  \"ghost-outline\": 988765,\n  \"gift\": 986692,\n  \"gift-off\": 988911,\n  \"gift-off-outline\": 988912,\n  \"gift-open\": 988913,\n  \"gift-open-outline\": 988914,\n  \"gift-outline\": 983713,\n  \"git\": 983714,\n  \"github\": 983716,\n  \"gitlab\": 986016,\n  \"glass-cocktail\": 983894,\n  \"glass-cocktail-off\": 988646,\n  \"glass-flute\": 983717,\n  \"glass-fragile\": 989299,\n  \"glass-mug\": 983718,\n  \"glass-mug-off\": 988647,\n  \"glass-mug-variant\": 987414,\n  \"glass-mug-variant-off\": 988648,\n  \"glass-pint-outline\": 987917,\n  \"glass-stange\": 983719,\n  \"glass-tulip\": 983720,\n  \"glass-wine\": 985206,\n  \"glasses\": 983722,\n  \"globe-light\": 984687,\n  \"globe-light-outline\": 987863,\n  \"globe-model\": 985321,\n  \"gmail\": 983723,\n  \"gnome\": 983724,\n  \"go-kart\": 986489,\n  \"go-kart-track\": 986490,\n  \"gog\": 986017,\n  \"gold\": 987727,\n  \"golf\": 985123,\n  \"golf-cart\": 987556,\n  \"golf-tee\": 987267,\n  \"gondola\": 984710,\n  \"goodreads\": 986491,\n  \"google\": 983725,\n  \"google-ads\": 986247,\n  \"google-analytics\": 985036,\n  \"google-assistant\": 985037,\n  \"google-cardboard\": 983726,\n  \"google-chrome\": 983727,\n  \"google-circles\": 983728,\n  \"google-circles-communities\": 983729,\n  \"google-circles-extended\": 983730,\n  \"google-circles-group\": 983731,\n  \"google-classroom\": 983744,\n  \"google-cloud\": 987638,\n  \"google-downasaur\": 988002,\n  \"google-drive\": 983734,\n  \"google-earth\": 983735,\n  \"google-fit\": 985452,\n  \"google-glass\": 983736,\n  \"google-hangouts\": 983753,\n  \"google-keep\": 984796,\n  \"google-lens\": 985590,\n  \"google-maps\": 984565,\n  \"google-my-business\": 987208,\n  \"google-nearby\": 983737,\n  \"google-play\": 983740,\n  \"google-plus\": 983741,\n  \"google-podcast\": 986809,\n  \"google-spreadsheet\": 985591,\n  \"google-street-view\": 986248,\n  \"google-translate\": 983743,\n  \"gradient-horizontal\": 989002,\n  \"gradient-vertical\": 984736,\n  \"grain\": 986492,\n  \"graph\": 987209,\n  \"graph-outline\": 987210,\n  \"graphql\": 985207,\n  \"grass\": 988432,\n  \"grave-stone\": 986018,\n  \"grease-pencil\": 984648,\n  \"greater-than\": 985453,\n  \"greater-than-or-equal\": 985454,\n  \"greenhouse\": 983085,\n  \"grid\": 983745,\n  \"grid-large\": 984920,\n  \"grid-off\": 983746,\n  \"grill\": 986693,\n  \"grill-outline\": 987530,\n  \"group\": 983747,\n  \"guitar-acoustic\": 984945,\n  \"guitar-electric\": 983748,\n  \"guitar-pick\": 983749,\n  \"guitar-pick-outline\": 983750,\n  \"guy-fawkes-mask\": 985125,\n  \"gymnastics\": 989761,\n  \"hail\": 985793,\n  \"hair-dryer\": 987375,\n  \"hair-dryer-outline\": 987376,\n  \"halloween\": 986019,\n  \"hamburger\": 984709,\n  \"hamburger-check\": 989046,\n  \"hamburger-minus\": 989047,\n  \"hamburger-off\": 989048,\n  \"hamburger-plus\": 989049,\n  \"hamburger-remove\": 989050,\n  \"hammer\": 985322,\n  \"hammer-screwdriver\": 987938,\n  \"hammer-sickle\": 989319,\n  \"hammer-wrench\": 987939,\n  \"hand-back-left\": 986694,\n  \"hand-back-left-off\": 989232,\n  \"hand-back-left-off-outline\": 989234,\n  \"hand-back-left-outline\": 989228,\n  \"hand-back-right\": 986695,\n  \"hand-back-right-off\": 989233,\n  \"hand-back-right-off-outline\": 989235,\n  \"hand-back-right-outline\": 989229,\n  \"hand-clap\": 989515,\n  \"hand-clap-off\": 989762,\n  \"hand-coin\": 989327,\n  \"hand-coin-outline\": 989328,\n  \"hand-cycle\": 990108,\n  \"hand-extended\": 989366,\n  \"hand-extended-outline\": 989367,\n  \"hand-front-left\": 989227,\n  \"hand-front-left-outline\": 989230,\n  \"hand-front-right\": 985679,\n  \"hand-front-right-outline\": 989231,\n  \"hand-heart\": 987377,\n  \"hand-heart-outline\": 988542,\n  \"hand-okay\": 985680,\n  \"hand-peace\": 985681,\n  \"hand-peace-variant\": 985682,\n  \"hand-pointing-down\": 985683,\n  \"hand-pointing-left\": 985684,\n  \"hand-pointing-right\": 983751,\n  \"hand-pointing-up\": 985685,\n  \"hand-saw\": 986696,\n  \"hand-wash\": 988543,\n  \"hand-wash-outline\": 988544,\n  \"hand-water\": 988063,\n  \"hand-wave\": 989217,\n  \"hand-wave-outline\": 989218,\n  \"handball\": 986963,\n  \"handcuffs\": 987454,\n  \"hands-pray\": 984441,\n  \"handshake\": 987672,\n  \"handshake-outline\": 988577,\n  \"hanger\": 983752,\n  \"hard-hat\": 985455,\n  \"harddisk\": 983754,\n  \"harddisk-plus\": 987211,\n  \"harddisk-remove\": 987212,\n  \"hat-fedora\": 986020,\n  \"hazard-lights\": 986249,\n  \"hdmi-port\": 990136,\n  \"hdr\": 986493,\n  \"hdr-off\": 986494,\n  \"head\": 987998,\n  \"head-alert\": 987960,\n  \"head-alert-outline\": 987961,\n  \"head-check\": 987962,\n  \"head-check-outline\": 987963,\n  \"head-cog\": 987964,\n  \"head-cog-outline\": 987965,\n  \"head-dots-horizontal\": 987966,\n  \"head-dots-horizontal-outline\": 987967,\n  \"head-flash\": 987968,\n  \"head-flash-outline\": 987969,\n  \"head-heart\": 987970,\n  \"head-heart-outline\": 987971,\n  \"head-lightbulb\": 987972,\n  \"head-lightbulb-outline\": 987973,\n  \"head-minus\": 987974,\n  \"head-minus-outline\": 987975,\n  \"head-outline\": 987999,\n  \"head-plus\": 987976,\n  \"head-plus-outline\": 987977,\n  \"head-question\": 987978,\n  \"head-question-outline\": 987979,\n  \"head-remove\": 987980,\n  \"head-remove-outline\": 987981,\n  \"head-snowflake\": 987982,\n  \"head-snowflake-outline\": 987983,\n  \"head-sync\": 987984,\n  \"head-sync-outline\": 987985,\n  \"headphones\": 983755,\n  \"headphones-bluetooth\": 985456,\n  \"headphones-box\": 983756,\n  \"headphones-off\": 985038,\n  \"headphones-settings\": 983757,\n  \"headset\": 983758,\n  \"headset-dock\": 983759,\n  \"headset-off\": 983760,\n  \"heart\": 983761,\n  \"heart-box\": 983762,\n  \"heart-box-outline\": 983763,\n  \"heart-broken\": 983764,\n  \"heart-broken-outline\": 986388,\n  \"heart-circle\": 985457,\n  \"heart-circle-outline\": 985458,\n  \"heart-cog\": 988771,\n  \"heart-cog-outline\": 988772,\n  \"heart-flash\": 986873,\n  \"heart-half\": 984799,\n  \"heart-half-full\": 984798,\n  \"heart-half-outline\": 984800,\n  \"heart-minus\": 988207,\n  \"heart-minus-outline\": 988210,\n  \"heart-multiple\": 985686,\n  \"heart-multiple-outline\": 985687,\n  \"heart-off\": 984921,\n  \"heart-off-outline\": 988212,\n  \"heart-outline\": 983765,\n  \"heart-plus\": 988206,\n  \"heart-plus-outline\": 988209,\n  \"heart-pulse\": 984566,\n  \"heart-remove\": 988208,\n  \"heart-remove-outline\": 988211,\n  \"heart-search\": 990349,\n  \"heart-settings\": 988773,\n  \"heart-settings-outline\": 988774,\n  \"heat-pump\": 989763,\n  \"heat-pump-outline\": 989764,\n  \"heat-wave\": 989765,\n  \"heating-coil\": 989871,\n  \"helicopter\": 985794,\n  \"help\": 983766,\n  \"help-box\": 984971,\n  \"help-box-multiple\": 990218,\n  \"help-box-multiple-outline\": 990219,\n  \"help-box-outline\": 990220,\n  \"help-circle\": 983767,\n  \"help-circle-outline\": 984613,\n  \"help-network\": 984821,\n  \"help-network-outline\": 986250,\n  \"help-rhombus\": 986021,\n  \"help-rhombus-outline\": 986022,\n  \"hexadecimal\": 987815,\n  \"hexagon\": 983768,\n  \"hexagon-multiple\": 984801,\n  \"hexagon-multiple-outline\": 987378,\n  \"hexagon-outline\": 983769,\n  \"hexagon-slice-1\": 985795,\n  \"hexagon-slice-2\": 985796,\n  \"hexagon-slice-3\": 985797,\n  \"hexagon-slice-4\": 985798,\n  \"hexagon-slice-5\": 985799,\n  \"hexagon-slice-6\": 985800,\n  \"hexagram\": 985801,\n  \"hexagram-outline\": 985802,\n  \"high-definition\": 985039,\n  \"high-definition-box\": 985208,\n  \"highway\": 984567,\n  \"hiking\": 986495,\n  \"history\": 983770,\n  \"hockey-puck\": 985209,\n  \"hockey-sticks\": 985210,\n  \"hololens\": 983771,\n  \"home\": 983772,\n  \"home-account\": 985126,\n  \"home-alert\": 985211,\n  \"home-alert-outline\": 988624,\n  \"home-analytics\": 986810,\n  \"home-assistant\": 985040,\n  \"home-automation\": 985041,\n  \"home-battery\": 989441,\n  \"home-battery-outline\": 989442,\n  \"home-circle\": 985042,\n  \"home-circle-outline\": 987213,\n  \"home-city\": 986389,\n  \"home-city-outline\": 986390,\n  \"home-clock\": 989714,\n  \"home-clock-outline\": 989715,\n  \"home-edit\": 987481,\n  \"home-edit-outline\": 987482,\n  \"home-export-outline\": 987035,\n  \"home-flood\": 986874,\n  \"home-floor-0\": 986578,\n  \"home-floor-1\": 986496,\n  \"home-floor-2\": 986497,\n  \"home-floor-3\": 986498,\n  \"home-floor-a\": 986499,\n  \"home-floor-b\": 986500,\n  \"home-floor-g\": 986501,\n  \"home-floor-l\": 986502,\n  \"home-floor-negative-1\": 986579,\n  \"home-group\": 986580,\n  \"home-group-minus\": 989633,\n  \"home-group-plus\": 989632,\n  \"home-group-remove\": 989634,\n  \"home-heart\": 985127,\n  \"home-import-outline\": 987036,\n  \"home-lightbulb\": 987729,\n  \"home-lightbulb-outline\": 987730,\n  \"home-lightning-bolt\": 989443,\n  \"home-lightning-bolt-outline\": 989444,\n  \"home-lock\": 985323,\n  \"home-lock-open\": 985324,\n  \"home-map-marker\": 984568,\n  \"home-minus\": 985460,\n  \"home-minus-outline\": 988117,\n  \"home-modern\": 983773,\n  \"home-off\": 989766,\n  \"home-off-outline\": 989767,\n  \"home-outline\": 984737,\n  \"home-percent\": 990332,\n  \"home-percent-outline\": 990333,\n  \"home-plus\": 985461,\n  \"home-plus-outline\": 988118,\n  \"home-remove\": 987719,\n  \"home-remove-outline\": 988119,\n  \"home-roof\": 987435,\n  \"home-search\": 988080,\n  \"home-search-outline\": 988081,\n  \"home-silo\": 990112,\n  \"home-silo-outline\": 990113,\n  \"home-sound-in\": 990255,\n  \"home-sound-in-outline\": 990256,\n  \"home-sound-out\": 990257,\n  \"home-sound-out-outline\": 990258,\n  \"home-switch\": 989076,\n  \"home-switch-outline\": 989077,\n  \"home-thermometer\": 986964,\n  \"home-thermometer-outline\": 986965,\n  \"home-variant\": 983774,\n  \"home-variant-outline\": 986023,\n  \"hook\": 984802,\n  \"hook-off\": 984803,\n  \"hoop-house\": 986710,\n  \"hops\": 983775,\n  \"horizontal-rotate-clockwise\": 987379,\n  \"horizontal-rotate-counterclockwise\": 987380,\n  \"horse\": 988607,\n  \"horse-human\": 988608,\n  \"horse-variant\": 988609,\n  \"horse-variant-fast\": 989294,\n  \"horseshoe\": 985688,\n  \"hospital\": 987126,\n  \"hospital-box\": 983776,\n  \"hospital-box-outline\": 987127,\n  \"hospital-building\": 983777,\n  \"hospital-marker\": 983778,\n  \"hot-tub\": 985128,\n  \"hours-12\": 990356,\n  \"hours-24\": 988280,\n  \"hub\": 990357,\n  \"hub-outline\": 990358,\n  \"hubspot\": 986391,\n  \"hulu\": 985129,\n  \"human\": 983782,\n  \"human-baby-changing-table\": 988043,\n  \"human-cane\": 988545,\n  \"human-capacity-decrease\": 988571,\n  \"human-capacity-increase\": 988572,\n  \"human-child\": 983783,\n  \"human-dolly\": 989568,\n  \"human-edit\": 988392,\n  \"human-female\": 984649,\n  \"human-female-boy\": 985689,\n  \"human-female-dance\": 988617,\n  \"human-female-female\": 985690,\n  \"human-female-female-child\": 990350,\n  \"human-female-girl\": 985691,\n  \"human-greeting\": 989124,\n  \"human-greeting-proximity\": 988573,\n  \"human-greeting-variant\": 984650,\n  \"human-handsdown\": 984651,\n  \"human-handsup\": 984652,\n  \"human-male\": 984653,\n  \"human-male-board\": 985232,\n  \"human-male-board-poll\": 985158,\n  \"human-male-boy\": 985692,\n  \"human-male-child\": 988044,\n  \"human-male-female\": 983784,\n  \"human-male-female-child\": 989219,\n  \"human-male-girl\": 985693,\n  \"human-male-height\": 986875,\n  \"human-male-height-variant\": 986876,\n  \"human-male-male\": 985694,\n  \"human-male-male-child\": 990351,\n  \"human-non-binary\": 989256,\n  \"human-pregnant\": 984527,\n  \"human-queue\": 988529,\n  \"human-scooter\": 987625,\n  \"human-walker\": 990065,\n  \"human-wheelchair\": 988045,\n  \"human-white-cane\": 989569,\n  \"humble-bundle\": 984900,\n  \"hvac\": 987986,\n  \"hvac-off\": 988574,\n  \"hydraulic-oil-level\": 987940,\n  \"hydraulic-oil-temperature\": 987941,\n  \"hydro-power\": 987877,\n  \"hydrogen-station\": 989332,\n  \"ice-cream\": 985130,\n  \"ice-cream-off\": 986706,\n  \"ice-pop\": 986877,\n  \"id-card\": 987072,\n  \"identifier\": 986878,\n  \"ideogram-cjk\": 987953,\n  \"ideogram-cjk-variant\": 987954,\n  \"image\": 983785,\n  \"image-album\": 983786,\n  \"image-area\": 983787,\n  \"image-area-close\": 983788,\n  \"image-auto-adjust\": 987073,\n  \"image-broken\": 983789,\n  \"image-broken-variant\": 983790,\n  \"image-check\": 989989,\n  \"image-check-outline\": 989990,\n  \"image-edit\": 987619,\n  \"image-edit-outline\": 987620,\n  \"image-filter-black-white\": 983792,\n  \"image-filter-center-focus\": 983793,\n  \"image-filter-center-focus-strong\": 986879,\n  \"image-filter-center-focus-strong-outline\": 986880,\n  \"image-filter-center-focus-weak\": 983794,\n  \"image-filter-drama\": 983795,\n  \"image-filter-drama-outline\": 990207,\n  \"image-filter-frames\": 983796,\n  \"image-filter-hdr\": 983797,\n  \"image-filter-hdr-outline\": 990308,\n  \"image-filter-none\": 983798,\n  \"image-filter-tilt-shift\": 983799,\n  \"image-filter-vintage\": 983800,\n  \"image-frame\": 986697,\n  \"image-lock\": 989872,\n  \"image-lock-outline\": 989873,\n  \"image-marker\": 989051,\n  \"image-marker-outline\": 989052,\n  \"image-minus\": 988185,\n  \"image-minus-outline\": 990023,\n  \"image-move\": 985592,\n  \"image-multiple\": 983801,\n  \"image-multiple-outline\": 983791,\n  \"image-off\": 985131,\n  \"image-off-outline\": 987601,\n  \"image-outline\": 985462,\n  \"image-plus\": 985212,\n  \"image-plus-outline\": 990022,\n  \"image-refresh\": 989694,\n  \"image-refresh-outline\": 989695,\n  \"image-remove\": 988184,\n  \"image-remove-outline\": 990024,\n  \"image-search\": 985463,\n  \"image-search-outline\": 985464,\n  \"image-size-select-actual\": 986253,\n  \"image-size-select-large\": 986254,\n  \"image-size-select-small\": 986255,\n  \"image-sync\": 989696,\n  \"image-sync-outline\": 989697,\n  \"image-text\": 988685,\n  \"import\": 983802,\n  \"inbox\": 984711,\n  \"inbox-arrow-down\": 983803,\n  \"inbox-arrow-down-outline\": 987760,\n  \"inbox-arrow-up\": 984017,\n  \"inbox-arrow-up-outline\": 987761,\n  \"inbox-full\": 987762,\n  \"inbox-full-outline\": 987763,\n  \"inbox-multiple\": 985264,\n  \"inbox-multiple-outline\": 986024,\n  \"inbox-outline\": 987764,\n  \"inbox-remove\": 988575,\n  \"inbox-remove-outline\": 988576,\n  \"incognito\": 984569,\n  \"incognito-circle\": 988193,\n  \"incognito-circle-off\": 988194,\n  \"incognito-off\": 983157,\n  \"induction\": 989260,\n  \"infinity\": 984804,\n  \"information\": 983804,\n  \"information-box\": 990309,\n  \"information-box-outline\": 990310,\n  \"information-off\": 989068,\n  \"information-off-outline\": 989069,\n  \"information-outline\": 983805,\n  \"information-slab-box\": 990311,\n  \"information-slab-box-outline\": 990312,\n  \"information-slab-circle\": 990313,\n  \"information-slab-circle-outline\": 990314,\n  \"information-slab-symbol\": 990315,\n  \"information-symbol\": 990316,\n  \"information-variant\": 984654,\n  \"information-variant-box\": 990317,\n  \"information-variant-box-outline\": 990318,\n  \"information-variant-circle\": 990319,\n  \"information-variant-circle-outline\": 990320,\n  \"instagram\": 983806,\n  \"instrument-triangle\": 987214,\n  \"integrated-circuit-chip\": 989459,\n  \"invert-colors\": 983809,\n  \"invert-colors-off\": 986698,\n  \"invoice\": 990418,\n  \"invoice-arrow-left\": 990419,\n  \"invoice-arrow-left-outline\": 990420,\n  \"invoice-arrow-right\": 990421,\n  \"invoice-arrow-right-outline\": 990422,\n  \"invoice-check\": 990423,\n  \"invoice-check-outline\": 990424,\n  \"invoice-clock\": 990425,\n  \"invoice-clock-outline\": 990426,\n  \"invoice-edit\": 990427,\n  \"invoice-edit-outline\": 990428,\n  \"invoice-export-outline\": 990429,\n  \"invoice-fast\": 990430,\n  \"invoice-fast-outline\": 990431,\n  \"invoice-import\": 990432,\n  \"invoice-import-outline\": 990433,\n  \"invoice-list\": 990434,\n  \"invoice-list-outline\": 990435,\n  \"invoice-minus\": 990436,\n  \"invoice-minus-outline\": 990437,\n  \"invoice-multiple\": 990438,\n  \"invoice-multiple-outline\": 990439,\n  \"invoice-outline\": 990440,\n  \"invoice-plus\": 990441,\n  \"invoice-plus-outline\": 990442,\n  \"invoice-remove\": 990443,\n  \"invoice-remove-outline\": 990444,\n  \"invoice-send\": 990445,\n  \"invoice-send-outline\": 990446,\n  \"invoice-text\": 990447,\n  \"invoice-text-arrow-left\": 990448,\n  \"invoice-text-arrow-left-outline\": 990449,\n  \"invoice-text-arrow-right\": 990450,\n  \"invoice-text-arrow-right-outline\": 990451,\n  \"invoice-text-check\": 990452,\n  \"invoice-text-check-outline\": 990453,\n  \"invoice-text-clock\": 990454,\n  \"invoice-text-clock-outline\": 990455,\n  \"invoice-text-edit\": 990456,\n  \"invoice-text-edit-outline\": 990457,\n  \"invoice-text-fast\": 990458,\n  \"invoice-text-fast-outline\": 990459,\n  \"invoice-text-minus\": 990460,\n  \"invoice-text-minus-outline\": 990461,\n  \"invoice-text-multiple\": 990462,\n  \"invoice-text-multiple-outline\": 990463,\n  \"invoice-text-outline\": 990464,\n  \"invoice-text-plus\": 990465,\n  \"invoice-text-plus-outline\": 990466,\n  \"invoice-text-remove\": 990467,\n  \"invoice-text-remove-outline\": 990468,\n  \"invoice-text-send\": 990469,\n  \"invoice-text-send-outline\": 990470,\n  \"iobroker\": 987880,\n  \"ip\": 985695,\n  \"ip-network\": 985696,\n  \"ip-network-outline\": 986256,\n  \"ip-outline\": 989570,\n  \"ipod\": 986257,\n  \"iron\": 989220,\n  \"iron-board\": 989240,\n  \"iron-outline\": 989221,\n  \"island\": 987215,\n  \"island-variant\": 990406,\n  \"iv-bag\": 987321,\n  \"jabber\": 986581,\n  \"jeepney\": 983810,\n  \"jellyfish\": 986881,\n  \"jellyfish-outline\": 986882,\n  \"jira\": 983811,\n  \"jquery\": 985213,\n  \"jsfiddle\": 983812,\n  \"jump-rope\": 987903,\n  \"kabaddi\": 986503,\n  \"kangaroo\": 988504,\n  \"karate\": 985132,\n  \"kayaking\": 985263,\n  \"keg\": 983813,\n  \"kettle\": 984570,\n  \"kettle-alert\": 987927,\n  \"kettle-alert-outline\": 987928,\n  \"kettle-off\": 987931,\n  \"kettle-off-outline\": 987932,\n  \"kettle-outline\": 986966,\n  \"kettle-pour-over\": 988988,\n  \"kettle-steam\": 987929,\n  \"kettle-steam-outline\": 987930,\n  \"kettlebell\": 987904,\n  \"key\": 983814,\n  \"key-alert\": 989571,\n  \"key-alert-outline\": 989572,\n  \"key-arrow-right\": 987922,\n  \"key-chain\": 988532,\n  \"key-chain-variant\": 988533,\n  \"key-change\": 983815,\n  \"key-link\": 987551,\n  \"key-minus\": 983816,\n  \"key-outline\": 986582,\n  \"key-plus\": 983817,\n  \"key-remove\": 983818,\n  \"key-star\": 987550,\n  \"key-variant\": 983819,\n  \"key-wireless\": 987074,\n  \"keyboard\": 983820,\n  \"keyboard-backspace\": 983821,\n  \"keyboard-caps\": 983822,\n  \"keyboard-close\": 983823,\n  \"keyboard-close-outline\": 990208,\n  \"keyboard-esc\": 987831,\n  \"keyboard-f1\": 987819,\n  \"keyboard-f10\": 987828,\n  \"keyboard-f11\": 987829,\n  \"keyboard-f12\": 987830,\n  \"keyboard-f2\": 987820,\n  \"keyboard-f3\": 987821,\n  \"keyboard-f4\": 987822,\n  \"keyboard-f5\": 987823,\n  \"keyboard-f6\": 987824,\n  \"keyboard-f7\": 987825,\n  \"keyboard-f8\": 987826,\n  \"keyboard-f9\": 987827,\n  \"keyboard-off\": 983824,\n  \"keyboard-off-outline\": 986699,\n  \"keyboard-outline\": 985467,\n  \"keyboard-return\": 983825,\n  \"keyboard-settings\": 985593,\n  \"keyboard-settings-outline\": 985594,\n  \"keyboard-space\": 987216,\n  \"keyboard-tab\": 983826,\n  \"keyboard-tab-reverse\": 983845,\n  \"keyboard-variant\": 983827,\n  \"khanda\": 987389,\n  \"kickstarter\": 984901,\n  \"kite\": 989573,\n  \"kite-outline\": 989574,\n  \"kitesurfing\": 988996,\n  \"klingon\": 987995,\n  \"knife\": 985595,\n  \"knife-military\": 985596,\n  \"knob\": 990102,\n  \"koala\": 988991,\n  \"kodi\": 983828,\n  \"kubernetes\": 987390,\n  \"label\": 983829,\n  \"label-multiple\": 988021,\n  \"label-multiple-outline\": 988022,\n  \"label-off\": 985803,\n  \"label-off-outline\": 985804,\n  \"label-outline\": 983830,\n  \"label-percent\": 987882,\n  \"label-percent-outline\": 987883,\n  \"label-variant\": 985805,\n  \"label-variant-outline\": 985806,\n  \"ladder\": 988578,\n  \"ladybug\": 985133,\n  \"lambda\": 984615,\n  \"lamp\": 984757,\n  \"lamp-outline\": 989136,\n  \"lamps\": 988534,\n  \"lamps-outline\": 989137,\n  \"lan\": 983831,\n  \"lan-check\": 987818,\n  \"lan-connect\": 983832,\n  \"lan-disconnect\": 983833,\n  \"lan-pending\": 983834,\n  \"land-fields\": 989874,\n  \"land-plots\": 989875,\n  \"land-plots-circle\": 989876,\n  \"land-plots-circle-variant\": 989877,\n  \"land-plots-marker\": 990301,\n  \"land-rows-horizontal\": 989878,\n  \"land-rows-vertical\": 989879,\n  \"landslide\": 989768,\n  \"landslide-outline\": 989769,\n  \"language-c\": 984689,\n  \"language-cpp\": 984690,\n  \"language-csharp\": 983835,\n  \"language-css3\": 983836,\n  \"language-fortran\": 987674,\n  \"language-go\": 985043,\n  \"language-haskell\": 986258,\n  \"language-html5\": 983837,\n  \"language-java\": 985911,\n  \"language-javascript\": 983838,\n  \"language-kotlin\": 987673,\n  \"language-lua\": 985265,\n  \"language-markdown\": 983892,\n  \"language-markdown-outline\": 986971,\n  \"language-php\": 983839,\n  \"language-python\": 983840,\n  \"language-r\": 985044,\n  \"language-ruby\": 986413,\n  \"language-ruby-on-rails\": 985807,\n  \"language-rust\": 988695,\n  \"language-swift\": 984805,\n  \"language-typescript\": 984806,\n  \"language-xaml\": 984691,\n  \"laptop\": 983842,\n  \"laptop-account\": 989770,\n  \"laptop-off\": 984807,\n  \"laravel\": 985808,\n  \"laser-pointer\": 988292,\n  \"lasso\": 986883,\n  \"lastpass\": 984134,\n  \"latitude\": 986967,\n  \"launch\": 983847,\n  \"lava-lamp\": 985045,\n  \"layers\": 983848,\n  \"layers-edit\": 989330,\n  \"layers-minus\": 986700,\n  \"layers-off\": 983849,\n  \"layers-off-outline\": 985597,\n  \"layers-outline\": 985598,\n  \"layers-plus\": 986701,\n  \"layers-remove\": 986702,\n  \"layers-search\": 987654,\n  \"layers-search-outline\": 987655,\n  \"layers-triple\": 986968,\n  \"layers-triple-outline\": 986969,\n  \"lead-pencil\": 984655,\n  \"leaf\": 983850,\n  \"leaf-circle\": 989445,\n  \"leaf-circle-outline\": 989446,\n  \"leaf-maple\": 986259,\n  \"leaf-maple-off\": 987866,\n  \"leaf-off\": 987865,\n  \"leak\": 986583,\n  \"leak-off\": 986584,\n  \"lectern\": 989936,\n  \"led-off\": 983851,\n  \"led-on\": 983852,\n  \"led-outline\": 983853,\n  \"led-strip\": 985046,\n  \"led-strip-variant\": 987217,\n  \"led-strip-variant-off\": 989771,\n  \"led-variant-off\": 983854,\n  \"led-variant-on\": 983855,\n  \"led-variant-outline\": 983856,\n  \"leek\": 987517,\n  \"less-than\": 985468,\n  \"less-than-or-equal\": 985469,\n  \"library\": 983857,\n  \"library-outline\": 989730,\n  \"library-shelves\": 986025,\n  \"license\": 987075,\n  \"lifebuoy\": 985214,\n  \"light-flood-down\": 989575,\n  \"light-flood-up\": 989576,\n  \"light-recessed\": 989083,\n  \"light-switch\": 985470,\n  \"light-switch-off\": 989732,\n  \"lightbulb\": 983861,\n  \"lightbulb-alert\": 989665,\n  \"lightbulb-alert-outline\": 989666,\n  \"lightbulb-auto\": 989184,\n  \"lightbulb-auto-outline\": 989185,\n  \"lightbulb-cfl\": 987656,\n  \"lightbulb-cfl-off\": 987657,\n  \"lightbulb-cfl-spiral\": 987765,\n  \"lightbulb-cfl-spiral-off\": 987843,\n  \"lightbulb-fluorescent-tube\": 989188,\n  \"lightbulb-fluorescent-tube-outline\": 989189,\n  \"lightbulb-group\": 987731,\n  \"lightbulb-group-off\": 987853,\n  \"lightbulb-group-off-outline\": 987854,\n  \"lightbulb-group-outline\": 987732,\n  \"lightbulb-multiple\": 987733,\n  \"lightbulb-multiple-off\": 987855,\n  \"lightbulb-multiple-off-outline\": 987856,\n  \"lightbulb-multiple-outline\": 987734,\n  \"lightbulb-night\": 989772,\n  \"lightbulb-night-outline\": 989773,\n  \"lightbulb-off\": 986703,\n  \"lightbulb-off-outline\": 986704,\n  \"lightbulb-on\": 984808,\n  \"lightbulb-on-10\": 989774,\n  \"lightbulb-on-20\": 989775,\n  \"lightbulb-on-30\": 989776,\n  \"lightbulb-on-40\": 989777,\n  \"lightbulb-on-50\": 989778,\n  \"lightbulb-on-60\": 989779,\n  \"lightbulb-on-70\": 989780,\n  \"lightbulb-on-80\": 989781,\n  \"lightbulb-on-90\": 989782,\n  \"lightbulb-on-outline\": 984809,\n  \"lightbulb-outline\": 983862,\n  \"lightbulb-question\": 989667,\n  \"lightbulb-question-outline\": 989668,\n  \"lightbulb-spot\": 989172,\n  \"lightbulb-spot-off\": 989173,\n  \"lightbulb-variant\": 989186,\n  \"lightbulb-variant-outline\": 989187,\n  \"lighthouse\": 985599,\n  \"lighthouse-on\": 985600,\n  \"lightning-bolt\": 988171,\n  \"lightning-bolt-circle\": 985120,\n  \"lightning-bolt-outline\": 988172,\n  \"line-scan\": 984612,\n  \"lingerie\": 988278,\n  \"link\": 983863,\n  \"link-box\": 986394,\n  \"link-box-outline\": 986395,\n  \"link-box-variant\": 986396,\n  \"link-box-variant-outline\": 986397,\n  \"link-circle\": 990380,\n  \"link-circle-outline\": 990381,\n  \"link-edit\": 990382,\n  \"link-lock\": 987322,\n  \"link-off\": 983864,\n  \"link-plus\": 986260,\n  \"link-variant\": 983865,\n  \"link-variant-minus\": 987391,\n  \"link-variant-off\": 983866,\n  \"link-variant-plus\": 987392,\n  \"link-variant-remove\": 987393,\n  \"linkedin\": 983867,\n  \"linux\": 983869,\n  \"linux-mint\": 985325,\n  \"lipstick\": 988085,\n  \"liquid-spot\": 989222,\n  \"liquor\": 989470,\n  \"list-box\": 990075,\n  \"list-box-outline\": 990076,\n  \"list-status\": 988587,\n  \"litecoin\": 985697,\n  \"loading\": 984946,\n  \"location-enter\": 987076,\n  \"location-exit\": 987077,\n  \"lock\": 983870,\n  \"lock-alert\": 985326,\n  \"lock-alert-outline\": 988625,\n  \"lock-check\": 988058,\n  \"lock-check-outline\": 988840,\n  \"lock-clock\": 985471,\n  \"lock-minus\": 988841,\n  \"lock-minus-outline\": 988842,\n  \"lock-off\": 988785,\n  \"lock-off-outline\": 988786,\n  \"lock-open\": 983871,\n  \"lock-open-alert\": 988059,\n  \"lock-open-alert-outline\": 988626,\n  \"lock-open-check\": 988060,\n  \"lock-open-check-outline\": 988843,\n  \"lock-open-minus\": 988844,\n  \"lock-open-minus-outline\": 988845,\n  \"lock-open-outline\": 983872,\n  \"lock-open-plus\": 988846,\n  \"lock-open-plus-outline\": 988847,\n  \"lock-open-remove\": 988848,\n  \"lock-open-remove-outline\": 988849,\n  \"lock-open-variant\": 987078,\n  \"lock-open-variant-outline\": 987079,\n  \"lock-outline\": 983873,\n  \"lock-pattern\": 984810,\n  \"lock-percent\": 990226,\n  \"lock-percent-open\": 990227,\n  \"lock-percent-open-outline\": 990228,\n  \"lock-percent-open-variant\": 990229,\n  \"lock-percent-open-variant-outline\": 990230,\n  \"lock-percent-outline\": 990231,\n  \"lock-plus\": 984571,\n  \"lock-plus-outline\": 988850,\n  \"lock-question\": 985327,\n  \"lock-remove\": 988851,\n  \"lock-remove-outline\": 988852,\n  \"lock-reset\": 984947,\n  \"lock-smart\": 985266,\n  \"locker\": 985047,\n  \"locker-multiple\": 985048,\n  \"login\": 983874,\n  \"login-variant\": 984572,\n  \"logout\": 983875,\n  \"logout-variant\": 984573,\n  \"longitude\": 986970,\n  \"looks\": 983876,\n  \"lotion\": 988546,\n  \"lotion-outline\": 988547,\n  \"lotion-plus\": 988548,\n  \"lotion-plus-outline\": 988549,\n  \"loupe\": 983877,\n  \"lumx\": 983878,\n  \"lungs\": 987268,\n  \"mace\": 989251,\n  \"magazine-pistol\": 983844,\n  \"magazine-rifle\": 983843,\n  \"magic-staff\": 989252,\n  \"magnet\": 983879,\n  \"magnet-on\": 983880,\n  \"magnify\": 983881,\n  \"magnify-close\": 985472,\n  \"magnify-expand\": 989300,\n  \"magnify-minus\": 983882,\n  \"magnify-minus-cursor\": 985698,\n  \"magnify-minus-outline\": 984812,\n  \"magnify-plus\": 983883,\n  \"magnify-plus-cursor\": 985699,\n  \"magnify-plus-outline\": 984813,\n  \"magnify-remove-cursor\": 987660,\n  \"magnify-remove-outline\": 987661,\n  \"magnify-scan\": 987766,\n  \"mail\": 986811,\n  \"mailbox\": 984814,\n  \"mailbox-open\": 986504,\n  \"mailbox-open-outline\": 986505,\n  \"mailbox-open-up\": 986506,\n  \"mailbox-open-up-outline\": 986507,\n  \"mailbox-outline\": 986508,\n  \"mailbox-up\": 986509,\n  \"mailbox-up-outline\": 986510,\n  \"manjaro\": 988682,\n  \"map\": 983885,\n  \"map-check\": 986812,\n  \"map-check-outline\": 986813,\n  \"map-clock\": 986398,\n  \"map-clock-outline\": 986399,\n  \"map-legend\": 985601,\n  \"map-marker\": 983886,\n  \"map-marker-account\": 989411,\n  \"map-marker-account-outline\": 989412,\n  \"map-marker-alert\": 986885,\n  \"map-marker-alert-outline\": 986886,\n  \"map-marker-check\": 986261,\n  \"map-marker-check-outline\": 987899,\n  \"map-marker-circle\": 983887,\n  \"map-marker-distance\": 985328,\n  \"map-marker-down\": 987394,\n  \"map-marker-left\": 987867,\n  \"map-marker-left-outline\": 987869,\n  \"map-marker-minus\": 984656,\n  \"map-marker-minus-outline\": 987897,\n  \"map-marker-multiple\": 983888,\n  \"map-marker-multiple-outline\": 987767,\n  \"map-marker-off\": 983889,\n  \"map-marker-off-outline\": 987901,\n  \"map-marker-outline\": 985049,\n  \"map-marker-path\": 986400,\n  \"map-marker-plus\": 984657,\n  \"map-marker-plus-outline\": 987896,\n  \"map-marker-question\": 986887,\n  \"map-marker-question-outline\": 986888,\n  \"map-marker-radius\": 983890,\n  \"map-marker-radius-outline\": 987900,\n  \"map-marker-remove\": 986889,\n  \"map-marker-remove-outline\": 987898,\n  \"map-marker-remove-variant\": 986890,\n  \"map-marker-right\": 987868,\n  \"map-marker-right-outline\": 987870,\n  \"map-marker-star\": 988680,\n  \"map-marker-star-outline\": 988681,\n  \"map-marker-up\": 987395,\n  \"map-minus\": 985473,\n  \"map-outline\": 985474,\n  \"map-plus\": 985475,\n  \"map-search\": 985476,\n  \"map-search-outline\": 985477,\n  \"mapbox\": 986026,\n  \"margin\": 983891,\n  \"marker\": 984658,\n  \"marker-cancel\": 986585,\n  \"marker-check\": 983893,\n  \"mastodon\": 985809,\n  \"material-design\": 985478,\n  \"material-ui\": 983895,\n  \"math-compass\": 983896,\n  \"math-cos\": 986262,\n  \"math-integral\": 987080,\n  \"math-integral-box\": 987081,\n  \"math-log\": 987269,\n  \"math-norm\": 987082,\n  \"math-norm-box\": 987083,\n  \"math-sin\": 986263,\n  \"math-tan\": 986264,\n  \"matrix\": 984616,\n  \"medal\": 985479,\n  \"medal-outline\": 987942,\n  \"medical-bag\": 984815,\n  \"medical-cotton-swab\": 989880,\n  \"medication\": 989972,\n  \"medication-outline\": 989973,\n  \"meditation\": 987515,\n  \"memory\": 983899,\n  \"memory-arrow-down\": 990374,\n  \"menorah\": 989140,\n  \"menorah-fire\": 989141,\n  \"menu\": 983900,\n  \"menu-close\": 990352,\n  \"menu-down\": 983901,\n  \"menu-down-outline\": 984758,\n  \"menu-left\": 983902,\n  \"menu-left-outline\": 985602,\n  \"menu-open\": 986027,\n  \"menu-right\": 983903,\n  \"menu-right-outline\": 985603,\n  \"menu-swap\": 985700,\n  \"menu-swap-outline\": 985701,\n  \"menu-up\": 983904,\n  \"menu-up-outline\": 984759,\n  \"merge\": 986972,\n  \"message\": 983905,\n  \"message-alert\": 983906,\n  \"message-alert-outline\": 985604,\n  \"message-arrow-left\": 987890,\n  \"message-arrow-left-outline\": 987891,\n  \"message-arrow-right\": 987892,\n  \"message-arrow-right-outline\": 987893,\n  \"message-badge\": 989505,\n  \"message-badge-outline\": 989506,\n  \"message-bookmark\": 988588,\n  \"message-bookmark-outline\": 988589,\n  \"message-bulleted\": 984738,\n  \"message-bulleted-off\": 984739,\n  \"message-check\": 990090,\n  \"message-check-outline\": 990091,\n  \"message-cog\": 984817,\n  \"message-cog-outline\": 987506,\n  \"message-draw\": 983907,\n  \"message-fast\": 989644,\n  \"message-fast-outline\": 989645,\n  \"message-flash\": 988585,\n  \"message-flash-outline\": 988586,\n  \"message-image\": 983908,\n  \"message-image-outline\": 987500,\n  \"message-lock\": 987084,\n  \"message-lock-outline\": 987501,\n  \"message-minus\": 987502,\n  \"message-minus-outline\": 987503,\n  \"message-off\": 988749,\n  \"message-off-outline\": 988750,\n  \"message-outline\": 983909,\n  \"message-plus\": 984659,\n  \"message-plus-outline\": 987323,\n  \"message-processing\": 983910,\n  \"message-processing-outline\": 987504,\n  \"message-question\": 988986,\n  \"message-question-outline\": 988987,\n  \"message-reply\": 983911,\n  \"message-reply-outline\": 988989,\n  \"message-reply-text\": 983912,\n  \"message-reply-text-outline\": 988990,\n  \"message-settings\": 984816,\n  \"message-settings-outline\": 987505,\n  \"message-star\": 984730,\n  \"message-star-outline\": 987728,\n  \"message-text\": 983913,\n  \"message-text-clock\": 987507,\n  \"message-text-clock-outline\": 987508,\n  \"message-text-fast\": 989646,\n  \"message-text-fast-outline\": 989647,\n  \"message-text-lock\": 987085,\n  \"message-text-lock-outline\": 987509,\n  \"message-text-outline\": 983914,\n  \"message-video\": 983915,\n  \"meteor\": 984617,\n  \"meter-electric\": 989783,\n  \"meter-electric-outline\": 989784,\n  \"meter-gas\": 989785,\n  \"meter-gas-outline\": 989786,\n  \"metronome\": 985050,\n  \"metronome-tick\": 985051,\n  \"micro-sd\": 985052,\n  \"microphone\": 983916,\n  \"microphone-message\": 984330,\n  \"microphone-message-off\": 984331,\n  \"microphone-minus\": 985267,\n  \"microphone-off\": 983917,\n  \"microphone-outline\": 983918,\n  \"microphone-plus\": 985268,\n  \"microphone-question\": 989577,\n  \"microphone-question-outline\": 989578,\n  \"microphone-settings\": 983919,\n  \"microphone-variant\": 983920,\n  \"microphone-variant-off\": 983921,\n  \"microscope\": 984660,\n  \"microsoft\": 983922,\n  \"microsoft-access\": 988046,\n  \"microsoft-azure\": 985093,\n  \"microsoft-azure-devops\": 987093,\n  \"microsoft-bing\": 983204,\n  \"microsoft-dynamics-365\": 985480,\n  \"microsoft-edge\": 983529,\n  \"microsoft-excel\": 988047,\n  \"microsoft-internet-explorer\": 983808,\n  \"microsoft-office\": 984006,\n  \"microsoft-onedrive\": 984010,\n  \"microsoft-onenote\": 984903,\n  \"microsoft-outlook\": 986402,\n  \"microsoft-powerpoint\": 988048,\n  \"microsoft-sharepoint\": 988049,\n  \"microsoft-teams\": 983739,\n  \"microsoft-visual-studio\": 984592,\n  \"microsoft-visual-studio-code\": 985630,\n  \"microsoft-windows\": 984499,\n  \"microsoft-windows-classic\": 985633,\n  \"microsoft-word\": 988050,\n  \"microsoft-xbox\": 984505,\n  \"microsoft-xbox-controller\": 984506,\n  \"microsoft-xbox-controller-battery-alert\": 984907,\n  \"microsoft-xbox-controller-battery-charging\": 985634,\n  \"microsoft-xbox-controller-battery-empty\": 984908,\n  \"microsoft-xbox-controller-battery-full\": 984909,\n  \"microsoft-xbox-controller-battery-low\": 984910,\n  \"microsoft-xbox-controller-battery-medium\": 984911,\n  \"microsoft-xbox-controller-battery-unknown\": 984912,\n  \"microsoft-xbox-controller-menu\": 986735,\n  \"microsoft-xbox-controller-off\": 984507,\n  \"microsoft-xbox-controller-view\": 986736,\n  \"microwave\": 986265,\n  \"microwave-off\": 988195,\n  \"middleware\": 986973,\n  \"middleware-outline\": 986974,\n  \"midi\": 985329,\n  \"midi-port\": 985330,\n  \"mine\": 986586,\n  \"minecraft\": 983923,\n  \"mini-sd\": 985605,\n  \"minidisc\": 985606,\n  \"minus\": 983924,\n  \"minus-box\": 983925,\n  \"minus-box-multiple\": 987457,\n  \"minus-box-multiple-outline\": 987458,\n  \"minus-box-outline\": 984818,\n  \"minus-circle\": 983926,\n  \"minus-circle-multiple\": 983898,\n  \"minus-circle-multiple-outline\": 985811,\n  \"minus-circle-off\": 988249,\n  \"minus-circle-off-outline\": 988250,\n  \"minus-circle-outline\": 983927,\n  \"minus-network\": 983928,\n  \"minus-network-outline\": 986266,\n  \"minus-thick\": 988729,\n  \"mirror\": 987645,\n  \"mirror-rectangle\": 989087,\n  \"mirror-variant\": 989088,\n  \"mixed-martial-arts\": 986511,\n  \"mixed-reality\": 985215,\n  \"molecule\": 986028,\n  \"molecule-co\": 987902,\n  \"molecule-co2\": 985060,\n  \"monitor\": 983929,\n  \"monitor-account\": 989787,\n  \"monitor-arrow-down\": 989648,\n  \"monitor-arrow-down-variant\": 989649,\n  \"monitor-cellphone\": 985481,\n  \"monitor-cellphone-star\": 985482,\n  \"monitor-dashboard\": 985607,\n  \"monitor-edit\": 987846,\n  \"monitor-eye\": 988084,\n  \"monitor-lock\": 986587,\n  \"monitor-multiple\": 983930,\n  \"monitor-off\": 986512,\n  \"monitor-screenshot\": 986705,\n  \"monitor-share\": 988291,\n  \"monitor-shimmer\": 987396,\n  \"monitor-small\": 989302,\n  \"monitor-speaker\": 986975,\n  \"monitor-speaker-off\": 986976,\n  \"monitor-star\": 986588,\n  \"monitor-vertical\": 990259,\n  \"moon-first-quarter\": 986977,\n  \"moon-full\": 986978,\n  \"moon-last-quarter\": 986979,\n  \"moon-new\": 986980,\n  \"moon-waning-crescent\": 986981,\n  \"moon-waning-gibbous\": 986982,\n  \"moon-waxing-crescent\": 986983,\n  \"moon-waxing-gibbous\": 986984,\n  \"moped\": 987270,\n  \"moped-electric\": 988599,\n  \"moped-electric-outline\": 988600,\n  \"moped-outline\": 988601,\n  \"more\": 983931,\n  \"mortar-pestle\": 989000,\n  \"mortar-pestle-plus\": 984049,\n  \"mosque\": 986437,\n  \"mosque-outline\": 989223,\n  \"mother-heart\": 987924,\n  \"mother-nurse\": 986401,\n  \"motion\": 988594,\n  \"motion-outline\": 988595,\n  \"motion-pause\": 988560,\n  \"motion-pause-outline\": 988562,\n  \"motion-play\": 988559,\n  \"motion-play-outline\": 988561,\n  \"motion-sensor\": 986513,\n  \"motion-sensor-off\": 988213,\n  \"motorbike\": 983932,\n  \"motorbike-electric\": 988602,\n  \"motorbike-off\": 989974,\n  \"mouse\": 983933,\n  \"mouse-bluetooth\": 985483,\n  \"mouse-left-click\": 990471,\n  \"mouse-left-click-outline\": 990472,\n  \"mouse-move-down\": 988496,\n  \"mouse-move-up\": 988497,\n  \"mouse-move-vertical\": 988498,\n  \"mouse-off\": 983934,\n  \"mouse-outline\": 990473,\n  \"mouse-right-click\": 990474,\n  \"mouse-right-click-outline\": 990475,\n  \"mouse-scroll-wheel\": 990476,\n  \"mouse-variant\": 983935,\n  \"mouse-variant-off\": 983936,\n  \"move-resize\": 984661,\n  \"move-resize-variant\": 984662,\n  \"movie\": 983937,\n  \"movie-check\": 988915,\n  \"movie-check-outline\": 988916,\n  \"movie-cog\": 988917,\n  \"movie-cog-outline\": 988918,\n  \"movie-edit\": 987426,\n  \"movie-edit-outline\": 987427,\n  \"movie-filter\": 987428,\n  \"movie-filter-outline\": 987429,\n  \"movie-minus\": 988919,\n  \"movie-minus-outline\": 988920,\n  \"movie-off\": 988921,\n  \"movie-off-outline\": 988922,\n  \"movie-open\": 987086,\n  \"movie-open-check\": 988923,\n  \"movie-open-check-outline\": 988924,\n  \"movie-open-cog\": 988925,\n  \"movie-open-cog-outline\": 988926,\n  \"movie-open-edit\": 988927,\n  \"movie-open-edit-outline\": 988928,\n  \"movie-open-minus\": 988929,\n  \"movie-open-minus-outline\": 988930,\n  \"movie-open-off\": 988931,\n  \"movie-open-off-outline\": 988932,\n  \"movie-open-outline\": 987087,\n  \"movie-open-play\": 988933,\n  \"movie-open-play-outline\": 988934,\n  \"movie-open-plus\": 988935,\n  \"movie-open-plus-outline\": 988936,\n  \"movie-open-remove\": 988937,\n  \"movie-open-remove-outline\": 988938,\n  \"movie-open-settings\": 988939,\n  \"movie-open-settings-outline\": 988940,\n  \"movie-open-star\": 988941,\n  \"movie-open-star-outline\": 988942,\n  \"movie-outline\": 986589,\n  \"movie-play\": 988943,\n  \"movie-play-outline\": 988944,\n  \"movie-plus\": 988945,\n  \"movie-plus-outline\": 988946,\n  \"movie-remove\": 988947,\n  \"movie-remove-outline\": 988948,\n  \"movie-roll\": 985054,\n  \"movie-search\": 987602,\n  \"movie-search-outline\": 987603,\n  \"movie-settings\": 988949,\n  \"movie-settings-outline\": 988950,\n  \"movie-star\": 988951,\n  \"movie-star-outline\": 988952,\n  \"mower\": 988783,\n  \"mower-bag\": 988784,\n  \"mower-bag-on\": 990048,\n  \"mower-on\": 990047,\n  \"muffin\": 985484,\n  \"multicast\": 989331,\n  \"multimedia\": 990103,\n  \"multiplication\": 983938,\n  \"multiplication-box\": 983939,\n  \"mushroom\": 985055,\n  \"mushroom-off\": 988154,\n  \"mushroom-off-outline\": 988155,\n  \"mushroom-outline\": 985056,\n  \"music\": 984922,\n  \"music-accidental-double-flat\": 986985,\n  \"music-accidental-double-sharp\": 986986,\n  \"music-accidental-flat\": 986987,\n  \"music-accidental-natural\": 986988,\n  \"music-accidental-sharp\": 986989,\n  \"music-box\": 983940,\n  \"music-box-multiple\": 983859,\n  \"music-box-multiple-outline\": 986884,\n  \"music-box-outline\": 983941,\n  \"music-circle\": 983942,\n  \"music-circle-outline\": 985812,\n  \"music-clef-alto\": 986990,\n  \"music-clef-bass\": 986991,\n  \"music-clef-treble\": 986992,\n  \"music-note\": 983943,\n  \"music-note-bluetooth\": 984574,\n  \"music-note-bluetooth-off\": 984575,\n  \"music-note-eighth\": 983944,\n  \"music-note-eighth-dotted\": 986993,\n  \"music-note-half\": 983945,\n  \"music-note-half-dotted\": 986994,\n  \"music-note-minus\": 990089,\n  \"music-note-off\": 983946,\n  \"music-note-off-outline\": 986995,\n  \"music-note-outline\": 986996,\n  \"music-note-plus\": 986590,\n  \"music-note-quarter\": 983947,\n  \"music-note-quarter-dotted\": 986997,\n  \"music-note-sixteenth\": 983948,\n  \"music-note-sixteenth-dotted\": 986998,\n  \"music-note-whole\": 983949,\n  \"music-note-whole-dotted\": 986999,\n  \"music-off\": 984923,\n  \"music-rest-eighth\": 987000,\n  \"music-rest-half\": 987001,\n  \"music-rest-quarter\": 987002,\n  \"music-rest-sixteenth\": 987003,\n  \"music-rest-whole\": 987004,\n  \"mustache\": 988638,\n  \"nail\": 986591,\n  \"nas\": 985331,\n  \"nativescript\": 985216,\n  \"nature\": 983950,\n  \"nature-outline\": 990321,\n  \"nature-people\": 983951,\n  \"nature-people-outline\": 990322,\n  \"navigation\": 983952,\n  \"navigation-outline\": 988679,\n  \"navigation-variant\": 989424,\n  \"navigation-variant-outline\": 989425,\n  \"near-me\": 984525,\n  \"necklace\": 986891,\n  \"needle\": 983953,\n  \"needle-off\": 989650,\n  \"netflix\": 984902,\n  \"network\": 984819,\n  \"network-off\": 986267,\n  \"network-off-outline\": 986268,\n  \"network-outline\": 986269,\n  \"network-pos\": 989899,\n  \"network-strength-1\": 985332,\n  \"network-strength-1-alert\": 985333,\n  \"network-strength-2\": 985334,\n  \"network-strength-2-alert\": 985335,\n  \"network-strength-3\": 985336,\n  \"network-strength-3-alert\": 985337,\n  \"network-strength-4\": 985338,\n  \"network-strength-4-alert\": 985339,\n  \"network-strength-4-cog\": 989466,\n  \"network-strength-off\": 985340,\n  \"network-strength-off-outline\": 985341,\n  \"network-strength-outline\": 985342,\n  \"new-box\": 983956,\n  \"newspaper\": 983957,\n  \"newspaper-check\": 989507,\n  \"newspaper-minus\": 986892,\n  \"newspaper-plus\": 986893,\n  \"newspaper-remove\": 989508,\n  \"newspaper-variant\": 987137,\n  \"newspaper-variant-multiple\": 987138,\n  \"newspaper-variant-multiple-outline\": 987139,\n  \"newspaper-variant-outline\": 987140,\n  \"nfc\": 983958,\n  \"nfc-search-variant\": 986707,\n  \"nfc-tap\": 983959,\n  \"nfc-variant\": 983960,\n  \"nfc-variant-off\": 986708,\n  \"ninja\": 984948,\n  \"nintendo-game-boy\": 988051,\n  \"nintendo-switch\": 985057,\n  \"nintendo-wii\": 984491,\n  \"nintendo-wiiu\": 984877,\n  \"nix\": 987397,\n  \"nodejs\": 983961,\n  \"noodles\": 987518,\n  \"not-equal\": 985485,\n  \"not-equal-variant\": 985486,\n  \"note\": 983962,\n  \"note-alert\": 989053,\n  \"note-alert-outline\": 989054,\n  \"note-check\": 989055,\n  \"note-check-outline\": 989056,\n  \"note-edit\": 989057,\n  \"note-edit-outline\": 989058,\n  \"note-minus\": 988751,\n  \"note-minus-outline\": 988752,\n  \"note-multiple\": 984760,\n  \"note-multiple-outline\": 984761,\n  \"note-off\": 989059,\n  \"note-off-outline\": 989060,\n  \"note-outline\": 983963,\n  \"note-plus\": 983964,\n  \"note-plus-outline\": 983965,\n  \"note-remove\": 988753,\n  \"note-remove-outline\": 988754,\n  \"note-search\": 988755,\n  \"note-search-outline\": 988756,\n  \"note-text\": 983966,\n  \"note-text-outline\": 987607,\n  \"notebook\": 985134,\n  \"notebook-check\": 988405,\n  \"notebook-check-outline\": 988406,\n  \"notebook-edit\": 988391,\n  \"notebook-edit-outline\": 988393,\n  \"notebook-heart\": 989707,\n  \"notebook-heart-outline\": 989708,\n  \"notebook-minus\": 988688,\n  \"notebook-minus-outline\": 988689,\n  \"notebook-multiple\": 986709,\n  \"notebook-outline\": 986815,\n  \"notebook-plus\": 988690,\n  \"notebook-plus-outline\": 988691,\n  \"notebook-remove\": 988692,\n  \"notebook-remove-outline\": 988693,\n  \"notification-clear-all\": 983967,\n  \"npm\": 984823,\n  \"nuke\": 984740,\n  \"null\": 985058,\n  \"numeric\": 983968,\n  \"numeric-0\": 985913,\n  \"numeric-0-box\": 983969,\n  \"numeric-0-box-multiple\": 986894,\n  \"numeric-0-box-multiple-outline\": 983970,\n  \"numeric-0-box-outline\": 983971,\n  \"numeric-0-circle\": 986270,\n  \"numeric-0-circle-outline\": 986271,\n  \"numeric-1\": 985914,\n  \"numeric-1-box\": 983972,\n  \"numeric-1-box-multiple\": 986895,\n  \"numeric-1-box-multiple-outline\": 983973,\n  \"numeric-1-box-outline\": 983974,\n  \"numeric-1-circle\": 986272,\n  \"numeric-1-circle-outline\": 986273,\n  \"numeric-10\": 987113,\n  \"numeric-10-box\": 987005,\n  \"numeric-10-box-multiple\": 987114,\n  \"numeric-10-box-multiple-outline\": 987115,\n  \"numeric-10-box-outline\": 987006,\n  \"numeric-10-circle\": 987116,\n  \"numeric-10-circle-outline\": 987117,\n  \"numeric-2\": 985915,\n  \"numeric-2-box\": 983975,\n  \"numeric-2-box-multiple\": 986896,\n  \"numeric-2-box-multiple-outline\": 983976,\n  \"numeric-2-box-outline\": 983977,\n  \"numeric-2-circle\": 986274,\n  \"numeric-2-circle-outline\": 986275,\n  \"numeric-3\": 985916,\n  \"numeric-3-box\": 983978,\n  \"numeric-3-box-multiple\": 986897,\n  \"numeric-3-box-multiple-outline\": 983979,\n  \"numeric-3-box-outline\": 983980,\n  \"numeric-3-circle\": 986276,\n  \"numeric-3-circle-outline\": 986277,\n  \"numeric-4\": 985917,\n  \"numeric-4-box\": 983981,\n  \"numeric-4-box-multiple\": 986898,\n  \"numeric-4-box-multiple-outline\": 983986,\n  \"numeric-4-box-outline\": 983982,\n  \"numeric-4-circle\": 986278,\n  \"numeric-4-circle-outline\": 986279,\n  \"numeric-5\": 985918,\n  \"numeric-5-box\": 983985,\n  \"numeric-5-box-multiple\": 986899,\n  \"numeric-5-box-multiple-outline\": 983983,\n  \"numeric-5-box-outline\": 983984,\n  \"numeric-5-circle\": 986280,\n  \"numeric-5-circle-outline\": 986281,\n  \"numeric-6\": 985919,\n  \"numeric-6-box\": 983987,\n  \"numeric-6-box-multiple\": 986900,\n  \"numeric-6-box-multiple-outline\": 983988,\n  \"numeric-6-box-outline\": 983989,\n  \"numeric-6-circle\": 986282,\n  \"numeric-6-circle-outline\": 986283,\n  \"numeric-7\": 985920,\n  \"numeric-7-box\": 983990,\n  \"numeric-7-box-multiple\": 986901,\n  \"numeric-7-box-multiple-outline\": 983991,\n  \"numeric-7-box-outline\": 983992,\n  \"numeric-7-circle\": 986284,\n  \"numeric-7-circle-outline\": 986285,\n  \"numeric-8\": 985921,\n  \"numeric-8-box\": 983993,\n  \"numeric-8-box-multiple\": 986902,\n  \"numeric-8-box-multiple-outline\": 983994,\n  \"numeric-8-box-outline\": 983995,\n  \"numeric-8-circle\": 986286,\n  \"numeric-8-circle-outline\": 986287,\n  \"numeric-9\": 985922,\n  \"numeric-9-box\": 983996,\n  \"numeric-9-box-multiple\": 986903,\n  \"numeric-9-box-multiple-outline\": 983997,\n  \"numeric-9-box-outline\": 983998,\n  \"numeric-9-circle\": 986288,\n  \"numeric-9-circle-outline\": 986289,\n  \"numeric-9-plus\": 987118,\n  \"numeric-9-plus-box\": 983999,\n  \"numeric-9-plus-box-multiple\": 986904,\n  \"numeric-9-plus-box-multiple-outline\": 984000,\n  \"numeric-9-plus-box-outline\": 984001,\n  \"numeric-9-plus-circle\": 986290,\n  \"numeric-9-plus-circle-outline\": 986291,\n  \"numeric-negative-1\": 987218,\n  \"numeric-off\": 989651,\n  \"numeric-positive-1\": 988619,\n  \"nut\": 984824,\n  \"nutrition\": 984002,\n  \"nuxt\": 987398,\n  \"oar\": 984700,\n  \"ocarina\": 986592,\n  \"oci\": 987881,\n  \"ocr\": 987450,\n  \"octagon\": 984003,\n  \"octagon-outline\": 984004,\n  \"octagram\": 984825,\n  \"octagram-edit\": 990260,\n  \"octagram-edit-outline\": 990261,\n  \"octagram-minus\": 990262,\n  \"octagram-minus-outline\": 990263,\n  \"octagram-outline\": 984949,\n  \"octagram-plus\": 990264,\n  \"octagram-plus-outline\": 990265,\n  \"octahedron\": 989520,\n  \"octahedron-off\": 989521,\n  \"odnoklassniki\": 984005,\n  \"offer\": 987675,\n  \"office-building\": 985489,\n  \"office-building-cog\": 989513,\n  \"office-building-cog-outline\": 989514,\n  \"office-building-marker\": 988448,\n  \"office-building-marker-outline\": 988449,\n  \"office-building-minus\": 990122,\n  \"office-building-minus-outline\": 990123,\n  \"office-building-outline\": 988447,\n  \"office-building-plus\": 990120,\n  \"office-building-plus-outline\": 990121,\n  \"office-building-remove\": 990124,\n  \"office-building-remove-outline\": 990125,\n  \"oil\": 984007,\n  \"oil-lamp\": 986905,\n  \"oil-level\": 987219,\n  \"oil-temperature\": 987128,\n  \"om\": 985459,\n  \"omega\": 984009,\n  \"one-up\": 986029,\n  \"onepassword\": 985217,\n  \"opacity\": 984524,\n  \"open-in-app\": 984011,\n  \"open-in-new\": 984012,\n  \"open-source-initiative\": 986030,\n  \"openid\": 984013,\n  \"opera\": 984014,\n  \"orbit\": 983064,\n  \"orbit-variant\": 988635,\n  \"order-alphabetical-ascending\": 983565,\n  \"order-alphabetical-descending\": 986375,\n  \"order-bool-ascending\": 983742,\n  \"order-bool-ascending-variant\": 985487,\n  \"order-bool-descending\": 988036,\n  \"order-bool-descending-variant\": 985488,\n  \"order-numeric-ascending\": 984389,\n  \"order-numeric-descending\": 984390,\n  \"origin\": 985923,\n  \"ornament\": 984015,\n  \"ornament-variant\": 984016,\n  \"outdoor-lamp\": 987220,\n  \"overscan\": 987141,\n  \"owl\": 984018,\n  \"pac-man\": 986031,\n  \"package\": 984019,\n  \"package-check\": 990033,\n  \"package-down\": 984020,\n  \"package-up\": 984021,\n  \"package-variant\": 984022,\n  \"package-variant-closed\": 984023,\n  \"package-variant-closed-check\": 990034,\n  \"package-variant-closed-minus\": 989652,\n  \"package-variant-closed-plus\": 989653,\n  \"package-variant-closed-remove\": 989654,\n  \"package-variant-minus\": 989655,\n  \"package-variant-plus\": 989656,\n  \"package-variant-remove\": 989657,\n  \"page-first\": 984576,\n  \"page-last\": 984577,\n  \"page-layout-body\": 984826,\n  \"page-layout-footer\": 984827,\n  \"page-layout-header\": 984828,\n  \"page-layout-header-footer\": 987007,\n  \"page-layout-sidebar-left\": 984829,\n  \"page-layout-sidebar-right\": 984830,\n  \"page-next\": 986032,\n  \"page-next-outline\": 986033,\n  \"page-previous\": 986034,\n  \"page-previous-outline\": 986035,\n  \"pail\": 988183,\n  \"pail-minus\": 988215,\n  \"pail-minus-outline\": 988220,\n  \"pail-off\": 988217,\n  \"pail-off-outline\": 988222,\n  \"pail-outline\": 988218,\n  \"pail-plus\": 988214,\n  \"pail-plus-outline\": 988219,\n  \"pail-remove\": 988216,\n  \"pail-remove-outline\": 988221,\n  \"palette\": 984024,\n  \"palette-advanced\": 984025,\n  \"palette-outline\": 986636,\n  \"palette-swatch\": 985269,\n  \"palette-swatch-outline\": 987996,\n  \"palette-swatch-variant\": 989530,\n  \"palm-tree\": 987221,\n  \"pan\": 986036,\n  \"pan-bottom-left\": 986037,\n  \"pan-bottom-right\": 986038,\n  \"pan-down\": 986039,\n  \"pan-horizontal\": 986040,\n  \"pan-left\": 986041,\n  \"pan-right\": 986042,\n  \"pan-top-left\": 986043,\n  \"pan-top-right\": 986044,\n  \"pan-up\": 986045,\n  \"pan-vertical\": 986046,\n  \"panda\": 984026,\n  \"pandora\": 984027,\n  \"panorama\": 984028,\n  \"panorama-fisheye\": 984029,\n  \"panorama-horizontal\": 989480,\n  \"panorama-horizontal-outline\": 984030,\n  \"panorama-outline\": 989580,\n  \"panorama-sphere\": 989581,\n  \"panorama-sphere-outline\": 989582,\n  \"panorama-variant\": 989583,\n  \"panorama-variant-outline\": 989584,\n  \"panorama-vertical\": 989481,\n  \"panorama-vertical-outline\": 984031,\n  \"panorama-wide-angle\": 989535,\n  \"panorama-wide-angle-outline\": 984032,\n  \"paper-cut-vertical\": 984033,\n  \"paper-roll\": 987479,\n  \"paper-roll-outline\": 987480,\n  \"paperclip\": 984034,\n  \"paperclip-check\": 989894,\n  \"paperclip-lock\": 989658,\n  \"paperclip-minus\": 989895,\n  \"paperclip-off\": 989896,\n  \"paperclip-plus\": 989897,\n  \"paperclip-remove\": 989898,\n  \"parachute\": 986292,\n  \"parachute-outline\": 986293,\n  \"paragliding\": 988997,\n  \"parking\": 984035,\n  \"party-popper\": 987222,\n  \"passport\": 985059,\n  \"passport-alert\": 990392,\n  \"passport-biometric\": 986593,\n  \"passport-cancel\": 990393,\n  \"passport-check\": 990394,\n  \"passport-minus\": 990395,\n  \"passport-plus\": 990396,\n  \"passport-remove\": 990397,\n  \"pasta\": 987488,\n  \"patio-heater\": 987008,\n  \"patreon\": 985218,\n  \"pause\": 984036,\n  \"pause-box\": 983228,\n  \"pause-box-outline\": 990074,\n  \"pause-circle\": 984037,\n  \"pause-circle-outline\": 984038,\n  \"pause-octagon\": 984039,\n  \"pause-octagon-outline\": 984040,\n  \"paw\": 984041,\n  \"paw-off\": 984663,\n  \"paw-off-outline\": 988790,\n  \"paw-outline\": 988789,\n  \"peace\": 985220,\n  \"peanut\": 987132,\n  \"peanut-off\": 987133,\n  \"peanut-off-outline\": 987135,\n  \"peanut-outline\": 987134,\n  \"pen\": 984042,\n  \"pen-lock\": 986594,\n  \"pen-minus\": 986595,\n  \"pen-off\": 986596,\n  \"pen-plus\": 986597,\n  \"pen-remove\": 986598,\n  \"pencil\": 984043,\n  \"pencil-box\": 984044,\n  \"pencil-box-multiple\": 987460,\n  \"pencil-box-multiple-outline\": 987461,\n  \"pencil-box-outline\": 984045,\n  \"pencil-circle\": 984831,\n  \"pencil-circle-outline\": 984950,\n  \"pencil-lock\": 984046,\n  \"pencil-lock-outline\": 986599,\n  \"pencil-minus\": 986600,\n  \"pencil-minus-outline\": 986601,\n  \"pencil-off\": 984047,\n  \"pencil-off-outline\": 986602,\n  \"pencil-outline\": 986294,\n  \"pencil-plus\": 986603,\n  \"pencil-plus-outline\": 986604,\n  \"pencil-remove\": 986605,\n  \"pencil-remove-outline\": 986606,\n  \"pencil-ruler\": 987987,\n  \"pencil-ruler-outline\": 990225,\n  \"penguin\": 986816,\n  \"pentagon\": 984833,\n  \"pentagon-outline\": 984832,\n  \"pentagram\": 988775,\n  \"percent\": 984048,\n  \"percent-box\": 989698,\n  \"percent-box-outline\": 989699,\n  \"percent-circle\": 989700,\n  \"percent-circle-outline\": 989701,\n  \"percent-outline\": 987768,\n  \"periodic-table\": 985270,\n  \"perspective-less\": 986403,\n  \"perspective-more\": 986404,\n  \"ph\": 989125,\n  \"phone\": 984050,\n  \"phone-alert\": 986906,\n  \"phone-alert-outline\": 987534,\n  \"phone-bluetooth\": 984051,\n  \"phone-bluetooth-outline\": 987535,\n  \"phone-cancel\": 987324,\n  \"phone-cancel-outline\": 987536,\n  \"phone-check\": 987561,\n  \"phone-check-outline\": 987562,\n  \"phone-classic\": 984578,\n  \"phone-classic-off\": 987769,\n  \"phone-clock\": 989659,\n  \"phone-dial\": 988505,\n  \"phone-dial-outline\": 988506,\n  \"phone-forward\": 984052,\n  \"phone-forward-outline\": 987537,\n  \"phone-hangup\": 984053,\n  \"phone-hangup-outline\": 987538,\n  \"phone-in-talk\": 984054,\n  \"phone-in-talk-outline\": 987522,\n  \"phone-incoming\": 984055,\n  \"phone-incoming-outgoing\": 990015,\n  \"phone-incoming-outgoing-outline\": 990016,\n  \"phone-incoming-outline\": 987539,\n  \"phone-lock\": 984056,\n  \"phone-lock-outline\": 987540,\n  \"phone-log\": 984057,\n  \"phone-log-outline\": 987541,\n  \"phone-message\": 987542,\n  \"phone-message-outline\": 987543,\n  \"phone-minus\": 984664,\n  \"phone-minus-outline\": 987544,\n  \"phone-missed\": 984058,\n  \"phone-missed-outline\": 987557,\n  \"phone-off\": 986607,\n  \"phone-off-outline\": 987558,\n  \"phone-outgoing\": 984059,\n  \"phone-outgoing-outline\": 987545,\n  \"phone-outline\": 986608,\n  \"phone-paused\": 984060,\n  \"phone-paused-outline\": 987546,\n  \"phone-plus\": 984665,\n  \"phone-plus-outline\": 987547,\n  \"phone-refresh\": 989587,\n  \"phone-refresh-outline\": 989588,\n  \"phone-remove\": 988463,\n  \"phone-remove-outline\": 988464,\n  \"phone-return\": 985135,\n  \"phone-return-outline\": 987548,\n  \"phone-ring\": 987563,\n  \"phone-ring-outline\": 987564,\n  \"phone-rotate-landscape\": 985221,\n  \"phone-rotate-portrait\": 985222,\n  \"phone-settings\": 984061,\n  \"phone-settings-outline\": 987549,\n  \"phone-sync\": 989589,\n  \"phone-sync-outline\": 989590,\n  \"phone-voip\": 984062,\n  \"pi\": 984063,\n  \"pi-box\": 984064,\n  \"pi-hole\": 986609,\n  \"piano\": 984701,\n  \"piano-off\": 984728,\n  \"pickaxe\": 985271,\n  \"picture-in-picture-bottom-right\": 986711,\n  \"picture-in-picture-bottom-right-outline\": 986712,\n  \"picture-in-picture-top-right\": 986713,\n  \"picture-in-picture-top-right-outline\": 986714,\n  \"pier\": 985223,\n  \"pier-crane\": 985224,\n  \"pig\": 984065,\n  \"pig-variant\": 987142,\n  \"pig-variant-outline\": 988792,\n  \"piggy-bank\": 987143,\n  \"piggy-bank-outline\": 988793,\n  \"pill\": 984066,\n  \"pill-multiple\": 990028,\n  \"pill-off\": 989788,\n  \"pillar\": 984834,\n  \"pin\": 984067,\n  \"pin-off\": 984068,\n  \"pin-off-outline\": 985392,\n  \"pin-outline\": 985393,\n  \"pine-tree\": 984069,\n  \"pine-tree-box\": 984070,\n  \"pine-tree-fire\": 988186,\n  \"pine-tree-variant\": 990323,\n  \"pine-tree-variant-outline\": 990324,\n  \"pinterest\": 984071,\n  \"pinwheel\": 985813,\n  \"pinwheel-outline\": 985814,\n  \"pipe\": 985061,\n  \"pipe-disconnected\": 985062,\n  \"pipe-leak\": 985225,\n  \"pipe-valve\": 989261,\n  \"pipe-wrench\": 987988,\n  \"pirate\": 985608,\n  \"pistol\": 984835,\n  \"piston\": 985226,\n  \"pitchfork\": 988499,\n  \"pizza\": 984073,\n  \"plane-car\": 989951,\n  \"plane-train\": 989952,\n  \"play\": 984074,\n  \"play-box\": 987770,\n  \"play-box-edit-outline\": 990266,\n  \"play-box-lock\": 989718,\n  \"play-box-lock-open\": 989719,\n  \"play-box-lock-open-outline\": 989720,\n  \"play-box-lock-outline\": 989721,\n  \"play-box-multiple\": 986393,\n  \"play-box-multiple-outline\": 988134,\n  \"play-box-outline\": 984075,\n  \"play-circle\": 984076,\n  \"play-circle-outline\": 984077,\n  \"play-network\": 985227,\n  \"play-network-outline\": 986295,\n  \"play-outline\": 986907,\n  \"play-pause\": 984078,\n  \"play-protected-content\": 984079,\n  \"play-speed\": 985343,\n  \"playlist-check\": 984519,\n  \"playlist-edit\": 985344,\n  \"playlist-minus\": 984080,\n  \"playlist-music\": 986296,\n  \"playlist-music-outline\": 986297,\n  \"playlist-play\": 984081,\n  \"playlist-plus\": 984082,\n  \"playlist-remove\": 984083,\n  \"playlist-star\": 986610,\n  \"plex\": 984762,\n  \"pliers\": 989604,\n  \"plus\": 984085,\n  \"plus-box\": 984086,\n  \"plus-box-multiple\": 983860,\n  \"plus-box-multiple-outline\": 987459,\n  \"plus-box-outline\": 984836,\n  \"plus-circle\": 984087,\n  \"plus-circle-multiple\": 983884,\n  \"plus-circle-multiple-outline\": 984088,\n  \"plus-circle-outline\": 984089,\n  \"plus-lock\": 989789,\n  \"plus-lock-open\": 989790,\n  \"plus-minus\": 985490,\n  \"plus-minus-box\": 985491,\n  \"plus-minus-variant\": 988361,\n  \"plus-network\": 984090,\n  \"plus-network-outline\": 986298,\n  \"plus-outline\": 984837,\n  \"plus-thick\": 987628,\n  \"pocket\": 990398,\n  \"podcast\": 985492,\n  \"podium\": 986405,\n  \"podium-bronze\": 986406,\n  \"podium-gold\": 986407,\n  \"podium-silver\": 986408,\n  \"point-of-sale\": 986514,\n  \"pokeball\": 984093,\n  \"pokemon-go\": 985609,\n  \"poker-chip\": 985136,\n  \"polaroid\": 984094,\n  \"police-badge\": 987495,\n  \"police-badge-outline\": 987496,\n  \"police-station\": 989241,\n  \"poll\": 984095,\n  \"polo\": 988355,\n  \"polymer\": 984097,\n  \"pool\": 984582,\n  \"pool-thermometer\": 989791,\n  \"popcorn\": 984098,\n  \"post\": 987144,\n  \"post-lamp\": 989792,\n  \"post-outline\": 987145,\n  \"postage-stamp\": 986299,\n  \"pot\": 983781,\n  \"pot-mix\": 984667,\n  \"pot-mix-outline\": 984695,\n  \"pot-outline\": 983807,\n  \"pot-steam\": 984666,\n  \"pot-steam-outline\": 983846,\n  \"pound\": 984099,\n  \"pound-box\": 984100,\n  \"pound-box-outline\": 987519,\n  \"power\": 984101,\n  \"power-cycle\": 985345,\n  \"power-off\": 985346,\n  \"power-on\": 985347,\n  \"power-plug\": 984741,\n  \"power-plug-battery\": 990267,\n  \"power-plug-battery-outline\": 990268,\n  \"power-plug-off\": 984742,\n  \"power-plug-off-outline\": 988196,\n  \"power-plug-outline\": 988197,\n  \"power-settings\": 984102,\n  \"power-sleep\": 985348,\n  \"power-socket\": 984103,\n  \"power-socket-au\": 985349,\n  \"power-socket-ch\": 987059,\n  \"power-socket-de\": 987399,\n  \"power-socket-eu\": 985063,\n  \"power-socket-fr\": 987400,\n  \"power-socket-it\": 988415,\n  \"power-socket-jp\": 987401,\n  \"power-socket-uk\": 985064,\n  \"power-socket-us\": 985065,\n  \"power-standby\": 985350,\n  \"powershell\": 985610,\n  \"prescription\": 984838,\n  \"presentation\": 984104,\n  \"presentation-play\": 984105,\n  \"pretzel\": 988514,\n  \"printer\": 984106,\n  \"printer-3d\": 984107,\n  \"printer-3d-nozzle\": 986715,\n  \"printer-3d-nozzle-alert\": 987584,\n  \"printer-3d-nozzle-alert-outline\": 987585,\n  \"printer-3d-nozzle-heat\": 989368,\n  \"printer-3d-nozzle-heat-outline\": 989369,\n  \"printer-3d-nozzle-off\": 989977,\n  \"printer-3d-nozzle-off-outline\": 989978,\n  \"printer-3d-nozzle-outline\": 986716,\n  \"printer-3d-off\": 989966,\n  \"printer-alert\": 984108,\n  \"printer-check\": 987462,\n  \"printer-eye\": 988248,\n  \"printer-off\": 986717,\n  \"printer-off-outline\": 989061,\n  \"printer-outline\": 989062,\n  \"printer-pos\": 987223,\n  \"printer-pos-alert\": 990140,\n  \"printer-pos-alert-outline\": 990141,\n  \"printer-pos-cancel\": 990142,\n  \"printer-pos-cancel-outline\": 990143,\n  \"printer-pos-check\": 990144,\n  \"printer-pos-check-outline\": 990145,\n  \"printer-pos-cog\": 990146,\n  \"printer-pos-cog-outline\": 990147,\n  \"printer-pos-edit\": 990148,\n  \"printer-pos-edit-outline\": 990149,\n  \"printer-pos-minus\": 990150,\n  \"printer-pos-minus-outline\": 990151,\n  \"printer-pos-network\": 990152,\n  \"printer-pos-network-outline\": 990153,\n  \"printer-pos-off\": 990154,\n  \"printer-pos-off-outline\": 990155,\n  \"printer-pos-outline\": 990156,\n  \"printer-pos-pause\": 990157,\n  \"printer-pos-pause-outline\": 990158,\n  \"printer-pos-play\": 990159,\n  \"printer-pos-play-outline\": 990160,\n  \"printer-pos-plus\": 990161,\n  \"printer-pos-plus-outline\": 990162,\n  \"printer-pos-refresh\": 990163,\n  \"printer-pos-refresh-outline\": 990164,\n  \"printer-pos-remove\": 990165,\n  \"printer-pos-remove-outline\": 990166,\n  \"printer-pos-star\": 990167,\n  \"printer-pos-star-outline\": 990168,\n  \"printer-pos-stop\": 990169,\n  \"printer-pos-stop-outline\": 990170,\n  \"printer-pos-sync\": 990171,\n  \"printer-pos-sync-outline\": 990172,\n  \"printer-pos-wrench\": 990173,\n  \"printer-pos-wrench-outline\": 990174,\n  \"printer-search\": 988247,\n  \"printer-settings\": 984839,\n  \"printer-wireless\": 985611,\n  \"priority-high\": 984579,\n  \"priority-low\": 984580,\n  \"professional-hexagon\": 984109,\n  \"progress-alert\": 986300,\n  \"progress-check\": 985493,\n  \"progress-clock\": 985494,\n  \"progress-close\": 987402,\n  \"progress-download\": 985495,\n  \"progress-helper\": 990114,\n  \"progress-pencil\": 989063,\n  \"progress-question\": 988450,\n  \"progress-star\": 989064,\n  \"progress-star-four-points\": 990269,\n  \"progress-tag\": 990477,\n  \"progress-upload\": 985496,\n  \"progress-wrench\": 986301,\n  \"projector\": 984110,\n  \"projector-off\": 989731,\n  \"projector-screen\": 984111,\n  \"projector-screen-off\": 989197,\n  \"projector-screen-off-outline\": 989198,\n  \"projector-screen-outline\": 988964,\n  \"projector-screen-variant\": 989199,\n  \"projector-screen-variant-off\": 989200,\n  \"projector-screen-variant-off-outline\": 989201,\n  \"projector-screen-variant-outline\": 989202,\n  \"propane-tank\": 987991,\n  \"propane-tank-outline\": 987992,\n  \"protocol\": 987096,\n  \"publish\": 984743,\n  \"publish-off\": 989509,\n  \"pulse\": 984112,\n  \"pump\": 988162,\n  \"pump-off\": 989986,\n  \"pumpkin\": 986047,\n  \"purse\": 986908,\n  \"purse-outline\": 986909,\n  \"puzzle\": 984113,\n  \"puzzle-check\": 988198,\n  \"puzzle-check-outline\": 988199,\n  \"puzzle-edit\": 988371,\n  \"puzzle-edit-outline\": 988377,\n  \"puzzle-heart\": 988372,\n  \"puzzle-heart-outline\": 988378,\n  \"puzzle-minus\": 988369,\n  \"puzzle-minus-outline\": 988375,\n  \"puzzle-outline\": 985702,\n  \"puzzle-plus\": 988368,\n  \"puzzle-plus-outline\": 988374,\n  \"puzzle-remove\": 988370,\n  \"puzzle-remove-outline\": 988376,\n  \"puzzle-star\": 988373,\n  \"puzzle-star-outline\": 988379,\n  \"pyramid\": 989522,\n  \"pyramid-off\": 989523,\n  \"qi\": 985497,\n  \"qqchat\": 984581,\n  \"qrcode\": 984114,\n  \"qrcode-edit\": 985272,\n  \"qrcode-minus\": 987532,\n  \"qrcode-plus\": 987531,\n  \"qrcode-remove\": 987533,\n  \"qrcode-scan\": 984115,\n  \"quadcopter\": 984116,\n  \"quality-high\": 984117,\n  \"quality-low\": 985612,\n  \"quality-medium\": 985613,\n  \"queue-first-in-last-out\": 990383,\n  \"quora\": 986409,\n  \"rabbit\": 985351,\n  \"rabbit-variant\": 989793,\n  \"rabbit-variant-outline\": 989794,\n  \"racing-helmet\": 986515,\n  \"racquetball\": 986516,\n  \"radar\": 984119,\n  \"radiator\": 984120,\n  \"radiator-disabled\": 985815,\n  \"radiator-off\": 985816,\n  \"radio\": 984121,\n  \"radio-am\": 986302,\n  \"radio-fm\": 986303,\n  \"radio-handheld\": 984122,\n  \"radio-off\": 987676,\n  \"radio-tower\": 984123,\n  \"radioactive\": 984124,\n  \"radioactive-circle\": 989277,\n  \"radioactive-circle-outline\": 989278,\n  \"radioactive-off\": 986817,\n  \"radiobox-blank\": 984125,\n  \"radiobox-indeterminate-variant\": 990302,\n  \"radiobox-marked\": 984126,\n  \"radiology-box\": 988357,\n  \"radiology-box-outline\": 988358,\n  \"radius\": 986304,\n  \"radius-outline\": 986305,\n  \"railroad-light\": 986910,\n  \"rake\": 988484,\n  \"raspberry-pi\": 984127,\n  \"raw\": 989711,\n  \"raw-off\": 989712,\n  \"ray-end\": 984128,\n  \"ray-end-arrow\": 984129,\n  \"ray-start\": 984130,\n  \"ray-start-arrow\": 984131,\n  \"ray-start-end\": 984132,\n  \"ray-start-vertex-end\": 988632,\n  \"ray-vertex\": 984133,\n  \"razor-double-edge\": 989591,\n  \"razor-single-edge\": 989592,\n  \"react\": 984840,\n  \"read\": 984135,\n  \"receipt\": 985124,\n  \"receipt-clock\": 990270,\n  \"receipt-clock-outline\": 990271,\n  \"receipt-outline\": 984311,\n  \"receipt-send\": 990272,\n  \"receipt-send-outline\": 990273,\n  \"receipt-text\": 984137,\n  \"receipt-text-arrow-left\": 990274,\n  \"receipt-text-arrow-left-outline\": 990275,\n  \"receipt-text-arrow-right\": 990276,\n  \"receipt-text-arrow-right-outline\": 990277,\n  \"receipt-text-check\": 989795,\n  \"receipt-text-check-outline\": 989796,\n  \"receipt-text-clock\": 990278,\n  \"receipt-text-clock-outline\": 990279,\n  \"receipt-text-edit\": 990280,\n  \"receipt-text-edit-outline\": 990281,\n  \"receipt-text-minus\": 989797,\n  \"receipt-text-minus-outline\": 989798,\n  \"receipt-text-outline\": 989660,\n  \"receipt-text-plus\": 989799,\n  \"receipt-text-plus-outline\": 989800,\n  \"receipt-text-remove\": 989801,\n  \"receipt-text-remove-outline\": 989802,\n  \"receipt-text-send\": 990282,\n  \"receipt-text-send-outline\": 990283,\n  \"record\": 984138,\n  \"record-circle\": 986818,\n  \"record-circle-outline\": 986819,\n  \"record-player\": 985498,\n  \"record-rec\": 984139,\n  \"rectangle\": 986718,\n  \"rectangle-outline\": 986719,\n  \"recycle\": 984140,\n  \"recycle-variant\": 988061,\n  \"reddit\": 984141,\n  \"redhat\": 987419,\n  \"redo\": 984142,\n  \"redo-variant\": 984143,\n  \"reflect-horizontal\": 985614,\n  \"reflect-vertical\": 985615,\n  \"refresh\": 984144,\n  \"refresh-auto\": 989426,\n  \"refresh-circle\": 988023,\n  \"regex\": 984145,\n  \"registered-trademark\": 985703,\n  \"reiterate\": 988552,\n  \"relation-many-to-many\": 988310,\n  \"relation-many-to-one\": 988311,\n  \"relation-many-to-one-or-many\": 988312,\n  \"relation-many-to-only-one\": 988313,\n  \"relation-many-to-zero-or-many\": 988314,\n  \"relation-many-to-zero-or-one\": 988315,\n  \"relation-one-or-many-to-many\": 988316,\n  \"relation-one-or-many-to-one\": 988317,\n  \"relation-one-or-many-to-one-or-many\": 988318,\n  \"relation-one-or-many-to-only-one\": 988319,\n  \"relation-one-or-many-to-zero-or-many\": 988320,\n  \"relation-one-or-many-to-zero-or-one\": 988321,\n  \"relation-one-to-many\": 988322,\n  \"relation-one-to-one\": 988323,\n  \"relation-one-to-one-or-many\": 988324,\n  \"relation-one-to-only-one\": 988325,\n  \"relation-one-to-zero-or-many\": 988326,\n  \"relation-one-to-zero-or-one\": 988327,\n  \"relation-only-one-to-many\": 988328,\n  \"relation-only-one-to-one\": 988329,\n  \"relation-only-one-to-one-or-many\": 988330,\n  \"relation-only-one-to-only-one\": 988331,\n  \"relation-only-one-to-zero-or-many\": 988332,\n  \"relation-only-one-to-zero-or-one\": 988333,\n  \"relation-zero-or-many-to-many\": 988334,\n  \"relation-zero-or-many-to-one\": 988335,\n  \"relation-zero-or-many-to-one-or-many\": 988336,\n  \"relation-zero-or-many-to-only-one\": 988337,\n  \"relation-zero-or-many-to-zero-or-many\": 988338,\n  \"relation-zero-or-many-to-zero-or-one\": 988339,\n  \"relation-zero-or-one-to-many\": 988340,\n  \"relation-zero-or-one-to-one\": 988341,\n  \"relation-zero-or-one-to-one-or-many\": 988342,\n  \"relation-zero-or-one-to-only-one\": 988343,\n  \"relation-zero-or-one-to-zero-or-many\": 988344,\n  \"relation-zero-or-one-to-zero-or-one\": 988345,\n  \"relative-scale\": 984146,\n  \"reload\": 984147,\n  \"reload-alert\": 987403,\n  \"reminder\": 985228,\n  \"remote\": 984148,\n  \"remote-desktop\": 985273,\n  \"remote-off\": 986820,\n  \"remote-tv\": 986821,\n  \"remote-tv-off\": 986822,\n  \"rename\": 990232,\n  \"rename-box\": 984149,\n  \"rename-box-outline\": 990233,\n  \"rename-outline\": 990234,\n  \"reorder-horizontal\": 984712,\n  \"reorder-vertical\": 984713,\n  \"repeat\": 984150,\n  \"repeat-off\": 984151,\n  \"repeat-once\": 984152,\n  \"repeat-variant\": 984391,\n  \"replay\": 984153,\n  \"reply\": 984154,\n  \"reply-all\": 984155,\n  \"reply-all-outline\": 986911,\n  \"reply-circle\": 987566,\n  \"reply-outline\": 986912,\n  \"reproduction\": 984156,\n  \"resistor\": 985924,\n  \"resistor-nodes\": 985925,\n  \"resize\": 985704,\n  \"resize-bottom-right\": 984157,\n  \"responsive\": 984158,\n  \"restart\": 984841,\n  \"restart-alert\": 987404,\n  \"restart-off\": 986517,\n  \"restore\": 985499,\n  \"restore-alert\": 987405,\n  \"rewind\": 984159,\n  \"rewind-10\": 986410,\n  \"rewind-15\": 989510,\n  \"rewind-30\": 986518,\n  \"rewind-45\": 989971,\n  \"rewind-5\": 987641,\n  \"rewind-60\": 988684,\n  \"rewind-outline\": 984842,\n  \"rhombus\": 984843,\n  \"rhombus-medium\": 985616,\n  \"rhombus-medium-outline\": 988380,\n  \"rhombus-outline\": 984844,\n  \"rhombus-split\": 985617,\n  \"rhombus-split-outline\": 988381,\n  \"ribbon\": 984160,\n  \"rice\": 985066,\n  \"rickshaw\": 988603,\n  \"rickshaw-electric\": 988604,\n  \"ring\": 985067,\n  \"rivet\": 986720,\n  \"road\": 984161,\n  \"road-variant\": 984162,\n  \"robber\": 987224,\n  \"robot\": 984745,\n  \"robot-angry\": 988829,\n  \"robot-angry-outline\": 988830,\n  \"robot-confused\": 988831,\n  \"robot-confused-outline\": 988832,\n  \"robot-dead\": 988833,\n  \"robot-dead-outline\": 988834,\n  \"robot-excited\": 988835,\n  \"robot-excited-outline\": 988836,\n  \"robot-happy\": 988953,\n  \"robot-happy-outline\": 988954,\n  \"robot-industrial\": 985926,\n  \"robot-industrial-outline\": 989722,\n  \"robot-love\": 988837,\n  \"robot-love-outline\": 988838,\n  \"robot-mower\": 987639,\n  \"robot-mower-outline\": 987635,\n  \"robot-off\": 988839,\n  \"robot-off-outline\": 988795,\n  \"robot-outline\": 988794,\n  \"robot-vacuum\": 984845,\n  \"robot-vacuum-alert\": 990045,\n  \"robot-vacuum-off\": 990209,\n  \"robot-vacuum-variant\": 985352,\n  \"robot-vacuum-variant-alert\": 990046,\n  \"robot-vacuum-variant-off\": 990210,\n  \"rocket\": 984163,\n  \"rocket-launch\": 988382,\n  \"rocket-launch-outline\": 988383,\n  \"rocket-outline\": 988079,\n  \"rodent\": 987943,\n  \"roller-shade\": 989803,\n  \"roller-shade-closed\": 989804,\n  \"roller-skate\": 986411,\n  \"roller-skate-off\": 983365,\n  \"rollerblade\": 986412,\n  \"rollerblade-off\": 983086,\n  \"rollupjs\": 986048,\n  \"rolodex\": 989881,\n  \"rolodex-outline\": 989882,\n  \"roman-numeral-1\": 987272,\n  \"roman-numeral-10\": 987281,\n  \"roman-numeral-2\": 987273,\n  \"roman-numeral-3\": 987274,\n  \"roman-numeral-4\": 987275,\n  \"roman-numeral-5\": 987276,\n  \"roman-numeral-6\": 987277,\n  \"roman-numeral-7\": 987278,\n  \"roman-numeral-8\": 987279,\n  \"roman-numeral-9\": 987280,\n  \"room-service\": 985229,\n  \"room-service-outline\": 986519,\n  \"rotate-360\": 989593,\n  \"rotate-3d\": 986823,\n  \"rotate-3d-variant\": 984164,\n  \"rotate-left\": 984165,\n  \"rotate-left-variant\": 984166,\n  \"rotate-orbit\": 986520,\n  \"rotate-right\": 984167,\n  \"rotate-right-variant\": 984168,\n  \"rounded-corner\": 984583,\n  \"router\": 987618,\n  \"router-network\": 987271,\n  \"router-network-wireless\": 990359,\n  \"router-wireless\": 984169,\n  \"router-wireless-off\": 988579,\n  \"router-wireless-settings\": 985705,\n  \"routes\": 984170,\n  \"routes-clock\": 987225,\n  \"rowing\": 984584,\n  \"rss\": 984171,\n  \"rss-box\": 984172,\n  \"rss-off\": 986913,\n  \"rug\": 988277,\n  \"rugby\": 986521,\n  \"ruler\": 984173,\n  \"ruler-square\": 986306,\n  \"ruler-square-compass\": 986814,\n  \"run\": 984846,\n  \"run-fast\": 984174,\n  \"rv-truck\": 987604,\n  \"sack\": 986414,\n  \"sack-outline\": 990284,\n  \"sack-percent\": 986415,\n  \"safe\": 985706,\n  \"safe-square\": 987772,\n  \"safe-square-outline\": 987773,\n  \"safety-goggles\": 986416,\n  \"sail-boat\": 986824,\n  \"sail-boat-sink\": 989935,\n  \"sale\": 984175,\n  \"sale-outline\": 989702,\n  \"salesforce\": 985230,\n  \"sass\": 985068,\n  \"satellite\": 984176,\n  \"satellite-uplink\": 985353,\n  \"satellite-variant\": 984177,\n  \"sausage\": 985274,\n  \"sausage-off\": 989065,\n  \"saw-blade\": 986721,\n  \"sawtooth-wave\": 988282,\n  \"saxophone\": 984585,\n  \"scale\": 984178,\n  \"scale-balance\": 984529,\n  \"scale-bathroom\": 984179,\n  \"scale-off\": 987226,\n  \"scale-unbalanced\": 989624,\n  \"scan-helper\": 988120,\n  \"scanner\": 984747,\n  \"scanner-off\": 985354,\n  \"scatter-plot\": 986825,\n  \"scatter-plot-outline\": 986826,\n  \"scent\": 989528,\n  \"scent-off\": 989529,\n  \"school\": 984180,\n  \"school-outline\": 987520,\n  \"scissors-cutting\": 985707,\n  \"scooter\": 988605,\n  \"scooter-electric\": 988606,\n  \"scoreboard\": 987774,\n  \"scoreboard-outline\": 987775,\n  \"screen-rotation\": 984181,\n  \"screen-rotation-lock\": 984184,\n  \"screw-flat-top\": 986611,\n  \"screw-lag\": 986612,\n  \"screw-machine-flat-top\": 986613,\n  \"screw-machine-round-top\": 986614,\n  \"screw-round-top\": 986615,\n  \"screwdriver\": 984182,\n  \"script\": 986049,\n  \"script-outline\": 984183,\n  \"script-text\": 986050,\n  \"script-text-key\": 988965,\n  \"script-text-key-outline\": 988966,\n  \"script-text-outline\": 986051,\n  \"script-text-play\": 988967,\n  \"script-text-play-outline\": 988968,\n  \"sd\": 984185,\n  \"seal\": 984186,\n  \"seal-variant\": 987097,\n  \"search-web\": 984847,\n  \"seat\": 986307,\n  \"seat-flat\": 984187,\n  \"seat-flat-angled\": 984188,\n  \"seat-individual-suite\": 984189,\n  \"seat-legroom-extra\": 984190,\n  \"seat-legroom-normal\": 984191,\n  \"seat-legroom-reduced\": 984192,\n  \"seat-outline\": 986308,\n  \"seat-passenger\": 987721,\n  \"seat-recline-extra\": 984193,\n  \"seat-recline-normal\": 984194,\n  \"seatbelt\": 986309,\n  \"security\": 984195,\n  \"security-network\": 984196,\n  \"seed\": 986722,\n  \"seed-off\": 988157,\n  \"seed-off-outline\": 988158,\n  \"seed-outline\": 986723,\n  \"seed-plus\": 989805,\n  \"seed-plus-outline\": 989806,\n  \"seesaw\": 988580,\n  \"segment\": 986827,\n  \"select\": 984197,\n  \"select-all\": 984198,\n  \"select-arrow-down\": 990041,\n  \"select-arrow-up\": 990040,\n  \"select-color\": 986417,\n  \"select-compare\": 985817,\n  \"select-drag\": 985708,\n  \"select-group\": 987010,\n  \"select-inverse\": 984199,\n  \"select-marker\": 987776,\n  \"select-multiple\": 987777,\n  \"select-multiple-marker\": 987778,\n  \"select-off\": 984200,\n  \"select-place\": 987098,\n  \"select-remove\": 989121,\n  \"select-search\": 987652,\n  \"selection\": 984201,\n  \"selection-drag\": 985709,\n  \"selection-ellipse\": 986418,\n  \"selection-ellipse-arrow-inside\": 986914,\n  \"selection-ellipse-remove\": 989122,\n  \"selection-marker\": 987779,\n  \"selection-multiple\": 987781,\n  \"selection-multiple-marker\": 987780,\n  \"selection-off\": 984951,\n  \"selection-remove\": 989123,\n  \"selection-search\": 987653,\n  \"semantic-web\": 987926,\n  \"send\": 984202,\n  \"send-check\": 987489,\n  \"send-check-outline\": 987490,\n  \"send-circle\": 986616,\n  \"send-circle-outline\": 986617,\n  \"send-clock\": 987491,\n  \"send-clock-outline\": 987492,\n  \"send-lock\": 985069,\n  \"send-lock-outline\": 987494,\n  \"send-outline\": 987493,\n  \"send-variant\": 990285,\n  \"send-variant-clock\": 990334,\n  \"send-variant-clock-outline\": 990335,\n  \"send-variant-outline\": 990286,\n  \"serial-port\": 984668,\n  \"server\": 984203,\n  \"server-minus\": 984204,\n  \"server-minus-outline\": 990360,\n  \"server-network\": 984205,\n  \"server-network-off\": 984206,\n  \"server-network-outline\": 990361,\n  \"server-off\": 984207,\n  \"server-outline\": 990362,\n  \"server-plus\": 984208,\n  \"server-plus-outline\": 990363,\n  \"server-remove\": 984209,\n  \"server-security\": 984210,\n  \"set-all\": 984952,\n  \"set-center\": 984953,\n  \"set-center-right\": 984954,\n  \"set-left\": 984955,\n  \"set-left-center\": 984956,\n  \"set-left-right\": 984957,\n  \"set-merge\": 988384,\n  \"set-none\": 984958,\n  \"set-right\": 984959,\n  \"set-split\": 988385,\n  \"set-square\": 988253,\n  \"set-top-box\": 985503,\n  \"settings-helper\": 985710,\n  \"shaker\": 987406,\n  \"shaker-outline\": 987407,\n  \"shape\": 985137,\n  \"shape-circle-plus\": 984669,\n  \"shape-outline\": 985138,\n  \"shape-oval-plus\": 987642,\n  \"shape-plus\": 984213,\n  \"shape-plus-outline\": 990287,\n  \"shape-polygon-plus\": 984670,\n  \"shape-rectangle-plus\": 984671,\n  \"shape-square-plus\": 984672,\n  \"shape-square-rounded-plus\": 988410,\n  \"share\": 984214,\n  \"share-all\": 987636,\n  \"share-all-outline\": 987637,\n  \"share-circle\": 987565,\n  \"share-off\": 986915,\n  \"share-off-outline\": 986916,\n  \"share-outline\": 985394,\n  \"share-variant\": 984215,\n  \"share-variant-outline\": 988436,\n  \"shark\": 989370,\n  \"shark-fin\": 988787,\n  \"shark-fin-outline\": 988788,\n  \"shark-off\": 989371,\n  \"sheep\": 986310,\n  \"shield\": 984216,\n  \"shield-account\": 985231,\n  \"shield-account-outline\": 985618,\n  \"shield-account-variant\": 988583,\n  \"shield-account-variant-outline\": 988584,\n  \"shield-airplane\": 984763,\n  \"shield-airplane-outline\": 986311,\n  \"shield-alert\": 986828,\n  \"shield-alert-outline\": 986829,\n  \"shield-bug\": 988122,\n  \"shield-bug-outline\": 988123,\n  \"shield-car\": 987011,\n  \"shield-check\": 984421,\n  \"shield-check-outline\": 986312,\n  \"shield-cross\": 986313,\n  \"shield-cross-outline\": 986314,\n  \"shield-crown\": 989372,\n  \"shield-crown-outline\": 989373,\n  \"shield-edit\": 987552,\n  \"shield-edit-outline\": 987553,\n  \"shield-half\": 988000,\n  \"shield-half-full\": 984960,\n  \"shield-home\": 984714,\n  \"shield-home-outline\": 986315,\n  \"shield-key\": 986052,\n  \"shield-key-outline\": 986053,\n  \"shield-link-variant\": 986419,\n  \"shield-link-variant-outline\": 986420,\n  \"shield-lock\": 985501,\n  \"shield-lock-open\": 989594,\n  \"shield-lock-open-outline\": 989595,\n  \"shield-lock-outline\": 986316,\n  \"shield-moon\": 989224,\n  \"shield-moon-outline\": 989225,\n  \"shield-off\": 985502,\n  \"shield-off-outline\": 985500,\n  \"shield-outline\": 984217,\n  \"shield-plus\": 985818,\n  \"shield-plus-outline\": 985819,\n  \"shield-refresh\": 983210,\n  \"shield-refresh-outline\": 983520,\n  \"shield-remove\": 985820,\n  \"shield-remove-outline\": 985821,\n  \"shield-search\": 986522,\n  \"shield-star\": 987451,\n  \"shield-star-outline\": 987452,\n  \"shield-sun\": 987229,\n  \"shield-sun-outline\": 987230,\n  \"shield-sword\": 989374,\n  \"shield-sword-outline\": 989375,\n  \"shield-sync\": 987554,\n  \"shield-sync-outline\": 987555,\n  \"shimmer\": 988485,\n  \"ship-wheel\": 985139,\n  \"shipping-pallet\": 989262,\n  \"shoe-ballet\": 988618,\n  \"shoe-cleat\": 988615,\n  \"shoe-formal\": 985927,\n  \"shoe-heel\": 985928,\n  \"shoe-print\": 986618,\n  \"shoe-sneaker\": 988616,\n  \"shopping\": 984218,\n  \"shopping-music\": 984219,\n  \"shopping-outline\": 987605,\n  \"shopping-search\": 987012,\n  \"shopping-search-outline\": 989807,\n  \"shore\": 988409,\n  \"shovel\": 984848,\n  \"shovel-off\": 984849,\n  \"shower\": 985504,\n  \"shower-head\": 985505,\n  \"shredder\": 984220,\n  \"shuffle\": 984221,\n  \"shuffle-disabled\": 984222,\n  \"shuffle-variant\": 984223,\n  \"shuriken\": 988031,\n  \"sickle\": 989376,\n  \"sigma\": 984224,\n  \"sigma-lower\": 984619,\n  \"sign-caution\": 984225,\n  \"sign-direction\": 984961,\n  \"sign-direction-minus\": 987136,\n  \"sign-direction-plus\": 987100,\n  \"sign-direction-remove\": 987101,\n  \"sign-language\": 990029,\n  \"sign-language-outline\": 990030,\n  \"sign-pole\": 988408,\n  \"sign-real-estate\": 987416,\n  \"sign-text\": 984962,\n  \"sign-yield\": 990127,\n  \"signal\": 984226,\n  \"signal-2g\": 984850,\n  \"signal-3g\": 984851,\n  \"signal-4g\": 984852,\n  \"signal-5g\": 985711,\n  \"signal-cellular-1\": 985276,\n  \"signal-cellular-2\": 985277,\n  \"signal-cellular-3\": 985278,\n  \"signal-cellular-outline\": 985279,\n  \"signal-distance-variant\": 986724,\n  \"signal-hspa\": 984853,\n  \"signal-hspa-plus\": 984854,\n  \"signal-off\": 984963,\n  \"signal-variant\": 984586,\n  \"signature\": 986619,\n  \"signature-freehand\": 986620,\n  \"signature-image\": 986621,\n  \"signature-text\": 986622,\n  \"silo\": 990111,\n  \"silo-outline\": 985929,\n  \"silverware\": 984227,\n  \"silverware-clean\": 987102,\n  \"silverware-fork\": 984228,\n  \"silverware-fork-knife\": 985712,\n  \"silverware-spoon\": 984229,\n  \"silverware-variant\": 984230,\n  \"sim\": 984231,\n  \"sim-alert\": 984232,\n  \"sim-alert-outline\": 988627,\n  \"sim-off\": 984233,\n  \"sim-off-outline\": 988628,\n  \"sim-outline\": 988629,\n  \"simple-icons\": 987933,\n  \"sina-weibo\": 985823,\n  \"sine-wave\": 985435,\n  \"sitemap\": 984234,\n  \"sitemap-outline\": 989596,\n  \"size-l\": 988070,\n  \"size-m\": 988069,\n  \"size-s\": 988068,\n  \"size-xl\": 988071,\n  \"size-xs\": 988067,\n  \"size-xxl\": 988072,\n  \"size-xxs\": 988066,\n  \"size-xxxl\": 988073,\n  \"skate\": 986421,\n  \"skate-off\": 984729,\n  \"skateboard\": 988354,\n  \"skateboarding\": 984321,\n  \"skew-less\": 986422,\n  \"skew-more\": 986423,\n  \"ski\": 987908,\n  \"ski-cross-country\": 987909,\n  \"ski-water\": 987910,\n  \"skip-backward\": 984235,\n  \"skip-backward-outline\": 986917,\n  \"skip-forward\": 984236,\n  \"skip-forward-outline\": 986918,\n  \"skip-next\": 984237,\n  \"skip-next-circle\": 984673,\n  \"skip-next-circle-outline\": 984674,\n  \"skip-next-outline\": 986919,\n  \"skip-previous\": 984238,\n  \"skip-previous-circle\": 984675,\n  \"skip-previous-circle-outline\": 984676,\n  \"skip-previous-outline\": 986920,\n  \"skull\": 984716,\n  \"skull-crossbones\": 986054,\n  \"skull-crossbones-outline\": 986055,\n  \"skull-outline\": 986056,\n  \"skull-scan\": 988359,\n  \"skull-scan-outline\": 988360,\n  \"skype\": 984239,\n  \"skype-business\": 984240,\n  \"slack\": 984241,\n  \"slash-forward\": 987103,\n  \"slash-forward-box\": 987104,\n  \"sledding\": 984091,\n  \"sleep\": 984242,\n  \"sleep-off\": 984243,\n  \"slide\": 988581,\n  \"slope-downhill\": 986623,\n  \"slope-uphill\": 986624,\n  \"slot-machine\": 987412,\n  \"slot-machine-outline\": 987413,\n  \"smart-card\": 987325,\n  \"smart-card-off\": 989431,\n  \"smart-card-off-outline\": 989432,\n  \"smart-card-outline\": 987326,\n  \"smart-card-reader\": 987327,\n  \"smart-card-reader-outline\": 987328,\n  \"smog\": 985713,\n  \"smoke\": 989081,\n  \"smoke-detector\": 983954,\n  \"smoke-detector-alert\": 989486,\n  \"smoke-detector-alert-outline\": 989487,\n  \"smoke-detector-off\": 989193,\n  \"smoke-detector-off-outline\": 989194,\n  \"smoke-detector-outline\": 989192,\n  \"smoke-detector-variant\": 989195,\n  \"smoke-detector-variant-alert\": 989488,\n  \"smoke-detector-variant-off\": 989196,\n  \"smoking\": 984244,\n  \"smoking-off\": 984245,\n  \"smoking-pipe\": 988173,\n  \"smoking-pipe-off\": 988200,\n  \"snail\": 988791,\n  \"snake\": 988430,\n  \"snapchat\": 984246,\n  \"snowboard\": 987911,\n  \"snowflake\": 984855,\n  \"snowflake-alert\": 986921,\n  \"snowflake-check\": 989808,\n  \"snowflake-melt\": 987851,\n  \"snowflake-off\": 988387,\n  \"snowflake-thermometer\": 989809,\n  \"snowflake-variant\": 986922,\n  \"snowman\": 984247,\n  \"snowmobile\": 984797,\n  \"snowshoeing\": 989810,\n  \"soccer\": 984248,\n  \"soccer-field\": 985140,\n  \"social-distance-2-meters\": 988537,\n  \"social-distance-6-feet\": 988538,\n  \"sofa\": 984249,\n  \"sofa-outline\": 988525,\n  \"sofa-single\": 988526,\n  \"sofa-single-outline\": 988527,\n  \"solar-panel\": 986523,\n  \"solar-panel-large\": 986524,\n  \"solar-power\": 985714,\n  \"solar-power-variant\": 989811,\n  \"solar-power-variant-outline\": 989812,\n  \"soldering-iron\": 987282,\n  \"solid\": 984717,\n  \"sony-playstation\": 984084,\n  \"sort\": 984250,\n  \"sort-alphabetical-ascending\": 984509,\n  \"sort-alphabetical-ascending-variant\": 987464,\n  \"sort-alphabetical-descending\": 984511,\n  \"sort-alphabetical-descending-variant\": 987465,\n  \"sort-alphabetical-variant\": 984251,\n  \"sort-ascending\": 984252,\n  \"sort-bool-ascending\": 988037,\n  \"sort-bool-ascending-variant\": 988038,\n  \"sort-bool-descending\": 988039,\n  \"sort-bool-descending-variant\": 988040,\n  \"sort-calendar-ascending\": 988487,\n  \"sort-calendar-descending\": 988488,\n  \"sort-clock-ascending\": 988489,\n  \"sort-clock-ascending-outline\": 988490,\n  \"sort-clock-descending\": 988491,\n  \"sort-clock-descending-outline\": 988492,\n  \"sort-descending\": 984253,\n  \"sort-numeric-ascending\": 988041,\n  \"sort-numeric-ascending-variant\": 985357,\n  \"sort-numeric-descending\": 988042,\n  \"sort-numeric-descending-variant\": 985810,\n  \"sort-numeric-variant\": 984254,\n  \"sort-reverse-variant\": 983868,\n  \"sort-variant\": 984255,\n  \"sort-variant-lock\": 986317,\n  \"sort-variant-lock-open\": 986318,\n  \"sort-variant-off\": 989883,\n  \"sort-variant-remove\": 987463,\n  \"soundbar\": 989147,\n  \"soundcloud\": 984256,\n  \"source-branch\": 984620,\n  \"source-branch-check\": 988367,\n  \"source-branch-minus\": 988363,\n  \"source-branch-plus\": 988362,\n  \"source-branch-refresh\": 988365,\n  \"source-branch-remove\": 988364,\n  \"source-branch-sync\": 988366,\n  \"source-commit\": 984856,\n  \"source-commit-end\": 984857,\n  \"source-commit-end-local\": 984858,\n  \"source-commit-local\": 984859,\n  \"source-commit-next-local\": 984860,\n  \"source-commit-start\": 984861,\n  \"source-commit-start-next-local\": 984862,\n  \"source-fork\": 984257,\n  \"source-merge\": 984621,\n  \"source-pull\": 984258,\n  \"source-repository\": 986319,\n  \"source-repository-multiple\": 986320,\n  \"soy-sauce\": 985070,\n  \"soy-sauce-off\": 988156,\n  \"spa\": 986321,\n  \"spa-outline\": 986322,\n  \"space-invaders\": 986057,\n  \"space-station\": 988035,\n  \"spade\": 986725,\n  \"speaker\": 984259,\n  \"speaker-bluetooth\": 985506,\n  \"speaker-message\": 989969,\n  \"speaker-multiple\": 986424,\n  \"speaker-off\": 984260,\n  \"speaker-pause\": 990067,\n  \"speaker-play\": 990066,\n  \"speaker-stop\": 990068,\n  \"speaker-wireless\": 984863,\n  \"spear\": 989253,\n  \"speedometer\": 984261,\n  \"speedometer-medium\": 987013,\n  \"speedometer-slow\": 987014,\n  \"spellcheck\": 984262,\n  \"sphere\": 989524,\n  \"sphere-off\": 989525,\n  \"spider\": 987626,\n  \"spider-outline\": 990325,\n  \"spider-thread\": 987627,\n  \"spider-web\": 986058,\n  \"spirit-level\": 988401,\n  \"spoon-sugar\": 988201,\n  \"spotify\": 984263,\n  \"spotlight\": 984264,\n  \"spotlight-beam\": 984265,\n  \"spray\": 984677,\n  \"spray-bottle\": 985824,\n  \"sprinkler\": 987231,\n  \"sprinkler-fire\": 989597,\n  \"sprinkler-variant\": 987232,\n  \"sprout\": 986726,\n  \"sprout-outline\": 986727,\n  \"square\": 984932,\n  \"square-circle\": 988416,\n  \"square-circle-outline\": 990288,\n  \"square-edit-outline\": 985356,\n  \"square-medium\": 985619,\n  \"square-medium-outline\": 985620,\n  \"square-off\": 987886,\n  \"square-off-outline\": 987887,\n  \"square-opacity\": 989268,\n  \"square-outline\": 984931,\n  \"square-root\": 984964,\n  \"square-root-box\": 985507,\n  \"square-rounded\": 988411,\n  \"square-rounded-badge\": 989703,\n  \"square-rounded-badge-outline\": 989704,\n  \"square-rounded-outline\": 988412,\n  \"square-small\": 985621,\n  \"square-wave\": 988283,\n  \"squeegee\": 985825,\n  \"ssh\": 985280,\n  \"stack-exchange\": 984587,\n  \"stack-overflow\": 984268,\n  \"stackpath\": 983897,\n  \"stadium\": 987129,\n  \"stadium-outline\": 989955,\n  \"stadium-variant\": 984864,\n  \"stairs\": 984269,\n  \"stairs-box\": 988062,\n  \"stairs-down\": 987838,\n  \"stairs-up\": 987837,\n  \"stamper\": 986425,\n  \"standard-definition\": 985071,\n  \"star\": 984270,\n  \"star-box\": 985715,\n  \"star-box-multiple\": 987782,\n  \"star-box-multiple-outline\": 987783,\n  \"star-box-outline\": 985716,\n  \"star-check\": 988518,\n  \"star-check-outline\": 988522,\n  \"star-circle\": 984271,\n  \"star-circle-outline\": 985508,\n  \"star-cog\": 988776,\n  \"star-cog-outline\": 988777,\n  \"star-crescent\": 985465,\n  \"star-david\": 985466,\n  \"star-face\": 985509,\n  \"star-four-points\": 985826,\n  \"star-four-points-box\": 990289,\n  \"star-four-points-box-outline\": 990290,\n  \"star-four-points-circle\": 990291,\n  \"star-four-points-circle-outline\": 990292,\n  \"star-four-points-outline\": 985827,\n  \"star-four-points-small\": 990293,\n  \"star-half\": 983622,\n  \"star-half-full\": 984272,\n  \"star-minus\": 988516,\n  \"star-minus-outline\": 988520,\n  \"star-off\": 984273,\n  \"star-off-outline\": 988507,\n  \"star-outline\": 984274,\n  \"star-plus\": 988515,\n  \"star-plus-outline\": 988519,\n  \"star-remove\": 988517,\n  \"star-remove-outline\": 988521,\n  \"star-settings\": 988778,\n  \"star-settings-outline\": 988779,\n  \"star-shooting\": 988993,\n  \"star-shooting-outline\": 988994,\n  \"star-three-points\": 985828,\n  \"star-three-points-outline\": 985829,\n  \"state-machine\": 987631,\n  \"steam\": 984275,\n  \"steering\": 984276,\n  \"steering-off\": 985358,\n  \"step-backward\": 984277,\n  \"step-backward-2\": 984278,\n  \"step-forward\": 984279,\n  \"step-forward-2\": 984280,\n  \"stethoscope\": 984281,\n  \"sticker\": 988004,\n  \"sticker-alert\": 988005,\n  \"sticker-alert-outline\": 988006,\n  \"sticker-check\": 988007,\n  \"sticker-check-outline\": 988008,\n  \"sticker-circle-outline\": 984528,\n  \"sticker-emoji\": 984965,\n  \"sticker-minus\": 988009,\n  \"sticker-minus-outline\": 988010,\n  \"sticker-outline\": 988011,\n  \"sticker-plus\": 988012,\n  \"sticker-plus-outline\": 988013,\n  \"sticker-remove\": 988014,\n  \"sticker-remove-outline\": 988015,\n  \"sticker-text\": 989070,\n  \"sticker-text-outline\": 989071,\n  \"stocking\": 984282,\n  \"stomach\": 987283,\n  \"stool\": 989533,\n  \"stool-outline\": 989534,\n  \"stop\": 984283,\n  \"stop-circle\": 984678,\n  \"stop-circle-outline\": 984679,\n  \"storage-tank\": 989813,\n  \"storage-tank-outline\": 989814,\n  \"store\": 984284,\n  \"store-24-hour\": 984285,\n  \"store-alert\": 989377,\n  \"store-alert-outline\": 989378,\n  \"store-check\": 989379,\n  \"store-check-outline\": 989380,\n  \"store-clock\": 989381,\n  \"store-clock-outline\": 989382,\n  \"store-cog\": 989383,\n  \"store-cog-outline\": 989384,\n  \"store-edit\": 989385,\n  \"store-edit-outline\": 989386,\n  \"store-marker\": 989387,\n  \"store-marker-outline\": 989388,\n  \"store-minus\": 988766,\n  \"store-minus-outline\": 989389,\n  \"store-off\": 989390,\n  \"store-off-outline\": 989391,\n  \"store-outline\": 988001,\n  \"store-plus\": 988767,\n  \"store-plus-outline\": 989392,\n  \"store-remove\": 988768,\n  \"store-remove-outline\": 989393,\n  \"store-search\": 989394,\n  \"store-search-outline\": 989395,\n  \"store-settings\": 989396,\n  \"store-settings-outline\": 989397,\n  \"storefront\": 985031,\n  \"storefront-check\": 990077,\n  \"storefront-check-outline\": 990078,\n  \"storefront-edit\": 990079,\n  \"storefront-edit-outline\": 990080,\n  \"storefront-minus\": 990083,\n  \"storefront-minus-outline\": 990084,\n  \"storefront-outline\": 987329,\n  \"storefront-plus\": 990081,\n  \"storefront-plus-outline\": 990082,\n  \"storefront-remove\": 990085,\n  \"storefront-remove-outline\": 990086,\n  \"stove\": 984286,\n  \"strategy\": 987606,\n  \"stretch-to-page\": 986923,\n  \"stretch-to-page-outline\": 986924,\n  \"string-lights\": 987834,\n  \"string-lights-off\": 987835,\n  \"subdirectory-arrow-left\": 984588,\n  \"subdirectory-arrow-right\": 984589,\n  \"submarine\": 988524,\n  \"subtitles\": 985622,\n  \"subtitles-outline\": 985623,\n  \"subway\": 984748,\n  \"subway-alert-variant\": 986525,\n  \"subway-variant\": 984287,\n  \"summit\": 984966,\n  \"sun-angle\": 989991,\n  \"sun-angle-outline\": 989992,\n  \"sun-clock\": 989815,\n  \"sun-clock-outline\": 989816,\n  \"sun-compass\": 989605,\n  \"sun-snowflake\": 989078,\n  \"sun-snowflake-variant\": 989817,\n  \"sun-thermometer\": 989398,\n  \"sun-thermometer-outline\": 989399,\n  \"sun-wireless\": 989182,\n  \"sun-wireless-outline\": 989183,\n  \"sunglasses\": 984288,\n  \"surfing\": 988998,\n  \"surround-sound\": 984517,\n  \"surround-sound-2-0\": 985072,\n  \"surround-sound-2-1\": 988969,\n  \"surround-sound-3-1\": 985073,\n  \"surround-sound-5-1\": 985074,\n  \"surround-sound-5-1-2\": 988970,\n  \"surround-sound-7-1\": 985075,\n  \"svg\": 984865,\n  \"swap-horizontal\": 984289,\n  \"swap-horizontal-bold\": 986061,\n  \"swap-horizontal-circle\": 987105,\n  \"swap-horizontal-circle-outline\": 987106,\n  \"swap-horizontal-hidden\": 990478,\n  \"swap-horizontal-variant\": 985281,\n  \"swap-vertical\": 984290,\n  \"swap-vertical-bold\": 986062,\n  \"swap-vertical-circle\": 987107,\n  \"swap-vertical-circle-outline\": 987108,\n  \"swap-vertical-variant\": 985282,\n  \"swim\": 984291,\n  \"switch\": 984292,\n  \"sword\": 984293,\n  \"sword-cross\": 984967,\n  \"syllabary-hangul\": 987955,\n  \"syllabary-hiragana\": 987956,\n  \"syllabary-katakana\": 987957,\n  \"syllabary-katakana-halfwidth\": 987958,\n  \"symbol\": 988417,\n  \"symfony\": 985830,\n  \"synagogue\": 989956,\n  \"synagogue-outline\": 989957,\n  \"sync\": 984294,\n  \"sync-alert\": 984295,\n  \"sync-circle\": 988024,\n  \"sync-off\": 984296,\n  \"tab\": 984297,\n  \"tab-minus\": 985931,\n  \"tab-plus\": 984924,\n  \"tab-remove\": 985932,\n  \"tab-search\": 989598,\n  \"tab-unselected\": 984298,\n  \"table\": 984299,\n  \"table-account\": 988089,\n  \"table-alert\": 988090,\n  \"table-arrow-down\": 988091,\n  \"table-arrow-left\": 988092,\n  \"table-arrow-right\": 988093,\n  \"table-arrow-up\": 988094,\n  \"table-border\": 985624,\n  \"table-cancel\": 988095,\n  \"table-chair\": 987233,\n  \"table-check\": 988096,\n  \"table-clock\": 988097,\n  \"table-cog\": 988098,\n  \"table-column\": 985141,\n  \"table-column-plus-after\": 984300,\n  \"table-column-plus-before\": 984301,\n  \"table-column-remove\": 984302,\n  \"table-column-width\": 984303,\n  \"table-edit\": 984304,\n  \"table-eye\": 987284,\n  \"table-eye-off\": 988099,\n  \"table-filter\": 990092,\n  \"table-furniture\": 984508,\n  \"table-headers-eye\": 987677,\n  \"table-headers-eye-off\": 987678,\n  \"table-heart\": 988100,\n  \"table-key\": 988101,\n  \"table-large\": 984305,\n  \"table-large-plus\": 987015,\n  \"table-large-remove\": 987016,\n  \"table-lock\": 988102,\n  \"table-merge-cells\": 985510,\n  \"table-minus\": 988103,\n  \"table-multiple\": 988104,\n  \"table-network\": 988105,\n  \"table-of-contents\": 985142,\n  \"table-off\": 988106,\n  \"table-picnic\": 988995,\n  \"table-pivot\": 989244,\n  \"table-plus\": 985717,\n  \"table-question\": 989985,\n  \"table-refresh\": 988064,\n  \"table-remove\": 985718,\n  \"table-row\": 985143,\n  \"table-row-height\": 984306,\n  \"table-row-plus-after\": 984307,\n  \"table-row-plus-before\": 984308,\n  \"table-row-remove\": 984309,\n  \"table-search\": 985359,\n  \"table-settings\": 985144,\n  \"table-split-cell\": 988202,\n  \"table-star\": 988107,\n  \"table-sync\": 988065,\n  \"table-tennis\": 986728,\n  \"tablet\": 984310,\n  \"tablet-cellphone\": 985511,\n  \"tablet-dashboard\": 986830,\n  \"taco\": 984930,\n  \"tag\": 984313,\n  \"tag-arrow-down\": 988971,\n  \"tag-arrow-down-outline\": 988972,\n  \"tag-arrow-left\": 988973,\n  \"tag-arrow-left-outline\": 988974,\n  \"tag-arrow-right\": 988975,\n  \"tag-arrow-right-outline\": 988976,\n  \"tag-arrow-up\": 988977,\n  \"tag-arrow-up-outline\": 988978,\n  \"tag-check\": 989818,\n  \"tag-check-outline\": 989819,\n  \"tag-edit\": 990364,\n  \"tag-edit-outline\": 990365,\n  \"tag-faces\": 984314,\n  \"tag-heart\": 984715,\n  \"tag-heart-outline\": 986063,\n  \"tag-hidden\": 990326,\n  \"tag-minus\": 985360,\n  \"tag-minus-outline\": 987679,\n  \"tag-multiple\": 984315,\n  \"tag-multiple-outline\": 987895,\n  \"tag-off\": 987680,\n  \"tag-off-outline\": 987681,\n  \"tag-outline\": 984316,\n  \"tag-plus\": 984866,\n  \"tag-plus-outline\": 987682,\n  \"tag-remove\": 984867,\n  \"tag-remove-outline\": 987683,\n  \"tag-search\": 989447,\n  \"tag-search-outline\": 989448,\n  \"tag-text\": 987684,\n  \"tag-text-outline\": 984317,\n  \"tailwind\": 988159,\n  \"tally-mark-1\": 989884,\n  \"tally-mark-2\": 989885,\n  \"tally-mark-3\": 989886,\n  \"tally-mark-4\": 989887,\n  \"tally-mark-5\": 989888,\n  \"tangram\": 984312,\n  \"tank\": 986426,\n  \"tanker-truck\": 987109,\n  \"tape-drive\": 988895,\n  \"tape-measure\": 985933,\n  \"target\": 984318,\n  \"target-account\": 986064,\n  \"target-variant\": 985719,\n  \"taxi\": 984319,\n  \"tea\": 986526,\n  \"tea-outline\": 986527,\n  \"teamviewer\": 984320,\n  \"teddy-bear\": 989435,\n  \"telescope\": 985934,\n  \"television\": 984322,\n  \"television-ambient-light\": 987990,\n  \"television-box\": 985145,\n  \"television-classic\": 985076,\n  \"television-classic-off\": 985146,\n  \"television-guide\": 984323,\n  \"television-off\": 985147,\n  \"television-pause\": 987017,\n  \"television-play\": 986831,\n  \"television-shimmer\": 987408,\n  \"television-speaker\": 989979,\n  \"television-speaker-off\": 989980,\n  \"television-stop\": 987018,\n  \"temperature-celsius\": 984324,\n  \"temperature-fahrenheit\": 984325,\n  \"temperature-kelvin\": 984326,\n  \"temple-buddhist\": 989958,\n  \"temple-buddhist-outline\": 989959,\n  \"temple-hindu\": 989960,\n  \"temple-hindu-outline\": 989961,\n  \"tennis\": 986528,\n  \"tennis-ball\": 984327,\n  \"tennis-ball-outline\": 990303,\n  \"tent\": 984328,\n  \"terraform\": 987234,\n  \"terrain\": 984329,\n  \"test-tube\": 984680,\n  \"test-tube-empty\": 985361,\n  \"test-tube-off\": 985362,\n  \"text\": 985512,\n  \"text-account\": 988528,\n  \"text-box\": 983578,\n  \"text-box-check\": 986790,\n  \"text-box-check-outline\": 986791,\n  \"text-box-edit\": 989820,\n  \"text-box-edit-outline\": 989821,\n  \"text-box-minus\": 986792,\n  \"text-box-minus-outline\": 986793,\n  \"text-box-multiple\": 985783,\n  \"text-box-multiple-outline\": 985784,\n  \"text-box-outline\": 985581,\n  \"text-box-plus\": 986794,\n  \"text-box-plus-outline\": 986795,\n  \"text-box-remove\": 986796,\n  \"text-box-remove-outline\": 986797,\n  \"text-box-search\": 986798,\n  \"text-box-search-outline\": 986799,\n  \"text-long\": 985514,\n  \"text-recognition\": 987453,\n  \"text-search\": 988088,\n  \"text-search-variant\": 989822,\n  \"text-shadow\": 984681,\n  \"text-short\": 985513,\n  \"texture\": 984332,\n  \"texture-box\": 987110,\n  \"theater\": 984333,\n  \"theme-light-dark\": 984334,\n  \"thermometer\": 984335,\n  \"thermometer-alert\": 986625,\n  \"thermometer-auto\": 989967,\n  \"thermometer-bluetooth\": 989333,\n  \"thermometer-check\": 989823,\n  \"thermometer-chevron-down\": 986626,\n  \"thermometer-chevron-up\": 986627,\n  \"thermometer-high\": 987330,\n  \"thermometer-lines\": 984336,\n  \"thermometer-low\": 987331,\n  \"thermometer-minus\": 986628,\n  \"thermometer-off\": 988465,\n  \"thermometer-plus\": 986629,\n  \"thermometer-probe\": 989995,\n  \"thermometer-probe-off\": 989996,\n  \"thermometer-water\": 989824,\n  \"thermostat\": 983955,\n  \"thermostat-auto\": 989975,\n  \"thermostat-box\": 985233,\n  \"thermostat-box-auto\": 989976,\n  \"thermostat-cog\": 990336,\n  \"thought-bubble\": 985078,\n  \"thought-bubble-outline\": 985079,\n  \"thumb-down\": 984337,\n  \"thumb-down-outline\": 984338,\n  \"thumb-up\": 984339,\n  \"thumb-up-outline\": 984340,\n  \"thumbs-up-down\": 984341,\n  \"thumbs-up-down-outline\": 989460,\n  \"ticket\": 984342,\n  \"ticket-account\": 984343,\n  \"ticket-confirmation\": 984344,\n  \"ticket-confirmation-outline\": 988074,\n  \"ticket-outline\": 985363,\n  \"ticket-percent\": 984868,\n  \"ticket-percent-outline\": 988203,\n  \"tie\": 984345,\n  \"tilde\": 984869,\n  \"tilde-off\": 989427,\n  \"timelapse\": 984346,\n  \"timeline\": 986065,\n  \"timeline-alert\": 987029,\n  \"timeline-alert-outline\": 987032,\n  \"timeline-check\": 988466,\n  \"timeline-check-outline\": 988467,\n  \"timeline-clock\": 987643,\n  \"timeline-clock-outline\": 987644,\n  \"timeline-minus\": 988468,\n  \"timeline-minus-outline\": 988469,\n  \"timeline-outline\": 986066,\n  \"timeline-plus\": 987030,\n  \"timeline-plus-outline\": 987031,\n  \"timeline-question\": 987033,\n  \"timeline-question-outline\": 987034,\n  \"timeline-remove\": 988470,\n  \"timeline-remove-outline\": 988471,\n  \"timeline-text\": 986067,\n  \"timeline-text-outline\": 986068,\n  \"timer\": 988075,\n  \"timer-10\": 984348,\n  \"timer-3\": 984349,\n  \"timer-alert\": 989900,\n  \"timer-alert-outline\": 989901,\n  \"timer-cancel\": 989902,\n  \"timer-cancel-outline\": 989903,\n  \"timer-check\": 989904,\n  \"timer-check-outline\": 989905,\n  \"timer-cog\": 989477,\n  \"timer-cog-outline\": 989478,\n  \"timer-edit\": 989906,\n  \"timer-edit-outline\": 989907,\n  \"timer-lock\": 989908,\n  \"timer-lock-open\": 989909,\n  \"timer-lock-open-outline\": 989910,\n  \"timer-lock-outline\": 989911,\n  \"timer-marker\": 989912,\n  \"timer-marker-outline\": 989913,\n  \"timer-minus\": 989914,\n  \"timer-minus-outline\": 989915,\n  \"timer-music\": 989916,\n  \"timer-music-outline\": 989917,\n  \"timer-off\": 988076,\n  \"timer-off-outline\": 984350,\n  \"timer-outline\": 984347,\n  \"timer-pause\": 989918,\n  \"timer-pause-outline\": 989919,\n  \"timer-play\": 989920,\n  \"timer-play-outline\": 989921,\n  \"timer-plus\": 989922,\n  \"timer-plus-outline\": 989923,\n  \"timer-refresh\": 989924,\n  \"timer-refresh-outline\": 989925,\n  \"timer-remove\": 989926,\n  \"timer-remove-outline\": 989927,\n  \"timer-sand\": 984351,\n  \"timer-sand-complete\": 989599,\n  \"timer-sand-empty\": 984749,\n  \"timer-sand-full\": 984972,\n  \"timer-sand-paused\": 989600,\n  \"timer-settings\": 989475,\n  \"timer-settings-outline\": 989476,\n  \"timer-star\": 989928,\n  \"timer-star-outline\": 989929,\n  \"timer-stop\": 989930,\n  \"timer-stop-outline\": 989931,\n  \"timer-sync\": 989932,\n  \"timer-sync-outline\": 989933,\n  \"timetable\": 984352,\n  \"tire\": 989334,\n  \"toaster\": 987235,\n  \"toaster-off\": 987575,\n  \"toaster-oven\": 986323,\n  \"toggle-switch\": 984353,\n  \"toggle-switch-off\": 984354,\n  \"toggle-switch-off-outline\": 985625,\n  \"toggle-switch-outline\": 985626,\n  \"toggle-switch-variant\": 989733,\n  \"toggle-switch-variant-off\": 989734,\n  \"toilet\": 985515,\n  \"toolbox\": 985516,\n  \"toolbox-outline\": 985517,\n  \"tools\": 987236,\n  \"tooltip\": 984355,\n  \"tooltip-account\": 983052,\n  \"tooltip-cellphone\": 989243,\n  \"tooltip-check\": 988508,\n  \"tooltip-check-outline\": 988509,\n  \"tooltip-edit\": 984356,\n  \"tooltip-edit-outline\": 987845,\n  \"tooltip-image\": 984357,\n  \"tooltip-image-outline\": 986069,\n  \"tooltip-minus\": 988510,\n  \"tooltip-minus-outline\": 988511,\n  \"tooltip-outline\": 984358,\n  \"tooltip-plus\": 986070,\n  \"tooltip-plus-outline\": 984359,\n  \"tooltip-question\": 990138,\n  \"tooltip-question-outline\": 990139,\n  \"tooltip-remove\": 988512,\n  \"tooltip-remove-outline\": 988513,\n  \"tooltip-text\": 984360,\n  \"tooltip-text-outline\": 986071,\n  \"tooth\": 985283,\n  \"tooth-outline\": 984361,\n  \"toothbrush\": 987433,\n  \"toothbrush-electric\": 987436,\n  \"toothbrush-paste\": 987434,\n  \"torch\": 988678,\n  \"tortoise\": 986427,\n  \"toslink\": 987832,\n  \"touch-text-outline\": 990304,\n  \"tournament\": 985518,\n  \"tow-truck\": 985148,\n  \"tower-beach\": 984705,\n  \"tower-fire\": 984706,\n  \"town-hall\": 989301,\n  \"toy-brick\": 987784,\n  \"toy-brick-marker\": 987785,\n  \"toy-brick-marker-outline\": 987786,\n  \"toy-brick-minus\": 987787,\n  \"toy-brick-minus-outline\": 987788,\n  \"toy-brick-outline\": 987789,\n  \"toy-brick-plus\": 987790,\n  \"toy-brick-plus-outline\": 987791,\n  \"toy-brick-remove\": 987792,\n  \"toy-brick-remove-outline\": 987793,\n  \"toy-brick-search\": 987794,\n  \"toy-brick-search-outline\": 987795,\n  \"track-light\": 985364,\n  \"track-light-off\": 989953,\n  \"trackpad\": 985080,\n  \"trackpad-lock\": 985395,\n  \"tractor\": 985234,\n  \"tractor-variant\": 988356,\n  \"trademark\": 985720,\n  \"traffic-cone\": 988028,\n  \"traffic-light\": 984363,\n  \"traffic-light-outline\": 989226,\n  \"train\": 984364,\n  \"train-bus\": 990407,\n  \"train-car\": 986072,\n  \"train-car-autorack\": 989997,\n  \"train-car-box\": 989998,\n  \"train-car-box-full\": 989999,\n  \"train-car-box-open\": 990000,\n  \"train-car-caboose\": 990001,\n  \"train-car-centerbeam\": 990002,\n  \"train-car-centerbeam-full\": 990003,\n  \"train-car-container\": 990004,\n  \"train-car-flatbed\": 990005,\n  \"train-car-flatbed-car\": 990006,\n  \"train-car-flatbed-tank\": 990007,\n  \"train-car-gondola\": 990008,\n  \"train-car-gondola-full\": 990009,\n  \"train-car-hopper\": 990010,\n  \"train-car-hopper-covered\": 990011,\n  \"train-car-hopper-full\": 990012,\n  \"train-car-intermodal\": 990013,\n  \"train-car-passenger\": 988979,\n  \"train-car-passenger-door\": 988980,\n  \"train-car-passenger-door-open\": 988981,\n  \"train-car-passenger-variant\": 988982,\n  \"train-car-tank\": 990014,\n  \"train-variant\": 985284,\n  \"tram\": 984365,\n  \"tram-side\": 987111,\n  \"transcribe\": 984366,\n  \"transcribe-close\": 984367,\n  \"transfer\": 987237,\n  \"transfer-down\": 986529,\n  \"transfer-left\": 986530,\n  \"transfer-right\": 984368,\n  \"transfer-up\": 986531,\n  \"transit-connection\": 986428,\n  \"transit-connection-horizontal\": 988486,\n  \"transit-connection-variant\": 986429,\n  \"transit-detour\": 987019,\n  \"transit-skip\": 988437,\n  \"transit-transfer\": 984750,\n  \"transition\": 985365,\n  \"transition-masked\": 985366,\n  \"translate\": 984522,\n  \"translate-off\": 986630,\n  \"translate-variant\": 990105,\n  \"transmission-tower\": 986430,\n  \"transmission-tower-export\": 989484,\n  \"transmission-tower-import\": 989485,\n  \"transmission-tower-off\": 989661,\n  \"trash-can\": 985721,\n  \"trash-can-outline\": 985722,\n  \"tray\": 987796,\n  \"tray-alert\": 987797,\n  \"tray-arrow-down\": 983328,\n  \"tray-arrow-up\": 983325,\n  \"tray-full\": 987798,\n  \"tray-minus\": 987799,\n  \"tray-plus\": 987800,\n  \"tray-remove\": 987801,\n  \"treasure-chest\": 984870,\n  \"treasure-chest-outline\": 990327,\n  \"tree\": 984369,\n  \"tree-outline\": 986729,\n  \"trello\": 984370,\n  \"trending-down\": 984371,\n  \"trending-neutral\": 984372,\n  \"trending-up\": 984373,\n  \"triangle\": 984374,\n  \"triangle-down\": 990294,\n  \"triangle-down-outline\": 990295,\n  \"triangle-outline\": 984375,\n  \"triangle-small-down\": 989705,\n  \"triangle-small-up\": 989706,\n  \"triangle-wave\": 988284,\n  \"triforce\": 986073,\n  \"trophy\": 984376,\n  \"trophy-award\": 984377,\n  \"trophy-broken\": 986532,\n  \"trophy-outline\": 984378,\n  \"trophy-variant\": 984379,\n  \"trophy-variant-outline\": 984380,\n  \"truck\": 984381,\n  \"truck-alert\": 989662,\n  \"truck-alert-outline\": 989663,\n  \"truck-cargo-container\": 989400,\n  \"truck-check\": 986324,\n  \"truck-check-outline\": 987802,\n  \"truck-delivery\": 984382,\n  \"truck-delivery-outline\": 987803,\n  \"truck-fast\": 984968,\n  \"truck-fast-outline\": 987804,\n  \"truck-flatbed\": 989329,\n  \"truck-minus\": 989614,\n  \"truck-minus-outline\": 989629,\n  \"truck-off-road\": 990366,\n  \"truck-off-road-off\": 990367,\n  \"truck-outline\": 987805,\n  \"truck-plus\": 989613,\n  \"truck-plus-outline\": 989628,\n  \"truck-remove\": 989615,\n  \"truck-remove-outline\": 989630,\n  \"truck-snowflake\": 989606,\n  \"truck-trailer\": 984871,\n  \"trumpet\": 987286,\n  \"tshirt-crew\": 985723,\n  \"tshirt-crew-outline\": 984383,\n  \"tshirt-v\": 985724,\n  \"tshirt-v-outline\": 984384,\n  \"tsunami\": 989825,\n  \"tumble-dryer\": 985367,\n  \"tumble-dryer-alert\": 987578,\n  \"tumble-dryer-off\": 987579,\n  \"tune\": 984622,\n  \"tune-variant\": 988482,\n  \"tune-vertical\": 984682,\n  \"tune-vertical-variant\": 988483,\n  \"tunnel\": 989245,\n  \"tunnel-outline\": 989246,\n  \"turbine\": 989826,\n  \"turkey\": 988955,\n  \"turnstile\": 986325,\n  \"turnstile-outline\": 986326,\n  \"turtle\": 986327,\n  \"twitch\": 984387,\n  \"twitter\": 984388,\n  \"two-factor-authentication\": 985519,\n  \"typewriter\": 986925,\n  \"ubisoft\": 986074,\n  \"ubuntu\": 984392,\n  \"ufo\": 987332,\n  \"ufo-outline\": 987333,\n  \"ultra-high-definition\": 985081,\n  \"umbraco\": 984393,\n  \"umbrella\": 984394,\n  \"umbrella-beach\": 989322,\n  \"umbrella-beach-outline\": 989323,\n  \"umbrella-closed\": 985520,\n  \"umbrella-closed-outline\": 988130,\n  \"umbrella-closed-variant\": 988129,\n  \"umbrella-outline\": 984395,\n  \"underwear-outline\": 990479,\n  \"undo\": 984396,\n  \"undo-variant\": 984397,\n  \"unfold-less-horizontal\": 984398,\n  \"unfold-less-vertical\": 984928,\n  \"unfold-more-horizontal\": 984399,\n  \"unfold-more-vertical\": 984929,\n  \"ungroup\": 984400,\n  \"unicode\": 986832,\n  \"unicorn\": 988610,\n  \"unicorn-variant\": 988611,\n  \"unicycle\": 988645,\n  \"unity\": 984751,\n  \"unreal\": 985521,\n  \"update\": 984752,\n  \"upload\": 984402,\n  \"upload-box\": 990480,\n  \"upload-box-outline\": 990481,\n  \"upload-circle\": 990482,\n  \"upload-circle-outline\": 990483,\n  \"upload-lock\": 988019,\n  \"upload-lock-outline\": 988020,\n  \"upload-multiple\": 985149,\n  \"upload-multiple-outline\": 990484,\n  \"upload-network\": 984822,\n  \"upload-network-outline\": 986328,\n  \"upload-off\": 987334,\n  \"upload-off-outline\": 987335,\n  \"upload-outline\": 986631,\n  \"usb\": 984403,\n  \"usb-c-port\": 990399,\n  \"usb-flash-drive\": 987806,\n  \"usb-flash-drive-outline\": 987807,\n  \"usb-port\": 987632,\n  \"vacuum\": 989601,\n  \"vacuum-outline\": 989602,\n  \"valve\": 987238,\n  \"valve-closed\": 987239,\n  \"valve-open\": 987240,\n  \"van-passenger\": 985082,\n  \"van-utility\": 985083,\n  \"vanish\": 985084,\n  \"vanish-quarter\": 988500,\n  \"vanity-light\": 987617,\n  \"variable\": 985831,\n  \"variable-box\": 987409,\n  \"vector-arrange-above\": 984404,\n  \"vector-arrange-below\": 984405,\n  \"vector-bezier\": 985832,\n  \"vector-circle\": 984406,\n  \"vector-circle-variant\": 984407,\n  \"vector-combine\": 984408,\n  \"vector-curve\": 984409,\n  \"vector-difference\": 984410,\n  \"vector-difference-ab\": 984411,\n  \"vector-difference-ba\": 984412,\n  \"vector-ellipse\": 985235,\n  \"vector-intersection\": 984413,\n  \"vector-line\": 984414,\n  \"vector-link\": 987112,\n  \"vector-point\": 983492,\n  \"vector-point-edit\": 985576,\n  \"vector-point-minus\": 990072,\n  \"vector-point-plus\": 990073,\n  \"vector-point-select\": 984415,\n  \"vector-polygon\": 984416,\n  \"vector-polygon-variant\": 989270,\n  \"vector-polyline\": 984417,\n  \"vector-polyline-edit\": 987685,\n  \"vector-polyline-minus\": 987686,\n  \"vector-polyline-plus\": 987687,\n  \"vector-polyline-remove\": 987688,\n  \"vector-radius\": 984906,\n  \"vector-rectangle\": 984518,\n  \"vector-selection\": 984418,\n  \"vector-square\": 983041,\n  \"vector-square-close\": 989271,\n  \"vector-square-edit\": 989401,\n  \"vector-square-minus\": 989402,\n  \"vector-square-open\": 989272,\n  \"vector-square-plus\": 989403,\n  \"vector-square-remove\": 989404,\n  \"vector-triangle\": 984419,\n  \"vector-union\": 984420,\n  \"vhs\": 985627,\n  \"vibrate\": 984422,\n  \"vibrate-off\": 986329,\n  \"video\": 984423,\n  \"video-2d\": 989724,\n  \"video-3d\": 985085,\n  \"video-3d-off\": 988121,\n  \"video-3d-variant\": 986833,\n  \"video-4k-box\": 985150,\n  \"video-account\": 985369,\n  \"video-box\": 983293,\n  \"video-box-off\": 983294,\n  \"video-check\": 987241,\n  \"video-check-outline\": 987242,\n  \"video-high-definition\": 988462,\n  \"video-image\": 985370,\n  \"video-input-antenna\": 985151,\n  \"video-input-component\": 985152,\n  \"video-input-hdmi\": 985153,\n  \"video-input-scart\": 987020,\n  \"video-input-svideo\": 985154,\n  \"video-marker\": 989609,\n  \"video-marker-outline\": 989610,\n  \"video-minus\": 985522,\n  \"video-minus-outline\": 983738,\n  \"video-off\": 984424,\n  \"video-off-outline\": 986075,\n  \"video-outline\": 986076,\n  \"video-plus\": 985523,\n  \"video-plus-outline\": 983507,\n  \"video-stabilization\": 985371,\n  \"video-standard-definition\": 990368,\n  \"video-switch\": 984425,\n  \"video-switch-outline\": 984976,\n  \"video-vintage\": 985628,\n  \"video-wireless\": 986834,\n  \"video-wireless-outline\": 986835,\n  \"view-agenda\": 984426,\n  \"view-agenda-outline\": 987608,\n  \"view-array\": 984427,\n  \"view-array-outline\": 988293,\n  \"view-carousel\": 984428,\n  \"view-carousel-outline\": 988294,\n  \"view-column\": 984429,\n  \"view-column-outline\": 988295,\n  \"view-comfy\": 986730,\n  \"view-comfy-outline\": 988296,\n  \"view-compact\": 986731,\n  \"view-compact-outline\": 986732,\n  \"view-dashboard\": 984430,\n  \"view-dashboard-edit\": 989511,\n  \"view-dashboard-edit-outline\": 989512,\n  \"view-dashboard-outline\": 985629,\n  \"view-dashboard-variant\": 985155,\n  \"view-dashboard-variant-outline\": 988297,\n  \"view-day\": 984431,\n  \"view-day-outline\": 988298,\n  \"view-gallery\": 989320,\n  \"view-gallery-outline\": 989321,\n  \"view-grid\": 984432,\n  \"view-grid-compact\": 990305,\n  \"view-grid-outline\": 987609,\n  \"view-grid-plus\": 987021,\n  \"view-grid-plus-outline\": 987610,\n  \"view-headline\": 984433,\n  \"view-list\": 984434,\n  \"view-list-outline\": 988299,\n  \"view-module\": 984435,\n  \"view-module-outline\": 988300,\n  \"view-parallel\": 984872,\n  \"view-parallel-outline\": 988301,\n  \"view-quilt\": 984436,\n  \"view-quilt-outline\": 988302,\n  \"view-sequential\": 984873,\n  \"view-sequential-outline\": 988303,\n  \"view-split-horizontal\": 986059,\n  \"view-split-vertical\": 986060,\n  \"view-stream\": 984437,\n  \"view-stream-outline\": 988304,\n  \"view-week\": 984438,\n  \"view-week-outline\": 988305,\n  \"vimeo\": 984439,\n  \"violin\": 984591,\n  \"virtual-reality\": 985236,\n  \"virus\": 988086,\n  \"virus-off\": 989409,\n  \"virus-off-outline\": 989410,\n  \"virus-outline\": 988087,\n  \"vlc\": 984444,\n  \"voicemail\": 984445,\n  \"volcano\": 989827,\n  \"volcano-outline\": 989828,\n  \"volleyball\": 985524,\n  \"volume-equal\": 989968,\n  \"volume-high\": 984446,\n  \"volume-low\": 984447,\n  \"volume-medium\": 984448,\n  \"volume-minus\": 984926,\n  \"volume-mute\": 984927,\n  \"volume-off\": 984449,\n  \"volume-plus\": 984925,\n  \"volume-source\": 987424,\n  \"volume-variant-off\": 986632,\n  \"volume-vibrate\": 987425,\n  \"vote\": 985631,\n  \"vote-outline\": 985632,\n  \"vpn\": 984450,\n  \"vuejs\": 985156,\n  \"vuetify\": 986733,\n  \"walk\": 984451,\n  \"wall\": 985086,\n  \"wall-fire\": 989713,\n  \"wall-sconce\": 985372,\n  \"wall-sconce-flat\": 985373,\n  \"wall-sconce-flat-outline\": 989129,\n  \"wall-sconce-flat-variant\": 984092,\n  \"wall-sconce-flat-variant-outline\": 989130,\n  \"wall-sconce-outline\": 989131,\n  \"wall-sconce-round\": 984904,\n  \"wall-sconce-round-outline\": 989132,\n  \"wall-sconce-round-variant\": 985374,\n  \"wall-sconce-round-variant-outline\": 989133,\n  \"wallet\": 984452,\n  \"wallet-bifold\": 990296,\n  \"wallet-bifold-outline\": 990297,\n  \"wallet-giftcard\": 984453,\n  \"wallet-membership\": 984454,\n  \"wallet-outline\": 986077,\n  \"wallet-plus\": 987022,\n  \"wallet-plus-outline\": 987023,\n  \"wallet-travel\": 984455,\n  \"wallpaper\": 986633,\n  \"wan\": 984456,\n  \"wardrobe\": 987024,\n  \"wardrobe-outline\": 987025,\n  \"warehouse\": 987009,\n  \"washing-machine\": 984874,\n  \"washing-machine-alert\": 987580,\n  \"washing-machine-off\": 987581,\n  \"watch\": 984457,\n  \"watch-export\": 984458,\n  \"watch-export-variant\": 985237,\n  \"watch-import\": 984459,\n  \"watch-import-variant\": 985238,\n  \"watch-variant\": 985239,\n  \"watch-vibrate\": 984753,\n  \"watch-vibrate-off\": 986330,\n  \"water\": 984460,\n  \"water-alert\": 988418,\n  \"water-alert-outline\": 988419,\n  \"water-boiler\": 987026,\n  \"water-boiler-alert\": 987571,\n  \"water-boiler-auto\": 990104,\n  \"water-boiler-off\": 987572,\n  \"water-check\": 988420,\n  \"water-check-outline\": 988421,\n  \"water-circle\": 989190,\n  \"water-minus\": 988422,\n  \"water-minus-outline\": 988423,\n  \"water-off\": 984461,\n  \"water-off-outline\": 988424,\n  \"water-opacity\": 989269,\n  \"water-outline\": 986634,\n  \"water-percent\": 984462,\n  \"water-percent-alert\": 988425,\n  \"water-plus\": 988426,\n  \"water-plus-outline\": 988427,\n  \"water-polo\": 987808,\n  \"water-pump\": 984463,\n  \"water-pump-off\": 987027,\n  \"water-remove\": 988428,\n  \"water-remove-outline\": 988429,\n  \"water-sync\": 989126,\n  \"water-thermometer\": 989829,\n  \"water-thermometer-outline\": 989830,\n  \"water-well\": 987243,\n  \"water-well-outline\": 987244,\n  \"waterfall\": 989257,\n  \"watering-can\": 988289,\n  \"watering-can-outline\": 988290,\n  \"watermark\": 984594,\n  \"wave\": 986926,\n  \"wave-arrow-down\": 990384,\n  \"wave-arrow-up\": 990385,\n  \"wave-undercurrent\": 990400,\n  \"waveform\": 988285,\n  \"waves\": 984973,\n  \"waves-arrow-left\": 989273,\n  \"waves-arrow-right\": 989274,\n  \"waves-arrow-up\": 989275,\n  \"waze\": 986078,\n  \"weather-cloudy\": 984464,\n  \"weather-cloudy-alert\": 986927,\n  \"weather-cloudy-arrow-right\": 986734,\n  \"weather-cloudy-clock\": 989430,\n  \"weather-dust\": 990042,\n  \"weather-fog\": 984465,\n  \"weather-hail\": 984466,\n  \"weather-hazy\": 986928,\n  \"weather-hurricane\": 985240,\n  \"weather-hurricane-outline\": 990328,\n  \"weather-lightning\": 984467,\n  \"weather-lightning-rainy\": 984702,\n  \"weather-moonset\": 990485,\n  \"weather-moonset-down\": 990486,\n  \"weather-moonset-up\": 990487,\n  \"weather-night\": 984468,\n  \"weather-night-partly-cloudy\": 986929,\n  \"weather-partly-cloudy\": 984469,\n  \"weather-partly-lightning\": 986930,\n  \"weather-partly-rainy\": 986931,\n  \"weather-partly-snowy\": 986932,\n  \"weather-partly-snowy-rainy\": 986933,\n  \"weather-pouring\": 984470,\n  \"weather-rainy\": 984471,\n  \"weather-snowy\": 984472,\n  \"weather-snowy-heavy\": 986934,\n  \"weather-snowy-rainy\": 984703,\n  \"weather-sunny\": 984473,\n  \"weather-sunny-alert\": 986935,\n  \"weather-sunny-off\": 988388,\n  \"weather-sunset\": 984474,\n  \"weather-sunset-down\": 984475,\n  \"weather-sunset-up\": 984476,\n  \"weather-tornado\": 986936,\n  \"weather-windy\": 984477,\n  \"weather-windy-variant\": 984478,\n  \"web\": 984479,\n  \"web-box\": 987028,\n  \"web-cancel\": 989072,\n  \"web-check\": 984969,\n  \"web-clock\": 987722,\n  \"web-minus\": 987296,\n  \"web-off\": 985742,\n  \"web-plus\": 983091,\n  \"web-refresh\": 989073,\n  \"web-remove\": 984401,\n  \"web-sync\": 989074,\n  \"webcam\": 984480,\n  \"webcam-off\": 988983,\n  \"webhook\": 984623,\n  \"webpack\": 984875,\n  \"webrtc\": 987720,\n  \"wechat\": 984593,\n  \"weight\": 984481,\n  \"weight-gram\": 986431,\n  \"weight-kilogram\": 984482,\n  \"weight-lifter\": 987485,\n  \"weight-pound\": 985525,\n  \"whatsapp\": 984483,\n  \"wheel-barrow\": 988402,\n  \"wheelchair\": 989831,\n  \"wheelchair-accessibility\": 984484,\n  \"whistle\": 985526,\n  \"whistle-outline\": 987836,\n  \"white-balance-auto\": 984485,\n  \"white-balance-incandescent\": 984486,\n  \"white-balance-iridescent\": 984487,\n  \"white-balance-sunny\": 984488,\n  \"widgets\": 984876,\n  \"widgets-outline\": 987989,\n  \"wifi\": 984489,\n  \"wifi-alert\": 988853,\n  \"wifi-arrow-down\": 988854,\n  \"wifi-arrow-left\": 988855,\n  \"wifi-arrow-left-right\": 988856,\n  \"wifi-arrow-right\": 988857,\n  \"wifi-arrow-up\": 988858,\n  \"wifi-arrow-up-down\": 988859,\n  \"wifi-cancel\": 988860,\n  \"wifi-check\": 988861,\n  \"wifi-cog\": 988862,\n  \"wifi-lock\": 988863,\n  \"wifi-lock-open\": 988864,\n  \"wifi-marker\": 988865,\n  \"wifi-minus\": 988866,\n  \"wifi-off\": 984490,\n  \"wifi-plus\": 988867,\n  \"wifi-refresh\": 988868,\n  \"wifi-remove\": 988869,\n  \"wifi-settings\": 988870,\n  \"wifi-star\": 986635,\n  \"wifi-strength-1\": 985375,\n  \"wifi-strength-1-alert\": 985376,\n  \"wifi-strength-1-lock\": 985377,\n  \"wifi-strength-1-lock-open\": 988875,\n  \"wifi-strength-2\": 985378,\n  \"wifi-strength-2-alert\": 985379,\n  \"wifi-strength-2-lock\": 985380,\n  \"wifi-strength-2-lock-open\": 988876,\n  \"wifi-strength-3\": 985381,\n  \"wifi-strength-3-alert\": 985382,\n  \"wifi-strength-3-lock\": 985383,\n  \"wifi-strength-3-lock-open\": 988877,\n  \"wifi-strength-4\": 985384,\n  \"wifi-strength-4-alert\": 985385,\n  \"wifi-strength-4-lock\": 985386,\n  \"wifi-strength-4-lock-open\": 988878,\n  \"wifi-strength-alert-outline\": 985387,\n  \"wifi-strength-lock-open-outline\": 988879,\n  \"wifi-strength-lock-outline\": 985388,\n  \"wifi-strength-off\": 985389,\n  \"wifi-strength-off-outline\": 985390,\n  \"wifi-strength-outline\": 985391,\n  \"wifi-sync\": 988871,\n  \"wikipedia\": 984492,\n  \"wind-power\": 989832,\n  \"wind-power-outline\": 989833,\n  \"wind-turbine\": 986533,\n  \"wind-turbine-alert\": 989611,\n  \"wind-turbine-check\": 989612,\n  \"window-close\": 984493,\n  \"window-closed\": 984494,\n  \"window-closed-variant\": 987611,\n  \"window-maximize\": 984495,\n  \"window-minimize\": 984496,\n  \"window-open\": 984497,\n  \"window-open-variant\": 987612,\n  \"window-restore\": 984498,\n  \"window-shutter\": 987420,\n  \"window-shutter-alert\": 987421,\n  \"window-shutter-auto\": 990115,\n  \"window-shutter-cog\": 989834,\n  \"window-shutter-open\": 987422,\n  \"window-shutter-settings\": 989835,\n  \"windsock\": 988666,\n  \"wiper\": 985833,\n  \"wiper-wash\": 986534,\n  \"wiper-wash-alert\": 989407,\n  \"wizard-hat\": 988279,\n  \"wordpress\": 984500,\n  \"wrap\": 984502,\n  \"wrap-disabled\": 986079,\n  \"wrench\": 984503,\n  \"wrench-check\": 990095,\n  \"wrench-check-outline\": 990096,\n  \"wrench-clock\": 989603,\n  \"wrench-clock-outline\": 990099,\n  \"wrench-cog\": 990097,\n  \"wrench-cog-outline\": 990098,\n  \"wrench-outline\": 986080,\n  \"xamarin\": 985157,\n  \"xml\": 984512,\n  \"xmpp\": 985087,\n  \"yahoo\": 985935,\n  \"yeast\": 984513,\n  \"yin-yang\": 984704,\n  \"yoga\": 987516,\n  \"youtube\": 984515,\n  \"youtube-gaming\": 985160,\n  \"youtube-studio\": 985159,\n  \"youtube-subscription\": 986432,\n  \"youtube-tv\": 984136,\n  \"yurt\": 988438,\n  \"z-wave\": 985834,\n  \"zend\": 985835,\n  \"zigbee\": 986433,\n  \"zip-box\": 984516,\n  \"zip-box-outline\": 987130,\n  \"zip-disk\": 985635,\n  \"zodiac-aquarius\": 985725,\n  \"zodiac-aries\": 985726,\n  \"zodiac-cancer\": 985727,\n  \"zodiac-capricorn\": 985728,\n  \"zodiac-gemini\": 985729,\n  \"zodiac-leo\": 985730,\n  \"zodiac-libra\": 985731,\n  \"zodiac-pisces\": 985732,\n  \"zodiac-sagittarius\": 985733,\n  \"zodiac-scorpio\": 985734,\n  \"zodiac-taurus\": 985735,\n  \"zodiac-virgo\": 985736,\n  \"blank\": 63116\n}"
  },
  {
    "path": "packages/material-design-icons/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/material-design-icons\",\n  \"version\": \"12.5.0\",\n  \"description\": \"Material Design Icons font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\",\n    \"./fonts/*.ttf\": \"./fonts/*.ttf\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"material-design-icons\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/material-design-icons\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\",\n    \"@mdi/font\": \"7.4.47\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/material-design-icons/react-native-vector-icons-material-design-icons.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-material-design-icons'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\nend\n"
  },
  {
    "path": "packages/material-design-icons/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * MaterialDesignIcons icon set component.\n * Usage: <MaterialDesignIcons name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/MaterialDesignIcons.json';\n\nexport const MaterialDesignIcons = createIconSet(glyphMap, {\n  postScriptName: 'MaterialDesignIcons',\n  fontFileName: 'MaterialDesignIcons.ttf',\n  fontSource: require('../fonts/MaterialDesignIcons.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require\n});\n\nexport type MaterialDesignIconsIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default MaterialDesignIcons;\n"
  },
  {
    "path": "packages/material-design-icons/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * MaterialDesignIcons icon set component.\n * Usage: <MaterialDesignIcons name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/MaterialDesignIcons.json';\n\nexport const MaterialDesignIcons = createIconSet(glyphMap, {\n  postScriptName: 'MaterialDesignIcons',\n  fontFileName: 'MaterialDesignIcons.ttf',\n});\n\nexport type MaterialDesignIconsIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default MaterialDesignIcons;\n"
  },
  {
    "path": "packages/material-design-icons/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/material-design-icons/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/material-icons/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"material-icons\",\n    \"postScriptName\": \"MaterialIcons-Regular\",\n    \"buildSteps\": {\n      \"preScript\": {\n        \"script\": \"mkdir -p fonts\\nREF='f7bd4f25f3764883717c09a1fd867f560c9a9581' # Sep 19, 2022 update\\ncurl https://raw.githubusercontent.com/google/material-design-icons/$REF/font/MaterialIcons-Regular.codepoints -Ls > MaterialIcons-Regular.codepoints\\ncurl https://raw.githubusercontent.com/google/material-design-icons/$REF/font/MaterialIcons-Regular.ttf -Ls > fonts/MaterialIcons.ttf\"\n      },\n      \"glyphmap\": {\n        \"location\": \"MaterialIcons-Regular.codepoints\",\n        \"mode\": \"codepoints\",\n        \"prefix\": \".mdi-\",\n        \"cleanup\": true\n      }\n    },\n    \"versions\": [{ \"rnvi\": \"12.0.0\", \"upstream\": \"0.0.1\" }]\n  }\n}\n"
  },
  {
    "path": "packages/material-icons/CHANGELOG.md",
    "content": "## 12.5.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.4.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 12.4.2 (2026-03-10)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n## 12.4.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 12.4.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.3.0 (2025-08-03)\n\n### 🚀 Features\n\n- export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.3.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.2.0 (2025-07-20)\n\n### 🚀 Features\n\n- add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.2.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.1.0 (2025-07-12)\n\n### 🚀 Features\n\n- export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.1.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.2 (2025-06-15)\n\n### 🩹 Fixes\n\n- new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.2\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.1 (2025-06-15)\n\n### 🩹 Fixes\n\n- try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745))\n- remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767))\n- convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765))\n- updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c))\n- **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.1\n\n### ❤️ Thank You\n\n- Alexander Kucheryavenko @Red1tum\n- John Ferlito @johnf\n- Md. Jayed Hasan @JayedHasan232\n\n# 12.0.0 (2025-05-04)\n\n### 🚀 Features\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n- add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702))\n\n### 🩹 Fixes\n\n- upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691))\n- upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690))\n- mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99))\n\n### ⚠️  Breaking Changes\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n\n### ❤️ Thank You\n\n- Chanphirom Sok @chanphiromsok\n- John Ferlito @johnf"
  },
  {
    "path": "packages/material-icons/README.md",
    "content": "# React Native Vector Icons - Material Icons\n\nMaterial Icons font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/material-icons\n```\n\n## Usage\n\n```jsx\nimport { MaterialIcons } from '@react-native-vector-icons/material-icons';\n\n// ...\n\n<MaterialIcons name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 12.0.0 | 0.0.1 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/material-icons/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.material_icons\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsMaterialIcons\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.material_icons\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-material-icons\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-material-icons/fonts\"\n  eachFile { println \"(RNVI:material-icons) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n"
  },
  {
    "path": "packages/material-icons/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.material_icons\">\n</manifest>\n"
  },
  {
    "path": "packages/material-icons/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/material-icons/android/src/main/java/VectorIconsMaterialIconsPackage.kt",
    "content": "package com.reactnativevectoricons.material_icons\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsMaterialIconsPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/material-icons/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/material-icons/glyphmaps/MaterialIcons.json",
    "content": "{\n  \"123\": 60301,\n  \"360\": 58743,\n  \"10k\": 59729,\n  \"10mp\": 59730,\n  \"11mp\": 59731,\n  \"12mp\": 59732,\n  \"13mp\": 59733,\n  \"14mp\": 59734,\n  \"15mp\": 59735,\n  \"16mp\": 59736,\n  \"17mp\": 59737,\n  \"18-up-rating\": 63741,\n  \"18mp\": 59738,\n  \"19mp\": 59739,\n  \"1k\": 59740,\n  \"1k-plus\": 59741,\n  \"1x-mobiledata\": 61389,\n  \"20mp\": 59742,\n  \"21mp\": 59743,\n  \"22mp\": 59744,\n  \"23mp\": 59745,\n  \"24mp\": 59746,\n  \"2k\": 59747,\n  \"2k-plus\": 59748,\n  \"2mp\": 59749,\n  \"30fps\": 61390,\n  \"30fps-select\": 61391,\n  \"3d-rotation\": 59469,\n  \"3g-mobiledata\": 61392,\n  \"3k\": 59750,\n  \"3k-plus\": 59751,\n  \"3mp\": 59752,\n  \"3p\": 61393,\n  \"4g-mobiledata\": 61394,\n  \"4g-plus-mobiledata\": 61395,\n  \"4k\": 57458,\n  \"4k-plus\": 59753,\n  \"4mp\": 59754,\n  \"5g\": 61240,\n  \"5k\": 59755,\n  \"5k-plus\": 59756,\n  \"5mp\": 59757,\n  \"60fps\": 61396,\n  \"60fps-select\": 61397,\n  \"6-ft-apart\": 61982,\n  \"6k\": 59758,\n  \"6k-plus\": 59759,\n  \"6mp\": 59760,\n  \"7k\": 59761,\n  \"7k-plus\": 59762,\n  \"7mp\": 59763,\n  \"8k\": 59764,\n  \"8k-plus\": 59765,\n  \"8mp\": 59766,\n  \"9k\": 59767,\n  \"9k-plus\": 59768,\n  \"9mp\": 59769,\n  \"abc\": 60308,\n  \"ac-unit\": 60219,\n  \"access-alarm\": 57744,\n  \"access-alarms\": 57745,\n  \"access-time\": 57746,\n  \"access-time-filled\": 61398,\n  \"accessibility\": 59470,\n  \"accessibility-new\": 59692,\n  \"accessible\": 59668,\n  \"accessible-forward\": 59700,\n  \"account-balance\": 59471,\n  \"account-balance-wallet\": 59472,\n  \"account-box\": 59473,\n  \"account-circle\": 59475,\n  \"account-tree\": 59770,\n  \"ad-units\": 61241,\n  \"adb\": 58894,\n  \"add\": 57669,\n  \"add-a-photo\": 58425,\n  \"add-alarm\": 57747,\n  \"add-alert\": 57347,\n  \"add-box\": 57670,\n  \"add-business\": 59177,\n  \"add-call\": 57576,\n  \"add-card\": 60294,\n  \"add-chart\": 59771,\n  \"add-circle\": 57671,\n  \"add-circle-outline\": 57672,\n  \"add-comment\": 57958,\n  \"add-home\": 63723,\n  \"add-home-work\": 63725,\n  \"add-ic-call\": 59772,\n  \"add-link\": 57720,\n  \"add-location\": 58727,\n  \"add-location-alt\": 61242,\n  \"add-moderator\": 59773,\n  \"add-photo-alternate\": 58430,\n  \"add-reaction\": 57811,\n  \"add-road\": 61243,\n  \"add-shopping-cart\": 59476,\n  \"add-task\": 62010,\n  \"add-to-drive\": 58972,\n  \"add-to-home-screen\": 57854,\n  \"add-to-photos\": 58269,\n  \"add-to-queue\": 57436,\n  \"addchart\": 61244,\n  \"adf-scanner\": 60122,\n  \"adjust\": 58270,\n  \"admin-panel-settings\": 61245,\n  \"adobe\": 60054,\n  \"ads-click\": 59234,\n  \"agriculture\": 60025,\n  \"air\": 61400,\n  \"airline-seat-flat\": 58928,\n  \"airline-seat-flat-angled\": 58929,\n  \"airline-seat-individual-suite\": 58930,\n  \"airline-seat-legroom-extra\": 58931,\n  \"airline-seat-legroom-normal\": 58932,\n  \"airline-seat-legroom-reduced\": 58933,\n  \"airline-seat-recline-extra\": 58934,\n  \"airline-seat-recline-normal\": 58935,\n  \"airline-stops\": 59344,\n  \"airlines\": 59338,\n  \"airplane-ticket\": 61401,\n  \"airplanemode-active\": 57749,\n  \"airplanemode-inactive\": 57748,\n  \"airplanemode-off\": 57748,\n  \"airplanemode-on\": 57749,\n  \"airplay\": 57429,\n  \"airport-shuttle\": 60220,\n  \"alarm\": 59477,\n  \"alarm-add\": 59478,\n  \"alarm-off\": 59479,\n  \"alarm-on\": 59480,\n  \"album\": 57369,\n  \"align-horizontal-center\": 57359,\n  \"align-horizontal-left\": 57357,\n  \"align-horizontal-right\": 57360,\n  \"align-vertical-bottom\": 57365,\n  \"align-vertical-center\": 57361,\n  \"align-vertical-top\": 57356,\n  \"all-inbox\": 59775,\n  \"all-inclusive\": 60221,\n  \"all-out\": 59659,\n  \"alt-route\": 61828,\n  \"alternate-email\": 57574,\n  \"amp-stories\": 59923,\n  \"analytics\": 61246,\n  \"anchor\": 61901,\n  \"android\": 59481,\n  \"animation\": 59164,\n  \"announcement\": 59482,\n  \"aod\": 61402,\n  \"apartment\": 59968,\n  \"api\": 61879,\n  \"app-blocking\": 61247,\n  \"app-registration\": 61248,\n  \"app-settings-alt\": 61249,\n  \"app-shortcut\": 60132,\n  \"apple\": 60032,\n  \"approval\": 59778,\n  \"apps\": 58819,\n  \"apps-outage\": 59340,\n  \"architecture\": 59963,\n  \"archive\": 57673,\n  \"area-chart\": 59248,\n  \"arrow-back\": 58820,\n  \"arrow-back-ios\": 58848,\n  \"arrow-back-ios-new\": 58090,\n  \"arrow-circle-down\": 61825,\n  \"arrow-circle-left\": 60071,\n  \"arrow-circle-right\": 60074,\n  \"arrow-circle-up\": 61826,\n  \"arrow-downward\": 58843,\n  \"arrow-drop-down\": 58821,\n  \"arrow-drop-down-circle\": 58822,\n  \"arrow-drop-up\": 58823,\n  \"arrow-forward\": 58824,\n  \"arrow-forward-ios\": 58849,\n  \"arrow-left\": 58846,\n  \"arrow-outward\": 63694,\n  \"arrow-right\": 58847,\n  \"arrow-right-alt\": 59713,\n  \"arrow-upward\": 58840,\n  \"art-track\": 57440,\n  \"article\": 61250,\n  \"aspect-ratio\": 59483,\n  \"assessment\": 59484,\n  \"assignment\": 59485,\n  \"assignment-add\": 63560,\n  \"assignment-ind\": 59486,\n  \"assignment-late\": 59487,\n  \"assignment-return\": 59488,\n  \"assignment-returned\": 59489,\n  \"assignment-turned-in\": 59490,\n  \"assist-walker\": 63701,\n  \"assistant\": 58271,\n  \"assistant-direction\": 59784,\n  \"assistant-navigation\": 59785,\n  \"assistant-photo\": 58272,\n  \"assured-workload\": 60271,\n  \"atm\": 58739,\n  \"attach-email\": 59998,\n  \"attach-file\": 57894,\n  \"attach-money\": 57895,\n  \"attachment\": 58044,\n  \"attractions\": 59986,\n  \"attribution\": 61403,\n  \"audio-file\": 60290,\n  \"audiotrack\": 58273,\n  \"auto-awesome\": 58975,\n  \"auto-awesome-mosaic\": 58976,\n  \"auto-awesome-motion\": 58977,\n  \"auto-delete\": 59980,\n  \"auto-fix-high\": 58979,\n  \"auto-fix-normal\": 58980,\n  \"auto-fix-off\": 58981,\n  \"auto-graph\": 58619,\n  \"auto-mode\": 60448,\n  \"auto-stories\": 58982,\n  \"autofps-select\": 61404,\n  \"autorenew\": 59491,\n  \"av-timer\": 57371,\n  \"baby-changing-station\": 61851,\n  \"back-hand\": 59236,\n  \"backpack\": 61852,\n  \"backspace\": 57674,\n  \"backup\": 59492,\n  \"backup-table\": 61251,\n  \"badge\": 60007,\n  \"bakery-dining\": 59987,\n  \"balance\": 60150,\n  \"balcony\": 58767,\n  \"ballot\": 57714,\n  \"bar-chart\": 57963,\n  \"barcode-reader\": 63580,\n  \"batch-prediction\": 61685,\n  \"bathroom\": 61405,\n  \"bathtub\": 59969,\n  \"battery-0-bar\": 60380,\n  \"battery-1-bar\": 60377,\n  \"battery-2-bar\": 60384,\n  \"battery-3-bar\": 60381,\n  \"battery-4-bar\": 60386,\n  \"battery-5-bar\": 60372,\n  \"battery-6-bar\": 60370,\n  \"battery-alert\": 57756,\n  \"battery-charging-full\": 57763,\n  \"battery-full\": 57764,\n  \"battery-saver\": 61406,\n  \"battery-std\": 57765,\n  \"battery-unknown\": 57766,\n  \"beach-access\": 60222,\n  \"bed\": 61407,\n  \"bedroom-baby\": 61408,\n  \"bedroom-child\": 61409,\n  \"bedroom-parent\": 61410,\n  \"bedtime\": 61252,\n  \"bedtime-off\": 60278,\n  \"beenhere\": 58669,\n  \"bento\": 61940,\n  \"bike-scooter\": 61253,\n  \"biotech\": 59962,\n  \"blender\": 61411,\n  \"blind\": 63702,\n  \"blinds\": 57990,\n  \"blinds-closed\": 60447,\n  \"block\": 57675,\n  \"block-flipped\": 61254,\n  \"bloodtype\": 61412,\n  \"bluetooth\": 57767,\n  \"bluetooth-audio\": 58895,\n  \"bluetooth-connected\": 57768,\n  \"bluetooth-disabled\": 57769,\n  \"bluetooth-drive\": 61413,\n  \"bluetooth-searching\": 57770,\n  \"blur-circular\": 58274,\n  \"blur-linear\": 58275,\n  \"blur-off\": 58276,\n  \"blur-on\": 58277,\n  \"bolt\": 59915,\n  \"book\": 59493,\n  \"book-online\": 61975,\n  \"bookmark\": 59494,\n  \"bookmark-add\": 58776,\n  \"bookmark-added\": 58777,\n  \"bookmark-border\": 59495,\n  \"bookmark-outline\": 59495,\n  \"bookmark-remove\": 58778,\n  \"bookmarks\": 59787,\n  \"border-all\": 57896,\n  \"border-bottom\": 57897,\n  \"border-clear\": 57898,\n  \"border-color\": 57899,\n  \"border-horizontal\": 57900,\n  \"border-inner\": 57901,\n  \"border-left\": 57902,\n  \"border-outer\": 57903,\n  \"border-right\": 57904,\n  \"border-style\": 57905,\n  \"border-top\": 57906,\n  \"border-vertical\": 57907,\n  \"boy\": 60263,\n  \"branding-watermark\": 57451,\n  \"breakfast-dining\": 59988,\n  \"brightness-1\": 58278,\n  \"brightness-2\": 58279,\n  \"brightness-3\": 58280,\n  \"brightness-4\": 58281,\n  \"brightness-5\": 58282,\n  \"brightness-6\": 58283,\n  \"brightness-7\": 58284,\n  \"brightness-auto\": 57771,\n  \"brightness-high\": 57772,\n  \"brightness-low\": 57773,\n  \"brightness-medium\": 57774,\n  \"broadcast-on-home\": 63736,\n  \"broadcast-on-personal\": 63737,\n  \"broken-image\": 58285,\n  \"browse-gallery\": 60369,\n  \"browser-not-supported\": 61255,\n  \"browser-updated\": 59343,\n  \"brunch-dining\": 60019,\n  \"brush\": 58286,\n  \"bubble-chart\": 59101,\n  \"bug-report\": 59496,\n  \"build\": 59497,\n  \"build-circle\": 61256,\n  \"bungalow\": 58769,\n  \"burst-mode\": 58428,\n  \"bus-alert\": 59791,\n  \"business\": 57519,\n  \"business-center\": 60223,\n  \"cabin\": 58761,\n  \"cable\": 61414,\n  \"cached\": 59498,\n  \"cake\": 59369,\n  \"calculate\": 59999,\n  \"calendar-month\": 60364,\n  \"calendar-today\": 59701,\n  \"calendar-view-day\": 59702,\n  \"calendar-view-month\": 61415,\n  \"calendar-view-week\": 61416,\n  \"call\": 57520,\n  \"call-end\": 57521,\n  \"call-made\": 57522,\n  \"call-merge\": 57523,\n  \"call-missed\": 57524,\n  \"call-missed-outgoing\": 57572,\n  \"call-received\": 57525,\n  \"call-split\": 57526,\n  \"call-to-action\": 57452,\n  \"camera\": 58287,\n  \"camera-alt\": 58288,\n  \"camera-enhance\": 59644,\n  \"camera-front\": 58289,\n  \"camera-indoor\": 61417,\n  \"camera-outdoor\": 61418,\n  \"camera-rear\": 58290,\n  \"camera-roll\": 58291,\n  \"cameraswitch\": 61419,\n  \"campaign\": 61257,\n  \"cancel\": 58825,\n  \"cancel-presentation\": 57577,\n  \"cancel-schedule-send\": 59961,\n  \"candlestick-chart\": 60116,\n  \"car-crash\": 60402,\n  \"car-rental\": 59989,\n  \"car-repair\": 59990,\n  \"card-giftcard\": 59638,\n  \"card-membership\": 59639,\n  \"card-travel\": 59640,\n  \"carpenter\": 61944,\n  \"cases\": 59794,\n  \"casino\": 60224,\n  \"cast\": 58119,\n  \"cast-connected\": 58120,\n  \"cast-for-education\": 61420,\n  \"castle\": 60081,\n  \"catching-pokemon\": 58632,\n  \"category\": 58740,\n  \"celebration\": 60005,\n  \"cell-tower\": 60346,\n  \"cell-wifi\": 57580,\n  \"center-focus-strong\": 58292,\n  \"center-focus-weak\": 58293,\n  \"chair\": 61421,\n  \"chair-alt\": 61422,\n  \"chalet\": 58757,\n  \"change-circle\": 58087,\n  \"change-history\": 59499,\n  \"charging-station\": 61853,\n  \"chat\": 57527,\n  \"chat-bubble\": 57546,\n  \"chat-bubble-outline\": 57547,\n  \"check\": 58826,\n  \"check-box\": 59444,\n  \"check-box-outline-blank\": 59445,\n  \"check-circle\": 59500,\n  \"check-circle-outline\": 59693,\n  \"checklist\": 59057,\n  \"checklist-rtl\": 59059,\n  \"checkroom\": 61854,\n  \"chevron-left\": 58827,\n  \"chevron-right\": 58828,\n  \"child-care\": 60225,\n  \"child-friendly\": 60226,\n  \"chrome-reader-mode\": 59501,\n  \"church\": 60078,\n  \"circle\": 61258,\n  \"circle-notifications\": 59796,\n  \"class\": 59502,\n  \"clean-hands\": 61983,\n  \"cleaning-services\": 61695,\n  \"clear\": 57676,\n  \"clear-all\": 57528,\n  \"close\": 58829,\n  \"close-fullscreen\": 61903,\n  \"closed-caption\": 57372,\n  \"closed-caption-disabled\": 61916,\n  \"closed-caption-off\": 59798,\n  \"cloud\": 58045,\n  \"cloud-circle\": 58046,\n  \"cloud-done\": 58047,\n  \"cloud-download\": 58048,\n  \"cloud-off\": 58049,\n  \"cloud-queue\": 58050,\n  \"cloud-sync\": 60250,\n  \"cloud-upload\": 58051,\n  \"cloudy-snowing\": 59408,\n  \"co2\": 59312,\n  \"co-present\": 60144,\n  \"code\": 59503,\n  \"code-off\": 58611,\n  \"coffee\": 61423,\n  \"coffee-maker\": 61424,\n  \"collections\": 58294,\n  \"collections-bookmark\": 58417,\n  \"color-lens\": 58295,\n  \"colorize\": 58296,\n  \"comment\": 57529,\n  \"comment-bank\": 59982,\n  \"comments-disabled\": 59298,\n  \"commit\": 60149,\n  \"commute\": 59712,\n  \"compare\": 58297,\n  \"compare-arrows\": 59669,\n  \"compass-calibration\": 58748,\n  \"compost\": 59233,\n  \"compress\": 59725,\n  \"computer\": 58122,\n  \"confirmation-num\": 58936,\n  \"confirmation-number\": 58936,\n  \"connect-without-contact\": 61987,\n  \"connected-tv\": 59800,\n  \"connecting-airports\": 59337,\n  \"construction\": 59964,\n  \"contact-emergency\": 63697,\n  \"contact-mail\": 57552,\n  \"contact-page\": 61998,\n  \"contact-phone\": 57551,\n  \"contact-support\": 59724,\n  \"contactless\": 60017,\n  \"contacts\": 57530,\n  \"content-copy\": 57677,\n  \"content-cut\": 57678,\n  \"content-paste\": 57679,\n  \"content-paste-go\": 60046,\n  \"content-paste-off\": 58616,\n  \"content-paste-search\": 60059,\n  \"contrast\": 60215,\n  \"control-camera\": 57460,\n  \"control-point\": 58298,\n  \"control-point-duplicate\": 58299,\n  \"conveyor-belt\": 63591,\n  \"cookie\": 60076,\n  \"copy-all\": 58092,\n  \"copyright\": 59660,\n  \"coronavirus\": 61985,\n  \"corporate-fare\": 61904,\n  \"cottage\": 58759,\n  \"countertops\": 61943,\n  \"create\": 57680,\n  \"create-new-folder\": 58060,\n  \"credit-card\": 59504,\n  \"credit-card-off\": 58612,\n  \"credit-score\": 61425,\n  \"crib\": 58760,\n  \"crisis-alert\": 60393,\n  \"crop\": 58302,\n  \"crop-16-9\": 58300,\n  \"crop-3-2\": 58301,\n  \"crop-5-4\": 58303,\n  \"crop-7-5\": 58304,\n  \"crop-din\": 58305,\n  \"crop-free\": 58306,\n  \"crop-landscape\": 58307,\n  \"crop-original\": 58308,\n  \"crop-portrait\": 58309,\n  \"crop-rotate\": 58423,\n  \"crop-square\": 58310,\n  \"cruelty-free\": 59289,\n  \"css\": 60307,\n  \"currency-bitcoin\": 60357,\n  \"currency-exchange\": 60272,\n  \"currency-franc\": 60154,\n  \"currency-lira\": 60143,\n  \"currency-pound\": 60145,\n  \"currency-ruble\": 60140,\n  \"currency-rupee\": 60151,\n  \"currency-yen\": 60155,\n  \"currency-yuan\": 60153,\n  \"curtains\": 60446,\n  \"curtains-closed\": 60445,\n  \"cyclone\": 60373,\n  \"dangerous\": 59802,\n  \"dark-mode\": 58652,\n  \"dashboard\": 59505,\n  \"dashboard-customize\": 59803,\n  \"data-array\": 60113,\n  \"data-exploration\": 59247,\n  \"data-object\": 60115,\n  \"data-saver-off\": 61426,\n  \"data-saver-on\": 61427,\n  \"data-thresholding\": 60319,\n  \"data-usage\": 57775,\n  \"dataset\": 63726,\n  \"dataset-linked\": 63727,\n  \"date-range\": 59670,\n  \"deblur\": 60279,\n  \"deck\": 59970,\n  \"dehaze\": 58311,\n  \"delete\": 59506,\n  \"delete-forever\": 59691,\n  \"delete-outline\": 59694,\n  \"delete-sweep\": 57708,\n  \"delivery-dining\": 60018,\n  \"density-large\": 60329,\n  \"density-medium\": 60318,\n  \"density-small\": 60328,\n  \"departure-board\": 58742,\n  \"description\": 59507,\n  \"deselect\": 60342,\n  \"design-services\": 61706,\n  \"desk\": 63732,\n  \"desktop-access-disabled\": 59805,\n  \"desktop-mac\": 58123,\n  \"desktop-windows\": 58124,\n  \"details\": 58312,\n  \"developer-board\": 58125,\n  \"developer-board-off\": 58623,\n  \"developer-mode\": 57776,\n  \"device-hub\": 58165,\n  \"device-thermostat\": 57855,\n  \"device-unknown\": 58169,\n  \"devices\": 57777,\n  \"devices-fold\": 60382,\n  \"devices-other\": 58167,\n  \"dew-point\": 63609,\n  \"dialer-sip\": 57531,\n  \"dialpad\": 57532,\n  \"diamond\": 60117,\n  \"difference\": 60285,\n  \"dining\": 61428,\n  \"dinner-dining\": 59991,\n  \"directions\": 58670,\n  \"directions-bike\": 58671,\n  \"directions-boat\": 58674,\n  \"directions-boat-filled\": 61429,\n  \"directions-bus\": 58672,\n  \"directions-bus-filled\": 61430,\n  \"directions-car\": 58673,\n  \"directions-car-filled\": 61431,\n  \"directions-ferry\": 58674,\n  \"directions-off\": 61711,\n  \"directions-railway\": 58676,\n  \"directions-railway-filled\": 61432,\n  \"directions-run\": 58726,\n  \"directions-subway\": 58675,\n  \"directions-subway-filled\": 61433,\n  \"directions-train\": 58676,\n  \"directions-transit\": 58677,\n  \"directions-transit-filled\": 61434,\n  \"directions-walk\": 58678,\n  \"dirty-lens\": 61259,\n  \"disabled-by-default\": 62000,\n  \"disabled-visible\": 59246,\n  \"disc-full\": 58896,\n  \"discord\": 60012,\n  \"discount\": 60361,\n  \"display-settings\": 60311,\n  \"diversity-1\": 63703,\n  \"diversity-2\": 63704,\n  \"diversity-3\": 63705,\n  \"dnd-forwardslash\": 58897,\n  \"dns\": 59509,\n  \"do-disturb\": 61580,\n  \"do-disturb-alt\": 61581,\n  \"do-disturb-off\": 61582,\n  \"do-disturb-on\": 61583,\n  \"do-not-disturb\": 58898,\n  \"do-not-disturb-alt\": 58897,\n  \"do-not-disturb-off\": 58947,\n  \"do-not-disturb-on\": 58948,\n  \"do-not-disturb-on-total-silence\": 61435,\n  \"do-not-step\": 61855,\n  \"do-not-touch\": 61872,\n  \"dock\": 58126,\n  \"document-scanner\": 58874,\n  \"domain\": 59374,\n  \"domain-add\": 60258,\n  \"domain-disabled\": 57583,\n  \"domain-verification\": 61260,\n  \"done\": 59510,\n  \"done-all\": 59511,\n  \"done-outline\": 59695,\n  \"donut-large\": 59671,\n  \"donut-small\": 59672,\n  \"door-back\": 61436,\n  \"door-front\": 61437,\n  \"door-sliding\": 61438,\n  \"doorbell\": 61439,\n  \"double-arrow\": 59984,\n  \"downhill-skiing\": 58633,\n  \"download\": 61584,\n  \"download-done\": 61585,\n  \"download-for-offline\": 61440,\n  \"downloading\": 61441,\n  \"drafts\": 57681,\n  \"drag-handle\": 57949,\n  \"drag-indicator\": 59717,\n  \"draw\": 59206,\n  \"drive-eta\": 58899,\n  \"drive-file-move\": 58997,\n  \"drive-file-move-outline\": 59809,\n  \"drive-file-move-rtl\": 59245,\n  \"drive-file-rename-outline\": 59810,\n  \"drive-folder-upload\": 59811,\n  \"dry\": 61875,\n  \"dry-cleaning\": 59992,\n  \"duo\": 59813,\n  \"dvr\": 57778,\n  \"dynamic-feed\": 59924,\n  \"dynamic-form\": 61887,\n  \"e-mobiledata\": 61442,\n  \"earbuds\": 61443,\n  \"earbuds-battery\": 61444,\n  \"east\": 61919,\n  \"eco\": 59957,\n  \"edgesensor-high\": 61445,\n  \"edgesensor-low\": 61446,\n  \"edit\": 58313,\n  \"edit-attributes\": 58744,\n  \"edit-calendar\": 59202,\n  \"edit-document\": 63628,\n  \"edit-location\": 58728,\n  \"edit-location-alt\": 57797,\n  \"edit-note\": 59205,\n  \"edit-notifications\": 58661,\n  \"edit-off\": 59728,\n  \"edit-road\": 61261,\n  \"edit-square\": 63629,\n  \"egg\": 60108,\n  \"egg-alt\": 60104,\n  \"eject\": 59643,\n  \"elderly\": 61978,\n  \"elderly-woman\": 60265,\n  \"electric-bike\": 60187,\n  \"electric-bolt\": 60444,\n  \"electric-car\": 60188,\n  \"electric-meter\": 60443,\n  \"electric-moped\": 60189,\n  \"electric-rickshaw\": 60190,\n  \"electric-scooter\": 60191,\n  \"electrical-services\": 61698,\n  \"elevator\": 61856,\n  \"email\": 57534,\n  \"emergency\": 57835,\n  \"emergency-recording\": 60404,\n  \"emergency-share\": 60406,\n  \"emoji-emotions\": 59938,\n  \"emoji-events\": 59939,\n  \"emoji-flags\": 59930,\n  \"emoji-food-beverage\": 59931,\n  \"emoji-nature\": 59932,\n  \"emoji-objects\": 59940,\n  \"emoji-people\": 59933,\n  \"emoji-symbols\": 59934,\n  \"emoji-transportation\": 59935,\n  \"energy-savings-leaf\": 60442,\n  \"engineering\": 59965,\n  \"enhance-photo-translate\": 59644,\n  \"enhanced-encryption\": 58943,\n  \"equalizer\": 57373,\n  \"error\": 57344,\n  \"error-outline\": 57345,\n  \"escalator\": 61857,\n  \"escalator-warning\": 61868,\n  \"euro\": 59925,\n  \"euro-symbol\": 59686,\n  \"ev-station\": 58733,\n  \"event\": 59512,\n  \"event-available\": 58900,\n  \"event-busy\": 58901,\n  \"event-note\": 58902,\n  \"event-repeat\": 60283,\n  \"event-seat\": 59651,\n  \"exit-to-app\": 59513,\n  \"expand\": 59727,\n  \"expand-circle-down\": 59341,\n  \"expand-less\": 58830,\n  \"expand-more\": 58831,\n  \"explicit\": 57374,\n  \"explore\": 59514,\n  \"explore-off\": 59816,\n  \"exposure\": 58314,\n  \"exposure-minus-1\": 58315,\n  \"exposure-minus-2\": 58316,\n  \"exposure-neg-1\": 58315,\n  \"exposure-neg-2\": 58316,\n  \"exposure-plus-1\": 58317,\n  \"exposure-plus-2\": 58318,\n  \"exposure-zero\": 58319,\n  \"extension\": 59515,\n  \"extension-off\": 58613,\n  \"face\": 59516,\n  \"face-2\": 63706,\n  \"face-3\": 63707,\n  \"face-4\": 63708,\n  \"face-5\": 63709,\n  \"face-6\": 63710,\n  \"face-retouching-natural\": 61262,\n  \"face-retouching-off\": 61447,\n  \"facebook\": 62004,\n  \"fact-check\": 61637,\n  \"factory\": 60348,\n  \"family-restroom\": 61858,\n  \"fast-forward\": 57375,\n  \"fast-rewind\": 57376,\n  \"fastfood\": 58746,\n  \"favorite\": 59517,\n  \"favorite-border\": 59518,\n  \"favorite-outline\": 59518,\n  \"fax\": 60120,\n  \"featured-play-list\": 57453,\n  \"featured-video\": 57454,\n  \"feed\": 61449,\n  \"feedback\": 59519,\n  \"female\": 58768,\n  \"fence\": 61942,\n  \"festival\": 60008,\n  \"fiber-dvr\": 57437,\n  \"fiber-manual-record\": 57441,\n  \"fiber-new\": 57438,\n  \"fiber-pin\": 57450,\n  \"fiber-smart-record\": 57442,\n  \"file-copy\": 57715,\n  \"file-download\": 58052,\n  \"file-download-done\": 59818,\n  \"file-download-off\": 58622,\n  \"file-open\": 60147,\n  \"file-present\": 59918,\n  \"file-upload\": 58054,\n  \"file-upload-off\": 63622,\n  \"filter\": 58323,\n  \"filter-1\": 58320,\n  \"filter-2\": 58321,\n  \"filter-3\": 58322,\n  \"filter-4\": 58324,\n  \"filter-5\": 58325,\n  \"filter-6\": 58326,\n  \"filter-7\": 58327,\n  \"filter-8\": 58328,\n  \"filter-9\": 58329,\n  \"filter-9-plus\": 58330,\n  \"filter-alt\": 61263,\n  \"filter-alt-off\": 60210,\n  \"filter-b-and-w\": 58331,\n  \"filter-center-focus\": 58332,\n  \"filter-drama\": 58333,\n  \"filter-frames\": 58334,\n  \"filter-hdr\": 58335,\n  \"filter-list\": 57682,\n  \"filter-list-alt\": 59726,\n  \"filter-list-off\": 60247,\n  \"filter-none\": 58336,\n  \"filter-tilt-shift\": 58338,\n  \"filter-vintage\": 58339,\n  \"find-in-page\": 59520,\n  \"find-replace\": 59521,\n  \"fingerprint\": 59661,\n  \"fire-extinguisher\": 61912,\n  \"fire-hydrant\": 61859,\n  \"fire-hydrant-alt\": 63729,\n  \"fire-truck\": 63730,\n  \"fireplace\": 59971,\n  \"first-page\": 58844,\n  \"fit-screen\": 59920,\n  \"fitbit\": 59435,\n  \"fitness-center\": 60227,\n  \"flag\": 57683,\n  \"flag-circle\": 60152,\n  \"flaky\": 61264,\n  \"flare\": 58340,\n  \"flash-auto\": 58341,\n  \"flash-off\": 58342,\n  \"flash-on\": 58343,\n  \"flashlight-off\": 61450,\n  \"flashlight-on\": 61451,\n  \"flatware\": 61452,\n  \"flight\": 58681,\n  \"flight-class\": 59339,\n  \"flight-land\": 59652,\n  \"flight-takeoff\": 59653,\n  \"flip\": 58344,\n  \"flip-camera-android\": 59959,\n  \"flip-camera-ios\": 59960,\n  \"flip-to-back\": 59522,\n  \"flip-to-front\": 59523,\n  \"flood\": 60390,\n  \"flourescent\": 61453,\n  \"fluorescent\": 60465,\n  \"flutter-dash\": 57355,\n  \"fmd-bad\": 61454,\n  \"fmd-good\": 61455,\n  \"foggy\": 59416,\n  \"folder\": 58055,\n  \"folder-copy\": 60349,\n  \"folder-delete\": 60212,\n  \"folder-off\": 60291,\n  \"folder-open\": 58056,\n  \"folder-shared\": 58057,\n  \"folder-special\": 58903,\n  \"folder-zip\": 60204,\n  \"follow-the-signs\": 61986,\n  \"font-download\": 57703,\n  \"font-download-off\": 58617,\n  \"food-bank\": 61938,\n  \"forest\": 60057,\n  \"fork-left\": 60320,\n  \"fork-right\": 60332,\n  \"forklift\": 63592,\n  \"format-align-center\": 57908,\n  \"format-align-justify\": 57909,\n  \"format-align-left\": 57910,\n  \"format-align-right\": 57911,\n  \"format-bold\": 57912,\n  \"format-clear\": 57913,\n  \"format-color-fill\": 57914,\n  \"format-color-reset\": 57915,\n  \"format-color-text\": 57916,\n  \"format-indent-decrease\": 57917,\n  \"format-indent-increase\": 57918,\n  \"format-italic\": 57919,\n  \"format-line-spacing\": 57920,\n  \"format-list-bulleted\": 57921,\n  \"format-list-bulleted-add\": 63561,\n  \"format-list-numbered\": 57922,\n  \"format-list-numbered-rtl\": 57959,\n  \"format-overline\": 60261,\n  \"format-paint\": 57923,\n  \"format-quote\": 57924,\n  \"format-shapes\": 57950,\n  \"format-size\": 57925,\n  \"format-strikethrough\": 57926,\n  \"format-textdirection-l-to-r\": 57927,\n  \"format-textdirection-r-to-l\": 57928,\n  \"format-underline\": 57929,\n  \"format-underlined\": 57929,\n  \"fort\": 60077,\n  \"forum\": 57535,\n  \"forward\": 57684,\n  \"forward-10\": 57430,\n  \"forward-30\": 57431,\n  \"forward-5\": 57432,\n  \"forward-to-inbox\": 61831,\n  \"foundation\": 61952,\n  \"free-breakfast\": 60228,\n  \"free-cancellation\": 59208,\n  \"front-hand\": 59241,\n  \"front-loader\": 63593,\n  \"fullscreen\": 58832,\n  \"fullscreen-exit\": 58833,\n  \"functions\": 57930,\n  \"g-mobiledata\": 61456,\n  \"g-translate\": 59687,\n  \"gamepad\": 58127,\n  \"games\": 57377,\n  \"garage\": 61457,\n  \"gas-meter\": 60441,\n  \"gavel\": 59662,\n  \"generating-tokens\": 59209,\n  \"gesture\": 57685,\n  \"get-app\": 59524,\n  \"gif\": 59656,\n  \"gif-box\": 59299,\n  \"girl\": 60264,\n  \"gite\": 58763,\n  \"goat\": 1114109,\n  \"golf-course\": 60229,\n  \"gpp-bad\": 61458,\n  \"gpp-good\": 61459,\n  \"gpp-maybe\": 61460,\n  \"gps-fixed\": 57779,\n  \"gps-not-fixed\": 57780,\n  \"gps-off\": 57781,\n  \"grade\": 59525,\n  \"gradient\": 58345,\n  \"grading\": 59983,\n  \"grain\": 58346,\n  \"graphic-eq\": 57784,\n  \"grass\": 61957,\n  \"grid-3x3\": 61461,\n  \"grid-4x4\": 61462,\n  \"grid-goldenratio\": 61463,\n  \"grid-off\": 58347,\n  \"grid-on\": 58348,\n  \"grid-view\": 59824,\n  \"group\": 59375,\n  \"group-add\": 59376,\n  \"group-off\": 59207,\n  \"group-remove\": 59309,\n  \"group-work\": 59526,\n  \"groups\": 62003,\n  \"groups-2\": 63711,\n  \"groups-3\": 63712,\n  \"h-mobiledata\": 61464,\n  \"h-plus-mobiledata\": 61465,\n  \"hail\": 59825,\n  \"handshake\": 60363,\n  \"handyman\": 61707,\n  \"hardware\": 59993,\n  \"hd\": 57426,\n  \"hdr-auto\": 61466,\n  \"hdr-auto-select\": 61467,\n  \"hdr-enhanced-select\": 61265,\n  \"hdr-off\": 58349,\n  \"hdr-off-select\": 61468,\n  \"hdr-on\": 58350,\n  \"hdr-on-select\": 61469,\n  \"hdr-plus\": 61470,\n  \"hdr-strong\": 58353,\n  \"hdr-weak\": 58354,\n  \"headphones\": 61471,\n  \"headphones-battery\": 61472,\n  \"headset\": 58128,\n  \"headset-mic\": 58129,\n  \"headset-off\": 58170,\n  \"healing\": 58355,\n  \"health-and-safety\": 57813,\n  \"hearing\": 57379,\n  \"hearing-disabled\": 61700,\n  \"heart-broken\": 60098,\n  \"heat-pump\": 60440,\n  \"height\": 59926,\n  \"help\": 59527,\n  \"help-center\": 61888,\n  \"help-outline\": 59645,\n  \"hevc\": 61473,\n  \"hexagon\": 60217,\n  \"hide-image\": 61474,\n  \"hide-source\": 61475,\n  \"high-quality\": 57380,\n  \"highlight\": 57951,\n  \"highlight-alt\": 61266,\n  \"highlight-off\": 59528,\n  \"highlight-remove\": 59528,\n  \"hiking\": 58634,\n  \"history\": 59529,\n  \"history-edu\": 59966,\n  \"history-toggle-off\": 61821,\n  \"hive\": 60070,\n  \"hls\": 60298,\n  \"hls-off\": 60300,\n  \"holiday-village\": 58762,\n  \"home\": 59530,\n  \"home-filled\": 59826,\n  \"home-max\": 61476,\n  \"home-mini\": 61477,\n  \"home-repair-service\": 61696,\n  \"home-work\": 59913,\n  \"horizontal-distribute\": 57364,\n  \"horizontal-rule\": 61704,\n  \"horizontal-split\": 59719,\n  \"hot-tub\": 60230,\n  \"hotel\": 58682,\n  \"hotel-class\": 59203,\n  \"hourglass-bottom\": 59996,\n  \"hourglass-disabled\": 61267,\n  \"hourglass-empty\": 59531,\n  \"hourglass-full\": 59532,\n  \"hourglass-top\": 59995,\n  \"house\": 59972,\n  \"house-siding\": 61954,\n  \"houseboat\": 58756,\n  \"how-to-reg\": 57716,\n  \"how-to-vote\": 57717,\n  \"html\": 60286,\n  \"http\": 59650,\n  \"https\": 59533,\n  \"hub\": 59892,\n  \"hvac\": 61710,\n  \"ice-skating\": 58635,\n  \"icecream\": 60009,\n  \"image\": 58356,\n  \"image-aspect-ratio\": 58357,\n  \"image-not-supported\": 61718,\n  \"image-search\": 58431,\n  \"imagesearch-roller\": 59828,\n  \"import-contacts\": 57568,\n  \"import-export\": 57539,\n  \"important-devices\": 59666,\n  \"inbox\": 57686,\n  \"incomplete-circle\": 59291,\n  \"indeterminate-check-box\": 59657,\n  \"info\": 59534,\n  \"info-outline\": 59535,\n  \"input\": 59536,\n  \"insert-chart\": 57931,\n  \"insert-chart-outlined\": 57962,\n  \"insert-comment\": 57932,\n  \"insert-drive-file\": 57933,\n  \"insert-emoticon\": 57934,\n  \"insert-invitation\": 57935,\n  \"insert-link\": 57936,\n  \"insert-page-break\": 60106,\n  \"insert-photo\": 57937,\n  \"insights\": 61586,\n  \"install-desktop\": 60273,\n  \"install-mobile\": 60274,\n  \"integration-instructions\": 61268,\n  \"interests\": 59336,\n  \"interpreter-mode\": 59451,\n  \"inventory\": 57721,\n  \"inventory-2\": 57761,\n  \"invert-colors\": 59537,\n  \"invert-colors-off\": 57540,\n  \"invert-colors-on\": 59537,\n  \"ios-share\": 59064,\n  \"iron\": 58755,\n  \"iso\": 58358,\n  \"javascript\": 60284,\n  \"join-full\": 60139,\n  \"join-inner\": 60148,\n  \"join-left\": 60146,\n  \"join-right\": 60138,\n  \"kayaking\": 58636,\n  \"kebab-dining\": 59458,\n  \"key\": 59196,\n  \"key-off\": 60292,\n  \"keyboard\": 58130,\n  \"keyboard-alt\": 61480,\n  \"keyboard-arrow-down\": 58131,\n  \"keyboard-arrow-left\": 58132,\n  \"keyboard-arrow-right\": 58133,\n  \"keyboard-arrow-up\": 58134,\n  \"keyboard-backspace\": 58135,\n  \"keyboard-capslock\": 58136,\n  \"keyboard-command\": 60128,\n  \"keyboard-command-key\": 60135,\n  \"keyboard-control\": 58835,\n  \"keyboard-control-key\": 60134,\n  \"keyboard-double-arrow-down\": 60112,\n  \"keyboard-double-arrow-left\": 60099,\n  \"keyboard-double-arrow-right\": 60105,\n  \"keyboard-double-arrow-up\": 60111,\n  \"keyboard-hide\": 58138,\n  \"keyboard-option\": 60127,\n  \"keyboard-option-key\": 60136,\n  \"keyboard-return\": 58139,\n  \"keyboard-tab\": 58140,\n  \"keyboard-voice\": 58141,\n  \"king-bed\": 59973,\n  \"kitchen\": 60231,\n  \"kitesurfing\": 58637,\n  \"label\": 59538,\n  \"label-important\": 59703,\n  \"label-important-outline\": 59720,\n  \"label-off\": 59830,\n  \"label-outline\": 59539,\n  \"lan\": 60207,\n  \"landscape\": 58359,\n  \"landslide\": 60375,\n  \"language\": 59540,\n  \"laptop\": 58142,\n  \"laptop-chromebook\": 58143,\n  \"laptop-mac\": 58144,\n  \"laptop-windows\": 58145,\n  \"last-page\": 58845,\n  \"launch\": 59541,\n  \"layers\": 58683,\n  \"layers-clear\": 58684,\n  \"leaderboard\": 61964,\n  \"leak-add\": 58360,\n  \"leak-remove\": 58361,\n  \"leave-bags-at-home\": 61979,\n  \"legend-toggle\": 61723,\n  \"lens\": 58362,\n  \"lens-blur\": 61481,\n  \"library-add\": 57390,\n  \"library-add-check\": 59831,\n  \"library-books\": 57391,\n  \"library-music\": 57392,\n  \"light\": 61482,\n  \"light-mode\": 58648,\n  \"lightbulb\": 57584,\n  \"lightbulb-circle\": 60414,\n  \"lightbulb-outline\": 59663,\n  \"line-axis\": 60058,\n  \"line-style\": 59673,\n  \"line-weight\": 59674,\n  \"linear-scale\": 57952,\n  \"link\": 57687,\n  \"link-off\": 57711,\n  \"linked-camera\": 58424,\n  \"liquor\": 60000,\n  \"list\": 59542,\n  \"list-alt\": 57582,\n  \"live-help\": 57542,\n  \"live-tv\": 58937,\n  \"living\": 61483,\n  \"local-activity\": 58687,\n  \"local-airport\": 58685,\n  \"local-atm\": 58686,\n  \"local-attraction\": 58687,\n  \"local-bar\": 58688,\n  \"local-cafe\": 58689,\n  \"local-car-wash\": 58690,\n  \"local-convenience-store\": 58691,\n  \"local-dining\": 58710,\n  \"local-drink\": 58692,\n  \"local-fire-department\": 61269,\n  \"local-florist\": 58693,\n  \"local-gas-station\": 58694,\n  \"local-grocery-store\": 58695,\n  \"local-hospital\": 58696,\n  \"local-hotel\": 58697,\n  \"local-laundry-service\": 58698,\n  \"local-library\": 58699,\n  \"local-mall\": 58700,\n  \"local-movies\": 58701,\n  \"local-offer\": 58702,\n  \"local-parking\": 58703,\n  \"local-pharmacy\": 58704,\n  \"local-phone\": 58705,\n  \"local-pizza\": 58706,\n  \"local-play\": 58707,\n  \"local-police\": 61270,\n  \"local-post-office\": 58708,\n  \"local-print-shop\": 58709,\n  \"local-printshop\": 58709,\n  \"local-restaurant\": 58710,\n  \"local-see\": 58711,\n  \"local-shipping\": 58712,\n  \"local-taxi\": 58713,\n  \"location-city\": 59377,\n  \"location-disabled\": 57782,\n  \"location-history\": 58714,\n  \"location-off\": 57543,\n  \"location-on\": 57544,\n  \"location-pin\": 61915,\n  \"location-searching\": 57783,\n  \"lock\": 59543,\n  \"lock-clock\": 61271,\n  \"lock-open\": 59544,\n  \"lock-outline\": 59545,\n  \"lock-person\": 63731,\n  \"lock-reset\": 60126,\n  \"login\": 60023,\n  \"logo-dev\": 60118,\n  \"logout\": 59834,\n  \"looks\": 58364,\n  \"looks-3\": 58363,\n  \"looks-4\": 58365,\n  \"looks-5\": 58366,\n  \"looks-6\": 58367,\n  \"looks-one\": 58368,\n  \"looks-two\": 58369,\n  \"loop\": 57384,\n  \"loupe\": 58370,\n  \"low-priority\": 57709,\n  \"loyalty\": 59546,\n  \"lte-mobiledata\": 61484,\n  \"lte-plus-mobiledata\": 61485,\n  \"luggage\": 62005,\n  \"lunch-dining\": 60001,\n  \"lyrics\": 60427,\n  \"macro-off\": 63698,\n  \"mail\": 57688,\n  \"mail-lock\": 60426,\n  \"mail-outline\": 57569,\n  \"male\": 58766,\n  \"man\": 58603,\n  \"man-2\": 63713,\n  \"man-3\": 63714,\n  \"man-4\": 63715,\n  \"manage-accounts\": 61486,\n  \"manage-history\": 60391,\n  \"manage-search\": 61487,\n  \"map\": 58715,\n  \"maps-home-work\": 61488,\n  \"maps-ugc\": 61272,\n  \"margin\": 59835,\n  \"mark-as-unread\": 59836,\n  \"mark-chat-read\": 61835,\n  \"mark-chat-unread\": 61833,\n  \"mark-email-read\": 61836,\n  \"mark-email-unread\": 61834,\n  \"mark-unread-chat-alt\": 60317,\n  \"markunread\": 57689,\n  \"markunread-mailbox\": 59547,\n  \"masks\": 61976,\n  \"maximize\": 59696,\n  \"media-bluetooth-off\": 61489,\n  \"media-bluetooth-on\": 61490,\n  \"mediation\": 61351,\n  \"medical-information\": 60397,\n  \"medical-services\": 61705,\n  \"medication\": 61491,\n  \"medication-liquid\": 60039,\n  \"meeting-room\": 60239,\n  \"memory\": 58146,\n  \"menu\": 58834,\n  \"menu-book\": 59929,\n  \"menu-open\": 59837,\n  \"merge\": 60312,\n  \"merge-type\": 57938,\n  \"message\": 57545,\n  \"messenger\": 57546,\n  \"messenger-outline\": 57547,\n  \"mic\": 57385,\n  \"mic-external-off\": 61273,\n  \"mic-external-on\": 61274,\n  \"mic-none\": 57386,\n  \"mic-off\": 57387,\n  \"microwave\": 61956,\n  \"military-tech\": 59967,\n  \"minimize\": 59697,\n  \"minor-crash\": 60401,\n  \"miscellaneous-services\": 61708,\n  \"missed-video-call\": 57459,\n  \"mms\": 58904,\n  \"mobile-friendly\": 57856,\n  \"mobile-off\": 57857,\n  \"mobile-screen-share\": 57575,\n  \"mobiledata-off\": 61492,\n  \"mode\": 61591,\n  \"mode-comment\": 57939,\n  \"mode-edit\": 57940,\n  \"mode-edit-outline\": 61493,\n  \"mode-fan-off\": 60439,\n  \"mode-night\": 61494,\n  \"mode-of-travel\": 59342,\n  \"mode-standby\": 61495,\n  \"model-training\": 61647,\n  \"monetization-on\": 57955,\n  \"money\": 58749,\n  \"money-off\": 57948,\n  \"money-off-csred\": 61496,\n  \"monitor\": 61275,\n  \"monitor-heart\": 60066,\n  \"monitor-weight\": 61497,\n  \"monochrome-photos\": 58371,\n  \"mood\": 59378,\n  \"mood-bad\": 59379,\n  \"moped\": 60200,\n  \"more\": 58905,\n  \"more-horiz\": 58835,\n  \"more-time\": 59997,\n  \"more-vert\": 58836,\n  \"mosque\": 60082,\n  \"motion-photos-auto\": 61498,\n  \"motion-photos-off\": 59840,\n  \"motion-photos-on\": 59841,\n  \"motion-photos-pause\": 61991,\n  \"motion-photos-paused\": 59842,\n  \"motorcycle\": 59675,\n  \"mouse\": 58147,\n  \"move-down\": 60257,\n  \"move-to-inbox\": 57704,\n  \"move-up\": 60260,\n  \"movie\": 57388,\n  \"movie-creation\": 58372,\n  \"movie-edit\": 63552,\n  \"movie-filter\": 58426,\n  \"moving\": 58625,\n  \"mp\": 59843,\n  \"multiline-chart\": 59103,\n  \"multiple-stop\": 61881,\n  \"multitrack-audio\": 57784,\n  \"museum\": 59958,\n  \"music-note\": 58373,\n  \"music-off\": 58432,\n  \"music-video\": 57443,\n  \"my-library-add\": 57390,\n  \"my-library-books\": 57391,\n  \"my-library-music\": 57392,\n  \"my-location\": 58716,\n  \"nat\": 61276,\n  \"nature\": 58374,\n  \"nature-people\": 58375,\n  \"navigate-before\": 58376,\n  \"navigate-next\": 58377,\n  \"navigation\": 58717,\n  \"near-me\": 58729,\n  \"near-me-disabled\": 61935,\n  \"nearby-error\": 61499,\n  \"nearby-off\": 61500,\n  \"nest-cam-wired-stand\": 60438,\n  \"network-cell\": 57785,\n  \"network-check\": 58944,\n  \"network-locked\": 58906,\n  \"network-ping\": 60362,\n  \"network-wifi\": 57786,\n  \"network-wifi-1-bar\": 60388,\n  \"network-wifi-2-bar\": 60374,\n  \"network-wifi-3-bar\": 60385,\n  \"new-label\": 58889,\n  \"new-releases\": 57393,\n  \"newspaper\": 60289,\n  \"next-plan\": 61277,\n  \"next-week\": 57706,\n  \"nfc\": 57787,\n  \"night-shelter\": 61937,\n  \"nightlife\": 60002,\n  \"nightlight\": 61501,\n  \"nightlight-round\": 61278,\n  \"nights-stay\": 59974,\n  \"no-accounts\": 61502,\n  \"no-adult-content\": 63742,\n  \"no-backpack\": 62007,\n  \"no-cell\": 61860,\n  \"no-crash\": 60400,\n  \"no-drinks\": 61861,\n  \"no-encryption\": 58945,\n  \"no-encryption-gmailerrorred\": 61503,\n  \"no-flash\": 61862,\n  \"no-food\": 61863,\n  \"no-luggage\": 62011,\n  \"no-meals\": 61910,\n  \"no-meals-ouline\": 61993,\n  \"no-meeting-room\": 60238,\n  \"no-photography\": 61864,\n  \"no-sim\": 57548,\n  \"no-stroller\": 61871,\n  \"no-transfer\": 61909,\n  \"noise-aware\": 60396,\n  \"noise-control-off\": 60403,\n  \"nordic-walking\": 58638,\n  \"north\": 61920,\n  \"north-east\": 61921,\n  \"north-west\": 61922,\n  \"not-accessible\": 61694,\n  \"not-interested\": 57395,\n  \"not-listed-location\": 58741,\n  \"not-started\": 61649,\n  \"note\": 57455,\n  \"note-add\": 59548,\n  \"note-alt\": 61504,\n  \"notes\": 57964,\n  \"notification-add\": 58265,\n  \"notification-important\": 57348,\n  \"notifications\": 59380,\n  \"notifications-active\": 59383,\n  \"notifications-none\": 59381,\n  \"notifications-off\": 59382,\n  \"notifications-on\": 59383,\n  \"notifications-paused\": 59384,\n  \"now-wallpaper\": 57788,\n  \"now-widgets\": 57789,\n  \"numbers\": 60103,\n  \"offline-bolt\": 59698,\n  \"offline-pin\": 59658,\n  \"offline-share\": 59845,\n  \"oil-barrel\": 60437,\n  \"on-device-training\": 60413,\n  \"ondemand-video\": 58938,\n  \"online-prediction\": 61675,\n  \"opacity\": 59676,\n  \"open-in-browser\": 59549,\n  \"open-in-full\": 61902,\n  \"open-in-new\": 59550,\n  \"open-in-new-off\": 58614,\n  \"open-with\": 59551,\n  \"other-houses\": 58764,\n  \"outbond\": 61992,\n  \"outbound\": 57802,\n  \"outbox\": 61279,\n  \"outdoor-grill\": 59975,\n  \"outgoing-mail\": 61650,\n  \"outlet\": 61908,\n  \"outlined-flag\": 57710,\n  \"output\": 60350,\n  \"padding\": 59848,\n  \"pages\": 59385,\n  \"pageview\": 59552,\n  \"paid\": 61505,\n  \"palette\": 58378,\n  \"pallet\": 63594,\n  \"pan-tool\": 59685,\n  \"pan-tool-alt\": 60345,\n  \"panorama\": 58379,\n  \"panorama-fish-eye\": 58380,\n  \"panorama-fisheye\": 58380,\n  \"panorama-horizontal\": 58381,\n  \"panorama-horizontal-select\": 61280,\n  \"panorama-photosphere\": 59849,\n  \"panorama-photosphere-select\": 59850,\n  \"panorama-vertical\": 58382,\n  \"panorama-vertical-select\": 61281,\n  \"panorama-wide-angle\": 58383,\n  \"panorama-wide-angle-select\": 61282,\n  \"paragliding\": 58639,\n  \"park\": 60003,\n  \"party-mode\": 59386,\n  \"password\": 61506,\n  \"pattern\": 61507,\n  \"pause\": 57396,\n  \"pause-circle\": 57762,\n  \"pause-circle-filled\": 57397,\n  \"pause-circle-outline\": 57398,\n  \"pause-presentation\": 57578,\n  \"payment\": 59553,\n  \"payments\": 61283,\n  \"paypal\": 60045,\n  \"pedal-bike\": 60201,\n  \"pending\": 61284,\n  \"pending-actions\": 61883,\n  \"pentagon\": 60240,\n  \"people\": 59387,\n  \"people-alt\": 59937,\n  \"people-outline\": 59388,\n  \"percent\": 60248,\n  \"perm-camera-mic\": 59554,\n  \"perm-contact-cal\": 59555,\n  \"perm-contact-calendar\": 59555,\n  \"perm-data-setting\": 59556,\n  \"perm-device-info\": 59557,\n  \"perm-device-information\": 59557,\n  \"perm-identity\": 59558,\n  \"perm-media\": 59559,\n  \"perm-phone-msg\": 59560,\n  \"perm-scan-wifi\": 59561,\n  \"person\": 59389,\n  \"person-2\": 63716,\n  \"person-3\": 63717,\n  \"person-4\": 63718,\n  \"person-add\": 59390,\n  \"person-add-alt\": 59981,\n  \"person-add-alt-1\": 61285,\n  \"person-add-disabled\": 59851,\n  \"person-off\": 58640,\n  \"person-outline\": 59391,\n  \"person-pin\": 58714,\n  \"person-pin-circle\": 58730,\n  \"person-remove\": 61286,\n  \"person-remove-alt-1\": 61287,\n  \"person-search\": 61702,\n  \"personal-injury\": 59098,\n  \"personal-video\": 58939,\n  \"pest-control\": 61690,\n  \"pest-control-rodent\": 61693,\n  \"pets\": 59677,\n  \"phishing\": 60119,\n  \"phone\": 57549,\n  \"phone-android\": 58148,\n  \"phone-bluetooth-speaker\": 58907,\n  \"phone-callback\": 58953,\n  \"phone-disabled\": 59852,\n  \"phone-enabled\": 59853,\n  \"phone-forwarded\": 58908,\n  \"phone-in-talk\": 58909,\n  \"phone-iphone\": 58149,\n  \"phone-locked\": 58910,\n  \"phone-missed\": 58911,\n  \"phone-paused\": 58912,\n  \"phonelink\": 58150,\n  \"phonelink-erase\": 57563,\n  \"phonelink-lock\": 57564,\n  \"phonelink-off\": 58151,\n  \"phonelink-ring\": 57565,\n  \"phonelink-setup\": 57566,\n  \"photo\": 58384,\n  \"photo-album\": 58385,\n  \"photo-camera\": 58386,\n  \"photo-camera-back\": 61288,\n  \"photo-camera-front\": 61289,\n  \"photo-filter\": 58427,\n  \"photo-library\": 58387,\n  \"photo-size-select-actual\": 58418,\n  \"photo-size-select-large\": 58419,\n  \"photo-size-select-small\": 58420,\n  \"php\": 60303,\n  \"piano\": 58657,\n  \"piano-off\": 58656,\n  \"picture-as-pdf\": 58389,\n  \"picture-in-picture\": 59562,\n  \"picture-in-picture-alt\": 59665,\n  \"pie-chart\": 59076,\n  \"pie-chart-outline\": 61508,\n  \"pie-chart-outlined\": 59077,\n  \"pin\": 61509,\n  \"pin-drop\": 58718,\n  \"pin-end\": 59239,\n  \"pin-invoke\": 59235,\n  \"pinch\": 60216,\n  \"pivot-table-chart\": 59854,\n  \"pix\": 60067,\n  \"place\": 58719,\n  \"plagiarism\": 59994,\n  \"play-arrow\": 57399,\n  \"play-circle\": 57796,\n  \"play-circle-fill\": 57400,\n  \"play-circle-filled\": 57400,\n  \"play-circle-outline\": 57401,\n  \"play-disabled\": 61290,\n  \"play-for-work\": 59654,\n  \"play-lesson\": 61511,\n  \"playlist-add\": 57403,\n  \"playlist-add-check\": 57445,\n  \"playlist-add-check-circle\": 59366,\n  \"playlist-add-circle\": 59365,\n  \"playlist-play\": 57439,\n  \"playlist-remove\": 60288,\n  \"plumbing\": 61703,\n  \"plus-one\": 59392,\n  \"podcasts\": 61512,\n  \"point-of-sale\": 61822,\n  \"policy\": 59927,\n  \"poll\": 59393,\n  \"polyline\": 60347,\n  \"polymer\": 59563,\n  \"pool\": 60232,\n  \"portable-wifi-off\": 57550,\n  \"portrait\": 58390,\n  \"post-add\": 59936,\n  \"power\": 58940,\n  \"power-input\": 58166,\n  \"power-off\": 58950,\n  \"power-settings-new\": 59564,\n  \"precision-manufacturing\": 61513,\n  \"pregnant-woman\": 59678,\n  \"present-to-all\": 57567,\n  \"preview\": 61893,\n  \"price-change\": 61514,\n  \"price-check\": 61515,\n  \"print\": 59565,\n  \"print-disabled\": 59855,\n  \"priority-high\": 58949,\n  \"privacy-tip\": 61660,\n  \"private-connectivity\": 59204,\n  \"production-quantity-limits\": 57809,\n  \"propane\": 60436,\n  \"propane-tank\": 60435,\n  \"psychology\": 59978,\n  \"psychology-alt\": 63722,\n  \"public\": 59403,\n  \"public-off\": 61898,\n  \"publish\": 57941,\n  \"published-with-changes\": 62002,\n  \"punch-clock\": 60072,\n  \"push-pin\": 61709,\n  \"qr-code\": 61291,\n  \"qr-code-2\": 57354,\n  \"qr-code-scanner\": 61958,\n  \"query-builder\": 59566,\n  \"query-stats\": 58620,\n  \"question-answer\": 59567,\n  \"question-mark\": 60299,\n  \"queue\": 57404,\n  \"queue-music\": 57405,\n  \"queue-play-next\": 57446,\n  \"quick-contacts-dialer\": 57551,\n  \"quick-contacts-mail\": 57552,\n  \"quickreply\": 61292,\n  \"quiz\": 61516,\n  \"quora\": 60056,\n  \"r-mobiledata\": 61517,\n  \"radar\": 61518,\n  \"radio\": 57406,\n  \"radio-button-checked\": 59447,\n  \"radio-button-off\": 59446,\n  \"radio-button-on\": 59447,\n  \"radio-button-unchecked\": 59446,\n  \"railway-alert\": 59857,\n  \"ramen-dining\": 60004,\n  \"ramp-left\": 60316,\n  \"ramp-right\": 60310,\n  \"rate-review\": 58720,\n  \"raw-off\": 61519,\n  \"raw-on\": 61520,\n  \"read-more\": 61293,\n  \"real-estate-agent\": 59194,\n  \"rebase-edit\": 63558,\n  \"receipt\": 59568,\n  \"receipt-long\": 61294,\n  \"recent-actors\": 57407,\n  \"recommend\": 59858,\n  \"record-voice-over\": 59679,\n  \"rectangle\": 60244,\n  \"recycling\": 59232,\n  \"reddit\": 60064,\n  \"redeem\": 59569,\n  \"redo\": 57690,\n  \"reduce-capacity\": 61980,\n  \"refresh\": 58837,\n  \"remember-me\": 61521,\n  \"remove\": 57691,\n  \"remove-circle\": 57692,\n  \"remove-circle-outline\": 57693,\n  \"remove-done\": 59859,\n  \"remove-from-queue\": 57447,\n  \"remove-moderator\": 59860,\n  \"remove-red-eye\": 58391,\n  \"remove-road\": 60412,\n  \"remove-shopping-cart\": 59688,\n  \"reorder\": 59646,\n  \"repartition\": 63720,\n  \"repeat\": 57408,\n  \"repeat-on\": 59862,\n  \"repeat-one\": 57409,\n  \"repeat-one-on\": 59863,\n  \"replay\": 57410,\n  \"replay-10\": 57433,\n  \"replay-30\": 57434,\n  \"replay-5\": 57435,\n  \"replay-circle-filled\": 59864,\n  \"reply\": 57694,\n  \"reply-all\": 57695,\n  \"report\": 57696,\n  \"report-gmailerrorred\": 61522,\n  \"report-off\": 57712,\n  \"report-problem\": 59570,\n  \"request-page\": 61996,\n  \"request-quote\": 61878,\n  \"reset-tv\": 59865,\n  \"restart-alt\": 61523,\n  \"restaurant\": 58732,\n  \"restaurant-menu\": 58721,\n  \"restore\": 59571,\n  \"restore-from-trash\": 59704,\n  \"restore-page\": 59689,\n  \"reviews\": 61524,\n  \"rice-bowl\": 61941,\n  \"ring-volume\": 57553,\n  \"rocket\": 60325,\n  \"rocket-launch\": 60315,\n  \"roller-shades\": 60434,\n  \"roller-shades-closed\": 60433,\n  \"roller-skating\": 60365,\n  \"roofing\": 61953,\n  \"room\": 59572,\n  \"room-preferences\": 61880,\n  \"room-service\": 60233,\n  \"rotate-90-degrees-ccw\": 58392,\n  \"rotate-90-degrees-cw\": 60075,\n  \"rotate-left\": 58393,\n  \"rotate-right\": 58394,\n  \"roundabout-left\": 60313,\n  \"roundabout-right\": 60323,\n  \"rounded-corner\": 59680,\n  \"route\": 60109,\n  \"router\": 58152,\n  \"rowing\": 59681,\n  \"rss-feed\": 57573,\n  \"rsvp\": 61525,\n  \"rtt\": 59821,\n  \"rule\": 61890,\n  \"rule-folder\": 61897,\n  \"run-circle\": 61295,\n  \"running-with-errors\": 58653,\n  \"rv-hookup\": 58946,\n  \"safety-check\": 60399,\n  \"safety-divider\": 57804,\n  \"sailing\": 58626,\n  \"sanitizer\": 61981,\n  \"satellite\": 58722,\n  \"satellite-alt\": 60218,\n  \"save\": 57697,\n  \"save-alt\": 57713,\n  \"save-as\": 60256,\n  \"saved-search\": 59921,\n  \"savings\": 58091,\n  \"scale\": 60255,\n  \"scanner\": 58153,\n  \"scatter-plot\": 57960,\n  \"schedule\": 59573,\n  \"schedule-send\": 59914,\n  \"schema\": 58621,\n  \"school\": 59404,\n  \"science\": 59979,\n  \"score\": 57961,\n  \"scoreboard\": 60368,\n  \"screen-lock-landscape\": 57790,\n  \"screen-lock-portrait\": 57791,\n  \"screen-lock-rotation\": 57792,\n  \"screen-rotation\": 57793,\n  \"screen-rotation-alt\": 60398,\n  \"screen-search-desktop\": 61296,\n  \"screen-share\": 57570,\n  \"screenshot\": 61526,\n  \"screenshot-monitor\": 60424,\n  \"scuba-diving\": 60366,\n  \"sd\": 59869,\n  \"sd-card\": 58915,\n  \"sd-card-alert\": 61527,\n  \"sd-storage\": 57794,\n  \"search\": 59574,\n  \"search-off\": 60022,\n  \"security\": 58154,\n  \"security-update\": 61528,\n  \"security-update-good\": 61529,\n  \"security-update-warning\": 61530,\n  \"segment\": 59723,\n  \"select-all\": 57698,\n  \"self-improvement\": 60024,\n  \"sell\": 61531,\n  \"send\": 57699,\n  \"send-and-archive\": 59916,\n  \"send-time-extension\": 60123,\n  \"send-to-mobile\": 61532,\n  \"sensor-door\": 61877,\n  \"sensor-occupied\": 60432,\n  \"sensor-window\": 61876,\n  \"sensors\": 58654,\n  \"sensors-off\": 58655,\n  \"sentiment-dissatisfied\": 59409,\n  \"sentiment-neutral\": 59410,\n  \"sentiment-satisfied\": 59411,\n  \"sentiment-satisfied-alt\": 57581,\n  \"sentiment-very-dissatisfied\": 59412,\n  \"sentiment-very-satisfied\": 59413,\n  \"set-meal\": 61930,\n  \"settings\": 59576,\n  \"settings-accessibility\": 61533,\n  \"settings-applications\": 59577,\n  \"settings-backup-restore\": 59578,\n  \"settings-bluetooth\": 59579,\n  \"settings-brightness\": 59581,\n  \"settings-cell\": 59580,\n  \"settings-display\": 59581,\n  \"settings-ethernet\": 59582,\n  \"settings-input-antenna\": 59583,\n  \"settings-input-component\": 59584,\n  \"settings-input-composite\": 59585,\n  \"settings-input-hdmi\": 59586,\n  \"settings-input-svideo\": 59587,\n  \"settings-overscan\": 59588,\n  \"settings-phone\": 59589,\n  \"settings-power\": 59590,\n  \"settings-remote\": 59591,\n  \"settings-suggest\": 61534,\n  \"settings-system-daydream\": 57795,\n  \"settings-voice\": 59592,\n  \"severe-cold\": 60371,\n  \"shape-line\": 63699,\n  \"share\": 59405,\n  \"share-arrival-time\": 58660,\n  \"share-location\": 61535,\n  \"shelves\": 63598,\n  \"shield\": 59872,\n  \"shield-moon\": 60073,\n  \"shop\": 59593,\n  \"shop-2\": 57758,\n  \"shop-two\": 59594,\n  \"shopify\": 60061,\n  \"shopping-bag\": 61900,\n  \"shopping-basket\": 59595,\n  \"shopping-cart\": 59596,\n  \"shopping-cart-checkout\": 60296,\n  \"short-text\": 57953,\n  \"shortcut\": 61536,\n  \"show-chart\": 59105,\n  \"shower\": 61537,\n  \"shuffle\": 57411,\n  \"shuffle-on\": 59873,\n  \"shutter-speed\": 58429,\n  \"sick\": 61984,\n  \"sign-language\": 60389,\n  \"signal-cellular-0-bar\": 61608,\n  \"signal-cellular-4-bar\": 57800,\n  \"signal-cellular-alt\": 57858,\n  \"signal-cellular-alt-1-bar\": 60383,\n  \"signal-cellular-alt-2-bar\": 60387,\n  \"signal-cellular-connected-no-internet-0-bar\": 61612,\n  \"signal-cellular-connected-no-internet-4-bar\": 57805,\n  \"signal-cellular-no-sim\": 57806,\n  \"signal-cellular-nodata\": 61538,\n  \"signal-cellular-null\": 57807,\n  \"signal-cellular-off\": 57808,\n  \"signal-wifi-0-bar\": 61616,\n  \"signal-wifi-4-bar\": 57816,\n  \"signal-wifi-4-bar-lock\": 57817,\n  \"signal-wifi-bad\": 61539,\n  \"signal-wifi-connected-no-internet-4\": 61540,\n  \"signal-wifi-off\": 57818,\n  \"signal-wifi-statusbar-4-bar\": 61541,\n  \"signal-wifi-statusbar-connected-no-internet-4\": 61542,\n  \"signal-wifi-statusbar-null\": 61543,\n  \"signpost\": 60305,\n  \"sim-card\": 58155,\n  \"sim-card-alert\": 58916,\n  \"sim-card-download\": 61544,\n  \"single-bed\": 59976,\n  \"sip\": 61545,\n  \"skateboarding\": 58641,\n  \"skip-next\": 57412,\n  \"skip-previous\": 57413,\n  \"sledding\": 58642,\n  \"slideshow\": 58395,\n  \"slow-motion-video\": 57448,\n  \"smart-button\": 61889,\n  \"smart-display\": 61546,\n  \"smart-screen\": 61547,\n  \"smart-toy\": 61548,\n  \"smartphone\": 58156,\n  \"smoke-free\": 60234,\n  \"smoking-rooms\": 60235,\n  \"sms\": 58917,\n  \"sms-failed\": 58918,\n  \"snapchat\": 60014,\n  \"snippet-folder\": 61895,\n  \"snooze\": 57414,\n  \"snowboarding\": 58643,\n  \"snowing\": 59407,\n  \"snowmobile\": 58627,\n  \"snowshoeing\": 58644,\n  \"soap\": 61874,\n  \"social-distance\": 57803,\n  \"solar-power\": 60431,\n  \"sort\": 57700,\n  \"sort-by-alpha\": 57427,\n  \"sos\": 60407,\n  \"soup-kitchen\": 59347,\n  \"source\": 61892,\n  \"south\": 61923,\n  \"south-america\": 59364,\n  \"south-east\": 61924,\n  \"south-west\": 61925,\n  \"spa\": 60236,\n  \"space-bar\": 57942,\n  \"space-dashboard\": 58987,\n  \"spatial-audio\": 60395,\n  \"spatial-audio-off\": 60392,\n  \"spatial-tracking\": 60394,\n  \"speaker\": 58157,\n  \"speaker-group\": 58158,\n  \"speaker-notes\": 59597,\n  \"speaker-notes-off\": 59690,\n  \"speaker-phone\": 57554,\n  \"speed\": 59876,\n  \"spellcheck\": 59598,\n  \"splitscreen\": 61549,\n  \"spoke\": 59815,\n  \"sports\": 59952,\n  \"sports-bar\": 61939,\n  \"sports-baseball\": 59985,\n  \"sports-basketball\": 59942,\n  \"sports-cricket\": 59943,\n  \"sports-esports\": 59944,\n  \"sports-football\": 59945,\n  \"sports-golf\": 59946,\n  \"sports-gymnastics\": 60356,\n  \"sports-handball\": 59955,\n  \"sports-hockey\": 59947,\n  \"sports-kabaddi\": 59956,\n  \"sports-martial-arts\": 60137,\n  \"sports-mma\": 59948,\n  \"sports-motorsports\": 59949,\n  \"sports-rugby\": 59950,\n  \"sports-score\": 61550,\n  \"sports-soccer\": 59951,\n  \"sports-tennis\": 59954,\n  \"sports-volleyball\": 59953,\n  \"square\": 60214,\n  \"square-foot\": 59977,\n  \"ssid-chart\": 60262,\n  \"stacked-bar-chart\": 59878,\n  \"stacked-line-chart\": 61995,\n  \"stadium\": 60304,\n  \"stairs\": 61865,\n  \"star\": 59448,\n  \"star-border\": 59450,\n  \"star-border-purple500\": 61593,\n  \"star-half\": 59449,\n  \"star-outline\": 61551,\n  \"star-purple500\": 61594,\n  \"star-rate\": 61676,\n  \"stars\": 59600,\n  \"start\": 57481,\n  \"stay-current-landscape\": 57555,\n  \"stay-current-portrait\": 57556,\n  \"stay-primary-landscape\": 57557,\n  \"stay-primary-portrait\": 57558,\n  \"sticky-note-2\": 61948,\n  \"stop\": 57415,\n  \"stop-circle\": 61297,\n  \"stop-screen-share\": 57571,\n  \"storage\": 57819,\n  \"store\": 59601,\n  \"store-mall-directory\": 58723,\n  \"storefront\": 59922,\n  \"storm\": 61552,\n  \"straight\": 60309,\n  \"straighten\": 58396,\n  \"stream\": 59881,\n  \"streetview\": 58734,\n  \"strikethrough-s\": 57943,\n  \"stroller\": 61870,\n  \"style\": 58397,\n  \"subdirectory-arrow-left\": 58841,\n  \"subdirectory-arrow-right\": 58842,\n  \"subject\": 59602,\n  \"subscript\": 61713,\n  \"subscriptions\": 57444,\n  \"subtitles\": 57416,\n  \"subtitles-off\": 61298,\n  \"subway\": 58735,\n  \"summarize\": 61553,\n  \"sunny\": 59418,\n  \"sunny-snowing\": 59417,\n  \"superscript\": 61714,\n  \"supervised-user-circle\": 59705,\n  \"supervisor-account\": 59603,\n  \"support\": 61299,\n  \"support-agent\": 61666,\n  \"surfing\": 58645,\n  \"surround-sound\": 57417,\n  \"swap-calls\": 57559,\n  \"swap-horiz\": 59604,\n  \"swap-horizontal-circle\": 59699,\n  \"swap-vert\": 59605,\n  \"swap-vert-circle\": 59606,\n  \"swap-vertical-circle\": 59606,\n  \"swipe\": 59884,\n  \"swipe-down\": 60243,\n  \"swipe-down-alt\": 60208,\n  \"swipe-left\": 60249,\n  \"swipe-left-alt\": 60211,\n  \"swipe-right\": 60242,\n  \"swipe-right-alt\": 60246,\n  \"swipe-up\": 60206,\n  \"swipe-up-alt\": 60213,\n  \"swipe-vertical\": 60241,\n  \"switch-access-shortcut\": 59361,\n  \"switch-access-shortcut-add\": 59362,\n  \"switch-account\": 59885,\n  \"switch-camera\": 58398,\n  \"switch-left\": 61905,\n  \"switch-right\": 61906,\n  \"switch-video\": 58399,\n  \"synagogue\": 60080,\n  \"sync\": 58919,\n  \"sync-alt\": 59928,\n  \"sync-disabled\": 58920,\n  \"sync-lock\": 60142,\n  \"sync-problem\": 58921,\n  \"system-security-update\": 61554,\n  \"system-security-update-good\": 61555,\n  \"system-security-update-warning\": 61556,\n  \"system-update\": 58922,\n  \"system-update-alt\": 59607,\n  \"system-update-tv\": 59607,\n  \"tab\": 59608,\n  \"tab-unselected\": 59609,\n  \"table-bar\": 60114,\n  \"table-chart\": 57957,\n  \"table-restaurant\": 60102,\n  \"table-rows\": 61697,\n  \"table-view\": 61886,\n  \"tablet\": 58159,\n  \"tablet-android\": 58160,\n  \"tablet-mac\": 58161,\n  \"tag\": 59887,\n  \"tag-faces\": 58400,\n  \"takeout-dining\": 60020,\n  \"tap-and-play\": 58923,\n  \"tapas\": 61929,\n  \"task\": 61557,\n  \"task-alt\": 58086,\n  \"taxi-alert\": 61300,\n  \"telegram\": 60011,\n  \"temple-buddhist\": 60083,\n  \"temple-hindu\": 60079,\n  \"terminal\": 60302,\n  \"terrain\": 58724,\n  \"text-decrease\": 60125,\n  \"text-fields\": 57954,\n  \"text-format\": 57701,\n  \"text-increase\": 60130,\n  \"text-rotate-up\": 59706,\n  \"text-rotate-vertical\": 59707,\n  \"text-rotation-angledown\": 59708,\n  \"text-rotation-angleup\": 59709,\n  \"text-rotation-down\": 59710,\n  \"text-rotation-none\": 59711,\n  \"text-snippet\": 61894,\n  \"textsms\": 57560,\n  \"texture\": 58401,\n  \"theater-comedy\": 60006,\n  \"theaters\": 59610,\n  \"thermostat\": 61558,\n  \"thermostat-auto\": 61559,\n  \"thumb-down\": 59611,\n  \"thumb-down-alt\": 59414,\n  \"thumb-down-off-alt\": 59890,\n  \"thumb-up\": 59612,\n  \"thumb-up-alt\": 59415,\n  \"thumb-up-off-alt\": 59891,\n  \"thumbs-up-down\": 59613,\n  \"thunderstorm\": 60379,\n  \"tiktok\": 60030,\n  \"time-to-leave\": 58924,\n  \"timelapse\": 58402,\n  \"timeline\": 59682,\n  \"timer\": 58405,\n  \"timer-10\": 58403,\n  \"timer-10-select\": 61562,\n  \"timer-3\": 58404,\n  \"timer-3-select\": 61563,\n  \"timer-off\": 58406,\n  \"tips-and-updates\": 59290,\n  \"tire-repair\": 60360,\n  \"title\": 57956,\n  \"toc\": 59614,\n  \"today\": 59615,\n  \"toggle-off\": 59893,\n  \"toggle-on\": 59894,\n  \"token\": 59941,\n  \"toll\": 59616,\n  \"tonality\": 58407,\n  \"topic\": 61896,\n  \"tornado\": 57753,\n  \"touch-app\": 59667,\n  \"tour\": 61301,\n  \"toys\": 58162,\n  \"track-changes\": 59617,\n  \"traffic\": 58725,\n  \"train\": 58736,\n  \"tram\": 58737,\n  \"transcribe\": 63724,\n  \"transfer-within-a-station\": 58738,\n  \"transform\": 58408,\n  \"transgender\": 58765,\n  \"transit-enterexit\": 58745,\n  \"translate\": 59618,\n  \"travel-explore\": 58075,\n  \"trending-down\": 59619,\n  \"trending-flat\": 59620,\n  \"trending-neutral\": 59620,\n  \"trending-up\": 59621,\n  \"trip-origin\": 58747,\n  \"trolley\": 63595,\n  \"troubleshoot\": 57810,\n  \"try\": 61564,\n  \"tsunami\": 60376,\n  \"tty\": 61866,\n  \"tune\": 58409,\n  \"tungsten\": 61565,\n  \"turn-left\": 60326,\n  \"turn-right\": 60331,\n  \"turn-sharp-left\": 60327,\n  \"turn-sharp-right\": 60330,\n  \"turn-slight-left\": 60324,\n  \"turn-slight-right\": 60314,\n  \"turned-in\": 59622,\n  \"turned-in-not\": 59623,\n  \"tv\": 58163,\n  \"tv-off\": 58951,\n  \"two-wheeler\": 59897,\n  \"type-specimen\": 63728,\n  \"u-turn-left\": 60321,\n  \"u-turn-right\": 60322,\n  \"umbrella\": 61869,\n  \"unarchive\": 57705,\n  \"undo\": 57702,\n  \"unfold-less\": 58838,\n  \"unfold-less-double\": 63695,\n  \"unfold-more\": 58839,\n  \"unfold-more-double\": 63696,\n  \"unpublished\": 62006,\n  \"unsubscribe\": 57579,\n  \"upcoming\": 61566,\n  \"update\": 59683,\n  \"update-disabled\": 57461,\n  \"upgrade\": 61691,\n  \"upload\": 61595,\n  \"upload-file\": 59900,\n  \"usb\": 57824,\n  \"usb-off\": 58618,\n  \"vaccines\": 57656,\n  \"vape-free\": 60358,\n  \"vaping-rooms\": 60367,\n  \"verified\": 61302,\n  \"verified-user\": 59624,\n  \"vertical-align-bottom\": 57944,\n  \"vertical-align-center\": 57945,\n  \"vertical-align-top\": 57946,\n  \"vertical-distribute\": 57462,\n  \"vertical-shades\": 60430,\n  \"vertical-shades-closed\": 60429,\n  \"vertical-split\": 59721,\n  \"vibration\": 58925,\n  \"video-call\": 57456,\n  \"video-camera-back\": 61567,\n  \"video-camera-front\": 61568,\n  \"video-chat\": 63648,\n  \"video-collection\": 57418,\n  \"video-file\": 60295,\n  \"video-label\": 57457,\n  \"video-library\": 57418,\n  \"video-settings\": 60021,\n  \"video-stable\": 61569,\n  \"videocam\": 57419,\n  \"videocam-off\": 57420,\n  \"videogame-asset\": 58168,\n  \"videogame-asset-off\": 58624,\n  \"view-agenda\": 59625,\n  \"view-array\": 59626,\n  \"view-carousel\": 59627,\n  \"view-column\": 59628,\n  \"view-comfortable\": 58410,\n  \"view-comfy\": 58410,\n  \"view-comfy-alt\": 60275,\n  \"view-compact\": 58411,\n  \"view-compact-alt\": 60276,\n  \"view-cozy\": 60277,\n  \"view-day\": 59629,\n  \"view-headline\": 59630,\n  \"view-in-ar\": 59902,\n  \"view-kanban\": 60287,\n  \"view-list\": 59631,\n  \"view-module\": 59632,\n  \"view-quilt\": 59633,\n  \"view-sidebar\": 61716,\n  \"view-stream\": 59634,\n  \"view-timeline\": 60293,\n  \"view-week\": 59635,\n  \"vignette\": 58421,\n  \"villa\": 58758,\n  \"visibility\": 59636,\n  \"visibility-off\": 59637,\n  \"voice-chat\": 58926,\n  \"voice-over-off\": 59722,\n  \"voicemail\": 57561,\n  \"volcano\": 60378,\n  \"volume-down\": 57421,\n  \"volume-down-alt\": 59292,\n  \"volume-mute\": 57422,\n  \"volume-off\": 57423,\n  \"volume-up\": 57424,\n  \"volunteer-activism\": 60016,\n  \"vpn-key\": 57562,\n  \"vpn-key-off\": 60282,\n  \"vpn-lock\": 58927,\n  \"vrpano\": 61570,\n  \"wallet\": 63743,\n  \"wallet-giftcard\": 59638,\n  \"wallet-membership\": 59639,\n  \"wallet-travel\": 59640,\n  \"wallpaper\": 57788,\n  \"warehouse\": 60344,\n  \"warning\": 57346,\n  \"warning-amber\": 61571,\n  \"wash\": 61873,\n  \"watch\": 58164,\n  \"watch-later\": 59684,\n  \"watch-off\": 60131,\n  \"water\": 61572,\n  \"water-damage\": 61955,\n  \"water-drop\": 59288,\n  \"waterfall-chart\": 59904,\n  \"waves\": 57718,\n  \"waving-hand\": 59238,\n  \"wb-auto\": 58412,\n  \"wb-cloudy\": 58413,\n  \"wb-incandescent\": 58414,\n  \"wb-iridescent\": 58422,\n  \"wb-shade\": 59905,\n  \"wb-sunny\": 58416,\n  \"wb-twighlight\": 59906,\n  \"wb-twilight\": 57798,\n  \"wc\": 58941,\n  \"web\": 57425,\n  \"web-asset\": 57449,\n  \"web-asset-off\": 58615,\n  \"web-stories\": 58773,\n  \"webhook\": 60306,\n  \"wechat\": 60033,\n  \"weekend\": 57707,\n  \"west\": 61926,\n  \"whatshot\": 59406,\n  \"wheelchair-pickup\": 61867,\n  \"where-to-vote\": 57719,\n  \"widgets\": 57789,\n  \"width-full\": 63733,\n  \"width-normal\": 63734,\n  \"width-wide\": 63735,\n  \"wifi\": 58942,\n  \"wifi-1-bar\": 58570,\n  \"wifi-2-bar\": 58585,\n  \"wifi-calling\": 61303,\n  \"wifi-calling-3\": 61573,\n  \"wifi-channel\": 60266,\n  \"wifi-find\": 60209,\n  \"wifi-lock\": 57825,\n  \"wifi-off\": 58952,\n  \"wifi-password\": 60267,\n  \"wifi-protected-setup\": 61692,\n  \"wifi-tethering\": 57826,\n  \"wifi-tethering-error\": 60121,\n  \"wifi-tethering-error-rounded\": 61574,\n  \"wifi-tethering-off\": 61575,\n  \"wind-power\": 60428,\n  \"window\": 61576,\n  \"wine-bar\": 61928,\n  \"woman\": 57662,\n  \"woman-2\": 63719,\n  \"woo-commerce\": 60013,\n  \"wordpress\": 60063,\n  \"work\": 59641,\n  \"work-history\": 60425,\n  \"work-off\": 59714,\n  \"work-outline\": 59715,\n  \"workspace-premium\": 59311,\n  \"workspaces\": 57760,\n  \"workspaces-filled\": 59917,\n  \"workspaces-outline\": 59919,\n  \"wrap-text\": 57947,\n  \"wrong-location\": 61304,\n  \"wysiwyg\": 61891,\n  \"yard\": 61577,\n  \"youtube-searched-for\": 59642,\n  \"zoom-in\": 59647,\n  \"zoom-in-map\": 60205,\n  \"zoom-out\": 59648,\n  \"zoom-out-map\": 58731\n}"
  },
  {
    "path": "packages/material-icons/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/material-icons\",\n  \"version\": \"12.5.0\",\n  \"description\": \"Material Icons font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\",\n    \"./fonts/*.ttf\": \"./fonts/*.ttf\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"material-icons\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/material-icons\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/material-icons/react-native-vector-icons-material-icons.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-material-icons'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\nend\n"
  },
  {
    "path": "packages/material-icons/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * MaterialIcons icon set component.\n * Usage: <MaterialIcons name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/MaterialIcons.json';\n\nexport const MaterialIcons = createIconSet(glyphMap, {\n  postScriptName: 'MaterialIcons-Regular',\n  fontFileName: 'MaterialIcons.ttf',\n  fontSource: require('../fonts/MaterialIcons.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require\n});\n\nexport type MaterialIconsIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default MaterialIcons;\n"
  },
  {
    "path": "packages/material-icons/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * MaterialIcons icon set component.\n * Usage: <MaterialIcons name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/MaterialIcons.json';\n\nexport const MaterialIcons = createIconSet(glyphMap, {\n  postScriptName: 'MaterialIcons-Regular',\n  fontFileName: 'MaterialIcons.ttf',\n});\n\nexport type MaterialIconsIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default MaterialIcons;\n"
  },
  {
    "path": "packages/material-icons/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/material-icons/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/octicons/.fontcustom-manifest.json",
    "content": "{\n  \"checksum\": {\n    \"previous\": \"fd9a60b515041398881b0181628154702913f13d8e3ef4646e83a01b8bc4af1b\",\n    \"current\": \"fd9a60b515041398881b0181628154702913f13d8e3ef4646e83a01b8bc4af1b\"\n  },\n  \"fonts\": [\n    \"Octicons/Octicons.ttf\",\n    \"Octicons/Octicons.svg\",\n    \"Octicons/Octicons.woff\",\n    \"Octicons/Octicons.eot\",\n    \"Octicons/Octicons.woff2\"\n  ],\n  \"glyphs\": {\n    \"accessibility\": {\n      \"codepoint\": 61696,\n      \"source\": \"renamedSVGs/accessibility.svg\"\n    },\n    \"accessibility-inset\": {\n      \"codepoint\": 61697,\n      \"source\": \"renamedSVGs/accessibility-inset.svg\"\n    },\n    \"agent\": {\n      \"codepoint\": 62027,\n      \"source\": \"renamedSVGs/agent.svg\"\n    },\n    \"ai-model\": {\n      \"codepoint\": 62022,\n      \"source\": \"renamedSVGs/ai-model.svg\"\n    },\n    \"alert\": {\n      \"codepoint\": 61698,\n      \"source\": \"renamedSVGs/alert.svg\"\n    },\n    \"alert-fill\": {\n      \"codepoint\": 61699,\n      \"source\": \"renamedSVGs/alert-fill.svg\"\n    },\n    \"apps\": {\n      \"codepoint\": 61700,\n      \"source\": \"renamedSVGs/apps.svg\"\n    },\n    \"archive\": {\n      \"codepoint\": 61701,\n      \"source\": \"renamedSVGs/archive.svg\"\n    },\n    \"arrow-both\": {\n      \"codepoint\": 61702,\n      \"source\": \"renamedSVGs/arrow-both.svg\"\n    },\n    \"arrow-down\": {\n      \"codepoint\": 61703,\n      \"source\": \"renamedSVGs/arrow-down.svg\"\n    },\n    \"arrow-down-left\": {\n      \"codepoint\": 61704,\n      \"source\": \"renamedSVGs/arrow-down-left.svg\"\n    },\n    \"arrow-down-right\": {\n      \"codepoint\": 61705,\n      \"source\": \"renamedSVGs/arrow-down-right.svg\"\n    },\n    \"arrow-left\": {\n      \"codepoint\": 61706,\n      \"source\": \"renamedSVGs/arrow-left.svg\"\n    },\n    \"arrow-right\": {\n      \"codepoint\": 61707,\n      \"source\": \"renamedSVGs/arrow-right.svg\"\n    },\n    \"arrow-switch\": {\n      \"codepoint\": 61708,\n      \"source\": \"renamedSVGs/arrow-switch.svg\"\n    },\n    \"arrow-up\": {\n      \"codepoint\": 61709,\n      \"source\": \"renamedSVGs/arrow-up.svg\"\n    },\n    \"arrow-up-left\": {\n      \"codepoint\": 61710,\n      \"source\": \"renamedSVGs/arrow-up-left.svg\"\n    },\n    \"arrow-up-right\": {\n      \"codepoint\": 61711,\n      \"source\": \"renamedSVGs/arrow-up-right.svg\"\n    },\n    \"beaker\": {\n      \"codepoint\": 61712,\n      \"source\": \"renamedSVGs/beaker.svg\"\n    },\n    \"bell\": {\n      \"codepoint\": 61713,\n      \"source\": \"renamedSVGs/bell.svg\"\n    },\n    \"bell-fill\": {\n      \"codepoint\": 61714,\n      \"source\": \"renamedSVGs/bell-fill.svg\"\n    },\n    \"bell-slash\": {\n      \"codepoint\": 61715,\n      \"source\": \"renamedSVGs/bell-slash.svg\"\n    },\n    \"blocked\": {\n      \"codepoint\": 61716,\n      \"source\": \"renamedSVGs/blocked.svg\"\n    },\n    \"bold\": {\n      \"codepoint\": 61717,\n      \"source\": \"renamedSVGs/bold.svg\"\n    },\n    \"book\": {\n      \"codepoint\": 61718,\n      \"source\": \"renamedSVGs/book.svg\"\n    },\n    \"book-locked\": {\n      \"codepoint\": 62036,\n      \"source\": \"renamedSVGs/book-locked.svg\"\n    },\n    \"bookmark\": {\n      \"codepoint\": 61719,\n      \"source\": \"renamedSVGs/bookmark.svg\"\n    },\n    \"bookmark-filled\": {\n      \"codepoint\": 62017,\n      \"source\": \"renamedSVGs/bookmark-filled.svg\"\n    },\n    \"bookmark-slash\": {\n      \"codepoint\": 61720,\n      \"source\": \"renamedSVGs/bookmark-slash.svg\"\n    },\n    \"bookmark-slash-fill\": {\n      \"codepoint\": 62018,\n      \"source\": \"renamedSVGs/bookmark-slash-fill.svg\"\n    },\n    \"boolean-off\": {\n      \"codepoint\": 62037,\n      \"source\": \"renamedSVGs/boolean-off.svg\"\n    },\n    \"boolean-on\": {\n      \"codepoint\": 62038,\n      \"source\": \"renamedSVGs/boolean-on.svg\"\n    },\n    \"briefcase\": {\n      \"codepoint\": 61721,\n      \"source\": \"renamedSVGs/briefcase.svg\"\n    },\n    \"broadcast\": {\n      \"codepoint\": 61722,\n      \"source\": \"renamedSVGs/broadcast.svg\"\n    },\n    \"browser\": {\n      \"codepoint\": 61723,\n      \"source\": \"renamedSVGs/browser.svg\"\n    },\n    \"bug\": {\n      \"codepoint\": 61724,\n      \"source\": \"renamedSVGs/bug.svg\"\n    },\n    \"cache\": {\n      \"codepoint\": 61725,\n      \"source\": \"renamedSVGs/cache.svg\"\n    },\n    \"calendar\": {\n      \"codepoint\": 61726,\n      \"source\": \"renamedSVGs/calendar.svg\"\n    },\n    \"check\": {\n      \"codepoint\": 61727,\n      \"source\": \"renamedSVGs/check.svg\"\n    },\n    \"check-circle\": {\n      \"codepoint\": 61728,\n      \"source\": \"renamedSVGs/check-circle.svg\"\n    },\n    \"check-circle-fill\": {\n      \"codepoint\": 61729,\n      \"source\": \"renamedSVGs/check-circle-fill.svg\"\n    },\n    \"checkbox\": {\n      \"codepoint\": 61730,\n      \"source\": \"renamedSVGs/checkbox.svg\"\n    },\n    \"checkbox-fill\": {\n      \"codepoint\": 62028,\n      \"source\": \"renamedSVGs/checkbox-fill.svg\"\n    },\n    \"checklist\": {\n      \"codepoint\": 61731,\n      \"source\": \"renamedSVGs/checklist.svg\"\n    },\n    \"chevron-down\": {\n      \"codepoint\": 61732,\n      \"source\": \"renamedSVGs/chevron-down.svg\"\n    },\n    \"chevron-left\": {\n      \"codepoint\": 61733,\n      \"source\": \"renamedSVGs/chevron-left.svg\"\n    },\n    \"chevron-right\": {\n      \"codepoint\": 61734,\n      \"source\": \"renamedSVGs/chevron-right.svg\"\n    },\n    \"chevron-up\": {\n      \"codepoint\": 61735,\n      \"source\": \"renamedSVGs/chevron-up.svg\"\n    },\n    \"circle\": {\n      \"codepoint\": 61736,\n      \"source\": \"renamedSVGs/circle.svg\"\n    },\n    \"circle-slash\": {\n      \"codepoint\": 61737,\n      \"source\": \"renamedSVGs/circle-slash.svg\"\n    },\n    \"clock\": {\n      \"codepoint\": 61738,\n      \"source\": \"renamedSVGs/clock.svg\"\n    },\n    \"clock-fill\": {\n      \"codepoint\": 61739,\n      \"source\": \"renamedSVGs/clock-fill.svg\"\n    },\n    \"cloud\": {\n      \"codepoint\": 61740,\n      \"source\": \"renamedSVGs/cloud.svg\"\n    },\n    \"cloud-offline\": {\n      \"codepoint\": 61741,\n      \"source\": \"renamedSVGs/cloud-offline.svg\"\n    },\n    \"code\": {\n      \"codepoint\": 61742,\n      \"source\": \"renamedSVGs/code.svg\"\n    },\n    \"code-of-conduct\": {\n      \"codepoint\": 61743,\n      \"source\": \"renamedSVGs/code-of-conduct.svg\"\n    },\n    \"code-review\": {\n      \"codepoint\": 61744,\n      \"source\": \"renamedSVGs/code-review.svg\"\n    },\n    \"code-square\": {\n      \"codepoint\": 61745,\n      \"source\": \"renamedSVGs/code-square.svg\"\n    },\n    \"codescan\": {\n      \"codepoint\": 61746,\n      \"source\": \"renamedSVGs/codescan.svg\"\n    },\n    \"codescan-checkmark\": {\n      \"codepoint\": 61747,\n      \"source\": \"renamedSVGs/codescan-checkmark.svg\"\n    },\n    \"codespaces\": {\n      \"codepoint\": 61748,\n      \"source\": \"renamedSVGs/codespaces.svg\"\n    },\n    \"columns\": {\n      \"codepoint\": 61749,\n      \"source\": \"renamedSVGs/columns.svg\"\n    },\n    \"command-palette\": {\n      \"codepoint\": 61750,\n      \"source\": \"renamedSVGs/command-palette.svg\"\n    },\n    \"comment\": {\n      \"codepoint\": 61751,\n      \"source\": \"renamedSVGs/comment.svg\"\n    },\n    \"comment-ai\": {\n      \"codepoint\": 62029,\n      \"source\": \"renamedSVGs/comment-ai.svg\"\n    },\n    \"comment-discussion\": {\n      \"codepoint\": 61752,\n      \"source\": \"renamedSVGs/comment-discussion.svg\"\n    },\n    \"comment-locked\": {\n      \"codepoint\": 62039,\n      \"source\": \"renamedSVGs/comment-locked.svg\"\n    },\n    \"compose\": {\n      \"codepoint\": 62040,\n      \"source\": \"renamedSVGs/compose.svg\"\n    },\n    \"container\": {\n      \"codepoint\": 61753,\n      \"source\": \"renamedSVGs/container.svg\"\n    },\n    \"copilot\": {\n      \"codepoint\": 61754,\n      \"source\": \"renamedSVGs/copilot.svg\"\n    },\n    \"copilot-error\": {\n      \"codepoint\": 61755,\n      \"source\": \"renamedSVGs/copilot-error.svg\"\n    },\n    \"copilot-warning\": {\n      \"codepoint\": 61756,\n      \"source\": \"renamedSVGs/copilot-warning.svg\"\n    },\n    \"copy\": {\n      \"codepoint\": 61757,\n      \"source\": \"renamedSVGs/copy.svg\"\n    },\n    \"cpu\": {\n      \"codepoint\": 61758,\n      \"source\": \"renamedSVGs/cpu.svg\"\n    },\n    \"credit-card\": {\n      \"codepoint\": 61759,\n      \"source\": \"renamedSVGs/credit-card.svg\"\n    },\n    \"cross-reference\": {\n      \"codepoint\": 61760,\n      \"source\": \"renamedSVGs/cross-reference.svg\"\n    },\n    \"crosshairs\": {\n      \"codepoint\": 62041,\n      \"source\": \"renamedSVGs/crosshairs.svg\"\n    },\n    \"dash\": {\n      \"codepoint\": 61761,\n      \"source\": \"renamedSVGs/dash.svg\"\n    },\n    \"database\": {\n      \"codepoint\": 61762,\n      \"source\": \"renamedSVGs/database.svg\"\n    },\n    \"dependabot\": {\n      \"codepoint\": 61763,\n      \"source\": \"renamedSVGs/dependabot.svg\"\n    },\n    \"desktop-download\": {\n      \"codepoint\": 61764,\n      \"source\": \"renamedSVGs/desktop-download.svg\"\n    },\n    \"device-camera\": {\n      \"codepoint\": 61765,\n      \"source\": \"renamedSVGs/device-camera.svg\"\n    },\n    \"device-camera-video\": {\n      \"codepoint\": 61766,\n      \"source\": \"renamedSVGs/device-camera-video.svg\"\n    },\n    \"device-desktop\": {\n      \"codepoint\": 61767,\n      \"source\": \"renamedSVGs/device-desktop.svg\"\n    },\n    \"device-mobile\": {\n      \"codepoint\": 61768,\n      \"source\": \"renamedSVGs/device-mobile.svg\"\n    },\n    \"devices\": {\n      \"codepoint\": 61769,\n      \"source\": \"renamedSVGs/devices.svg\"\n    },\n    \"diamond\": {\n      \"codepoint\": 61770,\n      \"source\": \"renamedSVGs/diamond.svg\"\n    },\n    \"dice\": {\n      \"codepoint\": 62042,\n      \"source\": \"renamedSVGs/dice.svg\"\n    },\n    \"diff\": {\n      \"codepoint\": 61771,\n      \"source\": \"renamedSVGs/diff.svg\"\n    },\n    \"diff-added\": {\n      \"codepoint\": 61772,\n      \"source\": \"renamedSVGs/diff-added.svg\"\n    },\n    \"diff-ignored\": {\n      \"codepoint\": 61773,\n      \"source\": \"renamedSVGs/diff-ignored.svg\"\n    },\n    \"diff-modified\": {\n      \"codepoint\": 61774,\n      \"source\": \"renamedSVGs/diff-modified.svg\"\n    },\n    \"diff-removed\": {\n      \"codepoint\": 61775,\n      \"source\": \"renamedSVGs/diff-removed.svg\"\n    },\n    \"diff-renamed\": {\n      \"codepoint\": 61776,\n      \"source\": \"renamedSVGs/diff-renamed.svg\"\n    },\n    \"discussion-closed\": {\n      \"codepoint\": 61777,\n      \"source\": \"renamedSVGs/discussion-closed.svg\"\n    },\n    \"discussion-duplicate\": {\n      \"codepoint\": 61778,\n      \"source\": \"renamedSVGs/discussion-duplicate.svg\"\n    },\n    \"discussion-outdated\": {\n      \"codepoint\": 61779,\n      \"source\": \"renamedSVGs/discussion-outdated.svg\"\n    },\n    \"dot\": {\n      \"codepoint\": 61780,\n      \"source\": \"renamedSVGs/dot.svg\"\n    },\n    \"dot-fill\": {\n      \"codepoint\": 61781,\n      \"source\": \"renamedSVGs/dot-fill.svg\"\n    },\n    \"download\": {\n      \"codepoint\": 61782,\n      \"source\": \"renamedSVGs/download.svg\"\n    },\n    \"duplicate\": {\n      \"codepoint\": 61783,\n      \"source\": \"renamedSVGs/duplicate.svg\"\n    },\n    \"ellipsis\": {\n      \"codepoint\": 61784,\n      \"source\": \"renamedSVGs/ellipsis.svg\"\n    },\n    \"exclamation\": {\n      \"codepoint\": 62043,\n      \"source\": \"renamedSVGs/exclamation.svg\"\n    },\n    \"eye\": {\n      \"codepoint\": 61785,\n      \"source\": \"renamedSVGs/eye.svg\"\n    },\n    \"eye-closed\": {\n      \"codepoint\": 61786,\n      \"source\": \"renamedSVGs/eye-closed.svg\"\n    },\n    \"feed-discussion\": {\n      \"codepoint\": 61787,\n      \"source\": \"renamedSVGs/feed-discussion.svg\"\n    },\n    \"feed-forked\": {\n      \"codepoint\": 61788,\n      \"source\": \"renamedSVGs/feed-forked.svg\"\n    },\n    \"feed-heart\": {\n      \"codepoint\": 61789,\n      \"source\": \"renamedSVGs/feed-heart.svg\"\n    },\n    \"feed-issue-closed\": {\n      \"codepoint\": 61790,\n      \"source\": \"renamedSVGs/feed-issue-closed.svg\"\n    },\n    \"feed-issue-draft\": {\n      \"codepoint\": 61791,\n      \"source\": \"renamedSVGs/feed-issue-draft.svg\"\n    },\n    \"feed-issue-open\": {\n      \"codepoint\": 61792,\n      \"source\": \"renamedSVGs/feed-issue-open.svg\"\n    },\n    \"feed-issue-reopen\": {\n      \"codepoint\": 61793,\n      \"source\": \"renamedSVGs/feed-issue-reopen.svg\"\n    },\n    \"feed-merged\": {\n      \"codepoint\": 61794,\n      \"source\": \"renamedSVGs/feed-merged.svg\"\n    },\n    \"feed-person\": {\n      \"codepoint\": 61795,\n      \"source\": \"renamedSVGs/feed-person.svg\"\n    },\n    \"feed-plus\": {\n      \"codepoint\": 61796,\n      \"source\": \"renamedSVGs/feed-plus.svg\"\n    },\n    \"feed-public\": {\n      \"codepoint\": 61797,\n      \"source\": \"renamedSVGs/feed-public.svg\"\n    },\n    \"feed-pull-request-closed\": {\n      \"codepoint\": 61798,\n      \"source\": \"renamedSVGs/feed-pull-request-closed.svg\"\n    },\n    \"feed-pull-request-draft\": {\n      \"codepoint\": 61799,\n      \"source\": \"renamedSVGs/feed-pull-request-draft.svg\"\n    },\n    \"feed-pull-request-open\": {\n      \"codepoint\": 61800,\n      \"source\": \"renamedSVGs/feed-pull-request-open.svg\"\n    },\n    \"feed-repo\": {\n      \"codepoint\": 61801,\n      \"source\": \"renamedSVGs/feed-repo.svg\"\n    },\n    \"feed-rocket\": {\n      \"codepoint\": 61802,\n      \"source\": \"renamedSVGs/feed-rocket.svg\"\n    },\n    \"feed-star\": {\n      \"codepoint\": 61803,\n      \"source\": \"renamedSVGs/feed-star.svg\"\n    },\n    \"feed-tag\": {\n      \"codepoint\": 61804,\n      \"source\": \"renamedSVGs/feed-tag.svg\"\n    },\n    \"feed-trophy\": {\n      \"codepoint\": 61805,\n      \"source\": \"renamedSVGs/feed-trophy.svg\"\n    },\n    \"file\": {\n      \"codepoint\": 61806,\n      \"source\": \"renamedSVGs/file.svg\"\n    },\n    \"file-added\": {\n      \"codepoint\": 61807,\n      \"source\": \"renamedSVGs/file-added.svg\"\n    },\n    \"file-badge\": {\n      \"codepoint\": 61808,\n      \"source\": \"renamedSVGs/file-badge.svg\"\n    },\n    \"file-binary\": {\n      \"codepoint\": 61809,\n      \"source\": \"renamedSVGs/file-binary.svg\"\n    },\n    \"file-check\": {\n      \"codepoint\": 62044,\n      \"source\": \"renamedSVGs/file-check.svg\"\n    },\n    \"file-code\": {\n      \"codepoint\": 61810,\n      \"source\": \"renamedSVGs/file-code.svg\"\n    },\n    \"file-diff\": {\n      \"codepoint\": 61811,\n      \"source\": \"renamedSVGs/file-diff.svg\"\n    },\n    \"file-directory\": {\n      \"codepoint\": 61812,\n      \"source\": \"renamedSVGs/file-directory.svg\"\n    },\n    \"file-directory-fill\": {\n      \"codepoint\": 61813,\n      \"source\": \"renamedSVGs/file-directory-fill.svg\"\n    },\n    \"file-directory-open-fill\": {\n      \"codepoint\": 61814,\n      \"source\": \"renamedSVGs/file-directory-open-fill.svg\"\n    },\n    \"file-directory-symlink\": {\n      \"codepoint\": 61815,\n      \"source\": \"renamedSVGs/file-directory-symlink.svg\"\n    },\n    \"file-media\": {\n      \"codepoint\": 62019,\n      \"source\": \"renamedSVGs/file-media.svg\"\n    },\n    \"file-moved\": {\n      \"codepoint\": 61816,\n      \"source\": \"renamedSVGs/file-moved.svg\"\n    },\n    \"file-removed\": {\n      \"codepoint\": 61817,\n      \"source\": \"renamedSVGs/file-removed.svg\"\n    },\n    \"file-submodule\": {\n      \"codepoint\": 61818,\n      \"source\": \"renamedSVGs/file-submodule.svg\"\n    },\n    \"file-symlink-file\": {\n      \"codepoint\": 61819,\n      \"source\": \"renamedSVGs/file-symlink-file.svg\"\n    },\n    \"file-zip\": {\n      \"codepoint\": 61820,\n      \"source\": \"renamedSVGs/file-zip.svg\"\n    },\n    \"filter\": {\n      \"codepoint\": 61821,\n      \"source\": \"renamedSVGs/filter.svg\"\n    },\n    \"filter-remove\": {\n      \"codepoint\": 61822,\n      \"source\": \"renamedSVGs/filter-remove.svg\"\n    },\n    \"fiscal-host\": {\n      \"codepoint\": 61823,\n      \"source\": \"renamedSVGs/fiscal-host.svg\"\n    },\n    \"flame\": {\n      \"codepoint\": 61824,\n      \"source\": \"renamedSVGs/flame.svg\"\n    },\n    \"flowchart\": {\n      \"codepoint\": 62045,\n      \"source\": \"renamedSVGs/flowchart.svg\"\n    },\n    \"focus-center\": {\n      \"codepoint\": 62046,\n      \"source\": \"renamedSVGs/focus-center.svg\"\n    },\n    \"fold\": {\n      \"codepoint\": 61825,\n      \"source\": \"renamedSVGs/fold.svg\"\n    },\n    \"fold-down\": {\n      \"codepoint\": 61826,\n      \"source\": \"renamedSVGs/fold-down.svg\"\n    },\n    \"fold-up\": {\n      \"codepoint\": 61827,\n      \"source\": \"renamedSVGs/fold-up.svg\"\n    },\n    \"gear\": {\n      \"codepoint\": 61828,\n      \"source\": \"renamedSVGs/gear.svg\"\n    },\n    \"gift\": {\n      \"codepoint\": 61829,\n      \"source\": \"renamedSVGs/gift.svg\"\n    },\n    \"git-branch\": {\n      \"codepoint\": 61830,\n      \"source\": \"renamedSVGs/git-branch.svg\"\n    },\n    \"git-branch-check\": {\n      \"codepoint\": 62047,\n      \"source\": \"renamedSVGs/git-branch-check.svg\"\n    },\n    \"git-commit\": {\n      \"codepoint\": 61831,\n      \"source\": \"renamedSVGs/git-commit.svg\"\n    },\n    \"git-compare\": {\n      \"codepoint\": 61832,\n      \"source\": \"renamedSVGs/git-compare.svg\"\n    },\n    \"git-merge\": {\n      \"codepoint\": 61833,\n      \"source\": \"renamedSVGs/git-merge.svg\"\n    },\n    \"git-merge-queue\": {\n      \"codepoint\": 61834,\n      \"source\": \"renamedSVGs/git-merge-queue.svg\"\n    },\n    \"git-pull-request\": {\n      \"codepoint\": 61835,\n      \"source\": \"renamedSVGs/git-pull-request.svg\"\n    },\n    \"git-pull-request-closed\": {\n      \"codepoint\": 61836,\n      \"source\": \"renamedSVGs/git-pull-request-closed.svg\"\n    },\n    \"git-pull-request-draft\": {\n      \"codepoint\": 61837,\n      \"source\": \"renamedSVGs/git-pull-request-draft.svg\"\n    },\n    \"git-pull-request-locked\": {\n      \"codepoint\": 62048,\n      \"source\": \"renamedSVGs/git-pull-request-locked.svg\"\n    },\n    \"globe\": {\n      \"codepoint\": 61838,\n      \"source\": \"renamedSVGs/globe.svg\"\n    },\n    \"goal\": {\n      \"codepoint\": 61839,\n      \"source\": \"renamedSVGs/goal.svg\"\n    },\n    \"grabber\": {\n      \"codepoint\": 61840,\n      \"source\": \"renamedSVGs/grabber.svg\"\n    },\n    \"graph\": {\n      \"codepoint\": 61841,\n      \"source\": \"renamedSVGs/graph.svg\"\n    },\n    \"graph-bar-horizontal\": {\n      \"codepoint\": 62049,\n      \"source\": \"renamedSVGs/graph-bar-horizontal.svg\"\n    },\n    \"graph-bar-vertical\": {\n      \"codepoint\": 62050,\n      \"source\": \"renamedSVGs/graph-bar-vertical.svg\"\n    },\n    \"hash\": {\n      \"codepoint\": 61842,\n      \"source\": \"renamedSVGs/hash.svg\"\n    },\n    \"heading\": {\n      \"codepoint\": 61843,\n      \"source\": \"renamedSVGs/heading.svg\"\n    },\n    \"heart\": {\n      \"codepoint\": 61844,\n      \"source\": \"renamedSVGs/heart.svg\"\n    },\n    \"heart-fill\": {\n      \"codepoint\": 61845,\n      \"source\": \"renamedSVGs/heart-fill.svg\"\n    },\n    \"history\": {\n      \"codepoint\": 61846,\n      \"source\": \"renamedSVGs/history.svg\"\n    },\n    \"home\": {\n      \"codepoint\": 61847,\n      \"source\": \"renamedSVGs/home.svg\"\n    },\n    \"home-fill\": {\n      \"codepoint\": 62020,\n      \"source\": \"renamedSVGs/home-fill.svg\"\n    },\n    \"horizontal-rule\": {\n      \"codepoint\": 61848,\n      \"source\": \"renamedSVGs/horizontal-rule.svg\"\n    },\n    \"hourglass\": {\n      \"codepoint\": 61849,\n      \"source\": \"renamedSVGs/hourglass.svg\"\n    },\n    \"hubot\": {\n      \"codepoint\": 61850,\n      \"source\": \"renamedSVGs/hubot.svg\"\n    },\n    \"id-badge\": {\n      \"codepoint\": 61851,\n      \"source\": \"renamedSVGs/id-badge.svg\"\n    },\n    \"image\": {\n      \"codepoint\": 61852,\n      \"source\": \"renamedSVGs/image.svg\"\n    },\n    \"inbox\": {\n      \"codepoint\": 61853,\n      \"source\": \"renamedSVGs/inbox.svg\"\n    },\n    \"inbox-fill\": {\n      \"codepoint\": 62051,\n      \"source\": \"renamedSVGs/inbox-fill.svg\"\n    },\n    \"infinity\": {\n      \"codepoint\": 61854,\n      \"source\": \"renamedSVGs/infinity.svg\"\n    },\n    \"info\": {\n      \"codepoint\": 61855,\n      \"source\": \"renamedSVGs/info.svg\"\n    },\n    \"issue-closed\": {\n      \"codepoint\": 61856,\n      \"source\": \"renamedSVGs/issue-closed.svg\"\n    },\n    \"issue-draft\": {\n      \"codepoint\": 61857,\n      \"source\": \"renamedSVGs/issue-draft.svg\"\n    },\n    \"issue-locked\": {\n      \"codepoint\": 62052,\n      \"source\": \"renamedSVGs/issue-locked.svg\"\n    },\n    \"issue-opened\": {\n      \"codepoint\": 61858,\n      \"source\": \"renamedSVGs/issue-opened.svg\"\n    },\n    \"issue-reopened\": {\n      \"codepoint\": 61859,\n      \"source\": \"renamedSVGs/issue-reopened.svg\"\n    },\n    \"issue-tracked-by\": {\n      \"codepoint\": 61860,\n      \"source\": \"renamedSVGs/issue-tracked-by.svg\"\n    },\n    \"issue-tracks\": {\n      \"codepoint\": 61861,\n      \"source\": \"renamedSVGs/issue-tracks.svg\"\n    },\n    \"italic\": {\n      \"codepoint\": 61862,\n      \"source\": \"renamedSVGs/italic.svg\"\n    },\n    \"iterations\": {\n      \"codepoint\": 61863,\n      \"source\": \"renamedSVGs/iterations.svg\"\n    },\n    \"kebab-horizontal\": {\n      \"codepoint\": 61864,\n      \"source\": \"renamedSVGs/kebab-horizontal.svg\"\n    },\n    \"key\": {\n      \"codepoint\": 61865,\n      \"source\": \"renamedSVGs/key.svg\"\n    },\n    \"key-asterisk\": {\n      \"codepoint\": 61866,\n      \"source\": \"renamedSVGs/key-asterisk.svg\"\n    },\n    \"law\": {\n      \"codepoint\": 61867,\n      \"source\": \"renamedSVGs/law.svg\"\n    },\n    \"light-bulb\": {\n      \"codepoint\": 61868,\n      \"source\": \"renamedSVGs/light-bulb.svg\"\n    },\n    \"link\": {\n      \"codepoint\": 61869,\n      \"source\": \"renamedSVGs/link.svg\"\n    },\n    \"link-external\": {\n      \"codepoint\": 61870,\n      \"source\": \"renamedSVGs/link-external.svg\"\n    },\n    \"list-ordered\": {\n      \"codepoint\": 61871,\n      \"source\": \"renamedSVGs/list-ordered.svg\"\n    },\n    \"list-unordered\": {\n      \"codepoint\": 61872,\n      \"source\": \"renamedSVGs/list-unordered.svg\"\n    },\n    \"location\": {\n      \"codepoint\": 61873,\n      \"source\": \"renamedSVGs/location.svg\"\n    },\n    \"lock\": {\n      \"codepoint\": 61874,\n      \"source\": \"renamedSVGs/lock.svg\"\n    },\n    \"log\": {\n      \"codepoint\": 61875,\n      \"source\": \"renamedSVGs/log.svg\"\n    },\n    \"logo-gist\": {\n      \"codepoint\": 61876,\n      \"source\": \"renamedSVGs/logo-gist.svg\"\n    },\n    \"logo-github\": {\n      \"codepoint\": 61877,\n      \"source\": \"renamedSVGs/logo-github.svg\"\n    },\n    \"loop\": {\n      \"codepoint\": 62030,\n      \"source\": \"renamedSVGs/loop.svg\"\n    },\n    \"mail\": {\n      \"codepoint\": 61878,\n      \"source\": \"renamedSVGs/mail.svg\"\n    },\n    \"mark-github\": {\n      \"codepoint\": 61879,\n      \"source\": \"renamedSVGs/mark-github.svg\"\n    },\n    \"markdown\": {\n      \"codepoint\": 61880,\n      \"source\": \"renamedSVGs/markdown.svg\"\n    },\n    \"maximize\": {\n      \"codepoint\": 62031,\n      \"source\": \"renamedSVGs/maximize.svg\"\n    },\n    \"mcp\": {\n      \"codepoint\": 62032,\n      \"source\": \"renamedSVGs/mcp.svg\"\n    },\n    \"megaphone\": {\n      \"codepoint\": 61881,\n      \"source\": \"renamedSVGs/megaphone.svg\"\n    },\n    \"mention\": {\n      \"codepoint\": 61882,\n      \"source\": \"renamedSVGs/mention.svg\"\n    },\n    \"meter\": {\n      \"codepoint\": 61883,\n      \"source\": \"renamedSVGs/meter.svg\"\n    },\n    \"milestone\": {\n      \"codepoint\": 61884,\n      \"source\": \"renamedSVGs/milestone.svg\"\n    },\n    \"minimize\": {\n      \"codepoint\": 62033,\n      \"source\": \"renamedSVGs/minimize.svg\"\n    },\n    \"mirror\": {\n      \"codepoint\": 61885,\n      \"source\": \"renamedSVGs/mirror.svg\"\n    },\n    \"moon\": {\n      \"codepoint\": 61886,\n      \"source\": \"renamedSVGs/moon.svg\"\n    },\n    \"mortar-board\": {\n      \"codepoint\": 61887,\n      \"source\": \"renamedSVGs/mortar-board.svg\"\n    },\n    \"move-to-bottom\": {\n      \"codepoint\": 61888,\n      \"source\": \"renamedSVGs/move-to-bottom.svg\"\n    },\n    \"move-to-end\": {\n      \"codepoint\": 61889,\n      \"source\": \"renamedSVGs/move-to-end.svg\"\n    },\n    \"move-to-start\": {\n      \"codepoint\": 61890,\n      \"source\": \"renamedSVGs/move-to-start.svg\"\n    },\n    \"move-to-top\": {\n      \"codepoint\": 61891,\n      \"source\": \"renamedSVGs/move-to-top.svg\"\n    },\n    \"multi-select\": {\n      \"codepoint\": 61892,\n      \"source\": \"renamedSVGs/multi-select.svg\"\n    },\n    \"mute\": {\n      \"codepoint\": 61893,\n      \"source\": \"renamedSVGs/mute.svg\"\n    },\n    \"no-entry\": {\n      \"codepoint\": 61894,\n      \"source\": \"renamedSVGs/no-entry.svg\"\n    },\n    \"node\": {\n      \"codepoint\": 62053,\n      \"source\": \"renamedSVGs/node.svg\"\n    },\n    \"north-star\": {\n      \"codepoint\": 61895,\n      \"source\": \"renamedSVGs/north-star.svg\"\n    },\n    \"note\": {\n      \"codepoint\": 61896,\n      \"source\": \"renamedSVGs/note.svg\"\n    },\n    \"number\": {\n      \"codepoint\": 61897,\n      \"source\": \"renamedSVGs/number.svg\"\n    },\n    \"organization\": {\n      \"codepoint\": 61898,\n      \"source\": \"renamedSVGs/organization.svg\"\n    },\n    \"package\": {\n      \"codepoint\": 61899,\n      \"source\": \"renamedSVGs/package.svg\"\n    },\n    \"package-dependencies\": {\n      \"codepoint\": 61900,\n      \"source\": \"renamedSVGs/package-dependencies.svg\"\n    },\n    \"package-dependents\": {\n      \"codepoint\": 61901,\n      \"source\": \"renamedSVGs/package-dependents.svg\"\n    },\n    \"paintbrush\": {\n      \"codepoint\": 61902,\n      \"source\": \"renamedSVGs/paintbrush.svg\"\n    },\n    \"paper-airplane\": {\n      \"codepoint\": 61903,\n      \"source\": \"renamedSVGs/paper-airplane.svg\"\n    },\n    \"paperclip\": {\n      \"codepoint\": 61904,\n      \"source\": \"renamedSVGs/paperclip.svg\"\n    },\n    \"passkey-fill\": {\n      \"codepoint\": 61905,\n      \"source\": \"renamedSVGs/passkey-fill.svg\"\n    },\n    \"paste\": {\n      \"codepoint\": 61906,\n      \"source\": \"renamedSVGs/paste.svg\"\n    },\n    \"pause\": {\n      \"codepoint\": 62025,\n      \"source\": \"renamedSVGs/pause.svg\"\n    },\n    \"pencil\": {\n      \"codepoint\": 61907,\n      \"source\": \"renamedSVGs/pencil.svg\"\n    },\n    \"pencil-ai\": {\n      \"codepoint\": 62054,\n      \"source\": \"renamedSVGs/pencil-ai.svg\"\n    },\n    \"people\": {\n      \"codepoint\": 61908,\n      \"source\": \"renamedSVGs/people.svg\"\n    },\n    \"person\": {\n      \"codepoint\": 61909,\n      \"source\": \"renamedSVGs/person.svg\"\n    },\n    \"person-add\": {\n      \"codepoint\": 61910,\n      \"source\": \"renamedSVGs/person-add.svg\"\n    },\n    \"person-fill\": {\n      \"codepoint\": 61911,\n      \"source\": \"renamedSVGs/person-fill.svg\"\n    },\n    \"pin\": {\n      \"codepoint\": 61912,\n      \"source\": \"renamedSVGs/pin.svg\"\n    },\n    \"pin-slash\": {\n      \"codepoint\": 61913,\n      \"source\": \"renamedSVGs/pin-slash.svg\"\n    },\n    \"pivot-column\": {\n      \"codepoint\": 61914,\n      \"source\": \"renamedSVGs/pivot-column.svg\"\n    },\n    \"play\": {\n      \"codepoint\": 61915,\n      \"source\": \"renamedSVGs/play.svg\"\n    },\n    \"plug\": {\n      \"codepoint\": 61916,\n      \"source\": \"renamedSVGs/plug.svg\"\n    },\n    \"plus\": {\n      \"codepoint\": 61917,\n      \"source\": \"renamedSVGs/plus.svg\"\n    },\n    \"plus-circle\": {\n      \"codepoint\": 61918,\n      \"source\": \"renamedSVGs/plus-circle.svg\"\n    },\n    \"project\": {\n      \"codepoint\": 61919,\n      \"source\": \"renamedSVGs/project.svg\"\n    },\n    \"project-roadmap\": {\n      \"codepoint\": 61920,\n      \"source\": \"renamedSVGs/project-roadmap.svg\"\n    },\n    \"project-symlink\": {\n      \"codepoint\": 61921,\n      \"source\": \"renamedSVGs/project-symlink.svg\"\n    },\n    \"project-template\": {\n      \"codepoint\": 61922,\n      \"source\": \"renamedSVGs/project-template.svg\"\n    },\n    \"pulse\": {\n      \"codepoint\": 61923,\n      \"source\": \"renamedSVGs/pulse.svg\"\n    },\n    \"question\": {\n      \"codepoint\": 61924,\n      \"source\": \"renamedSVGs/question.svg\"\n    },\n    \"quote\": {\n      \"codepoint\": 61925,\n      \"source\": \"renamedSVGs/quote.svg\"\n    },\n    \"read\": {\n      \"codepoint\": 61926,\n      \"source\": \"renamedSVGs/read.svg\"\n    },\n    \"redo\": {\n      \"codepoint\": 61927,\n      \"source\": \"renamedSVGs/redo.svg\"\n    },\n    \"rel-file-path\": {\n      \"codepoint\": 61928,\n      \"source\": \"renamedSVGs/rel-file-path.svg\"\n    },\n    \"reply\": {\n      \"codepoint\": 61929,\n      \"source\": \"renamedSVGs/reply.svg\"\n    },\n    \"repo\": {\n      \"codepoint\": 61930,\n      \"source\": \"renamedSVGs/repo.svg\"\n    },\n    \"repo-clone\": {\n      \"codepoint\": 61931,\n      \"source\": \"renamedSVGs/repo-clone.svg\"\n    },\n    \"repo-deleted\": {\n      \"codepoint\": 61932,\n      \"source\": \"renamedSVGs/repo-deleted.svg\"\n    },\n    \"repo-forked\": {\n      \"codepoint\": 61933,\n      \"source\": \"renamedSVGs/repo-forked.svg\"\n    },\n    \"repo-locked\": {\n      \"codepoint\": 61934,\n      \"source\": \"renamedSVGs/repo-locked.svg\"\n    },\n    \"repo-pull\": {\n      \"codepoint\": 61935,\n      \"source\": \"renamedSVGs/repo-pull.svg\"\n    },\n    \"repo-push\": {\n      \"codepoint\": 61936,\n      \"source\": \"renamedSVGs/repo-push.svg\"\n    },\n    \"repo-template\": {\n      \"codepoint\": 61937,\n      \"source\": \"renamedSVGs/repo-template.svg\"\n    },\n    \"report\": {\n      \"codepoint\": 61938,\n      \"source\": \"renamedSVGs/report.svg\"\n    },\n    \"rocket\": {\n      \"codepoint\": 61939,\n      \"source\": \"renamedSVGs/rocket.svg\"\n    },\n    \"rows\": {\n      \"codepoint\": 61940,\n      \"source\": \"renamedSVGs/rows.svg\"\n    },\n    \"rss\": {\n      \"codepoint\": 61941,\n      \"source\": \"renamedSVGs/rss.svg\"\n    },\n    \"ruby\": {\n      \"codepoint\": 61942,\n      \"source\": \"renamedSVGs/ruby.svg\"\n    },\n    \"screen-full\": {\n      \"codepoint\": 61943,\n      \"source\": \"renamedSVGs/screen-full.svg\"\n    },\n    \"screen-normal\": {\n      \"codepoint\": 61944,\n      \"source\": \"renamedSVGs/screen-normal.svg\"\n    },\n    \"search\": {\n      \"codepoint\": 61945,\n      \"source\": \"renamedSVGs/search.svg\"\n    },\n    \"server\": {\n      \"codepoint\": 61946,\n      \"source\": \"renamedSVGs/server.svg\"\n    },\n    \"share\": {\n      \"codepoint\": 61947,\n      \"source\": \"renamedSVGs/share.svg\"\n    },\n    \"share-android\": {\n      \"codepoint\": 61948,\n      \"source\": \"renamedSVGs/share-android.svg\"\n    },\n    \"shield\": {\n      \"codepoint\": 61949,\n      \"source\": \"renamedSVGs/shield.svg\"\n    },\n    \"shield-check\": {\n      \"codepoint\": 61950,\n      \"source\": \"renamedSVGs/shield-check.svg\"\n    },\n    \"shield-lock\": {\n      \"codepoint\": 61951,\n      \"source\": \"renamedSVGs/shield-lock.svg\"\n    },\n    \"shield-slash\": {\n      \"codepoint\": 61952,\n      \"source\": \"renamedSVGs/shield-slash.svg\"\n    },\n    \"shield-x\": {\n      \"codepoint\": 61953,\n      \"source\": \"renamedSVGs/shield-x.svg\"\n    },\n    \"sidebar-collapse\": {\n      \"codepoint\": 61954,\n      \"source\": \"renamedSVGs/sidebar-collapse.svg\"\n    },\n    \"sidebar-expand\": {\n      \"codepoint\": 61955,\n      \"source\": \"renamedSVGs/sidebar-expand.svg\"\n    },\n    \"sign-in\": {\n      \"codepoint\": 61956,\n      \"source\": \"renamedSVGs/sign-in.svg\"\n    },\n    \"sign-out\": {\n      \"codepoint\": 61957,\n      \"source\": \"renamedSVGs/sign-out.svg\"\n    },\n    \"single-select\": {\n      \"codepoint\": 61958,\n      \"source\": \"renamedSVGs/single-select.svg\"\n    },\n    \"skip\": {\n      \"codepoint\": 61959,\n      \"source\": \"renamedSVGs/skip.svg\"\n    },\n    \"skip-fill\": {\n      \"codepoint\": 61960,\n      \"source\": \"renamedSVGs/skip-fill.svg\"\n    },\n    \"sliders\": {\n      \"codepoint\": 61961,\n      \"source\": \"renamedSVGs/sliders.svg\"\n    },\n    \"smiley\": {\n      \"codepoint\": 61962,\n      \"source\": \"renamedSVGs/smiley.svg\"\n    },\n    \"smiley-frown\": {\n      \"codepoint\": 62055,\n      \"source\": \"renamedSVGs/smiley-frown.svg\"\n    },\n    \"smiley-frustrated\": {\n      \"codepoint\": 62056,\n      \"source\": \"renamedSVGs/smiley-frustrated.svg\"\n    },\n    \"smiley-grin\": {\n      \"codepoint\": 62057,\n      \"source\": \"renamedSVGs/smiley-grin.svg\"\n    },\n    \"smiley-neutral\": {\n      \"codepoint\": 62058,\n      \"source\": \"renamedSVGs/smiley-neutral.svg\"\n    },\n    \"sort-asc\": {\n      \"codepoint\": 61963,\n      \"source\": \"renamedSVGs/sort-asc.svg\"\n    },\n    \"sort-desc\": {\n      \"codepoint\": 61964,\n      \"source\": \"renamedSVGs/sort-desc.svg\"\n    },\n    \"space\": {\n      \"codepoint\": 62034,\n      \"source\": \"renamedSVGs/space.svg\"\n    },\n    \"spacing-large\": {\n      \"codepoint\": 62059,\n      \"source\": \"renamedSVGs/spacing-large.svg\"\n    },\n    \"spacing-medium\": {\n      \"codepoint\": 62060,\n      \"source\": \"renamedSVGs/spacing-medium.svg\"\n    },\n    \"spacing-small\": {\n      \"codepoint\": 62061,\n      \"source\": \"renamedSVGs/spacing-small.svg\"\n    },\n    \"sparkle\": {\n      \"codepoint\": 62026,\n      \"source\": \"renamedSVGs/sparkle.svg\"\n    },\n    \"sparkle-fill\": {\n      \"codepoint\": 61965,\n      \"source\": \"renamedSVGs/sparkle-fill.svg\"\n    },\n    \"sparkles-fill\": {\n      \"codepoint\": 62023,\n      \"source\": \"renamedSVGs/sparkles-fill.svg\"\n    },\n    \"split-view\": {\n      \"codepoint\": 62062,\n      \"source\": \"renamedSVGs/split-view.svg\"\n    },\n    \"sponsor-tiers\": {\n      \"codepoint\": 61966,\n      \"source\": \"renamedSVGs/sponsor-tiers.svg\"\n    },\n    \"square\": {\n      \"codepoint\": 61967,\n      \"source\": \"renamedSVGs/square.svg\"\n    },\n    \"square-circle\": {\n      \"codepoint\": 62024,\n      \"source\": \"renamedSVGs/square-circle.svg\"\n    },\n    \"square-fill\": {\n      \"codepoint\": 61968,\n      \"source\": \"renamedSVGs/square-fill.svg\"\n    },\n    \"squirrel\": {\n      \"codepoint\": 61969,\n      \"source\": \"renamedSVGs/squirrel.svg\"\n    },\n    \"stack\": {\n      \"codepoint\": 61970,\n      \"source\": \"renamedSVGs/stack.svg\"\n    },\n    \"star\": {\n      \"codepoint\": 61971,\n      \"source\": \"renamedSVGs/star.svg\"\n    },\n    \"star-fill\": {\n      \"codepoint\": 61972,\n      \"source\": \"renamedSVGs/star-fill.svg\"\n    },\n    \"stop\": {\n      \"codepoint\": 61973,\n      \"source\": \"renamedSVGs/stop.svg\"\n    },\n    \"stopwatch\": {\n      \"codepoint\": 61974,\n      \"source\": \"renamedSVGs/stopwatch.svg\"\n    },\n    \"strikethrough\": {\n      \"codepoint\": 61975,\n      \"source\": \"renamedSVGs/strikethrough.svg\"\n    },\n    \"sun\": {\n      \"codepoint\": 61976,\n      \"source\": \"renamedSVGs/sun.svg\"\n    },\n    \"sync\": {\n      \"codepoint\": 61977,\n      \"source\": \"renamedSVGs/sync.svg\"\n    },\n    \"tab\": {\n      \"codepoint\": 62021,\n      \"source\": \"renamedSVGs/tab.svg\"\n    },\n    \"tab-external\": {\n      \"codepoint\": 61978,\n      \"source\": \"renamedSVGs/tab-external.svg\"\n    },\n    \"table\": {\n      \"codepoint\": 61979,\n      \"source\": \"renamedSVGs/table.svg\"\n    },\n    \"tag\": {\n      \"codepoint\": 61980,\n      \"source\": \"renamedSVGs/tag.svg\"\n    },\n    \"tasklist\": {\n      \"codepoint\": 61981,\n      \"source\": \"renamedSVGs/tasklist.svg\"\n    },\n    \"telescope\": {\n      \"codepoint\": 61982,\n      \"source\": \"renamedSVGs/telescope.svg\"\n    },\n    \"telescope-fill\": {\n      \"codepoint\": 61983,\n      \"source\": \"renamedSVGs/telescope-fill.svg\"\n    },\n    \"terminal\": {\n      \"codepoint\": 61984,\n      \"source\": \"renamedSVGs/terminal.svg\"\n    },\n    \"three-bars\": {\n      \"codepoint\": 61985,\n      \"source\": \"renamedSVGs/three-bars.svg\"\n    },\n    \"thumbsdown\": {\n      \"codepoint\": 61986,\n      \"source\": \"renamedSVGs/thumbsdown.svg\"\n    },\n    \"thumbsup\": {\n      \"codepoint\": 61987,\n      \"source\": \"renamedSVGs/thumbsup.svg\"\n    },\n    \"tools\": {\n      \"codepoint\": 61988,\n      \"source\": \"renamedSVGs/tools.svg\"\n    },\n    \"tracked-by-closed-completed\": {\n      \"codepoint\": 61989,\n      \"source\": \"renamedSVGs/tracked-by-closed-completed.svg\"\n    },\n    \"tracked-by-closed-not-planned\": {\n      \"codepoint\": 61990,\n      \"source\": \"renamedSVGs/tracked-by-closed-not-planned.svg\"\n    },\n    \"trash\": {\n      \"codepoint\": 61991,\n      \"source\": \"renamedSVGs/trash.svg\"\n    },\n    \"triangle-down\": {\n      \"codepoint\": 61992,\n      \"source\": \"renamedSVGs/triangle-down.svg\"\n    },\n    \"triangle-left\": {\n      \"codepoint\": 61993,\n      \"source\": \"renamedSVGs/triangle-left.svg\"\n    },\n    \"triangle-right\": {\n      \"codepoint\": 61994,\n      \"source\": \"renamedSVGs/triangle-right.svg\"\n    },\n    \"triangle-up\": {\n      \"codepoint\": 61995,\n      \"source\": \"renamedSVGs/triangle-up.svg\"\n    },\n    \"trophy\": {\n      \"codepoint\": 61996,\n      \"source\": \"renamedSVGs/trophy.svg\"\n    },\n    \"typography\": {\n      \"codepoint\": 61997,\n      \"source\": \"renamedSVGs/typography.svg\"\n    },\n    \"undo\": {\n      \"codepoint\": 61998,\n      \"source\": \"renamedSVGs/undo.svg\"\n    },\n    \"unfold\": {\n      \"codepoint\": 61999,\n      \"source\": \"renamedSVGs/unfold.svg\"\n    },\n    \"unlink\": {\n      \"codepoint\": 62000,\n      \"source\": \"renamedSVGs/unlink.svg\"\n    },\n    \"unlock\": {\n      \"codepoint\": 62001,\n      \"source\": \"renamedSVGs/unlock.svg\"\n    },\n    \"unmute\": {\n      \"codepoint\": 62002,\n      \"source\": \"renamedSVGs/unmute.svg\"\n    },\n    \"unread\": {\n      \"codepoint\": 62003,\n      \"source\": \"renamedSVGs/unread.svg\"\n    },\n    \"unverified\": {\n      \"codepoint\": 62004,\n      \"source\": \"renamedSVGs/unverified.svg\"\n    },\n    \"unwrap\": {\n      \"codepoint\": 62063,\n      \"source\": \"renamedSVGs/unwrap.svg\"\n    },\n    \"upload\": {\n      \"codepoint\": 62005,\n      \"source\": \"renamedSVGs/upload.svg\"\n    },\n    \"verified\": {\n      \"codepoint\": 62006,\n      \"source\": \"renamedSVGs/verified.svg\"\n    },\n    \"versions\": {\n      \"codepoint\": 62007,\n      \"source\": \"renamedSVGs/versions.svg\"\n    },\n    \"video\": {\n      \"codepoint\": 62008,\n      \"source\": \"renamedSVGs/video.svg\"\n    },\n    \"vscode\": {\n      \"codepoint\": 62035,\n      \"source\": \"renamedSVGs/vscode.svg\"\n    },\n    \"webhook\": {\n      \"codepoint\": 62009,\n      \"source\": \"renamedSVGs/webhook.svg\"\n    },\n    \"workflow\": {\n      \"codepoint\": 62010,\n      \"source\": \"renamedSVGs/workflow.svg\"\n    },\n    \"wrap\": {\n      \"codepoint\": 62064,\n      \"source\": \"renamedSVGs/wrap.svg\"\n    },\n    \"x\": {\n      \"codepoint\": 62011,\n      \"source\": \"renamedSVGs/x.svg\"\n    },\n    \"x-circle\": {\n      \"codepoint\": 62012,\n      \"source\": \"renamedSVGs/x-circle.svg\"\n    },\n    \"x-circle-fill\": {\n      \"codepoint\": 62013,\n      \"source\": \"renamedSVGs/x-circle-fill.svg\"\n    },\n    \"zap\": {\n      \"codepoint\": 62014,\n      \"source\": \"renamedSVGs/zap.svg\"\n    },\n    \"zoom-in\": {\n      \"codepoint\": 62015,\n      \"source\": \"renamedSVGs/zoom-in.svg\"\n    },\n    \"zoom-out\": {\n      \"codepoint\": 62016,\n      \"source\": \"renamedSVGs/zoom-out.svg\"\n    }\n  },\n  \"options\": {\n    \"autowidth\": false,\n    \"config\": false,\n    \"copyright\": \"\",\n    \"css3\": false,\n    \"css_selector\": \".icon-{{glyph}}\",\n    \"debug\": false,\n    \"font_ascent\": 448,\n    \"font_descent\": 64,\n    \"font_design_size\": 16,\n    \"font_em\": 512,\n    \"font_name\": \"Octicons\",\n    \"force\": true,\n    \"input\": {\n      \"templates\": \"renamedSVGs\",\n      \"vectors\": \"renamedSVGs\"\n    },\n    \"no_hash\": true,\n    \"output\": {\n      \"css\": \"Octicons\",\n      \"fonts\": \"Octicons\",\n      \"preview\": \"Octicons\"\n    },\n    \"preprocessor_path\": null,\n    \"quiet\": false,\n    \"templates\": [\n      \"css\"\n    ]\n  },\n  \"templates\": [\n    \"Octicons/Octicons.css\"\n  ]\n}"
  },
  {
    "path": "packages/octicons/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"octicons\",\n    \"upstreamFont\": \"@primer/octicons\",\n    \"buildSteps\": {\n      \"renameSVGs\": {\n        \"location\": \"../../node_modules/@primer/octicons/build/svg\",\n        \"keepPostfix\": \"-16\"\n      },\n      \"fontCustom\": {\n        \"location\": \"renamedSVGs\",\n        \"cleanup\": true\n      },\n      \"glyphmap\": {\n        \"mode\": \"css\",\n        \"cleanup\": true\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"12.0.0\",\n        \"upstream\": \"19.15.0\"\n      },\n      {\n        \"rnvi\": \"12.0.1\",\n        \"upstream\": \"19.15.3\"\n      },\n      {\n        \"rnvi\": \"20.4.1\",\n        \"upstream\": \"19.22.0\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/octicons/CHANGELOG.md",
    "content": "## 20.5.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 20.4.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 20.4.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🩹 Fixes\n\n- upgrade Octicons 19.22.0 ([#1876](https://github.com/oblador/react-native-vector-icons/pull/1876))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 20.4.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 20.4.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🩹 Fixes\n\n- upgrade octicons to 19.19.0 ([#1853](https://github.com/oblador/react-native-vector-icons/pull/1853))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 20.3.0 (2025-08-03)\n\n### 🚀 Features\n\n- export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.3.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 20.2.0 (2025-07-20)\n\n### 🚀 Features\n\n- add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.2.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 20.1.0 (2025-07-12)\n\n### 🚀 Features\n\n- export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761))\n\n### 🩹 Fixes\n\n- upgrade Octicons to 19.15.3 ([#1795](https://github.com/oblador/react-native-vector-icons/pull/1795))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.1.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 20.0.3 (2025-06-15)\n\n### 🩹 Fixes\n\n- upgrade Octicons to 19.15.2 ([#1777](https://github.com/oblador/react-native-vector-icons/pull/1777))\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 20.0.2 (2025-06-15)\n\n### 🩹 Fixes\n\n- new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.2\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 20.0.1 (2025-06-15)\n\n### 🩹 Fixes\n\n- try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745))\n- remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767))\n- convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765))\n- updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c))\n- **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.1\n\n### ❤️ Thank You\n\n- Alexander Kucheryavenko @Red1tum\n- John Ferlito @johnf\n- Md. Jayed Hasan @JayedHasan232\n\n# 20.0.0 (2025-05-04)\n\n### 🚀 Features\n\n- ⚠️  **octicons:** dummy commit to bump version ([d8335a4f](https://github.com/oblador/react-native-vector-icons/commit/d8335a4f))\n\n### ⚠️  Breaking Changes\n\n- ⚠️  **octicons:** dummy commit to bump version ([d8335a4f](https://github.com/oblador/react-native-vector-icons/commit/d8335a4f))\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 19.12.0-alpha.38 (2025-05-04)\n\n### 🚀 Features\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n- add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702))\n- new release of Font Awesome 6 ([53ccb584](https://github.com/oblador/react-native-vector-icons/commit/53ccb584))\n- **icon-explorer:** switch to react-native-owl from detox ([132bdc48](https://github.com/oblador/react-native-vector-icons/commit/132bdc48))\n- aliginging with latest create-react-native-library (WIP) ([917be325](https://github.com/oblador/react-native-vector-icons/commit/917be325))\n- improve new arch support ([#1652](https://github.com/oblador/react-native-vector-icons/pull/1652))\n- dynamic font loading on native platforms ([#1645](https://github.com/oblador/react-native-vector-icons/pull/1645))\n\n### 🩹 Fixes\n\n- upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691))\n- upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690))\n- mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99))\n- add types for older builders ([d853cfbf](https://github.com/oblador/react-native-vector-icons/commit/d853cfbf))\n- new octoicons ([69ddd74d](https://github.com/oblador/react-native-vector-icons/commit/69ddd74d))\n- update node modules ([e5d01106](https://github.com/oblador/react-native-vector-icons/commit/e5d01106))\n- stop extra infex.js\"\" files being created and breaking windows ([b36d40f9](https://github.com/oblador/react-native-vector-icons/commit/b36d40f9))\n- update node modules ([34e7e255](https://github.com/oblador/react-native-vector-icons/commit/34e7e255))\n- remove type checks from workspace packages ([8f67a866](https://github.com/oblador/react-native-vector-icons/commit/8f67a866))\n- make all the font name types work ([7939826e](https://github.com/oblador/react-native-vector-icons/commit/7939826e))\n- remove unneeded dep ([b8420691](https://github.com/oblador/react-native-vector-icons/commit/b8420691))\n- generated ([325984eb](https://github.com/oblador/react-native-vector-icons/commit/325984eb))\n- reneable ios tests ([1e5223bc](https://github.com/oblador/react-native-vector-icons/commit/1e5223bc))\n- generated ([d9669835](https://github.com/oblador/react-native-vector-icons/commit/d9669835))\n- andorid <0.74 ([e6936a48](https://github.com/oblador/react-native-vector-icons/commit/e6936a48))\n- debug simctl ([6a76d1bb](https://github.com/oblador/react-native-vector-icons/commit/6a76d1bb))\n- debug simctl ([986dba0d](https://github.com/oblador/react-native-vector-icons/commit/986dba0d))\n- debug simctl ([7986ac06](https://github.com/oblador/react-native-vector-icons/commit/7986ac06))\n- debug simctl ([6753540d](https://github.com/oblador/react-native-vector-icons/commit/6753540d))\n- debug simctl ([1ba240b9](https://github.com/oblador/react-native-vector-icons/commit/1ba240b9))\n- debug simctl ([881e0c34](https://github.com/oblador/react-native-vector-icons/commit/881e0c34))\n- debug simctl ([548e8599](https://github.com/oblador/react-native-vector-icons/commit/548e8599))\n- debug simctl ([f07267c4](https://github.com/oblador/react-native-vector-icons/commit/f07267c4))\n- debug simctl ([a2f37fa6](https://github.com/oblador/react-native-vector-icons/commit/a2f37fa6))\n- ebug iphone ([2cefc0a0](https://github.com/oblador/react-native-vector-icons/commit/2cefc0a0))\n- update node modules ([1951239e](https://github.com/oblador/react-native-vector-icons/commit/1951239e))\n- remove example ([9af552e3](https://github.com/oblador/react-native-vector-icons/commit/9af552e3))\n- align with latest create-react-native-library ([7a9fceab](https://github.com/oblador/react-native-vector-icons/commit/7a9fceab))\n- use different baseline for new and old arch ([b977cf72](https://github.com/oblador/react-native-vector-icons/commit/b977cf72))\n- tes ios old arch ([d2db581a](https://github.com/oblador/react-native-vector-icons/commit/d2db581a))\n- osx is dumb ([3f558aec](https://github.com/oblador/react-native-vector-icons/commit/3f558aec))\n- monorepo owl issues ([520d373b](https://github.com/oblador/react-native-vector-icons/commit/520d373b))\n- update owl ([43ec5ed8](https://github.com/oblador/react-native-vector-icons/commit/43ec5ed8))\n- ios build ([48a55977](https://github.com/oblador/react-native-vector-icons/commit/48a55977))\n- switch to new arch capable temo package of react-native-owl ([03f961ca](https://github.com/oblador/react-native-vector-icons/commit/03f961ca))\n- stop caching SDK ([129ade27](https://github.com/oblador/react-native-vector-icons/commit/129ade27))\n- re-enable android tests ([82b5b8a2](https://github.com/oblador/react-native-vector-icons/commit/82b5b8a2))\n- **icon-explorer:** fix sdk cache ([936abf36](https://github.com/oblador/react-native-vector-icons/commit/936abf36))\n- **icon-explorer:** wait for emulator to boot ([d91290dc](https://github.com/oblador/react-native-vector-icons/commit/d91290dc))\n- **icon-explorer:** wait for emulator to boot ([35e5f00f](https://github.com/oblador/react-native-vector-icons/commit/35e5f00f))\n- **icon-explorer:** disable immersive mode pop up ([e5d359d3](https://github.com/oblador/react-native-vector-icons/commit/e5d359d3))\n- **icon-explorer:** improve SDK cache ([b0dcf1ef](https://github.com/oblador/react-native-vector-icons/commit/b0dcf1ef))\n- tests ([7bfdd812](https://github.com/oblador/react-native-vector-icons/commit/7bfdd812))\n- tests ([a556f5ef](https://github.com/oblador/react-native-vector-icons/commit/a556f5ef))\n- tests ([48ca31c9](https://github.com/oblador/react-native-vector-icons/commit/48ca31c9))\n- tests ([6dd9c741](https://github.com/oblador/react-native-vector-icons/commit/6dd9c741))\n- tests ([343efeb5](https://github.com/oblador/react-native-vector-icons/commit/343efeb5))\n- tests ([5a5ebb6f](https://github.com/oblador/react-native-vector-icons/commit/5a5ebb6f))\n- tests ([1f81fe17](https://github.com/oblador/react-native-vector-icons/commit/1f81fe17))\n- tests ([4a76c99d](https://github.com/oblador/react-native-vector-icons/commit/4a76c99d))\n- tests ([2084c022](https://github.com/oblador/react-native-vector-icons/commit/2084c022))\n- tests ([aef612ae](https://github.com/oblador/react-native-vector-icons/commit/aef612ae))\n- tests ([96d9649b](https://github.com/oblador/react-native-vector-icons/commit/96d9649b))\n- tests ([6a56de45](https://github.com/oblador/react-native-vector-icons/commit/6a56de45))\n- tests ([9548596d](https://github.com/oblador/react-native-vector-icons/commit/9548596d))\n- tests ([754edc3a](https://github.com/oblador/react-native-vector-icons/commit/754edc3a))\n- tests ([7e12bbfc](https://github.com/oblador/react-native-vector-icons/commit/7e12bbfc))\n- tests ([0304e3b7](https://github.com/oblador/react-native-vector-icons/commit/0304e3b7))\n- tests ([5920f39c](https://github.com/oblador/react-native-vector-icons/commit/5920f39c))\n- tests ([f4f3af69](https://github.com/oblador/react-native-vector-icons/commit/f4f3af69))\n- tests ([22b038ff](https://github.com/oblador/react-native-vector-icons/commit/22b038ff))\n- tests ([f88cf0d2](https://github.com/oblador/react-native-vector-icons/commit/f88cf0d2))\n- avd ([87d0cad2](https://github.com/oblador/react-native-vector-icons/commit/87d0cad2))\n- junit ([aba00c0f](https://github.com/oblador/react-native-vector-icons/commit/aba00c0f))\n- simplify sdk ([7a603f33](https://github.com/oblador/react-native-vector-icons/commit/7a603f33))\n- include hidden files in upload ([ad0fce24](https://github.com/oblador/react-native-vector-icons/commit/ad0fce24))\n- ove pod install to workflow ([56117ca2](https://github.com/oblador/react-native-vector-icons/commit/56117ca2))\n- debug upload ([70af996d](https://github.com/oblador/react-native-vector-icons/commit/70af996d))\n- turn off jest report ([05f37ad9](https://github.com/oblador/react-native-vector-icons/commit/05f37ad9))\n- report path ([5bdf9f34](https://github.com/oblador/react-native-vector-icons/commit/5bdf9f34))\n- wrong test report glob ([b88482ee](https://github.com/oblador/react-native-vector-icons/commit/b88482ee))\n- update knip config ([59732790](https://github.com/oblador/react-native-vector-icons/commit/59732790))\n- linting ([5a1c0ff2](https://github.com/oblador/react-native-vector-icons/commit/5a1c0ff2))\n- flesh out tests ([254e11ed](https://github.com/oblador/react-native-vector-icons/commit/254e11ed))\n- android test build ([5eb72f9e](https://github.com/oblador/react-native-vector-icons/commit/5eb72f9e))\n\n### ⚠️  Breaking Changes\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n\n### ❤️ Thank You\n\n- Chanphirom Sok @chanphiromsok\n- John Ferlito @johnf\n- Vojtech Novak @vonovak"
  },
  {
    "path": "packages/octicons/README.md",
    "content": "# React Native Vector Icons - Octicons\n\nOcticons font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/octicons\n```\n\n## Usage\n\n```jsx\nimport { Octicons } from '@react-native-vector-icons/octicons';\n\n// ...\n\n<Octicons name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 12.0.0 | 19.15.0 |\n| &gt; 12.0.1 | 19.15.3 |\n| &gt; 20.4.1 | 19.22.0 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/octicons/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.octicons\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsOcticons\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.octicons\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-octicons\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-octicons/fonts\"\n  eachFile { println \"(RNVI:octicons) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n"
  },
  {
    "path": "packages/octicons/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.octicons\">\n</manifest>\n"
  },
  {
    "path": "packages/octicons/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/octicons/android/src/main/java/VectorIconsOcticonsPackage.kt",
    "content": "package com.reactnativevectoricons.octicons\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsOcticonsPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/octicons/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/octicons/glyphmaps/Octicons.json",
    "content": "{\n  \"accessibility\": 61696,\n  \"accessibility-inset\": 61697,\n  \"agent\": 62027,\n  \"ai-model\": 62022,\n  \"alert\": 61698,\n  \"alert-fill\": 61699,\n  \"apps\": 61700,\n  \"archive\": 61701,\n  \"arrow-both\": 61702,\n  \"arrow-down\": 61703,\n  \"arrow-down-left\": 61704,\n  \"arrow-down-right\": 61705,\n  \"arrow-left\": 61706,\n  \"arrow-right\": 61707,\n  \"arrow-switch\": 61708,\n  \"arrow-up\": 61709,\n  \"arrow-up-left\": 61710,\n  \"arrow-up-right\": 61711,\n  \"beaker\": 61712,\n  \"bell\": 61713,\n  \"bell-fill\": 61714,\n  \"bell-slash\": 61715,\n  \"blocked\": 61716,\n  \"bold\": 61717,\n  \"book\": 61718,\n  \"book-locked\": 62036,\n  \"bookmark\": 61719,\n  \"bookmark-filled\": 62017,\n  \"bookmark-slash\": 61720,\n  \"bookmark-slash-fill\": 62018,\n  \"boolean-off\": 62037,\n  \"boolean-on\": 62038,\n  \"briefcase\": 61721,\n  \"broadcast\": 61722,\n  \"browser\": 61723,\n  \"bug\": 61724,\n  \"cache\": 61725,\n  \"calendar\": 61726,\n  \"check\": 61727,\n  \"check-circle\": 61728,\n  \"check-circle-fill\": 61729,\n  \"checkbox\": 61730,\n  \"checkbox-fill\": 62028,\n  \"checklist\": 61731,\n  \"chevron-down\": 61732,\n  \"chevron-left\": 61733,\n  \"chevron-right\": 61734,\n  \"chevron-up\": 61735,\n  \"circle\": 61736,\n  \"circle-slash\": 61737,\n  \"clock\": 61738,\n  \"clock-fill\": 61739,\n  \"cloud\": 61740,\n  \"cloud-offline\": 61741,\n  \"code\": 61742,\n  \"code-of-conduct\": 61743,\n  \"code-review\": 61744,\n  \"code-square\": 61745,\n  \"codescan\": 61746,\n  \"codescan-checkmark\": 61747,\n  \"codespaces\": 61748,\n  \"columns\": 61749,\n  \"command-palette\": 61750,\n  \"comment\": 61751,\n  \"comment-ai\": 62029,\n  \"comment-discussion\": 61752,\n  \"comment-locked\": 62039,\n  \"compose\": 62040,\n  \"container\": 61753,\n  \"copilot\": 61754,\n  \"copilot-error\": 61755,\n  \"copilot-warning\": 61756,\n  \"copy\": 61757,\n  \"cpu\": 61758,\n  \"credit-card\": 61759,\n  \"cross-reference\": 61760,\n  \"crosshairs\": 62041,\n  \"dash\": 61761,\n  \"database\": 61762,\n  \"dependabot\": 61763,\n  \"desktop-download\": 61764,\n  \"device-camera\": 61765,\n  \"device-camera-video\": 61766,\n  \"device-desktop\": 61767,\n  \"device-mobile\": 61768,\n  \"devices\": 61769,\n  \"diamond\": 61770,\n  \"dice\": 62042,\n  \"diff\": 61771,\n  \"diff-added\": 61772,\n  \"diff-ignored\": 61773,\n  \"diff-modified\": 61774,\n  \"diff-removed\": 61775,\n  \"diff-renamed\": 61776,\n  \"discussion-closed\": 61777,\n  \"discussion-duplicate\": 61778,\n  \"discussion-outdated\": 61779,\n  \"dot\": 61780,\n  \"dot-fill\": 61781,\n  \"download\": 61782,\n  \"duplicate\": 61783,\n  \"ellipsis\": 61784,\n  \"exclamation\": 62043,\n  \"eye\": 61785,\n  \"eye-closed\": 61786,\n  \"feed-discussion\": 61787,\n  \"feed-forked\": 61788,\n  \"feed-heart\": 61789,\n  \"feed-issue-closed\": 61790,\n  \"feed-issue-draft\": 61791,\n  \"feed-issue-open\": 61792,\n  \"feed-issue-reopen\": 61793,\n  \"feed-merged\": 61794,\n  \"feed-person\": 61795,\n  \"feed-plus\": 61796,\n  \"feed-public\": 61797,\n  \"feed-pull-request-closed\": 61798,\n  \"feed-pull-request-draft\": 61799,\n  \"feed-pull-request-open\": 61800,\n  \"feed-repo\": 61801,\n  \"feed-rocket\": 61802,\n  \"feed-star\": 61803,\n  \"feed-tag\": 61804,\n  \"feed-trophy\": 61805,\n  \"file\": 61806,\n  \"file-added\": 61807,\n  \"file-badge\": 61808,\n  \"file-binary\": 61809,\n  \"file-check\": 62044,\n  \"file-code\": 61810,\n  \"file-diff\": 61811,\n  \"file-directory\": 61812,\n  \"file-directory-fill\": 61813,\n  \"file-directory-open-fill\": 61814,\n  \"file-directory-symlink\": 61815,\n  \"file-media\": 62019,\n  \"file-moved\": 61816,\n  \"file-removed\": 61817,\n  \"file-submodule\": 61818,\n  \"file-symlink-file\": 61819,\n  \"file-zip\": 61820,\n  \"filter\": 61821,\n  \"filter-remove\": 61822,\n  \"fiscal-host\": 61823,\n  \"flame\": 61824,\n  \"flowchart\": 62045,\n  \"focus-center\": 62046,\n  \"fold\": 61825,\n  \"fold-down\": 61826,\n  \"fold-up\": 61827,\n  \"gear\": 61828,\n  \"gift\": 61829,\n  \"git-branch\": 61830,\n  \"git-branch-check\": 62047,\n  \"git-commit\": 61831,\n  \"git-compare\": 61832,\n  \"git-merge\": 61833,\n  \"git-merge-queue\": 61834,\n  \"git-pull-request\": 61835,\n  \"git-pull-request-closed\": 61836,\n  \"git-pull-request-draft\": 61837,\n  \"git-pull-request-locked\": 62048,\n  \"globe\": 61838,\n  \"goal\": 61839,\n  \"grabber\": 61840,\n  \"graph\": 61841,\n  \"graph-bar-horizontal\": 62049,\n  \"graph-bar-vertical\": 62050,\n  \"hash\": 61842,\n  \"heading\": 61843,\n  \"heart\": 61844,\n  \"heart-fill\": 61845,\n  \"history\": 61846,\n  \"home\": 61847,\n  \"home-fill\": 62020,\n  \"horizontal-rule\": 61848,\n  \"hourglass\": 61849,\n  \"hubot\": 61850,\n  \"id-badge\": 61851,\n  \"image\": 61852,\n  \"inbox\": 61853,\n  \"inbox-fill\": 62051,\n  \"infinity\": 61854,\n  \"info\": 61855,\n  \"issue-closed\": 61856,\n  \"issue-draft\": 61857,\n  \"issue-locked\": 62052,\n  \"issue-opened\": 61858,\n  \"issue-reopened\": 61859,\n  \"issue-tracked-by\": 61860,\n  \"issue-tracks\": 61861,\n  \"italic\": 61862,\n  \"iterations\": 61863,\n  \"kebab-horizontal\": 61864,\n  \"key\": 61865,\n  \"key-asterisk\": 61866,\n  \"law\": 61867,\n  \"light-bulb\": 61868,\n  \"link\": 61869,\n  \"link-external\": 61870,\n  \"list-ordered\": 61871,\n  \"list-unordered\": 61872,\n  \"location\": 61873,\n  \"lock\": 61874,\n  \"log\": 61875,\n  \"logo-gist\": 61876,\n  \"logo-github\": 61877,\n  \"loop\": 62030,\n  \"mail\": 61878,\n  \"mark-github\": 61879,\n  \"markdown\": 61880,\n  \"maximize\": 62031,\n  \"mcp\": 62032,\n  \"megaphone\": 61881,\n  \"mention\": 61882,\n  \"meter\": 61883,\n  \"milestone\": 61884,\n  \"minimize\": 62033,\n  \"mirror\": 61885,\n  \"moon\": 61886,\n  \"mortar-board\": 61887,\n  \"move-to-bottom\": 61888,\n  \"move-to-end\": 61889,\n  \"move-to-start\": 61890,\n  \"move-to-top\": 61891,\n  \"multi-select\": 61892,\n  \"mute\": 61893,\n  \"no-entry\": 61894,\n  \"node\": 62053,\n  \"north-star\": 61895,\n  \"note\": 61896,\n  \"number\": 61897,\n  \"organization\": 61898,\n  \"package\": 61899,\n  \"package-dependencies\": 61900,\n  \"package-dependents\": 61901,\n  \"paintbrush\": 61902,\n  \"paper-airplane\": 61903,\n  \"paperclip\": 61904,\n  \"passkey-fill\": 61905,\n  \"paste\": 61906,\n  \"pause\": 62025,\n  \"pencil\": 61907,\n  \"pencil-ai\": 62054,\n  \"people\": 61908,\n  \"person\": 61909,\n  \"person-add\": 61910,\n  \"person-fill\": 61911,\n  \"pin\": 61912,\n  \"pin-slash\": 61913,\n  \"pivot-column\": 61914,\n  \"play\": 61915,\n  \"plug\": 61916,\n  \"plus\": 61917,\n  \"plus-circle\": 61918,\n  \"project\": 61919,\n  \"project-roadmap\": 61920,\n  \"project-symlink\": 61921,\n  \"project-template\": 61922,\n  \"pulse\": 61923,\n  \"question\": 61924,\n  \"quote\": 61925,\n  \"read\": 61926,\n  \"redo\": 61927,\n  \"rel-file-path\": 61928,\n  \"reply\": 61929,\n  \"repo\": 61930,\n  \"repo-clone\": 61931,\n  \"repo-deleted\": 61932,\n  \"repo-forked\": 61933,\n  \"repo-locked\": 61934,\n  \"repo-pull\": 61935,\n  \"repo-push\": 61936,\n  \"repo-template\": 61937,\n  \"report\": 61938,\n  \"rocket\": 61939,\n  \"rows\": 61940,\n  \"rss\": 61941,\n  \"ruby\": 61942,\n  \"screen-full\": 61943,\n  \"screen-normal\": 61944,\n  \"search\": 61945,\n  \"server\": 61946,\n  \"share\": 61947,\n  \"share-android\": 61948,\n  \"shield\": 61949,\n  \"shield-check\": 61950,\n  \"shield-lock\": 61951,\n  \"shield-slash\": 61952,\n  \"shield-x\": 61953,\n  \"sidebar-collapse\": 61954,\n  \"sidebar-expand\": 61955,\n  \"sign-in\": 61956,\n  \"sign-out\": 61957,\n  \"single-select\": 61958,\n  \"skip\": 61959,\n  \"skip-fill\": 61960,\n  \"sliders\": 61961,\n  \"smiley\": 61962,\n  \"smiley-frown\": 62055,\n  \"smiley-frustrated\": 62056,\n  \"smiley-grin\": 62057,\n  \"smiley-neutral\": 62058,\n  \"sort-asc\": 61963,\n  \"sort-desc\": 61964,\n  \"space\": 62034,\n  \"spacing-large\": 62059,\n  \"spacing-medium\": 62060,\n  \"spacing-small\": 62061,\n  \"sparkle\": 62026,\n  \"sparkle-fill\": 61965,\n  \"sparkles-fill\": 62023,\n  \"split-view\": 62062,\n  \"sponsor-tiers\": 61966,\n  \"square\": 61967,\n  \"square-circle\": 62024,\n  \"square-fill\": 61968,\n  \"squirrel\": 61969,\n  \"stack\": 61970,\n  \"star\": 61971,\n  \"star-fill\": 61972,\n  \"stop\": 61973,\n  \"stopwatch\": 61974,\n  \"strikethrough\": 61975,\n  \"sun\": 61976,\n  \"sync\": 61977,\n  \"tab\": 62021,\n  \"tab-external\": 61978,\n  \"table\": 61979,\n  \"tag\": 61980,\n  \"tasklist\": 61981,\n  \"telescope\": 61982,\n  \"telescope-fill\": 61983,\n  \"terminal\": 61984,\n  \"three-bars\": 61985,\n  \"thumbsdown\": 61986,\n  \"thumbsup\": 61987,\n  \"tools\": 61988,\n  \"tracked-by-closed-completed\": 61989,\n  \"tracked-by-closed-not-planned\": 61990,\n  \"trash\": 61991,\n  \"triangle-down\": 61992,\n  \"triangle-left\": 61993,\n  \"triangle-right\": 61994,\n  \"triangle-up\": 61995,\n  \"trophy\": 61996,\n  \"typography\": 61997,\n  \"undo\": 61998,\n  \"unfold\": 61999,\n  \"unlink\": 62000,\n  \"unlock\": 62001,\n  \"unmute\": 62002,\n  \"unread\": 62003,\n  \"unverified\": 62004,\n  \"unwrap\": 62063,\n  \"upload\": 62005,\n  \"verified\": 62006,\n  \"versions\": 62007,\n  \"video\": 62008,\n  \"vscode\": 62035,\n  \"webhook\": 62009,\n  \"workflow\": 62010,\n  \"wrap\": 62064,\n  \"x\": 62011,\n  \"x-circle\": 62012,\n  \"x-circle-fill\": 62013,\n  \"zap\": 62014,\n  \"zoom-in\": 62015,\n  \"zoom-out\": 62016\n}"
  },
  {
    "path": "packages/octicons/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/octicons\",\n  \"version\": \"20.5.0\",\n  \"description\": \"Octicons font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\",\n    \"./fonts/*.ttf\": \"./fonts/*.ttf\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"octicons\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/octicons\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\",\n    \"@primer/octicons\": \"19.22.0\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/octicons/react-native-vector-icons-octicons.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-octicons'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\nend\n"
  },
  {
    "path": "packages/octicons/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * Octicons icon set component.\n * Usage: <Octicons name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/Octicons.json';\n\nexport const Octicons = createIconSet(glyphMap, {\n  postScriptName: 'Octicons',\n  fontFileName: 'Octicons.ttf',\n  fontSource: require('../fonts/Octicons.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require\n});\n\nexport type OcticonsIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default Octicons;\n"
  },
  {
    "path": "packages/octicons/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * Octicons icon set component.\n * Usage: <Octicons name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/Octicons.json';\n\nexport const Octicons = createIconSet(glyphMap, {\n  postScriptName: 'Octicons',\n  fontFileName: 'Octicons.ttf',\n});\n\nexport type OcticonsIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default Octicons;\n"
  },
  {
    "path": "packages/octicons/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/octicons/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/simple-line-icons/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"simple-line-icons\",\n    \"postScriptName\": \"simple-line-icons\",\n    \"upstreamFont\": \"simple-line-icons\",\n    \"buildSteps\": {\n      \"glyphmap\": {\n        \"location\": \"../../node_modules/simple-line-icons/css/simple-line-icons.css\",\n        \"mode\": \"css\"\n      },\n      \"copyFont\": {\n        \"location\": \"../../node_modules/simple-line-icons/fonts/Simple-Line-Icons.ttf\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"12.0.0\",\n        \"upstream\": \"2.5.5\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/simple-line-icons/CHANGELOG.md",
    "content": "## 12.5.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.4.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 12.4.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.4.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 12.4.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.3.0 (2025-08-03)\n\n### 🚀 Features\n\n- export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.3.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.2.0 (2025-07-20)\n\n### 🚀 Features\n\n- add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.2.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.1.0 (2025-07-12)\n\n### 🚀 Features\n\n- export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.1.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.2 (2025-06-15)\n\n### 🩹 Fixes\n\n- new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.2\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.1 (2025-06-15)\n\n### 🩹 Fixes\n\n- try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745))\n- remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767))\n- convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765))\n- updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c))\n- **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.1\n\n### ❤️ Thank You\n\n- Alexander Kucheryavenko @Red1tum\n- John Ferlito @johnf\n- Md. Jayed Hasan @JayedHasan232\n\n# 12.0.0 (2025-05-04)\n\n### 🚀 Features\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n- add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702))\n\n### 🩹 Fixes\n\n- upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691))\n- upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690))\n- mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99))\n\n### ⚠️  Breaking Changes\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n\n### ❤️ Thank You\n\n- Chanphirom Sok @chanphiromsok\n- John Ferlito @johnf"
  },
  {
    "path": "packages/simple-line-icons/README.md",
    "content": "# React Native Vector Icons - Simple Line Icons\n\nSimple Line Icons font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/simple-line-icons\n```\n\n## Usage\n\n```jsx\nimport { SimpleLineIcons } from '@react-native-vector-icons/simple-line-icons';\n\n// ...\n\n<SimpleLineIcons name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 12.0.0 | 2.5.5 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/simple-line-icons/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.simple_line_icons\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsSimpleLineIcons\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.simple_line_icons\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-simple-line-icons\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-simple-line-icons/fonts\"\n  eachFile { println \"(RNVI:simple-line-icons) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n"
  },
  {
    "path": "packages/simple-line-icons/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.simple_line_icons\">\n</manifest>\n"
  },
  {
    "path": "packages/simple-line-icons/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/simple-line-icons/android/src/main/java/VectorIconsSimpleLineIconsPackage.kt",
    "content": "package com.reactnativevectoricons.simple_line_icons\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsSimpleLineIconsPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/simple-line-icons/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/simple-line-icons/glyphmaps/SimpleLineIcons.json",
    "content": "{\n  \"user\": 57349,\n  \"people\": 57345,\n  \"user-female\": 57344,\n  \"user-follow\": 57346,\n  \"user-following\": 57347,\n  \"user-unfollow\": 57348,\n  \"login\": 57446,\n  \"logout\": 57445,\n  \"emotsmile\": 57377,\n  \"phone\": 58880,\n  \"call-end\": 57416,\n  \"call-in\": 57415,\n  \"call-out\": 57414,\n  \"map\": 57395,\n  \"location-pin\": 57494,\n  \"direction\": 57410,\n  \"directions\": 57409,\n  \"compass\": 57413,\n  \"layers\": 57396,\n  \"menu\": 58881,\n  \"list\": 57447,\n  \"options-vertical\": 58882,\n  \"options\": 58883,\n  \"arrow-down\": 58884,\n  \"arrow-left\": 58885,\n  \"arrow-right\": 58886,\n  \"arrow-up\": 58887,\n  \"arrow-up-circle\": 57464,\n  \"arrow-left-circle\": 57466,\n  \"arrow-right-circle\": 57465,\n  \"arrow-down-circle\": 57467,\n  \"check\": 57472,\n  \"clock\": 57473,\n  \"plus\": 57493,\n  \"minus\": 58901,\n  \"close\": 57474,\n  \"event\": 58905,\n  \"exclamation\": 58903,\n  \"organization\": 58902,\n  \"trophy\": 57350,\n  \"screen-smartphone\": 57360,\n  \"screen-desktop\": 57361,\n  \"plane\": 57362,\n  \"notebook\": 57363,\n  \"mustache\": 57364,\n  \"mouse\": 57365,\n  \"magnet\": 57366,\n  \"energy\": 57376,\n  \"disc\": 57378,\n  \"cursor\": 57454,\n  \"cursor-move\": 57379,\n  \"crop\": 57380,\n  \"chemistry\": 57382,\n  \"speedometer\": 57351,\n  \"shield\": 57358,\n  \"screen-tablet\": 57359,\n  \"magic-wand\": 57367,\n  \"hourglass\": 57368,\n  \"graduation\": 57369,\n  \"ghost\": 57370,\n  \"game-controller\": 57371,\n  \"fire\": 57372,\n  \"eyeglass\": 57373,\n  \"envelope-open\": 57374,\n  \"envelope-letter\": 57375,\n  \"bell\": 57383,\n  \"badge\": 57384,\n  \"anchor\": 57385,\n  \"wallet\": 57386,\n  \"vector\": 57387,\n  \"speech\": 57388,\n  \"puzzle\": 57389,\n  \"printer\": 57390,\n  \"present\": 57391,\n  \"playlist\": 57392,\n  \"pin\": 57393,\n  \"picture\": 57394,\n  \"handbag\": 57397,\n  \"globe-alt\": 57398,\n  \"globe\": 57399,\n  \"folder-alt\": 57401,\n  \"folder\": 57481,\n  \"film\": 57402,\n  \"feed\": 57403,\n  \"drop\": 57406,\n  \"drawer\": 57407,\n  \"docs\": 57408,\n  \"doc\": 57477,\n  \"diamond\": 57411,\n  \"cup\": 57412,\n  \"calculator\": 57417,\n  \"bubbles\": 57418,\n  \"briefcase\": 57419,\n  \"book-open\": 57420,\n  \"basket-loaded\": 57421,\n  \"basket\": 57422,\n  \"bag\": 57423,\n  \"action-undo\": 57424,\n  \"action-redo\": 57425,\n  \"wrench\": 57426,\n  \"umbrella\": 57427,\n  \"trash\": 57428,\n  \"tag\": 57429,\n  \"support\": 57430,\n  \"frame\": 57400,\n  \"size-fullscreen\": 57431,\n  \"size-actual\": 57432,\n  \"shuffle\": 57433,\n  \"share-alt\": 57434,\n  \"share\": 57435,\n  \"rocket\": 57436,\n  \"question\": 57437,\n  \"pie-chart\": 57438,\n  \"pencil\": 57439,\n  \"note\": 57440,\n  \"loop\": 57444,\n  \"home\": 57449,\n  \"grid\": 57450,\n  \"graph\": 57451,\n  \"microphone\": 57443,\n  \"music-tone-alt\": 57441,\n  \"music-tone\": 57442,\n  \"earphones-alt\": 57404,\n  \"earphones\": 57405,\n  \"equalizer\": 57452,\n  \"like\": 57448,\n  \"dislike\": 57453,\n  \"control-start\": 57455,\n  \"control-rewind\": 57456,\n  \"control-play\": 57457,\n  \"control-pause\": 57458,\n  \"control-forward\": 57459,\n  \"control-end\": 57460,\n  \"volume-1\": 57503,\n  \"volume-2\": 57504,\n  \"volume-off\": 57505,\n  \"calendar\": 57461,\n  \"bulb\": 57462,\n  \"chart\": 57463,\n  \"ban\": 57468,\n  \"bubble\": 57469,\n  \"camrecorder\": 57470,\n  \"camera\": 57471,\n  \"cloud-download\": 57475,\n  \"cloud-upload\": 57476,\n  \"envelope\": 57478,\n  \"eye\": 57479,\n  \"flag\": 57480,\n  \"heart\": 57482,\n  \"info\": 57483,\n  \"key\": 57484,\n  \"link\": 57485,\n  \"lock\": 57486,\n  \"lock-open\": 57487,\n  \"magnifier\": 57488,\n  \"magnifier-add\": 57489,\n  \"magnifier-remove\": 57490,\n  \"paper-clip\": 57491,\n  \"paper-plane\": 57492,\n  \"power\": 57495,\n  \"refresh\": 57496,\n  \"reload\": 57497,\n  \"settings\": 57498,\n  \"star\": 57499,\n  \"symbol-female\": 57500,\n  \"symbol-male\": 57501,\n  \"target\": 57502,\n  \"credit-card\": 57381,\n  \"paypal\": 58888,\n  \"social-tumblr\": 57354,\n  \"social-twitter\": 57353,\n  \"social-facebook\": 57355,\n  \"social-instagram\": 58889,\n  \"social-linkedin\": 58890,\n  \"social-pinterest\": 58891,\n  \"social-github\": 58892,\n  \"social-google\": 58893,\n  \"social-reddit\": 58894,\n  \"social-skype\": 58895,\n  \"social-dribbble\": 57357,\n  \"social-behance\": 58896,\n  \"social-foursqare\": 58897,\n  \"social-soundcloud\": 58898,\n  \"social-spotify\": 58899,\n  \"social-stumbleupon\": 58900,\n  \"social-youtube\": 57352,\n  \"social-dropbox\": 57356,\n  \"social-vkontakte\": 58904,\n  \"social-steam\": 58912\n}"
  },
  {
    "path": "packages/simple-line-icons/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/simple-line-icons\",\n  \"version\": \"12.5.0\",\n  \"description\": \"Simple Line Icons font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\",\n    \"./fonts/*.ttf\": \"./fonts/*.ttf\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"simple-line-icons\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/simple-line-icons\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\",\n    \"simple-line-icons\": \"2.5.5\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/simple-line-icons/react-native-vector-icons-simple-line-icons.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-simple-line-icons'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\nend\n"
  },
  {
    "path": "packages/simple-line-icons/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * SimpleLineIcons icon set component.\n * Usage: <SimpleLineIcons name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/SimpleLineIcons.json';\n\nexport const SimpleLineIcons = createIconSet(glyphMap, {\n  postScriptName: 'simple-line-icons',\n  fontFileName: 'SimpleLineIcons.ttf',\n  fontSource: require('../fonts/SimpleLineIcons.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require\n});\n\nexport type SimpleLineIconsIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default SimpleLineIcons;\n"
  },
  {
    "path": "packages/simple-line-icons/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * SimpleLineIcons icon set component.\n * Usage: <SimpleLineIcons name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/SimpleLineIcons.json';\n\nexport const SimpleLineIcons = createIconSet(glyphMap, {\n  postScriptName: 'simple-line-icons',\n  fontFileName: 'SimpleLineIcons.ttf',\n});\n\nexport type SimpleLineIconsIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default SimpleLineIcons;\n"
  },
  {
    "path": "packages/simple-line-icons/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/simple-line-icons/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "packages/zocial/.yo-rc.json",
    "content": "{\n  \"generator-react-native-vector-icons\": {\n    \"packageName\": \"zocial\",\n    \"postScriptName\": \"zocial\",\n    \"upstreamFont\": \"css-social-buttons\",\n    \"buildSteps\": {\n      \"glyphmap\": {\n        \"location\": \"../../node_modules/css-social-buttons/css/zocial.css\",\n        \"mode\": \"css\",\n        \"prefix\": \".zocial.\"\n      },\n      \"copyFont\": {\n        \"location\": \"../../node_modules/css-social-buttons/css/zocial.ttf\"\n      }\n    },\n    \"versions\": [\n      {\n        \"rnvi\": \"12.0.0\",\n        \"upstream\": \"1.1.1\"\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/zocial/CHANGELOG.md",
    "content": "## 12.5.0 (2026-03-20)\n\n### 🚀 Features\n\n- expose static export for icon families ([#1880](https://github.com/oblador/react-native-vector-icons/pull/1880))\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.4.3 (2026-03-17)\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.2\n\n## 12.4.2 (2026-03-10)\n\n### 🚀 Features\n\n- **generator:** auto-update upstream versions in .yo-rc.json during generation ([#1873](https://github.com/oblador/react-native-vector-icons/pull/1873))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.1\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.4.1 (2026-02-25)\n\n### 🩹 Fixes\n\n- add targetSdkVersion to avoid READ_PHONE_STATE permission ([#1866](https://github.com/oblador/react-native-vector-icons/pull/1866), [#1861](https://github.com/oblador/react-native-vector-icons/issues/1861))\n\n### ❤️ Thank You\n\n- Phecda Su\n\n## 12.4.0 (2025-11-01)\n\n### 🚀 Features\n\n- upgrade FontAwesome to version 7 with new package strucutre ([#1857](https://github.com/oblador/react-native-vector-icons/pull/1857))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.4.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.3.0 (2025-08-03)\n\n### 🚀 Features\n\n- export font files and glyphmaps ([#1827](https://github.com/oblador/react-native-vector-icons/pull/1827))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.3.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.2.0 (2025-07-20)\n\n### 🚀 Features\n\n- add 'use client' directive for RSC ([#1809](https://github.com/oblador/react-native-vector-icons/pull/1809))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.2.0\n\n### ❤️ Thank You\n\n- Vojtech Novak @vonovak\n\n## 12.1.0 (2025-07-12)\n\n### 🚀 Features\n\n- export types for icon names ([#1761](https://github.com/oblador/react-native-vector-icons/pull/1761))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.1.0\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.2 (2025-06-15)\n\n### 🩹 Fixes\n\n- new Ion Icons (no font changes) ([#1774](https://github.com/oblador/react-native-vector-icons/pull/1774))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.2\n\n### ❤️ Thank You\n\n- John Ferlito @johnf\n\n## 12.0.1 (2025-06-15)\n\n### 🩹 Fixes\n\n- try to use root project's compile sdk to avoid aar metadata incompatability ([#1745](https://github.com/oblador/react-native-vector-icons/pull/1745))\n- remove @fortawesome repo leakage ([#1767](https://github.com/oblador/react-native-vector-icons/pull/1767))\n- convert directory scripts to typescript ([#1765](https://github.com/oblador/react-native-vector-icons/pull/1765))\n- updated incorrect backlink in the Changelog. ([a2b967c](https://github.com/oblador/react-native-vector-icons/commit/a2b967c))\n- **ionicons:** upgrade Ionicons to 8.0.8 ([#1742](https://github.com/oblador/react-native-vector-icons/pull/1742))\n\n### 🧱 Updated Dependencies\n\n- Updated @react-native-vector-icons/common to 12.0.1\n\n### ❤️ Thank You\n\n- Alexander Kucheryavenko @Red1tum\n- John Ferlito @johnf\n- Md. Jayed Hasan @JayedHasan232\n\n# 12.0.0 (2025-05-04)\n\n### 🚀 Features\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n- add lucide icon ([#1702](https://github.com/oblador/react-native-vector-icons/pull/1702))\n\n### 🩹 Fixes\n\n- upgrade octicons to 19.14.0 ([#1691](https://github.com/oblador/react-native-vector-icons/pull/1691))\n- upgrade fontawesome6 to 6.7.2 ([#1690](https://github.com/oblador/react-native-vector-icons/pull/1690))\n- mac osx detection in glyphmap script ([2967ce99](https://github.com/oblador/react-native-vector-icons/commit/2967ce99))\n\n### ⚠️  Breaking Changes\n\n- ⚠️  make font packages responsible for font copying ([#1711](https://github.com/oblador/react-native-vector-icons/pull/1711))\n\n### ❤️ Thank You\n\n- Chanphirom Sok @chanphiromsok\n- John Ferlito @johnf"
  },
  {
    "path": "packages/zocial/README.md",
    "content": "# React Native Vector Icons - Zocial\n\nZocial font for React Native Vector Icons\n\nSee the [React Native Vector Icons README](../../README.md) for more details.\n\n## Installation\n\n```sh\nnpm install @react-native-vector-icons/zocial\n```\n\n## Usage\n\n```jsx\nimport { Zocial } from '@react-native-vector-icons/zocial';\n\n// ...\n\n<Zocial name=\"house\" color=\"#ff0000\" size={20} />\n```\n\n## Versions\n\nPrior to version 12, the version of this font package tracked the upstream version.\n\nThe table below tracks which font version is included in each package version.\n\n| RNVI version | Upstream version |\n| ------------ | ---------------- |\n| &gt; 12.0.0 | 1.1.1 |\n\n## Contributing\n\nSee the [contributing guide](../../CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n"
  },
  {
    "path": "packages/zocial/android/build.gradle",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\ndef isNewArchitectureEnabled() {\n  return rootProject.hasProperty(\"newArchEnabled\") && rootProject.getProperty(\"newArchEnabled\") == \"true\"\n}\n\ndef safeExtGet(prop, fallback) {\n  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback\n}\n\napply plugin: \"com.android.library\"\napply plugin: \"kotlin-android\"\n\nif (isNewArchitectureEnabled()) {\n  apply plugin: \"com.facebook.react\"\n}\n\ndef supportsNamespace() {\n  def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')\n  def major = parsed[0].toInteger()\n  def minor = parsed[1].toInteger()\n\n  // Namespace support was added in 7.3.0\n  return (major == 7 && minor >= 3) || major >= 8\n}\n\nandroid {\n  if (supportsNamespace()) {\n    namespace \"com.reactnativevectoricons.zocial\"\n\n    sourceSets {\n      main {\n        manifest.srcFile \"src/main/AndroidManifestNew.xml\"\n      }\n    }\n  }\n\n  compileSdkVersion safeExtGet('compileSdkVersion', 31)\n\n  defaultConfig {\n    targetSdkVersion safeExtGet('targetSdkVersion', 31)\n    minSdkVersion safeExtGet('minSdkVersion', 24)\n  }\n}\n\ndependencies {\n  implementation \"com.facebook.react:react-native:+\"\n}\n\nif (isNewArchitectureEnabled()) {\n  react {\n    jsRootDir = file(\"../src/\")\n    libraryName = \"VectorIconsZocial\"\n    codegenJavaPackageName = \"com.reactnativevectoricons.zocial\"\n  }\n}\n\nandroid.sourceSets.main.assets.srcDirs += file(\"$buildDir/intermediates/RNVI-zocial\")\n\ntask copyFonts(type: Copy) {\n  from \"../fonts\"\n  include \"*.ttf\"\n\n  into \"${buildDir}/intermediates/RNVI-zocial/fonts\"\n  eachFile { println \"(RNVI:zocial) Copying font ${it.file}\" }\n}\n\npreBuild.dependsOn(copyFonts)\n"
  },
  {
    "path": "packages/zocial/android/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  package=\"com.reactnativevectoricons.zocial\">\n</manifest>\n"
  },
  {
    "path": "packages/zocial/android/src/main/AndroidManifestNew.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>\n"
  },
  {
    "path": "packages/zocial/android/src/main/java/VectorIconsZocialPackage.kt",
    "content": "package com.reactnativevectoricons.zocial\n\nimport com.facebook.react.TurboReactPackage\nimport com.facebook.react.bridge.NativeModule\nimport com.facebook.react.bridge.ReactApplicationContext\nimport com.facebook.react.module.model.ReactModuleInfoProvider\n\nclass VectorIconsZocialPackage : TurboReactPackage() {\n    override fun getModule(\n        name: String,\n        reactContext: ReactApplicationContext,\n    ): NativeModule? = null\n\n    override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =\n        ReactModuleInfoProvider {\n            mapOf()\n        }\n}\n"
  },
  {
    "path": "packages/zocial/babel.config.js",
    "content": "// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nmodule.exports = {\n  presets: [['module:react-native-builder-bob/babel-preset', { modules: 'commonjs' }]],\n};\n"
  },
  {
    "path": "packages/zocial/glyphmaps/Zocial.json",
    "content": "{\n  \"acrobat\": 61696,\n  \"amazon\": 61697,\n  \"android\": 61698,\n  \"angellist\": 61699,\n  \"aol\": 61700,\n  \"appnet\": 61701,\n  \"appstore\": 61702,\n  \"bitbucket\": 61703,\n  \"bitcoin\": 61704,\n  \"blogger\": 61705,\n  \"buffer\": 61706,\n  \"cal\": 61707,\n  \"call\": 61708,\n  \"cart\": 61709,\n  \"chrome\": 61710,\n  \"cloudapp\": 61711,\n  \"creativecommons\": 61712,\n  \"delicious\": 61713,\n  \"digg\": 61714,\n  \"disqus\": 61715,\n  \"dribbble\": 61716,\n  \"dropbox\": 61717,\n  \"drupal\": 61718,\n  \"dwolla\": 61720,\n  \"email\": 61721,\n  \"eventasaurus\": 61722,\n  \"eventbrite\": 61723,\n  \"eventful\": 61724,\n  \"evernote\": 61725,\n  \"facebook\": 61726,\n  \"fivehundredpx\": 61727,\n  \"flattr\": 61728,\n  \"flickr\": 61729,\n  \"forrst\": 61730,\n  \"foursquare\": 61731,\n  \"github\": 61732,\n  \"gmail\": 61733,\n  \"google\": 61734,\n  \"googleplay\": 61735,\n  \"googleplus\": 61736,\n  \"gowalla\": 61737,\n  \"grooveshark\": 61738,\n  \"guest\": 61739,\n  \"html5\": 61740,\n  \"ie\": 61741,\n  \"instagram\": 61742,\n  \"instapaper\": 61743,\n  \"intensedebate\": 61744,\n  \"itunes\": 61745,\n  \"klout\": 61746,\n  \"lanyrd\": 61747,\n  \"lastfm\": 61748,\n  \"lego\": 61749,\n  \"linkedin\": 61750,\n  \"lkdto\": 61751,\n  \"logmein\": 61752,\n  \"macstore\": 61753,\n  \"meetup\": 61754,\n  \"myspace\": 61755,\n  \"ninetyninedesigns\": 61756,\n  \"openid\": 61757,\n  \"opentable\": 61758,\n  \"paypal\": 61759,\n  \"persona\": 61796,\n  \"pinboard\": 61760,\n  \"pinterest\": 61761,\n  \"plancast\": 61762,\n  \"plurk\": 61763,\n  \"pocket\": 61764,\n  \"podcast\": 61765,\n  \"posterous\": 61766,\n  \"print\": 61767,\n  \"quora\": 61768,\n  \"reddit\": 61769,\n  \"rss\": 61770,\n  \"scribd\": 61771,\n  \"skype\": 61772,\n  \"smashing\": 61773,\n  \"songkick\": 61774,\n  \"soundcloud\": 61775,\n  \"spotify\": 61776,\n  \"stackoverflow\": 61777,\n  \"statusnet\": 61778,\n  \"steam\": 61779,\n  \"stripe\": 61780,\n  \"stumbleupon\": 61781,\n  \"tumblr\": 61782,\n  \"twitter\": 61783,\n  \"viadeo\": 61784,\n  \"vimeo\": 61785,\n  \"vk\": 61786,\n  \"weibo\": 61787,\n  \"wikipedia\": 61788,\n  \"windows\": 61789,\n  \"wordpress\": 61790,\n  \"xing\": 61791,\n  \"yahoo\": 61792,\n  \"ycombinator\": 61793,\n  \"yelp\": 61794,\n  \"youtube\": 61795\n}"
  },
  {
    "path": "packages/zocial/package.json",
    "content": "{\n  \"name\": \"@react-native-vector-icons/zocial\",\n  \"version\": \"12.5.0\",\n  \"description\": \"Zocial font for react native vector icons\",\n  \"source\": \"./src/index.ts\",\n  \"main\": \"./lib/commonjs/index.js\",\n  \"module\": \"./lib/module/index.js\",\n  \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/index.d.ts\",\n        \"default\": \"./lib/module/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/index.d.ts\",\n        \"default\": \"./lib/commonjs/index.js\"\n      }\n    },\n    \"./static\": {\n      \"import\": {\n        \"types\": \"./lib/typescript/module/src/static.d.ts\",\n        \"default\": \"./lib/module/static.js\"\n      },\n      \"require\": {\n        \"types\": \"./lib/typescript/commonjs/src/static.d.ts\",\n        \"default\": \"./lib/commonjs/static.js\"\n      }\n    },\n    \"./glyphmaps/*.json\": \"./glyphmaps/*.json\",\n    \"./fonts/*.ttf\": \"./fonts/*.ttf\"\n  },\n  \"files\": [\n    \"src\",\n    \"lib\",\n    \"glyphmaps\",\n    \"fonts\",\n    \"android\",\n    \"ios\",\n    \"cpp\",\n    \"*.podspec\",\n    \"!ios/build\",\n    \"!android/build\",\n    \"!android/gradle\",\n    \"!android/gradlew\",\n    \"!android/gradlew.bat\",\n    \"!android/local.properties\",\n    \"!**/__tests__\",\n    \"!**/__fixtures__\",\n    \"!**/__mocks__\",\n    \"!**/.*\"\n  ],\n  \"scripts\": {\n    \"clean\": \"del-cli android/build ios/build lib\",\n    \"prepare\": \"bob build && ../../scripts/fix-glyphmaps.mjs\",\n    \"watch\": \"onchange 'src/**' --initial -- pnpm run prepare\"\n  },\n  \"keywords\": [\n    \"react-native\",\n    \"ios\",\n    \"android\",\n    \"osx\",\n    \"windows\",\n    \"macos\",\n    \"react-component\",\n    \"react-native-component\",\n    \"react\",\n    \"mobile\",\n    \"ui\",\n    \"icon\",\n    \"icons\",\n    \"vector\",\n    \"retina\",\n    \"font\",\n    \"react-native-vector-icons-icon\",\n    \"zocial\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/oblador/react-native-vector-icons.git\",\n    \"directory\": \"packages/zocial\"\n  },\n  \"author\": {\n    \"name\": \"Joel Arvidsson\",\n    \"email\": \"joel@oblador.se\"\n  },\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/oblador/react-native-vector-icons/issues\"\n  },\n  \"homepage\": \"https://github.com/oblador/react-native-vector-icons\",\n  \"publishConfig\": {\n    \"registry\": \"https://registry.npmjs.org/\",\n    \"access\": \"public\"\n  },\n  \"dependencies\": {\n    \"@react-native-vector-icons/common\": \"workspace:^\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"^19.1.0\",\n    \"del-cli\": \"^6.0.0\",\n    \"onchange\": \"^7.1.0\",\n    \"react-native-builder-bob\": \"^0.35.2\",\n    \"typescript\": \"^5.7.2\",\n    \"css-social-buttons\": \"1.1.1\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\",\n    \"react-native\": \"*\"\n  },\n  \"engines\": {\n    \"node\": \">= 18.0.0\"\n  },\n  \"react-native-builder-bob\": {\n    \"source\": \"src\",\n    \"output\": \"lib\",\n    \"targets\": [\n      [\n        \"commonjs\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"module\",\n        {\n          \"esm\": true\n        }\n      ],\n      [\n        \"typescript\",\n        {\n          \"project\": \"tsconfig.build.json\",\n          \"esm\": true\n        }\n      ]\n    ]\n  },\n  \"create-react-native-library\": {\n    \"type\": \"library\",\n    \"version\": \"0.41.2\"\n  }\n}\n"
  },
  {
    "path": "packages/zocial/react-native-vector-icons-zocial.podspec",
    "content": "# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost\n\nrequire 'json'\n\npackage = JSON.parse(File.read(File.join(__dir__, 'package.json')))\n\nPod::Spec.new do |s|\n  s.name         = 'react-native-vector-icons-zocial'\n  s.version      = package['version']\n  s.summary      = package['description']\n  s.homepage     = package['homepage']\n  s.license      = package['license']\n  s.authors      = package['author']\n\n  s.platforms    = { ios: min_ios_version_supported, tvos: '9.0', visionos: '1.0' }\n  s.source       = { git: package['repository']['url'], tag: \"v#{s.version}\" }\n\n  s.resources = 'fonts/*.ttf'\nend\n"
  },
  {
    "path": "packages/zocial/src/index.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * Zocial icon set component.\n * Usage: <Zocial name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/Zocial.json';\n\nexport const Zocial = createIconSet(glyphMap, {\n  postScriptName: 'zocial',\n  fontFileName: 'Zocial.ttf',\n  fontSource: require('../fonts/Zocial.ttf'), // eslint-disable-line @typescript-eslint/no-require-imports, global-require\n});\n\nexport type ZocialIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default Zocial;\n"
  },
  {
    "path": "packages/zocial/src/static.ts",
    "content": "'use client';\n\n/**\n * This is a generated file. If you modify it manually, your changes will be lost!\n * This file was generated from packages/generator-react-native-vector-icons/src/app/templates\n * If you're contributing to react-native-vector-icons, make the change there; otherwise it'll be lost\n *\n * Zocial icon set component.\n * Usage: <Zocial name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n\nimport { createIconSet } from '@react-native-vector-icons/common';\n\nimport glyphMap from '../glyphmaps/Zocial.json';\n\nexport const Zocial = createIconSet(glyphMap, {\n  postScriptName: 'zocial',\n  fontFileName: 'Zocial.ttf',\n});\n\nexport type ZocialIconName = keyof typeof glyphMap;\n\n/** @alias */\nexport default Zocial;\n"
  },
  {
    "path": "packages/zocial/tsconfig.build.json",
    "content": "{\n  \"extends\": \"./tsconfig\",\n  \"exclude\": [\"example\", \"lib\"]\n}\n"
  },
  {
    "path": "packages/zocial/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\"ESNext\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  },
  {
    "path": "pnpm-workspace.yaml",
    "content": "packages:\n  - packages/*\n"
  },
  {
    "path": "scripts/check-npm-publish-status.sh",
    "content": "#!/usr/bin/env bash\nset -euo pipefail\n\nGREEN='\\033[0;32m'\nRED='\\033[0;31m'\nYELLOW='\\033[0;33m'\nBOLD='\\033[1m'\nRESET='\\033[0m'\n\npublished=0\nnot_published=0\nskipped_private=0\nnot_published_packages=()\n\nfor pkg_json in packages/*/package.json; do\n  private=$(jq -r '.private // false' \"$pkg_json\")\n  name=$(jq -r '.name' \"$pkg_json\")\n  version=$(jq -r '.version' \"$pkg_json\")\n\n  if [ \"$private\" = \"true\" ]; then\n    echo -e \"${YELLOW}SKIP (private):${RESET} $name\"\n    skipped_private=$((skipped_private + 1))\n    continue\n  fi\n\n  echo -n \"Checking $name@$version ... \"\n\n  if npm view \"$name@$version\" version >/dev/null 2>&1; then\n    echo -e \"${GREEN}published${RESET}\"\n    published=$((published + 1))\n  else\n    echo -e \"${RED}NOT PUBLISHED${RESET}\"\n    not_published=$((not_published + 1))\n    not_published_packages+=(\"$name@$version\")\n  fi\ndone\n\necho \"\"\necho -e \"${BOLD}=== Summary ===${RESET}\"\necho -e \"${GREEN}Published:${RESET}         $published\"\necho -e \"${RED}Not published:${RESET}     $not_published\"\necho -e \"${YELLOW}Skipped (private):${RESET} $skipped_private\"\n\nif [ ${#not_published_packages[@]} -gt 0 ]; then\n  echo \"\"\n  echo -e \"${RED}Not published:${RESET}\"\n  for pkg in \"${not_published_packages[@]}\"; do\n    echo -e \"  - ${RED}$pkg${RESET}\"\n  done\nfi\n"
  },
  {
    "path": "scripts/fix-glyphmaps.mjs",
    "content": "#!/usr/bin/env node\n/* eslint-disable no-restricted-syntax, no-continue */\n\n// builder-bob doesn't support including something from the top level, so we need to fix the paths\nimport { existsSync, readFileSync, writeFileSync } from 'node:fs';\n\nconst files = [\n  ['lib/commonjs', 'js', '../..'],\n  ['lib/module', 'js', '../..'],\n  ['lib/typescript/commonjs/src', 'd.ts', '../../../..'],\n  ['lib/typescript/module/src', 'd.ts', '../../../..'],\n];\n\nfor (const name of ['index', 'static']) {\n  for (const [dir, ext, prefix] of files) {\n    const file = `${dir}/${name}.${ext}`;\n    if (!existsSync(file)) continue;\n    let content = readFileSync(file, 'utf8');\n    content = content.replace(/\\.\\.\\/glyphmaps/g, `${prefix}/glyphmaps`);\n    content = content.replace(/\\.\\.\\/fonts/g, `${prefix}/fonts`);\n    writeFileSync(file, content);\n  }\n}\n"
  },
  {
    "path": "scripts/generate-fonts.sh",
    "content": "#!/bin/bash\n\nset -e\n\ncd packages\n\nif [ $# -gt 0 ]; then\n  PACKAGES=(\"$@\")\nelse\n  PACKAGES=(./*)\nfi\n\nfor package in \"${PACKAGES[@]}\"; do\n  if [ ! -f \"$package/.yo-rc.json\" ]; then\n    continue\n  fi\n\n  echo\n  echo \"######################\"\n  echo \"Building $package\"\n  echo \"######################\"\n  echo\n\n  cd \"$package\"\n\n  if [ -n \"$DIFF\" ]; then\n    mkdir -p \"diffenator/$package\"\n    mkdir -p \"/tmp/$package/before\"\n    cp fonts/*.ttf \"/tmp/$package/before\"\n  fi\n\n  CURRENT_VERSION=$([ -f package.json ] && jq -r '.version' package.json || echo \"0.0.1\")\n\n  rm -rf ./*\n  git restore CHANGELOG.md &>/dev/null || true\n\n  if [ \"$(jq -r '.\"generator-react-native-vector-icons\".customReadme' .yo-rc.json)\" == \"true\" ]; then\n    git restore README.md >/dev/null || true\n  fi\n\n  if [ \"$(jq -r '.\"generator-react-native-vector-icons\".customSrc' .yo-rc.json)\" == \"true\" ]; then\n    git restore src >/dev/null || true\n  fi\n\n  if ! yo react-native-vector-icons --force --skip-install --current-version=\"$CURRENT_VERSION\"; then\n    echo\n    echo \"⚠️  Skipping $package (generator failed)\"\n    echo\n    cd -\n    continue\n  fi\n\n  if [ -n \"$DIFF\" ]; then\n    mkdir -p \"/tmp/$package/after\"\n    cp fonts/*.ttf \"/tmp/$package/after\"\n    for font in \"/tmp/$package/before/\"*.ttf; do\n      fontname=$(basename \"$font\")\n      mkdir -p \"diffenator/$package/$fontname\"\n      diffenator3 --no-tables --no-kerns --no-words --html --output \"../../diffenator/$package/$fontname\" \"/tmp/$package/before/$fontname\" \"/tmp/$package/after/$fontname\"\n      open \"../../diffenator/$package/$fontname/diffenator.html\"\n    done\n  fi\n\n  cd -\ndone\n\ncd -\npnpm install\n"
  },
  {
    "path": "scripts/setup-npm-trust.sh",
    "content": "#!/usr/bin/env bash\nset -euo pipefail\n\nREPO=\"oblador/react-native-vector-icons\"\nWORKFLOW_FILE=\"deploy.yaml\"\n\nalready_configured=0\nnewly_configured=0\nfailed=0\nskipped_private=0\nfailed_packages=()\n\nfor pkg_json in packages/*/package.json; do\n  private=$(jq -r '.private // false' \"$pkg_json\")\n  name=$(jq -r '.name' \"$pkg_json\")\n\n  if [ \"$private\" = \"true\" ]; then\n    echo \"SKIP (private): $name\"\n    skipped_private=$((skipped_private + 1))\n    continue\n  fi\n\n  echo -n \"Checking $name ... \"\n\n  trust_output=$(npm trust list --json \"$name\" 2>/dev/null || true)\n\n  if echo \"$trust_output\" | jq -e 'select(.type == \"github\")' >/dev/null 2>&1; then\n    echo \"already configured\"\n    already_configured=$((already_configured + 1))\n    continue\n  fi\n\n  echo -n \"configuring ... \"\n\n  if npm trust github \"$name\" --file \"$WORKFLOW_FILE\" --repo \"$REPO\" --yes 2>&1; then\n    echo \"done\"\n    newly_configured=$((newly_configured + 1))\n  else\n    echo \"FAILED\"\n    failed=$((failed + 1))\n    failed_packages+=(\"$name\")\n  fi\n\n  sleep 2\ndone\n\necho \"\"\necho \"=== Summary ===\"\necho \"Already configured: $already_configured\"\necho \"Newly configured:   $newly_configured\"\necho \"Skipped (private):  $skipped_private\"\necho \"Failed:             $failed\"\n\nif [ ${#failed_packages[@]} -gt 0 ]; then\n  echo \"\"\n  echo \"Failed packages:\"\n  for pkg in \"${failed_packages[@]}\"; do\n    echo \"  - $pkg\"\n  done\nfi\n"
  },
  {
    "path": "tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"rootDir\": \".\",\n    \"paths\": {\n      \"react-native-vector-icons\": [\n        \"./src/index\"\n      ]\n    },\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"jsx\": \"react-jsx\",\n    \"lib\": [\n      \"ESNext\"\n    ],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noEmit\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitUseStrict\": false,\n    \"noStrictGenericChecks\": false,\n    \"noUncheckedIndexedAccess\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"target\": \"ESNext\",\n    \"verbatimModuleSyntax\": true\n  }\n}\n"
  }
]